From 9994477c06556692ce72706441f9b679ca48983c Mon Sep 17 00:00:00 2001 From: Shinichi Matsumoto Date: Fri, 3 Feb 2023 08:00:44 +0000 Subject: [PATCH 001/533] Change return value of function agents_get_agent_id_by_alias when alias is '' --- pandora_console/include/functions_agents.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 6e37a1e991..3b3bac283b 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -165,9 +165,9 @@ function agents_locate_agent(string $field) function agents_get_agent_id_by_alias($alias, $is_metaconsole=false) { if ($is_metaconsole === true) { - return db_get_all_rows_sql("SELECT id_tagente FROM tmetaconsole_agent WHERE upper(alias) LIKE upper('%$alias%')"); + return db_get_all_rows_sql("SELECT id_tagente FROM tmetaconsole_agent WHERE '$alias' != '' and upper(alias) LIKE upper('%$alias%')"); } else { - return db_get_all_rows_sql("SELECT id_agente FROM tagente WHERE upper(alias) LIKE upper('%$alias%')"); + return db_get_all_rows_sql("SELECT id_agente FROM tagente WHERE '$alias' != '' and upper(alias) LIKE upper('%$alias%')"); } } From 230a8d804a09379037186883a83511485c159f42 Mon Sep 17 00:00:00 2001 From: alejandro Date: Thu, 16 Mar 2023 10:16:14 +0100 Subject: [PATCH 002/533] added powershell dchp plugin --- pandora_plugins/Dhcp/pandora_dhcp.ps1 | 85 +++++++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 pandora_plugins/Dhcp/pandora_dhcp.ps1 diff --git a/pandora_plugins/Dhcp/pandora_dhcp.ps1 b/pandora_plugins/Dhcp/pandora_dhcp.ps1 new file mode 100644 index 0000000000..0b50e00e5f --- /dev/null +++ b/pandora_plugins/Dhcp/pandora_dhcp.ps1 @@ -0,0 +1,85 @@ +#Plugin for monitoring Microsoft Exchange Server. +# +# Pandora FMS Agent Plugin for dchp. +# +#(c) Alejandro Sánchez +# v1.2, 26 enero 2023 +# ------------------------------------------------------------------------ + + +function print_module { + + param ([string]$module_name,[string]$module_type,[string]$module_value,[string]$module_desc) + + echo "" + echo "$module_name" + echo "$module_type" + echo "" + echo "" + echo "" + +} + +#$LinuxCurrentIP=$() 2> $NULL +$WindowsCurrentIP=$((Get-NetIPConfiguration | Where-Object { $_.IPv4DefaultGateway -ne $null -and $_.NetAdapter.Status -ne "Disconnected" }).IPv4Address.IPAddress) 2> $NULL +$Scopes=$(get-dhcpserverv4scope | ConvertTo-Csv -NoTypeInformation) 2> $NULL +$Scopes=$(get-dhcpserverv4scope | Select ScopeId |ConvertTo-Csv -NoTypeInformation) 2> $NULL +$ScopeIds=$(((get-dhcpserverv4scope).ScopeId).IPAddressToString) 2> $NULL + +$avalaible_ips=0 +$count_reservation=0 +$count_leases=0 +ForEach($scope_ids in $Scopes) +{ +if($scope_ids -notmatch 'ScopeId') +{ +$scope_ids = $scope_ids -replace '"', "" +$scope_ids =[IPAddress]$scope_ids +$ScopeRange=$(get-dhcpserverv4scope -ScopeId $scope_ids | ConvertTo-Csv -NoTypeInformation) +$ScopeMask=$(((get-dhcpserverv4scope -ScopeId $scope_ids).SubnetMask).IPAddressToString) 2> $NULL +$PercentageInUse=$((get-dhcpserverv4scopestatistics -ScopeId $scope_ids).PercentageInUse) 2> $NULL +# $Free=$((get-dhcpserverv4scopestatistics -ScopeId $scope_ids).Free) 2> $NULL +# $InUse=$((get-dhcpserverv4scopestatistics -ScopeId $scope_ids).InUse) 2> $NULL +# $Reserved=$((get-dhcpserverv4scopestatistics -ScopeId $scope_ids).Reserved) 2> $NULL +# $Pending=$((get-dhcpserverv4scopestatistics -ScopeId $scope_ids).Pending) 2> $NULL +#$AddressAssignedList=$(Get-DhcpServerv4Lease -ScopeId $scope_ids | ConvertTo-Csv -NoTypeInformation) 2> $NULL +$AddressAssignedList=$((Get-DhcpServerv4Lease -ScopeId $scope_ids).AddressState) 2> $NULL +#$Reservations=$(Get-DhcpServerv4Reservation -ScopeId $scope_ids | ConvertTo-Csv -NoTypeInformation) 2> $NULL +$Reservations=$((Get-DhcpServerv4Reservation -ScopeId $scope_ids).AddressState) 2> $NULL +$ExclusionRanges=$(Get-DhcpServerv4ExclusionRange -ScopeId $scope_ids | ConvertTo-Csv -NoTypeInformation) 2> $NULL +$Start_range=((Get-DhcpServerv4ExclusionRange -ScopeId $scope_ids).StartRange.IPAddressToString) 2> $NULL +$End_range=((Get-DhcpServerv4ExclusionRange -ScopeId $scope_ids).EndRange.IPAddressToString) 2> $NULL + + +## reservation +ForEach($reservation in $Reservations){ +if ($Reservations -match "InactiveReservation"){$count_reservation=$count_reservation+0}else {if ($Reservations){$count_reservation=$count_reservation+1}else {$count_reservation=$count_reservation+0} } +} +## leases +ForEach($lease in $AddressAssignedList){ +if ($AddressAssignedList -match "InactiveReservation"){$count_leases=$count_leases+0}else {if ($Reservations){$count_reservation=$count_reservation+1}else {$count_reservation=$count_reservation+0} } +} + +$count_assigned=$count_reservation+$count_leases + +# last octet value of an IP address +$exc_start=$Start_range.Split('.')[-1] +$exc_end=$End_range.Split('.')[-1] + +# avalaible end range - start range +1 +$avalaible=[int]$exc_end - [int]$exc_start +1 + +$free= $avalaible - $count_reservation + +print_module "[$scope_ids] - dhcp usage" "generic_data" "$PercentageInUse" "Used percentage" +print_module "[$scope_ids] - dhcp reserved ips" "generic_data" "$count_reservation" "reservations" +print_module "[$scope_ids] - dhcp assigned ips" "generic_data" "$count_assigned" "assigned ips" +print_module "[$scope_ids] - dhcp avalaible ips" "generic_data" "$avalaible" "Available and reserved ips" +print_module "[$scope_ids] - dhcp free ips" "generic_data" "$free" "Available ips (not reserved)" + +#reset +$count_reservation=0 +$count_leases=0 +} +} + From 6ad160685b07f1070396729c9f9e8a5a514d851d Mon Sep 17 00:00:00 2001 From: KANAYAMA Akihiro Date: Thu, 16 Mar 2023 19:55:41 +0900 Subject: [PATCH 003/533] Fixed encoding multibyte characters --- pandora_console/include/class/AgentWizard.class.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 2580d17371..d9280974f1 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -2333,7 +2333,7 @@ class AgentWizard extends HTML } $tmp->id_plugin($infoMacros['server_plugin']); - $tmp->macros(json_encode($fieldsPlugin)); + $tmp->macros(io_json_mb_encode($fieldsPlugin)); } } } @@ -2507,7 +2507,7 @@ class AgentWizard extends HTML } $tmp->id_plugin($infoMacros['server_plugin']); - $tmp->macros(json_encode($fieldsPlugin)); + $tmp->macros(io_json_mb_encode($fieldsPlugin)); } $tmp->ip_target(io_safe_input($this->targetIp)); From 0c1ec8095ee391bec6d1c14eb5859767a652293a Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 3 Apr 2023 16:59:10 +0200 Subject: [PATCH 004/533] new alert macro --- pandora_server/lib/PandoraFMS/Core.pm | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 4726df4710..3fc5f8c733 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1521,8 +1521,9 @@ sub pandora_execute_action ($$$$$$$$$;$$) { # Check for _module_graph_Xh_ macros # Check for _module_graph_Xh_ macros and _module_graphth_Xh_ my $module_graph_list = {}; - my $macro_regexp = "_modulegraph_(\\d+)h_"; + my $macro_regexp = "_modulegraph_(?!([\\w\\s-]+_\\d+h_))(\\d+)h_"; my $macro_regexp2 = "_modulegraphth_(\\d+)h_"; + my $macro_regexp3 = "_modulegraph_([\\w\\s-]+)_(\\d+)h_"; # API connection my $ua = new LWP::UserAgent; @@ -1548,6 +1549,7 @@ sub pandora_execute_action ($$$$$$$$$;$$) { my $subst_func = sub { my $hours = shift; my $threshold = shift; + my $module = shift if @_; my $period = $hours * 3600; # Hours to seconds if($threshold == 0){ $params->{"other"} = $period . '%7C1%7C0%7C225%7C%7C14'; @@ -1558,8 +1560,10 @@ sub pandora_execute_action ($$$$$$$$$;$$) { $cid = 'module_graphth_' . $hours . 'h'; } - $params->{"other_mode"} = 'url_encode_separator_%7C'; - + if (defined($module)) { + $params->{"id"} = get_agent_module_id($dbh, $module, $agent->{'id_agente'}); + } + if (! exists($module_graph_list->{$cid}) && defined $url) { # Get the module graph image in base 64 my $response = $ua->post($url, $params); @@ -1578,10 +1582,11 @@ sub pandora_execute_action ($$$$$$$$$;$$) { eval { no warnings; local $SIG{__DIE__}; - $field3 =~ s/$macro_regexp/$subst_func->($1, 0)/ige; + $field3 =~ s/$macro_regexp/$subst_func->($2, 0)/ige; $field3 =~ s/$macro_regexp2/$subst_func->($1, 1)/ige; + $field3 =~ s/$macro_regexp3/$subst_func->($2, 0, $1)/ige; }; - + # Default content type my $content_type = $field4 . '; charset="iso-8859-1"'; From 07f3a3fbeffeb16eb55a5c701a357a2181bd3abc Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Mon, 3 Apr 2023 17:03:34 +0200 Subject: [PATCH 005/533] new alert macro --- pandora_server/lib/PandoraFMS/Core.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 3fc5f8c733..8a82e755aa 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -1564,6 +1564,8 @@ sub pandora_execute_action ($$$$$$$$$;$$) { $params->{"id"} = get_agent_module_id($dbh, $module, $agent->{'id_agente'}); } + $params->{"other_mode"} = 'url_encode_separator_%7C'; + if (! exists($module_graph_list->{$cid}) && defined $url) { # Get the module graph image in base 64 my $response = $ua->post($url, $params); From 63228ef370ff11d10312d4742f7fc49b06c6a6ae Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 11 Apr 2023 17:21:35 +0200 Subject: [PATCH 006/533] #10252 fix translate --- pandora_console/extensions/dbmanager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/extensions/dbmanager.php b/pandora_console/extensions/dbmanager.php index 1ec40b79f1..7f3465b89e 100644 --- a/pandora_console/extensions/dbmanager.php +++ b/pandora_console/extensions/dbmanager.php @@ -136,7 +136,7 @@ function dbmgr_extension_main() __( "This is an advanced extension to interface with %s database directly from WEB console using native SQL sentences. Please note that you can damage your %s installation - if you don't know exactly what are you are doing, + if you don't know exactly what you are doing, this means that you can severily damage your setup using this extension. This extension is intended to be used only by experienced users with a depth knowledge of %s internals.", From 32c8109cbe00d42eab698096af40e24c1dddd80c Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 12 Apr 2023 14:17:10 +0200 Subject: [PATCH 007/533] #10266 added tip visual setup option in Open version --- pandora_console/godmode/setup/setup_visuals.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index e6dd22eb2d..971415a7e1 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -1119,8 +1119,13 @@ for ($i = 1; $i <= $graphColorAmount; $i++) { $row = ($i % 2 === 0) ? ($row + 1) : $row; } +$tip = ui_print_help_tip( + __('Decimal data resolution setting for SLA and other reports is not available in the Community version.'), + true +); + $table_chars->data[$row][] = html_print_label_input_block( - __('Data precision'), + ($disabled_graph_precision) ? __('Data precision').$tip : __('Data precision'), html_print_input( [ 'type' => 'number', @@ -1138,7 +1143,7 @@ $table_chars->data[$row][] = html_print_label_input_block( ); $table_chars->data[$row][] = html_print_label_input_block( - __('Data precision in graphs'), + ($disabled_graph_precision) ? __('Data precision in graphs').$tip : __('Data precision in graphs'), html_print_input( [ 'type' => 'number', From c26db22fa5f9d2951c39d38d10bac5ed08266fe3 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 13 Apr 2023 11:07:09 +0200 Subject: [PATCH 008/533] #10563 Move menu item Links from Management to Operation. Add button in setup to global disable the Feedback functionality --- pandora_console/general/header.php | 5 +++- pandora_console/godmode/menu.php | 18 ++++++++------- .../godmode/setup/setup_general.php | 13 +++++++++++ pandora_console/include/functions_config.php | 8 +++++++ pandora_console/operation/menu.php | 23 +++++++++++++++++++ 5 files changed, 58 insertions(+), 9 deletions(-) diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index b0cbc0cec5..38f36fe730 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -352,7 +352,10 @@ echo sprintf('
', $menuTypeClass); } // Button for feedback pandora. - if (enterprise_installed()) { + if (enterprise_installed() && ( (!isset($config['activate_feedback']) + || (isset($config['activate_feedback']) + && $config['activate_feedback'] === true )) ) + ) { $header_feedback = '
'; $header_feedback .= ''; $header_feedback .= ''; diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index f6e4aac358..79670bc02b 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -546,21 +546,23 @@ if ($access_console_node === true) { } } - $menu_godmode['links']['text'] = __('Links'); - $menu_godmode['links']['sec2'] = ''; - $menu_godmode['links']['id'] = 'god-links'; + /* + $menu_godmode['links']['text'] = __('Links'); + $menu_godmode['links']['sec2'] = ''; + $menu_godmode['links']['id'] = 'god-links'; - $sub = []; - $rows = db_get_all_rows_in_table('tlink', 'name'); - foreach ($rows as $row) { + $sub = []; + $rows = db_get_all_rows_in_table('tlink', 'name'); + foreach ($rows as $row) { // Audit //meter en extensiones. $sub[$row['link']]['text'] = $row['name']; $sub[$row['link']]['id'] = $row['name']; $sub[$row['link']]['type'] = 'direct'; $sub[$row['link']]['subtype'] = 'new_blank'; - } + } - $menu_godmode['links']['sub'] = $sub; + $menu_godmode['links']['sub'] = $sub; + */ } // Warp Manager. diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index ad7a40aa8b..ce0216ce64 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -429,6 +429,19 @@ $table->data[$i++][] = html_print_label_input_block( ) ); +$table->data[$i++][] = html_print_label_input_block( + __('Enable Feedback'), + html_print_checkbox_switch_extended( + 'activate_feedback', + 1, + $config['activate_feedback'], + false, + '', + '', + true + ) +); + $table->colspan[$i][] = 2; $table->data[$i++][] = html_print_label_input_block( __('Timezone setup'), diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index b94892e7c1..a990c96398 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -264,6 +264,10 @@ function config_update_config() $error_update[] = __('Enable Sflow'); } + if (config_update_value('activate_feedback', (bool) get_parameter('activate_feedback'), true) === false) { + $error_update[] = __('Enable Feedback'); + } + if (config_update_value('general_network_path', get_parameter('general_network_path'), true) === false) { $error_update[] = __('General network path'); } else { @@ -3330,6 +3334,10 @@ function config_process_config() config_update_value('autoupdate', 1); } + if (!isset($config['activate_feedback'])) { + config_update_value('activate_feedback', 1); + } + if (!isset($config['api_password'])) { config_update_value('api_password', ''); } diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 8b6d9f4749..fe381e0449 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -628,6 +628,27 @@ if ($favorite_menu !== false) { } +// Links. +$rows = db_get_all_rows_in_table('tlink', 'name'); +// $rows = []; +if (!empty($rows)) { + $menu_operation['links']['text'] = __('Links'); + $menu_operation['links']['sec2'] = ''; + $menu_operation['links']['id'] = 'god-links'; + + $sub = []; + foreach ($rows as $row) { + // Audit //meter en extensiones. + $sub[$row['link']]['text'] = $row['name']; + $sub[$row['link']]['id'] = $row['name']; + $sub[$row['link']]['type'] = 'direct'; + $sub[$row['link']]['subtype'] = 'new_blank'; + } + + $menu_operation['links']['sub'] = $sub; +} + + // Workspace. @@ -785,6 +806,8 @@ if ($access_console_node === true) { // ~ } } + + // Save operation menu array to use in operation/extensions.php view $operation_menu_array = $menu_operation; From dc41e1c37753c005e8b326d2c9c733eb8c6d6bf8 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 13 Apr 2023 11:36:13 +0200 Subject: [PATCH 009/533] fix if in header and declare correctly a value --- pandora_console/general/header.php | 5 +---- pandora_console/include/functions_config.php | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index 38f36fe730..5609ab46d6 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -352,10 +352,7 @@ echo sprintf('
', $menuTypeClass); } // Button for feedback pandora. - if (enterprise_installed() && ( (!isset($config['activate_feedback']) - || (isset($config['activate_feedback']) - && $config['activate_feedback'] === true )) ) - ) { + if (enterprise_installed() && $config['activate_feedback'] !== false) { $header_feedback = '
'; $header_feedback .= ''; $header_feedback .= ''; diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index a990c96398..ba2f1efa89 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -3335,7 +3335,7 @@ function config_process_config() } if (!isset($config['activate_feedback'])) { - config_update_value('activate_feedback', 1); + config_update_value('activate_feedback', true); } if (!isset($config['api_password'])) { From 53d813fa0bb3097ad4a41549d63238bba42e815f Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 13 Apr 2023 11:36:57 +0200 Subject: [PATCH 010/533] #10353 Removed name validation for new network components --- .../modules/manage_network_components.php | 19 +++---------------- 1 file changed, 3 insertions(+), 16 deletions(-) diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index 7ef20ca385..6d7a56e054 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -340,14 +340,7 @@ if ($type >= MODULE_TYPE_REMOTE_SNMP && $type <= MODULE_TYPE_REMOTE_SNMP_PROC) { } if ($is_management_allowed === true && $create_component) { - $name_check = db_get_value( - 'name', - 'tnetwork_component', - 'name', - $name - ); - - if ($name && !$name_check) { + if ($name) { $id = network_components_create_network_component( $name, $type, @@ -427,14 +420,8 @@ if ($is_management_allowed === true && $create_component) { AUDIT_LOG_MODULE_MANAGEMENT, 'Fail try to create remote component' ); - - if ($name_check !== false) { - // If name exists, advice about it. - ui_print_error_message(__('Could not be created because the component exists')); - } else { - // Other cases. - ui_print_error_message(__('Could not be created')); - } + // Other cases. + ui_print_error_message(__('Could not be created')); include_once 'godmode/modules/manage_network_components_form.php'; return; From b043717df5d9ba7077116b7fa96f234d19be9659 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 13 Apr 2023 13:49:05 +0200 Subject: [PATCH 011/533] #15263 created filter for modules --- .../godmode/agentes/module_manager.php | 77 ++++++++++++++++++- 1 file changed, 73 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 3cb5ce9787..92bb1f224e 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -47,8 +47,74 @@ if (isset($policy_page) === false) { $policy_page = false; } -$checked = (bool) get_parameter('checked'); +$checked = (bool) get_parameter('status_hierachy_mode'); +$status_hierachy_mode = (bool) get_parameter('status_hierachy_mode'); $sec2 = (string) get_parameter('sec2'); +// Table for filter bar. +$filterTable = new stdClass(); +$filterTable->class = 'filter-table-adv w100p'; +$filterTable->size[0] = '20%'; +$filterTable->size[1] = '20%'; +$filterTable->size[2] = '20%'; +$filterTable->size[3] = '20%'; +$filterTable->size[4] = '20%'; +$filterTable->data = []; +$filterTable->cellstyle[0][0] = 'width:0'; +$filterTable->data[0][0] = __('Search'); +$filterTable->data[1][0] .= html_print_input_text( + 'search_string', + $search_string, + '', + 30, + 255, + true, + false, + false, + '', + '' +); +$filterTable->data[0][0] .= html_print_input_hidden('search', 1, true); + +if ((bool) $policy_page === false) { + $filterTable->data[0][1] = __('Show in hierachy mode'); + $filterTable->data[1][1] = html_print_checkbox_switch( + 'status_hierachy_mode', + ((string) $checked), + ((string) $checked), + true, + false, + 'onChange=change_mod_filter();' + ); +} + +$filterTable->data[1][2] = html_print_submit_button( + __('Filter'), + 'filter', + false, + [ + 'icon' => 'search', + 'class' => 'float-right', + 'mode' => 'secondary mini', + ], + true +); + +// Print filter table. +echo '
'; +ui_toggle( + html_print_table($filterTable, true).'
', + ''.__('Filter').'', + __('Filter'), + 'filter', + true, + false, + '', + 'white-box-content no_border', + 'filter-datatable-main box-flat white_table_graph fixed_filter_bar' +); +echo ''; + + if (isset($id_agente) === false) { return; @@ -1199,14 +1265,17 @@ html_print_div( if (/checked/.test(window.location)) { var url = window.location.toString(); if (checked) { - window.location = url.replace("checked=false", "checked=true"); + //window.location = url.replace("checked=0", "checked=1"); + $("#checkbox-status_hierachy_mode").val('1'); } else { - window.location = url.replace("checked=true", "checked=false"); + //window.location = url.replace("checked=1", "checked=0"); + $("#checkbox-status_hierachy_mode").val('0'); } } else { - window.location = window.location + "&checked=true"; + //window.location = window.location + "&checked=1"; + $("#checkbox-status_hierachy_mode").val('1'); } } From 10c7d4dddb2046752d82a1b0e065dfa68718ac33 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 13 Apr 2023 13:54:11 +0200 Subject: [PATCH 012/533] #15263 created filter for modules --- pandora_console/godmode/agentes/module_manager.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 92bb1f224e..f4881c0373 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -73,6 +73,7 @@ $filterTable->data[1][0] .= html_print_input_text( '', '' ); + $filterTable->data[0][0] .= html_print_input_hidden('search', 1, true); if ((bool) $policy_page === false) { From e0437d3fbd11149dde298020066e1fcbc85c9e4c Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 17 Apr 2023 09:23:55 +0200 Subject: [PATCH 013/533] Fix duplicate code --- .../godmode/agentes/configurar_agente.php | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index dc27e4b207..32597ef4c4 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1970,10 +1970,10 @@ if ($create_module) { // MODULE ENABLE/DISABLE // =====================. -if ($enable_module) { +/* + if ($enable_module) { $result = modules_change_disabled($enable_module, 0); $module_name = modules_get_agentmodule_name($enable_module); - // Write for conf disable if remote_config. $configuration_data = enterprise_hook( 'config_agents_get_module_from_conf', @@ -1987,10 +1987,8 @@ if ($enable_module) { // Force Update when disabled for save disabled in conf. $old_configuration_data = $configuration_data; - // Successfull action. $success_action = $result; - $success_action = $result; if ($result === NOERR) { db_pandora_audit( @@ -2003,9 +2001,11 @@ if ($enable_module) { 'Fail to enable #'.$enable_module.' | '.$module_name.' | '.io_safe_output($agent['alias']) ); } -} + } -if ($disable_module) { + if ($disable_module) { + + hd($disable_module, true); $result = modules_change_disabled($disable_module, 1); $module_name = modules_get_agentmodule_name($disable_module); @@ -2029,18 +2029,20 @@ if ($disable_module) { if ($result === NOERR) { + hd($disable_module, true); db_pandora_audit( AUDIT_LOG_MODULE_MANAGEMENT, 'Disable #'.$disable_module.' | '.$module_name.' | '.io_safe_output($agent['alias']) ); } else { + hd($disable_module, true); db_pandora_audit( AUDIT_LOG_MODULE_MANAGEMENT, 'Fail to disable #'.$disable_module.' | '.$module_name.' | '.io_safe_output($agent['alias']) ); } -} - + } +*/ // Fix to stop the module from being added to the agent's conf // when an error occurred while updating or inserting. or enable disable module. if ($update_module || $create_module From 9da8e8363337e98cdff93b379a87bc4c4d9323d6 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 18 Apr 2023 09:52:59 +0200 Subject: [PATCH 014/533] Modified the timestamp according to input data. Added query with the timestamp of the filter. --- .../include/functions_inventory.php | 20 +++++++++++++++---- .../operation/agentes/agent_inventory.php | 9 ++++++++- 2 files changed, 24 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 5b3efedc93..9bda1f17a1 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -741,15 +741,23 @@ function inventory_get_datatable( array_push($where, "tagent_module_inventory.data LIKE '%".$inventory_search_string."%'"); } + if ($utimestamp > 0) { + array_push($where, 'tagente_datos_inventory.utimestamp <= '.$utimestamp.' '); + } + $sql = sprintf( 'SELECT tmodule_inventory.*, tagent_module_inventory.*, - tagente.alias as name_agent + tagente.alias as name_agent, + tagente_datos_inventory.utimestamp as last_update, + tagente_datos_inventory.timestamp as last_update_timestamp FROM tmodule_inventory INNER JOIN tagent_module_inventory ON tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory LEFT JOIN tagente ON tagente.id_agente = tagent_module_inventory.id_agente + LEFT JOIN tagente_datos_inventory + ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory WHERE %s ORDER BY tmodule_inventory.id_module_inventory LIMIT %d, %d', @@ -763,6 +771,10 @@ function inventory_get_datatable( if ($order_by_agent === false) { $modules = []; foreach ($rows as $row) { + if ($row['utimestamp'] !== $row['last_update']) { + $row['timestamp'] = $row['last_update_timestamp']; + } + $data_rows = explode(PHP_EOL, $row['data']); foreach ($data_rows as $data_key => $data_value) { if (empty($data_value) === false) { @@ -894,16 +906,16 @@ function inventory_get_dates($module_inventory_name, $inventory_agent, $inventor AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory AND tagente.id_agente = tagent_module_inventory.id_agente'; - if ($inventory_agent != 0) { + if ($inventory_agent !== 'All') { $sql .= ' AND tagent_module_inventory.id_agente IN ('."'".implode(',', (array) $inventory_agent)."'".')'; } - if ($inventory_id_group != 0) { + if ($inventory_id_group !== 0) { $sql .= " AND tagente.id_grupo = $inventory_id_group"; } if (is_string($module_inventory_name) === true - && $module_inventory_name != 'all' + && $module_inventory_name !== '0' ) { $sql .= " AND tmodule_inventory.name IN ('".str_replace(',', "','", $module_inventory_name)."')"; } diff --git a/pandora_console/operation/agentes/agent_inventory.php b/pandora_console/operation/agentes/agent_inventory.php index 1d692bfd41..9ae081186b 100644 --- a/pandora_console/operation/agentes/agent_inventory.php +++ b/pandora_console/operation/agentes/agent_inventory.php @@ -232,7 +232,14 @@ foreach ($rows as $row) { $table->cellspacing = 4; $table->class = 'info_table'; $table->head = []; - $table->head[0] = $row['name'].' - ('.date($config['date_format'], $row['utimestamp']).')'; + + if ($row['utimestamp'] === '0' && $utimestamp === 0) { + $table->head[0] = $row['name']; + } else if ($utimestamp === 0) { + $table->head[0] = $row['name'].' - (Last update '.date($config['date_format'], $row['utimestamp']).')'; + } else { + $table->head[0] = $row['name'].' - ('.date($config['date_format'], $utimestamp).')'; + } if ((bool) $row['block_mode'] === true) { $table->head[0] .= '   '.html_print_image( From 2387cbd3524617e11950d8d1e0a7924b84952f72 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 18 Apr 2023 12:14:25 +0200 Subject: [PATCH 015/533] Check variable value to show error message --- pandora_console/godmode/tag/edit_tag.php | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/tag/edit_tag.php b/pandora_console/godmode/tag/edit_tag.php index 6c22094708..603a97f8cd 100644 --- a/pandora_console/godmode/tag/edit_tag.php +++ b/pandora_console/godmode/tag/edit_tag.php @@ -127,7 +127,7 @@ if ($create_tag) { // Erase comma characters on tag name $name_tag = str_replace(',', '', $name_tag); - + hd($name_tag, true); $data = []; $data['name'] = $name_tag; $data['description'] = $description_tag; @@ -155,11 +155,14 @@ if ($create_tag) { AUDIT_LOG_TAG_MANAGEMENT, $auditMessage ); - ui_print_result_message( - $action === 'update', - __('Successfully created tag'), - __('Error creating tag') - ); + + if ($name_tag !== '') { + ui_print_result_message( + $action === 'update', + __('Successfully created tag'), + __('Error creating tag') + ); + } } // Form fields are filled here From 4a250fc7c069e18f1f6b82b538693bf989f5fa67 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 18 Apr 2023 12:51:12 +0200 Subject: [PATCH 016/533] Trimmed tag name --- pandora_console/godmode/tag/edit_tag.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/tag/edit_tag.php b/pandora_console/godmode/tag/edit_tag.php index 603a97f8cd..557c5cb129 100644 --- a/pandora_console/godmode/tag/edit_tag.php +++ b/pandora_console/godmode/tag/edit_tag.php @@ -121,13 +121,14 @@ if ($update_tag && $id_tag != 0) { ); } -// Create tag: creates a new tag +// Create tag: creates a new tag. if ($create_tag) { $return_create = true; - // Erase comma characters on tag name + // Erase comma characters and spaces on tag name. $name_tag = str_replace(',', '', $name_tag); - hd($name_tag, true); + $name_tag = str_replace(' ', '', $name_tag); + $data = []; $data['name'] = $name_tag; $data['description'] = $description_tag; From 77b12120767b0a188d039b2dea609c5af008081f Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 19 Apr 2023 10:53:52 +0200 Subject: [PATCH 017/533] add new icon svg --- .../godmode/reporting/graph_builder.php | 2 +- pandora_console/images/builder.png | Bin 423 -> 518 bytes pandora_console/images/builder@2x.png | Bin 0 -> 963 bytes pandora_console/images/builder@svg.svg | 9 +++++++++ 4 files changed, 10 insertions(+), 1 deletion(-) mode change 100755 => 100644 pandora_console/images/builder.png create mode 100644 pandora_console/images/builder@2x.png create mode 100644 pandora_console/images/builder@svg.svg diff --git a/pandora_console/godmode/reporting/graph_builder.php b/pandora_console/godmode/reporting/graph_builder.php index 6c006a8059..524c796bd2 100644 --- a/pandora_console/godmode/reporting/graph_builder.php +++ b/pandora_console/godmode/reporting/graph_builder.php @@ -309,7 +309,7 @@ if ($edit_graph === true) { 'graph_editor' => [ 'active' => false, 'text' => ''.html_print_image( - 'images/builder.png', + 'images/builder@svg.svg', true, [ 'title' => __('Graph editor'), diff --git a/pandora_console/images/builder.png b/pandora_console/images/builder.png old mode 100755 new mode 100644 index 964ab6af6698f6876ad4943ce8777993664b9512..18729a155bd1ad827551857b5576121a66e78600 GIT binary patch literal 518 zcmeAS@N?(olHy`uVBq!ia0vp^A|TAc#=yY%t50_}ki(Mh=?zc(M!jHiYq-`978Mw?}lvj zI^rNw@_3?NoU-P+AnuP+e_L2wHhi+y+4{}Z z`u%R44hy&Vq}u$ndv9*vy|YrZN9VMO+R+>G30X>7=RX(5UjJ=(H=ssR_VFg2{c~fQ z)XsaYbYA;)ir10jwma56Hay@MD3Uzsbo*<`)|9iK)@i9IT{C8}s&x9(;r5N^+1tYn zY0IiJS`+M-otW!f*+mSLQ8rb!qtDBf0Bt#zRS~+d@M6TV<GoToQEWv~>fb7->1T6vxAZBcW zK;s+~6chv=K79BBtFMvlJOIQFP$5Sk-jCs7puz+g4bp_}SZvnshuMHlF%uf!0H0w1 z0Yn)Bg#^~P!4?%rKoA%TADFO6I6~<{AZ`TW0=(%CW<88%K@TDz2t?KdwDtgsLTK!K zz!gl$3PCy#;&KiXo=|ciRv~!+Ai!vX7zyQfX!cnM#Pvwh3xN0`D7S+G3>3?x8cGaE z1RA^mTNE*%MK->)=m<*;&54moQvG48WI2A3$T6ftrRI5SxAQWl&@Q%Jv3G;dTM3a3NUq0|3U{tJ002ovPDHLkV1nWPl&1gy diff --git a/pandora_console/images/builder@2x.png b/pandora_console/images/builder@2x.png new file mode 100644 index 0000000000000000000000000000000000000000..90603a77fdcfc77efa64b7c5507dd0b15ddf8d2d GIT binary patch literal 963 zcmV;!13dhRP)TIZO}W)IUq4V3Dq zqQ{%LF#b$0I<%=U`F{x1EhQJg`W1`CTfJWIwwY@ZPdmMX5=iH8CPhB@AeXL~{ zNW84J-ZO$R!rqc#K|dGt5UFc8Boz#5`2fpbjznJ&?5I%3NSR?wNr7-ic8-^%G16g@ zu}ya{9A39A%_Y;jjAmvh2dPwQv0ksQ;izJdzQ9Rz#$_zz+t~dOCuHxzBoHisJ#sBVH4U#V2Oik|qa8`~8L4gVRs@RULAR?+mA zTv*C&OE&TP$TE&H6BqJ64y}eR;nbn4GXC;u4U=nyBkN`|!tz3|o-Kyq8cv`^%F5+( zy4`NqaR{F^Fn^83Eq)%i_+vV>ZL;mWm@kz|Cuq=WwO&s$ImW<|vCf&p_lYvs>2%(q zx&y1pUv*xZn0(Bk2z*6(iXN$hH7>}!Gu{xy@yl$&$*Iw+4)v*9e42sIzbfKR34%8g)%0FCQwB=5#QLmUz z!$=X^;!y_st)C`1ZpEh+oK|q$3XE(2U-aMySC#OH`{>g7%EzuCo)lR;XZbn6{}Db# l&*lxxOZZpgm~SF3+%Fjo@%GUH%+~+_002ovPDHLkV1g-ItD*n^ literal 0 HcmV?d00001 diff --git a/pandora_console/images/builder@svg.svg b/pandora_console/images/builder@svg.svg new file mode 100644 index 0000000000..f0231491c8 --- /dev/null +++ b/pandora_console/images/builder@svg.svg @@ -0,0 +1,9 @@ + + + + Dark/20/builder@svg + Created with Sketch. + + + + \ No newline at end of file From b7a7b4b5977e472e167016ac80c0653fe17116a8 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 20 Apr 2023 09:09:34 +0200 Subject: [PATCH 018/533] Fix js code line that forced the selected version to 1 --- pandora_console/include/class/CredentialStore.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php index 904ddbc6e4..36f66c6b40 100644 --- a/pandora_console/include/class/CredentialStore.class.php +++ b/pandora_console/include/class/CredentialStore.class.php @@ -1366,7 +1366,7 @@ class CredentialStore extends Wizard $('#li_snmp_2').show(); if ($('#li_snmp_1').length > 0) { - $('#version').val('1'); + //$('#version').val('1'); $('#version').trigger('change'); } else { const ul = $('#modal_form').children('ul')[0]; From 9acfa36d438cb1bfcf865b010b1253ec6c22781b Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 20 Apr 2023 10:22:37 +0200 Subject: [PATCH 019/533] #10698 Adjusted style of comment field, event list view --- pandora_console/include/styles/events.css | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pandora_console/include/styles/events.css b/pandora_console/include/styles/events.css index e4dfbe428d..b0790f76b5 100644 --- a/pandora_console/include/styles/events.css +++ b/pandora_console/include/styles/events.css @@ -88,6 +88,10 @@ table#table_events > tbody > tr > td { padding: 0px !important; } +table#table_events > tbody > tr > td > i { + font-size: 7.5pt; +} + td > input[id^="checkbox-multi"] { margin: 0px !important; } From 8e9bc5d0bb32f211ca5d8192eadb4bdb55fded03 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 20 Apr 2023 11:13:47 +0200 Subject: [PATCH 020/533] Fix style class invert_filter --- pandora_console/include/functions_events.php | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index 9f4ba19bb1..0fe3e3551c 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -2665,7 +2665,7 @@ function events_print_type_img( $urlImage = ui_get_full_url(false); $icon = ''; - $style = 'invert_filter main_menu_icon'; + $style = 'main_menu_icon'; switch ($type) { case 'alert_recovered': @@ -2702,23 +2702,28 @@ function events_print_type_img( break; case 'system': + $style .= ' invert_filter'; $icon = 'images/configuration@svg.svg'; break; case 'recon_host_detected': + $style .= ' invert_filter'; $icon = 'images/recon.png'; break; case 'new_agent': + $style .= ' invert_filter'; $icon = 'images/agents@svg.svg'; break; case 'configuration_change': + $style .= ' invert_filter'; $icon = 'images/configuration@svg.svg'; break; case 'unknown': default: + $style .= ' invert_filter'; $icon = 'images/event.svg'; break; } From 48d7eb2514ca6b772d337bb0d06a482a4f4c55bd Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 20 Apr 2023 11:15:34 +0200 Subject: [PATCH 021/533] #10733 align text widget hotizontally --- .../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php b/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php index 033761afdf..9d65fe1b40 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php +++ b/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php @@ -643,17 +643,19 @@ class AvgSumMaxMinModule extends Widget $output .= '
'; $orientation = ''; + $extraClass = ''; if ((int) $this->values['horizontal'] === 1) { $orientation = 'flex aligni_center'; } else { $orientation = 'grid'; + $extraClass = 'mrgn_btn_20px'; } // General div. $output .= '
'; // Div value. - $output .= '
'; + $output .= '
'; if (is_numeric($data) === true) { $dataDatos = remove_right_zeros( From e05a19dc7f36e0daa9355773203f31ae25fce226 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 20 Apr 2023 12:24:52 +0200 Subject: [PATCH 022/533] #10991 fixed acl in auth view --- pandora_console/godmode/setup/setup_auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php index c0548b32e8..3822a01b2e 100644 --- a/pandora_console/godmode/setup/setup_auth.php +++ b/pandora_console/godmode/setup/setup_auth.php @@ -24,7 +24,7 @@ global $config; check_login(); -if ((bool) check_acl($config['id_user'], 0, 'PM') === true && is_user_admin($config['id_user']) === false) { +if ((bool) check_acl($config['id_user'], 0, 'PM') === false && is_user_admin($config['id_user']) === false) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access Setup Management' From 6ef34d78c4b3d748a11ff6ed20d285ae391daa9f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 20 Apr 2023 12:47:06 +0200 Subject: [PATCH 023/533] #10991 fixed background in black theme --- pandora_console/include/styles/pandora_black.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index f657e9d910..e6e2710d7c 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -736,7 +736,7 @@ div#main_pure { div#main, div#container, body.pure { - background-color: #111; + background-color: #111 !important; } form ul.form_flex { From 0c2de27774b37280a7f1ecb431f105c39b59d3cc Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 21 Apr 2023 11:40:27 +0200 Subject: [PATCH 024/533] #10984 title visual console --- .../operation/visual_console/view.php | 82 ++++++++++--------- 1 file changed, 42 insertions(+), 40 deletions(-) diff --git a/pandora_console/operation/visual_console/view.php b/pandora_console/operation/visual_console/view.php index 80254800b5..01f4a2092f 100644 --- a/pandora_console/operation/visual_console/view.php +++ b/pandora_console/operation/visual_console/view.php @@ -60,8 +60,10 @@ function visual_map_print_button_editor_refactor( $disabled, '', [ - 'class' => $class, - 'mode' => 'onlyIcon', + 'class' => $class, + 'mode' => 'onlyIcon', + 'data-title' => $label, + 'data-use_title_for_force_title' => '1', ], false, true @@ -270,45 +272,45 @@ if ($pure === false) { echo '
'; echo ''; + + echo "
"; + echo " +
+
+
+
+
+
+
+
+
+
+
+
+
+
'; +} + + +/** + * Print license content + * + * @return void + */ +function install_step1_licence() +{ + echo " +
+
+ ".print_logo_status(2, 6)." +
+

GPL2 Licence terms agreement

+

Pandora FMS is an OpenSource software project licensed under the GPL2 licence. Pandora FMS includes, as well, another software also licensed under LGPL and BSD licenses. Before continue, you must accept the licence terms.. +

For more information, please refer to our website at http://pandorafms.org and contact us if you have any kind of question about the usage of Pandora FMS

+

If you dont accept the licence terms, please, close your browser and delete Pandora FMS files.

+ "; + + if (!file_exists('COPYING')) { + echo "
Licence file 'COPYING' is not present in your distribution. This means you have some 'partial' Pandora FMS distribution. We cannot continue without accepting the licence file."; + echo '
'; + } else { + echo "'; + echo '

'; + } + + echo '

'; + + echo "
+
+
'; +} + + +/** + * Print all step 2 + * + * @return void + */ +function install_step2() +{ + echo " +
+
+ ".print_logo_status(3, 6)." +
"; + echo '

Checking software dependencies

'; + echo ' +
+
+ '; + $res = 0; + $res += check_variable(phpversion(), '7.0', 'PHP version >= 7.0', 1); + $res += check_extension('gd', 'PHP GD extension'); + $res += check_extension('ldap', 'PHP LDAP extension'); + $res += check_extension('snmp', 'PHP SNMP extension'); + $res += check_extension('session', 'PHP session extension'); + $res += check_extension('gettext', 'PHP gettext extension'); + $res += check_extension('mbstring', 'PHP Multibyte String'); + $res += check_extension('zip', 'PHP Zip'); + $res += check_extension('zlib', 'PHP Zlib extension'); + $res += check_extension('json', 'PHP json extension'); + $res += check_extension('curl', 'CURL (Client URL Library)'); + $res += check_extension('filter', 'PHP filter extension'); + $res += check_extension('calendar', 'PHP calendar extension'); + if (PHP_OS == 'FreeBSD') { + $res += check_exists('/usr/local/bin/twopi', 'Graphviz Binary'); + } else if (PHP_OS == 'NetBSD') { + $res += check_exists('/usr/pkg/bin/twopi', 'Graphviz Binary'); + } else if (substr(PHP_OS, 0, 3) == 'WIN') { + $res += check_exists("..\\..\\..\\Graphviz\\bin\\twopi.exe", 'Graphviz Binary'); + } else { + $res += check_exists('/usr/bin/twopi', 'Graphviz Binary'); + } + + echo ''; + check_extension('mysqli', 'PHP MySQL(mysqli) extension'); + echo '
'; + echo "DB Engines"; + echo ''; + echo '
'; + if ($res > 0) { + echo "
+
You have some incomplete + dependencies. Please correct them or this installer + will not be able to finish your installation. +
+
+ Remember, if you install any PHP module to comply + with these dependences, you need to restart + your HTTP/Apache server after it to use the new + modules. +
+
"; + } + + echo '
'; + echo "
+
+
'; +} + + +/** + * Print all step 3 + * + * @return void + */ +function install_step3() +{ + $options = []; + if (extension_loaded('mysql')) { + $options['mysql'] = 'MySQL'; + } + + if (extension_loaded('mysqli')) { + $options['mysqli'] = 'MySQL(mysqli)'; + } + + $error = false; + if (empty($options)) { + $error = true; + } + + echo " +
+
+ ".print_logo_status(4, 6)." +
+
+
+

Environment and database setup

+

+ This wizard will create your Pandora FMS database, + and populate it with all the data needed to run for the first time. +

+

+ You need a privileged user to create database schema, this is usually root user. + Information about root user will not be used or stored anymore. +

+

+ You can also deploy the scheme into an existing Database. + In this case you need a privileged Database user and password of that instance. +

+

+ Now, please, complete all details to configure your database and environment setup. +

+
+ This installer will overwrite and destroy your existing + Pandora FMS configuration and Database. Before continue, + please be sure that you have no valuable Pandora FMS data in your Database. +

+
"; + if ($error) { + echo "
+ You haven't a any DB engine with PHP. Please check the previous step to DB engine dependencies. +
"; + } + + if (extension_loaded('oci8')) { + echo "
For Oracle installation an existing Database with a privileged user is needed.
"; + } + + echo '
'; + echo '
'; + if (!$error) { + echo "
"; + } + + echo ""; + + if (!$error) { + echo ' + + + + + + + "; + + // the field dbgrant is only shown when the DB host is different from 127.0.0.1 or localhost + echo " + + "; + + echo " + + "; + echo " + + + "; + + echo " + + "; + + echo '
'; + echo '

DB Engine

'; + + echo ''; + + echo ''; + + echo '
'; + echo '

Installation in

'; + + echo ''; + + echo ''; + } + + echo "
+

DB User with privileges

+ +
+

DB Password for this user

+ +
+

DB Hostname

+ +
+

DB Name (pandora by default)

+ +
+

Full path to HTTP publication directory

+

For example /var/www/pandora_console/

+ +
+

URL path to Pandora FMS Console

+

For example '/pandora_console'

+ +
+ +

Drop Database if exists

+
'; + + echo '
'; + + echo '
'; + echo '
'; + echo "
+ '; +} + + +/** + * Print all step 4 + * + * @return void + */ +function install_step4() +{ + $pandora_config = 'include/config.php'; + + if ((! isset($_POST['user'])) || (! isset($_POST['dbname'])) || (! isset($_POST['host'])) + || (! isset($_POST['pass'])) || (!isset($_POST['engine'])) || (! isset($_POST['db_action'])) + ) { + $dbpassword = ''; + $dbuser = ''; + $dbhost = ''; + $dbname = ''; + $engine = ''; + $dbaction = ''; + $dbgrant = ''; + } else { + $engine = $_POST['engine']; + $dbpassword = $_POST['pass']; + $dbuser = $_POST['user']; + $dbhost = $_POST['host']; + $dbaction = $_POST['db_action']; + if (isset($_POST['dbgrant']) && $_POST['dbgrant'] != '') { + $dbgrant = $_POST['dbgrant']; + } else { + $dbgrant = $_SERVER['SERVER_ADDR']; + } + + if (isset($_POST['drop'])) { + $dbdrop = $_POST['drop']; + } else { + $dbdrop = 0; + } + + $dbname = $_POST['dbname']; + if (isset($_POST['url'])) { + $url = $_POST['url']; + } else { + $url = 'http://localhost'; + } + + if (isset($_POST['path'])) { + $path = $_POST['path']; + $path = str_replace('\\', '/', $path); + // Windows compatibility + } else { + $path = '/var/www'; + } + } + + $everything_ok = 0; + $step1 = 0; + $step2 = 0; + $step3 = 0; + $step4 = 0; + $step5 = 0; + $step6 = 0; + $step7 = 0; + $errors = []; + echo " +
+
+ ".print_logo_status(5, 6)." +
+
+
+ "; + switch ($engine) { + case 'mysql': + if (! mysql_connect($dbhost, $dbuser, $dbpassword)) { + check_generic(0, 'Connection with Database'); + } else { + check_generic(1, 'Connection with Database'); + + // Drop database if needed and don't want to install over an existing DB + if ($dbdrop == 1) { + mysql_query("DROP DATABASE IF EXISTS `$dbname`"); + } + + // Create schema + if ($dbaction == 'db_new' || $dbdrop == 1) { + $step1 = mysql_query("CREATE DATABASE `$dbname`"); + check_generic($step1, "Creating database '$dbname'"); + } else { + $step1 = 1; + } + + if ($step1 == 1) { + $step2 = mysql_select_db($dbname); + check_generic($step2, "Opening database '$dbname'"); + + $step3 = parse_mysql_dump('pandoradb.sql'); + + if ($step3 !== 0 && $step3 !== 1) { + $errors[] = $step3; + $step3 = 0; + } + + check_generic($step3, 'Creating schema'); + $step4 = parse_mysql_dump('pandoradb_data.sql'); + + if ($step4 !== 0 && $step4 !== 1) { + $errors[] = $step4; + $step4 = 0; + } + + check_generic($step4, 'Populating database'); + if (PHP_OS == 'FreeBSD') { + $step_freebsd = adjust_paths_for_freebsd($engine); + check_generic($step_freebsd, 'Adjusting paths in database for FreeBSD'); + } + + $random_password = random_name(8); + $host = $dbhost; + // set default granted origin to the origin of the queries + if (($dbhost != 'localhost') && ($dbhost != '127.0.0.1')) { + $host = $dbgrant; + // if the granted origin is different from local machine, set the valid origin + } + + $step5 = mysql_query( + "GRANT ALL PRIVILEGES ON `$dbname`.* to pandora@$host + IDENTIFIED BY '".$random_password."'" + ); + mysql_query('FLUSH PRIVILEGES'); + check_generic($step5, "Established privileges for user pandora. A new random password has been generated: $random_password

Please write it down, you will need to setup your Pandora FMS server, editing the /etc/pandora/pandora_server.conf file

"); + + $step6 = is_writable('include'); + check_generic($step6, "Write permissions to save config file in './include'"); + + $cfgin = fopen('include/config.inc.php', 'r'); + $cfgout = fopen($pandora_config, 'w'); + $config_contents = fread($cfgin, filesize('include/config.inc.php')); + $dbtype = 'mysql'; + $config_new = ''; + $step7 = fputs($cfgout, $config_new); + $step7 = ($step7 + fputs($cfgout, $config_contents)); + if ($step7 > 0) { + $step7 = 1; + } + + fclose($cfgin); + fclose($cfgout); + chmod($pandora_config, 0600); + check_generic($step7, "Created new config file at '".$pandora_config."'"); + } + } + + if (($step7 + $step6 + $step5 + $step4 + $step3 + $step2 + $step1) == 7) { + $everything_ok = 1; + } + break; + + case 'mysqli': + $connection = mysqli_connect($dbhost, $dbuser, $dbpassword); + if (mysqli_connect_error() > 0) { + check_generic(0, 'Connection with Database'); + } else { + check_generic(1, 'Connection with Database'); + + // Drop database if needed and don't want to install over an existing DB + if ($dbdrop == 1) { + mysqli_query($connection, "DROP DATABASE IF EXISTS `$dbname`"); + } + + // Create schema + if ($dbaction == 'db_new' || $dbdrop == 1) { + $step1 = mysqli_query($connection, "CREATE DATABASE `$dbname`"); + check_generic($step1, "Creating database '$dbname'"); + } else { + $step1 = 1; + } + + if ($step1 == 1) { + $step2 = mysqli_select_db($connection, $dbname); + check_generic($step2, "Opening database '$dbname'"); + + $step3 = parse_mysqli_dump($connection, 'pandoradb.sql'); + if ($step3 !== 0 && $step3 !== 1) { + $errors[] = $step3; + $step3 = 0; + } + + check_generic($step3, 'Creating schema'); + + $step4 = parse_mysqli_dump($connection, 'pandoradb_data.sql'); + + if ($step4 !== 0 && $step4 !== 1) { + $errors[] = $step4; + $step4 = 0; + } + + check_generic($step4, 'Populating database'); + if (PHP_OS == 'FreeBSD') { + $step_freebsd = adjust_paths_for_freebsd($engine, $connection); + check_generic($step_freebsd, 'Adjusting paths in database for FreeBSD'); + } + + $random_password = random_name(8); + $host = $dbhost; + // set default granted origin to the origin of the queries + if (($dbhost != 'localhost') && ($dbhost != '127.0.0.1')) { + $host = $dbgrant; + // if the granted origin is different from local machine, set the valid origin + } + + $step5 = mysqli_query( + $connection, + "CREATE USER IF NOT EXISTS pandora@$host" + ); + + mysqli_query( + $connection, + "SET PASSWORD FOR 'pandora'@'".$host."' = '".$random_password."'" + ); + + $step5 |= mysqli_query( + $connection, + "GRANT ALL PRIVILEGES ON `$dbname`.* to pandora@$host" + ); + mysqli_query($connection, 'FLUSH PRIVILEGES'); + check_generic($step5, "Established privileges for user pandora. A new random password has been generated: $random_password

Please write it down, you will need to setup your Pandora FMS server, editing the /etc/pandora/pandora_server.conf file

"); + + $step6 = is_writable('include'); + check_generic($step6, "Write permissions to save config file in './include'"); + + $cfgin = fopen('include/config.inc.php', 'r'); + $cfgout = fopen($pandora_config, 'w'); + $config_contents = fread($cfgin, filesize('include/config.inc.php')); + $dbtype = 'mysql'; + $config_new = ''; + $step7 = fputs($cfgout, $config_new); + $step7 = ($step7 + fputs($cfgout, $config_contents)); + if ($step7 > 0) { + $step7 = 1; + } + + fclose($cfgin); + fclose($cfgout); + chmod($pandora_config, 0600); + check_generic($step7, "Created new config file at '".$pandora_config."'"); + } + } + + if (($step7 + $step6 + $step5 + $step4 + $step3 + $step2 + $step1) == 7) { + $everything_ok = 1; + } + break; + } + + echo '
'; + echo '
'; + echo '
'; + echo "

Creating database and default configuration file

"; + if ($everything_ok !== 1) { + $info = ''; + + if (!empty($errors)) { + foreach ($errors as $key => $err) { + $info .= '
'.$err.'
'; + } + + $info .= "
If you use MySQL 8 make sure to include the + following parameter in your installation's my.cnf configuration file
+ sql_mode=\"\"
"; + } + + $info .= "
There were some problems. + Installation was not completed. +

Please correct failures before trying again. + All database "; + + if ($engine == 'oracle') { + $info .= 'objects '; + } else { + $info .= 'schemes '; + } + + $info .= 'created in this step have been dropped.

+
'; + echo $info; + + switch ($engine) { + case 'mysql': + if (mysql_error() != '') { + echo "
".mysql_error().'.
'; + echo "
If you use MySQL 8 make sure to include the + following parameter in your installation's my.cnf configuration file
+ sql_mode=\"\"
"; + } + + if ($step1 == 1) { + mysql_query("DROP DATABASE $dbname"); + } + break; + + case 'mysqli': + if ($connection && mysqli_error($connection) != '') { + echo "
".mysqli_error($connection).'.
'; + echo "
If you use MySQL 8 make sure to include the + following parameter in your installation's my.cnf configuration file
+ sql_mode=\"\"
"; + } + + if ($step1 == 1) { + mysqli_query($connection, "DROP DATABASE $dbname"); + } + break; + } + } + + echo '
'; + echo '
'; + echo '
'; + echo " +
+
'; +} + + +/** + * Print all step 5 + * + * @return void + */ +function install_step5() +{ + echo " +
+
+ ".print_logo_status(6, 6)." +
+

Installation complete

+

For security, you now must manually delete this installer + ('install.php') file before trying to access to your Pandora FMS console. +

You should also install Pandora FMS Servers before trying to monitor anything; + please read documentation on how to install it.

+

Default user is 'admin' with password 'pandora', + please change it both as soon as possible.

+

Don't forget to check http://pandorafms.com + for updates. +

Select if you want to rename 'install.php'.

+
+ + +
+

+
+
+
+ +
+
"; +} From a637959eb568a2ba7778618180dae16cb8c8156c Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 13:31:45 +0200 Subject: [PATCH 153/533] #11222 Fix switch. Repared install --- pandora_console/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index 98b3ce716e..fc28451ea1 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1361,7 +1361,7 @@ if ($searchPage) { $_GET['sec2'] = 'operation/agentes/group_view'; break; - case 'Alert detail': + case 'Alert details': $_GET['sec'] = 'view'; $_GET['sec2'] = 'operation/agentes/alerts_status'; break; From 6469a12b9103516ff78c2abe79c4301ac354f20e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 16 May 2023 15:19:56 +0200 Subject: [PATCH 154/533] #11181 fixed resource exporting --- pandora_console/extensions/resource_exportation.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/extensions/resource_exportation.php b/pandora_console/extensions/resource_exportation.php index 905b389eee..77c4024628 100755 --- a/pandora_console/extensions/resource_exportation.php +++ b/pandora_console/extensions/resource_exportation.php @@ -453,7 +453,7 @@ function resource_exportation_extension_main() true ) ); - $table->data[0][] = html_print_button(__('Export'), '', false, 'export_to_ptr(\'report\');', ['mode' => 'link'], true); + $table->data[0][] = html_print_button(__('Export'), '', false, 'export_to_ptr("report");', ['mode' => 'link'], true); $table->data[1][] = html_print_label_input_block( __('Visual console'), @@ -465,7 +465,7 @@ function resource_exportation_extension_main() true ) ); - $table->data[1][] = html_print_button(__('Export'), '', false, 'export_to_ptr(\'visual_console\');', ['mode' => 'link'], true); + $table->data[1][] = html_print_button(__('Export'), '', false, 'export_to_ptr("visual_console");', ['mode' => 'link'], true); if ($hook_enterprise === true) { add_rows_for_enterprise($table->data); From c3f569fbb1e60c0cacd306e5dc3434ea4ac70194 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 16 May 2023 15:43:02 +0200 Subject: [PATCH 155/533] #11205 Update of styles for the table Active issue on this agent --- .../agentes/estado_generalagente.php | 34 +++++++++++-------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 24270c102c..d262040b1d 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -708,23 +708,17 @@ if ($last_incident != false) { $table_incident->width = '100%'; $table_incident->cellspacing = 0; $table_incident->cellpadding = 0; - $table_incident->class = 'white_table'; - $table_incident->style = array_fill(0, 3, 'width: 25%;'); + $table_incident->class = 'info_table tactical_table'; - $table_incident->head[0] = ' '.__('Active incident on this agent').''; - $table_incident->head_colspan[0] = 4; + $table_incident->head[0] = ''.__('Author').''; + $table_incident->head[1] = ''.__('Title').''; + $table_incident->head[2] = ''.__('Timestamp').''; + $table_incident->head[3] = ''.__('Priority').''; $data = []; - $data[0] = ''.__('Author').''; - $data[1] = $last_incident['id_creator']; - $data[2] = ''.__('Timestamp').''; - $data[3] = $last_incident['inicio']; - $table_incident->data[] = $data; - - $data = []; - $data[0] = ''.__('Title').''; + $data[0] = $last_incident['id_creator']; $data[1] = ''.$last_incident['titulo'].''; - $data[2] = ''.__('Priority').''; + $data[2] = $last_incident['inicio']; $data[3] = incidents_print_priority_img($last_incident['prioridad'], true); $table_incident->data[] = $data; } @@ -994,8 +988,18 @@ if (empty($agentIncidents) === false) { html_print_div( [ 'class' => 'agent_details_line', - 'content' => $agentIncidents, - ] + 'content' => ui_toggle( + '
'.$agentIncidents.'
', + ''.__('Active issue on this agent').'', + __('Agent incident main'), + 'agent_incident', + false, + true, + '', + 'box-flat white-box-content no_border', + 'box-flat white_table_graph w100p', + ), + ], ); } From f4cf8e769ab1105b68af9c7af4b2ee6e9c1e69d5 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Tue, 16 May 2023 16:00:17 +0200 Subject: [PATCH 156/533] 11094-Fix plugin data recovery --- .../agentes/module_manager_editor_plugin.php | 4 +++- pandora_console/include/ajax/module.php | 23 +++++++++++++++++++ .../include/javascript/pandora_modules.js | 9 ++++++-- 3 files changed, 33 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index c5b675d50c..b08ad3864d 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -146,10 +146,12 @@ foreach ($password_fields as $k => $p) { return; } + + const moduleId = ; load_plugin_description($("#id_plugin").val()); - load_plugin_macros_fields('simple-macro'); + load_plugin_macros_fields('simple-macro', moduleId); forced_title_callback(); diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 78751eb001..a8120c2150 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -38,6 +38,7 @@ if (check_login()) { enterprise_include_once('include/functions_metaconsole.php'); $get_plugin_macros = get_parameter('get_plugin_macros'); + $get_module_macros = get_parameter('get_module_macros'); $search_modules = get_parameter('search_modules'); $get_module_detail = get_parameter('get_module_detail', 0); $get_module_autocomplete_input = (bool) get_parameter( @@ -118,6 +119,28 @@ if (check_login()) { return; } + if ($get_module_macros && $get_module_macros > 0) { + if (https_is_running()) { + header('Content-type: application/json'); + } + + $module_id = $get_module_macros; + + $module_macros = db_get_value( + 'macros', + 'tagente_modulo', + 'id_agente_modulo', + $module_id + ); + + $macros = []; + $macros['base64'] = base64_encode($module_macros); + $macros['array'] = json_decode($module_macros, true); + + echo json_encode($macros); + return; + } + if ($search_modules) { if (https_is_running()) { header('Content-type: application/json'); diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 771efb460f..8b29cdae96 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -997,13 +997,18 @@ function add_macro_field(macro, row_model_id, type_copy, k) { $("#" + row_id).show(); } -function load_plugin_macros_fields(row_model_id) { +function load_plugin_macros_fields(row_model_id, moduleId = 0) { // Get plugin macros when selected and load macros fields var id_plugin = $("#id_plugin").val(); var params = []; params.push("page=include/ajax/module"); - params.push("get_plugin_macros=1"); + + if (moduleId > 0) { + params.push("get_module_macros=" + moduleId); + } else { + params.push("get_plugin_macros=1"); + } params.push("id_plugin=" + id_plugin); jQuery.ajax({ From 1d885f5e4269c3b9aa012d1db38ba8bce376d504 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 16:15:18 +0200 Subject: [PATCH 157/533] Fix functions_html --- pandora_console/include/functions_html.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 88cb032570..610c2c1c26 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,7 +4273,7 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $value) { + foreach ($attributes as $key => $val) { switch ($key) { case 'input_class': $inputClass .= ' '.$val; From 52886b96b34a6fd2e4f0878951f818e7da079768 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 16 May 2023 17:03:10 +0200 Subject: [PATCH 158/533] #10328 Fix security font and values --- .../godmode/alerts/configure_alert_command.php | 8 ++++---- pandora_console/include/functions_html.php | 10 +++++----- pandora_console/include/styles/pandora.css | 5 +++++ 3 files changed, 14 insertions(+), 9 deletions(-) diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index 722c680a27..27ee616f0b 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -413,18 +413,18 @@ $(document).ready (function () { $(".hide_inputs").each(function(index) { var $input_in_row = $(this).closest('tr').find('.field_value'); if($(this).is(':checked')) { - $input_in_row.prop('style', '-webkit-text-security: disc;'); + $input_in_row.prop('style', '-webkit-text-security: disc; font-family: text-security-disc;'); } else { $input_in_row.prop('style', ''); } }); - + $(".hide_inputs").click(function() { var $input_in_row = $(this).closest('tr').find('.field_value'); if($(this).is(':checked')) { - $input_in_row.prop('type', 'password'); + $input_in_row.prop('style', '-webkit-text-security: disc; font-family: text-security-disc;'); } else { - $input_in_row.prop('type', 'text') + $input_in_row.prop('style', ''); } }); }); diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 610c2c1c26..bc8ffefe8a 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,22 +4273,22 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $val) { + foreach ($attributes as $key => $value) { switch ($key) { case 'input_class': - $inputClass .= ' '.$val; + $inputClass .= ' '.$value; break; case 'label_class': - $labelClass .= ' '.$val; + $labelClass .= ' '.$value; break; case 'label_style': - $labelStyle .= 'style="'.$val.'"'; + $labelStyle .= 'style="'.$value.'"'; break; default: - $tmpAttributes[] = $key.'="'.$val.'"'; + $tmpAttributes[] = $key.'="'.$value.'"'; break; } } diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 25c7202216..1a42e6c7b9 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -87,6 +87,11 @@ font-weight: 900; } +@font-face { + font-family: "text-security-disc"; + src: url("https://raw.githubusercontent.com/noppa/text-security/master/dist/text-security-disc.woff"); +} + /* @font-face { font-family: "lato-italic"; From d4c3df295cdec3df2014d9f89e7235d636fde66f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 16 May 2023 17:46:51 +0200 Subject: [PATCH 159/533] #11241 fixed inverse interval in module edit --- pandora_console/godmode/agentes/configurar_agente.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index da75fd6342..fbadbe5353 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1546,7 +1546,11 @@ if ($update_module === true || $create_module === true) { } // Inverse string checkbox. - if ($id_module_type === MODULE_TYPE_GENERIC_DATA_STRING || $id_module_type === MODULE_TYPE_ASYNC_STRING) { + if ($id_module_type === MODULE_TYPE_GENERIC_DATA_STRING + || $id_module_type === MODULE_TYPE_ASYNC_STRING + || $id_module_type === MODULE_TYPE_REMOTE_TCP_STRING + || $id_module_type === MODULE_TYPE_REMOTE_CMD_STRING + ) { // Warning inverse string checkbox. $warning_string_checkbox = get_parameter('warning_inverse_string'); if (!empty($warning_string_checkbox) && $warning_string_checkbox === 'warning_inverse_string') { From 6d4b26998ececf0ee2a8d904b403dc074f240b8c Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 17 May 2023 01:00:18 +0200 Subject: [PATCH 160/533] 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 b957abdfe6..592c5072a0 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-230516 +Version: 7.0NG.771-230517 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 4e18a0c1f3..5dfb14ed12 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-230516" +pandora_version="7.0NG.771-230517" 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 3207af579f..170eb7f81b 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 => '230516'; +use constant AGENT_BUILD => '230517'; # 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 31e19344d0..035678a021 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 230516 +%define release 230517 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 57820828bd..d59e5e8e23 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 230516 +%define release 230517 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 17cff228b1..c634aa6007 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="230516" +PI_BUILD="230517" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index d884331d55..ecb82d8e7e 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230516} +{230517} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index e13dc74619..0eada00935 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 230516") +#define PANDORA_VERSION ("7.0NG.771 Build 230517") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index f9e5bc863f..cf97c6d914 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 230516))" + VALUE "ProductVersion", "(7.0NG.771(Build 230517))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 7eaadc39eb..7030313b5e 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230516 +Version: 7.0NG.771-230517 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 3c1ff95bbe..1e7db70601 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-230516" +pandora_version="7.0NG.771-230517" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8a4f1dd7e9..3a14a7d59c 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 = 'PC230516'; +$build_version = 'PC230517'; $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 b38f383dbd..9b520d1d6a 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 4e88b2c1c4..efbb6b09a9 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 230516 +%define release 230517 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 895503c5bf..002a38d4cb 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 230516 +%define release 230517 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 15103f7c80..7e88d86706 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230516" +PI_BUILD="230517" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d22a513ab7..445a00fe40 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 230516"; +my $version = "7.0NG.771 Build 230517"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 6f013196e7..1597a02b1f 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 230516"; +my $version = "7.0NG.771 Build 230517"; # save program name for logging my $progname = basename($0); From e87da5e1e5fffdb0f336089c9dd6abc702ecc078 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 17 May 2023 08:09:26 +0200 Subject: [PATCH 161/533] #10362 change MR after change Milestone --- pandora_console/extras/mr/64.sql | 3 +++ pandora_console/extras/mr/65.sql | 6 ------ 2 files changed, 3 insertions(+), 6 deletions(-) delete mode 100644 pandora_console/extras/mr/65.sql diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql index e4e42cc516..5f9ef08e05 100644 --- a/pandora_console/extras/mr/64.sql +++ b/pandora_console/extras/mr/64.sql @@ -4,4 +4,7 @@ UPDATE pandora.tnetwork_component SET module_enabled=1 WHERE name='Cisco _nameOID_ power state'; +ALTER TABLE `tlayout_data` +ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; + COMMIT; diff --git a/pandora_console/extras/mr/65.sql b/pandora_console/extras/mr/65.sql deleted file mode 100644 index 4b2ee3ddbf..0000000000 --- a/pandora_console/extras/mr/65.sql +++ /dev/null @@ -1,6 +0,0 @@ -START TRANSACTION; - -ALTER TABLE `tlayout_data` -ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; - -COMMIT; From 0e4f6ddd4dda84335bbcf58bd5fa7803495ae08b Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Wed, 17 May 2023 15:37:20 +0900 Subject: [PATCH 162/533] Updated Japanese console translations. --- pandora_console/include/languages/ja.mo | Bin 857870 -> 875781 bytes pandora_console/include/languages/ja.po | 37981 +++++++++++----------- 2 files changed, 19893 insertions(+), 18088 deletions(-) diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 4821137b337690c7b5ef50a1d1f29c32b57b99bb..1f1f600bd83f93e5eb9699fad0107b7084acdeb5 100644 GIT binary patch delta 217652 zcmXWkcfgKSAHeZj&m%iCtMJ%+Z<4Ky>||?Dh*Wq*bQ4kvS&7OjkxHpZ6QM#SN{eJw z8ZwH6@_xVfIqyH8>zwPl&iI|*IoD(L&RkPx>f3db2lA!QPw>C~WfF<2F=y#ai3v3l ziHof-vpR7yOIjiep2A%C59Y=!S<@2Pun=C3CGl~rfZ6da%!*qvGk%I?G9?mUU_Q#{ zvZd}P6FIV{C7M!E0PUzdR>8hl4IjbcxB+eWYrGNTsiCv_Dp$JQs7|yXcHQj_$_Vl)uArctx(XL>sJ& zPGmef(|<=E0rO{g{{XadZZkun-o!A}x_0t3_L&4fjAh z92gyg>6E8OXQ2a`hYoNtCTnr=e7x~3+Q1RCgR|%WvgZzKel-@OTm`SfcCmarnmbdX z%g~9ukG{VPoxq{!IW&iI=SfSZ9xRb3JXixAKnrxOZ$v|UbG$z<-hUpQ$y?|eZ;ACs z(D%;9a;ChYy#i>2%cB#hjU};5-ej2R$oSwibmWWBBzzG~rf<-Wj-yMED_>gTW-N=P z@gcN>)o6~aN0V|RK98SaGaQ{i3}`(TWjAb3a^VX{3j~j&5jcx(n`~Ex(B(!$UJg?c ziryFT7EDW&!s=)!yW%j8f_|8j z@{Yn`pkL#)lnj23*1nd!ikkE6R*9%T*!yN+JCv6P36yq;=2-JK(+8 z2hGyY&lhgg5hl^TR z2wlT=I0<{8FMNZJ_z>FBZ?T*x5jxC{E=@T!LbcI$+M^S@3EiG|#`43+$|Rn~q-XbH zE=;x+X!%97Pjt!pMu(yu+!wtc?dJis{fTJ%4`(Dp2Xo?$ zr_dQa8(o8T^cMQUrsxi|p)b(^?nj^d5$*VQw8Inl7oNh}-1wYtn{gT1;cXSe0B%QmancJIv8CuEzz6$`_NE-fxdSL z{j8?dN=sD53g`jU1C7`Sbcx2IIW_@J&dH%ZnV1zHn2Tod0yL!0#q!Is{5IO)7PNs+ z~U17Ac(`U!es?LoKCakS&? zbwUIRq92noxF1`f5h+nOEioRO;~0D&UGsYN(h|R8h5BiU33z1#2IgAM<-(CZg?8{f zy3b!j51fzCef=#ukW=XA^NNOH&5NV^yet~}hUgM?#Zq`PdNNK%540z+I=+laL-Rcs zcJw29mj8`Dn5$73NE!62*bp5^J9GfIqFH}$ERT&o5?zQMY%ick`~K)}XnW@yvH$Hb zN8`|NNp$25(HE{mL)-&>VHB3Ysj+?q`urC3`Q5R65Y2@@(1@N!*Zw~=5?QVZ7QKf3 zZ|JL1;e!pLtw4`Tgkg$I$lApb^Y^Z73H(b0%4Z z3p;Fvj2BT{@GM1l5pIeJQ_aXZJF0`X>WBu>3{tTL9m(WOMX&Rm{h_s(f zWN_h{Rz~+_do*i@MrU9}%CDj``wpGiPv{K(M3XX0v+#ZiG$PlcxpgCE;GMDlF?5?g zi#a??w{c;EyU_*@ph(<(SvFtI?xqp=-)!$+kzfkpP}c#m*`o496iYD zwhZreMwetDCe7|)To|(PXoGXn89swH_!2s!*U*l)piA*J+VBx{M*qe7t6PQlD@5y~ z@3lcA*c+Yj;8yH^M{++EhH^4GpvPkQ>Gtsl_r>Srt8_|J$gr01lqY?NTZQy&f!3$`F^0Wz-KqFTTOJf5x zsr$zJ#ril8YvL!#c;i2G#96KjYgrhbQE7C|Yop226Aj@YG`mN}`bW@R@C5pe zSc5*d6Ak^hXottKHkP1sX&u5gEP$?g4Ya}5=-S_e z4)k`cisR7tSD{PyI@->bSpG74G}ixxIoAN&zq7DBVJ&&FX*}I143ZU(m!wjsOj1@i5P!2-3;YhTh1@Zn$ z%%HqJmcK?r{1f`#MKq+@yM+#lq4%qx18#v%qzC%^ZRk%($$PkPM5ED@Zc2P$I=XG1 zL}&gS+QGW$$7sX*&^0}Qwv(-U76>YbFtRETcCt@D=|6^R(!82&KuS2)p zXXp}qi$>rVw1e}pK3k7aE`q6u?nCYg_QEqfVSEJ8WjW&(-UC^1|iVo~9bZPHL+nE&0voL9P&ga5pSP~z2 z79HtY^km$O*Wf{HhsAn^2o1(Ylt-cm&>HmHaULgQ%U&V-KSCqA8y(nwGzX6LV*gul zkqT#;wRc*g0Tx2{YiG3K`|w)aiq1T(PgCcXY;Q&?Qau z3(sXi>x)LqCb@7VHP92S6`C9!(18p@BQYC|&|5edKaTfn_K(?(sdEEsa(@9j@a^b; zj-dVgjwX3xKp1ec2p82TS4TtLAFJbPtbyO5BhGPi$dQ6*D2t+@ZiYs%16IHu=zx=G z$1Bmuy^22n9vZRjp+1?|&xJGp1KuvX{pi4cOUeHGE8h4Q?J(!9X^Dwg3f%?Iq62#!oylA1ntq7xj!)5K z{5{?;cU$-f)kc@16Z-j`gq870tc_c-ko*4}7p_&Ffnns8a46+YSP$Pum*f=sqg2U3 zp`n)O(v851xESxmkFgTgxjobmz^arVLF?Z{2X+{fEx9OgM+jk0>`3``Y>MkJ9nYXS za6X!Oa9Hy^=($lemWxL#pzqZ}BUT@cSSvIM+hc1SFqr+{f{PVYc#<8%a(Et1vXVnW zGF^vVDUU#B`~kX#r_eP%k99HI(2%rE(U9Mb=E5{IoL!a-6?verMj7OkZJ^_u;3+VgXq6g5QCI3bSm`oHM zk(PLnifb{oPtkq7A060vG^Dxj4ohT8V&i===;xO4SWqV z@Cc^9|LOOH8C;33ec5RJSl<>spn9PLy9FIU5)J7LbcQR?3A~RE{9ANs|G*OXFZy1w zd&91&jM?1()wwX68(M)a&=)(PYuN{F;AS+`6VZkqM+dwZU5Z!HHQkK9_X)ZLyV2Y^ zj&9d-BSX$q!lWl#O)gBb`sj-{pfl?l>xZHpPDJe7rGR`qse&* zZSV3?p`YUD_O3IE{h!Ltcw-E@mNU>KT8WPM3$){}(HDP<<{ceEUmp#5XLMkLqIaW9 zcR!jdlhFx3j<)y2X!gG^uBO5y*%)u^L>u}6J>!4Hu9)qA;Rlhv*p~8B=yN|tPoguu zfZt!1NaP{3_zYsCI)d~L&MP|yAM5p9zwJC8T7@s&>8NG_xGVo zcRH4{Ob9bCj_#fY=zG`2`d(;6MxyP{Ox3ghR&Ze!Z$z{9^H@HDo>YIK`@7HsVgJ`a z2htIJuYYs|np6|fb7CHvJFms^ZZz3Xpb^hW?qzlV7vaLSE`>&*3LeEq=nP9t3@_9{ z?>9#y)(ID5Z*(C4;4PSaQkeNLbV3iHA)k$Qya0{Rb4VBbWW$96coSW-&1i$)qDSek zXcFdqFsyx1tWLQ&dTw+?lXoEc+}&u$W6^;=hPJmLx+?nCgY17h-a&;S{t^w@aWsTE zCx<1dgf?&k+ChJG4evmodjLJSo<^5u8M<_9u{?f>mGB}yhvlb)-SEj2=3j-1tEPr5 zy&g@vPUu?RiOwvE4)js9q50@QH=*0@hv+}}Gv)jbg`c1(Yhr-ffZ-Hl}_zl^^B zMUsmVT%5*gc*f1ufa*_;rGJlKSC z-RMX(%h#d@&YS4K-;aKV=FkB&cTS{C@>QA}ZWKe4sTvxZ4roKe(2hrUqq(uX zG?rgOJKTu2vkQIic&xvGcAR5gm|!U^LH~)yTzD|_LATR=$kCXXiH78vz&SWVpQ(4RyH@;4gtEDOU-3ZQFQ3XM?hSZ))`H=#2eiq3pI+Rk+Jy+!DRUR=ojH{=_s z(7kBLenSUz25lg*C^T>dS}q>TRnVDUgPs%Z(ShECJ~t5U@LqJFlVkabSYDar!jZm> zzVHd!;CJYVe?edT2VL8oPla+xv|I zA<>+gflh1zIM2q7uH2K6oH{3{9TX=!$U|FU0yc&?9aW8l&&gsa-^mwp`DJ#jE%nCxQ*NrNVr@5j~=Yp=tI8x*v9+G5J1v z1by$9c>fHVrdd~nx#q^UluMwCJOrKClW6-Z@LD{+BAJ$0$VHXs!{5^Q5O1K|YGpVJ z=R^--XX zbA5DRtLUZUWmc^Vehoi3+I^jNeg(t$uSn(jb zMvKrF*2ePJ@%|s^QFQs5&~OQ~!@B4$=o0I1LnAj99q?o5T0ezGXaf$x?U?!-LA75A zYtdLU@p~Isjt6dhHLUG;bgiafU7U?Z>LWBVd(Z(Kj{b$t@ba}`AjNSQ<(lYEm5b4w z*@8(M+R23@`w9)^&uECVy%x4vA+&?i=s@bCp>2U4MLp3-3`1x7F#6mIGy<#U=Q8tiSt> zFraa0d(+VNXT8DxHv&&m;S8TeBe4!M@I&-4{TU5irgb5?%AxlgV-@U+74Q+Xo!8JD z*osE-Ycvu+#`0h2fp%GPeRwb{)}-Pp^fPn=x~-<5pPeOG2|qwXd>qa4>~Dr8D1nx1 zqwQRe4tN|^$0f0T7uKMhX+v1TWGyZ-sJI@@?jdNBJ&3OD2DIT%unrzVXI${D@Y_r+ z(V34&b7Dm-zY{$g&GmM;Uk{CF2V}P;6Ss3=woX7hnvc$Wb$B4LEtdDA9sG@kHrG2L z5*g^go1kZU4|L%3(e_@z417P9e?TMi7glut7kM`{+!CExuULKvZRlzAKzbD&`L5_M z=y{R$UKnsu^!d8zb8XR%ZbR4lVe~+oiEi8ZnEDfe74gP)j$U}01f>( zbmR-M1ip&S_;YliKgIi((B}(o4!fo<+HOxQiT^`8eiA+6U)`Jx4Sq$1GdPPjkmrMt zG}X}tI-?=G3w{!17o$-3K;azB`_oGX9EY_cmrfm)P^PnAGjXqZyZ8zC4-nb#!7wzCqbf#0# zHCv1hXe}DTEwQ{0eeO6q@GRTHbA_Xo(2lM_JMJ9qk1Sy_F^mgG_F%j*8|`2Tnmli! zGyDjB?u%GHjCTA7`tiy7VJMeDkMwKN_uIyDFSMP3XztvNsXq~ThzlE7fPNfaM@Re) z8i`$KgU6zOqHFvgx&-+@3Nz0@>uaL#w?W_Qjh+L8&|I314r~>sen(&f7l!s5bO67i zp*)R_H0|S1E)uPT);GqE*ahuyX}tdiI@4{KfxFRf#%c6hl6!lIa4k%ljqSMbgc^!| z7Vky}Fcux@^ys4KYIFc^qci#(ef|%0n_fcSE4U-%PC2YdxglDA8>ZvP9r62r9~Fl3 zLG*x`g+^jwtY3z9umUxY^LJv5hg?_~cQ znuAo>!M|vhUhzrz5$tNTz9rgGcWjE|(FWd)_jh6=%KNb~7Wy=_(+xfIZ$W217@g>S z@&42#7mjdl^!fO}Tk(Mp(TIGB&inux@-yfF@_!bRtQ0!%sSM-@;o$s<(N9_@kYwK&`6Zs8`iD?8sfIG z+!JkQ2>SjQbbCLFF71o4{sXj~uQ2I@zr-8=qA%qADl||NEw@HzI0y~>M0AETVtF~* z&MWA1ThI;;L{FiSP5(Ol>yo0;VqdfW4RHn)9z3evzBOwonn1obg2f$`;*a- z&qCjS0UgL|=n{R1ws!uDnG8msn~V-%Ml3IkK8r@`Wwf7<&|hOFzvIHMU#9QEky;GxpbfglUC?cF zJGRBg(C5EG2Xq=8K&E}+N4Kldq-~G3GZ1}l1Uj$>&;d+GmOhzyh6^8j1r6=n=uAGs zjkp_)(CqzTjh{r5PT1XrTZzl$|+M=W2!-1MKw_Csj6 z2s*-w=-OU`zSun8?}UbMK&-zL{R)mn-&>AGZXKGm8`0;##?&rAbLuxVDNkY2ZF7bT zJNysb4QU5Mh{~f&(;9uTGrHD2uo~WjzP}WW#0%*2@1T+T5bgLY^kZ`%dIEhuaftn2 z8S@|cexxDJiPcJ%1nkB0Cx*1@!&(h{w(0cPL?bij+z zBl}Y{^vBUio}F|_?;tys|-eXut=!Xeln$6ycq3b$g_W8sgZPGb|wYkmp2 z@jH4>oJO~6;a|hHD}lCK4^76_X!~7|2qY5&;*AlZB5{9w;88Rp3(=G7`B>hBhW=CZ z1p5IE<>kMH=L@3uOQVsji@x6$&6V5G=kLSRzX*7k3r92`-8Rq0@;hil+hchj+R!g( z18Kj98Rkc4RtX(&y=Y6c-OgwP`lHD?9Q_~G>Ja<1e#OpF$4FY1O5|@NZKD^sS07z2AXhTXu6{V7=q3yi4NdVG!mLs+HY^TEscNIFba_IBb&<-1+6Y7LUVo>znSf9j_)XzuXd(#SMxCNKs9yFBq z{uvsaiceEsgl@0;e}((~(4+TmG}L3!0Zl_gJPU321+=3L=-O{Z2lfs6eDcTmz;QGe z{y{^O=S;99nmn~)xdqx#H+05#paU6?enY0BNjM#i+-fw3-aw!G0_}J|GO%RgC>MT> zPNGZk7xu&pXan8PhHUPS?I@2!mtq^X#;>ss7W+G#h+VNFHd4RrG3GJ{U+Flp*`2pAu zhhggbzk>@y^PLrV1a06?bSW-7AL{c*OQWH$jc%*!(GG5j_eaG0Ni3e~<q06PoR-n6U*CT z`FpgZzpw&cep!0zAghipQ9pFa?nEOvCCP<9GR;J@bRn7p%diTrMQ3&ZU9;oplBA`j zr_O^s(RyfoUou~ zvxT)PiB+j@gf7Wow4?dx8m>emxEAeTYjk_O{~5aG-=GsY6+MTke-U(v3rBQC_Fy42 z7c$TeDxi_6g(hE1G%5R_xidQ6pNKUn&qm+h66<%Oxv@X`3mW0GnB)vjq~{2s&4X^2 z>gcv?hbGYgGy)^AHa>&(aX0!=%9b-EX?1jl*P=gwv_^Js;ug$|1LOUnXvFWynVwAj z3^$buljbFKMxUSq`x@=w2oA+;xxx~RLbG@o+R&G1=#QcA9gqGK&3r{zvb<u^zf4ZLu--N3(wsI)K;EoY{nSd=MSbFVPEV(&fq@k~2RV;Zo76 zsd~Qu4Y=?uzYcw&Kf1jJq76TQ&R|-se=52Tn^M0E-JZD%gp(};jX*1OpdHbU`=Za? zfkx~;O#O@CDPB-98y(1EG*s)bD!z-&@K@}Bm9GrmhutY}LmMtyFbuSEv?==S=!Uj` zE4rj3&%#eW4K=@=j=|ZbLg55uJo~JQp3%GPIpH&~jI0_O(q`z|cS9Q(8S5WL*Yc@YUXK}+ zx1%Bc70v#?(TQa$9zvcS9dJRkzdFcnOC~yV;e$QUjs~C|j6y>?3(bX<=*Ztezvp|< zH9mpWFms7eu7kec4l{5N`rbq6$@dJ_#FtYh`3(dvOoqG}>8Zb(+#0J=o`z=gIyB_p zq612l3O#S&^e=ct0#sk;|52G`v zQ#y3e2`vvtL-#P+;dAJK-a$M50`2fTnxsX_q$gTp1#E`H(8#@vKEDH#t++VFg~?X0 zYX8VCCZ2QGO!87y5-sb zL%A49g)=#T&hRX{=J_gwB`Alkbvv}7o3SKLM0dq<^!azt**GFgC5$*8KSU&}w z@l)u*wicbh#&AEG*vEw-JB>D+t9odlJlbG0H0ke{ogZI&o(Qb6WN8_x>V2N&A1)irj_cl|LbwloQwK+AG+4B#`3Rds7uug4R*i`%6Fkl zHVfR861{&fHo)cR!L$!EFs)Hok}`NXAg&$`#P}+oSFFLMJ!~ZD(ApPfp{)WSWa+>x<}& zH={G#i;nyNI?xl*^Jqhvn}p}{q4&#S2G&G7?utgDfAk)-{VB*qlZhv}u%T7xQml*R zt!NhSMzi%#bf(#_4Y^Sj?XZ5d1=`UKXasLY+r1lI>j|+u1>L^0v7r0^SuX7OZM1>y zXaoCW`FAuYE@34s+%!Db5}ip8bf!bmhX02~>|wOsh3NKPg|_n%rgjUqqJNIK^u(Lc z8r>%UqT8f!^Uy#&G}PB)O&owG-)wXnu1B}i9(4bn#|l`eWw_rAoq1ohgW+fd{)aB*RCGWq z(d2x+CHp^>Y*aYHy_f|L#|M9n^=HwB(prTV^F=ezkXJ(o-V9CRn__u5+R+qrN#~$T zyga(DRWfXgkE!s$`5qn6&uBvz(3$6L9U@c}U82_LfNn24^c;nh=2Xv&pV|fTVvoUB#)8qX`@%{_ZH_-;Sp#$8Fw(~7|@Ek)2 z_%Ax}9M`9oESV_Ag~?Y3?WhAf;{j*`L(z`Mq76KP?uG?u=$}E8ZDsUT^trdt&+|vI z{!py{6>aw%rvCmZ@ZwM2siWMn$!%8^e2KIktE>=_haqgIFCe>k@tdsf9Hu--1SNE;hnf(R1WC^jnanYv{LJk_$)D79H6Ltb_B=&~1+% zLTCIBnoN1Rg?(H)dM&yHy|6A0MI*8leSRG}fsfIpJb|{C%+x)Mv@n`Xb zgG_@Zwf9Up|5}g<8pTik`|6k)`5)U-%5q@y^0B!gP zy1#!%*Z6ES_f0W5(dSx3+oRjEdo1@xBXAo!fcww^J&bPSCouKr|I6Y7YtWE{@za|bZPrwIzEo6pa17`(UFQZ z=$ikFhWN_fA@tSJtZsu2a3Hq8B$|XDph0HR zx+H}Mg!7=n0QSGzp)VD_co$lpiq2#Kx^Guu25v<|{$ng>xjB?8paW@#4y-5I(I7N; zM#uY;&kp%mS{& z9~SQCMH?&`%T;5!Ni4TT+v|lU@m;YzEta1~543e?&g~kO48Jk>6BYheY5w8qi8Q z?Wo^fp?)a(9e)7rcy{zDtWS9bdIW!uZrh7!5*HZ}B32ijKy!4-yP`{+yqOC}crV() z1awA^qc1E(L%JG$aU=TTr|6RXfIfc$-3{krIm_K4f_cz`s1Q2i60uwsnIQlEiwiqy zgm%zAmV2Qc4~-_#4(FjWd=7nYGy2{hbXy%n2Xp~l>-2lVxltT_zZv>|XUyfsAI^m# zy&nzvRP^&Y2aU*HEP==3{jB$ffnA9vQ6)54o1+~LMwjwIG?$)0Ben?5sh7}5y^g8< z{{a_f^$ySJbN8;%Zm8XDQf znELzwuXEvuKSBqv4}I_y8rrO*!bhec+HgBGQhm@Pc`%xM)8qXY(4}}A-G+P70seu_ z@C>%YdZXF@eoQ8f4jnB-*Jvd=@;767OZ1EA5j1K4L?iTHEa&=PC>KUUULJj}A)0)x z;{A5$lK1)_``-p`ix1w5hGqg9i8<(iR-uvD5d9E+@5^}qNG$&uy=+XlpEsHjtscEL zdP6c^^hHN}XLLez78=53=s?~^vv&tNpr6rDpFx)-&wb&?_+seHo1^V^h~@s#A?T0$ z$x&QX&?L+>K0Kcf8&EER=1fntBrW1zq#gI1Ddhb@%^}31I*W(Ij~eeQ-58qc_mdZ$St61v=n^=ySit`ZMT~T=qa1 zXdZMsmPXHyDriJIpzRLD{Pdp~%Z2-W2HL^W_`u6($M44aPh$PIXatU-yXPOY;k+cX zA+C;YUw?DUf%ZY4za4FV4BGA#O#S>nj|8hb2?1DDb z7j5WnG*Y9ZQ_=HbKKk4mG}%7DnRpm8@SdsRPrc?~dCJGoZJx~YP&mUIqGxy?bpMXS z44j8HxDL&cy=aFg(NJca7LqG3mZMw>D`HzTVk5CJE<_`_7oG4iBofKQ87`dJe`tu( z9u5uXjut{AQ39QLrD!Acy>{qQbwan*jnRQw^{)=Xv9tN5Zy?+&&L>18pHAg4V0d1!r`rNJPQr(SC^geV6Ct=c# z7ja<&&!8b*g?79l)_;ID{3+Vufml8p?`L^5%qSlk;)+-Wo1)JTLvv>e+RqYnAgdo` z|2xvxsc@tlq8~=TL4~v;0k6Z+^TYG+;b6*_@KYT8M0(;@Ox9bFo>Q~#~waoCmeW?YE{mWGhOi*Cb@&^7)Hv*35J{xGJN4$X;7%R-J6M4zvM z8Q1_9VJ}Sm`u{I3T+{PtvSnT#);>4dP+_#=s%Y}nL7#7kHrxvBxHJ0vVDxi50ZqcE z@Oxa0K0p51kn9iRy-6yb;KCVadoDfoA7$^0tq9>N^yE6eA`TGkAoKHKW<}9~)WF)< z7%Soktd9$^0`5lJKaXYbhLzzrDDTDOa4NQNaT05;N>Bau`%*8Yr~WgQYp^5r#aD-~ z-EeeQB+*DcjGpOp(CxSa{Rq8-ejRsV1|Ev_m%SLCFNjX8;*0U;|9VuoA3LHSpML01 zxnt0f&5QS!qBDL4J;B~akJ2xqzoPAAdMRw{JeWZ_BbJ+^1MPyocgIU{|35&5Gn$EZ z_+<1s^yGRK&4Hb04(vhK{A;ws6X<*YVLiMo! zJoyfy4g7%)oqlhlbmtGwvO|8*S(zbf9z58LvYJyaSEMVf48R zX!d7)BYXp@reyzh=b|Dv?#Jr50v*6!tcvOD!q==8+TZ{*#P>yKp-KBZ8j(%tk{m?O zflFvI7h4~ex)Hi-uE)IY|2|yU@bLJ+L+CHH=Aql^RWx*4WBD_*qr+&!m%SMxR3cgf zjZ|~={!Oud6uKl+(Ir`cssH}h^ITM-Vl5iV{g}#TbS<-Q2+5KkU8>S(sN3V+cr)IC zyV0a-_*NKjTl8S+hW;!#EtX%#c9ajj#r`+>s=OUWR0kb-OSFSt=+fMU4(v(Hz_-yg z-G^?gW9ZECz7y8IG}=yMyav0(@=R<&`8l-xpWk8syZtUw;daaZZs_1Dw83l8`i|%e z1JHqtLUZ5=bctS$<<01G-=G6HjwWN;d!hcSXbrU8)=4gGpa+^nL(!#}f`;-Hw4sgY zjQ64)A4WU+2b z9r-Tw==~YH;UCx@TWk)yU?zHSt-*fyC$`DNntu>-=gBSMC!Y^+0QW0z4Uv5m3;FB+ zr?_yRzK+gdcYNS`bekQ=49vAHgti(Q!UpJWxB*?F(a}fIi7Z2Zo$v;_#BbyE_!;^Q zDfA%&r2oX#To}SO(T?Z?J)(WEHszbqWSxg~a5=ixU!(i^5PB4!L_?nAqhLWamrA1V z*F@iIim8A9+m;Jwelwb6!_WuEqBEF=b}%FQG&p#z$X4ro>^KaGZRRjhv(eQ!HD<8RRSj>PhbSU!&q z=<@9$$qS%KTw{AOyx5!yJL-To*b5EOV032pq8;2HeF%MSHu~PuSpRZ#1DfSq&|Pyl z)?bQd-w`5nWs(a=Rvzu3F8VEKhK{foI^&_}KpsG6I1Np*x#&QjN6(K}(ROyA&+SDA zcqsY@+TR8Axn#DT;ei5ZLnYC*t&Bcc8y!eN)KZ;jp?eK0x){Z;UC^!)>91b#=4 z;%uLU{@NfDN+!B-;Yj+T`}_`c#&<;@L_Z!+pbfr@sTrcr??q?2AKiw>(D(mCcSF8U z!+TZH=Ne-Lybj5Kep$>#B`QW^FI^XMCa0!%V8718IRa+z&l??nVdlB--&R zbgACJJ8&Di-Ky>m1FwzdNTXEv}2uCT$sJ@VHx}otKe^FBnp2OennFn zopEn8l!MU$jzR}C4PDzO(RNm#q27UR$30jVe?r^6`s=v=%X48x4YY&CmJ<;c;prL#XE8%W5q!(j-(QiXX4Wq51ov<3u^^WC7Fo)m&d0ZIErSZn=(f848 z-i{7r7rMs#(IopVmNR`9B9;e@R0g^`YN8YAh%Q-Qw4K3d1V&@hj+0!NbaT+quS6ew z6Ww-O(HC~24eiANcnA%3^L?SCHfYGZBR_#9dZIbdJJ#QdzJEJ9v3vKi|9#;;Dw^W> z_`th3hw{g`5c}*813H7gc-i+M#97fula4X#QR&&4tGZnMNgrT&U85S zK7ap%3mdM0zR(1H;0Cm#o6$ACE0(9ABcFo~cy+AbjK04s`UBeT33SHkN5X*fqwkl; z)PMi0DHp!j2Yv8PwBd2+3}?ss73dnjfevsJx=X%52Y3+8nX_ol{D(fD^=Md{0%+2e zK%cLP8SekHJ9epm# zFX4WEw4GvT1S-V(s)^AJ@Zm z-{LL!FS>>U{s;{XN6VwpnNCJ$wg_G0HRu3e!y5QLnqwz0_4j|zrY=a96X}VYxRD2K zU@*D_Eu@%0EzHk!9W7a>z!7~-z6${XiE<*>n3f(pDqY>H{J%Z-KZ|K2w;ZOFz`#9HM z;e}FYxha}N-O)81gmyF}Iuh+*0-BtQ&}7?yZqJX<=RZf2?mIL$en6AiK^wRooync(nvTSFI4PDtiTA%lPrSpi{ur7wXVD1dIUD*bgif?_ zk_$u84DGlp`cv;9Gy)UR(9cF2cmYkOSJ7<#1nux&G)dF`4(34zUJSio3Y};LwEb() z_L4VoVW|3JT^t-;93S`+Q)`GB+&>acKNq%TSu9U|Tl8SM2dCmPybjC%6FMA$uKjd$ zpo@?JB@-*TaBbd+?m^e`7j)+5(2?gkAGS>ybO~ypp}iJuuqXQ5pm={QHljQYjo1fR z2@jwV&vwBGv;VH*!iK7(D){w1`oK+SsD_|RGX)*k0yOEKN0VqP+VLUuxieTBvtA4n zy9S*|H*}zPM(@Ma-~X8!A6SSsycS*iUFb{?q6fzxXa`yT4Ihu9=yT1`0e3+MbQ^lW zOhli542|#-bOP(qcDG^bzyI+C7uBfv5q+`1f1$w)w1Haa3$4+Hx}gIa8l8-;?bGOh zUP7OL5AASgEPsa%@EH1B=1c5>2sbUEU5w1gD_#AEEhgd!t zy%fD7bGTm&eZE?>3EExkWzk%#h(@GiR{kH+?4UOl&TtSq@)76=r=bna zk1j-K_zW7U6=(;m(U7l22lzJH?v8kWFZ%p`w4X!h^S@?QBe-FWD7H^hBnX) zdtrOL7FVFjbQG)NIkdxa*)ykp_N#|R=0-F!cc23tj&?i>ZTA7R-$#;M*x=LXh+d7p zh33Qu=#0NWb75aB|B9~t>F6c2l>f?1I8rmu70A``dyc~_xyJ&80M+bTcbGZNi zj1OEwmm+8G@InR}nX2fE*PsLKj@5A>R>65#12@{MRax1*65jV|FtG$QlS99xAx zw-!^s|F?+?4~j41jo;B1E}&U_MZT~N3!nomjCN2B9Y8~LjoZX>SG1!6=zs^u`{U4o zKZNGMf_&_Mx5bM1z$<9O@1XS`Mn8}Dze5}TDS84Oz`1xobN=vtUaUs_)#yap$NK)! zA!r0f8x=S8IJAMxB za6OvLo6rtF$MSdtSxSEYr%>pi06Mc8Xozk=8yb#wltdd`6ziWuBd{LrU?)1@eX;x( z+F^R(5TQco^QF;mjt^-_fm z=mqp3y1Z0qFdsUQ3TQh`(1yFj`vYVBxadsu`Q^c6;>}p`N%RmJy0hpSUr{=AR1nSH zDrf`O#d6Hur<0g-O!mmh=zCp8lhLweZC2OZwH#BU&ZpT6_TOhvs9QoX%)lA zrwH0XLv)7M#c~fcA_LJRos4d~r?4x&hZ&fsQpk;(SdnrMw4I6QL}sA_d^*X6Yx)v) z!uQY-=c*j)3!&u-Xja!kv$%EirsxoK0{5eloQ-y{2yK5gI-z&aNNh(VoZK5P4q|G1 zpdI}i%XzAVk3}i;ephrR1JQ;?q75g}?K%S;z84c-5vxNt^~VpUv;<#8{1;QWh@yl}1XdpV7<1my?O4wj?8@YsWmFr5P=3#w&A06mfG#7F<2%#^4 zu5AY9#xi&r)=VJM_VB=!|Z~cW@Z` zUWGr_2qKqqh?_Jre zGBUEu$Ve#3$mlB~A%s+lL}rrmQ&vbNt3iV(MNz4wkW%q`zrW}F^?J^Ep68s;`JD0n z-b+fPN^waDSG}Uvk9B#sN{2t3< zmWJV6sf@ng6CLniO#c1?6ugTDwhR4+ z^9h=%FVGSGga&dReLriHuvqis1j==qBtk@+sBlg`Mms)=W$*+#$Jv{Psku5@3~jJ_ zv=KV;wrJ)$qXQX;1~@9#KZ+hibI`@OCc%Y~Z$LZVf*EipI>PtR?`j{QpApBK)DIKesNfce%^0EGjbGNT)(54;Ey(vAKUrRkyl2ipd+1JNlMgLX6xZRk04@w|nmb}t(Ec{KHx(aaTSlO_2tp;bor|2VYcr_pxTVHMob zhW&3Uevc3Qi7vW4Z9__npeb&K>DU<^@o01^X5g*(Qmp?4Z>OBnF6^q-=;G{v4x~Fe zfI(tx_feT3C~r> z(v*8(IzEO?aT)sjY4pI#*EO7owXr|_r`*GZ5$;2`$rUVy*LMqFt8c=tl>4CDY%A8n zFK{sC>>l15gRY^c(J!;B(Exrzw|Au;;p7{J6)3-mi5gt&=VBRV=ov=70&7yvc~_Q{ zRoDa%!ga>?>SKIb*LZDGT}3T8>X+(>_^}|B?EUzTv0hLidCpZtustcz!!x z&vQlkvH$aPQMZ4VteqXqM#vP48};N_itr$42*usY!gug)gQ*5cY9jbk)y8NA@;4 zq7&$9&pIrmx-xqIKJ@w7=)trJ{knY!&D?o(0688Ezsx@LF?xFvef28yEtX^BvNJ@iAVZL}LY zb^XwcPD*gml8a~XR{Rz{;mVH-YoHD~f|lrqPv=;k7VkfYW?)q;Z$Sgy7weCqi|#Bs z#aE3FyD1Nv!9;T|?4SpllKbL~+310@9DQ*&_QX%nkyd&n1Xvq=zXf`t-HDET0Q%lI zbZQ<$cgGy`{Y{}hk+PEuU;G4(=s4QoMKlwsOi?BDk80~FB?1MAo1HYpkW_vWuadRv~xi1>%j96ZR6)EpS zKV<$!*HH0^VGXsx@{}J$52{7ceR!+;|1U25ylyfnyf_hWqx>rR8Sr6m*f!M;GB@H1Jo@DR~DIrt)JhO!XnO{5{&hFKCMYMHkt1lS8J; zqN}%2EO$Z|-4L{$3D^*yM0dwW=$!wIZtL^tqRc&o{ci_lr-W_M6z!-F`l0g>`r-m~ z1WVBouZ?a;pZ^36`~*6((^wb(LQlSGkB0znLEF0n{Y>fhIE%vlJc|kgS%rR~cn@6@ z|DpT!+NmLx)zOjOjCR~EmiwR?8G%m46KKHCq8V8l@2^AOdk-DR7YQzW;Rp1EKQSFM zJP`u85v{L>2G|T8Q7?464n`N_-=T}?Cp2RIdR%hOu0bO&AH4~EzcrfrUg+8xinjAetbYvsY?y-%=(%7b z@HMQB8!!X@ibnbyX2L(vi2sb`Y%@ZAF0{dG&^1#S&1e%e@b>5w--BlE5p)qw!&JZj zFXzIDUq#RQx6y!hqKj%bI^s_-c|gVT#c0+i!--cAeXkO_?P{O_--2%A_GmvN&;Tc6 zR`>rrE==J+QNcA$YAjQ3BWfm}uhkY`SKzX)1i3EifR zV!1z>nTOF#PfBoMnxg|4 z8|!Ds@-yiBi8Wk!u)L2I@LP1`Ip>9KQW70`BedfVXvTV>&kaR8n1UWa&tp5>9?ku9 znET$*+32F&j^*h;Eg}-M@FBbJ{c34@U~^8uZr8kqd=f9i8#hb^qY&gfd`iz_(_A4M}$Zb7(TJK6+&uPr+FcgOMr zu{Zt$=oF4e1Db&byc}IyYccun|NM^&8`_UXd>C!uNA&x^f3ZH} z(ola5+CXWvgNo=El$+2gY=}=0I8qKottdVpnG#{MtL#SL7Tf%@qF zZ-I7n7doeX(2mBV0Zv6%_p@kVOVIaUL)XxjSpF#9KY|YM2Xv~>pqWWo&i*%rS1k`C zE`UBz3yrvCv0pl~Ewejg3I;L2cOG&9A}DJz8zpaR2 z6}M609Q8#feSwcQkpQ z{dbxR_xr_U1;1o^HKed0+CXV^1T|v)t+Ct%eQzlG+$3}Wv(b?+j`ds7jO;;2{&}qb zMcw~@bKyu+*M^Z_hc;9mt*?(Za68&jmssBq?Pw$#;2bQCE73Lb2_`d$w)b1~O7!a2 z*#D-YC>MTiSBkbqI~t6>_%M24JP~~feQy)m@oqE|$721tXvTFRkUZ$NEQ+py;<5hb zb?ko|zKsey>Wdzc!{Y-p(79iL2J|v|GQN&xyfX?A^^kjSs?O+cYz}NBqALuU1v_9~Qdkas?+&!zME`j4Fq*moj?YJv)5G7Iub76zS&=DulRs96IUzeeCwiC_70ra^O=zG7!`b%iT**AoM zilEPxM(e9ao1$x>GbaE2kFi`B=`+{@*J3mL6V1R)Z-%wd23-qxqKmaB8rTpt&~dT; zIW$wN(2h5t8Q2}`ze4-_(X#vh3KuS(>~DqCl|)~thR#)U^nUkP9)Sih4R6B*Xke$% z)c=ZZ%S&iSxi^NNuu5Y!%C}pVIj)PQ zvPHb#Etc<%<#Fg-Pe%iNI=VLc0lFK$Mce%u&Dh1Q?0@I@G8IOY`|XhW!srO9qA6^F zPQhL1^P|!2G!0#puVX{pi9VNUTNp@TbSf*LCu~Es-MgbB67ga>`ru3GL9rp$e~33z z{x04xwmk$;6K$vkdQkO5Gte)3Kiba2=yOk@i**IMcHYFQnAjC>{Dm#4NZS!c)(#!n zD0B*@VtJg8rfw%XqCMy${SkfczgW)xPUtWlt*?xBd^48C*2sH_lu=wbH#5-GK7%&A z3Z3)an2txWDE^C%sL;-k>S}1ix1;qv&_(-TEI*3|uojEqR!lBFOn(3WnF~A0^loS% zKboov=#Vq(qEzk^f zK^N~BO#b=bOI$dDx6y6*G5X+Xbc8u}hsAXR`sJ}Cnvrto{W@reEzl7UkN0Pxsa_b% ztI_jfBf5sZ+8y`*cT~72{=sAidtwJzhx$6`{bA@Te;&=$GHip#V||sqA)tEb;%$Wv ztQ)#W2cx^?Q8a)j_9n8VjO1cA6*iobj^H# zuAxuR0epon+Mm#KA?t_XNKT}4;iuP~(c$O=v(XM#q8-17j^tRpe;(~1$4B9_pa9xV zb9AcuVmdyF?wYme0QaK<`UZJEk@7niHk|9@5P1nS)fLefZbpybcCmf{nxRo>LzB@C zo{9Av(D&a(2l6SJfuCdjUub(-Kk-wM&)=e4SkV+ch`M7X?2k6|bgW;7cDyduZ$lT^ zN3r}3`u=a|V!MQ9=;{L@lQ*FK)W$~G21oe$Kbwo0n0hdb(Q@F@1t|N4-Mcm zbVMiO{ol|`T|l>E)=$HG*P#Iwj+Vh&C|5_P_CZXz-DYy((K;7xV10BadXyeO8@h;& zDC1`#Gr6Kg&;To;&(%hsYm5fk20c%@qZu8K2Jqx(?0+9vMTIZCiI#Vw+v($2{tg}C zS+t`}pNCbS11;x6kJiF?2M)#ia0jMig)c(Kt_g}L7c`*D z=!ml&j&q21PzFuiO|iZUdT{kc-y4GNrial0XQ6?-jAd{G8qhKH`NSD6Z158Lr&RgB z42!TX+F@t3f%~H4(7>KV_xoaWWN)MG>_szl3Vkobkr3cDXt@v?SjAu>r7;&q+!>Q2 zz{->#Mmt!AcDM_D@k_L$Gia)_9SteH5$jT}kM5EY=l~|6i~1R~z2))#yI9Qqe}D@+ zK8L2}N_^nzuR_Cx(FST^d2EKx-LP2y6gslS=v2Ip?wT!VpvTeG{~tP#qF;v$Rl}?4 zKc#i7=!r%?8vS&df@bDPG{sA!>(CUx9X%X9hYlduvG998+qnheie-4u)MKe_Nn=s-AXnXB39q&fl zo$w9&-;_+I!VaEAKWvtu9c)D--HE313pCI_;{A-@hD>Eer|@d@y&KSPIK^VQB|5M+ zXhwRVYvI9f6X5`vMTHSQiykP;&=jx5J8=)*j_Jq42#4TM%Cqnuyo|oz_e5B{51`)* z7NZBvcbbu1hNUUzIT-@1o8ZEVUT7w!Vnuu&J<0Z9CA{HONZGAuU~SP)y+N^lD!K@t zL`S*^J&M<$8GH-<>a`Eez;9@#5?Ou-FJwnYP!K(#N}*HH09`y?(H94z0X!1#KZm}z z9-W#U=;Hk(dMMsM7X2BW>c8-5KmRlS7y@_}ZD=_fzk z4b99D^!;&|37ribzAz8X$ctzPucLu&LKoXE zoQsFh_wM^OH2g67Tp~In`W)Ksax^oq|H}Ti;f?Xej`-j{w86vZB0Pnz;*>L?fqZCS zMbVC`MsGm}avS=7cl7;x(Yc?59!x9HHS@t4_P-ZLs4!K(q7DCz2A2J|Fg1D6$P1w- zS7|h$3bEV}O?fl4&JzeO|f6T093!IGHgk8otx zMt_j#h-Pd!8b|`o$js;x^!+zuc|RKHx3T_5WOpS}E^}dn*PRQW=e443&@;L}I){_c zFDMJqfOeqU^Ay_g6||ka=fh`3wP+i3&Ih3*pN5t2B`oXy|AY%0xD+4Abs;=h5?$pt zp&vf2qxZ)9lhOBHKm%Kc?xs(%EPjo?m-c69uQ*z+hgI=TEJ^<w@ z19=#Ya1q+kC+G-&Mn{nA?<~pxS6sR12?f|bjr`8pMqP_29KZvxQMn}=)bUb8l!8a2m1U7 zbaBr0FNNB{Dk>c5+h{|F(GD*}vt15TP!!EfYcz8Sw4>+HhPPu6{2Fbi-j#5_GnSz| z9!ueJbZS3LaA8A#p%GrgE_RN~qY-w9-iu}=fu?dk8sH{$#2>}`=g>g1WeAqRWG2yX z%RSLuG9sFo$AybxJ^J7-H1e;}fG(kt=gpX!%+yV2$L*s1&I2jFSDms<(VtFBEp}Z;wN!nE8WvxSj0mq;nc zh5NDrnxf9=A{m9Ha1Gk=r|2U6K9>JRrzl&V)Z`DH*P(&b#a`G94RAU7{{N!yqy2n= z1>OIDa$zcSUlXi=rnn_K(jI841|ug{%0t){*Pz=nHE+mVH#7rxqaEIh1~>){FA4Ckp5Fvd4canzecCzVk}>iFEm^MO>Hf7PH)C^Y#tpDor+G~Dm1fO(Sdx12KIgQ z0w%nXdTn?hKY9e0Lg%U-8hL;8v*981GhsS3xr7Xql+jVeW3z6;(E~z=<|coxgHhEk49&p0X>5bU=99+ zJF$u7f~m>>Wb-W6rQ9=deQNT*-+u-_?I=Hv>6kdoMI$c$#`;*lSm41)SHu|BoHH`Og-+El^!`fp9NCX$@JGA}^OO&}r49C= zJQ&yE9<1X2A5(#d`M7!oO7nu$koGQN)qM}AxN@Uc4{eel&-K8gmIy+&&C+v;?@gYui$3A5G= zU#0HCVwA_Ci*q5i!5!#;uC5gV?~3IpFUA(QuNM2?F9>;ShZGG$M>Z9mtJm>){4QYF3#!L8Mom*n7=;z-$=*S5377HR-l}E zQy5WoOsCulTjNMOxVEznf=!Akfv z8rXa2XGn$?;ru9otf53oXD*zxSFt)CM&~p~%Me&SbfkBo0nNhhxE*cyhE{RAqPyS; zw4Eb35Oduc0vUy_{^jU7a~k>imp{$EEj9VOnDS_9MxonpKAOV1w}+|ei+<>=!@Kb! zy4pLpjz0mRyJ<0|<3aRO@*LVuo;Kn6`dEVUU09g@QzmiY123VAZy)-p^%t7bYubiy zLKV>uqmJm0Ttm>Qn~OK&TbLIwpc%cYU6|4um`=GPdZLa%1Ahe*HuMn}*W!8fD_6EV z!kkt`JLrn(I38Vui_nv9FP6qrXgj&uhxcos?{!DlNCLh80{Y%gbfCxDv;V!3y+e4h zDmvmWXoSPj2IiyBtw%fj5)Cv%$53Ae%~%_>ejxhZEOZLipo@Di+WzTimQL({Q=i@` zJa8)-`5?5znV1LvhrYNAUB$=Ij{ZV3QuNO7{B3A?7&?H3=ty^<@BbRhSv!ZdQZvCt zdu|LsJKT&d@mq8;mhBR@Q%kg=v1t8D^rZX%U36#BHE?6sFjc+K1Lsln{&VQ_`_SEV z9*be3WVg^k3v58e7`%X+(NDj1-NV|*+#_tG>(TAm3LW7nOveS$E!dIrSJ(=x_6z}! zMWhoxz zHF|~A_d!3d$KwS2A143)PtD$8j$5M<-;KVw3Z3IaXsRw_JxuQtM%W!aXx8Cv_&qvB zRr-ccx1QLX@-npk7j$hEyeFK1H)ApP|2QsO)r-)S?(zoygualyUkIc!`rMu9qJ1RR zuSB2w7=8a7`hNcYpi6OH`PN7K4LB(UCtLeH$IwN%ZW# zdPpeOz_yg{LbvT&ycI8^&ov$z7WDw^O?ff8#xmX?0=qrIg%3V}ruJ#{?0y#=`5AQa z6n`M@4m9#7&~q49`D`?v^jn#g}tb^7%wc zT`u}kaX)$zeu{QfYIOMKGam1vyaTN-`f&IXIugyyZXAFY&=K_<6HdID==rb%9rPHy2d)=WPAiWy8kn?2p_|)=ps3Wj-=s))RaeX7`mv=Vo|LBXh?l`Y)JVL zY=+x$HfEU^>gS_VdI%rKyp#CpIRihUp&4KE82jJVn|pFtY`xHJ_cZ!d>tl2mT)}Ix z^px=FcQblKcSJ|@IQntB77cVCnxXuUhp%LJ-~l>bf-h44&=X-w@=as^`{~qvTKKej z3^VZH3wRV4O%K~^%#$IYy~u|~$|W@Aoo9y6ju+ATP3XsL{#oIRMpd-FHO|1*=GMqbV=O!B}v9__<*UW~2NWy2!slGhHq5OxP}i@m?z4K^IZ^XTu^|7|s1$YVxmU zPr@T3~oi&%t>@x7Fd$3Po%Wq z!o~9dy1Jjl+woO&t}daAspQh|aoP(#`&Y#BUc7^Ho|nUc(-#|4UWy(_r?3eYT9%sf z2KGWTop(9kmNT&b#&a>Bil)8JW@K3yP_3NQr3=NLhf(F_#mIuW0Xmq60(dQS&`>&vDVJo_J65qs%4C_Nh3G@et=Fz**PrZ@o z&u+8Oef~gWzFU5w~bvygN6Bi4%haU>hVr|O9c7)WfLR0kydIG+UX6hYuv3-E~@i4kOenWRp z_IJXkXmK1w`3Y>2fyIpFDc5;7v~y2_3mYDUrer93AdNs9egbW9F?u9#L<9I7T^mQy z=YEf7eJ|{uqS318nrVW*cL$oG&hdVtFBdMN5$N1Mg06`t(H9q>FRqOBYtdD`1r6XB z8u0m8&ia0siXzc6Xgk%=kvBxogTcsokw}@xh2PoMq8;xEH&VVpM|>8IIOnc#zaZLi zDRgRXLIZDsZo@k<9Y)C&qKM1Qm4;oo9^dxJAM&1`a0f(Wf zo)&!x9nnVgx$n`y{y+oDx;xZg7cGefTpexi7EJ#4f1SB7g?-VJY?L=}2KvIYSQ3|_ z+j0-O_`XD^?lk)RIkcTC=n0y4PY9qS`h0ctWNeDw?~4ggdRt#QS~FT{9Sc|1mVPv(TgY<>BaAyJCTlLVpjU{XL)H!VXrW zi)SPHwfZCULn7P9p}riN>V{|rI-?`(jc(6}(Y263kLIc90H&ko%UpDgJcCZv(pXNs z$%U(ZXT0$h`oeGMh|i$`UXJA)pM=1!!*uFvV{7b!<#0JV6$jAmcoyAu*Bl6$s);Vr z=13rklx|#@x*=#v6KJH5p(C7)E~b@eAREwt-$hgZHM$1QL@%Sy2> z=t)}@lmGrt9WG2=Lv&7BMZ2H}&;Yc-$Iy|@iT7Ve*TN1ofY0#@JQ?qA{WR3?L)$%y z27DTw>VK^F^FPmLVT9??ifD)R&<|FxhTEcZ))SrU;pifr z6rF`W_dGh{RcJ=Gp^Nu0n(~wJ{@-Xjxe`Z1L`BdC>Y^RBj^)01Gv!gSegoRkKD6O4 zqo*+W8Gw%L3c9PZeH8{$2(2%V*4IM&OSI&|7ki+KY#`dfC@g`KWBqD0uuajAqbKA2 zf6#WaeH}W;kLi@lpzXCnGt(KJlEKI#PNayGY@zG&bh(Ew+lnR^zKzyDvxg^T8Gw1M~H1D~NC9!E3t3);Xx zXaH&7gocWvBdUVlZ-kDxHQs^Uu`9lc?w+)7!!IbxV?Ou)P%eCN5*qO=G@vEuQM?Mh z|0+I!o6ygOa>ql1w_-KQL(voSC3Nv^LNod)I_Ia+0sb4!af1EtjY3>_qY`?s+=4ES zmgxN+u{;!gZeny!tY3nUQU4}7mG!?1c0>ajg6TLJZEra`#T&n4|NFp)R5(W`(UJUv z?$b)&hXbY+I%fm$7JMkyug6a)A3)n#ax$Fto6&Z*qZ$1JT@zVOh39gj11Whb5h`j@ z;fPzK8R#9$_n~v0z}@&fHpY8?2qRg6RVZ&l=lpc^uW0IzA%J}7h)bip>L&E0?VaGl zNG3#Qqx*d^dW0TB7vDcV;Up9DVPNSl)?d=p%Hb z$FUBcL3dZ_UzPn=i3=O9iH@uhnvw44qPZU(*(fv<6VQ>(L_1uFuIg9OfVN|9+=K3h zBWSzl(DNkcnUJ9Zc$NFV2p0xW25qngI%iGM4tt>y4~>pMr)V6SnWxZ^u0#XgfH_Ef6zcP{l@s~agmb?BW;N`&>J1`y=dwlL<31gpN#d-qhGC7Vlo5hK(?db z3--nGPiT7=&~`3IbDU-W`{MOy!;2Nr4(mjlp=+Q$nwf#K4je$a4R*&jaV%c* zXXs!iR-(KeH{%)Xk%3Rmiy@HIze9#|qo1ZXp#2q1*0cXA#0P4li==TZcS1+f3k_@# z`r^oVe^RWUi9WX=*1wF-`D^H!dIx>~P`v*gIt6E}cmMwvZ(MaLypRuXqrM!PiIHev zkDxC;g{FQndekmMpL+$J!u9BL??w+|QOd`$IcE4L*b)=BQZb7QUpRt(ZT<h?6gej2yYl{`t8_+`}@#LTOQ}d z1UjN2XdvUzKxSh)E=5=Gd(qF)#dHb{=rnpxoJWt||Im{zbA~joSgdIM_2__#q3=~q zaAC*wqqm|jbj7E!H;%!JvHrn~X~|5CL8s#JSYC)`WHs9H2DIIG(R1P;I-m>a0JCOF zOX-h^LR>t=cA12wsQ4>$T5?ep%@Rgl5w4-~_BlmuEB-61HK8+q!?_p*9 z10B$fsUe_pIF52%9OnLilMCmhOj=s<)I>%3=bH50E zZ%MrWNxXj$4e%(sO@BfIKZ7Ij0(vqI&Q3e-|AkyQf|t;gzJ=BCQ>=|?Int6xXal^D z@<@CIPhbh0nKLc<7Y^2AL&~LcC4aAxG62g_{sF7vHCLx4|DHfoEJk@6Cjb4 zv*t@n{)y;NbgK7bXUu(VS|a(E&j(%`QnDI%a^on@#zpzlQa;AY*QF)@Zs!%eopQSZ zX~`d@7NR422c3#@XeNsl46D92I%VDP686R7c-Qq|aZkLS{hv<7QYu_L?_qg7jioXF z4dMPR=r+0=ORyLwT8}FVh39q`4)@Pu4W7$eBxJB9`rYqIG_xx(`Du!N%;!oJ4Rc%; z{n+h|mC^c!_!>IGvsevpOb;XNgwEk4H1K6u5BFhrOf42h+9x^%+fct64d8Ed5hn8A z7#eJWMm_?Kcr|*ozK1TN@6gocDjr^}hAzIo=t!ob=f~1m-it2glj!-8p+s8pL#SZ1 zE|SqiN>?s?aa?pMIt6>t1LaRNfRZKCl0W;k!*-Nsp(Fnm@5R(oAp;L!OUkd{Bs`C6 zaCGSqP{}gkBy5D){QlpO3sZ47uEg1RH`Xm1&V%Q0J>{42QS4GK1a<@)P`;{sn4(sA z3+1uc3^!wYOsNp|e+TSBu^W06ugARZ|6N@4!XxN`QNLnZ@>8r~^mg<_>w+Fo{h|+` zN9)+=r08^Xj^|=Ju0z&p$^p!RpQ5|sOH3Ha2`*fG7ovG9g@~(SZtCk`CTxY-u{Ap9 zUC~d^htO>|J^B)Q0=|X5_deRr9&}e7LAPth%ItqrRi$!xa3mVp7__5Fv3?eMX3xcp zxDXxrVsvq>L<8A@Mez{2h%ch;<*5=fcs=H#TpG<}ttyFd);FTUZ#*5)vwvW83_2w< z&=;OUKNDU+SNED&-i-!y813*|bO1l0Xa5Cs3jRgEj$cOGy)IETL{4tue_d^4E7(Jk#K)2-@G$RM%{U2lbFEp^LtAz|DZs5YXtQjlXp&1y2 zE|ziV3lq@*XQBblM+15h%iwY}u#aQ?5iCymINDB@>LH-)=*VwG`r-fo%!P}mF1pIw zq7C;zQ`R@u_e1CQ!FYcT+R$^+MQET)(agPuF2YS{03V?3euz%>XPDXj{}UHReg@qQ zf1?@6Q6n@^8cS2Ii3Zve-Co1dOwGo!xC9-*el$a0qEmAMovJ_3KvHXlOyt1K?*HOk z*iadC1ohBBnxiA>iZ<96&B$Oh;GyXDdKjzXcr@_W&_MR0890QF_$1o?CG@@2TI_!x z$i{^?3ZQdb0)3$Z8hIo1xlZV3Lf_~_^!b<20jxqh-hu|W8{PMxqKo)@bPCR)?Ov+I z{&$4AYKM^)Ko6oD(S6S5dKu^GpXuAi| z44gm*@;kbS6Mu5y2=dko9hAiSl$)Zdn-HCbb~G=RUqCan98LLaSOMQaGxQDG(MdGm z)6tarVLVrNv06kbnU^xJZKubmXHNg$AC$o|I>zbNvf8!IZ{n$)8@EVkL^x z(Lgq%8QF&pLUdttbM#R3JUSJ5S|-9p!It5~D~8^vg`MygG_ZN- z+%HBCmhI@OK8k*x|Bl5lTdQCNEKRvhERT#ni?*{FZRg7b7p~e1=*Y9&8g3Lo8?J%A z&^p!+Mz`fubS=z@_rHkuFQ9?txh*aE=Ln_IK>DHWKZ%ubF&c2<6D|zk53GV2Zx3@@ z9er^q`r>@_Ghr2W#cfy?3$zaBMPqb|9>E#73~OSwHernnM33k(Xn>DnmJIB_g>(CT!yd%8$85;3%bYEv`A2M_mmZN+l8gT3A2sH48XvWrIMcj<8 zl^-$r|NqO>A?)9L=wiAVeX%n(z(Ht+R->ug9PgjT1)2C=4?3b}JBN+Gt5k{`+4wxv=8~@kVpB;XBdP_Cf=hjyAXz?eHM_-WfE&3+No@ z>KWd@0Zn;HG!q@LCXPlkyS69$|7kAHP+>!l-4%|^>1cUAdcrM4&-DHH7#=|by!-C( zA#^YLas42AAWcI9d;#6Q8__v`56#dwXu!YSod^d;)?VS$t0c1aQre>@TE}QtOrv}k zy7>CX^5E!0==0;^{YTLOJRY5iep)^qU4*u?A`u^WHCFr&?PxO^$WFB3_hS7X^u+_Q zd?@-2`rHrbr|2(ehyS4GN9NukBgN5=>jr2)iN;*m(XFxKcC>?zvD__|`=BEl7`-3u zaAdqcHu@;q@#AO*v(e|Cjpc=Cf6K7A`+o%&ZxYhJKKz!8I}`h*CI5(ZQ~$K&?}q-x zjl6KnfV7mYcoDbY{|1Ko2kuQvIYzncpzvdQ*89?u|Fi0?=t!R)90Gq9`%``qYY|cE zkhGKme*WJ)Ec~iv8Fu4=Q#cwMJs4K~W_*_N&-f@lHk`G>zE6E9bWnX%TFSfB*Fw*a zOIQ^1jSkkpW|TW(XqXIB zQ60VCDB3>W?~AjkAB9d`)-l1W(f0Er>pvwWoeMvP%V1Tk9?SjEZS(+o4$MFsdMlQ< zMSnsA&o?%l52ewO-i-B`(tdao<(I~VZ$iiLf0Umc&;D=D1Faw7w^KNeaNgp^cN4-s zeg4tV@GH@6Sc3Zp&<_5@x>#gl_>E~7bYwHoeLf$H<8pKWd(qu+0X=~7O`<~&f{v3y z!$Yt-hZbY(P7BKbC)p<%_t6`hrh|z;>bA_8WBd=baN%j|ScV%}f`xzkb*k zr_Evi`@)&{K(@Kz!Ryc$OQ5N`Io9_>1AP!ZXeOgyEM}oUsH{duz8lTxVKnub=7svI z=-J;0ZKqv=3nS}`Huykv40?b(7Vl3-r{vjKzZO07H=y5mcA<;-Fs9>0wA}(vhxbZG z>qqZE?ZlFNBm= zM+4}HF0PT$BWR$vEDQsghP5a!#k%yLawOi!w{xFtL zq31#N<-zLc6m>@rt|wysF0`F9Xooph1nWfmqVLU2aN%Ouik{Wy(2h&23?prYuJ-$| z49<+@w_^E7G}EeZzXJMWdM9**gJS)7G?3+JUD2tco^xAKK7-^tq7q9hVF``Xn>od`=j5W?frp1m;DX)zmXQ>!W*s7 z8-36QMx%jDN1t1PM*cDS+&8iQ0{VR6^`V_AXt@>oT#x93Xuwm^fLE_)|2O7hPpruC zztB;6^u-QnO7BIdU?v*S^JoWe#qwVC`BP{I|Hk`8HiYM@qV-KSbiJ*e18uO-~_sDFJmvP`DR-3ui?%|GnDDA@L7@J@Ah!k7e;r} zljtJbiw5=+dVb{E5q3{Y%;D$%!^sQ&%~o{ebJ5goK|d9L!h5muJK=oIn^oZs8m@qY~xNwd>!kqX6+VKT+Bv;VDu6{o)<{BEZjTCR--+8WJ7M>K=;;{797lJZ#`j`=@e|2xOiJ_wO5LRa@;^o%aHJA8S( z75z!4H_pZ<(Ucb16aJu~6WZ_#=;GTM>;H`9oA;)rJVX63^!`=*f;aC=gocJu;i6fI z9!MwA-vyP~9|D+!!zeGnu9)M)F!%k@kq<{x{{)(WWtb7y#PVy=H_^<#jV|^N67j}C zypf78(f#}{w!u3-3Ujv@4RAd=^0Vk%mi{>WU9jF*fpX4ILI?HGDQ$`!uqQgO*U>3G zkG7M@d?1XpKDub;ql;?;I+8=^DnEvf^k>YB84iYWDrTo#2wgj6&~|D?JE0vugtqe- z+RjtRqU85~@qx{l+^^A}&;YW28XCAdS`__}t1{Z)tyl>=qa&PxcDM(9|4TG8-^Oyz z&%yxnVLA7Itys|;EA!wawBhyW?%09O?MXB<89omdN6(37=ySuP&!VY+8-4x@^!>lk zgDc+`q1+y?rT>(nUf^Ts>Rf;}{1I-$f6;?!%b}2=@6d9_!y(Xe==-(Nk+(({Sx+p8 z1JM2dD7t3mp#%H~6Ir=9%7qPnk9M5n%kV-ybR@0O5%iDs6J!0;Xo}aO-}g759e;^= z@jEPp7coEPI}!pcj|No#2>ag$+EC$(_n{4rh~;r;q*G#fE*j86^tm_Dz~7GbC(({C zqwQXEG;~}UZNE9DVLLR_U5>KuXW z7#i5)==+P&4p*Q9cpc5qHuSj@Xa@dCa8ZGaTwjN;&-KwoGX!1Dvts?hSfBY=xL*qG zs3oRjTXb$8KtB~%qXC{oGnD(A5J;V9vuL6{7e;h9+TdtR#{~NMz8GCp+c3FkqDRrp z{D_ZXrfb2+iVk{DaQfoj-&T_d?4LM8`xQ z!`rE!iR1Ao8bH?{L&rVQjt8OV!UQzXW%2$-beFx4$^ZW6Tzud^E4Y#Sr{ML`5@-XJ z(79}c&h5SEi8(L29$obZqraig=Qtg#fo8HtbOa{<{m+^4f&ZZqe-+K}bLgNHn!0Au z-ss{Sk9M#F9np_y>hu2+o-d9D*dTgWbbR!MU)cXXu!Ra6ID)1w>#w1KBIpTL4~@Jd zmdU{GKr=G`OmG$Ero0thtRLbx_%-_8+rOoyyntVz?+rg2&V?yw6Cu?Lsjz_+=nEUs zIX!?m@pCMS-=Qa2rr$%r*JE-Uq8+!z8hAIFv3cl$v@YI%4{hf&w4L*bSdsmYaHBl> z;%%5*&FJs%fi-ByhoV2A-;^$*Q(636n39%gyPeS8H4Ob~mRQS$b9o+L z#oFi7Ql7+<=ogXU7eWWS(YZd1W+>&)P+t&Tv}MsR6xGo$se{n3WY0(6!JC=7AFw&~ zCI3o(!Qub^%|#C?wxE#}_&YSv31?BBg4XB16#fQu2lVWof{t)AHpOpZeTjcUeHZk5 z!FZgOkxZe1)xMmTvIqxaEBAlem5_lu&<^LJ4VU20F&$AWd!E9-bu4#8*T4WQi=)u*jxV8^I*UGEB5SZb`g}D^{`>!pV?}#(|MrRA zk1o1#=!oZ_i*7C2;FoAa-=f?2Ec*V{SA|RzLhsi^+i8ZbweGRJ=qmpIXQu3bRM^0W zXzG5!QkW}Sc(Ep0e;eBI5H#fvq3=D1*>EHBmr7FJMFZWFJ!I@W8c14>5a4xaxkL`W z|9BwOprS3dKqGwyotjtC`xSGB`iAJI-kmrNhoOP}i++X_$(1$vm(w4{o|N~Z^<}OO z?@vNA^c;4<4TP6pbh+hPQgWV?lb2P^`+3y zj9O@i^`foOKzpIzsK&+e0!)7Yf0GL%+HVD(jQ)dmnCH6CU@>&{*FYPrk3QcSJ-UZr zMZBRv7*H$pxBBMwSm< zG*!^w2h>A9Mkk?j{|x&4N^~k-Lo>1!-A#uvC;o@Nm%V7nR8h3!n&_@*S(N=>hl>GJ z_$L*M;{(4$ub@+KO?qhfMl40S1v>XbWBqJ&DmI`U>_Y=Ph7ROs%!L=?{mjL}^VcP~ z@P&%ehUn*a2XyYdZ=_q%sW}?WbYpn0{Qp_H^FW`9J^zFPZWz68lfX@hVF$<(fMct-(eR#gT7oE6w8$SYdN!V zKKT~6WlH|zG(X}v@{NjTO8y+M9?e%O5%Me0y->JhvcE)1I}*;|F7$mp23^CYv3v(Q zqZ9ZXrZ1H#`3DUzq7m7NUcZ1gd{gO6$se^Eq3sStCpHO<^el8ji<0G>|2Ik4z*@9{ z!!e)n_Hbh<^u{|d`8|M!a8fLvhYol-+VKC-J@YlXNq>s|hW2w2-K=@bFai2csbT`} zLN823J6MFyU=2EeFVQtSfi|3`Y#3lBG=CG8!u&DcG+u9m-rpmZ-;WM>G$suBizICL zb2L<^qkp0^PE#&C2dbk3?1vdKfev&!ddyzN7PuN6_~m&0#`2-V(&#|iMf;YI@Bc9r z7_z6(0W6I96=(+^qYduCckm24;{_FhOR!TKmH-=5ezjsKZ&WF?+Y;+j-UE~OMVC}c zgc&WTz>c?}GuexFcnYWDHFR%GtsEMB7oEvwG;#;f>wlv66{!;1sfE7G+M(rx(Fr|@ z-uFU+gg355*W@HxF|}%_STtG#-CXU^msNLkz|W%hEkZZfHgtxk(Esve#f zbyT5Gh(7?UuYx8Zi{yFse^>s2O ze|6gk%@07Yzl;uiJ>G@Ku>;nsn<@F{3A3=V=l^dKR;*nwbkqwS$TIX%d;twzjr!qJ ztQRJq6X?<{La(nuH``G(^nbK_vLOB2Hp~V?+?WyxC$N6UaXFPV>PVMI6S%sp-VBpG3UP$iO(tUhRbNhLQO&k z-Ox?KR47M=M5EQo94^+V{)j-$K&@0d?*8cz`#;Tq`uJ!AgCrin1q7b(cig>`5I zzC=U&EBe8azFFMOXh(I>nRbcg<74?^bY>r+9sYz)EVX&q+~v{xYoklmIYGjXhDRSm z&-DUyq;H_7VJmv$ezd`J*aCC52$8xA-TkxCUH>ck9Z|4lsNV`LAAugf#pnPNyJCf3 z(cPV^Rd~R3L_a`gp?ly9^oBI8!wid}4Rt^V^f21N;&^>8dVflrFu^+L^^WL7rXua~ z_y0+_TlYt=gbOLf+J?34iQX^_4efL^G9RFk+k>w8>FB@c6Yhp~VZgVc^_!vn^h57^ zA}Qx@aV%JihI)6*AB$c<2avgaun0QiT4+P}#PYG|44*~^x)F`oujro2-XRR2JbGVO zyw&r6e=K;?0`g1H4mY6<9EsPjpfk;RXPg;YuNfu>f_6L>oygMY`|jv=!}0sk7@o+Au>hL^5*Df9*-X1X=r~> zVJfcf#QFD^MC&PV1}D&tE@5`e(m8C({OHW?LhH>$H{T+({!a9ra2$=uPiQ35bP4qf zq2+hPd^@~{eE%+-e;fQPUibzb@gL|6uc5oYaMv)SZfJ)y&`7+5&TK0hfn8{O`_OiN zMk9F`7ABjGP{(YY}(LM7G8iBLu zgXaR;PQjjG39F;8;c;mFO~^4#r0gLvn1Y{iD0aLnL||idH#&eL=uECe^WGh1QU$%< z9gXCK=rfp={4(@iu?Bs49YpJ2*UJcT{z{NA^wpCEoJ;h048k(_Bs$^`WBCruMgANn zH(Bp6(?aL~YQ%gybijjR`Bb#y`RL|d?{&}rX%fEY)7=wh)B^pfco^Ei6!aGpub>?s ziT)F>=j{_3u7W>ty$hbgdVNEA@qS@|&Cvn&L6_n|OxVH3c;Oo?N&XM?*`4p+uxYws zaq>gZ8O*^#_&z$I1F`&1v|jH1VIpZ;u|oXV3;dMC*Nx4){+@&iKAe$^UA$4w@ey^NY~?zCkB&8J$>;At7Ho zLBbK;i8eR{ox!YF{%&+9W}y5>OpCvu1NjwwUZf5U=0P`WF|^$(=zVR__B)}^fwAb5 zH!*{R4Xr{u-ia>Bd9>kT_lJfmqV-y$GaP`ma2DQzJJ9++Mt{from6f9TAPqWAq5uV)_~LYxO3c-fe5 zfexTICjb0zFbQvb9IdzjU8}WdD0icwJQnj8(U(z%5utt+tVg~*T7NeB_FIHTau1He z>mCTFYCKwR4JP0JpOLVEljvr2JQH6Os*L^(;4VMSH$w|XoE-4fuF%VX-JF; z?}EIe!~Mn3_Nt-xx5wo9A4AFJT&=)jMnGtD

kerKN^Y2v3xn&!RC1VVl2-&E*!7h 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 ^SS!i8Z$z;i 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 delta 204583 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 LA(z^##cR_4d|dHE diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 027502fc13..9d57632c97 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-01-17 10:25+0100\n" -"PO-Revision-Date: 2023-02-07 17:00+0900\n" +"POT-Creation-Date: 2023-05-09 10:50+0200\n" +"PO-Revision-Date: 2023-05-17 15:29+0900\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -16,552 +16,29 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Launchpad-Export-Date: 2021-09-10 08:44+0000\n" -"X-Generator: Poedit 3.2.2\n" +"X-Generator: Poedit 3.3.1\n" -#: ../../views/calendar/list.php:39 -msgid "Calendars" -msgstr "カレンダー" - -#: ../../views/calendar/list.php:57 ../../views/calendar/special_days_edit.php:58 -#: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59 -#: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/local_components.php:257 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 -#: ../../enterprise/godmode/agentes/collections.data.php:398 -#: ../../enterprise/godmode/agentes/collections.editor.php:112 -#: ../../enterprise/godmode/agentes/collections.php:144 -#: ../../enterprise/godmode/policies/policy_plugins.php:31 -#: ../../enterprise/godmode/policies/policy_alerts.php:57 -#: ../../enterprise/godmode/policies/configure_policy.php:76 -#: ../../enterprise/godmode/policies/policy_modules.php:470 -#: ../../enterprise/godmode/policies/policy_queue.php:211 -#: ../../enterprise/godmode/policies/policies.php:265 -#: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 -#: ../../enterprise/godmode/policies/policy_collections.php:43 -#: ../../enterprise/godmode/policies/policy_agents.php:319 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:206 -#: ../../enterprise/include/lib/Policy/Queue.php:162 -#: ../../enterprise/include/lib/Policy/Queue.php:163 -#: ../../enterprise/include/lib/Policy/Queue.php:429 -#: ../../enterprise/include/lib/Policy/Queue.php:435 -#: ../../enterprise/operation/agentes/policy_view.php:51 -#: ../../extensions/resource_registration.php:1107 -#: ../../godmode/modules/manage_nc_groups.php:286 -#: ../../godmode/modules/manage_inventory_modules.php:56 -#: ../../godmode/modules/manage_network_components.php:307 -#: ../../godmode/groups/group_list.php:401 -#: ../../godmode/groups/modu_group_list.php:85 -#: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:485 -#: ../../godmode/agentes/modificar_agente.php:117 -#: ../../godmode/massive/massive_operations.php:393 -#: ../../godmode/massive/massive_edit_users.php:47 -#: ../../godmode/massive/massive_delete_profiles.php:45 -#: ../../godmode/massive/massive_add_profiles.php:45 -#: ../../godmode/alerts/configure_alert_command.php:189 -#: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_commands.php:723 -#: ../../godmode/alerts/alert_templates.php:261 -#: ../../godmode/alerts/configure_alert_action.php:113 -#: ../../godmode/alerts/configure_alert_template.php:412 -#: ../../godmode/setup/os.list.php:49 -#: ../../godmode/servers/plugin_registration.php:79 ../../godmode/tag/tag.php:188 -#: ../../godmode/category/category.php:101 -#: ../../operation/users/user_edit.php:254 -msgid "metaconsole" -msgstr "メタコンソール" - -#: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:61 -#: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 -#: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/local_components.php:259 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 -#: ../../enterprise/godmode/policies/policy_plugins.php:33 -#: ../../enterprise/godmode/policies/policy_alerts.php:59 -#: ../../enterprise/godmode/policies/configure_policy.php:78 -#: ../../enterprise/godmode/policies/policy_modules.php:472 -#: ../../enterprise/godmode/policies/policy_queue.php:213 -#: ../../enterprise/godmode/policies/policies.php:267 -#: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 -#: ../../enterprise/godmode/policies/policy_collections.php:45 -#: ../../enterprise/godmode/policies/policy_agents.php:321 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35 -#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:208 -#: ../../enterprise/operation/agentes/policy_view.php:53 -#: ../../extensions/resource_registration.php:1109 -#: ../../godmode/modules/manage_nc_groups.php:288 -#: ../../godmode/modules/manage_inventory_modules.php:58 -#: ../../godmode/modules/manage_network_components.php:309 -#: ../../godmode/groups/group_list.php:403 -#: ../../godmode/groups/modu_group_list.php:87 -#: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:487 -#: ../../godmode/agentes/modificar_agente.php:119 -#: ../../godmode/massive/massive_operations.php:395 -#: ../../godmode/massive/massive_edit_users.php:49 -#: ../../godmode/massive/massive_delete_profiles.php:47 -#: ../../godmode/massive/massive_add_profiles.php:47 -#: ../../godmode/alerts/configure_alert_command.php:191 -#: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_commands.php:725 -#: ../../godmode/alerts/alert_templates.php:263 -#: ../../godmode/alerts/configure_alert_action.php:115 -#: ../../godmode/alerts/configure_alert_template.php:414 -#: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:190 -#: ../../godmode/category/category.php:103 -#: ../../operation/users/user_edit.php:256 -msgid "any node" -msgstr "任意のノード" - -#: ../../views/calendar/list.php:65 ../../views/calendar/special_days_edit.php:66 -#: ../../views/calendar/edit.php:66 ../../views/calendar/special_days.php:67 +#: ../../views/consoles/list.php:32 #, php-format -msgid "" -"This node is configured with centralized mode. All alert calendar information " -"is read only. Go to %s to manage it." -msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は" -"読み取り専用です。管理するには %s に移動します。" +msgid "%s registered consoles" +msgstr "%s 登録済コンソール" -#: ../../views/calendar/list.php:92 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:91 -#: ../../enterprise/tools/ipam/ipam_list.php:587 -#: ../../enterprise/tools/ipam/ipam_excel.php:136 -#: ../../enterprise/tools/ipam/ipam_excel.php:207 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../extensions/api_checker.php:245 ../../godmode/modules/module_list.php:61 -#: ../../godmode/groups/group_list.php:845 -#: ../../godmode/groups/modu_group_list.php:251 -#: ../../godmode/agentes/fields_manager.php:121 -#: ../../godmode/agentes/agent_manager.php:219 -#: ../../godmode/agentes/agent_incidents.php:88 -#: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/alerts/alert_commands.php:743 ../../godmode/setup/os.list.php:68 -#: ../../operation/incidents/list_integriaims_incidents.php:515 -msgid "ID" -msgstr "ID" - -#: ../../views/calendar/list.php:93 ../../views/calendar/edit.php:86 -#: ../../views/cluster/list.php:58 ../../views/dashboard/list.php:95 -#: ../../views/dashboard/formDashboard.php:77 -#: ../../enterprise/views/ncm/snippets/list.php:70 -#: ../../enterprise/views/ncm/snippets/edit.php:81 -#: ../../enterprise/views/ncm/templates/list.php:73 -#: ../../enterprise/views/ncm/templates/edit.php:81 -#: ../../enterprise/views/ncm/devices/list.php:114 -#: ../../enterprise/views/ncm/firmwares/list.php:73 -#: ../../enterprise/views/ncm/firmwares/edit.php:80 -#: ../../enterprise/views/ncm/models/list.php:71 -#: ../../enterprise/views/ncm/models/edit.php:68 -#: ../../enterprise/views/ncm/vendors/list.php:70 -#: ../../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:60 -#: ../../enterprise/meta/include/functions_autoprovision.php:474 -#: ../../enterprise/meta/include/functions_wizard_meta.php:463 -#: ../../enterprise/meta/include/functions_wizard_meta.php:581 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1457 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1682 -#: ../../enterprise/meta/agentsearch.php:335 -#: ../../enterprise/godmode/modules/configure_local_component.php:158 -#: ../../enterprise/godmode/modules/local_components.php:624 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:371 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:751 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 -#: ../../enterprise/godmode/agentes/collection_manager.php:109 -#: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:579 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 -#: ../../enterprise/godmode/policies/configure_policy.php:102 -#: ../../enterprise/godmode/policies/policy_modules.php:1469 -#: ../../enterprise/godmode/policies/policies.php:410 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 -#: ../../enterprise/godmode/policies/policy_collections.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:263 -#: ../../enterprise/godmode/policies/policy_agents.php:883 -#: ../../enterprise/godmode/policies/policy_agents.php:1403 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 -#: ../../enterprise/godmode/services/services.service.php:579 -#: ../../enterprise/godmode/setup/setup_skins.php:87 -#: ../../enterprise/godmode/setup/setup_auth.php:102 -#: ../../enterprise/godmode/setup/edit_skin.php:233 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:108 -#: ../../enterprise/godmode/reporting/visual_console_template.php:203 -#: ../../enterprise/godmode/reporting/visual_console_template.php:270 -#: ../../enterprise/godmode/reporting/mysql_builder.php:97 -#: ../../enterprise/godmode/reporting/mysql_builder.php:229 -#: ../../enterprise/godmode/reporting/mysql_builder.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1697 -#: ../../enterprise/godmode/servers/manage_export.php:137 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 -#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 -#: ../../enterprise/godmode/servers/manage_export_form.php:75 -#: ../../enterprise/godmode/servers/list_satellite.php:37 -#: ../../enterprise/mobile/include/enterprise.class.php:86 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:379 -#: ../../enterprise/include/ajax/servers.ajax.php:100 -#: ../../enterprise/include/ajax/servers.ajax.php:158 -#: ../../enterprise/include/ajax/servers.ajax.php:284 -#: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../enterprise/include/class/Omnishell.class.php:670 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:766 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 -#: ../../enterprise/include/functions_services.php:1603 -#: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1995 -#: ../../enterprise/operation/agentes/policy_view.php:163 -#: ../../enterprise/operation/agentes/policy_view.php:395 -#: ../../enterprise/operation/agentes/tag_view.php:677 -#: ../../enterprise/operation/agentes/collection_view.php:75 -#: ../../enterprise/operation/services/services.service.php:118 -#: ../../enterprise/operation/services/massive/services.create.php:660 -#: ../../enterprise/operation/services/services.list.php:497 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1053 -#: ../../enterprise/tools/ipam/ipam_list.php:600 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:135 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:257 -#: ../../enterprise/tools/ipam/ipam_excel.php:137 -#: ../../enterprise/tools/ipam/ipam_excel.php:208 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:667 -#: ../../enterprise/tools/ipam/ipam_editor.php:140 -#: ../../extensions/files_repo/files_repo_list.php:55 -#: ../../godmode/modules/manage_nc_groups_form.php:68 -#: ../../godmode/modules/manage_network_templates_form.php:168 -#: ../../godmode/modules/manage_nc_groups.php:241 -#: ../../godmode/modules/manage_inventory_modules.php:278 -#: ../../godmode/modules/manage_network_components_form_common.php:46 -#: ../../godmode/modules/manage_inventory_modules_form.php:103 -#: ../../godmode/modules/module_list.php:62 -#: ../../godmode/modules/manage_network_templates.php:248 -#: ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/group_list.php:847 -#: ../../godmode/groups/configure_modu_group.php:67 -#: ../../godmode/groups/modu_group_list.php:252 -#: ../../godmode/users/user_list.php:540 -#: ../../godmode/agentes/inventory_manager.php:221 -#: ../../godmode/agentes/planned_downtime.editor.php:820 -#: ../../godmode/agentes/planned_downtime.editor.php:1206 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 -#: ../../godmode/agentes/configure_field.php:77 -#: ../../godmode/agentes/module_manager_editor_common.php:215 -#: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager.php:870 -#: ../../godmode/netflow/nf_edit.php:159 -#: ../../godmode/netflow/nf_edit_form.php:199 -#: ../../godmode/alerts/configure_alert_command.php:224 -#: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_commands.php:742 -#: ../../godmode/alerts/alert_templates.php:384 -#: ../../godmode/alerts/configure_alert_action.php:181 -#: ../../godmode/alerts/configure_alert_template.php:1052 -#: ../../godmode/setup/os.builder.php:36 ../../godmode/setup/os.list.php:69 -#: ../../godmode/setup/setup_integria.php:337 -#: ../../godmode/setup/setup_integria.php:458 -#: ../../godmode/reporting/create_container.php:223 -#: ../../godmode/reporting/reporting_builder.item_editor.php:83 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1088 -#: ../../godmode/reporting/reporting_builder.main.php:89 -#: ../../godmode/reporting/reporting_builder.main.php:93 -#: ../../godmode/reporting/graph_builder.main.php:125 -#: ../../godmode/events/event_filter.php:136 -#: ../../godmode/events/event_responses.editor.php:86 -#: ../../godmode/events/event_responses.list.php:50 -#: ../../godmode/servers/servers.build_table.php:79 -#: ../../godmode/servers/modificar_server.php:58 -#: ../../godmode/servers/plugin.php:339 ../../godmode/servers/plugin.php:794 -#: ../../godmode/tag/tag.php:228 ../../godmode/tag/edit_tag.php:211 -#: ../../godmode/category/edit_category.php:180 -#: ../../include/functions_reporting_html.php:1052 -#: ../../include/functions_reporting_html.php:1060 -#: ../../include/functions_reporting_html.php:1715 -#: ../../include/functions_reporting_html.php:2551 -#: ../../include/functions_reporting_html.php:2910 -#: ../../include/functions_reporting_html.php:3613 -#: ../../include/functions_reporting_html.php:6320 -#: ../../include/functions_treeview.php:78 -#: ../../include/class/NetworkMap.class.php:3039 -#: ../../include/class/NetworkMap.class.php:3080 -#: ../../include/class/NetworkMap.class.php:3098 -#: ../../include/class/NetworkMap.class.php:3401 -#: ../../include/class/ManageNetScanScripts.class.php:403 -#: ../../include/class/ManageNetScanScripts.class.php:545 -#: ../../include/class/ModuleTemplates.class.php:893 -#: ../../include/class/ModuleTemplates.class.php:1051 -#: ../../include/class/CalendarManager.class.php:1026 -#: ../../include/class/SatelliteCollection.class.php:128 -#: ../../include/functions_filemanager.php:604 -#: ../../include/functions_snmp_browser.php:1670 -#: ../../include/functions_events.php:4186 -#: ../../include/functions_events.php:4275 ../../operation/search_users.php:44 -#: ../../operation/search_helps.php:31 -#: ../../operation/agentes/pandora_networkmap.editor.php:291 -#: ../../operation/agentes/pandora_networkmap.php:714 -#: ../../operation/agentes/pandora_networkmap.view.php:137 -#: ../../operation/netflow/nf_live_view.php:370 -#: ../../operation/gis_maps/gis_map.php:102 -#: ../../operation/incidents/configure_integriaims_incident.php:217 -#: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 -msgid "Name" -msgstr "名前" - -#: ../../views/calendar/list.php:94 -#: ../../views/calendar/special_days_edit.php:106 -#: ../../views/calendar/edit.php:97 ../../views/calendar/special_days.php:112 -#: ../../views/cluster/list.php:60 ../../views/dashboard/list.php:97 -#: ../../views/dashboard/formDashboard.php:108 -#: ../../enterprise/views/ncm/devices/list.php:116 -#: ../../enterprise/meta/advanced/cron_main.php:428 -#: ../../enterprise/meta/advanced/collections.php:366 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:146 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:273 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:435 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:703 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:782 -#: ../../enterprise/meta/include/functions_wizard_meta.php:191 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1805 -#: ../../enterprise/meta/include/functions_events_meta.php:74 -#: ../../enterprise/meta/agentsearch.php:139 -#: ../../enterprise/meta/agentsearch.php:337 -#: ../../enterprise/godmode/modules/configure_local_component.php:276 -#: ../../enterprise/godmode/modules/local_components.php:501 -#: ../../enterprise/godmode/modules/local_components.php:626 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 -#: ../../enterprise/godmode/agentes/collections.php:444 -#: ../../enterprise/godmode/policies/configure_policy.php:105 -#: ../../enterprise/godmode/policies/policies.php:312 -#: ../../enterprise/godmode/policies/policies.php:412 -#: ../../enterprise/godmode/policies/policy_agents.php:834 -#: ../../enterprise/godmode/policies/policy_agents.php:891 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 -#: ../../enterprise/godmode/services/services.service.php:602 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:329 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:194 -#: ../../enterprise/godmode/reporting/graph_template_list.php:205 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:500 -#: ../../enterprise/godmode/reporting/visual_console_template.php:218 -#: ../../enterprise/godmode/reporting/visual_console_template.php:271 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1413 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2051 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:673 +#: ../../views/consoles/list.php:68 #: ../../enterprise/include/functions_tasklist.php:177 -#: ../../enterprise/include/ajax/ipam.ajax.php:487 -#: ../../enterprise/include/functions_reporting_csv.php:725 -#: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../enterprise/include/functions_reporting_csv.php:2788 -#: ../../enterprise/include/class/Azure.cloud.php:835 -#: ../../enterprise/include/class/VMware.app.php:763 -#: ../../enterprise/include/class/Omnishell.class.php:399 -#: ../../enterprise/include/class/Omnishell.class.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:680 -#: ../../enterprise/include/class/DB2.app.php:469 -#: ../../enterprise/include/class/Aws.S3.php:434 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:578 -#: ../../enterprise/include/class/Aws.cloud.php:1233 -#: ../../enterprise/include/class/MySQL.app.php:474 -#: ../../enterprise/include/class/Google.cloud.php:785 -#: ../../enterprise/include/class/Oracle.app.php:476 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:471 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:778 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:928 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2843 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2948 -#: ../../enterprise/include/functions_events.php:30 -#: ../../enterprise/operation/agentes/tag_view.php:108 -#: ../../enterprise/operation/agentes/tag_view.php:604 -#: ../../enterprise/operation/agentes/ver_agente.php:52 -#: ../../enterprise/operation/agentes/ver_agente.php:73 -#: ../../enterprise/operation/log/log_viewer.php:534 -#: ../../enterprise/operation/services/services.service.php:121 -#: ../../enterprise/operation/services/massive/services.create.php:682 -#: ../../enterprise/operation/services/services.list.php:260 -#: ../../enterprise/operation/services/services.list.php:502 -#: ../../enterprise/operation/services/services.table_services.php:182 -#: ../../enterprise/tools/ipam/ipam_editor.php:293 -#: ../../extensions/agents_modules.php:404 -#: ../../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:621 -#: ../../godmode/modules/manage_network_components.php:755 -#: ../../godmode/users/user_list.php:450 -#: ../../godmode/agentes/configurar_agente.php:519 -#: ../../godmode/agentes/modificar_agente.php:289 -#: ../../godmode/agentes/modificar_agente.php:651 -#: ../../godmode/agentes/planned_downtime.list.php:658 -#: ../../godmode/agentes/planned_downtime.editor.php:830 -#: ../../godmode/agentes/planned_downtime.editor.php:1207 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:141 -#: ../../godmode/agentes/agent_incidents.php:92 -#: ../../godmode/netflow/nf_edit.php:160 -#: ../../godmode/netflow/nf_edit_form.php:203 -#: ../../godmode/snmpconsole/snmp_alert.php:802 -#: ../../godmode/gis_maps/configure_gis_map.php:498 -#: ../../godmode/gis_maps/configure_gis_map.php:635 -#: ../../godmode/massive/massive_copy_modules.php:100 -#: ../../godmode/massive/massive_copy_modules.php:253 -#: ../../godmode/massive/massive_standby_alerts.php:186 -#: ../../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_delete_profiles.php:153 -#: ../../godmode/massive/massive_delete_alerts.php:290 -#: ../../godmode/massive/massive_add_action_alerts.php:198 -#: ../../godmode/massive/massive_add_profiles.php:203 -#: ../../godmode/alerts/configure_alert_command.php:265 -#: ../../godmode/alerts/alert_actions.php:260 -#: ../../godmode/alerts/alert_actions.php:328 -#: ../../godmode/alerts/alert_list.list.php:157 -#: ../../godmode/alerts/alert_commands.php:744 -#: ../../godmode/alerts/alert_templates.php:385 -#: ../../godmode/alerts/configure_alert_action.php:212 -#: ../../godmode/alerts/configure_alert_template.php:1074 -#: ../../godmode/setup/news.php:186 ../../godmode/setup/gis.php:70 -#: ../../godmode/setup/gis_step_2.php:217 -#: ../../godmode/setup/setup_integria.php:361 -#: ../../godmode/setup/setup_integria.php:483 -#: ../../godmode/reporting/visual_console_builder.data.php:136 -#: ../../godmode/reporting/create_container.php:244 -#: ../../godmode/reporting/create_container.php:534 -#: ../../godmode/reporting/create_container.php:625 -#: ../../godmode/reporting/map_builder.php:356 -#: ../../godmode/reporting/map_builder.php:385 -#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:313 -#: ../../godmode/reporting/visual_console_favorite.php:161 -#: ../../godmode/reporting/reporting_builder.item_editor.php:72 -#: ../../godmode/reporting/reporting_builder.item_editor.php:87 -#: ../../godmode/reporting/reporting_builder.item_editor.php:212 -#: ../../godmode/reporting/reporting_builder.item_editor.php:890 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1613 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3448 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:314 -#: ../../godmode/reporting/reporting_builder.main.php:101 -#: ../../godmode/reporting/reporting_builder.php:758 -#: ../../godmode/reporting/reporting_builder.php:946 -#: ../../godmode/reporting/graph_builder.main.php:143 -#: ../../godmode/events/event_filter.php:137 -#: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/event_edit_filter.php:326 -#: ../../godmode/events/event_responses.list.php:52 -#: ../../godmode/events/custom_events.php:100 -#: ../../godmode/wizards/HostDevices.class.php:934 -#: ../../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 -#: ../../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 -#: ../../include/functions_visual_map_editor.php:70 -#: ../../include/functions_visual_map_editor.php:594 -#: ../../include/functions_visual_map_editor.php:1397 -#: ../../include/functions_reporting_html.php:1569 -#: ../../include/functions_reporting_html.php:2266 -#: ../../include/functions_reporting_html.php:3564 -#: ../../include/functions_reporting_html.php:3617 -#: ../../include/functions_reporting_html.php:6408 -#: ../../include/functions_cron.php:505 ../../include/ajax/heatmap.ajax.php:111 -#: ../../include/ajax/heatmap.ajax.php:350 -#: ../../include/ajax/custom_fields.php:630 -#: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4951 ../../include/functions_gis.php:228 -#: ../../include/functions_profile.php:214 -#: ../../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:1531 -#: ../../include/functions_massive_operations.php:126 -#: ../../include/class/NetworkMap.class.php:2974 -#: ../../include/class/NetworkMap.class.php:3023 -#: ../../include/class/NetworkMap.class.php:3339 -#: ../../include/class/AgentsAlerts.class.php:761 -#: ../../include/class/CredentialStore.class.php:840 -#: ../../include/class/CredentialStore.class.php:871 -#: ../../include/class/CredentialStore.class.php:961 -#: ../../include/class/CustomNetScan.class.php:500 -#: ../../include/class/ModuleTemplates.class.php:781 -#: ../../include/class/CalendarManager.class.php:1027 -#: ../../include/functions_container.php:149 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:237 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:823 -#: ../../include/functions_snmp_browser.php:1673 -#: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:4838 ../../operation/heatmap.php:119 -#: ../../operation/heatmap.php:121 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:913 -#: ../../operation/visual_console/view.php:353 -#: ../../operation/agentes/estado_agente.php:254 -#: ../../operation/agentes/estado_agente.php:754 -#: ../../operation/agentes/pandora_networkmap.editor.php:307 -#: ../../operation/agentes/pandora_networkmap.editor.php:355 -#: ../../operation/agentes/interface_view.functions.php:37 -#: ../../operation/agentes/exportdata.php:227 -#: ../../operation/agentes/status_monitor.php:450 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/pandora_networkmap.view.php:140 -#: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1036 -#: ../../operation/agentes/estado_generalagente.php:403 -#: ../../operation/agentes/alerts_status.functions.php:91 -#: ../../operation/netflow/nf_live_view.php:380 -#: ../../operation/gis_maps/gis_map.php:103 ../../operation/gis_maps/ajax.php:332 -#: ../../operation/gis_maps/ajax.php:438 -#: ../../operation/incidents/configure_integriaims_incident.php:266 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 -#: ../../operation/incidents/list_integriaims_incidents.php:331 -#: ../../operation/inventory/inventory.php:339 -#: ../../operation/events/events.php:1658 ../../operation/search_maps.php:29 -#: ../../general/ui/agents_list.php:76 -msgid "Group" -msgstr "グループ" +msgid "Console ID" +msgstr "コンソール ID" -#: ../../views/calendar/list.php:95 -#: ../../views/calendar/special_days_edit.php:138 -#: ../../views/calendar/edit.php:109 ../../views/cluster/list.php:59 +#: ../../views/consoles/list.php:69 ../../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 #: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 -#: ../../enterprise/views/ipam/sites/edit.php:51 -#: ../../enterprise/meta/advanced/collections.php:389 -#: ../../enterprise/meta/include/functions_autoprovision.php:475 +#: ../../enterprise/views/ipam/sites/edit.php:71 +#: ../../enterprise/meta/advanced/collections.data.php:465 +#: ../../enterprise/meta/advanced/collections.php:406 +#: ../../enterprise/meta/include/functions_autoprovision.php:496 +#: ../../enterprise/meta/include/functions_autoprovision.php:608 #: ../../enterprise/meta/include/functions_wizard_meta.php:196 #: ../../enterprise/meta/include/functions_wizard_meta.php:473 #: ../../enterprise/meta/include/functions_wizard_meta.php:586 @@ -571,42 +48,42 @@ msgstr "グループ" #: ../../enterprise/meta/include/functions_wizard_meta.php:1686 #: ../../enterprise/meta/include/functions_wizard_meta.php:1809 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:77 -#: ../../enterprise/meta/agentsearch.php:136 -#: ../../enterprise/meta/agentsearch.php:336 +#: ../../enterprise/meta/agentsearch.php:134 +#: ../../enterprise/meta/agentsearch.php:334 #: ../../enterprise/godmode/modules/configure_local_component.php:489 #: ../../enterprise/godmode/modules/configure_local_component.php:648 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 -#: ../../enterprise/godmode/agentes/collection_manager.php:111 -#: ../../enterprise/godmode/agentes/collection_manager.php:208 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:368 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:145 +#: ../../enterprise/godmode/agentes/collection_manager.php:163 +#: ../../enterprise/godmode/agentes/collection_manager.php:263 +#: ../../enterprise/godmode/agentes/collections.data.php:606 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/collections.php:445 -#: ../../enterprise/godmode/policies/configure_policy.php:121 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 -#: ../../enterprise/godmode/policies/policy_collections.php:171 -#: ../../enterprise/godmode/policies/policy_collections.php:265 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:97 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 +#: ../../enterprise/godmode/agentes/collections.php:507 +#: ../../enterprise/godmode/policies/configure_policy.php:141 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:271 +#: ../../enterprise/godmode/policies/policy_collections.php:242 +#: ../../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_edit_policy_modules.php:679 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:166 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:222 -#: ../../enterprise/godmode/services/services.service.php:591 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:182 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:241 +#: ../../enterprise/godmode/services/services.service.php:592 #: ../../enterprise/godmode/services/services.elements.php:103 -#: ../../enterprise/godmode/setup/setup_skins.php:127 -#: ../../enterprise/godmode/setup/edit_skin.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:205 +#: ../../enterprise/godmode/setup/setup_skins.php:191 +#: ../../enterprise/godmode/setup/edit_skin.php:274 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:231 #: ../../enterprise/godmode/reporting/graph_template_list.php:204 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:199 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:448 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1714 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:437 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:466 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1703 #: ../../enterprise/mobile/include/enterprise.class.php:87 #: ../../enterprise/include/functions_cron.php:282 #: ../../enterprise/include/ajax/ipam.ajax.php:371 #: ../../enterprise/include/ajax/ipam.ajax.php:615 -#: ../../enterprise/include/functions_reporting_pdf.php:1843 #: ../../enterprise/include/functions_reporting_csv.php:489 #: ../../enterprise/include/functions_reporting_csv.php:492 #: ../../enterprise/include/functions_reporting_csv.php:712 @@ -689,204 +166,1179 @@ msgstr "グループ" #: ../../enterprise/include/functions_reporting_csv.php:2773 #: ../../enterprise/include/functions_reporting_csv.php:2845 #: ../../enterprise/include/functions_reporting_csv.php:2847 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:798 -#: ../../enterprise/include/class/ManageBackups.class.php:162 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:833 +#: ../../enterprise/include/class/ManageBackups.class.php:165 #: ../../enterprise/include/functions_services.php:1604 -#: ../../enterprise/include/functions_ipam.php:1374 -#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/include/functions_ipam.php:1376 +#: ../../enterprise/include/functions_ipam.php:2057 #: ../../enterprise/operation/agentes/policy_view.php:68 -#: ../../enterprise/operation/agentes/tag_view.php:600 -#: ../../enterprise/operation/agentes/ver_agente.php:60 -#: ../../enterprise/operation/agentes/collection_view.php:77 -#: ../../enterprise/operation/services/services.service.php:119 -#: ../../enterprise/operation/services/massive/services.create.php:671 -#: ../../enterprise/operation/services/services.list.php:500 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:619 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1061 -#: ../../enterprise/tools/ipam/ipam_list.php:606 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:411 +#: ../../enterprise/operation/agentes/tag_view.php:694 +#: ../../enterprise/operation/agentes/ver_agente.php:78 +#: ../../enterprise/operation/agentes/collection_view.php:86 +#: ../../enterprise/operation/services/services.service.php:110 +#: ../../enterprise/operation/services/massive/services.create.php:667 +#: ../../enterprise/operation/services/services.list.php:538 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:758 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1197 +#: ../../enterprise/tools/ipam/ipam_list.php:689 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:489 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:40 #: ../../enterprise/tools/ipam/ipam_excel.php:138 #: ../../enterprise/tools/ipam/ipam_excel.php:209 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:345 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:681 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:438 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:799 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:84 -#: ../../enterprise/tools/ipam/ipam_editor.php:177 -#: ../../extensions/files_repo/files_repo_form.php:83 +#: ../../enterprise/tools/ipam/ipam_editor.php:172 +#: ../../extensions/files_repo/files_repo_form.php:81 #: ../../extensions/files_repo/files_repo_list.php:56 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 -#: ../../godmode/modules/manage_inventory_modules.php:279 +#: ../../godmode/modules/manage_inventory_modules.php:290 #: ../../godmode/modules/manage_network_components_form_common.php:346 -#: ../../godmode/modules/manage_network_components.php:754 +#: ../../godmode/modules/manage_network_components.php:777 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 -#: ../../godmode/modules/manage_inventory_modules_form.php:105 -#: ../../godmode/modules/module_list.php:63 +#: ../../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:242 -#: ../../godmode/groups/group_list.php:855 ../../godmode/users/user_list.php:545 -#: ../../godmode/agentes/agent_template.php:238 -#: ../../godmode/agentes/inventory_manager.php:222 -#: ../../godmode/agentes/modificar_agente.php:652 -#: ../../godmode/agentes/planned_downtime.list.php:657 -#: ../../godmode/agentes/planned_downtime.editor.php:846 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 -#: ../../godmode/agentes/agent_manager.php:479 -#: ../../godmode/agentes/module_manager_editor_common.php:1095 -#: ../../godmode/agentes/module_manager.php:905 +#: ../../godmode/groups/configure_group.php:239 +#: ../../godmode/groups/group_list.php:884 ../../godmode/users/user_list.php:581 +#: ../../godmode/agentes/agent_template.php:276 +#: ../../godmode/agentes/inventory_manager.php:234 +#: ../../godmode/agentes/modificar_agente.php:699 +#: ../../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.php:644 #: ../../godmode/netflow/nf_item_list.php:175 -#: ../../godmode/snmpconsole/snmp_alert.php:766 -#: ../../godmode/snmpconsole/snmp_alert.php:1269 -#: ../../godmode/snmpconsole/snmp_filters.php:201 -#: ../../godmode/snmpconsole/snmp_filters.php:289 +#: ../../godmode/snmpconsole/snmp_alert.php:769 +#: ../../godmode/snmpconsole/snmp_alert.php:1906 +#: ../../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_modules.php:743 +#: ../../godmode/massive/massive_edit_modules.php:758 #: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/alerts/alert_commands.php:745 -#: ../../godmode/alerts/alert_templates.php:46 -#: ../../godmode/alerts/configure_alert_template.php:1106 -#: ../../godmode/setup/os.builder.php:37 ../../godmode/setup/os.list.php:70 +#: ../../godmode/alerts/alert_commands.php:752 +#: ../../godmode/alerts/alert_templates.php:44 +#: ../../godmode/alerts/configure_alert_template.php:1135 +#: ../../godmode/setup/os.builder.php:88 ../../godmode/setup/os.list.php:67 #: ../../godmode/setup/snmp_wizard.php:41 -#: ../../godmode/reporting/create_container.php:266 -#: ../../godmode/reporting/graphs.php:311 +#: ../../godmode/reporting/create_container.php:336 +#: ../../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:1160 -#: ../../godmode/reporting/reporting_builder.main.php:215 -#: ../../godmode/reporting/reporting_builder.php:909 -#: ../../godmode/reporting/graph_builder.main.php:180 -#: ../../godmode/events/event_responses.editor.php:111 -#: ../../godmode/events/event_responses.list.php:51 -#: ../../godmode/servers/modificar_server.php:66 -#: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:478 -#: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278 -#: ../../godmode/tag/edit_tag.php:219 ../../mobile/operation/tactical.php:352 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1157 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4002 +#: ../../godmode/reporting/reporting_builder.main.php:140 +#: ../../godmode/reporting/reporting_builder.php:885 +#: ../../godmode/reporting/graph_builder.main.php:182 +#: ../../godmode/events/event_responses.editor.php:141 +#: ../../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 #: ../../include/functions_reporting_html.php:156 -#: ../../include/functions_reporting_html.php:1573 -#: ../../include/functions_reporting_html.php:1716 -#: ../../include/functions_reporting_html.php:3567 -#: ../../include/functions_reporting_html.php:3618 -#: ../../include/functions_reporting_html.php:5404 -#: ../../include/functions_reporting_html.php:6321 +#: ../../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/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:238 -#: ../../include/ajax/heatmap.ajax.php:277 -#: ../../include/ajax/heatmap.ajax.php:337 ../../include/ajax/module.php:992 -#: ../../include/ajax/events.php:2532 ../../include/functions_treeview.php:127 -#: ../../include/functions_treeview.php:652 -#: ../../include/class/ConfigPEN.class.php:448 -#: ../../include/class/ConfigPEN.class.php:599 +#: ../../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/class/ConfigPEN.class.php:450 +#: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/ManageNetScanScripts.class.php:404 -#: ../../include/class/ManageNetScanScripts.class.php:558 -#: ../../include/class/ManageNetScanScripts.class.php:607 -#: ../../include/class/ModuleTemplates.class.php:894 -#: ../../include/class/ModuleTemplates.class.php:1063 -#: ../../include/class/ModuleTemplates.class.php:1211 -#: ../../include/class/SatelliteCollection.class.php:130 -#: ../../include/class/AgentWizard.class.php:1281 -#: ../../include/class/AgentWizard.class.php:4184 +#: ../../include/class/ManageNetScanScripts.class.php:566 +#: ../../include/class/ManageNetScanScripts.class.php:615 +#: ../../include/class/ModuleTemplates.class.php:849 +#: ../../include/class/ModuleTemplates.class.php:1042 +#: ../../include/class/ModuleTemplates.class.php:1186 +#: ../../include/class/SatelliteCollection.class.php:134 +#: ../../include/class/AgentWizard.class.php:1284 +#: ../../include/class/AgentWizard.class.php:4187 #: ../../include/functions_container.php:147 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:812 -#: ../../include/functions_snmp_browser.php:570 -#: ../../include/functions_snmp_browser.php:1690 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:815 +#: ../../include/lib/Group.php:582 ../../include/functions_snmp_browser.php:570 +#: ../../include/functions_snmp_browser.php:1884 #: ../../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:742 -#: ../../operation/agentes/pandora_networkmap.editor.php:339 +#: ../../operation/agentes/estado_agente.php:1027 +#: ../../operation/agentes/pandora_networkmap.editor.php:368 #: ../../operation/agentes/custom_fields.php:69 #: ../../operation/agentes/pandora_networkmap.view.php:146 -#: ../../operation/agentes/estado_generalagente.php:237 +#: ../../operation/agentes/estado_generalagente.php:253 #: ../../operation/gis_maps/ajax.php:325 ../../operation/gis_maps/ajax.php:459 -#: ../../operation/incidents/configure_integriaims_incident.php:342 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:117 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:248 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:261 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:392 +#: ../../operation/incidents/configure_integriaims_incident.php:371 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:133 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:264 +#: ../../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/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/reporting/graph_viewer.php:522 +#: ../../operation/reporting/graph_viewer.php:568 #: ../../operation/search_policies.php:36 msgid "Description" msgstr "説明" -#: ../../views/calendar/list.php:96 ../../views/cluster/list.php:64 -#: ../../views/dashboard/header.php:80 +#: ../../views/consoles/list.php:70 +#: ../../enterprise/meta/advanced/servers.build_table.php:64 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:927 +#: ../../enterprise/godmode/servers/list_satellite.php:56 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/class/AgentRepository.class.php:380 +#: ../../enterprise/include/class/AgentRepository.class.php:714 +#: ../../enterprise/tools/ipam/ipam_calculator.php:53 +#: ../../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 +#: ../../include/functions_snmp_browser.php:762 +#: ../../general/reporting_console_node.php:69 +msgid "Version" +msgstr "バージョン" + +#: ../../views/consoles/list.php:71 +msgid "Last Execution" +msgstr "最後の実行" + +#: ../../views/consoles/list.php:72 +msgid "Console type" +msgstr "コンソールタイプ" + +#: ../../views/consoles/list.php:73 ../../godmode/users/configure_user.php:1108 +#: ../../godmode/massive/massive_edit_users.php:469 +#: ../../operation/users/user_edit.php:537 +msgid "Timezone" +msgstr "タイムゾーン" + +#: ../../views/consoles/list.php:74 +#: ../../enterprise/meta/advanced/metasetup.setup.php:237 +#: ../../enterprise/meta/include/functions_meta.php:171 +#: ../../godmode/setup/setup_general.php:480 +#: ../../include/functions_config.php:314 +msgid "Public URL" +msgstr "公開 URL" + +#: ../../views/consoles/list.php:76 ../../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 #: ../../enterprise/views/ncm/templates/list.php:77 -#: ../../enterprise/views/ncm/firmwares/list.php:77 +#: ../../enterprise/views/ncm/firmwares/list.php:76 #: ../../enterprise/views/ncm/models/list.php:73 #: ../../enterprise/views/ncm/vendors/list.php:71 #: ../../enterprise/views/ipam/sites/list.php:49 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 -#: ../../enterprise/extensions/vmware/vmware_view.php:1333 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:264 +#: ../../enterprise/extensions/vmware/vmware_view.php:1399 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../enterprise/include/class/DeploymentCenter.class.php:764 -#: ../../enterprise/include/class/AgentRepository.class.php:690 -#: ../../enterprise/include/class/Omnishell.class.php:402 -#: ../../enterprise/include/class/LogSource.class.php:630 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2343 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2952 -#: ../../godmode/menu.php:558 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../include/ajax/events.php:2223 ../../include/class/ConfigPEN.class.php:601 -#: ../../include/class/CredentialStore.class.php:845 -#: ../../include/class/ExternalTools.class.php:383 +#: ../../enterprise/include/class/DeploymentCenter.class.php:673 +#: ../../enterprise/include/class/AgentRepository.class.php:717 +#: ../../enterprise/include/class/Omnishell.class.php:409 +#: ../../enterprise/include/class/Omnishell.class.php:645 +#: ../../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/reporting/reporting_builder.list_items.php:429 +#: ../../include/ajax/events.php:2308 ../../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:2353 +#: ../../operation/agentes/pandora_networkmap.view.php:2386 msgid "Options" msgstr "オプション" -#: ../../views/calendar/list.php:119 ../../views/cluster/list.php:97 -#: ../../enterprise/views/ncm/snippets/list.php:102 -#: ../../enterprise/views/ncm/templates/list.php:108 -#: ../../enterprise/views/ncm/devices/list.php:155 +#: ../../views/consoles/list.php:113 ../../views/consoles/list.php:123 +#: ../../views/dashboard/list.php:107 +#: ../../enterprise/meta/advanced/servers.build_table.php:142 +#: ../../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 +#: ../../enterprise/meta/advanced/metasetup.relations.php:589 +#: ../../enterprise/meta/advanced/metasetup.relations.php:590 +#: ../../enterprise/meta/advanced/metasetup.relations.php:634 +#: ../../enterprise/meta/advanced/links.php:170 +#: ../../enterprise/meta/advanced/policymanager.queue.php:220 +#: ../../enterprise/meta/advanced/policymanager.queue.php:262 +#: ../../enterprise/meta/advanced/policymanager.queue.php:319 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:399 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 +#: ../../enterprise/meta/include/functions_autoprovision.php:539 +#: ../../enterprise/meta/include/functions_autoprovision.php:540 +#: ../../enterprise/meta/include/functions_autoprovision.php:746 +#: ../../enterprise/meta/include/functions_autoprovision.php:747 +#: ../../enterprise/meta/include/functions_wizard_meta.php:395 +#: ../../enterprise/godmode/modules/local_components.php:748 +#: ../../enterprise/godmode/modules/local_components.php:767 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:534 +#: ../../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/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/policies.php:662 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:600 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:316 +#: ../../enterprise/godmode/policies/policy_agents.php:1209 +#: ../../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/setup/setup_acl.php:734 +#: ../../enterprise/godmode/reporting/graph_template_list.php:257 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:614 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:652 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:323 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:333 +#: ../../enterprise/godmode/reporting/visual_console_template.php:291 +#: ../../enterprise/godmode/reporting/mysql_builder.php:97 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:392 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 +#: ../../enterprise/include/functions_tasklist.php:659 +#: ../../enterprise/include/functions_tasklist.php:695 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:104 +#: ../../enterprise/include/ajax/servers.ajax.php:103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1573 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1612 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:644 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:802 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:981 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1128 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1336 +#: ../../enterprise/include/class/AgentRepository.class.php:877 +#: ../../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/AlertCorrelationManager.class.php:2476 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3159 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3487 +#: ../../enterprise/include/class/ManageBackups.class.php:281 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1194 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1195 +#: ../../enterprise/operation/services/services.list.php:695 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1434 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:361 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:375 +#: ../../enterprise/tools/ipam/ipam_ajax.php:136 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:925 +#: ../../extensions/files_repo/files_repo_list.php:154 +#: ../../godmode/modules/manage_network_templates_form.php:254 +#: ../../godmode/modules/manage_nc_groups.php:302 +#: ../../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_templates.php:289 +#: ../../godmode/modules/manage_network_templates.php:302 +#: ../../godmode/groups/group_list.php:971 +#: ../../godmode/groups/group_list.php:972 +#: ../../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/agentes/agent_template.php:297 +#: ../../godmode/agentes/module_manager_editor.php:802 +#: ../../godmode/agentes/inventory_manager.php:262 +#: ../../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/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 +#: ../../godmode/snmpconsole/snmp_alert.php:1950 +#: ../../godmode/snmpconsole/snmp_filters.php:326 +#: ../../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/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/reporting/create_container.php:747 +#: ../../godmode/reporting/create_container.php:802 +#: ../../godmode/reporting/map_builder.php:421 +#: ../../godmode/reporting/map_builder.php:544 +#: ../../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/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/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/ManageNetScanScripts.class.php:405 +#: ../../include/class/CredentialStore.class.php:1267 +#: ../../include/class/CredentialStore.class.php:1695 +#: ../../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/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/messages/message_list.php:197 +#: ../../operation/messages/message_list.php:296 +#: ../../operation/messages/message_list.php:332 +#: ../../operation/gis_maps/gis_map.php:203 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:136 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:214 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:267 +#: ../../operation/incidents/list_integriaims_incidents.php:626 +msgid "Delete" +msgstr "削除" + +#: ../../views/consoles/list.php:121 +msgid "" +"Are you sure?

WARNING: you also need to delete config." +"php options in your console or delete the whole console." +msgstr "" +"よろしいですか?

警告: コンソールの config.php オプション" +"を削除するか、コンソール全体を削除する必要もあります。" + +#: ../../views/consoles/list.php:127 +#: ../../views/calendar/special_days_edit.php:209 +#: ../../views/calendar/special_days.php:430 +#: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 +#: ../../views/dashboard/header.php:106 ../../views/dashboard/list.php:228 +#: ../../enterprise/views/ncm/agent/details.php:691 +#: ../../enterprise/meta/advanced/cron_main.php:388 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1168 +#: ../../enterprise/meta/event/custom_events.php:246 +#: ../../enterprise/godmode/policies/policy_alerts.php:720 +#: ../../enterprise/godmode/policies/policy_alerts.php:740 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:730 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:359 +#: ../../enterprise/godmode/services/services.service.php:1024 +#: ../../enterprise/godmode/services/services.elements.php:960 +#: ../../enterprise/godmode/services/services.elements.php:971 +#: ../../enterprise/godmode/setup/setup.php:581 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:344 +#: ../../enterprise/include/functions_HA_cluster.php:492 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1603 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1705 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1757 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1789 +#: ../../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/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 +#: ../../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_register.php:179 +#: ../../include/class/ConfigPEN.class.php:675 +#: ../../include/class/ConfigPEN.class.php:699 +#: ../../include/class/SatelliteAgent.class.php:1106 +#: ../../include/class/SatelliteAgent.class.php:1151 +#: ../../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/WelcomeWindow.class.php:174 +#: ../../include/class/SatelliteCollection.class.php:536 +#: ../../include/class/SatelliteCollection.class.php:579 +#: ../../include/class/AgentWizard.class.php:6234 +#: ../../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 +msgid "Cancel" +msgstr "キャンセル" + +#: ../../views/consoles/list.php:164 +#: ../../enterprise/godmode/services/services.elements.php:956 +#: ../../enterprise/godmode/services/services.elements.php:967 +#: ../../enterprise/godmode/setup/setup.php:595 +#: ../../enterprise/godmode/setup/setup.php:611 +#: ../../enterprise/include/functions_visual_map.php:677 +#: ../../enterprise/include/functions_HA_cluster.php:535 +#: ../../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/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/SatelliteCollection.class.php:616 +#: ../../include/class/WebServerModuleDebug.class.php:359 +#: ../../include/class/AgentWizard.class.php:6027 +#: ../../operation/visual_console/view.php:937 +msgid "Success" +msgstr "成功" + +#: ../../views/consoles/list.php:174 ../../views/consoles/list.php:179 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:657 +#: ../../enterprise/include/functions_HA_cluster.php:542 +#: ../../enterprise/include/functions_HA_cluster.php:547 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1654 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1659 +#: ../../enterprise/include/class/DatabaseHA.class.php:208 +#: ../../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/ManageBackups.class.php:493 +#: ../../enterprise/include/class/ManageBackups.class.php:498 +#: ../../enterprise/include/functions_ux_console.php:483 +#: ../../enterprise/operation/agentes/ux_console_view.php:210 +#: ../../enterprise/operation/agentes/ux_console_view.php:359 +#: ../../enterprise/operation/agentes/wux_console_view.php:431 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1080 +#: ../../include/ajax/snmp_browser.ajax.php:259 +#: ../../include/class/ConfigPEN.class.php:750 +#: ../../include/class/ConfigPEN.class.php:755 +#: ../../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/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 +msgid "Failed" +msgstr "失敗" + +#: ../../views/calendar/list.php:37 ../../views/calendar/list.php:46 +#: ../../views/calendar/special_days_edit.php:39 ../../views/calendar/edit.php:38 +#: ../../views/calendar/edit.php:47 ../../views/calendar/special_days.php:39 +#: ../../views/calendar/special_days.php:48 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:729 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 +#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:296 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1534 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1752 +#: ../../enterprise/meta/agentsearch.php:140 +#: ../../enterprise/godmode/policies/policy_alerts.php:46 +#: ../../enterprise/godmode/policies/policy_alerts.php:59 +#: ../../enterprise/godmode/policies/policies.php:591 +#: ../../enterprise/godmode/alerts/alert_inventory.php:79 +#: ../../enterprise/godmode/alerts/alert_inventory.php:98 +#: ../../enterprise/godmode/services/services.service.php:959 +#: ../../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/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/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/configure_alert_action.php:72 +#: ../../godmode/alerts/configure_alert_action.php:92 +#: ../../godmode/alerts/configure_alert_template.php:95 +#: ../../godmode/alerts/configure_alert_template.php:126 +#: ../../godmode/alerts/configure_alert_template.php:165 +#: ../../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 +#: ../../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/ver_agente.php:1436 +#: ../../operation/agentes/ver_agente.php:1848 +msgid "Alerts" +msgstr "アラート" + +#: ../../views/calendar/list.php:50 ../../views/calendar/edit.php:51 +#: ../../views/calendar/special_days.php:52 +#: ../../include/class/CalendarManager.class.php:720 +msgid "Special days" +msgstr "特別日" + +#: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:57 +#: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 +#: ../../enterprise/extensions/csv_import_group.php:39 +#: ../../enterprise/godmode/modules/local_components.php:268 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:340 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:126 +#: ../../enterprise/godmode/agentes/collections.data.php:451 +#: ../../enterprise/godmode/agentes/collections.editor.php:133 +#: ../../enterprise/godmode/agentes/collections.php:179 +#: ../../enterprise/godmode/policies/policy_plugins.php:31 +#: ../../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/policies.php:268 +#: ../../enterprise/godmode/policies/policy_linking.php:120 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:322 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:92 +#: ../../enterprise/godmode/policies/policy_collections.php:62 +#: ../../enterprise/godmode/policies/policy_agents.php:319 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:33 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:33 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:33 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:31 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:31 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:246 +#: ../../enterprise/include/lib/Policy/Queue.php:162 +#: ../../enterprise/include/lib/Policy/Queue.php:163 +#: ../../enterprise/operation/agentes/policy_view.php:51 +#: ../../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/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/agentes/modificar_agente.php:118 +#: ../../godmode/massive/massive_operations.php:433 +#: ../../godmode/massive/massive_edit_users.php:47 +#: ../../godmode/massive/massive_delete_profiles.php:45 +#: ../../godmode/massive/massive_add_profiles.php:45 +#: ../../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/configure_alert_action.php:125 +#: ../../godmode/alerts/configure_alert_template.php:429 +#: ../../godmode/setup/os.list.php:49 +#: ../../godmode/servers/plugin_registration.php:89 ../../godmode/tag/tag.php:186 +#: ../../godmode/category/category.php:96 ../../operation/users/user_edit.php:277 +msgid "metaconsole" +msgstr "メタコンソール" + +#: ../../views/calendar/list.php:63 ../../views/calendar/special_days_edit.php:60 +#: ../../views/calendar/edit.php:64 ../../views/calendar/special_days.php:65 +#: ../../enterprise/extensions/csv_import_group.php:41 +#: ../../enterprise/godmode/modules/local_components.php:270 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:342 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:128 +#: ../../enterprise/godmode/policies/policy_plugins.php:33 +#: ../../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/policies.php:270 +#: ../../enterprise/godmode/policies/policy_linking.php:122 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:324 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:94 +#: ../../enterprise/godmode/policies/policy_collections.php:64 +#: ../../enterprise/godmode/policies/policy_agents.php:321 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:35 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:35 +#: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:35 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:33 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:33 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:248 +#: ../../enterprise/operation/agentes/policy_view.php:53 +#: ../../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/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/agentes/modificar_agente.php:120 +#: ../../godmode/massive/massive_operations.php:435 +#: ../../godmode/massive/massive_edit_users.php:49 +#: ../../godmode/massive/massive_delete_profiles.php:47 +#: ../../godmode/massive/massive_add_profiles.php:47 +#: ../../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/configure_alert_action.php:127 +#: ../../godmode/alerts/configure_alert_template.php:431 +#: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:188 +#: ../../godmode/category/category.php:98 ../../operation/users/user_edit.php:279 +msgid "any node" +msgstr "任意のノード" + +#: ../../views/calendar/list.php:68 ../../views/calendar/special_days_edit.php:65 +#: ../../views/calendar/edit.php:69 ../../views/calendar/special_days.php:70 +#, php-format +msgid "" +"This node is configured with centralized mode. All alert calendar information " +"is read only. Go to %s to manage it." +msgstr "" +"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は" +"読み取り専用です。管理するには %s に移動します。" + +#: ../../views/calendar/list.php:95 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 +#: ../../enterprise/tools/ipam/ipam_list.php:670 +#: ../../enterprise/tools/ipam/ipam_excel.php:136 +#: ../../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/modu_group_list.php:260 +#: ../../godmode/agentes/fields_manager.php:152 +#: ../../godmode/agentes/agent_manager.php:364 +#: ../../godmode/agentes/agent_incidents.php:87 +#: ../../godmode/agentes/module_manager_editor_common.php:197 +#: ../../godmode/alerts/alert_commands.php:750 ../../godmode/setup/os.list.php:64 +#: ../../operation/incidents/list_integriaims_incidents.php:586 +msgid "ID" +msgstr "ID" + +#: ../../views/calendar/list.php:96 ../../views/calendar/edit.php:89 +#: ../../views/cluster/list.php:69 ../../views/dashboard/list.php:99 +#: ../../views/dashboard/formDashboard.php:77 +#: ../../enterprise/views/ncm/snippets/list.php:70 +#: ../../enterprise/views/ncm/snippets/edit.php:83 +#: ../../enterprise/views/ncm/templates/list.php:73 +#: ../../enterprise/views/ncm/templates/edit.php:81 +#: ../../enterprise/views/ncm/devices/list.php:114 +#: ../../enterprise/views/ncm/firmwares/list.php:72 +#: ../../enterprise/views/ncm/firmwares/edit.php:80 +#: ../../enterprise/views/ncm/models/list.php:71 +#: ../../enterprise/views/ncm/models/edit.php:68 +#: ../../enterprise/views/ncm/vendors/list.php:70 +#: ../../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/collections.data.php:350 +#: ../../enterprise/meta/include/functions_autoprovision.php:495 +#: ../../enterprise/meta/include/functions_autoprovision.php:603 +#: ../../enterprise/meta/include/functions_wizard_meta.php:463 +#: ../../enterprise/meta/include/functions_wizard_meta.php:581 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1131 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1457 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1579 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1682 +#: ../../enterprise/meta/agentsearch.php:333 +#: ../../enterprise/godmode/modules/configure_local_component.php:158 +#: ../../enterprise/godmode/modules/local_components.php:644 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:363 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:787 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:144 +#: ../../enterprise/godmode/agentes/collection_manager.php:161 +#: ../../enterprise/godmode/agentes/collection_manager.php:261 +#: ../../enterprise/godmode/agentes/collections.data.php:583 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:116 +#: ../../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/policies.php:437 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:270 +#: ../../enterprise/godmode/policies/policy_collections.php:240 +#: ../../enterprise/godmode/policies/policy_collections.php:321 +#: ../../enterprise/godmode/policies/policy_agents.php:956 +#: ../../enterprise/godmode/policies/policy_agents.php:1346 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:170 +#: ../../enterprise/godmode/services/services.service.php:580 +#: ../../enterprise/godmode/setup/setup_skins.php:111 +#: ../../enterprise/godmode/setup/setup_auth.php:118 +#: ../../enterprise/godmode/setup/edit_skin.php:252 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:186 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:190 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:191 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:97 +#: ../../enterprise/godmode/reporting/visual_console_template.php:213 +#: ../../enterprise/godmode/reporting/visual_console_template.php:288 +#: ../../enterprise/godmode/reporting/mysql_builder.php:96 +#: ../../enterprise/godmode/reporting/mysql_builder.php:239 +#: ../../enterprise/godmode/reporting/mysql_builder.php:240 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1686 +#: ../../enterprise/godmode/servers/manage_export.php:173 +#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:249 +#: ../../enterprise/godmode/servers/manage_credential_boxes.php:58 +#: ../../enterprise/godmode/servers/manage_export_form.php:105 +#: ../../enterprise/godmode/servers/list_satellite.php:54 +#: ../../enterprise/mobile/include/enterprise.class.php:86 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:434 +#: ../../enterprise/include/ajax/servers.ajax.php:100 +#: ../../enterprise/include/ajax/servers.ajax.php:171 +#: ../../enterprise/include/ajax/servers.ajax.php:309 +#: ../../enterprise/include/functions_reporting_csv.php:763 +#: ../../enterprise/include/class/Omnishell.class.php:851 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:793 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3008 +#: ../../enterprise/include/functions_services.php:1603 +#: ../../enterprise/include/functions_ipam.php:1350 +#: ../../enterprise/include/functions_ipam.php:2056 +#: ../../enterprise/operation/agentes/policy_view.php:164 +#: ../../enterprise/operation/agentes/policy_view.php:396 +#: ../../enterprise/operation/agentes/tag_view.php:780 +#: ../../enterprise/operation/agentes/collection_view.php:84 +#: ../../enterprise/operation/services/services.service.php:109 +#: ../../enterprise/operation/services/massive/services.create.php:656 +#: ../../enterprise/operation/services/services.list.php:535 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1189 +#: ../../enterprise/tools/ipam/ipam_list.php:683 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:134 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:329 +#: ../../enterprise/tools/ipam/ipam_excel.php:137 +#: ../../enterprise/tools/ipam/ipam_excel.php:208 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:785 +#: ../../enterprise/tools/ipam/ipam_editor.php:153 +#: ../../extensions/files_repo/files_repo_list.php:55 +#: ../../godmode/modules/manage_nc_groups_form.php:72 +#: ../../godmode/modules/manage_network_templates_form.php:168 +#: ../../godmode/modules/manage_nc_groups.php:264 +#: ../../godmode/modules/manage_inventory_modules.php:289 +#: ../../godmode/modules/manage_network_components_form_common.php:46 +#: ../../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_modu_group.php:82 +#: ../../godmode/groups/modu_group_list.php:261 +#: ../../godmode/users/user_list.php:574 +#: ../../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.php:605 +#: ../../godmode/netflow/nf_edit.php:166 +#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../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/configure_alert_action.php:183 +#: ../../godmode/alerts/configure_alert_template.php:1080 +#: ../../godmode/setup/os.builder.php:72 ../../godmode/setup/os.builder.php:73 +#: ../../godmode/setup/os.list.php:66 ../../godmode/setup/setup_integria.php:400 +#: ../../godmode/setup/setup_integria.php:533 +#: ../../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.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/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/category/edit_category.php:189 +#: ../../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_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/ManageNetScanScripts.class.php:403 +#: ../../include/class/ManageNetScanScripts.class.php:553 +#: ../../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 +#: ../../operation/search_helps.php:31 +#: ../../operation/agentes/pandora_networkmap.editor.php:332 +#: ../../operation/agentes/pandora_networkmap.php:716 +#: ../../operation/agentes/pandora_networkmap.view.php:137 +#: ../../operation/gis_maps/gis_map.php:115 +#: ../../operation/incidents/configure_integriaims_incident.php:232 +#: ../../operation/search_policies.php:35 ../../operation/search_maps.php:28 +msgid "Name" +msgstr "名前" + +#: ../../views/calendar/list.php:97 +#: ../../views/calendar/special_days_edit.php:105 +#: ../../views/calendar/edit.php:100 ../../views/calendar/special_days.php:117 +#: ../../views/cluster/list.php:71 ../../views/dashboard/list.php:101 +#: ../../views/dashboard/formDashboard.php:92 +#: ../../enterprise/views/ncm/devices/list.php:116 +#: ../../enterprise/meta/advanced/collections.data.php:442 +#: ../../enterprise/meta/advanced/collections.php:382 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:148 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:305 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:370 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:638 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:717 +#: ../../enterprise/meta/include/functions_wizard_meta.php:191 +#: ../../enterprise/meta/include/functions_wizard_meta.php:1805 +#: ../../enterprise/meta/include/functions_events_meta.php:74 +#: ../../enterprise/meta/agentsearch.php:137 +#: ../../enterprise/meta/agentsearch.php:335 +#: ../../enterprise/godmode/modules/configure_local_component.php:276 +#: ../../enterprise/godmode/modules/local_components.php:549 +#: ../../enterprise/godmode/modules/local_components.php:646 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:118 +#: ../../enterprise/godmode/agentes/collections.data.php:595 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:205 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 +#: ../../enterprise/godmode/agentes/collections.php:506 +#: ../../enterprise/godmode/policies/configure_policy.php:136 +#: ../../enterprise/godmode/policies/policies.php:296 +#: ../../enterprise/godmode/policies/policies.php:439 +#: ../../enterprise/godmode/policies/policy_agents.php:410 +#: ../../enterprise/godmode/policies/policy_agents.php:965 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:140 +#: ../../enterprise/godmode/services/services.service.php:603 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:347 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 +#: ../../enterprise/godmode/reporting/graph_template_list.php:205 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:195 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:468 +#: ../../enterprise/godmode/reporting/visual_console_template.php:226 +#: ../../enterprise/godmode/reporting/visual_console_template.php:289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1413 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2040 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:699 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:687 +#: ../../enterprise/include/functions_tasklist.php:178 +#: ../../enterprise/include/ajax/ipam.ajax.php:487 +#: ../../enterprise/include/ajax/cron.ajax.php:148 +#: ../../enterprise/include/functions_reporting_csv.php:725 +#: ../../enterprise/include/functions_reporting_csv.php:2609 +#: ../../enterprise/include/functions_reporting_csv.php:2788 +#: ../../enterprise/include/class/Azure.cloud.php:838 +#: ../../enterprise/include/class/VMware.app.php:762 +#: ../../enterprise/include/class/Omnishell.class.php:406 +#: ../../enterprise/include/class/Omnishell.class.php:435 +#: ../../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/Aws.cloud.php:566 +#: ../../enterprise/include/class/Aws.cloud.php:1252 +#: ../../enterprise/include/class/MySQL.app.php:482 +#: ../../enterprise/include/class/Google.cloud.php:788 +#: ../../enterprise/include/class/Oracle.app.php:484 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:489 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:813 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:953 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2883 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3009 +#: ../../enterprise/include/functions_events.php:30 +#: ../../enterprise/operation/agentes/tag_view.php:106 +#: ../../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/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 +#: ../../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/agentes/configurar_agente.php:518 +#: ../../godmode/agentes/modificar_agente.php:314 +#: ../../godmode/agentes/modificar_agente.php:697 +#: ../../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/snmpconsole/snmp_alert.php:837 +#: ../../godmode/gis_maps/configure_gis_map.php:509 +#: ../../godmode/gis_maps/configure_gis_map.php:646 +#: ../../godmode/massive/massive_copy_modules.php:100 +#: ../../godmode/massive/massive_copy_modules.php:253 +#: ../../godmode/massive/massive_standby_alerts.php:186 +#: ../../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_delete_profiles.php:153 +#: ../../godmode/massive/massive_delete_alerts.php:290 +#: ../../godmode/massive/massive_add_action_alerts.php:198 +#: ../../godmode/massive/massive_add_profiles.php:203 +#: ../../godmode/alerts/configure_alert_command.php:247 +#: ../../godmode/alerts/alert_actions.php:269 +#: ../../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/configure_alert_action.php:220 +#: ../../godmode/alerts/configure_alert_template.php:1116 +#: ../../godmode/setup/news.php:212 ../../godmode/setup/gis.php:70 +#: ../../godmode/setup/gis_step_2.php:237 +#: ../../godmode/setup/setup_integria.php:426 +#: ../../godmode/setup/setup_integria.php:560 +#: ../../godmode/reporting/visual_console_builder.data.php:163 +#: ../../godmode/reporting/create_container.php:261 +#: ../../godmode/reporting/create_container.php:635 +#: ../../godmode/reporting/create_container.php:742 +#: ../../godmode/reporting/map_builder.php:362 +#: ../../godmode/reporting/map_builder.php:418 +#: ../../godmode/reporting/graphs.php:231 ../../godmode/reporting/graphs.php:249 +#: ../../godmode/reporting/graphs.php:365 +#: ../../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:1641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3494 +#: ../../godmode/reporting/visual_console_builder.elements.php:120 +#: ../../godmode/reporting/visual_console_builder.elements.php:343 +#: ../../godmode/reporting/reporting_builder.main.php:119 +#: ../../godmode/reporting/reporting_builder.main.php:184 +#: ../../godmode/reporting/reporting_builder.php:722 +#: ../../godmode/reporting/reporting_builder.php:922 +#: ../../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_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 +#: ../../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 +#: ../../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/ajax/custom_fields.php:630 +#: ../../include/ajax/custom_fields.php:679 +#: ../../include/functions_graph.php:4937 ../../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_massive_operations.php:124 +#: ../../include/class/NetworkMap.class.php:2985 +#: ../../include/class/NetworkMap.class.php:3046 +#: ../../include/class/NetworkMap.class.php:3412 +#: ../../include/class/AgentsAlerts.class.php:774 +#: ../../include/class/CredentialStore.class.php:814 +#: ../../include/class/CredentialStore.class.php:846 +#: ../../include/class/CredentialStore.class.php:937 +#: ../../include/class/CustomNetScan.class.php:506 +#: ../../include/class/ModuleTemplates.class.php:728 +#: ../../include/class/CalendarManager.class.php:1027 +#: ../../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/functions_events.php:203 ../../include/functions_events.php:256 +#: ../../include/functions_events.php:5051 ../../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/agentes/estado_agente.php:291 +#: ../../operation/agentes/estado_agente.php:1039 +#: ../../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/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/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 +#: ../../general/ui/agents_list.php:76 +msgid "Group" +msgstr "グループ" + +#: ../../views/calendar/list.php:122 ../../views/cluster/list.php:108 +#: ../../enterprise/views/ncm/snippets/list.php:103 +#: ../../enterprise/views/ncm/templates/list.php:109 +#: ../../enterprise/views/ncm/devices/list.php:156 #: ../../enterprise/views/ncm/firmwares/list.php:108 -#: ../../enterprise/views/ncm/models/list.php:96 -#: ../../enterprise/views/ncm/vendors/list.php:94 +#: ../../enterprise/views/ncm/models/list.php:97 +#: ../../enterprise/views/ncm/vendors/list.php:95 #: ../../enterprise/views/ipam/sites/list.php:73 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:917 +#: ../../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/reporting/reporting_builder.wizard.php:755 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3306 -#: ../../enterprise/include/class/LogSource.class.php:656 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3295 +#: ../../enterprise/include/class/LogSource.class.php:634 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:131 #: ../../enterprise/include/lib/Metaconsole/Node.php:571 #: ../../enterprise/include/functions_events.php:50 -#: ../../enterprise/include/functions_ipam.php:1671 +#: ../../enterprise/include/functions_ipam.php:1683 #: ../../godmode/update_manager/update_manager.history.php:67 -#: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:388 +#: ../../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:299 ../../include/class/ConfigPEN.class.php:627 -#: ../../include/class/CredentialStore.class.php:883 -#: ../../include/class/SnmpConsole.class.php:436 -#: ../../operation/events/events.php:1740 +#: ../../include/ajax/module.php:312 ../../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 msgid "Free search" msgstr "検索語" -#: ../../views/calendar/list.php:144 -#: ../../views/calendar/special_days_edit.php:163 -#: ../../views/calendar/special_days_edit.php:206 -#: ../../views/calendar/edit.php:126 ../../views/calendar/special_days.php:323 -#: ../../views/calendar/special_days.php:406 -#: ../../views/calendar/special_days.php:481 -#: ../../views/calendar/special_days.php:505 -#: ../../enterprise/views/ncm/snippets/list.php:127 -#: ../../enterprise/views/ncm/snippets/edit.php:106 -#: ../../enterprise/views/ncm/templates/list.php:133 -#: ../../enterprise/views/ncm/templates/edit.php:315 -#: ../../enterprise/views/ncm/firmwares/list.php:133 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/models/list.php:121 -#: ../../enterprise/views/ncm/models/edit.php:103 -#: ../../enterprise/views/ncm/vendors/list.php:119 -#: ../../enterprise/views/ncm/vendors/edit.php:104 -#: ../../enterprise/views/ipam/sites/list.php:98 -#: ../../enterprise/views/ipam/sites/edit.php:80 +#: ../../views/calendar/list.php:149 +#: ../../views/calendar/special_days_edit.php:161 +#: ../../views/calendar/special_days_edit.php:208 +#: ../../views/calendar/edit.php:129 ../../views/calendar/special_days.php:346 +#: ../../views/calendar/special_days.php:429 +#: ../../views/calendar/special_days.php:504 +#: ../../views/calendar/special_days.php:529 +#: ../../enterprise/views/ncm/snippets/list.php:129 +#: ../../enterprise/views/ncm/snippets/edit.php:123 +#: ../../enterprise/views/ncm/templates/list.php:135 +#: ../../enterprise/views/ncm/templates/edit.php:328 +#: ../../enterprise/views/ncm/firmwares/list.php:134 +#: ../../enterprise/views/ncm/firmwares/edit.php:183 +#: ../../enterprise/views/ncm/models/list.php:123 +#: ../../enterprise/views/ncm/models/edit.php:117 +#: ../../enterprise/views/ncm/vendors/list.php:121 +#: ../../enterprise/views/ncm/vendors/edit.php:118 +#: ../../enterprise/views/ipam/sites/list.php:100 +#: ../../enterprise/views/ipam/sites/edit.php:106 #: ../../enterprise/meta/advanced/links.php:137 #: ../../enterprise/meta/advanced/collections.data.php:42 #: ../../enterprise/meta/advanced/collections.data.php:71 @@ -894,1252 +1346,1146 @@ msgstr "検索語" #: ../../enterprise/meta/advanced/collections.data.php:113 #: ../../enterprise/meta/advanced/collections.data.php:138 #: ../../enterprise/meta/advanced/collections.data.php:184 -#: ../../enterprise/meta/advanced/collections.editor.php:136 -#: ../../enterprise/meta/advanced/cron_main.php:477 -#: ../../enterprise/meta/advanced/collections.php:498 -#: ../../enterprise/meta/advanced/collections.php:509 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:105 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:300 -#: ../../enterprise/meta/include/functions_autoprovision.php:588 -#: ../../enterprise/meta/include/functions_autoprovision.php:789 -#: ../../enterprise/godmode/modules/configure_local_component.php:692 -#: ../../enterprise/godmode/modules/local_components.php:719 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 -#: ../../enterprise/godmode/agentes/collections.agents.php:38 -#: ../../enterprise/godmode/agentes/collections.data.php:68 -#: ../../enterprise/godmode/agentes/collections.data.php:169 -#: ../../enterprise/godmode/agentes/collections.data.php:193 -#: ../../enterprise/godmode/agentes/collections.data.php:213 -#: ../../enterprise/godmode/agentes/collections.data.php:240 -#: ../../enterprise/godmode/agentes/collections.data.php:296 -#: ../../enterprise/godmode/agentes/collections.editor.php:169 -#: ../../enterprise/godmode/agentes/collections.php:531 -#: ../../enterprise/godmode/policies/configure_policy.php:144 +#: ../../enterprise/meta/advanced/collections.editor.php:162 +#: ../../enterprise/meta/advanced/cron_main.php:322 +#: ../../enterprise/meta/advanced/collections.php:524 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:103 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:298 +#: ../../enterprise/meta/include/functions_autoprovision.php:632 +#: ../../enterprise/meta/include/functions_autoprovision.php:857 +#: ../../enterprise/godmode/modules/configure_local_component.php:693 +#: ../../enterprise/godmode/modules/local_components.php:766 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:914 +#: ../../enterprise/godmode/agentes/collections.agents.php:47 +#: ../../enterprise/godmode/agentes/collections.data.php:82 +#: ../../enterprise/godmode/agentes/collections.data.php:191 +#: ../../enterprise/godmode/agentes/collections.data.php:219 +#: ../../enterprise/godmode/agentes/collections.data.php:243 +#: ../../enterprise/godmode/agentes/collections.data.php:274 +#: ../../enterprise/godmode/agentes/collections.data.php:338 +#: ../../enterprise/godmode/agentes/collections.editor.php:190 +#: ../../enterprise/godmode/agentes/collections.php:593 +#: ../../enterprise/godmode/policies/configure_policy.php:169 #: ../../enterprise/godmode/policies/policy_modules.php:433 -#: ../../enterprise/godmode/policies/policies.php:649 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:108 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 -#: ../../enterprise/godmode/services/services.service.php:973 -#: ../../enterprise/godmode/setup/edit_skin.php:299 +#: ../../enterprise/godmode/policies/policy_modules.php:1746 +#: ../../enterprise/godmode/policies/policy_modules.php:1871 +#: ../../enterprise/godmode/policies/policies.php:728 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:42 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:165 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:450 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:459 +#: ../../enterprise/godmode/services/services.service.php:967 +#: ../../enterprise/godmode/setup/edit_skin.php:302 #: ../../enterprise/godmode/reporting/aws_view.php:194 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:269 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:599 -#: ../../enterprise/godmode/servers/manage_export.php:130 -#: ../../enterprise/godmode/servers/manage_export.php:169 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3141 -#: ../../enterprise/tools/ipam/ipam_list.php:772 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:454 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:148 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:315 -#: ../../enterprise/tools/ipam/ipam_editor.php:361 -#: ../../godmode/modules/manage_nc_groups_form.php:93 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:296 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:609 +#: ../../enterprise/godmode/servers/manage_export.php:159 +#: ../../enterprise/godmode/servers/manage_export.php:216 +#: ../../enterprise/godmode/servers/manage_export_form.php:186 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3202 +#: ../../enterprise/tools/ipam/ipam_list.php:854 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:532 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:171 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:393 +#: ../../enterprise/tools/ipam/ipam_editor.php:427 +#: ../../godmode/modules/manage_nc_groups_form.php:98 #: ../../godmode/modules/manage_network_templates_form.php:180 -#: ../../godmode/modules/manage_nc_groups.php:318 -#: ../../godmode/modules/manage_inventory_modules.php:349 +#: ../../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:937 -#: ../../godmode/modules/manage_inventory_modules_form.php:171 +#: ../../godmode/modules/manage_network_components.php:896 +#: ../../godmode/modules/manage_inventory_modules_form.php:249 #: ../../godmode/modules/manage_network_templates.php:311 -#: ../../godmode/groups/configure_group.php:279 -#: ../../godmode/groups/configure_modu_group.php:86 -#: ../../godmode/users/profile_list.php:463 -#: ../../godmode/users/configure_user.php:1723 -#: ../../godmode/agentes/module_manager_editor.php:790 -#: ../../godmode/agentes/planned_downtime.list.php:628 -#: ../../godmode/agentes/planned_downtime.list.php:920 -#: ../../godmode/agentes/agent_manager.php:1010 -#: ../../godmode/agentes/configure_field.php:155 -#: ../../godmode/agentes/module_manager.php:219 -#: ../../godmode/netflow/nf_edit_form.php:272 -#: ../../godmode/snmpconsole/snmp_alert.php:1142 -#: ../../godmode/snmpconsole/snmp_alert.php:1514 -#: ../../godmode/snmpconsole/snmp_filters.php:263 -#: ../../godmode/snmpconsole/snmp_filters.php:336 -#: ../../godmode/alerts/configure_alert_command.php:387 -#: ../../godmode/alerts/alert_actions.php:471 -#: ../../godmode/alerts/alert_list.list.php:975 -#: ../../godmode/alerts/alert_commands.php:832 -#: ../../godmode/alerts/alert_templates.php:482 -#: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/alerts/alert_list.php:521 ../../godmode/setup/news.php:231 -#: ../../godmode/setup/gis.php:98 ../../godmode/setup/os.php:95 -#: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 -#: ../../godmode/reporting/create_container.php:333 -#: ../../godmode/reporting/map_builder.php:559 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2285 -#: ../../godmode/reporting/graph_builder.main.php:294 -#: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/events/event_edit_filter.php:781 -#: ../../godmode/servers/plugin.php:575 ../../godmode/tag/edit_tag.php:281 -#: ../../godmode/category/edit_category.php:205 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/class/ManageNetScanScripts.class.php:763 -#: ../../include/class/ModuleTemplates.class.php:961 -#: ../../include/class/ModuleTemplates.class.php:1008 -#: ../../include/functions_filemanager.php:813 -#: ../../include/functions_filemanager.php:874 -#: ../../operation/gis_maps/gis_map.php:207 -#: ../../operation/incidents/configure_integriaims_incident.php:380 -#: ../../operation/incidents/list_integriaims_incidents.php:573 +#: ../../godmode/groups/configure_group.php:277 +#: ../../godmode/groups/configure_modu_group.php:102 +#: ../../godmode/users/configure_user.php:1665 +#: ../../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/configure_field.php:203 +#: ../../godmode/agentes/module_manager.php:1119 +#: ../../godmode/netflow/nf_edit_form.php:338 +#: ../../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_commands.php:839 +#: ../../godmode/alerts/alert_templates.php:514 +#: ../../godmode/alerts/configure_alert_action.php:446 +#: ../../godmode/alerts/alert_list.php:536 ../../godmode/setup/news.php:321 +#: ../../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.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/category/edit_category.php:201 +#: ../../include/functions_visual_map_editor.php:882 +#: ../../include/class/EventSound.class.php:199 +#: ../../include/class/EventSound.class.php:282 +#: ../../include/class/ManageNetScanScripts.class.php:769 +#: ../../include/class/ModuleTemplates.class.php:933 +#: ../../include/class/ModuleTemplates.class.php:987 +#: ../../include/functions_filemanager.php:859 +#: ../../include/functions_filemanager.php:920 +#: ../../operation/gis_maps/gis_map.php:220 +#: ../../operation/incidents/configure_integriaims_incident.php:406 +#: ../../operation/incidents/list_integriaims_incidents.php:654 msgid "Create" msgstr "作成" -#: ../../views/calendar/special_days_edit.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:109 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:794 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:121 -#: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:102 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:291 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1534 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1627 -#: ../../enterprise/meta/include/functions_wizard_meta.php:1752 -#: ../../enterprise/meta/agentsearch.php:142 -#: ../../enterprise/godmode/policies/policy_alerts.php:46 -#: ../../enterprise/godmode/policies/policies.php:523 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../enterprise/godmode/services/services.service.php:964 -#: ../../enterprise/include/functions_policies.php:3764 -#: ../../enterprise/operation/agentes/tag_view.php:608 -#: ../../enterprise/operation/services/massive/services.create.php:901 -#: ../../godmode/groups/configure_group.php:230 -#: ../../godmode/groups/group_list.php:851 -#: ../../godmode/agentes/configurar_agente.php:433 -#: ../../godmode/agentes/modificar_agente.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:262 -#: ../../godmode/massive/massive_copy_modules.php:216 -#: ../../godmode/alerts/configure_alert_command.php:60 -#: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_commands.php:581 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 -#: ../../godmode/alerts/configure_alert_action.php:74 -#: ../../godmode/alerts/configure_alert_action.php:87 -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_list.php:519 -#: ../../godmode/alerts/alert_list.php:521 -#: ../../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:2504 -#: ../../include/functions_reporting_html.php:5584 -#: ../../include/functions_treeview.php:405 -#: ../../include/functions_reports.php:843 -#: ../../include/functions_reports.php:847 -#: ../../include/functions_reports.php:853 -#: ../../include/functions_reports.php:859 -#: ../../include/class/AgentsAlerts.class.php:542 -#: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 -#: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1445 -msgid "Alerts" -msgstr "アラート" - -#: ../../views/calendar/special_days_edit.php:40 +#: ../../views/calendar/special_days_edit.php:39 msgid "Configure special day" msgstr "特別日設定" -#: ../../views/calendar/special_days_edit.php:80 +#: ../../views/calendar/special_days_edit.php:79 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting_pdf.php:718 +#: ../../enterprise/include/functions_reporting_pdf.php:720 #: ../../enterprise/include/functions_reporting_csv.php:826 #: ../../enterprise/include/functions_reporting_csv.php:882 #: ../../enterprise/include/functions_reporting_csv.php:927 #: ../../enterprise/include/functions_reporting_csv.php:2568 -#: ../../enterprise/include/class/ManageBackups.class.php:163 -#: ../../enterprise/include/functions_reporting.php:2145 -#: ../../enterprise/include/functions_reporting.php:2182 -#: ../../enterprise/include/functions_reporting.php:2217 -#: ../../enterprise/include/functions_reporting.php:2235 +#: ../../enterprise/include/class/ManageBackups.class.php:166 +#: ../../enterprise/include/functions_reporting.php:2138 +#: ../../enterprise/include/functions_reporting.php:2184 +#: ../../enterprise/include/functions_reporting.php:2197 +#: ../../enterprise/include/functions_reporting.php:2234 +#: ../../enterprise/include/functions_reporting.php:2252 #: ../../extensions/insert_data.php:196 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2172 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2200 #: ../../mobile/operation/tactical.php:350 -#: ../../include/functions_reporting_html.php:1929 -#: ../../include/functions_reporting_html.php:2754 -#: ../../include/functions_reporting_html.php:2763 -#: ../../include/functions_reporting_html.php:2768 -#: ../../include/functions_reporting_html.php:2777 -#: ../../include/functions_reporting_html.php:2782 -#: ../../include/functions_reporting_html.php:2789 -#: ../../include/functions_reporting_html.php:2838 -#: ../../include/functions_reporting_html.php:2911 -#: ../../include/functions_reporting_html.php:5926 -#: ../../include/functions.php:3099 ../../include/functions_inventory.php:882 -#: ../../include/class/AuditLog.class.php:109 -#: ../../include/functions_reporting.php:4624 -#: ../../include/functions_reporting.php:4665 -#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:623 +#: ../../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 +#: ../../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/class/AuditLog.class.php:112 +#: ../../include/functions_reporting.php:4728 +#: ../../include/functions_reporting.php:4769 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:624 #: ../../operation/agentes/agent_inventory.php:127 -#: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../operation/inventory/inventory.php:435 -#: ../../operation/reporting/graph_viewer.php:320 ../../general/logon_ok.php:251 +#: ../../operation/incidents/list_integriaims_incidents.php:441 +#: ../../operation/inventory/inventory.php:681 +#: ../../operation/reporting/graph_viewer.php:321 ../../general/logon_ok.php:257 msgid "Date" msgstr "日付" -#: ../../views/calendar/special_days_edit.php:116 -#: ../../views/calendar/special_days.php:92 -#: ../../views/calendar/special_days.php:358 +#: ../../views/calendar/special_days_edit.php:115 +#: ../../views/calendar/special_days.php:96 +#: ../../views/calendar/special_days.php:381 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:95 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1871 -#: ../../enterprise/include/functions_reporting.php:1733 -#: ../../enterprise/include/functions_reporting.php:2464 -#: ../../enterprise/include/functions_reporting.php:2782 -#: ../../enterprise/include/functions_reporting.php:3407 -#: ../../enterprise/include/functions_reporting.php:4383 -#: ../../godmode/alerts/alert_templates.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1502 -#: ../../include/functions_html.php:2263 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1860 +#: ../../enterprise/include/functions_reporting.php:1725 +#: ../../enterprise/include/functions_reporting.php:2482 +#: ../../enterprise/include/functions_reporting.php:2800 +#: ../../enterprise/include/functions_reporting.php:3426 +#: ../../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 msgid "Monday" msgstr "月曜日" -#: ../../views/calendar/special_days_edit.php:117 -#: ../../views/calendar/special_days.php:93 -#: ../../views/calendar/special_days.php:362 +#: ../../views/calendar/special_days_edit.php:116 +#: ../../views/calendar/special_days.php:97 +#: ../../views/calendar/special_days.php:385 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:96 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1879 -#: ../../enterprise/include/functions_reporting.php:1734 -#: ../../enterprise/include/functions_reporting.php:2465 -#: ../../enterprise/include/functions_reporting.php:2783 -#: ../../enterprise/include/functions_reporting.php:3408 -#: ../../enterprise/include/functions_reporting.php:4384 -#: ../../godmode/alerts/alert_templates.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1510 -#: ../../include/functions_html.php:2264 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1868 +#: ../../enterprise/include/functions_reporting.php:1726 +#: ../../enterprise/include/functions_reporting.php:2483 +#: ../../enterprise/include/functions_reporting.php:2801 +#: ../../enterprise/include/functions_reporting.php:3427 +#: ../../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 msgid "Tuesday" msgstr "火曜日" -#: ../../views/calendar/special_days_edit.php:118 -#: ../../views/calendar/special_days.php:94 -#: ../../views/calendar/special_days.php:366 +#: ../../views/calendar/special_days_edit.php:117 +#: ../../views/calendar/special_days.php:98 +#: ../../views/calendar/special_days.php:389 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:97 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1887 -#: ../../enterprise/include/functions_reporting.php:1735 -#: ../../enterprise/include/functions_reporting.php:2466 -#: ../../enterprise/include/functions_reporting.php:2784 -#: ../../enterprise/include/functions_reporting.php:3409 -#: ../../enterprise/include/functions_reporting.php:4385 -#: ../../godmode/alerts/alert_templates.php:66 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1518 -#: ../../include/functions_html.php:2265 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1876 +#: ../../enterprise/include/functions_reporting.php:1727 +#: ../../enterprise/include/functions_reporting.php:2484 +#: ../../enterprise/include/functions_reporting.php:2802 +#: ../../enterprise/include/functions_reporting.php:3428 +#: ../../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 msgid "Wednesday" msgstr "水曜日" -#: ../../views/calendar/special_days_edit.php:119 -#: ../../views/calendar/special_days.php:95 -#: ../../views/calendar/special_days.php:370 +#: ../../views/calendar/special_days_edit.php:118 +#: ../../views/calendar/special_days.php:99 +#: ../../views/calendar/special_days.php:393 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:98 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1895 -#: ../../enterprise/include/functions_reporting.php:1736 -#: ../../enterprise/include/functions_reporting.php:2467 -#: ../../enterprise/include/functions_reporting.php:2785 -#: ../../enterprise/include/functions_reporting.php:3410 -#: ../../enterprise/include/functions_reporting.php:4386 -#: ../../godmode/alerts/alert_templates.php:67 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1526 -#: ../../include/functions_html.php:2266 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1884 +#: ../../enterprise/include/functions_reporting.php:1728 +#: ../../enterprise/include/functions_reporting.php:2485 +#: ../../enterprise/include/functions_reporting.php:2803 +#: ../../enterprise/include/functions_reporting.php:3429 +#: ../../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 msgid "Thursday" msgstr "木曜日" -#: ../../views/calendar/special_days_edit.php:120 -#: ../../views/calendar/special_days.php:96 -#: ../../views/calendar/special_days.php:374 +#: ../../views/calendar/special_days_edit.php:119 +#: ../../views/calendar/special_days.php:100 +#: ../../views/calendar/special_days.php:397 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:99 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1903 -#: ../../enterprise/include/functions_reporting.php:1737 -#: ../../enterprise/include/functions_reporting.php:2468 -#: ../../enterprise/include/functions_reporting.php:2786 -#: ../../enterprise/include/functions_reporting.php:3411 -#: ../../enterprise/include/functions_reporting.php:4387 -#: ../../godmode/alerts/alert_templates.php:68 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1534 -#: ../../include/functions_html.php:2267 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1892 +#: ../../enterprise/include/functions_reporting.php:1729 +#: ../../enterprise/include/functions_reporting.php:2486 +#: ../../enterprise/include/functions_reporting.php:2804 +#: ../../enterprise/include/functions_reporting.php:3430 +#: ../../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 msgid "Friday" msgstr "金曜日" -#: ../../views/calendar/special_days_edit.php:121 -#: ../../views/calendar/special_days.php:97 -#: ../../views/calendar/special_days.php:378 +#: ../../views/calendar/special_days_edit.php:120 +#: ../../views/calendar/special_days.php:101 +#: ../../views/calendar/special_days.php:401 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:100 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1911 -#: ../../enterprise/include/functions_reporting.php:1738 -#: ../../enterprise/include/functions_reporting.php:2469 -#: ../../enterprise/include/functions_reporting.php:2787 -#: ../../enterprise/include/functions_reporting.php:3412 -#: ../../enterprise/include/functions_reporting.php:4388 -#: ../../godmode/alerts/alert_templates.php:69 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1542 -#: ../../include/functions_html.php:2268 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1900 +#: ../../enterprise/include/functions_reporting.php:1730 +#: ../../enterprise/include/functions_reporting.php:2487 +#: ../../enterprise/include/functions_reporting.php:2805 +#: ../../enterprise/include/functions_reporting.php:3431 +#: ../../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 msgid "Saturday" msgstr "土曜日" -#: ../../views/calendar/special_days_edit.php:122 -#: ../../views/calendar/special_days.php:98 -#: ../../views/calendar/special_days.php:382 +#: ../../views/calendar/special_days_edit.php:121 +#: ../../views/calendar/special_days.php:102 +#: ../../views/calendar/special_days.php:405 #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:101 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1919 -#: ../../enterprise/include/functions_reporting.php:1739 -#: ../../enterprise/include/functions_reporting.php:2470 -#: ../../enterprise/include/functions_reporting.php:2788 -#: ../../enterprise/include/functions_reporting.php:3413 -#: ../../enterprise/include/functions_reporting.php:4389 -#: ../../godmode/alerts/alert_templates.php:70 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1550 -#: ../../include/functions_html.php:2262 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1908 +#: ../../enterprise/include/functions_reporting.php:1731 +#: ../../enterprise/include/functions_reporting.php:2488 +#: ../../enterprise/include/functions_reporting.php:2806 +#: ../../enterprise/include/functions_reporting.php:3432 +#: ../../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 msgid "Sunday" msgstr "日曜日" -#: ../../views/calendar/special_days_edit.php:123 -#: ../../views/calendar/special_days.php:386 +#: ../../views/calendar/special_days_edit.php:122 +#: ../../views/calendar/special_days.php:409 msgid "Holidays" msgstr "休日" -#: ../../views/calendar/special_days_edit.php:127 -#: ../../views/calendar/special_days.php:102 +#: ../../views/calendar/special_days_edit.php:126 +#: ../../views/calendar/special_days.php:106 msgid "Same day of the week" msgstr "同一の曜日" -#: ../../views/calendar/special_days_edit.php:163 -#: ../../views/calendar/edit.php:126 -#: ../../enterprise/views/ncm/snippets/edit.php:106 -#: ../../enterprise/views/ncm/templates/edit.php:315 -#: ../../enterprise/views/ncm/firmwares/edit.php:169 -#: ../../enterprise/views/ncm/models/edit.php:103 -#: ../../enterprise/views/ncm/vendors/edit.php:104 -#: ../../enterprise/views/ipam/sites/edit.php:80 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1158 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:231 +#: ../../views/calendar/special_days_edit.php:161 +#: ../../views/calendar/edit.php:129 +#: ../../enterprise/views/ncm/snippets/edit.php:123 +#: ../../enterprise/views/ncm/templates/edit.php:328 +#: ../../enterprise/views/ncm/firmwares/edit.php:183 +#: ../../enterprise/views/ncm/models/edit.php:117 +#: ../../enterprise/views/ncm/vendors/edit.php:118 +#: ../../enterprise/views/ipam/sites/edit.php:106 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1257 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:292 #: ../../enterprise/meta/advanced/metasetup.relations.php:278 -#: ../../enterprise/meta/advanced/metasetup.password.php:181 -#: ../../enterprise/meta/advanced/metasetup.mail.php:157 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:763 -#: ../../enterprise/meta/advanced/links.php:139 +#: ../../enterprise/meta/advanced/metasetup.password.php:245 +#: ../../enterprise/meta/advanced/metasetup.mail.php:169 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:791 +#: ../../enterprise/meta/advanced/links.php:145 #: ../../enterprise/meta/advanced/collections.data.php:157 #: ../../enterprise/meta/advanced/collections.data.php:232 #: ../../enterprise/meta/advanced/collections.data.php:273 -#: ../../enterprise/meta/advanced/collections.data.php:360 -#: ../../enterprise/meta/advanced/collections.data.php:361 -#: ../../enterprise/meta/advanced/collections.editor.php:149 -#: ../../enterprise/meta/advanced/collections.editor.php:223 -#: ../../enterprise/meta/advanced/cron_main.php:469 -#: ../../enterprise/meta/advanced/metasetup.setup.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:159 -#: ../../enterprise/meta/event/custom_events.php:213 -#: ../../enterprise/meta/include/functions_autoprovision.php:590 -#: ../../enterprise/meta/include/functions_autoprovision.php:791 -#: ../../enterprise/extensions/translate_string.php:364 -#: ../../enterprise/extensions/vmware/vmware_view.php:1257 -#: ../../enterprise/extensions/vmware/vmware_view.php:1762 -#: ../../enterprise/godmode/modules/configure_local_component.php:689 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:793 -#: ../../enterprise/godmode/agentes/collection_manager.php:153 -#: ../../enterprise/godmode/agentes/collection_manager.php:154 -#: ../../enterprise/godmode/agentes/collection_manager.php:268 -#: ../../enterprise/godmode/agentes/collection_manager.php:269 -#: ../../enterprise/godmode/agentes/collections.data.php:107 -#: ../../enterprise/godmode/agentes/collections.data.php:264 -#: ../../enterprise/godmode/agentes/collections.data.php:342 -#: ../../enterprise/godmode/agentes/collections.data.php:454 -#: ../../enterprise/godmode/agentes/collections.data.php:455 -#: ../../enterprise/godmode/agentes/collections.editor.php:182 -#: ../../enterprise/godmode/agentes/collections.editor.php:254 -#: ../../enterprise/godmode/agentes/plugins_manager.php:194 -#: ../../enterprise/godmode/agentes/plugins_manager.php:251 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:257 -#: ../../enterprise/godmode/agentes/collections.php:72 -#: ../../enterprise/godmode/agentes/collections.php:73 +#: ../../enterprise/meta/advanced/collections.data.php:385 +#: ../../enterprise/meta/advanced/collections.data.php:386 +#: ../../enterprise/meta/advanced/collections.editor.php:175 +#: ../../enterprise/meta/advanced/collections.editor.php:249 +#: ../../enterprise/meta/advanced/metasetup.setup.php:651 +#: ../../enterprise/meta/advanced/metasetup.performance.php:283 +#: ../../enterprise/meta/event/custom_events.php:211 +#: ../../enterprise/meta/include/functions_autoprovision.php:640 +#: ../../enterprise/meta/include/functions_autoprovision.php:865 +#: ../../enterprise/extensions/translate_string.php:414 +#: ../../enterprise/extensions/vmware/vmware_view.php:1318 +#: ../../enterprise/godmode/modules/configure_local_component.php:690 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:479 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:845 +#: ../../enterprise/godmode/agentes/collection_manager.php:203 +#: ../../enterprise/godmode/agentes/collection_manager.php:204 +#: ../../enterprise/godmode/agentes/collection_manager.php:324 +#: ../../enterprise/godmode/agentes/collection_manager.php:325 +#: ../../enterprise/godmode/agentes/collections.data.php:125 +#: ../../enterprise/godmode/agentes/collections.data.php:302 +#: ../../enterprise/godmode/agentes/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collections.data.php:512 +#: ../../enterprise/godmode/agentes/collections.data.php:513 +#: ../../enterprise/godmode/agentes/collections.editor.php:203 +#: ../../enterprise/godmode/agentes/collections.editor.php:275 +#: ../../enterprise/godmode/agentes/plugins_manager.php:214 +#: ../../enterprise/godmode/agentes/plugins_manager.php:272 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:240 +#: ../../enterprise/godmode/agentes/collections.php:80 +#: ../../enterprise/godmode/agentes/collections.php:81 #: ../../enterprise/godmode/policies/policy_plugins.php:187 #: ../../enterprise/godmode/policies/policy_plugins.php:228 -#: ../../enterprise/godmode/policies/configure_policy.php:141 +#: ../../enterprise/godmode/policies/configure_policy.php:166 #: ../../enterprise/godmode/policies/policy_modules.php:429 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:375 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:338 -#: ../../enterprise/godmode/policies/policy_collections.php:222 -#: ../../enterprise/godmode/policies/policy_collections.php:294 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:360 +#: ../../enterprise/godmode/policies/policy_collections.php:293 +#: ../../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_tags_edit_policy.php:190 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1169 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 -#: ../../enterprise/godmode/services/services.service.php:980 -#: ../../enterprise/godmode/setup/setup_history.php:669 -#: ../../enterprise/godmode/setup/setup.php:270 -#: ../../enterprise/godmode/setup/setup.php:478 -#: ../../enterprise/godmode/setup/setup_module_library.php:62 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 +#: ../../enterprise/godmode/services/services.service.php:967 +#: ../../enterprise/godmode/setup/setup_history.php:737 +#: ../../enterprise/godmode/setup/setup.php:286 +#: ../../enterprise/godmode/setup/setup.php:494 +#: ../../enterprise/godmode/setup/setup_module_library.php:76 #: ../../enterprise/godmode/setup/setup_metaconsole.php:245 -#: ../../enterprise/godmode/setup/setup_log_collector.php:74 -#: ../../enterprise/godmode/setup/edit_skin.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:149 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:267 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:187 -#: ../../enterprise/godmode/reporting/mysql_builder.php:144 -#: ../../enterprise/godmode/reporting/mysql_builder.php:156 -#: ../../enterprise/godmode/reporting/mysql_builder.php:165 -#: ../../enterprise/godmode/reporting/mysql_builder.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:177 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 +#: ../../enterprise/godmode/setup/setup_log_collector.php:118 +#: ../../enterprise/godmode/setup/edit_skin.php:297 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:133 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:157 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:285 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:174 +#: ../../enterprise/godmode/reporting/mysql_builder.php:187 +#: ../../enterprise/godmode/reporting/mysql_builder.php:199 +#: ../../enterprise/godmode/reporting/mysql_builder.php:208 +#: ../../enterprise/godmode/reporting/mysql_builder.php:260 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:172 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:600 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1385 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1451 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1405 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1470 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 -#: ../../enterprise/godmode/servers/manage_export_form.php:136 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:99 +#: ../../enterprise/godmode/servers/manage_export_form.php:186 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:107 #: ../../enterprise/include/ajax/servers.ajax.php:102 -#: ../../enterprise/include/ajax/servers.ajax.php:303 +#: ../../enterprise/include/ajax/servers.ajax.php:332 #: ../../enterprise/include/functions_HA_cluster.php:495 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1672 -#: ../../enterprise/include/class/DatabaseHA.class.php:890 -#: ../../enterprise/include/class/AgentRepository.class.php:971 -#: ../../enterprise/include/class/Omnishell.class.php:648 -#: ../../enterprise/include/class/LogSource.class.php:849 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1708 +#: ../../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/SAPView.class.php:325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2286 -#: ../../enterprise/operation/agentes/policy_view.php:208 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 #: ../../enterprise/operation/agentes/policy_view.php:209 -#: ../../enterprise/operation/agentes/collection_view.php:117 -#: ../../enterprise/operation/agentes/collection_view.php:118 -#: ../../enterprise/tools/ipam/ipam_network.php:696 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:145 -#: ../../enterprise/tools/ipam/ipam_massive.php:112 -#: ../../enterprise/tools/ipam/ipam_editor.php:359 -#: ../../extensions/files_repo/files_repo_form.php:99 -#: ../../godmode/modules/manage_nc_groups_form.php:90 +#: ../../enterprise/operation/agentes/policy_view.php:210 +#: ../../enterprise/operation/agentes/collection_view.php:126 +#: ../../enterprise/operation/agentes/collection_view.php:127 +#: ../../enterprise/tools/ipam/ipam_network.php:720 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:159 +#: ../../enterprise/tools/ipam/ipam_massive.php:151 +#: ../../enterprise/tools/ipam/ipam_editor.php:416 +#: ../../extensions/files_repo/files_repo_form.php:102 +#: ../../godmode/modules/manage_nc_groups_form.php:95 #: ../../godmode/modules/manage_network_templates_form.php:178 -#: ../../godmode/modules/manage_inventory_modules.php:319 -#: ../../godmode/modules/manage_network_components_form.php:375 -#: ../../godmode/modules/manage_inventory_modules_form.php:169 -#: ../../godmode/groups/configure_group.php:276 -#: ../../godmode/groups/configure_modu_group.php:83 -#: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/users/configure_profile.php:409 -#: ../../godmode/users/configure_user.php:1730 -#: ../../godmode/agentes/agent_template.php:261 -#: ../../godmode/agentes/status_monitor_custom_fields.php:206 -#: ../../godmode/agentes/module_manager_editor.php:772 -#: ../../godmode/agentes/inventory_manager.php:183 -#: ../../godmode/agentes/inventory_manager.php:254 -#: ../../godmode/agentes/agent_conf_gis.php:135 -#: ../../godmode/agentes/planned_downtime.list.php:808 -#: ../../godmode/agentes/planned_downtime.list.php:853 -#: ../../godmode/agentes/planned_downtime.editor.php:1160 -#: ../../godmode/agentes/agent_manager.php:1001 -#: ../../godmode/agentes/configure_field.php:152 -#: ../../godmode/netflow/nf_edit_form.php:269 -#: ../../godmode/snmpconsole/snmp_alert.php:1140 -#: ../../godmode/snmpconsole/snmp_alert.php:1364 -#: ../../godmode/snmpconsole/snmp_filters.php:261 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/alerts/configure_alert_command.php:384 -#: ../../godmode/alerts/alert_list.list.php:171 -#: ../../godmode/alerts/alert_list.list.php:178 -#: ../../godmode/alerts/alert_list.list.php:934 -#: ../../godmode/alerts/configure_alert_action.php:387 -#: ../../godmode/setup/news.php:233 ../../godmode/setup/setup_ehorus.php:179 -#: ../../godmode/setup/setup_websocket_engine.php:89 +#: ../../godmode/modules/manage_inventory_modules.php:338 +#: ../../godmode/modules/manage_network_components_form.php:373 +#: ../../godmode/modules/manage_inventory_modules_form.php:245 +#: ../../godmode/groups/configure_group.php:268 +#: ../../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/agentes/module_manager_editor.php:795 +#: ../../godmode/agentes/inventory_manager.php:184 +#: ../../godmode/agentes/inventory_manager.php:266 +#: ../../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/configure_field.php:199 +#: ../../godmode/netflow/nf_edit_form.php:334 +#: ../../godmode/snmpconsole/snmp_alert.php:1700 +#: ../../godmode/snmpconsole/snmp_alert.php:2002 +#: ../../godmode/snmpconsole/snmp_filters.php:264 +#: ../../godmode/snmpconsole/snmp_filters.php:326 +#: ../../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/configure_alert_action.php:424 +#: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 +#: ../../godmode/setup/setup_sflow.php:95 +#: ../../godmode/setup/setup_websocket_engine.php:93 #: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 -#: ../../godmode/setup/setup_auth.php:485 -#: ../../godmode/setup/setup_integria.php:632 ../../godmode/setup/links.php:129 +#: ../../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:81 -#: ../../godmode/setup/setup_visuals.php:1604 -#: ../../godmode/setup/setup_general.php:719 -#: ../../godmode/setup/performance.php:741 -#: ../../godmode/reporting/visual_console_builder.data.php:232 -#: ../../godmode/reporting/create_container.php:330 -#: ../../godmode/reporting/visual_console_builder.elements.php:761 +#: ../../godmode/setup/setup_netflow.php:95 +#: ../../godmode/setup/setup_visuals.php:2130 +#: ../../godmode/setup/setup_general.php:841 +#: ../../godmode/setup/performance.php:880 +#: ../../godmode/reporting/visual_console_builder.data.php:313 +#: ../../godmode/reporting/create_container.php:365 +#: ../../godmode/reporting/visual_console_builder.elements.php:805 #: ../../godmode/reporting/reporting_builder.main.php:56 -#: ../../godmode/reporting/graph_builder.main.php:294 -#: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/event_edit_filter.php:778 -#: ../../godmode/events/custom_events.php:188 -#: ../../godmode/servers/modificar_server.php:100 -#: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:577 -#: ../../godmode/tag/edit_tag.php:272 -#: ../../godmode/category/edit_category.php:195 -#: ../../include/functions_visual_map_editor.php:880 +#: ../../godmode/reporting/graph_builder.main.php:298 +#: ../../godmode/events/event_responses.editor.php:332 +#: ../../godmode/events/event_edit_filter.php:954 +#: ../../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/category/edit_category.php:196 +#: ../../include/functions_visual_map_editor.php:878 #: ../../include/ajax/alert_list.ajax.php:564 -#: ../../include/class/ConfigPEN.class.php:697 -#: ../../include/class/ConfigPEN.class.php:698 -#: ../../include/class/ManageNetScanScripts.class.php:765 -#: ../../include/class/CredentialStore.class.php:1673 -#: ../../include/class/ModuleTemplates.class.php:1013 -#: ../../include/class/ExternalTools.class.php:392 -#: ../../include/functions_events.php:3371 -#: ../../include/functions_events.php:3450 -#: ../../operation/users/user_edit.php:876 +#: ../../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/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 -#: ../../operation/network/network_report.php:132 -#: ../../operation/incidents/configure_integriaims_incident.php:378 -#: ../../operation/reporting/reporting_viewer.php:311 +#: ../../operation/incidents/configure_integriaims_incident.php:415 +#: ../../operation/reporting/reporting_viewer.php:284 msgid "Update" msgstr "更新" -#: ../../views/calendar/special_days_edit.php:207 -#: ../../views/calendar/special_days.php:407 -#: ../../views/calendar/special_days.php:506 ../../views/dashboard/header.php:69 -#: ../../views/dashboard/header.php:103 ../../views/dashboard/list.php:225 -#: ../../enterprise/views/ncm/agent/details.php:690 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1157 -#: ../../enterprise/meta/event/custom_events.php:250 -#: ../../enterprise/godmode/services/services.service.php:1038 -#: ../../enterprise/godmode/services/services.elements.php:887 -#: ../../enterprise/godmode/services/services.elements.php:898 -#: ../../enterprise/godmode/setup/setup.php:543 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 -#: ../../enterprise/include/functions_HA_cluster.php:492 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1567 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1669 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1721 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1753 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 -#: ../../enterprise/include/class/AgentRepository.class.php:870 -#: ../../enterprise/include/class/AgentRepository.class.php:968 -#: ../../enterprise/include/class/LogSource.class.php:845 -#: ../../enterprise/include/class/LogSource.class.php:898 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3053 -#: ../../enterprise/include/class/ManageBackups.class.php:446 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1298 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1322 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:808 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:831 -#: ../../update_manager_client/views/register.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:242 -#: ../../godmode/snmpconsole/snmp_alert.php:1547 -#: ../../godmode/snmpconsole/snmp_alert.php:1562 -#: ../../godmode/massive/massive_operations.php:376 -#: ../../godmode/setup/snmp_wizard.php:100 -#: ../../godmode/events/custom_events.php:224 -#: ../../include/functions_visual_map_editor.php:880 -#: ../../include/functions_visual_map_editor.php:884 -#: ../../include/functions_register.php:179 -#: ../../include/class/ConfigPEN.class.php:669 -#: ../../include/class/ConfigPEN.class.php:693 -#: ../../include/class/SatelliteAgent.class.php:1127 -#: ../../include/class/SatelliteAgent.class.php:1172 -#: ../../include/class/SatelliteAgent.class.php:1220 -#: ../../include/class/SatelliteAgent.class.php:1282 -#: ../../include/class/TreeGroupEdition.class.php:165 -#: ../../include/class/NetworkMap.class.php:2940 -#: ../../include/class/CredentialStore.class.php:1669 -#: ../../include/class/CredentialStore.class.php:1721 -#: ../../include/class/ModuleTemplates.class.php:1383 -#: ../../include/class/WelcomeWindow.class.php:174 -#: ../../include/class/SatelliteCollection.class.php:550 -#: ../../include/class/SatelliteCollection.class.php:593 -#: ../../include/class/AgentWizard.class.php:6216 -#: ../../operation/agentes/pandora_networkmap.editor.php:634 -#: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:549 -#: ../../operation/snmpconsole/snmp_browser.php:629 -#: ../../operation/snmpconsole/snmp_browser.php:644 ../../general/header.php:827 -msgid "Cancel" -msgstr "キャンセル" - -#: ../../views/calendar/special_days_edit.php:211 -#: ../../views/calendar/special_days.php:411 -#: ../../views/calendar/special_days.php:510 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4351 -#: ../../godmode/agentes/planned_downtime.list.php:742 -#: ../../godmode/alerts/configure_alert_template.php:1550 -#: ../../include/class/AgentWizard.class.php:6168 +#: ../../views/calendar/special_days_edit.php:213 +#: ../../views/calendar/special_days.php:434 +#: ../../views/calendar/special_days.php:534 +#: ../../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 msgid "Loading, this operation might take several minutes..." msgstr "読み込み中、この操作は数分かかります..." -#: ../../views/calendar/edit.php:40 -msgid "Calendars Edit" -msgstr "カレンダー編集" - -#: ../../views/calendar/special_days.php:41 -#: ../../include/class/CalendarManager.class.php:720 -msgid "Special days" -msgstr "特別日" - -#: ../../views/calendar/special_days.php:81 +#: ../../views/calendar/special_days.php:84 msgid "iCalendar(.ics) file" msgstr "iCalendar(.ics) ファイル" -#: ../../views/calendar/special_days.php:122 +#: ../../views/calendar/special_days.php:128 msgid "Overwrite" msgstr "上書き" -#: ../../views/calendar/special_days.php:123 +#: ../../views/calendar/special_days.php:129 msgid "Check this box, if you want to overwrite existing same days." msgstr "既存の同一日の設定を上書きしたい場合は、ここをチェックします。" -#: ../../views/calendar/special_days.php:138 -#: ../../enterprise/include/functions_policies.php:4480 -#: ../../enterprise/tools/ipam/ipam_network.php:143 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:746 -#: ../../enterprise/tools/ipam/ipam_list.php:77 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:420 -#: ../../extensions/extension_uploader.php:92 -#: ../../extensions/resource_registration.php:1137 -#: ../../godmode/servers/plugin_registration.php:113 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:218 +#: ../../views/calendar/special_days.php:145 +#: ../../views/calendar/special_days.php:172 +#: ../../views/calendar/special_days.php:173 +#: ../../enterprise/include/functions_policies.php:4457 +#: ../../enterprise/tools/ipam/ipam_network.php:134 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:914 +#: ../../enterprise/tools/ipam/ipam_list.php:207 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:535 +#: ../../extensions/extension_uploader.php:134 +#: ../../extensions/resource_registration.php:1145 +#: ../../godmode/servers/plugin_registration.php:123 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:234 msgid "Upload" msgstr "アップロード" -#: ../../views/calendar/special_days.php:172 +#: ../../views/calendar/special_days.php:195 msgid "Display range: " msgstr "表示範囲: " -#: ../../views/calendar/special_days.php:174 -#: ../../views/calendar/special_days.php:186 -#: ../../enterprise/meta/advanced/metasetup.visual.php:513 -#: ../../enterprise/meta/advanced/metasetup.visual.php:547 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1070 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:487 -#: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:447 +#: ../../views/calendar/special_days.php:197 +#: ../../views/calendar/special_days.php:209 +#: ../../enterprise/meta/advanced/metasetup.visual.php:538 +#: ../../enterprise/meta/advanced/metasetup.visual.php:731 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1173 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:486 +#: ../../enterprise/godmode/policies/policy_alerts.php:409 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:485 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:108 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:113 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:123 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:135 -#: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../godmode/users/configure_user.php:1145 -#: ../../godmode/users/configure_user.php:1348 -#: ../../godmode/agentes/module_manager_editor_common.php:650 -#: ../../godmode/massive/massive_edit_users.php:243 -#: ../../godmode/massive/massive_edit_users.php:274 +#: ../../enterprise/operation/agentes/policy_view.php:333 +#: ../../godmode/users/configure_user.php:1102 +#: ../../godmode/users/user_management.php:37 +#: ../../godmode/users/user_management.php:564 +#: ../../godmode/agentes/module_manager_editor_common.php:681 +#: ../../godmode/massive/massive_edit_users.php:242 +#: ../../godmode/massive/massive_edit_users.php:273 #: ../../godmode/massive/massive_edit_agents.php:1034 -#: ../../godmode/alerts/alert_list.list.php:630 -#: ../../godmode/alerts/alert_view.php:58 ../../godmode/setup/gis_step_2.php:579 -#: ../../godmode/setup/gis_step_2.php:665 -#: ../../godmode/setup/setup_visuals.php:197 -#: ../../godmode/setup/setup_visuals.php:219 -#: ../../godmode/setup/setup_visuals.php:439 -#: ../../godmode/setup/setup_visuals.php:458 -#: ../../godmode/setup/setup_visuals.php:1204 -#: ../../godmode/events/event_edit_filter.php:435 -#: ../../include/functions_ui.php:1240 -#: ../../include/class/AgentsAlerts.class.php:928 -#: ../../include/class/SnmpConsole.class.php:362 -#: ../../operation/users/user_edit.php:394 -#: ../../operation/users/user_edit.php:397 -#: ../../operation/users/user_edit.php:408 -#: ../../operation/users/user_edit.php:433 -#: ../../operation/gis_maps/gis_map.php:106 +#: ../../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 +#: ../../include/class/SnmpConsole.class.php:299 +#: ../../operation/users/user_edit.php:429 +#: ../../operation/users/user_edit.php:432 +#: ../../operation/users/user_edit.php:443 +#: ../../operation/users/user_edit.php:468 +#: ../../operation/gis_maps/gis_map.php:119 msgid "Default" msgstr "デフォルト" -#: ../../views/calendar/special_days.php:224 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 -#: ../../godmode/agentes/planned_downtime.editor.php:944 -#: ../../include/functions.php:1147 +#: ../../views/calendar/special_days.php:247 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 +#: ../../godmode/agentes/planned_downtime.editor.php:1059 +#: ../../include/functions.php:1157 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14723 +#: ../../include/functions_reporting.php:14913 msgid "Sun" msgstr "日" -#: ../../views/calendar/special_days.php:225 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 -#: ../../godmode/agentes/planned_downtime.editor.php:938 -#: ../../include/functions.php:1123 +#: ../../views/calendar/special_days.php:248 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:420 +#: ../../godmode/agentes/planned_downtime.editor.php:1053 +#: ../../include/functions.php:1133 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14693 +#: ../../include/functions_reporting.php:14883 msgid "Mon" msgstr "月" -#: ../../views/calendar/special_days.php:226 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 -#: ../../godmode/agentes/planned_downtime.editor.php:939 -#: ../../include/functions.php:1127 +#: ../../views/calendar/special_days.php:249 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:421 +#: ../../godmode/agentes/planned_downtime.editor.php:1054 +#: ../../include/functions.php:1137 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14698 +#: ../../include/functions_reporting.php:14888 msgid "Tue" msgstr "火" -#: ../../views/calendar/special_days.php:227 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 -#: ../../godmode/agentes/planned_downtime.editor.php:940 -#: ../../include/functions.php:1131 +#: ../../views/calendar/special_days.php:250 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:422 +#: ../../godmode/agentes/planned_downtime.editor.php:1055 +#: ../../include/functions.php:1141 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14703 +#: ../../include/functions_reporting.php:14893 msgid "Wed" msgstr "水" -#: ../../views/calendar/special_days.php:228 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 -#: ../../godmode/agentes/planned_downtime.editor.php:941 -#: ../../include/functions.php:1135 +#: ../../views/calendar/special_days.php:251 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:423 +#: ../../godmode/agentes/planned_downtime.editor.php:1056 +#: ../../include/functions.php:1145 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14708 +#: ../../include/functions_reporting.php:14898 msgid "Thu" msgstr "木" -#: ../../views/calendar/special_days.php:229 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 -#: ../../godmode/agentes/planned_downtime.editor.php:942 -#: ../../include/functions.php:1139 +#: ../../views/calendar/special_days.php:252 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:424 +#: ../../godmode/agentes/planned_downtime.editor.php:1057 +#: ../../include/functions.php:1149 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14713 +#: ../../include/functions_reporting.php:14903 msgid "Fri" msgstr "金" -#: ../../views/calendar/special_days.php:230 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 -#: ../../godmode/agentes/planned_downtime.editor.php:943 -#: ../../include/functions.php:1143 +#: ../../views/calendar/special_days.php:253 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 +#: ../../godmode/agentes/planned_downtime.editor.php:1058 +#: ../../include/functions.php:1153 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14718 +#: ../../include/functions_reporting.php:14908 msgid "Sat" msgstr "土" -#: ../../views/calendar/special_days.php:245 -#: ../../enterprise/include/functions_reporting.php:1776 -#: ../../enterprise/include/functions_reporting.php:2823 -#: ../../enterprise/include/functions_reporting.php:3825 +#: ../../views/calendar/special_days.php:268 +#: ../../enterprise/include/functions_reporting.php:1768 +#: ../../enterprise/include/functions_reporting.php:2841 +#: ../../enterprise/include/functions_reporting.php:3844 msgid "January" msgstr "1月" -#: ../../views/calendar/special_days.php:249 -#: ../../enterprise/include/functions_reporting.php:1780 -#: ../../enterprise/include/functions_reporting.php:2827 -#: ../../enterprise/include/functions_reporting.php:3829 +#: ../../views/calendar/special_days.php:272 +#: ../../enterprise/include/functions_reporting.php:1772 +#: ../../enterprise/include/functions_reporting.php:2845 +#: ../../enterprise/include/functions_reporting.php:3848 msgid "February" msgstr "2月" -#: ../../views/calendar/special_days.php:253 -#: ../../enterprise/include/functions_reporting.php:1784 -#: ../../enterprise/include/functions_reporting.php:2831 -#: ../../enterprise/include/functions_reporting.php:3833 +#: ../../views/calendar/special_days.php:276 +#: ../../enterprise/include/functions_reporting.php:1776 +#: ../../enterprise/include/functions_reporting.php:2849 +#: ../../enterprise/include/functions_reporting.php:3852 msgid "March" msgstr "3月" -#: ../../views/calendar/special_days.php:257 -#: ../../enterprise/include/functions_reporting.php:1788 -#: ../../enterprise/include/functions_reporting.php:2835 -#: ../../enterprise/include/functions_reporting.php:3837 +#: ../../views/calendar/special_days.php:280 +#: ../../enterprise/include/functions_reporting.php:1780 +#: ../../enterprise/include/functions_reporting.php:2853 +#: ../../enterprise/include/functions_reporting.php:3856 msgid "April" msgstr "4月" -#: ../../views/calendar/special_days.php:261 -#: ../../enterprise/include/functions_reporting.php:1792 -#: ../../enterprise/include/functions_reporting.php:2839 -#: ../../enterprise/include/functions_reporting.php:3841 +#: ../../views/calendar/special_days.php:284 +#: ../../enterprise/include/functions_reporting.php:1784 +#: ../../enterprise/include/functions_reporting.php:2857 +#: ../../enterprise/include/functions_reporting.php:3860 msgid "May" msgstr "5月" -#: ../../views/calendar/special_days.php:265 -#: ../../enterprise/include/functions_reporting.php:1796 -#: ../../enterprise/include/functions_reporting.php:2843 -#: ../../enterprise/include/functions_reporting.php:3845 +#: ../../views/calendar/special_days.php:288 +#: ../../enterprise/include/functions_reporting.php:1788 +#: ../../enterprise/include/functions_reporting.php:2861 +#: ../../enterprise/include/functions_reporting.php:3864 msgid "June" msgstr "6月" -#: ../../views/calendar/special_days.php:269 -#: ../../enterprise/include/functions_reporting.php:1800 -#: ../../enterprise/include/functions_reporting.php:2847 -#: ../../enterprise/include/functions_reporting.php:3849 +#: ../../views/calendar/special_days.php:292 +#: ../../enterprise/include/functions_reporting.php:1792 +#: ../../enterprise/include/functions_reporting.php:2865 +#: ../../enterprise/include/functions_reporting.php:3868 msgid "July" msgstr "7月" -#: ../../views/calendar/special_days.php:273 -#: ../../enterprise/include/functions_reporting.php:1804 -#: ../../enterprise/include/functions_reporting.php:2851 -#: ../../enterprise/include/functions_reporting.php:3853 +#: ../../views/calendar/special_days.php:296 +#: ../../enterprise/include/functions_reporting.php:1796 +#: ../../enterprise/include/functions_reporting.php:2869 +#: ../../enterprise/include/functions_reporting.php:3872 msgid "August" msgstr "8月" -#: ../../views/calendar/special_days.php:277 -#: ../../enterprise/include/functions_reporting.php:1808 -#: ../../enterprise/include/functions_reporting.php:2855 -#: ../../enterprise/include/functions_reporting.php:3857 +#: ../../views/calendar/special_days.php:300 +#: ../../enterprise/include/functions_reporting.php:1800 +#: ../../enterprise/include/functions_reporting.php:2873 +#: ../../enterprise/include/functions_reporting.php:3876 msgid "September" msgstr "9月" -#: ../../views/calendar/special_days.php:281 -#: ../../enterprise/include/functions_reporting.php:1812 -#: ../../enterprise/include/functions_reporting.php:2859 -#: ../../enterprise/include/functions_reporting.php:3861 +#: ../../views/calendar/special_days.php:304 +#: ../../enterprise/include/functions_reporting.php:1804 +#: ../../enterprise/include/functions_reporting.php:2877 +#: ../../enterprise/include/functions_reporting.php:3880 msgid "October" msgstr "10月" -#: ../../views/calendar/special_days.php:285 -#: ../../enterprise/include/functions_reporting.php:1816 -#: ../../enterprise/include/functions_reporting.php:2863 -#: ../../enterprise/include/functions_reporting.php:3865 +#: ../../views/calendar/special_days.php:308 +#: ../../enterprise/include/functions_reporting.php:1808 +#: ../../enterprise/include/functions_reporting.php:2881 +#: ../../enterprise/include/functions_reporting.php:3884 msgid "November" msgstr "11月" -#: ../../views/calendar/special_days.php:289 -#: ../../enterprise/include/functions_reporting.php:1821 -#: ../../enterprise/include/functions_reporting.php:2868 -#: ../../enterprise/include/functions_reporting.php:3870 +#: ../../views/calendar/special_days.php:312 +#: ../../enterprise/include/functions_reporting.php:1813 +#: ../../enterprise/include/functions_reporting.php:2886 +#: ../../enterprise/include/functions_reporting.php:3889 msgid "December" msgstr "12月" -#: ../../views/calendar/special_days.php:355 +#: ../../views/calendar/special_days.php:378 msgid "As " msgstr "As" -#: ../../views/calendar/special_days.php:421 +#: ../../views/calendar/special_days.php:444 msgid "Show templates" msgstr "テンプレート表示" -#: ../../views/calendar/special_days.php:431 -#: ../../enterprise/meta/screens/screens.visualmap.php:73 -#: ../../enterprise/meta/advanced/collections.editor.php:203 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:74 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:295 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:461 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:812 -#: ../../enterprise/meta/include/functions_autoprovision.php:506 -#: ../../enterprise/meta/include/functions_autoprovision.php:507 -#: ../../enterprise/meta/include/functions_autoprovision.php:672 -#: ../../enterprise/meta/include/functions_autoprovision.php:673 +#: ../../views/calendar/special_days.php:454 +#: ../../enterprise/meta/screens/screens.visualmap.php:64 +#: ../../enterprise/meta/advanced/collections.data.php:330 +#: ../../enterprise/meta/advanced/collections.editor.php:95 +#: ../../enterprise/meta/advanced/collections.editor.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:72 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:396 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:747 +#: ../../enterprise/meta/include/functions_autoprovision.php:527 +#: ../../enterprise/meta/include/functions_autoprovision.php:528 +#: ../../enterprise/meta/include/functions_autoprovision.php:733 +#: ../../enterprise/meta/include/functions_autoprovision.php:734 #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 #: ../../enterprise/meta/include/functions_wizard_meta.php:2723 -#: ../../enterprise/godmode/agentes/collections.editor.php:234 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:612 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:382 -#: ../../enterprise/include/functions_tasklist.php:623 -#: ../../enterprise/include/functions_tasklist.php:665 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:524 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:176 +#: ../../enterprise/godmode/agentes/collections.data.php:124 +#: ../../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/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 +#: ../../enterprise/include/functions_tasklist.php:639 +#: ../../enterprise/include/functions_tasklist.php:682 #: ../../enterprise/include/class/NetworkConfigManager.class.php:612 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:784 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:960 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1107 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1315 -#: ../../enterprise/include/class/Omnishell.class.php:1139 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2428 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3082 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1097 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:786 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:965 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1112 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1320 +#: ../../enterprise/include/class/Omnishell.class.php:1372 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2461 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3143 #: ../../enterprise/include/lib/Metaconsole/Node.php:1098 -#: ../../enterprise/operation/agentes/tag_view.php:742 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1099 +#: ../../enterprise/operation/agentes/tag_view.php:849 #: ../../enterprise/tools/ipam/ipam.php:417 #: ../../enterprise/tools/ipam/ipam_ajax.php:122 -#: ../../enterprise/tools/ipam/ipam_ajax.php:527 -#: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/groups/group_list.php:922 -#: ../../godmode/groups/group_list.php:923 -#: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:856 -#: ../../godmode/agentes/modificar_agente.php:801 -#: ../../godmode/agentes/modificar_agente.php:806 -#: ../../godmode/agentes/planned_downtime.list.php:670 -#: ../../godmode/agentes/fields_manager.php:157 +#: ../../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/users/profile_list.php:444 +#: ../../godmode/agentes/agent_template.php:306 +#: ../../godmode/agentes/modificar_agente.php:810 +#: ../../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:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2293 -#: ../../godmode/reporting/reporting_builder.php:1167 -#: ../../godmode/events/event_responses.list.php:79 -#: ../../godmode/servers/servers.build_table.php:234 -#: ../../godmode/servers/plugin.php:179 ../../godmode/servers/plugin.php:859 -#: ../../include/functions_cron.php:921 ../../include/functions_cron.php:949 -#: ../../include/ajax/module.php:1123 -#: ../../include/class/NetworkMap.class.php:3146 +#: ../../godmode/reporting/reporting_builder.list_items.php:626 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2338 +#: ../../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/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/CredentialStore.class.php:1263 +#: ../../include/class/TipsWindow.class.php:457 #: ../../include/class/CalendarManager.class.php:703 #: ../../include/lib/ClusterViewer/ClusterManager.php:618 -#: ../../operation/visual_console/view.php:447 -#: ../../operation/agentes/estado_agente.php:874 -#: ../../operation/agentes/estado_agente.php:876 -#: ../../operation/agentes/pandora_networkmap.php:720 -#: ../../operation/agentes/status_monitor.php:1522 -#: ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/incidents/list_integriaims_incidents.php:550 +#: ../../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/gis_maps/gis_map.php:203 +#: ../../operation/incidents/list_integriaims_incidents.php:621 #: ../../operation/search_reports.php:68 msgid "Edit" msgstr "編集" -#: ../../views/calendar/special_days.php:438 ../../views/dashboard/list.php:185 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:683 +#: ../../views/calendar/special_days.php:461 ../../views/dashboard/list.php:188 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:684 #: ../../enterprise/meta/advanced/metasetup.relations.php:584 -#: ../../enterprise/meta/advanced/links.php:173 +#: ../../enterprise/meta/advanced/links.php:186 #: ../../enterprise/meta/advanced/policymanager.queue.php:349 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1155 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 -#: ../../enterprise/godmode/modules/local_components.php:697 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 -#: ../../enterprise/godmode/policies/policy_alerts.php:518 -#: ../../enterprise/godmode/policies/policy_modules.php:1550 -#: ../../enterprise/godmode/policies/policy_modules.php:1566 -#: ../../enterprise/godmode/policies/policy_modules.php:1617 -#: ../../enterprise/godmode/policies/policy_queue.php:770 -#: ../../enterprise/godmode/policies/policy_queue.php:804 -#: ../../enterprise/godmode/policies/policy_queue.php:820 -#: ../../enterprise/godmode/policies/policies.php:564 -#: ../../enterprise/godmode/policies/policies.php:585 -#: ../../enterprise/godmode/policies/policies.php:620 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:524 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 -#: ../../enterprise/godmode/policies/policy_agents.php:401 -#: ../../enterprise/godmode/policies/policy_agents.php:760 -#: ../../enterprise/godmode/policies/policy_agents.php:1076 -#: ../../enterprise/godmode/policies/policy_agents.php:1191 -#: ../../enterprise/godmode/policies/policy_agents.php:1340 -#: ../../enterprise/godmode/policies/policy_agents.php:1555 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 -#: ../../enterprise/godmode/setup/setup_skins.php:147 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:837 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:638 -#: ../../enterprise/godmode/reporting/graph_template_list.php:234 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:447 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:619 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:638 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 -#: ../../enterprise/godmode/reporting/mysql_builder.php:105 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:1166 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 +#: ../../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/policies.php:633 +#: ../../enterprise/godmode/policies/policies.php:652 +#: ../../enterprise/godmode/policies/policies.php:687 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:563 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:297 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:310 +#: ../../enterprise/godmode/policies/policy_agents.php:750 +#: ../../enterprise/godmode/policies/policy_agents.php:766 +#: ../../enterprise/godmode/policies/policy_agents.php:881 +#: ../../enterprise/godmode/policies/policy_agents.php:896 +#: ../../enterprise/godmode/policies/policy_agents.php:1165 +#: ../../enterprise/godmode/policies/policy_agents.php:1276 +#: ../../enterprise/godmode/policies/policy_agents.php:1504 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:433 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:442 +#: ../../enterprise/godmode/setup/setup_skins.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:930 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:743 +#: ../../enterprise/godmode/reporting/graph_template_list.php:246 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:545 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:587 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:606 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:322 +#: ../../enterprise/godmode/reporting/mysql_builder.php:104 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 -#: ../../enterprise/include/functions_tasklist.php:638 -#: ../../enterprise/include/functions_tasklist.php:673 -#: ../../enterprise/include/ajax/ipam.ajax.php:755 -#: ../../enterprise/include/ajax/ipam.ajax.php:833 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1558 -#: ../../enterprise/include/class/AgentRepository.class.php:861 -#: ../../enterprise/include/class/Omnishell.class.php:504 -#: ../../enterprise/include/class/Omnishell.class.php:1157 -#: ../../enterprise/include/class/LogSource.class.php:892 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3090 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3402 -#: ../../enterprise/include/class/ManageBackups.class.php:443 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 +#: ../../enterprise/include/functions_tasklist.php:654 +#: ../../enterprise/include/functions_tasklist.php:690 +#: ../../enterprise/include/ajax/ipam.ajax.php:781 +#: ../../enterprise/include/ajax/ipam.ajax.php:859 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1594 +#: ../../enterprise/include/class/AgentRepository.class.php:894 +#: ../../enterprise/include/class/Omnishell.class.php:513 +#: ../../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/AlertCorrelationManager.class.php:3151 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3471 +#: ../../enterprise/include/class/ManageBackups.class.php:452 #: ../../enterprise/include/functions_services.php:2026 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1183 -#: ../../enterprise/operation/services/services.list.php:651 -#: ../../enterprise/operation/services/services.list.php:745 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1209 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1347 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:287 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:726 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:856 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1184 +#: ../../enterprise/operation/services/services.list.php:689 +#: ../../enterprise/operation/services/services.list.php:787 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1346 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1485 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:360 +#: ../../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 -#: ../../extensions/files_repo/files_repo_list.php:146 -#: ../../godmode/modules/manage_nc_groups.php:275 -#: ../../godmode/modules/manage_inventory_modules.php:322 -#: ../../godmode/modules/manage_network_components.php:867 +#: ../../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_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:931 -#: ../../godmode/groups/modu_group_list.php:273 -#: ../../godmode/groups/modu_group_list.php:276 -#: ../../godmode/users/profile_list.php:439 -#: ../../godmode/users/configure_user.php:1940 -#: ../../godmode/users/configure_user.php:2237 -#: ../../godmode/agentes/agent_template.php:260 -#: ../../godmode/agentes/inventory_manager.php:249 -#: ../../godmode/agentes/modificar_agente.php:924 -#: ../../godmode/agentes/planned_downtime.editor.php:1301 -#: ../../godmode/agentes/fields_manager.php:158 -#: ../../godmode/agentes/agent_manager.php:237 -#: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/module_manager.php:1226 -#: ../../godmode/agentes/module_manager.php:1240 -#: ../../godmode/agentes/module_manager.php:1265 -#: ../../godmode/agentes/module_manager.php:1288 -#: ../../godmode/agentes/module_manager.php:1313 +#: ../../godmode/groups/group_list.php:960 +#: ../../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/agentes/agent_template.php:298 +#: ../../godmode/agentes/inventory_manager.php:261 +#: ../../godmode/agentes/modificar_agente.php:941 +#: ../../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/netflow/nf_item_list.php:262 -#: ../../godmode/netflow/nf_edit.php:195 -#: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1646 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/massive/massive_operations.php:374 +#: ../../godmode/netflow/nf_edit.php:202 +#: ../../godmode/snmpconsole/snmp_alert.php:1945 +#: ../../godmode/snmpconsole/snmp_alert.php:2325 +#: ../../godmode/snmpconsole/snmp_filters.php:326 +#: ../../godmode/snmpconsole/snmp_filters.php:337 +#: ../../godmode/massive/massive_operations.php:414 #: ../../godmode/massive/massive_standby_alerts.php:255 #: ../../godmode/massive/massive_edit_plugins.php:576 #: ../../godmode/massive/massive_enable_disable_alerts.php:227 -#: ../../godmode/alerts/alert_actions.php:424 -#: ../../godmode/alerts/alert_list.list.php:1130 -#: ../../godmode/alerts/alert_commands.php:804 -#: ../../godmode/alerts/alert_commands.php:807 -#: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 -#: ../../godmode/setup/links.php:160 -#: ../../godmode/reporting/create_container.php:682 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 -#: ../../godmode/reporting/graphs.php:362 -#: ../../godmode/reporting/visual_console_builder.elements.php:497 -#: ../../godmode/reporting/reporting_builder.php:1177 -#: ../../godmode/reporting/reporting_builder.php:1199 -#: ../../godmode/events/event_filter.php:188 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:666 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:973 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:999 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1012 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1023 -#: ../../godmode/servers/plugin.php:864 ../../godmode/tag/tag.php:395 -#: ../../godmode/category/category.php:192 -#: ../../godmode/category/category.php:211 -#: ../../include/functions_profile.php:312 -#: ../../include/class/ConfigPEN.class.php:666 -#: ../../include/class/SatelliteAgent.class.php:1166 -#: ../../include/class/SatelliteAgent.class.php:1214 -#: ../../include/class/SatelliteAgent.class.php:1276 +#: ../../godmode/alerts/alert_actions.php:449 +#: ../../godmode/alerts/alert_list.list.php:1256 +#: ../../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/reporting/create_container.php:801 +#: ../../godmode/reporting/map_builder.php:544 +#: ../../godmode/reporting/map_builder.php:555 +#: ../../godmode/reporting/graphs.php:414 +#: ../../godmode/reporting/visual_console_builder.elements.php:540 +#: ../../godmode/reporting/reporting_builder.php:1176 +#: ../../godmode/reporting/reporting_builder.php:1201 +#: ../../godmode/events/event_filter.php:196 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:669 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:981 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:992 +#: ../../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/category/category.php:186 +#: ../../godmode/category/category.php:222 +#: ../../include/functions_profile.php:319 +#: ../../include/class/ConfigPEN.class.php:672 +#: ../../include/class/SatelliteAgent.class.php:1145 +#: ../../include/class/SatelliteAgent.class.php:1193 +#: ../../include/class/SatelliteAgent.class.php:1255 #: ../../include/class/TreeGroupEdition.class.php:166 -#: ../../include/class/CredentialStore.class.php:1715 -#: ../../include/class/SnmpConsole.class.php:499 -#: ../../include/class/SnmpConsole.class.php:1274 -#: ../../include/class/SnmpConsole.class.php:1301 -#: ../../include/class/ModuleTemplates.class.php:919 -#: ../../include/class/ModuleTemplates.class.php:934 +#: ../../include/class/CredentialStore.class.php:1693 +#: ../../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/ModuleTemplates.class.php:874 +#: ../../include/class/ModuleTemplates.class.php:889 #: ../../include/class/WelcomeWindow.class.php:171 -#: ../../include/class/SatelliteCollection.class.php:545 -#: ../../include/class/SatelliteCollection.class.php:588 -#: ../../include/functions_filemanager.php:715 +#: ../../include/class/SatelliteCollection.class.php:531 +#: ../../include/class/SatelliteCollection.class.php:574 +#: ../../include/functions_filemanager.php:754 #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3505 -#: ../../operation/users/user_edit.php:1267 -#: ../../operation/agentes/pandora_networkmap.editor.php:631 -#: ../../operation/agentes/pandora_networkmap.php:811 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:641 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 -#: ../../operation/incidents/list_integriaims_incidents.php:554 +#: ../../include/functions_events.php:3655 +#: ../../operation/users/user_edit.php:1345 +#: ../../operation/agentes/pandora_networkmap.editor.php:743 +#: ../../operation/messages/message_list.php:300 +#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:213 +#: ../../operation/incidents/list_integriaims_incidents.php:625 msgid "Are you sure?" msgstr "よろしいですか?" -#: ../../views/calendar/special_days.php:442 -#: ../../enterprise/godmode/agentes/collection_manager.php:210 -#: ../../enterprise/godmode/policies/policy_collections.php:173 +#: ../../views/calendar/special_days.php:465 +#: ../../enterprise/godmode/agentes/collection_manager.php:265 +#: ../../enterprise/godmode/policies/policy_collections.php:244 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:177 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:161 -#: ../../enterprise/include/functions_ui.php:120 -#: ../../enterprise/include/functions_ui.php:168 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 -#: ../../godmode/alerts/configure_alert_template.php:1548 -#: ../../godmode/events/event_edit_filter.php:593 -#: ../../godmode/events/event_edit_filter.php:646 -#: ../../include/functions_ui.php:6936 ../../include/functions_ui.php:6984 -#: ../../operation/events/events.php:1246 ../../operation/events/events.php:1318 +#: ../../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 +#: ../../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 msgid "Remove" msgstr "削除" -#: ../../views/calendar/special_days.php:507 +#: ../../views/calendar/special_days.php:531 msgid "Load calendar" msgstr "カレンダー読み込み" #: ../../views/cluster/list.php:31 +msgid "Cluster view" +msgstr "クラスタ表示" + +#: ../../views/cluster/list.php:40 #: ../../enterprise/meta/general/main_header.php:91 -#: ../../enterprise/meta/general/logon_ok.php:75 -#: ../../enterprise/meta/general/main_menu.php:189 -#: ../../enterprise/extensions/vmware/vmware_view.php:1388 +#: ../../enterprise/meta/general/logon_ok.php:82 +#: ../../enterprise/meta/general/main_menu.php:191 +#: ../../enterprise/meta/general/main_menu.php:192 +#: ../../enterprise/extensions/vmware/vmware_view.php:1454 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:51 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:53 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 +#: ../../enterprise/godmode/services/services.massive.meta.php:40 +#: ../../enterprise/godmode/services/services.massive.elements.php:45 +#: ../../enterprise/godmode/services/services.massive.elements.php:54 #: ../../enterprise/godmode/reporting/aws_view.php:115 #: ../../enterprise/godmode/reporting/aws_view.php:148 #: ../../enterprise/include/ajax/ipam.ajax.php:455 #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/services/massive/services.delete.php:42 -#: ../../enterprise/operation/services/massive/services.create.php:595 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:105 -#: ../../enterprise/operation/services/massive/service.create.elements.php:243 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:146 -#: ../../enterprise/operation/services/services.treeview_services.php:62 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/tools/ipam/ipam_editor.php:261 -#: ../../extensions/agents_modules.php:474 ../../extensions/module_groups.php:260 -#: ../../extensions/realtime_graphs.php:67 +#: ../../enterprise/operation/log/log_viewer.php:494 +#: ../../enterprise/tools/ipam/ipam_editor.php:303 +#: ../../extensions/agents_modules.php:552 ../../extensions/module_groups.php:260 +#: ../../extensions/realtime_graphs.php:67 ../../godmode/groups/tactical.php:71 +#: ../../godmode/groups/tactical.php:126 #: ../../godmode/snmpconsole/snmp_trap_generator.php:47 #: ../../godmode/snmpconsole/snmp_filters.php:55 -#: ../../include/class/AgentsAlerts.class.php:738 -#: ../../include/class/SnmpConsole.class.php:227 ../../operation/heatmap.php:137 -#: ../../operation/tree.php:183 ../../operation/agentes/alerts_status.php:199 -#: ../../operation/agentes/estado_agente.php:224 +#: ../../include/class/AgentsAlerts.class.php:751 +#: ../../include/class/SnmpConsole.class.php:217 ../../operation/heatmap.php:140 +#: ../../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:104 +#: ../../operation/agentes/status_monitor.php:336 #: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/ver_agente.php:1945 -#: ../../operation/agentes/tactical.php:79 -#: ../../operation/snmpconsole/snmp_statistics.php:98 +#: ../../operation/agentes/tactical.php:81 +#: ../../operation/network/network_usage_map.php:48 +#: ../../operation/netflow/nf_live_view.php:139 +#: ../../operation/netflow/netflow_explorer.php:55 +#: ../../operation/snmpconsole/snmp_statistics.php:100 #: ../../operation/snmpconsole/snmp_browser.php:86 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/menu.php:33 ../../operation/menu.php:164 -#: ../../operation/inventory/inventory.php:149 +#: ../../operation/menu.php:159 ../../operation/menu.php:276 +#: ../../operation/inventory/inventory.php:310 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "モニタリング" -#: ../../views/cluster/list.php:31 +#: ../../views/cluster/list.php:44 #: ../../general/first_task/HA_cluster_builder.php:42 #: ../../general/first_task/cluster_builder.php:29 #: ../../general/first_task/cluster_builder.php:51 msgid "Clusters" msgstr "クラスタ" -#: ../../views/cluster/list.php:61 -#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../views/cluster/list.php:72 +#: ../../enterprise/meta/advanced/servers.build_table.php:63 #: ../../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:1470 +#: ../../enterprise/godmode/policies/policy_modules.php:1545 #: ../../enterprise/godmode/services/services.elements.php:113 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:83 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:104 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1674 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:72 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:93 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1663 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:201 #: ../../enterprise/include/functions_reporting_csv.php:1655 #: ../../enterprise/include/functions_reporting_csv.php:1771 #: ../../enterprise/include/functions_reporting_csv.php:2011 #: ../../enterprise/include/functions_reporting_csv.php:2079 #: ../../enterprise/include/functions_services.php:1602 -#: ../../enterprise/operation/agentes/policy_view.php:396 -#: ../../enterprise/operation/agentes/tag_view.php:605 -#: ../../enterprise/operation/agentes/ver_agente.php:32 +#: ../../enterprise/operation/agentes/policy_view.php:397 +#: ../../enterprise/operation/agentes/tag_view.php:699 +#: ../../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:753 +#: ../../godmode/modules/manage_network_components.php:776 #: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/agentes/agent_template.php:237 -#: ../../godmode/agentes/modificar_agente.php:650 -#: ../../godmode/agentes/planned_downtime.list.php:659 -#: ../../godmode/agentes/planned_downtime.editor.php:856 -#: ../../godmode/agentes/module_manager_editor_common.php:288 -#: ../../godmode/agentes/module_manager_editor_common.php:401 -#: ../../godmode/agentes/module_manager_editor_common.php:1319 -#: ../../godmode/agentes/module_manager.php:201 -#: ../../godmode/agentes/module_manager.php:893 -#: ../../godmode/alerts/alert_templates.php:37 -#: ../../godmode/alerts/alert_templates.php:302 -#: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 -#: ../../godmode/setup/gis_step_2.php:236 -#: ../../godmode/setup/setup_integria.php:408 -#: ../../godmode/setup/setup_integria.php:530 -#: ../../godmode/reporting/reporting_builder.list_items.php:212 -#: ../../godmode/reporting/reporting_builder.list_items.php:249 -#: ../../godmode/reporting/reporting_builder.list_items.php:372 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1058 -#: ../../godmode/reporting/visual_console_builder.wizard.php:135 -#: ../../godmode/reporting/visual_console_builder.wizard.php:283 -#: ../../godmode/events/event_responses.editor.php:159 -#: ../../godmode/servers/servers.build_table.php:81 -#: ../../godmode/servers/modificar_server.php:72 -#: ../../godmode/servers/plugin.php:795 ../../mobile/operation/visualmaps.php:125 +#: ../../godmode/agentes/agent_template.php:275 +#: ../../godmode/agentes/modificar_agente.php:696 +#: ../../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.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/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/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/modificar_server.php:105 +#: ../../godmode/servers/plugin.php:993 ../../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:702 -#: ../../include/functions_visual_map_editor.php:720 -#: ../../include/functions_visual_map_editor.php:848 -#: ../../include/functions_reporting_html.php:1053 -#: ../../include/functions_reporting_html.php:1061 -#: ../../include/functions_reporting_html.php:1315 -#: ../../include/functions_reporting_html.php:1323 -#: ../../include/functions_reporting_html.php:2552 -#: ../../include/functions_reporting_html.php:3614 -#: ../../include/functions_reporting_html.php:5403 -#: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:990 +#: ../../include/functions_visual_map_editor.php:700 +#: ../../include/functions_visual_map_editor.php:718 +#: ../../include/functions_visual_map_editor.php:846 +#: ../../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/rest-api/models/VisualConsole/Items/Percentile.php:467 -#: ../../include/functions_reports.php:1074 ../../include/functions_html.php:5581 -#: ../../include/class/ModuleTemplates.class.php:1210 +#: ../../include/functions_reports.php:1086 ../../include/functions_html.php:5952 +#: ../../include/class/ModuleTemplates.class.php:1185 #: ../../include/class/CalendarManager.class.php:1028 #: ../../include/class/CalendarManager.class.php:1062 -#: ../../include/class/AgentWizard.class.php:1280 -#: ../../include/class/AgentWizard.class.php:4177 +#: ../../include/class/AgentWizard.class.php:1283 +#: ../../include/class/AgentWizard.class.php:4180 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:248 #: ../../include/lib/Dashboard/Widgets/service_view.php:249 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:375 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:364 #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 -#: ../../include/functions_events.php:2524 -#: ../../include/functions_events.php:4756 -#: ../../operation/agentes/estado_agente.php:757 +#: ../../include/functions_events.php:2525 +#: ../../include/functions_events.php:4958 +#: ../../operation/agentes/estado_agente.php:1043 #: ../../operation/agentes/ver_agente.php:1171 -#: ../../operation/netflow/nf_live_view.php:319 -#: ../../operation/incidents/configure_integriaims_incident.php:234 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 +#: ../../operation/netflow/nf_live_view.php:495 +#: ../../operation/incidents/configure_integriaims_incident.php:251 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:342 #: ../../operation/search_modules.php:34 +#: ../../operation/reporting/graph_viewer.php:363 msgid "Type" msgstr "種類" -#: ../../views/cluster/list.php:62 -#: ../../include/functions_reporting_html.php:5838 -#: ../../operation/agentes/pandora_networkmap.php:715 +#: ../../views/cluster/list.php:73 +#: ../../include/functions_reporting_html.php:5925 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 +#: ../../operation/agentes/pandora_networkmap.php:717 msgid "Nodes" msgstr "ノード" -#: ../../views/cluster/list.php:63 +#: ../../views/cluster/list.php:74 #: ../../enterprise/views/ncm/devices/list.php:120 -#: ../../enterprise/meta/advanced/servers.build_table.php:61 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:583 +#: ../../enterprise/meta/advanced/servers.build_table.php:62 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:707 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 #: ../../enterprise/meta/include/functions_events_meta.php:78 -#: ../../enterprise/meta/agentsearch.php:141 -#: ../../enterprise/meta/agentsearch.php:338 -#: ../../enterprise/extensions/vmware/vmware_view.php:1085 -#: ../../enterprise/godmode/agentes/collection_manager.php:112 -#: ../../enterprise/godmode/agentes/collection_manager.php:209 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/policies/policy_modules.php:1471 -#: ../../enterprise/godmode/policies/policy_queue.php:616 -#: ../../enterprise/godmode/policies/policies.php:409 -#: ../../enterprise/godmode/policies/policy_collections.php:172 -#: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../enterprise/godmode/policies/policy_agents.php:888 -#: ../../enterprise/godmode/policies/policy_agents.php:1404 +#: ../../enterprise/meta/agentsearch.php:139 +#: ../../enterprise/meta/agentsearch.php:336 +#: ../../enterprise/extensions/vmware/vmware_view.php:1105 +#: ../../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/policies.php:436 +#: ../../enterprise/godmode/policies/policy_collections.php:243 +#: ../../enterprise/godmode/policies/policy_collections.php:324 +#: ../../enterprise/godmode/policies/policy_agents.php:962 +#: ../../enterprise/godmode/policies/policy_agents.php:1347 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/servers/HA_cluster.php:175 -#: ../../enterprise/godmode/servers/list_satellite.php:38 +#: ../../enterprise/godmode/servers/list_satellite.php:55 #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/functions_reporting_csv.php:931 #: ../../enterprise/include/functions_reporting_csv.php:2043 #: ../../enterprise/include/functions_reporting_csv.php:2789 -#: ../../enterprise/include/class/ManageBackups.class.php:165 -#: ../../enterprise/include/functions_reporting.php:1859 -#: ../../enterprise/include/functions_reporting.php:2898 -#: ../../enterprise/include/functions_reporting.php:3885 -#: ../../enterprise/include/functions_reporting.php:6135 +#: ../../enterprise/include/class/Omnishell.class.php:643 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:104 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:138 +#: ../../enterprise/include/class/ManageBackups.class.php:168 +#: ../../enterprise/include/functions_reporting.php:1851 +#: ../../enterprise/include/functions_reporting.php:2916 +#: ../../enterprise/include/functions_reporting.php:3905 +#: ../../enterprise/include/functions_reporting.php:6155 #: ../../enterprise/include/functions_services.php:1613 #: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../enterprise/operation/agentes/policy_view.php:397 -#: ../../enterprise/operation/agentes/tag_view.php:607 -#: ../../enterprise/operation/agentes/tag_view.php:685 -#: ../../enterprise/operation/agentes/collection_view.php:78 -#: ../../enterprise/operation/services/services.service.php:127 -#: ../../enterprise/operation/services/services.list.php:243 -#: ../../enterprise/operation/services/services.list.php:507 -#: ../../enterprise/operation/services/services.table_services.php:165 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:412 +#: ../../enterprise/operation/agentes/policy_view.php:167 +#: ../../enterprise/operation/agentes/policy_view.php:263 +#: ../../enterprise/operation/agentes/policy_view.php:398 +#: ../../enterprise/operation/agentes/tag_view.php:701 +#: ../../enterprise/operation/agentes/tag_view.php:788 +#: ../../enterprise/operation/agentes/collection_view.php:87 +#: ../../enterprise/operation/services/services.service.php:118 +#: ../../enterprise/operation/services/services.list.php:246 +#: ../../enterprise/operation/services/services.list.php:545 +#: ../../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:148 -#: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/module_manager.php:906 +#: ../../godmode/agentes/status_monitor_custom_fields.php:146 +#: ../../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:502 +#: ../../godmode/massive/massive_edit_users.php:501 #: ../../godmode/massive/massive_edit_agents.php:926 -#: ../../godmode/alerts/alert_list.list.php:142 -#: ../../godmode/alerts/alert_list.list.php:496 -#: ../../godmode/alerts/alert_view.php:114 -#: ../../godmode/setup/setup_integria.php:426 -#: ../../godmode/setup/setup_integria.php:548 +#: ../../godmode/alerts/alert_list.list.php:174 +#: ../../godmode/alerts/alert_list.list.php:569 +#: ../../godmode/alerts/alert_view.php:120 +#: ../../godmode/setup/setup_integria.php:499 +#: ../../godmode/setup/setup_integria.php:633 #: ../../godmode/reporting/reporting_builder.item_editor.php:77 -#: ../../godmode/events/custom_events.php:101 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:602 -#: ../../godmode/servers/servers.build_table.php:80 +#: ../../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 @@ -2155,73 +2501,78 @@ msgstr "ノード" #: ../../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 -#: ../../include/functions_reporting_html.php:552 -#: ../../include/functions_reporting_html.php:1050 -#: ../../include/functions_reporting_html.php:1059 +#: ../../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:1321 -#: ../../include/functions_reporting_html.php:1589 -#: ../../include/functions_reporting_html.php:2267 -#: ../../include/functions_reporting_html.php:2546 -#: ../../include/functions_reporting_html.php:2913 -#: ../../include/functions_reporting_html.php:3568 -#: ../../include/functions_reporting_html.php:3621 -#: ../../include/functions_reporting_html.php:5216 +#: ../../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/ajax/alert_list.ajax.php:296 -#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:993 +#: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:1003 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 -#: ../../include/functions_massive_operations.php:154 -#: ../../include/class/NetworkMap.class.php:3040 -#: ../../include/class/AgentsAlerts.class.php:894 -#: ../../include/class/SnmpConsole.class.php:336 -#: ../../include/class/SnmpConsole.class.php:444 -#: ../../include/class/SnmpConsole.class.php:504 -#: ../../include/class/ExternalTools.class.php:801 +#: ../../include/functions_massive_operations.php:152 +#: ../../include/class/NetworkMap.class.php:3064 +#: ../../include/class/AgentsAlerts.class.php:913 +#: ../../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/functions_snmp_browser.php:594 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:264 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:546 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 +#: ../../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:2542 -#: ../../include/functions_events.php:4801 ../../operation/search_agents.php:56 -#: ../../operation/agentes/estado_agente.php:275 -#: ../../operation/agentes/estado_agente.php:763 -#: ../../operation/agentes/interface_view.functions.php:497 -#: ../../operation/agentes/status_monitor.php:1347 -#: ../../operation/agentes/alerts_status.functions.php:105 -#: ../../operation/messages/message_list.php:192 +#: ../../include/functions_events.php:2543 +#: ../../include/functions_events.php:5004 ../../operation/search_agents.php:56 +#: ../../operation/agentes/estado_agente.php:324 +#: ../../operation/agentes/estado_agente.php:1049 +#: ../../operation/agentes/interface_view.functions.php:516 +#: ../../operation/agentes/status_monitor.php:1566 +#: ../../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:250 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:322 -#: ../../operation/incidents/list_integriaims_incidents.php:320 +#: ../../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 msgid "Status" msgstr "状態" -#: ../../views/cluster/list.php:88 -#: ../../enterprise/views/ncm/snippets/list.php:94 -#: ../../enterprise/views/ncm/templates/list.php:100 -#: ../../enterprise/views/ncm/devices/list.php:147 +#: ../../views/cluster/list.php:99 +#: ../../enterprise/views/ncm/snippets/list.php:95 +#: ../../enterprise/views/ncm/templates/list.php:101 +#: ../../enterprise/views/ncm/devices/list.php:148 #: ../../enterprise/views/ncm/firmwares/list.php:100 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:336 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:452 -#: ../../enterprise/godmode/policies/policy_agents.php:436 -#: ../../enterprise/godmode/policies/policy_agents.php:468 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:335 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:358 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:98 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:207 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 -#: ../../enterprise/include/class/Omnishell.class.php:814 -#: ../../enterprise/include/class/Omnishell.class.php:893 -#: ../../include/ajax/events.php:787 ../../include/functions_html.php:1244 -#: ../../include/functions_html.php:1397 -#: ../../include/functions_snmp_browser.php:1486 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:333 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:439 +#: ../../enterprise/godmode/policies/policy_agents.php:520 +#: ../../enterprise/godmode/policies/policy_agents.php:551 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:371 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:399 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:342 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:87 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:105 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:200 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:713 +#: ../../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 msgid "Filter group" msgstr "フィルターグループ" -#: ../../views/cluster/list.php:123 +#: ../../views/cluster/list.php:125 msgid "New cluster" msgstr "新規クラスタ" @@ -2246,73 +2597,72 @@ msgstr "このクラスタを編集" #: ../../enterprise/meta/include/functions_wizard_meta.php:1530 #: ../../enterprise/meta/include/functions_wizard_meta.php:1623 #: ../../enterprise/meta/include/functions_wizard_meta.php:1817 -#: ../../enterprise/meta/agentsearch.php:252 -#: ../../enterprise/meta/agentsearch.php:255 -#: ../../enterprise/meta/agentsearch.php:262 -#: ../../enterprise/meta/agentsearch.php:265 +#: ../../enterprise/meta/agentsearch.php:250 +#: ../../enterprise/meta/agentsearch.php:253 +#: ../../enterprise/meta/agentsearch.php:260 +#: ../../enterprise/meta/agentsearch.php:263 #: ../../enterprise/godmode/modules/configure_local_component.php:471 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1775 -#: ../../enterprise/godmode/policies/policy_agents.php:1790 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:105 +#: ../../enterprise/godmode/policies/policy_agents.php:681 +#: ../../enterprise/godmode/policies/policy_agents.php:686 +#: ../../enterprise/godmode/policies/policy_agents.php:1755 +#: ../../enterprise/godmode/policies/policy_agents.php:1771 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 -#: ../../enterprise/godmode/setup/edit_skin.php:276 -#: ../../enterprise/include/class/VMware.app.php:889 +#: ../../enterprise/godmode/setup/edit_skin.php:288 +#: ../../enterprise/include/class/VMware.app.php:895 #: ../../enterprise/include/class/DatabaseHA.class.php:211 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2040 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3257 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2055 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3323 #: ../../enterprise/include/lib/NetworkManager.php:190 -#: ../../enterprise/include/functions_policies.php:4783 -#: ../../godmode/groups/group_list.php:913 -#: ../../godmode/agentes/modificar_agente.php:760 -#: ../../godmode/agentes/module_manager_editor_common.php:257 -#: ../../godmode/agentes/module_manager_editor_common.php:911 -#: ../../godmode/agentes/module_manager_editor_common.php:1073 +#: ../../godmode/groups/group_list.php:942 +#: ../../godmode/agentes/modificar_agente.php:779 +#: ../../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/massive/massive_edit_modules.php:765 -#: ../../godmode/alerts/alert_list.list.php:149 -#: ../../godmode/alerts/configure_alert_template.php:899 -#: ../../godmode/alerts/alert_view.php:541 ../../mobile/operation/agent.php:167 +#: ../../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 #: ../../mobile/operation/alerts.php:68 -#: ../../include/functions_visual_map_editor.php:826 -#: ../../include/functions_reporting_html.php:3580 -#: ../../include/functions_treeview.php:72 -#: ../../include/functions_treeview.php:613 +#: ../../include/functions_visual_map_editor.php:824 +#: ../../include/functions_reporting_html.php:3676 +#: ../../include/functions_agents.php:1472 +#: ../../include/functions_treeview.php:66 +#: ../../include/functions_treeview.php:602 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6888 +#: ../../include/functions_reporting.php:6992 #: ../../operation/search_agents.php:93 -#: ../../operation/agentes/estado_generalagente.php:99 -#: ../../operation/agentes/estado_generalagente.php:101 -#: ../../operation/agentes/alerts_status.functions.php:99 +#: ../../operation/agentes/estado_generalagente.php:92 +#: ../../operation/agentes/alerts_status.functions.php:101 msgid "Disabled" msgstr "無効" #: ../../views/cluster/view.php:167 ../../views/cluster/view.php:169 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 -#: ../../enterprise/godmode/services/services.service.php:779 -#: ../../enterprise/operation/services/massive/services.create.php:843 -#: ../../godmode/agentes/modificar_agente.php:774 -#: ../../godmode/agentes/planned_downtime.list.php:701 -#: ../../godmode/agentes/planned_downtime.editor.php:862 -#: ../../godmode/agentes/agent_manager.php:692 -#: ../../godmode/agentes/module_manager_editor_common.php:1070 -#: ../../godmode/agentes/module_manager.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/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/module_manager.php:765 #: ../../godmode/massive/massive_edit_agents.php:1108 -#: ../../godmode/massive/massive_edit_modules.php:1104 -#: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1141 -#: ../../include/class/Tree.class.php:907 ../../operation/search_agents.php:100 -#: ../../operation/agentes/estado_agente.php:831 -#: ../../operation/agentes/estado_generalagente.php:110 -#: ../../operation/agentes/estado_generalagente.php:120 +#: ../../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 +#: ../../operation/agentes/estado_generalagente.php:94 msgid "Quiet" msgstr "静観" #: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 -#: ../../godmode/agentes/modificar_agente.php:782 #: ../../operation/search_agents.php:111 -#: ../../operation/agentes/estado_agente.php:839 -#: ../../operation/agentes/estado_generalagente.php:131 -#: ../../operation/agentes/estado_generalagente.php:139 +#: ../../operation/agentes/estado_agente.php:1153 msgid "Agent in scheduled downtime" msgstr "計画停止内エージェント" @@ -2320,150 +2670,156 @@ msgstr "計画停止内エージェント" msgid "Force cluster status calculation" msgstr "クラスタの状態計算を強制する" -#: ../../views/cluster/view.php:252 ../../enterprise/meta/agentsearch.php:137 +#: ../../views/cluster/view.php:252 ../../enterprise/meta/agentsearch.php:135 #: ../../enterprise/godmode/modules/configure_local_component.php:179 -#: ../../enterprise/godmode/modules/local_components.php:564 -#: ../../enterprise/godmode/modules/local_components.php:589 -#: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 +#: ../../enterprise/godmode/modules/local_components.php:582 +#: ../../enterprise/godmode/modules/local_components.php:645 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:294 #: ../../enterprise/include/functions_reporting_csv.php:725 -#: ../../enterprise/include/class/DeploymentCenter.class.php:756 -#: ../../enterprise/include/class/DeploymentCenter.class.php:817 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1289 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/DeploymentCenter.class.php:665 +#: ../../enterprise/include/class/DeploymentCenter.class.php:727 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1317 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1429 #: ../../enterprise/include/class/AgentRepository.class.php:356 -#: ../../enterprise/include/class/AgentRepository.class.php:685 -#: ../../enterprise/include/class/AgentRepository.class.php:731 -#: ../../enterprise/operation/agentes/tag_view.php:602 -#: ../../enterprise/tools/ipam/ipam_network.php:399 -#: ../../godmode/modules/manage_inventory_modules.php:280 -#: ../../godmode/modules/manage_inventory_modules_form.php:107 -#: ../../godmode/agentes/modificar_agente.php:649 -#: ../../godmode/agentes/planned_downtime.editor.php:1208 -#: ../../godmode/agentes/agent_manager.php:401 +#: ../../enterprise/include/class/AgentRepository.class.php:712 +#: ../../enterprise/include/class/AgentRepository.class.php:759 +#: ../../enterprise/operation/agentes/tag_view.php:696 +#: ../../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/planned_downtime.editor.php:1358 +#: ../../godmode/agentes/agent_manager.php:523 #: ../../godmode/massive/massive_edit_agents.php:733 #: ../../godmode/reporting/reporting_builder.item_editor.php:71 #: ../../mobile/operation/agents.php:94 ../../mobile/operation/agents.php:404 -#: ../../include/functions_reporting_html.php:1565 -#: ../../include/functions_reporting_html.php:3565 -#: ../../include/ajax/heatmap.ajax.php:331 -#: ../../include/class/Diagnostics.class.php:749 +#: ../../include/functions_reporting_html.php:1600 +#: ../../include/functions_reporting_html.php:3661 +#: ../../include/ajax/heatmap.ajax.php:339 +#: ../../include/class/Diagnostics.class.php:769 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4224 ../../operation/search_agents.php:44 -#: ../../operation/search_agents.php:50 ../../operation/tree.php:78 -#: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 -#: ../../operation/agentes/estado_generalagente.php:194 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:345 +#: ../../include/functions_events.php:4377 ../../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/agentes/estado_generalagente.php:216 #: ../../operation/gis_maps/ajax.php:297 +#: ../../operation/inventory/inventory.php:1005 +#: ../../operation/inventory/inventory.php:1299 msgid "OS" msgstr "OS" #: ../../views/cluster/view.php:272 -#: ../../operation/agentes/estado_generalagente.php:212 +#: ../../operation/agentes/estado_generalagente.php:233 msgid "IP address" msgstr "IP アドレス" #: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 -#: ../../enterprise/meta/advanced/servers.build_table.php:100 #: ../../enterprise/meta/advanced/servers.build_table.php:101 -#: ../../enterprise/meta/advanced/servers.build_table.php:107 -#: ../../enterprise/meta/advanced/metasetup.visual.php:895 +#: ../../enterprise/meta/advanced/servers.build_table.php:102 +#: ../../enterprise/meta/advanced/servers.build_table.php:108 +#: ../../enterprise/meta/advanced/metasetup.visual.php:964 #: ../../enterprise/include/functions_visual_map.php:320 #: ../../enterprise/include/functions_servicemap.php:471 #: ../../enterprise/include/functions_aws.php:509 #: ../../enterprise/include/functions_aws.php:510 -#: ../../enterprise/include/functions_reporting.php:6153 +#: ../../enterprise/include/functions_reporting.php:6178 #: ../../enterprise/include/functions_services.php:1190 #: ../../enterprise/include/functions_services.php:1371 -#: ../../enterprise/include/functions_services.php:2081 +#: ../../enterprise/include/functions_services.php:2088 #: ../../enterprise/include/lib/Metaconsole/Node.php:453 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1129 -#: ../../enterprise/tools/ipam/ipam_network.php:436 -#: ../../enterprise/tools/ipam/ipam_network.php:516 -#: ../../enterprise/tools/ipam/ipam_ajax.php:366 -#: ../../enterprise/tools/ipam/ipam_ajax.php:387 -#: ../../godmode/modules/manage_network_components.php:779 -#: ../../godmode/modules/manage_network_components.php:780 -#: ../../godmode/extensions.php:186 ../../godmode/extensions.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:859 -#: ../../godmode/alerts/alert_view.php:135 -#: ../../godmode/servers/servers.build_table.php:147 -#: ../../godmode/servers/servers.build_table.php:148 -#: ../../godmode/servers/servers.build_table.php:154 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1130 +#: ../../enterprise/tools/ipam/ipam_network.php:463 +#: ../../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/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:1359 -#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_servers.php:1275 #: ../../include/functions_reporting_html.php:659 -#: ../../include/functions_reporting_html.php:5477 -#: ../../include/functions_reporting_html.php:5530 -#: ../../include/functions.php:1170 ../../include/functions.php:1176 -#: ../../include/functions.php:1180 ../../include/ajax/module.php:1181 -#: ../../include/functions_treeview.php:162 -#: ../../include/functions_treeview.php:327 -#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2619 -#: ../../include/functions_ui.php:2627 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:828 -#: ../../include/class/SnmpConsole.class.php:846 -#: ../../include/functions_events.php:3531 -#: ../../include/functions_events.php:3665 -#: ../../include/functions_events.php:3685 -#: ../../include/functions_events.php:3694 -#: ../../include/functions_events.php:3703 -#: ../../include/functions_events.php:3704 -#: ../../include/functions_events.php:3716 -#: ../../include/functions_events.php:3776 -#: ../../include/functions_events.php:3809 -#: ../../include/functions_events.php:3875 -#: ../../include/functions_events.php:3892 -#: ../../include/functions_events.php:3899 -#: ../../include/functions_events.php:3965 -#: ../../include/functions_events.php:4057 -#: ../../include/functions_events.php:4181 -#: ../../include/functions_events.php:4220 -#: ../../include/functions_events.php:4234 -#: ../../include/functions_events.php:4239 -#: ../../include/functions_events.php:4269 -#: ../../include/functions_events.php:4355 -#: ../../include/functions_events.php:4435 -#: ../../include/functions_events.php:4445 -#: ../../include/functions_events.php:4662 -#: ../../include/functions_events.php:4736 -#: ../../include/functions_events.php:4830 -#: ../../include/functions_events.php:4859 -#: ../../include/functions_events.php:4874 -#: ../../include/functions_events.php:4884 -#: ../../include/functions_events.php:4894 -#: ../../include/functions_events.php:5368 -#: ../../include/functions_events.php:5382 -#: ../../include/functions_events.php:5387 -#: ../../include/functions_events.php:5390 -#: ../../include/functions_events.php:5398 -#: ../../include/functions_events.php:5407 -#: ../../include/functions_events.php:5419 -#: ../../include/functions_events.php:5472 -#: ../../include/functions_events.php:5499 -#: ../../include/functions_events.php:5524 -#: ../../include/functions_events.php:5568 -#: ../../operation/agentes/interface_view.functions.php:682 -#: ../../operation/agentes/interface_view.functions.php:683 -#: ../../operation/agentes/interface_view.functions.php:684 -#: ../../operation/agentes/interface_view.functions.php:685 -#: ../../operation/agentes/interface_view.functions.php:686 -#: ../../operation/agentes/status_monitor.php:1743 -#: ../../operation/agentes/estado_generalagente.php:217 -#: ../../operation/agentes/estado_generalagente.php:230 -#: ../../operation/agentes/estado_generalagente.php:242 -#: ../../operation/agentes/estado_generalagente.php:411 -#: ../../operation/agentes/estado_generalagente.php:427 -#: ../../operation/agentes/estado_generalagente.php:438 +#: ../../include/functions_reporting_html.php:662 +#: ../../include/functions_reporting_html.php:5564 +#: ../../include/functions_reporting_html.php:5617 +#: ../../include/functions.php:1180 ../../include/functions.php:1186 +#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 +#: ../../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_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 +#: ../../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/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 msgid "N/A" msgstr "N/A" -#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:724 -#: ../../operation/agentes/estado_generalagente.php:225 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:839 +#: ../../operation/agentes/estado_generalagente.php:250 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" msgstr "エージェントバージョン" @@ -2472,12 +2828,12 @@ msgstr "エージェントバージョン" msgid "Cluster agent" msgstr "クラスタエージェント" -#: ../../views/cluster/view.php:368 -#: ../../operation/agentes/estado_generalagente.php:899 +#: ../../views/cluster/view.php:364 +#: ../../operation/agentes/estado_generalagente.php:1012 msgid "Events (Last 24h)" msgstr "イベント (直近 24時間)" -#: ../../views/cluster/view.php:440 ../../operation/agentes/stat_win.php:451 +#: ../../views/cluster/view.php:428 ../../operation/agentes/stat_win.php:453 #: ../../operation/agentes/interface_traffic_graph_win.php:278 msgid "Reload" msgstr "再読み込み" @@ -2495,456 +2851,290 @@ msgid "New widget" msgstr "新規ウィジェット" #: ../../views/dashboard/header.php:43 -#: ../../enterprise/meta/screens/screens.visualmap.php:274 #: ../../extensions/disabled/matrix_events.php:35 #: ../../extensions/agents_modules.php:380 #: ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 -#: ../../include/class/AgentsAlerts.class.php:792 -#: ../../operation/visual_console/view.php:212 -#: ../../operation/visual_console/legacy_view.php:205 -#: ../../operation/gis_maps/render_view.php:136 -#: ../../operation/reporting/reporting_viewer.php:186 +#: ../../operation/visual_console/view.php:231 +#: ../../operation/visual_console/legacy_view.php:201 +#: ../../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:57 ../../extensions/agents_modules.php:531 -#: ../../include/class/AgentsAlerts.class.php:797 ../../operation/heatmap.php:214 -#: ../../operation/visual_console/view.php:482 -#: ../../operation/visual_console/legacy_view.php:253 -#: ../../operation/gis_maps/render_view.php:138 -#: ../../operation/reporting/reporting_viewer.php:195 +#: ../../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 +#: ../../operation/gis_maps/render_view.php:139 +#: ../../operation/reporting/reporting_viewer.php:194 #: ../../operation/reporting/graph_viewer.php:243 -#: ../../operation/events/events.php:1372 +#: ../../operation/events/events.php:1410 msgid "Back to normal mode" msgstr "通常モードへ戻る" -#: ../../views/dashboard/header.php:67 +#: ../../views/dashboard/header.php:68 msgid "Update Dashboard" msgstr "ダッシュボードの更新" -#: ../../views/dashboard/header.php:68 ../../views/dashboard/header.php:102 -#: ../../views/dashboard/list.php:224 ../../enterprise/load_enterprise.php:647 -#: ../../enterprise/load_enterprise.php:1143 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 -#: ../../enterprise/godmode/services/services.elements.php:886 -#: ../../enterprise/godmode/services/services.elements.php:897 -#: ../../enterprise/godmode/setup/setup.php:544 -#: ../../enterprise/godmode/setup/setup.php:559 -#: ../../enterprise/godmode/setup/setup.php:566 -#: ../../enterprise/godmode/setup/setup.php:575 -#: ../../enterprise/include/class/Omnishell.class.php:1501 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052 +#: ../../views/dashboard/header.php:69 ../../views/dashboard/header.php:105 +#: ../../views/dashboard/tipsWindow.php:104 +#: ../../views/dashboard/tipsWindow.php:116 ../../views/dashboard/list.php:227 +#: ../../enterprise/load_enterprise.php:647 +#: ../../enterprise/load_enterprise.php:1165 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:454 +#: ../../enterprise/godmode/services/services.elements.php:959 +#: ../../enterprise/godmode/services/services.elements.php:970 +#: ../../enterprise/godmode/setup/setup.php:582 +#: ../../enterprise/godmode/setup/setup.php:597 +#: ../../enterprise/godmode/setup/setup.php:604 +#: ../../enterprise/godmode/setup/setup.php:613 +#: ../../enterprise/include/class/Omnishell.class.php:1955 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3113 #: ../../enterprise/include/lib/Metaconsole/Node.php:406 -#: ../../enterprise/operation/services/services.service.php:161 -#: ../../enterprise/operation/services/services.service_map.php:151 -#: ../../enterprise/operation/services/services.list.php:237 -#: ../../enterprise/operation/services/services.list.php:552 -#: ../../enterprise/operation/services/services.table_services.php:159 -#: ../../godmode/snmpconsole/snmp_alert.php:1548 -#: ../../godmode/snmpconsole/snmp_alert.php:1563 +#: ../../enterprise/operation/services/services.service.php:152 +#: ../../enterprise/operation/services/services.service_map.php:141 +#: ../../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 -#: ../../include/functions_config.php:1283 -#: ../../include/functions_config.php:3269 -#: ../../include/class/SatelliteAgent.class.php:1290 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 -#: ../../operation/gis_maps/render_view.php:166 +#: ../../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 +#: ../../include/class/SatelliteAgent.class.php:1269 +#: ../../operation/gis_maps/render_view.php:167 msgid "Ok" -msgstr "正常" +msgstr "Ok" -#: ../../views/dashboard/header.php:92 +#: ../../views/dashboard/header.php:94 msgid "Back to dashboards list" msgstr "ダッシュボード一覧へ戻る" -#: ../../views/dashboard/header.php:101 +#: ../../views/dashboard/header.php:104 msgid "Slides" msgstr "スライド" -#: ../../views/dashboard/header.php:115 +#: ../../views/dashboard/header.php:118 msgid "Slides mode" msgstr "スライドモード" -#: ../../views/dashboard/header.php:136 +#: ../../views/dashboard/header.php:140 msgid "Show link to public dashboard" msgstr "公開ダッシュボードへのリンク表示" -#: ../../views/dashboard/header.php:158 -#: ../../enterprise/views/ncm/devices/list.php:171 +#: ../../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:801 -#: ../../enterprise/godmode/servers/HA_cluster.php:421 -#: ../../enterprise/include/class/Omnishell.class.php:546 -#: ../../enterprise/include/class/Omnishell.class.php:1331 -#: ../../enterprise/include/functions_ipam.php:1398 -#: ../../extensions/agents_modules.php:543 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:193 -#: ../../include/ajax/heatmap.ajax.php:47 ../../include/ajax/module.php:1067 -#: ../../include/class/NetworkMap.class.php:2935 -#: ../../include/class/AgentsAlerts.class.php:836 ../../operation/heatmap.php:172 -#: ../../operation/visual_console/view.php:495 +#: ../../enterprise/godmode/policies/policy_queue.php:849 +#: ../../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 +#: ../../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 #: ../../operation/visual_console/legacy_public_view.php:141 -#: ../../operation/visual_console/legacy_view.php:267 -#: ../../operation/visual_console/public_view.php:123 -#: ../../operation/agentes/pandora_networkmap.editor.php:455 -#: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:371 -#: ../../operation/events/events.php:1384 ../../general/login_page.php:75 -#: ../../general/login_page.php:318 +#: ../../operation/visual_console/legacy_view.php:263 +#: ../../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 +#: ../../general/login_page.php:408 msgid "Refresh" msgstr "リフレッシュ" -#: ../../views/dashboard/header.php:211 +#: ../../views/dashboard/header.php:222 msgid "Add Cell" msgstr "セルの追加" -#: ../../views/dashboard/header.php:278 ../../views/dashboard/list.php:42 +#: ../../views/dashboard/header.php:298 +#: ../../enterprise/extensions/vmware/vmware_view.php:1377 +#: ../../enterprise/extensions/vmware/vmware_view.php:1414 +#: ../../godmode/users/user_management.php:45 +#: ../../godmode/massive/massive_edit_users.php:280 +#: ../../mobile/include/functions_web.php:22 +#: ../../include/class/OrderInterpreter.class.php:219 +#: ../../operation/users/user_edit.php:475 ../../operation/menu.php:478 +msgid "Dashboard" +msgstr "ダッシュボード" + +#: ../../views/dashboard/tipsWindow.php:33 +msgid "Hello! These are the tips of the day." +msgstr "こんにちは! 今日のヒントがあります。" + +#: ../../views/dashboard/tipsWindow.php:44 +#: ../../godmode/users/user_management.php:378 +msgid "Show usage tips at startup" +msgstr "起動時に利用方法を表示" + +#: ../../views/dashboard/tipsWindow.php:81 +msgid "See more info" +msgstr "詳細表示" + +#: ../../views/dashboard/tipsWindow.php:88 +msgid "Maybe later" +msgstr "あとで" + +#: ../../views/dashboard/list.php:40 ../../views/dashboard/list.php:49 #: ../../enterprise/meta/general/main_header.php:222 -#: ../../enterprise/meta/general/main_menu.php:342 +#: ../../enterprise/meta/general/main_menu.php:353 msgid "Dashboards" msgstr "ダッシュボード" -#: ../../views/dashboard/header.php:278 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../godmode/agentes/planned_downtime.editor.php:60 -#: ../../godmode/alerts/alert_list.php:519 ../../godmode/category/category.php:89 -#: ../../include/functions_html.php:1901 ../../include/functions_html.php:1902 -#: ../../include/functions_html.php:2012 ../../include/functions_html.php:2013 -#: ../../include/functions_html.php:2190 ../../include/functions_html.php:2191 -#: ../../include/functions_html.php:6339 ../../include/functions_html.php:6340 -#: ../../include/class/SnmpConsole.class.php:197 -#: ../../include/class/SnmpConsole.class.php:207 -#: ../../operation/snmpconsole/snmp_statistics.php:66 -#: ../../operation/events/events.php:1542 -msgid "List" -msgstr "一覧" - -#: ../../views/dashboard/list.php:53 +#: ../../views/dashboard/list.php:57 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:295 #: ../../enterprise/meta/advanced/metasetup.relations.php:86 -#: ../../enterprise/meta/advanced/links.php:84 -#: ../../enterprise/godmode/modules/local_components.php:420 +#: ../../enterprise/meta/advanced/links.php:83 +#: ../../enterprise/godmode/modules/local_components.php:431 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:68 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:118 #: ../../enterprise/godmode/setup/setup_metaconsole.php:138 #: ../../enterprise/godmode/reporting/graph_template_list.php:155 #: ../../enterprise/godmode/reporting/graph_template_list.php:182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:442 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:392 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:410 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:129 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:157 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:165 -#: ../../enterprise/include/class/DatabaseHA.class.php:1056 +#: ../../enterprise/include/class/DatabaseHA.class.php:1060 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:152 #: ../../enterprise/tools/ipam/ipam_action.php:102 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:87 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:132 -#: ../../extensions/files_repo.php:184 -#: ../../godmode/modules/manage_nc_groups.php:152 -#: ../../godmode/modules/manage_network_components.php:555 -#: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:344 -#: ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:148 -#: ../../godmode/users/configure_user.php:168 -#: ../../godmode/agentes/planned_downtime.list.php:279 +#: ../../extensions/files_repo.php:206 +#: ../../godmode/modules/manage_nc_groups.php:176 +#: ../../godmode/modules/manage_network_components.php:562 +#: ../../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/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/netflow/nf_edit.php:104 ../../godmode/netflow/nf_edit.php:137 +#: ../../godmode/netflow/nf_edit.php:111 ../../godmode/netflow/nf_edit.php:144 #: ../../godmode/snmpconsole/snmp_alert.php:686 #: ../../godmode/snmpconsole/snmp_filters.php:180 #: ../../godmode/massive/massive_delete_action_alerts.php:170 #: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_alerts.php:201 -#: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_commands.php:691 -#: ../../godmode/alerts/alert_templates.php:252 +#: ../../godmode/alerts/alert_actions.php:208 +#: ../../godmode/alerts/alert_commands.php:698 +#: ../../godmode/alerts/alert_templates.php:257 #: ../../godmode/alerts/alert_list.php:239 -#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:120 -#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:76 +#: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:137 +#: ../../godmode/setup/gis.php:61 ../../godmode/setup/links.php:89 #: ../../godmode/reporting/map_builder.php:209 #: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162 #: ../../godmode/reporting/graphs.php:213 -#: ../../godmode/reporting/reporting_builder.php:668 -#: ../../godmode/events/event_filter.php:69 -#: ../../godmode/events/event_filter.php:96 -#: ../../include/class/ConfigPEN.class.php:486 -#: ../../operation/messages/message_list.php:113 -#: ../../operation/messages/message_list.php:135 -#: ../../operation/gis_maps/gis_map.php:86 -#: ../../operation/incidents/list_integriaims_incidents.php:295 +#: ../../godmode/reporting/reporting_builder.php:631 +#: ../../godmode/events/event_filter.php:77 +#: ../../godmode/events/event_filter.php:104 +#: ../../include/class/ConfigPEN.class.php:488 +#: ../../operation/messages/message_list.php:109 +#: ../../operation/messages/message_list.php:131 +#: ../../operation/gis_maps/gis_map.php:99 +#: ../../operation/incidents/list_integriaims_incidents.php:305 #: ../../operation/reporting/graph_viewer.php:57 #: ../../operation/reporting/graph_viewer.php:65 msgid "Successfully deleted" msgstr "削除しました。" -#: ../../views/dashboard/list.php:54 -#: ../../enterprise/godmode/modules/local_components.php:421 -#: ../../enterprise/godmode/policies/policy_alerts.php:256 -#: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_modules.php:1318 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:149 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:176 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 -#: ../../enterprise/godmode/policies/policy_collections.php:100 -#: ../../enterprise/godmode/policies/policy_agents.php:104 -#: ../../enterprise/godmode/policies/policy_agents.php:126 +#: ../../views/dashboard/list.php:58 +#: ../../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_external_alerts.php:159 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:186 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:174 +#: ../../enterprise/godmode/policies/policy_collections.php:119 +#: ../../enterprise/godmode/policies/policy_agents.php:103 +#: ../../enterprise/godmode/policies/policy_agents.php:125 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:69 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:119 #: ../../enterprise/godmode/setup/setup_metaconsole.php:139 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:443 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:393 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:411 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:166 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:150 #: ../../enterprise/tools/ipam/ipam_action.php:100 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 -#: ../../extensions/files_repo.php:184 -#: ../../godmode/modules/manage_network_components.php:556 -#: ../../godmode/users/configure_user.php:149 +#: ../../extensions/files_repo.php:206 +#: ../../godmode/modules/manage_network_components.php:563 +#: ../../godmode/users/configure_user.php:102 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 -#: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_commands.php:692 -#: ../../godmode/alerts/alert_templates.php:253 +#: ../../godmode/alerts/alert_actions.php:209 +#: ../../godmode/alerts/alert_commands.php:699 +#: ../../godmode/alerts/alert_templates.php:258 #: ../../godmode/alerts/alert_list.php:240 -#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:121 +#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 #: ../../godmode/setup/gis.php:59 -#: ../../godmode/reporting/reporting_builder.php:669 -#: ../../operation/agentes/pandora_networkmap.php:554 -#: ../../operation/messages/message_list.php:114 -#: ../../operation/gis_maps/gis_map.php:87 -#: ../../operation/incidents/list_integriaims_incidents.php:296 +#: ../../godmode/reporting/reporting_builder.php:632 +#: ../../operation/agentes/pandora_networkmap.php:563 +#: ../../operation/messages/message_list.php:110 +#: ../../operation/gis_maps/gis_map.php:100 +#: ../../operation/incidents/list_integriaims_incidents.php:306 msgid "Could not be deleted" msgstr "削除できませんでした。" -#: ../../views/dashboard/list.php:61 +#: ../../views/dashboard/list.php:65 msgid "Successfully duplicate" msgstr "複製しました" -#: ../../views/dashboard/list.php:62 +#: ../../views/dashboard/list.php:66 msgid "Could not be duplicate" msgstr "複製に失敗しました" -#: ../../views/dashboard/list.php:70 +#: ../../views/dashboard/list.php:74 msgid "There are no dashboards defined." msgstr "定義済のダッシュボードがありません。" -#: ../../views/dashboard/list.php:96 +#: ../../views/dashboard/list.php:100 msgid "Cells" msgstr "セル" -#: ../../views/dashboard/list.php:98 +#: ../../views/dashboard/list.php:102 ../../operation/menu.php:606 msgid "Favorite" msgstr "お気に入り" -#: ../../views/dashboard/list.php:99 -#: ../../include/class/AgentsAlerts.class.php:822 ../../operation/heatmap.php:87 +#: ../../views/dashboard/list.php:103 ../../operation/heatmap.php:90 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2331 +#: ../../operation/agentes/pandora_networkmap.view.php:2364 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 -#: ../../operation/events/events.php:1427 +#: ../../operation/events/events.php:1460 msgid "Full screen" msgstr "全画面" -#: ../../views/dashboard/list.php:102 -#: ../../enterprise/godmode/policies/policy_modules.php:1678 -#: ../../enterprise/godmode/policies/policies.php:574 -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:230 -#: ../../godmode/agentes/planned_downtime.list.php:669 -#: ../../godmode/agentes/planned_downtime.list.php:796 -#: ../../godmode/agentes/planned_downtime.list.php:842 -#: ../../godmode/alerts/alert_actions.php:330 -#: ../../godmode/reporting/map_builder.php:387 -#: ../../operation/agentes/pandora_networkmap.php:719 -#: ../../operation/agentes/pandora_networkmap.php:809 +#: ../../views/dashboard/list.php:106 +#: ../../enterprise/godmode/policies/policy_modules.php:1796 +#: ../../enterprise/godmode/policies/policies.php:643 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:229 +#: ../../godmode/agentes/planned_downtime.list.php:746 +#: ../../godmode/agentes/planned_downtime.list.php:879 +#: ../../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 msgid "Copy" msgstr "コピー" -#: ../../views/dashboard/list.php:103 -#: ../../enterprise/meta/advanced/servers.build_table.php:133 -#: ../../enterprise/meta/advanced/metasetup.visual.php:434 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:687 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:715 -#: ../../enterprise/meta/advanced/metasetup.relations.php:589 -#: ../../enterprise/meta/advanced/metasetup.relations.php:590 -#: ../../enterprise/meta/advanced/metasetup.relations.php:634 -#: ../../enterprise/meta/advanced/links.php:157 -#: ../../enterprise/meta/advanced/policymanager.queue.php:220 -#: ../../enterprise/meta/advanced/policymanager.queue.php:262 -#: ../../enterprise/meta/advanced/policymanager.queue.php:319 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:464 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:815 -#: ../../enterprise/meta/include/functions_autoprovision.php:517 -#: ../../enterprise/meta/include/functions_autoprovision.php:518 -#: ../../enterprise/meta/include/functions_autoprovision.php:685 -#: ../../enterprise/meta/include/functions_autoprovision.php:686 -#: ../../enterprise/meta/include/functions_wizard_meta.php:395 -#: ../../enterprise/godmode/modules/local_components.php:701 -#: ../../enterprise/godmode/modules/local_components.php:718 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 -#: ../../enterprise/godmode/agentes/plugins_manager.php:196 -#: ../../enterprise/godmode/agentes/plugins_manager.php:281 -#: ../../enterprise/godmode/policies/policy_plugins.php:188 -#: ../../enterprise/godmode/policies/policy_alerts.php:539 -#: ../../enterprise/godmode/policies/policy_modules.php:1591 -#: ../../enterprise/godmode/policies/policy_modules.php:1623 -#: ../../enterprise/godmode/policies/policy_queue.php:611 -#: ../../enterprise/godmode/policies/policy_queue.php:675 -#: ../../enterprise/godmode/policies/policy_queue.php:722 -#: ../../enterprise/godmode/policies/policies.php:595 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:561 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_agents.php:1119 -#: ../../enterprise/godmode/policies/policy_agents.php:1581 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 -#: ../../enterprise/godmode/setup/setup_acl.php:595 -#: ../../enterprise/godmode/reporting/graph_template_list.php:246 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:646 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:674 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:215 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:225 -#: ../../enterprise/godmode/reporting/visual_console_template.php:273 -#: ../../enterprise/godmode/reporting/mysql_builder.php:98 -#: ../../enterprise/godmode/reporting/mysql_builder.php:105 -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:389 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:252 -#: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/include/functions_tasklist.php:643 -#: ../../enterprise/include/functions_tasklist.php:678 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:96 -#: ../../enterprise/include/ajax/servers.ajax.php:103 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1537 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1576 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:644 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:800 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:976 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1123 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1331 -#: ../../enterprise/include/class/AgentRepository.class.php:844 -#: ../../enterprise/include/class/AgentRepository.class.php:879 -#: ../../enterprise/include/class/Omnishell.class.php:1165 -#: ../../enterprise/include/class/LogSource.class.php:772 -#: ../../enterprise/include/class/LogSource.class.php:894 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2443 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3098 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3418 -#: ../../enterprise/include/class/ManageBackups.class.php:275 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1193 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1194 -#: ../../enterprise/operation/services/massive/services.delete.php:118 -#: ../../enterprise/operation/services/services.list.php:657 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1297 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:288 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:304 -#: ../../enterprise/tools/ipam/ipam_ajax.php:136 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:807 -#: ../../extensions/files_repo/files_repo_list.php:151 -#: ../../godmode/modules/manage_network_templates_form.php:254 -#: ../../godmode/modules/manage_nc_groups.php:276 -#: ../../godmode/modules/manage_nc_groups.php:305 -#: ../../godmode/modules/manage_inventory_modules.php:323 -#: ../../godmode/modules/manage_inventory_modules.php:338 -#: ../../godmode/modules/manage_network_components.php:871 -#: ../../godmode/modules/manage_network_components.php:872 -#: ../../godmode/modules/manage_network_components.php:901 -#: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:942 -#: ../../godmode/groups/group_list.php:943 -#: ../../godmode/groups/modu_group_list.php:254 ../../godmode/extensions.php:257 -#: ../../godmode/extensions.php:259 ../../godmode/users/profile_list.php:443 -#: ../../godmode/users/user_list.php:885 -#: ../../godmode/agentes/agent_template.php:260 -#: ../../godmode/agentes/inventory_manager.php:250 -#: ../../godmode/agentes/planned_downtime.list.php:671 -#: ../../godmode/agentes/planned_downtime.list.php:821 -#: ../../godmode/agentes/planned_downtime.editor.php:1254 -#: ../../godmode/agentes/planned_downtime.editor.php:1257 -#: ../../godmode/agentes/planned_downtime.editor.php:1307 -#: ../../godmode/agentes/fields_manager.php:158 -#: ../../godmode/agentes/module_manager_editor_common.php:1321 -#: ../../godmode/agentes/module_manager.php:911 -#: ../../godmode/agentes/module_manager.php:1293 -#: ../../godmode/netflow/nf_item_list.php:263 -#: ../../godmode/netflow/nf_item_list.php:273 -#: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 -#: ../../godmode/snmpconsole/snmp_alert.php:1313 -#: ../../godmode/snmpconsole/snmp_filters.php:301 -#: ../../godmode/snmpconsole/snmp_filters.php:312 -#: ../../godmode/alerts/alert_actions.php:331 -#: ../../godmode/alerts/alert_actions.php:449 -#: ../../godmode/alerts/alert_list.list.php:926 -#: ../../godmode/alerts/alert_templates.php:446 ../../godmode/setup/news.php:251 -#: ../../godmode/setup/gis.php:71 ../../godmode/setup/links.php:146 -#: ../../godmode/setup/snmp_wizard.php:110 -#: ../../godmode/setup/setup_visuals.php:1395 -#: ../../godmode/setup/setup_visuals.php:1434 -#: ../../godmode/setup/setup_visuals.php:1454 -#: ../../godmode/reporting/reporting_builder.list_items.php:629 -#: ../../godmode/reporting/reporting_builder.list_items.php:667 -#: ../../godmode/reporting/reporting_builder.list_items.php:690 -#: ../../godmode/reporting/reporting_builder.list_items.php:791 -#: ../../godmode/reporting/create_container.php:630 -#: ../../godmode/reporting/create_container.php:683 -#: ../../godmode/reporting/map_builder.php:388 -#: ../../godmode/reporting/map_builder.php:512 -#: ../../godmode/reporting/map_builder.php:523 -#: ../../godmode/reporting/graphs.php:367 ../../godmode/reporting/graphs.php:368 -#: ../../godmode/reporting/graphs.php:394 -#: ../../godmode/reporting/graph_builder.graph_editor.php:216 -#: ../../godmode/reporting/graph_builder.graph_editor.php:256 -#: ../../godmode/reporting/visual_console_builder.elements.php:763 -#: ../../godmode/reporting/reporting_builder.php:1207 -#: ../../godmode/reporting/reporting_builder.php:1291 -#: ../../godmode/events/event_filter.php:192 -#: ../../godmode/events/event_filter.php:211 -#: ../../godmode/events/event_responses.list.php:71 -#: ../../godmode/servers/servers.build_table.php:270 -#: ../../include/functions_cron.php:935 ../../include/functions_cron.php:963 -#: ../../include/class/ConfigPEN.class.php:264 -#: ../../include/class/SatelliteAgent.class.php:1168 -#: ../../include/class/NetworkMap.class.php:2932 -#: ../../include/class/ManageNetScanScripts.class.php:405 -#: ../../include/class/CredentialStore.class.php:1290 -#: ../../include/class/CredentialStore.class.php:1717 -#: ../../include/class/SnmpConsole.class.php:496 -#: ../../include/class/SnmpConsole.class.php:547 -#: ../../include/class/SnmpConsole.class.php:901 -#: ../../include/class/SnmpConsole.class.php:913 -#: ../../include/class/ModuleTemplates.class.php:934 -#: ../../include/class/ModuleTemplates.class.php:1212 -#: ../../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:845 -#: ../../operation/agentes/pandora_networkmap.php:721 -#: ../../operation/agentes/pandora_networkmap.php:811 -#: ../../operation/messages/message_list.php:201 -#: ../../operation/messages/message_list.php:272 -#: ../../operation/messages/message_list.php:275 -#: ../../operation/messages/message_list.php:293 -#: ../../operation/gis_maps/gis_map.php:190 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:120 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:198 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:251 -#: ../../operation/incidents/list_integriaims_incidents.php:555 -msgid "Delete" -msgstr "削除" - -#: ../../views/dashboard/list.php:136 +#: ../../views/dashboard/list.php:139 #, php-format msgid "Private for (%s)" msgstr "個人のみ (%s)" -#: ../../views/dashboard/list.php:217 +#: ../../views/dashboard/list.php:221 msgid "Create a new dashboard" msgstr "ダッシュボードの新規作成" -#: ../../views/dashboard/list.php:232 +#: ../../views/dashboard/list.php:236 msgid "New dashboard" msgstr "新規ダッシュボード" @@ -2952,26 +3142,26 @@ msgstr "新規ダッシュボード" msgid "Add widget" msgstr "ウィジェット追加" -#: ../../views/dashboard/widget.php:45 +#: ../../views/dashboard/widget.php:48 msgid "Please select widget" msgstr "ウィジェットを選択してください" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1539 -#: ../../operation/events/events.php:3082 +#: ../../include/class/SnmpConsole.class.php:1550 +#: ../../operation/events/events.php:3160 msgid "Until next" msgstr "次まで" -#: ../../views/dashboard/formDashboard.php:91 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:499 -#: ../../godmode/reporting/reporting_builder.php:936 +#: ../../views/dashboard/formDashboard.php:110 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:467 +#: ../../godmode/reporting/reporting_builder.php:912 msgid "Private" msgstr "非公開" #: ../../views/dashboard/formDashboard.php:122 -#: ../../enterprise/godmode/services/services.service.php:769 -#: ../../enterprise/godmode/reporting/visual_console_template.php:272 -#: ../../enterprise/operation/services/massive/services.create.php:833 +#: ../../enterprise/godmode/services/services.service.php:763 +#: ../../enterprise/godmode/reporting/visual_console_template.php:290 +#: ../../enterprise/operation/services/massive/services.create.php:829 msgid "Favourite" msgstr "お気に入り" @@ -2984,7 +3174,6 @@ msgid "Delete widget" msgstr "ウェジェットの削除" #: ../../views/dashboard/slides.php:41 -#: ../../include/class/SnmpConsole.class.php:248 msgid "Exit fullscreen" msgstr "全画面表示を終了" @@ -2993,16 +3182,17 @@ msgid "Change every" msgstr "変更周期" #: ../../views/dashboard/slides.php:203 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:144 #: ../../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:3921 +#: ../../include/functions.php:3943 ../../include/functions_ui.php:2381 msgid "Previous" msgstr "前へ" #: ../../views/dashboard/slides.php:218 -#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:441 +#: ../../enterprise/meta/general/main_menu.php:287 ../../operation/menu.php:572 +#: ../../operation/events/events.php:1518 msgid "Stop" msgstr "停止" @@ -3011,30 +3201,28 @@ msgid "Pause" msgstr "一時停止" #: ../../views/dashboard/slides.php:240 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:149 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:147 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:214 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:730 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:665 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:262 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:215 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:132 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../enterprise/include/class/VMware.app.php:534 -#: ../../enterprise/include/class/Omnishell.class.php:645 -#: ../../enterprise/include/class/DB2.app.php:567 -#: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Aws.cloud.php:1424 -#: ../../enterprise/include/class/MySQL.app.php:589 -#: ../../enterprise/include/class/Oracle.app.php:574 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:834 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1096 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1968 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2108 -#: ../../godmode/alerts/configure_alert_template.php:1181 -#: ../../godmode/alerts/configure_alert_template.php:1188 -#: ../../godmode/wizards/HostDevices.class.php:771 -#: ../../include/class/CustomNetScan.class.php:550 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1234 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 +#: ../../enterprise/godmode/wizards/Cloud.class.php:589 +#: ../../enterprise/include/class/VMware.app.php:543 +#: ../../enterprise/include/class/Omnishell.class.php:826 +#: ../../enterprise/include/class/DB2.app.php:574 +#: ../../enterprise/include/class/SAP.app.php:443 +#: ../../enterprise/include/class/Aws.cloud.php:1467 +#: ../../enterprise/include/class/MySQL.app.php:596 +#: ../../enterprise/include/class/Oracle.app.php:581 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:585 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:336 +#: ../../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 msgid "Next" msgstr "次" @@ -3068,49 +3256,65 @@ msgstr "" #: ../../enterprise/views/ncm/templates/edit.php:42 #: ../../enterprise/views/ncm/devices/list.php:32 #: ../../enterprise/views/ncm/devices/list.php:67 -#: ../../enterprise/views/ncm/firmwares/list.php:32 +#: ../../enterprise/views/ncm/firmwares/list.php:31 #: ../../enterprise/views/ncm/firmwares/edit.php:41 #: ../../enterprise/views/ncm/models/list.php:32 #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1284 ../../include/functions_events.php:3037 +#: ../../include/functions.php:1294 ../../include/functions_events.php:3178 msgid "Network configuration manager" msgstr "ネットワーク設定管理" #: ../../enterprise/views/ncm/snippets/list.php:32 +#: ../../enterprise/views/ncm/snippets/list.php:50 #: ../../enterprise/views/ncm/snippets/edit.php:42 msgid "Snippets" msgstr "一部分" -#: ../../enterprise/views/ncm/snippets/edit.php:73 +#: ../../enterprise/views/ncm/snippets/list.php:46 +#: ../../enterprise/views/ncm/templates/list.php:46 +#: ../../enterprise/views/ncm/templates/edit.php:56 +#: ../../enterprise/views/ncm/devices/list.php:46 +#: ../../enterprise/views/ncm/devices/list.php:64 +#: ../../enterprise/views/ncm/firmwares/list.php:45 +#: ../../enterprise/views/ncm/firmwares/edit.php:55 +#: ../../enterprise/views/ncm/models/list.php:46 +#: ../../enterprise/views/ncm/models/edit.php:51 +#: ../../enterprise/views/ncm/vendors/list.php:46 +#: ../../enterprise/views/ncm/vendors/edit.php:49 +#: ../../include/functions_reports.php:957 +msgid "NCM" +msgstr "NCM" + +#: ../../enterprise/views/ncm/snippets/edit.php:75 #: ../../enterprise/views/ncm/templates/edit.php:73 #: ../../enterprise/views/ncm/firmwares/edit.php:72 msgid "Script not defined" msgstr "スクリプトが定義されていません" -#: ../../enterprise/views/ncm/snippets/edit.php:91 -#: ../../enterprise/views/ncm/templates/edit.php:160 -#: ../../enterprise/views/ncm/templates/edit.php:188 -#: ../../enterprise/views/ncm/templates/edit.php:216 -#: ../../enterprise/views/ncm/templates/edit.php:244 -#: ../../enterprise/views/ncm/templates/edit.php:271 -#: ../../enterprise/views/ncm/templates/edit.php:298 +#: ../../enterprise/views/ncm/snippets/edit.php:93 +#: ../../enterprise/views/ncm/templates/edit.php:158 +#: ../../enterprise/views/ncm/templates/edit.php:186 +#: ../../enterprise/views/ncm/templates/edit.php:214 +#: ../../enterprise/views/ncm/templates/edit.php:242 +#: ../../enterprise/views/ncm/templates/edit.php:269 +#: ../../enterprise/views/ncm/templates/edit.php:296 msgid "Script details" msgstr "スクリプト詳細" -#: ../../enterprise/views/ncm/snippets/edit.php:138 +#: ../../enterprise/views/ncm/snippets/edit.php:152 #: ../../enterprise/views/ncm/agent/manage.php:135 #: ../../enterprise/views/ncm/agent/manage.php:148 #: ../../enterprise/views/ncm/agent/manage.php:181 -#: ../../enterprise/views/ncm/agent/manage.php:274 -#: ../../enterprise/views/ncm/agent/manage.php:309 +#: ../../enterprise/views/ncm/agent/manage.php:268 +#: ../../enterprise/views/ncm/agent/manage.php:303 #: ../../enterprise/views/ncm/agent/details.php:256 -#: ../../enterprise/views/ncm/templates/edit.php:347 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:217 -#: ../../enterprise/operation/services/massive/service.create.elements.php:351 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:259 -#: ../../include/class/ExternalTools.class.php:537 +#: ../../enterprise/views/ncm/templates/edit.php:357 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:223 +#: ../../enterprise/operation/services/massive/service.create.elements.php:345 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:254 +#: ../../include/class/ExternalTools.class.php:577 msgid "Please select" msgstr "選択してください" @@ -3131,7 +3335,7 @@ msgid "Device model" msgstr "デバイスモデル" #: ../../enterprise/views/ncm/agent/manage.php:102 -#: ../../godmode/agentes/module_manager_editor_network.php:526 +#: ../../godmode/agentes/module_manager_editor_network.php:502 msgid "Connection method" msgstr "接続方法" @@ -3144,22 +3348,22 @@ msgid "connect using telnet" msgstr "telnet を用いて接続" #: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/meta/include/functions_meta.php:2082 +#: ../../enterprise/meta/include/functions_meta.php:2162 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 -#: ../../enterprise/godmode/setup/setup_history.php:192 -#: ../../enterprise/godmode/servers/manage_export_form.php:121 -#: ../../enterprise/include/class/Azure.cloud.php:813 +#: ../../enterprise/godmode/setup/setup_history.php:194 +#: ../../enterprise/godmode/servers/manage_export_form.php:167 +#: ../../enterprise/include/class/Azure.cloud.php:816 #: ../../enterprise/include/class/VMware.app.php:632 -#: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/Aws.cloud.php:556 -#: ../../extensions/quick_shell.php:181 +#: ../../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:126 -#: ../../godmode/massive/massive_edit_modules.php:1145 -#: ../../godmode/servers/modificar_server.php:84 -#: ../../include/functions_config.php:1553 -#: ../../include/class/AgentWizard.class.php:647 -#: ../../include/functions_snmp_browser.php:714 +#: ../../godmode/agentes/module_manager_editor_network.php:83 +#: ../../godmode/massive/massive_edit_modules.php:1160 +#: ../../godmode/servers/modificar_server.php:117 +#: ../../include/functions_config.php:1651 +#: ../../include/class/AgentWizard.class.php:648 +#: ../../include/functions_snmp_browser.php:724 msgid "Port" msgstr "ポート番号" @@ -3199,18 +3403,16 @@ msgstr "1ヶ月に一回" msgid "Launch event if configuration changes" msgstr "設定が変更された場合にイベントを発生させる" -#: ../../enterprise/views/ncm/agent/manage.php:243 +#: ../../enterprise/views/ncm/agent/manage.php:241 msgid "NCM state" msgstr "NCM 状態" -#: ../../enterprise/views/ncm/agent/manage.php:259 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:109 -#: ../../enterprise/godmode/reporting/mysql_builder.php:242 -#: ../../extensions/insert_data.php:208 ../../godmode/setup/gis_step_2.php:522 +#: ../../enterprise/views/ncm/agent/manage.php:252 +#: ../../enterprise/godmode/reporting/mysql_builder.php:252 +#: ../../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:229 -#: ../../godmode/reporting/reporting_builder.main.php:45 -#: ../../operation/agentes/graphs.php:342 +#: ../../godmode/reporting/visual_console_builder.data.php:310 +#: ../../include/ajax/module.php:2211 ../../operation/agentes/graphs.php:377 msgid "Save" msgstr "保存" @@ -3235,12 +3437,12 @@ msgid "Script type" msgstr "スクリプトタイプ" #: ../../enterprise/views/ncm/agent/details.php:90 -#: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:303 ../../extensions/api_checker.php:310 -#: ../../include/functions_reporting_html.php:4225 -#: ../../include/functions_reporting_html.php:4372 -#: ../../include/functions_reporting_html.php:4714 -#: ../../include/functions_reporting_html.php:4725 +#: ../../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_db.php:1959 msgid "Result" msgstr "結果" @@ -3294,7 +3496,8 @@ msgid "Execute snippet" msgstr "一時実行" #: ../../enterprise/views/ncm/agent/details.php:265 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:66 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1184 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:110 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:122 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:103 @@ -3302,76 +3505,81 @@ 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 msgid "Preview" msgstr "プレビュー" #: ../../enterprise/views/ncm/agent/details.php:312 #: ../../enterprise/meta/monitoring/custom_fields_csv.php:133 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 -#: ../../enterprise/meta/monitoring/group_view.php:236 -#: ../../enterprise/meta/monitoring/group_view.php:242 -#: ../../enterprise/meta/monitoring/tactical.php:225 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:184 +#: ../../enterprise/meta/monitoring/group_view.php:233 +#: ../../enterprise/meta/monitoring/group_view.php:239 +#: ../../enterprise/meta/monitoring/tactical.php:224 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:122 -#: ../../enterprise/godmode/services/services.elements.php:383 +#: ../../enterprise/godmode/services/services.elements.php:406 #: ../../enterprise/include/functions_cron.php:585 -#: ../../enterprise/include/functions_reporting_pdf.php:643 +#: ../../enterprise/include/functions_reporting_pdf.php:645 #: ../../enterprise/include/functions_HA_cluster.php:70 #: ../../enterprise/include/class/DatabaseHA.class.php:223 -#: ../../enterprise/include/functions_reporting.php:1891 -#: ../../enterprise/include/functions_reporting.php:2941 -#: ../../enterprise/include/functions_reporting.php:3929 -#: ../../enterprise/include/functions_reporting.php:4849 -#: ../../enterprise/include/functions_reporting.php:6154 +#: ../../enterprise/include/functions_reporting.php:1883 +#: ../../enterprise/include/functions_reporting.php:2959 +#: ../../enterprise/include/functions_reporting.php:3949 +#: ../../enterprise/include/functions_reporting.php:4869 +#: ../../enterprise/include/functions_reporting.php:6179 #: ../../enterprise/include/lib/NetworkManager.php:103 -#: ../../enterprise/operation/agentes/tag_view.php:134 -#: ../../enterprise/operation/services/services.service.php:180 -#: ../../enterprise/operation/services/services.service_map.php:152 -#: ../../enterprise/operation/services/services.treeview_services.php:285 -#: ../../enterprise/operation/services/services.list.php:240 -#: ../../enterprise/operation/services/services.list.php:571 -#: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1069 +#: ../../enterprise/operation/agentes/tag_view.php:133 +#: ../../enterprise/operation/services/services.service.php:171 +#: ../../enterprise/operation/services/services.service_map.php:142 +#: ../../enterprise/operation/services/services.treeview_services.php:311 +#: ../../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 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 #: ../../godmode/massive/massive_delete_modules.php:442 #: ../../godmode/massive/massive_edit_modules.php:388 #: ../../godmode/massive/massive_edit_modules.php:474 -#: ../../godmode/alerts/alert_list.builder.php:290 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3787 +#: ../../godmode/alerts/alert_list.builder.php:326 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3833 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 #: ../../include/graphs/functions_flot.php:310 -#: ../../include/functions_reporting_html.php:2473 -#: ../../include/functions_reporting_html.php:2486 -#: ../../include/functions_reporting_html.php:3468 -#: ../../include/functions_reporting_html.php:3882 -#: ../../include/functions.php:1271 ../../include/functions.php:4159 -#: ../../include/ajax/module.php:1084 ../../include/functions_ui.php:549 -#: ../../include/functions_ui.php:550 ../../include/functions_visual_map.php:2457 +#: ../../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/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/functions_reports.php:557 ../../include/functions_maps.php:54 -#: ../../include/functions_massive_operations.php:151 -#: ../../include/functions_netflow.php:1865 -#: ../../include/functions_reporting.php:6668 -#: ../../include/functions_filemanager.php:668 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:388 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:421 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:673 +#: ../../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/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/ClusterViewer/ClusterManager.php:582 -#: ../../include/functions_events.php:2985 ../../operation/tree.php:215 -#: ../../operation/tree.php:272 ../../operation/tree.php:476 -#: ../../operation/agentes/estado_agente.php:271 -#: ../../operation/agentes/status_monitor.php:495 -#: ../../operation/agentes/group_view.php:224 -#: ../../operation/agentes/group_view.php:229 -#: ../../operation/agentes/estado_monitores.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:1771 -#: ../../operation/agentes/tactical.php:182 ../../operation/events/events.php:785 -#: ../../general/logon_ok.php:145 +#: ../../include/functions_events.php:3126 ../../operation/tree.php:211 +#: ../../operation/tree.php:301 ../../operation/tree.php:523 +#: ../../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 msgid "Unknown" msgstr "不明" @@ -3394,7 +3602,7 @@ msgid "Backup latest retrieved configuration" msgstr "最新の設定バックアップ" #: ../../enterprise/views/ncm/agent/details.php:372 -#: ../../enterprise/include/class/ManageBackups.class.php:302 +#: ../../enterprise/include/class/ManageBackups.class.php:308 #: ../../extensions/files_repo/files_repo_list.php:123 msgid "Download" msgstr "ダウンロード" @@ -3427,55 +3635,59 @@ msgid "Diff" msgstr "差分" #: ../../enterprise/views/ncm/agent/details.php:485 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:585 -#: ../../enterprise/meta/advanced/collections.php:391 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 -#: ../../enterprise/meta/include/functions_autoprovision.php:477 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:586 +#: ../../enterprise/meta/advanced/collections.php:408 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 +#: ../../enterprise/meta/include/functions_autoprovision.php:498 #: ../../enterprise/meta/include/functions_alerts_meta.php:133 #: ../../enterprise/meta/include/functions_alerts_meta.php:164 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:499 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:139 -#: ../../enterprise/godmode/agentes/collections.php:447 -#: ../../enterprise/godmode/policies/policy_alerts.php:353 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:361 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:395 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:693 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 -#: ../../enterprise/godmode/setup/setup_skins.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2171 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:506 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:147 +#: ../../enterprise/godmode/agentes/collections.php:509 +#: ../../enterprise/godmode/policies/policy_alerts.php:367 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:376 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:433 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:273 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:242 +#: ../../enterprise/godmode/setup/setup_skins.php:192 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2160 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:147 +#: ../../enterprise/include/ajax/policy.ajax.php:209 #: ../../enterprise/include/functions_reporting_csv.php:2515 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2339 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2507 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3478 -#: ../../enterprise/include/class/ManageBackups.class.php:167 -#: ../../enterprise/operation/services/services.list.php:513 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 -#: ../../enterprise/tools/ipam/ipam_ajax.php:532 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 -#: ../../godmode/groups/group_list.php:858 -#: ../../godmode/agentes/inventory_manager.php:225 -#: ../../godmode/agentes/modificar_agente.php:653 -#: ../../godmode/agentes/planned_downtime.editor.php:1213 -#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:276 -#: ../../godmode/alerts/alert_list.list.php:130 -#: ../../godmode/alerts/alert_list.list.php:498 -#: ../../godmode/alerts/alert_commands.php:746 -#: ../../godmode/alerts/alert_view.php:301 -#: ../../godmode/alerts/alert_list.builder.php:96 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2064 -#: ../../godmode/events/event_responses.list.php:53 ../../godmode/tag/tag.php:284 -#: ../../godmode/category/category.php:170 -#: ../../include/functions_reporting_html.php:3356 -#: ../../include/functions_cron.php:507 ../../include/functions_treeview.php:413 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2372 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2539 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3547 +#: ../../enterprise/include/class/ManageBackups.class.php:170 +#: ../../enterprise/operation/services/services.list.php:551 +#: ../../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/agentes/inventory_manager.php:237 +#: ../../godmode/agentes/modificar_agente.php:700 +#: ../../godmode/agentes/planned_downtime.editor.php:1369 +#: ../../godmode/agentes/fields_manager.php:155 ../../godmode/menu.php:279 +#: ../../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/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 #: ../../include/class/SatelliteAgent.class.php:148 #: ../../include/class/AgentsAlerts.class.php:254 -#: ../../include/class/AgentsAlerts.class.php:285 -#: ../../include/class/SnmpConsole.class.php:344 -#: ../../include/class/SatelliteCollection.class.php:131 -#: ../../include/functions_reporting.php:3129 -#: ../../include/functions_filemanager.php:607 +#: ../../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 msgid "Actions" msgstr "アクション" @@ -3488,55 +3700,65 @@ msgid "This is the latest configuration retrieved" msgstr "これは取得された最新の設定です" #: ../../enterprise/views/ncm/agent/details.php:507 -#: ../../enterprise/views/ncm/agent/details.php:511 +#: ../../enterprise/views/ncm/agent/details.php:512 msgid "This is the current backup." msgstr "これは最新のバックアップです。" -#: ../../enterprise/views/ncm/agent/details.php:523 +#: ../../enterprise/views/ncm/agent/details.php:524 msgid "Review this configuration" msgstr "この設定を見る" -#: ../../enterprise/views/ncm/agent/details.php:534 +#: ../../enterprise/views/ncm/agent/details.php:535 msgid "There is no backup to compare with" msgstr "比較するバックアップがありません" -#: ../../enterprise/views/ncm/agent/details.php:545 +#: ../../enterprise/views/ncm/agent/details.php:546 msgid "Backup this configuration" msgstr "この設定をバックアップ" -#: ../../enterprise/views/ncm/agent/details.php:563 +#: ../../enterprise/views/ncm/agent/details.php:564 msgid "Configurations registry" msgstr "設定レジストリ" -#: ../../enterprise/views/ncm/agent/details.php:574 +#: ../../enterprise/views/ncm/agent/details.php:575 msgid "Diff between: backup - selected" msgstr "次の差分: バックアップ - 選択したもの" -#: ../../enterprise/views/ncm/agent/details.php:600 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:64 +#: ../../enterprise/views/ncm/agent/details.php:601 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:62 #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:107 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:119 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:100 #: ../../enterprise/godmode/modules/configure_local_component.php:495 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 +#: ../../enterprise/godmode/modules/local_components.php:165 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 +#: ../../enterprise/godmode/agentes/collections.agents.php:83 +#: ../../enterprise/godmode/agentes/collections.data.php:60 +#: ../../enterprise/godmode/agentes/collections.editor.php:114 +#: ../../enterprise/godmode/agentes/collections.php:140 #: ../../enterprise/godmode/agentes/manage_config_remote.php:65 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1379 -#: ../../godmode/agentes/planned_downtime.list.php:661 ../../godmode/menu.php:252 -#: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 -#: ../../include/functions_reports.php:905 -#: ../../include/functions_reports.php:909 -#: ../../include/class/ConfigPEN.class.php:327 +#: ../../enterprise/godmode/policies/policies.php:233 +#: ../../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_inventory_modules_form.php:45 +#: ../../godmode/agentes/planned_downtime.list.php:738 ../../godmode/menu.php:255 +#: ../../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 msgid "Configuration" msgstr "設定" -#: ../../enterprise/views/ncm/agent/details.php:624 +#: ../../enterprise/views/ncm/agent/details.php:625 msgid "Retrieve firmware version?" msgstr "ファームウエアバージョンを取得しますか?" -#: ../../enterprise/views/ncm/agent/details.php:625 +#: ../../enterprise/views/ncm/agent/details.php:626 msgid "" "This action will connect to the device to retrieve firmware version. Are you " "sure?" @@ -3544,78 +3766,82 @@ msgstr "" "この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろし" "いですか?" -#: ../../enterprise/views/ncm/agent/details.php:635 +#: ../../enterprise/views/ncm/agent/details.php:636 msgid "Get running config?" msgstr "running config を取得しますか?" -#: ../../enterprise/views/ncm/agent/details.php:636 +#: ../../enterprise/views/ncm/agent/details.php:637 msgid "" "This action will connect to the device to retrieve latest configuration. Are " "you sure?" msgstr "" "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" -#: ../../enterprise/views/ncm/agent/details.php:647 +#: ../../enterprise/views/ncm/agent/details.php:648 msgid "Backup latest config?" msgstr "最新の設定をバックアップしますた?" -#: ../../enterprise/views/ncm/agent/details.php:648 +#: ../../enterprise/views/ncm/agent/details.php:649 msgid "" "This action will overwrite current backup to use latest retrieved " "configuration. Are you sure?" msgstr "" "この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" -#: ../../enterprise/views/ncm/agent/details.php:656 +#: ../../enterprise/views/ncm/agent/details.php:657 msgid "Backup target config?" msgstr "対象の設定をバックアップしますか?" -#: ../../enterprise/views/ncm/agent/details.php:657 +#: ../../enterprise/views/ncm/agent/details.php:658 msgid "" "This action will overwrite current backup to use selected configuration. Are " "you sure?" msgstr "" "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" -#: ../../enterprise/views/ncm/agent/details.php:668 +#: ../../enterprise/views/ncm/agent/details.php:669 msgid "Restore device configuration?" msgstr "デバイス設定をリストアしますか?" -#: ../../enterprise/views/ncm/agent/details.php:669 +#: ../../enterprise/views/ncm/agent/details.php:670 msgid "" "This action will overwrite device configuration with latest backup. Are you " "sure?" msgstr "" "この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" -#: ../../enterprise/views/ncm/agent/details.php:688 +#: ../../enterprise/views/ncm/agent/details.php:689 msgid "Customize script execution" msgstr "カスタムスクリプト実行" -#: ../../enterprise/views/ncm/agent/details.php:689 -#: ../../include/ajax/events.php:2114 -#: ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3557 +#: ../../enterprise/views/ncm/agent/details.php:690 +#: ../../include/ajax/events.php:2199 +#: ../../include/class/ExternalTools.class.php:646 +#: ../../include/functions_snmp_browser.php:974 +#: ../../include/functions_snmp_browser.php:1134 +#: ../../include/functions_events.php:3710 msgid "Execute" msgstr "実行" #: ../../enterprise/views/ncm/templates/list.php:32 +#: ../../enterprise/views/ncm/templates/list.php:50 #: ../../enterprise/meta/include/functions_alerts_meta.php:129 #: ../../enterprise/meta/include/functions_alerts_meta.php:160 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:261 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:191 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:192 -#: ../../enterprise/godmode/reporting/visual_console_template.php:109 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2148 +#: ../../enterprise/godmode/modules/local_components.php:169 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:269 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:309 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:209 +#: ../../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:7974 -#: ../../enterprise/include/functions_reporting.php:8002 -#: ../../enterprise/include/functions_reporting.php:8073 -#: ../../godmode/agentes/configurar_agente.php:764 ../../godmode/menu.php:169 -#: ../../godmode/menu.php:272 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1999 -#: ../../include/functions_menu.php:510 -#: ../../include/class/ConfigPEN.class.php:332 +#: ../../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 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2027 +#: ../../include/functions_menu.php:585 +#: ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 msgid "Templates" @@ -3625,15 +3851,18 @@ msgstr "テンプレート" #: ../../enterprise/views/ncm/templates/edit.php:107 #: ../../enterprise/views/ncm/firmwares/edit.php:106 #: ../../enterprise/views/ncm/vendors/list.php:32 +#: ../../enterprise/views/ncm/vendors/list.php:50 #: ../../enterprise/views/ncm/vendors/edit.php:35 +#: ../../enterprise/views/ncm/vendors/edit.php:53 msgid "Vendors" msgstr "ベンダ" #: ../../enterprise/views/ncm/templates/list.php:75 #: ../../enterprise/views/ncm/templates/edit.php:134 -#: ../../enterprise/views/ncm/firmwares/list.php:76 +#: ../../enterprise/views/ncm/firmwares/list.php:75 #: ../../enterprise/views/ncm/firmwares/edit.php:133 #: ../../enterprise/views/ncm/models/list.php:32 +#: ../../enterprise/views/ncm/models/list.php:50 msgid "Models" msgstr "モデル" @@ -3642,8 +3871,12 @@ msgid "Scripts defined" msgstr "定義済みスクリプト" #: ../../enterprise/views/ncm/templates/edit.php:42 +#: ../../enterprise/views/ncm/templates/edit.php:60 #: ../../enterprise/views/ncm/devices/list.php:32 +#: ../../enterprise/views/ncm/devices/list.php:50 +#: ../../enterprise/views/ncm/firmwares/list.php:49 #: ../../enterprise/views/ncm/models/edit.php:37 +#: ../../enterprise/views/ncm/models/edit.php:55 msgid "Devices" msgstr "デバイス" @@ -3668,15 +3901,15 @@ msgstr "このスクリプトは、デバイスの可用性をテストするた msgid "Script: Test" msgstr "スクリプト: テスト" -#: ../../enterprise/views/ncm/templates/edit.php:176 +#: ../../enterprise/views/ncm/templates/edit.php:175 msgid "This script will be used to retrieve configuration from devices" msgstr "このスクリプトは、デバイスから設定を取得するために使用されます" -#: ../../enterprise/views/ncm/templates/edit.php:181 +#: ../../enterprise/views/ncm/templates/edit.php:180 msgid "Script: Get configuration" msgstr "スクリプト: 設定取得" -#: ../../enterprise/views/ncm/templates/edit.php:204 +#: ../../enterprise/views/ncm/templates/edit.php:203 msgid "" "This script will be used to apply configuration, previously backed up, to " "devices" @@ -3684,43 +3917,38 @@ msgstr "" "このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用され" "ます" -#: ../../enterprise/views/ncm/templates/edit.php:209 +#: ../../enterprise/views/ncm/templates/edit.php:208 msgid "Script: set configuration" msgstr "スクリプト: 設定投入" -#: ../../enterprise/views/ncm/templates/edit.php:232 +#: ../../enterprise/views/ncm/templates/edit.php:231 msgid "This script will be used to retrieve firmware version from devices" msgstr "" "このスクリプトは、デバイスからファームウェアバージョンを取得するために使用され" "ます" -#: ../../enterprise/views/ncm/templates/edit.php:237 +#: ../../enterprise/views/ncm/templates/edit.php:236 msgid "Script: get firmware" msgstr "スクリプト: ファームウエア取得" -#: ../../enterprise/views/ncm/templates/edit.php:259 +#: ../../enterprise/views/ncm/templates/edit.php:258 msgid "This script will be used to upgrade firmware version of the devices" msgstr "" "このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために" "使用されます" -#: ../../enterprise/views/ncm/templates/edit.php:264 +#: ../../enterprise/views/ncm/templates/edit.php:263 msgid "Script: set firmware" msgstr "スクリプト: ファームウエア設定" -#: ../../enterprise/views/ncm/templates/edit.php:286 +#: ../../enterprise/views/ncm/templates/edit.php:285 msgid "This script will be executed on the devices when selecting CUSTOM task" msgstr "このスクリプトは、カスタムタスクを選択したときにデバイスで実行されます" -#: ../../enterprise/views/ncm/templates/edit.php:291 +#: ../../enterprise/views/ncm/templates/edit.php:290 msgid "Script: custom task" msgstr "スクリプト: カスタムタスク" -#: ../../enterprise/views/ncm/devices/list.php:64 -#: ../../include/functions_reports.php:945 -msgid "NCM" -msgstr "NCM" - #: ../../enterprise/views/ncm/devices/list.php:69 msgid "" "WARNING: This is a new feature and is still at an early stage. It is available " @@ -3757,23 +3985,23 @@ msgid "Configure agents to use NCM templates" msgstr "NCM テンプレートを利用するようにエージェントを設定" #: ../../enterprise/views/ncm/devices/list.php:117 -#: ../../enterprise/godmode/servers/manage_export.php:140 -#: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/include/functions_ipam.php:2050 -#: ../../enterprise/tools/ipam/ipam_network.php:396 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 +#: ../../enterprise/godmode/servers/manage_export.php:176 +#: ../../enterprise/godmode/servers/manage_export_form.php:137 +#: ../../enterprise/include/functions_ipam.php:2111 +#: ../../enterprise/tools/ipam/ipam_network.php:423 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:671 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:254 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:253 #: ../../enterprise/tools/ipam/ipam_excel.php:139 -#: ../../enterprise/tools/ipam/ipam_ajax.php:359 -#: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../godmode/setup/setup_general.php:741 +#: ../../enterprise/tools/ipam/ipam_ajax.php:362 +#: ../../enterprise/tools/ipam/ipam_calculator.php:69 +#: ../../godmode/setup/setup_general.php:878 #: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "アドレス" #: ../../enterprise/views/ncm/devices/list.php:118 -#: ../../enterprise/views/ncm/firmwares/list.php:75 +#: ../../enterprise/views/ncm/firmwares/list.php:74 #: ../../enterprise/views/ncm/models/list.php:72 #: ../../enterprise/views/ncm/models/edit.php:88 msgid "Vendor" @@ -3788,39 +4016,43 @@ msgid "Last queued task" msgstr "最新のキュータスク" #: ../../enterprise/views/ncm/devices/list.php:122 -#: ../../enterprise/operation/services/services.service.php:133 -#: ../../enterprise/operation/services/services.list.php:510 -#: ../../enterprise/tools/ipam/ipam_list.php:655 +#: ../../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 #: ../../operation/agentes/group_view.php:80 -#: ../../operation/agentes/tactical.php:61 +#: ../../operation/agentes/tactical.php:63 msgid "Last update" msgstr "最終更新" #: ../../enterprise/views/ncm/devices/list.php:123 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:136 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:520 -#: ../../enterprise/include/functions_tasklist.php:179 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:157 +#: ../../enterprise/godmode/policies/policy_alerts.php:368 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:488 +#: ../../enterprise/include/functions_tasklist.php:180 #: ../../godmode/massive/massive_copy_modules.php:185 -#: ../../godmode/alerts/alert_list.list.php:499 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:614 +#: ../../godmode/alerts/alert_list.list.php:572 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:617 +#: ../../godmode/servers/plugin.php:996 +#: ../../operation/agentes/alerts_status.php:234 +#: ../../operation/agentes/alerts_status.php:235 msgid "Operations" msgstr "操作" -#: ../../enterprise/views/ncm/firmwares/list.php:32 +#: ../../enterprise/views/ncm/firmwares/list.php:31 msgid "Firmwares" msgstr "ファームウエア" -#: ../../enterprise/views/ncm/firmwares/list.php:74 -#: ../../enterprise/include/class/Omnishell.class.php:398 -#: ../../include/class/CredentialStore.class.php:841 -#: ../../include/class/CredentialStore.class.php:949 +#: ../../enterprise/views/ncm/firmwares/list.php:73 +#: ../../enterprise/include/class/Omnishell.class.php:405 +#: ../../include/class/CredentialStore.class.php:815 +#: ../../include/class/CredentialStore.class.php:925 msgid "Identifier" msgstr "識別子" #: ../../enterprise/views/ncm/firmwares/edit.php:41 +#: ../../enterprise/views/ncm/firmwares/edit.php:59 msgid "Firmware" msgstr "ファームウエア" @@ -3842,10 +4074,10 @@ msgstr "" #: ../../enterprise/views/ncm/firmwares/edit.php:149 #: ../../enterprise/meta/advanced/metasetup.consoles.php:484 #: ../../enterprise/meta/monitoring/custom_fields_csv.php:129 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:180 -#: ../../enterprise/meta/monitoring/group_view.php:239 -#: ../../enterprise/meta/monitoring/group_view.php:245 -#: ../../enterprise/meta/monitoring/tactical.php:223 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:182 +#: ../../enterprise/meta/monitoring/group_view.php:236 +#: ../../enterprise/meta/monitoring/group_view.php:242 +#: ../../enterprise/meta/monitoring/tactical.php:222 #: ../../enterprise/meta/include/functions_wizard_meta.php:977 #: ../../enterprise/meta/include/functions_wizard_meta.php:1062 #: ../../enterprise/meta/include/functions_wizard_meta.php:1265 @@ -3854,34 +4086,35 @@ 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:917 ../../enterprise/meta/index.php:986 -#: ../../enterprise/godmode/agentes/manage_config_remote.php:336 +#: ../../enterprise/meta/index.php:947 ../../enterprise/meta/index.php:1016 +#: ../../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 -#: ../../enterprise/godmode/services/services.service.php:740 -#: ../../enterprise/godmode/services/services.service.php:991 -#: ../../enterprise/godmode/services/services.elements.php:374 -#: ../../enterprise/godmode/setup/setup_history.php:739 -#: ../../enterprise/include/class/CommandCenter.class.php:564 -#: ../../enterprise/include/class/CommandCenter.class.php:603 -#: ../../enterprise/include/functions_reporting.php:4839 +#: ../../enterprise/godmode/services/services.service.php:735 +#: ../../enterprise/godmode/services/services.service.php:978 +#: ../../enterprise/godmode/services/services.elements.php:384 +#: ../../enterprise/godmode/setup/setup_history.php:808 +#: ../../enterprise/include/class/CommandCenter.class.php:566 +#: ../../enterprise/include/class/CommandCenter.class.php:605 +#: ../../enterprise/include/functions_reporting.php:4859 #: ../../enterprise/include/functions_services.php:1448 -#: ../../enterprise/include/functions_login.php:23 -#: ../../enterprise/operation/agentes/tag_view.php:132 -#: ../../enterprise/operation/services/services.service.php:123 -#: ../../enterprise/operation/services/services.service.php:174 -#: ../../enterprise/operation/services/massive/services.create.php:771 -#: ../../enterprise/operation/services/services.service_map.php:150 -#: ../../enterprise/operation/services/services.treeview_services.php:280 -#: ../../enterprise/operation/services/services.list.php:238 -#: ../../enterprise/operation/services/services.list.php:505 -#: ../../enterprise/operation/services/services.list.php:564 -#: ../../enterprise/operation/services/services.table_services.php:160 +#: ../../enterprise/include/functions_login.php:40 +#: ../../enterprise/operation/agentes/tag_view.php:131 +#: ../../enterprise/operation/services/services.service.php:114 +#: ../../enterprise/operation/services/services.service.php:165 +#: ../../enterprise/operation/services/massive/services.create.php:767 +#: ../../enterprise/operation/services/services.service_map.php:140 +#: ../../enterprise/operation/services/services.treeview_services.php:306 +#: ../../enterprise/operation/services/services.list.php:206 +#: ../../enterprise/operation/services/services.list.php:543 +#: ../../enterprise/operation/services/services.list.php:602 +#: ../../enterprise/operation/services/services.table_services.php:142 #: ../../update_manager_client/views/offline.php:80 -#: ../../extensions/dbmanager.php:114 +#: ../../extensions/dbmanager.php:124 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1064 -#: ../../godmode/users/configure_user.php:1054 -#: ../../godmode/users/configure_user.php:1979 +#: ../../godmode/groups/group_list.php:1099 +#: ../../godmode/users/configure_user.php:1013 +#: ../../godmode/users/configure_user.php:1974 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 @@ -3889,37 +4122,41 @@ msgstr "" #: ../../godmode/massive/massive_edit_agents.php:1061 #: ../../godmode/massive/massive_edit_modules.php:386 #: ../../godmode/massive/massive_edit_modules.php:472 -#: ../../godmode/setup/setup_netflow.php:71 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3785 +#: ../../godmode/setup/setup_sflow.php:84 +#: ../../godmode/setup/setup_netflow.php:84 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3831 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2485 -#: ../../include/functions.php:1081 ../../include/functions.php:1319 -#: ../../include/functions.php:1322 ../../include/functions.php:1361 -#: ../../include/functions_graph.php:3342 ../../include/functions_graph.php:3344 -#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:298 -#: ../../include/functions_ui.php:2614 +#: ../../include/functions_reporting_html.php:2575 +#: ../../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/functions_massive_operations.php:149 -#: ../../include/class/SatelliteAgent.class.php:1358 -#: ../../include/class/SatelliteAgent.class.php:1383 -#: ../../include/class/Diagnostics.class.php:1817 -#: ../../include/class/AgentWizard.class.php:1398 -#: ../../include/class/AgentWizard.class.php:4144 +#: ../../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/AgentWizard.class.php:1401 +#: ../../include/class/AgentWizard.class.php:4147 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../include/functions_events.php:3081 ../../index.php:1229 -#: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/users/user_edit.php:277 -#: ../../operation/agentes/estado_agente.php:269 -#: ../../operation/agentes/status_monitor.php:493 -#: ../../operation/agentes/group_view.php:227 -#: ../../operation/agentes/group_view.php:232 -#: ../../operation/agentes/estado_monitores.php:525 -#: ../../operation/agentes/tactical.php:180 -#: ../../operation/netflow/nf_live_view.php:459 -#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:143 +#: ../../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 +#: ../../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/tactical.php:198 +#: ../../operation/netflow/nf_live_view.php:339 +#: ../../operation/gis_maps/render_view.php:166 ../../general/logon_ok.php:149 msgid "Warning" msgstr "警告" @@ -3936,216 +4173,224 @@ msgid "icon" msgstr "アイコン" #: ../../enterprise/views/ipam/sites/list.php:48 -#: ../../enterprise/views/ipam/sites/edit.php:64 -#: ../../godmode/modules/manage_nc_groups_form.php:71 -#: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:853 -#: ../../godmode/agentes/agent_manager.php:574 +#: ../../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/reporting/visual_console_builder.elements.php:108 -#: ../../include/functions_visual_map_editor.php:956 +#: ../../godmode/reporting/visual_console_builder.elements.php:124 +#: ../../include/functions_visual_map_editor.php:954 #: ../../include/rest-api/models/VisualConsole/Item.php:2176 #: ../../operation/agentes/ver_agente.php:1236 -#: ../../operation/agentes/estado_generalagente.php:425 +#: ../../operation/agentes/estado_generalagente.php:511 msgid "Parent" msgstr "親" -#: ../../enterprise/views/ipam/sites/edit.php:71 -#: ../../enterprise/meta/advanced/metasetup.visual.php:289 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:406 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:407 +#: ../../enterprise/views/ipam/sites/edit.php:61 +#: ../../enterprise/meta/advanced/metasetup.visual.php:308 +#: ../../enterprise/meta/advanced/metasetup.visual.php:573 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:393 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:394 #: ../../enterprise/meta/advanced/metasetup.relations.php:245 -#: ../../enterprise/meta/advanced/metasetup.setup.php:420 -#: ../../enterprise/meta/advanced/metasetup.setup.php:426 -#: ../../enterprise/meta/advanced/metasetup.setup.php:436 -#: ../../enterprise/meta/advanced/metasetup.setup.php:442 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:256 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:266 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:363 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:420 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:688 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:759 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 -#: ../../enterprise/meta/event/custom_events.php:227 -#: ../../enterprise/meta/event/custom_events.php:273 +#: ../../enterprise/meta/advanced/metasetup.setup.php:677 +#: ../../enterprise/meta/advanced/metasetup.setup.php:690 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:258 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:298 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:355 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:623 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:694 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 +#: ../../enterprise/meta/event/custom_events.php:223 +#: ../../enterprise/meta/event/custom_events.php:269 #: ../../enterprise/godmode/modules/configure_local_component.php:555 -#: ../../enterprise/godmode/modules/configure_local_component.php:710 -#: ../../enterprise/godmode/modules/configure_local_component.php:716 -#: ../../enterprise/godmode/modules/configure_local_component.php:724 -#: ../../enterprise/godmode/modules/configure_local_component.php:730 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:992 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:473 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:604 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 -#: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:590 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:699 +#: ../../enterprise/godmode/modules/configure_local_component.php:713 +#: ../../enterprise/godmode/modules/configure_local_component.php:719 +#: ../../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_webux.php:152 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:637 #: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1730 +#: ../../enterprise/godmode/policies/policy_agents.php:1708 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 -#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 +#: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:219 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:132 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:144 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:396 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:473 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:549 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:550 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:551 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:552 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:601 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:151 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:406 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:483 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:559 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:560 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:561 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:562 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:611 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:28 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:205 -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:244 +#: ../../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_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:154 +#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:162 #: ../../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 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:810 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:820 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:194 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:578 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:597 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:611 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:621 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1181 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:250 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:868 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:889 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:904 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:913 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:923 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:927 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:954 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:315 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:683 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:702 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:716 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:726 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:736 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:740 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:766 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:60 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:527 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:544 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:560 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:576 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:600 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:616 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:658 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:691 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:702 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:721 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:193 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:398 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:417 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:428 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:528 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:545 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:561 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:577 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:601 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:617 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:659 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:692 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:722 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:195 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:488 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:507 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:520 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:529 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:541 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:573 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:81 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:401 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:424 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:937 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:953 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:974 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:983 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1340 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1368 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1389 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1416 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:390 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:413 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:936 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:952 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:973 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:982 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1339 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1367 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1388 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:1415 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:184 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:451 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:596 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:604 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:614 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:636 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:689 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:722 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:744 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:754 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:775 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:797 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:822 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:845 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:866 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1148 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1287 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1297 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:435 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:592 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:600 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:610 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:632 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:685 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:718 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:740 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:750 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:771 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:793 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:818 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:841 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:862 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1136 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1260 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1275 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1285 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1300 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:315 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3039 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3256 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3351 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:215 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:247 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:253 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:265 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:275 -#: ../../enterprise/godmode/servers/manage_export_form.php:85 -#: ../../enterprise/include/functions_tasklist.php:345 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3028 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3245 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3340 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:308 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:340 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:346 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:358 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:368 +#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/include/functions_tasklist.php:346 +#: ../../enterprise/include/functions_tasklist.php:611 #: ../../enterprise/include/ajax/ipam.ajax.php:400 #: ../../enterprise/include/ajax/ipam.ajax.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:860 -#: ../../enterprise/include/class/Omnishell.class.php:861 -#: ../../enterprise/include/class/SAP.app.php:615 -#: ../../enterprise/include/class/SAP.app.php:811 -#: ../../enterprise/include/class/SAP.app.php:812 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:897 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:924 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1034 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1187 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1197 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2004 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2513 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3525 -#: ../../enterprise/operation/agentes/ver_agente.php:38 -#: ../../enterprise/operation/log/log_viewer.php:736 -#: ../../enterprise/tools/ipam/ipam_network.php:595 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:611 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:783 -#: ../../enterprise/tools/ipam/ipam_list.php:112 -#: ../../enterprise/tools/ipam/ipam_list.php:135 -#: ../../enterprise/tools/ipam/ipam_list.php:157 -#: ../../enterprise/tools/ipam/ipam_editor.php:169 +#: ../../enterprise/include/ajax/policy.ajax.php:215 +#: ../../enterprise/include/ajax/policy.ajax.php:427 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:715 +#: ../../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/AlertCorrelationManager.class.php:922 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:949 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1059 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1202 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1211 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2018 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2545 +#: ../../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/tools/ipam/ipam_network.php:622 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:565 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:748 +#: ../../enterprise/tools/ipam/ipam_list.php:80 +#: ../../enterprise/tools/ipam/ipam_list.php:105 +#: ../../enterprise/tools/ipam/ipam_list.php:130 #: ../../enterprise/tools/ipam/ipam_editor.php:206 -#: ../../enterprise/tools/ipam/ipam_editor.php:234 -#: ../../godmode/modules/manage_nc_groups_form.php:77 +#: ../../enterprise/tools/ipam/ipam_editor.php:236 +#: ../../enterprise/tools/ipam/ipam_editor.php:268 +#: ../../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:645 -#: ../../godmode/modules/manage_network_components_form.php:651 -#: ../../godmode/modules/manage_network_components_form.php:660 -#: ../../godmode/modules/manage_network_components_form.php:666 -#: ../../godmode/groups/configure_group.php:188 -#: ../../godmode/groups/configure_group.php:210 -#: ../../godmode/users/configure_user.php:1312 -#: ../../godmode/users/configure_user.php:1326 -#: ../../godmode/users/configure_user.php:1519 -#: ../../godmode/users/configure_user.php:1531 -#: ../../godmode/agentes/status_monitor_custom_fields.php:218 -#: ../../godmode/agentes/status_monitor_custom_fields.php:266 +#: ../../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/agentes/module_manager_editor_plugin.php:55 -#: ../../godmode/agentes/module_manager_editor_network.php:170 -#: ../../godmode/agentes/module_manager_editor_network.php:509 -#: ../../godmode/agentes/agent_manager.php:437 -#: ../../godmode/agentes/agent_manager.php:470 -#: ../../godmode/agentes/agent_manager.php:727 -#: ../../godmode/agentes/agent_manager.php:922 -#: ../../godmode/agentes/module_manager_editor_common.php:692 -#: ../../godmode/agentes/module_manager_editor_common.php:747 -#: ../../godmode/agentes/module_manager_editor_common.php:1163 -#: ../../godmode/agentes/module_manager_editor_common.php:1419 -#: ../../godmode/agentes/module_manager_editor_common.php:1426 -#: ../../godmode/agentes/module_manager_editor_common.php:1437 -#: ../../godmode/agentes/module_manager_editor_common.php:1445 +#: ../../godmode/agentes/module_manager_editor_network.php:181 +#: ../../godmode/agentes/module_manager_editor_network.php:514 +#: ../../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/snmpconsole/snmp_alert.php:40 -#: ../../godmode/snmpconsole/snmp_alert.php:1169 +#: ../../godmode/snmpconsole/snmp_alert.php:1781 #: ../../godmode/massive/massive_copy_modules.php:374 #: ../../godmode/massive/massive_copy_modules.php:508 #: ../../godmode/massive/massive_delete_modules.php:502 @@ -4158,90 +4403,94 @@ msgstr "親" #: ../../godmode/massive/massive_delete_modules.php:739 #: ../../godmode/massive/massive_delete_modules.php:805 #: ../../godmode/massive/massive_delete_modules.php:835 -#: ../../godmode/massive/massive_edit_users.php:339 -#: ../../godmode/massive/massive_edit_users.php:400 -#: ../../godmode/massive/massive_edit_users.php:612 -#: ../../godmode/massive/massive_edit_users.php:620 -#: ../../godmode/massive/massive_edit_users.php:631 -#: ../../godmode/massive/massive_edit_users.php:639 +#: ../../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_add_alerts.php:304 #: ../../godmode/massive/massive_edit_plugins.php:338 #: ../../godmode/massive/massive_edit_agents.php:754 #: ../../godmode/massive/massive_delete_alerts.php:366 #: ../../godmode/massive/massive_add_action_alerts.php:342 #: ../../godmode/massive/massive_edit_modules.php:458 -#: ../../godmode/massive/massive_edit_modules.php:919 -#: ../../godmode/massive/massive_edit_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1169 -#: ../../godmode/massive/massive_edit_modules.php:1204 -#: ../../godmode/massive/massive_edit_modules.php:1259 -#: ../../godmode/massive/massive_edit_modules.php:1345 -#: ../../godmode/massive/massive_edit_modules.php:1418 -#: ../../godmode/massive/massive_edit_modules.php:1527 -#: ../../godmode/massive/massive_edit_modules.php:1528 -#: ../../godmode/massive/massive_edit_modules.php:1529 -#: ../../godmode/massive/massive_edit_modules.php:1530 -#: ../../godmode/massive/massive_edit_modules.php:1769 -#: ../../godmode/massive/massive_edit_modules.php:1829 -#: ../../godmode/alerts/alert_actions.php:291 -#: ../../godmode/alerts/alert_list.list.php:762 +#: ../../godmode/massive/massive_edit_modules.php:934 +#: ../../godmode/massive/massive_edit_modules.php:1068 +#: ../../godmode/massive/massive_edit_modules.php:1184 +#: ../../godmode/massive/massive_edit_modules.php:1219 +#: ../../godmode/massive/massive_edit_modules.php:1274 +#: ../../godmode/massive/massive_edit_modules.php:1360 +#: ../../godmode/massive/massive_edit_modules.php:1433 +#: ../../godmode/massive/massive_edit_modules.php:1542 +#: ../../godmode/massive/massive_edit_modules.php:1543 +#: ../../godmode/massive/massive_edit_modules.php:1544 +#: ../../godmode/massive/massive_edit_modules.php:1545 +#: ../../godmode/massive/massive_edit_modules.php:1784 +#: ../../godmode/massive/massive_edit_modules.php:1844 +#: ../../godmode/alerts/alert_actions.php:304 +#: ../../godmode/alerts/alert_list.list.php:831 #: ../../godmode/alerts/alert_commands.php:304 -#: ../../godmode/alerts/alert_commands.php:318 -#: ../../godmode/alerts/alert_commands.php:463 -#: ../../godmode/alerts/alert_commands.php:476 -#: ../../godmode/alerts/configure_alert_template.php:650 -#: ../../godmode/alerts/configure_alert_template.php:777 -#: ../../godmode/alerts/configure_alert_template.php:798 -#: ../../godmode/setup/os.builder.php:41 -#: ../../godmode/setup/setup_visuals.php:401 -#: ../../godmode/setup/setup_visuals.php:420 -#: ../../godmode/setup/setup_visuals.php:950 -#: ../../godmode/setup/setup_general.php:903 -#: ../../godmode/setup/setup_general.php:920 -#: ../../godmode/setup/setup_general.php:929 -#: ../../godmode/setup/setup_general.php:946 -#: ../../godmode/reporting/create_container.php:489 -#: ../../godmode/reporting/graph_builder.graph_editor.php:329 -#: ../../godmode/reporting/reporting_builder.item_editor.php:208 -#: ../../godmode/reporting/reporting_builder.item_editor.php:983 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2147 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2220 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2241 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2273 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3186 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 -#: ../../godmode/reporting/visual_console_builder.elements.php:482 -#: ../../godmode/reporting/visual_console_builder.elements.php:633 -#: ../../godmode/reporting/visual_console_builder.elements.php:643 -#: ../../godmode/reporting/visual_console_builder.wizard.php:266 -#: ../../godmode/reporting/visual_console_builder.wizard.php:438 -#: ../../godmode/reporting/visual_console_builder.wizard.php:451 -#: ../../godmode/reporting/visual_console_builder.wizard.php:485 -#: ../../godmode/reporting/visual_console_builder.wizard.php:498 -#: ../../godmode/reporting/visual_console_builder.wizard.php:536 -#: ../../godmode/reporting/visual_console_builder.wizard.php:537 -#: ../../godmode/reporting/visual_console_builder.wizard.php:732 -#: ../../godmode/reporting/visual_console_builder.wizard.php:742 -#: ../../godmode/reporting/visual_console_builder.wizard.php:774 -#: ../../godmode/events/event_edit_filter.php:799 -#: ../../godmode/events/custom_events.php:200 -#: ../../godmode/events/custom_events.php:248 -#: ../../godmode/wizards/HostDevices.class.php:1102 +#: ../../godmode/alerts/alert_commands.php:319 +#: ../../godmode/alerts/alert_commands.php:465 +#: ../../godmode/alerts/alert_commands.php:478 +#: ../../godmode/alerts/configure_alert_template.php:663 +#: ../../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_general.php:1077 +#: ../../godmode/setup/setup_general.php:1094 +#: ../../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/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/visual_console_builder.elements.php:525 +#: ../../godmode/reporting/visual_console_builder.elements.php:676 +#: ../../godmode/reporting/visual_console_builder.elements.php:686 +#: ../../godmode/reporting/visual_console_builder.wizard.php:270 +#: ../../godmode/reporting/visual_console_builder.wizard.php:453 +#: ../../godmode/reporting/visual_console_builder.wizard.php:464 +#: ../../godmode/reporting/visual_console_builder.wizard.php:525 +#: ../../godmode/reporting/visual_console_builder.wizard.php:546 +#: ../../godmode/reporting/visual_console_builder.wizard.php:587 +#: ../../godmode/reporting/visual_console_builder.wizard.php:588 +#: ../../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/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:957 -#: ../../include/functions_visual_map_editor.php:1010 -#: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/functions.php:1119 ../../include/functions_cron.php:682 -#: ../../include/functions_networkmap.php:1519 +#: ../../include/functions_visual_map_editor.php:955 +#: ../../include/functions_visual_map_editor.php:1008 +#: ../../include/functions_visual_map_editor.php:1070 +#: ../../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/custom_fields.php:670 ../../include/ajax/events.php:590 +#: ../../include/ajax/module.php:2155 ../../include/ajax/module.php:2614 +#: ../../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/functions_integriaims.php:135 -#: ../../include/functions_profile.php:332 -#: ../../include/functions_profile.php:350 -#: ../../include/functions_profile.php:365 +#: ../../include/functions_profile.php:349 +#: ../../include/functions_profile.php:367 +#: ../../include/functions_profile.php:382 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 @@ -4251,32 +4500,33 @@ msgstr "親" #: ../../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/functions_html.php:376 ../../include/functions_html.php:816 -#: ../../include/functions_html.php:1239 ../../include/functions_html.php:1291 -#: ../../include/functions_html.php:1338 ../../include/functions_html.php:1339 -#: ../../include/functions_html.php:1392 ../../include/functions_html.php:1442 -#: ../../include/functions_html.php:6136 -#: ../../include/class/NetworkMap.class.php:2923 -#: ../../include/class/NetworkMap.class.php:3157 -#: ../../include/class/NetworkMap.class.php:3180 -#: ../../include/class/NetworkMap.class.php:3252 -#: ../../include/class/NetworkMap.class.php:3262 -#: ../../include/class/NetworkMap.class.php:3347 -#: ../../include/class/NetworkMap.class.php:3363 -#: ../../include/class/SnmpConsole.class.php:377 -#: ../../include/class/SnmpConsole.class.php:1373 -#: ../../include/class/AgentWizard.class.php:728 -#: ../../include/class/AgentWizard.class.php:784 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:365 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:377 +#: ../../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/class/SnmpConsole.class.php:314 +#: ../../include/class/SnmpConsole.class.php:1375 +#: ../../include/class/AgentWizard.class.php:729 +#: ../../include/class/AgentWizard.class.php:785 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:369 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:381 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:301 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:445 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:308 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:324 #: ../../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/module_icon.php:384 -#: ../../include/lib/Dashboard/Widgets/module_value.php:359 +#: ../../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 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:355 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:367 @@ -4285,339 +4535,254 @@ msgstr "親" #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:368 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:564 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:392 -#: ../../include/lib/Dashboard/Widgets/module_status.php:375 +#: ../../include/lib/Dashboard/Widgets/module_status.php:379 #: ../../include/lib/Dashboard/Widgets/single_graph.php:329 #: ../../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:3360 -#: ../../operation/users/user_edit.php:479 -#: ../../operation/users/user_edit.php:491 -#: ../../operation/users/user_edit.php:529 -#: ../../operation/users/user_edit.php:565 -#: ../../operation/users/user_edit.php:580 -#: ../../operation/users/user_edit.php:997 -#: ../../operation/users/user_edit.php:1004 -#: ../../operation/users/user_edit.php:1013 -#: ../../operation/users/user_edit.php:1020 -#: ../../operation/agentes/pandora_networkmap.editor.php:367 -#: ../../operation/agentes/pandora_networkmap.view.php:211 +#: ../../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 +#: ../../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:387 -#: ../../operation/snmpconsole/snmp_browser.php:402 -#: ../../operation/snmpconsole/snmp_browser.php:412 -#: ../../operation/snmpconsole/snmp_browser.php:531 -#: ../../operation/gis_maps/render_view.php:163 -#: ../../operation/incidents/list_integriaims_incidents.php:530 -#: ../../operation/incidents/list_integriaims_incidents.php:534 -#: ../../operation/events/events.php:2570 +#: ../../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/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 msgid "None" msgstr "なし" -#: ../../enterprise/meta/screens/screens.visualmap.php:71 +#: ../../enterprise/meta/screens/screens.visualmap.php:62 msgid "Create visualmap" msgstr "ビジュアルマップの作成" -#: ../../enterprise/meta/screens/screens.visualmap.php:163 -#: ../../enterprise/meta/screens/screens.visualmap.php:194 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:106 -#: ../../enterprise/operation/agentes/policy_view.php:70 -#: ../../godmode/agentes/configurar_agente.php:384 -#: ../../godmode/agentes/modificar_agente.php:82 -#: ../../godmode/agentes/modificar_agente.php:832 -#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:574 -#: ../../godmode/setup/setup_visuals.php:163 -#: ../../godmode/setup/setup_visuals.php:228 -#: ../../godmode/setup/setup_visuals.php:282 -#: ../../godmode/setup/setup_visuals.php:287 -#: ../../godmode/setup/setup_visuals.php:326 -#: ../../godmode/setup/setup_visuals.php:363 -#: ../../godmode/setup/setup_visuals.php:385 -#: ../../godmode/setup/setup_visuals.php:410 -#: ../../godmode/setup/setup_visuals.php:429 -#: ../../godmode/setup/setup_visuals.php:448 -#: ../../godmode/setup/setup_visuals.php:467 -#: ../../godmode/setup/setup_visuals.php:609 -#: ../../godmode/reporting/visual_console_builder.php:851 -#: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/lib/ClusterViewer/ClusterManager.php:601 -#: ../../operation/tree.php:187 ../../operation/visual_console/view.php:200 -#: ../../operation/visual_console/legacy_view.php:193 -#: ../../operation/agentes/estado_agente.php:857 -#: ../../operation/agentes/estado_agente.php:859 -#: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/ver_agente.php:1946 -msgid "View" -msgstr "表示" - -#: ../../enterprise/meta/screens/screens.visualmap.php:206 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 -#: ../../godmode/reporting/visual_console_builder.php:845 -#: ../../operation/visual_console/legacy_view.php:183 -msgid "Builder" -msgstr "ビルダ" - -#: ../../enterprise/meta/screens/screens.visualmap.php:219 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:61 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:123 -#: ../../enterprise/meta/general/main_header.php:134 -#: ../../enterprise/meta/general/logon_ok.php:48 -#: ../../enterprise/meta/general/main_menu.php:246 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:95 -#: ../../enterprise/include/functions_reporting.php:60 -#: ../../enterprise/include/functions_reporting.php:7981 -#: ../../enterprise/include/functions_reporting.php:8007 -#: ../../godmode/reporting/visual_console_builder.php:840 -#: ../../godmode/reporting/visual_console_builder.wizard.php:518 -#: ../../operation/visual_console/view.php:190 -#: ../../operation/visual_console/legacy_view.php:175 -msgid "Wizard" -msgstr "設定追加" - -#: ../../enterprise/meta/screens/screens.visualmap.php:230 -#: ../../godmode/reporting/visual_console_builder.php:828 -#: ../../operation/visual_console/view.php:170 -#: ../../operation/visual_console/legacy_view.php:155 -msgid "List elements" -msgstr "エレメント一覧" - -#: ../../enterprise/meta/screens/screens.visualmap.php:241 -#: ../../godmode/reporting/visual_console_builder.php:824 -#: ../../godmode/reporting/graph_builder.php:304 -#: ../../godmode/reporting/reporting_builder.main.php:73 -#: ../../godmode/reporting/reporting_builder.php:3617 -#: ../../operation/visual_console/view.php:162 -#: ../../operation/visual_console/legacy_view.php:147 -#: ../../operation/reporting/reporting_viewer.php:139 -#: ../../operation/reporting/graph_viewer.php:193 -msgid "Main data" -msgstr "メインデータ" - -#: ../../enterprise/meta/screens/screens.visualmap.php:261 -#: ../../godmode/reporting/visual_console_builder.php:820 -#: ../../operation/visual_console/view.php:152 -#: ../../operation/visual_console/legacy_view.php:137 -msgid "Show link to public Visual Console" -msgstr "パブリックビジュアルコンソール表示" - -#: ../../enterprise/meta/screens/screens.visualmap.php:286 -#: ../../godmode/reporting/visual_console_builder.php:816 -#: ../../operation/visual_console/view.php:124 -#: ../../operation/visual_console/legacy_view.php:121 -msgid "Visual consoles list" -msgstr "ビジュアルコンソール一覧" - -#: ../../enterprise/meta/screens/screens.visualmap.php:297 -#: ../../godmode/reporting/visual_console_builder.php:859 -msgid "New visual console" -msgstr "新規ビジュアルコンソール" - -#: ../../enterprise/meta/screens/screens.visualmap.php:305 -#: ../../enterprise/meta/screens/screens.visualmap.php:310 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:121 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:127 -#: ../../enterprise/godmode/reporting/visual_console_template.php:122 -#: ../../enterprise/godmode/reporting/visual_console_template.php:128 -#: ../../extensions/resource_exportation.php:436 -#: ../../godmode/users/configure_user.php:1349 -#: ../../godmode/massive/massive_edit_users.php:275 -#: ../../godmode/reporting/visual_console_builder.php:882 -#: ../../godmode/reporting/map_builder.php:134 -#: ../../godmode/reporting/map_builder.php:140 -#: ../../godmode/reporting/visual_console_favorite.php:131 -#: ../../godmode/reporting/visual_console_favorite.php:137 -#: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 -#: ../../operation/users/user_edit.php:434 -#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:186 -#: ../../operation/menu.php:190 -msgid "Visual console" -msgstr "ビジュアルコンソール" - -#: ../../enterprise/meta/screens/screens.php:37 -#: ../../enterprise/meta/general/main_header.php:232 -#: ../../enterprise/meta/general/logon_ok.php:84 -#: ../../enterprise/meta/general/main_menu.php:380 -msgid "Screens" -msgstr "画面" - #: ../../enterprise/meta/advanced/servers.build_table.php:34 #: ../../godmode/servers/servers.build_table.php:52 msgid "There are no servers configured into the database" msgstr "データベースにサーバがありません。" -#: ../../enterprise/meta/advanced/servers.build_table.php:63 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:881 -#: ../../enterprise/godmode/servers/list_satellite.php:39 -#: ../../enterprise/include/functions_reporting_csv.php:725 -#: ../../enterprise/include/class/AgentRepository.class.php:380 -#: ../../enterprise/include/class/AgentRepository.class.php:687 -#: ../../enterprise/tools/ipam/ipam_calculator.php:52 -#: ../../godmode/extensions.php:139 -#: ../../godmode/update_manager/update_manager.history.php:40 -#: ../../godmode/reporting/reporting_builder.item_editor.php:78 -#: ../../godmode/servers/servers.build_table.php:82 -#: ../../include/functions_reporting_html.php:1593 -#: ../../include/functions_menu.php:834 -#: ../../include/functions_snmp_browser.php:746 -#: ../../general/reporting_console_node.php:69 -msgid "Version" -msgstr "バージョン" - -#: ../../enterprise/meta/advanced/servers.build_table.php:64 -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:65 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:444 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:712 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:791 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:286 +#: ../../enterprise/meta/advanced/servers.build_table.php:65 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:63 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:379 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:647 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:726 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:291 #: ../../enterprise/meta/monitoring/group_view.php:155 -#: ../../enterprise/meta/monitoring/group_view.php:221 +#: ../../enterprise/meta/monitoring/group_view.php:218 #: ../../enterprise/meta/include/functions_wizard_meta.php:406 #: ../../enterprise/meta/include/functions_wizard_meta.php:1821 -#: ../../enterprise/meta/agentsearch.php:140 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:111 +#: ../../enterprise/meta/agentsearch.php:138 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:132 #: ../../enterprise/godmode/policies/policy_modules.php:459 -#: ../../enterprise/godmode/policies/policies.php:513 +#: ../../enterprise/godmode/policies/policy_modules.php:472 +#: ../../enterprise/godmode/policies/policies.php:581 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:128 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:176 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:473 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/include/functions_reporting_pdf.php:887 -#: ../../enterprise/include/functions_policies.php:3723 -#: ../../enterprise/operation/agentes/tag_view.php:606 -#: ../../enterprise/operation/services/massive/services.create.php:989 -#: ../../enterprise/operation/services/massive/service.create.elements.php:384 -#: ../../enterprise/operation/services/services.service_map.php:163 -#: ../../extensions/agents_modules.php:758 -#: ../../godmode/agentes/configurar_agente.php:417 -#: ../../godmode/agentes/configurar_agente.php:748 -#: ../../godmode/agentes/modificar_agente.php:814 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:219 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:300 +#: ../../enterprise/include/functions_reporting_pdf.php:889 +#: ../../enterprise/include/functions_policies.php:3693 +#: ../../enterprise/operation/agentes/tag_view.php:700 +#: ../../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 +#: ../../godmode/agentes/configurar_agente.php:423 +#: ../../godmode/agentes/configurar_agente.php:735 +#: ../../godmode/agentes/modificar_agente.php:820 #: ../../godmode/agentes/planned_downtime.list.php:85 -#: ../../godmode/agentes/planned_downtime.list.php:115 -#: ../../godmode/agentes/planned_downtime.editor.php:1210 -#: ../../godmode/agentes/planned_downtime.editor.php:1285 +#: ../../godmode/agentes/planned_downtime.list.php:116 +#: ../../godmode/agentes/planned_downtime.editor.php:1360 +#: ../../godmode/agentes/planned_downtime.editor.php:1437 #: ../../godmode/massive/massive_copy_modules.php:199 #: ../../godmode/massive/massive_delete_modules.php:463 #: ../../godmode/massive/massive_edit_plugins.php:383 #: ../../godmode/massive/massive_edit_modules.php:425 -#: ../../godmode/reporting/reporting_builder.list_items.php:210 -#: ../../godmode/reporting/reporting_builder.list_items.php:239 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1918 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2139 -#: ../../godmode/reporting/visual_console_builder.wizard.php:432 -#: ../../godmode/servers/servers.build_table.php:83 +#: ../../godmode/reporting/reporting_builder.list_items.php:228 +#: ../../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 #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 #: ../../mobile/operation/agent.php:327 -#: ../../include/functions_reporting_html.php:2005 -#: ../../include/functions_reporting_html.php:5575 -#: ../../include/functions_reports.php:733 -#: ../../include/functions_reports.php:737 -#: ../../include/functions_reports.php:741 +#: ../../include/functions_reporting_html.php:2094 +#: ../../include/functions_reporting_html.php:5662 #: ../../include/functions_reports.php:745 #: ../../include/functions_reports.php:749 #: ../../include/functions_reports.php:753 #: ../../include/functions_reports.php:757 #: ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 ../../include/functions_html.php:1715 -#: ../../include/functions_html.php:5611 +#: ../../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/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:331 -#: ../../operation/search_agents.php:55 ../../operation/tree.php:114 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:344 +#: ../../operation/search_agents.php:55 ../../operation/tree.php:115 #: ../../operation/search_results.php:159 -#: ../../operation/agentes/estado_agente.php:760 -#: ../../operation/agentes/graphs.php:188 -#: ../../operation/agentes/exportdata.php:282 -#: ../../operation/agentes/group_view.php:184 -#: ../../operation/agentes/group_view.php:217 +#: ../../operation/agentes/estado_agente.php:1046 +#: ../../operation/agentes/graphs.php:203 +#: ../../operation/agentes/exportdata.php:354 +#: ../../operation/agentes/group_view.php:185 +#: ../../operation/agentes/group_view.php:235 msgid "Modules" msgstr "モジュール" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:82 msgid "Lag" msgstr "遅延" -#: ../../enterprise/meta/advanced/servers.build_table.php:65 -#: ../../godmode/servers/servers.build_table.php:84 +#: ../../enterprise/meta/advanced/servers.build_table.php:66 +#: ../../godmode/servers/servers.build_table.php:82 msgid "Avg. Delay(sec)/Modules delayed" msgstr "平均遅延(秒)/遅延モジュール" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../enterprise/meta/advanced/servers.build_table.php:67 +#: ../../godmode/servers/servers.build_table.php:83 msgid "T/Q" msgstr "T/Q" -#: ../../enterprise/meta/advanced/servers.build_table.php:66 -#: ../../godmode/servers/servers.build_table.php:85 +#: ../../enterprise/meta/advanced/servers.build_table.php:67 +#: ../../godmode/servers/servers.build_table.php:83 msgid "Threads / Queued modules currently" msgstr "スレッド数 / 現在キューに溜まっているモジュール数" -#: ../../enterprise/meta/advanced/servers.build_table.php:68 -#: ../../enterprise/include/class/DatabaseHA.class.php:798 -#: ../../enterprise/tools/ipam/ipam_ajax.php:494 -#: ../../godmode/agentes/agent_incidents.php:93 -#: ../../godmode/servers/servers.build_table.php:87 +#: ../../enterprise/meta/advanced/servers.build_table.php:69 +#: ../../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 #: ../../operation/incidents/integriaims_export_csv.php:86 msgid "Updated" msgstr "更新" -#: ../../enterprise/meta/advanced/servers.build_table.php:72 -#: ../../enterprise/meta/include/functions_autoprovision.php:644 -#: ../../enterprise/godmode/modules/local_components.php:628 -#: ../../enterprise/godmode/policies/policy_alerts.php:354 -#: ../../enterprise/godmode/policies/policies.php:413 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:224 +#: ../../enterprise/meta/advanced/servers.build_table.php:73 +#: ../../enterprise/meta/include/functions_autoprovision.php:701 +#: ../../enterprise/godmode/modules/local_components.php:648 +#: ../../enterprise/godmode/policies/policy_alerts.php:368 +#: ../../enterprise/godmode/policies/policies.php:440 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:243 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:261 -#: ../../godmode/users/profile_list.php:349 ../../godmode/users/user_list.php:547 -#: ../../godmode/alerts/alert_list.list.php:499 -#: ../../godmode/alerts/alert_templates.php:388 -#: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../godmode/reporting/graphs.php:323 -#: ../../godmode/reporting/reporting_builder.php:955 -#: ../../godmode/reporting/reporting_builder.php:1154 -#: ../../godmode/servers/servers.build_table.php:91 -#: ../../godmode/servers/plugin.php:798 ../../include/functions_container.php:157 -#: ../../operation/gis_maps/gis_map.php:109 +#: ../../godmode/users/profile_list.php:359 +#: ../../godmode/alerts/alert_list.list.php:572 +#: ../../godmode/alerts/alert_templates.php:413 +#: ../../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 +#: ../../operation/gis_maps/gis_map.php:122 msgid "Op." msgstr "操作" -#: ../../enterprise/meta/advanced/servers.build_table.php:91 -#: ../../godmode/servers/servers.build_table.php:134 +#: ../../enterprise/meta/advanced/servers.build_table.php:92 +#: ../../godmode/servers/servers.build_table.php:138 msgid "This is a master server" msgstr "マスタサーバです。" -#: ../../enterprise/meta/advanced/servers.build_table.php:106 -#: ../../enterprise/meta/advanced/servers.build_table.php:112 -#: ../../godmode/servers/servers.build_table.php:153 -#: ../../godmode/servers/servers.build_table.php:159 +#: ../../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 msgid "of" msgstr "/" -#: ../../enterprise/meta/advanced/servers.build_table.php:134 -#: ../../godmode/servers/servers.build_table.php:271 +#: ../../enterprise/meta/advanced/servers.build_table.php:143 +#: ../../godmode/servers/servers.build_table.php:274 msgid "Modules run by this server will stop working. Do you want to continue?" msgstr "このサーバで動作しているモジュールを停止します。実行しますか?" -#: ../../enterprise/meta/advanced/servers.build_table.php:160 -#: ../../godmode/servers/servers.build_table.php:298 +#: ../../enterprise/meta/advanced/servers.build_table.php:170 +#: ../../godmode/servers/servers.build_table.php:301 msgid "Tactical server information" msgstr "モニタリングサーバの情報" -#: ../../enterprise/meta/advanced/massive_operations.php:57 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:53 +#: ../../enterprise/meta/advanced/servers.build_table.php:180 +#: ../../include/help/clippy/server_queued_modules.php:35 +msgid "Excesive Queued." +msgstr "実行キュー" + +#: ../../enterprise/meta/advanced/servers.build_table.php:181 +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 " +"temporary, or a bottleneck. If it is associated with a delay in monitoring, " +"with modules going to unknown, try increasing the number of threads." +msgstr "" +"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているか" +"サーバが正しく設定されていません。これは一時的なものかもしれませんがボトルネッ" +"クになります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増" +"やしてみてください。" + +#: ../../enterprise/meta/advanced/servers.build_table.php:182 +#: ../../enterprise/meta/advanced/cron_main.php:408 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:956 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1163 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4043 +#: ../../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/services/services.treeview_services.php:416 +#: ../../extensions/insert_data.php:285 +#: ../../godmode/agentes/planned_downtime.editor.php:2017 +#: ../../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/wizards/HostDevices.class.php:797 +#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/functions_menu.php:941 +#: ../../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 +#: ../../operation/network/network_report.php:463 +#: ../../operation/network/network_usage_map.php:300 +#: ../../operation/netflow/nf_live_view.php:871 +#: ../../operation/reporting/reporting_viewer.php:366 +#: ../../operation/reporting/reporting_viewer.php:385 +#: ../../operation/reporting/graph_viewer.php:472 +#: ../../operation/events/events.php:3229 +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 msgid "command center" msgstr "コマンドセンター" -#: ../../enterprise/meta/advanced/massive_operations.php:54 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:50 +#: ../../enterprise/meta/advanced/massive_operations.php:52 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:68 #, php-format msgid "" "You should centralise management in order to use Wizard section. Please go to " @@ -4625,24 +4790,47 @@ msgid "" msgstr "" "ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" -#: ../../enterprise/meta/advanced/component_management.php:52 -#: ../../include/functions_menu.php:531 +#: ../../enterprise/meta/advanced/component_management.php:35 +#: ../../include/functions_menu.php:614 msgid "Tags management" msgstr "タグ管理" -#: ../../enterprise/meta/advanced/component_management.php:56 +#: ../../enterprise/meta/advanced/component_management.php:39 msgid "Module groups Management" msgstr "モジュールグループ管理" -#: ../../enterprise/meta/advanced/component_management.php:60 +#: ../../enterprise/meta/advanced/component_management.php:43 msgid "OS Management" msgstr "OS 管理" +#: ../../enterprise/meta/advanced/component_management.php:51 +#: ../../extensions/module_groups.php:487 +#: ../../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 +#: ../../operation/tree.php:103 +msgid "Module groups" +msgstr "モジュールグループ" + +#: ../../enterprise/meta/advanced/component_management.php:56 +#: ../../operation/tree.php:141 +msgid "tags" +msgstr "タグ" + +#: ../../enterprise/meta/advanced/component_management.php:61 +msgid "Os manage" +msgstr "OS 管理" + +#: ../../enterprise/meta/advanced/component_management.php:87 +msgid "Component Management" +msgstr "コンポーネント管理" + #: ../../enterprise/meta/advanced/metasetup.visual.php:51 #: ../../enterprise/meta/advanced/metasetup.relations.php:96 #: ../../enterprise/meta/advanced/metasetup.password.php:60 #: ../../enterprise/meta/advanced/metasetup.log.php:41 -#: ../../enterprise/meta/advanced/metasetup.setup.php:79 +#: ../../enterprise/meta/advanced/metasetup.setup.php:55 #: ../../enterprise/meta/advanced/metasetup.hist_db.php:48 #: ../../enterprise/meta/advanced/metasetup.auth.php:47 #: ../../enterprise/meta/advanced/metasetup.performance.php:47 @@ -4655,7 +4843,7 @@ msgstr "更新できませでした、%s でエラーです。" #: ../../enterprise/meta/advanced/metasetup.password.php:67 #: ../../enterprise/meta/advanced/metasetup.consoles.php:238 #: ../../enterprise/meta/advanced/metasetup.log.php:48 -#: ../../enterprise/meta/advanced/metasetup.setup.php:86 +#: ../../enterprise/meta/advanced/metasetup.setup.php:62 #: ../../enterprise/meta/advanced/metasetup.hist_db.php:55 #: ../../enterprise/meta/advanced/metasetup.auth.php:54 #: ../../enterprise/meta/advanced/metasetup.performance.php:54 @@ -4663,59 +4851,57 @@ msgstr "更新できませでした、%s でエラーです。" msgid "Successfully update" msgstr "更新しました" -#: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/menu.php:356 ../../godmode/setup/setup.php:137 -#: ../../godmode/setup/setup.php:266 +#: ../../enterprise/meta/advanced/metasetup.visual.php:100 +#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:137 +#: ../../godmode/setup/setup.php:285 msgid "Visual styles" msgstr "画面設定" -#: ../../enterprise/meta/advanced/metasetup.visual.php:105 -#: ../../enterprise/meta/include/functions_meta.php:1329 -#: ../../godmode/setup/setup_visuals.php:1310 -#: ../../include/functions_config.php:943 +#: ../../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 msgid "Date format string" msgstr "日時フォーマット" -#: ../../enterprise/meta/advanced/metasetup.visual.php:109 -#: ../../godmode/setup/setup_visuals.php:1311 +#: ../../enterprise/meta/advanced/metasetup.visual.php:108 +#: ../../enterprise/tools/ipam/ipam_editor.php:147 +#: ../../godmode/setup/setup_visuals.php:1766 msgid "Example" msgstr "例" -#: ../../enterprise/meta/advanced/metasetup.visual.php:136 -#: ../../godmode/setup/setup_visuals.php:1350 +#: ../../enterprise/meta/advanced/metasetup.visual.php:138 +#: ../../godmode/setup/setup_visuals.php:1801 msgid "Timestamp, time comparison, or compact mode" msgstr "日時表示、経過時間表示、コンパクト表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:139 -#: ../../godmode/setup/setup_visuals.php:1352 +#: ../../enterprise/meta/advanced/metasetup.visual.php:140 +#: ../../godmode/setup/setup_visuals.php:1611 msgid "Comparation in rollover" msgstr "経過時間表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:148 -#: ../../godmode/setup/setup_visuals.php:1353 +#: ../../enterprise/meta/advanced/metasetup.visual.php:147 +#: ../../godmode/setup/setup_visuals.php:1618 msgid "Timestamp in rollover" msgstr "日時表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:157 -#: ../../godmode/setup/setup_visuals.php:1354 +#: ../../enterprise/meta/advanced/metasetup.visual.php:154 +#: ../../godmode/setup/setup_visuals.php:1625 msgid "Compact mode" msgstr "コンパクト表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:166 -#: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:951 +#: ../../enterprise/meta/advanced/metasetup.visual.php:164 +#: ../../include/functions_config.php:985 msgid "Graph color #1" msgstr "グラフの色 #1" -#: ../../enterprise/meta/advanced/metasetup.visual.php:176 -#: ../../godmode/setup/setup_visuals.php:710 -#: ../../include/functions_config.php:955 +#: ../../enterprise/meta/advanced/metasetup.visual.php:175 +#: ../../include/functions_config.php:989 msgid "Graph color #2" msgstr "グラフの色 #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 -#: ../../godmode/setup/setup_visuals.php:721 -#: ../../include/functions_config.php:959 +#: ../../include/functions_config.php:993 msgid "Graph color #3" msgstr "グラフの色 #3" @@ -4723,139 +4909,141 @@ msgstr "グラフの色 #3" msgid "Data precision for reports and visual consoles" msgstr "レポートとビジュアルコンソールのデータ精度" -#: ../../enterprise/meta/advanced/metasetup.visual.php:200 +#: ../../enterprise/meta/advanced/metasetup.visual.php:197 msgid "Precision must be a integer number between 0 and 5" msgstr "精度は 0 と 5 の間の整数でなければいけません" -#: ../../enterprise/meta/advanced/metasetup.visual.php:216 -#: ../../enterprise/meta/include/functions_meta.php:1379 -#: ../../godmode/setup/setup_visuals.php:936 -#: ../../godmode/reporting/visual_console_builder.elements.php:213 -#: ../../godmode/reporting/visual_console_builder.wizard.php:285 -#: ../../include/functions_visual_map_editor.php:686 +#: ../../enterprise/meta/advanced/metasetup.visual.php:215 +#: ../../enterprise/meta/include/functions_meta.php:1414 +#: ../../godmode/setup/setup_visuals.php:1256 +#: ../../godmode/reporting/visual_console_builder.elements.php:233 +#: ../../godmode/reporting/visual_console_builder.wizard.php:288 +#: ../../include/functions_visual_map_editor.php:684 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:458 msgid "Percentile" msgstr "パーセント" -#: ../../enterprise/meta/advanced/metasetup.visual.php:219 +#: ../../enterprise/meta/advanced/metasetup.visual.php:215 msgid "Show percentile 95 in graphs" msgstr "グラフに 95パーセントを表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:232 -#: ../../enterprise/meta/include/functions_meta.php:1464 -#: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:991 +#: ../../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 msgid "Value to interface graphics" msgstr "インタフェースグラフの値" -#: ../../enterprise/meta/advanced/metasetup.visual.php:242 -#: ../../enterprise/meta/include/functions_meta.php:1477 -#: ../../godmode/users/configure_user.php:1422 -#: ../../godmode/massive/massive_edit_users.php:264 -#: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:429 -#: ../../include/functions_config.php:1008 -#: ../../operation/users/user_edit.php:385 +#: ../../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/massive/massive_edit_users.php:263 +#: ../../godmode/setup/setup_visuals.php:92 +#: ../../godmode/events/event_edit_filter.php:457 +#: ../../include/functions_config.php:1042 +#: ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "ページ毎の表示件数" -#: ../../enterprise/meta/advanced/metasetup.visual.php:252 -#: ../../enterprise/meta/include/functions_meta.php:1393 -#: ../../godmode/setup/setup_visuals.php:870 +#: ../../enterprise/meta/advanced/metasetup.visual.php:263 +#: ../../enterprise/meta/include/functions_meta.php:1428 +#: ../../godmode/setup/setup_visuals.php:1185 msgid "Number of elements in Custom Graph" msgstr "カスタムグラフの要素数" -#: ../../enterprise/meta/advanced/metasetup.visual.php:265 -#: ../../enterprise/meta/include/functions_meta.php:1487 -#: ../../godmode/setup/setup_visuals.php:884 -#: ../../include/functions_config.php:1012 +#: ../../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 msgid "Use round corners" msgstr "角を丸くする" -#: ../../enterprise/meta/advanced/metasetup.visual.php:273 -#: ../../enterprise/meta/include/functions_meta.php:1498 -#: ../../godmode/setup/setup_visuals.php:893 -#: ../../include/functions_config.php:1016 +#: ../../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 msgid "Chart fit to content" msgstr "グラフをコンテンツに合わせる" -#: ../../enterprise/meta/advanced/metasetup.visual.php:281 -#: ../../enterprise/meta/include/functions_meta.php:1509 -#: ../../include/functions_config.php:1228 +#: ../../enterprise/meta/advanced/metasetup.visual.php:298 +#: ../../enterprise/meta/include/functions_meta.php:1544 +#: ../../include/functions_config.php:1278 msgid "Disable help" msgstr "ヘルプの無効化" -#: ../../enterprise/meta/advanced/metasetup.visual.php:290 +#: ../../enterprise/meta/advanced/metasetup.visual.php:309 #: ../../enterprise/meta/advanced/metasetup.relations.php:419 -#: ../../enterprise/meta/advanced/collections.data.php:415 +#: ../../enterprise/meta/advanced/collections.data.php:435 #: ../../enterprise/meta/advanced/policymanager.queue.php:212 #: ../../enterprise/meta/advanced/policymanager.queue.php:217 #: ../../enterprise/meta/advanced/policymanager.queue.php:228 #: ../../enterprise/meta/advanced/policymanager.queue.php:304 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:193 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:209 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:272 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:762 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:218 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:148 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:195 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:211 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:274 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:773 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:346 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:216 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 #: ../../enterprise/meta/include/functions_users_meta.php:87 #: ../../enterprise/meta/include/functions_users_meta.php:98 #: ../../enterprise/meta/include/functions_wizard_meta.php:319 #: ../../enterprise/meta/include/ajax/wizard.ajax.php:406 #: ../../enterprise/meta/include/ajax/wizard.ajax.php:450 #: ../../enterprise/meta/include/functions_html_meta.php:75 -#: ../../enterprise/godmode/modules/local_components.php:544 -#: ../../enterprise/godmode/modules/local_components.php:570 -#: ../../enterprise/godmode/modules/local_components.php:595 -#: ../../enterprise/godmode/agentes/collections.data.php:506 -#: ../../enterprise/godmode/policies/policy_queue.php:603 -#: ../../enterprise/godmode/policies/policy_queue.php:608 -#: ../../enterprise/godmode/policies/policy_queue.php:619 -#: ../../enterprise/godmode/policies/policy_queue.php:692 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:369 -#: ../../enterprise/godmode/policies/policy_agents.php:506 -#: ../../enterprise/godmode/policies/policy_agents.php:524 -#: ../../enterprise/godmode/policies/policy_agents.php:869 +#: ../../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_external_alerts.php:383 +#: ../../enterprise/godmode/policies/policy_agents.php:453 +#: ../../enterprise/godmode/policies/policy_agents.php:588 +#: ../../enterprise/godmode/policies/policy_agents.php:606 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 -#: ../../enterprise/godmode/setup/setup_acl.php:487 -#: ../../enterprise/godmode/setup/setup_acl.php:504 -#: ../../enterprise/godmode/setup/setup_acl.php:521 -#: ../../enterprise/godmode/setup/setup_acl.php:753 -#: ../../enterprise/godmode/setup/setup_acl.php:761 -#: ../../enterprise/godmode/setup/setup_acl.php:772 -#: ../../enterprise/godmode/setup/setup_acl.php:813 -#: ../../enterprise/godmode/setup/setup_acl.php:844 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:241 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:143 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:188 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:641 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:667 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:243 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2076 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2887 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2914 -#: ../../enterprise/include/class/ManageBackups.class.php:191 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:297 +#: ../../enterprise/godmode/setup/setup_acl.php:555 +#: ../../enterprise/godmode/setup/setup_acl.php:573 +#: ../../enterprise/godmode/setup/setup_acl.php:591 +#: ../../enterprise/godmode/setup/setup_acl.php:892 +#: ../../enterprise/godmode/setup/setup_acl.php:900 +#: ../../enterprise/godmode/setup/setup_acl.php:911 +#: ../../enterprise/godmode/setup/setup_acl.php:956 +#: ../../enterprise/godmode/setup/setup_acl.php:987 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:225 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:132 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:177 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:630 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:656 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:232 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2065 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2876 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2903 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:141 +#: ../../enterprise/include/class/ManageBackups.class.php:194 #: ../../enterprise/include/functions_metaconsole.php:882 #: ../../enterprise/include/functions_metaconsole.php:883 #: ../../enterprise/include/functions_metaconsole.php:1240 -#: ../../enterprise/include/functions_ipam.php:1696 -#: ../../enterprise/include/functions_ipam.php:1741 +#: ../../enterprise/include/functions_ipam.php:1712 +#: ../../enterprise/include/functions_ipam.php:1775 #: ../../enterprise/operation/agentes/tag_view.php:145 -#: ../../enterprise/operation/agentes/tag_view.php:171 -#: ../../enterprise/operation/agentes/tag_view.php:237 -#: ../../enterprise/operation/agentes/tag_view.php:301 -#: ../../enterprise/operation/agentes/tag_view.php:304 -#: ../../enterprise/operation/agentes/tag_view.php:390 -#: ../../enterprise/operation/log/log_viewer.php:621 -#: ../../enterprise/operation/log/log_viewer.php:639 -#: ../../enterprise/operation/log/log_viewer.php:689 +#: ../../enterprise/operation/agentes/tag_view.php:180 +#: ../../enterprise/operation/agentes/tag_view.php:247 +#: ../../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/snmpconsole/snmp_view.php:33 -#: ../../extensions/agents_modules.php:416 -#: ../../extensions/files_repo/files_repo_form.php:46 +#: ../../extensions/resource_registration.php:1137 +#: ../../extensions/agents_modules.php:454 +#: ../../extensions/files_repo/files_repo_form.php:44 #: ../../godmode/modules/manage_network_templates_form.php:303 -#: ../../godmode/modules/manage_network_components.php:656 +#: ../../godmode/modules/manage_network_components.php:665 #: ../../godmode/massive/massive_copy_modules.php:127 #: ../../godmode/massive/massive_copy_modules.php:287 #: ../../godmode/massive/massive_delete_modules.php:327 @@ -4866,193 +5054,190 @@ msgstr "ヘルプの無効化" #: ../../godmode/massive/massive_edit_modules.php:358 #: ../../godmode/massive/massive_edit_modules.php:396 #: ../../godmode/massive/massive_edit_modules.php:482 -#: ../../godmode/alerts/alert_list.list.php:131 #: ../../godmode/alerts/alert_list.list.php:137 -#: ../../godmode/alerts/alert_list.list.php:146 -#: ../../godmode/alerts/alert_list.list.php:155 -#: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/alerts/alert_list.php:485 -#: ../../godmode/alerts/alert_list.php:534 -#: ../../godmode/alerts/alert_list.php:548 ../../godmode/setup/gis_step_2.php:218 -#: ../../godmode/setup/setup_visuals.php:951 -#: ../../godmode/reporting/reporting_builder.list_items.php:209 -#: ../../godmode/reporting/reporting_builder.list_items.php:211 -#: ../../godmode/reporting/reporting_builder.list_items.php:213 -#: ../../godmode/reporting/reporting_builder.list_items.php:235 -#: ../../godmode/reporting/reporting_builder.list_items.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:255 -#: ../../godmode/reporting/create_container.php:546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1682 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1700 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2125 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2961 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2988 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3639 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3720 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3742 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3903 -#: ../../godmode/reporting/visual_console_builder.wizard.php:340 -#: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:350 -#: ../../godmode/events/event_edit_filter.php:365 -#: ../../godmode/events/event_edit_filter.php:657 +#: ../../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_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/reporting/reporting_builder.list_items.php:217 +#: ../../godmode/reporting/reporting_builder.list_items.php:234 +#: ../../godmode/reporting/reporting_builder.list_items.php:251 +#: ../../godmode/reporting/create_container.php:646 +#: ../../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/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 #: ../../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:1117 ../../include/functions.php:1377 -#: ../../include/ajax/events.php:519 ../../include/functions_groupview.php:96 -#: ../../include/functions_modules.php:3576 -#: ../../include/functions_modules.php:3578 ../../include/functions_users.php:420 -#: ../../include/functions_users.php:678 +#: ../../include/functions.php:1127 ../../include/functions.php:1387 +#: ../../include/ajax/events.php:521 ../../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:915 ../../include/functions_html.php:1576 -#: ../../include/functions_massive_operations.php:160 -#: ../../include/functions_massive_operations.php:174 -#: ../../include/class/CredentialStore.class.php:535 -#: ../../include/class/SnmpConsole.class.php:353 -#: ../../include/class/SnmpConsole.class.php:359 -#: ../../include/class/SnmpConsole.class.php:371 -#: ../../include/class/AuditLog.class.php:202 -#: ../../include/class/AuditLog.class.php:212 -#: ../../include/functions_reporting.php:3239 -#: ../../include/functions_reporting.php:3336 +#: ../../include/functions_html.php:947 ../../include/functions_html.php:1606 +#: ../../include/functions_massive_operations.php:158 +#: ../../include/functions_massive_operations.php:172 +#: ../../include/class/EventSound.class.php:347 +#: ../../include/class/CredentialStore.class.php:509 +#: ../../include/class/SnmpConsole.class.php:290 +#: ../../include/class/SnmpConsole.class.php:296 +#: ../../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/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:384 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:417 -#: ../../include/functions_groups.php:646 ../../include/functions_groups.php:1940 -#: ../../operation/heatmap.php:119 ../../operation/tree.php:210 -#: ../../operation/tree.php:267 ../../operation/agentes/estado_agente.php:276 -#: ../../operation/agentes/status_monitor.php:651 -#: ../../operation/agentes/estado_monitores.php:520 -#: ../../operation/agentes/estado_monitores.php:565 +#: ../../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 ../../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/alerts_status.functions.php:96 -#: ../../operation/agentes/alerts_status.functions.php:115 -#: ../../operation/agentes/alerts_status.functions.php:125 -#: ../../operation/agentes/alerts_status.functions.php:130 -#: ../../operation/incidents/list_integriaims_incidents.php:326 -#: ../../operation/incidents/list_integriaims_incidents.php:337 -#: ../../operation/incidents/list_integriaims_incidents.php:354 -#: ../../operation/incidents/list_integriaims_incidents.php:365 -#: ../../operation/inventory/inventory.php:75 -#: ../../operation/inventory/inventory.php:76 -#: ../../operation/inventory/inventory.php:158 -#: ../../operation/inventory/inventory.php:159 -#: ../../operation/inventory/inventory.php:335 -#: ../../operation/inventory/inventory.php:363 -#: ../../operation/inventory/inventory.php:372 -#: ../../operation/events/events.php:810 ../../operation/events/events.php:1670 -#: ../../operation/events/events.php:1759 ../../operation/events/events.php:1990 +#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../operation/agentes/alerts_status.functions.php:134 +#: ../../operation/agentes/alerts_status.functions.php:165 +#: ../../operation/agentes/alerts_status.functions.php:184 +#: ../../operation/incidents/list_integriaims_incidents.php:340 +#: ../../operation/incidents/list_integriaims_incidents.php:353 +#: ../../operation/incidents/list_integriaims_incidents.php:394 +#: ../../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 #: ../../general/subselect_data_module.php:62 msgid "All" msgstr "全て" -#: ../../enterprise/meta/advanced/metasetup.visual.php:291 -#: ../../godmode/setup/setup_visuals.php:952 +#: ../../enterprise/meta/advanced/metasetup.visual.php:310 +#: ../../godmode/setup/setup_visuals.php:1086 msgid "On Boolean graphs" msgstr "二値グラフ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:294 +#: ../../enterprise/meta/advanced/metasetup.visual.php:313 +#: ../../godmode/setup/setup_visuals.php:1268 msgid "Graph TIP view" msgstr "グラフ詳細表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:295 +#: ../../enterprise/meta/advanced/metasetup.visual.php:313 msgid "This option may cause performance issues" msgstr "このオプションはパフォーマンスの問題を発生させる可能性があります" -#: ../../enterprise/meta/advanced/metasetup.visual.php:309 -#: ../../godmode/setup/setup_visuals.php:971 +#: ../../enterprise/meta/advanced/metasetup.visual.php:328 +#: ../../godmode/setup/setup_visuals.php:1089 msgid "Show only average by default" msgstr "デフォルトで平均の表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:310 -#: ../../godmode/setup/setup_visuals.php:972 +#: ../../enterprise/meta/advanced/metasetup.visual.php:329 +#: ../../godmode/setup/setup_visuals.php:1090 msgid "Show MAX/AVG/MIN by default" msgstr "デフォルトで最大/平均/最小を表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:312 -#: ../../godmode/setup/setup_visuals.php:968 +#: ../../enterprise/meta/advanced/metasetup.visual.php:332 +#: ../../godmode/setup/setup_visuals.php:1284 msgid "Graph mode" msgstr "グラフモード" -#: ../../enterprise/meta/advanced/metasetup.visual.php:332 -#: ../../godmode/setup/setup_visuals.php:987 +#: ../../enterprise/meta/advanced/metasetup.visual.php:354 msgid "Zoom graphs:" msgstr "グラフ倍率:" -#: ../../enterprise/meta/advanced/metasetup.visual.php:346 -#: ../../godmode/setup/setup_visuals.php:902 +#: ../../enterprise/meta/advanced/metasetup.visual.php:369 +#: ../../godmode/setup/setup_visuals.php:1220 msgid "Type of module charts" msgstr "モジュールグラフのタイプ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:348 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 -#: ../../godmode/setup/setup_visuals.php:903 -#: ../../godmode/setup/setup_visuals.php:920 -#: ../../godmode/reporting/create_container.php:358 -#: ../../godmode/reporting/graph_builder.main.php:214 +#: ../../enterprise/meta/advanced/metasetup.visual.php:371 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:260 +#: ../../godmode/setup/setup_visuals.php:1227 +#: ../../godmode/reporting/create_container.php:430 +#: ../../godmode/reporting/graph_builder.main.php:208 #: ../../include/functions_visual_map_editor.php:558 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 -#: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 -#: ../../operation/agentes/graphs.php:408 ../../operation/agentes/graphs.php:426 -#: ../../operation/reporting/graph_viewer.php:342 +#: ../../operation/agentes/graphs.php:251 ../../operation/agentes/graphs.php:258 +#: ../../operation/agentes/graphs.php:443 ../../operation/agentes/graphs.php:461 +#: ../../operation/reporting/graph_viewer.php:354 msgid "Area" msgstr "塗り潰し" -#: ../../enterprise/meta/advanced/metasetup.visual.php:357 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 -#: ../../godmode/setup/setup_visuals.php:910 -#: ../../godmode/setup/setup_visuals.php:927 -#: ../../godmode/reporting/create_container.php:359 -#: ../../godmode/reporting/visual_console_builder.elements.php:334 -#: ../../godmode/reporting/graph_builder.main.php:216 +#: ../../enterprise/meta/advanced/metasetup.visual.php:378 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:262 +#: ../../godmode/setup/setup_visuals.php:1239 +#: ../../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:1399 +#: ../../include/functions_visual_map_editor.php:1397 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 -#: ../../operation/visual_console/view.php:363 -#: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244 -#: ../../operation/agentes/graphs.php:416 ../../operation/agentes/graphs.php:430 -#: ../../operation/reporting/graph_viewer.php:344 +#: ../../operation/visual_console/view.php:381 +#: ../../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 msgid "Line" msgstr "線" -#: ../../enterprise/meta/advanced/metasetup.visual.php:367 -#: ../../enterprise/meta/include/functions_meta.php:1579 +#: ../../enterprise/meta/advanced/metasetup.visual.php:388 +#: ../../enterprise/meta/include/functions_meta.php:1634 msgid "Metaconsole elements" msgstr "メタコンソール要素" -#: ../../enterprise/meta/advanced/metasetup.visual.php:369 +#: ../../enterprise/meta/advanced/metasetup.visual.php:388 msgid "The number of elements retrieved for each instance in some views." msgstr "一部のビュー内での各インスタンスの要素数" -#: ../../enterprise/meta/advanced/metasetup.visual.php:382 -#: ../../enterprise/meta/advanced/metasetup.visual.php:849 -#: ../../enterprise/meta/advanced/metasetup.visual.php:850 +#: ../../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/servers/server_disk_conf_editor.php:453 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:466 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:274 -#: ../../godmode/snmpconsole/snmp_alert.php:1102 -#: ../../godmode/setup/setup_visuals.php:1031 -#: ../../godmode/setup/setup_visuals.php:1032 -#: ../../godmode/setup/setup_visuals.php:1417 -#: ../../include/functions_visual_map_editor.php:1223 -#: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions.php:499 ../../include/functions.php:630 -#: ../../include/ajax/events.php:2267 ../../include/ajax/events.php:2268 -#: ../../include/ajax/events.php:2269 ../../include/ajax/events.php:2270 -#: ../../include/ajax/events.php:2274 ../../include/ajax/events.php:2275 -#: ../../include/ajax/events.php:2276 ../../include/ajax/events.php:2277 -#: ../../include/ajax/events.php:2278 ../../include/ajax/events.php:2279 -#: ../../include/functions_html.php:2103 -#: ../../include/class/AgentsAlerts.class.php:387 +#: ../../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 +#: ../../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 @@ -5066,172 +5251,173 @@ msgstr "一部のビュー内での各インスタンスの要素数" msgid "seconds" msgstr "秒" -#: ../../enterprise/meta/advanced/metasetup.visual.php:383 -#: ../../enterprise/meta/advanced/metasetup.visual.php:851 -#: ../../enterprise/meta/advanced/metasetup.visual.php:852 -#: ../../enterprise/meta/advanced/metasetup.visual.php:853 -#: ../../enterprise/meta/advanced/metasetup.visual.php:854 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:276 -#: ../../godmode/setup/setup_visuals.php:1033 -#: ../../godmode/setup/setup_visuals.php:1034 -#: ../../godmode/setup/setup_visuals.php:1035 -#: ../../godmode/setup/setup_visuals.php:1036 -#: ../../godmode/setup/setup_visuals.php:1418 +#: ../../enterprise/meta/advanced/metasetup.visual.php:402 +#: ../../enterprise/meta/advanced/metasetup.visual.php:921 +#: ../../enterprise/meta/advanced/metasetup.visual.php:922 +#: ../../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 -#: ../../include/functions_visual_map_editor.php:1227 -#: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions.php:503 ../../include/functions.php:634 -#: ../../include/functions_html.php:2104 +#: ../../include/functions.php:513 ../../include/functions.php:644 +#: ../../include/functions_html.php:2136 msgid "minutes" msgstr "分" -#: ../../enterprise/meta/advanced/metasetup.visual.php:384 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:504 -#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 -#: ../../include/functions_html.php:2105 +#: ../../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 +#: ../../include/functions.php:645 ../../include/functions_snmp.php:402 +#: ../../include/functions_html.php:2137 msgid "hours" msgstr "時間" -#: ../../enterprise/meta/advanced/metasetup.visual.php:385 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:280 +#: ../../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:1420 ../../include/functions.php:500 -#: ../../include/functions.php:631 ../../include/functions_html.php:2106 +#: ../../godmode/setup/setup_visuals.php:1901 ../../include/functions.php:510 +#: ../../include/functions.php:641 ../../include/functions_html.php:2138 msgid "days" msgstr "日" -#: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:501 -#: ../../include/functions.php:632 ../../include/functions_html.php:2108 +#: ../../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 msgid "months" msgstr "月" -#: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:502 -#: ../../include/functions.php:633 ../../include/functions_html.php:2109 +#: ../../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 msgid "years" msgstr "年" -#: ../../enterprise/meta/advanced/metasetup.visual.php:390 +#: ../../enterprise/meta/advanced/metasetup.visual.php:410 msgid "Add new custom value to intervals" msgstr "新たな間隔カスタム値の追加" -#: ../../enterprise/meta/advanced/metasetup.visual.php:411 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:784 -#: ../../enterprise/meta/advanced/links.php:189 -#: ../../enterprise/meta/include/functions_autoprovision.php:703 +#: ../../enterprise/meta/advanced/metasetup.visual.php:430 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:821 +#: ../../enterprise/meta/advanced/links.php:204 +#: ../../enterprise/meta/advanced/cron_main.php:389 +#: ../../enterprise/meta/include/functions_autoprovision.php:766 #: ../../enterprise/meta/include/functions_wizard_meta.php:1365 -#: ../../enterprise/godmode/agentes/collection_manager.php:113 -#: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/plugins_manager.php:163 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 +#: ../../enterprise/godmode/agentes/collection_manager.php:165 +#: ../../enterprise/godmode/agentes/collection_manager.php:192 +#: ../../enterprise/godmode/agentes/plugins_manager.php:168 +#: ../../enterprise/godmode/agentes/plugins_manager.php:181 +#: ../../enterprise/godmode/agentes/plugins_manager.php:182 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:298 #: ../../enterprise/godmode/policies/policy_plugins.php:162 -#: ../../enterprise/godmode/policies/policy_alerts.php:605 -#: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:618 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:714 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 -#: ../../enterprise/godmode/policies/policy_collections.php:267 +#: ../../enterprise/godmode/policies/policy_alerts.php:619 +#: ../../enterprise/godmode/policies/policy_alerts.php:741 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:665 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:672 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:241 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:360 +#: ../../enterprise/godmode/policies/policy_collections.php:325 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:138 +#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:140 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:152 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:398 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:417 #: ../../enterprise/godmode/setup/setup_metaconsole.php:247 #: ../../enterprise/godmode/setup/setup_metaconsole.php:357 -#: ../../enterprise/godmode/setup/setup_acl.php:532 -#: ../../enterprise/godmode/setup/setup_acl.php:558 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:245 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:506 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:269 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:862 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:354 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:512 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:251 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:190 +#: ../../enterprise/godmode/setup/setup_acl.php:619 +#: ../../enterprise/godmode/setup/setup_acl.php:674 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:497 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:258 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:852 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:343 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:498 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:196 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:278 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:298 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:82 -#: ../../enterprise/godmode/servers/manage_export_form.php:138 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:93 -#: ../../enterprise/include/ajax/servers.ajax.php:144 -#: ../../enterprise/include/ajax/servers.ajax.php:177 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2286 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1321 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:830 -#: ../../extensions/files_repo/files_repo_form.php:105 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:101 +#: ../../enterprise/include/ajax/servers.ajax.php:148 +#: ../../enterprise/include/ajax/servers.ajax.php:194 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2314 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1458 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:948 +#: ../../extensions/files_repo/files_repo_form.php:124 #: ../../godmode/modules/manage_network_templates_form.php:347 -#: ../../godmode/users/configure_profile.php:403 -#: ../../godmode/agentes/inventory_manager.php:185 -#: ../../godmode/agentes/planned_downtime.editor.php:1168 -#: ../../godmode/agentes/planned_downtime.editor.php:1341 -#: ../../godmode/snmpconsole/snmp_alert.php:1494 -#: ../../godmode/gis_maps/configure_gis_map.php:631 -#: ../../godmode/alerts/alert_list.list.php:815 ../../godmode/setup/news.php:299 -#: ../../godmode/setup/links.php:173 ../../godmode/setup/setup_visuals.php:1372 -#: ../../godmode/setup/setup_visuals.php:1427 -#: ../../godmode/setup/setup_visuals.php:1447 -#: ../../godmode/reporting/graph_builder.graph_editor.php:352 -#: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/events/event_edit_filter.php:565 -#: ../../godmode/events/event_edit_filter.php:618 -#: ../../godmode/servers/plugin.php:890 -#: ../../include/functions_notifications.php:962 -#: ../../include/class/SatelliteAgent.class.php:1168 -#: ../../include/class/ManageNetScanScripts.class.php:471 -#: ../../include/functions_snmp_browser.php:1566 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:271 -#: ../../operation/events/events.php:1229 ../../operation/events/events.php:1303 +#: ../../godmode/agentes/inventory_manager.php:192 +#: ../../godmode/agentes/planned_downtime.editor.php:1314 +#: ../../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/reporting/visual_console_builder.wizard.php:575 +#: ../../godmode/events/event_edit_filter.php:647 +#: ../../godmode/events/event_edit_filter.php:712 +#: ../../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 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:287 +#: ../../operation/events/events.php:1267 ../../operation/events/events.php:1341 msgid "Add" msgstr "追加" -#: ../../enterprise/meta/advanced/metasetup.visual.php:420 -#: ../../enterprise/meta/include/functions_meta.php:1798 -#: ../../godmode/setup/setup_visuals.php:1432 -#: ../../include/functions_config.php:1399 +#: ../../enterprise/meta/advanced/metasetup.visual.php:443 +#: ../../enterprise/meta/include/functions_meta.php:1853 +#: ../../include/functions_config.php:1449 msgid "Delete interval" msgstr "間隔値を削除" -#: ../../enterprise/meta/advanced/metasetup.visual.php:454 -#: ../../enterprise/meta/include/functions_meta.php:1589 -#: ../../godmode/setup/setup_visuals.php:1292 +#: ../../enterprise/meta/advanced/metasetup.visual.php:475 +#: ../../enterprise/meta/include/functions_meta.php:1644 +#: ../../godmode/setup/setup_visuals.php:1736 msgid "Show only the group name" msgstr "グループ名のみ表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:456 -#: ../../include/functions_config.php:1256 +#: ../../enterprise/meta/advanced/metasetup.visual.php:475 +#: ../../include/functions_config.php:1306 msgid "Show the group name instead the group icon." msgstr "グループアイコンの代わりにグループ名を表示します。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:466 -#: ../../enterprise/meta/include/functions_meta.php:1890 -#: ../../godmode/setup/setup_visuals.php:88 -#: ../../include/functions_config.php:1280 +#: ../../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 msgid "Display data of proc modules in other format" msgstr "別フォーマットでのprocモジュールのデータ表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:474 -#: ../../enterprise/meta/include/functions_meta.php:1900 -#: ../../godmode/setup/setup_visuals.php:97 -#: ../../include/functions_config.php:1284 +#: ../../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 msgid "Display text proc modules have state is ok" msgstr "正常状態時のprocモジュール表示テキスト" -#: ../../enterprise/meta/advanced/metasetup.visual.php:484 -#: ../../enterprise/meta/include/functions_meta.php:1910 -#: ../../godmode/setup/setup_visuals.php:101 -#: ../../include/functions_config.php:1288 +#: ../../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 msgid "Display text when proc modules have state critical" msgstr "障害状態時のprocモジュール表示テキスト" -#: ../../enterprise/meta/advanced/metasetup.visual.php:503 -#: ../../enterprise/meta/include/functions_meta.php:1629 -#: ../../godmode/setup/setup_visuals.php:191 -#: ../../include/functions_config.php:1036 +#: ../../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 msgid "Custom favicon" msgstr "カスタム favicon" -#: ../../enterprise/meta/advanced/metasetup.visual.php:505 +#: ../../enterprise/meta/advanced/metasetup.visual.php:529 msgid "" "You can place your favicon into the folder images/custom_favicon/. This file " "should be in .ico format with a size of 16x16." @@ -5239,172 +5425,224 @@ msgstr "" "favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、" "16x16 のサイズの .ico 形式である必要があります。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:531 -#: ../../godmode/setup/setup_visuals.php:213 +#: ../../enterprise/meta/advanced/metasetup.visual.php:563 +#: ../../godmode/setup/setup_visuals.php:424 msgid "Custom background logo" msgstr "カスタム背景ロゴ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:533 +#: ../../enterprise/meta/advanced/metasetup.visual.php:564 msgid "You can place your custom images into the folder images/backgrounds/" msgstr "カスタム画像を images/backgrounds/ フォルダに置くことができます。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:576 -#: ../../godmode/setup/setup_visuals.php:280 +#: ../../enterprise/meta/advanced/metasetup.visual.php:582 +#: ../../enterprise/meta/advanced/metasetup.visual.php:618 +#: ../../enterprise/meta/advanced/metasetup.visual.php:649 +#: ../../enterprise/meta/advanced/metasetup.visual.php:679 +#: ../../enterprise/meta/advanced/metasetup.visual.php:710 +#: ../../enterprise/meta/advanced/metasetup.visual.php:740 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:123 +#: ../../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/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/visual_console/legacy_view.php:189 +#: ../../operation/agentes/status_monitor.php:77 +#: ../../operation/agentes/status_monitor.php:306 +msgid "View" +msgstr "表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:602 +#: ../../godmode/setup/setup_visuals.php:460 msgid "Custom logo (menu)" msgstr "カスタムロゴ(メニュー)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:607 -#: ../../godmode/setup/setup_visuals.php:285 +#: ../../enterprise/meta/advanced/metasetup.visual.php:633 +#: ../../godmode/setup/setup_visuals.php:485 msgid "Custom logo collapsed (menu)" msgstr "縮小カスタムロゴ(メニュー)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:638 -#: ../../godmode/setup/setup_visuals.php:290 +#: ../../enterprise/meta/advanced/metasetup.visual.php:663 +#: ../../godmode/setup/setup_visuals.php:511 msgid "Custom logo (header white background)" msgstr "カスタムロゴ(白背景ヘッダ)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:667 -#: ../../godmode/setup/setup_visuals.php:329 +#: ../../enterprise/meta/advanced/metasetup.visual.php:694 +#: ../../godmode/setup/setup_visuals.php:536 msgid "Custom logo (login)" msgstr "カスタムロゴ (ログイン)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:696 -#: ../../godmode/setup/setup_visuals.php:368 +#: ../../enterprise/meta/advanced/metasetup.visual.php:724 +#: ../../godmode/setup/setup_visuals.php:564 msgid "Custom Splash (login)" msgstr "カスタムスプラッシュ(ログイン)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:724 -#: ../../enterprise/meta/advanced/metasetup.visual.php:795 -#: ../../enterprise/meta/include/functions_meta.php:1659 -#: ../../godmode/setup/setup_visuals.php:508 -#: ../../include/functions_config.php:1112 +#: ../../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 msgid "Product name" msgstr "製品名" -#: ../../enterprise/meta/advanced/metasetup.visual.php:735 -#: ../../enterprise/meta/advanced/metasetup.visual.php:805 -#: ../../enterprise/meta/include/functions_meta.php:1669 -#: ../../godmode/setup/setup_visuals.php:514 -#: ../../include/functions_config.php:1116 +#: ../../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 msgid "Copyright notice" msgstr "著作権表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:746 -#: ../../godmode/setup/setup_visuals.php:472 +#: ../../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 +msgid "Background opacity % (login)" +msgstr "背景の透明度 % (ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:786 +#: ../../godmode/setup/setup_visuals.php:762 msgid "Title (header)" msgstr "タイトル(ヘッダ)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:750 -#: ../../godmode/setup/setup_visuals.php:477 +#: ../../enterprise/meta/advanced/metasetup.visual.php:792 +#: ../../godmode/setup/setup_visuals.php:768 msgid "Subtitle (header)" msgstr "サブタイトル(ヘッダ)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:754 -#: ../../godmode/setup/setup_visuals.php:483 +#: ../../enterprise/meta/advanced/metasetup.visual.php:798 +#: ../../godmode/setup/setup_visuals.php:776 msgid "Title 1 (login)" msgstr "タイトル 1 (ログイン)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:765 -#: ../../godmode/setup/setup_visuals.php:490 +#: ../../enterprise/meta/advanced/metasetup.visual.php:811 +#: ../../godmode/setup/setup_visuals.php:781 msgid "Title 2 (login)" msgstr "タイトル 2 (ログイン)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:775 -#: ../../enterprise/meta/include/functions_meta.php:1719 -#: ../../godmode/setup/setup_visuals.php:496 +#: ../../enterprise/meta/advanced/metasetup.visual.php:823 +#: ../../enterprise/meta/include/functions_meta.php:1774 +#: ../../godmode/setup/setup_visuals.php:787 msgid "Docs URL (login)" msgstr "ドキュメントURL(ログイン)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:785 -#: ../../enterprise/meta/include/functions_meta.php:1729 -#: ../../godmode/setup/setup_visuals.php:502 +#: ../../enterprise/meta/advanced/metasetup.visual.php:835 +#: ../../enterprise/meta/include/functions_meta.php:1784 +#: ../../godmode/setup/setup_visuals.php:792 msgid "Support URL (login)" msgstr "サポートURL(ログイン)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:815 +#: ../../enterprise/meta/advanced/metasetup.visual.php:871 msgid "Graphs font family" msgstr "グラフフォントファミリ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:826 -#: ../../enterprise/meta/include/functions_meta.php:1559 -#: ../../godmode/setup/setup_visuals.php:564 +#: ../../enterprise/meta/advanced/metasetup.visual.php:884 +#: ../../enterprise/meta/include/functions_meta.php:1594 +#: ../../godmode/setup/setup_visuals.php:864 msgid "Visual effects and animation" msgstr "表示効果およびアニメーション" -#: ../../enterprise/meta/advanced/metasetup.visual.php:836 -#: ../../godmode/setup/setup_visuals.php:1021 +#: ../../enterprise/meta/advanced/metasetup.visual.php:894 +#: ../../godmode/setup/setup_visuals.php:875 +msgid "Random background (login)" +msgstr "ランダム背景 (ログイン)" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:906 +#: ../../godmode/setup/setup_visuals.php:1340 msgid "Legacy Visual Console View" msgstr "レガシービジュアルコンソール表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:838 +#: ../../enterprise/meta/advanced/metasetup.visual.php:907 msgid "To use the old view when using the Visual Console visor" msgstr "ビジュアルコンソールで古い表示を使用する場合" -#: ../../enterprise/meta/advanced/metasetup.visual.php:855 -#: ../../godmode/setup/setup_visuals.php:1037 -#: ../../include/functions_visual_map_editor.php:1229 +#: ../../enterprise/meta/advanced/metasetup.visual.php:925 +#: ../../godmode/setup/setup_visuals.php:1325 +#: ../../include/functions_visual_map_editor.php:1227 msgid "hour" msgstr "時間" -#: ../../enterprise/meta/advanced/metasetup.visual.php:857 -#: ../../godmode/setup/setup_visuals.php:1039 +#: ../../enterprise/meta/advanced/metasetup.visual.php:928 +#: ../../godmode/setup/setup_visuals.php:1350 msgid "Default cache expiration" msgstr "デフォルトのキャッシュ有効期限" -#: ../../enterprise/meta/advanced/metasetup.visual.php:862 -#: ../../godmode/setup/setup_visuals.php:1044 -#: ../../include/functions_visual_map_editor.php:1255 +#: ../../enterprise/meta/advanced/metasetup.visual.php:933 +#: ../../godmode/setup/setup_visuals.php:1355 +#: ../../include/functions_visual_map_editor.php:1253 msgid "No cache" msgstr "キャッシュ無し" -#: ../../enterprise/meta/advanced/metasetup.visual.php:874 -#: ../../enterprise/meta/include/functions_meta.php:1937 -#: ../../godmode/setup/setup_visuals.php:1056 -#: ../../include/functions_config.php:1160 +#: ../../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 msgid "Default interval for refresh on Visual Console" msgstr "ビジュアルコンソールのデフォルト更新間隔" -#: ../../enterprise/meta/advanced/metasetup.visual.php:877 +#: ../../enterprise/meta/advanced/metasetup.visual.php:956 msgid "This interval will affect to Visual Console pages" msgstr "この間隔はビジュアルコンソールページで有効です" -#: ../../enterprise/meta/advanced/metasetup.visual.php:903 -#: ../../godmode/setup/setup_visuals.php:1526 -msgid "Data multiplier to use in graphs/data" -msgstr "グラフのデータで利用するデータ倍率" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:907 -#: ../../godmode/setup/setup_visuals.php:1528 +#: ../../enterprise/meta/advanced/metasetup.visual.php:973 +#: ../../godmode/setup/setup_visuals.php:1710 msgid "Use 1024 when module unit are bytes" msgstr "モジュールの単位がバイトの場合 1024 を利用" -#: ../../enterprise/meta/advanced/metasetup.visual.php:908 -#: ../../godmode/setup/setup_visuals.php:1529 +#: ../../enterprise/meta/advanced/metasetup.visual.php:974 +#: ../../godmode/setup/setup_visuals.php:1711 msgid "Use always 1000" msgstr "常に 1000を利用" -#: ../../enterprise/meta/advanced/metasetup.visual.php:909 -#: ../../godmode/setup/setup_visuals.php:1530 +#: ../../enterprise/meta/advanced/metasetup.visual.php:975 +#: ../../godmode/setup/setup_visuals.php:1712 msgid "Use always 1024" msgstr "常に 1024 を利用" -#: ../../enterprise/meta/advanced/metasetup.visual.php:923 -#: ../../enterprise/meta/include/functions_meta.php:1942 -#: ../../godmode/setup/setup_visuals.php:1098 -#: ../../include/functions_config.php:1176 +#: ../../enterprise/meta/advanced/metasetup.visual.php:978 +#: ../../godmode/setup/setup_visuals.php:2072 +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 msgid "Mobile view not allow visual console orientation" msgstr "モバイル表示では、視覚的なコンソールの向きは調整できません。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:941 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1003 +#: ../../enterprise/meta/include/functions_meta.php:2002 +msgid "Display item frame on alert triggered" +msgstr "アラート発報時にアイテムフレームを表示" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1022 msgid "Reports configuration" msgstr "レポート設定" -#: ../../enterprise/meta/advanced/metasetup.visual.php:947 -#: ../../godmode/setup/setup_visuals.php:1132 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1028 +#: ../../godmode/setup/setup_visuals.php:1482 msgid "Show report info with description" msgstr "説明とともにレポート情報を表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:948 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1029 msgid "" "Custom report description info. It will be applied to all reports and " "templates by default." @@ -5412,12 +5650,12 @@ msgstr "" "カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適" "用されます。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:959 -#: ../../godmode/setup/setup_visuals.php:1141 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1042 +#: ../../godmode/setup/setup_visuals.php:1492 msgid "Custom report front page" msgstr "カスタムレポート表紙" -#: ../../enterprise/meta/advanced/metasetup.visual.php:960 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1043 msgid "" "Custom report front page. It will be applied to all reports and templates by " "default." @@ -5425,27 +5663,27 @@ msgstr "" "カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用さ" "れます。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:971 -#: ../../enterprise/meta/include/functions_meta.php:1424 -#: ../../godmode/setup/setup_visuals.php:1151 -#: ../../include/functions_config.php:1430 +#: ../../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 msgid "PDF font size (px)" msgstr "PDF フォントサイズ(px)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:974 -#: ../../enterprise/meta/include/functions_meta.php:1414 -#: ../../godmode/setup/setup_visuals.php:1156 -#: ../../include/functions_config.php:1426 +#: ../../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 msgid "HTML font size for SLA (em)" msgstr "SLA 用 HTML フォントサイズ(em)" -#: ../../enterprise/meta/advanced/metasetup.visual.php:977 -#: ../../enterprise/meta/include/functions_meta.php:1539 -#: ../../godmode/setup/setup_visuals.php:1161 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1065 +#: ../../enterprise/meta/include/functions_meta.php:1574 +#: ../../godmode/setup/setup_visuals.php:1513 msgid "Graph image height for HTML reports" msgstr "HTML レポートのグラフ画像の高さ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:979 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1066 msgid "" "This is the height in pixels of the module graph or custom graph in the " "reports (only: HTML)" @@ -5453,71 +5691,47 @@ msgstr "" "これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです" "(HTMLのみ)。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:996 -#: ../../enterprise/meta/include/functions_meta.php:1444 -#: ../../godmode/setup/setup_visuals.php:1475 -#: ../../include/functions_config.php:1458 +#: ../../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 msgid "CSV divider" msgstr "CSV 区切り文字" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1036 -#: ../../enterprise/meta/include/functions_meta.php:1454 -#: ../../godmode/setup/setup_visuals.php:1521 -#: ../../include/functions_config.php:1462 +#: ../../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 msgid "CSV decimal separator" msgstr "CSV小数点区切り文字" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1044 -#: ../../enterprise/meta/include/functions_meta.php:1434 -#: ../../godmode/setup/setup_visuals.php:1170 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1146 +#: ../../enterprise/meta/include/functions_meta.php:1469 +#: ../../godmode/setup/setup_visuals.php:1517 msgid "Interval description" msgstr "間隔の表示" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1046 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1147 msgid "" "A long interval description is for example 10 hours, 20 minutes 33 seconds”, a " "short one is 10h 20m 33s" msgstr "" "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1074 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 -#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1824 -#: ../../enterprise/meta/include/functions_meta.php:1840 -#: ../../enterprise/meta/include/functions_meta.php:1850 -#: ../../enterprise/meta/include/functions_meta.php:1860 -#: ../../enterprise/meta/include/functions_meta.php:1870 -#: ../../enterprise/meta/include/functions_meta.php:1880 -#: ../../godmode/setup/setup_visuals.php:1194 -#: ../../godmode/setup/setup_visuals.php:1209 -#: ../../godmode/setup/setup_visuals.php:1217 -#: ../../godmode/setup/setup_visuals.php:1237 -#: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1434 -#: ../../include/functions_config.php:1438 -#: ../../include/functions_config.php:1442 -#: ../../include/functions_config.php:1446 -#: ../../include/functions_config.php:1450 -#: ../../include/functions_config.php:1454 -msgid "Custom report front" -msgstr "カスタムレポートスタイル" - -#: ../../enterprise/meta/advanced/metasetup.visual.php:1061 -#: ../../enterprise/meta/include/functions_meta.php:1599 -#: ../../enterprise/meta/include/functions_meta.php:1850 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 -#: ../../godmode/setup/setup_visuals.php:1194 -#: ../../include/functions_config.php:1040 -#: ../../include/functions_config.php:1442 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1164 +#: ../../enterprise/meta/include/functions_meta.php:1654 +#: ../../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 msgid "Custom logo" msgstr "カスタムロゴ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1062 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:128 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:132 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1165 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 +#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:126 msgid "" "The path of custom logos is 'images/custom_logo' in the console installation. " "You can upload more files (ONLY JPEG AND PNG) with the upload tool." @@ -5525,36 +5739,62 @@ msgstr "" "カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツー" "ルを使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1085 -#: ../../enterprise/meta/include/functions_meta.php:1860 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:143 -#: ../../godmode/setup/setup_visuals.php:1217 -#: ../../include/functions_config.php:1446 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1184 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1195 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1222 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1237 +#: ../../enterprise/meta/include/functions_meta.php:1879 +#: ../../enterprise/meta/include/functions_meta.php:1895 +#: ../../enterprise/meta/include/functions_meta.php:1905 +#: ../../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 +#: ../../include/functions_config.php:1500 +#: ../../include/functions_config.php:1504 +msgid "Custom report front" +msgstr "カスタムレポートスタイル" + +#: ../../enterprise/meta/advanced/metasetup.visual.php:1195 +#: ../../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 msgid "Header" msgstr "ヘッダー" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1095 -#: ../../enterprise/meta/include/functions_meta.php:1870 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:153 -#: ../../godmode/setup/setup_visuals.php:1237 -#: ../../include/functions_config.php:1450 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1222 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1237 +#: ../../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 msgid "First page" msgstr "最初のページ" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1324 -#: ../../godmode/setup/setup_visuals.php:1827 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1420 +#: ../../godmode/setup/setup_visuals.php:2356 msgid "Logo preview" msgstr "ロゴのプレビュー" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1346 -#: ../../godmode/setup/setup_visuals.php:1857 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1442 +#: ../../godmode/setup/setup_visuals.php:2386 msgid "Splash Preview" msgstr "スプラッシュプレビュー" -#: ../../enterprise/meta/advanced/metasetup.visual.php:1351 -#: ../../godmode/setup/setup_visuals.php:1881 +#: ../../enterprise/meta/advanced/metasetup.visual.php:1447 +#: ../../godmode/setup/setup_visuals.php:2410 +#: ../../godmode/reporting/visual_console_builder.data.php:196 msgid "Background preview" msgstr "背景のプレビュー" @@ -5644,16 +5884,16 @@ msgstr "エージェント: %d はマイグレーションキューにすでに #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:130 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:158 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:88 -#: ../../godmode/modules/manage_nc_groups.php:153 -#: ../../godmode/agentes/planned_downtime.list.php:280 +#: ../../godmode/modules/manage_nc_groups.php:177 +#: ../../godmode/agentes/planned_downtime.list.php:291 #: ../../godmode/netflow/nf_item_list.php:121 #: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/netflow/nf_edit.php:105 ../../godmode/netflow/nf_edit.php:138 +#: ../../godmode/netflow/nf_edit.php:112 ../../godmode/netflow/nf_edit.php:145 #: ../../godmode/reporting/map_builder.php:210 #: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 #: ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:70 -#: ../../godmode/events/event_filter.php:97 +#: ../../godmode/events/event_filter.php:78 +#: ../../godmode/events/event_filter.php:105 #: ../../operation/reporting/graph_viewer.php:59 #: ../../operation/reporting/graph_viewer.php:67 msgid "Not deleted. Error deleting data" @@ -5663,16 +5903,15 @@ msgstr "データの削除に失敗しました。" msgid "Problems delete queue" msgstr "キューの削除で問題が発生しました" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:321 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:318 msgid "Source Server" msgstr "ソースサーバ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:356 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:472 -#: ../../enterprise/godmode/policies/policy_agents.php:454 -#: ../../enterprise/godmode/policies/policy_agents.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:585 -#: ../../enterprise/godmode/policies/policy_agents.php:850 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:353 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:459 +#: ../../enterprise/godmode/policies/policy_agents.php:429 +#: ../../enterprise/godmode/policies/policy_agents.php:539 +#: ../../enterprise/godmode/policies/policy_agents.php:570 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 #: ../../godmode/massive/massive_copy_modules.php:112 #: ../../godmode/massive/massive_copy_modules.php:265 @@ -5684,447 +5923,468 @@ 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:1258 ../../include/functions_html.php:1410 -#: ../../include/functions_massive_operations.php:138 +#: ../../include/functions_html.php:1290 ../../include/functions_html.php:1440 +#: ../../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:1786 +#: ../../operation/events/events.php:1704 msgid "Group recursion" msgstr "子グループを含める" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 -#: ../../enterprise/godmode/policies/policy_agents.php:535 -#: ../../enterprise/godmode/policies/policy_agents.php:549 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:356 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:462 +#: ../../enterprise/godmode/policies/policy_agents.php:616 +#: ../../enterprise/godmode/policies/policy_agents.php:629 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:217 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 -#: ../../enterprise/include/class/Omnishell.class.php:827 -#: ../../enterprise/include/class/Omnishell.class.php:906 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:430 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:365 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:739 +#: ../../enterprise/include/class/Omnishell.class.php:1029 +#: ../../enterprise/include/class/Omnishell.class.php:1108 msgid "Filter agent" msgstr "エージェントのフィルタ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:371 -#: ../../enterprise/include/class/Omnishell.class.php:837 -#: ../../godmode/agentes/planned_downtime.editor.php:1103 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:368 +#: ../../enterprise/include/class/Omnishell.class.php:1039 +#: ../../godmode/agentes/planned_downtime.editor.php:1210 msgid "Available agents" msgstr "エージェント" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:384 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:381 msgid "Discard history data" msgstr "ヒストリデータ削除" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:399 -msgid "Move" -msgstr "移動" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:857 -#: ../../enterprise/include/class/Omnishell.class.php:869 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:402 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:847 +#: ../../enterprise/include/class/Omnishell.class.php:1071 msgid "Add agents" msgstr "エージェント追加" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:428 -#: ../../enterprise/include/class/Omnishell.class.php:882 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:415 +#: ../../enterprise/include/class/Omnishell.class.php:1084 msgid "Remove agents" msgstr "エージェント削除" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:439 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:426 msgid "Destination Server" msgstr "対象サーバ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:487 -#: ../../enterprise/include/class/Omnishell.class.php:917 -#: ../../enterprise/operation/services/massive/services.create.php:1244 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:255 -#: ../../enterprise/operation/services/massive/service.create.elements.php:601 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:364 +#: ../../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/service.delete.elements.php:262 +#: ../../enterprise/operation/services/massive/service.create.elements.php:610 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:369 msgid "Selected agents" msgstr "選択したエージェント" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:518 -msgid "Move agents" -msgstr "エージェント移動" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:552 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:538 msgid "Agents do not exist in target server." msgstr "対象サーバにエージェントがありません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:553 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:539 msgid "Check group is synchronized with target server." msgstr "対象サーバでグループが同期されていることを確認してください。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:554 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:540 msgid "All policies needed are synchronized with target server." msgstr "必要なすべてのポリシーは、対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:555 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:541 msgid "All remote plugins needed are synchronized with target server." msgstr "必要なすべてのプラグインは対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:556 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:542 msgid "All collections needed are syncronized with target server." msgstr "必要なすべてのコレクションは対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:557 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 msgid "" "All remote inventory definitions needed are syncronized with target server." msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:558 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 msgid "" "All alert templates definitions needed are syncronized with target server." msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:559 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 msgid "All alert actions needed are syncronized with target server." msgstr "必要なすべてのアラートアクションは対象サーバと同期されています。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:560 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:546 msgid "Agents conf does not exists in target server." msgstr "対象サーバにエージェントの設定がありません。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:561 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:547 #, php-format msgid "Both %s servers must be in the same version" msgstr "両方の %s サーバは同じバージョンである必要があります" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:562 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:548 msgid "Check target server ip address is set" msgstr "対象サーバの IP アドレスが設定されているか確認してください。" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:578 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:567 +msgid "Move" +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_events.php:250 msgid "Agent alias" msgstr "エージェントの別名" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:579 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:580 msgid "Source node" msgstr "ソースノード" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:580 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:581 msgid "Target node" msgstr "対象ノード" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:581 +#: ../../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/include/ajax/agent_autoconfiguration.ajax.php:423 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:483 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:818 -#: ../../godmode/agentes/agent_incidents.php:91 -#: ../../godmode/snmpconsole/snmp_alert.php:1105 -#: ../../godmode/snmpconsole/snmp_alert.php:1168 -#: ../../godmode/alerts/alert_list.list.php:136 -#: ../../godmode/alerts/alert_templates.php:51 -#: ../../godmode/alerts/configure_alert_template.php:1118 -#: ../../godmode/alerts/alert_view.php:124 -#: ../../godmode/setup/setup_integria.php:379 -#: ../../godmode/setup/setup_integria.php:501 -#: ../../include/functions_reporting_html.php:5287 -#: ../../include/functions_events.php:4398 -#: ../../operation/agentes/estado_generalagente.php:667 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:478 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:538 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:591 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:853 +#: ../../godmode/agentes/agent_incidents.php:90 +#: ../../godmode/snmpconsole/snmp_alert.php:1613 +#: ../../godmode/snmpconsole/snmp_alert.php:1775 +#: ../../godmode/alerts/alert_list.list.php:146 +#: ../../godmode/alerts/alert_templates.php:49 +#: ../../godmode/alerts/configure_alert_template.php:1149 +#: ../../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 #: ../../operation/incidents/integriaims_export_csv.php:85 -#: ../../operation/incidents/configure_integriaims_incident.php:296 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 -#: ../../operation/incidents/list_integriaims_incidents.php:348 -#: ../../operation/incidents/list_integriaims_incidents.php:519 +#: ../../operation/incidents/configure_integriaims_incident.php:287 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:341 +#: ../../operation/incidents/list_integriaims_incidents.php:388 +#: ../../operation/incidents/list_integriaims_incidents.php:590 msgid "Priority" msgstr "優先度" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 -#: ../../enterprise/meta/include/functions_meta.php:2135 -#: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:835 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1141 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1236 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1588 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1885 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2214 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2645 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2658 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3163 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3253 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3292 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3357 -#: ../../godmode/alerts/configure_alert_template.php:228 -#: ../../godmode/alerts/configure_alert_template.php:232 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:583 +#: ../../enterprise/meta/include/functions_meta.php:2240 +#: ../../enterprise/include/class/CommandCenter.class.php:458 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:844 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1150 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1245 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1597 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1894 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2223 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2654 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2667 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2995 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3172 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3262 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3301 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3366 +#: ../../godmode/alerts/configure_alert_template.php:245 #: ../../godmode/alerts/configure_alert_template.php:249 -#: ../../godmode/alerts/configure_alert_template.php:253 +#: ../../godmode/alerts/configure_alert_template.php:266 #: ../../godmode/alerts/configure_alert_template.php:270 -#: ../../godmode/alerts/configure_alert_template.php:274 -#: ../../include/functions_config.php:1631 +#: ../../godmode/alerts/configure_alert_template.php:287 +#: ../../godmode/alerts/configure_alert_template.php:291 +#: ../../include/functions_config.php:1729 msgid "Step" msgstr "ステップ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:585 msgid "Active db only" msgstr "アクティブ DB のみ" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:637 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:638 msgid "Creating modules in target node" msgstr "対象ノードでモジュール作成中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:641 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:642 msgid "Disabling agent in source node and enabling in target one" msgstr "ソースノードでエージェント無効化および対象ノードで有効化中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:645 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:646 msgid "Transferring data" msgstr "データ転送中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:650 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:651 msgid "Creating agent in target node" msgstr "対象ノードでエージェント作成中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:656 -#: ../../enterprise/include/functions_HA_cluster.php:542 -#: ../../enterprise/include/functions_HA_cluster.php:547 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1618 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1623 -#: ../../enterprise/include/class/DatabaseHA.class.php:208 -#: ../../enterprise/include/class/AgentRepository.class.php:918 -#: ../../enterprise/include/class/AgentRepository.class.php:923 -#: ../../enterprise/include/class/Omnishell.class.php:1081 -#: ../../enterprise/include/class/LogSource.class.php:795 -#: ../../enterprise/include/class/LogSource.class.php:800 -#: ../../enterprise/include/class/ManageBackups.class.php:484 -#: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/functions_ux_console.php:483 -#: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:359 -#: ../../enterprise/operation/agentes/wux_console_view.php:431 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1060 -#: ../../include/ajax/snmp_browser.ajax.php:259 -#: ../../include/class/ConfigPEN.class.php:744 -#: ../../include/class/ConfigPEN.class.php:749 -#: ../../include/class/SatelliteAgent.class.php:1076 -#: ../../include/class/SatelliteAgent.class.php:1081 -#: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2094 -#: ../../include/class/CredentialStore.class.php:1619 -#: ../../include/class/CredentialStore.class.php:1624 -#: ../../include/class/ModuleTemplates.class.php:1425 -#: ../../include/class/ModuleTemplates.class.php:1430 -#: ../../include/class/SatelliteCollection.class.php:640 -#: ../../include/class/SatelliteCollection.class.php:645 -#: ../../include/class/WebServerModuleDebug.class.php:366 -#: ../../include/class/WebServerModuleDebug.class.php:371 -#: ../../include/class/AgentWizard.class.php:6016 -#: ../../include/class/AgentWizard.class.php:6021 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:372 -#: ../../operation/visual_console/view.php:926 -#: ../../operation/visual_console/view.php:931 -msgid "Failed" -msgstr "失敗" - -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:660 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 #: ../../enterprise/meta/advanced/policymanager.queue.php:261 -#: ../../enterprise/godmode/policies/policy_queue.php:671 -#: ../../enterprise/godmode/policies/policy_queue.php:674 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 -#: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4171 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4290 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4444 +#: ../../enterprise/godmode/policies/policy_queue.php:711 +#: ../../enterprise/godmode/policies/policy_queue.php:714 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:453 +#: ../../enterprise/include/class/Omnishell.class.php:369 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4180 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4299 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4459 msgid "Finished" msgstr "完了" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:661 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:662 #: ../../update_manager_client/lib/UpdateManager/Client.php:1874 msgid "Completed" msgstr "完了" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:666 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:667 msgid "Queued" msgstr "キューに入っています" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:671 -#: ../../godmode/agentes/planned_downtime.list.php:662 -#: ../../godmode/agentes/planned_downtime.list.php:735 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:672 +#: ../../godmode/agentes/planned_downtime.list.php:739 +#: ../../godmode/agentes/planned_downtime.list.php:812 msgid "Running" msgstr "実行中" -#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:880 +#: ../../enterprise/meta/advanced/agents_setup.move_agents.php:894 msgid "checking migration requirements" msgstr "マイグレーション要求をチェック中" -#: ../../enterprise/meta/advanced/servers.php:39 -#: ../../godmode/servers/modificar_server.php:206 +#: ../../enterprise/meta/advanced/servers.php:37 +#: ../../godmode/servers/modificar_server.php:308 msgid "Server deleted successfully" msgstr "サーバを削除しました。" -#: ../../enterprise/meta/advanced/servers.php:41 -#: ../../godmode/servers/modificar_server.php:208 +#: ../../enterprise/meta/advanced/servers.php:39 +#: ../../godmode/servers/modificar_server.php:310 msgid "There was a problem deleting the server" msgstr "サーバの削除に失敗しました。" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:129 -#: ../../enterprise/extensions/translate_string.php:253 +#: ../../enterprise/extensions/translate_string.php:264 msgid "Translation added successfully" msgstr "翻訳を追加しました" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:131 -#: ../../enterprise/extensions/translate_string.php:255 +#: ../../enterprise/extensions/translate_string.php:266 msgid "Translation string could not be created" msgstr "翻訳文字列を作成できませんでした" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:144 -#: ../../enterprise/extensions/translate_string.php:268 +#: ../../enterprise/extensions/translate_string.php:279 msgid "Translation updated successfully" msgstr "翻訳を更新しました" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:146 -#: ../../enterprise/extensions/translate_string.php:270 +#: ../../enterprise/extensions/translate_string.php:281 msgid "Translation string could not be updated" msgstr "翻訳文字列を更新できませんでした" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 -#: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:1139 -#: ../../godmode/massive/massive_edit_users.php:249 -#: ../../operation/users/user_edit.php:402 +#: ../../enterprise/extensions/translate_string.php:308 +#: ../../godmode/users/configure_user.php:1096 +#: ../../godmode/users/user_management.php:558 +#: ../../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 +#: ../../operation/users/user_edit.php:437 msgid "Language" msgstr "言語" -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:186 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:189 +#: ../../enterprise/extensions/translate_string.php:322 +#: ../../enterprise/extensions/translate_string.php:323 +#: ../../enterprise/godmode/agentes/collection_manager.php:54 +#: ../../enterprise/godmode/agentes/collections.php:438 +#: ../../enterprise/godmode/policies/policies.php:323 +#: ../../enterprise/godmode/policies/policy_collections.php:160 +msgid "Free text for search (*)" +msgstr "検索文字列 (*)" + +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:198 #: ../../enterprise/meta/advanced/metasetup.relations.php:451 -#: ../../enterprise/meta/advanced/collections.php:217 -#: ../../enterprise/meta/advanced/collections.php:230 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:262 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:359 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:416 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:684 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:755 -#: ../../enterprise/meta/agentsearch.php:110 +#: ../../enterprise/meta/advanced/collections.php:227 +#: ../../enterprise/meta/advanced/collections.php:246 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:294 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:351 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:619 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:690 +#: ../../enterprise/meta/agentsearch.php:108 #: ../../enterprise/meta/general/header.php:45 #: ../../enterprise/meta/general/header.php:47 #: ../../enterprise/meta/general/main_header.php:689 #: ../../enterprise/meta/general/main_header.php:691 -#: ../../enterprise/extensions/translate_string.php:323 -#: ../../enterprise/godmode/modules/local_components.php:576 -#: ../../enterprise/godmode/modules/local_components.php:601 -#: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:426 -#: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:858 -#: ../../enterprise/godmode/policies/policy_agents.php:871 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 -#: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/log/log_viewer.php:514 -#: ../../enterprise/operation/log/log_viewer.php:797 -#: ../../enterprise/operation/services/services.treeview_services.php:134 -#: ../../enterprise/operation/services/services.list.php:225 -#: ../../enterprise/operation/services/services.list.php:318 -#: ../../enterprise/operation/services/services.table_services.php:147 -#: ../../enterprise/operation/services/services.table_services.php:238 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:760 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:797 -#: ../../enterprise/tools/ipam/ipam_list.php:90 -#: ../../enterprise/tools/ipam/ipam_list.php:164 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:164 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:173 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:432 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 -#: ../../extensions/module_groups.php:283 -#: ../../godmode/modules/manage_network_components.php:681 -#: ../../godmode/groups/group_list.php:790 -#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:462 -#: ../../godmode/users/user_list.php:472 -#: ../../godmode/agentes/modificar_agente.php:363 -#: ../../godmode/agentes/modificar_agente.php:372 -#: ../../godmode/agentes/planned_downtime.list.php:321 -#: ../../godmode/agentes/planned_downtime.list.php:406 -#: ../../godmode/agentes/module_manager.php:56 -#: ../../godmode/alerts/alert_actions.php:244 -#: ../../godmode/alerts/alert_actions.php:302 -#: ../../godmode/alerts/alert_templates.php:314 +#: ../../enterprise/extensions/translate_string.php:334 +#: ../../enterprise/godmode/policies/policy_modules.php:1466 +#: ../../enterprise/godmode/policies/policy_collections.php:172 +#: ../../enterprise/godmode/policies/policy_agents.php:440 +#: ../../enterprise/godmode/policies/policy_agents.php:462 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:155 +#: ../../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/services/services.list.php:233 +#: ../../enterprise/operation/services/services.list.php:338 +#: ../../enterprise/operation/services/services.table_services.php:171 +#: ../../enterprise/operation/services/services.table_services.php:334 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:530 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:614 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:631 +#: ../../enterprise/tools/ipam/ipam_list.php:49 +#: ../../enterprise/tools/ipam/ipam_list.php:143 +#: ../../enterprise/tools/ipam/ipam_list.php:160 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:198 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:223 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:240 +#: ../../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/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/reporting/map_builder.php:350 -#: ../../godmode/reporting/map_builder.php:372 -#: ../../godmode/reporting/graphs.php:241 -#: ../../godmode/reporting/visual_console_favorite.php:158 -#: ../../godmode/reporting/visual_console_favorite.php:188 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1293 -#: ../../godmode/reporting/reporting_builder.php:796 +#: ../../godmode/alerts/alert_templates.php:342 +#: ../../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:70 +#: ../../mobile/operation/agent.php:320 ../../include/ajax/heatmap.ajax.php:72 #: ../../include/functions_snmp.php:358 -#: ../../include/class/SatelliteAgent.class.php:189 -#: ../../include/class/AuditLog.class.php:179 +#: ../../include/class/SatelliteAgent.class.php:184 #: ../../include/class/CalendarManager.class.php:1071 -#: ../../include/class/SatelliteCollection.class.php:160 -#: ../../include/class/AgentWizard.class.php:2750 -#: ../../include/functions_snmp_browser.php:925 -#: ../../include/functions_snmp_browser.php:1509 -#: ../../operation/search_results.php:193 -#: ../../operation/agentes/estado_agente.php:280 -#: ../../operation/agentes/estado_agente.php:291 -#: ../../operation/agentes/status_monitor.php:547 +#: ../../include/class/SatelliteCollection.class.php:164 +#: ../../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 +#: ../../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:377 -#: ../../operation/inventory/inventory.php:430 +#: ../../operation/inventory/inventory.php:640 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "検索" -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:187 -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:188 -#: ../../enterprise/extensions/translate_string.php:313 -#: ../../enterprise/extensions/translate_string.php:314 -#: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:422 -#: ../../enterprise/godmode/policies/policies.php:330 -#: ../../enterprise/godmode/policies/policy_collections.php:248 -msgid "Free text for search (*)" -msgstr "検索文字列 (*)" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:215 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:216 +#: ../../enterprise/meta/advanced/collections.php:261 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:338 +#: ../../enterprise/meta/event/custom_events.php:67 +#: ../../enterprise/meta/event/custom_events.php:86 +#: ../../enterprise/meta/general/main_header.php:291 +#: ../../enterprise/meta/general/main_menu.php:489 +#: ../../enterprise/extensions/translate_string.php:349 +#: ../../enterprise/extensions/translate_string.php:350 +#: ../../enterprise/extensions/vmware/vmware_view.php:689 +#: ../../enterprise/extensions/vmware/vmware_view.php:1860 +#: ../../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/policies.php:364 +#: ../../enterprise/godmode/policies/policy_linking.php:175 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:415 +#: ../../enterprise/godmode/policies/policy_collections.php:196 +#: ../../enterprise/godmode/policies/policy_agents.php:475 +#: ../../enterprise/godmode/setup/setup_skins.php:154 +#: ../../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/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 +#: ../../godmode/agentes/planned_downtime.list.php:661 +#: ../../godmode/agentes/planned_downtime.list.php:662 +#: ../../godmode/agentes/planned_downtime.list.php:711 +#: ../../godmode/agentes/planned_downtime.list.php:712 +#: ../../godmode/reporting/reporting_builder.list_items.php:283 +#: ../../godmode/reporting/map_builder.php:400 +#: ../../godmode/reporting/graphs.php:299 +#: ../../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 +#: ../../include/functions_snmp_browser.php:992 +#: ../../operation/agentes/estado_agente.php:490 +#: ../../operation/agentes/status_monitor.php:1081 +#: ../../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/reporting/reporting_viewer.php:305 +#: ../../operation/reporting/graph_viewer.php:415 +msgid "Filters" +msgstr "フィルタ" -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:206 -#: ../../enterprise/extensions/translate_string.php:334 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:233 +#: ../../enterprise/extensions/translate_string.php:366 msgid "Original string" msgstr "オリジナルの文字列" -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:207 -#: ../../enterprise/extensions/translate_string.php:335 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:234 +#: ../../enterprise/extensions/translate_string.php:367 msgid "Translation in selected language" msgstr "選択した言語での翻訳" -#: ../../enterprise/meta/advanced/metasetup.translate_string.php:208 -#: ../../enterprise/extensions/translate_string.php:336 +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:235 +#: ../../enterprise/extensions/translate_string.php:368 msgid "Customize translation" msgstr "翻訳カスタマイズ" +#: ../../enterprise/meta/advanced/metasetup.translate_string.php:304 +#: ../../enterprise/extensions/translate_string.php:434 +#: ../../enterprise/godmode/setup/setup_acl.php:934 +#: ../../enterprise/godmode/reporting/visual_console_template.php:281 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 +#: ../../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 +msgid "No data to show" +msgstr "表示するデータがありません" + #: ../../enterprise/meta/advanced/metasetup.relations.php:218 #: ../../enterprise/meta/advanced/metasetup.relations.php:572 -#: ../../enterprise/meta/include/functions_autoprovision.php:388 +#: ../../enterprise/meta/include/functions_autoprovision.php:401 #: ../../enterprise/meta/include/functions_wizard_meta.php:494 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:755 -#: ../../enterprise/godmode/setup/setup_acl.php:463 -#: ../../enterprise/godmode/setup/setup_acl.php:765 +#: ../../enterprise/godmode/setup/setup_acl.php:609 +#: ../../enterprise/godmode/setup/setup_acl.php:904 #: ../../enterprise/include/functions_cron.php:582 #: ../../enterprise/include/lib/NetworkManager.php:87 -#: ../../godmode/agentes/module_manager_editor_wmi.php:61 -#: ../../godmode/agentes/module_manager_editor_network.php:96 -#: ../../godmode/massive/massive_edit_modules.php:819 -#: ../../include/functions_html.php:1885 ../../include/functions_html.php:1886 -#: ../../include/functions_html.php:1996 ../../include/functions_html.php:1997 -#: ../../include/functions_html.php:2146 ../../include/functions_html.php:2147 -#: ../../include/functions_html.php:6321 ../../include/functions_html.php:6322 -#: ../../include/class/CredentialStore.class.php:983 -#: ../../operation/netflow/nf_live_view.php:392 +#: ../../godmode/agentes/module_manager_editor_wmi.php:59 +#: ../../godmode/agentes/module_manager_editor_network.php:105 +#: ../../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/class/CredentialStore.class.php:959 +#: ../../operation/netflow/nf_live_view.php:274 msgid "Custom" msgstr "カスタム" @@ -6151,8 +6411,8 @@ msgid "Imei" msgstr "IMEI" #: ../../enterprise/meta/advanced/metasetup.relations.php:330 -#: ../../include/class/NetworkMap.class.php:3219 -#: ../../include/class/NetworkMap.class.php:3220 +#: ../../include/class/NetworkMap.class.php:3265 +#: ../../include/class/NetworkMap.class.php:3266 msgid "Relations" msgstr "関連付" @@ -6174,37 +6434,37 @@ msgid "Show list relations" msgstr "関係一覧の表示" #: ../../enterprise/meta/advanced/metasetup.relations.php:430 -#: ../../enterprise/meta/include/functions_autoprovision.php:643 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:496 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:592 +#: ../../enterprise/meta/include/functions_autoprovision.php:700 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:503 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:593 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:827 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:413 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2581 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:402 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2570 #: ../../enterprise/include/functions_reporting_csv.php:1208 #: ../../enterprise/include/functions_reporting_csv.php:1234 #: ../../enterprise/include/functions_reporting_csv.php:1265 #: ../../enterprise/include/functions_reporting_csv.php:1320 #: ../../enterprise/include/functions_reporting_csv.php:1424 #: ../../enterprise/include/functions_reporting_csv.php:2731 -#: ../../enterprise/operation/services/services.service.php:124 -#: ../../enterprise/operation/services/services.list.php:506 -#: ../../godmode/agentes/module_manager_editor_common.php:1228 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:116 -#: ../../godmode/massive/massive_edit_modules.php:884 -#: ../../godmode/alerts/configure_alert_template.php:816 -#: ../../godmode/setup/setup_visuals.php:1363 -#: ../../godmode/setup/setup_visuals.php:1424 -#: ../../godmode/setup/setup_visuals.php:1444 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2662 -#: ../../godmode/reporting/visual_console_builder.wizard.php:319 -#: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reporting_html.php:945 -#: ../../include/functions_reporting_html.php:2371 -#: ../../include/functions_reporting_html.php:4875 -#: ../../include/functions_reporting_html.php:5405 -#: ../../include/ajax/events.php:2088 ../../include/functions_graph.php:5186 +#: ../../enterprise/operation/services/services.service.php:115 +#: ../../enterprise/operation/services/services.list.php:544 +#: ../../godmode/agentes/module_manager_editor_common.php:1432 +#: ../../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/reporting/visual_console_builder.wizard.php:330 +#: ../../include/functions_visual_map_editor.php:691 +#: ../../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/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reports.php:1075 +#: ../../include/functions_reports.php:1087 #: ../../include/functions_netflow.php:212 #: ../../include/functions_snmp_browser.php:560 msgid "Value" @@ -6219,66 +6479,68 @@ msgid "Node address" msgstr "ノードアドレス" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/godmode/policies/policy_alerts.php:575 -#: ../../enterprise/godmode/policies/policy_modules.php:1471 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:255 +#: ../../enterprise/godmode/policies/policy_modules.php:1546 #: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:241 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:379 -#: ../../enterprise/godmode/services/services.massive.elements.php:66 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:397 +#: ../../enterprise/godmode/services/services.massive.elements.php:79 #: ../../enterprise/godmode/reporting/graph_template_list.php:209 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:191 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3597 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3795 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3818 -#: ../../enterprise/godmode/servers/manage_export.php:142 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:413 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:475 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2631 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2951 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:248 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3599 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3797 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3820 +#: ../../enterprise/godmode/servers/manage_export.php:178 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:468 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:530 +#: ../../enterprise/include/ajax/policy.ajax.php:419 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2666 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3012 #: ../../enterprise/include/functions_services.php:1615 -#: ../../enterprise/operation/agentes/policy_view.php:260 -#: ../../enterprise/tools/ipam/ipam_list.php:663 -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 -#: ../../godmode/modules/manage_nc_groups.php:243 -#: ../../godmode/modules/manage_inventory_modules.php:284 -#: ../../godmode/modules/manage_network_components.php:758 +#: ../../enterprise/operation/agentes/policy_view.php:261 +#: ../../enterprise/tools/ipam/ipam_list.php:746 +#: ../../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_templates.php:250 -#: ../../godmode/agentes/agent_template.php:239 -#: ../../godmode/agentes/planned_downtime.editor.php:1294 -#: ../../godmode/agentes/module_manager.php:910 +#: ../../godmode/agentes/agent_template.php:277 +#: ../../godmode/agentes/planned_downtime.editor.php:1446 +#: ../../godmode/agentes/module_manager.php:647 #: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/netflow/nf_edit.php:161 -#: ../../godmode/snmpconsole/snmp_alert.php:1278 -#: ../../godmode/snmpconsole/snmp_alert.php:1435 -#: ../../godmode/snmpconsole/snmp_filters.php:291 -#: ../../godmode/massive/massive_operations.php:409 +#: ../../godmode/netflow/nf_edit.php:168 +#: ../../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_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:759 -#: ../../godmode/alerts/alert_view.php:388 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4524 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4545 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 -#: ../../godmode/events/event_filter.php:141 +#: ../../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/visual_console_builder.elements.php:134 +#: ../../godmode/events/event_filter.php:149 #: ../../mobile/operation/tactical.php:348 -#: ../../include/functions_reporting_html.php:3357 -#: ../../include/functions_reporting_html.php:5925 -#: ../../include/functions.php:3099 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/functions_reporting_html.php:3451 +#: ../../include/functions_reporting_html.php:6013 +#: ../../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:217 -#: ../../include/class/AgentsAlerts.class.php:892 -#: ../../include/class/SnmpConsole.class.php:544 -#: ../../include/class/AuditLog.class.php:108 -#: ../../include/class/AuditLog.class.php:200 -#: ../../include/class/ModuleTemplates.class.php:895 +#: ../../include/functions_profile.php:207 +#: ../../include/class/AgentsAlerts.class.php:911 +#: ../../include/class/SnmpConsole.class.php:512 +#: ../../include/class/AuditLog.class.php:111 +#: ../../include/class/AuditLog.class.php:230 +#: ../../include/class/ModuleTemplates.class.php:850 #: ../../include/functions_ui_renders.php:117 -#: ../../operation/agentes/alerts_status.functions.php:127 -#: ../../operation/search_alerts.php:37 ../../general/logon_ok.php:250 +#: ../../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 msgid "Action" msgstr "アクション" @@ -6295,31 +6557,32 @@ msgid "Passwords" msgstr "パスワード" #: ../../enterprise/meta/advanced/metasetup.password.php:93 -#: ../../enterprise/meta/include/functions_meta.php:356 -#: ../../enterprise/godmode/setup/setup.php:299 -#: ../../include/functions_config.php:472 +#: ../../enterprise/meta/include/functions_meta.php:377 +#: ../../enterprise/godmode/setup/setup.php:318 +#: ../../include/functions_config.php:494 msgid "Enable password policy" msgstr "パスワードポリシーを利用する" #: ../../enterprise/meta/advanced/metasetup.password.php:94 -#: ../../enterprise/meta/advanced/metasetup.password.php:136 -#: ../../enterprise/meta/advanced/metasetup.password.php:141 -#: ../../enterprise/meta/advanced/metasetup.password.php:147 -#: ../../enterprise/meta/advanced/metasetup.password.php:153 -#: ../../enterprise/meta/advanced/metasetup.password.php:157 -#: ../../enterprise/meta/advanced/metasetup.password.php:161 -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 -#: ../../enterprise/meta/advanced/metasetup.setup.php:203 -#: ../../enterprise/meta/advanced/metasetup.setup.php:219 -#: ../../enterprise/meta/advanced/metasetup.setup.php:223 -#: ../../enterprise/meta/advanced/metasetup.setup.php:285 -#: ../../enterprise/meta/advanced/metasetup.setup.php:299 -#: ../../enterprise/meta/advanced/metasetup.setup.php:321 -#: ../../enterprise/meta/advanced/metasetup.setup.php:325 -#: ../../enterprise/meta/advanced/metasetup.setup.php:347 -#: ../../enterprise/meta/advanced/metasetup.setup.php:373 -#: ../../enterprise/meta/advanced/metasetup.performance.php:83 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:136 +#: ../../enterprise/meta/advanced/metasetup.password.php:175 +#: ../../enterprise/meta/advanced/metasetup.password.php:194 +#: ../../enterprise/meta/advanced/metasetup.password.php:201 +#: ../../enterprise/meta/advanced/metasetup.password.php:208 +#: ../../enterprise/meta/advanced/metasetup.password.php:215 +#: ../../enterprise/meta/advanced/metasetup.password.php:222 +#: ../../enterprise/meta/advanced/metasetup.setup.php:125 +#: ../../enterprise/meta/advanced/metasetup.setup.php:244 +#: ../../enterprise/meta/advanced/metasetup.setup.php:287 +#: ../../enterprise/meta/advanced/metasetup.setup.php:351 +#: ../../enterprise/meta/advanced/metasetup.setup.php:413 +#: ../../enterprise/meta/advanced/metasetup.setup.php:478 +#: ../../enterprise/meta/advanced/metasetup.setup.php:502 +#: ../../enterprise/meta/advanced/metasetup.setup.php:526 +#: ../../enterprise/meta/advanced/metasetup.setup.php:552 +#: ../../enterprise/meta/advanced/metasetup.setup.php:578 +#: ../../enterprise/meta/advanced/metasetup.setup.php:620 +#: ../../enterprise/meta/advanced/metasetup.performance.php:134 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:553 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:574 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:644 @@ -6328,66 +6591,67 @@ msgstr "パスワードポリシーを利用する" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1005 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1033 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:338 -#: ../../enterprise/godmode/setup/setup_auth.php:386 -#: ../../enterprise/godmode/setup/setup_auth.php:1179 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:553 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:209 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/include/functions_cron.php:757 -#: ../../enterprise/include/functions_tasklist.php:351 +#: ../../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/reporting/reporting_builder.template.php:521 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:317 +#: ../../enterprise/godmode/reporting/visual_console_template.php:304 +#: ../../enterprise/include/functions_cron.php:756 +#: ../../enterprise/include/functions_tasklist.php:352 #: ../../enterprise/include/functions_reporting_csv.php:1990 -#: ../../enterprise/include/functions_reporting.php:2339 -#: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/users/configure_user.php:1338 -#: ../../godmode/agentes/agent_conf_gis.php:126 +#: ../../enterprise/include/functions_reporting.php:2357 +#: ../../godmode/update_manager/update_manager.setup.php:395 +#: ../../godmode/users/configure_user.php:1301 +#: ../../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_modules.php:616 -#: ../../godmode/massive/massive_edit_modules.php:638 -#: ../../godmode/massive/massive_edit_modules.php:707 -#: ../../godmode/massive/massive_edit_modules.php:729 -#: ../../godmode/massive/massive_edit_modules.php:769 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1081 -#: ../../godmode/massive/massive_edit_modules.php:1109 -#: ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 -#: ../../godmode/reporting/reporting_builder.main.php:194 -#: ../../godmode/reporting/reporting_builder.php:1090 -#: ../../godmode/reporting/visual_console_builder.wizard.php:380 -#: ../../godmode/reporting/visual_console_builder.wizard.php:467 -#: ../../godmode/servers/modificar_server.php:47 -#: ../../include/functions_reporting_html.php:1629 -#: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 +#: ../../godmode/massive/massive_edit_modules.php:631 +#: ../../godmode/massive/massive_edit_modules.php:653 +#: ../../godmode/massive/massive_edit_modules.php:722 +#: ../../godmode/massive/massive_edit_modules.php:744 +#: ../../godmode/massive/massive_edit_modules.php:784 +#: ../../godmode/massive/massive_edit_modules.php:1058 +#: ../../godmode/massive/massive_edit_modules.php:1096 +#: ../../godmode/massive/massive_edit_modules.php:1124 +#: ../../godmode/alerts/alert_view.php:135 +#: ../../godmode/alerts/alert_view.php:265 +#: ../../godmode/reporting/reporting_builder.php:1084 +#: ../../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_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:390 -#: ../../include/class/SnmpConsole.class.php:463 -#: ../../operation/users/user_edit.php:398 -#: ../../operation/netflow/nf_live_view.php:460 +#: ../../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 msgid "Yes" msgstr "はい" #: ../../enterprise/meta/advanced/metasetup.password.php:95 -#: ../../enterprise/meta/advanced/metasetup.password.php:137 -#: ../../enterprise/meta/advanced/metasetup.password.php:142 -#: ../../enterprise/meta/advanced/metasetup.password.php:148 -#: ../../enterprise/meta/advanced/metasetup.password.php:154 -#: ../../enterprise/meta/advanced/metasetup.password.php:158 -#: ../../enterprise/meta/advanced/metasetup.password.php:162 -#: ../../enterprise/meta/advanced/metasetup.setup.php:150 -#: ../../enterprise/meta/advanced/metasetup.setup.php:213 -#: ../../enterprise/meta/advanced/metasetup.setup.php:220 -#: ../../enterprise/meta/advanced/metasetup.setup.php:224 -#: ../../enterprise/meta/advanced/metasetup.setup.php:286 -#: ../../enterprise/meta/advanced/metasetup.setup.php:309 -#: ../../enterprise/meta/advanced/metasetup.setup.php:322 -#: ../../enterprise/meta/advanced/metasetup.setup.php:335 -#: ../../enterprise/meta/advanced/metasetup.setup.php:357 -#: ../../enterprise/meta/advanced/metasetup.setup.php:383 -#: ../../enterprise/meta/advanced/metasetup.performance.php:84 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:137 +#: ../../enterprise/meta/advanced/metasetup.password.php:182 +#: ../../enterprise/meta/advanced/metasetup.password.php:195 +#: ../../enterprise/meta/advanced/metasetup.password.php:202 +#: ../../enterprise/meta/advanced/metasetup.password.php:209 +#: ../../enterprise/meta/advanced/metasetup.password.php:216 +#: ../../enterprise/meta/advanced/metasetup.password.php:223 +#: ../../enterprise/meta/advanced/metasetup.setup.php:136 +#: ../../enterprise/meta/advanced/metasetup.setup.php:255 +#: ../../enterprise/meta/advanced/metasetup.setup.php:295 +#: ../../enterprise/meta/advanced/metasetup.setup.php:359 +#: ../../enterprise/meta/advanced/metasetup.setup.php:421 +#: ../../enterprise/meta/advanced/metasetup.setup.php:486 +#: ../../enterprise/meta/advanced/metasetup.setup.php:510 +#: ../../enterprise/meta/advanced/metasetup.setup.php:534 +#: ../../enterprise/meta/advanced/metasetup.setup.php:560 +#: ../../enterprise/meta/advanced/metasetup.setup.php:586 +#: ../../enterprise/meta/advanced/metasetup.setup.php:628 +#: ../../enterprise/meta/advanced/metasetup.performance.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:142 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:554 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:575 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:645 @@ -6396,190 +6660,169 @@ msgstr "はい" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:967 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1006 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1034 -#: ../../enterprise/godmode/setup/setup.php:64 -#: ../../enterprise/godmode/setup/setup_auth.php:208 -#: ../../enterprise/godmode/setup/setup_auth.php:341 -#: ../../enterprise/godmode/setup/setup_auth.php:389 -#: ../../enterprise/godmode/setup/setup_auth.php:1182 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:555 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:211 -#: ../../enterprise/godmode/reporting/visual_console_template.php:286 -#: ../../enterprise/include/functions_cron.php:756 -#: ../../enterprise/include/functions_tasklist.php:351 +#: ../../enterprise/godmode/setup/setup.php:61 +#: ../../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/reporting/reporting_builder.template.php:523 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:319 +#: ../../enterprise/godmode/reporting/visual_console_template.php:304 +#: ../../enterprise/include/functions_cron.php:755 +#: ../../enterprise/include/functions_tasklist.php:352 #: ../../enterprise/include/functions_reporting_csv.php:1990 -#: ../../enterprise/include/functions_reporting.php:2339 -#: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/users/configure_user.php:1339 -#: ../../godmode/agentes/agent_conf_gis.php:127 +#: ../../enterprise/include/functions_reporting.php:2357 +#: ../../godmode/update_manager/update_manager.setup.php:396 +#: ../../godmode/users/configure_user.php:1302 +#: ../../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_modules.php:617 -#: ../../godmode/massive/massive_edit_modules.php:639 -#: ../../godmode/massive/massive_edit_modules.php:708 -#: ../../godmode/massive/massive_edit_modules.php:730 -#: ../../godmode/massive/massive_edit_modules.php:770 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1082 -#: ../../godmode/massive/massive_edit_modules.php:1110 -#: ../../godmode/alerts/alert_view.php:129 -#: ../../godmode/alerts/alert_view.php:259 -#: ../../godmode/alerts/alert_view.php:352 ../../godmode/setup/news.php:287 -#: ../../godmode/reporting/reporting_builder.main.php:204 -#: ../../godmode/reporting/reporting_builder.php:1092 -#: ../../godmode/reporting/visual_console_builder.wizard.php:390 -#: ../../godmode/reporting/visual_console_builder.wizard.php:468 -#: ../../godmode/servers/modificar_server.php:45 +#: ../../godmode/massive/massive_edit_modules.php:632 +#: ../../godmode/massive/massive_edit_modules.php:654 +#: ../../godmode/massive/massive_edit_modules.php:723 +#: ../../godmode/massive/massive_edit_modules.php:745 +#: ../../godmode/massive/massive_edit_modules.php:785 +#: ../../godmode/massive/massive_edit_modules.php:1058 +#: ../../godmode/massive/massive_edit_modules.php:1097 +#: ../../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/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:1629 -#: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 +#: ../../include/functions_reporting_html.php:1664 +#: ../../include/functions_cron.php:686 ../../include/functions_profile.php:304 #: ../../include/functions_snmp.php:382 -#: ../../include/class/SnmpConsole.class.php:462 -#: ../../include/functions_events.php:4769 -#: ../../include/functions_events.php:4774 -#: ../../operation/users/user_edit.php:399 -#: ../../operation/netflow/nf_live_view.php:470 +#: ../../include/class/EventSound.class.php:348 +#: ../../include/class/SnmpConsole.class.php:402 +#: ../../include/functions_events.php:4971 +#: ../../include/functions_events.php:4976 +#: ../../operation/users/user_edit.php:434 +#: ../../operation/netflow/nf_live_view.php:350 msgid "No" msgstr "いいえ" -#: ../../enterprise/meta/advanced/metasetup.password.php:115 -#: ../../enterprise/meta/include/functions_meta.php:366 -#: ../../enterprise/godmode/setup/setup.php:308 -#: ../../include/functions_config.php:476 +#: ../../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 msgid "Min. size password" msgstr "最小パスワードサイズ" -#: ../../enterprise/meta/advanced/metasetup.password.php:116 -#: ../../enterprise/godmode/setup/setup.php:316 +#: ../../enterprise/meta/advanced/metasetup.password.php:122 +#: ../../enterprise/godmode/setup/setup.php:340 msgid " Caracters" msgstr " 文字" -#: ../../enterprise/meta/advanced/metasetup.password.php:119 -#: ../../enterprise/meta/include/functions_meta.php:396 -#: ../../enterprise/godmode/setup/setup.php:337 -#: ../../include/functions_config.php:480 +#: ../../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 msgid "Password expiration" msgstr "パスワードの期限切れ" -#: ../../enterprise/meta/advanced/metasetup.password.php:119 +#: ../../enterprise/meta/advanced/metasetup.password.php:126 msgid "Set 0 if never expire." msgstr "0 に設定すると期限切れは発生しません" -#: ../../enterprise/meta/advanced/metasetup.password.php:120 -#: ../../enterprise/godmode/setup/setup.php:345 +#: ../../enterprise/meta/advanced/metasetup.password.php:134 +#: ../../enterprise/godmode/setup/setup.php:358 msgid " Days" msgstr " 日" -#: ../../enterprise/meta/advanced/metasetup.password.php:123 -#: ../../enterprise/meta/include/functions_meta.php:416 -#: ../../enterprise/godmode/setup/setup.php:357 -#: ../../include/functions_config.php:488 +#: ../../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 msgid "User blocked if login fails" msgstr "ログインに失敗するとユーザをブロックします" -#: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/godmode/setup/setup.php:365 +#: ../../enterprise/meta/advanced/metasetup.password.php:146 +#: ../../enterprise/godmode/setup/setup.php:406 msgid " Minutes" msgstr " 分" -#: ../../enterprise/meta/advanced/metasetup.password.php:127 -#: ../../enterprise/meta/include/functions_meta.php:426 -#: ../../enterprise/godmode/setup/setup.php:368 -#: ../../include/functions_config.php:492 +#: ../../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 msgid "Number of failed login attempts" msgstr "ログイン失敗回数" -#: ../../enterprise/meta/advanced/metasetup.password.php:127 +#: ../../enterprise/meta/advanced/metasetup.password.php:150 msgid "Two attempts minimum" msgstr "最小は 2回です" -#: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/godmode/setup/setup.php:376 +#: ../../enterprise/meta/advanced/metasetup.password.php:158 +#: ../../enterprise/godmode/setup/setup.php:424 msgid " Attempts" msgstr " 回" -#: ../../enterprise/meta/advanced/metasetup.password.php:131 -#: ../../enterprise/meta/include/functions_meta.php:448 -#: ../../enterprise/godmode/setup/setup.php:397 -#: ../../include/functions_config.php:512 +#: ../../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 msgid "Compare previous password" msgstr "以前のパスワードとの比較" -#: ../../enterprise/meta/advanced/metasetup.password.php:135 -#: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/godmode/setup/setup.php:388 -#: ../../include/functions_config.php:508 +#: ../../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 msgid "Enable password history" msgstr "パスワード履歴の有効化" -#: ../../enterprise/meta/advanced/metasetup.password.php:140 -#: ../../enterprise/meta/include/functions_meta.php:459 -#: ../../enterprise/godmode/setup/setup.php:379 -#: ../../include/functions_config.php:504 +#: ../../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 msgid "Apply password policy to admin users" msgstr "管理者ユーザへパスワードポリシーを適用" -#: ../../enterprise/meta/advanced/metasetup.password.php:146 -#: ../../enterprise/meta/include/functions_meta.php:406 -#: ../../enterprise/godmode/setup/setup.php:348 -#: ../../include/functions_config.php:484 +#: ../../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 msgid "Force change password on first login" msgstr "初回ログイン時にパスワードを変更する" -#: ../../enterprise/meta/advanced/metasetup.password.php:152 -#: ../../enterprise/meta/include/functions_meta.php:376 -#: ../../enterprise/godmode/setup/setup.php:319 -#: ../../include/functions_config.php:496 +#: ../../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 msgid "Password must have numbers" msgstr "パスワードには数字を含む必要があります" -#: ../../enterprise/meta/advanced/metasetup.password.php:156 -#: ../../enterprise/meta/include/functions_meta.php:386 -#: ../../enterprise/godmode/setup/setup.php:328 -#: ../../include/functions_config.php:500 +#: ../../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 msgid "Password must have symbols" msgstr "パスワードには記号を含む必要があります" -#: ../../enterprise/meta/advanced/metasetup.password.php:160 -#: ../../enterprise/meta/include/functions_meta.php:470 -#: ../../enterprise/godmode/setup/setup.php:409 -#: ../../include/functions_config.php:516 +#: ../../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 msgid "Activate reset password" msgstr "パスワードリセットの有効化" -#: ../../enterprise/meta/advanced/metasetup.password.php:165 -#: ../../enterprise/meta/include/functions_meta.php:480 -#: ../../enterprise/godmode/setup/setup.php:420 -#: ../../include/functions_config.php:520 +#: ../../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 msgid "Exclusion word list for passwords" msgstr "パスワードの除外単語リスト" -#: ../../enterprise/meta/advanced/metasetup.password.php:193 -#: ../../enterprise/godmode/setup/setup.php:497 +#: ../../enterprise/meta/advanced/metasetup.password.php:262 +#: ../../enterprise/godmode/setup/setup.php:530 msgid "Enter restricted passwords..." msgstr "制限付パスワードを入力..." -#: ../../enterprise/meta/advanced/agents_setup.php:60 -#: ../../enterprise/meta/advanced/policymanager.php:54 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:50 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:55 -#: ../../enterprise/meta/monitoring/group_view.php:51 -#: ../../enterprise/meta/monitoring/tactical.php:38 -#: ../../enterprise/meta/index.php:1010 ../../enterprise/meta/agentsearch.php:48 -#: ../../enterprise/meta/general/logon_ok.php:16 -#: ../../enterprise/extensions/vmware/vmware_view.php:1368 -#: ../../enterprise/include/class/CommandCenter.class.php:142 -#: ../../godmode/netflow/nf_item_list.php:49 ../../godmode/netflow/nf_edit.php:53 -#: ../../godmode/netflow/nf_edit_form.php:69 -#: ../../operation/agentes/ver_agente.php:1395 -#: ../../operation/netflow/nf_live_view.php:149 -msgid "Main" -msgstr "メイン" - -#: ../../enterprise/meta/advanced/agents_setup.php:64 -msgid "Propagation" -msgstr "伝播" - #: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:64 msgid "Cannot create an unnamed rule." msgstr "名前の内ルールは作成できません。" @@ -6603,7 +6846,7 @@ msgid "There was an error rule when moving the provisioning." msgstr "プロビジョニング移動でエラーです。" #: ../../enterprise/meta/advanced/agents_setup.autoprovision_rules.php:201 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:190 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:222 msgid "Create rule" msgstr "ルール作成" @@ -6640,191 +6883,222 @@ msgstr "" "意してください。" #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:610 +#: ../../godmode/setup/setup_general.php:725 msgid "Mail configuration" msgstr "メール設定" #: ../../enterprise/meta/advanced/metasetup.mail.php:122 -#: ../../include/functions_config.php:376 +#: ../../include/functions_config.php:398 msgid "From dir" msgstr "From アドレス" -#: ../../enterprise/meta/advanced/metasetup.mail.php:125 -#: ../../godmode/setup/setup_general.php:630 -#: ../../include/functions_config.php:380 +#: ../../enterprise/meta/advanced/metasetup.mail.php:127 +#: ../../godmode/setup/setup_general.php:756 +#: ../../include/functions_config.php:402 msgid "From name" msgstr "From 名" -#: ../../enterprise/meta/advanced/metasetup.mail.php:128 -#: ../../include/functions_config.php:372 +#: ../../enterprise/meta/advanced/metasetup.mail.php:132 +#: ../../include/functions_config.php:394 msgid "Server SMTP" msgstr "SMTP サーバ" -#: ../../enterprise/meta/advanced/metasetup.mail.php:131 -#: ../../include/functions_config.php:384 +#: ../../enterprise/meta/advanced/metasetup.mail.php:137 +#: ../../include/functions_config.php:406 msgid "Port SMTP" msgstr "SMTP ポート" -#: ../../enterprise/meta/advanced/metasetup.mail.php:134 -#: ../../godmode/setup/setup_general.php:660 -#: ../../include/functions_config.php:388 +#: ../../enterprise/meta/advanced/metasetup.mail.php:142 +#: ../../godmode/setup/setup_general.php:817 +#: ../../include/functions_config.php:410 msgid "Encryption" msgstr "暗号化" -#: ../../enterprise/meta/advanced/metasetup.mail.php:140 -#: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/setup/setup_general.php:666 -#: ../../godmode/reporting/create_container.php:294 +#: ../../enterprise/meta/advanced/metasetup.mail.php:148 +#: ../../godmode/gis_maps/configure_gis_map.php:586 +#: ../../godmode/setup/setup_general.php:823 +#: ../../godmode/reporting/create_container.php:291 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/events.php:1043 ../../include/ajax/graph.ajax.php:145 -#: ../../include/functions_html.php:4742 +#: ../../include/ajax/module.php:2549 ../../include/ajax/events.php:1087 +#: ../../include/ajax/graph.ajax.php:145 ../../include/functions_html.php:5106 msgid "none" msgstr "なし" -#: ../../enterprise/meta/advanced/metasetup.mail.php:145 -#: ../../godmode/setup/setup_general.php:671 -#: ../../include/functions_config.php:392 +#: ../../enterprise/meta/advanced/metasetup.mail.php:155 +#: ../../godmode/setup/setup_general.php:792 +#: ../../include/functions_config.php:414 msgid "Email user" msgstr "メールユーザ" -#: ../../enterprise/meta/advanced/metasetup.mail.php:148 -#: ../../godmode/setup/setup_general.php:681 -#: ../../include/functions_config.php:396 +#: ../../enterprise/meta/advanced/metasetup.mail.php:160 +#: ../../godmode/setup/setup_general.php:803 +#: ../../include/functions_config.php:418 msgid "Email password" msgstr "メールユーザパスワード" -#: ../../enterprise/meta/advanced/metasetup.php:55 +#: ../../enterprise/meta/advanced/metasetup.php:53 msgid "Consoles Setup" msgstr "コンソール設定" -#: ../../enterprise/meta/advanced/metasetup.php:63 -#: ../../enterprise/meta/advanced/metasetup.php:246 +#: ../../enterprise/meta/advanced/metasetup.php:61 +#: ../../enterprise/meta/advanced/metasetup.php:242 msgid "General setup" msgstr "一般設定" -#: ../../enterprise/meta/advanced/metasetup.php:71 -#: ../../enterprise/meta/advanced/metasetup.php:249 +#: ../../enterprise/meta/advanced/metasetup.php:69 +#: ../../enterprise/meta/advanced/metasetup.php:245 msgid "Passwords setup" msgstr "パスワード設定" -#: ../../enterprise/meta/advanced/metasetup.php:80 -#: ../../enterprise/meta/advanced/metasetup.php:253 -#: ../../enterprise/meta/include/functions_meta.php:295 +#: ../../enterprise/meta/advanced/metasetup.php:78 +#: ../../enterprise/meta/advanced/metasetup.php:249 +#: ../../enterprise/meta/include/functions_meta.php:296 #: ../../enterprise/meta/general/main_header.php:143 -#: ../../enterprise/meta/general/main_menu.php:257 -#: ../../enterprise/operation/log/elasticsearch_interface.php:31 -#: ../../enterprise/operation/log/log_viewer.php:378 -#: ../../enterprise/operation/log/log_viewer.php:418 -#: ../../enterprise/operation/menu.php:151 +#: ../../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/menu.php:162 +#: ../../operation/agentes/ver_agente.php:1893 msgid "Log viewer" msgstr "ログ・ビューワ" -#: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/godmode/menu.php:127 +#: ../../enterprise/meta/advanced/metasetup.php:89 +#: ../../enterprise/godmode/menu.php:132 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 #: ../../operation/agentes/datos_agente.php:180 msgid "History database" msgstr "ヒストリデータベース" -#: ../../enterprise/meta/advanced/metasetup.php:102 -#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:350 -#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 +#: ../../enterprise/meta/advanced/metasetup.php:100 +#: ../../enterprise/meta/advanced/metasetup.php:253 ../../godmode/menu.php:360 +#: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:274 msgid "Authentication" msgstr "認証" -#: ../../enterprise/meta/advanced/metasetup.php:112 -#: ../../enterprise/meta/advanced/metasetup.php:265 +#: ../../enterprise/meta/advanced/metasetup.php:110 +#: ../../enterprise/meta/advanced/metasetup.php:261 msgid "Visual setup" msgstr "表示設定" -#: ../../enterprise/meta/advanced/metasetup.php:120 -#: ../../enterprise/meta/advanced/metasetup.php:269 +#: ../../enterprise/meta/advanced/metasetup.php:118 +#: ../../enterprise/meta/advanced/metasetup.php:265 msgid "Performance setup" msgstr "パフォーマンス設定" -#: ../../enterprise/meta/advanced/metasetup.php:128 -#: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:421 +#: ../../enterprise/meta/advanced/metasetup.php:126 +#: ../../enterprise/meta/advanced/metasetup.php:225 +#: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" msgstr "ファイルマネージャ" -#: ../../enterprise/meta/advanced/metasetup.php:136 -#: ../../enterprise/meta/advanced/metasetup.php:277 +#: ../../enterprise/meta/advanced/metasetup.php:134 +#: ../../enterprise/meta/advanced/metasetup.php:273 msgid "Strings translation" msgstr "文字列翻訳" -#: ../../enterprise/meta/advanced/metasetup.php:144 -#: ../../enterprise/meta/advanced/metasetup.php:281 +#: ../../enterprise/meta/advanced/metasetup.php:142 +#: ../../enterprise/meta/advanced/metasetup.php:277 msgid "Mail" msgstr "メール" -#: ../../enterprise/meta/advanced/metasetup.php:152 -#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:374 -#: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 +#: ../../enterprise/meta/advanced/metasetup.php:150 +#: ../../enterprise/meta/advanced/metasetup.php:281 ../../godmode/menu.php:389 +#: ../../godmode/setup/setup.php:218 ../../godmode/setup/setup.php:325 msgid "Notifications" msgstr "通知" -#: ../../enterprise/meta/advanced/metasetup.php:164 +#: ../../enterprise/meta/advanced/metasetup.php:162 msgid "Relations rules" msgstr "関係ルール" -#: ../../enterprise/meta/advanced/metasetup.php:177 +#: ../../enterprise/meta/advanced/metasetup.php:175 msgid "Warp Update Setup" msgstr "ワープアップデート設定" -#: ../../enterprise/meta/advanced/metasetup.php:185 +#: ../../enterprise/meta/advanced/metasetup.php:183 msgid "Warp Update Journal" msgstr "ワープアップデート履歴" -#: ../../enterprise/meta/advanced/metasetup.php:193 +#: ../../enterprise/meta/advanced/metasetup.php:191 msgid "Warp Update Offline" msgstr "オフラインワープアップデート" -#: ../../enterprise/meta/advanced/metasetup.php:201 +#: ../../enterprise/meta/advanced/metasetup.php:199 msgid "Warp Update Online" msgstr "オンラインワープアップデート" -#: ../../enterprise/meta/advanced/metasetup.php:241 +#: ../../enterprise/meta/advanced/metasetup.php:237 msgid "Consoles setup" msgstr "コンソール設定" -#: ../../enterprise/meta/advanced/metasetup.php:261 +#: ../../enterprise/meta/advanced/metasetup.php:257 +#: ../../godmode/setup/setup.php:362 msgid "Historical database" msgstr "ヒストリデータベース" -#: ../../enterprise/meta/advanced/metasetup.php:289 +#: ../../enterprise/meta/advanced/metasetup.php:285 msgid "Relations Rules" msgstr "関係ルール" -#: ../../enterprise/meta/advanced/metasetup.php:293 +#: ../../enterprise/meta/advanced/metasetup.php:289 msgid "Online Update Options" msgstr "オンラインアップデートオプション" -#: ../../enterprise/meta/advanced/metasetup.php:297 +#: ../../enterprise/meta/advanced/metasetup.php:293 msgid "Online Update Journal" msgstr "オンラインアップデートジャーナル" -#: ../../enterprise/meta/advanced/metasetup.php:302 +#: ../../enterprise/meta/advanced/metasetup.php:297 msgid "Online Update Offline" msgstr "オンラインアップデート オフライン" -#: ../../enterprise/meta/advanced/metasetup.php:309 +#: ../../enterprise/meta/advanced/metasetup.php:301 msgid "Online Update Online" msgstr "オンラインアップデート オンライン" +#: ../../enterprise/meta/advanced/metasetup.php:306 +#: ../../enterprise/meta/advanced/metasetup.php:319 +#: ../../enterprise/meta/general/logon_ok.php:106 +#: ../../enterprise/meta/general/main_menu.php:702 +#: ../../enterprise/meta/general/main_menu.php:703 +#: ../../enterprise/meta/general/main_menu.php:743 +#: ../../enterprise/meta/general/main_menu.php:744 +#: ../../enterprise/meta/general/main_menu.php:777 +#: ../../enterprise/meta/general/main_menu.php:778 +#: ../../enterprise/extensions/translate_string.php:182 +#: ../../enterprise/godmode/policies/configure_policy.php:38 +#: ../../enterprise/godmode/setup/setup_skins.php:49 +#: ../../enterprise/godmode/setup/edit_skin.php:55 +#: ../../enterprise/godmode/servers/HA_cluster.php:70 +#: ../../enterprise/include/functions_policies.php:3685 +#: ../../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/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 +#: ../../operation/agentes/estado_agente.php:224 +#: ../../operation/gis_maps/render_view.php:174 +msgid "Setup" +msgstr "セットアップ" + #: ../../enterprise/meta/advanced/policymanager.apply.php:129 -#: ../../enterprise/godmode/policies/policy.php:198 -#: ../../enterprise/godmode/policies/policy.php:246 +#: ../../enterprise/godmode/policies/policy.php:251 +#: ../../enterprise/godmode/policies/policy.php:299 msgid "Duplicated or incompatible operation in the queue" msgstr "重複もしくは完了できない操作がキューにあります" #: ../../enterprise/meta/advanced/policymanager.apply.php:137 #: ../../enterprise/meta/advanced/policymanager.apply.php:141 -#: ../../enterprise/godmode/policies/policy.php:186 -#: ../../enterprise/godmode/policies/policy.php:241 +#: ../../enterprise/godmode/policies/policy.php:239 +#: ../../enterprise/godmode/policies/policy.php:294 msgid "Operation successfully added to the queue" msgstr "操作をキューに追加しました" @@ -6836,8 +7110,8 @@ msgstr "データベースのみ" #: ../../enterprise/meta/advanced/policymanager.apply.php:145 #: ../../enterprise/meta/advanced/policymanager.apply.php:149 #: ../../enterprise/meta/advanced/policymanager.apply.php:153 -#: ../../enterprise/godmode/policies/policy.php:192 -#: ../../enterprise/godmode/policies/policy.php:242 +#: ../../enterprise/godmode/policies/policy.php:245 +#: ../../enterprise/godmode/policies/policy.php:295 msgid "Operation cannot be added to the queue" msgstr "操作をキューに追加できません" @@ -6846,35 +7120,55 @@ msgid "Apply Policies" msgstr "ポリシー適用" #: ../../enterprise/meta/advanced/policymanager.apply.php:198 +#: ../../enterprise/godmode/policies/policy_alerts.php:55 +#: ../../enterprise/godmode/policies/policy_linking.php:37 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:61 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:77 +#: ../../enterprise/godmode/policies/policy_collections.php:49 +#: ../../enterprise/godmode/policies/policy.php:81 +#: ../../enterprise/godmode/policies/policy.php:102 +#: ../../enterprise/godmode/policies/policy.php:124 +#: ../../enterprise/godmode/policies/policy.php:154 #: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/operation/agentes/ver_agente.php:216 -#: ../../include/functions_networkmap.php:1299 +#: ../../enterprise/operation/agentes/ver_agente.php:254 +#: ../../include/functions_networkmap.php:1303 #: ../../include/functions_maps.php:42 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:333 -#: ../../operation/tree.php:127 ../../operation/search_results.php:172 -#: ../../operation/search_main.php:73 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:346 +#: ../../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 msgid "Policies" msgstr "ポリシー" #: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:297 -#: ../../godmode/setup/os.php:225 -#: ../../godmode/reporting/visual_console_builder.wizard.php:333 -#: ../../mobile/include/functions_web.php:28 +#: ../../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:714 -#: ../../enterprise/godmode/policies/policy_agents.php:890 -#: ../../enterprise/godmode/policies/policy_agents.php:1405 +#: ../../enterprise/godmode/policies/policy_queue.php:754 +#: ../../enterprise/godmode/policies/policy_agents.php:964 +#: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../include/functions_visual_map_editor.php:641 msgid "Apply" msgstr "適用" #: ../../enterprise/meta/advanced/metasetup.consoles.php:99 -#: ../../enterprise/include/class/Omnishell.class.php:1555 +#: ../../enterprise/include/class/Omnishell.class.php:2009 #: ../../enterprise/include/lib/Metaconsole/Node.php:140 #: ../../enterprise/include/lib/Metaconsole/Node.php:189 #: ../../enterprise/include/lib/Metaconsole/Node.php:240 @@ -6940,7 +7234,7 @@ msgid "Node synchronization process failed: " msgstr "ノード同期処理が失敗しました: " #: ../../enterprise/meta/advanced/metasetup.consoles.php:341 -#: ../../godmode/setup/license.php:127 +#: ../../godmode/setup/license.php:129 msgid "Unknown error" msgstr "不明なエラー" @@ -6962,12 +7256,12 @@ msgid "Could not be delete" msgstr "削除できませんでした" #: ../../enterprise/meta/advanced/metasetup.consoles.php:406 -#: ../../enterprise/godmode/policies/policy_alerts.php:126 -#: ../../enterprise/godmode/policies/policy_modules.php:518 +#: ../../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:432 -#: ../../godmode/agentes/configurar_agente.php:2224 -#: ../../godmode/agentes/modificar_agente.php:234 +#: ../../godmode/users/user_list.php:448 +#: ../../godmode/agentes/configurar_agente.php:2188 +#: ../../godmode/agentes/modificar_agente.php:227 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:382 #: ../../include/ajax/alert_list.ajax.php:358 @@ -6975,11 +7269,11 @@ msgid "Successfully enabled" msgstr "有効にしました。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:407 -#: ../../enterprise/godmode/policies/policy_alerts.php:127 -#: ../../enterprise/godmode/policies/policy_modules.php:519 +#: ../../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:2225 -#: ../../godmode/agentes/modificar_agente.php:235 +#: ../../godmode/agentes/configurar_agente.php:2189 +#: ../../godmode/agentes/modificar_agente.php:228 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 #: ../../godmode/alerts/alert_list.php:383 #: ../../include/ajax/alert_list.ajax.php:360 @@ -6987,12 +7281,12 @@ msgid "Could not be enabled" msgstr "有効にできませんでした。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:431 -#: ../../enterprise/godmode/policies/policy_alerts.php:152 -#: ../../enterprise/godmode/policies/policy_modules.php:535 +#: ../../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:426 -#: ../../godmode/agentes/configurar_agente.php:2249 -#: ../../godmode/agentes/modificar_agente.php:277 +#: ../../godmode/users/user_list.php:442 +#: ../../godmode/agentes/configurar_agente.php:2213 +#: ../../godmode/agentes/modificar_agente.php:270 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:418 #: ../../include/ajax/alert_list.ajax.php:379 @@ -7011,10 +7305,10 @@ msgstr "システムは中央管理されていますが、ノードが変更さ #: ../../enterprise/meta/advanced/metasetup.consoles.php:452 msgid "" "If you have changed the node database to a different one, please go to Command " -"Center and perform a database unification process." +"center and perform a database unification process." msgstr "" -"ノードデータベースを別のものに変更した場合は、コマンドセンターに移動して、デー" -"タベースの統合プロセスを実行してください。" +"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの" +"統合プロセスを実行してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:455 msgid "" @@ -7048,62 +7342,63 @@ msgstr "" msgid "This node will not be usable until unifying the environment" msgstr "このノードは、環境を統合するまで使用できません" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:552 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:551 #, php-format msgid "%s Metaconsole item edition" msgstr "%s メタコンソールアイテム編集" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:558 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:880 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:513 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1725 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:555 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:926 +#: ../../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/reporting_builder.item_editor.php:1270 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.elements.php:284 -#: ../../godmode/reporting/visual_console_builder.wizard.php:446 +#: ../../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:779 -#: ../../include/functions_visual_map_editor.php:1394 +#: ../../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/lib/Dashboard/Widgets/sla_percent.php:325 +#: ../../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/module_icon.php:343 -#: ../../include/lib/Dashboard/Widgets/module_value.php:318 +#: ../../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:334 -#: ../../operation/visual_console/view.php:338 +#: ../../include/lib/Dashboard/Widgets/module_status.php:338 +#: ../../operation/visual_console/view.php:356 msgid "Label" msgstr "ラベル" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:558 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:556 msgid "Custom label to identify this setup." msgstr "この設定を識別するためのカスタムラベル。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:561 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:882 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:563 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:928 #: ../../enterprise/godmode/setup/setup_metaconsole.php:206 msgid "Console URL" msgstr "コンソール URL" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:561 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 #, php-format msgid "Full path to %s console (without index.php). Example %s" msgstr "%s コンソールへのフルパス(index.php を除く)。例 %s" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:564 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:571 #: ../../enterprise/godmode/setup/setup_metaconsole.php:202 msgid "Auth token" msgstr "認証トークン" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:565 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:572 #, php-format msgid "" "Token previously configured on the destination %s console in order to use " @@ -7111,111 +7406,110 @@ msgid "" msgstr "" "委任された認証を使用するための、宛先 %s コンソールで以前に設定されたトークン。" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:578 -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 -#: ../../enterprise/meta/include/functions_meta.php:220 -#: ../../enterprise/meta/include/functions_meta.php:230 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:586 +#: ../../enterprise/meta/advanced/metasetup.setup.php:378 +#: ../../enterprise/meta/include/functions_meta.php:221 +#: ../../enterprise/meta/include/functions_meta.php:231 #: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:212 -#: ../../include/functions_config.php:236 +#: ../../godmode/setup/setup_general.php:359 +#: ../../include/functions_config.php:240 msgid "API password" msgstr "API パスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:589 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:598 #: ../../enterprise/godmode/setup/setup_metaconsole.php:233 msgid "Console User" msgstr "コンソールユーザ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:598 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:609 #: ../../enterprise/godmode/setup/setup_metaconsole.php:237 msgid "Console Password" msgstr "コンソールパスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:609 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:883 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:621 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:929 #: ../../enterprise/godmode/setup/setup_metaconsole.php:215 #: ../../enterprise/godmode/setup/setup_metaconsole.php:275 msgid "DB Host" msgstr "DB ホスト" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:618 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:633 #: ../../enterprise/godmode/setup/setup_metaconsole.php:219 msgid "DB Name" msgstr "DB 名" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:627 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:645 #: ../../enterprise/godmode/setup/setup_metaconsole.php:224 msgid "DB User" msgstr "DB ユーザ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:636 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:657 #: ../../enterprise/godmode/setup/setup_metaconsole.php:228 msgid "DB Password" msgstr "DB パスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:647 -#: ../../enterprise/include/class/DatabaseHA.class.php:958 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:669 +#: ../../enterprise/include/class/DatabaseHA.class.php:960 msgid "DB port" msgstr "DB ポート" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:658 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:744 -#: ../../enterprise/meta/advanced/metasetup.consoles.php:749 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:681 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:772 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:777 #: ../../enterprise/godmode/policies/policy_modules.php:413 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 -#: ../../enterprise/godmode/setup/setup_history.php:265 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 -#: ../../extensions/quick_shell.php:521 -#: ../../godmode/agentes/module_manager_editor.php:748 -#: ../../godmode/agentes/agent_manager.php:796 -#: ../../godmode/agentes/agent_manager.php:959 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:656 +#: ../../enterprise/godmode/setup/setup_history.php:277 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:138 +#: ../../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/massive/massive_add_action_alerts.php:251 -#: ../../include/functions_visual_map_editor.php:895 -#: ../../operation/agentes/status_monitor.php:848 -#: ../../operation/events/events.php:2212 +#: ../../include/functions_visual_map_editor.php:893 +#: ../../operation/agentes/status_monitor.php:1022 +#: ../../operation/events/events.php:2271 msgid "Advanced options" msgstr "拡張オプション" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:658 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:681 msgid "Define database connection from Pandora FMS node to this Metaconsole" msgstr "Pandora FMS ノードからメタコンソールへのデータベース接続定義" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:680 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:699 msgid "Metaconsole DB Host" msgstr "メタコンソール DB ホスト" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:689 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:710 msgid "Metaconsole DB Name" msgstr "メタコンソール DB 名" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:698 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:721 msgid "Metaconsole DB User" msgstr "メタコンソール DB ユーザ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:707 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:732 msgid "Metaconsole DB Password" msgstr "メタコンソール DB パスワード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:718 -#: ../../enterprise/godmode/setup/setup.php:179 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:744 +#: ../../enterprise/godmode/setup/setup.php:167 msgid "Metaconsole DB port" msgstr "メタコンソール DB ポート" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:771 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:800 msgid "Register empty node" msgstr "空のノードを登録" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:777 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:810 msgid "Register node with data to merge" msgstr "マージするデータと合わせてノードを登録" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:814 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:860 msgid "Node data will be wiped out" msgstr "ノードデータは消去されます" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:815 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:861 msgid "" "Information contained in this node is not needed. Node information will be " "erased, and replaced with new data from this metaconsole automatically after " @@ -7225,11 +7519,11 @@ msgstr "" "にこのメタコンソールからの新しいデータに自動的に置き換えられます。よろしいです" "か?" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:831 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:877 msgid "Node data will be merged" msgstr "ノードデータはマージされます" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:832 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:878 msgid "" "Information contained in this node is useful. After register the node, you " "must launch a merge process from command center, which will combine " @@ -7240,97 +7534,101 @@ msgstr "" "マージ処理を起動する必要があります。これにより、現在の環境の情報がこの新しい" "ノードに含まれる情報とマージされます。よろしいですか?" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:874 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:920 #: ../../enterprise/godmode/setup/setup_metaconsole.php:270 -#: ../../enterprise/include/class/CommandCenter.class.php:317 +#: ../../enterprise/include/class/CommandCenter.class.php:319 msgid "DB" msgstr "DB" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:875 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:921 #: ../../enterprise/godmode/setup/setup_metaconsole.php:271 -#: ../../enterprise/include/class/CommandCenter.class.php:318 +#: ../../enterprise/include/class/CommandCenter.class.php:320 msgid "API" msgstr "API" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:876 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:922 #: ../../enterprise/godmode/setup/setup_metaconsole.php:272 msgid "Compatibility" msgstr "互換性" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:877 -#: ../../enterprise/include/functions_setup.php:192 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:923 +#: ../../enterprise/include/functions_setup.php:196 msgid "Agent cache" msgstr "エージェントキャッシュ" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:878 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:924 #: ../../enterprise/meta/advanced/policymanager.sync.php:328 #: ../../enterprise/godmode/servers/HA_cluster.php:171 -#: ../../enterprise/include/functions_setup.php:201 +#: ../../enterprise/include/functions_setup.php:204 msgid "Sync" msgstr "同期" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:879 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:925 msgid "Database sync" msgstr "データベース同期" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:884 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:930 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:317 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:330 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:101 #: ../../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 msgid "Manage" msgstr "設定" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:946 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:994 msgid "New node" msgstr "新規ノード" -#: ../../enterprise/meta/advanced/metasetup.consoles.php:978 +#: ../../enterprise/meta/advanced/metasetup.consoles.php:1026 msgid "Synchronize all" msgstr "すべて同期" -#: ../../enterprise/meta/advanced/links.php:47 ../../godmode/setup/links.php:42 +#: ../../enterprise/meta/advanced/links.php:46 ../../godmode/setup/links.php:55 msgid "There was a problem creating link" msgstr "リンクの作成に失敗しました。" -#: ../../enterprise/meta/advanced/links.php:49 +#: ../../enterprise/meta/advanced/links.php:48 #: ../../enterprise/meta/advanced/cron_main.php:164 #: ../../enterprise/meta/advanced/cron_main.php:208 -#: ../../enterprise/meta/advanced/cron_main.php:301 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:76 +#: ../../enterprise/meta/advanced/cron_main.php:279 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:79 #: ../../enterprise/godmode/setup/setup_metaconsole.php:125 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:47 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:221 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:234 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:283 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:302 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:382 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:399 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:224 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:237 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:389 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:406 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export.php:147 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:80 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:111 -#: ../../enterprise/include/ajax/servers.ajax.php:197 -#: ../../enterprise/include/ajax/servers.ajax.php:330 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1787 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1877 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1972 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2066 +#: ../../enterprise/include/ajax/servers.ajax.php:222 +#: ../../enterprise/include/ajax/servers.ajax.php:367 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1792 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1977 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2071 #: ../../enterprise/tools/ipam/ipam_action.php:239 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 -#: ../../godmode/modules/manage_nc_groups.php:84 -#: ../../godmode/users/profile_list.php:269 -#: ../../godmode/users/configure_user.php:568 -#: ../../godmode/agentes/configurar_agente.php:905 -#: ../../godmode/agentes/planned_downtime.editor.php:652 +#: ../../godmode/modules/manage_nc_groups.php:108 +#: ../../godmode/users/profile_list.php:278 +#: ../../godmode/users/configure_user.php:530 +#: ../../godmode/agentes/configurar_agente.php:888 +#: ../../godmode/agentes/planned_downtime.editor.php:660 #: ../../godmode/snmpconsole/snmp_alert.php:302 #: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/alerts/alert_commands.php:659 -#: ../../godmode/alerts/configure_alert_template.php:536 -#: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:66 -#: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 +#: ../../godmode/alerts/alert_commands.php:666 +#: ../../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/class/EventSound.class.php:103 +#: ../../include/class/EventSound.class.php:134 #: ../../include/class/CalendarManager.class.php:537 #: ../../include/class/CalendarManager.class.php:894 #: ../../include/functions_planned_downtimes.php:115 @@ -7338,46 +7636,46 @@ msgstr "リンクの作成に失敗しました。" msgid "Successfully created" msgstr "作成しました。" -#: ../../enterprise/meta/advanced/links.php:60 +#: ../../enterprise/meta/advanced/links.php:59 msgid "The link was not updated, the data is identical" msgstr "リンクは更新されませんでした。データは同一です" -#: ../../enterprise/meta/advanced/links.php:68 ../../godmode/setup/links.php:61 +#: ../../enterprise/meta/advanced/links.php:67 ../../godmode/setup/links.php:74 msgid "There was a problem modifying link" msgstr "リンクの編集に失敗しました。" -#: ../../enterprise/meta/advanced/links.php:70 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:111 -#: ../../enterprise/godmode/policies/policy_modules.php:1254 +#: ../../enterprise/meta/advanced/links.php:69 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:126 +#: ../../enterprise/godmode/policies/policy_modules.php:1265 #: ../../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:132 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:138 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2063 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2688 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1373 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1789 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1879 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1974 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2068 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2693 #: ../../enterprise/tools/ipam/ipam_action.php:279 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:71 #: ../../enterprise/tools/ipam/ipam_massive.php:47 -#: ../../godmode/modules/manage_nc_groups.php:118 -#: ../../godmode/users/profile_list.php:252 +#: ../../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:1215 -#: ../../godmode/agentes/planned_downtime.editor.php:654 -#: ../../godmode/netflow/nf_edit_form.php:139 +#: ../../godmode/agentes/configurar_agente.php:1198 +#: ../../godmode/agentes/planned_downtime.editor.php:662 +#: ../../godmode/netflow/nf_edit_form.php:140 #: ../../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:144 -#: ../../godmode/alerts/alert_templates.php:156 -#: ../../godmode/alerts/configure_alert_template.php:554 +#: ../../godmode/alerts/configure_alert_command.php:149 +#: ../../godmode/alerts/alert_templates.php:161 +#: ../../godmode/alerts/configure_alert_template.php:571 #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 -#: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 -#: ../../godmode/setup/links.php:63 +#: ../../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 #: ../../include/class/CalendarManager.class.php:534 @@ -7386,59 +7684,84 @@ msgstr "リンクの編集に失敗しました。" msgid "Successfully updated" msgstr "更新しました。" -#: ../../enterprise/meta/advanced/links.php:82 ../../godmode/setup/links.php:74 +#: ../../enterprise/meta/advanced/links.php:81 ../../godmode/setup/links.php:87 msgid "There was a problem deleting link" msgstr "リンクの削除に失敗しました。" -#: ../../enterprise/meta/advanced/links.php:100 +#: ../../enterprise/meta/advanced/links.php:99 msgid "Link Name error" msgstr "リンク名エラー" -#: ../../enterprise/meta/advanced/links.php:127 -#: ../../enterprise/meta/advanced/links.php:156 ../../godmode/setup/links.php:116 -#: ../../godmode/setup/links.php:145 +#: ../../enterprise/meta/advanced/links.php:126 +#: ../../enterprise/meta/advanced/links.php:169 ../../godmode/setup/links.php:131 +#: ../../godmode/setup/links.php:195 msgid "Link name" msgstr "リンク名" -#: ../../enterprise/meta/advanced/links.php:130 -#: ../../enterprise/godmode/policies/policy_linking.php:204 -#: ../../godmode/setup/links.php:119 +#: ../../enterprise/meta/advanced/links.php:129 +#: ../../enterprise/godmode/policies/policy_linking.php:251 +#: ../../godmode/setup/links.php:148 msgid "Link" msgstr "リンク" -#: ../../enterprise/meta/advanced/links.php:152 ../../godmode/setup/links.php:141 +#: ../../enterprise/meta/advanced/links.php:165 ../../godmode/setup/links.php:191 msgid "There isn't links" msgstr "リンクがありません" -#: ../../enterprise/meta/advanced/policymanager.php:58 -msgid "Policy Manager" -msgstr "ポリシー管理" - -#: ../../enterprise/meta/advanced/policymanager.php:75 +#: ../../enterprise/meta/advanced/policymanager.php:44 msgid "Apply policies" msgstr "ポリシー適用" -#: ../../enterprise/meta/advanced/policymanager.php:79 -#: ../../enterprise/meta/advanced/policymanager.php:97 +#: ../../enterprise/meta/advanced/policymanager.php:48 +#: ../../enterprise/meta/advanced/policymanager.php:66 msgid "Policies queue" msgstr "ポリシーキュー" -#: ../../enterprise/meta/advanced/policymanager.php:93 +#: ../../enterprise/meta/advanced/policymanager.php:62 msgid "Policies apply" msgstr "ポリシー適用" +#: ../../enterprise/meta/advanced/policymanager.php:85 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:53 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:53 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:60 +#: ../../enterprise/meta/monitoring/group_view.php:55 +#: ../../enterprise/meta/monitoring/tactical.php:55 +#: ../../enterprise/meta/include/functions_agents_meta.php:601 +#: ../../enterprise/meta/agentsearch.php:48 +#: ../../enterprise/meta/general/logon_ok.php:16 +#: ../../enterprise/meta/general/logon_ok.php:22 +#: ../../enterprise/extensions/vmware/vmware_view.php:1434 +#: ../../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 +msgid "Main" +msgstr "メイン" + +#: ../../enterprise/meta/advanced/policymanager.php:89 +msgid "Policy Manager" +msgstr "ポリシー管理" + #: ../../enterprise/meta/advanced/collections.data.php:33 -#: ../../enterprise/meta/advanced/collections.editor.php:60 -#: ../../enterprise/meta/include/functions_agents_meta.php:533 -#: ../../enterprise/godmode/agentes/collections.agents.php:44 +#: ../../enterprise/meta/advanced/collections.data.php:326 +#: ../../enterprise/meta/advanced/collections.editor.php:69 +#: ../../enterprise/meta/advanced/collections.editor.php:91 +#: ../../enterprise/meta/include/functions_agents_meta.php:540 +#: ../../enterprise/godmode/agentes/collections.agents.php:53 +#: ../../enterprise/godmode/agentes/collections.agents.php:87 #: ../../enterprise/godmode/agentes/collections.data.php:54 -#: ../../enterprise/godmode/agentes/collections.editor.php:71 -#: ../../enterprise/godmode/policies/policies.php:509 -#: ../../enterprise/godmode/policies/policy_collections.php:31 -#: ../../enterprise/godmode/menu.php:58 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2217 -#: ../../enterprise/include/functions_policies.php:3799 -#: ../../godmode/servers/modificar_server.php:146 +#: ../../enterprise/godmode/agentes/collections.data.php:64 +#: ../../enterprise/godmode/agentes/collections.editor.php:80 +#: ../../enterprise/godmode/agentes/collections.editor.php:118 +#: ../../enterprise/godmode/agentes/collections.php:144 +#: ../../enterprise/godmode/policies/policies.php:576 +#: ../../enterprise/godmode/policies/policy_collections.php:40 +#: ../../enterprise/godmode/policies/policy_collections.php:53 +#: ../../enterprise/godmode/menu.php:61 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2226 +#: ../../enterprise/include/functions_policies.php:3770 +#: ../../godmode/servers/modificar_server.php:200 #: ../../general/first_task/collections.php:22 msgid "Collections" msgstr "コレクション" @@ -7452,21 +7775,21 @@ msgstr "コレクション" #: ../../enterprise/meta/advanced/collections.data.php:197 #: ../../enterprise/meta/advanced/collections.data.php:238 #: ../../enterprise/meta/advanced/collections.data.php:263 -#: ../../enterprise/meta/advanced/collections.editor.php:54 +#: ../../enterprise/meta/advanced/collections.editor.php:63 #: ../../enterprise/meta/include/functions_events_meta.php:134 -#: ../../enterprise/godmode/agentes/collections.agents.php:47 #: ../../enterprise/godmode/agentes/collections.agents.php:56 -#: ../../enterprise/godmode/agentes/collections.data.php:74 -#: ../../enterprise/godmode/agentes/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:184 -#: ../../enterprise/godmode/agentes/collections.data.php:204 -#: ../../enterprise/godmode/agentes/collections.data.php:224 -#: ../../enterprise/godmode/agentes/collections.data.php:251 -#: ../../enterprise/godmode/agentes/collections.data.php:279 -#: ../../enterprise/godmode/agentes/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:332 -#: ../../enterprise/godmode/agentes/collections.editor.php:56 -#: ../../enterprise/include/functions_reporting_pdf.php:708 +#: ../../enterprise/godmode/agentes/collections.agents.php:65 +#: ../../enterprise/godmode/agentes/collections.data.php:88 +#: ../../enterprise/godmode/agentes/collections.data.php:135 +#: ../../enterprise/godmode/agentes/collections.data.php:206 +#: ../../enterprise/godmode/agentes/collections.data.php:230 +#: ../../enterprise/godmode/agentes/collections.data.php:254 +#: ../../enterprise/godmode/agentes/collections.data.php:285 +#: ../../enterprise/godmode/agentes/collections.data.php:317 +#: ../../enterprise/godmode/agentes/collections.data.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:374 +#: ../../enterprise/godmode/agentes/collections.editor.php:65 +#: ../../enterprise/include/functions_reporting_pdf.php:710 #: ../../enterprise/include/functions_reporting_csv.php:852 #: ../../enterprise/include/functions_reporting_csv.php:882 #: ../../enterprise/include/functions_reporting_csv.php:929 @@ -7479,16 +7802,18 @@ msgstr "コレクション" #: ../../enterprise/include/functions_reporting_csv.php:2473 #: ../../enterprise/include/functions_reporting_csv.php:2568 #: ../../enterprise/include/functions_reporting_csv.php:2790 -#: ../../enterprise/include/functions_reporting.php:2186 -#: ../../enterprise/include/functions_reporting.php:2219 -#: ../../enterprise/include/functions_reporting.php:2223 +#: ../../enterprise/include/functions_reporting.php:2188 +#: ../../enterprise/include/functions_reporting.php:2201 +#: ../../enterprise/include/functions_reporting.php:2236 +#: ../../enterprise/include/functions_reporting.php:2240 #: ../../enterprise/include/functions_services.php:1612 -#: ../../enterprise/operation/agentes/policy_view.php:398 -#: ../../enterprise/operation/agentes/tag_view.php:684 -#: ../../extensions/insert_data.php:194 ../../extensions/insert_data.php:195 +#: ../../enterprise/operation/agentes/policy_view.php:399 +#: ../../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:152 -#: ../../godmode/events/custom_events.php:115 +#: ../../godmode/agentes/status_monitor_custom_fields.php:150 +#: ../../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 @@ -7499,174 +7824,152 @@ msgstr "コレクション" #: ../../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:2268 -#: ../../include/functions_reporting_html.php:2755 -#: ../../include/functions_reporting_html.php:2759 -#: ../../include/functions_reporting_html.php:2760 -#: ../../include/functions_reporting_html.php:2764 -#: ../../include/functions_reporting_html.php:2769 -#: ../../include/functions_reporting_html.php:2774 -#: ../../include/functions_reporting_html.php:2778 -#: ../../include/functions_reporting_html.php:2783 -#: ../../include/functions_reporting_html.php:2790 -#: ../../include/functions_reporting_html.php:2839 -#: ../../include/functions_reporting_html.php:2912 -#: ../../include/ajax/module.php:995 ../../include/ajax/custom_fields.php:412 +#: ../../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 +#: ../../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:4625 -#: ../../include/functions_reporting.php:4666 +#: ../../include/functions_reporting.php:4729 +#: ../../include/functions_reporting.php:4770 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1369 +#: ../../operation/agentes/exportdata.php:114 +#: ../../operation/agentes/status_monitor.php:1590 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_modules.php:38 msgid "Data" msgstr "データ" #: ../../enterprise/meta/advanced/collections.data.php:76 -#: ../../enterprise/godmode/agentes/collections.data.php:174 +#: ../../enterprise/godmode/agentes/collections.data.php:196 msgid "" "Unable to create the collection. Another collection with the same short name." msgstr "コレクションを作成できません。同じ短い名前で他のコレクションがあります。" #: ../../enterprise/meta/advanced/collections.data.php:97 #: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:197 -#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../enterprise/godmode/agentes/collections.data.php:223 +#: ../../enterprise/godmode/agentes/collections.data.php:247 msgid "Unable to create the collection" msgstr "コレクションを作成できません" #: ../../enterprise/meta/advanced/collections.data.php:97 -#: ../../enterprise/godmode/agentes/collections.data.php:197 +#: ../../enterprise/godmode/agentes/collections.data.php:223 msgid "Invalid characters in short name" msgstr "短い名前に不正な文字が含まれています" #: ../../enterprise/meta/advanced/collections.data.php:111 -#: ../../enterprise/godmode/agentes/collections.data.php:59 -#: ../../enterprise/godmode/agentes/collections.data.php:167 -#: ../../enterprise/godmode/agentes/collections.data.php:191 -#: ../../enterprise/godmode/agentes/collections.data.php:211 -#: ../../enterprise/godmode/agentes/collections.data.php:238 -#: ../../enterprise/godmode/agentes/collections.data.php:294 msgid "Manager configuration > New" msgstr "設定管理 > 新規" #: ../../enterprise/meta/advanced/collections.data.php:117 -#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../enterprise/godmode/agentes/collections.data.php:247 #: ../../enterprise/include/functions_local_components.php:174 msgid "Empty name" msgstr "名前が空です" #: ../../enterprise/meta/advanced/collections.data.php:142 #: ../../enterprise/meta/advanced/collections.data.php:190 -#: ../../enterprise/godmode/agentes/collections.data.php:244 -#: ../../enterprise/godmode/agentes/collections.data.php:302 +#: ../../enterprise/godmode/agentes/collections.data.php:278 +#: ../../enterprise/godmode/agentes/collections.data.php:344 msgid "Unable to create the collection." msgstr "コレクションを作成できません。" #: ../../enterprise/meta/advanced/collections.data.php:163 #: ../../enterprise/meta/advanced/collections.data.php:309 -#: ../../enterprise/godmode/agentes/collections.data.php:270 +#: ../../enterprise/godmode/agentes/collections.data.php:308 msgid "Correct create collection" msgstr "コレクションを作成しました" #: ../../enterprise/meta/advanced/collections.data.php:174 #: ../../enterprise/meta/advanced/collections.data.php:241 #: ../../enterprise/meta/advanced/collections.data.php:265 -#: ../../enterprise/meta/advanced/collections.editor.php:57 -#: ../../enterprise/meta/advanced/collections.editor.php:385 -#: ../../enterprise/meta/advanced/collections.editor.php:402 -#: ../../enterprise/godmode/agentes/collections.agents.php:50 -#: ../../enterprise/godmode/agentes/collections.data.php:127 -#: ../../enterprise/godmode/agentes/collections.data.php:281 -#: ../../enterprise/godmode/agentes/collections.data.php:334 -#: ../../enterprise/godmode/agentes/collections.editor.php:65 -#: ../../enterprise/godmode/agentes/collections.editor.php:424 -#: ../../enterprise/godmode/agentes/collections.editor.php:446 +#: ../../enterprise/meta/advanced/collections.editor.php:66 +#: ../../enterprise/meta/advanced/collections.editor.php:411 +#: ../../enterprise/meta/advanced/collections.editor.php:428 +#: ../../enterprise/godmode/agentes/collections.agents.php:59 +#: ../../enterprise/godmode/agentes/collections.data.php:145 +#: ../../enterprise/godmode/agentes/collections.data.php:319 +#: ../../enterprise/godmode/agentes/collections.data.php:376 +#: ../../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:1695 +#: ../../operation/agentes/ver_agente.php:1679 msgid "Files" msgstr "ファイル" #: ../../enterprise/meta/advanced/collections.data.php:231 -#: ../../enterprise/godmode/agentes/collections.data.php:106 -#: ../../enterprise/godmode/agentes/collections.data.php:262 -#: ../../enterprise/godmode/agentes/collections.data.php:351 -#: ../../enterprise/godmode/agentes/collections.data.php:367 -#: ../../enterprise/godmode/agentes/collections.data.php:375 -#: ../../enterprise/godmode/agentes/collections.editor.php:84 msgid "Manager configuration > Edit " msgstr "設定管理 > 編集 " #: ../../enterprise/meta/advanced/collections.data.php:287 -#: ../../enterprise/godmode/agentes/collections.data.php:358 +#: ../../enterprise/godmode/agentes/collections.data.php:400 msgid "Unable to edit the collection, empty name." msgstr "コレクションを編集できません。名前が空です。" #: ../../enterprise/meta/advanced/collections.data.php:300 -#: ../../enterprise/godmode/agentes/collections.data.php:373 +#: ../../enterprise/godmode/agentes/collections.data.php:413 msgid "Unable to edit the collection." msgstr "コレクションを編集できません。" -#: ../../enterprise/meta/advanced/collections.data.php:320 -#: ../../enterprise/meta/advanced/collections.editor.php:79 +#: ../../enterprise/meta/advanced/collections.data.php:317 +#: ../../enterprise/meta/advanced/collections.editor.php:82 +msgid "Edit collection" +msgstr "コレクション編集" + +#: ../../enterprise/meta/advanced/collections.data.php:337 +#: ../../enterprise/meta/advanced/collections.editor.php:105 msgid "This console is not manager of this environment." msgstr "このコンソールは、この環境の管理コンソールではありません。" -#: ../../enterprise/meta/advanced/collections.data.php:332 -#: ../../enterprise/meta/include/functions_autoprovision.php:566 -#: ../../enterprise/godmode/agentes/collections.data.php:425 -#: ../../godmode/setup/os.builder.php:35 -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "Name:" -msgstr "名前:" - -#: ../../enterprise/meta/advanced/collections.data.php:344 -#: ../../enterprise/godmode/agentes/collections.data.php:438 +#: ../../enterprise/meta/advanced/collections.data.php:365 +#: ../../enterprise/godmode/agentes/collections.data.php:495 msgid "Recreate file" msgstr "ファイル再生成" -#: ../../enterprise/meta/advanced/collections.data.php:374 -#: ../../enterprise/meta/advanced/collections.data.php:375 -#: ../../enterprise/godmode/agentes/collection_manager.php:166 -#: ../../enterprise/godmode/agentes/collection_manager.php:167 -#: ../../enterprise/godmode/agentes/collection_manager.php:281 -#: ../../enterprise/godmode/agentes/collection_manager.php:282 -#: ../../enterprise/godmode/agentes/collections.data.php:467 -#: ../../enterprise/godmode/agentes/collections.data.php:468 -#: ../../enterprise/godmode/agentes/collections.php:86 -#: ../../enterprise/godmode/agentes/collections.php:87 +#: ../../enterprise/meta/advanced/collections.data.php:399 +#: ../../enterprise/meta/advanced/collections.data.php:400 +#: ../../enterprise/godmode/agentes/collection_manager.php:218 +#: ../../enterprise/godmode/agentes/collection_manager.php:221 +#: ../../enterprise/godmode/agentes/collection_manager.php:339 +#: ../../enterprise/godmode/agentes/collections.data.php:526 +#: ../../enterprise/godmode/agentes/collections.data.php:527 +#: ../../enterprise/godmode/agentes/collections.php:94 +#: ../../enterprise/godmode/agentes/collections.php:95 msgid "Need to regenerate" msgstr "再生成が必要です" -#: ../../enterprise/meta/advanced/collections.data.php:385 -#: ../../enterprise/meta/advanced/collections.data.php:386 -#: ../../enterprise/godmode/agentes/collection_manager.php:175 -#: ../../enterprise/godmode/agentes/collection_manager.php:176 -#: ../../enterprise/godmode/agentes/collection_manager.php:290 -#: ../../enterprise/godmode/agentes/collection_manager.php:291 -#: ../../enterprise/godmode/agentes/collections.data.php:477 -#: ../../enterprise/godmode/agentes/collections.data.php:478 -#: ../../enterprise/godmode/agentes/collections.php:97 -#: ../../enterprise/godmode/agentes/collections.php:98 -#: ../../enterprise/operation/agentes/collection_view.php:139 -#: ../../enterprise/operation/agentes/collection_view.php:140 +#: ../../enterprise/meta/advanced/collections.data.php:410 +#: ../../enterprise/meta/advanced/collections.data.php:411 +#: ../../enterprise/godmode/agentes/collection_manager.php:229 +#: ../../enterprise/godmode/agentes/collection_manager.php:230 +#: ../../enterprise/godmode/agentes/collection_manager.php:350 +#: ../../enterprise/godmode/agentes/collection_manager.php:351 +#: ../../enterprise/godmode/agentes/collections.data.php:538 +#: ../../enterprise/godmode/agentes/collections.data.php:539 +#: ../../enterprise/godmode/agentes/collections.php:105 +#: ../../enterprise/godmode/agentes/collections.php:106 +#: ../../enterprise/operation/agentes/collection_view.php:148 +#: ../../enterprise/operation/agentes/collection_view.php:149 msgid "The collection directory does not exist." msgstr "コレクションディレクトリが存在しません。" -#: ../../enterprise/meta/advanced/collections.data.php:400 -#: ../../enterprise/godmode/agentes/collections.data.php:492 -msgid "Group:" -msgstr "グループ:" +#: ../../enterprise/meta/advanced/collections.data.php:446 +#: ../../enterprise/godmode/agentes/collections.data.php:600 +msgid "Short name" +msgstr "短い名前" -#: ../../enterprise/meta/advanced/collections.data.php:423 -#: ../../enterprise/godmode/agentes/collections.data.php:514 -msgid "Short name:" -msgstr "短い名前:" - -#: ../../enterprise/meta/advanced/collections.data.php:429 -#: ../../enterprise/godmode/agentes/collections.data.php:519 +#: ../../enterprise/meta/advanced/collections.data.php:452 +#: ../../enterprise/godmode/agentes/collections.data.php:562 msgid "" "The collection's short name is the name of dir in attachment dir and the " "package collection." @@ -7674,24 +7977,17 @@ msgstr "" "コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレ" "クトリ名です。" -#: ../../enterprise/meta/advanced/collections.data.php:429 -#: ../../enterprise/godmode/agentes/collections.data.php:519 +#: ../../enterprise/meta/advanced/collections.data.php:452 +#: ../../enterprise/godmode/agentes/collections.data.php:564 msgid "Short name must contain only alphanumeric characters, - or _ ." msgstr "短い名前は、アルファベットと、- および _ のみ利用できます。" -#: ../../enterprise/meta/advanced/collections.data.php:429 -#: ../../enterprise/godmode/agentes/collections.data.php:519 +#: ../../enterprise/meta/advanced/collections.data.php:452 +#: ../../enterprise/godmode/agentes/collections.data.php:566 msgid "Empty for default short name fc_X where X is the collection id." msgstr "" "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" -#: ../../enterprise/meta/advanced/collections.data.php:435 -#: ../../enterprise/meta/include/functions_autoprovision.php:569 -#: ../../enterprise/godmode/agentes/collections.data.php:523 -#: ../../include/class/SnmpConsole.class.php:1408 -msgid "Description:" -msgstr "説明:" - #: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 #, php-format msgid "Provisioning custom data %s successfully deleted." @@ -7706,412 +8002,334 @@ msgstr "カスタムデータ %s を削除できませんでした。" msgid "There was an error when moving the custom provisioning data." msgstr "カスタムプロビジョニングデータの移動中にエラーです。" -#: ../../enterprise/meta/advanced/collections.editor.php:125 -#: ../../enterprise/meta/advanced/collections.editor.php:193 -#: ../../enterprise/godmode/agentes/collections.editor.php:158 -#: ../../enterprise/godmode/agentes/collections.editor.php:224 -#: ../../godmode/servers/plugin.php:173 -#: ../../include/functions_filemanager.php:737 +#: ../../enterprise/meta/advanced/collections.editor.php:151 +#: ../../enterprise/meta/advanced/collections.editor.php:219 +#: ../../enterprise/godmode/agentes/collections.editor.php:179 +#: ../../enterprise/godmode/agentes/collections.editor.php:245 +#: ../../godmode/servers/plugin.php:171 +#: ../../include/functions_filemanager.php:776 msgid "Edit file" msgstr "ファイル編集" -#: ../../enterprise/meta/advanced/collections.editor.php:128 -#: ../../enterprise/meta/advanced/collections.editor.php:195 -#: ../../enterprise/godmode/agentes/collections.editor.php:161 -#: ../../enterprise/godmode/agentes/collections.editor.php:226 +#: ../../enterprise/meta/advanced/collections.editor.php:154 +#: ../../enterprise/meta/advanced/collections.editor.php:221 +#: ../../enterprise/godmode/agentes/collections.editor.php:182 +#: ../../enterprise/godmode/agentes/collections.editor.php:247 msgid "Back to file explorer" msgstr "ファイルエクスプローラへ戻る" -#: ../../enterprise/meta/advanced/collections.editor.php:167 -#: ../../enterprise/godmode/agentes/collections.editor.php:198 -#: ../../include/functions_filemanager.php:296 +#: ../../enterprise/meta/advanced/collections.editor.php:193 +#: ../../enterprise/godmode/agentes/collections.editor.php:219 +#: ../../include/functions_filemanager.php:297 msgid "Security error." msgstr "セキュリティエラー" -#: ../../enterprise/meta/advanced/collections.editor.php:217 -#: ../../enterprise/godmode/agentes/collections.editor.php:248 -#: ../../godmode/servers/plugin.php:192 +#: ../../enterprise/meta/advanced/collections.editor.php:243 +#: ../../enterprise/godmode/agentes/collections.editor.php:269 +#: ../../godmode/servers/plugin.php:190 msgid "Compatibility mode" msgstr "互換モード" -#: ../../enterprise/meta/advanced/collections.editor.php:269 -#: ../../enterprise/godmode/agentes/collections.editor.php:299 +#: ../../enterprise/meta/advanced/collections.editor.php:295 +#: ../../enterprise/godmode/agentes/collections.editor.php:320 msgid "Correct update file." msgstr "ファイルを更新しました。" -#: ../../enterprise/meta/advanced/collections.editor.php:270 -#: ../../enterprise/godmode/agentes/collections.editor.php:300 +#: ../../enterprise/meta/advanced/collections.editor.php:296 +#: ../../enterprise/godmode/agentes/collections.editor.php:321 msgid "Incorrect update file." msgstr "ファイルの更新に失敗しました。" -#: ../../enterprise/meta/advanced/collections.editor.php:403 -#: ../../enterprise/godmode/agentes/collections.editor.php:447 +#: ../../enterprise/meta/advanced/collections.editor.php:429 +#: ../../enterprise/godmode/agentes/collections.editor.php:464 msgid "Please, first save a new collection before to upload files." msgstr "ファイルをアップロードする前に新規コレクションを保存してください。" -#: ../../enterprise/meta/advanced/cron_main.php:81 +#: ../../enterprise/meta/advanced/cron_main.php:79 #: ../../enterprise/extensions/cron.php:156 msgid "Cron jobs" msgstr "Cron ジョブ" -#: ../../enterprise/meta/advanced/cron_main.php:93 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:551 +#: ../../enterprise/meta/advanced/cron_main.php:88 +#: ../../godmode/agentes/planned_downtime.list.php:345 +#: ../../godmode/agentes/planned_downtime.list.php:788 +msgid "Cron" +msgstr "Cron" + +#: ../../enterprise/meta/advanced/cron_main.php:97 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:561 msgid "Add new job" msgstr "新規ジョブ追加" #: ../../enterprise/meta/advanced/cron_main.php:165 #: ../../enterprise/meta/advanced/cron_main.php:209 -#: ../../enterprise/meta/advanced/cron_main.php:302 -#: ../../enterprise/meta/include/functions_meta.php:124 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:213 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:276 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:371 -#: ../../include/functions_config.php:221 +#: ../../enterprise/meta/advanced/cron_main.php:280 +#: ../../enterprise/meta/include/functions_meta.php:125 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:216 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:280 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:378 +#: ../../include/functions_config.php:225 msgid "Path doesn't exists or is not writable" msgstr "パスが存在しないか書き込みできません" #: ../../enterprise/meta/advanced/cron_main.php:179 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:244 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:247 msgid "Only administrator users can create this type of functions" msgstr "管理者ユーザのみがこのタイプの機能を作成できます" -#: ../../enterprise/meta/advanced/cron_main.php:250 -#: ../../enterprise/meta/advanced/cron_main.php:284 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:356 +#: ../../enterprise/meta/advanced/cron_main.php:262 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:363 msgid "Edit job" msgstr "ジョブ編集" -#: ../../enterprise/meta/advanced/cron_main.php:339 +#: ../../enterprise/meta/advanced/cron_main.php:313 msgid "" "In order to make backups it is necessary to have mysqldump on your console." msgstr "" "バックアップを作成するには、コンソールに mysqldump をインストールする必要があり" "ます。" -#: ../../enterprise/meta/advanced/cron_main.php:360 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:630 -#: ../../enterprise/include/functions_tasklist.php:173 -#: ../../include/functions_cron.php:501 -msgid "Task" -msgstr "タスク" - -#: ../../enterprise/meta/advanced/cron_main.php:391 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:381 -#: ../../enterprise/godmode/setup/setup_history.php:834 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:640 -#: ../../enterprise/include/functions_tasklist.php:174 -#: ../../include/functions_cron.php:502 -msgid "Scheduled" -msgstr "スケジュール" - -#: ../../enterprise/meta/advanced/cron_main.php:404 -#: ../../enterprise/include/functions_tasklist.php:175 -#: ../../include/functions_cron.php:503 -msgid "Next execution" -msgstr "次回の実行" - -#: ../../enterprise/meta/advanced/cron_main.php:413 -msgid "Date format in Pandora is year/month/day" -msgstr "Pandora での日付フォーマットは、年/月/日 です" - -#: ../../enterprise/meta/advanced/cron_main.php:424 -msgid "Time format in Pandora is hours(24h):minutes:seconds" -msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 です" - -#: ../../enterprise/meta/advanced/cron_main.php:450 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 -#: ../../godmode/events/event_responses.editor.php:146 -#: ../../include/ajax/events.php:2083 ../../include/ajax/events.php:2548 -#: ../../include/class/ExternalTools.class.php:354 -#: ../../include/lib/Dashboard/Widgets/events_list.php:640 -#: ../../operation/events/events.php:2550 -msgid "Parameters" -msgstr "パラメータ" - -#: ../../enterprise/meta/advanced/cron_main.php:536 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:868 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1169 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4035 +#: ../../enterprise/meta/advanced/cron_main.php:402 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:950 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1157 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 #: ../../enterprise/godmode/wizards/consoletask_js.php:41 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4341 -#: ../../enterprise/operation/log/log_viewer.php:982 -#: ../../enterprise/operation/log/log_viewer.php:994 -#: ../../enterprise/operation/services/services.treeview_services.php:384 -#: ../../extensions/insert_data.php:224 -#: ../../godmode/agentes/planned_downtime.editor.php:1859 -#: ../../godmode/alerts/configure_alert_template.php:1456 -#: ../../godmode/alerts/configure_alert_template.php:1540 -#: ../../godmode/setup/news.php:322 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5057 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:686 -#: ../../operation/tree.php:573 ../../operation/agentes/stat_win.php:604 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4410 +#: ../../enterprise/operation/log/log_viewer.php:1195 +#: ../../enterprise/operation/log/log_viewer.php:1210 +#: ../../enterprise/operation/services/services.treeview_services.php:410 +#: ../../extensions/insert_data.php:279 +#: ../../godmode/agentes/planned_downtime.editor.php:2011 +#: ../../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:455 -#: ../../operation/network/network_report.php:348 -#: ../../operation/network/network_usage_map.php:184 -#: ../../operation/netflow/nf_live_view.php:753 -#: ../../operation/reporting/reporting_viewer.php:367 -#: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/reporting/graph_viewer.php:420 -#: ../../operation/events/events.php:3136 +#: ../../operation/agentes/estado_monitores.php:464 +#: ../../operation/network/network_report.php:457 +#: ../../operation/network/network_usage_map.php:294 +#: ../../operation/netflow/nf_live_view.php:865 +#: ../../operation/reporting/reporting_viewer.php:360 +#: ../../operation/reporting/reporting_viewer.php:379 +#: ../../operation/reporting/graph_viewer.php:466 +#: ../../operation/events/events.php:3223 msgid "Choose time" msgstr "時間を選択" -#: ../../enterprise/meta/advanced/cron_main.php:537 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:869 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1170 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4036 +#: ../../enterprise/meta/advanced/cron_main.php:403 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:951 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4038 #: ../../enterprise/godmode/wizards/consoletask_js.php:42 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4032 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4342 +#: ../../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:983 -#: ../../enterprise/operation/log/log_viewer.php:995 -#: ../../enterprise/operation/services/services.treeview_services.php:385 -#: ../../extensions/insert_data.php:225 -#: ../../godmode/agentes/planned_downtime.editor.php:1860 -#: ../../godmode/alerts/configure_alert_template.php:1457 -#: ../../godmode/alerts/configure_alert_template.php:1541 -#: ../../godmode/setup/news.php:323 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5058 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:687 -#: ../../operation/tree.php:574 ../../operation/agentes/stat_win.php:605 +#: ../../enterprise/operation/log/log_viewer.php:1196 +#: ../../enterprise/operation/log/log_viewer.php:1211 +#: ../../enterprise/operation/services/services.treeview_services.php:411 +#: ../../extensions/insert_data.php:280 +#: ../../godmode/agentes/planned_downtime.editor.php:2012 +#: ../../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:456 -#: ../../operation/network/network_report.php:349 -#: ../../operation/network/network_usage_map.php:185 -#: ../../operation/netflow/nf_live_view.php:754 -#: ../../operation/reporting/reporting_viewer.php:368 -#: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/reporting/graph_viewer.php:421 -#: ../../operation/events/events.php:3137 +#: ../../operation/agentes/estado_monitores.php:465 +#: ../../operation/network/network_report.php:458 +#: ../../operation/network/network_usage_map.php:295 +#: ../../operation/netflow/nf_live_view.php:866 +#: ../../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 msgid "Time" msgstr "時刻" -#: ../../enterprise/meta/advanced/cron_main.php:538 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1171 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4037 +#: ../../enterprise/meta/advanced/cron_main.php:404 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:952 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1159 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4039 #: ../../enterprise/godmode/wizards/consoletask_js.php:43 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4033 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4343 -#: ../../enterprise/operation/log/log_viewer.php:984 -#: ../../enterprise/operation/log/log_viewer.php:996 -#: ../../enterprise/operation/services/services.treeview_services.php:386 -#: ../../extensions/insert_data.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:1861 -#: ../../godmode/alerts/configure_alert_template.php:1458 -#: ../../godmode/alerts/configure_alert_template.php:1542 -#: ../../godmode/setup/news.php:324 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5059 -#: ../../include/functions_html.php:2276 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:688 -#: ../../operation/tree.php:575 ../../operation/agentes/stat_win.php:606 +#: ../../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/services/services.treeview_services.php:412 +#: ../../extensions/insert_data.php:281 +#: ../../godmode/agentes/planned_downtime.editor.php:2013 +#: ../../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:457 -#: ../../operation/network/network_report.php:350 -#: ../../operation/network/network_usage_map.php:186 -#: ../../operation/netflow/nf_live_view.php:755 -#: ../../operation/reporting/reporting_viewer.php:369 -#: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/reporting/graph_viewer.php:422 -#: ../../operation/events/events.php:3138 +#: ../../operation/agentes/estado_monitores.php:466 +#: ../../operation/network/network_report.php:459 +#: ../../operation/network/network_usage_map.php:296 +#: ../../operation/netflow/nf_live_view.php:867 +#: ../../operation/reporting/reporting_viewer.php:362 +#: ../../operation/reporting/reporting_viewer.php:381 +#: ../../operation/reporting/graph_viewer.php:468 +#: ../../operation/events/events.php:3225 msgid "Hour" msgstr "時" -#: ../../enterprise/meta/advanced/cron_main.php:539 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:871 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1172 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4038 +#: ../../enterprise/meta/advanced/cron_main.php:405 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:953 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4040 #: ../../enterprise/godmode/wizards/consoletask_js.php:44 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4034 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4344 -#: ../../enterprise/operation/log/log_viewer.php:985 -#: ../../enterprise/operation/log/log_viewer.php:997 -#: ../../enterprise/operation/services/services.treeview_services.php:387 -#: ../../extensions/insert_data.php:227 -#: ../../godmode/agentes/planned_downtime.editor.php:1862 -#: ../../godmode/alerts/configure_alert_template.php:1459 -#: ../../godmode/alerts/configure_alert_template.php:1543 -#: ../../godmode/setup/news.php:325 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5060 -#: ../../include/functions_html.php:2277 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:689 -#: ../../operation/tree.php:576 ../../operation/agentes/stat_win.php:607 +#: ../../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/services/services.treeview_services.php:413 +#: ../../extensions/insert_data.php:282 +#: ../../godmode/agentes/planned_downtime.editor.php:2014 +#: ../../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:458 -#: ../../operation/network/network_report.php:351 -#: ../../operation/network/network_usage_map.php:187 -#: ../../operation/netflow/nf_live_view.php:756 -#: ../../operation/reporting/reporting_viewer.php:370 -#: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/reporting/graph_viewer.php:423 -#: ../../operation/events/events.php:3139 +#: ../../operation/agentes/estado_monitores.php:467 +#: ../../operation/network/network_report.php:460 +#: ../../operation/network/network_usage_map.php:297 +#: ../../operation/netflow/nf_live_view.php:868 +#: ../../operation/reporting/reporting_viewer.php:363 +#: ../../operation/reporting/reporting_viewer.php:382 +#: ../../operation/reporting/graph_viewer.php:469 +#: ../../operation/events/events.php:3226 msgid "Minute" msgstr "分" -#: ../../enterprise/meta/advanced/cron_main.php:540 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:872 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4039 +#: ../../enterprise/meta/advanced/cron_main.php:406 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:954 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1161 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4041 #: ../../enterprise/godmode/wizards/consoletask_js.php:45 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4035 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4345 -#: ../../enterprise/operation/log/log_viewer.php:986 -#: ../../enterprise/operation/log/log_viewer.php:998 -#: ../../enterprise/operation/services/services.treeview_services.php:388 -#: ../../extensions/insert_data.php:228 -#: ../../godmode/agentes/planned_downtime.editor.php:1863 -#: ../../godmode/alerts/configure_alert_template.php:1460 -#: ../../godmode/alerts/configure_alert_template.php:1544 -#: ../../godmode/setup/news.php:326 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5061 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:690 -#: ../../operation/tree.php:577 ../../operation/agentes/stat_win.php:608 +#: ../../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/services/services.treeview_services.php:414 +#: ../../extensions/insert_data.php:283 +#: ../../godmode/agentes/planned_downtime.editor.php:2015 +#: ../../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:459 -#: ../../operation/network/network_report.php:352 -#: ../../operation/network/network_usage_map.php:188 -#: ../../operation/netflow/nf_live_view.php:757 -#: ../../operation/reporting/reporting_viewer.php:371 -#: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/reporting/graph_viewer.php:424 -#: ../../operation/events/events.php:3140 +#: ../../operation/agentes/estado_monitores.php:468 +#: ../../operation/network/network_report.php:461 +#: ../../operation/network/network_usage_map.php:298 +#: ../../operation/netflow/nf_live_view.php:869 +#: ../../operation/reporting/reporting_viewer.php:364 +#: ../../operation/reporting/reporting_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:470 +#: ../../operation/events/events.php:3227 msgid "Second" msgstr "秒" -#: ../../enterprise/meta/advanced/cron_main.php:541 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:873 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1174 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4040 +#: ../../enterprise/meta/advanced/cron_main.php:407 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:955 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1162 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4042 #: ../../enterprise/godmode/wizards/consoletask_js.php:46 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4036 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4346 -#: ../../enterprise/operation/log/log_viewer.php:987 -#: ../../enterprise/operation/log/log_viewer.php:999 -#: ../../enterprise/operation/services/services.treeview_services.php:389 -#: ../../extensions/insert_data.php:229 -#: ../../godmode/agentes/planned_downtime.editor.php:1864 -#: ../../godmode/alerts/configure_alert_template.php:1461 -#: ../../godmode/alerts/configure_alert_template.php:1545 -#: ../../godmode/setup/news.php:327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5062 -#: ../../include/functions.php:505 ../../include/functions.php:636 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:691 -#: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 +#: ../../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/services/services.treeview_services.php:415 +#: ../../extensions/insert_data.php:284 +#: ../../godmode/agentes/planned_downtime.editor.php:2016 +#: ../../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 +#: ../../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:460 +#: ../../operation/agentes/estado_monitores.php:469 #: ../../operation/agentes/agent_inventory.php:133 -#: ../../operation/network/network_report.php:353 -#: ../../operation/network/network_usage_map.php:189 -#: ../../operation/netflow/nf_live_view.php:758 -#: ../../operation/reporting/reporting_viewer.php:372 -#: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/reporting/graph_viewer.php:425 -#: ../../operation/events/events.php:3141 +#: ../../operation/network/network_report.php:462 +#: ../../operation/network/network_usage_map.php:299 +#: ../../operation/netflow/nf_live_view.php:870 +#: ../../operation/reporting/reporting_viewer.php:365 +#: ../../operation/reporting/reporting_viewer.php:384 +#: ../../operation/reporting/graph_viewer.php:471 +#: ../../operation/events/events.php:3228 msgid "Now" msgstr "今" -#: ../../enterprise/meta/advanced/cron_main.php:542 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:874 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1175 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4041 -#: ../../enterprise/godmode/wizards/consoletask_js.php:47 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4037 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4347 -#: ../../enterprise/operation/log/log_viewer.php:988 -#: ../../enterprise/operation/log/log_viewer.php:1000 -#: ../../enterprise/operation/services/services.treeview_services.php:390 -#: ../../extensions/insert_data.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:1865 -#: ../../godmode/alerts/configure_alert_template.php:1462 -#: ../../godmode/alerts/configure_alert_template.php:1546 -#: ../../godmode/setup/news.php:328 -#: ../../godmode/reporting/reporting_builder.item_editor.php:5063 -#: ../../godmode/wizards/HostDevices.class.php:798 -#: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 -#: ../../include/functions_menu.php:822 -#: ../../include/class/WelcomeWindow.class.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:692 -#: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 -#: ../../operation/agentes/stat_win.php:610 -#: ../../operation/agentes/interface_traffic_graph_win.php:442 -#: ../../operation/agentes/datos_agente.php:318 -#: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/network/network_report.php:354 -#: ../../operation/network/network_usage_map.php:190 -#: ../../operation/netflow/nf_live_view.php:759 -#: ../../operation/reporting/reporting_viewer.php:373 -#: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/reporting/graph_viewer.php:426 -#: ../../operation/events/events.php:3142 -msgid "Close" -msgstr "閉じる" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:108 +#: ../../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:1449 +#: ../../godmode/users/configure_user.php:1405 #: ../../godmode/alerts/alert_commands.php:143 #: ../../godmode/alerts/alert_commands.php:184 -#: ../../godmode/alerts/configure_alert_template.php:933 -#: ../../godmode/alerts/configure_alert_template.php:974 -#: ../../godmode/alerts/configure_alert_template.php:1137 +#: ../../godmode/alerts/configure_alert_template.php:953 +#: ../../godmode/alerts/configure_alert_template.php:998 +#: ../../godmode/alerts/configure_alert_template.php:1168 msgid "Basic" msgstr "基本" -#: ../../enterprise/meta/advanced/metasetup.setup.php:113 -#: ../../enterprise/meta/include/functions_meta.php:79 -#: ../../include/functions_config.php:180 +#: ../../enterprise/meta/advanced/metasetup.setup.php:82 +#: ../../enterprise/meta/include/functions_meta.php:80 +#: ../../include/functions_config.php:184 msgid "Language settings" msgstr "言語設定" -#: ../../enterprise/meta/advanced/metasetup.setup.php:126 -#: ../../enterprise/meta/include/functions_meta.php:84 -#: ../../godmode/setup/setup_general.php:110 -#: ../../include/functions_config.php:192 +#: ../../enterprise/meta/advanced/metasetup.setup.php:99 +#: ../../enterprise/meta/include/functions_meta.php:85 +#: ../../godmode/setup/setup_general.php:270 +#: ../../include/functions_config.php:196 msgid "Auto login (hash) password" msgstr "自動ログインパスワード(ハッシュ)" -#: ../../enterprise/meta/advanced/metasetup.setup.php:142 -#: ../../enterprise/meta/include/functions_meta.php:94 -#: ../../godmode/setup/setup_general.php:124 -#: ../../include/functions_config.php:196 -msgid "Time source" -msgstr "日時データソース" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:144 -#: ../../godmode/setup/setup_general.php:125 -#: ../../mobile/operation/events.php:248 -#: ../../include/functions_reporting_html.php:1151 -#: ../../include/functions_reporting_html.php:2621 -#: ../../include/functions.php:1281 +#: ../../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.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:3021 ../../operation/events/events.php:803 +#: ../../include/functions_events.php:3162 ../../operation/events/events.php:833 msgid "System" msgstr "システム" -#: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 ../../include/functions_menu.php:818 +#: ../../enterprise/meta/advanced/metasetup.setup.php:111 +#: ../../godmode/setup/setup_general.php:59 ../../include/functions_menu.php:937 msgid "Database" msgstr "データベース" -#: ../../enterprise/meta/advanced/metasetup.setup.php:148 -#: ../../enterprise/meta/include/functions_meta.php:104 -#: ../../godmode/setup/setup_general.php:149 -#: ../../include/functions_config.php:208 -msgid "Enforce https" -msgstr "httpsの利用" +#: ../../enterprise/meta/advanced/metasetup.setup.php:113 +#: ../../enterprise/meta/include/functions_meta.php:95 +#: ../../godmode/setup/setup_general.php:282 +#: ../../include/functions_config.php:200 +msgid "Time source" +msgstr "日時データソース" -#: ../../enterprise/meta/advanced/metasetup.setup.php:149 +#: ../../enterprise/meta/advanced/metasetup.setup.php:132 #, php-format msgid "" "If SSL is not properly configured, you will lose access to the %s Console. Do " @@ -8120,143 +8338,154 @@ msgstr "" "SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けま" "すか?" -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 -#: ../../enterprise/meta/include/functions_meta.php:129 -#: ../../godmode/setup/setup_general.php:183 -#: ../../include/functions_config.php:219 +#: ../../enterprise/meta/advanced/metasetup.setup.php:148 +#: ../../enterprise/meta/include/functions_meta.php:105 +#: ../../godmode/setup/setup_general.php:307 +#: ../../include/functions_config.php:212 +msgid "Enforce https" +msgstr "httpsの利用" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:153 +#: ../../enterprise/meta/include/functions_meta.php:130 +#: ../../godmode/setup/setup_general.php:295 +#: ../../include/functions_config.php:223 msgid "Attachment store" msgstr "添付ファイル保存場所" -#: ../../enterprise/meta/advanced/metasetup.setup.php:152 +#: ../../enterprise/meta/advanced/metasetup.setup.php:154 msgid "Directory where temporary data is stored." msgstr "テンポラリデータの保存ディレクトリ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:155 -#: ../../enterprise/meta/include/functions_meta.php:140 -#: ../../godmode/setup/setup_general.php:88 -#: ../../include/functions_config.php:184 +#: ../../enterprise/meta/advanced/metasetup.setup.php:168 +#: ../../enterprise/meta/include/functions_meta.php:141 +#: ../../godmode/setup/setup_general.php:244 +#: ../../include/functions_config.php:188 msgid "Remote config directory" msgstr "リモート設定ディレクトリ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 -#: ../../enterprise/meta/include/functions_meta.php:150 -#: ../../godmode/setup/setup_general.php:98 +#: ../../enterprise/meta/advanced/metasetup.setup.php:180 +#: ../../enterprise/meta/include/functions_meta.php:151 +#: ../../godmode/setup/setup_general.php:256 msgid "Chromium path" msgstr "Chromium パス" -#: ../../enterprise/meta/advanced/metasetup.setup.php:158 +#: ../../enterprise/meta/advanced/metasetup.setup.php:180 msgid "Directory where Chromium binary file exists and has execution grants." msgstr "実行権限が付与された Chromium バイナリファイルがあるディレクトリ。" -#: ../../enterprise/meta/advanced/metasetup.setup.php:162 -#: ../../godmode/setup/setup_general.php:249 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:271 #: ../../include/functions_register.php:134 msgid "Africa" msgstr "アフリカ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:163 -#: ../../godmode/setup/setup_general.php:250 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:272 #: ../../include/functions_register.php:135 msgid "America" msgstr "アメリカ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:164 -#: ../../godmode/setup/setup_general.php:251 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:273 #: ../../include/functions_register.php:136 msgid "Antarctica" msgstr "南極大陸" -#: ../../enterprise/meta/advanced/metasetup.setup.php:165 -#: ../../godmode/setup/setup_general.php:252 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:274 #: ../../include/functions_register.php:137 msgid "Arctic" msgstr "北極" -#: ../../enterprise/meta/advanced/metasetup.setup.php:166 -#: ../../godmode/setup/setup_general.php:253 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:275 #: ../../include/functions_register.php:138 msgid "Asia" msgstr "アジア" -#: ../../enterprise/meta/advanced/metasetup.setup.php:167 -#: ../../godmode/setup/setup_general.php:254 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:276 #: ../../include/functions_register.php:139 msgid "Atlantic" msgstr "大西洋" -#: ../../enterprise/meta/advanced/metasetup.setup.php:168 -#: ../../godmode/setup/setup_general.php:255 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:277 #: ../../include/functions_register.php:140 msgid "Australia" msgstr "オーストラリア" -#: ../../enterprise/meta/advanced/metasetup.setup.php:169 -#: ../../godmode/setup/setup_general.php:256 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:278 #: ../../include/functions_register.php:141 msgid "Europe" msgstr "ヨーロッパ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:170 -#: ../../godmode/setup/setup_general.php:257 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:279 #: ../../include/functions_register.php:142 msgid "Indian" msgstr "インド" -#: ../../enterprise/meta/advanced/metasetup.setup.php:171 -#: ../../godmode/setup/setup_general.php:258 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:280 #: ../../include/functions_register.php:143 msgid "Pacific" msgstr "太平洋" -#: ../../enterprise/meta/advanced/metasetup.setup.php:172 -#: ../../godmode/setup/setup_general.php:259 +#: ../../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/rest-api/models/VisualConsole/Items/Clock.php:281 #: ../../include/functions_register.php:144 msgid "UTC" msgstr "UTC" -#: ../../enterprise/meta/advanced/metasetup.setup.php:191 -#: ../../enterprise/meta/include/functions_meta.php:160 -#: ../../godmode/setup/setup_general.php:279 -#: ../../include/functions_register.php:164 -#: ../../include/functions_config.php:261 -msgid "Timezone setup" -msgstr "タイムゾーン設定" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:193 -#: ../../godmode/setup/setup_general.php:296 +#: ../../enterprise/meta/advanced/metasetup.setup.php:223 +#: ../../godmode/setup/setup_general.php:454 msgid "Change timezone" msgstr "タイムゾーン変更" -#: ../../enterprise/meta/advanced/metasetup.setup.php:197 -#: ../../enterprise/meta/include/functions_meta.php:170 -#: ../../godmode/setup/setup_general.php:319 -#: ../../include/functions_config.php:292 -msgid "Public URL" -msgstr "公開 URL" +#: ../../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" +msgstr "タイムゾーン設定" -#: ../../enterprise/meta/advanced/metasetup.setup.php:198 +#: ../../enterprise/meta/advanced/metasetup.setup.php:238 #, php-format msgid "" "Set this value when you need your %s to be accessible via a public URL (for " @@ -8265,18 +8494,7 @@ msgstr "" "公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、" "Apache mod_proxy 設定を使用)、この値を設定します。" -#: ../../enterprise/meta/advanced/metasetup.setup.php:201 -#: ../../enterprise/meta/include/functions_meta.php:180 -#: ../../godmode/setup/setup_general.php:329 -#: ../../include/functions_config.php:296 -msgid "Force use Public URL" -msgstr "公開 URL の強制利用" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:202 -msgid "Force using defined public URL)." -msgstr "定義された公開 URL を使用するように強制します)。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:209 +#: ../../enterprise/meta/advanced/metasetup.setup.php:251 #, php-format msgid "" "If public URL is not properly configured, you will lose access to the %s " @@ -8285,20 +8503,33 @@ msgstr "" "公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 " "続けますか?" -#: ../../enterprise/meta/advanced/metasetup.setup.php:215 -#: ../../enterprise/meta/include/functions_meta.php:190 -#: ../../godmode/setup/setup_general.php:343 -#: ../../include/functions_config.php:300 +#: ../../enterprise/meta/advanced/metasetup.setup.php:266 +#: ../../enterprise/meta/include/functions_meta.php:191 +#: ../../godmode/setup/setup_general.php:502 +#: ../../include/functions_config.php:322 msgid "Public URL host exclusions" msgstr "公開 URL 除外ホスト" -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 -#: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1505 +#: ../../enterprise/meta/advanced/metasetup.setup.php:278 +#: ../../enterprise/meta/include/functions_meta.php:181 +#: ../../godmode/setup/setup_general.php:492 +#: ../../include/functions_config.php:318 +msgid "Force use Public URL" +msgstr "公開 URL の強制利用" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:279 +msgid "Force using defined public URL)." +msgstr "定義された公開 URL を使用するように強制します)。" + +#: ../../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 msgid "Disable custom live view filters" msgstr "カスタムライブビューフィルタの無効化" -#: ../../enterprise/meta/advanced/metasetup.setup.php:218 +#: ../../enterprise/meta/advanced/metasetup.setup.php:307 msgid "" "Disable the definition of custom filters in the live view. Only existing " "filters can be used." @@ -8306,69 +8537,64 @@ msgstr "" "ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ" "利用可能です。" -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -#: ../../enterprise/meta/include/functions_meta.php:210 -#: ../../godmode/setup/setup_general.php:451 -#: ../../include/functions_config.php:312 -msgid "Command Snapshot" -msgstr "コマンドスナップショット" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:222 -msgid "The string modules with several lines show as command output" -msgstr "複数行の文字列モジュールはコマンドの出力として表示されます。" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:227 -msgid "Customize sections" -msgstr "セクションのカスタマイズ" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:248 +#: ../../enterprise/meta/advanced/metasetup.setup.php:329 msgid "Disabled sections" msgstr "無効化セクション" -#: ../../enterprise/meta/advanced/metasetup.setup.php:250 +#: ../../enterprise/meta/advanced/metasetup.setup.php:331 msgid "Enabled sections" msgstr "有効化セクション" -#: ../../enterprise/meta/advanced/metasetup.setup.php:255 +#: ../../enterprise/meta/advanced/metasetup.setup.php:336 msgid "Push selected sections to enable it" msgstr "選択したセクションを有効にする" -#: ../../enterprise/meta/advanced/metasetup.setup.php:257 +#: ../../enterprise/meta/advanced/metasetup.setup.php:338 msgid "Pop selected sections to disable it" msgstr "選択したセクションを無効にする" -#: ../../enterprise/meta/advanced/metasetup.setup.php:267 +#: ../../enterprise/meta/advanced/metasetup.setup.php:346 +msgid "Customize sections" +msgstr "セクションのカスタマイズ" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:370 +#: ../../enterprise/meta/include/functions_meta.php:211 +#: ../../godmode/setup/setup_general.php:542 +#: ../../include/functions_config.php:334 +msgid "Command Snapshot" +msgstr "コマンドスナップショット" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:371 +msgid "The string modules with several lines show as command output" +msgstr "複数行の文字列モジュールはコマンドの出力として表示されます。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:379 msgid "Please be careful if you put a password put https access." msgstr "パスワードの設定には注意してください。httpsアクセスを使ってください。" -#: ../../enterprise/meta/advanced/metasetup.setup.php:272 -#: ../../enterprise/meta/include/functions_meta.php:240 -#: ../../godmode/setup/setup_general.php:193 -#: ../../include/functions_config.php:232 +#: ../../enterprise/meta/advanced/metasetup.setup.php:402 +#: ../../enterprise/meta/include/functions_meta.php:241 +#: ../../godmode/setup/setup_general.php:371 +#: ../../include/functions_config.php:236 msgid "IP list with API access" msgstr "APIアクセスを許可するIPアドレスリスト" -#: ../../enterprise/meta/advanced/metasetup.setup.php:283 +#: ../../enterprise/meta/advanced/metasetup.setup.php:432 msgid "Enable Warp Update" msgstr "ワープアップデートの有効化" -#: ../../enterprise/meta/advanced/metasetup.setup.php:288 -#: ../../enterprise/meta/include/functions_meta.php:275 -#: ../../enterprise/godmode/setup/setup.php:90 -#: ../../include/functions_config.php:420 +#: ../../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 msgid "Size of collection" msgstr "コレクションのサイズ" -#: ../../enterprise/meta/advanced/metasetup.setup.php:289 -#: ../../enterprise/godmode/setup/setup.php:98 -msgid " Bytes" -msgstr " バイト" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +#: ../../enterprise/meta/advanced/metasetup.setup.php:449 msgid "Max. agents to add in policy concurrently" msgstr "ポリシーに同時に追加する最大エージェント" -#: ../../enterprise/meta/advanced/metasetup.setup.php:291 +#: ../../enterprise/meta/advanced/metasetup.setup.php:450 msgid "" "Maximum allowed number of agents to be added in policy concurrently (adding a " "high number of agents at a time can lead to performance issues)" @@ -8376,61 +8602,75 @@ msgstr "" "ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを" "追加すると、パフォーマンスの問題が発生する可能性があります)" -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +#: ../../enterprise/meta/advanced/metasetup.setup.php:464 msgid "Warning for synchronization queue" msgstr "同期キューの警告" -#: ../../enterprise/meta/advanced/metasetup.setup.php:294 +#: ../../enterprise/meta/advanced/metasetup.setup.php:465 msgid "" "If the number of pending items (per node) is higher than this number, a " "notification will be shown" msgstr "" "保留中のアイテムの数 (ノードあたり) がこの数より多い場合、通知が表示されます" -#: ../../enterprise/meta/advanced/metasetup.setup.php:295 -msgid " Items" -msgstr "アイテム" - -#: ../../enterprise/meta/advanced/metasetup.setup.php:298 +#: ../../enterprise/meta/advanced/metasetup.setup.php:498 msgid "Enable Agent API" msgstr "エージェント API の有効化" -#: ../../enterprise/meta/advanced/metasetup.setup.php:320 +#: ../../enterprise/meta/advanced/metasetup.setup.php:522 msgid "Enable log viewer" msgstr "ログビューワの有効化" -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 -#: ../../enterprise/meta/include/functions_meta.php:305 -#: ../../godmode/setup/setup_general.php:548 +#: ../../enterprise/meta/advanced/metasetup.setup.php:545 +#: ../../enterprise/meta/include/functions_meta.php:306 +#: ../../godmode/setup/setup_general.php:672 msgid "Enable console log" msgstr "コンソールログの有効化" -#: ../../enterprise/meta/advanced/metasetup.setup.php:324 +#: ../../enterprise/meta/advanced/metasetup.setup.php:546 msgid "Log location: pandora_console/log/console.log" msgstr "ログの場所: pandora_console/log/console.log" -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 -#: ../../enterprise/meta/include/functions_meta.php:315 -#: ../../godmode/setup/setup_general.php:559 +#: ../../enterprise/meta/advanced/metasetup.setup.php:571 +#: ../../enterprise/meta/include/functions_meta.php:316 +#: ../../godmode/setup/setup_general.php:685 msgid "Enable audit log" msgstr "監査ログの有効化" -#: ../../enterprise/meta/advanced/metasetup.setup.php:345 +#: ../../enterprise/meta/advanced/metasetup.setup.php:572 msgid "Log location: pandora_console/log/audit.log" msgstr "ログの場所: pandora_console/log/audit.log" -#: ../../enterprise/meta/advanced/metasetup.setup.php:368 -#: ../../enterprise/meta/advanced/metasetup.setup.php:369 -#: ../../enterprise/meta/include/functions_meta.php:325 -#: ../../godmode/setup/setup_general.php:581 -#: ../../godmode/setup/setup_general.php:582 -#: ../../include/functions_config.php:364 +#: ../../enterprise/meta/advanced/metasetup.setup.php:597 +#: ../../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 msgid "Enable console report" msgstr "コンソールレポートの有効化" +#: ../../enterprise/meta/advanced/metasetup.setup.php:605 +#: ../../enterprise/meta/include/functions_meta.php:346 +msgid "Check conexion interval" +msgstr "接続間隔の確認" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:616 +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 "" +"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイ" +"ベントを受け取った際に "処理中" として作成します。" + +#: ../../enterprise/meta/advanced/metasetup.setup.php:639 +#: ../../enterprise/meta/include/functions_meta.php:336 +msgid "Keep In process status for new events with extra ID" +msgstr "拡張 ID を持つ新規イベントで処理中状態を維持" + #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:672 +#: ../../godmode/groups/group_list.php:664 #, php-format msgid "Error connecting to %s" msgstr "%s への接続エラー" @@ -8490,51 +8730,53 @@ msgstr "%s ポリシーアラートを削除しました" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:147 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/class/LogSource.class.php:626 -#: ../../enterprise/operation/log/log_viewer.php:655 +#: ../../enterprise/include/class/LogSource.class.php:602 +#: ../../enterprise/operation/log/log_viewer.php:793 #: ../../godmode/massive/massive_copy_modules.php:144 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1649 -#: ../../godmode/events/event_edit_filter.php:683 -#: ../../godmode/events/custom_events.php:109 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1677 +#: ../../godmode/events/event_edit_filter.php:797 +#: ../../godmode/events/custom_events.php:107 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4360 -#: ../../include/functions_events.php:4441 +#: ../../include/functions_events.php:4554 +#: ../../include/functions_events.php:4636 #: ../../operation/agentes/log_sources_status.php:56 -#: ../../operation/agentes/pandora_networkmap.editor.php:354 +#: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 -#: ../../operation/events/events.php:1848 +#: ../../operation/events/events.php:1886 msgid "Source" msgstr "ソース" #: ../../enterprise/meta/advanced/policymanager.sync.php:308 -#: ../../extensions/dbmanager.php:190 ../../include/lib/Dashboard/Widget.php:603 +#: ../../extensions/dbmanager.php:191 ../../include/lib/Dashboard/Widget.php:610 msgid "This metaconsole" msgstr "このメタコンソール" #: ../../enterprise/meta/advanced/policymanager.sync.php:319 #: ../../enterprise/meta/advanced/policymanager.queue.php:210 #: ../../enterprise/meta/advanced/policymanager.queue.php:257 -#: ../../enterprise/extensions/resource_exportation/functions.php:18 -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/plugins_manager.php:193 -#: ../../enterprise/godmode/policies/policy_queue.php:593 -#: ../../enterprise/godmode/policies/policy_queue.php:647 +#: ../../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/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_edit_policy_modules.php:462 -#: ../../enterprise/include/functions_policies.php:4071 +#: ../../enterprise/include/functions_policies.php:4043 #: ../../enterprise/operation/agentes/policy_view.php:67 -#: ../../enterprise/operation/agentes/collection_view.php:74 +#: ../../enterprise/operation/agentes/collection_view.php:83 #: ../../godmode/agentes/status_monitor_custom_fields.php:73 -#: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/agentes/inventory_manager.php:220 -#: ../../godmode/agentes/module_manager.php:884 -#: ../../godmode/alerts/alert_view.php:148 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 -#: ../../operation/agentes/status_monitor.php:1315 +#: ../../godmode/agentes/status_monitor_custom_fields.php:140 +#: ../../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 +#: ../../operation/agentes/alerts_status.php:250 +#: ../../operation/agentes/status_monitor.php:1531 msgid "Policy" msgstr "ポリシー" @@ -8544,16 +8786,16 @@ msgstr "ポリシー" msgid "Targets" msgstr "対象" -#: ../../enterprise/meta/advanced/license_meta.php:79 -#: ../../godmode/setup/license.php:106 +#: ../../enterprise/meta/advanced/license_meta.php:78 +#: ../../godmode/setup/license.php:108 msgid "Failed to Update license file" msgstr "ライセンスファイルのアップデートに失敗しました" -#: ../../enterprise/meta/advanced/license_meta.php:86 +#: ../../enterprise/meta/advanced/license_meta.php:85 msgid "Metaconsole and all nodes license updated" msgstr "メタコンソールと全ノードのライセンスを更新しました" -#: ../../enterprise/meta/advanced/license_meta.php:88 +#: ../../enterprise/meta/advanced/license_meta.php:87 #, php-format msgid "Metaconsole license updated but %d of %d node synchronization failed" msgstr "" @@ -8567,224 +8809,232 @@ msgstr "" "グループの同期により、ノードのグループ設定が変更される可能性があることに注意し" "てください" -#: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:125 -#: ../../godmode/setup/setup.php:260 +#: ../../enterprise/meta/advanced/metasetup.performance.php:88 +#: ../../godmode/setup/performance.php:186 +msgid "Pandora_db running in active database." +msgstr "アクティブデータベースで pandora_db が動作しています。" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:89 +#: ../../godmode/setup/performance.php:187 +#: ../../godmode/setup/performance.php:243 +msgid "Executed:" +msgstr "実行済:" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:95 +#: ../../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 +msgid "ago" +msgstr "前" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:112 +#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:125 +#: ../../godmode/setup/setup.php:279 msgid "Performance" msgstr "パフォーマンス" -#: ../../enterprise/meta/advanced/metasetup.performance.php:79 -#: ../../enterprise/meta/include/functions_meta.php:1955 -#: ../../godmode/setup/performance.php:259 -#: ../../godmode/setup/performance.php:460 +#: ../../enterprise/meta/advanced/metasetup.performance.php:117 +#: ../../enterprise/meta/include/functions_meta.php:2015 +#: ../../godmode/setup/performance.php:263 +#: ../../godmode/setup/performance.php:506 msgid "Max. days before delete events" msgstr "イベントデータ保持日数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:82 +#: ../../enterprise/meta/advanced/metasetup.performance.php:132 msgid "Use real-time statistics" msgstr "リアルタイム統計の利用" -#: ../../enterprise/meta/advanced/metasetup.performance.php:86 -#: ../../enterprise/meta/include/functions_meta.php:1970 -#: ../../godmode/setup/performance.php:283 ../../include/functions_config.php:816 +#: ../../enterprise/meta/advanced/metasetup.performance.php:139 +#: ../../enterprise/meta/include/functions_meta.php:2030 +#: ../../godmode/setup/performance.php:293 ../../include/functions_config.php:842 msgid "Max. days before delete audit events" msgstr "監査イベントデータ保持日数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:89 -#: ../../enterprise/meta/include/functions_meta.php:1980 -#: ../../godmode/setup/performance.php:551 ../../include/functions_config.php:852 +#: ../../enterprise/meta/advanced/metasetup.performance.php:154 +#: ../../enterprise/meta/include/functions_meta.php:2040 +#: ../../godmode/setup/performance.php:637 ../../include/functions_config.php:882 msgid "Default hours for event view" msgstr "イベント表示期間(時間)" -#: ../../enterprise/meta/advanced/metasetup.performance.php:92 +#: ../../enterprise/meta/advanced/metasetup.performance.php:169 msgid "Migration block size" msgstr "マイグレーションブロックサイズ" -#: ../../enterprise/meta/advanced/metasetup.performance.php:102 -#: ../../godmode/setup/performance.php:625 +#: ../../enterprise/meta/advanced/metasetup.performance.php:181 +#: ../../godmode/setup/performance.php:749 msgid "Events response max. execution" msgstr "イベント応答の最大実行" -#: ../../enterprise/meta/advanced/metasetup.performance.php:104 +#: ../../enterprise/meta/advanced/metasetup.performance.php:182 msgid "Number of events that will perform the desired action at the same time" msgstr "目的のアクションを同時に実行するイベントの数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:116 -#: ../../enterprise/meta/include/functions_meta.php:2010 +#: ../../enterprise/meta/advanced/metasetup.performance.php:196 +#: ../../enterprise/meta/include/functions_meta.php:2070 msgid "Max. number of events per node" msgstr "ノードごとの最大イベント数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:118 +#: ../../enterprise/meta/advanced/metasetup.performance.php:197 msgid "maximum number of events to be displayed per node" msgstr "ノードごとに表示されるイベントの最大数" -#: ../../enterprise/meta/advanced/metasetup.performance.php:130 -#: ../../godmode/setup/performance.php:635 ../../include/functions_config.php:914 +#: ../../enterprise/meta/advanced/metasetup.performance.php:211 +#: ../../godmode/setup/performance.php:761 ../../include/functions_config.php:944 msgid "Row limit in csv log" msgstr "csvログの行制限" -#: ../../enterprise/meta/advanced/metasetup.performance.php:139 -#: ../../enterprise/meta/include/functions_meta.php:2043 -#: ../../godmode/setup/performance.php:374 ../../include/functions_config.php:888 +#: ../../enterprise/meta/advanced/metasetup.performance.php:226 +#: ../../enterprise/meta/include/functions_meta.php:2103 +#: ../../godmode/setup/performance.php:425 ../../include/functions_config.php:918 msgid "Max. macro data fields" msgstr "最大マクロデータフィールド" -#: ../../enterprise/meta/advanced/collections.php:111 +#: ../../enterprise/meta/advanced/metasetup.performance.php:241 +#: ../../enterprise/meta/include/functions_meta.php:2113 +#: ../../godmode/setup/performance.php:601 ../../include/functions_config.php:874 +msgid "Limit of events per query" +msgstr "クエリごとのイベント制限" + +#: ../../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 +msgid "Max. days before purge" +msgstr "データ保持日数" + +#: ../../enterprise/meta/advanced/metasetup.performance.php:272 +#: ../../enterprise/godmode/setup/setup_history.php:719 +#: ../../godmode/setup/performance.php:851 +msgid "Database maintenance status" +msgstr "データベースメンテナンス状態" + +#: ../../enterprise/meta/advanced/collections.php:118 msgid "Collection has been deleted" msgstr "コレクションを削除しました" -#: ../../enterprise/meta/advanced/collections.php:122 -#: ../../enterprise/meta/advanced/collections.php:138 -#: ../../enterprise/godmode/agentes/collection_manager.php:94 -#: ../../enterprise/godmode/agentes/collections.php:237 -#: ../../enterprise/godmode/agentes/collections.php:259 +#: ../../enterprise/meta/advanced/collections.php:129 +#: ../../enterprise/meta/advanced/collections.php:145 +#: ../../enterprise/godmode/agentes/collection_manager.php:146 +#: ../../enterprise/godmode/agentes/collections.php:253 +#: ../../enterprise/godmode/agentes/collections.php:275 msgid "Successful create collection package." msgstr "コレクションパッケージを作成しました。" -#: ../../enterprise/meta/advanced/collections.php:139 -#: ../../enterprise/godmode/agentes/collection_manager.php:95 -#: ../../enterprise/godmode/agentes/collections.php:260 +#: ../../enterprise/meta/advanced/collections.php:146 +#: ../../enterprise/godmode/agentes/collection_manager.php:147 +#: ../../enterprise/godmode/agentes/collections.php:276 msgid "Can not create collection package." msgstr "コレクションパッケージを作成できません。" -#: ../../enterprise/meta/advanced/collections.php:149 -#: ../../enterprise/godmode/agentes/collections.php:295 +#: ../../enterprise/meta/advanced/collections.php:156 +#: ../../enterprise/godmode/agentes/collections.php:304 msgid "Error: Id must not be empty" msgstr "エラー: ID は空にできません" -#: ../../enterprise/meta/advanced/collections.php:163 -#: ../../enterprise/godmode/agentes/collections.php:309 +#: ../../enterprise/meta/advanced/collections.php:170 +#: ../../enterprise/godmode/agentes/collections.php:318 msgid "Successful re-create collection directory." msgstr "コレクションディレクトリを再作成しました。" -#: ../../enterprise/meta/advanced/collections.php:164 -#: ../../enterprise/godmode/agentes/collections.php:310 +#: ../../enterprise/meta/advanced/collections.php:171 +#: ../../enterprise/godmode/agentes/collections.php:319 msgid "Can not re-create collection directory." msgstr "コレクションディレクトリを再を作成できません。" -#: ../../enterprise/meta/advanced/collections.php:190 -#: ../../enterprise/godmode/agentes/collections.php:336 +#: ../../enterprise/meta/advanced/collections.php:197 +#: ../../enterprise/godmode/agentes/collections.php:345 msgid "Successful re-create collections directories." msgstr "コレクションディレクトリを再作成しました。" -#: ../../enterprise/meta/advanced/collections.php:191 -#: ../../enterprise/godmode/agentes/collections.php:337 +#: ../../enterprise/meta/advanced/collections.php:198 +#: ../../enterprise/godmode/agentes/collections.php:346 msgid "Can not re-create collections directories." msgstr "コレクションディレクトリを再作成できません。" -#: ../../enterprise/meta/advanced/collections.php:205 +#: ../../enterprise/meta/advanced/collections.php:212 msgid "To manage collections you must activate centralized management" msgstr "コレクションを管理するには、中央管理を有効化する必要があります" -#: ../../enterprise/meta/advanced/collections.php:218 -#: ../../enterprise/meta/advanced/collections.php:224 -#: ../../godmode/users/user_list.php:462 ../../godmode/users/user_list.php:466 +#: ../../enterprise/meta/advanced/collections.php:227 +#: ../../godmode/users/user_list.php:488 ../../godmode/users/user_list.php:493 msgid "Search by username, fullname or email" msgstr "ユーザ名、フルネーム、メールアドレスでの検索" -#: ../../enterprise/meta/advanced/collections.php:243 -#: ../../enterprise/meta/advanced/policymanager.queue.php:246 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:334 -#: ../../enterprise/meta/agentsearch.php:113 -#: ../../enterprise/godmode/modules/local_components.php:587 -#: ../../godmode/modules/manage_network_components.php:693 -#: ../../godmode/users/user_list.php:504 -#: ../../godmode/alerts/alert_actions.php:315 -#: ../../godmode/alerts/alert_templates.php:337 -#: ../../godmode/reporting/reporting_builder.list_items.php:273 -#: ../../godmode/tag/tag.php:246 ../../godmode/tag/tag.php:412 -#: ../../operation/tree.php:304 -msgid "Show Options" -msgstr "オプション表示" - -#: ../../enterprise/meta/advanced/collections.php:250 -#: ../../godmode/users/user_list.php:511 -msgid "Users control filter" -msgstr "ユーザ制御フィルタ" - -#: ../../enterprise/meta/advanced/collections.php:251 -#: ../../enterprise/godmode/policies/policy_queue.php:524 -#: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 -#: ../../godmode/users/user_list.php:512 -#: ../../godmode/snmpconsole/snmp_alert.php:1180 -#: ../../godmode/alerts/alert_list.list.php:188 -#: ../../operation/agentes/graphs.php:269 -msgid "Toggle filter(s)" -msgstr "フィルタ設定" - -#: ../../enterprise/meta/advanced/collections.php:259 -#: ../../enterprise/godmode/agentes/collections.php:345 +#: ../../enterprise/meta/advanced/collections.php:274 +#: ../../enterprise/godmode/agentes/collections.php:353 msgid "Error: The main directory of collections does not exist." msgstr "エラー: コレクションのメインディレクトリが存在しません。" -#: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:442 +#: ../../enterprise/meta/advanced/collections.php:356 +#: ../../enterprise/godmode/agentes/configurar_agente.php:24 +#: ../../enterprise/godmode/agentes/collections.php:504 #: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/operation/agentes/ver_agente.php:192 -#: ../../godmode/agentes/configurar_agente.php:726 +#: ../../enterprise/operation/agentes/ver_agente.php:210 +#: ../../godmode/agentes/configurar_agente.php:716 +#: ../../operation/agentes/ver_agente.php:1856 msgid "Collection" msgstr "コレクション" -#: ../../enterprise/meta/advanced/collections.php:364 -#: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:443 -#: ../../enterprise/godmode/policies/policy_collections.php:170 -#: ../../enterprise/godmode/policies/policy_collections.php:264 +#: ../../enterprise/meta/advanced/collections.php:380 +#: ../../enterprise/godmode/agentes/collection_manager.php:162 +#: ../../enterprise/godmode/agentes/collections.php:505 +#: ../../enterprise/godmode/policies/policy_collections.php:241 +#: ../../enterprise/godmode/policies/policy_collections.php:322 msgid "Short Name" msgstr "短い名前" -#: ../../enterprise/meta/advanced/collections.php:425 -#: ../../enterprise/godmode/agentes/collections.php:475 +#: ../../enterprise/meta/advanced/collections.php:442 +#: ../../enterprise/godmode/agentes/collections.php:537 +#: ../../operation/agentes/status_monitor.php:2257 msgid "Are you sure to delete?" msgstr "削除しますがよろしいですか?" -#: ../../enterprise/meta/advanced/collections.php:430 -#: ../../enterprise/meta/advanced/collections.php:431 -#: ../../enterprise/godmode/agentes/collections.php:476 -#: ../../include/class/SatelliteCollection.class.php:590 +#: ../../enterprise/meta/advanced/collections.php:447 +#: ../../enterprise/meta/advanced/collections.php:448 +#: ../../enterprise/godmode/agentes/collections.php:538 +#: ../../include/class/SatelliteCollection.class.php:576 msgid "Delete collection" msgstr "コレクションの削除" -#: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:483 +#: ../../enterprise/meta/advanced/collections.php:457 +#: ../../enterprise/godmode/agentes/collections.php:545 msgid "Are you sure to re-apply?" msgstr "再適用しますか?" -#: ../../enterprise/meta/advanced/collections.php:441 -#: ../../enterprise/godmode/agentes/collections.php:484 +#: ../../enterprise/meta/advanced/collections.php:458 +#: ../../enterprise/godmode/agentes/collections.php:546 msgid "Re-Apply changes" msgstr "変更の再適用" -#: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:491 +#: ../../enterprise/meta/advanced/collections.php:465 +#: ../../enterprise/godmode/agentes/collections.php:553 msgid "Are you sure to apply?" msgstr "適用しますか?" -#: ../../enterprise/meta/advanced/collections.php:449 -#: ../../enterprise/godmode/agentes/collections.php:492 +#: ../../enterprise/meta/advanced/collections.php:466 +#: ../../enterprise/godmode/agentes/collections.php:554 msgid "Apply changes" msgstr "変更を適用" -#: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:497 +#: ../../enterprise/meta/advanced/collections.php:471 +#: ../../enterprise/godmode/agentes/collections.php:559 msgid "Are you sure to re-create directory?" msgstr "ディレクトリを再作成しますか?" -#: ../../enterprise/meta/advanced/collections.php:459 -#: ../../enterprise/meta/advanced/collections.php:460 -#: ../../enterprise/godmode/agentes/collections.php:502 -#: ../../enterprise/godmode/agentes/collections.php:503 +#: ../../enterprise/meta/advanced/collections.php:476 +#: ../../enterprise/meta/advanced/collections.php:477 +#: ../../enterprise/godmode/agentes/collections.php:564 +#: ../../enterprise/godmode/agentes/collections.php:565 msgid "The collection directory does not exist. Re-create directory" msgstr "コレクションディレクトリが存在しません。再作成します" -#: ../../enterprise/meta/advanced/collections.php:492 -#: ../../enterprise/godmode/agentes/collections.php:525 +#: ../../enterprise/meta/advanced/collections.php:508 +#: ../../enterprise/godmode/agentes/collections.php:588 msgid "Re-create directories" msgstr "ディレクトリの再作成" -#: ../../enterprise/meta/advanced/collections.php:504 +#: ../../enterprise/meta/advanced/collections.php:518 #: ../../general/first_task/collections.php:18 msgid "There are no collections defined yet." msgstr "コレクションが定義されていません。" @@ -8801,147 +9051,181 @@ msgstr "キューから操作を削除できません" #: ../../enterprise/meta/advanced/policymanager.queue.php:214 #: ../../enterprise/meta/advanced/policymanager.queue.php:259 -#: ../../enterprise/meta/include/functions_autoprovision.php:641 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:494 -#: ../../enterprise/godmode/policies/policy_queue.php:605 -#: ../../enterprise/godmode/policies/policy_queue.php:649 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:231 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3813 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 +#: ../../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/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:451 -#: ../../extensions/api_checker.php:240 ../../godmode/extensions.php:148 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4537 -#: ../../include/functions_reporting_html.php:2370 -#: ../../include/functions_reporting_html.php:4872 -#: ../../include/functions_menu.php:592 -#: ../../include/class/ExternalTools.class.php:530 +#: ../../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 msgid "Operation" msgstr "操作" #: ../../enterprise/meta/advanced/policymanager.queue.php:218 -#: ../../enterprise/godmode/policies/policy_queue.php:609 +#: ../../enterprise/godmode/policies/policy_queue.php:305 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:610 -#: ../../enterprise/godmode/policies/policy_queue.php:718 +#: ../../enterprise/godmode/policies/policy_queue.php:306 +#: ../../enterprise/godmode/policies/policy_queue.php:758 msgid "Apply (only database)" msgstr "適用 (データベースのみ)" #: ../../enterprise/meta/advanced/policymanager.queue.php:229 -#: ../../enterprise/godmode/policies/policy_queue.php:620 +#: ../../enterprise/godmode/policies/policy_queue.php:330 msgid "Complete" msgstr "完了" #: ../../enterprise/meta/advanced/policymanager.queue.php:230 -#: ../../enterprise/godmode/policies/policy_queue.php:621 +#: ../../enterprise/godmode/policies/policy_queue.php:331 msgid "Incomplete" msgstr "未完了" #: ../../enterprise/meta/advanced/policymanager.queue.php:235 -#: ../../enterprise/godmode/policies/policy_queue.php:626 +#: ../../enterprise/extensions/vmware/vmware_view.php:1843 +#: ../../enterprise/godmode/modules/local_components.php:599 +#: ../../enterprise/godmode/agentes/collection_manager.php:78 +#: ../../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/policies.php:341 -#: ../../enterprise/godmode/policies/policy_linking.php:129 +#: ../../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/setup/setup_skins.php:96 -#: ../../enterprise/godmode/setup/setup_acl.php:574 +#: ../../enterprise/godmode/setup/setup_acl.php:495 #: ../../enterprise/include/class/SAPView.class.php:409 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2870 -#: ../../enterprise/include/functions_ipam.php:1787 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2928 +#: ../../enterprise/include/functions_ipam.php:1832 +#: ../../enterprise/operation/agentes/tag_view.php:517 +#: ../../enterprise/operation/services/services.treeview_services.php:131 #: ../../enterprise/operation/services/services.treeview_services.php:164 -#: ../../enterprise/operation/services/services.treeview_services.php:168 -#: ../../enterprise/operation/services/services.list.php:454 -#: ../../enterprise/operation/services/services.list.php:459 -#: ../../enterprise/operation/services/services.table_services.php:363 -#: ../../enterprise/operation/services/services.table_services.php:368 +#: ../../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 #: ../../godmode/modules/manage_network_templates_form.php:277 #: ../../godmode/modules/manage_network_templates_form.php:337 -#: ../../godmode/agentes/module_manager.php:74 +#: ../../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/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/snmpconsole/snmp_alert.php:1176 -#: ../../godmode/snmpconsole/snmp_filters.php:203 -#: ../../godmode/snmpconsole/snmp_filters.php:290 -#: ../../godmode/reporting/reporting_builder.list_items.php:217 -#: ../../godmode/reporting/reporting_builder.list_items.php:261 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1123 -#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3390 -#: ../../include/functions_ui.php:3412 ../../include/functions_ui.php:3424 -#: ../../include/class/ModuleTemplates.class.php:766 ../../operation/tree.php:260 -#: ../../operation/agentes/graphs.php:265 -#: ../../operation/agentes/estado_monitores.php:594 -#: ../../operation/netflow/nf_live_view.php:391 -#: ../../operation/incidents/list_integriaims_incidents.php:435 -#: ../../operation/incidents/list_integriaims_incidents.php:439 +#: ../../godmode/netflow/nf_edit_form.php:238 +#: ../../godmode/snmpconsole/snmp_alert.php:1797 +#: ../../godmode/snmpconsole/snmp_filters.php:216 +#: ../../godmode/snmpconsole/snmp_filters.php:314 +#: ../../godmode/reporting/reporting_builder.list_items.php:267 +#: ../../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.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 +#: ../../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/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/incidents/list_integriaims_incidents.php:470 +#: ../../operation/inventory/inventory.php:704 +#: ../../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 +msgid "Show Options" +msgstr "オプション表示" + #: ../../enterprise/meta/advanced/policymanager.queue.php:256 #: ../../enterprise/meta/monitoring/custom_fields_csv.php:103 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:197 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:718 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:195 #: ../../enterprise/meta/include/functions_wizard_meta.php:174 #: ../../enterprise/meta/include/functions_wizard_meta.php:1796 -#: ../../enterprise/meta/agentsearch.php:134 -#: ../../enterprise/meta/agentsearch.php:334 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1985 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2023 +#: ../../enterprise/meta/agentsearch.php:132 +#: ../../enterprise/meta/agentsearch.php:332 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1974 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2012 #: ../../enterprise/include/functions_reporting_csv.php:2783 -#: ../../enterprise/include/class/CSVImportAgents.class.php:154 +#: ../../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:614 -#: ../../godmode/modules/manage_network_components.php:752 -#: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/module_manager.php:887 +#: ../../enterprise/operation/log/log_viewer.php:749 +#: ../../godmode/modules/manage_network_components.php:775 +#: ../../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:1218 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1240 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3649 -#: ../../godmode/events/event_edit_filter.php:753 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 -#: ../../include/functions_reporting_html.php:2261 -#: ../../include/class/AgentWizard.class.php:1279 -#: ../../operation/inventory/inventory.php:334 -#: ../../operation/events/events.php:1914 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1215 +#: ../../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/wizards/DiscoveryTaskList.class.php:1065 +#: ../../include/functions_reporting_html.php:2350 +#: ../../include/class/AgentWizard.class.php:1282 +#: ../../operation/inventory/inventory.php:490 +#: ../../operation/events/events.php:1953 msgid "Server" msgstr "サーバ" #: ../../enterprise/meta/advanced/policymanager.queue.php:258 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:298 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:303 #: ../../enterprise/meta/monitoring/group_view.php:154 -#: ../../enterprise/meta/monitoring/group_view.php:215 -#: ../../enterprise/meta/include/functions_autoprovision.php:476 -#: ../../enterprise/godmode/agentes/collections.agents.php:53 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:100 -#: ../../enterprise/godmode/agentes/collections.data.php:137 -#: ../../enterprise/godmode/agentes/collections.data.php:283 -#: ../../enterprise/godmode/agentes/collections.editor.php:74 -#: ../../enterprise/godmode/policies/policy_queue.php:648 -#: ../../enterprise/godmode/policies/policies.php:411 -#: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_agents.php:567 -#: ../../enterprise/godmode/policies/policy_agents.php:700 -#: ../../enterprise/godmode/policies/policy_agents.php:814 -#: ../../enterprise/godmode/policies/policy.php:71 +#: ../../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/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/policies.php:438 +#: ../../enterprise/godmode/policies/policies.php:603 +#: ../../enterprise/godmode/policies/policy_agents.php:719 +#: ../../enterprise/godmode/policies/policy.php:93 +#: ../../enterprise/godmode/policies/policy.php:106 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:220 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:209 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:294 #: ../../enterprise/include/functions_cron.php:215 -#: ../../enterprise/include/functions_tasklist.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:887 -#: ../../enterprise/include/functions_policies.php:3825 -#: ../../enterprise/operation/services/massive/services.create.php:988 -#: ../../enterprise/operation/services/massive/service.create.elements.php:383 -#: ../../enterprise/operation/services/services.service_map.php:158 -#: ../../extensions/agents_modules.php:431 -#: ../../extensions/agents_modules.php:758 +#: ../../enterprise/include/functions_tasklist.php:367 +#: ../../enterprise/include/functions_reporting_pdf.php:889 +#: ../../enterprise/include/functions_policies.php:3797 +#: ../../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 #: ../../godmode/agentes/planned_downtime.list.php:84 -#: ../../godmode/agentes/planned_downtime.list.php:108 +#: ../../godmode/agentes/planned_downtime.list.php:109 #: ../../godmode/massive/massive_standby_alerts.php:204 #: ../../godmode/massive/massive_delete_modules.php:535 #: ../../godmode/massive/massive_add_alerts.php:231 @@ -8949,64 +9233,62 @@ msgstr "サーバ" #: ../../godmode/massive/massive_enable_disable_alerts.php:175 #: ../../godmode/massive/massive_delete_alerts.php:315 #: ../../godmode/massive/massive_edit_modules.php:511 -#: ../../godmode/alerts/alert_list.list.php:79 -#: ../../godmode/reporting/reporting_builder.list_items.php:208 -#: ../../godmode/reporting/reporting_builder.list_items.php:229 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1825 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1851 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2098 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../godmode/alerts/alert_list.list.php:99 +#: ../../godmode/reporting/reporting_builder.list_items.php:211 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1853 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1879 +#: ../../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:2005 -#: ../../include/functions_reporting_html.php:2476 -#: ../../include/functions_reporting_html.php:3256 -#: ../../include/functions_cron.php:703 ../../include/functions_html.php:1655 -#: ../../include/functions_html.php:5543 -#: ../../include/functions_massive_operations.php:219 -#: ../../include/class/Diagnostics.class.php:1164 -#: ../../include/class/Diagnostics.class.php:1168 -#: ../../include/class/Diagnostics.class.php:1172 -#: ../../include/class/Diagnostics.class.php:1176 -#: ../../include/class/NetworkMap.class.php:3361 +#: ../../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 +#: ../../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/AgentsAlerts.class.php:252 -#: ../../include/class/AgentsAlerts.class.php:542 +#: ../../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/functions_groups.php:53 ../../operation/heatmap.php:95 +#: ../../include/functions_groups.php:53 ../../operation/heatmap.php:98 #: ../../operation/search_results.php:81 -#: ../../operation/agentes/interface_view.functions.php:71 -#: ../../operation/agentes/group_view.php:183 -#: ../../operation/agentes/group_view.php:216 +#: ../../operation/agentes/interface_view.functions.php:78 +#: ../../operation/agentes/group_view.php:184 +#: ../../operation/agentes/group_view.php:234 msgid "Agents" msgstr "エージェント" #: ../../enterprise/meta/advanced/policymanager.queue.php:260 -#: ../../enterprise/godmode/policies/policy_queue.php:650 -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 -#: ../../enterprise/include/class/Omnishell.class.php:401 -#: ../../enterprise/include/functions_ipam.php:1413 -#: ../../enterprise/include/functions_ipam.php:1420 +#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:712 +#: ../../enterprise/include/class/Omnishell.class.php:408 #: ../../enterprise/include/functions_ipam.php:1425 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:608 +#: ../../enterprise/include/functions_ipam.php:1430 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:611 msgid "Progress" msgstr "進捗状況" #: ../../enterprise/meta/advanced/policymanager.queue.php:298 -#: ../../enterprise/godmode/policies/policy_queue.php:688 +#: ../../enterprise/godmode/policies/policy_queue.php:728 msgid "Policy " msgstr "ポリシー" #: ../../enterprise/meta/advanced/policymanager.queue.php:339 -#: ../../enterprise/godmode/policies/policy_queue.php:748 -#: ../../enterprise/godmode/policies/policy_queue.php:757 +#: ../../enterprise/godmode/policies/policy_queue.php:788 +#: ../../enterprise/godmode/policies/policy_queue.php:797 msgid "Policy applying timeout" msgstr "ポリシー適用タイムアウト" #: ../../enterprise/meta/advanced/policymanager.queue.php:353 -#: ../../enterprise/godmode/policies/policy_queue.php:776 +#: ../../enterprise/godmode/policies/policy_queue.php:816 msgid "Delete from queue" msgstr "キューから削除" @@ -9015,36 +9297,35 @@ msgid "Empty queue." msgstr "キューが空です" #: ../../enterprise/meta/monitoring/custom_fields_csv.php:101 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:704 -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:205 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:279 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:374 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:716 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:203 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:309 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:376 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:644 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:723 #: ../../enterprise/meta/include/functions_wizard_meta.php:3506 -#: ../../enterprise/meta/agentsearch.php:135 -#: ../../enterprise/godmode/agentes/collections.agents.php:94 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 -#: ../../enterprise/godmode/policies/policy_linking.php:150 +#: ../../enterprise/meta/agentsearch.php:133 +#: ../../enterprise/godmode/agentes/collections.agents.php:119 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:106 +#: ../../enterprise/godmode/policies/policy_linking.php:200 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:136 #: ../../enterprise/godmode/services/services.elements.php:94 #: ../../enterprise/godmode/services/services.elements.php:132 -#: ../../enterprise/godmode/services/services.elements.php:276 +#: ../../enterprise/godmode/services/services.elements.php:278 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:317 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1411 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2085 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3574 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3785 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3803 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2074 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3576 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3787 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3805 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_reporting_pdf.php:528 -#: ../../enterprise/include/functions_reporting_pdf.php:536 -#: ../../enterprise/include/functions_reporting_pdf.php:544 -#: ../../enterprise/include/functions_reporting_pdf.php:560 -#: ../../enterprise/include/functions_reporting_pdf.php:720 +#: ../../enterprise/include/functions_reporting_pdf.php:530 +#: ../../enterprise/include/functions_reporting_pdf.php:538 +#: ../../enterprise/include/functions_reporting_pdf.php:546 +#: ../../enterprise/include/functions_reporting_pdf.php:562 +#: ../../enterprise/include/functions_reporting_pdf.php:722 #: ../../enterprise/include/functions_reporting_csv.php:497 #: ../../enterprise/include/functions_reporting_csv.php:826 #: ../../enterprise/include/functions_reporting_csv.php:852 @@ -9072,93 +9353,94 @@ msgstr "キューが空です" #: ../../enterprise/include/functions_reporting_csv.php:2515 #: ../../enterprise/include/functions_reporting_csv.php:2568 #: ../../enterprise/include/functions_reporting_csv.php:2786 -#: ../../enterprise/include/class/LogSource.class.php:627 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 -#: ../../enterprise/include/functions_reporting.php:1854 -#: ../../enterprise/include/functions_reporting.php:2187 -#: ../../enterprise/include/functions_reporting.php:2218 -#: ../../enterprise/include/functions_reporting.php:2236 -#: ../../enterprise/include/functions_reporting.php:2893 -#: ../../enterprise/include/functions_reporting.php:3880 -#: ../../enterprise/include/functions_reporting.php:4904 +#: ../../enterprise/include/class/LogSource.class.php:603 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:950 +#: ../../enterprise/include/functions_reporting.php:1846 +#: ../../enterprise/include/functions_reporting.php:2189 +#: ../../enterprise/include/functions_reporting.php:2202 +#: ../../enterprise/include/functions_reporting.php:2235 +#: ../../enterprise/include/functions_reporting.php:2253 +#: ../../enterprise/include/functions_reporting.php:2911 +#: ../../enterprise/include/functions_reporting.php:3900 +#: ../../enterprise/include/functions_reporting.php:4924 #: ../../enterprise/include/functions_services.php:1666 #: ../../enterprise/include/functions_events.php:80 -#: ../../enterprise/operation/agentes/tag_view.php:599 -#: ../../enterprise/operation/log/log_viewer.php:633 -#: ../../enterprise/tools/ipam/ipam_network.php:398 -#: ../../enterprise/tools/ipam/ipam_ajax.php:379 -#: ../../extensions/insert_data.php:158 -#: ../../godmode/modules/manage_inventory_modules.php:305 +#: ../../enterprise/operation/agentes/tag_view.php:693 +#: ../../enterprise/operation/log/log_viewer.php:770 +#: ../../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:143 -#: ../../godmode/agentes/module_manager_editor_prediction.php:126 -#: ../../godmode/agentes/planned_downtime.list.php:391 -#: ../../godmode/agentes/module_manager_editor_common.php:1264 -#: ../../godmode/agentes/module_manager_editor_common.php:1317 -#: ../../godmode/gis_maps/configure_gis_map.php:581 +#: ../../godmode/agentes/status_monitor_custom_fields.php:141 +#: ../../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/gis_maps/configure_gis_map.php:592 #: ../../godmode/massive/massive_copy_modules.php:131 #: ../../godmode/massive/massive_copy_modules.php:295 #: ../../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/alerts/alert_list.list.php:491 -#: ../../godmode/alerts/alert_list.list.php:741 -#: ../../godmode/alerts/alert_view.php:87 -#: ../../godmode/alerts/alert_list.builder.php:56 -#: ../../godmode/reporting/reporting_builder.list_items.php:391 -#: ../../godmode/reporting/create_container.php:387 -#: ../../godmode/reporting/create_container.php:554 -#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/alerts/alert_list.list.php:564 +#: ../../godmode/alerts/alert_list.list.php:813 +#: ../../godmode/alerts/alert_view.php:93 +#: ../../godmode/alerts/alert_list.builder.php:55 +#: ../../godmode/reporting/reporting_builder.list_items.php:393 +#: ../../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:210 -#: ../../godmode/reporting/reporting_builder.item_editor.php:888 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1171 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1707 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3988 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4506 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4530 -#: ../../godmode/reporting/visual_console_builder.elements.php:104 -#: ../../godmode/reporting/visual_console_builder.wizard.php:450 -#: ../../godmode/reporting/visual_console_builder.wizard.php:738 -#: ../../godmode/reporting/visual_console_builder.wizard.php:761 -#: ../../godmode/servers/plugin.php:87 ../../mobile/operation/agents.php:93 +#: ../../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/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/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 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:943 -#: ../../include/functions_reporting_html.php:1054 -#: ../../include/functions_reporting_html.php:1062 -#: ../../include/functions_reporting_html.php:1927 -#: ../../include/functions_reporting_html.php:2264 -#: ../../include/functions_reporting_html.php:2368 -#: ../../include/functions_reporting_html.php:3219 -#: ../../include/functions_reporting_html.php:3353 -#: ../../include/functions_reporting_html.php:3660 -#: ../../include/functions_reporting_html.php:3740 -#: ../../include/functions_reporting_html.php:3748 -#: ../../include/functions_reporting_html.php:3757 -#: ../../include/functions_reporting_html.php:3769 -#: ../../include/functions_reporting_html.php:3927 -#: ../../include/functions_reporting_html.php:4050 -#: ../../include/functions_reporting_html.php:4144 -#: ../../include/functions_reporting_html.php:4869 -#: ../../include/functions_reporting_html.php:4917 +#: ../../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:5284 -#: ../../include/functions_reporting_html.php:5324 -#: ../../include/functions_reporting_html.php:5574 -#: ../../include/ajax/heatmap.ajax.php:244 -#: ../../include/ajax/heatmap.ajax.php:283 -#: ../../include/ajax/heatmap.ajax.php:318 +#: ../../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/ajax/alert_list.ajax.php:459 #: ../../include/functions_inventory.php:393 -#: ../../include/functions_inventory.php:880 -#: ../../include/functions_inventory.php:936 -#: ../../include/functions_graph.php:5076 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:1063 +#: ../../include/functions_inventory.php:1119 +#: ../../include/functions_graph.php:5062 ../../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 @@ -9169,67 +9451,73 @@ msgstr "キューが空です" #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 #: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 -#: ../../include/functions_reports.php:1320 -#: ../../include/class/NetworkMap.class.php:2968 -#: ../../include/class/NetworkMap.class.php:3017 -#: ../../include/class/NetworkMap.class.php:3295 -#: ../../include/class/AgentsAlerts.class.php:410 -#: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/functions_reporting.php:7228 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:337 +#: ../../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/AgentsAlerts.class.php:430 +#: ../../include/class/AgentsAlerts.class.php:981 +#: ../../include/functions_reporting.php:7332 +#: ../../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/GroupedMeterGraphs.php:463 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:250 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:355 -#: ../../include/lib/Dashboard/Widgets/module_value.php:330 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:359 +#: ../../include/lib/Dashboard/Widgets/module_value.php:334 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:239 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:255 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:305 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:326 -#: ../../include/lib/Dashboard/Widgets/module_status.php:346 +#: ../../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:1633 +#: ../../include/functions_snmp_browser.php:1809 #: ../../operation/search_agents.php:42 ../../operation/search_agents.php:48 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/estado_agente.php:739 -#: ../../operation/agentes/interface_view.functions.php:480 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1320 +#: ../../operation/agentes/estado_agente.php:1023 +#: ../../operation/agentes/interface_view.functions.php:499 +#: ../../operation/agentes/exportdata.php:114 +#: ../../operation/agentes/status_monitor.php:1536 #: ../../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:404 -#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2611 +#: ../../operation/inventory/inventory.php:628 +#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 msgid "Agent" msgstr "エージェント" #: ../../enterprise/meta/monitoring/custom_fields_csv.php:102 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:137 #: ../../enterprise/godmode/servers/HA_cluster.php:166 #: ../../enterprise/include/functions_reporting_csv.php:1983 -#: ../../enterprise/include/class/Azure.cloud.php:803 +#: ../../enterprise/include/class/Azure.cloud.php:806 #: ../../enterprise/include/class/VMware.app.php:621 -#: ../../enterprise/include/class/DeploymentCenter.class.php:755 -#: ../../enterprise/include/class/DeploymentCenter.class.php:805 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1280 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/Aws.cloud.php:546 -#: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:1654 -#: ../../enterprise/include/functions_ipam.php:1655 -#: ../../extensions/api_checker.php:202 ../../extensions/users_connected.php:144 +#: ../../enterprise/include/class/DeploymentCenter.class.php:664 +#: ../../enterprise/include/class/DeploymentCenter.class.php:715 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1308 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1429 +#: ../../enterprise/include/class/Aws.S3.php:570 +#: ../../enterprise/include/class/Aws.cloud.php:534 +#: ../../enterprise/include/functions_reporting.php:2335 +#: ../../enterprise/include/functions_ipam.php:1657 +#: ../../enterprise/include/functions_ipam.php:1658 +#: ../../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:790 -#: ../../include/functions_visual_map_editor.php:1460 -#: ../../include/functions_reporting_html.php:3236 -#: ../../include/functions_reporting_html.php:3566 -#: ../../include/ajax/heatmap.ajax.php:325 -#: ../../include/class/AuditLog.class.php:193 -#: ../../operation/network/network_report.php:184 +#: ../../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/class/AuditLog.class.php:223 +#: ../../operation/network/network_report.php:272 +#: ../../operation/inventory/inventory.php:1000 +#: ../../operation/inventory/inventory.php:1294 msgid "IP" msgstr "IP アドレス" @@ -9240,53 +9528,62 @@ msgstr "エージェントの状態" #: ../../enterprise/meta/monitoring/custom_fields_csv.php:119 #: ../../enterprise/meta/monitoring/custom_fields_csv.php:142 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:179 -#: ../../enterprise/meta/monitoring/group_view.php:238 -#: ../../enterprise/meta/monitoring/group_view.php:244 -#: ../../enterprise/meta/monitoring/tactical.php:224 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 +#: ../../enterprise/meta/monitoring/group_view.php:235 +#: ../../enterprise/meta/monitoring/group_view.php:241 +#: ../../enterprise/meta/monitoring/tactical.php:223 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:119 -#: ../../enterprise/godmode/services/services.elements.php:392 +#: ../../enterprise/godmode/services/services.elements.php:418 #: ../../enterprise/include/functions_services.php:1428 -#: ../../enterprise/operation/agentes/tag_view.php:131 -#: ../../enterprise/operation/services/services.treeview_services.php:295 -#: ../../godmode/groups/group_list.php:1079 -#: ../../godmode/netflow/nf_edit_form.php:236 +#: ../../enterprise/operation/agentes/tag_view.php:130 +#: ../../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/agentes/module_manager_editor_common.php:476 +#: ../../godmode/agentes/module_manager_editor_common.php:559 +#: ../../godmode/netflow/nf_edit_form.php:245 #: ../../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/reporting/reporting_builder.item_editor.php:3784 +#: ../../godmode/setup/setup_visuals.php:1013 +#: ../../godmode/setup/setup_visuals.php:1035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3830 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2483 -#: ../../include/functions.php:1077 ../../include/functions.php:1317 -#: ../../include/functions.php:1324 ../../include/functions.php:1357 -#: ../../include/functions_graph.php:3330 ../../include/functions_graph.php:3332 -#: ../../include/functions_graph.php:4856 +#: ../../include/functions_reporting_html.php:2573 +#: ../../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/functions_massive_operations.php:148 +#: ../../include/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:385 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:418 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../include/functions_events.php:3077 ../../operation/tree.php:212 -#: ../../operation/tree.php:269 ../../operation/tree.php:486 -#: ../../operation/agentes/estado_agente.php:268 -#: ../../operation/agentes/status_monitor.php:492 -#: ../../operation/agentes/group_view.php:226 -#: ../../operation/agentes/group_view.php:231 -#: ../../operation/agentes/estado_monitores.php:523 -#: ../../operation/agentes/tactical.php:181 -#: ../../operation/netflow/nf_live_view.php:392 ../../general/logon_ok.php:144 +#: ../../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 +#: ../../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/tactical.php:199 +#: ../../operation/netflow/nf_live_view.php:274 ../../general/logon_ok.php:150 msgid "Normal" msgstr "正常" #: ../../enterprise/meta/monitoring/custom_fields_csv.php:124 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:181 -#: ../../enterprise/meta/monitoring/group_view.php:240 -#: ../../enterprise/meta/monitoring/group_view.php:246 -#: ../../enterprise/meta/monitoring/tactical.php:222 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 +#: ../../enterprise/meta/monitoring/group_view.php:237 +#: ../../enterprise/meta/monitoring/group_view.php:243 +#: ../../enterprise/meta/monitoring/tactical.php:221 #: ../../enterprise/meta/include/functions_wizard_meta.php:986 #: ../../enterprise/meta/include/functions_wizard_meta.php:1071 #: ../../enterprise/meta/include/functions_wizard_meta.php:1274 @@ -9296,59 +9593,63 @@ msgstr "正常" #: ../../enterprise/meta/include/functions_wizard_meta.php:1716 #: ../../enterprise/meta/include/functions_wizard_meta.php:1734 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:121 -#: ../../enterprise/godmode/services/services.service.php:726 -#: ../../enterprise/godmode/services/services.elements.php:365 -#: ../../enterprise/include/functions_reporting.php:3192 -#: ../../enterprise/include/functions_reporting.php:4193 -#: ../../enterprise/include/functions_reporting.php:4844 -#: ../../enterprise/include/functions_reporting.php:6194 +#: ../../enterprise/godmode/services/services.service.php:722 +#: ../../enterprise/godmode/services/services.elements.php:372 +#: ../../enterprise/include/functions_reporting.php:3211 +#: ../../enterprise/include/functions_reporting.php:4213 +#: ../../enterprise/include/functions_reporting.php:4864 +#: ../../enterprise/include/functions_reporting.php:6219 #: ../../enterprise/include/functions_services.php:1440 -#: ../../enterprise/operation/agentes/tag_view.php:133 -#: ../../enterprise/operation/services/services.service.php:122 -#: ../../enterprise/operation/services/services.service.php:168 -#: ../../enterprise/operation/services/massive/services.create.php:757 -#: ../../enterprise/operation/services/services.service_map.php:149 -#: ../../enterprise/operation/services/services.treeview_services.php:275 -#: ../../enterprise/operation/services/services.list.php:239 -#: ../../enterprise/operation/services/services.list.php:504 -#: ../../enterprise/operation/services/services.list.php:558 -#: ../../enterprise/operation/services/services.table_services.php:161 +#: ../../enterprise/operation/agentes/tag_view.php:132 +#: ../../enterprise/operation/services/services.service.php:113 +#: ../../enterprise/operation/services/services.service.php:159 +#: ../../enterprise/operation/services/massive/services.create.php:753 +#: ../../enterprise/operation/services/services.service_map.php:139 +#: ../../enterprise/operation/services/services.treeview_services.php:301 +#: ../../enterprise/operation/services/services.list.php:207 +#: ../../enterprise/operation/services/services.list.php:542 +#: ../../enterprise/operation/services/services.list.php:596 +#: ../../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:1059 +#: ../../godmode/groups/group_list.php:1094 #: ../../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:3786 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3832 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 -#: ../../include/functions_reporting_html.php:864 -#: ../../include/functions_reporting_html.php:2484 -#: ../../include/functions_reporting_html.php:4785 -#: ../../include/functions.php:1085 ../../include/functions.php:1321 -#: ../../include/functions.php:1322 ../../include/functions.php:1324 -#: ../../include/functions.php:1365 ../../include/functions_graph.php:3354 -#: ../../include/functions_graph.php:3356 ../../include/functions_graph.php:4864 -#: ../../include/functions_ui.php:2614 +#: ../../include/functions_reporting_html.php:867 +#: ../../include/functions_reporting_html.php:2574 +#: ../../include/functions_reporting_html.php:4871 +#: ../../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_massive_operations.php:150 -#: ../../include/class/AgentWizard.class.php:1401 -#: ../../include/class/AgentWizard.class.php:4158 +#: ../../include/functions_massive_operations.php:148 +#: ../../include/class/AgentWizard.class.php:1404 +#: ../../include/class/AgentWizard.class.php:4161 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:317 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:387 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:420 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../include/functions_events.php:3085 ../../operation/tree.php:214 -#: ../../operation/tree.php:271 ../../operation/tree.php:466 -#: ../../operation/agentes/estado_agente.php:270 -#: ../../operation/agentes/status_monitor.php:494 -#: ../../operation/agentes/group_view.php:228 -#: ../../operation/agentes/group_view.php:233 -#: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/tactical.php:179 -#: ../../operation/gis_maps/render_view.php:164 ../../general/logon_ok.php:142 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:254 +#: ../../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 +#: ../../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/tactical.php:197 +#: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:148 msgid "Critical" msgstr "障害" @@ -9356,410 +9657,447 @@ msgstr "障害" msgid "No init" msgstr "未初期化" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:54 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:44 +#: ../../enterprise/meta/general/main_header.php:127 +#: ../../enterprise/meta/general/main_menu.php:229 +msgid "Custom fields view" +msgstr "カスタムフィールド表示" + +#: ../../enterprise/meta/monitoring/custom_fields_view.php:57 msgid "Custom fields View" msgstr "カスタムフィールド表示" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:66 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:68 msgid "Custom Fields View" msgstr "カスタムフィールド表示" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:168 -#: ../../enterprise/godmode/policies/policies.php:328 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:746 -#: ../../extensions/agents_modules.php:407 -#: ../../godmode/agentes/modificar_agente.php:322 -#: ../../godmode/agentes/planned_downtime.editor.php:1101 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1639 -#: ../../include/functions_html.php:1545 -#: ../../include/class/NetworkMap.class.php:3359 -#: ../../operation/agentes/estado_agente.php:262 -#: ../../operation/agentes/interface_view.functions.php:59 -#: ../../operation/agentes/status_monitor.php:488 +#: ../../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 +#: ../../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 +#: ../../operation/agentes/estado_agente.php:310 +#: ../../operation/agentes/interface_view.functions.php:61 +#: ../../operation/agentes/status_monitor.php:845 msgid "Recursion" msgstr "子を含める" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:183 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:123 -#: ../../enterprise/operation/agentes/tag_view.php:135 +#: ../../enterprise/operation/agentes/tag_view.php:134 #: ../../godmode/massive/massive_copy_modules.php:119 #: ../../godmode/massive/massive_copy_modules.php:279 #: ../../godmode/massive/massive_delete_modules.php:422 #: ../../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:3788 -#: ../../godmode/events/event_edit_filter.php:342 -#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1323 -#: ../../include/functions_massive_operations.php:152 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3834 +#: ../../godmode/events/event_edit_filter.php:350 +#: ../../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/functions_events.php:3033 -#: ../../operation/agentes/estado_agente.php:272 -#: ../../operation/agentes/status_monitor.php:496 -#: ../../operation/events/events.php:1664 +#: ../../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 +#: ../../operation/agentes/estado_agente.php:277 +#: ../../operation/agentes/status_monitor.php:568 +#: ../../operation/events/events.php:1739 msgid "Not normal" msgstr "正常ではない" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:185 -#: ../../enterprise/meta/monitoring/group_view.php:237 -#: ../../enterprise/meta/monitoring/group_view.php:243 -#: ../../enterprise/meta/monitoring/tactical.php:226 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 +#: ../../enterprise/meta/monitoring/group_view.php:234 +#: ../../enterprise/meta/monitoring/group_view.php:240 +#: ../../enterprise/meta/monitoring/tactical.php:225 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 -#: ../../enterprise/operation/agentes/tag_view.php:137 -#: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1074 +#: ../../enterprise/operation/agentes/tag_view.php:136 +#: ../../enterprise/operation/services/services.treeview_services.php:316 +#: ../../godmode/groups/group_list.php:1109 #: ../../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:3789 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3835 #: ../../mobile/operation/modules.php:75 -#: ../../include/functions_reporting_html.php:657 -#: ../../include/functions_reporting_html.php:2487 -#: ../../include/functions_reporting_html.php:4593 -#: ../../include/functions_massive_operations.php:153 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:389 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:422 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:678 -#: ../../operation/tree.php:216 ../../operation/tree.php:273 -#: ../../operation/tree.php:481 ../../operation/agentes/estado_agente.php:273 -#: ../../operation/agentes/status_monitor.php:498 -#: ../../operation/agentes/group_view.php:225 -#: ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:183 ../../general/logon_ok.php:146 +#: ../../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_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 msgid "Not init" msgstr "未初期化" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:187 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:189 msgid "Status agents" msgstr "エージェント状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:203 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:205 msgid "Status module" msgstr "モジュール状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:222 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:228 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -#: ../../include/ajax/events.php:848 ../../operation/events/events.php:1834 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:224 +#: ../../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 +#: ../../include/class/AuditLog.class.php:167 +#: ../../include/class/AuditLog.class.php:445 +#: ../../include/class/AuditLog.class.php:485 +#: ../../operation/events/events.php:1871 msgid "Save filter" msgstr "フィルタの保存" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:236 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:242 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 -#: ../../include/ajax/events.php:600 ../../operation/netflow/nf_live_view.php:397 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:238 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:244 +#: ../../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 +#: ../../include/ajax/audit_log.php:150 ../../include/ajax/audit_log.php:168 +#: ../../include/ajax/module.php:2149 ../../include/ajax/module.php:2173 +#: ../../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 +#: ../../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:1826 +#: ../../operation/events/events.php:1862 msgid "Load filter" msgstr "フィルタ読み込み" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:250 -#: ../../general/first_task/custom_fields.php:24 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:252 +#: ../../general/first_task/custom_fields.php:40 msgid "Custom Fields" msgstr "カスタムフィールド" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:266 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:268 msgid "Custom Fields Data" msgstr "カスタムフィールドデータ" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:670 -#: ../../operation/events/events.php:1930 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:295 +#: ../../godmode/events/event_edit_filter.php:780 +#: ../../operation/events/events.php:1969 msgid "Module search" msgstr "モジュール検索" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:304 -#: ../../enterprise/extensions/vmware/vmware_view.php:1513 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1533 -#: ../../enterprise/include/class/AgentRepository.class.php:840 -#: ../../enterprise/include/class/Omnishell.class.php:1126 -#: ../../enterprise/include/class/LogSource.class.php:766 -#: ../../enterprise/operation/agentes/tag_view.php:175 -#: ../../include/class/ConfigPEN.class.php:252 -#: ../../include/class/CredentialStore.class.php:1286 -#: ../../operation/heatmap.php:295 -#: ../../operation/agentes/interface_view.functions.php:120 -#: ../../operation/agentes/interface_view.functions.php:158 -#: ../../operation/agentes/status_monitor.php:861 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:306 +#: ../../enterprise/extensions/vmware/vmware_view.php:1579 +#: ../../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 +#: ../../include/class/ConfigPEN.class.php:252 ../../operation/heatmap.php:299 +#: ../../operation/agentes/interface_view.functions.php:172 msgid "Show" msgstr "表示" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:597 +#: ../../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:806 -#: ../../enterprise/operation/reporting/custom_reporting.php:80 +#: ../../enterprise/operation/log/log_viewer.php:968 +#: ../../enterprise/operation/reporting/custom_reporting.php:100 #: ../../godmode/modules/manage_network_templates.php:290 -#: ../../godmode/agentes/planned_downtime.list.php:907 +#: ../../godmode/agentes/planned_downtime.list.php:1000 #: ../../include/graphs/functions_flot.php:382 -#: ../../include/class/ModuleTemplates.class.php:935 -#: ../../operation/network/network_report.php:140 -#: ../../operation/incidents/list_integriaims_incidents.php:428 +#: ../../include/class/ModuleTemplates.class.php:904 +#: ../../operation/network/network_report.php:230 +#: ../../operation/incidents/list_integriaims_incidents.php:480 msgid "Export to CSV" msgstr "CSVにエクスポート" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:347 -#: ../../enterprise/meta/monitoring/custom_fields_view.php:349 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:359 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:361 #: ../../enterprise/include/class/DatabaseHA.class.php:217 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -#: ../../include/functions_ui.php:3436 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1883 +#: ../../include/functions_ui.php:3741 msgid "Processing" msgstr "処理中" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:374 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:386 #: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5756 -#: ../../include/functions_agents.php:3881 +#: ../../include/functions_reporting_html.php:5843 +#: ../../include/functions_agents.php:3955 msgid "Agents critical" msgstr "障害状態エージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -#: ../../include/functions_reporting_html.php:5759 -#: ../../include/functions_agents.php:3891 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:399 +#: ../../include/functions_reporting_html.php:5846 +#: ../../include/functions_agents.php:3965 msgid "Agents warning" msgstr "警告状態エージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -#: ../../include/functions_reporting_html.php:5765 -#: ../../include/functions_agents.php:3871 -#: ../../include/functions_agents.php:3925 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:412 +#: ../../include/functions_reporting_html.php:5852 +#: ../../include/functions_agents.php:3945 +#: ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "正常状態エージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:413 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:425 #: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5768 -#: ../../include/functions_agents.php:3901 +#: ../../include/functions_reporting_html.php:5855 +#: ../../include/functions_agents.php:3975 msgid "Agents unknown" msgstr "不明なエージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:426 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:438 #: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5774 -#: ../../include/functions_agents.php:3915 +#: ../../include/functions_reporting_html.php:5861 +#: ../../include/functions_agents.php:3989 msgid "Agents not init" msgstr "未初期化エージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -#: ../../include/functions_reporting.php:12037 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:464 +#: ../../include/functions_reporting.php:12227 +#: ../../include/functions_groups.php:2794 msgid "Monitor critical" msgstr "障害状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -#: ../../include/functions_reporting.php:12041 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:475 +#: ../../include/functions_reporting.php:12231 +#: ../../include/functions_groups.php:2798 msgid "Monitor warning" msgstr "警告状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -#: ../../include/functions_reporting.php:12048 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:486 +#: ../../include/functions_reporting.php:12238 +#: ../../include/functions_groups.php:2805 msgid "Monitor normal" msgstr "正常状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -#: ../../include/functions_reporting.php:12052 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:497 +#: ../../include/functions_reporting.php:12242 +#: ../../include/functions_groups.php:2809 msgid "Monitor unknown" msgstr "不明状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -#: ../../include/functions_reporting.php:12059 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:508 +#: ../../include/functions_reporting.php:12249 +#: ../../include/functions_groups.php:2816 msgid "Monitor not init" msgstr "未初期化状態" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -#: ../../include/functions_reporting_html.php:5783 -#: ../../include/functions_reporting_html.php:5788 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:523 +#: ../../include/functions_reporting_html.php:5870 +#: ../../include/functions_reporting_html.php:5875 msgid "Agents by status" msgstr "状態ごとのエージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -#: ../../include/functions_reporting.php:12079 -#: ../../include/functions_reporting.php:12085 +#: ../../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 msgid "Monitors by status" msgstr "状態ごとの監視項目" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:533 -#: ../../enterprise/operation/services/services.treeview_services.php:273 -#: ../../godmode/groups/group_list.php:1057 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:661 -#: ../../operation/tree.php:464 +#: ../../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 msgid "Critical agents" msgstr "障害エージェント数" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:543 -#: ../../enterprise/operation/services/services.treeview_services.php:278 -#: ../../godmode/groups/group_list.php:1062 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 -#: ../../operation/tree.php:469 +#: ../../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 msgid "Warning agents" msgstr "警告エージェント数" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:553 -#: ../../enterprise/operation/services/services.treeview_services.php:293 -#: ../../godmode/groups/group_list.php:1077 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:681 -#: ../../operation/tree.php:484 +#: ../../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 msgid "Normal agents" msgstr "正常エージェント数" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:563 -#: ../../enterprise/operation/services/services.treeview_services.php:283 -#: ../../godmode/groups/group_list.php:1067 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 -#: ../../operation/tree.php:474 +#: ../../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 msgid "Unknown agents" msgstr "不明エージェント数" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:573 -#: ../../enterprise/operation/services/services.treeview_services.php:288 -#: ../../godmode/groups/group_list.php:1072 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:676 -#: ../../operation/tree.php:479 +#: ../../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 msgid "Not init agents" msgstr "未初期化エージェント数" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:602 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:614 #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:171 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 -#: ../../operation/tree.php:465 +#: ../../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 msgid "Critical modules" msgstr "障害モジュール" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:613 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:625 #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:168 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:667 -#: ../../operation/tree.php:470 +#: ../../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 msgid "Warning modules" msgstr "警告モジュール" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:624 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:636 #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:294 -#: ../../godmode/groups/group_list.php:1078 ../../mobile/operation/groups.php:165 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:682 -#: ../../operation/tree.php:485 +#: ../../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 msgid "Normal modules" msgstr "正常モジュール" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:635 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:647 #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:159 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:672 -#: ../../operation/tree.php:475 +#: ../../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 msgid "Unknown modules" msgstr "不明モジュール" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:646 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:658 #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:162 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:677 -#: ../../operation/tree.php:480 +#: ../../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 msgid "Not init modules" msgstr "未初期化モジュール" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:672 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 msgid "Total counters" msgstr "全カウンタ" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:675 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:687 msgid "Total Agents" msgstr "全エージェント" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:684 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:696 msgid "Total Modules" msgstr "全モジュール" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:705 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:717 msgid "I.P" msgstr "IP" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:719 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:731 #: ../../include/functions_api.php:176 msgid "No data to show." msgstr "表示するデータがありません。" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:727 +#: ../../enterprise/meta/monitoring/custom_fields_view.php:739 msgid "There are no custom search defined." msgstr "カスタム検索が定義されていません。" -#: ../../enterprise/meta/monitoring/custom_fields_view.php:1156 -#: ../../enterprise/meta/event/custom_events.php:249 -#: ../../godmode/agentes/status_monitor_custom_fields.php:241 -#: ../../godmode/events/custom_events.php:223 +#: ../../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/events/custom_events.php:233 #: ../../include/class/TreeGroupEdition.class.php:164 msgid "Confirm" msgstr "確認" -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 -#: ../../godmode/agentes/configurar_agente.php:866 -#: ../../godmode/agentes/modificar_agente.php:947 -#: ../../include/class/SnmpConsole.class.php:815 -#: ../../operation/agentes/estado_agente.php:964 -#: ../../operation/agentes/estado_agente.php:974 -#: ../../operation/snmpconsole/snmp_statistics.php:193 +#: ../../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 +#: ../../operation/snmpconsole/snmp_statistics.php:195 msgid "Create agent" msgstr "エージェント作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:80 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:78 msgid "Edit agent" msgstr "エージェントの編集" -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:198 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:194 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:280 msgid "Please, set a valid IP/Name address" msgstr "正しい IPアドレス/ホスト名を設定してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:206 +#: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:202 msgid "Please, select a group first" msgstr "最初にグループを選択してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:73 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:71 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:355 msgid "Edit alert" msgstr "アラート編集" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:104 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:648 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:102 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:583 #: ../../godmode/snmpconsole/snmp_alert.php:97 msgid "Create alert" msgstr "アラート作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:211 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:220 #: ../../enterprise/meta/include/functions_wizard_meta.php:3513 #: ../../enterprise/extensions/disabled/check_acls.php:133 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 -#: ../../enterprise/godmode/policies/policy_alerts.php:352 -#: ../../enterprise/godmode/policies/policy_alerts.php:567 -#: ../../enterprise/godmode/policies/policy_linking.php:151 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:371 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:218 +#: ../../enterprise/godmode/policies/policy_alerts.php:366 +#: ../../enterprise/godmode/policies/policy_linking.php:201 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:389 #: ../../enterprise/godmode/services/services.elements.php:93 #: ../../enterprise/godmode/services/services.elements.php:155 -#: ../../enterprise/godmode/services/services.elements.php:277 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:240 +#: ../../enterprise/godmode/services/services.elements.php:279 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:177 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:318 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1412 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2109 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3790 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2098 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3792 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3810 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/include/functions_ui.php:47 -#: ../../enterprise/include/functions_reporting_pdf.php:529 -#: ../../enterprise/include/functions_reporting_pdf.php:537 -#: ../../enterprise/include/functions_reporting_pdf.php:545 -#: ../../enterprise/include/functions_reporting_pdf.php:561 +#: ../../enterprise/include/ajax/policy.ajax.php:410 +#: ../../enterprise/include/functions_reporting_pdf.php:531 +#: ../../enterprise/include/functions_reporting_pdf.php:539 +#: ../../enterprise/include/functions_reporting_pdf.php:547 +#: ../../enterprise/include/functions_reporting_pdf.php:563 #: ../../enterprise/include/functions_reporting_csv.php:498 #: ../../enterprise/include/functions_reporting_csv.php:826 #: ../../enterprise/include/functions_reporting_csv.php:852 @@ -9784,71 +10122,69 @@ msgstr "アラート作成" #: ../../enterprise/include/functions_reporting_csv.php:2367 #: ../../enterprise/include/functions_reporting_csv.php:2515 #: ../../enterprise/include/functions_reporting_csv.php:2787 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 -#: ../../enterprise/include/functions_reporting.php:1855 -#: ../../enterprise/include/functions_reporting.php:2894 -#: ../../enterprise/include/functions_reporting.php:3881 -#: ../../enterprise/include/functions_reporting.php:4905 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:951 +#: ../../enterprise/include/functions_reporting.php:1847 +#: ../../enterprise/include/functions_reporting.php:2912 +#: ../../enterprise/include/functions_reporting.php:3901 +#: ../../enterprise/include/functions_reporting.php:4925 #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 -#: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 -#: ../../godmode/agentes/module_manager_editor_prediction.php:154 -#: ../../godmode/agentes/planned_downtime.list.php:395 -#: ../../godmode/agentes/planned_downtime.editor.php:1293 -#: ../../godmode/agentes/agent_manager.php:529 -#: ../../godmode/agentes/agent_manager.php:601 -#: ../../godmode/agentes/module_manager_editor_common.php:1274 -#: ../../godmode/agentes/module_manager_editor_common.php:1318 +#: ../../enterprise/operation/agentes/policy_view.php:259 +#: ../../extensions/agents_modules.php:513 ../../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/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/alerts/alert_list.list.php:493 -#: ../../godmode/alerts/alert_list.list.php:751 -#: ../../godmode/alerts/alert_view.php:91 -#: ../../godmode/alerts/alert_list.builder.php:70 -#: ../../godmode/reporting/reporting_builder.list_items.php:410 -#: ../../godmode/reporting/create_container.php:410 -#: ../../godmode/reporting/create_container.php:560 -#: ../../godmode/reporting/create_container.php:628 +#: ../../godmode/alerts/alert_list.list.php:566 +#: ../../godmode/alerts/alert_list.list.php:817 +#: ../../godmode/alerts/alert_view.php:97 +#: ../../godmode/alerts/alert_list.builder.php:67 +#: ../../godmode/reporting/reporting_builder.list_items.php:412 +#: ../../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:211 -#: ../../godmode/reporting/reporting_builder.item_editor.php:889 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1194 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1764 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3993 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4533 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:449 -#: ../../godmode/reporting/visual_console_builder.wizard.php:770 -#: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:338 +#: ../../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/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/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 -#: ../../include/functions_reporting_html.php:548 -#: ../../include/functions_reporting_html.php:944 -#: ../../include/functions_reporting_html.php:1928 -#: ../../include/functions_reporting_html.php:2265 -#: ../../include/functions_reporting_html.php:2369 -#: ../../include/functions_reporting_html.php:3354 -#: ../../include/functions_reporting_html.php:3741 -#: ../../include/functions_reporting_html.php:3749 -#: ../../include/functions_reporting_html.php:3758 -#: ../../include/functions_reporting_html.php:3770 -#: ../../include/functions_reporting_html.php:3928 -#: ../../include/functions_reporting_html.php:4056 -#: ../../include/functions_reporting_html.php:4150 -#: ../../include/functions_reporting_html.php:4870 -#: ../../include/functions_reporting_html.php:4918 +#: ../../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/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_inventory.php:881 -#: ../../include/functions_inventory.php:937 -#: ../../include/functions_graph.php:5183 ../../include/functions_treeview.php:64 -#: ../../include/functions_ui.php:6863 +#: ../../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/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 @@ -9859,86 +10195,86 @@ msgstr "アラート作成" #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 #: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 -#: ../../include/functions_reports.php:1351 -#: ../../include/class/AgentsAlerts.class.php:412 -#: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/functions_reporting.php:7229 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 +#: ../../include/functions_reports.php:1363 +#: ../../include/class/AgentsAlerts.class.php:432 +#: ../../include/class/AgentsAlerts.class.php:910 +#: ../../include/functions_reporting.php:7333 +#: ../../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/module_icon.php:373 -#: ../../include/lib/Dashboard/Widgets/module_value.php:348 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:377 +#: ../../include/lib/Dashboard/Widgets/module_value.php:352 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:254 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:323 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:344 -#: ../../include/lib/Dashboard/Widgets/module_status.php:364 +#: ../../include/lib/Dashboard/Widgets/module_status.php:368 #: ../../include/lib/Dashboard/Widgets/single_graph.php:319 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:685 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:736 #: ../../include/lib/Dashboard/Widgets/top_n.php:221 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 +#: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/estado_monitores.php:125 #: ../../operation/agentes/agent_inventory.php:116 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:360 +#: ../../operation/inventory/inventory.php:634 #: ../../operation/search_modules.php:32 msgid "Module" msgstr "モジュール" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 -#: ../../enterprise/godmode/policies/policy_alerts.php:351 -#: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:340 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:222 +#: ../../enterprise/godmode/policies/policy_alerts.php:365 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:351 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1417 -#: ../../enterprise/include/functions_tasklist.php:356 +#: ../../enterprise/include/functions_tasklist.php:357 +#: ../../enterprise/include/ajax/policy.ajax.php:401 #: ../../enterprise/include/functions_reporting_csv.php:2515 -#: ../../enterprise/operation/agentes/policy_view.php:259 -#: ../../godmode/alerts/alert_list.list.php:497 -#: ../../godmode/alerts/alert_view.php:95 -#: ../../godmode/alerts/alert_list.builder.php:140 -#: ../../godmode/reporting/reporting_builder.item_editor.php:215 -#: ../../godmode/reporting/reporting_builder.item_editor.php:894 +#: ../../enterprise/operation/agentes/policy_view.php:260 +#: ../../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:3355 -#: ../../include/functions_reporting_html.php:3358 -#: ../../include/functions_cron.php:693 +#: ../../include/functions_reporting_html.php:3449 +#: ../../include/functions_reporting_html.php:3452 +#: ../../include/functions_cron.php:691 #: ../../include/ajax/alert_list.ajax.php:293 #: ../../include/ajax/alert_list.ajax.php:318 -#: ../../include/functions_treeview.php:412 -#: ../../include/functions_treeview.php:453 -#: ../../include/class/AgentsAlerts.class.php:338 -#: ../../include/class/AgentsAlerts.class.php:964 +#: ../../include/functions_treeview.php:399 +#: ../../include/functions_treeview.php:440 +#: ../../include/class/AgentsAlerts.class.php:359 +#: ../../include/class/AgentsAlerts.class.php:983 #: ../../operation/search_alerts.php:36 msgid "Template" msgstr "テンプレート" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:257 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:354 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:411 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:679 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:750 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:231 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:289 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:346 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:614 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:685 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:229 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 #: ../../enterprise/meta/include/ajax/wizard.ajax.php:748 #: ../../enterprise/meta/general/header.php:125 #: ../../enterprise/meta/general/main_header.php:558 -#: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:687 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 -#: ../../enterprise/godmode/services/services.service.php:906 -#: ../../enterprise/godmode/services/services.service.php:918 -#: ../../enterprise/godmode/services/services.service.php:930 -#: ../../enterprise/godmode/services/services.service.php:942 -#: ../../enterprise/operation/services/massive/services.create.php:926 -#: ../../enterprise/operation/services/massive/services.create.php:938 -#: ../../enterprise/operation/services/massive/services.create.php:950 -#: ../../enterprise/operation/services/massive/services.create.php:962 -#: ../../extensions/insert_data.php:186 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:160 +#: ../../enterprise/godmode/services/services.service.php:901 +#: ../../enterprise/godmode/services/services.service.php:913 +#: ../../enterprise/godmode/services/services.service.php:925 +#: ../../enterprise/godmode/services/services.service.php:937 +#: ../../enterprise/include/ajax/policy.ajax.php:201 +#: ../../enterprise/include/ajax/policy.ajax.php:269 +#: ../../enterprise/operation/services/massive/services.create.php:922 +#: ../../enterprise/operation/services/massive/services.create.php:934 +#: ../../enterprise/operation/services/massive/services.create.php:946 +#: ../../enterprise/operation/services/massive/services.create.php:958 +#: ../../extensions/insert_data.php:218 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:165 #: ../../godmode/massive/massive_copy_modules.php:138 #: ../../godmode/massive/massive_delete_modules.php:334 #: ../../godmode/massive/massive_delete_modules.php:469 @@ -9946,57 +10282,57 @@ msgstr "テンプレート" #: ../../godmode/massive/massive_delete_alerts.php:278 #: ../../godmode/massive/massive_edit_modules.php:318 #: ../../godmode/massive/massive_edit_modules.php:431 -#: ../../godmode/alerts/alert_list.builder.php:82 -#: ../../godmode/alerts/alert_list.builder.php:156 -#: ../../godmode/setup/setup_integria.php:367 -#: ../../godmode/setup/setup_integria.php:385 -#: ../../godmode/setup/setup_integria.php:414 +#: ../../godmode/alerts/alert_list.builder.php:73 +#: ../../godmode/alerts/alert_list.builder.php:157 #: ../../godmode/setup/setup_integria.php:432 -#: ../../godmode/setup/setup_integria.php:489 -#: ../../godmode/setup/setup_integria.php:507 -#: ../../godmode/setup/setup_integria.php:536 -#: ../../godmode/setup/setup_integria.php:554 -#: ../../include/functions_reports.php:1358 -#: ../../include/class/AgentsAlerts.class.php:354 -#: ../../operation/incidents/configure_integriaims_incident.php:240 -#: ../../operation/incidents/configure_integriaims_incident.php:256 -#: ../../operation/incidents/configure_integriaims_incident.php:302 -#: ../../general/header.php:265 +#: ../../godmode/setup/setup_integria.php:450 +#: ../../godmode/setup/setup_integria.php:485 +#: ../../godmode/setup/setup_integria.php:505 +#: ../../godmode/setup/setup_integria.php:566 +#: ../../godmode/setup/setup_integria.php:584 +#: ../../godmode/setup/setup_integria.php:619 +#: ../../godmode/setup/setup_integria.php:639 +#: ../../include/functions_reports.php:1370 +#: ../../include/class/AgentsAlerts.class.php:365 +#: ../../operation/incidents/configure_integriaims_incident.php:257 +#: ../../operation/incidents/configure_integriaims_incident.php:293 +#: ../../operation/incidents/configure_integriaims_incident.php:311 +#: ../../general/header.php:272 msgid "Select" msgstr "選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:248 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:246 msgid "Create new template" msgstr "新規テンプレートの作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:263 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:441 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:548 -#: ../../godmode/alerts/configure_alert_template.php:758 -#: ../../godmode/alerts/alert_list.builder.php:117 -#: ../../include/class/AgentsAlerts.class.php:304 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:261 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:496 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:609 +#: ../../godmode/alerts/configure_alert_template.php:721 +#: ../../godmode/alerts/alert_list.builder.php:118 +#: ../../include/class/AgentsAlerts.class.php:308 msgid "Default action" msgstr "通常のアクション" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:278 msgid "Create new action" msgstr "新規アクションの作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:290 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2342 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2554 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3389 -#: ../../godmode/alerts/alert_list.list.php:665 -#: ../../godmode/alerts/alert_list.list.php:791 -#: ../../godmode/alerts/configure_alert_action.php:284 -#: ../../godmode/alerts/alert_view.php:361 -#: ../../godmode/alerts/alert_list.builder.php:173 -#: ../../include/functions_reporting_html.php:3616 -#: ../../include/functions_reporting_html.php:5406 +#: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:288 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2375 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2586 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3458 +#: ../../godmode/alerts/alert_list.list.php:737 +#: ../../godmode/alerts/alert_list.list.php:871 +#: ../../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/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 -#: ../../include/class/AgentsAlerts.class.php:385 -#: ../../include/class/AgentWizard.class.php:1282 +#: ../../include/class/AgentsAlerts.class.php:398 +#: ../../include/class/AgentWizard.class.php:1285 msgid "Threshold" msgstr "しきい値" @@ -10008,19 +10344,20 @@ msgstr "拡張設定" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:122 #: ../../enterprise/meta/monitoring/wizard/wizard.create_agent.php:40 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:327 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:262 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:135 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../operation/snmpconsole/snmp_browser.php:637 +#: ../../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 msgid "Create module" msgstr "モジュールの作成" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:126 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:142 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:117 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:39 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:37 #: ../../enterprise/godmode/policies/policy_modules.php:381 msgid "Edit module" msgstr "モジュールの編集" @@ -10029,10 +10366,10 @@ msgstr "モジュールの編集" #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:195 #: ../../enterprise/meta/monitoring/wizard/wizard.update_agent.php:46 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:147 -#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:92 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:131 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:155 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:207 +#: ../../enterprise/meta/monitoring/wizard/wizard.update_module.php:90 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:129 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:160 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:212 #, php-format msgid "Cannot connect to %s instance." msgstr "%s インスタンスに接続できません。" @@ -10043,38 +10380,49 @@ msgstr "%s インスタンスに接続できません。" msgid "Invalid characters founded in module name" msgstr "モジュール名に不正な文字があります" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 -#: ../../godmode/agentes/configurar_agente.php:843 -#: ../../godmode/agentes/configurar_agente.php:865 -#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:94 -#: ../../godmode/servers/modificar_server.php:140 -msgid "Manage agents" -msgstr "エージェント管理" +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:59 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:47 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:56 +#: ../../enterprise/meta/general/main_header.php:134 +#: ../../enterprise/meta/general/logon_ok.php:55 +#: ../../enterprise/meta/general/main_menu.php:249 +#: ../../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 +#: ../../operation/visual_console/legacy_view.php:171 +msgid "Wizard" +msgstr "設定追加" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:276 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:372 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:706 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:267 +msgid "Manage modules" +msgstr "モジュール管理" + +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:307 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:373 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:641 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:720 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:407 -#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1908 +#: ../../godmode/events/event_edit_filter.php:447 +#: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1946 msgid "Agent search" msgstr "エージェント" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:283 -msgid "Select the agent to be edited or deleted" -msgstr "編集または削除するエージェントを選択" +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:313 +msgid "Select the agent where the module will be created" +msgstr "モジュールを作成するエージェントを選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:292 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:388 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:458 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:727 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:809 -#: ../../godmode/groups/configure_group.php:272 -#: ../../godmode/snmpconsole/snmp_alert.php:1138 -#: ../../godmode/alerts/configure_alert_action.php:395 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:323 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:393 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:662 +#: ../../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 @@ -10085,76 +10433,69 @@ msgstr "編集または削除するエージェントを選択" msgid "Back" msgstr "戻る" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:332 -msgid "Manage modules" -msgstr "モジュール管理" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:378 -msgid "Select the agent where the module will be created" -msgstr "モジュールを作成するエージェントを選択" - -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:391 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:326 +#: ../../godmode/agentes/module_manager.php:1146 msgid "Create Module" msgstr "モジュールの作成" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:448 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:383 msgid "Select the module to be edited or deleted" msgstr "編集または削除するモジュールの選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:503 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:543 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:438 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:478 msgid "Error creating alert" msgstr "アラート作成エラー" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:507 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:442 msgid "Alert could not be created" msgstr "アラートの作成ができませんでした" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:527 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:462 msgid "Perform create alert" msgstr "アラート作成の実行" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:531 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:466 msgid "Alert created correctly" msgstr "アラートを作成しました" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:547 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:482 msgid "Alert template must be setted" msgstr "アラートテンプレートを設定する必要があります" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:586 -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:619 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:521 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:554 msgid "Error updating alert" msgstr "アラート更新エラー" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:590 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:525 msgid "Something gone wrong with alert update" msgstr "アラート更新で何らかの問題が発生しました" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:601 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:536 msgid "Perform update alert" msgstr "アラート更新の実行" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:605 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:540 msgid "Alert updated correctly" msgstr "アラートを濃い更新しました" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:623 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:558 msgid "Template must be set." msgstr "テンプレートを設定する必要があります" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 -#: ../../godmode/users/configure_profile.php:291 -#: ../../godmode/alerts/alert_list.php:519 -#: ../../godmode/alerts/alert_list.php:521 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:588 +#: ../../godmode/users/configure_profile.php:302 +#: ../../godmode/alerts/alert_list.php:513 +#: ../../godmode/alerts/alert_list.php:532 msgid "Manage alerts" msgstr "アラート管理" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:716 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:651 msgid "Select the module where the alert will be created" msgstr "アラートを作成するモジュールの選択" -#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:798 +#: ../../enterprise/meta/monitoring/wizard/wizard.main.php:733 msgid "Select the alert to be edited or deleted" msgstr "編集または削除するアラートの選択" @@ -10166,207 +10507,235 @@ msgstr "名前を設定してください" msgid "Please, set an interval" msgstr "間隔を設定してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../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 msgid "Module type" msgstr "モジュールタイプ" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5325 -#: ../../include/functions_reporting_html.php:5479 +#: ../../include/functions_reporting_html.php:5412 +#: ../../include/functions_reporting_html.php:5566 msgid "Monitor" msgstr "モニタ項目" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:146 msgid "Web check" msgstr "ウェブチェック" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:155 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:153 #: ../../enterprise/godmode/modules/configure_local_component.php:261 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2068 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2057 #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../enterprise/operation/agentes/tag_view.php:156 -#: ../../enterprise/operation/agentes/ver_agente.php:35 -#: ../../extensions/agents_modules.php:410 +#: ../../enterprise/operation/agentes/tag_view.php:174 +#: ../../enterprise/operation/agentes/ver_agente.php:53 +#: ../../extensions/agents_modules.php:448 #: ../../godmode/modules/manage_network_components_form_common.php:111 -#: ../../godmode/agentes/module_manager_editor_common.php:265 -#: ../../godmode/massive/massive_edit_modules.php:889 -#: ../../godmode/reporting/create_container.php:540 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1692 +#: ../../godmode/agentes/module_manager_editor_common.php:292 +#: ../../godmode/massive/massive_edit_modules.php:904 +#: ../../godmode/reporting/create_container.php:640 +#: ../../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:1717 -#: ../../include/ajax/heatmap.ajax.php:191 -#: ../../include/ajax/heatmap.ajax.php:255 -#: ../../include/ajax/heatmap.ajax.php:294 ../../include/functions_graph.php:5099 -#: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 -#: ../../include/functions_events.php:4281 ../../operation/heatmap.php:100 -#: ../../operation/heatmap.php:102 ../../operation/agentes/status_monitor.php:517 -#: ../../operation/agentes/estado_monitores.php:552 +#: ../../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 +#: ../../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 #: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "モジュールグループ" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:245 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:243 msgid "Module description" msgstr "モジュールの説明" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:267 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:265 msgid "Step by step wizard" msgstr "段階的ウィザード" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:268 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:266 #: ../../enterprise/meta/general/main_header.php:309 #: ../../enterprise/meta/general/main_header.php:391 #: ../../enterprise/godmode/modules/configure_local_component.php:167 -#: ../../enterprise/godmode/agentes/plugins_manager.php:126 +#: ../../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:1450 -#: ../../godmode/netflow/nf_edit_form.php:237 +#: ../../godmode/users/configure_user.php:1406 +#: ../../godmode/netflow/nf_edit_form.php:251 #: ../../godmode/alerts/alert_commands.php:159 #: ../../godmode/alerts/alert_commands.php:196 -#: ../../godmode/alerts/configure_alert_template.php:946 -#: ../../godmode/alerts/configure_alert_template.php:987 -#: ../../godmode/alerts/configure_alert_template.php:1138 -#: ../../operation/netflow/nf_live_view.php:490 +#: ../../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 msgid "Advanced" msgstr "拡張" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:275 -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:280 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:273 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:278 msgid "Click Create to continue" msgstr "続けるには作成をクリックします" -#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:384 -#: ../../enterprise/meta/monitoring/wizard/wizard.php:145 -#: ../../godmode/reporting/graph_builder.graph_editor.php:367 +#: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:380 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:150 +#: ../../godmode/reporting/graph_builder.graph_editor.php:423 msgid "Please, select a module" msgstr "モジュールを選択してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:133 -#: ../../enterprise/godmode/wizards/Cloud.class.php:579 -#: ../../enterprise/include/class/VMware.app.php:864 -#: ../../enterprise/include/class/Omnishell.class.php:854 -#: ../../enterprise/include/class/DB2.app.php:841 -#: ../../enterprise/include/class/SAP.app.php:803 -#: ../../enterprise/include/class/Aws.cloud.php:1424 -#: ../../enterprise/include/class/MySQL.app.php:909 -#: ../../enterprise/include/class/Oracle.app.php:950 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:794 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2182 -#: ../../godmode/alerts/configure_alert_template.php:1171 -#: ../../godmode/wizards/HostDevices.class.php:1593 -#: ../../include/class/CustomNetScan.class.php:726 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 +#: ../../enterprise/godmode/wizards/Cloud.class.php:589 +#: ../../enterprise/include/class/VMware.app.php:1015 +#: ../../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/Aws.cloud.php:1467 +#: ../../enterprise/include/class/MySQL.app.php:938 +#: ../../enterprise/include/class/Oracle.app.php:970 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:829 +#: ../../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 msgid "Finish" msgstr "終了" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:134 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 msgid "The alert you are trying to add is already in the list of alerts" msgstr "追加しようとしているアラートは、アラート一覧にすでにあります。" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:135 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:140 #: ../../enterprise/meta/include/ajax/wizard.ajax.php:615 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:124 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:140 msgid "No description available" msgstr "説明なし" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:138 -#: ../../enterprise/operation/agentes/policy_view.php:184 -#: ../../enterprise/operation/agentes/policy_view.php:277 -#: ../../enterprise/operation/agentes/policy_view.php:570 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:143 +#: ../../enterprise/operation/agentes/policy_view.php:185 +#: ../../enterprise/operation/agentes/policy_view.php:278 +#: ../../enterprise/operation/agentes/policy_view.php:569 #: ../../godmode/modules/manage_network_components_form_plugin.php:54 #: ../../godmode/modules/manage_network_components_form_wmi.php:60 -#: ../../godmode/alerts/configure_alert_template.php:1288 -#: ../../godmode/alerts/alert_list.builder.php:293 -#: ../../include/functions.php:2758 -#: ../../include/class/AgentWizard.class.php:2626 +#: ../../godmode/alerts/configure_alert_template.php:1338 +#: ../../godmode/alerts/alert_list.builder.php:329 +#: ../../include/functions.php:2768 +#: ../../include/class/AgentWizard.class.php:2629 msgid "Empty" msgstr "空" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -#: ../../include/functions_events.php:3127 -#: ../../include/functions_events.php:3398 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 +#: ../../enterprise/godmode/agentes/collections.data.php:74 +#: ../../enterprise/godmode/agentes/collections.data.php:189 +#: ../../enterprise/godmode/agentes/collections.data.php:217 +#: ../../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 msgid "New" msgstr "新規" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:144 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 msgid "" "Are you sure? If the agent is on a policy, it will be removed from the policy." msgstr "" "よろしいですか? エージェントがポリシーにある場合はポリシーから削除されます。" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:146 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:151 msgid "Please, select an alert" msgstr "アラートを選択してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:147 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 msgid "Please, select an agent" msgstr "エージェントを選択してください" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:149 -#: ../../enterprise/godmode/policies/policy_modules.php:1641 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 +#: ../../enterprise/godmode/policies/policy_modules.php:1764 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:195 -#: ../../enterprise/include/class/CommandCenter.class.php:463 -#: ../../enterprise/operation/log/log_viewer.php:846 -#: ../../enterprise/operation/log/log_viewer.php:868 +#: ../../enterprise/include/class/CommandCenter.class.php:465 +#: ../../enterprise/operation/log/log_viewer.php:1051 +#: ../../enterprise/operation/log/log_viewer.php:1073 +#: ../../enterprise/operation/services/services.treeview_services.php:197 +#: ../../godmode/groups/group_list.php:744 #: ../../godmode/massive/massive_copy_modules.php:235 -#: ../../godmode/massive/massive_operations.php:344 +#: ../../godmode/massive/massive_operations.php:384 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/functions_events.php:4129 -#: ../../operation/reporting/reporting_viewer.php:347 -#: ../../operation/reporting/graph_viewer.php:384 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:602 +#: ../../include/functions_events.php:4282 ../../operation/tree.php:374 +#: ../../operation/reporting/reporting_viewer.php:340 +#: ../../operation/reporting/graph_viewer.php:430 #: ../../general/ui/agents_list.php:146 msgid "Loading" msgstr "読み込み中" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:151 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7366 +#: ../../godmode/tag/edit_tag.php:212 +#: ../../include/class/TipsWindow.class.php:726 +#: ../../include/class/TipsWindow.class.php:893 +#: ../../include/functions_reporting.php:7470 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:152 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:157 #: ../../godmode/modules/manage_network_components_form_wizard.php:393 #: ../../godmode/modules/manage_network_components_form_wizard.php:441 -#: ../../include/functions_reports.php:1087 -#: ../../include/functions_reports.php:1217 +#: ../../include/functions_reports.php:1099 +#: ../../include/functions_reports.php:1229 msgid "String" msgstr "文字列" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:153 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:158 msgid "No agent name specified" msgstr "エージェント名が定義されていません。" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:154 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:159 msgid "Another agent already exists with the same name" msgstr "他のエージェントがすでに同じ名前で存在します" -#: ../../enterprise/meta/monitoring/wizard/wizard.php:156 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:474 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:477 -#: ../../godmode/agentes/module_manager_editor_common.php:642 -#: ../../godmode/agentes/module_manager_editor_common.php:644 +#: ../../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 #, php-format msgid "Agent interval x %s" msgstr "エージェント実行間隔 x %s" -#: ../../enterprise/meta/monitoring/group_view.php:55 +#: ../../enterprise/meta/monitoring/wizard/wizard.php:365 +msgid "" +"This feature will be removed in version 771 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 "" +"この機能はバージョン 771 で削除され、\n" +" 別のメタコンソールツール (一括操作、エージェントアラート編" +"集など) に移ります。\n" +" ウィザードの現在の機能は最小限で利用はお勧めしません。" + +#: ../../enterprise/meta/monitoring/group_view.php:59 msgid "Group View" msgstr "グループ表示" -#: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/groups/group_list.php:326 -#: ../../godmode/users/configure_user.php:1351 -#: ../../godmode/massive/massive_edit_users.php:277 -#: ../../operation/users/user_edit.php:436 -#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:50 +#: ../../enterprise/meta/monitoring/group_view.php:64 +#: ../../godmode/groups/group_list.php:324 +#: ../../godmode/users/user_management.php:40 +#: ../../godmode/massive/massive_edit_users.php:276 +#: ../../operation/users/user_edit.php:471 +#: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:176 msgid "Group view" msgstr "グループ" @@ -10411,53 +10780,53 @@ msgstr "不明状態モジュール%" msgid "% Monitors Not init" msgstr "未初期化モジュール%" -#: ../../enterprise/meta/monitoring/group_view.php:205 -#: ../../godmode/agentes/modificar_agente.php:939 -#: ../../operation/agentes/estado_agente.php:971 -#: ../../operation/agentes/group_view.php:577 +#: ../../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 msgid "There are no defined agents" msgstr "定義されたエージェントがありません" -#: ../../enterprise/meta/monitoring/group_view.php:217 -#: ../../enterprise/meta/monitoring/group_view.php:223 +#: ../../enterprise/meta/monitoring/group_view.php:214 +#: ../../enterprise/meta/monitoring/group_view.php:220 msgid "This data doesn't show in realtime" msgstr "このデータはリアルタイムでは表示されません" -#: ../../enterprise/meta/monitoring/group_view.php:234 +#: ../../enterprise/meta/monitoring/group_view.php:231 msgid "Group or Tag" msgstr "グループまたはタグ" -#: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../godmode/groups/group_list.php:1049 -#: ../../include/functions_reporting_html.php:2472 -#: ../../include/functions_reporting_html.php:2482 +#: ../../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:653 -#: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:699 +#: ../../operation/tree.php:503 ../../operation/agentes/group_view.php:241 #: ../../operation/agentes/agent_inventory.php:266 msgid "Total" msgstr "合計" -#: ../../enterprise/meta/monitoring/group_view.php:247 -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../godmode/alerts/alert_list.list.php:573 -#: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 -#: ../../include/functions.php:1274 ../../include/functions_agents.php:2942 -#: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 -#: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/class/SnmpConsole.class.php:875 -#: ../../include/functions_reporting.php:12953 -#: ../../include/functions_events.php:2801 -#: ../../include/functions_events.php:3001 -#: ../../operation/agentes/group_view.php:234 +#: ../../enterprise/meta/monitoring/group_view.php:244 +#: ../../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.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 msgid "Alert fired" msgstr "発生中アラート" -#: ../../enterprise/meta/monitoring/group_view.php:359 -#: ../../operation/agentes/group_view.php:320 +#: ../../enterprise/meta/monitoring/group_view.php:367 +#: ../../operation/agentes/group_view.php:343 #, php-format msgid "" "This %s installation are using the secondary groups feature. For this reason, " @@ -10466,50 +10835,51 @@ msgstr "" "この %s インストールはセカンダリグループ機能を使用しています。 このため、エー" "ジェントは数回カウントされる可能性があります。" -#: ../../enterprise/meta/monitoring/tactical.php:42 +#: ../../enterprise/meta/monitoring/tactical.php:46 +#: ../../enterprise/meta/general/main_header.php:103 +#: ../../enterprise/meta/general/main_menu.php:205 +#: ../../godmode/users/user_management.php:41 +#: ../../godmode/massive/massive_edit_users.php:277 +#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 +#: ../../include/lib/Dashboard/Widgets/tactical.php:176 +#: ../../include/lib/Dashboard/Widgets/tactical.php:533 +#: ../../operation/users/user_edit.php:472 +#: ../../operation/agentes/tactical.php:72 ../../operation/menu.php:173 +msgid "Tactical view" +msgstr "モニタリング概要" + +#: ../../enterprise/meta/monitoring/tactical.php:59 #: ../../include/class/OrderInterpreter.class.php:105 msgid "Tactical View" msgstr "モニタ状態表示" -#: ../../enterprise/meta/monitoring/tactical.php:63 -#: ../../enterprise/meta/general/main_header.php:103 -#: ../../enterprise/meta/general/main_menu.php:202 -#: ../../godmode/users/configure_user.php:1352 -#: ../../godmode/massive/massive_edit_users.php:278 -#: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 -#: ../../include/lib/Dashboard/Widgets/tactical.php:176 -#: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:437 -#: ../../operation/agentes/tactical.php:70 ../../operation/menu.php:47 -msgid "Tactical view" -msgstr "モニタリング概要" - -#: ../../enterprise/meta/monitoring/tactical.php:234 +#: ../../enterprise/meta/monitoring/tactical.php:233 msgid "Report of state" msgstr "状態レポート" -#: ../../enterprise/meta/monitoring/tactical.php:272 +#: ../../enterprise/meta/monitoring/tactical.php:271 #: ../../enterprise/meta/general/main_header.php:154 -#: ../../enterprise/meta/general/logon_ok.php:57 -#: ../../enterprise/meta/general/main_menu.php:267 -#: ../../enterprise/include/class/CommandCenter.class.php:1078 -#: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:243 -#: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 +#: ../../enterprise/meta/general/logon_ok.php:64 +#: ../../enterprise/meta/general/main_menu.php:270 +#: ../../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 +#: ../../godmode/events/events.php:142 ../../mobile/include/functions_web.php:25 #: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4145 ../../include/ajax/events.php:2134 -#: ../../include/functions_reports.php:864 -#: ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../operation/menu.php:387 -#: ../../operation/events/events.php:1558 ../../operation/events/events.php:1566 +#: ../../include/functions.php:4167 ../../include/ajax/events.php:2219 +#: ../../include/functions_reports.php:876 +#: ../../include/functions_reports.php:880 +#: ../../include/functions_reports.php:884 ../../operation/menu.php:518 +#: ../../operation/events/events.php:1613 msgid "Events" msgstr "イベント" -#: ../../enterprise/meta/monitoring/tactical.php:278 +#: ../../enterprise/meta/monitoring/tactical.php:277 msgid "Report of events" msgstr "イベントレポート" -#: ../../enterprise/meta/monitoring/tactical.php:288 +#: ../../enterprise/meta/monitoring/tactical.php:287 msgid "Info of state in events" msgstr "イベントの状態" @@ -10517,113 +10887,108 @@ msgstr "イベントの状態" msgid "More events" msgstr "イベント追加" -#: ../../enterprise/meta/event/custom_events.php:38 -#: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:393 +#: ../../enterprise/meta/event/custom_events.php:36 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:273 +#: ../../godmode/users/configure_profile.php:309 ../../operation/menu.php:524 msgid "View events" msgstr "イベント参照" -#: ../../enterprise/meta/event/custom_events.php:44 -#: ../../godmode/netflow/nf_edit.php:217 -#: ../../godmode/netflow/nf_edit_form.php:190 +#: ../../enterprise/meta/event/custom_events.php:42 +#: ../../godmode/netflow/nf_edit.php:211 +#: ../../godmode/netflow/nf_edit_form.php:69 #: ../../godmode/snmpconsole/snmp_filters.php:37 -#: ../../godmode/events/event_filter.php:225 +#: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 msgid "Create filter" msgstr "フィルタの作成" -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:238 -#: ../../godmode/events/events.php:68 +#: ../../enterprise/meta/event/custom_events.php:48 ../../godmode/menu.php:241 +#: ../../godmode/events/events.php:83 msgid "Event responses" msgstr "イベント応答" -#: ../../enterprise/meta/event/custom_events.php:56 -#: ../../enterprise/meta/event/custom_events.php:61 -#: ../../enterprise/meta/event/custom_events.php:74 -#: ../../enterprise/meta/event/custom_events.php:92 -#: ../../godmode/agentes/agent_manager.php:945 -#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:100 +#: ../../enterprise/meta/event/custom_events.php:54 +#: ../../enterprise/meta/event/custom_events.php:59 +#: ../../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/reporting/reporting_builder.item_editor.php:76 -#: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_events.php:4243 -#: ../../operation/agentes/status_monitor.php:62 -#: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1574 +#: ../../include/functions_reporting_html.php:1620 +#: ../../include/functions_events.php:4440 +#: ../../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 msgid "Custom fields" msgstr "カスタムフィールド" -#: ../../enterprise/meta/event/custom_events.php:69 -#: ../../enterprise/meta/event/custom_events.php:88 -#: ../../enterprise/meta/general/main_header.php:291 -#: ../../enterprise/meta/general/main_menu.php:442 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2889 -#: ../../godmode/reporting/reporting_builder.list_items.php:222 -#: ../../godmode/events/events.php:90 ../../godmode/events/events.php:109 -msgid "Filters" -msgstr "フィルタ" - -#: ../../enterprise/meta/event/custom_events.php:79 -#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1717 +#: ../../enterprise/meta/event/custom_events.php:77 +#: ../../godmode/events/events.php:115 ../../include/ajax/events.php:1790 msgid "Responses" msgstr "応答" -#: ../../enterprise/meta/event/custom_events.php:98 +#: ../../enterprise/meta/event/custom_events.php:96 msgid "The user is not in neither group with EW profile" msgstr "ユーザは EW 権限のあるグループに含まれていません" -#: ../../enterprise/meta/event/custom_events.php:160 -#: ../../enterprise/include/ajax/log_viewer.ajax.php:75 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1252 +#: ../../enterprise/meta/event/custom_events.php:158 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:83 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1274 msgid "Fields" msgstr "フィールド" -#: ../../enterprise/meta/event/custom_events.php:175 -#: ../../godmode/agentes/status_monitor_custom_fields.php:164 -#: ../../godmode/events/custom_events.php:129 +#: ../../enterprise/meta/event/custom_events.php:173 +#: ../../godmode/agentes/status_monitor_custom_fields.php:168 +#: ../../godmode/events/custom_events.php:127 msgid "Fields available" msgstr "存在するフィールド" -#: ../../enterprise/meta/event/custom_events.php:177 -#: ../../godmode/agentes/status_monitor_custom_fields.php:186 -#: ../../godmode/events/custom_events.php:149 +#: ../../enterprise/meta/event/custom_events.php:175 +#: ../../godmode/agentes/status_monitor_custom_fields.php:190 +#: ../../godmode/events/custom_events.php:150 msgid "Fields selected" msgstr "選択されているフィールド" -#: ../../enterprise/meta/event/custom_events.php:187 -#: ../../godmode/agentes/status_monitor_custom_fields.php:171 -#: ../../godmode/events/custom_events.php:136 +#: ../../enterprise/meta/event/custom_events.php:185 +#: ../../godmode/agentes/status_monitor_custom_fields.php:175 +#: ../../godmode/events/custom_events.php:134 msgid "Add fields to select" msgstr "フィールドを選択に加える" -#: ../../enterprise/meta/event/custom_events.php:197 -#: ../../godmode/agentes/status_monitor_custom_fields.php:180 +#: ../../enterprise/meta/event/custom_events.php:195 +#: ../../godmode/agentes/status_monitor_custom_fields.php:184 #: ../../godmode/events/custom_events.php:144 msgid "Delete fields to select" msgstr "フィールドを選択から削除する" -#: ../../enterprise/meta/event/custom_events.php:207 +#: ../../enterprise/meta/event/custom_events.php:205 #: ../../godmode/events/custom_events.php:74 msgid "Show event fields" msgstr "イベントフィールド表示" -#: ../../enterprise/meta/event/custom_events.php:248 -#: ../../godmode/agentes/status_monitor_custom_fields.php:240 -#: ../../godmode/events/custom_events.php:222 +#: ../../enterprise/meta/event/custom_events.php:244 +#: ../../godmode/agentes/status_monitor_custom_fields.php:252 +#: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" "少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定" "されます。" -#: ../../enterprise/meta/include/functions_autoprovision.php:378 +#: ../../enterprise/meta/include/functions_autoprovision.php:391 msgid "Round Robin" msgstr "ラウンドロビン" -#: ../../enterprise/meta/include/functions_autoprovision.php:383 +#: ../../enterprise/meta/include/functions_autoprovision.php:396 msgid "Less loaded" msgstr "低負荷" -#: ../../enterprise/meta/include/functions_autoprovision.php:422 +#: ../../enterprise/meta/include/functions_autoprovision.php:435 msgid "" "It uses the Round-robin planning method to distribute, \n" " in an equitable way and in a rational order, all the new " @@ -10638,12 +11003,12 @@ msgstr "" "るサーバに割り当てられます。\n" " " -#: ../../enterprise/meta/include/functions_autoprovision.php:430 +#: ../../enterprise/meta/include/functions_autoprovision.php:443 msgid "" "The new agents will be dynamically assigned to those servers with less load." msgstr "新しいエージェントは、負荷の少ないサーバに動的に割り当てられます。" -#: ../../enterprise/meta/include/functions_autoprovision.php:435 +#: ../../enterprise/meta/include/functions_autoprovision.php:448 msgid "" "In the customized classification, we will be able to define our own " "classification rules, \n" @@ -10656,19 +11021,19 @@ msgstr "" "ス)に基づきます。\n" " " -#: ../../enterprise/meta/include/functions_autoprovision.php:473 -#: ../../enterprise/meta/include/functions_autoprovision.php:640 +#: ../../enterprise/meta/include/functions_autoprovision.php:494 +#: ../../enterprise/meta/include/functions_autoprovision.php:697 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 -#: ../../enterprise/include/functions_ipam.php:1651 -#: ../../godmode/reporting/reporting_builder.list_items.php:440 -#: ../../godmode/reporting/reporting_builder.list_items.php:740 +#: ../../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:318 +#: ../../godmode/reporting/graph_builder.graph_editor.php:354 msgid "Sort" msgstr "並べ替え" -#: ../../enterprise/meta/include/functions_autoprovision.php:529 +#: ../../enterprise/meta/include/functions_autoprovision.php:552 msgid "" "There is no custom entries defined. Click on \"Create custom entry\" to add " "the first." @@ -10676,19 +11041,19 @@ msgstr "" "カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックし" "て、最初のエントリを追加します。" -#: ../../enterprise/meta/include/functions_autoprovision.php:534 +#: ../../enterprise/meta/include/functions_autoprovision.php:557 msgid "Create custom entry" msgstr "カスタムエントリの作成" -#: ../../enterprise/meta/include/functions_autoprovision.php:561 +#: ../../enterprise/meta/include/functions_autoprovision.php:599 msgid "Provisioning configuration" msgstr "設定プロビジョニング" -#: ../../enterprise/meta/include/functions_autoprovision.php:572 +#: ../../enterprise/meta/include/functions_autoprovision.php:613 msgid "Configuration:" msgstr "設定:" -#: ../../enterprise/meta/include/functions_autoprovision.php:610 +#: ../../enterprise/meta/include/functions_autoprovision.php:668 msgid "" "There is no rules configured for this custom entry. Click on Add button to " "create the first." @@ -10696,36 +11061,36 @@ msgstr "" "このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリッ" "クして作成します。" -#: ../../enterprise/meta/include/functions_autoprovision.php:642 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:495 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:272 -#: ../../extensions/quick_shell.php:190 +#: ../../enterprise/meta/include/functions_autoprovision.php:699 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:502 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:313 +#: ../../extensions/quick_shell.php:192 msgid "Method" msgstr "方法" -#: ../../enterprise/meta/include/functions_autoprovision.php:723 +#: ../../enterprise/meta/include/functions_autoprovision.php:786 msgid "There was an error when editing the rule." msgstr "ルール編集中にエラーが発生しました。" -#: ../../enterprise/meta/include/functions_autoprovision.php:737 +#: ../../enterprise/meta/include/functions_autoprovision.php:799 msgid "Operation:" msgstr "操作:" -#: ../../enterprise/meta/include/functions_autoprovision.php:751 +#: ../../enterprise/meta/include/functions_autoprovision.php:815 msgid "Method:" msgstr "方法:" -#: ../../enterprise/meta/include/functions_autoprovision.php:765 +#: ../../enterprise/meta/include/functions_autoprovision.php:831 #: ../../enterprise/include/functions_visual_map.php:215 #: ../../enterprise/include/functions_visual_map.php:280 msgid "Value:" msgstr "値:" -#: ../../enterprise/meta/include/functions_autoprovision.php:816 +#: ../../enterprise/meta/include/functions_autoprovision.php:903 msgid "Move up" msgstr "上へ" -#: ../../enterprise/meta/include/functions_autoprovision.php:824 +#: ../../enterprise/meta/include/functions_autoprovision.php:916 msgid "Move down" msgstr "下へ" @@ -10748,37 +11113,35 @@ msgstr "名前重複エラー" #: ../../enterprise/meta/general/main_header.php:321 #: ../../enterprise/meta/general/main_header.php:401 #: ../../enterprise/meta/general/main_header.php:408 -#: ../../enterprise/meta/general/main_menu.php:503 -#: ../../enterprise/meta/general/main_menu.php:567 -#: ../../enterprise/meta/general/main_menu.php:590 -#: ../../enterprise/meta/general/main_menu.php:597 -#: ../../godmode/users/profile_list.php:63 -#: ../../godmode/users/profile_list.php:84 -#: ../../godmode/users/configure_profile.php:55 -#: ../../godmode/users/configure_profile.php:76 -#: ../../godmode/users/user_list.php:253 ../../godmode/users/user_list.php:278 -#: ../../godmode/users/user_list.php:289 -#: ../../godmode/users/configure_user.php:287 -#: ../../operation/users/user_edit_header.php:91 +#: ../../enterprise/meta/general/main_menu.php:556 +#: ../../enterprise/meta/general/main_menu.php:621 +#: ../../enterprise/meta/general/main_menu.php:645 +#: ../../enterprise/meta/general/main_menu.php:652 +#: ../../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 +#: ../../operation/users/user_edit_header.php:89 msgid "User management" msgstr "ユーザ管理" #: ../../enterprise/meta/include/functions_users_meta.php:187 #: ../../enterprise/meta/include/functions_users_meta.php:214 -#: ../../godmode/users/profile_list.php:74 -#: ../../godmode/users/configure_profile.php:66 -#: ../../godmode/users/user_list.php:264 -#: ../../godmode/users/configure_user.php:298 ../../godmode/menu.php:156 +#: ../../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 msgid "Profile management" msgstr "プロファイル管理" #: ../../enterprise/meta/include/functions_users_meta.php:195 #: ../../enterprise/meta/include/functions_users_meta.php:210 -#: ../../enterprise/meta/general/header.php:211 -#: ../../enterprise/meta/general/header.php:221 +#: ../../enterprise/meta/general/header.php:212 +#: ../../enterprise/meta/general/header.php:222 +#: ../../enterprise/meta/general/header.php:234 #: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:492 -#: ../../general/header.php:407 ../../general/header.php:417 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:643 +#: ../../general/header.php:415 msgid "Edit my user" msgstr "ユーザ情報編集" @@ -10790,13 +11153,23 @@ msgstr "ユーザ同期" msgid "Group synchronization" msgstr "グループ同期" +#: ../../enterprise/meta/include/functions_users_meta.php:236 +#: ../../godmode/users/profile_list.php:339 +msgid "User Management" +msgstr "ユーザ管理" + #: ../../enterprise/meta/include/functions_wizard_meta.php:186 #: ../../enterprise/meta/include/functions_wizard_meta.php:1801 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:255 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:295 #: ../../enterprise/include/functions_reporting_csv.php:725 -#: ../../godmode/agentes/agent_manager.php:292 +#: ../../godmode/groups/tactical.php:179 +#: ../../godmode/agentes/agent_manager.php:373 #: ../../godmode/reporting/reporting_builder.item_editor.php:69 -#: ../../include/functions_reporting_html.php:1557 +#: ../../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 msgid "Alias" msgstr "別名" @@ -10806,21 +11179,21 @@ msgstr "別名" #: ../../enterprise/meta/include/functions_wizard_meta.php:1465 #: ../../enterprise/meta/include/functions_wizard_meta.php:1813 #: ../../enterprise/include/functions_reporting_csv.php:725 -#: ../../godmode/agentes/agent_manager.php:301 -#: ../../godmode/servers/modificar_server.php:62 -#: ../../include/functions_reporting_html.php:1561 -#: ../../include/functions_reporting_html.php:4054 -#: ../../include/functions_reporting_html.php:4148 -#: ../../include/functions_treeview.php:640 -#: ../../include/functions_events.php:4219 ../../operation/gis_maps/ajax.php:290 +#: ../../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 msgid "IP Address" msgstr "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:183 -#: ../../enterprise/godmode/setup/setup_log_collector.php:49 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:205 +#: ../../enterprise/godmode/setup/setup_log_collector.php:89 #: ../../enterprise/include/functions_metaconsole.php:1339 #: ../../enterprise/include/functions_metaconsole.php:1372 #: ../../enterprise/include/functions_metaconsole.php:1405 @@ -10828,7 +11201,7 @@ msgstr "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:172 +#: ../../godmode/agentes/module_manager_editor_web.php:179 msgid "Check" msgstr "チェック" @@ -10839,18 +11212,18 @@ msgstr "チェック" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:48 #: ../../enterprise/include/functions_reporting_csv.php:1042 #: ../../enterprise/include/class/Aws.cloud.php:345 -#: ../../godmode/alerts/configure_alert_template.php:229 -#: ../../godmode/alerts/configure_alert_template.php:233 -#: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 -#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../include/ajax/events.php:1667 ../../include/functions_reports.php:771 -#: ../../include/functions_reporting.php:9982 +#: ../../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 +#: ../../include/functions_reports.php:783 +#: ../../include/functions_reporting.php:10176 msgid "General" msgstr "一般" #: ../../enterprise/meta/include/functions_wizard_meta.php:306 #: ../../godmode/modules/manage_network_templates_form.php:341 -#: ../../include/class/ModuleTemplates.class.php:805 +#: ../../include/class/ModuleTemplates.class.php:752 msgid "Components" msgstr "コンポーネント" @@ -10869,106 +11242,106 @@ 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:59 -#: ../../godmode/agentes/module_manager_editor_network.php:94 -#: ../../godmode/massive/massive_edit_modules.php:817 +#: ../../godmode/agentes/module_manager_editor_wmi.php:57 +#: ../../godmode/agentes/module_manager_editor_network.php:103 +#: ../../godmode/massive/massive_edit_modules.php:832 msgid "Auto" 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:60 -#: ../../godmode/agentes/module_manager_editor_network.php:95 -#: ../../godmode/massive/massive_edit_modules.php:818 +#: ../../godmode/agentes/module_manager_editor_wmi.php:58 +#: ../../godmode/agentes/module_manager_editor_network.php:104 +#: ../../godmode/massive/massive_edit_modules.php:833 msgid "Force primary key" msgstr "プライマリを利用" #: ../../enterprise/meta/include/functions_wizard_meta.php:516 #: ../../enterprise/meta/include/functions_wizard_meta.php:1470 #: ../../enterprise/meta/include/functions_events_meta.php:70 -#: ../../enterprise/meta/include/functions_meta.php:1196 -#: ../../enterprise/meta/include/functions_meta.php:1250 -#: ../../enterprise/meta/include/functions_meta.php:1304 -#: ../../enterprise/meta/general/login_page.php:125 -#: ../../enterprise/meta/general/login_page.php:167 +#: ../../enterprise/meta/include/functions_meta.php:1231 +#: ../../enterprise/meta/include/functions_meta.php:1285 +#: ../../enterprise/meta/include/functions_meta.php:1339 +#: ../../enterprise/meta/general/login_page.php:207 +#: ../../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:1037 -#: ../../enterprise/godmode/setup/setup_auth.php:1069 -#: ../../enterprise/godmode/servers/manage_export_form.php:113 +#: ../../enterprise/godmode/setup/setup_auth.php:1130 +#: ../../enterprise/godmode/setup/setup_auth.php:1162 +#: ../../enterprise/godmode/servers/manage_export_form.php:155 #: ../../enterprise/include/functions_tasklist.php:172 -#: ../../enterprise/include/class/DB2.app.php:501 -#: ../../enterprise/include/class/MySQL.app.php:523 -#: ../../enterprise/include/class/Oracle.app.php:508 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../extensions/api_checker.php:222 ../../extensions/users_connected.php:143 +#: ../../enterprise/include/class/DB2.app.php:509 +#: ../../enterprise/include/class/MySQL.app.php:531 +#: ../../enterprise/include/class/Oracle.app.php:516 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:520 +#: ../../extensions/api_checker.php:255 ../../extensions/users_connected.php:177 #: ../../godmode/update_manager/update_manager.history.php:43 -#: ../../godmode/setup/setup_ehorus.php:80 -#: ../../godmode/setup/setup_integria.php:283 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3479 -#: ../../godmode/events/custom_events.php:99 -#: ../../mobile/include/user.class.php:396 +#: ../../godmode/setup/setup_ehorus.php:97 +#: ../../godmode/setup/setup_integria.php:292 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/events/custom_events.php:97 +#: ../../mobile/include/user.class.php:392 #: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:5923 -#: ../../include/functions.php:3099 ../../include/functions_cron.php:500 -#: ../../include/functions_config.php:705 ../../include/functions_config.php:725 -#: ../../include/class/CredentialStore.class.php:843 -#: ../../include/class/CredentialStore.class.php:1322 -#: ../../include/class/AuditLog.class.php:107 -#: ../../include/class/AuditLog.class.php:210 +#: ../../include/functions_reporting_html.php:6011 +#: ../../include/functions.php:3109 ../../include/functions_cron.php:498 +#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../include/class/CredentialStore.class.php:817 +#: ../../include/class/CredentialStore.class.php:1300 +#: ../../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:795 -#: ../../operation/users/user_edit.php:841 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 -#: ../../general/logon_ok.php:249 ../../general/login_page.php:230 -#: ../../general/login_page.php:272 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:857 +#: ../../operation/users/user_edit.php:910 +#: ../../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/login_page.php:335 msgid "User" msgstr "ユーザ" #: ../../enterprise/meta/include/functions_wizard_meta.php:520 #: ../../enterprise/meta/include/functions_wizard_meta.php:1474 -#: ../../enterprise/meta/include/functions_meta.php:1208 -#: ../../enterprise/meta/include/functions_meta.php:1262 -#: ../../enterprise/meta/include/functions_meta.php:1316 -#: ../../enterprise/meta/general/login_page.php:139 -#: ../../enterprise/meta/general/login_page.php:181 +#: ../../enterprise/meta/include/functions_meta.php:1243 +#: ../../enterprise/meta/include/functions_meta.php:1297 +#: ../../enterprise/meta/include/functions_meta.php:1351 +#: ../../enterprise/meta/general/login_page.php:224 +#: ../../enterprise/meta/general/login_page.php:284 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:851 -#: ../../enterprise/godmode/setup/setup_module_library.php:52 -#: ../../enterprise/godmode/setup/setup_auth.php:1043 -#: ../../enterprise/godmode/setup/setup_auth.php:1075 +#: ../../enterprise/godmode/setup/setup_module_library.php:57 +#: ../../enterprise/godmode/setup/setup_auth.php:1136 +#: ../../enterprise/godmode/setup/setup_auth.php:1168 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:250 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:59 -#: ../../enterprise/godmode/servers/manage_export_form.php:117 +#: ../../enterprise/godmode/servers/manage_export_form.php:161 #: ../../enterprise/include/ajax/servers.ajax.php:101 -#: ../../enterprise/include/ajax/servers.ajax.php:159 -#: ../../enterprise/include/ajax/servers.ajax.php:285 -#: ../../enterprise/include/functions_ui.php:104 +#: ../../enterprise/include/ajax/servers.ajax.php:172 +#: ../../enterprise/include/ajax/servers.ajax.php:310 #: ../../enterprise/include/functions_setup.php:55 #: ../../enterprise/include/functions_setup.php:113 -#: ../../enterprise/include/class/VMware.app.php:732 -#: ../../enterprise/include/class/DB2.app.php:513 -#: ../../enterprise/include/class/MySQL.app.php:535 -#: ../../enterprise/include/class/Oracle.app.php:520 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../extensions/api_checker.php:227 +#: ../../enterprise/include/class/VMware.app.php:731 +#: ../../enterprise/include/class/DB2.app.php:521 +#: ../../enterprise/include/class/MySQL.app.php:543 +#: ../../enterprise/include/class/Oracle.app.php:528 +#: ../../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:1169 -#: ../../godmode/agentes/module_manager_editor_wmi.php:116 -#: ../../godmode/massive/massive_edit_modules.php:908 -#: ../../godmode/setup/setup_ehorus.php:86 -#: ../../godmode/setup/setup_integria.php:289 -#: ../../mobile/include/user.class.php:403 ../../include/functions_ui.php:6920 -#: ../../include/functions_config.php:709 ../../include/functions_config.php:729 -#: ../../include/class/CredentialStore.class.php:998 -#: ../../include/class/CredentialStore.class.php:1048 -#: ../../include/class/CredentialStore.class.php:1323 +#: ../../godmode/users/configure_user.php:1126 +#: ../../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/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:1368 -#: ../../include/class/AgentWizard.class.php:689 -#: ../../operation/users/user_edit.php:801 -#: ../../operation/users/user_edit.php:847 ../../general/login_page.php:244 -#: ../../general/login_page.php:285 +#: ../../include/class/AgentWizard.class.php:690 +#: ../../operation/users/user_edit.php:863 +#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 +#: ../../general/login_page.php:351 msgid "Password" msgstr "パスワード" @@ -10981,16 +11354,16 @@ msgid "Response" msgstr "応答" #: ../../enterprise/meta/include/functions_wizard_meta.php:593 -#: ../../godmode/agentes/module_manager_editor_web.php:199 +#: ../../godmode/agentes/module_manager_editor_web.php:213 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:467 -#: ../../godmode/agentes/module_manager_editor_web.php:93 -#: ../../godmode/massive/massive_edit_modules.php:1141 +#: ../../enterprise/include/functions_enterprise.php:447 +#: ../../godmode/agentes/module_manager_editor_web.php:92 +#: ../../godmode/massive/massive_edit_modules.php:1156 msgid "Web checks" msgstr "ウェブチェック" @@ -11008,47 +11381,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:180 -#: ../../godmode/agentes/module_manager_editor_web.php:164 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:217 +#: ../../godmode/agentes/module_manager_editor_web.php:168 msgid "Load basic" msgstr "基本設定読み込み" #: ../../enterprise/meta/include/functions_wizard_meta.php:680 -#: ../../godmode/agentes/module_manager_editor_web.php:170 +#: ../../godmode/agentes/module_manager_editor_web.php:177 msgid "Load a basic structure on Web Checks" msgstr "ウェブチェックに基本構造を読み込む" #: ../../enterprise/meta/include/functions_wizard_meta.php:688 -#: ../../godmode/agentes/module_manager_editor_web.php:178 +#: ../../godmode/agentes/module_manager_editor_web.php:188 msgid "Check the correct structure of the WebCheck" msgstr "ウェブチェックの構造確認" #: ../../enterprise/meta/include/functions_wizard_meta.php:695 -#: ../../godmode/agentes/module_manager_editor_web.php:253 +#: ../../godmode/agentes/module_manager_editor_web.php:267 msgid "First line must be \"task_begin\"" msgstr "最初の行は、\"task_begin\" でなければいけません。" #: ../../enterprise/meta/include/functions_wizard_meta.php:696 -#: ../../godmode/agentes/module_manager_editor_web.php:254 +#: ../../godmode/agentes/module_manager_editor_web.php:268 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:255 -#: ../../godmode/agentes/module_manager_editor_web.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:269 +#: ../../godmode/agentes/module_manager_editor_web.php:270 msgid "Last line must be \"task_end\"" msgstr "最後の行は、\"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:203 -#: ../../godmode/agentes/module_manager_editor_web.php:257 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:256 +#: ../../godmode/agentes/module_manager_editor_web.php:271 msgid "There is a line with a unknown token 'token_fail'." msgstr "不明なトークン 'token_fail' を含む行があります。" #: ../../enterprise/meta/include/functions_wizard_meta.php:700 -#: ../../godmode/agentes/module_manager_editor_web.php:259 +#: ../../godmode/agentes/module_manager_editor_web.php:273 msgid "Web checks are built correctly" msgstr "ウェブチェックを設定しました" @@ -11058,60 +11431,63 @@ msgstr "ウェブチェックを設定しました" #: ../../enterprise/meta/include/functions_wizard_meta.php:1520 #: ../../enterprise/meta/include/functions_wizard_meta.php:1605 #: ../../enterprise/meta/include/functions_wizard_meta.php:1742 -#: ../../enterprise/meta/agentsearch.php:138 +#: ../../enterprise/meta/agentsearch.php:136 #: ../../enterprise/godmode/modules/configure_local_component.php:291 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:465 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:507 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:522 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:272 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:690 -#: ../../enterprise/godmode/servers/manage_export.php:139 -#: ../../enterprise/godmode/servers/manage_export_form.php:95 -#: ../../enterprise/include/functions_ui.php:84 -#: ../../enterprise/include/class/Azure.cloud.php:847 +#: ../../enterprise/godmode/servers/manage_export.php:175 +#: ../../enterprise/godmode/servers/manage_export_form.php:131 +#: ../../enterprise/include/class/Azure.cloud.php:850 #: ../../enterprise/include/class/VMware.app.php:667 -#: ../../enterprise/include/class/DB2.app.php:536 -#: ../../enterprise/include/class/Aws.S3.php:506 -#: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/Aws.cloud.php:591 -#: ../../enterprise/include/class/Aws.cloud.php:1318 -#: ../../enterprise/include/class/MySQL.app.php:558 -#: ../../enterprise/include/class/Google.cloud.php:797 -#: ../../enterprise/include/class/Oracle.app.php:543 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:537 -#: ../../enterprise/include/functions_ipam.php:1354 -#: ../../enterprise/operation/agentes/tag_view.php:603 -#: ../../enterprise/operation/agentes/tag_view.php:681 -#: ../../enterprise/tools/ipam/ipam_list.php:641 +#: ../../enterprise/include/class/DB2.app.php:544 +#: ../../enterprise/include/class/Aws.S3.php:513 +#: ../../enterprise/include/class/SAP.app.php:503 +#: ../../enterprise/include/class/Aws.cloud.php:579 +#: ../../enterprise/include/class/Aws.cloud.php:1337 +#: ../../enterprise/include/class/MySQL.app.php:566 +#: ../../enterprise/include/class/Google.cloud.php:800 +#: ../../enterprise/include/class/Oracle.app.php:551 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:555 +#: ../../enterprise/include/functions_ipam.php:1356 +#: ../../enterprise/operation/agentes/tag_view.php:697 +#: ../../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:147 -#: ../../godmode/agentes/inventory_manager.php:224 -#: ../../godmode/agentes/agent_manager.php:378 -#: ../../godmode/agentes/module_manager_editor_common.php:632 -#: ../../godmode/agentes/module_manager_editor_common.php:657 -#: ../../godmode/agentes/module_manager.php:899 +#: ../../godmode/agentes/status_monitor_custom_fields.php:145 +#: ../../godmode/agentes/inventory_manager.php:236 +#: ../../godmode/agentes/agent_manager.php:503 +#: ../../godmode/agentes/module_manager_editor_common.php:1067 +#: ../../godmode/agentes/module_manager.php:637 #: ../../godmode/massive/massive_edit_agents.php:714 -#: ../../godmode/massive/massive_edit_modules.php:754 -#: ../../godmode/wizards/HostDevices.class.php:800 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:596 +#: ../../godmode/massive/massive_edit_modules.php:769 +#: ../../godmode/setup/setup_visuals.php:1919 +#: ../../godmode/setup/setup_visuals.php:2001 +#: ../../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:3619 -#: ../../include/ajax/events.php:2287 ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:646 ../../include/functions_ui.php:6900 -#: ../../include/class/CustomNetScan.class.php:520 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:372 +#: ../../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 +#: ../../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/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 -#: ../../operation/search_agents.php:45 ../../operation/search_agents.php:51 -#: ../../operation/agentes/estado_agente.php:751 -#: ../../operation/agentes/status_monitor.php:1341 -#: ../../operation/agentes/estado_generalagente.php:357 -#: ../../operation/netflow/nf_live_view.php:270 +#: ../../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/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 msgid "Interval" @@ -11127,9 +11503,10 @@ 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:597 -#: ../../godmode/massive/massive_edit_modules.php:925 -#: ../../include/functions_reporting_html.php:3620 +#: ../../godmode/agentes/module_manager_editor_common.php:1327 +#: ../../godmode/massive/massive_edit_modules.php:940 +#: ../../include/functions_reporting_html.php:3713 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:498 msgid "Unit" msgstr "単位" @@ -11141,17 +11518,17 @@ msgstr "いろいろ" #: ../../enterprise/meta/include/functions_wizard_meta.php:964 #: ../../enterprise/meta/include/functions_wizard_meta.php:1481 -#: ../../include/class/ExternalTools.class.php:570 +#: ../../include/class/ExternalTools.class.php:629 msgid "SNMP Community" msgstr "SNMP コミュニティ" #: ../../enterprise/meta/include/functions_wizard_meta.php:971 #: ../../enterprise/meta/include/functions_wizard_meta.php:1055 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1189 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1316 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../extensions/api_checker.php:279 -#: ../../godmode/wizards/HostDevices.class.php:1491 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1213 +#: ../../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 msgid "Credentials" msgstr "認証情報" @@ -11167,18 +11544,18 @@ msgstr "認証情報" #: ../../enterprise/meta/include/functions_wizard_meta.php:1597 #: ../../enterprise/meta/include/functions_wizard_meta.php:1708 #: ../../enterprise/meta/include/functions_wizard_meta.php:1717 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:281 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:393 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:766 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1833 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2503 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:382 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:755 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1822 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2492 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2252 -#: ../../godmode/alerts/alert_view.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2529 -#: ../../include/functions_reporting_html.php:4921 -#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1534 +#: ../../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 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11197,18 +11574,18 @@ msgstr "最小" #: ../../enterprise/meta/include/functions_wizard_meta.php:1599 #: ../../enterprise/meta/include/functions_wizard_meta.php:1710 #: ../../enterprise/meta/include/functions_wizard_meta.php:1719 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:293 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:386 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:774 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1831 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2496 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:282 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1820 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2485 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2252 -#: ../../godmode/alerts/alert_view.php:266 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1457 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2522 -#: ../../include/functions_reporting_html.php:4920 -#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1530 +#: ../../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 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11236,23 +11613,25 @@ msgstr "最大" #: ../../godmode/modules/manage_network_components_form_common.php:244 #: ../../godmode/modules/manage_network_components_form_wizard.php:396 #: ../../godmode/modules/manage_network_components_form_wizard.php:444 -#: ../../godmode/agentes/module_manager_editor_common.php:459 -#: ../../godmode/agentes/module_manager_editor_common.php:535 -#: ../../godmode/massive/massive_edit_modules.php:610 -#: ../../godmode/massive/massive_edit_modules.php:701 +#: ../../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/massive/massive_edit_modules.php:625 +#: ../../godmode/massive/massive_edit_modules.php:716 msgid "Inverse interval" 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:994 +#: ../../include/ajax/module.php:1004 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:224 +#: ../../godmode/agentes/module_manager_editor_web.php:238 msgid "Proxy URL" msgstr "プロキシURL" @@ -11277,7 +11656,7 @@ msgid "Alerts in module" msgstr "モジュール内のアラート" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5285 +#: ../../include/functions_reporting_html.php:5372 msgid "Alert description" msgstr "アラートの説明" @@ -11312,7 +11691,7 @@ msgstr "アラート作成でエラーが発生しました。操作はキャン #: ../../enterprise/meta/include/functions_wizard_meta.php:2064 #: ../../enterprise/meta/include/functions_wizard_meta.php:2159 -#: ../../enterprise/godmode/policies/policy_modules.php:922 +#: ../../enterprise/godmode/policies/policy_modules.php:933 msgid "Successfully added module." msgstr "モジュールを追加しました。" @@ -11337,7 +11716,7 @@ msgid "Could not update agent %s" msgstr "エージェント %s を更新できませんでした" #: ../../enterprise/meta/include/functions_wizard_meta.php:2338 -#: ../../enterprise/include/class/AgentRepository.class.php:567 +#: ../../enterprise/include/class/AgentRepository.class.php:576 msgid "Agent successfully updated" msgstr "エージェントを更新しました" @@ -11379,90 +11758,88 @@ msgid "Manage agent modules" msgstr "エージェントモジュール管理" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:92 -#: ../../godmode/alerts/alert_templates.php:61 +#: ../../godmode/alerts/alert_templates.php:59 msgid "Everyday" msgstr "毎日" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../enterprise/meta/include/functions_meta.php:2117 +#: ../../enterprise/meta/include/functions_meta.php:2222 #: ../../enterprise/include/ajax/ipam.ajax.php:521 -#: ../../enterprise/tools/ipam/ipam_editor.php:327 -#: ../../godmode/alerts/alert_templates.php:73 -#: ../../include/functions_config.php:1586 +#: ../../enterprise/tools/ipam/ipam_editor.php:364 +#: ../../godmode/alerts/alert_templates.php:71 +#: ../../include/functions_config.php:1684 msgid "Days" msgstr "日間" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../godmode/alerts/alert_templates.php:73 +#: ../../godmode/alerts/alert_templates.php:71 msgid "Every" msgstr "毎" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:115 -#: ../../godmode/alerts/alert_templates.php:84 +#: ../../godmode/alerts/alert_templates.php:82 msgid "and" msgstr "と" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:122 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:313 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:230 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2247 -#: ../../godmode/snmpconsole/snmp_alert.php:1083 -#: ../../godmode/alerts/alert_templates.php:91 -#: ../../godmode/alerts/configure_alert_template.php:676 -#: ../../godmode/alerts/alert_view.php:262 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:254 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2263 +#: ../../godmode/snmpconsole/snmp_alert.php:1589 +#: ../../godmode/alerts/alert_templates.php:89 +#: ../../godmode/alerts/configure_alert_template.php:691 +#: ../../godmode/alerts/alert_view.php:268 msgid "Time threshold" msgstr "再通知間隔" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 -#: ../../enterprise/include/functions_reporting_pdf.php:1820 -#: ../../enterprise/include/functions_reporting_pdf.php:1893 -#: ../../enterprise/include/functions_reporting_pdf.php:2008 +#: ../../enterprise/godmode/policies/policy_alerts.php:437 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:516 +#: ../../enterprise/include/functions_reporting_pdf.php:1867 +#: ../../enterprise/include/functions_reporting_pdf.php:1983 #: ../../enterprise/include/functions_reporting_csv.php:722 #: ../../enterprise/include/functions_reporting_csv.php:1001 #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3381 -#: ../../godmode/agentes/planned_downtime.list.php:330 -#: ../../godmode/alerts/alert_list.list.php:658 -#: ../../godmode/alerts/alert_list.list.php:661 -#: ../../godmode/alerts/alert_templates.php:96 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1034 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2410 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2414 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3450 +#: ../../godmode/alerts/alert_list.list.php:730 +#: ../../godmode/alerts/alert_list.list.php:733 +#: ../../godmode/alerts/alert_templates.php:94 #: ../../include/functions_reporting_html.php:148 -#: ../../include/functions_reporting_html.php:3118 -#: ../../include/functions_reporting_html.php:3929 -#: ../../include/rest-api/index.php:372 +#: ../../include/functions_reporting_html.php:3202 +#: ../../include/functions_reporting_html.php:4013 +#: ../../include/rest-api/index.php:375 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:513 #: ../../operation/agentes/gis_view.php:220 -#: ../../operation/reporting/reporting_viewer.php:304 +#: ../../operation/reporting/reporting_viewer.php:268 msgid "From" msgstr "開始" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 -#: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:613 -#: ../../enterprise/include/functions_reporting_pdf.php:1826 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1019 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2538 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3383 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3512 +#: ../../enterprise/godmode/policies/policy_alerts.php:437 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:516 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:660 +#: ../../enterprise/include/ajax/policy.ajax.php:445 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1044 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2410 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2414 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2570 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3452 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3581 #: ../../godmode/massive/massive_add_action_alerts.php:255 -#: ../../godmode/alerts/alert_list.list.php:658 -#: ../../godmode/alerts/alert_list.list.php:778 -#: ../../godmode/alerts/alert_templates.php:98 -#: ../../godmode/alerts/alert_list.builder.php:129 +#: ../../godmode/alerts/alert_list.list.php:730 +#: ../../godmode/alerts/alert_list.list.php:855 +#: ../../godmode/alerts/alert_templates.php:96 +#: ../../godmode/alerts/alert_list.builder.php:126 #: ../../include/functions_reporting_html.php:149 -#: ../../include/functions_reporting_html.php:3123 +#: ../../include/functions_reporting_html.php:3207 #: ../../include/ajax/alert_list.ajax.php:527 -#: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14676 -#: ../../operation/reporting/reporting_viewer.php:308 +#: ../../include/class/AgentsAlerts.class.php:321 +#: ../../include/functions_reporting.php:14866 +#: ../../operation/reporting/reporting_viewer.php:272 msgid "to" msgstr "終了" @@ -11480,28 +11857,30 @@ msgid "Event id" msgstr "イベント ID" #: ../../enterprise/meta/include/functions_events_meta.php:62 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:419 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:479 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 -#: ../../include/functions_reporting_html.php:1314 -#: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:5217 -#: ../../include/functions_events.php:200 ../../include/functions_events.php:2528 -#: ../../include/functions_events.php:4706 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:474 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:534 +#: ../../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_events.php:200 ../../include/functions_events.php:2529 +#: ../../include/functions_events.php:4901 msgid "Event name" msgstr "イベント名" #: ../../enterprise/meta/include/functions_events_meta.php:66 #: ../../enterprise/include/functions_reporting_csv.php:921 -#: ../../enterprise/include/functions_ipam.php:2053 -#: ../../godmode/agentes/modificar_agente.php:647 -#: ../../godmode/agentes/agent_manager.php:213 +#: ../../enterprise/include/class/Omnishell.class.php:642 +#: ../../enterprise/include/functions_ipam.php:2114 +#: ../../godmode/agentes/modificar_agente.php:690 +#: ../../godmode/agentes/agent_manager.php:357 #: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 -#: ../../include/functions_reporting_html.php:3563 -#: ../../include/functions_treeview.php:617 -#: ../../include/class/SatelliteAgent.class.php:522 -#: ../../include/functions_events.php:201 ../../include/functions_events.php:247 -#: ../../include/functions_events.php:2533 ../../operation/events/events.php:2592 +#: ../../include/functions_reporting_html.php:3659 +#: ../../include/functions_treeview.php:607 +#: ../../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 msgid "Agent name" msgstr "エージェント名" @@ -11512,21 +11891,21 @@ msgstr "エージェント名" #: ../../enterprise/include/functions_reporting_csv.php:2331 #: ../../enterprise/include/functions_reporting_csv.php:2367 #: ../../enterprise/include/functions_reporting_csv.php:2679 -#: ../../enterprise/include/class/Omnishell.class.php:400 -#: ../../enterprise/include/class/LogSource.class.php:628 -#: ../../enterprise/operation/agentes/tag_view.php:686 +#: ../../enterprise/include/class/Omnishell.class.php:407 +#: ../../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:153 -#: ../../godmode/setup/news.php:249 ../../godmode/events/custom_events.php:102 +#: ../../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 -#: ../../include/functions_reporting_html.php:1057 -#: ../../include/functions_reporting_html.php:1065 -#: ../../include/functions_reporting_html.php:1318 -#: ../../include/functions_reporting_html.php:1325 -#: ../../include/functions_reporting_html.php:2555 -#: ../../include/functions_reporting_html.php:5219 +#: ../../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/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 #: ../../include/functions_inventory.php:143 @@ -11535,108 +11914,113 @@ msgstr "エージェント名" #: ../../include/functions_inventory.php:399 #: ../../include/functions_inventory.php:585 #: ../../include/functions_netflow.php:278 -#: ../../include/class/SnmpConsole.class.php:342 +#: ../../include/class/SnmpConsole.class.php:279 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 -#: ../../include/functions_events.php:2538 -#: ../../include/functions_events.php:4719 +#: ../../include/functions_events.php:2539 +#: ../../include/functions_events.php:4914 #: ../../operation/agentes/exportdata.csv.php:74 -#: ../../operation/agentes/exportdata.php:83 -#: ../../operation/agentes/status_monitor.php:1377 -#: ../../operation/agentes/estado_generalagente.php:660 +#: ../../operation/agentes/exportdata.php:114 +#: ../../operation/agentes/status_monitor.php:1598 +#: ../../operation/agentes/estado_generalagente.php:751 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/messages/message_list.php:200 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:116 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:247 +#: ../../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 msgid "Timestamp" msgstr "タイムスタンプ" #: ../../enterprise/meta/include/functions_events_meta.php:86 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2905 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1384 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1124 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:647 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2894 +#: ../../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:2979 -#: ../../godmode/events/event_filter.php:138 -#: ../../godmode/events/event_edit_filter.php:344 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3025 +#: ../../godmode/events/event_filter.php:146 +#: ../../godmode/events/event_edit_filter.php:352 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 -#: ../../include/functions_events.php:206 ../../operation/events/events.php:1674 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:267 +#: ../../include/functions_events.php:206 ../../operation/events/events.php:1749 msgid "Event type" msgstr "イベントタイプ" #: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:349 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:362 #: ../../enterprise/include/functions_reporting_csv.php:923 -#: ../../enterprise/operation/agentes/tag_view.php:205 +#: ../../enterprise/operation/agentes/tag_view.php:217 #: ../../godmode/modules/manage_network_templates_form.php:231 -#: ../../godmode/modules/manage_network_components.php:751 +#: ../../godmode/modules/manage_network_components.php:774 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/agent_template.php:274 #: ../../godmode/agentes/status_monitor_custom_fields.php:85 -#: ../../godmode/agentes/status_monitor_custom_fields.php:145 -#: ../../godmode/alerts/alert_list.list.php:99 +#: ../../godmode/agentes/status_monitor_custom_fields.php:143 +#: ../../godmode/alerts/alert_list.list.php:104 #: ../../mobile/operation/modules.php:594 ../../mobile/operation/modules.php:848 -#: ../../include/ajax/heatmap.ajax.php:231 -#: ../../include/ajax/heatmap.ajax.php:270 ../../include/ajax/module.php:991 +#: ../../include/ajax/heatmap.ajax.php:239 +#: ../../include/ajax/heatmap.ajax.php:278 ../../include/ajax/module.php:1001 #: ../../include/ajax/custom_fields.php:411 -#: ../../operation/agentes/status_monitor.php:536 -#: ../../operation/agentes/status_monitor.php:1331 +#: ../../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 msgid "Module name" msgstr "モジュール名" #: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4353 -#: ../../godmode/agentes/configurar_agente.php:758 -#: ../../godmode/alerts/configure_alert_template.php:1552 -#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4152 +#: ../../enterprise/godmode/policies/policy_alerts.php:719 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:431 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:729 +#: ../../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 #: ../../include/functions_snmp.php:324 -#: ../../include/class/SnmpConsole.class.php:343 -#: ../../include/class/SnmpConsole.class.php:416 -#: ../../include/class/SnmpConsole.class.php:524 +#: ../../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:522 +#: ../../operation/agentes/estado_monitores.php:517 msgid "Alert" msgstr "アラート" #: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:93 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2878 -#: ../../enterprise/include/functions_reporting.php:2027 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:132 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:405 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:621 +#: ../../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:2952 -#: ../../godmode/events/event_filter.php:140 -#: ../../godmode/events/event_edit_filter.php:359 -#: ../../godmode/events/custom_events.php:106 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2998 +#: ../../godmode/events/event_filter.php:148 +#: ../../godmode/events/event_edit_filter.php:372 +#: ../../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 -#: ../../include/functions_reporting_html.php:1055 -#: ../../include/functions_reporting_html.php:1063 +#: ../../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:1324 -#: ../../include/functions_reporting_html.php:2553 +#: ../../include/functions_reporting_html.php:2644 #: ../../include/functions_snmp.php:335 -#: ../../include/class/SnmpConsole.class.php:426 -#: ../../include/class/SnmpConsole.class.php:550 +#: ../../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:2520 -#: ../../include/functions_events.php:4780 ../../operation/events/events.php:1770 +#: ../../include/functions_events.php:4982 ../../operation/events/events.php:1850 msgid "Severity" msgstr "重要度" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:689 -#: ../../godmode/events/custom_events.php:107 -#: ../../godmode/wizards/HostDevices.class.php:961 -#: ../../include/class/CustomNetScan.class.php:468 +#: ../../godmode/events/event_edit_filter.php:829 +#: ../../godmode/events/custom_events.php:105 +#: ../../godmode/wizards/HostDevices.class.php:960 +#: ../../include/class/CustomNetScan.class.php:474 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3475 ../../operation/events/events.php:1868 +#: ../../include/functions_events.php:3622 ../../operation/events/events.php:1906 msgid "Comment" msgstr "コメント" @@ -11645,100 +12029,100 @@ msgstr "コメント" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:163 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:120 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:971 -#: ../../enterprise/godmode/setup/setup_auth.php:231 -#: ../../enterprise/godmode/setup/setup_auth.php:510 -#: ../../enterprise/godmode/setup/setup_auth.php:1305 +#: ../../enterprise/godmode/setup/setup_auth.php:253 +#: ../../enterprise/godmode/setup/setup_auth.php:603 +#: ../../enterprise/godmode/setup/setup_auth.php:1413 #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -#: ../../enterprise/operation/agentes/tag_view.php:678 +#: ../../enterprise/operation/agentes/tag_view.php:241 +#: ../../enterprise/operation/agentes/tag_view.php:781 #: ../../godmode/modules/manage_network_components_form_common.php:362 #: ../../godmode/massive/massive_copy_modules.php:172 #: ../../godmode/massive/massive_delete_modules.php:401 #: ../../godmode/massive/massive_delete_modules.php:515 #: ../../godmode/massive/massive_edit_modules.php:405 #: ../../godmode/massive/massive_edit_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:1047 +#: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 -#: ../../godmode/events/custom_events.php:108 ../../godmode/tag/edit_tag.php:66 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3964 +#: ../../godmode/events/custom_events.php:106 #: ../../mobile/operation/events.php:845 -#: ../../include/functions_reporting_html.php:1718 -#: ../../include/functions_reporting_html.php:3622 -#: ../../include/functions_treeview.php:168 -#: ../../include/functions_profile.php:215 +#: ../../include/functions_reporting_html.php:1772 +#: ../../include/functions_reporting_html.php:3715 +#: ../../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:329 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:342 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:4867 ../../operation/tree.php:66 -#: ../../operation/users/user_edit.php:914 -#: ../../operation/agentes/status_monitor.php:550 -#: ../../operation/agentes/group_view.php:222 -#: ../../operation/agentes/alerts_status.functions.php:108 +#: ../../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 +#: ../../operation/agentes/alerts_status.functions.php:146 #: ../../general/first_task/tags.php:22 msgid "Tags" msgstr "タグ" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4431 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4626 msgid "Extra id" msgstr "拡張 ID" #: ../../enterprise/meta/include/functions_events_meta.php:118 -#: ../../godmode/setup/setup_integria.php:397 -#: ../../godmode/setup/setup_integria.php:519 -#: ../../godmode/events/custom_events.php:111 +#: ../../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:4734 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4936 #: ../../operation/incidents/integriaims_export_csv.php:89 -#: ../../operation/incidents/configure_integriaims_incident.php:312 -#: ../../operation/incidents/list_integriaims_incidents.php:342 -#: ../../operation/incidents/list_integriaims_incidents.php:522 -#: ../../operation/events/events.php:1977 +#: ../../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 msgid "Owner" msgstr "所有者" #: ../../enterprise/meta/include/functions_events_meta.php:122 -#: ../../godmode/events/custom_events.php:112 +#: ../../godmode/events/custom_events.php:110 #: ../../include/functions_events.php:215 ../../include/functions_events.php:292 msgid "ACK Timestamp" msgstr "ACK タイムスタンプ" #: ../../enterprise/meta/include/functions_events_meta.php:126 -#: ../../godmode/events/custom_events.php:113 +#: ../../godmode/events/custom_events.php:111 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4419 ../../operation/events/events.php:3152 +#: ../../include/functions_events.php:4614 ../../operation/events/events.php:3239 msgid "Instructions" msgstr "手順" #: ../../enterprise/meta/include/functions_events_meta.php:130 #: ../../enterprise/godmode/setup/setup_metaconsole.php:198 #: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:593 -#: ../../include/functions_events.php:217 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:77 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:292 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:596 +#: ../../include/lib/Group.php:578 ../../include/functions_events.php:217 msgid "Server name" msgstr "サーバ名" #: ../../enterprise/meta/include/functions_events_meta.php:138 -#: ../../include/functions_reporting_html.php:5129 +#: ../../include/functions_reporting_html.php:5216 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:172 #: ../../include/lib/Dashboard/Widgets/module_status.php:175 -#: ../../include/lib/Dashboard/Widgets/module_status.php:572 -#: ../../include/functions_events.php:219 ../../operation/tree.php:285 +#: ../../include/lib/Dashboard/Widgets/module_status.php:610 +#: ../../include/functions_events.php:219 ../../operation/tree.php:315 msgid "Module status" msgstr "モジュールの状態" #: ../../enterprise/meta/include/process_reset_pass.php:28 #: ../../enterprise/meta/include/reset_pass.php:28 -#: ../../enterprise/meta/general/login_page.php:45 -#: ../../general/login_page.php:79 +#: ../../enterprise/meta/general/login_page.php:99 +#: ../../general/login_page.php:101 msgid "Splash login" msgstr "スプラッシュログイン" #: ../../enterprise/meta/include/process_reset_pass.php:41 #: ../../enterprise/meta/include/reset_pass.php:41 -#: ../../enterprise/meta/general/login_page.php:58 msgid "Go to Pandora FMS Support" msgstr "Pandora FMS サポートへ行く" @@ -11746,764 +12130,804 @@ msgstr "Pandora FMS サポートへ行く" #: ../../enterprise/meta/include/process_reset_pass.php:54 #: ../../enterprise/meta/include/reset_pass.php:43 #: ../../enterprise/meta/include/reset_pass.php:54 -#: ../../enterprise/meta/general/login_page.php:60 -#: ../../enterprise/meta/general/login_page.php:71 msgid "Go to " msgstr "次へ行く " #: ../../enterprise/meta/include/process_reset_pass.php:47 #: ../../enterprise/meta/include/reset_pass.php:47 -#: ../../enterprise/meta/general/login_page.php:64 -#: ../../enterprise/include/process_reset_pass.php:58 -#: ../../enterprise/include/reset_pass.php:53 +#: ../../enterprise/meta/general/login_page.php:127 +#: ../../enterprise/meta/general/login_page.php:130 +#: ../../enterprise/meta/general/login_page.php:134 +#: ../../enterprise/include/process_reset_pass.php:82 +#: ../../enterprise/include/reset_pass.php:140 #: ../../general/login_help_dialog.php:83 ../../general/login_help_dialog.php:88 -#: ../../general/login_page.php:148 ../../general/login_page.php:151 +#: ../../general/login_page.php:194 ../../general/login_page.php:197 +#: ../../general/login_page.php:201 msgid "Support" msgstr "サポート" #: ../../enterprise/meta/include/process_reset_pass.php:52 #: ../../enterprise/meta/include/reset_pass.php:52 -#: ../../enterprise/meta/general/login_page.php:69 msgid "Go to Pandora FMS Wiki" msgstr "Pandora FMS wiki へ行く" #: ../../enterprise/meta/include/process_reset_pass.php:58 #: ../../enterprise/meta/include/reset_pass.php:58 -#: ../../enterprise/meta/general/login_page.php:75 #: ../../enterprise/godmode/modules/configure_local_component.php:657 -#: ../../godmode/servers/plugin.php:513 ../../include/functions_ui.php:1452 -#: ../../include/class/ManageNetScanScripts.class.php:690 +#: ../../godmode/servers/plugin.php:607 ../../include/functions_ui.php:1624 +#: ../../include/class/ManageNetScanScripts.class.php:698 msgid "Help" msgstr "ヘルプ" #: ../../enterprise/meta/include/process_reset_pass.php:96 -#: ../../enterprise/include/process_reset_pass.php:103 -#: ../../operation/users/user_edit.php:375 +#: ../../enterprise/include/process_reset_pass.php:127 +#: ../../operation/users/user_edit.php:410 msgid "New Password" msgstr "新しいパスワード" #: ../../enterprise/meta/include/process_reset_pass.php:114 -#: ../../enterprise/include/process_reset_pass.php:118 +#: ../../enterprise/include/process_reset_pass.php:142 msgid "Repeat password" msgstr "パスワード(確認)" #: ../../enterprise/meta/include/process_reset_pass.php:120 -#: ../../enterprise/include/process_reset_pass.php:124 +#: ../../enterprise/include/process_reset_pass.php:148 msgid "Change password" msgstr "パスワード変更" #: ../../enterprise/meta/include/process_reset_pass.php:123 -#: ../../enterprise/meta/index.php:668 -#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:846 +#: ../../enterprise/meta/index.php:691 +#: ../../enterprise/include/process_reset_pass.php:151 ../../index.php:856 msgid "Passwords must be the same" msgstr "パスワードは同じでなければいけません" #: ../../enterprise/meta/include/process_reset_pass.php:132 #: ../../enterprise/meta/include/reset_pass.php:122 -#: ../../enterprise/include/process_reset_pass.php:136 -#: ../../enterprise/include/reset_pass.php:123 +#: ../../enterprise/include/process_reset_pass.php:160 +#: ../../enterprise/include/reset_pass.php:210 msgid "Back to login" msgstr "ログインに戻る" #: ../../enterprise/meta/include/process_reset_pass.php:142 -#: ../../enterprise/meta/include/reset_pass.php:139 #, php-format msgid "%s NEXT GENERATION" msgstr "%s NEXT GENERATION" #: ../../enterprise/meta/include/process_reset_pass.php:150 -#: ../../enterprise/meta/include/reset_pass.php:147 -#: ../../enterprise/meta/general/login_page.php:217 -#: ../../include/functions_config.php:2530 msgid "METACONSOLE" msgstr "メタコンソール" #: ../../enterprise/meta/include/process_reset_pass.php:164 #: ../../enterprise/meta/include/reset_pass.php:161 -#: ../../enterprise/meta/general/login_page.php:232 -#: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/include/reset_pass.php:170 -#: ../../include/functions_menu.php:836 ../../general/login_page.php:424 +#: ../../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 msgid "Build" msgstr "ビルド" -#: ../../enterprise/meta/include/functions_agents_meta.php:478 -#: ../../enterprise/meta/include/functions_agents_meta.php:542 -#: ../../enterprise/meta/include/functions_agents_meta.php:577 +#: ../../enterprise/meta/include/functions_agents_meta.php:479 +#: ../../enterprise/meta/include/functions_agents_meta.php:548 +#: ../../enterprise/meta/include/functions_agents_meta.php:585 msgid "Agents movement" msgstr "エージェント移動" -#: ../../enterprise/meta/include/functions_agents_meta.php:489 -#: ../../enterprise/meta/include/functions_agents_meta.php:557 +#: ../../enterprise/meta/include/functions_agents_meta.php:491 +#: ../../enterprise/meta/include/functions_agents_meta.php:564 msgid "Provisioning management" msgstr "プロビジョニング管理" -#: ../../enterprise/meta/include/functions_agents_meta.php:500 -#: ../../enterprise/meta/include/functions_agents_meta.php:567 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:328 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:542 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:800 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 +#: ../../enterprise/meta/include/functions_agents_meta.php:504 +#: ../../enterprise/meta/include/functions_agents_meta.php:575 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:317 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:326 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:577 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:859 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:101 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:110 msgid "Agent autoconfiguration" msgstr "エージェント自動設定" -#: ../../enterprise/meta/include/functions_agents_meta.php:511 -#: ../../enterprise/meta/include/functions_agents_meta.php:547 -#: ../../enterprise/meta/include/functions_agents_meta.php:552 +#: ../../enterprise/meta/include/functions_agents_meta.php:516 +#: ../../enterprise/meta/include/functions_agents_meta.php:553 +#: ../../enterprise/meta/include/functions_agents_meta.php:558 msgid "Group management" msgstr "グループ管理" -#: ../../enterprise/meta/include/functions_agents_meta.php:522 +#: ../../enterprise/meta/include/functions_agents_meta.php:528 msgid "Tree group" msgstr "ツリーグループ" -#: ../../enterprise/meta/include/functions_agents_meta.php:562 +#: ../../enterprise/meta/include/functions_agents_meta.php:570 msgid "Provisioning rules management" msgstr "プロビジョニングルール管理" -#: ../../enterprise/meta/include/functions_agents_meta.php:572 +#: ../../enterprise/meta/include/functions_agents_meta.php:580 msgid "Colecctions" msgstr "コレクション" #: ../../enterprise/meta/include/functions_agents_meta.php:605 -#: ../../enterprise/meta/general/main_menu.php:533 +msgid "Propagation" +msgstr "伝播" + +#: ../../enterprise/meta/include/functions_agents_meta.php:631 +#: ../../enterprise/meta/general/main_menu.php:586 msgid "Agent operations" msgstr "エージェント操作" -#: ../../enterprise/meta/include/functions_agents_meta.php:616 -#: ../../enterprise/meta/general/main_menu.php:539 +#: ../../enterprise/meta/include/functions_agents_meta.php:642 +#: ../../enterprise/meta/general/main_menu.php:592 msgid "User operations" msgstr "ユーザ操作" -#: ../../enterprise/meta/include/functions_agents_meta.php:625 -#: ../../enterprise/meta/include/functions_agents_meta.php:635 +#: ../../enterprise/meta/include/functions_agents_meta.php:651 +#: ../../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:492 +#: ../../include/functions_menu.php:567 msgid "Agents management" msgstr "エージェント管理" -#: ../../enterprise/meta/include/functions_agents_meta.php:630 +#: ../../enterprise/meta/include/functions_agents_meta.php:656 #: ../../enterprise/extensions/disabled/check_acls.php:53 #: ../../enterprise/extensions/disabled/check_acls.php:140 -#: ../../godmode/menu.php:151 +#: ../../godmode/users/user_list.php:288 ../../godmode/menu.php:154 msgid "Users management" msgstr "ユーザ管理" -#: ../../enterprise/meta/include/functions_meta.php:51 +#: ../../enterprise/meta/include/functions_meta.php:52 msgid "No admin user" msgstr "管理者ではありません" -#: ../../enterprise/meta/include/functions_meta.php:70 -#: ../../include/functions_config.php:416 +#: ../../enterprise/meta/include/functions_meta.php:71 +#: ../../include/functions_config.php:438 msgid "Activate Metaconsole" msgstr "メタコンソールの有効化" -#: ../../enterprise/meta/include/functions_meta.php:114 +#: ../../enterprise/meta/include/functions_meta.php:115 msgid "Centralized management" msgstr "中央管理" -#: ../../enterprise/meta/include/functions_meta.php:122 -#: ../../include/functions_config.php:226 +#: ../../enterprise/meta/include/functions_meta.php:123 +#: ../../include/functions_config.php:230 msgid "Attachment store." msgstr "添付ファイル保存場所。" -#: ../../enterprise/meta/include/functions_meta.php:200 +#: ../../enterprise/meta/include/functions_meta.php:201 msgid "Netflow disable custom live view filters" msgstr "Netflow は、カスタムライブビューフィルタを無効にします" -#: ../../enterprise/meta/include/functions_meta.php:250 -#: ../../enterprise/godmode/setup/setup.php:210 +#: ../../enterprise/meta/include/functions_meta.php:251 +#: ../../enterprise/godmode/setup/setup.php:221 msgid "Enable update manager" msgstr "アップデートマネージャの有効化" -#: ../../enterprise/meta/include/functions_meta.php:264 +#: ../../enterprise/meta/include/functions_meta.php:265 msgid "Customizable section" msgstr "カスタマイズ可能なセクション" -#: ../../enterprise/meta/include/functions_meta.php:285 +#: ../../enterprise/meta/include/functions_meta.php:286 msgid "Agent API" msgstr "エージェント API" -#: ../../enterprise/meta/include/functions_meta.php:335 +#: ../../enterprise/meta/include/functions_meta.php:356 msgid "Policy add max. agents" msgstr "ポリシーでの最大エージェントの追加" -#: ../../enterprise/meta/include/functions_meta.php:344 +#: ../../enterprise/meta/include/functions_meta.php:365 msgid "Sync items warn detection" msgstr "アイテム同期で警告検出" -#: ../../enterprise/meta/include/functions_meta.php:492 +#: ../../enterprise/meta/include/functions_meta.php:513 msgid "IP ElasticSearch" msgstr "IP ElasticSearch" -#: ../../enterprise/meta/include/functions_meta.php:502 +#: ../../enterprise/meta/include/functions_meta.php:523 msgid "Port ElasticSearch" msgstr "ポート ElasticSearch" -#: ../../enterprise/meta/include/functions_meta.php:512 -#: ../../enterprise/godmode/setup/setup_log_collector.php:41 -#: ../../include/functions_config.php:1527 +#: ../../enterprise/meta/include/functions_meta.php:533 +#: ../../enterprise/godmode/setup/setup_log_collector.php:64 +#: ../../include/functions_config.php:1625 msgid "Number of logs viewed" msgstr "ログ表示数" -#: ../../enterprise/meta/include/functions_meta.php:533 -#: ../../godmode/setup/setup_auth.php:456 ../../include/functions_config.php:537 -#: ../../include/class/CredentialStore.class.php:1186 -#: ../../include/class/CredentialStore.class.php:1477 -#: ../../include/class/AgentWizard.class.php:922 +#: ../../enterprise/meta/include/functions_meta.php:554 +#: ../../godmode/setup/setup_auth.php:483 ../../include/functions_config.php:559 +#: ../../include/class/CredentialStore.class.php:1162 +#: ../../include/class/CredentialStore.class.php:1455 +#: ../../include/class/AgentWizard.class.php:925 msgid "Authentication method" msgstr "認証方法" -#: ../../enterprise/meta/include/functions_meta.php:543 -#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:665 +#: ../../enterprise/meta/include/functions_meta.php:564 +#: ../../godmode/setup/setup_auth.php:56 ../../include/functions_config.php:691 msgid "Fallback to local authentication" msgstr "ローカル認証へのフォールバック" -#: ../../enterprise/meta/include/functions_meta.php:553 -#: ../../enterprise/meta/include/functions_meta.php:772 -#: ../../godmode/setup/setup_auth.php:69 ../../include/functions_config.php:541 +#: ../../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 msgid "Autocreate remote users" msgstr "リモートユーザの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:563 +#: ../../enterprise/meta/include/functions_meta.php:584 #: ../../enterprise/godmode/setup/setup_auth.php:55 -#: ../../enterprise/godmode/setup/setup_auth.php:303 -#: ../../enterprise/godmode/setup/setup_auth.php:364 -#: ../../enterprise/godmode/setup/setup_auth.php:1157 -#: ../../include/functions_config.php:545 +#: ../../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 msgid "Autocreate profile" msgstr "プロファイルの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:573 +#: ../../enterprise/meta/include/functions_meta.php:594 #: ../../enterprise/godmode/setup/setup_auth.php:61 -#: ../../enterprise/godmode/setup/setup_auth.php:309 -#: ../../enterprise/godmode/setup/setup_auth.php:370 -#: ../../enterprise/godmode/setup/setup_auth.php:1163 -#: ../../include/functions_config.php:549 +#: ../../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 msgid "Autocreate profile group" msgstr "プロファイルグループの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:583 +#: ../../enterprise/meta/include/functions_meta.php:604 #: ../../enterprise/godmode/setup/setup_auth.php:68 -#: ../../enterprise/godmode/setup/setup_auth.php:318 -#: ../../enterprise/godmode/setup/setup_auth.php:379 -#: ../../enterprise/godmode/setup/setup_auth.php:1172 -#: ../../include/functions_config.php:553 +#: ../../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 msgid "Autocreate profile tags" msgstr "自動作成プロファイルタグ" -#: ../../enterprise/meta/include/functions_meta.php:593 -#: ../../enterprise/godmode/setup/setup_auth.php:324 -#: ../../include/functions_config.php:557 +#: ../../enterprise/meta/include/functions_meta.php:614 +#: ../../enterprise/godmode/setup/setup_auth.php:346 +#: ../../include/functions_config.php:579 msgid "Automatically assigned no hierarchy" msgstr "自動的に割り当てられた階層なし" -#: ../../enterprise/meta/include/functions_meta.php:603 -#: ../../enterprise/godmode/setup/setup_auth.php:569 -#: ../../enterprise/godmode/setup/setup_auth.php:1369 -#: ../../include/functions_config.php:561 +#: ../../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 msgid "Autocreate blacklist" msgstr "ブラックリストの自動作成" -#: ../../enterprise/meta/include/functions_meta.php:613 -#: ../../enterprise/meta/include/functions_meta.php:915 -#: ../../godmode/users/configure_user.php:1570 -#: ../../godmode/setup/setup_auth.php:369 ../../include/functions_config.php:773 -#: ../../operation/users/user_edit.php:503 +#: ../../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 msgid "Double authentication" msgstr "二段階認証" -#: ../../enterprise/meta/include/functions_meta.php:623 +#: ../../enterprise/meta/include/functions_meta.php:644 msgid "2FA_all_users" msgstr "全ユーザ二段階認証" -#: ../../enterprise/meta/include/functions_meta.php:635 -#: ../../enterprise/meta/include/functions_meta.php:928 -#: ../../include/functions_config.php:781 ../../include/functions_config.php:787 +#: ../../enterprise/meta/include/functions_meta.php:656 +#: ../../enterprise/meta/include/functions_meta.php:954 +#: ../../include/functions_config.php:807 ../../include/functions_config.php:813 msgid "Session timeout" msgstr "セッションタイムアウト" -#: ../../enterprise/meta/include/functions_meta.php:649 -#: ../../enterprise/meta/include/functions_meta.php:1113 +#: ../../enterprise/meta/include/functions_meta.php:670 +#: ../../enterprise/meta/include/functions_meta.php:1148 #: ../../enterprise/godmode/setup/setup_auth.php:82 -#: ../../enterprise/godmode/setup/setup_auth.php:348 -#: ../../include/functions_config.php:678 ../../include/functions_config.php:794 +#: ../../enterprise/godmode/setup/setup_auth.php:441 +#: ../../include/functions_config.php:704 ../../include/functions_config.php:820 msgid "Save Password" msgstr "パスワードを保存" -#: ../../enterprise/meta/include/functions_meta.php:666 -#: ../../enterprise/godmode/setup/setup_auth.php:577 -#: ../../enterprise/godmode/setup/setup_auth.php:1377 -#: ../../include/functions_config.php:565 +#: ../../enterprise/meta/include/functions_meta.php:682 +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 msgid "Active directory server" msgstr "アクティブディレクトリサーバ" -#: ../../enterprise/meta/include/functions_meta.php:676 -#: ../../enterprise/godmode/setup/setup_auth.php:583 -#: ../../enterprise/godmode/setup/setup_auth.php:1383 -#: ../../include/functions_config.php:569 +#: ../../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 msgid "Active directory port" msgstr "アクティブディレクトリポート" -#: ../../enterprise/meta/include/functions_meta.php:686 -#: ../../enterprise/meta/include/functions_meta.php:970 -#: ../../enterprise/godmode/setup/setup_auth.php:589 -#: ../../enterprise/godmode/setup/setup_auth.php:1389 -#: ../../godmode/setup/setup_auth.php:138 ../../include/functions_config.php:573 -#: ../../include/functions_config.php:609 +#: ../../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 msgid "Start TLS" msgstr "TLS の開始" -#: ../../enterprise/meta/include/functions_meta.php:696 -#: ../../enterprise/godmode/setup/setup_auth.php:353 -#: ../../enterprise/godmode/setup/setup_auth.php:1146 -#: ../../include/functions_config.php:577 +#: ../../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 msgid "Advanced Config AD" msgstr "拡張 AD 設定" -#: ../../enterprise/meta/include/functions_meta.php:706 -#: ../../enterprise/godmode/setup/setup_auth.php:595 -#: ../../enterprise/godmode/setup/setup_auth.php:1395 -#: ../../include/functions_config.php:585 +#: ../../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 msgid "Domain" msgstr "ドメイン" -#: ../../enterprise/meta/include/functions_meta.php:716 -#: ../../enterprise/godmode/setup/setup_auth.php:413 -#: ../../enterprise/godmode/setup/setup_auth.php:1206 -#: ../../include/functions_config.php:589 +#: ../../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 msgid "Advanced Permisions AD" msgstr "AD 拡張パーミッション" -#: ../../enterprise/meta/include/functions_meta.php:726 -#: ../../enterprise/godmode/setup/setup_auth.php:129 -#: ../../include/functions_config.php:593 +#: ../../enterprise/meta/include/functions_meta.php:752 +#: ../../enterprise/godmode/setup/setup_auth.php:151 +#: ../../include/functions_config.php:619 msgid "Advanced Permissions LDAP" msgstr "LDAP 拡張パーミッション" -#: ../../enterprise/meta/include/functions_meta.php:736 -#: ../../enterprise/godmode/setup/setup_auth.php:106 -#: ../../include/functions_config.php:581 +#: ../../enterprise/meta/include/functions_meta.php:762 +#: ../../enterprise/godmode/setup/setup_auth.php:128 +#: ../../include/functions_config.php:607 msgid "Advanced Config LDAP" msgstr "LDAP 拡張設定" -#: ../../enterprise/meta/include/functions_meta.php:746 -#: ../../enterprise/meta/include/functions_meta.php:758 -#: ../../enterprise/godmode/setup/setup_auth.php:337 -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1178 +#: ../../enterprise/meta/include/functions_meta.php:772 +#: ../../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 msgid "Auto enable node access" msgstr "自動有効ノードアクセス" -#: ../../enterprise/meta/include/functions_meta.php:785 -#: ../../include/functions_config.php:733 +#: ../../enterprise/meta/include/functions_meta.php:811 +#: ../../include/functions_config.php:759 msgid "Saml path" msgstr "SAML パス" -#: ../../enterprise/meta/include/functions_meta.php:798 -#: ../../include/functions_config.php:737 +#: ../../enterprise/meta/include/functions_meta.php:824 +#: ../../include/functions_config.php:763 msgid "Saml source" msgstr "SAML ソース" -#: ../../enterprise/meta/include/functions_meta.php:811 -#: ../../include/functions_config.php:741 +#: ../../enterprise/meta/include/functions_meta.php:837 +#: ../../include/functions_config.php:767 msgid "Saml user id parameter" msgstr "SAML ユーザ ID パラメータ" -#: ../../enterprise/meta/include/functions_meta.php:824 -#: ../../include/functions_config.php:745 +#: ../../enterprise/meta/include/functions_meta.php:850 +#: ../../include/functions_config.php:771 msgid "Saml mail parameter" msgstr "SAML メールパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:837 -#: ../../include/functions_config.php:749 +#: ../../enterprise/meta/include/functions_meta.php:863 +#: ../../include/functions_config.php:775 msgid "Saml group name parameter" msgstr "SAML グループ名パラメータ" -#: ../../enterprise/meta/include/functions_meta.php:850 -#: ../../include/functions_config.php:753 +#: ../../enterprise/meta/include/functions_meta.php:876 +#: ../../include/functions_config.php:779 msgid "Saml attr type parameter" msgstr "SAML attr タイプパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:863 -#: ../../include/functions_config.php:757 +#: ../../enterprise/meta/include/functions_meta.php:889 +#: ../../include/functions_config.php:783 msgid "Saml profiles and tags parameter" msgstr "SAML プロファイルおよび タグパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:876 -#: ../../include/functions_config.php:769 +#: ../../enterprise/meta/include/functions_meta.php:902 +#: ../../include/functions_config.php:795 msgid "Saml profile and tag separator" msgstr "SAML プロファイルおよびタグセパレータ" -#: ../../enterprise/meta/include/functions_meta.php:889 +#: ../../enterprise/meta/include/functions_meta.php:915 msgid "SAML profile parameters" msgstr "SAML プロファイルパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:902 -#: ../../include/functions_config.php:765 +#: ../../enterprise/meta/include/functions_meta.php:928 +#: ../../include/functions_config.php:791 msgid "Saml tag parameter" msgstr "SAML タグパラメータ" -#: ../../enterprise/meta/include/functions_meta.php:940 -#: ../../godmode/setup/setup_auth.php:93 ../../include/functions_config.php:597 +#: ../../enterprise/meta/include/functions_meta.php:966 +#: ../../godmode/setup/setup_auth.php:90 ../../include/functions_config.php:623 msgid "LDAP server" msgstr "LDAP サーバ" -#: ../../enterprise/meta/include/functions_meta.php:950 -#: ../../godmode/setup/setup_auth.php:106 ../../include/functions_config.php:601 +#: ../../enterprise/meta/include/functions_meta.php:976 +#: ../../godmode/setup/setup_auth.php:107 ../../include/functions_config.php:627 msgid "LDAP port" msgstr "LDAP ポート" -#: ../../enterprise/meta/include/functions_meta.php:960 -#: ../../godmode/setup/setup_auth.php:124 ../../include/functions_config.php:605 +#: ../../enterprise/meta/include/functions_meta.php:986 +#: ../../godmode/setup/setup_auth.php:129 ../../include/functions_config.php:631 msgid "LDAP version" msgstr "LDAP バージョン" -#: ../../enterprise/meta/include/functions_meta.php:980 -#: ../../godmode/setup/setup_auth.php:149 ../../include/functions_config.php:613 +#: ../../enterprise/meta/include/functions_meta.php:1006 +#: ../../godmode/setup/setup_auth.php:157 ../../include/functions_config.php:639 msgid "Base DN" msgstr "ベース DN" -#: ../../enterprise/meta/include/functions_meta.php:990 -#: ../../godmode/setup/setup_auth.php:162 ../../include/functions_config.php:617 +#: ../../enterprise/meta/include/functions_meta.php:1016 +#: ../../godmode/setup/setup_auth.php:170 ../../include/functions_config.php:643 msgid "Login attribute" msgstr "ログイン属性" -#: ../../enterprise/meta/include/functions_meta.php:1000 -#: ../../godmode/setup/setup_auth.php:175 ../../include/functions_config.php:621 +#: ../../enterprise/meta/include/functions_meta.php:1026 +#: ../../godmode/setup/setup_auth.php:183 ../../include/functions_config.php:647 msgid "Admin LDAP login" msgstr "LDAP 管理者ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1010 -#: ../../godmode/setup/setup_auth.php:188 ../../include/functions_config.php:625 +#: ../../enterprise/meta/include/functions_meta.php:1036 +#: ../../godmode/setup/setup_auth.php:196 ../../include/functions_config.php:651 msgid "Admin LDAP password" msgstr "LDAP 管理者パスワード" -#: ../../enterprise/meta/include/functions_meta.php:1021 -#: ../../include/functions_config.php:689 +#: ../../enterprise/meta/include/functions_meta.php:1046 +#: ../../godmode/setup/setup_auth.php:215 +msgid "Ldap search timeout (secs)" +msgstr "LDAP 検索タイムアウト(秒)" + +#: ../../enterprise/meta/include/functions_meta.php:1056 +#: ../../include/functions_config.php:715 msgid "LDAP secondary enabled" msgstr "セカンダリ LDAP 有効" -#: ../../enterprise/meta/include/functions_meta.php:1030 -#: ../../godmode/setup/setup_auth.php:238 ../../include/functions_config.php:633 +#: ../../enterprise/meta/include/functions_meta.php:1065 +#: ../../godmode/setup/setup_auth.php:250 ../../include/functions_config.php:659 msgid "Secondary LDAP server" msgstr "セカンダリ LDAP サーバ" -#: ../../enterprise/meta/include/functions_meta.php:1040 -#: ../../godmode/setup/setup_auth.php:251 ../../include/functions_config.php:637 +#: ../../enterprise/meta/include/functions_meta.php:1075 +#: ../../godmode/setup/setup_auth.php:267 ../../include/functions_config.php:663 msgid "Secondary LDAP port" msgstr "セカンダリ LDAP ポート" -#: ../../enterprise/meta/include/functions_meta.php:1050 -#: ../../godmode/setup/setup_auth.php:269 ../../include/functions_config.php:641 +#: ../../enterprise/meta/include/functions_meta.php:1085 +#: ../../godmode/setup/setup_auth.php:289 ../../include/functions_config.php:667 msgid "Secondary LDAP version" msgstr "セカンダリ LDAP バージョン" -#: ../../enterprise/meta/include/functions_meta.php:1060 -#: ../../godmode/setup/setup_auth.php:283 +#: ../../enterprise/meta/include/functions_meta.php:1095 +#: ../../godmode/setup/setup_auth.php:306 msgid "Secondary start TLS" msgstr "セカンダリ開始 TLS" -#: ../../enterprise/meta/include/functions_meta.php:1070 -#: ../../include/functions_config.php:649 +#: ../../enterprise/meta/include/functions_meta.php:1105 +#: ../../include/functions_config.php:675 msgid "Secondary base DN" msgstr "セカンダリ base DN" -#: ../../enterprise/meta/include/functions_meta.php:1080 -#: ../../include/functions_config.php:653 +#: ../../enterprise/meta/include/functions_meta.php:1115 +#: ../../include/functions_config.php:679 msgid "Secondary login attribute" msgstr "セカンダリログイン属性" -#: ../../enterprise/meta/include/functions_meta.php:1090 -#: ../../godmode/setup/setup_auth.php:320 ../../include/functions_config.php:657 +#: ../../enterprise/meta/include/functions_meta.php:1125 +#: ../../godmode/setup/setup_auth.php:343 ../../include/functions_config.php:683 msgid "Admin secondary LDAP login" msgstr "セカンダリ LDAP 管理者ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1100 -#: ../../godmode/setup/setup_auth.php:333 ../../include/functions_config.php:661 +#: ../../enterprise/meta/include/functions_meta.php:1135 +#: ../../godmode/setup/setup_auth.php:356 ../../include/functions_config.php:687 msgid "Admin secondary LDAP password" msgstr "セカンダリ LDAP 管理者パスワード" -#: ../../enterprise/meta/include/functions_meta.php:1133 -#: ../../enterprise/godmode/setup/setup_auth.php:101 -#: ../../include/functions_config.php:669 +#: ../../enterprise/meta/include/functions_meta.php:1168 +#: ../../enterprise/godmode/setup/setup_auth.php:112 +#: ../../include/functions_config.php:695 msgid "Login user attribute" msgstr "ログインユーザアトリビュート" -#: ../../enterprise/meta/include/functions_meta.php:1143 -#: ../../include/functions_config.php:685 +#: ../../enterprise/meta/include/functions_meta.php:1178 +#: ../../include/functions_config.php:711 msgid "Save profile" msgstr "プロファイルの保存" -#: ../../enterprise/meta/include/functions_meta.php:1154 +#: ../../enterprise/meta/include/functions_meta.php:1189 #: ../../enterprise/godmode/setup/setup_auth.php:94 -#: ../../include/functions_config.php:673 +#: ../../include/functions_config.php:699 msgid "LDAP function" msgstr "LDAP 機能" -#: ../../enterprise/meta/include/functions_meta.php:1166 +#: ../../enterprise/meta/include/functions_meta.php:1201 #, php-format msgid "%s host" msgstr "%s ホスト" -#: ../../enterprise/meta/include/functions_meta.php:1176 -#: ../../enterprise/meta/include/functions_meta.php:1230 -#: ../../enterprise/meta/include/functions_meta.php:1284 -#: ../../enterprise/godmode/setup/setup_auth.php:1025 -#: ../../enterprise/godmode/setup/setup_auth.php:1057 -#: ../../include/functions_config.php:697 ../../include/functions_config.php:717 +#: ../../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 msgid "MySQL port" msgstr "MySQL ポート" -#: ../../enterprise/meta/include/functions_meta.php:1186 -#: ../../enterprise/meta/include/functions_meta.php:1240 -#: ../../enterprise/meta/include/functions_meta.php:1294 -#: ../../enterprise/meta/include/functions_meta.php:2087 -#: ../../enterprise/godmode/setup/setup_history.php:207 -#: ../../enterprise/godmode/setup/setup_auth.php:1031 -#: ../../enterprise/godmode/setup/setup_auth.php:1063 -#: ../../include/functions_config.php:701 ../../include/functions_config.php:721 -#: ../../include/functions_config.php:1557 +#: ../../enterprise/meta/include/functions_meta.php:1221 +#: ../../enterprise/meta/include/functions_meta.php:1275 +#: ../../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 msgid "Database name" msgstr "データベース名" -#: ../../enterprise/meta/include/functions_meta.php:1220 +#: ../../enterprise/meta/include/functions_meta.php:1255 msgid "Babel Enterprise host" msgstr "Babel Enterprise ホスト" -#: ../../enterprise/meta/include/functions_meta.php:1274 -#: ../../enterprise/godmode/setup/setup_auth.php:1051 -#: ../../include/functions_config.php:713 +#: ../../enterprise/meta/include/functions_meta.php:1309 +#: ../../enterprise/godmode/setup/setup_auth.php:1144 +#: ../../include/functions_config.php:739 msgid "Integria host" msgstr "Integria ホスト" -#: ../../enterprise/meta/include/functions_meta.php:1339 -#: ../../include/functions_config.php:947 +#: ../../enterprise/meta/include/functions_meta.php:1374 +#: ../../include/functions_config.php:981 msgid "Timestamp or time comparation" msgstr "タイムスタンプ表示" -#: ../../enterprise/meta/include/functions_meta.php:1349 +#: ../../enterprise/meta/include/functions_meta.php:1384 msgid "Graph color (min)" msgstr "グラフの色 (最小値)" -#: ../../enterprise/meta/include/functions_meta.php:1359 +#: ../../enterprise/meta/include/functions_meta.php:1394 msgid "Graph color (avg)" msgstr "グラフの色 (平均値)" -#: ../../enterprise/meta/include/functions_meta.php:1369 +#: ../../enterprise/meta/include/functions_meta.php:1404 msgid "Graph color (max)" msgstr "グラフの色 (最大値)" -#: ../../enterprise/meta/include/functions_meta.php:1404 -#: ../../include/functions_config.php:995 +#: ../../enterprise/meta/include/functions_meta.php:1439 +#: ../../include/functions_config.php:1029 msgid "Data precision for reports" msgstr "レポートのデータ精度" -#: ../../enterprise/meta/include/functions_meta.php:1519 +#: ../../enterprise/meta/include/functions_meta.php:1554 msgid "full scale charts" msgstr "フルスケールグラフ" -#: ../../enterprise/meta/include/functions_meta.php:1529 +#: ../../enterprise/meta/include/functions_meta.php:1564 msgid "type mode type charts" msgstr "タイプモードタイプグラフ" -#: ../../enterprise/meta/include/functions_meta.php:1549 +#: ../../enterprise/meta/include/functions_meta.php:1584 msgid "type mode zoom charts" msgstr "タイプモード拡大グラフ" -#: ../../enterprise/meta/include/functions_meta.php:1569 +#: ../../enterprise/meta/include/functions_meta.php:1604 +#: ../../include/functions_config.php:1270 +#: ../../include/functions_config.php:1274 +msgid "Random background" +msgstr "ランダム背景" + +#: ../../enterprise/meta/include/functions_meta.php:1624 msgid "Type of charts" msgstr "グラフのタイプ" -#: ../../enterprise/meta/include/functions_meta.php:1609 -#: ../../include/functions_config.php:1044 +#: ../../enterprise/meta/include/functions_meta.php:1664 +#: ../../include/functions_config.php:1078 msgid "Custom logo collapsed" msgstr "折り畳み時カスタムロゴ" -#: ../../enterprise/meta/include/functions_meta.php:1619 +#: ../../enterprise/meta/include/functions_meta.php:1674 msgid "Custom logo (white background)" msgstr "カスタムロゴ (白背景)" -#: ../../enterprise/meta/include/functions_meta.php:1639 -#: ../../include/functions_config.php:1052 +#: ../../enterprise/meta/include/functions_meta.php:1694 +#: ../../include/functions_config.php:1086 msgid "Custom logo login" msgstr "ログイン時のカスタムロゴ" -#: ../../enterprise/meta/include/functions_meta.php:1649 -#: ../../include/functions_config.php:1056 +#: ../../enterprise/meta/include/functions_meta.php:1704 +#: ../../include/functions_config.php:1090 msgid "Custom splash login" msgstr "カスタムスプラッシュログイン" -#: ../../enterprise/meta/include/functions_meta.php:1679 -#: ../../include/functions_config.php:1092 +#: ../../enterprise/meta/include/functions_meta.php:1734 +#: ../../include/functions_config.php:1126 msgid "Custom title1 login" msgstr "カスタムタイトル1 ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1689 -#: ../../include/functions_config.php:1096 +#: ../../enterprise/meta/include/functions_meta.php:1744 +#: ../../include/functions_config.php:1130 msgid "Custom title2 login" msgstr "カスタムタイトル2 ログイン" -#: ../../enterprise/meta/include/functions_meta.php:1699 -#: ../../include/functions_config.php:1084 +#: ../../enterprise/meta/include/functions_meta.php:1754 +#: ../../include/functions_config.php:1118 msgid "Meta custom title header" msgstr "メタカスタムタイトルヘッダ" -#: ../../enterprise/meta/include/functions_meta.php:1709 -#: ../../include/functions_config.php:1088 +#: ../../enterprise/meta/include/functions_meta.php:1764 +#: ../../include/functions_config.php:1122 msgid "Meta custom subtitle header" msgstr "メタカスタムサブタイトルヘッダ" -#: ../../enterprise/meta/include/functions_meta.php:1739 +#: ../../enterprise/meta/include/functions_meta.php:1794 msgid "Custom background login" msgstr "カスタムログイン背景" -#: ../../enterprise/meta/include/functions_meta.php:1749 +#: ../../enterprise/meta/include/functions_meta.php:1804 msgid "Custom product name" msgstr "カスタム製品名" -#: ../../enterprise/meta/include/functions_meta.php:1759 +#: ../../enterprise/meta/include/functions_meta.php:1814 msgid "Custom copyright notice" msgstr "カスタム著作権表示" -#: ../../enterprise/meta/include/functions_meta.php:1808 -#: ../../include/functions_config.php:1028 +#: ../../enterprise/meta/include/functions_meta.php:1863 +#: ../../include/functions_config.php:1062 msgid "Font path" msgstr "フォントパス" -#: ../../enterprise/meta/include/functions_meta.php:1818 -#: ../../include/functions_config.php:1466 +#: ../../enterprise/meta/include/functions_meta.php:1873 +#: ../../include/functions_config.php:1516 msgid "Use data multiplier" msgstr "データ乗数を使用する" -#: ../../enterprise/meta/include/functions_meta.php:1830 -#: ../../include/functions_config.php:1422 +#: ../../enterprise/meta/include/functions_meta.php:1885 +#: ../../include/functions_config.php:1472 msgid "Custom report info" msgstr "カスタムレポート情報" -#: ../../enterprise/meta/include/functions_meta.php:1840 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 -#: ../../include/functions_config.php:1438 +#: ../../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 msgid "Font family" msgstr "フォントファミリ" -#: ../../enterprise/meta/include/functions_meta.php:1880 -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:163 -#: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1454 +#: ../../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 msgid "Footer" msgstr "フッター" -#: ../../enterprise/meta/include/functions_meta.php:1915 -#: ../../include/functions_config.php:1152 +#: ../../enterprise/meta/include/functions_meta.php:1970 +#: ../../include/functions_config.php:1194 msgid "Use the legacy Visual Console" msgstr "レガシービジュアルコンソールの利用" -#: ../../enterprise/meta/include/functions_meta.php:1926 -#: ../../include/functions_config.php:1156 +#: ../../enterprise/meta/include/functions_meta.php:1981 +#: ../../include/functions_config.php:1198 msgid "Default expiration of the Visual Console item's cache" msgstr "ビジュアルコンソールキャッシュのデフォルト有効期間" -#: ../../enterprise/meta/include/functions_meta.php:1960 +#: ../../enterprise/meta/include/functions_meta.php:2020 msgid "Realtime stats" msgstr "リアルタイム統計" -#: ../../enterprise/meta/include/functions_meta.php:1990 -#: ../../godmode/setup/performance.php:579 ../../include/functions_config.php:864 +#: ../../enterprise/meta/include/functions_meta.php:2050 +#: ../../godmode/setup/performance.php:674 ../../include/functions_config.php:894 msgid "Use agent access graph" msgstr "エージェントアクセスグラフの利用" -#: ../../enterprise/meta/include/functions_meta.php:2000 +#: ../../enterprise/meta/include/functions_meta.php:2060 msgid "Default block size migration agents" msgstr "デフォルトエージェントマイグレーションブロックサイズ" -#: ../../enterprise/meta/include/functions_meta.php:2022 +#: ../../enterprise/meta/include/functions_meta.php:2082 msgid "Default block size execution event" msgstr "デフォルト実行イベントブロックサイズ" -#: ../../enterprise/meta/include/functions_meta.php:2033 +#: ../../enterprise/meta/include/functions_meta.php:2093 msgid "Default row limit in csv log" msgstr "デフォルト csv ログ行制限" -#: ../../enterprise/meta/include/functions_meta.php:2060 +#: ../../enterprise/meta/include/functions_meta.php:2140 msgid "Node address default" msgstr "デフォルトノードアドレス" -#: ../../enterprise/meta/include/functions_meta.php:2073 -#: ../../include/functions_config.php:1544 +#: ../../enterprise/meta/include/functions_meta.php:2153 +#: ../../include/functions_config.php:1642 msgid "Active and historical database cannot be the same." msgstr "メインとヒストリデータベースが異なります。" -#: ../../enterprise/meta/include/functions_meta.php:2077 -#: ../../enterprise/godmode/setup/setup_history.php:177 -#: ../../include/functions_config.php:1549 +#: ../../enterprise/meta/include/functions_meta.php:2157 +#: ../../enterprise/godmode/setup/setup_history.php:178 +#: ../../include/functions_config.php:1647 msgid "Host" msgstr "ホスト" -#: ../../enterprise/meta/include/functions_meta.php:2093 -#: ../../include/functions_config.php:1562 +#: ../../enterprise/meta/include/functions_meta.php:2173 +#: ../../include/functions_config.php:1660 msgid "Enable history database" msgstr "ヒストリデータベースの有効化" -#: ../../enterprise/meta/include/functions_meta.php:2098 -#: ../../include/functions_config.php:1566 +#: ../../enterprise/meta/include/functions_meta.php:2178 +#: ../../include/functions_config.php:1664 msgid "Enable history event" msgstr "ヒストリイベントの有効化" -#: ../../enterprise/meta/include/functions_meta.php:2103 -#: ../../enterprise/godmode/setup/setup_history.php:222 -#: ../../include/functions_config.php:1574 +#: ../../enterprise/meta/include/functions_meta.php:2183 +#: ../../enterprise/godmode/setup/setup_history.php:226 +#: ../../include/functions_config.php:1672 msgid "Database user" msgstr "データベースユーザ" -#: ../../enterprise/meta/include/functions_meta.php:2108 -#: ../../enterprise/godmode/setup/setup_history.php:237 -#: ../../include/functions_config.php:1578 +#: ../../enterprise/meta/include/functions_meta.php:2188 +#: ../../enterprise/godmode/setup/setup_history.php:242 +#: ../../include/functions_config.php:1676 msgid "Database password" msgstr "データベースパスワード" -#: ../../enterprise/meta/include/functions_meta.php:2126 -#: ../../include/functions_config.php:1607 +#: ../../enterprise/meta/include/functions_meta.php:2193 +#: ../../enterprise/meta/include/functions_meta.php:2198 +#: ../../enterprise/meta/include/functions_meta.php:2203 +#: ../../enterprise/meta/include/functions_meta.php:2208 +#: ../../enterprise/meta/include/functions_meta.php:2213 +msgid "Database advanced" +msgstr "高度なデータベース" + +#: ../../enterprise/meta/include/functions_meta.php:2231 +#: ../../include/functions_config.php:1705 msgid "Event Days" msgstr "イベント日数" -#: ../../enterprise/meta/include/functions_meta.php:2144 -#: ../../include/functions_config.php:1639 +#: ../../enterprise/meta/include/functions_meta.php:2249 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:143 +#: ../../include/functions_config.php:1737 msgid "Delay" msgstr "遅延" -#: ../../enterprise/meta/include/functions_meta.php:2177 -#: ../../include/functions_config.php:1671 +#: ../../enterprise/meta/include/functions_meta.php:2282 +#: ../../include/functions_config.php:1769 msgid "Historical database purge" msgstr "ヒストリデータベース削除" -#: ../../enterprise/meta/include/functions_meta.php:2186 -#: ../../include/functions_config.php:1679 +#: ../../enterprise/meta/include/functions_meta.php:2291 +#: ../../include/functions_config.php:1777 msgid "Historical database partitions" msgstr "ヒストリデータベースパーティション" -#: ../../enterprise/meta/include/functions_meta.php:2195 -#: ../../include/functions_config.php:1687 +#: ../../enterprise/meta/include/functions_meta.php:2300 +#: ../../include/functions_config.php:1785 msgid "Historical database events purge" msgstr "ヒストリデータベースイベント削除" -#: ../../enterprise/meta/include/functions_meta.php:2204 -#: ../../include/functions_config.php:1703 +#: ../../enterprise/meta/include/functions_meta.php:2309 +#: ../../include/functions_config.php:1801 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 +msgid "DB interface" +msgstr "DBインタフェース" + +#: ../../enterprise/meta/include/functions_meta.php:2598 +#: ../../enterprise/include/functions_policies.php:935 +#: ../../include/functions_reporting.php:7569 +#, php-format +msgid "Failed to connect to node %s" +msgstr "ノード %s への接続に失敗しました" + #: ../../enterprise/meta/include/functions_components_meta.php:80 #: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:103 +#: ../../godmode/modules/manage_nc_groups.php:66 ../../godmode/menu.php:106 msgid "Component groups" msgstr "コンポーネントグループ管理" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 -#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:178 +#: ../../enterprise/godmode/menu.php:83 ../../enterprise/godmode/menu.php:175 +#: ../../godmode/menu.php:181 msgid "Local components" msgstr "ローカルコンポーネント" @@ -12519,20 +12943,21 @@ msgstr "プラグイン管理" #: ../../enterprise/meta/include/functions_components_meta.php:113 #: ../../enterprise/meta/include/functions_components_meta.php:160 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 -#: ../../enterprise/include/functions_policies.php:3756 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:68 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:81 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:218 +#: ../../enterprise/include/functions_policies.php:3726 #: ../../godmode/modules/manage_inventory_modules.php:45 -#: ../../godmode/modules/manage_inventory_modules_form.php:37 -#: ../../godmode/menu.php:184 +#: ../../godmode/modules/manage_inventory_modules.php:58 +#: ../../godmode/modules/manage_inventory_modules_form.php:49 +#: ../../godmode/menu.php:187 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:99 -#: ../../godmode/servers/plugin.php:295 +#: ../../godmode/servers/plugin_registration.php:109 +#: ../../godmode/servers/plugin.php:346 msgid "Plugin registration" msgstr "プラグインの登録" @@ -12544,42 +12969,54 @@ msgstr "プラグイン作成" msgid "Edit plugin" msgstr "プラグイン編集" +#: ../../enterprise/meta/include/functions_components_meta.php:183 +#: ../../enterprise/meta/general/main_header.php:327 +#: ../../enterprise/meta/general/main_header.php:423 +#: ../../enterprise/meta/general/main_menu.php:538 +#: ../../enterprise/meta/general/main_menu.php:667 +#: ../../godmode/modules/manage_network_templates_form.php:32 +#: ../../godmode/modules/manage_inventory_modules_form.php:36 +#: ../../godmode/modules/manage_network_templates.php:39 +msgid "Module management" +msgstr "モジュール管理" + #: ../../enterprise/meta/include/functions_ui_meta.php:53 #, php-format msgid "%s - the Flexible Monitoring System" msgstr "%s - フレキシブルモニタリングシステム" -#: ../../enterprise/meta/include/functions_ui_meta.php:975 -#: ../../enterprise/godmode/services/services.elements.php:884 -#: ../../enterprise/godmode/services/services.elements.php:895 -#: ../../enterprise/godmode/setup/setup.php:564 -#: ../../enterprise/include/class/CommandCenter.class.php:473 -#: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:505 +#: ../../enterprise/meta/include/functions_ui_meta.php:1010 +#: ../../enterprise/godmode/services/services.elements.php:957 +#: ../../enterprise/godmode/services/services.elements.php:968 +#: ../../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/lib/Metaconsole/Node.php:541 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4142 -#: ../../godmode/users/configure_user.php:2132 -#: ../../godmode/users/configure_user.php:2202 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4151 +#: ../../godmode/users/configure_user.php:2067 +#: ../../godmode/users/configure_user.php:2136 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1282 -#: ../../include/ajax/double_auth.ajax.php:255 -#: ../../include/ajax/double_auth.ajax.php:353 -#: ../../include/ajax/double_auth.ajax.php:399 -#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2188 -#: ../../include/functions_menu.php:808 ../../include/functions_ui.php:290 -#: ../../include/class/SatelliteAgent.class.php:839 -#: ../../include/class/Diagnostics.class.php:1835 -#: ../../include/functions_events.php:2825 -#: ../../include/functions_events.php:3025 ../../index.php:1559 -#: ../../operation/users/user_edit.php:1163 -#: ../../operation/users/user_edit.php:1229 ../../general/register.php:157 +#: ../../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/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 +#: ../../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:279 +#: ../../godmode/menu.php:282 msgid "Commands" msgstr "コマンド" @@ -12587,29 +13024,52 @@ msgstr "コマンド" msgid "Calendar" msgstr "カレンダー" +#: ../../enterprise/meta/include/functions_alerts_meta.php:187 +msgid "Alert Management" +msgstr "アラート管理" + #: ../../enterprise/meta/include/reset_pass.php:93 -#: ../../enterprise/include/reset_pass.php:98 +#: ../../enterprise/include/reset_pass.php:187 msgid "User to reset password" msgstr "パスワードリセットするユーザ" #: ../../enterprise/meta/include/reset_pass.php:103 -#: ../../enterprise/meta/index.php:734 -#: ../../enterprise/include/reset_pass.php:108 ../../index.php:918 +#: ../../enterprise/meta/index.php:757 +#: ../../enterprise/include/reset_pass.php:195 ../../index.php:928 msgid "Reset password" msgstr "パスワードをリセット" +#: ../../enterprise/meta/include/reset_pass.php:139 +#: ../../enterprise/meta/general/login_page.php:327 +#: ../../enterprise/include/process_reset_pass.php:171 +#: ../../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 +#: ../../general/login_page.php:530 +msgid "ONE TOOL TO RULE THEM ALL" +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 +msgid "COMMAND CENTER" +msgstr "コマンドセンター" + #: ../../enterprise/meta/include/reset_pass.php:165 #: ../../enterprise/meta/include/reset_pass.php:168 -#: ../../enterprise/include/reset_pass.php:174 -#: ../../enterprise/include/reset_pass.php:177 +#: ../../enterprise/include/reset_pass.php:324 +#: ../../enterprise/include/reset_pass.php:327 msgid "Reset password failed" msgstr "パスワードリセットに失敗しました" #: ../../enterprise/meta/include/reset_pass.php:172 -#: ../../enterprise/meta/general/login_page.php:259 -#: ../../enterprise/meta/general/login_page.php:301 -#: ../../enterprise/include/reset_pass.php:181 ../../general/login_page.php:452 -#: ../../general/login_page.php:494 +#: ../../enterprise/meta/general/login_page.php:368 +#: ../../enterprise/meta/general/login_page.php:410 +#: ../../enterprise/include/reset_pass.php:331 ../../general/login_page.php:573 +#: ../../general/login_page.php:645 msgid "ERROR" msgstr "エラー" @@ -12675,7 +13135,7 @@ msgstr "関係の削除エラー" msgid "Relation deleted successfully" msgstr "関係を削除しました" -#: ../../enterprise/meta/index.php:206 ../../index.php:1468 +#: ../../enterprise/meta/index.php:221 ../../index.php:1492 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 @@ -12684,7 +13144,7 @@ msgstr "関係を削除しました" msgid "Connection with server has been lost" msgstr "サーバとの接続が切断されました" -#: ../../enterprise/meta/index.php:207 ../../index.php:1469 +#: ../../enterprise/meta/index.php:222 ../../index.php:1493 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 @@ -12697,73 +13157,73 @@ msgstr "" "サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡して" "ください。" -#: ../../enterprise/meta/index.php:330 ../../mobile/include/user.class.php:303 -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:373 +#: ../../enterprise/meta/index.php:345 ../../mobile/include/user.class.php:303 +#: ../../include/ajax/double_auth.ajax.php:515 ../../index.php:380 msgid "Invalid code" msgstr "不正なコード" -#: ../../enterprise/meta/index.php:342 ../../index.php:385 +#: ../../enterprise/meta/index.php:357 ../../index.php:392 msgid "The code shouldn't be empty" msgstr "コードは空にできません" -#: ../../enterprise/meta/index.php:355 ../../index.php:398 +#: ../../enterprise/meta/index.php:370 ../../index.php:405 msgid "Expired login" msgstr "ログイン期限切れ" -#: ../../enterprise/meta/index.php:362 ../../enterprise/meta/index.php:368 -#: ../../index.php:405 ../../index.php:411 +#: ../../enterprise/meta/index.php:377 ../../enterprise/meta/index.php:383 +#: ../../index.php:412 ../../index.php:418 msgid "Login error" msgstr "ログインエラー" -#: ../../enterprise/meta/index.php:659 ../../index.php:835 +#: ../../enterprise/meta/index.php:682 ../../index.php:845 msgid "Password changed successfully" msgstr "パスワードを変更しました" -#: ../../enterprise/meta/index.php:665 ../../index.php:841 +#: ../../enterprise/meta/index.php:688 ../../index.php:851 msgid "Failed to change password" msgstr "パスワード変更に失敗しました" -#: ../../enterprise/meta/index.php:679 ../../index.php:858 +#: ../../enterprise/meta/index.php:702 ../../index.php:868 msgid "Too much time since password change request" msgstr "パスワード変更要求から長時間経過しました" -#: ../../enterprise/meta/index.php:686 ../../index.php:865 +#: ../../enterprise/meta/index.php:709 ../../index.php:875 msgid "This user has not requested a password change" msgstr "このユーザはパスワード変更を要求していません" -#: ../../enterprise/meta/index.php:702 ../../index.php:892 +#: ../../enterprise/meta/index.php:725 ../../index.php:902 msgid "Id user cannot be empty" msgstr "ユーザIDは空にできません" -#: ../../enterprise/meta/index.php:710 ../../index.php:900 +#: ../../enterprise/meta/index.php:733 ../../index.php:910 msgid "Error in reset password request" msgstr "パスワードリセット要求エラー" -#: ../../enterprise/meta/index.php:718 ../../index.php:908 +#: ../../enterprise/meta/index.php:741 ../../index.php:918 msgid "This user doesn't have a valid email address" msgstr "このユーザは正しいメールアドレスがありません" -#: ../../enterprise/meta/index.php:735 ../../index.php:919 +#: ../../enterprise/meta/index.php:758 ../../index.php:929 msgid "This is an automatically sent message for user " msgstr "これは、次のユーザへの自動送信メッセージです: " -#: ../../enterprise/meta/index.php:738 ../../index.php:922 +#: ../../enterprise/meta/index.php:761 ../../index.php:932 msgid "Please click the link below to reset your password" msgstr "パスワードをリセットするには、以下のリンクをクリックしてください" -#: ../../enterprise/meta/index.php:740 ../../index.php:924 +#: ../../enterprise/meta/index.php:763 ../../index.php:934 msgid "Reset your password" msgstr "パスワードリセット" -#: ../../enterprise/meta/index.php:744 ../../index.php:928 +#: ../../enterprise/meta/index.php:767 ../../index.php:938 msgid "Please do not reply to this email." msgstr "このメールには返信しないでください。" -#: ../../enterprise/meta/index.php:750 ../../index.php:933 +#: ../../enterprise/meta/index.php:773 ../../index.php:943 msgid "Error at sending the email" msgstr "メール送信エラー" -#: ../../enterprise/meta/index.php:903 +#: ../../enterprise/meta/index.php:933 #, php-format msgid "" "System is not centralised, please go to %s to perform a database merge process." @@ -12771,79 +13231,83 @@ msgstr "" "システムは中央管理ではありません。データベースの統合処理を行うために %s へ行っ" "てください。" -#: ../../enterprise/meta/index.php:971 +#: ../../enterprise/meta/index.php:1001 #, php-format msgid "There are nodes with different MR than this (%d):" msgstr "こちら(%d)とは異なる MR を持つノードがあります: " -#: ../../enterprise/meta/index.php:980 ../../index.php:1223 +#: ../../enterprise/meta/index.php:1010 ../../index.php:1237 msgid "Please keep all environment updated to same version." msgstr "環境全体を同じバージョンにアップデートしてください。" -#: ../../enterprise/meta/index.php:1049 ../../enterprise/meta/index.php:1136 -#: ../../index.php:1326 +#: ../../enterprise/meta/index.php:1075 ../../enterprise/meta/index.php:1170 +#: ../../index.php:1340 msgid "Sorry! I can't find the page!" msgstr "ページが見つかりません" -#: ../../enterprise/meta/agentsearch.php:121 +#: ../../enterprise/meta/agentsearch.php:119 msgid "Search results for" msgstr "検索結果:" -#: ../../enterprise/meta/agentsearch.php:122 ../../operation/search_main.php:54 +#: ../../enterprise/meta/agentsearch.php:120 ../../operation/search_main.php:54 msgid "Agents found" msgstr "エージェントが見つかりました" -#: ../../enterprise/meta/agentsearch.php:143 +#: ../../enterprise/meta/agentsearch.php:141 #: ../../enterprise/godmode/reporting/aws_view.php:61 -#: ../../enterprise/operation/agentes/policy_view.php:399 -#: ../../enterprise/operation/agentes/tag_view.php:609 -#: ../../enterprise/operation/agentes/ver_agente.php:77 -#: ../../extensions/users_connected.php:146 ../../godmode/users/user_list.php:541 -#: ../../godmode/agentes/planned_downtime.editor.php:1209 +#: ../../enterprise/include/class/Omnishell.class.php:644 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:105 +#: ../../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 +#: ../../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:997 -#: ../../include/functions_treeview.php:668 -#: ../../include/functions_events.php:4233 ../../operation/search_users.php:46 +#: ../../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 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 -#: ../../operation/agentes/estado_agente.php:769 +#: ../../operation/agentes/estado_agente.php:1055 #: ../../operation/agentes/ver_agente.php:1046 -#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../operation/agentes/estado_generalagente.php:464 #: ../../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 msgid "Last contact" msgstr "最近の接続" -#: ../../enterprise/meta/agentsearch.php:308 +#: ../../enterprise/meta/agentsearch.php:306 msgid "There are no agents included in this group" msgstr "このグループに属しているエージェントが存在しません" -#: ../../enterprise/meta/agentsearch.php:322 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:604 -#: ../../operation/tree.php:420 +#: ../../enterprise/meta/agentsearch.php:320 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:650 +#: ../../operation/tree.php:468 msgid "Policies found" msgstr "ポリシーが見つかりました" -#: ../../enterprise/meta/agentsearch.php:417 -#: ../../enterprise/godmode/policies/policies.php:475 +#: ../../enterprise/meta/agentsearch.php:415 +#: ../../enterprise/godmode/policies/policies.php:543 #: ../../operation/search_policies.php:50 msgid "Policy updated" msgstr "ポリシーを更新しました" -#: ../../enterprise/meta/agentsearch.php:425 -#: ../../enterprise/godmode/policies/policies.php:483 +#: ../../enterprise/meta/agentsearch.php:423 +#: ../../enterprise/godmode/policies/policies.php:551 #: ../../operation/search_policies.php:58 msgid "Pending update policy only database" msgstr "データベースのみポリシー更新待ち" -#: ../../enterprise/meta/agentsearch.php:433 -#: ../../enterprise/godmode/policies/policies.php:491 +#: ../../enterprise/meta/agentsearch.php:431 +#: ../../enterprise/godmode/policies/policies.php:559 #: ../../operation/search_policies.php:66 msgid "Pending update policy" msgstr "ポリシー更新待ち" -#: ../../enterprise/meta/agentsearch.php:458 +#: ../../enterprise/meta/agentsearch.php:456 msgid "There are no policies included in this group" msgstr "このグループに含まれるポリシーがありません" @@ -12852,7 +13316,7 @@ msgstr "このグループに含まれるポリシーがありません" msgid "%s %s - %s - MR %s" msgstr "%s %s - %s - MR %s" -#: ../../enterprise/meta/general/footer.php:50 +#: ../../enterprise/meta/general/footer.php:50 ../../index.php:1459 msgid "Page generated at" msgstr "ページ更新日時:" @@ -12886,269 +13350,266 @@ msgstr "" #: ../../enterprise/meta/general/header.php:69 #: ../../enterprise/meta/general/header.php:75 #: ../../enterprise/meta/general/main_header.php:518 -#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:48 -#: ../../general/header.php:54 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:47 +#: ../../general/header.php:53 msgid "All systems" msgstr "全モニタシステム" #: ../../enterprise/meta/general/header.php:69 -#: ../../enterprise/meta/general/main_header.php:518 ../../general/header.php:48 +#: ../../enterprise/meta/general/main_header.php:518 ../../general/header.php:47 msgid "Down" msgstr "停止" #: ../../enterprise/meta/general/header.php:72 -#: ../../enterprise/meta/general/main_header.php:521 ../../general/header.php:51 +#: ../../enterprise/meta/general/main_header.php:521 ../../general/header.php:50 msgid "servers down" msgstr "停止中" #: ../../enterprise/meta/general/header.php:75 -#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:54 +#: ../../enterprise/meta/general/main_header.php:524 ../../general/header.php:53 msgid "Ready" msgstr "稼働中" #: ../../enterprise/meta/general/header.php:114 -#: ../../enterprise/meta/general/main_header.php:552 ../../general/header.php:235 +#: ../../enterprise/meta/general/main_header.php:552 ../../general/header.php:242 msgid "Configure autorefresh" msgstr "自動更新設定" -#: ../../enterprise/meta/general/header.php:141 -#: ../../enterprise/meta/general/header.php:153 +#: ../../enterprise/meta/general/header.php:142 +#: ../../enterprise/meta/general/header.php:154 #: ../../enterprise/meta/general/main_header.php:569 -#: ../../enterprise/meta/general/main_header.php:581 ../../general/header.php:301 -#: ../../general/header.php:320 +#: ../../enterprise/meta/general/main_header.php:581 ../../general/header.php:308 +#: ../../general/header.php:327 msgid "Disabled autorefresh" msgstr "自動更新の無効化" -#: ../../enterprise/meta/general/header.php:238 -#: ../../enterprise/meta/general/header.php:240 +#: ../../enterprise/meta/general/header.php:264 +#: ../../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:463 -#: ../../mobile/operation/home.php:148 ../../general/header.php:432 -#: ../../general/header.php:434 +#: ../../mobile/include/ui.class.php:225 ../../mobile/include/user.class.php:460 +#: ../../mobile/operation/home.php:148 ../../general/header.php:443 +#: ../../general/header.php:445 msgid "Logout" msgstr "ログアウト" +#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:36 +msgid "You cannot use this metaconsole until merging process is finished" +msgstr "統合処理が完了するまで、メタコンソールを使用することはできません" + +#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:61 +#, php-format +msgid "Please navigate to %s" +msgstr "%s へ移動してください" + +#: ../../enterprise/meta/general/metaconsole_maintenance_mode.php:69 +#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 +msgid "You will be automatically redirected when all tasks finish" +msgstr "全タスクが完了すると自動的にリダイレクトされます" + #: ../../enterprise/meta/general/main_header.php:97 -#: ../../enterprise/meta/general/main_menu.php:196 -#: ../../enterprise/operation/services/services.treeview_services.php:62 -#: ../../enterprise/operation/services/services.treeview_services.php:69 -#: ../../godmode/groups/group_list.php:349 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:173 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:717 -#: ../../operation/tree.php:138 ../../operation/menu.php:53 +#: ../../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 +#: ../../operation/tree.php:137 ../../operation/menu.php:179 msgid "Tree view" msgstr "ツリー表示" #: ../../enterprise/meta/general/main_header.php:109 -#: ../../enterprise/meta/general/main_menu.php:208 +#: ../../enterprise/meta/general/main_menu.php:211 msgid "Groups view" msgstr "グループビュー" #: ../../enterprise/meta/general/main_header.php:115 -#: ../../enterprise/meta/general/main_menu.php:214 -#: ../../operation/agentes/alerts_status.php:208 +#: ../../enterprise/meta/general/main_menu.php:217 msgid "Alerts view" msgstr "アラート表示" #: ../../enterprise/meta/general/main_header.php:121 -#: ../../enterprise/meta/general/main_menu.php:220 +#: ../../enterprise/meta/general/main_menu.php:223 msgid "Monitors view" msgstr "モニタ表示" -#: ../../enterprise/meta/general/main_header.php:127 -#: ../../enterprise/meta/general/main_menu.php:226 -msgid "Custom fields view" -msgstr "カスタムフィールド表示" - #: ../../enterprise/meta/general/main_header.php:167 #: ../../enterprise/meta/general/main_header.php:183 -#: ../../enterprise/meta/general/main_menu.php:302 +#: ../../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:15641 +#: ../../include/functions_reporting.php:15831 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "レポート" #: ../../enterprise/meta/general/main_header.php:174 -#: ../../enterprise/meta/general/main_menu.php:309 +#: ../../enterprise/meta/general/main_menu.php:320 msgid "Create new report" msgstr "新規レポート作成" #: ../../enterprise/meta/general/main_header.php:190 -#: ../../enterprise/meta/general/main_menu.php:319 +#: ../../enterprise/meta/general/main_menu.php:330 msgid "Report templates" msgstr "レポートテンプレート" #: ../../enterprise/meta/general/main_header.php:200 -#: ../../enterprise/meta/general/main_menu.php:329 +#: ../../enterprise/meta/general/main_menu.php:340 #: ../../enterprise/include/functions_reporting.php:124 -#: ../../include/functions_menu.php:509 +#: ../../include/functions_menu.php:584 msgid "Templates wizard" msgstr "テンプレートウィザード" #: ../../enterprise/meta/general/main_header.php:210 -#: ../../enterprise/meta/general/main_menu.php:371 -#: ../../enterprise/godmode/menu.php:116 -#: ../../enterprise/godmode/services/services.massive.meta.php:42 -#: ../../enterprise/godmode/services/services.service.php:510 -#: ../../enterprise/godmode/services/services.service.php:530 -#: ../../enterprise/godmode/services/services.elements.php:821 -#: ../../enterprise/godmode/services/services.elements.php:841 -#: ../../enterprise/godmode/services/services.massive.elements.php:44 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 +#: ../../enterprise/meta/general/main_menu.php:382 +#: ../../enterprise/meta/general/main_menu.php:383 +#: ../../enterprise/godmode/menu.php:121 +#: ../../enterprise/godmode/services/services.massive.meta.php:40 +#: ../../enterprise/godmode/services/services.service.php:521 +#: ../../enterprise/godmode/services/services.elements.php:920 +#: ../../enterprise/godmode/services/services.massive.elements.php:45 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:303 #: ../../enterprise/include/functions_groups.php:65 #: ../../enterprise/operation/menu.php:64 -#: ../../enterprise/operation/services/services.service.php:83 -#: ../../enterprise/operation/services/massive/services.delete.php:42 -#: ../../enterprise/operation/services/massive/services.delete.php:59 -#: ../../enterprise/operation/services/massive/services.create.php:595 -#: ../../enterprise/operation/services/massive/services.create.php:612 -#: ../../enterprise/operation/services/massive/services.create.php:990 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:105 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:122 -#: ../../enterprise/operation/services/massive/service.create.elements.php:243 -#: ../../enterprise/operation/services/massive/service.create.elements.php:260 -#: ../../enterprise/operation/services/massive/service.create.elements.php:385 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:146 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:163 -#: ../../enterprise/operation/services/services.service_map.php:97 -#: ../../enterprise/operation/services/services.service_map.php:144 -#: ../../enterprise/operation/services/services.treeview_services.php:62 -#: ../../enterprise/operation/services/services.treeview_services.php:82 -#: ../../enterprise/operation/services/services.list.php:58 -#: ../../enterprise/operation/services/services.list.php:75 -#: ../../enterprise/operation/services/services.table_services.php:38 -#: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../operation/agentes/ver_agente.php:1684 -#: ../../general/first_task/service_list.php:23 +#: ../../enterprise/operation/services/services.service.php:74 +#: ../../enterprise/operation/services/massive/services.delete.php:54 +#: ../../enterprise/operation/services/massive/services.create.php:607 +#: ../../enterprise/operation/services/massive/services.create.php:987 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:117 +#: ../../enterprise/operation/services/massive/service.create.elements.php:255 +#: ../../enterprise/operation/services/massive/service.create.elements.php:381 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:158 +#: ../../enterprise/operation/services/services.service_map.php:88 +#: ../../enterprise/operation/services/services.service_map.php:134 +#: ../../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 +#: ../../general/first_task/service_list.php:38 +#: ../../general/first_task/service_list.php:41 msgid "Services" msgstr "サービス" +#: ../../enterprise/meta/general/main_header.php:232 +#: ../../enterprise/meta/general/logon_ok.php:91 +#: ../../enterprise/meta/general/main_menu.php:427 +#: ../../enterprise/meta/general/main_menu.php:428 +msgid "Screens" +msgstr "画面" + #: ../../enterprise/meta/general/main_header.php:240 -#: ../../enterprise/meta/general/main_menu.php:388 -#: ../../enterprise/include/functions_enterprise.php:463 +#: ../../enterprise/meta/general/main_menu.php:436 +#: ../../enterprise/include/functions_enterprise.php:443 #: ../../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 -#: ../../general/first_task/map_builder.php:31 +#: ../../general/first_task/map_builder.php:41 msgid "Visual Console" msgstr "ビジュアルコンソール" #: ../../enterprise/meta/general/main_header.php:247 -#: ../../enterprise/meta/general/main_menu.php:395 -#: ../../godmode/reporting/visual_console_favorite.php:118 +#: ../../enterprise/meta/general/main_menu.php:443 +#: ../../godmode/reporting/visual_console_favorite.php:117 msgid "Favourite Visual Console" msgstr "お気に入りのビジュアルコンソール" #: ../../enterprise/meta/general/main_header.php:255 -#: ../../enterprise/meta/general/main_menu.php:403 +#: ../../enterprise/meta/general/main_menu.php:451 msgid "Template Visual Console" msgstr "ビジュアルコンソールテンプレート" #: ../../enterprise/meta/general/main_header.php:262 -#: ../../enterprise/meta/general/main_menu.php:410 +#: ../../enterprise/meta/general/main_menu.php:458 msgid "Wizard Visual Console" msgstr "ビジュアルコンソールウィザード" #: ../../enterprise/meta/general/main_header.php:275 -#: ../../enterprise/meta/general/logon_ok.php:37 -#: ../../enterprise/meta/general/main_menu.php:425 -#: ../../enterprise/include/functions_enterprise.php:459 -#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:151 -#: ../../godmode/setup/setup.php:271 ../../include/functions_reports.php:913 -#: ../../include/functions_reports.php:917 -#: ../../include/functions_reports.php:921 +#: ../../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 +#: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 #: ../../include/functions_reports.php:925 +#: ../../include/functions_reports.php:929 +#: ../../include/functions_reports.php:933 +#: ../../include/functions_reports.php:937 msgid "Netflow" msgstr "Netflow" #: ../../enterprise/meta/general/main_header.php:281 -#: ../../enterprise/meta/general/main_menu.php:433 +#: ../../enterprise/meta/general/main_menu.php:480 msgid "Live view" msgstr "ライブビュー" #: ../../enterprise/meta/general/main_header.php:315 #: ../../enterprise/meta/general/main_header.php:417 -#: ../../enterprise/meta/general/main_menu.php:479 -#: ../../enterprise/meta/general/main_menu.php:606 +#: ../../enterprise/meta/general/main_menu.php:532 +#: ../../enterprise/meta/general/main_menu.php:661 msgid "Agent management" msgstr "エージェント管理" -#: ../../enterprise/meta/general/main_header.php:327 -#: ../../enterprise/meta/general/main_header.php:423 -#: ../../enterprise/meta/general/main_menu.php:485 -#: ../../enterprise/meta/general/main_menu.php:612 -#: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../godmode/modules/manage_network_templates_form.php:32 -#: ../../godmode/modules/manage_nc_groups.php:40 -#: ../../godmode/modules/manage_inventory_modules.php:45 -#: ../../godmode/modules/manage_network_components.php:291 -#: ../../godmode/modules/manage_inventory_modules_form.php:37 -#: ../../godmode/modules/module_list.php:29 -#: ../../godmode/modules/manage_network_templates.php:39 -msgid "Module management" -msgstr "モジュール管理" - #: ../../enterprise/meta/general/main_header.php:333 #: ../../enterprise/meta/general/main_header.php:439 -#: ../../enterprise/meta/general/main_menu.php:491 -#: ../../enterprise/meta/general/main_menu.php:635 +#: ../../enterprise/meta/general/main_menu.php:544 +#: ../../enterprise/meta/general/main_menu.php:690 msgid "Alert management" msgstr "アラート管理" #: ../../enterprise/meta/general/main_header.php:339 -#: ../../enterprise/meta/general/main_menu.php:497 +#: ../../enterprise/meta/general/main_menu.php:550 msgid "Component management" msgstr "コンポーネント管理" #: ../../enterprise/meta/general/main_header.php:345 -#: ../../enterprise/meta/general/main_menu.php:509 -#: ../../enterprise/meta/general/main_menu.php:626 +#: ../../enterprise/meta/general/main_menu.php:562 +#: ../../enterprise/meta/general/main_menu.php:681 msgid "Policy management" msgstr "ポリシー管理" #: ../../enterprise/meta/general/main_header.php:351 -#: ../../enterprise/meta/general/main_menu.php:515 +#: ../../enterprise/meta/general/main_menu.php:568 msgid "Category management" msgstr "カテゴリ管理" #: ../../enterprise/meta/general/main_header.php:357 #: ../../enterprise/meta/general/main_header.php:430 -#: ../../enterprise/meta/general/main_menu.php:521 -#: ../../enterprise/meta/general/main_menu.php:619 +#: ../../enterprise/meta/general/main_menu.php:574 +#: ../../enterprise/meta/general/main_menu.php:674 msgid "Server management" msgstr "サーバ管理" #: ../../enterprise/meta/general/main_header.php:363 -#: ../../enterprise/meta/general/main_menu.php:547 msgid "Command Center" msgstr "コマンドセンター" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:388 +#: ../../enterprise/meta/general/main_menu.php:708 ../../godmode/menu.php:406 +#: ../../godmode/setup/license.php:59 msgid "License" msgstr "ライセンス" #: ../../enterprise/meta/general/main_header.php:375 -#: ../../enterprise/meta/general/main_menu.php:662 -#: ../../enterprise/meta/general/main_menu.php:688 +#: ../../enterprise/meta/general/main_menu.php:714 +#: ../../enterprise/meta/general/main_menu.php:749 msgid "Metasetup" msgstr "メタセットアップ" #: ../../enterprise/meta/general/main_header.php:381 #: ../../enterprise/meta/general/main_header.php:448 -#: ../../enterprise/meta/general/main_menu.php:668 -#: ../../enterprise/meta/general/main_menu.php:694 -#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:410 -#: ../../godmode/menu.php:528 ../../general/links_menu.php:17 +#: ../../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 msgid "Links" msgstr "リンク" #: ../../enterprise/meta/general/main_header.php:458 -#: ../../enterprise/meta/general/main_menu.php:725 -#: ../../godmode/extensions.php:28 +#: ../../enterprise/meta/general/main_menu.php:806 +#: ../../enterprise/meta/general/main_menu.php:807 +#: ../../enterprise/extensions/csv_import_group/main.php:23 +#: ../../extensions/extension_uploader.php:30 +#: ../../extensions/api_checker.php:200 ../../extensions/files_repo.php:132 +#: ../../extensions/dbmanager.php:102 ../../extensions/pandora_logs.php:86 +#: ../../godmode/extensions.php:29 msgid "Extensions" msgstr "拡張" @@ -13156,62 +13617,33 @@ msgstr "拡張" msgid "Audit Logs" msgstr "監査ログ" -#: ../../enterprise/meta/general/logon_ok.php:66 +#: ../../enterprise/meta/general/logon_ok.php:73 #: ../../enterprise/godmode/reporting/graph_template_list.php:128 #: ../../enterprise/godmode/reporting/graph_template_editor.php:103 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:144 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:272 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:285 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:306 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:319 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:340 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:387 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:277 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:304 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:330 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:74 -#: ../../enterprise/godmode/reporting/mysql_builder.php:76 -#: ../../enterprise/godmode/reporting/mysql_builder.php:203 +#: ../../enterprise/godmode/reporting/mysql_builder.php:75 +#: ../../enterprise/godmode/reporting/mysql_builder.php:158 +#: ../../godmode/reporting/create_container.php:205 #: ../../godmode/reporting/graph_builder.php:372 #: ../../godmode/reporting/graph_container.php:118 #: ../../godmode/reporting/graphs.php:129 -#: ../../godmode/reporting/reporting_builder.php:572 -#: ../../godmode/reporting/reporting_builder.php:579 -#: ../../godmode/reporting/reporting_builder.php:592 -#: ../../godmode/reporting/reporting_builder.php:3559 -#: ../../godmode/reporting/reporting_builder.php:3566 -#: ../../godmode/reporting/reporting_builder.php:3579 -#: ../../godmode/reporting/reporting_builder.php:3670 -#: ../../godmode/reporting/reporting_builder.php:3677 -#: ../../godmode/reporting/reporting_builder.php:3693 -#: ../../godmode/reporting/reporting_builder.php:3722 -#: ../../operation/menu.php:325 -#: ../../operation/reporting/reporting_viewer.php:211 -#: ../../operation/reporting/reporting_viewer.php:216 -#: ../../operation/reporting/reporting_viewer.php:229 +#: ../../godmode/reporting/reporting_builder.php:557 +#: ../../godmode/reporting/reporting_builder.php:3597 +#: ../../godmode/reporting/reporting_builder.php:3695 +#: ../../godmode/reporting/reporting_builder.php:3723 +#: ../../include/ajax/consoles.ajax.php:61 ../../operation/menu.php:450 +#: ../../operation/reporting/reporting_viewer.php:218 #: ../../operation/reporting/custom_reporting.php:23 #: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:510 +#: ../../operation/reporting/graph_viewer.php:556 msgid "Reporting" msgstr "レポート" -#: ../../enterprise/meta/general/logon_ok.php:99 -#: ../../enterprise/meta/general/main_menu.php:649 -#: ../../enterprise/meta/general/main_menu.php:681 -#: ../../enterprise/meta/general/main_menu.php:706 -#: ../../enterprise/godmode/policies/configure_policy.php:39 -#: ../../enterprise/godmode/servers/HA_cluster.php:70 -#: ../../enterprise/include/functions_policies.php:3715 -#: ../../godmode/update_manager/update_manager.php:57 -#: ../../godmode/update_manager/update_manager.php:87 -#: ../../godmode/agentes/configurar_agente.php:402 -#: ../../godmode/agentes/configurar_agente.php:720 ../../godmode/menu.php:328 -#: ../../godmode/menu.php:335 -#: ../../godmode/module_library/module_library_view.php:48 -#: ../../operation/agentes/estado_agente.php:201 -#: ../../operation/gis_maps/render_view.php:173 -msgid "Setup" -msgstr "セットアップ" - #: ../../enterprise/meta/general/noaccesssaml.php:135 #: ../../general/noaccesssaml.php:135 msgid "" @@ -13250,160 +13682,204 @@ msgstr "" "このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに" "記録されます。" -#: ../../enterprise/meta/general/main_menu.php:237 -#: ../../enterprise/godmode/policies/policies.php:543 +#: ../../enterprise/meta/general/main_menu.php:240 +#: ../../enterprise/godmode/policies/policies.php:611 #: ../../enterprise/include/functions_reporting_csv.php:804 +#: ../../enterprise/operation/agentes/ver_agente.php:230 #: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../godmode/agentes/configurar_agente.php:466 -#: ../../godmode/agentes/configurar_agente.php:736 -#: ../../godmode/setup/setup_integria.php:314 -#: ../../include/functions_reports.php:878 -#: ../../include/functions_reports.php:885 -#: ../../include/functions_reports.php:892 -#: ../../include/functions_reports.php:893 +#: ../../godmode/agentes/configurar_agente.php:468 +#: ../../godmode/agentes/configurar_agente.php:725 +#: ../../godmode/setup/setup_integria.php:366 +#: ../../include/functions_reports.php:890 #: ../../include/functions_reports.php:897 -#: ../../include/functions_reporting.php:3020 -#: ../../operation/agentes/ver_agente.php:1463 ../../operation/menu.php:77 -#: ../../operation/inventory/inventory.php:140 +#: ../../include/functions_reports.php:904 +#: ../../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 msgid "Inventory" msgstr "インベントリ" -#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:439 +#: ../../enterprise/meta/general/main_menu.php:277 +#: ../../include/ajax/events.php:2320 ../../operation/events/events.php:1604 +msgid "Events list" +msgstr "イベント一覧" + +#: ../../enterprise/meta/general/main_menu.php:285 +#: ../../operation/events/events.php:1516 msgid "Sound Console" msgstr "サウンドコンソール" -#: ../../enterprise/meta/general/main_menu.php:276 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 -#: ../../godmode/menu.php:51 ../../godmode/setup/setup_ehorus.php:112 -#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2391 -#: ../../operation/users/user_edit.php:811 -#: ../../operation/users/user_edit.php:857 ../../operation/menu.php:440 +#: ../../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 msgid "Start" msgstr "開始" -#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:442 +#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:573 +#: ../../operation/events/events.php:1519 msgid "No alert" msgstr "アラートなし" -#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:443 +#: ../../enterprise/meta/general/main_menu.php:289 ../../operation/menu.php:574 +#: ../../operation/events/events.php:1520 msgid "Silence alarm" msgstr "サイレントアラーム" -#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:452 -#: ../../operation/events/sound_events.php:63 +#: ../../enterprise/meta/general/main_menu.php:298 msgid "Sound Events" msgstr "サウンドイベント" -#: ../../enterprise/meta/general/main_menu.php:351 -#: ../../enterprise/godmode/reporting/mysql_builder.php:80 -#: ../../enterprise/godmode/reporting/mysql_builder.php:207 -#: ../../enterprise/operation/menu.php:130 +#: ../../enterprise/meta/general/main_menu.php:362 +#: ../../enterprise/godmode/reporting/mysql_builder.php:79 +#: ../../enterprise/godmode/reporting/mysql_builder.php:162 +#: ../../enterprise/operation/menu.php:141 msgid "Custom SQL" msgstr "カスタム SQL" -#: ../../enterprise/meta/general/main_menu.php:360 -#: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:525 +#: ../../enterprise/meta/general/main_menu.php:371 +#: ../../operation/messages/message_list.php:86 +#: ../../operation/messages/message_edit.php:98 ../../operation/menu.php:676 msgid "Messages" msgstr "メッセージ" -#: ../../enterprise/meta/general/main_menu.php:451 -#: ../../enterprise/godmode/menu.php:236 +#: ../../enterprise/meta/general/main_menu.php:409 +#: ../../enterprise/operation/services/services.list.php:57 +msgid "List of services" +msgstr "サービス一覧" + +#: ../../enterprise/meta/general/main_menu.php:498 +#: ../../enterprise/meta/general/main_menu.php:499 +#: ../../enterprise/godmode/menu.php:261 msgid "Alert correlation" msgstr "アラート相関" -#: ../../enterprise/meta/general/main_menu.php:472 -#: ../../enterprise/meta/general/main_menu.php:560 -#: ../../enterprise/meta/general/main_menu.php:580 +#: ../../enterprise/meta/general/main_menu.php:504 +#: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:286 +#: ../../include/functions_events.php:4548 +msgid "Alert details" +msgstr "アラート詳細" + +#: ../../enterprise/meta/general/main_menu.php:524 +#: ../../enterprise/meta/general/main_menu.php:525 +#: ../../enterprise/meta/general/main_menu.php:613 +#: ../../enterprise/meta/general/main_menu.php:614 +#: ../../enterprise/meta/general/main_menu.php:634 +#: ../../enterprise/meta/general/main_menu.php:635 msgid "Centralised management" msgstr "中央管理" -#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:201 -#: ../../godmode/massive/massive_operations.php:312 +#: ../../enterprise/meta/general/main_menu.php:580 ../../godmode/menu.php:204 +#: ../../godmode/massive/massive_operations.php:313 +#: ../../godmode/massive/massive_operations.php:336 +#: ../../godmode/massive/massive_operations.php:342 +#: ../../godmode/massive/massive_operations.php:358 msgid "Bulk operations" msgstr "一括操作" -#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:408 +#: ../../enterprise/meta/general/main_menu.php:600 +msgid "Merging Tool" +msgstr "マージツール" + +#: ../../enterprise/meta/general/main_menu.php:727 +#: ../../enterprise/meta/general/main_menu.php:762 +#: ../../enterprise/meta/general/main_menu.php:789 +msgid "List of Links" +msgstr "リンク一覧" + +#: ../../enterprise/meta/general/main_menu.php:859 ../../godmode/menu.php:426 msgid "System audit log" msgstr "システム監査ログ" -#: ../../enterprise/meta/general/login_page.php:109 -#: ../../general/login_page.php:307 +#: ../../enterprise/meta/general/main_menu.php:869 +#: ../../enterprise/meta/general/main_menu.php:870 ../../godmode/menu.php:608 +msgid "About" +msgstr "情報" + +#: ../../enterprise/meta/general/login_page.php:115 +#: ../../enterprise/meta/general/login_page.php:118 +#: ../../enterprise/include/process_reset_pass.php:77 +#: ../../enterprise/include/reset_pass.php:135 ../../general/login_page.php:182 +#: ../../general/login_page.php:185 +msgid "Docs" +msgstr "ドキュメント" + +#: ../../enterprise/meta/general/login_page.php:181 +#: ../../general/login_page.php:388 msgid "Authentication code" msgstr "認証コード" -#: ../../enterprise/meta/general/login_page.php:112 -#: ../../mobile/include/user.class.php:496 ../../general/login_page.php:310 +#: ../../enterprise/meta/general/login_page.php:185 +#: ../../mobile/include/user.class.php:493 ../../general/login_page.php:393 msgid "Check code" msgstr "コードの確認" -#: ../../enterprise/meta/general/login_page.php:146 -#: ../../enterprise/meta/general/login_page.php:187 -#: ../../mobile/include/user.class.php:407 ../../general/login_page.php:291 +#: ../../enterprise/meta/general/login_page.php:229 +#: ../../enterprise/meta/general/login_page.php:288 +#: ../../mobile/include/user.class.php:404 msgid "Login" msgstr "ログイン" -#: ../../enterprise/meta/general/login_page.php:154 -#: ../../mobile/include/user.class.php:427 ../../general/login_page.php:259 +#: ../../enterprise/meta/general/login_page.php:245 +#: ../../mobile/include/user.class.php:424 ../../general/login_page.php:316 msgid "Login with SAML" msgstr "SAML でログイン" -#: ../../enterprise/meta/general/login_page.php:195 -#: ../../general/login_page.php:334 ../../general/login_page.php:337 +#: ../../enterprise/meta/general/login_page.php:303 +#: ../../general/login_page.php:424 ../../general/login_page.php:427 msgid "Forgot your password?" msgstr "パスワードを忘れましたか?" -#: ../../enterprise/meta/general/login_page.php:209 -#: ../../include/functions_config.php:2526 -msgid "PANDORA FMS NEXT GENERATION" -msgstr "PANDORA FMS NEXT GENERATION" - -#: ../../enterprise/meta/general/login_page.php:235 -#: ../../enterprise/meta/general/login_page.php:238 -#: ../../enterprise/meta/general/login_page.php:252 -#: ../../enterprise/meta/general/login_page.php:255 -#: ../../enterprise/meta/general/login_page.php:272 -#: ../../enterprise/meta/general/login_page.php:275 -#: ../../general/login_page.php:340 ../../general/login_page.php:343 -#: ../../general/login_page.php:428 ../../general/login_page.php:431 -#: ../../general/login_page.php:445 ../../general/login_page.php:448 -#: ../../general/login_page.php:465 ../../general/login_page.php:468 +#: ../../enterprise/meta/general/login_page.php:344 +#: ../../enterprise/meta/general/login_page.php:347 +#: ../../enterprise/meta/general/login_page.php:361 +#: ../../enterprise/meta/general/login_page.php:364 +#: ../../enterprise/meta/general/login_page.php:381 +#: ../../enterprise/meta/general/login_page.php:384 +#: ../../general/login_page.php:548 ../../general/login_page.php:551 +#: ../../general/login_page.php:588 ../../general/login_page.php:591 msgid "Password reset" msgstr "パスワードのリセット" -#: ../../enterprise/meta/general/login_page.php:242 -#: ../../general/login_page.php:435 +#: ../../enterprise/meta/general/login_page.php:351 +#: ../../general/login_page.php:555 msgid "INFO" msgstr "情報" -#: ../../enterprise/meta/general/login_page.php:243 -#: ../../general/login_page.php:436 +#: ../../enterprise/meta/general/login_page.php:352 +#: ../../general/login_page.php:556 msgid "An email has been sent to your email address" msgstr "あなたのアドレス宛にメールを送信しました" -#: ../../enterprise/meta/general/login_page.php:279 -#: ../../general/login_page.php:472 +#: ../../enterprise/meta/general/login_page.php:388 +#: ../../general/login_page.php:595 msgid "SUCCESS" msgstr "成功" -#: ../../enterprise/meta/general/login_page.php:294 -#: ../../enterprise/meta/general/login_page.php:297 -#: ../../enterprise/include/functions_login.php:141 -#: ../../general/login_page.php:487 ../../general/login_page.php:490 -#: ../../general/login_page.php:644 ../../general/login_page.php:647 +#: ../../enterprise/meta/general/login_page.php:403 +#: ../../enterprise/meta/general/login_page.php:406 +#: ../../enterprise/include/functions_login.php:209 +#: ../../general/login_page.php:638 ../../general/login_page.php:641 +#: ../../general/login_page.php:803 ../../general/login_page.php:806 msgid "Login failed" msgstr "ログインに失敗しました" -#: ../../enterprise/meta/general/login_page.php:319 -#: ../../enterprise/meta/general/login_page.php:322 -#: ../../enterprise/meta/general/login_page.php:326 -#: ../../general/login_page.php:512 ../../general/login_page.php:515 -#: ../../general/login_page.php:519 +#: ../../enterprise/meta/general/login_page.php:428 +#: ../../enterprise/meta/general/login_page.php:431 +#: ../../enterprise/meta/general/login_page.php:435 +#: ../../general/login_page.php:669 ../../general/login_page.php:672 +#: ../../general/login_page.php:676 msgid "Logged out" msgstr "ログアウトしました。" -#: ../../enterprise/meta/general/login_page.php:327 -#: ../../mobile/include/user.class.php:365 ../../general/login_page.php:521 +#: ../../enterprise/meta/general/login_page.php:436 +#: ../../mobile/include/user.class.php:361 ../../general/login_page.php:678 #, php-format msgid "" "Your session has ended. Please close your browser window to close this %s " @@ -13412,7 +13888,7 @@ msgstr "" "セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを" "閉じてください。" -#: ../../enterprise/load_enterprise.php:568 ../../godmode/setup/license.php:109 +#: ../../enterprise/load_enterprise.php:568 ../../godmode/setup/license.php:111 msgid "License updated" msgstr "ライセンスを更新しました" @@ -13439,26 +13915,28 @@ msgstr "正しいライセンス取得は %s に連絡してください。" msgid "Or disable %s enterprise" msgstr "または、%s enterprise を無効化します" -#: ../../enterprise/load_enterprise.php:758 +#: ../../enterprise/load_enterprise.php:757 #: ../../enterprise/godmode/reporting/aws_view.php:181 -#: ../../enterprise/godmode/wizards/Cloud.class.php:325 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3176 -#: ../../godmode/setup/license.php:207 ../../mobile/operation/events.php:858 +#: ../../enterprise/godmode/wizards/Cloud.class.php:330 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3239 +#: ../../godmode/setup/license.php:310 ../../mobile/operation/events.php:858 #: ../../include/ajax/alert_list.ajax.php:280 #: ../../include/ajax/alert_list.ajax.php:306 -#: ../../include/class/SnmpConsole.class.php:493 -#: ../../include/class/SnmpConsole.class.php:545 -#: ../../include/class/SnmpConsole.class.php:888 -#: ../../operation/agentes/alerts_status.php:438 +#: ../../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 msgid "Validate" msgstr "承諾する" -#: ../../enterprise/load_enterprise.php:762 -#: ../../enterprise/load_enterprise.php:1057 +#: ../../enterprise/load_enterprise.php:767 +#: ../../enterprise/load_enterprise.php:1076 msgid "Request new licence" msgstr "新規ライセンスの要求" -#: ../../enterprise/load_enterprise.php:841 +#: ../../enterprise/load_enterprise.php:857 msgid "" "Metaconsole unreached

This " "node has a metaconsole license and cannot contact with the metaconsole." @@ -13467,9 +13945,9 @@ msgstr "" "

このノードはメタコンソールライセンスを持っていますがメタコンソールに接" "続できません。" -#: ../../enterprise/load_enterprise.php:858 -#: ../../enterprise/load_enterprise.php:864 +#: ../../enterprise/load_enterprise.php:874 #: ../../enterprise/load_enterprise.php:880 +#: ../../enterprise/load_enterprise.php:896 #, php-format msgid "" "License exceeded

This " @@ -13478,26 +13956,26 @@ msgstr "" "ライセンス超過

このライセン" "スは %d エージェントまでですが、%d エージェントが設定されています。" -#: ../../enterprise/load_enterprise.php:859 -#: ../../enterprise/load_enterprise.php:866 #: ../../enterprise/load_enterprise.php:875 #: ../../enterprise/load_enterprise.php:882 -#: ../../enterprise/load_enterprise.php:894 +#: ../../enterprise/load_enterprise.php:891 +#: ../../enterprise/load_enterprise.php:898 +#: ../../enterprise/load_enterprise.php:910 #, php-format msgid "Please contact %s to extend the license." msgstr "ライセンスを拡張するには %s へ連絡してください。" -#: ../../enterprise/load_enterprise.php:865 -#: ../../enterprise/load_enterprise.php:867 #: ../../enterprise/load_enterprise.php:881 #: ../../enterprise/load_enterprise.php:883 -#: ../../enterprise/load_enterprise.php:910 -#: ../../enterprise/load_enterprise.php:916 +#: ../../enterprise/load_enterprise.php:897 +#: ../../enterprise/load_enterprise.php:899 +#: ../../enterprise/load_enterprise.php:926 +#: ../../enterprise/load_enterprise.php:934 msgid "" "This console will work in limited mode. Enterprise features will not work." msgstr "このコンソールは制限モードで動作します。Enterprise 機能は動作しません。" -#: ../../enterprise/load_enterprise.php:874 +#: ../../enterprise/load_enterprise.php:890 #, php-format msgid "" "License exceeded

This " @@ -13506,7 +13984,7 @@ msgstr "" "ライセンス超過

このライセ" "ンスは %d エージェントまでですが、%d エージェントが設定されています。" -#: ../../enterprise/load_enterprise.php:893 +#: ../../enterprise/load_enterprise.php:909 #, php-format msgid "" "License exceeded

This " @@ -13515,8 +13993,8 @@ msgstr "" "ライセンス超過

このラインセ" "ンスは %d モジュールまでですが、%d モジュールが設定されています。" -#: ../../enterprise/load_enterprise.php:903 -#: ../../enterprise/load_enterprise.php:909 +#: ../../enterprise/load_enterprise.php:919 +#: ../../enterprise/load_enterprise.php:925 msgid "" "This license has expired. " "

You can not get updates until you renew the license." @@ -13524,18 +14002,19 @@ msgstr "" "このライセンスは期限切れです。 " "

ライセンスを更新するまでアップデートの入手はできません。" -#: ../../enterprise/load_enterprise.php:904 -#: ../../enterprise/load_enterprise.php:911 +#: ../../enterprise/load_enterprise.php:920 +#: ../../enterprise/load_enterprise.php:927 #, php-format msgid "Please contact %s to renew the license." msgstr "ライセンスを更新するには %s にご連絡ください。" -#: ../../enterprise/load_enterprise.php:914 -#: ../../enterprise/load_enterprise.php:1053 +#: ../../enterprise/load_enterprise.php:931 +#: ../../enterprise/load_enterprise.php:1072 +#: ../../godmode/users/configure_user.php:1008 msgid "Renew" msgstr "更新" -#: ../../enterprise/load_enterprise.php:923 +#: ../../enterprise/load_enterprise.php:941 #, php-format msgid "" "This license is outside of support. " @@ -13614,7 +14093,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:543 ../../godmode/users/user_list.php:726 +#: ../../godmode/users/user_list.php:579 ../../godmode/users/user_list.php:767 #: ../../operation/search_users.php:62 msgid "Admin" msgstr "管理者" @@ -13624,7 +14103,7 @@ msgid "There are no defined users" msgstr "定義済ユーザがありません" #: ../../enterprise/extensions/disabled/check_acls.php:134 -#: ../../godmode/menu.php:143 +#: ../../godmode/menu.php:146 ../../godmode/tag/tag.php:153 msgid "Module tags" msgstr "モジュールタグ" @@ -13640,8 +14119,8 @@ msgstr "この画面はadminユーザのみ参照できます。" msgid "Check ACL" msgstr "ACLチェック" -#: ../../enterprise/extensions/translate_string.php:168 -#: ../../enterprise/extensions/translate_string.php:380 +#: ../../enterprise/extensions/translate_string.php:173 +#: ../../enterprise/extensions/translate_string.php:443 msgid "Translate string" msgstr "翻訳文字列" @@ -13653,66 +14132,81 @@ msgstr "VMWare 拡張の初期化に失敗しました。" msgid "VMware View" msgstr "VMware 表示" -#: ../../enterprise/extensions/csv_import_group/main.php:23 -#: ../../enterprise/extensions/csv_import_group.php:69 +#: ../../enterprise/extensions/csv_import_group/main.php:32 +#: ../../enterprise/include/class/Omnishell.class.php:341 +#: ../../enterprise/operation/log/elasticsearch_interface.php:46 +#: ../../enterprise/tools/ipam/ipam.php:449 +#: ../../extensions/extension_uploader.php:39 +#: ../../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/setup/links.php:29 ../../godmode/setup/file_manager.php:56 +#: ../../include/class/EventSound.class.php:226 +#: ../../include/class/Diagnostics.class.php:159 +msgid "Admin tools" +msgstr "管理ツール" + +#: ../../enterprise/extensions/csv_import_group/main.php:36 +#: ../../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 +msgid "Extension manager" +msgstr "拡張マネージャ" + +#: ../../enterprise/extensions/csv_import_group/main.php:40 +#: ../../enterprise/extensions/csv_import_group.php:61 msgid "CSV import group" msgstr "CSV インポートグループ" -#: ../../enterprise/extensions/csv_import_group/main.php:48 +#: ../../enterprise/extensions/csv_import_group/main.php:61 #, php-format msgid "Created group %s" msgstr "グループを %s 作成しました" -#: ../../enterprise/extensions/csv_import_group/main.php:49 +#: ../../enterprise/extensions/csv_import_group/main.php:62 #, php-format msgid "Could not create group %s" msgstr "グループ %s を作成できませんでした" -#: ../../enterprise/extensions/csv_import_group/main.php:56 +#: ../../enterprise/extensions/csv_import_group/main.php:69 msgid "File processed" msgstr "ファイルを処理しました" -#: ../../enterprise/extensions/csv_import_group/main.php:59 +#: ../../enterprise/extensions/csv_import_group/main.php:72 msgid "Please syncronize groups to nodes" msgstr "グループをノードに同期してください" -#: ../../enterprise/extensions/csv_import_group/main.php:68 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:701 -#: ../../enterprise/tools/ipam/ipam_list.php:459 +#: ../../enterprise/extensions/csv_import_group/main.php:81 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:866 +#: ../../enterprise/tools/ipam/ipam_list.php:542 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:316 msgid "The CSV file must have the fields in the following order: " msgstr "CSV ファイルは、次の順番のフィールドを持つ必要があります: " -#: ../../enterprise/extensions/csv_import_group/main.php:84 -#: ../../enterprise/include/class/CSVImportAgents.class.php:146 -#: ../../enterprise/tools/ipam/ipam_network.php:116 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:719 -#: ../../enterprise/tools/ipam/ipam_list.php:50 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:393 +#: ../../enterprise/extensions/csv_import_group/main.php:97 +#: ../../enterprise/include/class/CSVImportAgents.class.php:149 +#: ../../enterprise/tools/ipam/ipam_network.php:103 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:882 +#: ../../enterprise/tools/ipam/ipam_list.php:177 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:502 msgid "Upload file" msgstr "ファイルのアップロード" -#: ../../enterprise/extensions/csv_import_group/main.php:87 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1400 -#: ../../enterprise/include/class/CSVImportAgents.class.php:163 -#: ../../enterprise/tools/ipam/ipam_network.php:125 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:728 -#: ../../enterprise/tools/ipam/ipam_list.php:59 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 +#: ../../enterprise/extensions/csv_import_group/main.php:109 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1432 +#: ../../enterprise/include/class/CSVImportAgents.class.php:166 +#: ../../enterprise/tools/ipam/ipam_network.php:117 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:896 +#: ../../enterprise/tools/ipam/ipam_list.php:191 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:513 msgid "Separator" msgstr "セパレータ" -#: ../../enterprise/extensions/csv_import_group/main.php:100 -#: ../../enterprise/tools/ipam/ipam_network.php:138 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:741 -#: ../../enterprise/tools/ipam/ipam_list.php:72 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:415 -msgid "Upload CSV file" -msgstr "CSV ファイルのアップロード" - -#: ../../enterprise/extensions/csv_import_group/main.php:105 -#: ../../enterprise/include/class/CSVImportAgents.class.php:198 -#: ../../include/functions_filemanager.php:853 +#: ../../enterprise/extensions/csv_import_group/main.php:131 +#: ../../enterprise/include/class/CSVImportAgents.class.php:208 +#: ../../include/functions_filemanager.php:899 msgid "Go" msgstr "実行" @@ -13836,9 +14330,9 @@ msgid "Success add '%s' action." msgstr "'%s' アクションを追加しました" #: ../../enterprise/extensions/resource_registration/functions.php:818 -#: ../../extensions/resource_registration.php:436 -#: ../../extensions/resource_registration.php:458 -#: ../../extensions/resource_registration.php:469 +#: ../../extensions/resource_registration.php:417 +#: ../../extensions/resource_registration.php:439 +#: ../../extensions/resource_registration.php:450 #, php-format msgid "Error add '%s' action." msgstr "アクション '%s' の追加に失敗しました。" @@ -13873,225 +14367,225 @@ msgstr "プロビジョニング使用量の上位 5つの VM" msgid "Top 5 VMs Network Usage" msgstr "ネットワーク使用率上位 5位内のVM" -#: ../../enterprise/extensions/vmware/vmware_view.php:669 +#: ../../enterprise/extensions/vmware/vmware_view.php:671 msgid "Host ESX" msgstr "ホスト ESX" -#: ../../enterprise/extensions/vmware/vmware_view.php:1009 +#: ../../enterprise/extensions/vmware/vmware_view.php:1029 #: ../../enterprise/include/functions_services.php:1972 -#: ../../enterprise/operation/agentes/policy_view.php:479 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/tag_view.php:970 -#: ../../enterprise/operation/agentes/tag_view.php:976 -#: ../../enterprise/operation/agentes/tag_view.php:1017 -#: ../../enterprise/operation/agentes/tag_view.php:1023 +#: ../../enterprise/operation/agentes/policy_view.php:478 +#: ../../enterprise/operation/agentes/policy_view.php:484 +#: ../../enterprise/operation/agentes/tag_view.php:1090 +#: ../../enterprise/operation/agentes/tag_view.php:1096 +#: ../../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:1406 ../../include/functions.php:1445 -#: ../../include/functions_modules.php:2883 -#: ../../include/functions_modules.php:2889 -#: ../../include/functions_modules.php:4195 -#: ../../include/functions_modules.php:4227 ../../include/functions_ui.php:3850 -#: ../../include/functions_ui.php:3916 ../../include/class/Tree.class.php:655 -#: ../../include/lib/Module.php:572 ../../include/functions_events.php:64 +#: ../../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/lib/Module.php:603 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 -#: ../../operation/agentes/status_monitor.php:1592 -#: ../../operation/agentes/status_monitor.php:1598 -#: ../../operation/agentes/status_monitor.php:1695 -#: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1815 -#: ../../operation/agentes/pandora_networkmap.view.php:1823 -#: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 -#: ../../operation/events/events.php:603 ../../operation/events/events.php:680 -#: ../../operation/events/events.php:706 +#: ../../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 msgid "NORMAL" msgstr "正常" -#: ../../enterprise/extensions/vmware/vmware_view.php:1014 +#: ../../enterprise/extensions/vmware/vmware_view.php:1034 #: ../../enterprise/include/functions_services.php:1980 -#: ../../enterprise/operation/agentes/policy_view.php:473 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/tag_view.php:984 -#: ../../enterprise/operation/agentes/tag_view.php:990 -#: ../../enterprise/operation/agentes/tag_view.php:1033 -#: ../../enterprise/operation/agentes/tag_view.php:1039 +#: ../../enterprise/operation/agentes/policy_view.php:472 +#: ../../enterprise/operation/agentes/policy_view.php:489 +#: ../../enterprise/operation/agentes/tag_view.php:1104 +#: ../../enterprise/operation/agentes/tag_view.php:1110 +#: ../../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:1394 ../../include/functions.php:1426 -#: ../../include/functions_modules.php:2877 -#: ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:4199 -#: ../../include/functions_modules.php:4219 ../../include/functions_ui.php:3856 -#: ../../include/functions_ui.php:3926 ../../include/class/Tree.class.php:625 -#: ../../include/lib/Module.php:556 ../../include/functions_events.php:67 +#: ../../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/lib/Module.php:587 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 -#: ../../operation/agentes/status_monitor.php:1606 -#: ../../operation/agentes/status_monitor.php:1619 -#: ../../operation/agentes/status_monitor.php:1711 -#: ../../operation/agentes/status_monitor.php:1717 -#: ../../operation/agentes/pandora_networkmap.view.php:1809 -#: ../../operation/agentes/pandora_networkmap.view.php:1828 -#: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 -#: ../../operation/events/events.php:578 ../../operation/events/events.php:686 -#: ../../operation/events/events.php:711 +#: ../../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 msgid "CRITICAL" msgstr "障害" -#: ../../enterprise/extensions/vmware/vmware_view.php:1019 +#: ../../enterprise/extensions/vmware/vmware_view.php:1039 #: ../../enterprise/include/functions_services.php:1988 -#: ../../enterprise/include/functions_login.php:34 -#: ../../enterprise/operation/agentes/policy_view.php:476 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/tag_view.php:998 -#: ../../enterprise/operation/agentes/tag_view.php:1004 -#: ../../enterprise/operation/agentes/tag_view.php:1049 -#: ../../enterprise/operation/agentes/tag_view.php:1055 +#: ../../enterprise/include/functions_login.php:51 +#: ../../enterprise/operation/agentes/policy_view.php:475 +#: ../../enterprise/operation/agentes/policy_view.php:494 +#: ../../enterprise/operation/agentes/tag_view.php:1118 +#: ../../enterprise/operation/agentes/tag_view.php:1124 +#: ../../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:1397 ../../include/functions.php:1433 -#: ../../include/functions_modules.php:2880 -#: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4203 -#: ../../include/functions_modules.php:4235 ../../include/functions_ui.php:3844 -#: ../../include/functions_ui.php:3921 ../../include/class/Tree.class.php:633 -#: ../../include/class/NetworkMap.class.php:2938 ../../include/lib/Module.php:560 +#: ../../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_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 -#: ../../operation/agentes/status_monitor.php:1627 -#: ../../operation/agentes/status_monitor.php:1640 -#: ../../operation/agentes/status_monitor.php:1727 -#: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1812 -#: ../../operation/agentes/pandora_networkmap.view.php:1833 -#: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:608 ../../operation/events/events.php:674 -#: ../../operation/events/events.php:728 +#: ../../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 msgid "WARNING" msgstr "警告" -#: ../../enterprise/extensions/vmware/vmware_view.php:1024 +#: ../../enterprise/extensions/vmware/vmware_view.php:1044 #: ../../enterprise/include/functions_services.php:2003 -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/tag_view.php:1017 -#: ../../enterprise/operation/agentes/tag_view.php:1023 -#: ../../enterprise/operation/agentes/tag_view.php:1033 -#: ../../enterprise/operation/agentes/tag_view.php:1039 -#: ../../enterprise/operation/agentes/tag_view.php:1049 -#: ../../enterprise/operation/agentes/tag_view.php:1055 +#: ../../enterprise/operation/agentes/policy_view.php:484 +#: ../../enterprise/operation/agentes/policy_view.php:489 +#: ../../enterprise/operation/agentes/policy_view.php:494 +#: ../../enterprise/operation/agentes/tag_view.php:1137 +#: ../../enterprise/operation/agentes/tag_view.php:1143 +#: ../../enterprise/operation/agentes/tag_view.php:1153 +#: ../../enterprise/operation/agentes/tag_view.php:1159 +#: ../../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:1410 ../../include/functions.php:1436 -#: ../../include/functions_modules.php:2889 -#: ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4207 ../../include/functions_ui.php:3863 -#: ../../include/functions_ui.php:3941 ../../include/class/Tree.class.php:639 -#: ../../include/lib/Module.php:563 ../../include/functions_events.php:81 +#: ../../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/lib/Module.php:594 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 -#: ../../operation/agentes/status_monitor.php:1648 -#: ../../operation/agentes/status_monitor.php:1661 -#: ../../operation/agentes/status_monitor.php:1695 -#: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/status_monitor.php:1711 -#: ../../operation/agentes/status_monitor.php:1717 -#: ../../operation/agentes/status_monitor.php:1727 -#: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1823 -#: ../../operation/agentes/pandora_networkmap.view.php:1828 -#: ../../operation/agentes/pandora_networkmap.view.php:1833 -#: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 -#: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 -#: ../../operation/events/events.php:614 ../../operation/events/events.php:693 -#: ../../operation/events/events.php:733 +#: ../../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 msgid "UNKNOWN" msgstr "不明" -#: ../../enterprise/extensions/vmware/vmware_view.php:1036 +#: ../../enterprise/extensions/vmware/vmware_view.php:1056 msgid "CPU Usage" msgstr "CPU 使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:1046 +#: ../../enterprise/extensions/vmware/vmware_view.php:1066 msgid "Memory Usage" msgstr "メモリ使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:1056 +#: ../../enterprise/extensions/vmware/vmware_view.php:1076 msgid "Disk I/O Rate" msgstr "ディスク I/O 速度" -#: ../../enterprise/extensions/vmware/vmware_view.php:1066 +#: ../../enterprise/extensions/vmware/vmware_view.php:1086 msgid "Network Usage" msgstr "ネットワーク使用率" -#: ../../enterprise/extensions/vmware/vmware_view.php:1169 +#: ../../enterprise/extensions/vmware/vmware_view.php:1189 msgid "Settings updated " msgstr "設定を更新しました " -#: ../../enterprise/extensions/vmware/vmware_view.php:1171 +#: ../../enterprise/extensions/vmware/vmware_view.php:1191 msgid "No changes in settings " msgstr "設定の変更がありません " -#: ../../enterprise/extensions/vmware/vmware_view.php:1179 +#: ../../enterprise/extensions/vmware/vmware_view.php:1203 msgid "CPU usage graphs" msgstr "CPU 利用量グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1180 -#: ../../enterprise/extensions/vmware/vmware_view.php:1186 -#: ../../enterprise/extensions/vmware/vmware_view.php:1192 -#: ../../enterprise/extensions/vmware/vmware_view.php:1198 +#: ../../enterprise/extensions/vmware/vmware_view.php:1205 +#: ../../enterprise/extensions/vmware/vmware_view.php:1215 +#: ../../enterprise/extensions/vmware/vmware_view.php:1225 +#: ../../enterprise/extensions/vmware/vmware_view.php:1235 msgid "Force minimum value" msgstr "最小値を強制" -#: ../../enterprise/extensions/vmware/vmware_view.php:1182 -#: ../../enterprise/extensions/vmware/vmware_view.php:1188 -#: ../../enterprise/extensions/vmware/vmware_view.php:1194 -#: ../../enterprise/extensions/vmware/vmware_view.php:1200 +#: ../../enterprise/extensions/vmware/vmware_view.php:1209 +#: ../../enterprise/extensions/vmware/vmware_view.php:1219 +#: ../../enterprise/extensions/vmware/vmware_view.php:1229 +#: ../../enterprise/extensions/vmware/vmware_view.php:1239 msgid "Force maximum value" msgstr "最大値を強制" -#: ../../enterprise/extensions/vmware/vmware_view.php:1185 +#: ../../enterprise/extensions/vmware/vmware_view.php:1213 msgid "Memory usage graphs" msgstr "メモリ利用量グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1191 +#: ../../enterprise/extensions/vmware/vmware_view.php:1223 msgid "Provisioning Usage graphs" msgstr "プロビジョニング利用量グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1197 +#: ../../enterprise/extensions/vmware/vmware_view.php:1233 msgid "Network usage graphs" msgstr "ネットワーク利用量グラフ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1208 +#: ../../enterprise/extensions/vmware/vmware_view.php:1252 msgid "Map items" msgstr "マップアイテム" -#: ../../enterprise/extensions/vmware/vmware_view.php:1209 +#: ../../enterprise/extensions/vmware/vmware_view.php:1254 msgid "Show datastores" msgstr "データストア表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1216 +#: ../../enterprise/extensions/vmware/vmware_view.php:1263 msgid "Show ESXis" msgstr "ESXi 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1223 +#: ../../enterprise/extensions/vmware/vmware_view.php:1272 msgid "Show VMs" msgstr "VM 表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1230 +#: ../../enterprise/extensions/vmware/vmware_view.php:1281 msgid "Font size (px)" msgstr "フォントサイズ (px)" -#: ../../enterprise/extensions/vmware/vmware_view.php:1232 +#: ../../enterprise/extensions/vmware/vmware_view.php:1285 msgid "Node radius (px)" msgstr "ノード半径 (px)" -#: ../../enterprise/extensions/vmware/vmware_view.php:1234 +#: ../../enterprise/extensions/vmware/vmware_view.php:1289 msgid "Node separation (rate)" msgstr "ノード分離 (割合)" -#: ../../enterprise/extensions/vmware/vmware_view.php:1239 +#: ../../enterprise/extensions/vmware/vmware_view.php:1296 msgid "" "Looking for VMware configuration? You can configure several tasks using " "Discovery Applications." @@ -14099,99 +14593,119 @@ msgstr "" "VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設" "定できます。" -#: ../../enterprise/extensions/vmware/vmware_view.php:1240 -#: ../../enterprise/extensions/vmware/vmware_view.php:1520 +#: ../../enterprise/extensions/vmware/vmware_view.php:1299 +#: ../../enterprise/extensions/vmware/vmware_view.php:1586 #: ../../enterprise/include/class/SAPView.class.php:626 msgid "this link" msgstr "このリンク" -#: ../../enterprise/extensions/vmware/vmware_view.php:1247 +#: ../../enterprise/extensions/vmware/vmware_view.php:1307 msgid "Graph settings" msgstr "グラフ設定" -#: ../../enterprise/extensions/vmware/vmware_view.php:1252 +#: ../../enterprise/extensions/vmware/vmware_view.php:1312 msgid "Map settings" msgstr "マップ設定" -#: ../../enterprise/extensions/vmware/vmware_view.php:1291 -#: ../../enterprise/extensions/vmware/vmware_view.php:1363 +#: ../../enterprise/extensions/vmware/vmware_view.php:1357 +#: ../../enterprise/extensions/vmware/vmware_view.php:1429 msgid "Welcome" msgstr "ようこそ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1301 -#: ../../enterprise/extensions/vmware/vmware_view.php:1343 +#: ../../enterprise/extensions/vmware/vmware_view.php:1367 +#: ../../enterprise/extensions/vmware/vmware_view.php:1409 #: ../../include/lib/Dashboard/Widgets/network_map.php:358 -#: ../../operation/gis_maps/render_view.php:178 +#: ../../operation/gis_maps/render_view.php:180 msgid "Map" msgstr "マップ" -#: ../../enterprise/extensions/vmware/vmware_view.php:1311 -#: ../../enterprise/extensions/vmware/vmware_view.php:1348 -#: ../../godmode/users/configure_user.php:1358 -#: ../../godmode/massive/massive_edit_users.php:281 -#: ../../mobile/include/functions_web.php:22 -#: ../../include/class/OrderInterpreter.class.php:219 -#: ../../operation/users/user_edit.php:440 ../../operation/menu.php:353 -msgid "Dashboard" -msgstr "ダッシュボード" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1322 +#: ../../enterprise/extensions/vmware/vmware_view.php:1388 msgid "ESX Detail" msgstr "ESX 詳細" -#: ../../enterprise/extensions/vmware/vmware_view.php:1353 +#: ../../enterprise/extensions/vmware/vmware_view.php:1419 msgid "ESX details" msgstr "ESX 詳細" -#: ../../enterprise/extensions/vmware/vmware_view.php:1358 +#: ../../enterprise/extensions/vmware/vmware_view.php:1424 msgid "VMware view options" msgstr "VMware 表示オプション" -#: ../../enterprise/extensions/vmware/vmware_view.php:1393 +#: ../../enterprise/extensions/vmware/vmware_view.php:1459 msgid "VMWare" msgstr "VMWare" -#: ../../enterprise/extensions/vmware/vmware_view.php:1498 +#: ../../enterprise/extensions/vmware/vmware_view.php:1564 msgid "" "Some ESX Hosts are not up to date, please check VMware plugin configuration." msgstr "" "一部の ESX ホストは最新ではありません。VMware プラグインの設定を確認してくださ" "い。" -#: ../../enterprise/extensions/vmware/vmware_view.php:1500 +#: ../../enterprise/extensions/vmware/vmware_view.php:1566 msgid "VMware plugin is working." msgstr "動作中 VMware プラグイン。" -#: ../../enterprise/extensions/vmware/vmware_view.php:1509 +#: ../../enterprise/extensions/vmware/vmware_view.php:1575 msgid "View VMware map" msgstr "VMware マップ表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1510 +#: ../../enterprise/extensions/vmware/vmware_view.php:1576 msgid "View VMware dashboard" msgstr "VMware ダッシュボード表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1511 +#: ../../enterprise/extensions/vmware/vmware_view.php:1577 msgid "View ESX Host statistics from" msgstr "次の ESX ホスト統計表示" -#: ../../enterprise/extensions/vmware/vmware_view.php:1518 +#: ../../enterprise/extensions/vmware/vmware_view.php:1584 msgid "There are no VMware information detected in this environment." msgstr "環境内で検出した VMware 情報がありません。" -#: ../../enterprise/extensions/vmware/vmware_view.php:1519 +#: ../../enterprise/extensions/vmware/vmware_view.php:1585 msgid "You can configure several tasks using Discovery Applications at " msgstr "次で自動検出アプリケーションを用いて複数のタスクを設定できます: " -#: ../../enterprise/extensions/vmware/vmware_view.php:1731 -#: ../../enterprise/include/class/DeploymentCenter.class.php:482 +#: ../../enterprise/extensions/vmware/vmware_view.php:1797 +msgid "Show Datastores" +msgstr "データストア表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1803 +msgid "Show ESX" +msgstr "ESX 表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1809 +msgid "Show VM" +msgstr "VM 表示" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1817 +#: ../../godmode/reporting/visual_console_builder.wizard.php:218 +msgid "Font" +msgstr "フォント" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1823 +#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:157 +#: ../../operation/agentes/pandora_networkmap.editor.php:399 +#: ../../operation/agentes/pandora_networkmap.view.php:143 +msgid "Node radius" +msgstr "ノード半径" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1829 +#: ../../operation/agentes/pandora_networkmap.editor.php:533 +#: ../../operation/agentes/pandora_networkmap.view.php:309 +msgid "Node separation" +msgstr "ノード分離" + +#: ../../enterprise/extensions/vmware/vmware_view.php:1875 #: ../../enterprise/include/class/DeploymentCenter.class.php:490 #: ../../enterprise/include/class/DeploymentCenter.class.php:498 -#: ../../enterprise/include/class/DeploymentCenter.class.php:657 -#: ../../enterprise/include/class/SAP.app.php:371 +#: ../../enterprise/include/class/DeploymentCenter.class.php:506 +#: ../../enterprise/include/class/DeploymentCenter.class.php:787 msgid "here" msgstr "こちら" -#: ../../enterprise/extensions/vmware/vmware_view.php:1728 +#: ../../enterprise/extensions/vmware/vmware_view.php:1872 #, php-format msgid "" "This map is a quick representation of all your VMware entities detected. You " @@ -14202,47 +14716,12 @@ msgstr "" "VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタ" "ム VMware マップを作成できます。" -#: ../../enterprise/extensions/vmware/vmware_view.php:1738 -msgid "Show Datastores" -msgstr "データストア表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1741 -msgid "Show ESX" -msgstr "ESX 表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1744 -msgid "Show VM" -msgstr "VM 表示" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1748 -#: ../../godmode/reporting/visual_console_builder.wizard.php:215 -msgid "Font" -msgstr "フォント" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1752 -#: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:152 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:154 -#: ../../operation/agentes/pandora_networkmap.editor.php:329 -#: ../../operation/agentes/pandora_networkmap.view.php:143 -msgid "Node radius" -msgstr "ノード半径" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1756 -#: ../../operation/agentes/pandora_networkmap.editor.php:443 -#: ../../operation/agentes/pandora_networkmap.view.php:284 -msgid "Node separation" -msgstr "ノード分離" - -#: ../../enterprise/extensions/vmware/vmware_view.php:1766 -msgid "View options" -msgstr "オプションの表示" - #: ../../enterprise/extensions/vmware/vmware_manager.php:227 msgid "Power Status: " msgstr "電源状態: " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1848 +#: ../../operation/agentes/pandora_networkmap.view.php:1881 msgid "Status: " msgstr "状態: " @@ -14250,19 +14729,19 @@ msgstr "状態: " msgid "Change Status" msgstr "状態の変更" -#: ../../enterprise/extensions/resource_exportation/functions.php:20 +#: ../../enterprise/extensions/resource_exportation/functions.php:28 msgid "Export agents" msgstr "エージェントエクスポート" -#: ../../enterprise/extensions/resource_exportation/functions.php:21 -#: ../../enterprise/include/functions_reporting.php:8126 -#: ../../extensions/resource_exportation.php:435 -#: ../../extensions/resource_exportation.php:438 -#: ../../operation/agentes/exportdata.php:389 +#: ../../enterprise/extensions/resource_exportation/functions.php:46 +#: ../../enterprise/include/functions_reporting.php:8156 +#: ../../extensions/resource_exportation.php:456 +#: ../../extensions/resource_exportation.php:468 +#: ../../operation/agentes/exportdata.php:464 msgid "Export" msgstr "エクスポート" -#: ../../enterprise/extensions/csv_import_group.php:50 +#: ../../enterprise/extensions/csv_import_group.php:46 #, php-format msgid "" "This node is configured with centralized mode. All group information is read " @@ -14271,7 +14750,7 @@ msgstr "" "このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専" "用です。CSV をインポートするには %s に移動します。" -#: ../../enterprise/extensions/csv_import_group.php:83 +#: ../../enterprise/extensions/csv_import_group.php:75 msgid "CSV group import" msgstr "CSV グループインポート" @@ -14296,16 +14775,11 @@ msgstr "" msgid "Auth Key:" msgstr "認証キー:" -#: ../../enterprise/load_html_extra.php:221 -#: ../../enterprise/load_html_extra.php:240 -msgid "Online validation" -msgstr "オンライン認証" - -#: ../../enterprise/load_html_extra.php:233 +#: ../../enterprise/load_html_extra.php:228 msgid "ERROR:" msgstr "エラー:" -#: ../../enterprise/load_html_extra.php:233 +#: ../../enterprise/load_html_extra.php:228 msgid "When connecting to licence server." msgstr "ライセンスサーバへの接続時。" @@ -14319,7 +14793,7 @@ msgstr "ローカルコンポーネント作成" #: ../../enterprise/godmode/modules/configure_local_component.php:164 #: ../../godmode/modules/manage_network_components_form_common.php:50 -#: ../../godmode/alerts/configure_alert_template.php:1134 +#: ../../godmode/alerts/configure_alert_template.php:1172 msgid "Wizard level" msgstr "ウィザードレベル" @@ -14336,7 +14810,6 @@ msgstr "動的間隔" #: ../../enterprise/godmode/modules/configure_local_component.php:300 #: ../../godmode/modules/manage_network_components_form_common.php:152 -#: ../../godmode/agentes/module_manager_editor_common.php:705 msgid "Advanced options Dynamic Threshold" msgstr "拡張オプション 動的閾値" @@ -14348,14 +14821,14 @@ msgstr "動的最小値 " #: ../../enterprise/godmode/modules/configure_local_component.php:307 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:493 #: ../../godmode/modules/manage_network_components_form_common.php:159 -#: ../../godmode/massive/massive_edit_modules.php:556 +#: ../../godmode/massive/massive_edit_modules.php:571 msgid "Dynamic Max." msgstr "動的最大値" #: ../../enterprise/godmode/modules/configure_local_component.php:309 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:495 #: ../../godmode/modules/manage_network_components_form_common.php:161 -#: ../../godmode/massive/massive_edit_modules.php:558 +#: ../../godmode/massive/massive_edit_modules.php:573 msgid "Dynamic Two Tailed: " msgstr "2つの動的しきい値 " @@ -14363,8 +14836,10 @@ msgstr "2つの動的しきい値 " #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:289 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:498 #: ../../godmode/modules/manage_network_components_form_common.php:164 -#: ../../godmode/massive/massive_edit_modules.php:561 -#: ../../include/functions_treeview.php:96 ../../include/functions_alerts.php:679 +#: ../../godmode/massive/massive_edit_modules.php:576 +#: ../../include/functions_treeview.php:95 ../../include/functions_alerts.php:679 +#: ../../include/class/TreeService.class.php:436 +#: ../../include/class/TreeService.class.php:645 msgid "Warning status" msgstr "警告状態" @@ -14379,13 +14854,14 @@ 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/massive/massive_edit_modules.php:565 -#: ../../godmode/massive/massive_edit_modules.php:656 -#: ../../godmode/massive/massive_edit_modules.php:885 -#: ../../godmode/alerts/configure_alert_template.php:850 -#: ../../include/functions_reporting_html.php:5441 -#: ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 +#: ../../godmode/agentes/module_manager_editor_common.php:1141 +#: ../../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_treeview.php:91 +#: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 #: ../../include/lib/Dashboard/Widgets/top_n.php:282 msgid "Min." @@ -14402,15 +14878,14 @@ 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:428 -#: ../../godmode/agentes/module_manager_editor_common.php:504 -#: ../../godmode/massive/massive_edit_modules.php:580 -#: ../../godmode/massive/massive_edit_modules.php:671 -#: ../../godmode/massive/massive_edit_modules.php:887 -#: ../../godmode/alerts/configure_alert_template.php:862 -#: ../../include/functions_reporting_html.php:5442 -#: ../../include/functions_treeview.php:92 -#: ../../include/functions_treeview.php:104 +#: ../../godmode/agentes/module_manager_editor_common.php:1142 +#: ../../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_treeview.php:91 +#: ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 #: ../../include/lib/Dashboard/Widgets/top_n.php:281 msgid "Max." @@ -14424,12 +14899,12 @@ msgstr "最大" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:623 #: ../../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:444 -#: ../../godmode/agentes/module_manager_editor_common.php:520 -#: ../../godmode/massive/massive_edit_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:686 -#: ../../include/functions_treeview.php:90 -#: ../../include/functions_treeview.php:102 +#: ../../godmode/agentes/module_manager_editor_common.php:504 +#: ../../godmode/agentes/module_manager_editor_common.php:596 +#: ../../godmode/massive/massive_edit_modules.php:610 +#: ../../godmode/massive/massive_edit_modules.php:701 +#: ../../include/functions_treeview.php:89 +#: ../../include/functions_treeview.php:101 msgid "Str." msgstr "文字列" @@ -14441,10 +14916,10 @@ msgstr "文字列" #: ../../godmode/modules/manage_network_components_form_common.php:248 #: ../../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:464 -#: ../../godmode/agentes/module_manager_editor_common.php:541 -#: ../../godmode/massive/massive_edit_modules.php:630 -#: ../../godmode/massive/massive_edit_modules.php:722 +#: ../../godmode/agentes/module_manager_editor_common.php:478 +#: ../../godmode/agentes/module_manager_editor_common.php:561 +#: ../../godmode/massive/massive_edit_modules.php:645 +#: ../../godmode/massive/massive_edit_modules.php:737 msgid "Percentage" msgstr "パーセント" @@ -14457,14 +14932,12 @@ 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:470 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:483 msgid "intervals in warning status." msgstr "警告状態の期間。" @@ -14472,100 +14945,101 @@ msgstr "警告状態の期間。" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:338 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 #: ../../godmode/modules/manage_network_components_form_common.php:216 -#: ../../godmode/massive/massive_edit_modules.php:652 -#: ../../include/functions_treeview.php:108 +#: ../../godmode/massive/massive_edit_modules.php:667 +#: ../../include/functions_treeview.php:107 #: ../../include/functions_alerts.php:680 +#: ../../include/class/TreeService.class.php:432 +#: ../../include/class/TreeService.class.php:641 msgid "Critical status" msgstr "障害状態" #: ../../enterprise/godmode/modules/configure_local_component.php:403 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:276 +#: ../../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:794 -#: ../../godmode/massive/massive_edit_modules.php:930 +#: ../../godmode/agentes/module_manager_editor_common.php:1191 +#: ../../godmode/massive/massive_edit_modules.php:945 msgid "FF threshold" msgstr "連続抑制回数" #: ../../enterprise/godmode/modules/configure_local_component.php:406 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:279 #: ../../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:796 -#: ../../godmode/massive/massive_edit_modules.php:994 +#: ../../godmode/agentes/module_manager_editor_common.php:1314 +#: ../../godmode/massive/massive_edit_modules.php:1009 msgid "Keep counters" msgstr "カウンタの維持" #: ../../enterprise/godmode/modules/configure_local_component.php:414 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:296 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:272 #: ../../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:813 -#: ../../godmode/massive/massive_edit_modules.php:938 +#: ../../godmode/agentes/module_manager_editor_common.php:1195 #: ../../godmode/massive/massive_edit_modules.php:953 +#: ../../godmode/massive/massive_edit_modules.php:968 msgid "All state changing" msgstr "全状態変化" #: ../../enterprise/godmode/modules/configure_local_component.php:429 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:318 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:273 #: ../../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:835 -#: ../../godmode/massive/massive_edit_modules.php:937 -#: ../../godmode/massive/massive_edit_modules.php:963 +#: ../../godmode/agentes/module_manager_editor_common.php:1196 +#: ../../godmode/massive/massive_edit_modules.php:952 +#: ../../godmode/massive/massive_edit_modules.php:978 msgid "Each state changing" msgstr "個別状態変化" #: ../../enterprise/godmode/modules/configure_local_component.php:430 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:319 +#: ../../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:836 -#: ../../godmode/massive/massive_edit_modules.php:964 +#: ../../godmode/agentes/module_manager_editor_common.php:1228 +#: ../../godmode/massive/massive_edit_modules.php:979 msgid "To normal" msgstr "正常移行時" #: ../../enterprise/godmode/modules/configure_local_component.php:439 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:333 +#: ../../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:850 -#: ../../godmode/massive/massive_edit_modules.php:974 +#: ../../godmode/agentes/module_manager_editor_common.php:1229 +#: ../../godmode/massive/massive_edit_modules.php:989 msgid "To warning" msgstr "警告移行時" #: ../../enterprise/godmode/modules/configure_local_component.php:448 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:347 +#: ../../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:864 -#: ../../godmode/massive/massive_edit_modules.php:984 +#: ../../godmode/agentes/module_manager_editor_common.php:1230 +#: ../../godmode/massive/massive_edit_modules.php:999 msgid "To critical" msgstr "障害移行時" #: ../../enterprise/godmode/modules/configure_local_component.php:459 -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:362 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:379 #: ../../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:547 -#: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../include/functions_reporting.php:4560 +#: ../../godmode/agentes/module_manager_editor_common.php:619 +#: ../../godmode/massive/massive_edit_modules.php:1057 +#: ../../include/functions_reporting.php:4664 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:894 -#: ../../godmode/massive/massive_edit_modules.php:1028 +#: ../../godmode/agentes/module_manager_editor_common.php:1282 +#: ../../godmode/massive/massive_edit_modules.php:1043 msgid "FF timeout" msgstr "連続抑制タイムアウト" #: ../../enterprise/godmode/modules/configure_local_component.php:470 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 -#: ../../godmode/massive/massive_edit_modules.php:1038 +#: ../../godmode/massive/massive_edit_modules.php:1053 msgid "" "Timeout in secs from start of flip flop counting. If this value is exceeded, " "FF counter is reset. Set to 0 for no timeout." @@ -14580,9 +15054,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:679 +#: ../../godmode/agentes/module_manager_editor_common.php:1105 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:6998 +#: ../../include/functions_reporting.php:7102 msgid "Min. Value" msgstr "最小値" @@ -14594,9 +15068,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:683 +#: ../../godmode/agentes/module_manager_editor_common.php:1106 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:6994 +#: ../../include/functions_reporting.php:7098 msgid "Max. Value" msgstr "最大値" @@ -14610,41 +15084,39 @@ msgstr "この値よりも大きい値は削除されます。" #: ../../godmode/modules/manage_network_components_form_plugin.php:49 #: ../../godmode/modules/manage_network_components_form_network.php:178 #: ../../godmode/modules/manage_network_components_form_wmi.php:55 -#: ../../godmode/agentes/module_manager_editor_common.php:664 -#: ../../godmode/massive/massive_edit_modules.php:780 +#: ../../godmode/agentes/module_manager_editor_common.php:1328 +#: ../../godmode/massive/massive_edit_modules.php:795 #: ../../godmode/setup/snmp_wizard.php:43 msgid "Post process" msgstr "データ保存倍率" #: ../../enterprise/godmode/modules/configure_local_component.php:512 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:180 msgid "Load a basic structure on data configuration" msgstr "データ設定に基本構造をロードします" #: ../../enterprise/godmode/modules/configure_local_component.php:515 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 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:196 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:249 msgid "First line must be \"module_begin\"" msgstr "最初の行は、\"module_begin\" でなければいけません" #: ../../enterprise/godmode/modules/configure_local_component.php:519 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:197 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:250 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:198 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:202 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:251 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:255 msgid "Last line must be \"module_end\"" msgstr "最後の行は \"module_end\" でなければいけません" #: ../../enterprise/godmode/modules/configure_local_component.php:521 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:199 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:252 msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" @@ -14653,7 +15125,7 @@ msgstr "" "ください。" #: ../../enterprise/godmode/modules/configure_local_component.php:522 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:200 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" @@ -14662,98 +15134,96 @@ msgstr "" "加してください。" #: ../../enterprise/godmode/modules/configure_local_component.php:523 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:201 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 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:204 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:257 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:205 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:258 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:1107 -#: ../../godmode/massive/massive_edit_modules.php:1092 +#: ../../godmode/agentes/module_manager_editor_common.php:1044 +#: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Critical instructions" 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/massive/massive_edit_modules.php:1092 +#: ../../godmode/massive/massive_edit_modules.php:1107 msgid "Instructions when the status is critical" 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:1112 -#: ../../godmode/massive/massive_edit_modules.php:1096 +#: ../../godmode/agentes/module_manager_editor_common.php:1043 +#: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Warning instructions" 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/massive/massive_edit_modules.php:1096 +#: ../../godmode/massive/massive_edit_modules.php:1111 msgid "Instructions when the status is warning" 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:1116 -#: ../../godmode/massive/massive_edit_modules.php:1100 +#: ../../godmode/agentes/module_manager_editor_common.php:1020 +#: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Unknown instructions" 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/massive/massive_edit_modules.php:1100 +#: ../../godmode/massive/massive_edit_modules.php:1115 msgid "Instructions when the status is unknown" 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:1157 -#: ../../godmode/massive/massive_edit_modules.php:1060 +#: ../../godmode/agentes/module_manager_editor_common.php:745 +#: ../../godmode/massive/massive_edit_modules.php:1075 #: ../../godmode/module_library/module_library_view.php:123 msgid "Category" 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:920 +#: ../../godmode/agentes/module_manager_editor_common.php:782 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:1015 +#: ../../godmode/agentes/module_manager_editor_common.php:862 msgid "Add tags to module" msgstr "モジュールへのタグ追加" #: ../../enterprise/godmode/modules/configure_local_component.php:592 #: ../../godmode/modules/manage_network_components_form_common.php:392 -#: ../../godmode/agentes/module_manager_editor_common.php:1024 msgid "Delete tags to module" msgstr "モジュールのタグ削除" #: ../../enterprise/godmode/modules/configure_local_component.php:593 -#: ../../enterprise/godmode/setup/setup_auth.php:174 -#: ../../enterprise/godmode/setup/setup_auth.php:458 -#: ../../enterprise/godmode/setup/setup_auth.php:1251 +#: ../../enterprise/godmode/setup/setup_auth.php:196 +#: ../../enterprise/godmode/setup/setup_auth.php:551 +#: ../../enterprise/godmode/setup/setup_auth.php:1359 #: ../../godmode/modules/manage_network_components_form_common.php:393 -#: ../../godmode/agentes/module_manager_editor_common.php:1028 msgid "Tags selected" msgstr "選択タグ" @@ -14762,91 +15232,90 @@ msgid "Macros" msgstr "マクロ" #: ../../enterprise/godmode/modules/configure_local_component.php:651 -#: ../../godmode/servers/plugin.php:482 -#: ../../include/class/ManageNetScanScripts.class.php:636 +#: ../../godmode/servers/plugin.php:573 +#: ../../include/class/ManageNetScanScripts.class.php:644 msgid "Default value" msgstr "デフォルト値" #: ../../enterprise/godmode/modules/configure_local_component.php:667 -#: ../../godmode/servers/plugin.php:534 -#: ../../include/class/ManageNetScanScripts.class.php:724 +#: ../../godmode/servers/plugin.php:628 +#: ../../include/class/ManageNetScanScripts.class.php:732 msgid "Add macro" msgstr "マクロを追加" #: ../../enterprise/godmode/modules/configure_local_component.php:675 -#: ../../godmode/servers/plugin.php:547 -#: ../../include/class/ManageNetScanScripts.class.php:742 +#: ../../include/class/ManageNetScanScripts.class.php:750 msgid "Delete macro" msgstr "マクロを削除" -#: ../../enterprise/godmode/modules/configure_local_component.php:990 +#: ../../enterprise/godmode/modules/configure_local_component.php:993 #: ../../godmode/modules/manage_network_components_form_common.php:717 -#: ../../godmode/agentes/module_manager_editor_common.php:2008 +#: ../../godmode/agentes/module_manager_editor_common.php:2263 msgid "Normal Status" msgstr "正常状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:991 +#: ../../enterprise/godmode/modules/configure_local_component.php:994 #: ../../godmode/modules/manage_network_components_form_common.php:718 -#: ../../godmode/agentes/module_manager_editor_common.php:2009 +#: ../../godmode/agentes/module_manager_editor_common.php:2264 msgid "Warning Status" msgstr "警告状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:992 +#: ../../enterprise/godmode/modules/configure_local_component.php:995 #: ../../godmode/modules/manage_network_components_form_common.php:719 -#: ../../godmode/agentes/module_manager_editor_common.php:2010 +#: ../../godmode/agentes/module_manager_editor_common.php:2265 msgid "Critical Status" msgstr "障害状態" -#: ../../enterprise/godmode/modules/configure_local_component.php:995 +#: ../../enterprise/godmode/modules/configure_local_component.php:998 #: ../../godmode/modules/manage_network_components_form_common.php:721 -#: ../../godmode/agentes/module_manager_editor_common.php:2012 +#: ../../godmode/agentes/module_manager_editor_common.php:2268 msgid "Please introduce a maximum warning higher than the minimun warning" msgstr "警告の最大値は、警告の最小値よりも大きくしてください" -#: ../../enterprise/godmode/modules/configure_local_component.php:997 +#: ../../enterprise/godmode/modules/configure_local_component.php:1000 #: ../../godmode/modules/manage_network_components_form_common.php:722 -#: ../../godmode/agentes/module_manager_editor_common.php:2013 +#: ../../godmode/agentes/module_manager_editor_common.php:2269 msgid "Please introduce a maximum critical higher than the minimun critical" msgstr "障害の最大値は、障害の最小値よりも大きくしてください" -#: ../../enterprise/godmode/modules/configure_local_component.php:999 +#: ../../enterprise/godmode/modules/configure_local_component.php:1002 msgid "Please introduce a positicve percentage value" msgstr "正のパーセント値を指定してください" -#: ../../enterprise/godmode/modules/local_components.php:141 -#: ../../godmode/modules/manage_network_components.php:197 -#: ../../godmode/alerts/configure_alert_template.php:191 +#: ../../enterprise/godmode/modules/local_components.php:140 +#: ../../godmode/modules/manage_network_components.php:195 +#: ../../godmode/alerts/configure_alert_template.php:208 #, php-format msgid "Successfully created from %s" msgstr "%s から作成しました。" -#: ../../enterprise/godmode/modules/local_components.php:142 -#: ../../enterprise/godmode/modules/local_components.php:320 -#: ../../enterprise/godmode/policies/policies.php:172 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:126 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 +#: ../../enterprise/godmode/modules/local_components.php:141 +#: ../../enterprise/godmode/modules/local_components.php:331 +#: ../../enterprise/godmode/policies/policies.php:168 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:136 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:139 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:80 #: ../../enterprise/godmode/setup/setup_metaconsole.php:126 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 -#: ../../enterprise/godmode/servers/manage_export.php:112 -#: ../../enterprise/godmode/servers/manage_export.php:119 +#: ../../enterprise/godmode/servers/manage_export.php:140 +#: ../../enterprise/godmode/servers/manage_export.php:147 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:81 -#: ../../enterprise/include/ajax/servers.ajax.php:198 +#: ../../enterprise/include/ajax/servers.ajax.php:223 #: ../../enterprise/tools/ipam/ipam_action.php:164 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:51 -#: ../../godmode/modules/manage_nc_groups.php:85 -#: ../../godmode/modules/manage_network_components.php:200 -#: ../../godmode/modules/manage_network_components.php:429 -#: ../../godmode/users/configure_user.php:569 -#: ../../godmode/agentes/configurar_agente.php:362 -#: ../../godmode/agentes/configurar_agente.php:900 -#: ../../godmode/agentes/planned_downtime.editor.php:642 -#: ../../godmode/alerts/alert_commands.php:646 -#: ../../godmode/alerts/configure_alert_template.php:192 -#: ../../godmode/alerts/configure_alert_template.php:527 -#: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:67 +#: ../../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/agentes/configurar_agente.php:361 +#: ../../godmode/agentes/configurar_agente.php:883 +#: ../../godmode/agentes/planned_downtime.editor.php:650 +#: ../../godmode/alerts/alert_commands.php:653 +#: ../../godmode/alerts/configure_alert_template.php:209 +#: ../../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:5920 +#: ../../godmode/reporting/reporting_builder.item_editor.php:6025 #: ../../include/functions_alerts.php:2755 #: ../../include/functions_planned_downtimes.php:113 #: ../../include/functions_planned_downtimes.php:845 @@ -14855,11 +15324,11 @@ msgstr "%s から作成しました。" msgid "Could not be created" msgstr "作成に失敗しました。" -#: ../../enterprise/godmode/modules/local_components.php:157 +#: ../../enterprise/godmode/modules/local_components.php:156 msgid "Local component management" msgstr "ローカルコンポーネント管理" -#: ../../enterprise/godmode/modules/local_components.php:264 +#: ../../enterprise/godmode/modules/local_components.php:275 #, php-format msgid "" "This node is configured with centralized mode. All local components are read " @@ -14868,31 +15337,31 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは" "読み取り専用です。それらを管理するには、%s に移動します。" -#: ../../enterprise/godmode/modules/local_components.php:328 -#: ../../godmode/modules/manage_network_components.php:440 +#: ../../enterprise/godmode/modules/local_components.php:339 +#: ../../godmode/modules/manage_network_components.php:447 #: ../../include/class/ManageNetScanScripts.class.php:228 msgid "Created successfully" msgstr "作成しました。" -#: ../../enterprise/godmode/modules/local_components.php:396 -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:112 -#: ../../enterprise/godmode/policies/policy_modules.php:1255 -#: ../../enterprise/godmode/policies/policies.php:216 +#: ../../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/policies.php:212 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:123 -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:133 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:139 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1360 -#: ../../enterprise/include/ajax/servers.ajax.php:331 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1374 +#: ../../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:528 +#: ../../godmode/modules/manage_network_components.php:535 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/planned_downtime.editor.php:644 -#: ../../godmode/alerts/configure_alert_command.php:145 -#: ../../godmode/alerts/alert_templates.php:157 -#: ../../godmode/alerts/configure_alert_template.php:555 +#: ../../godmode/agentes/planned_downtime.editor.php:652 +#: ../../godmode/alerts/configure_alert_command.php:150 +#: ../../godmode/alerts/alert_templates.php:162 +#: ../../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_planned_downtimes.php:123 @@ -14901,51 +15370,50 @@ msgstr "作成しました。" msgid "Could not be updated" msgstr "更新に失敗しました。" -#: ../../enterprise/godmode/modules/local_components.php:404 -#: ../../godmode/modules/manage_network_components.php:537 +#: ../../enterprise/godmode/modules/local_components.php:415 +#: ../../godmode/modules/manage_network_components.php:544 #: ../../include/class/ManageNetScanScripts.class.php:315 msgid "Updated successfully" msgstr "更新しました。" -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_inventory_modules.php:223 -#: ../../godmode/modules/manage_inventory_modules.php:256 -#: ../../godmode/modules/manage_network_components.php:581 +#: ../../enterprise/godmode/modules/local_components.php:457 +#: ../../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_templates.php:114 msgid "Successfully multiple deleted" msgstr "複数削除しました" -#: ../../enterprise/godmode/modules/local_components.php:447 -#: ../../godmode/modules/manage_nc_groups.php:195 -#: ../../godmode/modules/manage_inventory_modules.php:224 -#: ../../godmode/modules/manage_inventory_modules.php:257 -#: ../../godmode/modules/manage_network_components.php:582 +#: ../../enterprise/godmode/modules/local_components.php:458 +#: ../../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_templates.php:115 msgid "Not deleted. Error deleting multiple data" msgstr "削除できませんでした。複数データの削除でエラーです。" -#: ../../enterprise/godmode/modules/local_components.php:550 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 -#: ../../godmode/modules/manage_network_components.php:662 +#: ../../enterprise/godmode/modules/local_components.php:567 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2902 +#: ../../godmode/modules/manage_network_components.php:677 msgid "Free Search" msgstr "検索文字列" -#: ../../enterprise/godmode/modules/local_components.php:551 +#: ../../enterprise/godmode/modules/local_components.php:568 msgid "Search by name, description or data, list matches." msgstr "名前、説明、データでマッチするものを検索します。" -#: ../../enterprise/godmode/modules/local_components.php:693 -#: ../../enterprise/godmode/policies/policy_modules.php:1560 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:627 +#: ../../enterprise/godmode/modules/local_components.php:732 +#: ../../enterprise/godmode/policies/policy_modules.php:1636 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:595 #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 -#: ../../godmode/modules/manage_network_components.php:862 -#: ../../godmode/modules/manage_network_components.php:863 -#: ../../godmode/agentes/module_manager.php:1231 -#: ../../godmode/snmpconsole/snmp_alert.php:1347 -#: ../../godmode/snmpconsole/snmp_alert.php:1348 -#: ../../godmode/alerts/alert_actions.php:435 -#: ../../godmode/alerts/alert_templates.php:432 +#: ../../godmode/modules/manage_network_components.php:841 +#: ../../godmode/agentes/module_manager.php:961 +#: ../../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/reporting/reporting_builder.php:1194 msgid "Duplicate" msgstr "複製" @@ -15001,15 +15469,15 @@ msgstr "" "読み取り専用コンソールから自動設定を変更することはできません。メタコンソールか" "ら作成してください(中央管理)" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:319 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:92 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:304 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:93 msgid "Agent autoconfiguration list" msgstr "エージェント自動設定一覧" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#: ../../godmode/modules/manage_inventory_modules.php:63 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:347 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:133 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 +#: ../../godmode/modules/manage_inventory_modules.php:74 #, php-format msgid "" "This console is not manager of this environment, please manage this feature " @@ -15018,96 +15486,98 @@ msgstr "" "このコンソールはこの環境の管理コンソールではありません。中央管理コンソールから" "この機能を管理してください。管理するには %s に移動します。" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 -msgid "Autoconfiguration" -msgstr "自動設定" - -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:138 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:373 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:146 #: ../../godmode/modules/manage_network_components_form_wizard.php:661 -#: ../../godmode/agentes/planned_downtime.list.php:660 -#: ../../godmode/agentes/planned_downtime.editor.php:878 -#: ../../include/functions_reporting_html.php:6322 +#: ../../godmode/agentes/planned_downtime.list.php:737 +#: ../../godmode/agentes/planned_downtime.editor.php:951 +#: ../../include/functions_reporting_html.php:6372 msgid "Execution" msgstr "実行" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:397 -#: ../../godmode/agentes/planned_downtime.editor.php:898 -msgid "Configure the time" -msgstr "時間設定" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:377 +#: ../../enterprise/godmode/setup/setup_history.php:903 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:670 +#: ../../enterprise/include/functions_tasklist.php:174 +#: ../../enterprise/include/ajax/cron.ajax.php:103 +#: ../../include/functions_cron.php:500 +msgid "Scheduled" +msgstr "スケジュール" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:403 -#: ../../godmode/agentes/planned_downtime.editor.php:917 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:398 msgid "Type Periodicity:" msgstr "定期実行タイプ:" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:405 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:400 #: ../../enterprise/include/functions_cron.php:501 #: ../../enterprise/include/lib/NetworkManager.php:178 -#: ../../godmode/agentes/module_manager_editor_prediction.php:183 -#: ../../include/functions_netflow.php:1850 +#: ../../godmode/agentes/module_manager_editor_prediction.php:192 +#: ../../include/functions_netflow.php:1869 msgid "Daily" msgstr "日次" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:406 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:401 #: ../../enterprise/include/functions_cron.php:502 #: ../../enterprise/include/lib/NetworkManager.php:182 -#: ../../godmode/agentes/module_manager_editor_prediction.php:181 -#: ../../godmode/agentes/planned_downtime.editor.php:919 +#: ../../godmode/agentes/module_manager_editor_prediction.php:192 +#: ../../godmode/agentes/planned_downtime.editor.php:1031 msgid "Weekly" msgstr "週次" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:407 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:402 #: ../../enterprise/include/functions_cron.php:503 -#: ../../godmode/agentes/module_manager_editor_prediction.php:182 -#: ../../godmode/agentes/planned_downtime.editor.php:920 +#: ../../godmode/agentes/module_manager_editor_prediction.php:192 +#: ../../godmode/agentes/planned_downtime.editor.php:1032 msgid "Monthly" msgstr "月次" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:436 -#: ../../godmode/agentes/planned_downtime.editor.php:949 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 msgid "From day:" msgstr "開始日:" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:454 -#: ../../godmode/agentes/planned_downtime.editor.php:982 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:449 msgid "From hour:" msgstr "開始時間:" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:497 -#: ../../include/class/CredentialStore.class.php:999 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:467 +#: ../../godmode/agentes/planned_downtime.editor.php:1164 +msgid "Configure the time" +msgstr "時間設定" + +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:504 +#: ../../include/class/CredentialStore.class.php:975 msgid "Extra" msgstr "拡張" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:525 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:551 msgid "Add rule" msgstr "ルール追加" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:530 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:565 msgid "Rules" msgstr "ルール" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:552 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:587 msgid "New group" msgstr "新規グループ" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:584 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:402 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:619 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:457 msgid "Launch custom event" msgstr "カスタムイベントの起動" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:585 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:403 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:620 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:458 msgid "Launch alert action" msgstr "アラートアクションの起動" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:586 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:404 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:621 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 msgid "Launch script" msgstr "スクリプトの起動" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:630 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:644 +#: ../../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 @@ -15132,17 +15602,17 @@ msgstr "スクリプトの起動" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1004 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1032 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1134 -#: ../../godmode/massive/massive_edit_users.php:255 -#: ../../godmode/massive/massive_edit_users.php:267 -#: ../../godmode/massive/massive_edit_users.php:273 -#: ../../godmode/massive/massive_edit_users.php:347 -#: ../../godmode/massive/massive_edit_users.php:399 -#: ../../godmode/massive/massive_edit_users.php:463 -#: ../../godmode/massive/massive_edit_users.php:471 -#: ../../godmode/massive/massive_edit_users.php:508 -#: ../../godmode/massive/massive_edit_users.php:612 -#: ../../godmode/massive/massive_edit_users.php:631 -#: ../../godmode/massive/massive_edit_users.php:638 +#: ../../godmode/massive/massive_edit_users.php:254 +#: ../../godmode/massive/massive_edit_users.php:266 +#: ../../godmode/massive/massive_edit_users.php:272 +#: ../../godmode/massive/massive_edit_users.php:346 +#: ../../godmode/massive/massive_edit_users.php:398 +#: ../../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 @@ -15154,67 +15624,68 @@ msgstr "スクリプトの起動" #: ../../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_modules.php:615 -#: ../../godmode/massive/massive_edit_modules.php:637 -#: ../../godmode/massive/massive_edit_modules.php:706 -#: ../../godmode/massive/massive_edit_modules.php:728 -#: ../../godmode/massive/massive_edit_modules.php:759 -#: ../../godmode/massive/massive_edit_modules.php:768 -#: ../../godmode/massive/massive_edit_modules.php:827 -#: ../../godmode/massive/massive_edit_modules.php:845 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/massive/massive_edit_modules.php:868 +#: ../../godmode/massive/massive_edit_modules.php:630 +#: ../../godmode/massive/massive_edit_modules.php:652 +#: ../../godmode/massive/massive_edit_modules.php:721 +#: ../../godmode/massive/massive_edit_modules.php:743 +#: ../../godmode/massive/massive_edit_modules.php:774 +#: ../../godmode/massive/massive_edit_modules.php:783 +#: ../../godmode/massive/massive_edit_modules.php:842 +#: ../../godmode/massive/massive_edit_modules.php:860 #: ../../godmode/massive/massive_edit_modules.php:879 -#: ../../godmode/massive/massive_edit_modules.php:899 -#: ../../godmode/massive/massive_edit_modules.php:924 -#: ../../godmode/massive/massive_edit_modules.php:936 -#: ../../godmode/massive/massive_edit_modules.php:997 -#: ../../godmode/massive/massive_edit_modules.php:1043 -#: ../../godmode/massive/massive_edit_modules.php:1061 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../godmode/massive/massive_edit_modules.php:1080 -#: ../../godmode/massive/massive_edit_modules.php:1108 -#: ../../godmode/massive/massive_edit_modules.php:1212 -#: ../../include/functions_html.php:1845 ../../include/functions_html.php:1946 -#: ../../include/functions_html.php:2084 +#: ../../godmode/massive/massive_edit_modules.php:883 +#: ../../godmode/massive/massive_edit_modules.php:894 +#: ../../godmode/massive/massive_edit_modules.php:914 +#: ../../godmode/massive/massive_edit_modules.php:939 +#: ../../godmode/massive/massive_edit_modules.php:951 +#: ../../godmode/massive/massive_edit_modules.php:1012 +#: ../../godmode/massive/massive_edit_modules.php:1058 +#: ../../godmode/massive/massive_edit_modules.php:1076 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../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 msgid "No change" msgstr "変更無し" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 -#: ../../godmode/agentes/agent_manager.php:505 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:683 +#: ../../godmode/agentes/agent_manager.php:636 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:4848 -#: ../../operation/agentes/estado_generalagente.php:408 +#: ../../include/functions_events.php:5061 +#: ../../operation/agentes/estado_generalagente.php:504 +#: ../../operation/inventory/inventory.php:1003 +#: ../../operation/inventory/inventory.php:1297 msgid "Secondary groups" msgstr "セカンダリグループ" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:695 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:730 #: ../../godmode/massive/massive_edit_agents.php:825 -#: ../../include/functions_html.php:6149 msgid "Add secondary groups" msgstr "セカンダリグループの追加" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:702 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:737 #: ../../godmode/massive/massive_edit_agents.php:851 -#: ../../include/functions_html.php:6162 msgid "Remove secondary groups" msgstr "セカンダリグループの削除" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:739 -#: ../../enterprise/godmode/policies/configure_policy.php:48 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:775 +#: ../../enterprise/godmode/policies/configure_policy.php:41 msgid "Add policy" msgstr "ポリシー追加" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:754 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:380 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:790 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 +#: ../../operation/agentes/estado_agente.php:1063 msgid "Op" msgstr "Op" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:771 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:816 msgid "Extra configuration block" msgstr "追加設定ブロック" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:773 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:818 msgid "" "Put here any extra configuration you want to be applied to any new agent " "matching previously defined rules" @@ -15222,26 +15693,26 @@ msgstr "" "以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入" "力します" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:806 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:837 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:910 msgid "Extra actions" msgstr "追加アクション" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:827 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1158 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:900 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1240 msgid "Add extra action" msgstr "追加アクションの追加" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1010 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1092 msgid "Add new rule" msgstr "新規ルール追加" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1012 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:188 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1094 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:211 msgid "Update rule" msgstr "ルール更新" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1245 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:1327 msgid "Update extra action" msgstr "拡張アクションの更新" @@ -15250,7 +15721,7 @@ msgid "Cannot delete autoconfiguration" msgstr "自動設定を削除できません" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:62 -#: ../../godmode/setup/license.php:177 ../../godmode/setup/license.php:180 +#: ../../godmode/setup/license.php:251 ../../godmode/setup/license.php:264 msgid "enabled" msgstr "有効" @@ -15259,7 +15730,7 @@ msgid "enabling" msgstr "有効化" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:65 -#: ../../godmode/setup/license.php:177 ../../godmode/setup/license.php:180 +#: ../../godmode/setup/license.php:251 ../../godmode/setup/license.php:264 msgid "disabled" msgstr "無効化" @@ -15277,117 +15748,129 @@ msgstr "成功 %s" msgid "Error %s" msgstr "エラー %s" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:156 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:163 msgid "There are no defined autoconfigurations" msgstr "定義済の自動設定がありません" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 -#: ../../enterprise/godmode/agentes/plugins_manager.php:195 -#: ../../enterprise/godmode/agentes/plugins_manager.php:262 -#: ../../enterprise/godmode/policies/policy_alerts.php:722 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:188 +#: ../../enterprise/godmode/agentes/plugins_manager.php:215 +#: ../../enterprise/godmode/agentes/plugins_manager.php:283 +#: ../../enterprise/godmode/policies/policy_alerts.php:686 #: ../../enterprise/include/functions_HA_cluster.php:61 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1113 #: ../../enterprise/include/lib/Metaconsole/Node.php:1114 -#: ../../godmode/extensions.php:257 ../../godmode/users/user_list.php:805 -#: ../../godmode/massive/massive_edit_users.php:530 -#: ../../godmode/alerts/alert_list.list.php:1044 -#: ../../include/class/SatelliteAgent.class.php:1216 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1115 +#: ../../godmode/users/user_list.php:845 +#: ../../godmode/massive/massive_edit_users.php:529 +#: ../../godmode/alerts/alert_list.list.php:1170 +#: ../../include/class/SatelliteAgent.class.php:1195 +#: ../../include/class/TipsWindow.class.php:456 +#: ../../include/class/TipsWindow.class.php:734 +#: ../../include/class/TipsWindow.class.php:901 #: ../../operation/users/user_edit_notifications.php:64 msgid "Enable" msgstr "有効" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:173 -#: ../../enterprise/godmode/agentes/plugins_manager.php:195 -#: ../../enterprise/godmode/agentes/plugins_manager.php:271 -#: ../../enterprise/godmode/policies/policy_alerts.php:714 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:188 +#: ../../enterprise/godmode/agentes/plugins_manager.php:215 +#: ../../enterprise/godmode/agentes/plugins_manager.php:292 +#: ../../enterprise/godmode/policies/policy_alerts.php:678 #: ../../enterprise/include/functions_HA_cluster.php:58 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1139 #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 -#: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:800 -#: ../../godmode/massive/massive_edit_users.php:519 -#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3403 -#: ../../include/class/SatelliteAgent.class.php:1216 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1141 +#: ../../godmode/users/user_list.php:840 +#: ../../godmode/massive/massive_edit_users.php:518 +#: ../../godmode/alerts/alert_list.list.php:1143 ../../include/functions.php:3413 +#: ../../include/class/SatelliteAgent.class.php:1195 msgid "Disable" msgstr "無効" -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:194 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:218 msgid "Add new configuration definition" msgstr "新規設定定義追加" -#: ../../enterprise/godmode/agentes/collections.agents.php:36 -msgid "Show Agent >" -msgstr "エージェント表示 >" +#: ../../enterprise/godmode/agentes/collections.agents.php:45 +msgid "Agents added" +msgstr " エージェントを追加しました" -#: ../../enterprise/godmode/agentes/collections.agents.php:120 -#: ../../enterprise/godmode/agentes/collections.agents.php:124 +#: ../../enterprise/godmode/agentes/collections.agents.php:145 +#: ../../enterprise/godmode/agentes/collections.agents.php:149 msgid "This collection has not been added to any agents" msgstr "このコレクションはどのエージェントにも追加されていません" -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 -#: ../../enterprise/godmode/policies/policy.php:82 -#: ../../enterprise/include/functions_policies.php:3833 -#: ../../godmode/agentes/configurar_agente.php:742 -msgid "Agent plugins" -msgstr "エージェントプラグイン" +#: ../../enterprise/godmode/agentes/configurar_agente.php:62 +#: ../../enterprise/godmode/menu.php:74 +#: ../../enterprise/operation/agentes/ver_agente.php:425 +#: ../../godmode/agentes/configurar_agente.php:720 +msgid "Network config manager" +msgstr "ネットワーク設定管理" -#: ../../enterprise/godmode/agentes/collection_manager.php:37 -#: ../../enterprise/operation/agentes/collection_view.php:60 +#: ../../enterprise/godmode/agentes/configurar_agente.php:82 +#: ../../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 +#: ../../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 +msgid "Plugins" +msgstr "プラグイン" + +#: ../../enterprise/godmode/agentes/collection_manager.php:46 +#: ../../enterprise/operation/agentes/collection_view.php:69 msgid "This agent have not a remote configuration, please set it." msgstr "このエージェントはリモート設定ではありません。設定してください。" -#: ../../enterprise/godmode/agentes/collection_manager.php:77 +#: ../../enterprise/godmode/agentes/collection_manager.php:129 msgid "Succesful add the collection" msgstr "コレクションを追加しました" -#: ../../enterprise/godmode/agentes/collection_manager.php:78 +#: ../../enterprise/godmode/agentes/collection_manager.php:130 msgid "Unsuccesful add the collection" msgstr "コレクションの追加に失敗しました" -#: ../../enterprise/godmode/agentes/collection_manager.php:129 -#: ../../enterprise/godmode/agentes/collection_manager.php:130 -#: ../../enterprise/godmode/agentes/collection_manager.php:254 -#: ../../enterprise/operation/agentes/policy_view.php:195 +#: ../../enterprise/godmode/agentes/collection_manager.php:179 +#: ../../enterprise/godmode/agentes/collection_manager.php:180 +#: ../../enterprise/godmode/agentes/collection_manager.php:310 #: ../../enterprise/operation/agentes/policy_view.php:196 -#: ../../enterprise/operation/agentes/collection_view.php:108 +#: ../../enterprise/operation/agentes/policy_view.php:197 +#: ../../enterprise/operation/agentes/collection_view.php:117 msgid "Show files" msgstr "ファイル表示" -#: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../enterprise/operation/log/log_viewer.php:1257 -#: ../../enterprise/operation/log/log_viewer.php:1265 -#: ../../godmode/reporting/reporting_builder.php:1260 -#: ../../include/functions_reporting.php:3095 +#: ../../enterprise/godmode/agentes/collection_manager.php:251 +#: ../../enterprise/operation/log/log_viewer.php:1477 +#: ../../enterprise/operation/log/log_viewer.php:1485 +#: ../../godmode/reporting/reporting_builder.php:1268 +#: ../../include/functions_reporting.php:3199 #: ../../operation/agentes/agent_inventory.php:280 -#: ../../operation/inventory/inventory.php:478 -#: ../../operation/inventory/inventory.php:521 +#: ../../operation/inventory/inventory.php:776 msgid "No data found." msgstr "データがありません。" -#: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../godmode/agentes/inventory_manager.php:220 -#: ../../godmode/agentes/module_manager.php:884 -#: ../../godmode/snmpconsole/snmp_alert.php:1254 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 +#: ../../enterprise/godmode/agentes/collection_manager.php:260 +#: ../../enterprise/operation/agentes/collection_view.php:83 +#: ../../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 -#: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 -#: ../../operation/agentes/status_monitor.php:1315 +#: ../../include/ajax/alert_list.ajax.php:285 +#: ../../operation/agentes/status_monitor.php:1531 msgid "P." msgstr "P." -#: ../../enterprise/godmode/agentes/collection_manager.php:207 -#: ../../enterprise/operation/agentes/policy_view.php:164 -#: ../../enterprise/operation/agentes/collection_view.php:76 -#: ../../include/class/SatelliteCollection.class.php:129 +#: ../../enterprise/godmode/agentes/collection_manager.php:262 +#: ../../enterprise/operation/agentes/policy_view.php:165 +#: ../../enterprise/operation/agentes/collection_view.php:85 +#: ../../include/class/SatelliteCollection.class.php:133 msgid "Dir" msgstr "ディレクトリ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:24 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:40 msgid "Capacity planning" msgstr "キャパシティプランニング" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:25 -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:41 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 #: ../../enterprise/godmode/services/services.elements.php:95 #: ../../enterprise/godmode/services/services.elements.php:184 #: ../../enterprise/include/functions_visual_map_editor.php:30 @@ -15396,88 +15879,101 @@ msgstr "キャパシティプランニング" #: ../../enterprise/include/functions_visual_map_editor.php:85 #: ../../enterprise/include/functions_visual_map.php:539 #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:288 -#: ../../enterprise/include/functions_reporting.php:6132 +#: ../../enterprise/include/functions_reporting.php:6152 #: ../../enterprise/include/functions_services.php:1712 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4013 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4118 #: ../../include/lib/Dashboard/Widgets/service_map.php:318 msgid "Service" msgstr "サービス" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:26 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:42 msgid "Synthetic arithmetic" msgstr "統合計算" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:27 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:43 msgid "Synthetic average" msgstr "統合平均" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:28 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:44 msgid "Trending module" msgstr "トレンドモジュール" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:114 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:135 msgid "Fixed value" msgstr "固定値" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:119 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:140 msgid "Add module to operation as add" msgstr "足し算処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:120 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:141 msgid "Add module to operations as deduct" msgstr "引き算処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:121 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:142 msgid "Add module to operations as multiplicate " msgstr "掛け算処理にモジュールを追加 " -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:122 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:143 msgid "Add module to operations as divide" msgstr "割り算処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:123 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 msgid "Remove selected modules" msgstr "選択したモジュールの削除" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:128 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:149 msgid "Add module to average operation" msgstr "平均処理にモジュールを追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:129 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:150 msgid "Remove selected modules from operations stack" msgstr "選択したモジュールをオペレーションスタックから削除する" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:144 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:165 msgid "Move down selected modules" msgstr "選択したモジュールを下へ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:145 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:166 msgid "Move up selected modules" msgstr "選択したモジュールを上へ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:175 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:199 msgid "Select Service" msgstr "サービス選択" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:188 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:216 msgid "Netflow filter" msgstr "Netflow フィルタ" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:197 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:225 msgid "Select filter" msgstr "フィルタ選択" -#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:207 +#: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:240 msgid "Percentual value" msgstr "パーセント値" -#: ../../enterprise/godmode/agentes/collections.data.php:384 +#: ../../enterprise/godmode/agentes/collections.data.php:72 +#: ../../enterprise/godmode/agentes/collections.data.php:187 +#: ../../enterprise/godmode/agentes/collections.data.php:215 +#: ../../enterprise/godmode/agentes/collections.data.php:239 +#: ../../enterprise/godmode/agentes/collections.data.php:270 +#: ../../enterprise/godmode/agentes/collections.data.php:334 +msgid "Manager configuration" +msgstr "設定管理" + +#: ../../enterprise/godmode/agentes/collections.data.php:393 +msgid "Manager configuration > Editwwww " +msgstr "設定管理 > 編集 " + +#: ../../enterprise/godmode/agentes/collections.data.php:422 msgid "Collection updated successfully" msgstr "コレクションを更新しました" -#: ../../enterprise/godmode/agentes/collections.data.php:395 -#: ../../enterprise/godmode/agentes/collections.editor.php:109 -#: ../../enterprise/godmode/agentes/collections.php:141 +#: ../../enterprise/godmode/agentes/collections.data.php:448 +#: ../../enterprise/godmode/agentes/collections.editor.php:130 +#: ../../enterprise/godmode/agentes/collections.php:176 #, php-format msgid "" "This console is not manager of this environment, please manage this feature " @@ -15486,17 +15982,21 @@ msgstr "" "このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理し" "てください。" -#: ../../enterprise/godmode/agentes/collections.data.php:410 +#: ../../enterprise/godmode/agentes/collections.data.php:463 msgid "Please go to the metaconsole and apply this collection" msgstr "メタコンソールに移動して、このコレクションを適用してください" -#: ../../enterprise/godmode/agentes/collections.data.php:414 +#: ../../enterprise/godmode/agentes/collections.data.php:467 msgid "Error: The collection directory does not exist." msgstr "エラー: コレクションディレクトリが存在しません。" -#: ../../enterprise/godmode/agentes/collections.editor.php:98 -msgid "Files in " -msgstr "次の中に存在するファイル: " +#: ../../enterprise/godmode/agentes/collections.editor.php:96 +msgid "Collection files" +msgstr "コレクションファイル" + +#: ../../enterprise/godmode/agentes/collections.editor.php:101 +msgid "Edit files" +msgstr "ファイル編集" #: ../../enterprise/godmode/agentes/plugins_manager.php:66 msgid "Plug-in updated succesfully" @@ -15540,126 +16040,103 @@ msgstr "プラグインを無効化しました" msgid "Plug-in cannot be disabled" msgstr "プラグインを無効化できません" -#: ../../enterprise/godmode/agentes/plugins_manager.php:127 +#: ../../enterprise/godmode/agentes/plugins_manager.php:131 #: ../../enterprise/godmode/policies/policy_plugins.php:127 msgid "If enabled, allows to define a complex module plugin or log." msgstr "有効にすると、複雑なモジュールプラグインまたはログを定義できます。" -#: ../../enterprise/godmode/agentes/plugins_manager.php:142 +#: ../../enterprise/godmode/agentes/plugins_manager.php:145 #: ../../enterprise/godmode/policies/policy_plugins.php:141 msgid "New plug-in" msgstr "新規プラグイン" -#: ../../enterprise/godmode/agentes/plugins_manager.php:192 -#: ../../enterprise/godmode/policies/policy_plugins.php:185 -#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:312 -msgid "Plugins" -msgstr "プラグイン" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:58 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:61 -msgid "The changes on this field are linked with the configuration data." -msgstr "このフィールド上の変更は、設定データにリンクされます。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:67 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:79 msgid "Using local component" msgstr "ローカルコンポーネントの利用" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:76 -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:96 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:107 #: ../../godmode/agentes/module_manager_editor_common.php:118 -#: ../../godmode/agentes/module_manager_editor_common.php:135 +#: ../../godmode/agentes/module_manager_editor_common.php:133 msgid "Manual setup" msgstr "個別設定" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:88 -#: ../../godmode/agentes/module_manager_editor_common.php:127 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:100 +#: ../../godmode/agentes/module_manager_editor_common.php:126 msgid "No component was found" msgstr "コンポーネントが見つかりません。" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:114 -msgid "macro_help" -msgstr "マクロヘルプ" - -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:170 msgid "Show configuration data" msgstr "設定データを表示する" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:166 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:181 msgid "Hide configuration data" msgstr "設定データを隠す" -#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:174 +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:189 msgid "Data configuration" msgstr "データ設定" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:121 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:136 msgid "Error: The conf file of agent is not readble." msgstr "エラー: エージェント設定ファイルを読めません。" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:125 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:140 msgid "Error: The conf file of agent is not writable." msgstr "エラー: エージェント設定ファイルに書き込めません。" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:178 -#: ../../enterprise/godmode/policies/policy_modules.php:388 -msgid "Add module" -msgstr "モジュール追加" - -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:213 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:229 msgid "No module was found" msgstr "モジュールがありません" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:248 -msgid "Delete remote conf agent files" -msgstr "エージェントのリモート設定ファイル削除" +#: ../../enterprise/godmode/policies/policy_modules.php:388 +msgid "Add module" +msgstr "モジュール追加" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 -#: ../../godmode/agentes/agent_manager.php:543 -msgid "Delete remote configuration file" -msgstr "リモート設定ファイル削除" +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:260 +msgid "Delete remote configuration" +msgstr "リモート設定削除" -#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:329 msgid "" "Delete this conf file implies that for restore you must reactive remote config " -"in the local agent." +"in the local agent.

Are you sure?" msgstr "" "この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効" -"化する必要があります。" +"化する必要があります。

よろしいですか?" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:98 -#: ../../godmode/agentes/module_manager_editor_common.php:238 +#: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:339 +msgid "Add Modules" +msgstr "モジュール追加:" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:83 +#: ../../godmode/agentes/module_manager.php:1247 msgid "Delete module" msgstr "モジュール削除" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:127 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:133 msgid "Run performance tests" msgstr "パフォーマンステストの実行" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:138 -msgid "Target web site" -msgstr "対象ウェブサイト" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:140 -msgid "" -"The url specified in this field is mandatory to retrieve performance stats." -msgstr "" -"このフィールドで指定された URL は、パフォーマンス統計を取得するために必須です。" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:154 -msgid "target web site (http://...)" -msgstr "対象ウェブサイト (http://...)" - -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:161 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:146 msgid "Execute tests from" msgstr "次からテストを実行:" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:177 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:165 +msgid "Target web site" +msgstr "対象ウェブサイト" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:175 +msgid "target web site (http://...)" +msgstr "対象ウェブサイト (http://...)" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:183 msgid "Browser" msgstr "ブラウザ" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:179 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:184 msgid "" "Support for IE and Edge browsers is experimental. Tests might not work as " "expected." @@ -15667,23 +16144,25 @@ msgstr "" "IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能" "しない可能性があります。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:219 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:210 msgid "User data dir" msgstr "ユーザデータディレクトリ" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:221 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:211 #, php-format msgid "Google Chrome only. Set user data dir, specify the full path %s." msgstr "" "Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定しま" "す。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:241 +#: ../../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 #: ../../operation/search_users.php:47 msgid "Profile" msgstr "プロファイル" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:243 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 #, php-format msgid "" "Google Chrome only. Use a custom profile, specify the full folder name %s." @@ -15691,40 +16170,49 @@ msgstr "" "Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定" "します。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:265 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 msgid "Accept insecure certificates" msgstr "安全でない証明書を受け入れる" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:267 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:253 msgid "Only Selenium 3." msgstr "Selenium 3 のみ。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:393 -msgid "Paste your selenium test, exported as HTML, here" -msgstr "HTML としてエクスポートされた selenium テストをここに貼り付けます" +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:286 +#: ../../godmode/agentes/module_manager_editor_common.php:1206 +msgid "Change all states" +msgstr "全てのステータス変更" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:406 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:391 msgid "Add file" msgstr "ファイル追加" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:414 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:399 msgid "Upload your selenium test in html or side (only Selenium 3) format" msgstr "" "selenium テストを html または side (Selenium 3 のみ)形式でアップロードします" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:442 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:405 +msgid "File preview" +msgstr "ファイルのプレビュー" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:411 +msgid "Paste your selenium test, exported as HTML, here" +msgstr "HTML としてエクスポートされた selenium テストをここに貼り付けます" + +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:443 #: ../../enterprise/tools/ipam/ipam_excel.php:220 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:342 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:674 -#: ../../godmode/groups/configure_group.php:238 -#: ../../godmode/agentes/agent_manager.php:198 -#: ../../godmode/agentes/module_manager_editor_common.php:582 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:419 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:792 +#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/agentes/agent_manager.php:195 +#: ../../godmode/agentes/module_manager_editor_common.php:744 #: ../../godmode/massive/massive_edit_agents.php:812 msgid "Custom ID" msgstr "カスタムID" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:498 -#: ../../godmode/agentes/module_manager.php:1166 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 +#: ../../godmode/agentes/module_manager.php:902 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -15732,36 +16220,36 @@ msgstr "" "データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔" "でのみ更新されます。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:524 +#: ../../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:879 -#: ../../godmode/massive/massive_edit_modules.php:1014 +#: ../../godmode/agentes/module_manager_editor_common.php:1281 +#: ../../godmode/massive/massive_edit_modules.php:1029 msgid "FF interval" msgstr "連続抑制時の間隔" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:540 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:528 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:962 -#: ../../godmode/massive/massive_edit_modules.php:1024 +#: ../../godmode/massive/massive_edit_modules.php:1039 msgid "Module execution flip flop time interval (in secs)." msgstr "連続抑制時のモジュールの実行間隔(秒単位)です。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:544 +#: ../../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:1152 -#: ../../godmode/massive/massive_edit_modules.php:1135 +#: ../../godmode/agentes/module_manager_editor_common.php:1410 +#: ../../godmode/massive/massive_edit_modules.php:1150 msgid "Retries" msgstr "リトライ" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:559 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:547 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1059 -#: ../../godmode/massive/massive_edit_modules.php:1137 +#: ../../godmode/massive/massive_edit_modules.php:1152 msgid "Number of retries that the module will attempt to run." msgstr "モジュールを再実行する回数。" -#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:618 +#: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:619 #: ../../enterprise/godmode/policies/policy_modules.php:418 -#: ../../godmode/agentes/module_manager_editor.php:752 -#: ../../godmode/agentes/module_manager_editor_common.php:1240 +#: ../../godmode/agentes/module_manager_editor.php:762 +#: ../../godmode/agentes/module_manager_editor_common.php:1444 msgid "Custom macros" msgstr "カスタムマクロ" @@ -15771,76 +16259,73 @@ msgid "Empty Network maps editor" msgstr "空のネットワークマップエディタ" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:102 -#: ../../enterprise/godmode/services/services.service.php:526 -#: ../../enterprise/godmode/services/services.elements.php:837 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:117 -#: ../../enterprise/godmode/reporting/visual_console_template.php:118 -#: ../../enterprise/operation/services/services.service.php:79 -#: ../../enterprise/operation/services/massive/services.delete.php:55 -#: ../../enterprise/operation/services/massive/services.create.php:608 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:118 -#: ../../enterprise/operation/services/massive/service.create.elements.php:256 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:159 -#: ../../enterprise/operation/services/services.service_map.php:93 -#: ../../enterprise/operation/services/services.treeview_services.php:78 -#: ../../enterprise/operation/services/services.list.php:71 -#: ../../enterprise/operation/services/services.table_services.php:54 +#: ../../enterprise/godmode/services/services.service.php:517 +#: ../../enterprise/godmode/services/services.elements.php:916 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:129 +#: ../../enterprise/godmode/reporting/visual_console_template.php:132 +#: ../../enterprise/operation/services/services.service.php:70 +#: ../../enterprise/operation/services/massive/services.delete.php:50 +#: ../../enterprise/operation/services/massive/services.create.php:603 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:113 +#: ../../enterprise/operation/services/massive/service.create.elements.php:251 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:154 +#: ../../enterprise/operation/services/services.service_map.php:84 +#: ../../enterprise/operation/services/services.treeview_services.php:69 +#: ../../enterprise/operation/services/services.list.php:66 +#: ../../enterprise/operation/services/services.table_services.php:63 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:104 -#: ../../godmode/reporting/visual_console_builder.php:878 -#: ../../godmode/reporting/map_builder.php:130 -#: ../../godmode/reporting/visual_console_favorite.php:127 -#: ../../operation/visual_console/view.php:228 +#: ../../godmode/gis_maps/configure_gis_map.php:116 +#: ../../godmode/reporting/visual_console_builder.php:865 +#: ../../godmode/reporting/map_builder.php:129 +#: ../../godmode/reporting/visual_console_favorite.php:126 +#: ../../operation/visual_console/view.php:247 #: ../../operation/agentes/pandora_networkmap.editor.php:232 -#: ../../operation/agentes/pandora_networkmap.php:672 -#: ../../operation/menu.php:314 +#: ../../operation/agentes/pandora_networkmap.php:681 +#: ../../operation/agentes/pandora_networkmap.view.php:2409 +#: ../../operation/menu.php:439 ../../operation/gis_maps/gis_map.php:47 +#: ../../operation/gis_maps/render_view.php:189 msgid "Topology maps" 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:676 -#: ../../operation/agentes/pandora_networkmap.view.php:2278 +#: ../../operation/agentes/pandora_networkmap.php:685 +#: ../../operation/agentes/pandora_networkmap.view.php:2311 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:2284 +#: ../../operation/agentes/pandora_networkmap.view.php:2317 msgid "Not found networkmap." msgstr "ネットワークマップがありません。" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:173 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:175 -#: ../../operation/agentes/pandora_networkmap.editor.php:476 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:187 +#: ../../operation/agentes/pandora_networkmap.editor.php:576 msgid "Save networkmap" msgstr "ネットワークマップの保存" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:184 -#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:186 -#: ../../operation/agentes/pandora_networkmap.editor.php:487 +#: ../../godmode/agentes/pandora_networkmap_empty.editor.php:193 +#: ../../operation/agentes/pandora_networkmap.editor.php:591 msgid "Update networkmap" msgstr "ネットワークマップの更新" -#: ../../enterprise/godmode/agentes/collections.php:106 +#: ../../enterprise/godmode/agentes/collections.php:114 msgid "Success: recreate file" msgstr "成功: ファイル再作成" -#: ../../enterprise/godmode/agentes/collections.php:108 +#: ../../enterprise/godmode/agentes/collections.php:116 msgid "Error: recreate file " msgstr "エラー: ファイル再作成 " -#: ../../enterprise/godmode/agentes/collections.php:131 -#: ../../enterprise/godmode/agentes/collections.php:172 -#: ../../enterprise/godmode/agentes/collections.php:281 +#: ../../enterprise/godmode/agentes/collections.php:156 msgid "Collections Management" msgstr "コレクション管理" -#: ../../enterprise/godmode/agentes/collections.php:224 -msgid "Manager collection" -msgstr "コレクション管理" - #: ../../enterprise/godmode/agentes/manage_config_remote.php:56 msgid "Data Copy" msgstr "データコピー" @@ -15891,23 +16376,23 @@ msgid "Error copying config file/s: origin and destiny agent are the same." msgstr "" "設定ファイルのコピーエラー: 元のエージェントと宛先のエージェントが同じです。" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:248 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:268 msgid "Source Group" msgstr "ソースグループ" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:279 -msgid "Destination agent(s)" -msgstr "対象エージェント" - -#: ../../enterprise/godmode/agentes/manage_config_remote.php:291 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:288 msgid "Source Agent" msgstr "ソースエージェント" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:316 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:315 +msgid "Destination agent(s)" +msgstr "対象エージェント" + +#: ../../enterprise/godmode/agentes/manage_config_remote.php:326 msgid "Replicate configuration" msgstr "設定の複製" -#: ../../enterprise/godmode/agentes/manage_config_remote.php:337 +#: ../../enterprise/godmode/agentes/manage_config_remote.php:345 msgid "The action to be performed cannot be reversed. Are you sure to continue?" msgstr "" "実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" @@ -15917,15 +16402,15 @@ msgid "Create a new web analysis module" msgstr "新規ウェブ分析モジュールの作成" #: ../../enterprise/godmode/policies/policy_plugins.php:38 -#: ../../enterprise/godmode/policies/policy_alerts.php:64 -#: ../../enterprise/godmode/policies/configure_policy.php:83 -#: ../../enterprise/godmode/policies/policy_modules.php:477 +#: ../../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/policies.php:272 -#: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 -#: ../../enterprise/godmode/policies/policy_collections.php:50 +#: ../../enterprise/godmode/policies/policies.php:275 +#: ../../enterprise/godmode/policies/policy_linking.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:329 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:99 +#: ../../enterprise/godmode/policies/policy_collections.php:69 #: ../../enterprise/godmode/policies/policy_agents.php:326 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:40 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:38 @@ -15953,24 +16438,24 @@ msgid "Cannot be added to delete pending plugins." msgstr "削除待ちプラグインを追加できません。" #: ../../enterprise/godmode/policies/policy_plugins.php:70 -#: ../../enterprise/godmode/policies/policy_alerts.php:259 -#: ../../enterprise/godmode/policies/policy_modules.php:1321 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:152 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 -#: ../../enterprise/godmode/policies/policy_collections.php:103 -#: ../../enterprise/godmode/policies/policy_agents.php:113 -#: ../../enterprise/godmode/policies/policy_agents.php:129 +#: ../../enterprise/godmode/policies/policy_alerts.php:270 +#: ../../enterprise/godmode/policies/policy_modules.php:1332 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:162 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:177 +#: ../../enterprise/godmode/policies/policy_collections.php:122 +#: ../../enterprise/godmode/policies/policy_agents.php:112 +#: ../../enterprise/godmode/policies/policy_agents.php:128 msgid "Successfully reverted deletion" msgstr "削除を取り消しました" #: ../../enterprise/godmode/policies/policy_plugins.php:71 -#: ../../enterprise/godmode/policies/policy_alerts.php:260 -#: ../../enterprise/godmode/policies/policy_modules.php:1322 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:153 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 -#: ../../enterprise/godmode/policies/policy_collections.php:104 -#: ../../enterprise/godmode/policies/policy_agents.php:114 -#: ../../enterprise/godmode/policies/policy_agents.php:130 +#: ../../enterprise/godmode/policies/policy_alerts.php:271 +#: ../../enterprise/godmode/policies/policy_modules.php:1333 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:163 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:180 +#: ../../enterprise/godmode/policies/policy_collections.php:123 +#: ../../enterprise/godmode/policies/policy_agents.php:113 +#: ../../enterprise/godmode/policies/policy_agents.php:129 msgid "Could not be reverted" msgstr "取り消しできませんでした" @@ -15986,75 +16471,75 @@ msgstr "プラグインを更新できませんでした" msgid "There are no defined plugins" msgstr "定義済のプラグインがありません" -#: ../../enterprise/godmode/policies/policy_alerts.php:94 -#: ../../enterprise/godmode/policies/policy_modules.php:600 -#: ../../enterprise/godmode/policies/policies.php:253 -#: ../../enterprise/godmode/policies/policy_linking.php:41 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:77 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:98 -#: ../../enterprise/godmode/policies/policy_collections.php:63 -#: ../../enterprise/godmode/policies/policy_agents.php:85 +#: ../../enterprise/godmode/policies/policy_alerts.php:105 +#: ../../enterprise/godmode/policies/policy_modules.php:611 +#: ../../enterprise/godmode/policies/policies.php:256 +#: ../../enterprise/godmode/policies/policy_linking.php:51 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:106 +#: ../../enterprise/godmode/policies/policy_collections.php:82 +#: ../../enterprise/godmode/policies/policy_agents.php:84 #: ../../godmode/agentes/module_manager_editor.php:544 msgid "This policy is applying and cannot be modified" msgstr "このポリシーを摘要すると変更できません。" -#: ../../enterprise/godmode/policies/policy_alerts.php:153 -#: ../../enterprise/godmode/policies/policy_modules.php:536 +#: ../../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:2250 -#: ../../godmode/agentes/modificar_agente.php:278 +#: ../../godmode/agentes/configurar_agente.php:2214 +#: ../../godmode/agentes/modificar_agente.php:271 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 #: ../../godmode/alerts/alert_list.php:419 #: ../../include/ajax/alert_list.ajax.php:381 msgid "Could not be disabled" msgstr "無効にできませんでした。" -#: ../../enterprise/godmode/policies/policy_alerts.php:178 +#: ../../enterprise/godmode/policies/policy_alerts.php:189 #: ../../godmode/massive/massive_standby_alerts.php:132 #: ../../godmode/alerts/alert_list.php:445 msgid "Successfully set standby" msgstr "スタンバイ状態にしました。" -#: ../../enterprise/godmode/policies/policy_alerts.php:179 +#: ../../enterprise/godmode/policies/policy_alerts.php:190 #: ../../godmode/massive/massive_standby_alerts.php:132 #: ../../godmode/alerts/alert_list.php:446 msgid "Could not be set standby" msgstr "スタンバイ状態にできませんでした。" -#: ../../enterprise/godmode/policies/policy_alerts.php:204 +#: ../../enterprise/godmode/policies/policy_alerts.php:215 #: ../../godmode/massive/massive_standby_alerts.php:102 #: ../../godmode/alerts/alert_list.php:472 msgid "Successfully set off standby" msgstr "非スタンバイ状態にしました。" -#: ../../enterprise/godmode/policies/policy_alerts.php:205 +#: ../../enterprise/godmode/policies/policy_alerts.php:216 #: ../../godmode/massive/massive_standby_alerts.php:102 #: ../../godmode/alerts/alert_list.php:473 msgid "Could not be set off standby" msgstr "非スタンバイ状態にできませんでした。" -#: ../../enterprise/godmode/policies/policy_alerts.php:249 +#: ../../enterprise/godmode/policies/policy_alerts.php:260 msgid " created successfuly" msgstr " を作成しました" -#: ../../enterprise/godmode/policies/policy_alerts.php:249 +#: ../../enterprise/godmode/policies/policy_alerts.php:260 msgid " could not be created" msgstr " の作成ができませんでした" -#: ../../enterprise/godmode/policies/policy_alerts.php:255 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 +#: ../../enterprise/godmode/policies/policy_alerts.php:266 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:157 msgid "" "Successfully added to delete pending alerts. Will be deleted in the next " "policy application." msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 +#: ../../enterprise/godmode/policies/policy_alerts.php:291 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:212 msgid "Added action successfuly" msgstr "アクションを追加しました" -#: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:203 +#: ../../enterprise/godmode/policies/policy_alerts.php:291 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:213 #: ../../enterprise/godmode/policies/policy_agents.php:251 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 #: ../../godmode/massive/massive_delete_action_alerts.php:175 @@ -16068,101 +16553,96 @@ msgstr "アクションを追加しました" msgid "Could not be added" msgstr "追加できませんでした。" -#: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:175 +#: ../../enterprise/godmode/policies/policy_alerts.php:315 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:185 msgid "Deleted action successfuly" msgstr "アクションを削除しました" -#: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2404 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 -#: ../../godmode/alerts/alert_list.list.php:650 -#: ../../godmode/alerts/alert_view.php:234 ../../include/functions_alerts.php:683 +#: ../../enterprise/godmode/policies/policy_alerts.php:429 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:508 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2437 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3441 +#: ../../godmode/alerts/alert_list.list.php:722 +#: ../../godmode/alerts/alert_view.php:240 ../../include/functions_alerts.php:683 msgid "Always" msgstr "常時" -#: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:472 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 -#: ../../godmode/alerts/alert_list.list.php:652 -#: ../../include/class/Diagnostics.class.php:1184 -#: ../../include/class/Diagnostics.class.php:1188 +#: ../../enterprise/godmode/policies/policy_alerts.php:431 +#: ../../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 msgid "On" msgstr "次のアラート回数でアクション実施:" -#: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3378 -#: ../../godmode/alerts/alert_list.list.php:656 +#: ../../enterprise/godmode/policies/policy_alerts.php:435 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:514 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3447 +#: ../../godmode/alerts/alert_list.list.php:728 msgid "Until" msgstr "次のアラート回数までアクション実施:" -#: ../../enterprise/godmode/policies/policy_alerts.php:529 -#: ../../enterprise/godmode/policies/policy_modules.php:1578 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:544 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1571 +#: ../../enterprise/godmode/policies/policy_alerts.php:577 +#: ../../enterprise/godmode/policies/policy_modules.php:1653 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:583 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 +#: ../../enterprise/godmode/policies/policy_agents.php:1192 +#: ../../enterprise/godmode/policies/policy_agents.php:1521 msgid "Undo deletion" msgstr "削除取り消し" -#: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 -#: ../../godmode/massive/massive_add_action_alerts.php:253 -#: ../../godmode/alerts/alert_list.list.php:767 -#: ../../godmode/alerts/alert_list.builder.php:127 -#: ../../include/ajax/alert_list.ajax.php:516 -#: ../../include/class/AgentsAlerts.class.php:314 -msgid "Number of alerts match from" -msgstr "アクションを起こすアラート数: 開始" - #: ../../enterprise/godmode/policies/policy_alerts.php:613 msgid "There is not alerts configured in this policy." msgstr "このポリシーにアラート設定がありません。" -#: ../../enterprise/godmode/policies/policy_alerts.php:642 -#: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:115 -#: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:125 -#: ../../godmode/massive/massive_standby_alerts.php:218 -#: ../../godmode/massive/massive_add_alerts.php:280 -#: ../../godmode/massive/massive_enable_disable_alerts.php:190 -#: ../../godmode/massive/massive_delete_alerts.php:272 -msgid "Alert template" -msgstr "アラートテンプレート" - -#: ../../enterprise/godmode/policies/policy_alerts.php:653 -msgid "Policy module" -msgstr "ポリシーモジュール" - -#: ../../enterprise/godmode/policies/policy_alerts.php:731 -#: ../../godmode/alerts/alert_list.list.php:1071 +#: ../../enterprise/godmode/policies/policy_alerts.php:695 +#: ../../godmode/alerts/alert_list.list.php:1197 msgid "Set off standby" msgstr "非スタンバイ状態にする" -#: ../../enterprise/godmode/policies/policy_alerts.php:740 -#: ../../godmode/alerts/alert_list.list.php:1098 +#: ../../enterprise/godmode/policies/policy_alerts.php:704 +#: ../../godmode/alerts/alert_list.list.php:1224 msgid "Set standby" msgstr "スタンバイ状態にする" -#: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:519 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:488 -#: ../../godmode/snmpconsole/snmp_alert.php:1381 -#: ../../godmode/alerts/alert_list.list.php:913 -#: ../../godmode/alerts/alert_list.list.php:920 -#: ../../godmode/alerts/alert_list.list.php:1144 +#: ../../enterprise/godmode/policies/policy_alerts.php:721 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:330 +#: ../../godmode/alerts/alert_list.builder.php:212 +#: ../../godmode/alerts/alert_list.builder.php:223 +#: ../../include/class/AgentsAlerts.class.php:408 +msgid "Add alert" +msgstr "アラートの追加" + +#: ../../enterprise/godmode/policies/policy_alerts.php:739 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:557 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:368 +#: ../../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 msgid "Add action" msgstr "アクションの追加" -#: ../../enterprise/godmode/policies/configure_policy.php:124 +#: ../../enterprise/godmode/policies/configure_policy.php:56 +#: ../../enterprise/godmode/policies/policy_modules.php:468 +msgid "Managent policies" +msgstr "ポリシー管理" + +#: ../../enterprise/godmode/policies/configure_policy.php:60 +#: ../../enterprise/operation/services/services.list.php:663 +#: ../../operation/heatmap.php:73 ../../operation/heatmap.php:287 +msgid "Config" +msgstr "設定" + +#: ../../enterprise/godmode/policies/configure_policy.php:146 msgid "Force Apply" msgstr "強制適用" -#: ../../enterprise/godmode/policies/configure_policy.php:124 +#: ../../enterprise/godmode/policies/configure_policy.php:146 msgid "" "Force the creation of modules even if the software agent does not have remote " "configuration" @@ -16170,11 +16650,11 @@ msgstr "" "ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制し" "ます" -#: ../../enterprise/godmode/policies/configure_policy.php:127 +#: ../../enterprise/godmode/policies/configure_policy.php:151 msgid "Use secondary groups" msgstr "セカンダリグループの利用" -#: ../../enterprise/godmode/policies/configure_policy.php:127 +#: ../../enterprise/godmode/policies/configure_policy.php:151 msgid "" "Policy will be applied to those agents belonging to groups or secondary groups " "that have been selected" @@ -16193,138 +16673,132 @@ msgid "Invalid module type." msgstr "不正なモジュールタイプ。" #: ../../enterprise/godmode/policies/policy_modules.php:404 -#: ../../godmode/agentes/module_manager_editor.php:740 +#: ../../godmode/agentes/module_manager_editor.php:738 msgid "Base options" msgstr "ベースオプション" -#: ../../enterprise/godmode/policies/policy_modules.php:549 +#: ../../enterprise/godmode/policies/policy_modules.php:560 msgid "Could not be added module(s). You must select a policy" msgstr "モジュールを追加できません。ポリシーを選択する必要があります。" -#: ../../enterprise/godmode/policies/policy_modules.php:582 +#: ../../enterprise/godmode/policies/policy_modules.php:593 #, php-format msgid "Successfully added module(s) (%s/%s) to policy %s" msgstr "モジュール (%s/%s) を、ポリシー %s に追加しました" -#: ../../enterprise/godmode/policies/policy_modules.php:588 +#: ../../enterprise/godmode/policies/policy_modules.php:599 #, php-format msgid "Could not be added module(s) (%s/%s) to policy %s" msgstr "モジュール (%s/%s) をポリシー %s に追加できませんでした" -#: ../../enterprise/godmode/policies/policy_modules.php:624 +#: ../../enterprise/godmode/policies/policy_modules.php:635 msgid "To define plugins please use plugin configuration tab." msgstr "プラグインの定義にはプラグイン設定タブを使ってください。" -#: ../../enterprise/godmode/policies/policy_modules.php:923 +#: ../../enterprise/godmode/policies/policy_modules.php:934 msgid "Could not be added module." msgstr "モジュールを追加できませんでした。" -#: ../../enterprise/godmode/policies/policy_modules.php:1270 +#: ../../enterprise/godmode/policies/policy_modules.php:1281 msgid "" "The module type in Data configuration is empty, take from combo box of form." msgstr "データ設定内のモジュールタイプが空です。フォームから選択してください。" -#: ../../enterprise/godmode/policies/policy_modules.php:1274 +#: ../../enterprise/godmode/policies/policy_modules.php:1285 msgid "" "The module name in Data configuration is empty, take from text field of form." msgstr "" "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" -#: ../../enterprise/godmode/policies/policy_modules.php:1304 -#: ../../enterprise/godmode/policies/policy_modules.php:1317 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:163 +#: ../../enterprise/godmode/policies/policy_modules.php:1315 +#: ../../enterprise/godmode/policies/policy_modules.php:1328 +#: ../../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:1308 +#: ../../enterprise/godmode/policies/policy_modules.php:1319 msgid "Could not be added to deleted all modules." msgstr "削除済の全モジュールへの追加ができませんでした。" -#: ../../enterprise/godmode/policies/policy_modules.php:1368 -#: ../../godmode/agentes/configurar_agente.php:2163 -#: ../../include/functions_reports.php:963 +#: ../../enterprise/godmode/policies/policy_modules.php:1379 +#: ../../godmode/agentes/configurar_agente.php:2127 +#: ../../include/functions_reports.php:975 #, php-format msgid "copy of %s" msgstr "%s のコピー" -#: ../../enterprise/godmode/policies/policy_modules.php:1386 -#: ../../godmode/agentes/configurar_agente.php:2177 +#: ../../enterprise/godmode/policies/policy_modules.php:1397 +#: ../../godmode/agentes/configurar_agente.php:2141 #, php-format msgid "copy of %s (%d)" msgstr "%s のコピー (%d)" -#: ../../enterprise/godmode/policies/policy_modules.php:1416 +#: ../../enterprise/godmode/policies/policy_modules.php:1427 msgid "Successfully duplicate the module." msgstr "モジュールを複製しました。" -#: ../../enterprise/godmode/policies/policy_modules.php:1417 +#: ../../enterprise/godmode/policies/policy_modules.php:1428 #: ../../operation/agentes/pandora_networkmap.php:540 msgid "Could not be duplicated" msgstr "複製できません" -#: ../../enterprise/godmode/policies/policy_modules.php:1497 +#: ../../enterprise/godmode/policies/policy_modules.php:1482 +#: ../../operation/agentes/estado_monitores.php:610 +msgid "Show in hierachy mode" +msgstr "階層モードで表示" + +#: ../../enterprise/godmode/policies/policy_modules.php:1577 msgid "Local component" msgstr "ローカルコンポーネント" -#: ../../enterprise/godmode/policies/policy_modules.php:1514 -#: ../../enterprise/godmode/policies/policy_modules.php:1515 +#: ../../enterprise/godmode/policies/policy_modules.php:1590 +#: ../../enterprise/godmode/policies/policy_modules.php:1591 msgid "Disabled module" msgstr "無効化モジュール" -#: ../../enterprise/godmode/policies/policy_modules.php:1522 -#: ../../enterprise/godmode/policies/policy_modules.php:1523 +#: ../../enterprise/godmode/policies/policy_modules.php:1598 +#: ../../enterprise/godmode/policies/policy_modules.php:1599 msgid "Enabled module" msgstr "有効化モジュール" -#: ../../enterprise/godmode/policies/policy_modules.php:1533 -#: ../../enterprise/godmode/policies/policy_modules.php:1534 -#: ../../godmode/agentes/module_manager.php:1208 -#: ../../godmode/agentes/module_manager.php:1209 +#: ../../enterprise/godmode/policies/policy_modules.php:1609 +#: ../../enterprise/godmode/policies/policy_modules.php:1610 +#: ../../godmode/agentes/module_manager.php:940 msgid "Enable module" msgstr "モジュールを有効化" -#: ../../enterprise/godmode/policies/policy_modules.php:1543 -#: ../../enterprise/godmode/policies/policy_modules.php:1544 -#: ../../godmode/agentes/module_manager.php:1218 -#: ../../godmode/agentes/module_manager.php:1219 +#: ../../enterprise/godmode/policies/policy_modules.php:1619 +#: ../../enterprise/godmode/policies/policy_modules.php:1620 +#: ../../godmode/agentes/module_manager.php:949 msgid "Disable module" msgstr "モジュールを無効化" -#: ../../enterprise/godmode/policies/policy_modules.php:1629 +#: ../../enterprise/godmode/policies/policy_modules.php:1719 msgid "There are no defined modules" msgstr "定義済のモジュールがありません" -#: ../../enterprise/godmode/policies/policy_modules.php:1648 -#: ../../godmode/massive/massive_copy_modules.php:188 -msgid "Copy modules" -msgstr "モジュールのコピー" - -#: ../../enterprise/godmode/policies/policy_modules.php:1649 -msgid "Copy selected modules to policy: " -msgstr "選択したモジュールをポリシーへコピー: " - -#: ../../enterprise/godmode/policies/policy_modules.php:1711 -#: ../../godmode/agentes/module_manager_editor.php:824 +#: ../../enterprise/godmode/policies/policy_modules.php:1840 +#: ../../godmode/agentes/module_manager_editor.php:868 msgid "No module name provided" msgstr "モジュール名がありません。" -#: ../../enterprise/godmode/policies/policy_modules.php:1712 -#: ../../godmode/agentes/module_manager_editor.php:834 +#: ../../enterprise/godmode/policies/policy_modules.php:1841 +#: ../../godmode/agentes/module_manager_editor.php:878 msgid "No target IP provided" msgstr "対象 IP がありません。" -#: ../../enterprise/godmode/policies/policy_modules.php:1713 -#: ../../godmode/agentes/module_manager_editor.php:844 +#: ../../enterprise/godmode/policies/policy_modules.php:1842 +#: ../../godmode/agentes/module_manager_editor.php:888 msgid "No SNMP OID provided" msgstr "SNMP OID がありません。" -#: ../../enterprise/godmode/policies/policy_modules.php:1854 +#: ../../enterprise/godmode/policies/policy_modules.php:2008 msgid "Are you sure to copy modules into policy?\\n" msgstr "モジュールをポリシーにコピーしますか?\\n" -#: ../../enterprise/godmode/policies/policy_modules.php:1874 +#: ../../enterprise/godmode/policies/policy_modules.php:2028 msgid "Please select any module to copy" msgstr "コピーするモジュールを選択してください" @@ -16333,7 +16807,7 @@ msgid "No policies with this id" msgstr "この ID のポリシーがありません" #: ../../enterprise/godmode/policies/policy_queue.php:78 -#: ../../enterprise/godmode/policies/policy_agents.php:62 +#: ../../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." @@ -16361,124 +16835,129 @@ msgstr "" "いくつかのノード(%s)には到達できません。一部の情報が欠落している可能性がありま" "す。" -#: ../../enterprise/godmode/policies/policy_queue.php:308 +#: ../../enterprise/godmode/policies/policy_queue.php:418 msgid "Update pending" msgstr "更新待ち" -#: ../../enterprise/godmode/policies/policy_queue.php:314 +#: ../../enterprise/godmode/policies/policy_queue.php:424 msgid "Update pending agents" msgstr "更新待ちエージェント" -#: ../../enterprise/godmode/policies/policy_queue.php:337 -#: ../../enterprise/godmode/policies/policy_agents.php:1048 -#: ../../enterprise/godmode/policies/policy_agents.php:1529 +#: ../../enterprise/godmode/policies/policy_queue.php:447 +#: ../../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:343 +#: ../../enterprise/godmode/policies/policy_queue.php:453 msgid "Add to apply queue only for database" msgstr "データベースにのみ適用キューを追加" -#: ../../enterprise/godmode/policies/policy_queue.php:354 +#: ../../enterprise/godmode/policies/policy_queue.php:464 msgid "Update pending groups" msgstr "ペンディンググループ更新" -#: ../../enterprise/godmode/policies/policy_queue.php:368 +#: ../../enterprise/godmode/policies/policy_queue.php:478 msgid "Link pending modules" msgstr "リンク待ちモジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:376 +#: ../../enterprise/godmode/policies/policy_queue.php:486 msgid "Will be linked in the next policy application" msgstr "次回のポリシー適用でリンクされます" -#: ../../enterprise/godmode/policies/policy_queue.php:382 +#: ../../enterprise/godmode/policies/policy_queue.php:492 msgid "Unlink pending modules" msgstr "リンク解除待ちモジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:388 +#: ../../enterprise/godmode/policies/policy_queue.php:498 msgid "Will be unlinked in the next policy application" msgstr "次回のポリシー適用でリンクが解除されます" -#: ../../enterprise/godmode/policies/policy_queue.php:393 +#: ../../enterprise/godmode/policies/policy_queue.php:503 msgid "Delete pending" msgstr "削除待ち" -#: ../../enterprise/godmode/policies/policy_queue.php:399 +#: ../../enterprise/godmode/policies/policy_queue.php:509 msgid "Delete pending agents" msgstr "削除待ちエージェント" -#: ../../enterprise/godmode/policies/policy_queue.php:407 -#: ../../enterprise/godmode/policies/policy_queue.php:422 -#: ../../enterprise/godmode/policies/policy_queue.php:437 -#: ../../enterprise/godmode/policies/policy_queue.php:452 -#: ../../enterprise/godmode/policies/policy_queue.php:467 -#: ../../enterprise/godmode/policies/policy_queue.php:482 -#: ../../enterprise/godmode/policies/policy_queue.php:497 -#: ../../enterprise/godmode/policies/policy_queue.php:512 +#: ../../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 msgid "Will be deleted in the next policy application" msgstr "次回のポリシー適用で削除されます" -#: ../../enterprise/godmode/policies/policy_queue.php:414 +#: ../../enterprise/godmode/policies/policy_queue.php:524 msgid "Delete pending groups" msgstr "ペンディンググループ削除" -#: ../../enterprise/godmode/policies/policy_queue.php:429 +#: ../../enterprise/godmode/policies/policy_queue.php:539 msgid "Delete pending modules" msgstr "削除待ちモジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:444 +#: ../../enterprise/godmode/policies/policy_queue.php:554 msgid "Delete pending inventory modules" msgstr "削除待ちインベントリモジュール" -#: ../../enterprise/godmode/policies/policy_queue.php:459 +#: ../../enterprise/godmode/policies/policy_queue.php:569 msgid "Delete pending alerts" msgstr "削除待ちアラート" -#: ../../enterprise/godmode/policies/policy_queue.php:474 +#: ../../enterprise/godmode/policies/policy_queue.php:584 msgid "Delete pending external alerts" msgstr "削除待ち外部アラート" -#: ../../enterprise/godmode/policies/policy_queue.php:489 +#: ../../enterprise/godmode/policies/policy_queue.php:599 msgid "Delete pending file collections" msgstr "削除待ちファイルコレクション" -#: ../../enterprise/godmode/policies/policy_queue.php:504 +#: ../../enterprise/godmode/policies/policy_queue.php:614 msgid "Delete pending plugins" msgstr "削除待ちプラグイン" -#: ../../enterprise/godmode/policies/policy_queue.php:518 +#: ../../enterprise/godmode/policies/policy_queue.php:628 msgid "Advices" msgstr "アドバイス" -#: ../../enterprise/godmode/policies/policy_queue.php:523 +#: ../../enterprise/godmode/policies/policy_queue.php:633 msgid "Queue summary" msgstr "キューサマリ" -#: ../../enterprise/godmode/policies/policy_queue.php:636 -msgid "Queue filter" -msgstr "キューフィルタ" +#: ../../enterprise/godmode/policies/policy_queue.php:634 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:186 +#: ../../godmode/snmpconsole/snmp_alert.php:1812 +#: ../../godmode/alerts/alert_list.list.php:260 +#: ../../operation/agentes/graphs.php:304 +msgid "Toggle filter(s)" +msgstr "フィルタ設定" -#: ../../enterprise/godmode/policies/policy_queue.php:670 -#: ../../enterprise/godmode/policies/policy_linking.php:153 -#: ../../include/functions_massive_operations.php:191 -#: ../../include/lib/Dashboard/Widget.php:596 -#: ../../include/functions_events.php:4713 +#: ../../enterprise/godmode/policies/policy_queue.php:710 +#: ../../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 msgid "Node" msgstr "ノード" -#: ../../enterprise/godmode/policies/policy_queue.php:790 +#: ../../enterprise/godmode/policies/policy_queue.php:838 msgid "Empty queue" msgstr "キューが空です" -#: ../../enterprise/godmode/policies/policy_queue.php:804 +#: ../../enterprise/godmode/policies/policy_queue.php:852 msgid "This operation could take a long time" msgstr "この操作は時間がかかります" -#: ../../enterprise/godmode/policies/policy_queue.php:815 +#: ../../enterprise/godmode/policies/policy_queue.php:864 msgid "Apply all queues" msgstr "全てのキューの適用" -#: ../../enterprise/godmode/policies/policy_queue.php:821 +#: ../../enterprise/godmode/policies/policy_queue.php:877 msgid "Clear all items" msgstr "全アイテムをクリア" @@ -16486,232 +16965,240 @@ msgstr "全アイテムをクリア" msgid "Policy not found." msgstr "ポリシーが見つかりません。" -#: ../../enterprise/godmode/policies/policies.php:154 +#: ../../enterprise/godmode/policies/policies.php:150 msgid "Policy name already exists" msgstr "ポリシー名が既に存在します" -#: ../../enterprise/godmode/policies/policies.php:228 +#: ../../enterprise/godmode/policies/policies.php:224 msgid "Policies Management" msgstr "ポリシー管理" -#: ../../enterprise/godmode/policies/policies.php:239 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 -#: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:712 +#: ../../enterprise/godmode/policies/policies.php:242 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:423 +#: ../../godmode/alerts/alert_actions.php:132 +#: ../../godmode/alerts/alert_commands.php:719 #: ../../godmode/reporting/map_builder.php:315 #: ../../godmode/reporting/map_builder.php:322 -#: ../../godmode/reporting/reporting_builder.php:737 -#: ../../include/functions_agents.php:1022 +#: ../../godmode/reporting/reporting_builder.php:700 +#: ../../include/functions_agents.php:1058 #: ../../include/functions_planned_downtimes.php:979 msgid "Successfully copied" msgstr "コピーしました。" -#: ../../enterprise/godmode/policies/policies.php:240 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 -#: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:713 -#: ../../godmode/reporting/reporting_builder.php:738 +#: ../../enterprise/godmode/policies/policies.php:243 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:424 +#: ../../godmode/alerts/alert_actions.php:133 +#: ../../godmode/alerts/alert_commands.php:720 +#: ../../godmode/reporting/reporting_builder.php:701 #: ../../include/functions_planned_downtimes.php:976 msgid "Could not be copied" msgstr "コピーできませんでした。" -#: ../../enterprise/godmode/policies/policies.php:247 +#: ../../enterprise/godmode/policies/policies.php:250 msgid "All policy agents added to delete queue" msgstr "削除キューに全ポリシーエージェントを追加しました" -#: ../../enterprise/godmode/policies/policies.php:248 +#: ../../enterprise/godmode/policies/policies.php:251 msgid "Policy agents cannot be added to the delete queue" msgstr "削除キューにポリシーエージェントを追加できません" -#: ../../enterprise/godmode/policies/policies.php:334 +#: ../../enterprise/godmode/policies/policies.php:327 msgid "a" msgstr "a" -#: ../../enterprise/godmode/policies/policies.php:505 -#: ../../enterprise/godmode/policies/policy_linking.php:157 -#: ../../enterprise/include/functions_policies.php:3784 +#: ../../enterprise/godmode/policies/policies.php:571 +#: ../../enterprise/godmode/policies/policy_linking.php:207 +#: ../../enterprise/include/functions_policies.php:3754 msgid "Linking" msgstr "リンク" -#: ../../enterprise/godmode/policies/policies.php:518 +#: ../../enterprise/godmode/policies/policies.php:586 msgid "Agent Wizard" msgstr "エージェントウィザード" -#: ../../enterprise/godmode/policies/policies.php:527 +#: ../../enterprise/godmode/policies/policies.php:595 #: ../../enterprise/godmode/policies/policy_external_alerts.php:52 -#: ../../enterprise/include/functions_policies.php:3772 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:65 +#: ../../enterprise/include/functions_policies.php:3742 msgid "External alerts" msgstr "外部アラート" -#: ../../enterprise/godmode/policies/policies.php:531 -#: ../../enterprise/godmode/policies/policy.php:60 -#: ../../enterprise/include/functions_policies.php:3814 +#: ../../enterprise/godmode/policies/policies.php:599 +#: ../../enterprise/godmode/policies/policy.php:72 +#: ../../enterprise/godmode/policies/policy.php:85 +#: ../../enterprise/include/functions_policies.php:3786 msgid "Queue" msgstr "キュー" -#: ../../enterprise/godmode/policies/policies.php:599 +#: ../../enterprise/godmode/policies/policies.php:666 msgid "There must be no agents to delete the policy." msgstr "ポリシーを削除するにはエージェントがあってはいけません。" -#: ../../enterprise/godmode/policies/policies.php:605 +#: ../../enterprise/godmode/policies/policies.php:672 msgid "A policy with agents cannot be deleted. Purge it first" msgstr "" "エージェントのあるポリシーは削除できません。先にエージェントを削除してくださ" "い。" -#: ../../enterprise/godmode/policies/policies.php:615 +#: ../../enterprise/godmode/policies/policies.php:682 msgid "Deleting all policy agents" msgstr "全ポリシーエージェントの削除中" -#: ../../enterprise/godmode/policies/policies.php:620 +#: ../../enterprise/godmode/policies/policies.php:687 msgid "All the policy agents will be deleted" msgstr "全ポリシーエージェントが削除されます" -#: ../../enterprise/godmode/policies/policies.php:629 +#: ../../enterprise/godmode/policies/policies.php:696 msgid "Delete all agents" msgstr "全エージェント削除" #: ../../enterprise/godmode/policies/policy_linking.php:28 +#: ../../enterprise/godmode/policies/policy_linking.php:41 msgid "Linking modules" msgstr "リンク中モジュール" -#: ../../enterprise/godmode/policies/policy_linking.php:99 +#: ../../enterprise/godmode/policies/policy_linking.php:109 msgid "Error: Update linking modules to policy" msgstr "エラー: ポリシーへのモジュールリンク更新" -#: ../../enterprise/godmode/policies/policy_linking.php:101 +#: ../../enterprise/godmode/policies/policy_linking.php:111 msgid "Success: Update linking modules to policy" msgstr "成功: ポリシーへのモジュールリンク更新" -#: ../../enterprise/godmode/policies/policy_linking.php:127 +#: ../../enterprise/godmode/policies/policy_linking.php:140 msgid "Free text for filter (*)" msgstr "フィルタテキスト (*)" -#: ../../enterprise/godmode/policies/policy_linking.php:128 +#: ../../enterprise/godmode/policies/policy_linking.php:144 msgid "Free text for filter" msgstr "フィルタテキスト" -#: ../../enterprise/godmode/policies/policy_linking.php:138 +#: ../../enterprise/godmode/policies/policy_linking.php:188 msgid "Cannot retrieve unlinked modules" msgstr "リンクされていないモジュールを取得できません" -#: ../../enterprise/godmode/policies/policy_linking.php:140 +#: ../../enterprise/godmode/policies/policy_linking.php:190 msgid "There are no defined modules unlinked" msgstr "定義済の未リンクモジュールがありません" -#: ../../enterprise/godmode/policies/policy_linking.php:142 +#: ../../enterprise/godmode/policies/policy_linking.php:192 msgid "List of modules unlinked" msgstr "未リンクモジュール一覧" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:87 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:97 #: ../../godmode/alerts/alert_list.php:180 msgid "No module specified" msgstr "モジュールが指定されていません" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:125 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:135 msgid "Created successfuly" msgstr "作成しました" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:139 msgid "Duplicated alert" msgstr "アラートが重複しています" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 -#: ../../godmode/alerts/alert_list.list.php:188 -msgid "Alert control filter" -msgstr "アラートフィルタ" - -#: ../../enterprise/godmode/policies/policy_external_alerts.php:394 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:432 msgid "Modules in policy per agents" msgstr "エージェントごとのポリシー内モジュール" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:577 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:624 msgid "There is not external alerts configured in this policy" msgstr "このポリシーに設定された外部アラートがありません" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:631 -msgid "Modules in policy agents" -msgstr "ポリシーエージェント内のモジュール" +#: ../../enterprise/godmode/policies/policy_external_alerts.php:658 +#: ../../enterprise/include/ajax/policy.ajax.php:441 +#: ../../godmode/massive/massive_add_action_alerts.php:253 +#: ../../godmode/alerts/alert_list.list.php:843 +#: ../../godmode/alerts/alert_list.builder.php:126 +#: ../../include/ajax/alert_list.ajax.php:516 +#: ../../include/class/AgentsAlerts.class.php:319 +msgid "Number of alerts match from" +msgstr "アクションを起こすアラート数: 開始" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:659 -msgid "Alert Template" -msgstr "アラートテンプレート" +#: ../../enterprise/godmode/policies/policy_external_alerts.php:731 +msgid "Add external alert" +msgstr "外部アラート追加" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:110 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:118 msgid "Module is not selected" msgstr "モジュールが選択されていません" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:152 #: ../../godmode/agentes/inventory_manager.php:84 msgid "Successfully added inventory module" msgstr "インベントリモジュールを追加しました" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:161 #: ../../godmode/agentes/inventory_manager.php:86 msgid "Error adding inventory module" msgstr "インベントリモジュールの追加エラー" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:164 #: ../../godmode/agentes/inventory_manager.php:89 msgid "The inventory of the module already exists" msgstr "モジュールのインベントリはすでに存在します" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -#: ../../godmode/modules/manage_inventory_modules.php:149 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:224 +#: ../../godmode/modules/manage_inventory_modules.php:160 #: ../../godmode/agentes/inventory_manager.php:128 msgid "Successfully updated inventory module" msgstr "インベントリモジュールを更新しました" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -#: ../../godmode/modules/manage_inventory_modules.php:150 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:233 +#: ../../godmode/modules/manage_inventory_modules.php:161 #: ../../godmode/agentes/inventory_manager.php:130 msgid "Error updating inventory module" msgstr "インベントリモジュールの更新エラー" -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 msgid "There are no defined inventory modules" msgstr "定義済のインベントリモジュールがありません" -#: ../../enterprise/godmode/policies/policy_collections.php:99 +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:358 +msgid "Inventory module" +msgstr "インベントリモジュール" + +#: ../../enterprise/godmode/policies/policy_collections.php:118 msgid "" "Successfully added to delete the collection. Will be deleted in the next " "policy application." msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_collections.php:224 -#: ../../enterprise/godmode/policies/policy_collections.php:296 -#: ../../enterprise/operation/agentes/policy_view.php:217 +#: ../../enterprise/godmode/policies/policy_collections.php:295 +#: ../../enterprise/godmode/policies/policy_collections.php:354 #: ../../enterprise/operation/agentes/policy_view.php:218 -#: ../../enterprise/operation/agentes/collection_view.php:128 -#: ../../enterprise/operation/agentes/collection_view.php:129 +#: ../../enterprise/operation/agentes/policy_view.php:219 +#: ../../enterprise/operation/agentes/collection_view.php:137 +#: ../../enterprise/operation/agentes/collection_view.php:138 msgid "Outdate" msgstr "期限切れ" -#: ../../enterprise/godmode/policies/policy_collections.php:241 +#: ../../enterprise/godmode/policies/policy_collections.php:312 msgid "Collections in policy" msgstr "ポリシー内コレクション" -#: ../../enterprise/godmode/policies/policy_collections.php:245 +#: ../../enterprise/godmode/policies/policy_collections.php:316 msgid "Collections to add" msgstr "追加するコレクション" -#: ../../enterprise/godmode/policies/policy_collections.php:315 +#: ../../enterprise/godmode/policies/policy_collections.php:373 msgid "No available collection to add" msgstr "追加するコレクションがありません" -#: ../../enterprise/godmode/policies/policy_agents.php:102 +#: ../../enterprise/godmode/policies/policy_agents.php:101 msgid "" "Successfully added to delete pending agents. Will be deleted in the next " "policy application." msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" -#: ../../enterprise/godmode/policies/policy_agents.php:124 +#: ../../enterprise/godmode/policies/policy_agents.php:123 msgid "" "Successfully added to delete pending groups. Will be deleted in the next " "policy application." msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。" -#: ../../enterprise/godmode/policies/policy_agents.php:148 +#: ../../enterprise/godmode/policies/policy_agents.php:147 #: ../../enterprise/godmode/policies/policy_agents.php:193 #: ../../enterprise/godmode/policies/policy_agents.php:261 msgid "Policy with this id does not exist. " @@ -16748,241 +17235,257 @@ msgstr "ポリシーに追加しました" msgid "Could not be added to policy" msgstr "ポリシーに追加できませんでした" -#: ../../enterprise/godmode/policies/policy_agents.php:407 -msgid "Apply to" -msgstr "次へ適用:" - -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:517 -msgid "Filter OS" -msgstr "OS フィルタ" - -#: ../../enterprise/godmode/policies/policy_agents.php:574 -#: ../../enterprise/godmode/policies/policy_agents.php:706 -msgid "Agents in Policy" -msgstr "ポリシー内エージェント" - -#: ../../enterprise/godmode/policies/policy_agents.php:602 -#: ../../enterprise/godmode/policies/policy_agents.php:1251 -#: ../../enterprise/godmode/setup/setup_auth.php:230 -#: ../../enterprise/godmode/setup/setup_auth.php:509 -#: ../../enterprise/godmode/setup/setup_auth.php:1304 -#: ../../extensions/files_repo/files_repo_form.php:55 -#: ../../extensions/module_groups.php:311 -#: ../../godmode/reporting/visual_console_builder.wizard.php:362 -#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 -#: ../../include/functions_networkmap.php:1295 -#: ../../include/functions_maps.php:46 -#: ../../include/lib/Dashboard/Widgets/groups_status.php:231 -#: ../../include/lib/Dashboard/Widgets/system_group_status.php:299 -#: ../../include/lib/Dashboard/Widgets/events_list.php:431 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:301 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:328 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:337 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:359 -#: ../../include/lib/Dashboard/Widgets/tactical.php:331 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 -#: ../../operation/tree.php:90 ../../operation/agentes/pandora_networkmap.php:717 -msgid "Groups" -msgstr "グループ" - -#: ../../enterprise/godmode/policies/policy_agents.php:608 -#: ../../enterprise/godmode/policies/policy_agents.php:1253 -msgid "Groups in Policy" -msgstr "ポリシー内グループ" - -#: ../../enterprise/godmode/policies/policy_agents.php:743 -msgid "Add agents to policy" -msgstr "ポリシーへのエージェント追加" - -#: ../../enterprise/godmode/policies/policy_agents.php:770 -msgid "Delete agents from policy" -msgstr "ポリシーからエージェント削除" - -#: ../../enterprise/godmode/policies/policy_agents.php:867 +#: ../../enterprise/godmode/policies/policy_agents.php:451 msgid "Applied" msgstr "適用済" -#: ../../enterprise/godmode/policies/policy_agents.php:868 +#: ../../enterprise/godmode/policies/policy_agents.php:452 msgid "Not applied" msgstr "未適用" -#: ../../enterprise/godmode/policies/policy_agents.php:885 -#: ../../godmode/agentes/configurar_agente.php:628 -#: ../../godmode/agentes/configurar_agente.php:778 -#: ../../godmode/agentes/agent_manager.php:533 +#: ../../enterprise/godmode/policies/policy_agents.php:456 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 +#: ../../enterprise/godmode/services/services.service.php:683 +#: ../../enterprise/godmode/servers/HA_cluster.php:180 +#: ../../enterprise/operation/services/massive/services.create.php:710 +#: ../../enterprise/operation/services/services.list.php:289 +#: ../../enterprise/operation/services/services.table_services.php:253 +#: ../../godmode/massive/massive_edit_modules.php:948 +#: ../../godmode/alerts/alert_view.php:413 +msgid "Mode" +msgstr "モード" + +#: ../../enterprise/godmode/policies/policy_agents.php:499 +msgid "Apply to" +msgstr "次へ適用:" + +#: ../../enterprise/godmode/policies/policy_agents.php:581 +#: ../../enterprise/godmode/policies/policy_agents.php:599 +msgid "Filter OS" +msgstr "OS フィルタ" + +#: ../../enterprise/godmode/policies/policy_agents.php:759 +msgid "Add agents to policy" +msgstr "ポリシーへのエージェント追加" + +#: ../../enterprise/godmode/policies/policy_agents.php:774 +msgid "Delete agents from policy" +msgstr "ポリシーからエージェント削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:782 +msgid "Agents in Policy" +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 +#: ../../extensions/files_repo/files_repo_form.php:54 +#: ../../extensions/module_groups.php:350 +#: ../../godmode/reporting/visual_console_builder.wizard.php:368 +#: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 +#: ../../mobile/operation/groups.php:77 +#: ../../include/functions_networkmap.php:1299 +#: ../../include/functions_maps.php:46 +#: ../../include/lib/Dashboard/Widgets/groups_status.php:231 +#: ../../include/lib/Dashboard/Widgets/system_group_status.php:299 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:266 +#: ../../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/tactical.php:331 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:301 +#: ../../operation/tree.php:91 ../../operation/agentes/pandora_networkmap.php:719 +msgid "Groups" +msgstr "グループ" + +#: ../../enterprise/godmode/policies/policy_agents.php:890 +msgid "Add groups to policy" +msgstr "ポリシーへのグループ追加" + +#: ../../enterprise/godmode/policies/policy_agents.php:904 +msgid "Delete groups from policy" +msgstr "ポリシーからグループを削除" + +#: ../../enterprise/godmode/policies/policy_agents.php:912 +msgid "Groups in Policy" +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/reporting/reporting_builder.item_editor.php:79 -#: ../../godmode/servers/servers.build_table.php:257 +#: ../../godmode/servers/servers.build_table.php:260 +#: ../../operation/agentes/estado_generalagente.php:313 msgid "Remote configuration" msgstr "リモート設定" -#: ../../enterprise/godmode/policies/policy_agents.php:885 -#: ../../enterprise/operation/agentes/policy_view.php:394 +#: ../../enterprise/godmode/policies/policy_agents.php:959 +#: ../../enterprise/operation/agentes/policy_view.php:395 msgid "R." msgstr "R." -#: ../../enterprise/godmode/policies/policy_agents.php:888 -#: ../../enterprise/godmode/policies/policy_agents.php:1404 +#: ../../enterprise/godmode/policies/policy_agents.php:962 +#: ../../enterprise/godmode/policies/policy_agents.php:1347 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/operation/agentes/policy_view.php:66 -#: ../../enterprise/operation/agentes/policy_view.php:166 -#: ../../enterprise/operation/agentes/policy_view.php:257 -#: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../godmode/agentes/module_manager.php:887 +#: ../../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 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 -#: ../../include/class/AuditLog.class.php:127 -#: ../../include/functions_events.php:2520 +#: ../../include/class/AuditLog.class.php:130 msgid "S." msgstr "S." -#: ../../enterprise/godmode/policies/policy_agents.php:889 +#: ../../enterprise/godmode/policies/policy_agents.php:963 msgid "Unlinked modules" msgstr "未リンクモジュール" -#: ../../enterprise/godmode/policies/policy_agents.php:889 +#: ../../enterprise/godmode/policies/policy_agents.php:963 msgid "U." msgstr "U." -#: ../../enterprise/godmode/policies/policy_agents.php:890 -#: ../../enterprise/godmode/policies/policy_agents.php:1405 +#: ../../enterprise/godmode/policies/policy_agents.php:964 +#: ../../enterprise/godmode/policies/policy_agents.php:1348 #: ../../enterprise/godmode/admin_access_logs.php:54 -#: ../../godmode/reporting/visual_console_builder.elements.php:118 +#: ../../godmode/reporting/visual_console_builder.elements.php:134 #: ../../mobile/operation/agents.php:407 -#: ../../include/class/AuditLog.class.php:127 +#: ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." -#: ../../enterprise/godmode/policies/policy_agents.php:892 -#: ../../enterprise/godmode/policies/policy_agents.php:1407 +#: ../../enterprise/godmode/policies/policy_agents.php:966 +#: ../../enterprise/godmode/policies/policy_agents.php:1350 #: ../../enterprise/operation/agentes/policy_view.php:69 msgid "Last application" msgstr "最後の適用" -#: ../../enterprise/godmode/policies/policy_agents.php:893 -#: ../../enterprise/godmode/policies/policy_agents.php:1409 +#: ../../enterprise/godmode/policies/policy_agents.php:967 +#: ../../enterprise/godmode/policies/policy_agents.php:1352 msgid "Add to delete queue" msgstr "削除キューへの追加" -#: ../../enterprise/godmode/policies/policy_agents.php:893 -#: ../../enterprise/godmode/policies/policy_agents.php:1409 +#: ../../enterprise/godmode/policies/policy_agents.php:967 +#: ../../enterprise/godmode/policies/policy_agents.php:1352 msgid "D." msgstr "削除" -#: ../../enterprise/godmode/policies/policy_agents.php:982 -#: ../../godmode/agentes/agent_manager.php:263 +#: ../../enterprise/godmode/policies/policy_agents.php:1061 +#: ../../godmode/agentes/agent_manager.php:390 msgid "This agent can be remotely configured" msgstr "このエージェントはリモートから設定可能です。" -#: ../../enterprise/godmode/policies/policy_agents.php:989 +#: ../../enterprise/godmode/policies/policy_agents.php:1070 msgid "This agent can not be remotely configured" msgstr "このエージェントはリモート設定できません" -#: ../../enterprise/godmode/policies/policy_agents.php:1039 -#: ../../enterprise/godmode/policies/policy_agents.php:1518 +#: ../../enterprise/godmode/policies/policy_agents.php:1123 +#: ../../enterprise/godmode/policies/policy_agents.php:1465 msgid "Process deletion" msgstr "プロセス削除" -#: ../../enterprise/godmode/policies/policy_agents.php:1138 -#: ../../enterprise/godmode/policies/policy_agents.php:1463 +#: ../../enterprise/godmode/policies/policy_agents.php:1228 +#: ../../enterprise/godmode/policies/policy_agents.php:1407 #: ../../enterprise/operation/agentes/policy_view.php:83 msgid "Policy applied" msgstr "適用済ポリシー" -#: ../../enterprise/godmode/policies/policy_agents.php:1146 -#: ../../enterprise/godmode/policies/policy_agents.php:1471 +#: ../../enterprise/godmode/policies/policy_agents.php:1236 +#: ../../enterprise/godmode/policies/policy_agents.php:1416 msgid "Need apply" msgstr "要適用" -#: ../../enterprise/godmode/policies/policy_agents.php:1158 -#: ../../enterprise/godmode/policies/policy_agents.php:1483 +#: ../../enterprise/godmode/policies/policy_agents.php:1249 +#: ../../enterprise/godmode/policies/policy_agents.php:1429 msgid "Applying policy" msgstr "ポリシー適用中" -#: ../../enterprise/godmode/policies/policy_agents.php:1171 -#: ../../enterprise/godmode/policies/policy_agents.php:1494 +#: ../../enterprise/godmode/policies/policy_agents.php:1262 +#: ../../enterprise/godmode/policies/policy_agents.php:1440 msgid "Deleting from policy" msgstr "ポリシーから削除中" -#: ../../enterprise/godmode/policies/policy_agents.php:1188 -#: ../../godmode/massive/massive_delete_modules.php:87 -#: ../../godmode/massive/massive_add_alerts.php:100 -#: ../../godmode/massive/massive_delete_agents.php:61 -#: ../../godmode/massive/massive_edit_agents.php:214 -#: ../../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 -msgid "No agents selected" -msgstr "エージェントが選択されていません。" - -#: ../../enterprise/godmode/policies/policy_agents.php:1331 -msgid "Add groups to policy" -msgstr "ポリシーへのグループ追加" - -#: ../../enterprise/godmode/policies/policy_agents.php:1353 -msgid "Delete groups from policy" -msgstr "ポリシーからグループを削除" - -#: ../../enterprise/godmode/policies/policy_agents.php:1406 +#: ../../enterprise/godmode/policies/policy_agents.php:1349 msgid "Total agents in policy group" msgstr "ポリシーグループ内の全エージェント" -#: ../../enterprise/godmode/policies/policy_agents.php:1406 +#: ../../enterprise/godmode/policies/policy_agents.php:1349 msgid "T." msgstr "T." -#: ../../enterprise/godmode/policies/policy.php:102 -#: ../../enterprise/include/functions_policies.php:3733 -#: ../../godmode/agentes/configurar_agente.php:551 +#: ../../enterprise/godmode/policies/policy.php:61 +msgid "" +"Some features of policy management are disabled because an instance of DB Tool " +"is running on a node." +msgstr "" +"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能" +"が無効になっています。" + +#: ../../enterprise/godmode/policies/policy.php:115 +#: ../../enterprise/include/functions_policies.php:3805 +#: ../../godmode/agentes/configurar_agente.php:730 +msgid "Agent plugins" +msgstr "エージェントプラグイン" + +#: ../../enterprise/godmode/policies/policy.php:145 +#: ../../enterprise/include/functions_policies.php:3703 +#: ../../godmode/agentes/configurar_agente.php:550 msgid "Agent wizard" msgstr "エージェントウィザード" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 -#: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/operation/menu.php:140 -#: ../../include/class/SnmpConsole.class.php:929 -msgid "SNMP trap editor" -msgstr "SNMP トラップエディタ" +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:55 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 +#: ../../include/class/CredentialStore.class.php:965 +#: ../../include/class/SnmpConsole.class.php:221 +#: ../../operation/snmpconsole/snmp_statistics.php:104 +#: ../../operation/menu.php:259 +msgid "SNMP" +msgstr "SNMP" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:77 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 +#: ../../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 #: ../../godmode/setup/snmp_wizard.php:42 #: ../../include/functions_snmp_browser.php:556 msgid "OID" msgstr "OID" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:127 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:404 msgid "Custom OID" msgstr "カスタム OID" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:95 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:138 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:406 +#: ../../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:205 ../../godmode/setup/setup_visuals.php:1364 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2304 -#: ../../include/functions_reports.php:835 -#: ../../include/functions_reporting.php:7405 +#: ../../godmode/setup/news.php:287 ../../godmode/setup/setup_visuals.php:1829 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2349 +#: ../../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/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "文字列" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 -#: ../../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 "SNMP" +#: ../../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 +msgid "SNMP trap editor" +msgstr "SNMP トラップエディタ" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:226 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:238 @@ -17030,7 +17533,15 @@ msgstr "%s/%s トラップをアップロードしました" msgid "Fail uploaded file" msgstr "ファイルのアップロードに失敗しました" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:349 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:359 +msgid "Load MIB" +msgstr "MIBのロード" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:374 +msgid "Upload MIB" +msgstr "MIBをアップロード" + +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:390 msgid "" "MIB files will be loaded and searched for SNMP trap definitions. They will not " "be installed on the system! You can use the MIB uploader for that purpose." @@ -17038,14 +17549,6 @@ msgstr "" "MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストー" "ルされません。MIB アップローダはこの目的の範囲で利用できます。" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:359 -msgid "Load MIB" -msgstr "MIBのロード" - -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:361 -msgid "Upload MIB" -msgstr "MIBをアップロード" - #: ../../enterprise/godmode/menu.php:16 msgid "Manage Satellite Server" msgstr "サテライトサーバ管理" @@ -17065,93 +17568,88 @@ msgstr "SNMP 操作" msgid "Satellite operations" msgstr "サテライト操作" -#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:257 +#: ../../enterprise/godmode/menu.php:65 ../../enterprise/godmode/menu.php:282 msgid "Duplicate config" msgstr "設定の複製" -#: ../../enterprise/godmode/menu.php:69 -#: ../../godmode/agentes/configurar_agente.php:731 -msgid "Network config manager" -msgstr "ネットワーク設定管理" - -#: ../../enterprise/godmode/menu.php:87 -#: ../../enterprise/include/functions_policies.php:3712 +#: ../../enterprise/godmode/menu.php:92 +#: ../../enterprise/include/functions_policies.php:3682 msgid "Manage policies" msgstr "ポリシー管理" -#: ../../enterprise/godmode/menu.php:96 +#: ../../enterprise/godmode/menu.php:101 msgid "Manage agent autoconfiguration" msgstr "エージェント自動設定管理" -#: ../../enterprise/godmode/menu.php:105 -#: ../../enterprise/include/class/AgentRepository.class.php:668 +#: ../../enterprise/godmode/menu.php:110 +#: ../../enterprise/include/class/AgentRepository.class.php:678 msgid "Software agents repository" msgstr "ソフトウエアエージェントリポジトリ" -#: ../../enterprise/godmode/menu.php:138 +#: ../../enterprise/godmode/menu.php:143 #: ../../enterprise/include/class/CSVImportAgents.class.php:114 #: ../../godmode/wizards/HostDevices.class.php:159 msgid "Import CSV" msgstr "CSVのインポート" -#: ../../enterprise/godmode/menu.php:142 -#: ../../enterprise/include/class/DeploymentCenter.class.php:613 +#: ../../enterprise/godmode/menu.php:147 +#: ../../enterprise/include/class/DeploymentCenter.class.php:621 #: ../../godmode/wizards/HostDevices.class.php:165 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:825 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:828 msgid "Agent deployment" msgstr "エージェントの展開" -#: ../../enterprise/godmode/menu.php:152 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 +#: ../../enterprise/godmode/menu.php:157 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:421 msgid "Microsoft SQL Server" msgstr "Microsoft SQL Server" -#: ../../enterprise/godmode/menu.php:153 +#: ../../enterprise/godmode/menu.php:158 msgid "Mysql" msgstr "Mysql" -#: ../../enterprise/godmode/menu.php:154 -#: ../../enterprise/godmode/setup/setup.php:108 -#: ../../enterprise/include/class/Oracle.app.php:411 +#: ../../enterprise/godmode/menu.php:159 +#: ../../enterprise/godmode/setup/setup.php:126 +#: ../../enterprise/include/class/Oracle.app.php:417 msgid "Oracle" msgstr "Oracle" -#: ../../enterprise/godmode/menu.php:155 -#: ../../enterprise/include/class/VMware.app.php:503 +#: ../../enterprise/godmode/menu.php:160 +#: ../../enterprise/include/class/VMware.app.php:509 msgid "VMware" msgstr "VMware" -#: ../../enterprise/godmode/menu.php:156 +#: ../../enterprise/godmode/menu.php:161 #: ../../enterprise/include/class/SAPView.class.php:621 #: ../../enterprise/include/class/SAPView.class.php:624 -#: ../../include/class/CredentialStore.class.php:986 +#: ../../include/class/CredentialStore.class.php:962 msgid "SAP" msgstr "SAP" -#: ../../enterprise/godmode/menu.php:157 -#: ../../enterprise/include/class/DB2.app.php:404 +#: ../../enterprise/godmode/menu.php:162 +#: ../../enterprise/include/class/DB2.app.php:410 msgid "DB2" msgstr "DB2" -#: ../../enterprise/godmode/menu.php:158 +#: ../../enterprise/godmode/menu.php:163 #: ../../enterprise/godmode/wizards/Applications.class.php:163 #: ../../enterprise/godmode/wizards/Applications.class.php:171 msgid "Applications" msgstr "アプリケーション" -#: ../../enterprise/godmode/menu.php:169 +#: ../../enterprise/godmode/menu.php:185 msgid "Amazon Web Services" msgstr "Amazon Web Services" -#: ../../enterprise/godmode/menu.php:170 +#: ../../enterprise/godmode/menu.php:186 msgid "Microsoft Azure" msgstr "Microsoft Azure" -#: ../../enterprise/godmode/menu.php:171 +#: ../../enterprise/godmode/menu.php:187 msgid "Google Compute Platform" msgstr "Google Compute Platform" -#: ../../enterprise/godmode/menu.php:172 +#: ../../enterprise/godmode/menu.php:188 #: ../../enterprise/godmode/wizards/Cloud.class.php:186 #: ../../enterprise/godmode/wizards/Cloud.class.php:195 #: ../../enterprise/include/class/Azure.cloud.php:150 @@ -17163,62 +17661,66 @@ msgstr "Google Compute Platform" msgid "Cloud" msgstr "クラウド" -#: ../../enterprise/godmode/menu.php:187 +#: ../../enterprise/godmode/menu.php:205 msgid "New console task" msgstr "新規コンソールタスク" -#: ../../enterprise/godmode/menu.php:197 +#: ../../enterprise/godmode/menu.php:215 msgid "Enterprise ACL Setup" msgstr "Enterprise ACL 設定" -#: ../../enterprise/godmode/menu.php:206 +#: ../../enterprise/godmode/menu.php:224 +#: ../../enterprise/godmode/setup/setup_skins.php:40 msgid "Skins" msgstr "スキン" -#: ../../enterprise/godmode/menu.php:216 +#: ../../enterprise/godmode/menu.php:236 ../../enterprise/godmode/menu.php:240 msgid "Manage database HA" msgstr "データベース HA 管理" -#: ../../enterprise/godmode/menu.php:226 -#: ../../enterprise/godmode/servers/manage_export.php:43 -#: ../../enterprise/godmode/servers/manage_export_form.php:59 +#: ../../enterprise/godmode/menu.php:251 +#: ../../enterprise/godmode/servers/manage_export.php:60 +#: ../../enterprise/godmode/servers/manage_export_form.php:76 msgid "Export targets" msgstr "エクスポートターゲット" -#: ../../enterprise/godmode/menu.php:248 +#: ../../enterprise/godmode/menu.php:273 msgid "Log Collector" msgstr "ログ収集" -#: ../../enterprise/godmode/menu.php:266 +#: ../../enterprise/godmode/menu.php:291 msgid "Password policy" msgstr "パスワードポリシー" -#: ../../enterprise/godmode/menu.php:274 +#: ../../enterprise/godmode/menu.php:299 #: ../../enterprise/include/functions_setup.php:44 #: ../../enterprise/include/functions_setup.php:108 -#: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:317 +#: ../../godmode/extensions.php:161 ../../godmode/setup/setup.php:356 msgid "Enterprise" msgstr "エンタープライズ" -#: ../../enterprise/godmode/menu.php:287 +#: ../../enterprise/godmode/menu.php:312 +#: ../../enterprise/include/class/Omnishell.class.php:597 +#: ../../enterprise/include/class/Omnishell.class.php:1631 +#: ../../enterprise/operation/agentes/ver_agente.php:274 #: ../../general/first_task/omnishell.php:31 #: ../../general/first_task/omnishell.php:34 msgid "Omnishell" msgstr "Omnishell" -#: ../../enterprise/godmode/menu.php:301 ../../enterprise/tools/ipam/ipam.php:453 -#: ../../include/functions_reports.php:692 +#: ../../enterprise/godmode/menu.php:326 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../include/functions_reports.php:704 msgid "IPAM" msgstr "IPAM" -#: ../../enterprise/godmode/menu.php:310 ../../godmode/setup/setup.php:190 -#: ../../godmode/setup/setup.php:289 +#: ../../enterprise/godmode/menu.php:335 ../../godmode/setup/setup.php:204 +#: ../../godmode/setup/setup.php:314 msgid "Module Library" msgstr "モジュールライブラリ" -#: ../../enterprise/godmode/menu.php:318 -#: ../../enterprise/godmode/alerts/alert_inventory.php:78 -#: ../../enterprise/godmode/alerts/alert_inventory.php:80 +#: ../../enterprise/godmode/menu.php:343 +#: ../../enterprise/godmode/alerts/alert_inventory.php:88 +#: ../../enterprise/godmode/alerts/alert_inventory.php:107 msgid "Inventory alerts" msgstr "インベントリアラート" @@ -17248,6 +17750,16 @@ msgstr "成功: アラート作成" 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/include/ajax/policy.ajax.php:263 +#: ../../godmode/massive/massive_standby_alerts.php:218 +#: ../../godmode/massive/massive_add_alerts.php:280 +#: ../../godmode/massive/massive_enable_disable_alerts.php:190 +#: ../../godmode/massive/massive_delete_alerts.php:272 +msgid "Alert template" +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 @@ -17297,17 +17809,17 @@ msgid "Bulk Satellite modules edit" msgstr "一括サテライトモジュール編集" #: ../../enterprise/godmode/massive/massive_operations.php:136 -#: ../../enterprise/godmode/services/services.massive.elements.php:56 +#: ../../enterprise/godmode/services/services.massive.elements.php:69 msgid "Bulk service elements adition" msgstr "一括サービス要素追加" #: ../../enterprise/godmode/massive/massive_operations.php:137 -#: ../../enterprise/godmode/services/services.massive.elements.php:61 +#: ../../enterprise/godmode/services/services.massive.elements.php:74 msgid "Bulk service elements edition" msgstr "一括サービス要素編集" #: ../../enterprise/godmode/massive/massive_operations.php:138 -#: ../../enterprise/godmode/services/services.massive.elements.php:57 +#: ../../enterprise/godmode/services/services.massive.elements.php:70 msgid "Bulk service elements deletion" msgstr "一括サービス要素削除" @@ -17328,28 +17840,30 @@ msgid " policy" msgstr " ポリシー" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:169 -#: ../../enterprise/godmode/services/services.elements.php:292 +#: ../../enterprise/godmode/services/services.elements.php:294 #: ../../enterprise/godmode/setup/setup_auth.php:69 -#: ../../enterprise/godmode/setup/setup_auth.php:269 -#: ../../enterprise/godmode/setup/setup_auth.php:319 -#: ../../enterprise/godmode/setup/setup_auth.php:380 -#: ../../enterprise/godmode/setup/setup_auth.php:546 -#: ../../enterprise/godmode/setup/setup_auth.php:1173 -#: ../../enterprise/godmode/setup/setup_auth.php:1343 -#: ../../enterprise/godmode/setup/setup_acl.php:572 -#: ../../enterprise/include/class/DeploymentCenter.class.php:779 -#: ../../enterprise/include/class/AgentRepository.class.php:708 -#: ../../enterprise/include/class/Omnishell.class.php:361 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1736 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3911 -#: ../../enterprise/operation/services/services.list.php:249 -#: ../../enterprise/operation/services/services.list.php:279 -#: ../../enterprise/operation/services/services.table_services.php:171 -#: ../../enterprise/operation/services/services.table_services.php:201 -#: ../../godmode/agentes/planned_downtime.list.php:364 -#: ../../godmode/agentes/planned_downtime.editor.php:1104 -#: ../../godmode/agentes/agent_manager.php:340 -#: ../../godmode/agentes/agent_manager.php:520 +#: ../../enterprise/godmode/setup/setup_auth.php:291 +#: ../../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_acl.php:487 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:719 +#: ../../enterprise/include/functions_tasklist.php:606 +#: ../../enterprise/include/class/DeploymentCenter.class.php:688 +#: ../../enterprise/include/class/AgentRepository.class.php:735 +#: ../../enterprise/include/class/Omnishell.class.php:368 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1758 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3980 +#: ../../enterprise/operation/services/services.list.php:252 +#: ../../enterprise/operation/services/services.list.php:290 +#: ../../enterprise/operation/services/services.table_services.php:189 +#: ../../enterprise/operation/services/services.table_services.php:254 +#: ../../godmode/agentes/planned_downtime.list.php:411 +#: ../../godmode/agentes/planned_downtime.editor.php:1216 +#: ../../godmode/agentes/agent_manager.php:218 +#: ../../godmode/agentes/agent_manager.php:281 #: ../../godmode/massive/massive_copy_modules.php:178 #: ../../godmode/massive/massive_delete_modules.php:407 #: ../../godmode/massive/massive_delete_modules.php:521 @@ -17358,24 +17872,25 @@ msgstr " ポリシー" #: ../../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:573 -#: ../../godmode/events/event_edit_filter.php:472 -#: ../../godmode/events/event_edit_filter.php:483 +#: ../../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:1459 -#: ../../include/functions_visual_map_editor.php:1553 +#: ../../include/functions_visual_map_editor.php:1454 +#: ../../include/functions_visual_map_editor.php:1548 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:373 ../../include/functions_html.php:2284 -#: ../../include/functions_html.php:2285 ../../include/functions_html.php:2286 -#: ../../include/functions_html.php:2287 ../../include/functions_html.php:2288 -#: ../../include/functions_html.php:2290 ../../include/functions_html.php:2291 -#: ../../include/functions_html.php:2292 ../../include/functions_html.php:2293 -#: ../../include/functions_html.php:2294 ../../include/functions_html.php:2306 -#: ../../include/functions_html.php:2322 ../../include/functions_html.php:2338 -#: ../../include/functions_html.php:2354 ../../include/functions_html.php:2370 +#: ../../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/lib/Dashboard/Widgets/events_list.php:340 -#: ../../operation/events/events.php:1960 ../../operation/events/events.php:1973 -#: ../../operation/events/events.php:2951 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:275 +#: ../../operation/events/events.php:1999 ../../operation/events/events.php:2017 +#: ../../operation/events/events.php:3028 msgid "Any" msgstr "任意" @@ -17388,7 +17903,7 @@ msgstr "このエージェントにはモジュールがありません。" msgid "To policies" msgstr "ポリシーへ" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:359 +#: ../../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_delete_alerts.php:389 @@ -17397,26 +17912,26 @@ msgid "" "with less elements." msgstr "データ処理に失敗しました。管理者に連絡するか要素を少なくしてください。" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:366 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:372 #: ../../godmode/massive/massive_copy_modules.php:551 -#: ../../include/functions_agents.php:840 +#: ../../include/functions_agents.php:876 msgid "No source agent to copy" msgstr "コピー元エージェントがありません。" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:371 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:377 #: ../../godmode/massive/massive_copy_modules.php:564 -#: ../../include/functions_agents.php:871 +#: ../../include/functions_agents.php:907 msgid "No modules have been selected" msgstr "モジュールが選択されていません。" -#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:376 +#: ../../enterprise/godmode/massive/massive_add_modules_policy.php:382 msgid "No destiny policies to copy" 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:1719 +#: ../../include/functions_reporting_html.php:1776 msgid "Agent group" msgstr "エージェントグループ" @@ -17435,50 +17950,54 @@ msgid "When select agents" msgstr "エージェント選択時の動作" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:265 -#: ../../extensions/agents_modules.php:436 -#: ../../extensions/agents_modules.php:439 -#: ../../godmode/agentes/planned_downtime.editor.php:1111 +#: ../../extensions/agents_modules.php:489 +#: ../../extensions/agents_modules.php:493 +#: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 #: ../../godmode/massive/massive_add_alerts.php:264 #: ../../godmode/massive/massive_delete_alerts.php:346 #: ../../godmode/massive/massive_add_action_alerts.php:225 #: ../../godmode/massive/massive_edit_modules.php:528 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1895 -#: ../../include/functions_html.php:5576 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1923 +#: ../../include/functions_html.php:5947 msgid "Show common modules" msgstr "共通モジュールの表示" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:266 -#: ../../extensions/agents_modules.php:437 -#: ../../godmode/agentes/planned_downtime.editor.php:1112 +#: ../../extensions/agents_modules.php:490 +#: ../../godmode/agentes/planned_downtime.editor.php:1236 #: ../../godmode/massive/massive_delete_action_alerts.php:247 #: ../../godmode/massive/massive_delete_modules.php:556 #: ../../godmode/massive/massive_add_alerts.php:265 #: ../../godmode/massive/massive_delete_alerts.php:347 #: ../../godmode/massive/massive_add_action_alerts.php:226 #: ../../godmode/massive/massive_edit_modules.php:529 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1896 -#: ../../include/functions_html.php:5577 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1924 +#: ../../include/functions_html.php:5948 msgid "Show all modules" msgstr "全モジュール表示" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:423 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:392 +msgid "create_profiles" +msgstr "プロファイル作成" + +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:433 msgid "Updated modules on database" msgstr "データベース上のモジュールを更新しました" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:425 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:435 msgid "Agent configuration files updated" msgstr "エージェント設定ファイルを更新しました" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:691 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:701 msgid "No changes have been made." msgstr "変更されませんでした。" -#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:692 +#: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:702 #: ../../enterprise/tools/ipam/ipam.php:300 #: ../../enterprise/tools/ipam/ipam.php:361 -#: ../../godmode/massive/massive_operations.php:373 +#: ../../godmode/massive/massive_operations.php:413 #: ../../godmode/massive/massive_edit_plugins.php:921 msgid "Massive operations" msgstr "一括操作" @@ -17486,59 +18005,59 @@ msgstr "一括操作" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:29 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 -#: ../../include/class/SnmpConsole.class.php:378 -#: ../../include/class/SnmpConsole.class.php:1377 +#: ../../include/class/SnmpConsole.class.php:315 +#: ../../include/class/SnmpConsole.class.php:1379 msgid "Cold start (0)" msgstr "Cold start (0)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:30 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 -#: ../../include/class/SnmpConsole.class.php:379 -#: ../../include/class/SnmpConsole.class.php:1381 +#: ../../include/class/SnmpConsole.class.php:316 +#: ../../include/class/SnmpConsole.class.php:1383 msgid "Warm start (1)" msgstr "Warm start (1)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:31 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 -#: ../../include/class/SnmpConsole.class.php:380 -#: ../../include/class/SnmpConsole.class.php:1385 +#: ../../include/class/SnmpConsole.class.php:317 +#: ../../include/class/SnmpConsole.class.php:1387 msgid "Link down (2)" msgstr "Link down (2)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:32 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 -#: ../../include/class/SnmpConsole.class.php:381 -#: ../../include/class/SnmpConsole.class.php:1389 +#: ../../include/class/SnmpConsole.class.php:318 +#: ../../include/class/SnmpConsole.class.php:1391 msgid "Link up (3)" msgstr "Link up (3)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:33 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 -#: ../../include/class/SnmpConsole.class.php:382 -#: ../../include/class/SnmpConsole.class.php:1393 +#: ../../include/class/SnmpConsole.class.php:319 +#: ../../include/class/SnmpConsole.class.php:1395 msgid "Authentication failure (4)" msgstr "Authentication failure (4)" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:34 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:35 -#: ../../enterprise/godmode/setup/setup_acl.php:475 -#: ../../enterprise/godmode/setup/setup_acl.php:479 +#: ../../enterprise/godmode/setup/setup_acl.php:530 +#: ../../enterprise/godmode/setup/setup_acl.php:534 #: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../extensions/api_checker.php:260 -#: ../../godmode/groups/configure_group.php:250 -#: ../../godmode/users/configure_user.php:1355 +#: ../../extensions/api_checker.php:303 +#: ../../godmode/groups/configure_group.php:249 +#: ../../godmode/users/user_management.php:44 #: ../../godmode/snmpconsole/snmp_alert.php:46 -#: ../../godmode/massive/massive_edit_users.php:280 +#: ../../godmode/massive/massive_edit_users.php:279 #: ../../include/functions_graph.php:3543 -#: ../../include/class/SnmpConsole.class.php:383 -#: ../../include/class/SnmpConsole.class.php:1370 -#: ../../include/class/SnmpConsole.class.php:1397 -#: ../../operation/users/user_edit.php:439 -#: ../../operation/gis_maps/render_view.php:167 +#: ../../include/class/SnmpConsole.class.php:320 +#: ../../include/class/SnmpConsole.class.php:1372 +#: ../../include/class/SnmpConsole.class.php:1399 +#: ../../operation/users/user_edit.php:474 +#: ../../operation/gis_maps/render_view.php:168 msgid "Other" msgstr "その他" @@ -17571,10 +18090,10 @@ 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 -#: ../../godmode/snmpconsole/snmp_alert.php:829 -#: ../../godmode/snmpconsole/snmp_alert.php:1166 +#: ../../godmode/snmpconsole/snmp_alert.php:863 +#: ../../godmode/snmpconsole/snmp_alert.php:1757 #: ../../include/functions_snmp.php:433 -#: ../../include/class/SnmpConsole.class.php:475 +#: ../../include/class/SnmpConsole.class.php:415 msgid "Trap type" msgstr "トラップタイプ" @@ -17582,8 +18101,8 @@ msgstr "トラップタイプ" msgid "SNMP Alerts to be deleted" msgstr "削除するSNMPアラート" -#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:289 -#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:403 +#: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:295 +#: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:410 msgid "No snmp alert found." msgstr "snmp アラートがありません。" @@ -17602,46 +18121,48 @@ msgid "SNMP Alerts to be edit" msgstr "編集するSNMPアラート" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:301 -#: ../../godmode/snmpconsole/snmp_alert.php:781 +#: ../../godmode/snmpconsole/snmp_alert.php:783 msgid "Custom Value/OID" msgstr "カスタム値/OID" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:303 -#: ../../godmode/snmpconsole/snmp_trap_generator.php:126 -#: ../../godmode/snmpconsole/snmp_alert.php:790 -#: ../../godmode/snmpconsole/snmp_alert.php:1259 -#: ../../include/class/SnmpConsole.class.php:337 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:138 +#: ../../godmode/snmpconsole/snmp_alert.php:814 +#: ../../godmode/snmpconsole/snmp_alert.php:1896 +#: ../../include/class/SnmpConsole.class.php:274 msgid "SNMP Agent" msgstr "SNMPエージェント" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:307 -#: ../../godmode/snmpconsole/snmp_alert.php:835 +#: ../../godmode/snmpconsole/snmp_alert.php:884 msgid "Single value" msgstr "単一値" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:309 -#: ../../godmode/snmpconsole/snmp_alert.php:1075 -#: ../../godmode/alerts/configure_alert_template.php:691 +#: ../../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 -#: ../../godmode/snmpconsole/snmp_alert.php:1078 -#: ../../godmode/alerts/configure_alert_template.php:728 +#: ../../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 -#: ../../godmode/snmpconsole/snmp_alert.php:1097 +#: ../../godmode/snmpconsole/snmp_alert.php:1583 msgid "Other value" msgstr "他の値" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:332 -#: ../../godmode/snmpconsole/snmp_alert.php:1126 -#: ../../godmode/snmpconsole/snmp_alert.php:1254 -#: ../../godmode/reporting/reporting_builder.list_items.php:371 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../include/functions_visual_map_editor.php:922 +#: ../../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/visual_console_builder.elements.php:123 +#: ../../include/functions_visual_map_editor.php:920 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 #: ../../include/rest-api/models/VisualConsole/Item.php:2024 msgid "Position" @@ -17668,333 +18189,328 @@ msgid "Modules agents in policy" msgstr "ポリシー内のモジュールエージェント" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:491 -#: ../../godmode/massive/massive_edit_modules.php:554 +#: ../../godmode/massive/massive_edit_modules.php:569 msgid "Dynamic Min." msgstr "動的最小値" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:732 -#: ../../godmode/massive/massive_edit_modules.php:796 -msgid "SMNP community" +#: ../../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 +#: ../../include/class/CredentialStore.class.php:1094 +#: ../../include/class/CredentialStore.class.php:1369 +#: ../../include/class/AgentWizard.class.php:796 +msgid "SNMP community" msgstr "SNMPコミュニティ" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:742 -#: ../../godmode/agentes/module_manager_editor_network.php:270 -#: ../../godmode/massive/massive_edit_modules.php:806 +#: ../../godmode/agentes/module_manager_editor_network.php:198 +#: ../../godmode/massive/massive_edit_modules.php:821 msgid "SNMP OID" msgstr "SNMP OID" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:757 -#: ../../godmode/agentes/module_manager_editor_wmi.php:45 -#: ../../godmode/agentes/module_manager_editor_network.php:80 -#: ../../godmode/massive/massive_edit_modules.php:821 -#: ../../include/class/AgentWizard.class.php:632 -#: ../../include/functions_snmp_browser.php:702 +#: ../../godmode/agentes/module_manager_editor_wmi.php:97 +#: ../../godmode/agentes/module_manager_editor_network.php:81 +#: ../../godmode/massive/massive_edit_modules.php:836 +#: ../../include/class/AgentWizard.class.php:633 +#: ../../include/functions_snmp_browser.php:709 msgid "Target IP" msgstr "対象IP" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 +#: ../../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:223 -#: ../../godmode/massive/massive_edit_modules.php:839 -#: ../../godmode/wizards/HostDevices.class.php:1203 -#: ../../include/class/CredentialStore.class.php:1130 -#: ../../include/class/CredentialStore.class.php:1404 -#: ../../include/class/AgentWizard.class.php:817 +#: ../../godmode/agentes/module_manager_editor_network.php:197 +#: ../../godmode/massive/massive_edit_modules.php:854 +#: ../../godmode/wizards/HostDevices.class.php:1220 +#: ../../include/class/CredentialStore.class.php:1106 +#: ../../include/class/CredentialStore.class.php:1382 +#: ../../include/class/AgentWizard.class.php:818 msgid "SNMP version" msgstr "SNMPバージョン" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:795 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:299 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:322 #: ../../godmode/modules/manage_network_components_form_network.php:96 -#: ../../godmode/agentes/module_manager_editor_network.php:380 -#: ../../godmode/massive/massive_edit_modules.php:852 -#: ../../godmode/wizards/HostDevices.class.php:1281 -#: ../../include/functions_snmp_browser.php:826 +#: ../../godmode/agentes/module_manager_editor_network.php:377 +#: ../../godmode/massive/massive_edit_modules.php:867 +#: ../../godmode/wizards/HostDevices.class.php:1298 +#: ../../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:308 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:338 #: ../../godmode/modules/manage_network_components_form_network.php:105 -#: ../../godmode/agentes/module_manager_editor_network.php:393 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1323 -#: ../../include/functions_snmp_browser.php:836 +#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/massive/massive_edit_modules.php:876 +#: ../../godmode/wizards/HostDevices.class.php:1340 +#: ../../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:393 -#: ../../godmode/agentes/module_manager_editor_network.php:415 -#: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1325 -#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../godmode/agentes/module_manager_editor_network.php:390 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../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 msgid "The pass length must be eight character minimum." msgstr "パスワード長は、最低8文字以上必要です。" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:806 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:324 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:360 #: ../../godmode/modules/manage_network_components_form_network.php:123 -#: ../../godmode/agentes/module_manager_editor_network.php:413 -#: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1339 -#: ../../include/class/CredentialStore.class.php:1220 -#: ../../include/class/CredentialStore.class.php:1511 -#: ../../include/class/AgentWizard.class.php:951 -#: ../../include/functions_snmp_browser.php:853 +#: ../../godmode/agentes/module_manager_editor_network.php:410 +#: ../../godmode/massive/massive_edit_modules.php:878 +#: ../../godmode/wizards/HostDevices.class.php:1356 +#: ../../include/class/CredentialStore.class.php:1196 +#: ../../include/class/CredentialStore.class.php:1489 +#: ../../include/class/AgentWizard.class.php:954 +#: ../../include/functions_snmp_browser.php:870 msgid "Privacy method" msgstr "暗号化方式" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:807 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:327 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 #: ../../godmode/modules/manage_network_components_form_network.php:126 -#: ../../godmode/agentes/module_manager_editor_network.php:414 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1344 -#: ../../include/class/CredentialStore.class.php:1229 -#: ../../include/class/CredentialStore.class.php:1520 -#: ../../include/functions_snmp_browser.php:856 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:879 +#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../include/class/CredentialStore.class.php:1205 +#: ../../include/class/CredentialStore.class.php:1498 +#: ../../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:328 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:364 #: ../../godmode/modules/manage_network_components_form_network.php:127 -#: ../../godmode/agentes/module_manager_editor_network.php:414 -#: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1345 -#: ../../include/class/CredentialStore.class.php:1228 -#: ../../include/class/CredentialStore.class.php:1518 -#: ../../include/functions_snmp_browser.php:857 +#: ../../godmode/agentes/module_manager_editor_network.php:411 +#: ../../godmode/massive/massive_edit_modules.php:879 +#: ../../godmode/wizards/HostDevices.class.php:1362 +#: ../../include/class/CredentialStore.class.php:1204 +#: ../../include/class/CredentialStore.class.php:1496 +#: ../../include/functions_snmp_browser.php:874 msgid "AES" 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:415 -#: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1354 -#: ../../include/class/CredentialStore.class.php:1237 -#: ../../include/class/CredentialStore.class.php:1532 -#: ../../include/class/AgentWizard.class.php:965 -#: ../../include/functions_snmp_browser.php:867 +#: ../../godmode/agentes/module_manager_editor_network.php:412 +#: ../../godmode/massive/massive_edit_modules.php:880 +#: ../../godmode/wizards/HostDevices.class.php:1371 +#: ../../include/class/CredentialStore.class.php:1213 +#: ../../include/class/CredentialStore.class.php:1510 +#: ../../include/class/AgentWizard.class.php:968 +#: ../../include/functions_snmp_browser.php:886 msgid "Privacy pass" msgstr "暗号化パスワード" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:810 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:347 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:396 #: ../../godmode/modules/manage_network_components_form_network.php:148 -#: ../../godmode/agentes/module_manager_editor_network.php:435 -#: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1308 -#: ../../include/functions_snmp_browser.php:877 +#: ../../godmode/agentes/module_manager_editor_network.php:432 +#: ../../godmode/massive/massive_edit_modules.php:882 +#: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../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:350 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:399 #: ../../godmode/modules/manage_network_components_form_network.php:151 -#: ../../godmode/agentes/module_manager_editor_network.php:438 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1313 -#: ../../include/class/Diagnostics.class.php:2183 -#: ../../include/class/CredentialStore.class.php:1194 -#: ../../include/class/CredentialStore.class.php:1484 -#: ../../include/functions_snmp_browser.php:880 +#: ../../godmode/agentes/module_manager_editor_network.php:435 +#: ../../godmode/massive/massive_edit_modules.php:883 +#: ../../godmode/wizards/HostDevices.class.php:1330 +#: ../../include/class/Diagnostics.class.php:2203 +#: ../../include/class/CredentialStore.class.php:1170 +#: ../../include/class/CredentialStore.class.php:1462 +#: ../../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:351 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:400 #: ../../godmode/modules/manage_network_components_form_network.php:152 -#: ../../godmode/agentes/module_manager_editor_network.php:439 -#: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1314 -#: ../../include/class/CredentialStore.class.php:1195 -#: ../../include/class/CredentialStore.class.php:1486 -#: ../../include/functions_snmp_browser.php:881 +#: ../../godmode/agentes/module_manager_editor_network.php:436 +#: ../../godmode/massive/massive_edit_modules.php:883 +#: ../../godmode/wizards/HostDevices.class.php:1331 +#: ../../include/class/CredentialStore.class.php:1171 +#: ../../include/class/CredentialStore.class.php:1464 +#: ../../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:360 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:415 #: ../../godmode/modules/manage_network_components_form_network.php:161 -#: ../../godmode/agentes/module_manager_editor_network.php:452 -#: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1292 -#: ../../include/class/CredentialStore.class.php:1149 -#: ../../include/class/CredentialStore.class.php:1436 -#: ../../include/class/AgentWizard.class.php:892 -#: ../../include/functions_snmp_browser.php:890 +#: ../../godmode/agentes/module_manager_editor_network.php:449 +#: ../../godmode/massive/massive_edit_modules.php:884 +#: ../../godmode/wizards/HostDevices.class.php:1309 +#: ../../include/class/CredentialStore.class.php:1125 +#: ../../include/class/CredentialStore.class.php:1414 +#: ../../include/class/AgentWizard.class.php:895 +#: ../../include/functions_snmp_browser.php:914 msgid "Security level" msgstr "セキュリティレベル" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:815 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:363 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:418 #: ../../godmode/modules/manage_network_components_form_network.php:164 -#: ../../godmode/agentes/module_manager_editor_network.php:455 -#: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1297 -#: ../../include/functions_snmp_browser.php:893 +#: ../../godmode/agentes/module_manager_editor_network.php:452 +#: ../../godmode/massive/massive_edit_modules.php:887 +#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../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:364 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:419 #: ../../godmode/modules/manage_network_components_form_network.php:165 -#: ../../godmode/agentes/module_manager_editor_network.php:456 -#: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1298 -#: ../../include/functions_snmp_browser.php:894 +#: ../../godmode/agentes/module_manager_editor_network.php:453 +#: ../../godmode/massive/massive_edit_modules.php:888 +#: ../../godmode/wizards/HostDevices.class.php:1315 +#: ../../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:365 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:420 #: ../../godmode/modules/manage_network_components_form_network.php:166 -#: ../../godmode/agentes/module_manager_editor_network.php:457 -#: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1299 -#: ../../include/functions_snmp_browser.php:895 +#: ../../godmode/agentes/module_manager_editor_network.php:454 +#: ../../godmode/massive/massive_edit_modules.php:889 +#: ../../godmode/wizards/HostDevices.class.php:1316 +#: ../../include/functions_snmp_browser.php:919 msgid "Auth and privacy method" msgstr "認証あり、暗号化あり" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:835 #: ../../enterprise/operation/agentes/tag_view.php:157 -#: ../../godmode/agentes/module_manager_editor_common.php:271 -#: ../../godmode/agentes/module_manager_editor_common.php:1202 -#: ../../godmode/massive/massive_edit_modules.php:892 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3882 -#: ../../include/ajax/heatmap.ajax.php:197 ../../include/functions_graph.php:5049 -#: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:100 -#: ../../operation/agentes/status_monitor.php:518 +#: ../../godmode/agentes/module_manager_editor_common.php:301 +#: ../../godmode/agentes/module_manager_editor_common.php:974 +#: ../../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 +#: ../../include/functions_treeview.php:115 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:334 +#: ../../operation/heatmap.php:103 ../../operation/agentes/status_monitor.php:573 msgid "Not assigned" msgstr "未割当" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:849 -#: ../../enterprise/godmode/setup/setup_module_library.php:49 -#: ../../enterprise/include/functions_ui.php:102 -#: ../../extensions/quick_shell.php:174 +#: ../../enterprise/godmode/setup/setup_module_library.php:52 +#: ../../extensions/quick_shell.php:176 #: ../../godmode/modules/manage_network_components_form_wmi.php:47 -#: ../../godmode/agentes/module_manager_editor_wmi.php:103 -#: ../../godmode/massive/massive_edit_modules.php:906 -#: ../../include/functions_ui.php:6918 -#: ../../include/class/CredentialStore.class.php:997 -#: ../../include/class/CredentialStore.class.php:1367 -#: ../../include/class/AgentWizard.class.php:676 +#: ../../godmode/agentes/module_manager_editor_wmi.php:128 +#: ../../godmode/massive/massive_edit_modules.php:921 +#: ../../include/functions_ui.php:7468 +#: ../../include/class/CredentialStore.class.php:973 +#: ../../include/class/CredentialStore.class.php:1345 +#: ../../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:745 -#: ../../godmode/massive/massive_edit_modules.php:912 +#: ../../godmode/agentes/module_manager_editor_common.php:1355 +#: ../../godmode/massive/massive_edit_modules.php:927 msgid "Export target" msgstr "データのエクスポート" -#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:880 -#: ../../enterprise/godmode/services/services.service.php:684 -#: ../../enterprise/godmode/servers/HA_cluster.php:180 -#: ../../enterprise/operation/services/massive/services.create.php:714 -#: ../../enterprise/operation/services/services.list.php:278 -#: ../../enterprise/operation/services/services.table_services.php:200 -#: ../../godmode/massive/massive_edit_modules.php:933 -#: ../../godmode/alerts/alert_view.php:407 -msgid "Mode" -msgstr "モード" - #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:945 -#: ../../godmode/massive/massive_edit_modules.php:998 +#: ../../godmode/massive/massive_edit_modules.php:1013 msgid "Active Counters" msgstr "アクティブカウンター" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:946 -#: ../../godmode/massive/massive_edit_modules.php:999 +#: ../../godmode/massive/massive_edit_modules.php:1014 msgid "Inactive Counters" msgstr "非アクティブカウンター" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 +#: ../../godmode/massive/massive_edit_modules.php:1081 msgid "Policy linking status" msgstr "ポリシーリンク状態" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:990 -#: ../../godmode/massive/massive_edit_modules.php:1066 +#: ../../godmode/massive/massive_edit_modules.php:1081 msgid "This field only has sense in modules adopted by a policy." msgstr "このフィールドは、ポリシーに関連づけられたモジュールにのみ影響します。" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/massive/massive_edit_modules.php:1067 +#: ../../godmode/massive/massive_edit_modules.php:1082 msgid "Linked" msgstr "リンク済" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:1111 -#: ../../godmode/agentes/module_manager.php:1114 -#: ../../godmode/massive/massive_edit_modules.php:1067 -#: ../../include/ajax/module.php:1105 ../../include/ajax/module.php:1108 +#: ../../godmode/agentes/module_manager.php:844 +#: ../../godmode/agentes/module_manager.php:847 +#: ../../godmode/massive/massive_edit_modules.php:1082 +#: ../../include/ajax/module.php:1072 ../../include/ajax/module.php:1075 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:778 -#: ../../godmode/massive/massive_edit_modules.php:1076 +#: ../../godmode/agentes/module_manager_editor_common.php:1385 +#: ../../godmode/massive/massive_edit_modules.php:1091 msgid "Discard unknown events" msgstr "不明イベントを削除" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1029 -#: ../../godmode/massive/massive_edit_modules.php:1105 +#: ../../godmode/massive/massive_edit_modules.php:1120 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:1149 -#: ../../godmode/massive/massive_edit_modules.php:1122 +#: ../../godmode/agentes/module_manager_editor_common.php:1409 +#: ../../godmode/massive/massive_edit_modules.php:1137 msgid "Timeout" msgstr "タイムアウト" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1053 -#: ../../godmode/massive/massive_edit_modules.php:1131 +#: ../../godmode/massive/massive_edit_modules.php:1146 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:324 -#: ../../godmode/massive/massive_edit_modules.php:1148 +#: ../../godmode/agentes/module_manager_editor_network.php:322 +#: ../../godmode/massive/massive_edit_modules.php:1163 msgid "TCP send" msgstr "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:338 -#: ../../godmode/massive/massive_edit_modules.php:1151 +#: ../../godmode/agentes/module_manager_editor_network.php:323 +#: ../../godmode/massive/massive_edit_modules.php:1166 msgid "TCP receive" msgstr "TCP 受信文字列" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1076 #: ../../godmode/modules/manage_network_components_form_wmi.php:31 -#: ../../godmode/agentes/module_manager_editor_wmi.php:133 -#: ../../godmode/massive/massive_edit_modules.php:1154 +#: ../../godmode/agentes/module_manager_editor_wmi.php:173 +#: ../../godmode/massive/massive_edit_modules.php:1169 msgid "WMI query" msgstr "WMI クエリ" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1079 #: ../../godmode/modules/manage_network_components_form_wmi.php:33 #: ../../godmode/modules/manage_network_components_form_wizard.php:691 -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 -#: ../../godmode/massive/massive_edit_modules.php:1157 +#: ../../godmode/agentes/module_manager_editor_wmi.php:193 +#: ../../godmode/massive/massive_edit_modules.php:1172 msgid "Key string" msgstr "Key 文字列" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1082 #: ../../godmode/modules/manage_network_components_form_wmi.php:39 -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 -#: ../../godmode/massive/massive_edit_modules.php:1160 +#: ../../godmode/agentes/module_manager_editor_wmi.php:217 +#: ../../godmode/massive/massive_edit_modules.php:1175 msgid "Field number" msgstr "フィールド番号" @@ -18002,59 +18518,58 @@ msgstr "フィールド番号" #: ../../godmode/modules/manage_network_components_form_plugin.php:35 #: ../../godmode/agentes/module_manager_editor_plugin.php:49 #: ../../godmode/massive/massive_edit_plugins.php:346 -#: ../../godmode/massive/massive_edit_modules.php:1163 -#: ../../godmode/servers/plugin_registration.php:503 +#: ../../godmode/massive/massive_edit_modules.php:1178 +#: ../../godmode/servers/plugin_registration.php:513 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:477 +#: ../../godmode/agentes/module_manager_editor_network.php:474 #: ../../godmode/massive/massive_edit_plugins.php:480 -#: ../../godmode/massive/massive_edit_modules.php:1181 -#: ../../godmode/alerts/configure_alert_command.php:246 -#: ../../godmode/alerts/alert_actions.php:272 -#: ../../godmode/alerts/alert_actions.php:327 -#: ../../godmode/alerts/configure_alert_action.php:247 -#: ../../godmode/events/event_responses.editor.php:157 -#: ../../godmode/events/event_responses.editor.php:164 -#: ../../godmode/servers/plugin.php:422 ../../godmode/servers/plugin.php:427 -#: ../../godmode/servers/plugin.php:796 +#: ../../godmode/massive/massive_edit_modules.php:1196 +#: ../../godmode/alerts/configure_alert_command.php:266 +#: ../../godmode/alerts/alert_actions.php:298 +#: ../../godmode/alerts/alert_actions.php:352 +#: ../../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 #: ../../include/class/ManageNetScanScripts.class.php:434 -#: ../../include/class/ExternalTools.class.php:353 +#: ../../include/class/ExternalTools.class.php:382 msgid "Command" msgstr "コマンド" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1120 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1429 #: ../../godmode/modules/manage_network_components_form_network.php:242 -#: ../../godmode/agentes/module_manager_editor_network.php:503 -#: ../../godmode/massive/massive_edit_modules.php:1198 +#: ../../godmode/agentes/module_manager_editor_network.php:501 +#: ../../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:521 -#: ../../godmode/massive/massive_edit_modules.php:1213 +#: ../../godmode/agentes/module_manager_editor_network.php:534 +#: ../../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/massive/massive_edit_modules.php:1214 +#: ../../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/massive/massive_edit_modules.php:1215 +#: ../../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/massive/massive_edit_modules.php:1218 +#: ../../godmode/massive/massive_edit_modules.php:1233 msgid "Target OS" msgstr "対象 OS" @@ -18078,47 +18593,41 @@ msgstr "セキュリティチェックは正常です。" msgid "Security check is fail." msgstr "セキュリティチェックに失敗しました。" -#: ../../enterprise/godmode/admin_access_logs.php:208 +#: ../../enterprise/godmode/admin_access_logs.php:213 msgid "Extended info:" msgstr "拡張情報:" -#: ../../enterprise/godmode/admin_access_logs.php:216 +#: ../../enterprise/godmode/admin_access_logs.php:221 msgid "Changes:" msgstr "変更点:" -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:176 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:202 msgid "Group acl" msgstr "グループ ACL" -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2595 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2677 +#: ../../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 msgid "Condition" msgstr "状態" -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:256 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:289 msgid "Alert groups" msgstr "アラートグループ" -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:270 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1083 -#: ../../godmode/snmpconsole/snmp_alert.php:1130 -#: ../../godmode/alerts/configure_alert_template.php:749 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:305 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1108 +#: ../../godmode/snmpconsole/snmp_alert.php:1672 +#: ../../godmode/alerts/configure_alert_template.php:807 msgid "Disable event" msgstr "イベント無効化" -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:278 +#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:320 #: ../../godmode/snmpconsole/snmp_alert.php:94 msgid "Update alert" msgstr "アラート設定" -#: ../../enterprise/godmode/alerts/alert_inventory_builder.php:282 -#: ../../godmode/alerts/alert_list.builder.php:204 -#: ../../include/class/AgentsAlerts.class.php:396 -msgid "Add alert" -msgstr "アラートの追加" - #: ../../enterprise/godmode/alerts/alert_inventory_list.php:91 #: ../../godmode/massive/massive_add_alerts.php:168 #: ../../godmode/massive/massive_add_action_alerts.php:160 @@ -18126,56 +18635,56 @@ msgstr "アラートの追加" msgid "Successfully added" msgstr "追加されました。" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:185 msgid "Inventory alert filters" msgstr "インベントリアラートフィルタ" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:220 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:239 msgid "Alert name" msgstr "アラート名" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:221 -#: ../../enterprise/operation/agentes/policy_view.php:261 -#: ../../godmode/snmpconsole/snmp_alert.php:1275 -#: ../../godmode/alerts/alert_view.php:99 -#: ../../include/functions_reporting_html.php:5407 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:240 +#: ../../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/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 -#: ../../include/functions_treeview.php:455 -#: ../../include/class/AgentsAlerts.class.php:893 +#: ../../include/functions_treeview.php:442 +#: ../../include/class/AgentsAlerts.class.php:912 msgid "Last fired" msgstr "通知日時" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:261 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3230 -#: ../../enterprise/operation/agentes/policy_view.php:348 -#: ../../godmode/alerts/alert_list.list.php:576 -#: ../../godmode/alerts/alert_view.php:108 ../../mobile/operation/alerts.php:327 -#: ../../include/functions_ui.php:1256 -#: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12962 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:280 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3296 +#: ../../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 msgid "Alert disabled" msgstr "無効アラート" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:319 -#: ../../godmode/snmpconsole/snmp_alert.php:1394 -#: ../../godmode/alerts/alert_list.list.php:687 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:338 +#: ../../godmode/snmpconsole/snmp_alert.php:2033 +#: ../../godmode/alerts/alert_list.list.php:759 msgid "Delete action" msgstr "アクションの削除" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:404 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:431 msgid "Disable alert" msgstr "アラート無効化" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:407 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:434 msgid "Enable alert" msgstr "アラート有効化" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:442 msgid "Delete alert" msgstr "アラート削除" -#: ../../enterprise/godmode/alerts/alert_inventory_list.php:427 +#: ../../enterprise/godmode/alerts/alert_inventory_list.php:453 msgid "There are no defined inventory alerts" msgstr "定義済のインベントリアラートがありません" @@ -18187,9 +18696,27 @@ msgstr "インベントリアラート一覧" msgid "Inventory alert builder" msgstr "インベントリアラートビルダ" -#: ../../enterprise/godmode/services/services.massive.meta.php:56 -#: ../../enterprise/godmode/services/services.massive.elements.php:93 -#: ../../godmode/agentes/agent_manager.php:550 +#: ../../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/class/SnmpConsole.class.php:196 +#: ../../operation/snmpconsole/snmp_statistics.php:67 +#: ../../operation/events/events.php:1592 +msgid "List" +msgstr "一覧" + +#: ../../enterprise/godmode/alerts/alert_inventory.php:111 +#: ../../godmode/reporting/visual_console_builder.php:835 +#: ../../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 msgid "Not available" msgstr "利用できません" @@ -18199,17 +18726,17 @@ msgid "Service already exists." msgstr "サービスは既に存在します。" #: ../../enterprise/godmode/services/services.service.php:120 -#: ../../enterprise/operation/services/massive/services.create.php:112 +#: ../../enterprise/operation/services/massive/services.create.php:110 msgid "No name specified for the service" msgstr "サービスに名前がありません" #: ../../enterprise/godmode/services/services.service.php:131 -#: ../../enterprise/operation/services/massive/services.create.php:118 +#: ../../enterprise/operation/services/massive/services.create.php:116 msgid "No description specified for the service" msgstr "サービスに説明がありません" #: ../../enterprise/godmode/services/services.service.php:142 -#: ../../enterprise/operation/services/massive/services.create.php:124 +#: ../../enterprise/operation/services/massive/services.create.php:122 msgid "You must specify an agent to store the service" msgstr "サービスを保存するエージェントを指定する必要があります" @@ -18247,67 +18774,66 @@ msgid "Dynamic elements are not affected by cascade protection" msgstr "動的要素は関連障害検知抑制の影響を受けません" #: ../../enterprise/godmode/services/services.service.php:399 -#: ../../enterprise/godmode/services/services.elements.php:711 +#: ../../enterprise/godmode/services/services.elements.php:798 #: ../../enterprise/operation/services/services.php:93 #: ../../enterprise/operation/services/services.php:214 msgid "Services list" msgstr "サービス一覧" #: ../../enterprise/godmode/services/services.service.php:413 -#: ../../enterprise/godmode/services/services.elements.php:725 +#: ../../enterprise/godmode/services/services.elements.php:812 #: ../../enterprise/operation/services/services.php:108 msgid "Config Service" msgstr "サービス設定" #: ../../enterprise/godmode/services/services.service.php:430 -#: ../../enterprise/godmode/services/services.elements.php:742 +#: ../../enterprise/godmode/services/services.elements.php:829 #: ../../enterprise/operation/services/services.php:126 msgid "Config Elements" msgstr "要素編集" #: ../../enterprise/godmode/services/services.service.php:444 -#: ../../enterprise/godmode/services/services.elements.php:756 +#: ../../enterprise/godmode/services/services.elements.php:843 #: ../../enterprise/operation/services/services.php:141 msgid "View Service" msgstr "サービス参照" #: ../../enterprise/godmode/services/services.service.php:455 -#: ../../enterprise/godmode/services/services.elements.php:767 +#: ../../enterprise/godmode/services/services.elements.php:854 #: ../../enterprise/operation/services/services.php:153 #: ../../include/lib/Dashboard/Widgets/service_map.php:452 msgid "Service map" msgstr "サービスマップ" #: ../../enterprise/godmode/services/services.service.php:470 -#: ../../enterprise/godmode/services/services.elements.php:782 +#: ../../enterprise/godmode/services/services.elements.php:869 #: ../../enterprise/operation/services/services.php:168 msgid "Add items" msgstr "アイテムの追加" #: ../../enterprise/godmode/services/services.service.php:483 -#: ../../enterprise/godmode/services/services.elements.php:795 +#: ../../enterprise/godmode/services/services.elements.php:882 #: ../../enterprise/operation/services/services.php:181 msgid "Edit items" msgstr "アイテム編集" #: ../../enterprise/godmode/services/services.service.php:495 -#: ../../enterprise/godmode/services/services.elements.php:807 +#: ../../enterprise/godmode/services/services.elements.php:894 #: ../../enterprise/operation/services/services.php:193 -#: ../../godmode/reporting/reporting_builder.list_items.php:757 -#: ../../godmode/reporting/reporting_builder.list_items.php:761 +#: ../../godmode/reporting/reporting_builder.list_items.php:816 msgid "Delete items" msgstr "アイテムの削除" -#: ../../enterprise/godmode/services/services.service.php:552 +#: ../../enterprise/godmode/services/services.service.php:542 msgid "No Services or concrete action" msgstr "サービスまたは具体的なアクションがありません" -#: ../../enterprise/godmode/services/services.service.php:571 +#: ../../enterprise/godmode/services/services.service.php:562 msgid "Random name" msgstr "ランダムな名前" -#: ../../enterprise/godmode/services/services.service.php:603 -#: ../../enterprise/operation/services/massive/services.create.php:683 +#: ../../enterprise/godmode/services/services.service.php:612 +#: ../../enterprise/operation/services/massive/services.create.php:679 msgid "" "This group will be used also to control access to this service and its " "elements." @@ -18315,102 +18841,103 @@ msgstr "" "このグループは、このサービスとその要素へのアクセスを制御するためにも使用されま" "す。" -#: ../../enterprise/godmode/services/services.service.php:619 +#: ../../enterprise/godmode/services/services.service.php:618 msgid "Server assigned" msgstr "割当サーバ" -#: ../../enterprise/godmode/services/services.service.php:620 +#: ../../enterprise/godmode/services/services.service.php:619 msgid "Selected Prediction server will be assigned to evaluate the service." msgstr "選択した予測サーバはサービスの評価に割り当てられます。" -#: ../../enterprise/godmode/services/services.service.php:641 +#: ../../enterprise/godmode/services/services.service.php:640 msgid "Evaluation interval" msgstr "評価間隔" -#: ../../enterprise/godmode/services/services.service.php:667 -#: ../../enterprise/operation/services/massive/services.create.php:698 +#: ../../enterprise/godmode/services/services.service.php:666 +#: ../../enterprise/operation/services/massive/services.create.php:694 msgid "Agent to store data" msgstr "データを保存するエージェント" -#: ../../enterprise/godmode/services/services.service.php:691 -#: ../../enterprise/include/class/VMware.app.php:676 -#: ../../enterprise/include/class/DB2.app.php:545 -#: ../../enterprise/include/class/Aws.S3.php:515 -#: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1327 -#: ../../enterprise/include/class/MySQL.app.php:567 -#: ../../enterprise/include/class/Oracle.app.php:552 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 -#: ../../enterprise/include/functions_ipam.php:1356 -#: ../../enterprise/operation/services/massive/services.create.php:722 -#: ../../enterprise/operation/services/services.list.php:275 -#: ../../enterprise/operation/services/services.table_services.php:197 -#: ../../enterprise/tools/ipam/ipam_list.php:696 -#: ../../godmode/wizards/HostDevices.class.php:809 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:714 -#: ../../include/class/CustomNetScan.class.php:529 +#: ../../enterprise/godmode/services/services.service.php:690 +#: ../../enterprise/include/class/VMware.app.php:678 +#: ../../enterprise/include/class/DB2.app.php:555 +#: ../../enterprise/include/class/Aws.S3.php:524 +#: ../../enterprise/include/class/SAP.app.php:514 +#: ../../enterprise/include/class/Aws.cloud.php:1348 +#: ../../enterprise/include/class/MySQL.app.php:577 +#: ../../enterprise/include/class/Oracle.app.php:562 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:566 +#: ../../enterprise/include/functions_ipam.php:1358 +#: ../../enterprise/operation/services/massive/services.create.php:718 +#: ../../enterprise/operation/services/services.list.php:212 +#: ../../enterprise/operation/services/services.table_services.php:149 +#: ../../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 msgid "Manual" msgstr "マニュアル" -#: ../../enterprise/godmode/services/services.service.php:692 -#: ../../enterprise/operation/services/massive/services.create.php:723 -#: ../../enterprise/operation/services/services.list.php:276 -#: ../../enterprise/operation/services/services.table_services.php:198 +#: ../../enterprise/godmode/services/services.service.php:691 +#: ../../enterprise/operation/services/massive/services.create.php:719 +#: ../../enterprise/operation/services/services.list.php:213 +#: ../../enterprise/operation/services/services.table_services.php:150 msgid "Smart" msgstr "スマート" -#: ../../enterprise/godmode/services/services.service.php:709 -#: ../../enterprise/operation/services/massive/services.create.php:740 +#: ../../enterprise/godmode/services/services.service.php:711 +#: ../../enterprise/godmode/services/services.service.php:713 +#: ../../enterprise/operation/services/massive/services.create.php:736 msgid "In smart mode, thresholds are percentual." msgstr "スマートモードでは、しきい値はパーセントです。" -#: ../../enterprise/godmode/services/services.service.php:759 -#: ../../enterprise/operation/services/massive/services.create.php:823 +#: ../../enterprise/godmode/services/services.service.php:753 +#: ../../enterprise/operation/services/massive/services.create.php:819 msgid "Unknown elements as critical" msgstr "障害と認識する不明要素" -#: ../../enterprise/godmode/services/services.service.php:789 +#: ../../enterprise/godmode/services/services.service.php:783 msgid "Asynchronous mode" msgstr "非同期モード" -#: ../../enterprise/godmode/services/services.service.php:799 -#: ../../enterprise/operation/services/massive/services.create.php:853 +#: ../../enterprise/godmode/services/services.service.php:793 +#: ../../enterprise/operation/services/massive/services.create.php:849 msgid "Cascade protection enabled" msgstr "関連障害検知抑制が有効" -#: ../../enterprise/godmode/services/services.service.php:809 +#: ../../enterprise/godmode/services/services.service.php:803 #: ../../include/lib/Dashboard/Widgets/service_map.php:331 msgid "Show sunburst by default" msgstr "デフォルトでサンバースト表示" -#: ../../enterprise/godmode/services/services.service.php:819 +#: ../../enterprise/godmode/services/services.service.php:814 msgid "General Data" msgstr "一般データ" -#: ../../enterprise/godmode/services/services.service.php:829 -#: ../../enterprise/operation/services/massive/services.create.php:866 +#: ../../enterprise/godmode/services/services.service.php:824 +#: ../../enterprise/operation/services/massive/services.create.php:862 msgid "Calculate continuous SLA" msgstr "連続 SLA 計算" -#: ../../enterprise/godmode/services/services.service.php:839 -#: ../../enterprise/operation/services/massive/services.create.php:876 +#: ../../enterprise/godmode/services/services.service.php:834 +#: ../../enterprise/operation/services/massive/services.create.php:872 msgid "S.L.A. interval" msgstr "SLA 間隔" -#: ../../enterprise/godmode/services/services.service.php:853 -#: ../../enterprise/operation/services/massive/services.create.php:890 +#: ../../enterprise/godmode/services/services.service.php:848 +#: ../../enterprise/operation/services/massive/services.create.php:886 msgid "S.L.A. limit" msgstr "SLA 制限" -#: ../../enterprise/godmode/services/services.service.php:865 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 +#: ../../enterprise/godmode/services/services.service.php:860 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:210 #: ../../enterprise/include/functions_reporting_csv.php:1531 -#: ../../include/functions_reports.php:699 -#: ../../include/functions_reporting.php:960 +#: ../../include/functions_reports.php:711 +#: ../../include/functions_reporting.php:965 msgid "S.L.A." msgstr "SLA" -#: ../../enterprise/godmode/services/services.service.php:874 +#: ../../enterprise/godmode/services/services.service.php:869 msgid "" "Here are described the alert templates, which will use their default actions.\n" "\t\tYou can modify the default behaviour editing alerts in the agent who " @@ -18420,79 +18947,82 @@ msgstr "" "\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントで" "アラートを編集することによりデフォルトの動作を変更できます。" -#: ../../enterprise/godmode/services/services.service.php:900 -#: ../../enterprise/operation/services/massive/services.create.php:920 +#: ../../enterprise/godmode/services/services.service.php:895 +#: ../../enterprise/operation/services/massive/services.create.php:916 msgid "Warning service alert" msgstr "警告サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:912 -#: ../../enterprise/operation/services/massive/services.create.php:932 +#: ../../enterprise/godmode/services/services.service.php:907 +#: ../../enterprise/operation/services/massive/services.create.php:928 msgid "Critical service alert" msgstr "障害サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:924 -#: ../../enterprise/operation/services/massive/services.create.php:944 +#: ../../enterprise/godmode/services/services.service.php:919 +#: ../../enterprise/operation/services/massive/services.create.php:940 msgid "Unknown service alert" msgstr "不明サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:936 -#: ../../enterprise/operation/services/massive/services.create.php:956 +#: ../../enterprise/godmode/services/services.service.php:931 +#: ../../enterprise/operation/services/massive/services.create.php:952 msgid "S.L.A. critical service alert" msgstr "SLA 障害サービスアラート" -#: ../../enterprise/godmode/services/services.service.php:1039 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:436 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2619 +#: ../../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:1668 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1720 +#: ../../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:967 -#: ../../enterprise/include/class/LogSource.class.php:844 -#: ../../enterprise/include/class/ManageBackups.class.php:292 -#: ../../enterprise/include/class/ManageBackups.class.php:445 -#: ../../enterprise/include/functions_reporting.php:1884 -#: ../../enterprise/include/functions_reporting.php:2931 -#: ../../enterprise/include/functions_reporting.php:3187 -#: ../../enterprise/include/functions_reporting.php:3919 -#: ../../enterprise/include/functions_reporting.php:4188 -#: ../../enterprise/include/functions_reporting.php:4834 -#: ../../enterprise/include/functions_reporting.php:6151 -#: ../../enterprise/include/functions_reporting.php:6189 -#: ../../enterprise/include/functions_services.php:2084 +#: ../../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:375 -#: ../../godmode/setup/setup_general.php:870 -#: ../../godmode/setup/setup_general.php:888 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../include/functions_reporting_html.php:664 -#: ../../include/functions_reporting_html.php:859 -#: ../../include/functions_reporting_html.php:3474 -#: ../../include/functions_reporting_html.php:4780 +#: ../../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:668 -#: ../../include/class/ConfigPEN.class.php:692 -#: ../../include/class/SatelliteAgent.class.php:1126 +#: ../../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:1668 -#: ../../include/class/ModuleTemplates.class.php:1382 +#: ../../include/class/CredentialStore.class.php:1646 +#: ../../include/class/ModuleTemplates.class.php:1359 #: ../../include/class/WelcomeWindow.class.php:173 -#: ../../include/class/AgentWizard.class.php:6215 +#: ../../include/class/AgentWizard.class.php:6233 #: ../../include/lib/Dashboard/Widgets/maps_status.php:362 -#: ../../operation/agentes/pandora_networkmap.editor.php:633 -#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/agentes/pandora_networkmap.editor.php:745 +#: ../../operation/snmpconsole/snmp_browser.php:639 msgid "OK" msgstr "OK" -#: ../../enterprise/godmode/services/services.service.php:1042 +#: ../../enterprise/godmode/services/services.service.php:1028 msgid "" "This change in the service configuration will delete the history of the " "service modules. Do you wish to continue?" @@ -18500,7 +19030,7 @@ msgstr "" "このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しま" "すか?" -#: ../../enterprise/godmode/services/services.service.php:1044 +#: ../../enterprise/godmode/services/services.service.php:1030 msgid "" "This change in the service configuration will prevent the SLA modules from " "being created. Do you wish to continue?" @@ -18513,175 +19043,140 @@ msgid "Invalid service" msgstr "不正なサービスです" #: ../../enterprise/godmode/services/services.elements.php:99 -#: ../../enterprise/include/functions_reporting.php:2537 -#: ../../enterprise/include/functions_reporting.php:3481 -#: ../../enterprise/include/functions_reporting.php:4456 -#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1070 -#: ../../include/functions_reporting.php:9508 +#: ../../enterprise/include/functions_reporting.php:2555 +#: ../../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 msgid "Dynamic" msgstr "動的" -#: ../../enterprise/godmode/services/services.elements.php:222 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:128 -msgid "Custom field name" -msgstr "カスタムフィールド名" - -#: ../../enterprise/godmode/services/services.elements.php:234 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:130 -msgid "Custom field value" -msgstr "カスタムフィールド値" - -#: ../../enterprise/godmode/services/services.elements.php:252 +#: ../../enterprise/godmode/services/services.elements.php:227 msgid "Add custom field match" msgstr "カスタムフィールドマッチを追加" -#: ../../enterprise/godmode/services/services.elements.php:258 +#: ../../enterprise/godmode/services/services.elements.php:234 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:137 +msgid "Custom field name" +msgstr "カスタムフィールド名" + +#: ../../enterprise/godmode/services/services.elements.php:246 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 +msgid "Custom field value" +msgstr "カスタムフィールド値" + +#: ../../enterprise/godmode/services/services.elements.php:260 msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." msgstr "" "フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視" "します。" -#: ../../enterprise/godmode/services/services.elements.php:263 +#: ../../enterprise/godmode/services/services.elements.php:265 msgid "MySQL Regular expressions case sensitive." msgstr "MySQL 正規表現では大文字と小文字が区別されます。" -#: ../../enterprise/godmode/services/services.elements.php:269 +#: ../../enterprise/godmode/services/services.elements.php:271 msgid "Matching objects type" msgstr "一致するオブジェクトタイプ" -#: ../../enterprise/godmode/services/services.elements.php:284 +#: ../../enterprise/godmode/services/services.elements.php:286 msgid "Filter by group" msgstr "グループでフィルタする" -#: ../../enterprise/godmode/services/services.elements.php:296 +#: ../../enterprise/godmode/services/services.elements.php:298 msgid "Use regular expresions selectors" msgstr "正規表現セレクターを使用する" -#: ../../enterprise/godmode/services/services.elements.php:304 +#: ../../enterprise/godmode/services/services.elements.php:306 msgid "Having agent name" msgstr "エージェント名あり" -#: ../../enterprise/godmode/services/services.elements.php:312 +#: ../../enterprise/godmode/services/services.elements.php:314 msgid "Having module name" msgstr "モジュール名あり" -#: ../../enterprise/godmode/services/services.elements.php:322 +#: ../../enterprise/godmode/services/services.elements.php:324 msgid "Having custom fields" msgstr "カスタムフィールドあり" -#: ../../enterprise/godmode/services/services.elements.php:333 +#: ../../enterprise/godmode/services/services.elements.php:335 msgid "Apply rules on this server" msgstr "このサーバにルールを適用" -#: ../../enterprise/godmode/services/services.elements.php:352 -msgid "Weights" -msgstr "ウェイト" - -#: ../../enterprise/godmode/services/services.elements.php:357 +#: ../../enterprise/godmode/services/services.elements.php:355 msgid "In smart mode weights are automatically calculated." msgstr "スマートモードでは、ウエイトは自動的に計算されます。" -#: ../../enterprise/godmode/services/services.elements.php:455 -#: ../../enterprise/godmode/services/services.elements.php:465 -#: ../../enterprise/godmode/services/services.elements.php:472 +#: ../../enterprise/godmode/services/services.elements.php:364 +msgid "Weights" +msgstr "ウェイト" + +#: ../../enterprise/godmode/services/services.elements.php:542 +#: ../../enterprise/godmode/services/services.elements.php:552 +#: ../../enterprise/godmode/services/services.elements.php:559 msgid "Selected agent not found." msgstr "選択したエージェントが見つかりません。" -#: ../../enterprise/godmode/services/services.elements.php:478 -#: ../../enterprise/godmode/services/services.elements.php:490 +#: ../../enterprise/godmode/services/services.elements.php:565 +#: ../../enterprise/godmode/services/services.elements.php:577 #, php-format msgid "Selected module not found in %s." msgstr "選択したモジュールが %s に見つかりません。" -#: ../../enterprise/godmode/services/services.elements.php:499 +#: ../../enterprise/godmode/services/services.elements.php:586 msgid "Selected service not found." msgstr "選択したサービスが見つかりません。" -#: ../../enterprise/godmode/services/services.elements.php:516 +#: ../../enterprise/godmode/services/services.elements.php:603 msgid "Selected service could generate a loop" msgstr "選択したサービスはループを起こす可能性があります" -#: ../../enterprise/godmode/services/services.elements.php:528 +#: ../../enterprise/godmode/services/services.elements.php:615 #, php-format msgid "Failed adding service child: %s" msgstr "子サービスの追加に失敗しました: %s" -#: ../../enterprise/godmode/services/services.elements.php:571 +#: ../../enterprise/godmode/services/services.elements.php:658 #, php-format msgid "Selected rules are not valid: %s." msgstr "選択したルールが不正です: %s。" -#: ../../enterprise/godmode/services/services.elements.php:579 +#: ../../enterprise/godmode/services/services.elements.php:666 msgid "Invalid element type." msgstr "要素タイプが不正です。" -#: ../../enterprise/godmode/services/services.elements.php:605 +#: ../../enterprise/godmode/services/services.elements.php:692 msgid "Element registered successfully" msgstr "要素を登録しました" -#: ../../enterprise/godmode/services/services.elements.php:651 +#: ../../enterprise/godmode/services/services.elements.php:738 #, php-format msgid "Error deleting element: %s" msgstr "要素削除エラー: %s" -#: ../../enterprise/godmode/services/services.elements.php:821 -#: ../../operation/search_maps.php:30 -msgid "Elements" -msgstr "エレメント" - -#: ../../enterprise/godmode/services/services.elements.php:849 -#: ../../enterprise/include/functions_services.php:2019 -msgid "Edit service elements" -msgstr "サービス要素編集" - -#: ../../enterprise/godmode/services/services.elements.php:883 -#: ../../enterprise/godmode/services/services.elements.php:894 -#: ../../enterprise/godmode/setup/setup.php:557 -#: ../../enterprise/godmode/setup/setup.php:573 -#: ../../enterprise/include/functions_visual_map.php:677 -#: ../../enterprise/include/functions_HA_cluster.php:535 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1611 -#: ../../enterprise/include/class/AgentRepository.class.php:911 -#: ../../enterprise/include/class/Omnishell.class.php:1085 -#: ../../enterprise/include/class/LogSource.class.php:788 -#: ../../enterprise/include/class/ManageBackups.class.php:473 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1059 -#: ../../include/ajax/snmp_browser.ajax.php:260 -#: ../../include/functions_ui.php:294 ../../include/class/ConfigPEN.class.php:737 -#: ../../include/class/SatelliteAgent.class.php:1067 -#: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2095 -#: ../../include/class/CredentialStore.class.php:1612 -#: ../../include/class/ModuleTemplates.class.php:1418 -#: ../../include/class/SatelliteCollection.class.php:630 -#: ../../include/class/WebServerModuleDebug.class.php:359 -#: ../../include/class/AgentWizard.class.php:6009 -#: ../../operation/visual_console/view.php:919 -msgid "Success" -msgstr "成功" - -#: ../../enterprise/godmode/services/services.elements.php:885 +#: ../../enterprise/godmode/services/services.elements.php:958 +#: ../../enterprise/godmode/services/services.elements.php:1010 msgid "Add element" msgstr "要素追加" -#: ../../enterprise/godmode/services/services.elements.php:896 +#: ../../enterprise/godmode/services/services.elements.php:969 msgid "Edit element" msgstr "要素編集" -#: ../../enterprise/godmode/setup/setup_history.php:88 +#: ../../enterprise/godmode/setup/setup_history.php:90 msgid "Method does not exist" msgstr "メソッドがありません" -#: ../../enterprise/godmode/setup/setup_history.php:248 +#: ../../enterprise/godmode/setup/setup_history.php:258 msgid "Configure connection target" msgstr "接続対象設定" -#: ../../enterprise/godmode/setup/setup_history.php:262 +#: ../../enterprise/godmode/setup/setup_history.php:273 msgid "Active to historical settings" msgstr "ヒストリ設定有効化" -#: ../../enterprise/godmode/setup/setup_history.php:281 +#: ../../enterprise/godmode/setup/setup_history.php:294 #, php-format msgid "" "Data will be available in active database as time as days you specify here. " @@ -18692,11 +19187,11 @@ msgstr "" "トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" "されることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:287 +#: ../../enterprise/godmode/setup/setup_history.php:300 msgid "Data days old to keep in active database" msgstr "メインのデータベースに保持するデータの日数" -#: ../../enterprise/godmode/setup/setup_history.php:305 +#: ../../enterprise/godmode/setup/setup_history.php:317 #, php-format msgid "" "String data will be available in active database as time as days you specify " @@ -18707,11 +19202,11 @@ msgstr "" "トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" "されることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:312 +#: ../../enterprise/godmode/setup/setup_history.php:324 msgid "String data days old to keep in active database" msgstr "メインのデータベースに保持する文字列データの日数" -#: ../../enterprise/godmode/setup/setup_history.php:327 +#: ../../enterprise/godmode/setup/setup_history.php:341 msgid "" "Number of rows to be sent to historical database each 'delay' seconds. If you " "experience issues running pandora_db, try decreasing this value." @@ -18719,32 +19214,32 @@ msgstr "" "'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題" "が発生した場合は、この値を減らしてみてください。" -#: ../../enterprise/godmode/setup/setup_history.php:331 +#: ../../enterprise/godmode/setup/setup_history.php:345 msgid "Transference block size (Step)" msgstr "転送ブロックサイズ (ステップ)" -#: ../../enterprise/godmode/setup/setup_history.php:336 +#: ../../enterprise/godmode/setup/setup_history.php:361 msgid "Delay between transferences (seconds)" msgstr "転送間の遅延 (秒)" -#: ../../enterprise/godmode/setup/setup_history.php:341 +#: ../../enterprise/godmode/setup/setup_history.php:377 msgid "Historical data settings" msgstr "ヒストリデータ設定" -#: ../../enterprise/godmode/setup/setup_history.php:343 +#: ../../enterprise/godmode/setup/setup_history.php:379 msgid "Maximum historical data age (days)" msgstr "最大ヒストリデータ保存期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:348 +#: ../../enterprise/godmode/setup/setup_history.php:395 msgid "Maximum historical string data age (days)" msgstr "最大ヒストリ文字列データ保存期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:353 +#: ../../enterprise/godmode/setup/setup_history.php:411 msgid "Data older than 'days' is compacted in order to improve disk utilization." msgstr "" "設定した '日' より古いデータは、ディスク使用率を向上させるために圧縮されます。" -#: ../../enterprise/godmode/setup/setup_history.php:358 +#: ../../enterprise/godmode/setup/setup_history.php:416 msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " "tagente_datos_string, tevento). Monthly partitions." @@ -18752,15 +19247,15 @@ msgstr "" "特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)" "にパーティションを自動的に作成します。 月次のパーティションです。" -#: ../../enterprise/godmode/setup/setup_history.php:362 +#: ../../enterprise/godmode/setup/setup_history.php:420 msgid "Automatic partition of big tables." msgstr "大きなテーブルの自動パーティション" -#: ../../enterprise/godmode/setup/setup_history.php:373 +#: ../../enterprise/godmode/setup/setup_history.php:431 msgid "Historical events settings" msgstr "ヒストリイベント設定" -#: ../../enterprise/godmode/setup/setup_history.php:384 +#: ../../enterprise/godmode/setup/setup_history.php:442 #, php-format msgid "" "Events will remain in active database a maximum of specified days, then they " @@ -18771,32 +19266,32 @@ msgstr "" "データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除さ" "れることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:390 +#: ../../enterprise/godmode/setup/setup_history.php:448 msgid "Events days old to keep in active database" msgstr "メインのデータベースに保持するイベントの日数" -#: ../../enterprise/godmode/setup/setup_history.php:405 +#: ../../enterprise/godmode/setup/setup_history.php:464 msgid "Events will be purged from historical database after specified days." msgstr "イベントは、指定された日後にヒストリデータベースから削除されます。" -#: ../../enterprise/godmode/setup/setup_history.php:409 +#: ../../enterprise/godmode/setup/setup_history.php:468 msgid "Maximum historical events age (days)" msgstr "最大ヒストリイベント保持期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:426 +#: ../../enterprise/godmode/setup/setup_history.php:487 msgid "Enable historical events" msgstr "ヒストリイベント有効化" -#: ../../enterprise/godmode/setup/setup_history.php:438 -#: ../../enterprise/godmode/setup/setup_history.php:510 +#: ../../enterprise/godmode/setup/setup_history.php:499 +#: ../../enterprise/godmode/setup/setup_history.php:576 msgid "Customize settings" msgstr "設定カスタマイズ" -#: ../../enterprise/godmode/setup/setup_history.php:444 +#: ../../enterprise/godmode/setup/setup_history.php:505 msgid "Historical trap settings" msgstr "ヒストリトラップ設定" -#: ../../enterprise/godmode/setup/setup_history.php:455 +#: ../../enterprise/godmode/setup/setup_history.php:516 #, php-format msgid "" "Traps will remain in active database a maximum of specified days, then they " @@ -18807,70 +19302,70 @@ msgstr "" "データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除さ" "れることに注意してください。" -#: ../../enterprise/godmode/setup/setup_history.php:462 +#: ../../enterprise/godmode/setup/setup_history.php:523 msgid "Days old to keep in active database" msgstr "メインのデータベースに保持するデータの日数" -#: ../../enterprise/godmode/setup/setup_history.php:477 +#: ../../enterprise/godmode/setup/setup_history.php:539 msgid "Traps will be purged from historical database after specified days." msgstr "トラップは、指定された日後にヒストリデータベースから削除されます。" -#: ../../enterprise/godmode/setup/setup_history.php:481 +#: ../../enterprise/godmode/setup/setup_history.php:543 msgid "Maximum historical traps age (days)" msgstr "最大ヒストリトラップデータ保存期間 (日)" -#: ../../enterprise/godmode/setup/setup_history.php:498 +#: ../../enterprise/godmode/setup/setup_history.php:562 msgid "Enable historical traps" msgstr "ヒストリトラップ有効化" -#: ../../enterprise/godmode/setup/setup_history.php:521 +#: ../../enterprise/godmode/setup/setup_history.php:587 msgid "Enable historical database" msgstr "ヒストリデータベース有効化" -#: ../../enterprise/godmode/setup/setup_history.php:545 +#: ../../enterprise/godmode/setup/setup_history.php:613 msgid "History database connection is available." msgstr "ヒストリデータベース接続が可能です。" -#: ../../enterprise/godmode/setup/setup_history.php:552 +#: ../../enterprise/godmode/setup/setup_history.php:620 #, php-format msgid "History database connection failed: %s" msgstr "ヒストリデータベース接続に失敗しました: %s" -#: ../../enterprise/godmode/setup/setup_history.php:568 +#: ../../enterprise/godmode/setup/setup_history.php:636 msgid "History database schema is installed." msgstr "ヒストリデータベーススキーマをインストールしました。" -#: ../../enterprise/godmode/setup/setup_history.php:577 +#: ../../enterprise/godmode/setup/setup_history.php:645 #, php-format msgid "Database is not installed: %s" msgstr "データベースがインストールされていません: %s" -#: ../../enterprise/godmode/setup/setup_history.php:582 +#: ../../enterprise/godmode/setup/setup_history.php:650 msgid "Install database schema" msgstr "データベーススキーマのインストール" -#: ../../enterprise/godmode/setup/setup_history.php:583 +#: ../../enterprise/godmode/setup/setup_history.php:651 msgid "This action will install the schema into the target, are you sure?" msgstr "この操作は対象にスキーマをインストールします。よろしいですか?" -#: ../../enterprise/godmode/setup/setup_history.php:605 +#: ../../enterprise/godmode/setup/setup_history.php:673 msgid "History database schema is up to date with active database." msgstr "メインのデータベースでヒストリデータベーススキーマを更新します。" -#: ../../enterprise/godmode/setup/setup_history.php:614 +#: ../../enterprise/godmode/setup/setup_history.php:682 #, php-format msgid "Database is not updated: %s" msgstr "データベースが更新されていません: %s" -#: ../../enterprise/godmode/setup/setup_history.php:629 +#: ../../enterprise/godmode/setup/setup_history.php:697 msgid "Current schema: " msgstr "現在のスキーマ: " -#: ../../enterprise/godmode/setup/setup_history.php:636 +#: ../../enterprise/godmode/setup/setup_history.php:704 msgid "Upgrade database schema" msgstr "データベーススキーマのアップグレード" -#: ../../enterprise/godmode/setup/setup_history.php:637 +#: ../../enterprise/godmode/setup/setup_history.php:705 msgid "" "This action will schedule the installation or upgrade of database schema into " "the target, are you sure?" @@ -18878,12 +19373,7 @@ msgstr "" "このアクションにより、データベーススキーマの対象へのインストールまたはアップグ" "レードがスケジュールされます。よろしいですか?" -#: ../../enterprise/godmode/setup/setup_history.php:651 -#: ../../godmode/setup/performance.php:712 -msgid "Database maintenance status" -msgstr "データベースメンテナンス状態" - -#: ../../enterprise/godmode/setup/setup_history.php:677 +#: ../../enterprise/godmode/setup/setup_history.php:746 msgid "" "By enabling historical database, target connection will be tested. If needed, " "database schema will be applied on your selected target, do you want to " @@ -18892,7 +19382,7 @@ msgstr "" "ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応" "じて、データベーススキーマが選択した対象に適用されます。続行しますか?" -#: ../../enterprise/godmode/setup/setup_history.php:678 +#: ../../enterprise/godmode/setup/setup_history.php:747 msgid "" "Changing historical database target, schema will be recreated in new one, but " "old data will remain in previous node, unlinked from this console and not " @@ -18902,7 +19392,7 @@ msgstr "" "が、古いデータは前のノードに残り、このコンソールからリンク解除され、維持されま" "せん。続行しますか?" -#: ../../enterprise/godmode/setup/setup_history.php:680 +#: ../../enterprise/godmode/setup/setup_history.php:749 #, php-format msgid "" "Disabling historical database, you will not keep any data older than %d days. " @@ -18911,7 +19401,7 @@ msgstr "" "ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろ" "しいですか?" -#: ../../enterprise/godmode/setup/setup_history.php:684 +#: ../../enterprise/godmode/setup/setup_history.php:753 #, php-format msgid "" "Historical database allows you to keep data older than %d days. This action " @@ -18920,7 +19410,7 @@ msgstr "" "履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクショ" "ンでは変更は行われません。ヒストリデータベースは無効のままになります。" -#: ../../enterprise/godmode/setup/setup_history.php:689 +#: ../../enterprise/godmode/setup/setup_history.php:758 msgid "" "By changing historical database target, the new connection will be tested. If " "needed, database schema will be applied on your selected target. Information " @@ -18930,62 +19420,15 @@ msgstr "" "要に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存" "された情報は無視されます。続行しますか?" -#: ../../enterprise/godmode/setup/setup_history.php:692 +#: ../../enterprise/godmode/setup/setup_history.php:761 msgid "Please ensure all fields matches your needs." msgstr "すべてのフィールドがニーズに一致していることを確認してください。" -#: ../../enterprise/godmode/setup/setup_history.php:837 +#: ../../enterprise/godmode/setup/setup_history.php:906 msgid "Update scheduled." msgstr "更新が予定されています。" -#: ../../enterprise/godmode/setup/setup.php:47 -#: ../../include/functions_config.php:408 -msgid "Forward SNMP traps to agent (if exist)" -msgstr "SNMP トラップのエージェント(存在する場合)への転送" - -#: ../../enterprise/godmode/setup/setup.php:48 -msgid "Yes and change status" -msgstr "はい、ステータスを変更します" - -#: ../../enterprise/godmode/setup/setup.php:56 -msgid "Yes without changing status" -msgstr "はい、ステータスは変更しません" - -#: ../../enterprise/godmode/setup/setup.php:77 -#: ../../include/functions_config.php:412 -msgid "Use Enterprise ACL System" -msgstr "エンタープライズ ACL システムを利用する" - -#: ../../enterprise/godmode/setup/setup.php:104 -msgid "Metaconsole DB engine" -msgstr "メタコンソール DB エンジン" - -#: ../../enterprise/godmode/setup/setup.php:107 -#: ../../enterprise/include/class/MySQL.app.php:420 -msgid "MySQL" -msgstr "MySQL" - -#: ../../enterprise/godmode/setup/setup.php:122 -msgid "Metaconsole DB host" -msgstr "メタコンソール DB ホスト" - -#: ../../enterprise/godmode/setup/setup.php:136 -msgid "Metaconsole DB name" -msgstr "メタコンソール DB 名" - -#: ../../enterprise/godmode/setup/setup.php:150 -msgid "Metaconsole DB user" -msgstr "メタコンソール DB ユーザ" - -#: ../../enterprise/godmode/setup/setup.php:164 -msgid "Metaconsole DB password" -msgstr "メタコンソール DB パスワード" - -#: ../../enterprise/godmode/setup/setup.php:191 -msgid "Events Configuration Information" -msgstr "イベント設定情報" - -#: ../../enterprise/godmode/setup/setup.php:193 +#: ../../enterprise/godmode/setup/setup.php:38 msgid "" " If you are replicating events, events validated or deleted on the metaconsole " "WILL NOT be deleted or validated here. This option is just to allow local " @@ -18998,101 +19441,138 @@ msgstr "" "はありません。イベントの複製が有効になっている場合の操作は、メタコンソールでの" "み実行する必要があります。" -#: ../../enterprise/godmode/setup/setup.php:198 -#: ../../include/functions_config.php:448 +#: ../../enterprise/godmode/setup/setup.php:45 +msgid "Yes and change status" +msgstr "はい、ステータスを変更します" + +#: ../../enterprise/godmode/setup/setup.php:53 +msgid "Yes without changing status" +msgstr "はい、ステータスは変更しません" + +#: ../../enterprise/godmode/setup/setup.php:81 +#: ../../include/functions_config.php:430 +msgid "Forward SNMP traps to agent (if exist)" +msgstr "SNMP トラップのエージェント(存在する場合)への転送" + +#: ../../enterprise/godmode/setup/setup.php:92 +#: ../../include/functions_config.php:434 +msgid "Use Enterprise ACL System" +msgstr "エンタープライズ ACL システムを利用する" + +#: ../../enterprise/godmode/setup/setup.php:114 +msgid " Bytes" +msgstr " バイト" + +#: ../../enterprise/godmode/setup/setup.php:122 +msgid "Metaconsole DB engine" +msgstr "メタコンソール DB エンジン" + +#: ../../enterprise/godmode/setup/setup.php:125 +#: ../../enterprise/include/class/MySQL.app.php:426 +msgid "MySQL" +msgstr "MySQL" + +#: ../../enterprise/godmode/setup/setup.php:139 +msgid "Metaconsole DB host" +msgstr "メタコンソール DB ホスト" + +#: ../../enterprise/godmode/setup/setup.php:155 +msgid "Metaconsole DB name" +msgstr "メタコンソール DB 名" + +#: ../../enterprise/godmode/setup/setup.php:182 +msgid "Metaconsole DB user" +msgstr "メタコンソール DB ユーザ" + +#: ../../enterprise/godmode/setup/setup.php:195 +msgid "Metaconsole DB password" +msgstr "メタコンソール DB パスワード" + +#: ../../enterprise/godmode/setup/setup.php:210 +#: ../../include/functions_config.php:470 msgid "Activate Log Collector" msgstr "ログ収集の有効化" -#: ../../enterprise/godmode/setup/setup.php:221 +#: ../../enterprise/godmode/setup/setup.php:234 +msgid "Legacy HA database management" +msgstr "レガシーデータベース HA 管理" + +#: ../../enterprise/godmode/setup/setup.php:247 msgid "Critical threshold for occupied addresses" msgstr "占有アドレスの障害しきい値" -#: ../../enterprise/godmode/setup/setup.php:233 +#: ../../enterprise/godmode/setup/setup.php:259 msgid "Warning threshold for occupied addresses" msgstr "占有アドレスの警告しきい値" -#: ../../enterprise/godmode/setup/setup.php:245 -#: ../../include/functions_config.php:464 -msgid "SAP/R3 Plugin Licence" -msgstr "SAP/R3 プラグインライセンス" - -#: ../../enterprise/godmode/setup/setup.php:261 +#: ../../enterprise/godmode/setup/setup.php:277 msgid "Enterprise options" msgstr "Enterprise オプション" -#: ../../enterprise/godmode/setup/setup.php:433 -#, php-format -msgid "" -"Password related configuration only applies when local %s authentication is " -"selected." -msgstr "" -"パスワード関連の設定は、ローカル %s 認証が選択されている場合にのみ適用されま" -"す。" - -#: ../../enterprise/godmode/setup/setup.php:442 +#: ../../enterprise/godmode/setup/setup.php:486 msgid "Enterprise password policy" msgstr "Enterprise パスワードポリシー" -#: ../../enterprise/godmode/setup/setup.php:471 +#: ../../enterprise/godmode/setup/setup.php:502 msgid "Delete session users" msgstr "ユーザセッション削除" -#: ../../enterprise/godmode/setup/setup.php:541 -#: ../../godmode/snmpconsole/snmp_alert.php:1545 -#: ../../godmode/snmpconsole/snmp_alert.php:1560 +#: ../../enterprise/godmode/setup/setup.php:579 +#: ../../godmode/snmpconsole/snmp_alert.php:2224 +#: ../../godmode/snmpconsole/snmp_alert.php:2239 msgid "Confirmation" msgstr "確認" -#: ../../enterprise/godmode/setup/setup.php:542 +#: ../../enterprise/godmode/setup/setup.php:580 msgid "This action delete all users session, are you sure?" msgstr "この操作は全ユーザのセッションを削除します。よろしいですか?" -#: ../../enterprise/godmode/setup/setup.php:558 +#: ../../enterprise/godmode/setup/setup.php:596 msgid "All sessions deleted" msgstr "全てのセッションを削除しました" -#: ../../enterprise/godmode/setup/setup.php:565 -#: ../../enterprise/godmode/setup/setup.php:574 +#: ../../enterprise/godmode/setup/setup.php:603 +#: ../../enterprise/godmode/setup/setup.php:612 msgid "Unexpected error" msgstr "予期しないエラー" -#: ../../enterprise/godmode/setup/setup_skins.php:38 -#: ../../enterprise/godmode/setup/edit_skin.php:44 +#: ../../enterprise/godmode/setup/setup_skins.php:53 +#: ../../enterprise/godmode/setup/edit_skin.php:59 msgid "Skins configuration" msgstr "スキン設定" -#: ../../enterprise/godmode/setup/setup_skins.php:77 +#: ../../enterprise/godmode/setup/setup_skins.php:95 msgid "Error deleting skin" msgstr "スキン削除エラー" -#: ../../enterprise/godmode/setup/setup_skins.php:79 +#: ../../enterprise/godmode/setup/setup_skins.php:97 msgid "Successfully deleted skin" msgstr "スキンを削除しました" -#: ../../enterprise/godmode/setup/setup_skins.php:125 +#: ../../enterprise/godmode/setup/setup_skins.php:189 msgid "Skin name" msgstr "スキン名" -#: ../../enterprise/godmode/setup/setup_skins.php:126 -#: ../../enterprise/godmode/setup/edit_skin.php:241 +#: ../../enterprise/godmode/setup/setup_skins.php:190 +#: ../../enterprise/godmode/setup/edit_skin.php:266 msgid "Relative path" msgstr "相対パス" -#: ../../enterprise/godmode/setup/setup_skins.php:153 +#: ../../enterprise/godmode/setup/setup_skins.php:217 msgid "There are no defined skins" msgstr "定義済のスキンがありません" -#: ../../enterprise/godmode/setup/setup_skins.php:159 +#: ../../enterprise/godmode/setup/setup_skins.php:221 msgid "Create skin" msgstr "スキン作成" -#: ../../enterprise/godmode/setup/setup_module_library.php:68 -#: ../../enterprise/godmode/wizards/Cloud.class.php:381 +#: ../../enterprise/godmode/setup/setup_module_library.php:87 +#: ../../enterprise/godmode/wizards/Cloud.class.php:391 #: ../../godmode/module_library/module_library_view.php:163 msgid "Invalid username or password" msgstr "ユーザ名またはパスワードが不正です" -#: ../../enterprise/godmode/setup/setup_module_library.php:69 +#: ../../enterprise/godmode/setup/setup_module_library.php:88 #: ../../godmode/module_library/module_library_view.php:162 msgid "Problem with authentication. Check your internet connection" msgstr "認証に問題があります。内部接続を確認してください。" @@ -19117,28 +19597,28 @@ msgstr "" msgid "Console URLxxxxxx" msgstr "コンソール URLxxxxxx" -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 msgid "ElasticSearch IP" msgstr "ElasticSearch IP" -#: ../../enterprise/godmode/setup/setup_log_collector.php:37 +#: ../../enterprise/godmode/setup/setup_log_collector.php:40 msgid "IP of ElasticSearch server" msgstr "ElasticSearch サーバの IP" -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +#: ../../enterprise/godmode/setup/setup_log_collector.php:52 msgid "ElasticSearch Port" msgstr "ElasticSearch ポート" -#: ../../enterprise/godmode/setup/setup_log_collector.php:39 +#: ../../enterprise/godmode/setup/setup_log_collector.php:52 msgid "Port of ElasticSearch server" msgstr "ElasticSearch サーバのポート" -#: ../../enterprise/godmode/setup/setup_log_collector.php:44 -#: ../../include/functions_config.php:1531 +#: ../../enterprise/godmode/setup/setup_log_collector.php:77 +#: ../../include/functions_config.php:1629 msgid "Days to purge old information" msgstr "旧情報を削除する日数" -#: ../../enterprise/godmode/setup/setup_log_collector.php:48 +#: ../../enterprise/godmode/setup/setup_log_collector.php:100 msgid "ElasticSearch Status" msgstr "ElasticSearch の状態" @@ -19158,127 +19638,139 @@ msgstr "プロファイルユーザを自動的に作成するように強制す msgid "Local command" msgstr "ローカルコマンド" -#: ../../enterprise/godmode/setup/setup_auth.php:95 +#: ../../enterprise/godmode/setup/setup_auth.php:100 msgid "PHP function" msgstr "PHP 関数" -#: ../../enterprise/godmode/setup/setup_auth.php:99 -#: ../../enterprise/include/functions_tasklist.php:282 -#: ../../enterprise/include/functions_tasklist.php:369 +#: ../../enterprise/godmode/setup/setup_auth.php:110 +#: ../../enterprise/include/functions_tasklist.php:283 +#: ../../enterprise/include/functions_tasklist.php:370 #: ../../enterprise/operation/reporting/custom_reporting.php:20 -#: ../../godmode/tag/tag.php:281 ../../godmode/tag/edit_tag.php:239 -#: ../../include/functions_cron.php:615 ../../include/functions_cron.php:706 -#: ../../operation/search_users.php:45 +#: ../../godmode/users/user_management.php:186 ../../godmode/tag/tag.php:306 +#: ../../godmode/tag/edit_tag.php:224 ../../include/functions_cron.php:613 +#: ../../include/functions_cron.php:704 ../../operation/search_users.php:45 msgid "Email" msgstr "Email" -#: ../../enterprise/godmode/setup/setup_auth.php:172 -#: ../../enterprise/godmode/setup/setup_auth.php:456 -#: ../../enterprise/godmode/setup/setup_auth.php:1249 +#: ../../enterprise/godmode/setup/setup_auth.php:194 +#: ../../enterprise/godmode/setup/setup_auth.php:549 +#: ../../enterprise/godmode/setup/setup_auth.php:1357 msgid "Profiles selected" msgstr "選択しているプロファイル" -#: ../../enterprise/godmode/setup/setup_auth.php:173 -#: ../../enterprise/godmode/setup/setup_auth.php:457 -#: ../../enterprise/godmode/setup/setup_auth.php:1250 +#: ../../enterprise/godmode/setup/setup_auth.php:195 +#: ../../enterprise/godmode/setup/setup_auth.php:550 +#: ../../enterprise/godmode/setup/setup_auth.php:1358 msgid "Groups selected" msgstr "選択しているグループ" -#: ../../enterprise/godmode/setup/setup_auth.php:175 -#: ../../enterprise/godmode/setup/setup_auth.php:232 -#: ../../include/functions_profile.php:216 +#: ../../enterprise/godmode/setup/setup_auth.php:197 +#: ../../enterprise/godmode/setup/setup_auth.php:254 +#: ../../include/functions_profile.php:206 msgid "No hierarchy" msgstr "階層なし" -#: ../../enterprise/godmode/setup/setup_auth.php:176 -#: ../../enterprise/godmode/setup/setup_auth.php:233 +#: ../../enterprise/godmode/setup/setup_auth.php:198 +#: ../../enterprise/godmode/setup/setup_auth.php:255 msgid "LDAP Attributes" msgstr "LDAP アトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:177 -#: ../../enterprise/godmode/setup/setup_auth.php:234 -#: ../../enterprise/godmode/setup/setup_auth.php:460 -#: ../../enterprise/godmode/setup/setup_auth.php:512 -#: ../../enterprise/godmode/setup/setup_auth.php:1253 -#: ../../enterprise/godmode/setup/setup_auth.php:1307 +#: ../../enterprise/godmode/setup/setup_auth.php:199 +#: ../../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 #: ../../godmode/setup/snmp_wizard.php:44 msgid "OP" msgstr "OP" -#: ../../enterprise/godmode/setup/setup_auth.php:229 -#: ../../enterprise/godmode/setup/setup_auth.php:508 -#: ../../enterprise/godmode/setup/setup_auth.php:1303 -#: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:385 -#: ../../godmode/users/profile_list.php:323 -#: ../../godmode/users/configure_user.php:317 ../../godmode/menu.php:162 +#: ../../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_acl.php:68 +#: ../../godmode/groups/configure_group.php:108 +#: ../../godmode/groups/group_list.php:377 +#: ../../godmode/users/profile_list.php:92 +#: ../../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 msgid "Profiles" msgstr "プロファイル" -#: ../../enterprise/godmode/setup/setup_auth.php:242 -#: ../../enterprise/godmode/setup/setup_auth.php:519 -#: ../../enterprise/godmode/setup/setup_auth.php:1314 +#: ../../enterprise/godmode/setup/setup_auth.php:264 +#: ../../enterprise/godmode/setup/setup_auth.php:612 +#: ../../enterprise/godmode/setup/setup_auth.php:1422 msgid "Select profile" msgstr "プロファイルを選択" -#: ../../enterprise/godmode/setup/setup_auth.php:287 -#: ../../enterprise/godmode/setup/setup_auth.php:557 -#: ../../enterprise/godmode/setup/setup_auth.php:1357 +#: ../../enterprise/godmode/setup/setup_auth.php:309 +#: ../../enterprise/godmode/setup/setup_auth.php:650 +#: ../../enterprise/godmode/setup/setup_auth.php:1465 msgid "Add new permissions" msgstr "新規の権限を追加" -#: ../../enterprise/godmode/setup/setup_auth.php:385 -#: ../../enterprise/godmode/setup/setup_auth.php:1178 +#: ../../enterprise/godmode/setup/setup_auth.php:380 +msgid "User Timezone setup" +msgstr "ユーザタイムゾーン設定" + +#: ../../enterprise/godmode/setup/setup_auth.php:397 +msgid "Change timezone visual" +msgstr "タイムゾーン表示変更" + +#: ../../enterprise/godmode/setup/setup_auth.php:478 +#: ../../enterprise/godmode/setup/setup_auth.php:1286 msgid "New users will be able to log in to the nodes." msgstr "新規ユーザがノードへログインできます。" -#: ../../enterprise/godmode/setup/setup_auth.php:459 -#: ../../enterprise/godmode/setup/setup_auth.php:511 -#: ../../enterprise/godmode/setup/setup_auth.php:1252 -#: ../../enterprise/godmode/setup/setup_auth.php:1306 +#: ../../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 msgid "AD Groups" msgstr "ADグループ" -#: ../../enterprise/godmode/setup/setup_auth.php:738 -#: ../../enterprise/godmode/setup/setup_auth.php:854 +#: ../../enterprise/godmode/setup/setup_auth.php:831 +#: ../../enterprise/godmode/setup/setup_auth.php:947 msgid "You must select a profile from the list of profiles." msgstr "プロファイル一覧からぷらファイルを選択する必要があります。" -#: ../../enterprise/godmode/setup/setup_auth.php:743 -#: ../../enterprise/godmode/setup/setup_auth.php:859 +#: ../../enterprise/godmode/setup/setup_auth.php:836 +#: ../../enterprise/godmode/setup/setup_auth.php:952 msgid "You must select a group from the list of groups." msgstr "グループ一覧からグループを選択する必要があります。" -#: ../../enterprise/godmode/setup/setup_auth.php:1019 -#: ../../include/functions_config.php:693 +#: ../../enterprise/godmode/setup/setup_auth.php:1112 +#: ../../include/functions_config.php:719 msgid "MySQL host" msgstr "MySQL ホスト" -#: ../../enterprise/godmode/setup/setup_auth.php:1082 +#: ../../enterprise/godmode/setup/setup_auth.php:1175 msgid "SimpleSAML path" msgstr "SimpleSAML パス" -#: ../../enterprise/godmode/setup/setup_auth.php:1083 +#: ../../enterprise/godmode/setup/setup_auth.php:1176 msgid "Directory where your 'simplesamlphp' folder is located." msgstr "'simplesamlphp' フォルダがあるディレクトリ" -#: ../../enterprise/godmode/setup/setup_auth.php:1089 +#: ../../enterprise/godmode/setup/setup_auth.php:1182 msgid "SAML source" msgstr "SAML ソース" -#: ../../enterprise/godmode/setup/setup_auth.php:1090 +#: ../../enterprise/godmode/setup/setup_auth.php:1183 msgid "Authsource name, e.g. 'example-userpass'" msgstr "認証ソース名、例: 'example-userpass'" -#: ../../enterprise/godmode/setup/setup_auth.php:1097 +#: ../../enterprise/godmode/setup/setup_auth.php:1190 msgid "SAML user id attribute" msgstr "SAML ユーザ ID アトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1102 +#: ../../enterprise/godmode/setup/setup_auth.php:1195 msgid "SAML mail attribute" msgstr "SAML メールアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1103 +#: ../../enterprise/godmode/setup/setup_auth.php:1196 msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" @@ -19286,11 +19778,11 @@ msgstr "" "ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっ" "ている場合)" -#: ../../enterprise/godmode/setup/setup_auth.php:1110 +#: ../../enterprise/godmode/setup/setup_auth.php:1203 msgid "SAML group name attribute" msgstr "SAML グループ名アトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1111 +#: ../../enterprise/godmode/setup/setup_auth.php:1204 msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" @@ -19298,131 +19790,131 @@ msgstr "" "グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になって" "いる場合)" -#: ../../enterprise/godmode/setup/setup_auth.php:1118 +#: ../../enterprise/godmode/setup/setup_auth.php:1211 msgid "Simple attribute / Multivalue attribute" msgstr "シンプルアトリビュート / 複数の値のアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1123 +#: ../../enterprise/godmode/setup/setup_auth.php:1216 msgid "SAML profiles and tag attribute" msgstr "SAML プロファイルおよびタグアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1128 +#: ../../enterprise/godmode/setup/setup_auth.php:1221 msgid "Profile attribute" msgstr "プロファイルアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1133 +#: ../../enterprise/godmode/setup/setup_auth.php:1226 msgid "Tag attribute" msgstr "タグアトリビュート" -#: ../../enterprise/godmode/setup/setup_auth.php:1138 +#: ../../enterprise/godmode/setup/setup_auth.php:1231 msgid "SAML profile and tags prefix" msgstr "SAML プロファイルおよびタグプレフィックス" -#: ../../enterprise/godmode/setup/setup_acl.php:46 +#: ../../enterprise/godmode/setup/setup_acl.php:59 msgid "Enterprise ACL setup" msgstr "Enterprise ACL 設定" -#: ../../enterprise/godmode/setup/setup_acl.php:69 +#: ../../enterprise/godmode/setup/setup_acl.php:88 msgid "ACL element was deleted successfully" msgstr "ACL 要素を削除しました" -#: ../../enterprise/godmode/setup/setup_acl.php:71 +#: ../../enterprise/godmode/setup/setup_acl.php:90 msgid "There was a problem delete ACL element" msgstr "ACL 要素削除で問題が発生しました" -#: ../../enterprise/godmode/setup/setup_acl.php:417 +#: ../../enterprise/godmode/setup/setup_acl.php:436 msgid "This record already exists in the database" msgstr "このレコードは既にデータベースに存在します" -#: ../../enterprise/godmode/setup/setup_acl.php:422 +#: ../../enterprise/godmode/setup/setup_acl.php:441 msgid "ACL element is added successfully" msgstr "ACL 要素を追加しました" -#: ../../enterprise/godmode/setup/setup_acl.php:424 +#: ../../enterprise/godmode/setup/setup_acl.php:443 msgid "There was a problem adding ACL element" msgstr "ACL 要素追加で問題が発生しました。" -#: ../../enterprise/godmode/setup/setup_acl.php:464 -#: ../../enterprise/godmode/setup/setup_acl.php:539 -msgid "Add new ACL element to profile" -msgstr "プロファイルへの新ACL要素の追加" - -#: ../../enterprise/godmode/setup/setup_acl.php:469 -#: ../../enterprise/godmode/setup/setup_acl.php:544 -#: ../../enterprise/godmode/setup/setup_acl.php:592 -msgid "Section" -msgstr "セクション" - -#: ../../enterprise/godmode/setup/setup_acl.php:476 -#: ../../enterprise/godmode/setup/setup_acl.php:694 -msgid "Mobile" -msgstr "モバイル" - -#: ../../enterprise/godmode/setup/setup_acl.php:480 -#: ../../enterprise/godmode/setup/setup_acl.php:690 -msgid "Head search" -msgstr "ヘッドサーチ" - -#: ../../enterprise/godmode/setup/setup_acl.php:497 -#: ../../enterprise/godmode/setup/setup_acl.php:548 -#: ../../enterprise/godmode/setup/setup_acl.php:593 -msgid "Section 2" -msgstr "セクション 2" - -#: ../../enterprise/godmode/setup/setup_acl.php:514 -#: ../../enterprise/godmode/setup/setup_acl.php:552 -#: ../../enterprise/godmode/setup/setup_acl.php:594 -msgid "Section 3" -msgstr "セクション 3" - -#: ../../enterprise/godmode/setup/setup_acl.php:538 -msgid "Hidden" -msgstr "隠す" - -#: ../../enterprise/godmode/setup/setup_acl.php:570 +#: ../../enterprise/godmode/setup/setup_acl.php:486 msgid "Filter by profile" msgstr "プロファイルによるフィルタ" -#: ../../enterprise/godmode/setup/setup_acl.php:591 -#: ../../godmode/users/configure_profile.php:265 +#: ../../enterprise/godmode/setup/setup_acl.php:531 +#: ../../enterprise/godmode/setup/setup_acl.php:833 +msgid "Mobile" +msgstr "モバイル" + +#: ../../enterprise/godmode/setup/setup_acl.php:535 +#: ../../enterprise/godmode/setup/setup_acl.php:829 +msgid "Head search" +msgstr "ヘッドサーチ" + +#: ../../enterprise/godmode/setup/setup_acl.php:544 +#: ../../enterprise/godmode/setup/setup_acl.php:638 +msgid "User profile" +msgstr "ユーザプロファイル" + +#: ../../enterprise/godmode/setup/setup_acl.php:549 +#: ../../enterprise/godmode/setup/setup_acl.php:643 +#: ../../enterprise/godmode/setup/setup_acl.php:731 +msgid "Section" +msgstr "セクション" + +#: ../../enterprise/godmode/setup/setup_acl.php:567 +#: ../../enterprise/godmode/setup/setup_acl.php:648 +#: ../../enterprise/godmode/setup/setup_acl.php:732 +msgid "Section 2" +msgstr "セクション 2" + +#: ../../enterprise/godmode/setup/setup_acl.php:585 +#: ../../enterprise/godmode/setup/setup_acl.php:653 +#: ../../enterprise/godmode/setup/setup_acl.php:733 +msgid "Section 3" +msgstr "セクション 3" + +#: ../../enterprise/godmode/setup/setup_acl.php:602 +msgid "Add new ACL element to profile" +msgstr "プロファイルへの新ACL要素の追加" + +#: ../../enterprise/godmode/setup/setup_acl.php:657 +msgid "Add custom element to profile" +msgstr "プロファイルへカスタム要素を追加" + +#: ../../enterprise/godmode/setup/setup_acl.php:730 +#: ../../godmode/users/configure_profile.php:276 #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 -#: ../../include/functions_profile.php:213 -#: ../../operation/users/user_edit.php:912 +#: ../../include/functions_profile.php:203 +#: ../../operation/users/user_edit.php:998 msgid "Profile name" msgstr "プロファイル名" -#: ../../enterprise/godmode/setup/setup_acl.php:749 -#: ../../enterprise/godmode/setup/setup_acl.php:759 +#: ../../enterprise/godmode/setup/setup_acl.php:888 +#: ../../enterprise/godmode/setup/setup_acl.php:898 msgid "Invalid" msgstr "無効" -#: ../../enterprise/godmode/setup/setup_acl.php:791 -#: ../../enterprise/godmode/reporting/visual_console_template.php:305 -#: ../../enterprise/operation/agentes/wux_console_view.php:568 -#: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2843 -msgid "No data to show" -msgstr "表示するデータがありません" +#: ../../enterprise/godmode/setup/edit_skin.php:46 +msgid "Skin Configuration" +msgstr "スキン設定" -#: ../../enterprise/godmode/setup/edit_skin.php:47 +#: ../../enterprise/godmode/setup/edit_skin.php:65 msgid "Successfully updated skin" msgstr "スキンを更新しました" -#: ../../enterprise/godmode/setup/edit_skin.php:49 #: ../../enterprise/godmode/setup/edit_skin.php:67 +#: ../../enterprise/godmode/setup/edit_skin.php:85 msgid "Error updating skin" msgstr "スキン更新エラー" -#: ../../enterprise/godmode/setup/edit_skin.php:197 +#: ../../enterprise/godmode/setup/edit_skin.php:215 msgid "Error creating skin" msgstr "スキン作成エラー" -#: ../../enterprise/godmode/setup/edit_skin.php:201 +#: ../../enterprise/godmode/setup/edit_skin.php:219 msgid "Successfully created skin" msgstr "スキンを作成しました" -#: ../../enterprise/godmode/setup/edit_skin.php:242 +#: ../../enterprise/godmode/setup/edit_skin.php:266 msgid "" "Zip file with skin subdirectory. The name of the zip file only can have " "alphanumeric characters." @@ -19430,44 +19922,44 @@ msgstr "" "skin サブディレクトリを持った zip ファイル。zip ファイル名に使える文字は、アル" "ファベットのみです。" -#: ../../enterprise/godmode/setup/edit_skin.php:267 +#: ../../enterprise/godmode/setup/edit_skin.php:280 msgid "Group/s" msgstr "グループ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:147 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:143 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:80 msgid "Cleanup sucessfully" msgstr "整理しました" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:150 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:146 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:83 msgid "Cleanup error" msgstr "整理エラー" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:195 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:191 msgid "No item could be applied to report." msgstr "レポートにアイテムを適用できませんでした。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:156 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:162 msgid "Sucessfully applied" msgstr "適用しました" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 msgid "reports" msgstr "レポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:194 msgid "items" msgstr "アイテム" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:200 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:158 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:196 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:163 msgid "Could not be applied" msgstr "適用できません" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:207 -#: ../../godmode/massive/massive_operations.php:330 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:203 +#: ../../godmode/massive/massive_operations.php:370 msgid "" "In order to perform massive operations, PHP needs a correct configuration in " "timeout parameters. Please, open your PHP configuration file (php.ini) for " @@ -19480,32 +19972,28 @@ msgstr "" "イムアウトパラメータを次のように設定してください。
max_execution_time = " "0max_input_time = -1" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:221 -msgid "Create template report wizard" -msgstr "レポートウィザードテンプレート作成" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:266 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:197 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:205 msgid "Clean up template" msgstr "整理テンプレート" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:273 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:277 msgid "Create report per agent" msgstr "エージェントごとのレポート作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:293 #: ../../enterprise/include/functions_cron.php:232 -#: ../../enterprise/include/functions_tasklist.php:368 +#: ../../enterprise/include/functions_tasklist.php:369 #: ../../enterprise/include/functions_reporting_csv.php:2268 #: ../../enterprise/include/functions_reporting_csv.php:2272 -#: ../../godmode/reporting/reporting_builder.php:908 -#: ../../include/functions_cron.php:705 ../../operation/search_reports.php:42 +#: ../../godmode/reporting/reporting_builder.php:884 +#: ../../include/functions_cron.php:703 ../../operation/search_reports.php:42 #: ../../operation/search_reports.php:58 #: ../../operation/reporting/custom_reporting.php:34 msgid "Report name" msgstr "レポート名" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:282 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:293 msgid "" "Left in blank if you want to use default name: Template name - agents (num " "agents) - Date" @@ -19513,93 +20001,94 @@ msgstr "" "デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利" "用したい場合は、空白にしてください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:288 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:236 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:377 msgid "Target group" msgstr "対象グループ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:327 -msgid "Filter by" -msgstr "フィルタ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:330 -#: ../../godmode/reporting/create_container.php:566 -#: ../../godmode/reporting/create_container.php:629 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:348 +#: ../../godmode/reporting/create_container.php:668 +#: ../../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:127 -#: ../../include/ajax/heatmap.ajax.php:302 ../../operation/heatmap.php:113 -#: ../../operation/agentes/group_view.php:327 +#: ../../include/ajax/heatmap.ajax.php:129 +#: ../../include/ajax/heatmap.ajax.php:310 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:301 +#: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 msgid "Tag" msgstr "タグ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:350 +msgid "Filter by" +msgstr "フィルタ" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:447 msgid "Filter tag" msgstr "タグフィルタ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:412 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:422 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:172 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:177 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -#: ../../include/functions_snmp_browser.php:1519 -#: ../../include/functions_snmp_browser.php:1521 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:480 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:541 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:174 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:180 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:252 +#: ../../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 msgid "Select all" msgstr "全てを選択" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:415 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:281 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:832 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:486 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:201 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:258 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:822 msgid "Agents available" msgstr "存在するエージェント" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:425 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:287 -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:208 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:234 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:834 -msgid "Agents to apply" -msgstr "適用するエージェント" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:466 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:304 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:514 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:235 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:286 msgid "Add agents to template" msgstr "テンプレートにエージェントを追加" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:478 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:306 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:263 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:524 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:245 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:296 msgid "Undo agents to template" msgstr "エージェントをテンプレートから外します" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:499 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:324 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:547 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:268 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:243 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:824 +msgid "Agents to apply" +msgstr "適用するエージェント" + +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:586 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:423 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:361 msgid "Apply template" msgstr "テンプレート適用" -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:830 -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:861 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:631 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:661 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:443 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:475 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:923 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:954 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:736 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:766 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:541 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:573 msgid "Please set template distinct than " msgstr "次より明確なテンプレートを指定してください: " -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:834 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:635 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:927 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:740 msgid "Please set agent distinct than " msgstr "エージェントを次のもの以外で明確にしてください: " -#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:856 -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:656 -#: ../../enterprise/godmode/reporting/graph_template_wizard.php:470 +#: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:949 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:761 +#: ../../enterprise/godmode/reporting/graph_template_wizard.php:568 msgid "" "This will be delete all reports created in previous template applications. Do " "you want to continue?" @@ -19610,7 +20099,7 @@ msgid "Instance" msgstr "インスタンス" #: ../../enterprise/godmode/reporting/aws_view.php:54 -#: ../../include/class/Diagnostics.class.php:723 +#: ../../include/class/Diagnostics.class.php:743 msgid "CPU" msgstr "CPU" @@ -19640,7 +20129,6 @@ msgstr "出力トラフィック" #: ../../enterprise/godmode/reporting/aws_view.php:106 #: ../../enterprise/godmode/reporting/aws_view.php:139 -#: ../../enterprise/operation/menu.php:32 msgid "AWS View" msgstr "AWS 表示" @@ -19685,44 +20173,59 @@ msgstr "始めるには作成ボタンを押してください。" msgid "Instance table" msgstr "インスタンステーブル" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:62 -#: ../../enterprise/godmode/reporting/visual_console_template.php:63 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:75 +#: ../../enterprise/godmode/reporting/visual_console_template.php:78 #: ../../godmode/reporting/map_builder.php:75 -#: ../../godmode/reporting/map_builder.php:121 +#: ../../godmode/reporting/map_builder.php:120 #: ../../godmode/reporting/visual_console_favorite.php:72 msgid "Visual Console List" msgstr "ビジュアルコンソール一覧" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:74 -#: ../../enterprise/godmode/reporting/visual_console_template.php:75 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 +#: ../../enterprise/godmode/reporting/visual_console_template.php:90 #: ../../godmode/reporting/map_builder.php:87 #: ../../godmode/reporting/visual_console_favorite.php:84 msgid "Visual Favourite Console" msgstr "お気に入りビジュアルコンソール" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:87 -#: ../../enterprise/godmode/reporting/visual_console_template.php:88 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:100 +#: ../../enterprise/godmode/reporting/visual_console_template.php:103 #: ../../godmode/reporting/map_builder.php:100 #: ../../godmode/reporting/visual_console_favorite.php:97 msgid "Visual Console Template" msgstr "ビジュアルコンソールテンプレート" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:99 -#: ../../enterprise/godmode/reporting/visual_console_template.php:100 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:112 +#: ../../enterprise/godmode/reporting/visual_console_template.php:115 #: ../../godmode/reporting/map_builder.php:112 #: ../../godmode/reporting/visual_console_favorite.php:109 msgid "Visual Console Template Wizard" msgstr "ビジュアルコンソールテンプレートウィザード" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:108 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:120 msgid "Template Wizard" msgstr "テンプレートウィザード" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:133 +#: ../../enterprise/godmode/reporting/visual_console_template.php:136 +#: ../../extensions/resource_exportation.php:459 +#: ../../godmode/users/user_management.php:38 +#: ../../godmode/massive/massive_edit_users.php:274 +#: ../../godmode/reporting/visual_console_builder.php:869 +#: ../../godmode/reporting/map_builder.php:133 +#: ../../godmode/reporting/visual_console_favorite.php:130 +#: ../../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 +msgid "Visual console" +msgstr "ビジュアルコンソール" + +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:327 msgid "Visual console name" msgstr "ビジュアルコンソール名" -#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:200 +#: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:336 msgid "" "You can use macro _agentalias_ here. Left in blank if you want to use default " "name: Template name - agent alias" @@ -19730,15 +20233,8 @@ msgstr "" "ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白" "のままにします: テンプレート名 - エージェントの別名" -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:170 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:107 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:131 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:193 -msgid "Edit template" -msgstr "テンプレートの編集" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:209 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:903 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:244 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:895 msgid "" "Case insensitive regular expression for agent alias. For example: Network.* " "will match with the following agent alias: network_agent1, NetworK CHECKS" @@ -19746,13 +20242,13 @@ msgstr "" "エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次の" "エージェント別名と一致します: network_agent1, NetworK CHECKS" -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:222 -#: ../../godmode/reporting/reporting_builder.main.php:226 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:259 +#: ../../godmode/reporting/reporting_builder.main.php:220 msgid "Generate cover page in PDF render" msgstr "PDFレンダリングで表紙を生成する" -#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:230 -#: ../../godmode/reporting/reporting_builder.main.php:234 +#: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:269 +#: ../../godmode/reporting/reporting_builder.main.php:230 msgid "Generate index in PDF render" msgstr "PDFレンダリングで目次を生成する" @@ -19784,29 +20280,30 @@ msgstr "グラフテンプレート管理" #: ../../enterprise/godmode/reporting/graph_template_list.php:132 #: ../../enterprise/godmode/reporting/graph_template_editor.php:107 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:148 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:388 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:377 #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 +#: ../../godmode/reporting/create_container.php:209 #: ../../godmode/reporting/graph_builder.php:376 #: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:341 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:466 #: ../../operation/reporting/graph_viewer.php:271 msgid "Custom graphs" msgstr "カスタムグラフ" #: ../../enterprise/godmode/reporting/graph_template_list.php:203 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:497 -#: ../../godmode/alerts/alert_list.list.php:66 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:465 +#: ../../godmode/alerts/alert_list.list.php:67 msgid "Template name" msgstr "テンプレート名" -#: ../../enterprise/godmode/reporting/graph_template_list.php:252 -msgid "There are no defined graph templates" +#: ../../enterprise/godmode/reporting/graph_template_list.php:275 +msgid "There are no defined graph templates." msgstr "定義済のグラフテンプレートがありません" -#: ../../enterprise/godmode/reporting/graph_template_list.php:257 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:166 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:667 -#: ../../enterprise/godmode/reporting/visual_console_template.php:254 +#: ../../enterprise/godmode/reporting/graph_template_list.php:283 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:163 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:636 +#: ../../enterprise/godmode/reporting/visual_console_template.php:262 msgid "Create template" msgstr "テンプレートの作成" @@ -19820,8 +20317,8 @@ msgstr "グラフテンプレートエディタ" #: ../../enterprise/godmode/reporting/graph_template_editor.php:155 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 -#: ../../godmode/modules/manage_nc_groups.php:95 -#: ../../godmode/netflow/nf_edit_form.php:118 +#: ../../godmode/modules/manage_nc_groups.php:119 +#: ../../godmode/netflow/nf_edit_form.php:119 #: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "更新できませんでした。名前が空です。" @@ -19831,110 +20328,114 @@ msgid "Template updated successfully" msgstr "テンプレートを更新しました" #: ../../enterprise/godmode/reporting/graph_template_editor.php:174 -#: ../../include/class/ModuleTemplates.class.php:355 +#: ../../include/class/ModuleTemplates.class.php:339 msgid "Error updating template" msgstr "テンプレート更新エラー" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:208 -#: ../../godmode/setup/gis_step_2.php:372 -#: ../../godmode/reporting/visual_console_builder.wizard.php:180 -#: ../../godmode/events/event_responses.editor.php:139 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 +#: ../../godmode/setup/gis_step_2.php:392 +#: ../../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:668 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:475 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:926 -#: ../../include/functions_reports.php:1255 +#: ../../include/functions_reports.php:1267 msgid "Width" msgstr "幅" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:212 -#: ../../godmode/setup/gis_step_2.php:379 -#: ../../godmode/reporting/visual_console_builder.wizard.php:181 -#: ../../godmode/events/event_responses.editor.php:141 -#: ../../include/functions_visual_map_editor.php:673 -#: ../../include/functions_reports.php:1271 -#: ../../include/functions_reports.php:1371 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 +#: ../../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_reports.php:1283 +#: ../../include/functions_reports.php:1383 msgid "Height" msgstr "高さ" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:217 -#: ../../godmode/setup/performance.php:542 -#: ../../godmode/reporting/create_container.php:346 -#: ../../include/functions.php:2745 ../../include/functions.php:3413 -#: ../../include/ajax/module.php:207 ../../include/ajax/graph.ajax.php:146 -#: ../../operation/gis_maps/render_view.php:156 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 +#: ../../enterprise/operation/log/log_viewer.php:672 +#: ../../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 +#: ../../operation/gis_maps/render_view.php:157 msgid "1 hour" msgstr "1時間" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:218 -#: ../../operation/gis_maps/render_view.php:157 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:236 +#: ../../operation/gis_maps/render_view.php:158 msgid "2 hours" msgstr "2時間" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:219 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:237 msgid "3 hours" msgstr "3時間" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:220 -#: ../../include/ajax/module.php:208 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:238 +#: ../../include/ajax/module.php:222 msgid "6 hours" msgstr "6 時間" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:221 -#: ../../godmode/setup/performance.php:543 ../../include/ajax/module.php:209 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 +#: ../../godmode/setup/performance.php:628 ../../include/ajax/module.php:223 msgid "12 hours" msgstr "12時間" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:222 -#: ../../godmode/reporting/create_container.php:350 -#: ../../include/functions.php:2748 ../../include/ajax/module.php:210 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:240 +#: ../../enterprise/operation/log/log_viewer.php:676 +#: ../../godmode/reporting/create_container.php:422 +#: ../../include/functions.php:2758 ../../include/ajax/module.php:224 #: ../../include/ajax/graph.ajax.php:150 +#: ../../include/class/AuditLog.class.php:211 msgid "1 day" msgstr "1日" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:223 -#: ../../godmode/setup/performance.php:545 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:241 +#: ../../godmode/setup/performance.php:630 msgid "2 days" msgstr "2日" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:224 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:242 msgid "4 days" msgstr "4日" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:225 -#: ../../godmode/setup/performance.php:547 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:243 +#: ../../godmode/setup/performance.php:632 msgid "Last week" msgstr "先週" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:226 -#: ../../godmode/reporting/create_container.php:354 -#: ../../include/functions.php:2750 ../../include/ajax/module.php:212 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:244 +#: ../../enterprise/operation/log/log_viewer.php:680 +#: ../../godmode/reporting/create_container.php:426 +#: ../../include/functions.php:2760 ../../include/ajax/module.php:226 #: ../../include/ajax/graph.ajax.php:154 +#: ../../include/class/AuditLog.class.php:213 msgid "15 days" msgstr "15日" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:227 -#: ../../godmode/setup/performance.php:549 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:245 +#: ../../godmode/setup/performance.php:634 msgid "Last month" msgstr "先月" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:228 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 msgid "2 months" msgstr "2ヶ月" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:229 -#: ../../include/ajax/module.php:215 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:247 +#: ../../include/ajax/module.php:229 ../../include/class/AuditLog.class.php:216 msgid "6 months" msgstr "6ヵ月" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -#: ../../include/functions.php:2754 ../../include/ajax/module.php:216 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:248 +#: ../../include/functions.php:2764 ../../include/ajax/module.php:230 msgid "1 year" msgstr "1年" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:235 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:102 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1788 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:254 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:91 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1777 #: ../../enterprise/include/functions_reporting_csv.php:490 #: ../../enterprise/include/functions_reporting_csv.php:493 #: ../../enterprise/include/functions_reporting_csv.php:717 @@ -19953,45 +20454,45 @@ msgstr "1年" #: ../../enterprise/include/functions_reporting_csv.php:2677 #: ../../enterprise/include/functions_reporting_csv.php:2728 #: ../../enterprise/include/functions_reporting_csv.php:2854 -#: ../../godmode/agentes/module_manager_editor_prediction.php:179 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1412 -#: ../../godmode/reporting/visual_console_builder.elements.php:107 -#: ../../godmode/reporting/visual_console_builder.wizard.php:242 -#: ../../godmode/reporting/graph_builder.main.php:196 -#: ../../include/functions_visual_map_editor.php:788 +#: ../../godmode/agentes/module_manager_editor_prediction.php:136 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1440 +#: ../../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/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 msgid "Period" msgstr "更新間隔" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:239 -msgid "Stacked" -msgstr "積み上げ" - -#: ../../enterprise/godmode/reporting/graph_template_editor.php:246 -#: ../../godmode/reporting/graph_builder.main.php:215 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:261 +#: ../../godmode/reporting/graph_builder.main.php:209 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:353 -#: ../../operation/reporting/graph_viewer.php:343 +#: ../../operation/reporting/graph_viewer.php:355 msgid "Stacked area" msgstr "塗り潰しの積み上げ" -#: ../../enterprise/godmode/reporting/graph_template_editor.php:248 -#: ../../godmode/reporting/graph_builder.main.php:217 +#: ../../enterprise/godmode/reporting/graph_template_editor.php:263 +#: ../../godmode/reporting/graph_builder.main.php:211 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../operation/reporting/graph_viewer.php:345 +#: ../../operation/reporting/graph_viewer.php:357 msgid "Stacked line" msgstr "線の積み上げ" +#: ../../enterprise/godmode/reporting/graph_template_editor.php:266 +msgid "Stacked" +msgstr "積み上げ" + #: ../../enterprise/godmode/reporting/reporting_builder.global.php:46 -#: ../../include/functions_reports.php:815 +#: ../../include/functions_reports.php:827 msgid "Top n" msgstr "トップ n" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 -#: ../../include/functions_reports.php:789 -#: ../../include/functions_reporting.php:3456 +#: ../../include/functions_reports.php:801 +#: ../../include/functions_reporting.php:3560 msgid "Exception" msgstr "例外" @@ -20016,36 +20517,31 @@ msgstr "表とグラフ" msgid "Only graph" msgstr "グラフのみ" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:74 -#: ../../enterprise/include/functions_reporting.php:82 -msgid "Global" -msgstr "全体" - -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:106 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:290 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:319 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:95 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:279 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:308 msgid "Elements to apply" msgstr "適用する要素" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:190 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:204 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:291 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:179 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:193 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:280 msgid "Filter agents selector" msgstr "フィルタエージェント選択" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:196 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1765 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1389 -#: ../../include/functions_reports.php:766 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:185 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1754 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1417 +#: ../../include/functions_reports.php:778 msgid "Last value" msgstr "最新の値" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:198 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:818 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1767 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:5075 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1391 -#: ../../godmode/reporting/reporting_builder.item_editor.php:7358 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:187 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:819 +#: ../../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 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 " @@ -20054,169 +20550,170 @@ msgstr "" "警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれ" "るのは、最新の情報のみとなります。" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:222 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 -#: ../../godmode/reporting/visual_console_builder.wizard.php:408 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:217 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:211 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:294 +#: ../../godmode/reporting/visual_console_builder.wizard.php:431 msgid "If you select several agents, only the common modules will be displayed" msgstr "複数のエージェントを選択すると、共通のモジュールのみ表示されます。" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:258 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:247 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../include/functions_reporting_html.php:4922 +#: ../../include/functions_reporting_html.php:5009 msgid "Sum" msgstr "合計" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -#: ../../include/functions_reporting.php:10390 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:259 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:389 +#: ../../include/functions_reporting.php:10584 msgid "Rate" msgstr "率" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:306 -#: ../../enterprise/include/class/Omnishell.class.php:520 -#: ../../enterprise/operation/services/services.list.php:730 -#: ../../godmode/snmpconsole/snmp_alert.php:1506 -#: ../../include/class/ModuleTemplates.class.php:971 -#: ../../operation/events/events.php:2476 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:295 +#: ../../enterprise/include/class/Omnishell.class.php:529 +#: ../../enterprise/include/class/Omnishell.class.php:717 +#: ../../enterprise/operation/services/services.list.php:764 +#: ../../godmode/snmpconsole/snmp_alert.php:2159 +#: ../../include/class/ModuleTemplates.class.php:943 +#: ../../operation/events/events.php:2548 msgid "Delete selected" msgstr "選択範囲を削除します" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:321 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2379 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2446 +#: ../../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 msgid "Group by agent" msgstr "エージェント毎のグループ" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:333 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2429 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3150 +#: ../../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 msgid "Show in the same row" msgstr "同一行に表示" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:334 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2431 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3152 +#: ../../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 msgid "Show one module per row with all its operations" msgstr "すべての操作で行ごとに1つのモジュールを表示" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:346 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2449 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3026 -#: ../../enterprise/operation/log/log_viewer.php:501 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:335 +#: ../../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 #: ../../godmode/netflow/nf_item_list.php:173 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2460 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3173 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2505 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3219 #: ../../include/lib/Dashboard/Widgets/top_n.php:267 msgid "Order" msgstr "順番" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:351 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:318 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:340 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:307 #: ../../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:2452 -#: ../../enterprise/operation/log/log_viewer.php:498 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2441 +#: ../../enterprise/operation/log/log_viewer.php:566 #: ../../godmode/reporting/reporting_builder.item_editor.php:64 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2463 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2508 #: ../../include/lib/Dashboard/Widgets/top_n.php:261 msgid "Ascending" msgstr "昇順" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:353 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:325 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:342 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:314 #: ../../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:2459 -#: ../../enterprise/operation/log/log_viewer.php:497 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2448 +#: ../../enterprise/operation/log/log_viewer.php:565 #: ../../godmode/reporting/reporting_builder.item_editor.php:65 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2470 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2515 #: ../../include/lib/Dashboard/Widgets/top_n.php:262 msgid "Descending" msgstr "降順" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:355 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:332 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2466 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2477 +#: ../../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 #: ../../include/lib/Dashboard/Widgets/top_n.php:263 msgid "By agent name" msgstr "エージェント名で" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:363 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2478 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2489 +#: ../../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 #: ../../include/lib/Dashboard/Widgets/top_n.php:249 msgid "Quantity (n)" msgstr "数量(n)" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:375 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2493 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2519 +#: ../../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 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1662 +#: ../../operation/agentes/ver_agente.php:1646 msgid "Display" msgstr "表示" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2681 -#: ../../include/functions_reporting.php:3478 +#: ../../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 msgid "Everything" msgstr "すべて" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:432 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2605 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2594 msgid ">=" msgstr ">=" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:434 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2612 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:423 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2601 msgid "<" msgstr "<" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:438 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2626 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2689 -#: ../../include/functions_reporting_html.php:3487 +#: ../../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 msgid "Not OK" msgstr "NG" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:446 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:461 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2638 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2701 +#: ../../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 msgid "Show graph" msgstr "グラフ表示" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:347 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2751 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2811 +#: ../../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 msgid "Show resume" msgstr "復旧を表示" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:458 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2752 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2741 msgid "" "Show a resume table with max, min, average of total modules on the report " "bottom" msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:473 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:812 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3439 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3595 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:462 +#: ../../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 msgid "Show item in landscape format (only PDF)" msgstr "項目を横向き形式で表示(PDFのみ)" -#: ../../enterprise/godmode/reporting/reporting_builder.global.php:489 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:828 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:495 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3604 +#: ../../enterprise/godmode/reporting/reporting_builder.global.php:478 +#: ../../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 msgid "Page break at the end of the item (only PDF)" msgstr "アイテムの最後の改ページ(PDFのみ)" @@ -20224,78 +20721,80 @@ msgstr "アイテムの最後の改ページ(PDFのみ)" msgid "Wizard template" msgstr "ウィザードテンプレート" -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:81 -msgid "Advance Reporting" -msgstr "拡張レポート" - -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:97 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:91 msgid "Page orientation" msgstr "ページの向き" -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 -#: ../../include/functions_visual_map_editor.php:843 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:93 +#: ../../include/functions_visual_map_editor.php:841 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "縦" -#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 -#: ../../include/functions_visual_map_editor.php:844 +#: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:100 +#: ../../include/functions_visual_map_editor.php:842 #: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:491 +#: ../../include/lib/Dashboard/Widgets/module_value.php:394 +#: ../../include/lib/Dashboard/Widgets/module_status.php:470 msgid "Horizontal" msgstr "横" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:112 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1745 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:101 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1734 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:258 -#: ../../godmode/reporting/reporting_builder.list_items.php:424 -#: ../../godmode/reporting/create_container.php:364 -#: ../../godmode/reporting/create_container.php:473 -#: ../../godmode/reporting/create_container.php:527 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1366 +#: ../../godmode/reporting/reporting_builder.list_items.php:426 +#: ../../godmode/reporting/create_container.php:437 +#: ../../godmode/reporting/create_container.php:556 +#: ../../godmode/reporting/create_container.php:627 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1394 msgid "Time lapse" msgstr "時間経過" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:313 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:302 msgid "Order:" msgstr "並び順:" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:349 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:338 msgid "" "Show a resume table with max, min, average of total modules on the report " "bottom:" msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:369 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2731 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2791 +#: ../../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 msgid "Show address instead module name" msgstr "モジュール名の代わりにアドレスを表示" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:370 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2732 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2792 +#: ../../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 msgid "Show the main address of agent." msgstr "エージェントのメインアドレスを表示" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:439 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2340 -#: ../../include/functions_reports.php:809 +#: ../../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 +#: ../../include/functions_reports.php:821 msgid "SQL query" msgstr "SQL クエリ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:463 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:402 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3092 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3229 +#: ../../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 msgid "Failover mode" msgstr "フェイルオーバーモード" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:464 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:403 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3093 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3230 +#: ../../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 msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" @@ -20303,73 +20802,73 @@ msgstr "" "SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを" "考慮して実行する必要があります" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:481 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:420 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3112 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3249 +#: ../../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 msgid "Failover type" msgstr "フェイルオーバータイプ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:486 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:425 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3117 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3254 +#: ../../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 msgid "Failover normal" msgstr "通常のフェイルオーバー" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:498 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:437 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3129 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3266 +#: ../../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 msgid "Failover simple" msgstr "シンプルなフェイルオーバー" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:538 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2523 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2550 +#: ../../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 msgid "Graph render" msgstr "グラフレンダリング" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:544 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2529 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2556 +#: ../../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 msgid "Avg, max & min" msgstr "平均、最大 & 最小" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:545 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2530 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2557 +#: ../../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 msgid "Max only" msgstr "最大のみ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:546 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2531 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2558 +#: ../../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 msgid "Min only" msgstr "最小のみ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:547 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2532 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2559 +#: ../../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 msgid "Avg only" msgstr "平均のみ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:558 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2642 +#: ../../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 msgid "Time compare (Overlapped)" msgstr "時間比較 (重ね合わせ)" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:574 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2605 +#: ../../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 msgid "Full resolution graph (TIP)" msgstr "詳細グラフ (TIP)" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:575 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2546 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2606 +#: ../../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 msgid "" @@ -20379,22 +20878,22 @@ msgstr "" "詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最" "大、最小を有効にできます" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:591 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2556 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2625 +#: ../../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 msgid "Show threshold" msgstr "しきい値表示" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:605 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2657 -#: ../../godmode/reporting/graph_builder.main.php:245 -#: ../../include/functions.php:4167 ../../include/functions.php:4175 +#: ../../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/graph_builder.main.php:250 +#: ../../include/functions.php:4189 ../../include/functions.php:4197 msgid "Percentil" msgstr "パーセント値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:606 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2565 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:595 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 msgid "" "If this option was checked, only adding in elements that type of modules " "support this option." @@ -20402,367 +20901,371 @@ msgstr "" "このオプションをチェックすると、このオプションをサポートするモジュールタイプの" "要素のみ追加できます。" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:620 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2846 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2920 +#: ../../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 msgid "Show Summary group" msgstr "グループ概要を表示" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:684 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2932 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3006 +#: ../../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 msgid "Event Status" msgstr "イベントの状態" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2959 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3067 -#: ../../operation/agentes/tactical.php:257 +#: ../../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 +#: ../../operation/agentes/tactical.php:276 msgid "Event graphs" msgstr "イベントグラフ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:714 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2963 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:703 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2952 msgid "By agent" msgstr "エージェントで分類" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:724 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2973 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:713 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2962 msgid "By user validator" msgstr "ユーザで分類" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:734 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2983 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:723 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2972 msgid "By criticity" msgstr "重要度で分類" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:744 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2993 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:733 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2982 msgid "Validated vs unvalidated" msgstr "承諾済み・未承諾で分類" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:763 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1826 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1450 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:752 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1815 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1478 msgid "Data range" msgstr "データ範囲" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:788 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1807 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1431 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:777 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1796 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1459 msgid "Projection period" msgstr "予想期間" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2269 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2367 +#: ../../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 msgid "Serialized header" msgstr "ヘッダの並び" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:799 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2270 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2368 +#: ../../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 msgid "The separator character is |" msgstr "デリミタは'|'です。" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2337 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2404 +#: ../../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 msgid "Field separator" msgstr "フィールドセパレータ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:803 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2338 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2405 +#: ../../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 msgid "Separator for different fields in the serialized text chain" msgstr "連なったテキスト文字列でフィールドを分離するためのセパレータ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2358 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2425 +#: ../../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 msgid "Line separator" msgstr "行セパレータ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:807 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2359 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2426 +#: ../../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 msgid "" "Separator in different lines (composed by fields) of the serialized text chain" msgstr "(複数フィールドからなる)複数行のテキスト文字列をまたぐセパレータ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:845 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3423 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3432 +#: ../../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 msgid "Uncompress module" msgstr "非圧縮モジュール" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:846 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3424 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3433 +#: ../../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 msgid "Use uncompressed module data." msgstr "非圧縮モジュールデータを利用します。" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:910 #: ../../enterprise/include/functions_massive.php:54 -#: ../../godmode/agentes/module_manager.php:266 +#: ../../godmode/agentes/module_manager.php:82 #: ../../godmode/massive/massive_delete_action_alerts.php:175 #: ../../godmode/massive/massive_add_action_alerts.php:163 -#: ../../godmode/massive/massive_edit_modules.php:1999 +#: ../../godmode/massive/massive_edit_modules.php:2014 #: ../../include/functions_visual_map.php:2684 msgid "No modules selected" msgstr "モジュールが選択されていません。" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:198 -#: ../../enterprise/include/functions_reporting.php:71 -msgid "Wizard SLA" -msgstr "SLAウィザード" - -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:222 -#: ../../enterprise/include/functions_reporting.php:2373 -#: ../../include/functions_reports.php:704 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:211 +#: ../../enterprise/include/functions_reporting.php:2391 +#: ../../include/functions_reports.php:716 msgid "Monthly S.L.A." msgstr "月次 S.L.A." -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:223 -#: ../../enterprise/include/functions_reporting.php:3325 -#: ../../include/functions_reports.php:708 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:212 +#: ../../enterprise/include/functions_reporting.php:3344 +#: ../../include/functions_reports.php:720 msgid "Weekly S.L.A." msgstr "週次 S.L.A." -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:224 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:213 msgid "hourly S.L.A." msgstr "時間ごとの S.L.A." -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:225 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:214 msgid "Availability Graph S.L.A." msgstr "S.L.A. 可用性グラフ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:226 -#: ../../enterprise/include/functions_reporting.php:5568 -#: ../../include/functions_reports.php:718 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:215 +#: ../../enterprise/include/functions_reporting.php:5588 +#: ../../include/functions_reports.php:730 msgid "Services S.L.A." msgstr "サービス SLA" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:357 msgid "SLA min value" msgstr "SLA 最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:368 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:357 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:363 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 msgid "Enter possible range of values in SLA." msgstr "SLA に可能な値の範囲を入力してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:358 msgid "SLA min Value" msgstr "SLA 最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:374 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:363 msgid "SLA max value" msgstr "SLA 最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:364 msgid "SLA max Value" msgstr "SLA 最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:380 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:369 msgid "SLA Limit %" msgstr "SLA 制限 %" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:381 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:370 msgid "SLA Limit Value" msgstr "SLA 制限値" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:386 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:375 msgid "Dynamic SLA" msgstr "動的 SLA" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:393 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:382 msgid "Inverse SLA" msgstr "SLA の反転" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:450 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3027 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3174 +#: ../../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 msgid "SLA items sorted by fulfillment value" msgstr "実データによりソートしたSLAアイテム" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:455 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1839 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1463 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:439 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1828 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1491 msgid "Only display wrong SLAs" msgstr "不正な SLA のみ表示" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:467 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3145 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3282 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1419 -#: ../../include/functions_reporting_html.php:4759 -#: ../../include/functions_reporting_html.php:5030 -#: ../../include/functions_reporting_html.php:5186 -#: ../../include/functions_netflow.php:1183 +#: ../../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/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_netflow.php:1202 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" msgstr "サマリ" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:534 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:530 msgid "Please introduce a SLA max value higher than the SLA min value" msgstr "SLA の最大値は、SLA の最小値よりも大きくしてください" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:659 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:655 msgid "Dynamic SLA can not be Inverse" msgstr "動的 SLA は反転できません" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:660 msgid "Check Dynamic SLA or introduce a max and min SLA value" msgstr "動的 SLA を確認するか、最大および最小 SLA 値を入力します" -#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:668 +#: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:664 msgid "SLA Limit value is needed" msgstr "SLA 制限値が必要です" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:151 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:218 -#: ../../enterprise/include/functions_reporting.php:8017 -#: ../../enterprise/include/functions_reporting.php:8083 -#: ../../godmode/reporting/reporting_builder.php:3625 -#: ../../operation/reporting/reporting_viewer.php:157 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:104 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:128 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:190 +msgid "Edit template" +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 +#: ../../operation/reporting/reporting_viewer.php:156 msgid "Item editor" msgstr "アイテム編集" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:162 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:205 -#: ../../godmode/reporting/reporting_builder.php:3621 -#: ../../operation/reporting/reporting_viewer.php:148 +#: ../../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 +#: ../../operation/reporting/reporting_viewer.php:147 msgid "List items" msgstr "アイテム一覧" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:181 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:178 msgid "List templates" msgstr "テンプレート一覧" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:289 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:323 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:357 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:391 -#: ../../godmode/reporting/reporting_builder.php:596 -#: ../../godmode/reporting/reporting_builder.php:3583 -#: ../../godmode/reporting/reporting_builder.php:3697 -#: ../../godmode/reporting/reporting_builder.php:3726 -#: ../../operation/reporting/reporting_viewer.php:233 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:281 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:308 +#: ../../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 +#: ../../operation/reporting/reporting_viewer.php:222 msgid "Custom reports" msgstr "カスタムレポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:501 -#: ../../godmode/reporting/reporting_builder.php:910 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:469 +#: ../../godmode/reporting/reporting_builder.php:886 #: ../../operation/search_reports.php:44 ../../operation/search_reports.php:60 #: ../../operation/reporting/custom_reporting.php:36 msgid "HTML" msgstr "HTML" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:502 -#: ../../godmode/reporting/reporting_builder.php:911 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:470 +#: ../../godmode/reporting/reporting_builder.php:887 #: ../../operation/search_reports.php:45 ../../operation/search_reports.php:61 #: ../../operation/reporting/custom_reporting.php:37 msgid "XML" msgstr "XML" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:503 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:471 #: ../../enterprise/operation/reporting/custom_reporting.php:14 msgid "PDF" msgstr "PDF" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:504 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:472 #: ../../enterprise/operation/reporting/custom_reporting.php:16 msgid "JSON" msgstr "JSON" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:505 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:473 #: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../extensions/insert_data.php:199 -#: ../../operation/agentes/exportdata.php:379 +#: ../../extensions/insert_data.php:231 +#: ../../operation/agentes/exportdata.php:309 msgid "CSV" msgstr "CSVファイル" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:565 -#: ../../godmode/reporting/reporting_builder.php:1053 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:533 +#: ../../godmode/reporting/reporting_builder.php:1031 +#: ../../godmode/reporting/reporting_builder.php:1061 msgid "HTML view" msgstr "HTML 表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:573 -#: ../../godmode/reporting/reporting_builder.php:1063 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:541 +#: ../../godmode/reporting/reporting_builder.php:1047 +#: ../../godmode/reporting/reporting_builder.php:1069 msgid "Export to XML" msgstr "XML へエクスポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:581 -#: ../../enterprise/operation/reporting/custom_reporting.php:64 -#: ../../include/class/Diagnostics.class.php:144 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:549 +#: ../../enterprise/operation/reporting/custom_reporting.php:68 +#: ../../include/class/Diagnostics.class.php:145 msgid "Export to PDF" msgstr "PDF にエクスポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:589 -#: ../../enterprise/operation/reporting/custom_reporting.php:72 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:557 +#: ../../enterprise/operation/reporting/custom_reporting.php:84 msgid "Export to JSON" msgstr "JSONへエクスポート" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:661 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:629 msgid "You haven't created templates yet." msgstr "テンプレートが作成されていません。" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:681 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:671 msgid "Generate a dynamic report" msgstr "動的レポートを生成" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:759 -#: ../../include/functions_reports.php:1387 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:749 +#: ../../include/functions_reports.php:1399 msgid "Period " msgstr "期間 " -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:765 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:755 msgid "Set start and end date" msgstr "開始・終了日を設定" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:778 -#: ../../include/ajax/module.php:257 ../../operation/agentes/datos_agente.php:198 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:768 +#: ../../include/ajax/module.php:270 ../../operation/agentes/datos_agente.php:198 msgid "Timestamp from:" msgstr "開始日時:" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:796 -#: ../../include/ajax/module.php:277 ../../operation/agentes/datos_agente.php:204 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:786 +#: ../../include/ajax/module.php:290 ../../operation/agentes/datos_agente.php:204 msgid "Timestamp to:" msgstr "終了日時:" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:805 msgid "Monthly SLA period" msgstr "SLA 期間の編集" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:815 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:805 msgid "This field only applies in case of Monthly SLA item." msgstr "このフィールドは、月次 SLA アイテムの場合にのみ適用されます。" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:865 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:856 msgid "Undo agents" msgstr "エージェント追加取り消し" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:902 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:894 msgid "RegEx agent filter" msgstr "正規表現エージェントフィルタ" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:918 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:910 msgid "Generate" msgstr "生成" -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1312 -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1334 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1300 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1322 msgid "Please set agent or agent regex distinct than " msgstr "" "エージェントまたはエージェントの正規表現を次とは別のものに設定してください: " -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1342 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1330 msgid "It is not a regular expression " msgstr "正規表現ではありません " -#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1344 +#: ../../enterprise/godmode/reporting/reporting_builder.template.php:1332 msgid "No agent matches regular expression " msgstr "正規表現にマッチするエージェントがありません " @@ -20770,169 +21273,168 @@ msgstr "正規表現にマッチするエージェントがありません " msgid "Graph template item editor" msgstr "グラフテンプレートアイテムエディタ" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:187 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 +#: ../../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:345 -#: ../../include/functions.php:4027 +#: ../../godmode/reporting/graph_builder.graph_editor.php:389 +#: ../../include/functions.php:4049 msgid "Weight" msgstr "ウエイト" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:189 -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:244 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3577 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3652 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3879 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4313 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4458 -#: ../../enterprise/operation/log/log_viewer.php:478 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:185 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:246 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3579 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3654 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3810 +#: ../../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 msgid "Exact match" msgstr "完全一致" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:213 +msgid "Add Module" +msgstr "モジュール追加:" + +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:283 msgid "Decrease Weight" msgstr "ウエイトを減らす" -#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:206 +#: ../../enterprise/godmode/reporting/graph_template_item_editor.php:300 msgid "Increase Weight" msgstr "ウエイトを増やす" -#: ../../enterprise/godmode/reporting/visual_console_template.php:141 -#: ../../enterprise/godmode/reporting/visual_console_template.php:157 +#: ../../enterprise/godmode/reporting/visual_console_template.php:148 +#: ../../enterprise/godmode/reporting/visual_console_template.php:164 msgid "visual console has not been selected" msgstr "ビジュアルコンソールが選択されていません" -#: ../../enterprise/godmode/reporting/visual_console_template.php:147 +#: ../../enterprise/godmode/reporting/visual_console_template.php:154 msgid "Error. Error created template" msgstr "エラー: テンプレート作成エラー" -#: ../../enterprise/godmode/reporting/visual_console_template.php:149 +#: ../../enterprise/godmode/reporting/visual_console_template.php:156 msgid "Error. Template name cannot be repeated" msgstr "エラー: 同じテンプレート名は利用できません" -#: ../../enterprise/godmode/reporting/visual_console_template.php:151 +#: ../../enterprise/godmode/reporting/visual_console_template.php:158 msgid "Successfully created template" msgstr "テンプレートを作成しました" -#: ../../enterprise/godmode/reporting/visual_console_template.php:163 +#: ../../enterprise/godmode/reporting/visual_console_template.php:170 msgid "Error. Error delete template" msgstr "エラー: テンプレート削除エラー" -#: ../../enterprise/godmode/reporting/visual_console_template.php:165 +#: ../../enterprise/godmode/reporting/visual_console_template.php:172 msgid "Successfully delete template" msgstr "テンプレートを削除しました" -#: ../../enterprise/godmode/reporting/visual_console_template.php:187 -msgid "Create From" -msgstr "次から作成:" - -#: ../../enterprise/godmode/reporting/visual_console_template.php:198 +#: ../../enterprise/godmode/reporting/visual_console_template.php:179 msgid "There is not any visual console created. Please, create one firstly." msgstr "作成済のビジュアルコンソールがありません。最初に一つ作成してください。" -#: ../../enterprise/godmode/reporting/visual_console_template.php:260 +#: ../../enterprise/godmode/reporting/visual_console_template.php:199 +msgid "Create From" +msgstr "次から作成:" + +#: ../../enterprise/godmode/reporting/visual_console_template.php:277 msgid "Create New Template" msgstr "新しいテンプレートを作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:67 +#: ../../enterprise/godmode/reporting/mysql_builder.php:66 msgid "Custom MySQL template builder" msgstr "カスタム MySQL テンプレートビルダ" -#: ../../enterprise/godmode/reporting/mysql_builder.php:118 +#: ../../enterprise/godmode/reporting/mysql_builder.php:125 msgid "Create custom SQL" msgstr "カスタム SQL 作成" -#: ../../enterprise/godmode/reporting/mysql_builder.php:129 -#: ../../enterprise/godmode/reporting/mysql_builder.php:147 -msgid "Create new custom" -msgstr "設定の新規作成" - -#: ../../enterprise/godmode/reporting/mysql_builder.php:188 +#: ../../enterprise/godmode/reporting/mysql_builder.php:143 msgid "List of custom MySQL templates" msgstr "カスタム MySQL テンプレート一覧" -#: ../../enterprise/godmode/reporting/mysql_builder.php:194 +#: ../../enterprise/godmode/reporting/mysql_builder.php:149 msgid "Template builder" msgstr "テンプレートビルダ" -#: ../../enterprise/godmode/reporting/mysql_builder.php:213 +#: ../../enterprise/godmode/reporting/mysql_builder.php:172 +#: ../../enterprise/godmode/reporting/mysql_builder.php:190 +msgid "Create new custom" +msgstr "設定の新規作成" + +#: ../../enterprise/godmode/reporting/mysql_builder.php:229 msgid "Successfully operation" msgstr "操作が完了しました" -#: ../../enterprise/godmode/reporting/mysql_builder.php:213 +#: ../../enterprise/godmode/reporting/mysql_builder.php:229 msgid "Could not be operation" msgstr "操作を完了できませんでした" -#: ../../enterprise/godmode/reporting/mysql_builder.php:215 +#: ../../enterprise/godmode/reporting/mysql_builder.php:231 msgid "Without changes" msgstr "変更なし" -#: ../../enterprise/godmode/reporting/mysql_builder.php:215 -#: ../../operation/users/user_edit.php:202 +#: ../../enterprise/godmode/reporting/mysql_builder.php:231 +#: ../../operation/users/user_edit.php:225 msgid "No changes have been made" msgstr "変更されていません" -#: ../../enterprise/godmode/reporting/mysql_builder.php:234 +#: ../../enterprise/godmode/reporting/mysql_builder.php:244 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7428 +#: ../../include/functions_reporting.php:7540 msgid "SQL" msgstr "SQL" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1647 -#: ../../godmode/reporting/reporting_builder.php:3748 +#: ../../godmode/reporting/reporting_builder.php:3749 msgid "Successfull action" msgstr "処理に成功しました。" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1648 -#: ../../godmode/servers/modificar_server.php:183 -#: ../../godmode/servers/modificar_server.php:194 +#: ../../godmode/servers/modificar_server.php:285 +#: ../../godmode/servers/modificar_server.php:296 msgid "Unsuccessfull action" msgstr "処理に失敗しました。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1665 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1049 -msgid "Item Editor" -msgstr "アイテムエディタ" - -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1853 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1477 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1842 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1505 msgid "Current month" msgstr "今月" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1863 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1493 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1852 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1521 msgid "Working time" msgstr "対象時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1928 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1559 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1917 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1587 msgid "Time from" msgstr "開始時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1946 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1577 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1935 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1605 msgid "Time to" msgstr "終了時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1964 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1595 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1953 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1623 msgid "Show 24x7 item" msgstr "24時間365日のアイテムを表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1994 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1983 msgid "Select server" msgstr "サーバ選択" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2008 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2027 -#: ../../godmode/reporting/reporting_builder.item_editor.php:203 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1244 +#: ../../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:1264 msgid "Local metaconsole" msgstr "ローカルメタコンソール" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2086 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2075 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1169 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" "Case insensitive regular expression for agent name. For example: Network.* " @@ -20941,10 +21443,10 @@ msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、" "network_agent1, NetworKCHECKS というエージェント名にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2110 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3705 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3937 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1195 +#: ../../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 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 " @@ -20957,62 +21459,63 @@ msgstr "" "列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、" "cpu_usage、vram usage in machine 1 にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2132 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 msgid "Module exact match" msgstr "モジュール完全一致" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2133 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3637 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3713 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3861 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3944 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2122 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3639 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3715 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3863 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3946 msgid "Check it if you want to match module name literally" msgstr "モジュール名の文字列通りにマッチさせたい場合にチェックします" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2149 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2138 msgid "Case insensitive regular expression or string for templates name." msgstr "テンプレート名の大文字と小文字を区別しない正規表現または文字列。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2172 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2161 msgid "Case insensitive regular expression or string for actions name." msgstr "アクション名の大文字と小文字を区別しない正規表現または文字列。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2194 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2183 msgid "Hide items without data" msgstr "データのないアイテムを隠す" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2195 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2184 msgid "Check it if you want not show items without data" msgstr "データのないアイテムを表示したくない場合はチェックしてください" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2208 -#: ../../godmode/reporting/create_container.php:480 -#: ../../godmode/reporting/create_container.php:624 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2208 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.elements.php:575 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2197 +#: ../../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/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/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 -#: ../../include/functions_reports.php:561 -#: ../../include/functions_reports.php:648 -#: ../../include/functions_reports.php:654 -#: ../../include/functions_reporting.php:10461 +#: ../../include/functions_reports.php:573 +#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:666 +#: ../../include/functions_reporting.php:10655 msgid "Custom graph" msgstr "カスタムグラフ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2252 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2355 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2241 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2400 msgid "Max items" msgstr "最大アイテム" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2285 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2274 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2365 msgid "Custom SQL template" msgstr "カスタム SQL テンプレート" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2306 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2341 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2386 msgid "" "The entities of the fields that contain them must be included. Also is " "possible use macros like `_start_date_` or `_end_date_`." @@ -21020,187 +21523,187 @@ msgstr "" "それらを含むフィールドのエンティティを含める必要があります。 `_start_date_` や " "`_end_date_` などのマクロを使用することもできます。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2309 #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/functions_reporting_csv.php:2459 #: ../../enterprise/include/functions_reporting_csv.php:2473 -#: ../../extensions/api_checker.php:304 +#: ../../extensions/api_checker.php:365 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2387 -#: ../../godmode/events/event_responses.editor.php:156 -#: ../../godmode/events/event_responses.editor.php:164 -#: ../../include/functions_reporting_html.php:1581 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2432 +#: ../../godmode/events/event_responses.editor.php:229 +#: ../../godmode/events/event_responses.editor.php:255 +#: ../../include/functions_reporting_html.php:1616 #: ../../operation/gis_maps/ajax.php:316 msgid "URL" msgstr "URL" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2331 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2398 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2320 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2443 msgid "Protocol must be specified in URL (e.g.: \"https://\")" msgstr "URL にはプロトコルを指定する必要があります。(例: \"https://\")" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2395 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3560 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2384 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3606 msgid "Group by" msgstr "グループ化" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2510 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2499 #: ../../enterprise/include/functions_reporting_csv.php:1080 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2536 -#: ../../include/functions_reporting_html.php:4919 -#: ../../include/functions_reporting.php:1540 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2581 +#: ../../include/functions_reporting_html.php:5006 +#: ../../include/functions_reporting.php:1545 msgid "Avg" msgstr "平均" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2652 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2715 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2641 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2761 msgid "Select fields to show" msgstr "表示するフィールドの選択" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2660 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2649 #: ../../enterprise/include/functions_reporting_csv.php:501 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2723 -#: ../../include/functions_reporting_html.php:4060 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2769 +#: ../../include/functions_reporting_html.php:4145 msgid "Total time" msgstr "合計時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2668 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2657 #: ../../enterprise/include/functions_reporting_csv.php:505 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 -#: ../../include/functions_reporting_html.php:4066 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2777 +#: ../../include/functions_reporting_html.php:4151 msgid "Time failed" msgstr "障害時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2676 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2665 #: ../../enterprise/include/functions_reporting_csv.php:509 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2739 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2785 msgid "Time in OK status" msgstr "正常状態の時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2684 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2673 #: ../../enterprise/include/functions_reporting_csv.php:513 -#: ../../enterprise/include/functions_reporting.php:4970 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2747 -#: ../../include/functions_reporting_html.php:4078 +#: ../../enterprise/include/functions_reporting.php:4990 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2793 +#: ../../include/functions_reporting_html.php:4163 msgid "Time in warning status" msgstr "警告状態の時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2692 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2681 #: ../../enterprise/include/functions_reporting_csv.php:517 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2755 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2801 msgid "Time in unknown status" msgstr "不明状態の時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2704 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2693 #: ../../enterprise/include/functions_reporting_csv.php:521 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2767 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2813 msgid "Time of not initialized module" msgstr "未初期化モジュールの時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2716 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2705 #: ../../enterprise/include/functions_reporting_csv.php:525 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2779 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2825 msgid "Time of downtime" msgstr "計画停止時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2770 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2831 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2759 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2877 msgid "

Select fields to show

" msgstr "

表示するフィールドを選択

" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2778 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2767 #: ../../enterprise/include/functions_reporting_csv.php:533 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2839 -#: ../../include/functions_reporting_html.php:4154 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2885 +#: ../../include/functions_reporting_html.php:4239 msgid "Total checks" msgstr "全確認数" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2786 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2847 -#: ../../include/functions_reporting_html.php:4160 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2775 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2893 +#: ../../include/functions_reporting_html.php:4245 msgid "Checks failed" msgstr "障害確認数" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2794 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2783 #: ../../enterprise/include/functions_reporting_csv.php:541 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2855 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2901 msgid "Checks in OK status" msgstr "OK 状態のチェック" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2806 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2795 #: ../../enterprise/include/functions_reporting_csv.php:545 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2879 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2925 msgid "Unknown checks" msgstr "不明チェック" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2818 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2891 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2807 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 msgid "

Select fields to show

" msgstr "

表示するフィールドを選択

" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2826 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2815 #: ../../enterprise/include/functions_reporting_csv.php:668 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2899 -#: ../../include/functions_reporting_html.php:4475 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2945 +#: ../../include/functions_reporting_html.php:4560 msgid "Agent max value" msgstr "エージェント最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2834 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2907 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2823 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2953 msgid "Agent min values" msgstr "エージェント最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2863 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3543 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2852 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3589 msgid "Show Summary" msgstr "概要を表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3007 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3131 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2996 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3177 msgid "Height (dynamic graphs)" msgstr "高さ(動的グラフ)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3047 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3115 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3036 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3161 msgid "Query History Database" msgstr "ヒストリデータベース問い合わせ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3059 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3196 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3048 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3242 msgid "Priority mode" msgstr "優先モード" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3064 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3201 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3247 msgid "Priority ok mode" msgstr "正常優先モード" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3076 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3213 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3065 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3259 msgid "Priority unknown mode" msgstr "不明優先モード" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3166 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3155 msgid "Modules to match" msgstr "マッチするモジュール" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3168 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3157 msgid "Select the modules to match when create a report for agents" msgstr "エージェントのレポートを作成する時にマッチするモジュールを選択します" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3268 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3257 msgid "Modules to match (Free text)" msgstr "マッチするモジュール (任意のテキスト)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3270 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3259 msgid "Free text to filter the modules of agents when apply this template." msgstr "このテンプレートを適用する時のエージェントのモジュールフィルタテキスト" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3287 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3276 msgid "Create a graph for each agent" msgstr "それぞれのエージェントのグラフ作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3289 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3278 msgid "" "If it is checked, the regexp or name of modules match only each to each to " "agent, instead create a big graph with all modules from all agents." @@ -21208,99 +21711,98 @@ msgstr "" "チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチし" "ます。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3321 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3367 msgid "Calculate for custom intervals" msgstr "時間間隔の計算" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3327 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3416 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3316 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3462 msgid "Use prefix notation" msgstr "プレフィックス表記を使用する" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3339 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3333 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3328 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3379 msgid "Time lapse intervals" msgstr "時間経過間隔" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3341 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3336 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3382 msgid "" "Lapses of time in which the period is divided to make more precise calculations" msgstr "より正確な計算を行うために期間が分割された経過時間" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3386 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3377 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3375 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3423 msgid "Table only" msgstr "表のみ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3396 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3388 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3385 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3434 msgid "Graph only" msgstr "グラフのみ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3406 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3399 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3395 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3445 msgid "Graph and table" msgstr "グラフと表" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3455 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1319 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3444 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1347 msgid "Filter by network" msgstr "ネットワークによるフィルタ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3485 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1338 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3474 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1366 msgid "Show alive IPs only" msgstr "応答のある IP のみ表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3498 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1351 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3487 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1379 msgid "Show IPs not assigned to an agent" msgstr "エージェントに割り当てられていない IP の表示" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3524 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3513 #: ../../godmode/netflow/nf_item_list.php:282 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3924 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4025 msgid "Create item" msgstr "アイテムの作成" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3533 -#: ../../extensions/agents_modules.php:448 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3931 -#: ../../include/functions_visual_map_editor.php:1421 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3526 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4033 +#: ../../include/functions_visual_map_editor.php:1419 msgid "Update item" msgstr "アイテム更新" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3582 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4018 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3584 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4123 msgid "SLA Min. (value)" msgstr "SLA 最小値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3587 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4023 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3589 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4128 msgid "SLA Max. (value)" msgstr "SLA 最大値" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3592 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4028 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3594 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4133 msgid "SLA Limit (%)" msgstr "SLA 制限 (%)" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3609 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3611 msgid "Please save the SLA template for start to add items in this list." msgstr "" "この一覧へのアイテム追加を開始するには、SLA テンプレートを保存してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3650 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3877 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4322 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4467 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3652 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3879 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4328 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4473 msgid "Not literally" msgstr "存在しません" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3696 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3928 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3698 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3930 msgid "" "Case insensitive regular expression for agent name. For example: Network* will " "match with the following agent names: network_agent1, NetworK CHECKS" @@ -21308,100 +21810,95 @@ msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network* は、" "network_agent1、NetworKCHECKS というエージェント名にマッチします。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3712 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3943 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3714 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3945 msgid "Literal module name forced" msgstr "リテラルモジュール名が強制されました" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3751 -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4003 -#: ../../godmode/reporting/create_container.php:418 -#: ../../godmode/reporting/reporting_builder.item_editor.php:1815 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4252 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4289 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4458 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4731 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4765 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4819 -#: ../../include/functions_ui.php:5875 ../../include/functions_html.php:5436 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3753 +#: ../../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 msgid "Select an Agent first" msgstr "最初にエージェントを選択してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3833 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3835 msgid "Please save the template to start adding items into the list." msgstr "リストに項目を追加するにはテンプレートを保存してください。" -#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4348 +#: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:4354 msgid "Name and SLA limit should not be empty" msgstr "名前と SLA 制限は空にできません" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 -#: ../../godmode/modules/module_list.php:60 -#: ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:849 ../../godmode/setup/os.builder.php:40 -#: ../../godmode/reporting/visual_console_builder.elements.php:293 +#: ../../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/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:1395 +#: ../../include/functions_visual_map_editor.php:1393 #: ../../include/functions_visual_map.php:4225 #: ../../include/rest-api/models/VisualConsole/Item.php:2148 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:424 -#: ../../include/lib/Dashboard/Widgets/module_status.php:415 -#: ../../operation/visual_console/view.php:343 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:428 +#: ../../include/lib/Dashboard/Widgets/module_status.php:419 +#: ../../operation/visual_console/view.php:361 msgid "Icon" msgstr "アイコン" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:139 -#: ../../enterprise/include/functions_ipam.php:1569 -msgid "Available" -msgstr "利用可能" +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:178 +msgid "Services available" +msgstr "存在するサービス" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:141 -#: ../../include/graphs/export_data.php:103 -msgid "Selected" -msgstr "選択済" - -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:150 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:151 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:212 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:213 msgid "Push the selected services into the list" msgstr "選択したサービスを一覧に入れる" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:161 -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:162 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:228 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 msgid "Remove the services from the list" msgstr "一覧からサービスを削除" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:229 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:244 +msgid "Services selected" +msgstr "選択済サービス" + +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:322 msgid "Icon preview" msgstr "アイコンプレビュー" -#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:295 +#: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:388 msgid "The services list is empty" msgstr "サービス一覧が空です" -#: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:116 -msgid "Advance Options" -msgstr "拡張オプション" - #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:207 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:226 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:245 -#: ../../godmode/reporting/reporting_builder.list_items.php:378 -#: ../../godmode/reporting/reporting_builder.list_items.php:397 -#: ../../godmode/reporting/reporting_builder.list_items.php:416 +#: ../../godmode/reporting/reporting_builder.list_items.php:380 +#: ../../godmode/reporting/reporting_builder.list_items.php:399 +#: ../../godmode/reporting/reporting_builder.list_items.php:418 msgid "Ascendent" msgstr "上へ" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:214 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:233 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:252 -#: ../../godmode/reporting/reporting_builder.list_items.php:385 -#: ../../godmode/reporting/reporting_builder.list_items.php:404 -#: ../../godmode/reporting/reporting_builder.list_items.php:420 +#: ../../godmode/reporting/reporting_builder.list_items.php:387 +#: ../../godmode/reporting/reporting_builder.list_items.php:406 +#: ../../godmode/reporting/reporting_builder.list_items.php:422 msgid "Descent" msgstr "下へ" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:259 -#: ../../godmode/reporting/reporting_builder.list_items.php:425 +#: ../../godmode/reporting/reporting_builder.list_items.php:427 msgid "Name or Description" msgstr "名前または説明" @@ -21417,8 +21914,8 @@ msgstr "上へ" msgid "Move to down" msgstr "下へ" -#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 -#: ../../godmode/reporting/reporting_builder.list_items.php:445 +#: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:412 +#: ../../godmode/reporting/reporting_builder.list_items.php:447 #: ../../include/functions_graph.php:1514 msgid "No items." msgstr "アイテムがありません。" @@ -21427,8 +21924,8 @@ msgstr "アイテムがありません。" #: ../../enterprise/include/class/Azure.cloud.php:420 #: ../../enterprise/include/class/VMware.app.php:254 #: ../../enterprise/include/class/DB2.app.php:187 -#: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/Aws.cloud.php:907 +#: ../../enterprise/include/class/SAP.app.php:177 +#: ../../enterprise/include/class/Aws.cloud.php:921 #: ../../enterprise/include/class/MySQL.app.php:196 #: ../../enterprise/include/class/Google.cloud.php:423 #: ../../enterprise/include/class/Oracle.app.php:194 @@ -21438,93 +21935,115 @@ msgstr "アイテムがありません。" msgid "You have no access to edit this task." msgstr "このタスクの編集権限がありません。" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:179 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:181 msgid "Command Mysqldump is failed." msgstr "mysqldump コマンドが失敗しました。" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:225 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:238 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:287 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:306 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:386 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:403 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:228 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:241 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:291 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:310 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:393 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:410 msgid "Failed to create task" msgstr "タスクの作成に失敗しました" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:293 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:297 msgid "No template selected" msgstr "テンプレートが選択されていません" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:412 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:419 msgid "I do not know what you want to do" msgstr "何をしたいのかが不明です" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:429 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:611 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:436 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:622 msgid "You have no access to manage console tasks." msgstr "コンソールタスク管理へのアクセス権がありません。" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:446 -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:517 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:453 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:527 msgid "Create new console task" msgstr "新規コンソールタスクの作成" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:469 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:476 #: ../../enterprise/include/class/Azure.cloud.php:689 #: ../../enterprise/include/class/VMware.app.php:455 -#: ../../enterprise/include/class/Omnishell.class.php:632 -#: ../../enterprise/include/class/Omnishell.class.php:982 -#: ../../enterprise/include/class/Omnishell.class.php:1351 +#: ../../enterprise/include/class/Omnishell.class.php:810 +#: ../../enterprise/include/class/Omnishell.class.php:1737 #: ../../enterprise/include/class/DB2.app.php:354 -#: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Aws.cloud.php:1126 +#: ../../enterprise/include/class/SAP.app.php:394 +#: ../../enterprise/include/class/Aws.cloud.php:1140 #: ../../enterprise/include/class/MySQL.app.php:371 #: ../../enterprise/include/class/Google.cloud.php:686 #: ../../enterprise/include/class/Oracle.app.php:361 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:356 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:285 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:339 -#: ../../godmode/modules/manage_network_components_form.php:370 -#: ../../godmode/reporting/graph_builder.main.php:308 -#: ../../godmode/wizards/HostDevices.class.php:650 -#: ../../godmode/wizards/HostDevices.class.php:749 +#: ../../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/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:183 -#: ../../include/functions_html.php:6242 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:184 +#: ../../include/functions_html.php:6615 #: ../../include/class/CustomNetScan.class.php:314 -#: ../../include/class/CustomNetScan.class.php:422 +#: ../../include/class/CustomNetScan.class.php:425 #: ../../include/class/HTML.class.php:419 #: ../../include/lib/ClusterViewer/ClusterManager.php:752 #: ../../include/lib/ClusterViewer/ClusterWizard.php:349 msgid "Go back" msgstr "戻る" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:489 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:499 msgid "Updating console task" msgstr "コンソールタスクの更新中" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 -#: ../../godmode/menu.php:54 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:524 +#: ../../godmode/menu.php:55 #: ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "タスク一覧" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:519 +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:529 msgid "Update console task" msgstr "コンソールタスクの更新" -#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:650 +#: ../../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/class/ExternalTools.class.php:383 +#: ../../include/lib/Dashboard/Widgets/events_list.php:640 +#: ../../operation/events/events.php:2627 +msgid "Parameters" +msgstr "パラメータ" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:660 +#: ../../enterprise/include/functions_tasklist.php:173 +#: ../../enterprise/include/ajax/cron.ajax.php:67 +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:103 +#: ../../include/functions_cron.php:499 +msgid "Task" +msgstr "タスク" + +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:680 msgid "Next Execution" msgstr "次回実行" +#: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:712 +msgid "Console" +msgstr "コンソール" + #: ../../enterprise/godmode/wizards/Cloud.class.php:182 #: ../../enterprise/godmode/wizards/Applications.class.php:157 #: ../../enterprise/include/class/Azure.cloud.php:190 -#: ../../enterprise/include/class/DeploymentCenter.class.php:590 +#: ../../enterprise/include/class/DeploymentCenter.class.php:598 #: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:85 +#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:88 #: ../../godmode/wizards/HostDevices.class.php:190 -#: ../../godmode/servers/discovery.php:59 +#: ../../godmode/servers/discovery.php:59 ../../godmode/servers/discovery.php:68 msgid "Discovery" msgstr "自動検出" @@ -21556,52 +22075,140 @@ msgstr "" msgid "Manage accounts" msgstr "アカウント管理" -#: ../../enterprise/godmode/wizards/Cloud.class.php:296 +#: ../../enterprise/godmode/wizards/Cloud.class.php:297 msgid "Cloud tool full path" msgstr "クラウドツールのフルパス" -#: ../../enterprise/godmode/wizards/Cloud.class.php:304 +#: ../../enterprise/godmode/wizards/Cloud.class.php:305 msgid "Account" msgstr "アカウント" -#: ../../enterprise/godmode/wizards/Cloud.class.php:365 +#: ../../enterprise/godmode/wizards/Cloud.class.php:375 msgid "Select a set of credentials from the list" msgstr "一覧からから一連の認証情報を選択してください" -#: ../../enterprise/godmode/wizards/Cloud.class.php:378 +#: ../../enterprise/godmode/wizards/Cloud.class.php:388 #, php-format msgid "Path %s is not executable." msgstr "パス %s は実行できません。" -#: ../../enterprise/godmode/wizards/Cloud.class.php:423 +#: ../../enterprise/godmode/wizards/Cloud.class.php:433 msgid "Account disconnected" msgstr "アカウントを切断しました" -#: ../../enterprise/godmode/wizards/Cloud.class.php:425 +#: ../../enterprise/godmode/wizards/Cloud.class.php:435 msgid "Failed disconnecting account" msgstr "アカウントの切断に失敗しました" -#: ../../enterprise/godmode/wizards/Cloud.class.php:503 +#: ../../enterprise/godmode/wizards/Cloud.class.php:513 msgid "Credentials successfully updated" msgstr "認証情報を更新しました" -#: ../../enterprise/godmode/wizards/Cloud.class.php:505 +#: ../../enterprise/godmode/wizards/Cloud.class.php:515 msgid "Failed updating credentials process" msgstr "認証情報の更新処理に失敗しました" +#: ../../enterprise/godmode/servers/new_HA_cluster.php:59 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:72 #: ../../enterprise/godmode/servers/HA_cluster.php:59 #: ../../enterprise/godmode/servers/HA_cluster.php:83 msgid "View nodes" msgstr "ノード参照" +#: ../../enterprise/godmode/servers/new_HA_cluster.php:69 #: ../../enterprise/godmode/servers/HA_cluster.php:80 msgid "Manage Pandora DB HA" msgstr "Pandora DB HA 管理" +#: ../../enterprise/godmode/servers/new_HA_cluster.php:90 #: ../../enterprise/godmode/servers/HA_cluster.php:101 msgid "Manage Database HA" msgstr "データベース HA 管理" +#: ../../enterprise/godmode/servers/new_HA_cluster.php:138 +#: ../../enterprise/godmode/servers/HA_cluster.php:167 +msgid "Node label" +msgstr "ノードラベル" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:139 +msgid "SQL Node status" +msgstr "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 +msgid "SSH" +msgstr "SSH" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:141 +msgid "Replication Status" +msgstr "レプリケーション状態" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:142 +#: ../../enterprise/godmode/servers/HA_cluster.php:173 +msgid "DB Role" +msgstr "DB ロール" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:144 +#: ../../enterprise/include/functions_ipam.php:2063 +msgid "Last Update" +msgstr "最終更新" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:145 +#: ../../enterprise/godmode/servers/HA_cluster.php:178 +msgid "SQL version" +msgstr "SQL バージョン" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:146 +#: ../../enterprise/godmode/servers/HA_cluster.php:179 +msgid "DB version" +msgstr "DB バージョン" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:224 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:382 +#: ../../enterprise/include/class/DatabaseHA.class.php:611 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:168 +msgid "Master" +msgstr "マスタ" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:224 +#: ../../enterprise/include/class/DatabaseHA.class.php:614 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:171 +msgid "Slave" +msgstr "スレーブ" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:266 +#: ../../enterprise/godmode/servers/HA_cluster.php:310 +msgid "Show/ edit node" +msgstr "ノードの表示 / 編集" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:281 +msgid "Pending resync" +msgstr "再同期保留中" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:286 +msgid "Resync in progress" +msgstr "再同期中" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:291 +msgid "Error. Force node resync" +msgstr "ノード強制再同期エラー" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:296 +msgid "Internal error. Force node resync" +msgstr "内部エラー。ノードの強制再同期" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:302 +#: ../../enterprise/godmode/servers/new_HA_cluster.php:352 +#: ../../enterprise/godmode/servers/HA_cluster.php:342 +msgid "Force node resync" +msgstr "ノードの再同期を強制" + +#: ../../enterprise/godmode/servers/new_HA_cluster.php:353 +msgid "Force node resync. Are you sure?" +msgstr "ノード強制再同期をします。よろしいですか?" + #: ../../enterprise/godmode/servers/HA_cluster.php:141 msgid "" "Make the cluster forget failed operations from history of\n" @@ -21618,13 +22225,9 @@ msgstr "" "クリーンアップされます。 ノードが指定されていない場合、すべてのノード\n" "のリソース/ stonith デバイスがクリーンアップされます。" -#: ../../enterprise/godmode/servers/HA_cluster.php:167 -msgid "Node label" -msgstr "ノードラベル" - #: ../../enterprise/godmode/servers/HA_cluster.php:168 #: ../../enterprise/include/functions_reporting_csv.php:2398 -#: ../../operation/tree.php:246 +#: ../../operation/tree.php:264 msgid "Agent status" msgstr "エージェント状態" @@ -21636,16 +22239,6 @@ msgstr "DB レプリケーション" msgid "DB Status" msgstr "DB の状態" -#: ../../enterprise/godmode/servers/HA_cluster.php:172 -#: ../../extensions/quick_shell.php:195 -#: ../../godmode/agentes/module_manager_editor_network.php:522 -msgid "SSH" -msgstr "SSH" - -#: ../../enterprise/godmode/servers/HA_cluster.php:173 -msgid "DB Role" -msgstr "DB ロール" - #: ../../enterprise/godmode/servers/HA_cluster.php:174 msgid "Cluster Role" msgstr "クラスタロール" @@ -21658,47 +22251,31 @@ msgstr "秒のマスタからの遅延" msgid "Virtual IP" msgstr "仮想 IP" -#: ../../enterprise/godmode/servers/HA_cluster.php:178 -msgid "SQL version" -msgstr "SQL バージョン" - -#: ../../enterprise/godmode/servers/HA_cluster.php:179 -msgid "DB version" -msgstr "DB バージョン" - #: ../../enterprise/godmode/servers/HA_cluster.php:181 msgid "Pending action" msgstr "保留中アクション" -#: ../../enterprise/godmode/servers/HA_cluster.php:306 -msgid "Show/ edit node" -msgstr "ノードの表示 / 編集" - -#: ../../enterprise/godmode/servers/HA_cluster.php:322 +#: ../../enterprise/godmode/servers/HA_cluster.php:326 msgid "Put node into standby status" msgstr "ノードをスタンバイ状態にする" -#: ../../enterprise/godmode/servers/HA_cluster.php:337 -msgid "Force node resync" -msgstr "ノードの再同期を強制" - -#: ../../enterprise/godmode/servers/HA_cluster.php:364 +#: ../../enterprise/godmode/servers/HA_cluster.php:371 msgid "Put node into online status" msgstr "ノードをオンライン状態にする" -#: ../../enterprise/godmode/servers/HA_cluster.php:379 +#: ../../enterprise/godmode/servers/HA_cluster.php:386 msgid "Show cluster details" msgstr "クラスタ詳細表示" -#: ../../enterprise/godmode/servers/HA_cluster.php:397 +#: ../../enterprise/godmode/servers/HA_cluster.php:404 msgid "Remove node from this list" msgstr "一覧からノードを削除" -#: ../../enterprise/godmode/servers/HA_cluster.php:433 +#: ../../enterprise/godmode/servers/HA_cluster.php:427 msgid "Register node" msgstr "ノード登録" -#: ../../enterprise/godmode/servers/HA_cluster.php:470 +#: ../../enterprise/godmode/servers/HA_cluster.php:479 msgid "" "Target node will be erased from this list but not removed from cluster. Do you " "want to continue?" @@ -21706,19 +22283,23 @@ msgstr "" "対象ノードはこの一覧から消去されますが、クラスタからは削除されません。 続けます" "か?" -#: ../../enterprise/godmode/servers/manage_export.php:69 +#: ../../enterprise/godmode/servers/manage_export.php:73 +msgid "Exports" +msgstr "エクスポート" + +#: ../../enterprise/godmode/servers/manage_export.php:97 msgid "Error updating export target" msgstr "エクスポートターゲットの更新に失敗しました。" -#: ../../enterprise/godmode/servers/manage_export.php:71 +#: ../../enterprise/godmode/servers/manage_export.php:99 msgid "Successfully updated export target" msgstr "エクスポートターゲットを更新しました。" -#: ../../enterprise/godmode/servers/manage_export.php:82 +#: ../../enterprise/godmode/servers/manage_export.php:110 msgid "Error deleting export target" msgstr "エクスポートターゲットの削除に失敗しました。" -#: ../../enterprise/godmode/servers/manage_export.php:84 +#: ../../enterprise/godmode/servers/manage_export.php:112 msgid "" "Successfully deleted export target. All the linked modules will be " "automatically unattached" @@ -21726,25 +22307,25 @@ msgstr "" "エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは" "自動的に接続解除されます" -#: ../../enterprise/godmode/servers/manage_export.php:107 +#: ../../enterprise/godmode/servers/manage_export.php:135 msgid "" "Can't be created export target: User and password must be filled with FTP mode" msgstr "" "エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力" "する必要があります" -#: ../../enterprise/godmode/servers/manage_export.php:126 +#: ../../enterprise/godmode/servers/manage_export.php:155 msgid "There are no defined export targets" msgstr "定義済のエクスポートターゲットがありません" -#: ../../enterprise/godmode/servers/manage_export.php:138 -#: ../../enterprise/godmode/servers/manage_export_form.php:91 +#: ../../enterprise/godmode/servers/manage_export.php:174 +#: ../../enterprise/godmode/servers/manage_export_form.php:125 msgid "Preffix" msgstr "プレフィックス" -#: ../../enterprise/godmode/servers/manage_export.php:141 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 -#: ../../enterprise/godmode/servers/manage_export_form.php:103 +#: ../../enterprise/godmode/servers/manage_export.php:177 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 +#: ../../enterprise/godmode/servers/manage_export_form.php:149 msgid "Transfer mode" msgstr "転送モード" @@ -21759,14 +22340,14 @@ msgstr "認証情報ボックス" #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:248 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:57 #: ../../enterprise/include/ajax/servers.ajax.php:99 -#: ../../enterprise/include/ajax/servers.ajax.php:157 -#: ../../enterprise/include/ajax/servers.ajax.php:283 -#: ../../enterprise/include/functions_ipam.php:1343 +#: ../../enterprise/include/ajax/servers.ajax.php:170 +#: ../../enterprise/include/ajax/servers.ajax.php:308 +#: ../../enterprise/include/functions_ipam.php:1345 msgid "Subnet" msgstr "サブネット" #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:293 -#: ../../enterprise/godmode/servers/list_satellite.php:69 +#: ../../enterprise/godmode/servers/list_satellite.php:86 #: ../../enterprise/include/ajax/servers.ajax.php:139 msgid "No Data" msgstr "データがありません" @@ -21779,256 +22360,256 @@ msgstr "エラー: サービスの設定ファイルを読めません。" msgid "Error: The conf file of server is not writable." msgstr "エラー: サービスの設定ファイルに書き込めません。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:314 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:317 msgid "Default value: " msgstr "デフォルト値" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:342 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:356 #: ../../include/functions_servers.php:556 -#: ../../include/functions_servers.php:1305 +#: ../../include/functions_servers.php:1221 ../../include/functions_ui.php:7271 msgid "Data server" msgstr "データサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:362 #: ../../include/functions_servers.php:569 -#: ../../include/functions_servers.php:1308 -#: ../../include/class/AgentWizard.class.php:1379 +#: ../../include/functions_servers.php:1224 ../../include/functions_ui.php:7276 +#: ../../include/class/AgentWizard.class.php:1382 msgid "Network server" msgstr "ネットワークサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:368 #: ../../include/functions_servers.php:855 -#: ../../include/functions_servers.php:1353 +#: ../../include/functions_servers.php:1269 msgid "Alert server" msgstr "アラートサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:360 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:374 #: ../../enterprise/include/ajax/ipam.ajax.php:357 -#: ../../enterprise/include/class/Azure.cloud.php:781 +#: ../../enterprise/include/class/Azure.cloud.php:784 #: ../../enterprise/include/class/VMware.app.php:593 -#: ../../enterprise/include/class/DB2.app.php:448 -#: ../../enterprise/include/class/Aws.S3.php:412 -#: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/Aws.cloud.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1212 -#: ../../enterprise/include/class/MySQL.app.php:453 -#: ../../enterprise/include/class/Google.cloud.php:769 -#: ../../enterprise/include/class/Oracle.app.php:455 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:450 -#: ../../enterprise/tools/ipam/ipam_editor.php:163 -#: ../../godmode/wizards/HostDevices.class.php:850 +#: ../../enterprise/include/class/DB2.app.php:456 +#: ../../enterprise/include/class/Aws.S3.php:419 +#: ../../enterprise/include/class/SAP.app.php:471 +#: ../../enterprise/include/class/Aws.cloud.php:510 +#: ../../enterprise/include/class/Aws.cloud.php:1231 +#: ../../enterprise/include/class/MySQL.app.php:461 +#: ../../enterprise/include/class/Google.cloud.php:772 +#: ../../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:1341 -#: ../../include/class/CustomNetScan.class.php:479 +#: ../../include/functions_servers.php:1257 +#: ../../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:366 -#: ../../include/functions_servers.php:621 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 +#: ../../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 msgid "Prediction server" msgstr "予測サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:372 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:386 #: ../../include/functions_servers.php:608 -#: ../../include/functions_servers.php:1320 -#: ../../include/class/AgentWizard.class.php:1360 +#: ../../include/functions_servers.php:1236 ../../include/functions_ui.php:7281 +#: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "プラグインサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:378 -#: ../../include/functions_menu.php:526 ../../operation/menu.php:131 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:392 +#: ../../include/functions_menu.php:609 ../../operation/menu.php:243 msgid "SNMP console" msgstr "SNMPコンソール" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 -#: ../../include/functions_servers.php:1311 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:398 +#: ../../include/functions_servers.php:1227 msgid "SNMP server" msgstr "SNNP サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:390 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 #: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1329 +#: ../../include/functions_servers.php:1245 msgid "Web server" msgstr "ウェブサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:396 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:410 #: ../../include/functions_servers.php:660 -#: ../../include/functions_servers.php:1335 +#: ../../include/functions_servers.php:1251 msgid "Inventory server" msgstr "インベントリサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:402 -#: ../../enterprise/godmode/servers/manage_export_form.php:79 +#: ../../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:1332 +#: ../../include/functions_servers.php:1248 msgid "Export server" msgstr "エクスポートサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:408 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:422 #: ../../include/functions_servers.php:686 -#: ../../include/functions_servers.php:1338 +#: ../../include/functions_servers.php:1254 msgid "Event server" msgstr "イベントサーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:428 msgid "ICMP server" msgstr "ICMP サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:420 -#: ../../include/functions_servers.php:1347 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:434 +#: ../../include/functions_servers.php:1263 ../../include/functions_ui.php:7301 msgid "WUX server" msgstr "WUX サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:426 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 #: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1356 +#: ../../include/functions_servers.php:1272 msgid "NCM server" msgstr "NCM サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:432 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 #: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1326 -#: ../../include/class/AgentWizard.class.php:1370 +#: ../../include/functions_servers.php:1242 ../../include/functions_ui.php:7291 +#: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "WMI サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:438 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 msgid "Syslog server" msgstr "syslog サーバ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:460 msgid "Dataserver threads" msgstr "データサーバスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:466 msgid "Network timeout" msgstr "ネットワークタイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:459 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:473 msgid "Network threads" msgstr "ネットワークスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:465 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:479 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 msgid "Plugin timeout" msgstr "プラグインタイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:472 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:486 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 msgid "Plugin threads" msgstr "プラグインスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:478 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:492 msgid "SNMP console threads" msgstr "SNMP コンソールスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:484 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:955 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:498 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:969 msgid "SNMP threads" msgstr "SNMP スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:490 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:504 msgid "Web threads" msgstr "ウェブスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:510 msgid "Inventory threads" msgstr "インベントリスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:516 msgid "ICMP threads" msgstr "ICMP スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1225 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:522 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1239 msgid "WMI threads" msgstr "WMI スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:528 msgid "Syslog threads" msgstr "syslog スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:534 msgid "Recon threads" msgstr "自動検出スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:528 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:542 msgid "Autocreate group" msgstr "グループの自動作成" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:534 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:548 msgid "Autocreate group force" msgstr "グループの強制自動作成" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 msgid "Autocreate" msgstr "自動作成" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 msgid "Agent configuration files directory" msgstr "エージェント設定ファイルディレクトリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 msgid "Directory where agent configuration files are stored" msgstr "エージェント設定ファイル保存ディレクトリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 msgid "Agent interval" msgstr "エージェント実行間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:586 msgid "Agent threads" msgstr "エージェントスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:573 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 msgid "Number of threads used for sending agent XML data files" msgstr "エージェント XML データ ファイルの送信に使用されるスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:579 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 msgid "ICMP subnets blacklist" msgstr "ICMP サブネットブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:601 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:608 msgid "Separated by a comma. Example: 192.168.0.0/24,8.8.8.8/30" msgstr "カンマ区切り。例: 192.168.0.0/24,8.8.8.8/30" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:586 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 msgid "SNMP subnets blacklist" msgstr "SNMP サブネットブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 msgid "WMI subnets blacklist" msgstr "WMI サブネットブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:614 msgid "Path to braa binary" msgstr "braa バイナリパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:620 msgid "Credential password" msgstr "認証パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:621 msgid "Password used to encrypt credential boxes" msgstr "認証情報ボックスの暗号化に使用するパスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:627 msgid "Remote configuration check interval" msgstr "リモート設定チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:633 msgid "Daemon" msgstr "デーモン" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:620 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 msgid "Run in background if set to 1" msgstr "1 に設定すると、バックグラウンドで実行します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:627 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 msgid "" "Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " "files so that they don't interfere with remote agent configuration" @@ -22036,27 +22617,27 @@ msgstr "" "動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモー" "ト エージェントの設定に干渉しないようにするには、1 に設定します。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:633 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Exec interval" msgstr "実行間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 msgid "Time between exec checks" msgstr "チェック実行間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:640 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 msgid "Exec threads" msgstr "実行スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:655 msgid "Number of threads used for exec modules" msgstr "モジュール実行スレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 msgid "Path to fping binary" msgstr "fping バイナリのパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:662 msgid "" "Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for " "installation in Centos, if you are installing in another distro, install fping " @@ -22067,15 +22648,15 @@ msgstr "" "る場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストー" "ル先のパスを設定します。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 msgid "Path to Pandora Fast SNMP binary" msgstr "Pandora 高速 SNMP バイナリのパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:660 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 msgid "Forced add" msgstr "強制追加" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:675 msgid "" "If set to 1, manually added hosts (via add_host or host_file) will always be " "created, whether they respond to ping or not" @@ -22083,209 +22664,209 @@ msgstr "" "1 に設定すると、(add_host または host_file を介して) 手動で追加されたホストは、" "ping に応答するかどうかにかかわらず、常に作成されます。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:667 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:681 msgid "General GIS exec" msgstr "一般的な GIS 実行" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 msgid "" "Path to general GIS coordinates generator. It should be an executable file" msgstr "" "一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" "エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要がありま" "す)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:680 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Host file" msgstr "Host ファイル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:681 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 msgid "" "File containing hosts to be scanned. The address may be followed by a hostname" msgstr "スキャンするホストを含むファイル。アドレスの後にホスト名を続けます" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:687 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 msgid "Latency block" msgstr "レイテンシーブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:702 msgid "Number of hosts processed in a single call to nmap (latency)" msgstr "nmap の 1 回の呼び出しで処理されるホストの数 (レイテンシー)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:708 msgid "Latency interval" msgstr "レイテンシー間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 msgid "Time between latency checks" msgstr "レイテンシーチェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 msgid "Latency packets" msgstr "レイテンシーパケット" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:702 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:716 msgid "Number of ICMP packets to send per latency request" msgstr "レイテンシーチェックごとに送信する ICMP パケットの数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:708 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 msgid "Latency retries" msgstr "レイテンシーリトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:762 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:723 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:776 msgid "Number of retries for latency modules" msgstr "レイテンシーモジュールのリトライ数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 msgid "Latency threads" msgstr "レイテンシースレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:716 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:730 msgid "Number of threads used for latency checks." msgstr "レイテンシーチェックに使用するスレッド数。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:736 msgid "Latency timeout" msgstr "レイテンシータイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:723 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:737 msgid "Timeout for latency checks in seconds." msgstr "レイテンシーチェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 msgid "Log file path" msgstr "ログファイルパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:749 msgid "Path to nmap binary" msgstr "nmap バイナリパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:740 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 msgid "Ping block" msgstr "Ping ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:741 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 msgid "Number of hosts processed in a single call to nmap (ping)" msgstr "nmap (ping) の 1 回の呼び出しで処理されるホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:747 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 msgid "Ping interval" msgstr "Ping 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:762 msgid "Time between ping checks" msgstr "Ping チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:768 msgid "Ping packets" msgstr "Ping パケット" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:769 msgid "Number of ICMP packets to send per ping request" msgstr "ping チェックごとに送信する ICMP パケット数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:775 msgid "Ping retries" msgstr "Ping リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:768 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:782 msgid "Ping threads" msgstr "Ping スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:769 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 msgid "Number of threads used for ping checks" msgstr "ping チェックに使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:775 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 msgid "Ping timeout" msgstr "Ping タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:776 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 msgid "Timeout for ping checks in seconds" msgstr "ping チェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:782 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 msgid "Plugin interval" msgstr "プラグイン間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 msgid "Time between plug-in checks" msgstr "プラグインチェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:804 msgid "Number of threads used for plug-in checks" msgstr "プラグインチェックに試用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:811 msgid "Timeout for plug-in checks in seconds" msgstr "プラグインチェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 msgid "Proxy traps from" msgstr "次からのトラッププロキシ: " -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:823 msgid "Proxy traps to" msgstr "トラッププロキシ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:824 msgid "Enable the SNMP trap proxy to the specified address" msgstr "指定したアドレスに対する SNMP トラッププロキシの有効化" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:830 msgid "Proxy tentacle to" msgstr "Tentacle プロキシ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:831 msgid "Enable the Tentacle proxy to the specified address:port" msgstr "指定した アドレス:ポート番号 への Tentacle プロキシの有効化" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:823 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:837 msgid "Proxy tentacle from" msgstr "次からの Tentacle プロキシ: " -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:829 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:843 msgid "Recon community" msgstr "自動検出コミュニティ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:830 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 msgid "Comma separated list of SNMP communities to try for SNMP auto-discovery" msgstr "SNMP 自動検出を行う際の SNMP コミュニティのカンマ区切りリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:836 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 msgid "Recon enabled" msgstr "自動検出有効" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:837 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 msgid "Enable (1) or disable (0) host auto-discovery" msgstr "ホスト自動検出の有効化 (1) または無効化 (0)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:843 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 msgid "Recon interval" msgstr "自動検出間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:858 msgid "Time between network scans in seconds" msgstr "秒単位でのネットワークスキャン間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:864 msgid "Recon mode" msgstr "自動検出モード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 msgid "Comma separated list of auto-discovery modules (snmp,icmp,wmi)" msgstr "自動検出モジュール (snmp、icmp、wmi) のカンマ区切りリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:871 msgid "Recon task" msgstr "自動検出タスク" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:858 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 msgid "" "Comma separated list of networks (in slash notation) to scan for host auto-" "discovery (example: 192.168.0.0/24,192.168.1.0/24)" @@ -22293,11 +22874,11 @@ msgstr "" "ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表" "記) (例: 192.168.0.0/24,192.168.1.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:864 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 msgid "Recon timing template" msgstr "自動検出タイミングテンプレート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 msgid "" "Like nmap_timing_template, but applies to Satellite Server and Recon Server " "network scans. 3 by default" @@ -22305,69 +22886,69 @@ msgstr "" "nmap_timing_template と同様ですが、サテライトサーバおよび自動検出サーバのネット" "ワーク スキャンに適用されます。 デフォルトは 3 です" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:871 -#: ../../enterprise/include/class/DeploymentCenter.class.php:811 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:885 +#: ../../enterprise/include/class/DeploymentCenter.class.php:721 msgid "Server IP" msgstr "サーバ IP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" "Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してくださ" "い" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Name of the Satellite server (the hostname is used by default)" msgstr "サテライトサーバの名前 (デフォルトではホスト名が使用されます)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:885 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 msgid "Server path" msgstr "サーバパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:900 msgid "" "Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" "XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用" "されます)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "Server port" msgstr "サーバポート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:907 msgid "Tentacle server port" msgstr "Tentacle サーバポート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:913 msgid "SSH interval" msgstr "SSH 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:900 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:914 msgid "Time between SSH checks" msgstr "SSH チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:920 msgid "SSH threads" msgstr "SSH スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:907 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:921 msgid "Number of threads used for SSH modules" msgstr "SSH モジュールのスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:913 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:927 msgid "SSH timeout" msgstr "SSH タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:914 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 msgid "Timeout for SSH checks in seconds" msgstr "SSH チェックのタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:920 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 msgid "Keepalive" msgstr "キープアライブ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:921 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "" "Interval of the main server loop in seconds. Status updates are sent to " "Pandora every keepalive seconds" @@ -22375,61 +22956,61 @@ msgstr "" "メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに " "Pandora に送信されます" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:927 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 msgid "SNMP blacklist" msgstr "SNMP ブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:942 msgid "SNMP module blacklist" msgstr "SNMP モジュールブラックリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:948 msgid "SNMP block" msgstr "SNMP ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:949 msgid "Number of hosts processed in a single call to braa (SNMPv1)" msgstr "braa (SNMPv1) の 1 回の呼び出しで処理するホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:955 msgid "SNMP interval" msgstr "SNMP 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:942 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:956 msgid "Time between SNMP checks (SNMPv1)" msgstr "SNMP チェック (SNMPv1) 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:948 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:962 msgid "SNMP retries" msgstr "SNMP リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:949 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:963 msgid "Number of retries for SNMP modules (SNMPv1)" msgstr "SNMP モジュール (SNMPv1) のリトライ回数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:956 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 msgid "Number of threads used for SNMP checks (SNMPv1)" msgstr "SNMP チェック (SNMPv1) に使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:962 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 msgid "SNMP timeout" msgstr "SNMP タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:963 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 msgid "Timeout for SNMP checks in seconds (SNMPv1)" msgstr "SNMP チェック (SNMPv1) のタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:969 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 msgid "SNMP verify" msgstr "SNMP 検証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:984 msgid "" "Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" msgstr "" "braa の実行を妨げる SNMPv1 モジュールの検証を有効化 (1) または無効化 (0) します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:991 msgid "" "Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " "version). WARNING: some modules could stop working if you change this setting" @@ -22438,289 +23019,289 @@ msgstr "" "ンを明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しな" "くなる可能性があります" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c block" msgstr "SNMPv2c ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:984 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:998 msgid "Number of hosts processed in a single call to braa (SNMPv2c)" msgstr "braa (SNMPv2c) の 1 回の呼び出しで処理するホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1004 msgid "SNMPv2c interval" msgstr "SNMPv2c 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:991 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1005 msgid "Time between SNMP checks (SNMPv2c)" msgstr "SNMP チェック (SNMPv2c) 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 msgid "SNMPv2c retries" msgstr "SNMPv2c リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:998 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 msgid "Number of retries for SNMP modules (SNMPv2c)" msgstr "SNMP モジュール (SNMPv2c) のリトライ回数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1004 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 msgid "SNMPv2c threads" msgstr "SNMPv2c スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1005 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1019 msgid "Number of threads used for SNMP checks (SNMPv2c)" msgstr "SNMP チェック (SNMPv2c) に使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1025 msgid "SNMPv2c timeout" msgstr "SNMPv2c タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1026 msgid "Timeout for snmp checks in seconds (SNMPv2c)" msgstr "SNMP チェック (SNMPv2c) のタイムアウト (秒単位) " -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1032 msgid "SNMPv2c verify" msgstr "SNMPv2c 検証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1019 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1033 msgid "" "Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" msgstr "" "braa の実行を妨げる SNMPv2 モジュールの検証を有効化 (1) または無効化 (0) します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1025 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1039 msgid "SNMPv3 block" msgstr "SNMPv3 ブロック" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1026 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1040 msgid "Number of hosts processed in a single call to braa (SNMPv3)" msgstr "braa (SNMPv3) の 1 回の呼び出しで処理するホスト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1032 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 msgid "SNMPv3 interval" msgstr "SNMPv3 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1033 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 msgid "Time between SNMP checks (SNMPv3)" msgstr "SNMP チェック (SNMPv3) 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1039 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1053 msgid "SNMPv3 retries" msgstr "SNMPv3 リトライ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1040 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1054 msgid "Number of retries for SNMP modules (SNMPv3)" msgstr "SNMP モジュール (SNMPv3) のリトライ回数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1060 msgid "SNMPv3 threads" msgstr "SNMPv3 スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1061 msgid "Number of threads used for SNMP checks (SNMPv3)" msgstr "SNMP チェック (SNMPv3) に使用するスレッド数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1053 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1067 msgid "SNMPv3 timeout" msgstr "SNMPv3 タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1054 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1068 msgid "Timeout for SNMP checks in seconds (SNMPv3)" msgstr "SNMP チェック (SNMPv3) のタイムアウト (秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1060 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1074 msgid "SNMPv3 verify" msgstr "SNMPv3 検証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1061 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1075 msgid "" "Enable (1) or disable (0) the verification of SNMPv3 modules that break " "pandorafsnmp" msgstr "" "braa の実行を妨げる SNMPv3 モジュールの検証を有効化 (1) または無効化 (0) します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1067 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1081 msgid "SNMPv3 security level" msgstr "SNMPv3 セキュリティレベル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1068 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1082 msgid "Security level used for SNMPv3 messages (noauth, authnopriv or authpriv)" msgstr "" "SNMPv3 メッセージに使用されるセキュリティ レベル (noauth、authnopriv、または " "authpriv)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1074 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 msgid "SNMPv3 security name" msgstr "SNMPv3 セキュリティ名" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1075 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1089 msgid "Security name used for SNMPv3 messages" msgstr "SNMPv3 メッセージに使用されるセキュリティ名" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1081 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1095 msgid "SNMPv3 authentication protocol" msgstr "SNMPv3 認証プロトコル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1082 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1096 msgid "Authentication protocol (md5 or sha) for authenticated SNMPv3 requests" msgstr "SNMPv3 リクエストの認証プロトコル (md5 または sha)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1102 msgid "SNMPv3 authentication password" msgstr "SNMPv3 認証パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1089 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 msgid "Authentication password for authenticated SNMPv3 request" msgstr "SNMPv3 リクエストの認証パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1095 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1109 msgid "SNMPv3 privacy protocol" msgstr "SNMPv3 暗号化プロトコル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1096 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1110 msgid "Privacy protocol (des or aes) for encrypted SNMPv3 requests" msgstr "SNMPv3 リクエストの暗号化プロトコル (des または aes)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1102 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1116 msgid "SNMPv3 privacy password" msgstr "SNMPv3 プライバシーパスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1117 msgid "Privacy password for encrypted SNMPv3 messages" msgstr "SNMPv3 メッセージの暗号化パスワード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1109 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1123 msgid "Startup delay" msgstr "開始遅延" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1110 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 msgid "" "Wait startup_delay seconds before sending XML data files for the first time" msgstr "初回の XML データファイル送信の前に、startup_delay 秒待機します。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1116 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 msgid "TCP interval" msgstr "TCP 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1117 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 msgid "Time between TCP checks" msgstr "TCP チェック間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1123 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1137 msgid "TCP threads" msgstr "TCP スレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 msgid "Threads dedicated to TCP checks" msgstr "TCP チェックのスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1144 msgid "TCP timeout" msgstr "TCP タイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 msgid "Timeout for TCP checks in seconds" msgstr "TCP チェックのタイムアウト(秒単位)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1137 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1151 msgid "Temporal" msgstr "一時的" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1152 msgid "Temporal directory where XML files are created" msgstr "XML ファイルが作成される一時ディレクトリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1144 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1158 msgid "Temporal minimum size" msgstr "一時的な最小サイズ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159 msgid "" "Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "XML バッファを有効にする場合の一時ディレクトリで使用可能な最小バイト数" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1151 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 msgid "Full path to tentacle client" msgstr "tentacle クライアントのフルパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1157 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 msgid "Timeout for the timeout command" msgstr "timeout コマンドのタイムアウト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1158 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 msgid "In seconds" msgstr "秒単位" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1164 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1178 msgid "Server opts" msgstr "サーバオプション" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 msgid "Parameters that are passed to Tentacle" msgstr "Tentacle に渡されるパラメータ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 msgid "tentacle or local" msgstr "Tentacle またはローカル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1178 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 msgid "Verbosity" msgstr "ログの詳細度" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1193 msgid "Verbosity level from 0 (less verbose) to 10 (more verbose)" msgstr "0 (詳細度が低い) から 10 (詳細度が高い) までの詳細度レベル" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 msgid "VLAN cache enabled" msgstr "VLAN キャッシュ有効" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1200 msgid "Enable (1) or disable (0) the VLAN cache for host auto-discovery" msgstr "ホスト自動検出用の VLAN キャッシュを有効 (1) または無効 (0) にします" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1206 msgid "Enable XML buffer" msgstr "XML バッファの有効化" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1198 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1212 msgid "WMI authentication" msgstr "WMI 認証" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1213 msgid "" "Comma separated list of username%password pairs to try for WMI authentication" msgstr "WMI 認証を試行する ユーザ名%パスワード のペアのカンマ区切りリスト" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1205 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1219 msgid "Full path to WMI client binary" msgstr "WMI クライアントバイナリのフルパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1211 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1225 msgid "WMI interval" msgstr "WMI 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1212 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1226 msgid "Time in seconds between WMI checks" msgstr "秒単位の WMI 監視間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1218 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1232 msgid "WMI NTLMv2" msgstr "WMI NTLMv2" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1219 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1233 msgid "Enable to use NTLMv2 authentication for WMI" msgstr "WMI で NTLMv2 認証を使用できるようにする" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1226 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1240 msgid "Threads dedicated to WMI polling" msgstr "WMI ポーリングのスレッド" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1232 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1246 msgid "IPAM task" msgstr "IPAM タスク" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1233 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1247 msgid "" "Comma separated list of networks (in slash notation) to scan for IPAM. Must be " "preceded by the ID of the IPAM task in Pandora FMS (E.g. 1,192.168.0.0/24)" @@ -22728,11 +23309,11 @@ msgstr "" "IPAM スキャンを行うネットワークのカンマ区切りリスト (スラッシュ表記) 最初に " "Pandora FMS の IPAM タスク ID が必要です。(例: 1,192.168.0.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1239 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1253 msgid "Timeout bin" msgstr "timeout バイナリ" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1240 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254 msgid "" "If defined, the timeout program (usually /usr/bin/timeout) will be used to " "call the Tentacle client" @@ -22740,19 +23321,19 @@ msgstr "" "設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle ク" "ライアントの呼び出しに使用されます。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1246 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260 msgid "IPAM interval" msgstr "IPAM 間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1247 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1261 msgid "Time between IPAM scans in seconds" msgstr "秒単位での IPAM スキャン間隔" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1255 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1269 msgid "Secondary mode" msgstr "セカンダリモード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1256 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1270 msgid "" "If secondary_mode is set to on_error, data files are copied to the secondary " "server only if the primary server fails. If set to always, data files are " @@ -22762,31 +23343,36 @@ msgstr "" "た場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定" "すると、データ ファイルは常にセカンダリサーバにコピーされます。" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1262 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1276 msgid "Secondary server IP" msgstr "セカンダリサーバ IP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1268 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1282 msgid "Secondary server path" msgstr "セカンダリサーバパス" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1274 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1288 msgid "Secondary server port" msgstr "セカンダリサーバポート" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1280 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1294 msgid "Secondary transfer mode" msgstr "セカンダリ転送モード" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1286 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1300 msgid "Secondary server opts" msgstr "セカンダリサーバオプション" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1376 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1387 msgid "Delete remote conf server files" msgstr "リモート設定サーバファイル削除" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 +#: ../../godmode/agentes/agent_manager.php:853 +msgid "Delete remote configuration file" +msgstr "リモート設定ファイル削除" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 msgid "" "Delete this conf file implies that server will send back local config to " "console" @@ -22794,23 +23380,23 @@ msgstr "" "この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すこと" "を意味します" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1413 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1432 msgid "General server configuration" msgstr "一般サーバ設定" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1420 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1439 msgid "Secondary server configuration" msgstr "セカンダリサーバ設定" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1426 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1445 msgid "Server features" msgstr "サーバ機能" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1433 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1452 msgid "Optimization settings" msgstr "カスタム設定" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1440 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1459 msgid "Other server settings" msgstr "他のサーバ設定" @@ -22818,22 +23404,34 @@ msgstr "他のサーバ設定" msgid "Add Credential Box" msgstr "認証情報ボックスの追加" -#: ../../enterprise/godmode/servers/manage_export_form.php:125 +#: ../../enterprise/godmode/servers/manage_export_form.php:89 +msgid "Manage Exports" +msgstr "エクスポート管理" + +#: ../../enterprise/godmode/servers/manage_export_form.php:173 msgid "Target directory" msgstr "対象ディレクトリ" -#: ../../enterprise/godmode/servers/manage_export_form.php:129 -#: ../../enterprise/include/class/Azure.cloud.php:823 +#: ../../enterprise/godmode/servers/manage_export_form.php:179 +#: ../../enterprise/include/class/Azure.cloud.php:826 #: ../../enterprise/include/class/VMware.app.php:643 -#: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/Aws.cloud.php:566 +#: ../../enterprise/include/class/Aws.S3.php:590 +#: ../../enterprise/include/class/Aws.cloud.php:554 msgid "Extra options" msgstr "拡張オプション" -#: ../../enterprise/godmode/servers/list_satellite.php:27 +#: ../../enterprise/godmode/servers/list_satellite.php:28 msgid "Satellite Server" 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 +msgid "Satellite" +msgstr "サテライト" + #: ../../enterprise/include/functions_cron.php:178 #: ../../enterprise/include/functions_cron.php:256 #: ../../enterprise/include/functions_cron.php:331 @@ -22843,26 +23441,26 @@ msgstr "生成するレポート" #: ../../enterprise/include/functions_cron.php:186 #: ../../enterprise/include/functions_cron.php:236 -#: ../../enterprise/include/functions_reporting.php:8169 -#: ../../enterprise/operation/reporting/custom_reporting.php:124 +#: ../../enterprise/include/functions_reporting.php:8199 +#: ../../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:8177 -#: ../../enterprise/operation/reporting/custom_reporting.php:132 -#: ../../godmode/setup/news.php:183 ../../godmode/setup/news.php:246 -#: ../../operation/messages/message_list.php:199 -#: ../../operation/messages/message_edit.php:350 +#: ../../enterprise/include/functions_reporting.php:8207 +#: ../../enterprise/operation/reporting/custom_reporting.php:161 +#: ../../godmode/setup/news.php:200 ../../godmode/setup/news.php:349 +#: ../../operation/messages/message_list.php:195 +#: ../../operation/messages/message_edit.php:376 msgid "Subject" msgstr "件名" #: ../../enterprise/include/functions_cron.php:194 #: ../../enterprise/include/functions_cron.php:244 -#: ../../enterprise/include/functions_reporting.php:8195 -#: ../../enterprise/operation/reporting/custom_reporting.php:150 -#: ../../operation/messages/message_edit.php:360 +#: ../../enterprise/include/functions_reporting.php:8225 +#: ../../enterprise/operation/reporting/custom_reporting.php:179 +#: ../../operation/messages/message_edit.php:389 msgid "Message" msgstr "メッセージ" @@ -22882,8 +23480,8 @@ msgid "Regexp agent filter" msgstr "正規表現エージェントフィルタ" #: ../../enterprise/include/functions_cron.php:228 -#: ../../enterprise/include/functions_tasklist.php:367 -#: ../../include/functions_cron.php:704 +#: ../../enterprise/include/functions_tasklist.php:368 +#: ../../include/functions_cron.php:702 msgid "Report per agent" msgstr "エージェントごとのレポート" @@ -22906,8 +23504,8 @@ msgid "Active backups" msgstr "有効なバックアップ" #: ../../enterprise/include/functions_cron.php:299 -#: ../../enterprise/include/functions_tasklist.php:411 -#: ../../include/functions_cron.php:743 +#: ../../enterprise/include/functions_tasklist.php:412 +#: ../../include/functions_cron.php:741 msgid "Custom script" msgstr "カスタムスクリプト" @@ -22946,7 +23544,7 @@ msgid "Not scheduled" msgstr "スケジュールされていません" #: ../../enterprise/include/functions_cron.php:500 -#: ../../include/functions_netflow.php:1849 +#: ../../include/functions_netflow.php:1868 msgid "Hourly" msgstr "毎時" @@ -22954,73 +23552,73 @@ msgstr "毎時" msgid "Yearly" msgstr "年次" -#: ../../enterprise/include/functions_cron.php:800 -#: ../../enterprise/include/functions_cron.php:833 -#: ../../enterprise/include/functions_reporting.php:8189 -#: ../../enterprise/include/functions_reporting.php:8203 -#: ../../enterprise/operation/reporting/custom_reporting.php:144 -#: ../../enterprise/operation/reporting/custom_reporting.php:158 +#: ../../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/operation/reporting/custom_reporting.php:173 +#: ../../enterprise/operation/reporting/custom_reporting.php:187 msgid "This is an optional field" msgstr "これはオプションフィールドです" -#: ../../enterprise/include/functions_cron.php:1531 +#: ../../enterprise/include/functions_cron.php:1555 msgid "Scheduled report had an attempt to send an email without attachments." msgstr "スケジュールされたレポートは、添付ファイルなしでメールを送信しました。" -#: ../../enterprise/include/functions_cron.php:1534 +#: ../../enterprise/include/functions_cron.php:1558 msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "" "スケジュールされたレポートは、いくつかの添付ファイル付きのメールを送信しまし" "た。" -#: ../../enterprise/include/functions_cron.php:1776 -#: ../../include/functions_reporting.php:15644 +#: ../../enterprise/include/functions_cron.php:1801 +#: ../../include/functions_reporting.php:15834 msgid "Greetings" msgstr "挨拶" -#: ../../enterprise/include/functions_cron.php:1778 +#: ../../enterprise/include/functions_cron.php:1803 msgid "Attached to this email there's a CSV file of the logs" msgstr "このメールに添付されているのは、ログの CSV ファイルです。" -#: ../../enterprise/include/functions_cron.php:1780 +#: ../../enterprise/include/functions_cron.php:1805 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15650 +#: ../../include/functions_reporting.php:15840 msgid "Generated at" msgstr "更新日時:" -#: ../../enterprise/include/functions_cron.php:1782 -#: ../../include/functions_reporting.php:15652 +#: ../../enterprise/include/functions_cron.php:1807 +#: ../../include/functions_reporting.php:15842 msgid "Thanks for your time." msgstr "お時間いただきありがとうございます。" -#: ../../enterprise/include/functions_cron.php:1784 -#: ../../include/functions_reporting.php:15654 +#: ../../enterprise/include/functions_cron.php:1809 +#: ../../include/functions_reporting.php:15844 msgid "Best regards, Pandora FMS" msgstr "よろしくお願いします。Pandora FMS" -#: ../../enterprise/include/functions_cron.php:1786 -#: ../../include/functions_reporting.php:15656 +#: ../../enterprise/include/functions_cron.php:1811 +#: ../../include/functions_reporting.php:15846 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "これは、Pandora FMS から自動生成されたメールです。返信しないでください。" -#: ../../enterprise/include/functions_cron.php:1788 +#: ../../enterprise/include/functions_cron.php:1813 msgid "logs csv" msgstr "ログ CSV" -#: ../../enterprise/include/functions_cron.php:2207 +#: ../../enterprise/include/functions_cron.php:2232 #, php-format msgid "Error while executing task: %s, running %s, reason %s" msgstr "%s タスク実行中にエラーです。実行中 %s, 理由 %s" -#: ../../enterprise/include/functions_cron.php:2221 -#: ../../enterprise/include/functions_cron.php:2231 +#: ../../enterprise/include/functions_cron.php:2246 +#: ../../enterprise/include/functions_cron.php:2256 msgid "Error while executing task" msgstr "タスク実行中にエラーです" #: ../../enterprise/include/functions_tasklist.php:56 -#: ../../include/class/ConsoleSupervisor.php:2378 +#: ../../include/class/ConsoleSupervisor.php:2533 msgid "DiscoveryConsoleTasks is not running properly" msgstr "自動検出コンソールタスクが正しく動作していません" @@ -23032,12 +23630,12 @@ msgstr "" "しています" #: ../../enterprise/include/functions_tasklist.php:59 -#: ../../include/class/ConsoleSupervisor.php:2381 +#: ../../include/class/ConsoleSupervisor.php:2536 msgid "Please, add the following line to your crontab file:" msgstr "crontab ファイルに次の行を追加してください:" #: ../../enterprise/include/functions_tasklist.php:74 -#: ../../include/class/ConsoleSupervisor.php:2394 +#: ../../include/class/ConsoleSupervisor.php:2549 msgid "Last execution" msgstr "最後の実行" @@ -23046,32 +23644,38 @@ msgid "Please check process is no locked." msgstr "プロセスがロックされていないことを確認してください。" #: ../../enterprise/include/functions_tasklist.php:163 -#: ../../enterprise/include/functions_tasklist.php:716 +#: ../../enterprise/include/functions_tasklist.php:733 msgid "There are no console task defined yet." msgstr "定義済のコンソールタスクがありません。" +#: ../../enterprise/include/functions_tasklist.php:175 +#: ../../enterprise/include/ajax/cron.ajax.php:142 +#: ../../include/functions_cron.php:501 +msgid "Next execution" +msgstr "次回の実行" + #: ../../enterprise/include/functions_tasklist.php:176 -#: ../../include/functions_cron.php:504 +#: ../../include/functions_cron.php:502 msgid "Last run" msgstr "最後の実行" -#: ../../enterprise/include/functions_tasklist.php:245 -#: ../../enterprise/include/functions_tasklist.php:307 -#: ../../enterprise/include/functions_tasklist.php:393 -#: ../../enterprise/include/functions_tasklist.php:434 -#: ../../enterprise/include/functions_tasklist.php:487 -#: ../../enterprise/include/functions_tasklist.php:526 -#: ../../enterprise/include/functions_tasklist.php:563 -#: ../../include/functions_cron.php:538 ../../include/functions_cron.php:576 -#: ../../include/functions_cron.php:631 ../../include/functions_cron.php:723 -#: ../../include/functions_cron.php:759 ../../include/functions_cron.php:805 -#: ../../include/functions_cron.php:847 ../../include/functions_cron.php:881 +#: ../../enterprise/include/functions_tasklist.php:246 +#: ../../enterprise/include/functions_tasklist.php:308 +#: ../../enterprise/include/functions_tasklist.php:394 +#: ../../enterprise/include/functions_tasklist.php:435 +#: ../../enterprise/include/functions_tasklist.php:488 +#: ../../enterprise/include/functions_tasklist.php:527 +#: ../../enterprise/include/functions_tasklist.php:564 +#: ../../include/functions_cron.php:536 ../../include/functions_cron.php:574 +#: ../../include/functions_cron.php:629 ../../include/functions_cron.php:721 +#: ../../include/functions_cron.php:757 ../../include/functions_cron.php:803 +#: ../../include/functions_cron.php:845 ../../include/functions_cron.php:879 msgid "Force run" msgstr "強制実行" -#: ../../enterprise/include/functions_tasklist.php:281 -#: ../../enterprise/include/functions_tasklist.php:370 -#: ../../enterprise/include/functions_tasklist.php:464 +#: ../../enterprise/include/functions_tasklist.php:282 +#: ../../enterprise/include/functions_tasklist.php:371 +#: ../../enterprise/include/functions_tasklist.php:465 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/include/functions_reporting_csv.php:1234 #: ../../enterprise/include/functions_reporting_csv.php:1265 @@ -23079,65 +23683,65 @@ 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:8115 -#: ../../enterprise/include/functions_reporting.php:8149 -#: ../../enterprise/operation/reporting/custom_reporting.php:109 -#: ../../include/functions_cron.php:614 ../../include/functions_cron.php:707 -#: ../../include/functions_cron.php:831 +#: ../../enterprise/include/functions_reporting.php:8142 +#: ../../enterprise/include/functions_reporting.php:8179 +#: ../../enterprise/operation/reporting/custom_reporting.php:138 +#: ../../include/functions_cron.php:612 ../../include/functions_cron.php:705 +#: ../../include/functions_cron.php:829 msgid "Report type" msgstr "レポートタイプ" -#: ../../enterprise/include/functions_tasklist.php:341 -#: ../../include/functions_cron.php:678 +#: ../../enterprise/include/functions_tasklist.php:342 +#: ../../include/functions_cron.php:676 msgid "regex" msgstr "正規表現" -#: ../../enterprise/include/functions_tasklist.php:461 -#: ../../extensions/resource_exportation.php:433 -#: ../../include/functions_cron.php:787 ../../include/functions_cron.php:828 +#: ../../enterprise/include/functions_tasklist.php:462 +#: ../../extensions/resource_exportation.php:447 +#: ../../include/functions_cron.php:785 ../../include/functions_cron.php:826 #: ../../include/lib/Dashboard/Widgets/reports.php:369 #: ../../include/lib/Dashboard/Widgets/reports.php:414 msgid "Report" msgstr "レポート" -#: ../../enterprise/include/functions_tasklist.php:463 -#: ../../enterprise/include/class/ManageBackups.class.php:166 -#: ../../include/functions_cron.php:789 ../../include/functions_cron.php:830 -#: ../../include/class/Diagnostics.class.php:2183 +#: ../../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 msgid "Path" msgstr "パス" -#: ../../enterprise/include/functions_tasklist.php:597 +#: ../../enterprise/include/functions_tasklist.php:598 msgid "Task disabled" msgstr "無効化タスク" -#: ../../enterprise/include/functions_tasklist.php:600 -#: ../../enterprise/include/functions_ipam.php:2090 -#: ../../enterprise/include/functions_ipam.php:2091 -#: ../../enterprise/include/functions_ipam.php:2092 -#: ../../enterprise/tools/ipam/ipam_list.php:701 -#: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 -#: ../../godmode/snmpconsole/snmp_alert.php:1330 -#: ../../include/functions_cron.php:909 ../../include/functions_treeview.php:660 -#: ../../include/functions_ui.php:549 -#: ../../operation/agentes/estado_generalagente.php:367 +#: ../../enterprise/include/functions_tasklist.php:601 +#: ../../enterprise/include/functions_ipam.php:2151 +#: ../../enterprise/include/functions_ipam.php:2152 +#: ../../enterprise/include/functions_ipam.php:2153 +#: ../../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 #: ../../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" msgstr "未実行" -#: ../../enterprise/include/functions_tasklist.php:699 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1026 -#: ../../include/functions_cron.php:984 +#: ../../enterprise/include/functions_tasklist.php:716 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1046 +#: ../../include/functions_cron.php:979 msgid "Disable task" msgstr "タスク無効化" -#: ../../enterprise/include/functions_tasklist.php:699 -#: ../../include/functions_cron.php:984 +#: ../../enterprise/include/functions_tasklist.php:716 +#: ../../include/functions_cron.php:979 msgid "Enable task" msgstr "タスク有効化" -#: ../../enterprise/include/functions_tasklist.php:721 +#: ../../enterprise/include/functions_tasklist.php:738 msgid "Console Tasks" msgstr "コンソールタスク" @@ -23150,17 +23754,17 @@ msgid "avg" msgstr "平均" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:80 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4492 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4597 msgid "max" msgstr "最大" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:81 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4493 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4598 msgid "min" msgstr "最小" #: ../../enterprise/include/ajax/top_n_widget.ajax.php:82 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4494 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4599 msgid "sum" msgstr "合計" @@ -23210,202 +23814,226 @@ msgid "" msgstr "上記で指定した範囲の開始アドレスから作成/追加するネットワークの最大数" #: ../../enterprise/include/ajax/ipam.ajax.php:385 -#: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1997 -#: ../../enterprise/tools/ipam/ipam_list.php:97 -#: ../../enterprise/tools/ipam/ipam_list.php:612 -#: ../../enterprise/tools/ipam/ipam_editor.php:191 -#: ../../godmode/events/event_responses.editor.php:123 +#: ../../enterprise/include/functions_ipam.php:1371 +#: ../../enterprise/include/functions_ipam.php:2058 +#: ../../enterprise/tools/ipam/ipam_list.php:74 +#: ../../enterprise/tools/ipam/ipam_list.php:695 +#: ../../enterprise/tools/ipam/ipam_editor.php:227 +#: ../../godmode/events/event_responses.editor.php:160 msgid "Location" msgstr "場所" #: ../../enterprise/include/ajax/ipam.ajax.php:386 -#: ../../enterprise/tools/ipam/ipam_editor.php:192 +#: ../../enterprise/tools/ipam/ipam_editor.php:228 msgid "For example: Central Data Center" msgstr "例: 中央データセンター" #: ../../enterprise/include/ajax/ipam.ajax.php:418 #: ../../enterprise/tools/ipam/ipam.php:171 #: ../../enterprise/tools/ipam/ipam.php:411 -#: ../../enterprise/tools/ipam/ipam_editor.php:224 +#: ../../enterprise/tools/ipam/ipam_editor.php:259 msgid "Sites" msgstr "サイト" #: ../../enterprise/include/ajax/ipam.ajax.php:419 -#: ../../enterprise/tools/ipam/ipam_editor.php:225 +#: ../../enterprise/tools/ipam/ipam_editor.php:260 msgid "For example: Pandora" msgstr "例: Pandora" #: ../../enterprise/include/ajax/ipam.ajax.php:437 -#: ../../enterprise/tools/ipam/ipam_list.php:633 -#: ../../enterprise/tools/ipam/ipam_editor.php:243 +#: ../../enterprise/tools/ipam/ipam_list.php:716 +#: ../../enterprise/tools/ipam/ipam_editor.php:291 msgid "Vrf" msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:438 -#: ../../enterprise/tools/ipam/ipam_editor.php:244 +#: ../../enterprise/tools/ipam/ipam_editor.php:292 msgid "Virtual Routing and Forwarding" msgstr "仮想ルーティングとフォワーディング" #: ../../enterprise/include/ajax/ipam.ajax.php:456 -#: ../../enterprise/tools/ipam/ipam_editor.php:262 +#: ../../enterprise/tools/ipam/ipam_editor.php:304 msgid "Include statistical monitors" msgstr "統計監視を含める" #: ../../enterprise/include/ajax/ipam.ajax.php:471 -#: ../../enterprise/tools/ipam/ipam_editor.php:277 +#: ../../enterprise/tools/ipam/ipam_editor.php:317 msgid "Lightweight mode" msgstr "軽量モード" #: ../../enterprise/include/ajax/ipam.ajax.php:472 -#: ../../enterprise/tools/ipam/ipam_editor.php:278 +#: ../../enterprise/tools/ipam/ipam_editor.php:318 msgid "Use quicker network scan" msgstr "より高速なネットワークスキャンを使用" #: ../../enterprise/include/ajax/ipam.ajax.php:488 -#: ../../enterprise/tools/ipam/ipam_editor.php:294 +#: ../../enterprise/tools/ipam/ipam_editor.php:336 msgid "Target group for monitoring agent" msgstr "監視エージェントの対象グループ" #: ../../enterprise/include/ajax/ipam.ajax.php:509 -#: ../../enterprise/tools/ipam/ipam_editor.php:315 +#: ../../enterprise/tools/ipam/ipam_editor.php:361 msgid "Scan interval" msgstr "スキャン間隔" #: ../../enterprise/include/ajax/ipam.ajax.php:510 -#: ../../enterprise/tools/ipam/ipam_editor.php:316 +#: ../../enterprise/tools/ipam/ipam_editor.php:362 msgid "0 for manually scan" msgstr "0 を設定すると手動スキャンです" #: ../../enterprise/include/ajax/ipam.ajax.php:524 -#: ../../enterprise/tools/ipam/ipam_editor.php:330 +#: ../../enterprise/tools/ipam/ipam_editor.php:380 msgid "The list of users can manage the networks in the IPAM." msgstr "IPAM でネットワークを管理できるユーザ一覧。" #: ../../enterprise/include/ajax/ipam.ajax.php:525 -#: ../../enterprise/tools/ipam/ipam_editor.php:331 +#: ../../enterprise/tools/ipam/ipam_editor.php:381 msgid " Only the admin users can manage networks and edit the networks" msgstr "admin ユーザのみネットワーク管理とネットワークの編集ができます。" #: ../../enterprise/include/ajax/ipam.ajax.php:526 -#: ../../enterprise/tools/ipam/ipam_editor.php:332 +#: ../../enterprise/tools/ipam/ipam_editor.php:384 msgid "Operator users" msgstr "オペレータユーザ" #: ../../enterprise/include/ajax/ipam.ajax.php:532 -#: ../../enterprise/tools/ipam/ipam_editor.php:338 +#: ../../enterprise/tools/ipam/ipam_editor.php:390 msgid "All users" msgstr "全ユーザ" #: ../../enterprise/include/ajax/ipam.ajax.php:613 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:536 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:655 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:82 msgid "Supernet" msgstr "スーパーネット" #: ../../enterprise/include/ajax/ipam.ajax.php:614 -#: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1994 -#: ../../enterprise/tools/ipam/ipam_list.php:594 +#: ../../enterprise/include/ajax/ipam.ajax.php:656 +#: ../../enterprise/include/functions_ipam.php:2055 +#: ../../enterprise/tools/ipam/ipam_list.php:677 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 -#: ../../enterprise/tools/ipam/ipam_calculator.php:185 +#: ../../enterprise/tools/ipam/ipam_calculator.php:230 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:58 #: ../../enterprise/tools/ipam/ipam_supernet_network.php:83 -#: ../../enterprise/tools/ipam/ipam_editor.php:122 -#: ../../godmode/wizards/HostDevices.class.php:918 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../include/functions_ui.php:870 ../../operation/menu.php:84 +#: ../../enterprise/tools/ipam/ipam_editor.php:127 +#: ../../godmode/wizards/HostDevices.class.php:917 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:602 +#: ../../include/functions_ui.php:973 +#: ../../operation/network/network_usage_map.php:52 +#: ../../operation/netflow/nf_live_view.php:143 +#: ../../operation/netflow/netflow_explorer.php:59 ../../operation/menu.php:210 msgid "Network" msgstr "ネットワーク" -#: ../../enterprise/include/ajax/ipam.ajax.php:622 +#: ../../enterprise/include/ajax/ipam.ajax.php:625 msgid "Go to supernet edition" msgstr "スーパーネット編集へ行く" -#: ../../enterprise/include/ajax/ipam.ajax.php:664 +#: ../../enterprise/include/ajax/ipam.ajax.php:680 msgid "Go to network edition" msgstr "ネットワーク編集へ行く" -#: ../../enterprise/include/ajax/ipam.ajax.php:691 -#: ../../enterprise/include/ajax/ipam.ajax.php:748 -#: ../../enterprise/include/ajax/ipam.ajax.php:779 -#: ../../enterprise/include/ajax/ipam.ajax.php:826 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1176 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1306 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:702 +#: ../../enterprise/include/ajax/ipam.ajax.php:717 +#: ../../enterprise/include/ajax/ipam.ajax.php:774 +#: ../../enterprise/include/ajax/ipam.ajax.php:805 +#: ../../enterprise/include/ajax/ipam.ajax.php:852 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1312 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1443 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:820 msgid "No assigned networks" msgstr "割当ネットワークがありません" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:94 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:253 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:97 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:293 msgid "Group name" msgstr "グループ名" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:118 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:284 msgid "OS name" msgstr "OS 名" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:136 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 msgid "IP Network range" msgstr "IP ネットワーク範囲" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:141 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:156 msgid "Script" msgstr "スクリプト" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:143 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:160 msgid "Arguments" msgstr "引数" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:149 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:167 msgid "Unknown option" msgstr "不明なオプションです" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 -#: ../../include/functions_treeview.php:776 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:296 +#: ../../godmode/agentes/configure_field.php:79 +#: ../../include/functions_treeview.php:902 #: ../../operation/agentes/agent_fields.php:44 -#: ../../operation/agentes/estado_generalagente.php:544 +#: ../../operation/agentes/estado_generalagente.php:623 msgid "Custom field" msgstr "カスタムフィールド" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:257 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:297 msgid "IP range" msgstr "IP 範囲" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:258 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:298 msgid "Script output (> 0)" msgstr "スクリプト出力 (> 0)" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:435 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:542 -#: ../../godmode/snmpconsole/snmp_alert.php:1110 -#: ../../godmode/snmpconsole/snmp_alert.php:1257 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:490 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:603 +#: ../../godmode/snmpconsole/snmp_alert.php:1633 +#: ../../godmode/snmpconsole/snmp_alert.php:1894 msgid "Alert action" msgstr "アクション" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 -#: ../../godmode/modules/manage_inventory_modules_form.php:148 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:510 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:623 +#: ../../godmode/modules/manage_inventory_modules_form.php:210 msgid "Script path" msgstr "スクリプトパス" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:566 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:514 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:627 msgid "Script argument" msgstr "スクリプト引数" -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:471 -#: ../../godmode/alerts/alert_list.list.php:702 -#: ../../godmode/alerts/alert_list.list.php:1181 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 +#: ../../godmode/alerts/alert_list.list.php:774 +#: ../../godmode/alerts/alert_list.list.php:1307 msgid "Update action" msgstr "アクションの更新" +#: ../../enterprise/include/ajax/policy.ajax.php:156 +msgid "Modules in policy agents" +msgstr "ポリシーエージェント内のモジュール" + +#: ../../enterprise/include/ajax/policy.ajax.php:195 +msgid "Alert Template" +msgstr "アラートテンプレート" + +#: ../../enterprise/include/ajax/policy.ajax.php:277 +msgid "Policy module" +msgstr "ポリシーモジュール" + +#: ../../enterprise/include/ajax/cron.ajax.php:125 +msgid "Date format in Pandora is year/month/day" +msgstr "Pandora での日付フォーマットは、年/月/日 です" + +#: ../../enterprise/include/ajax/cron.ajax.php:136 +msgid "Time format in Pandora is hours(24h):minutes:seconds" +msgstr "Pandora での時間フォーマットは、時(24時間表記):分:秒 です" + #: ../../enterprise/include/ajax/url_route_analyzer.ajax.php:33 msgid "Global time: " msgstr "全体時間: " -#: ../../enterprise/include/ajax/log_viewer.ajax.php:55 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:63 #: ../../enterprise/include/functions_reporting_csv.php:428 #: ../../enterprise/include/functions_reporting_csv.php:450 #: ../../enterprise/include/functions_reporting_csv.php:481 @@ -23449,50 +24077,89 @@ msgstr "全体時間: " #: ../../enterprise/include/functions_reporting_csv.php:2711 #: ../../enterprise/include/functions_reporting_csv.php:2760 #: ../../enterprise/include/functions_reporting_csv.php:2837 -#: ../../godmode/setup/setup_integria.php:333 -#: ../../godmode/setup/setup_integria.php:454 ../../include/graphs/fgraph.php:879 +#: ../../godmode/setup/setup_integria.php:396 +#: ../../godmode/setup/setup_integria.php:529 ../../include/graphs/fgraph.php:879 +#: ../../include/functions_ui.php:7855 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 -#: ../../include/lib/Dashboard/Widget.php:557 -#: ../../operation/agentes/estado_generalagente.php:665 +#: ../../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 #: ../../operation/incidents/integriaims_export_csv.php:81 -#: ../../operation/incidents/configure_integriaims_incident.php:213 -#: ../../operation/incidents/list_integriaims_incidents.php:516 +#: ../../operation/incidents/configure_integriaims_incident.php:228 +#: ../../operation/incidents/list_integriaims_incidents.php:587 msgid "Title" msgstr "タイトル" -#: ../../enterprise/include/ajax/log_viewer.ajax.php:65 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:73 msgid "Capture regexp" msgstr "正規表現キャプチャ" -#: ../../enterprise/include/ajax/log_viewer.ajax.php:85 -#: ../../enterprise/include/functions_reporting_pdf.php:546 -#: ../../enterprise/include/functions_reporting_pdf.php:602 -#: ../../include/functions_reporting_html.php:3759 -#: ../../include/functions_reporting_html.php:3827 +#: ../../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 msgid "Average" msgstr "平均" -#: ../../enterprise/include/ajax/log_viewer.ajax.php:175 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:183 msgid "Empty ip or port" msgstr "IP またはポートが空です" -#: ../../enterprise/include/ajax/log_viewer.ajax.php:192 +#: ../../enterprise/include/ajax/log_viewer.ajax.php:200 msgid "Curl Error: " msgstr "Curl エラー: " -#: ../../enterprise/include/process_reset_pass.php:53 -#: ../../enterprise/include/reset_pass.php:48 ../../general/login_page.php:136 -#: ../../general/login_page.php:139 ../../general/login_page.php:155 -msgid "Docs" -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 +msgid "New filter" +msgstr "新規フィルタ" -#: ../../enterprise/include/process_reset_pass.php:159 -#: ../../enterprise/include/process_reset_pass.php:162 -#: ../../enterprise/include/reset_pass.php:146 -#: ../../enterprise/include/reset_pass.php:149 -#: ../../include/functions_config.php:2486 -msgid "ONE TOOL TO MONITOR THEM ALL" -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/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 +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 +#: ../../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 +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 +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 +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 +msgid "Filter name cannot be left blank" +msgstr "フィルタ名は空にできません" + +#: ../../enterprise/include/ajax/log_viewer.ajax.php:525 +#: ../../include/ajax/audit_log.php:411 +msgid "Filter name already on use" +msgstr "フィルタ名はすでに使用されています" #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 @@ -23509,7 +24176,7 @@ msgid "Force log out" msgstr "強制ログアウト" #: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:358 -#: ../../include/auth/mysql.php:388 ../../include/auth/mysql.php:423 +#: ../../include/auth/mysql.php:388 ../../include/auth/mysql.php:427 msgid "Please, login into metaconsole first" msgstr "先にメタコンソールへログインしてください" @@ -23540,172 +24207,125 @@ msgstr "コレクションの zip ファイル作成に失敗しました" msgid "File of collection is bigger than the limit (%s bytes)" msgstr "コレクションのファイルが制限より大きいです (%s バイト)" -#: ../../enterprise/include/functions_ui.php:79 -#: ../../include/functions_ui.php:6895 -msgid "Select inventory module" -msgstr "インベントリモジュールの選択" - -#: ../../enterprise/include/functions_ui.php:92 -#: ../../godmode/agentes/inventory_manager.php:223 -#: ../../include/functions_ui.php:6908 -msgid "Target" -msgstr "対象" - -#: ../../enterprise/include/functions_ui.php:96 -#: ../../include/functions_ui.php:6912 -msgid "Use custom fields" -msgstr "カスタムフィールドを利用" - -#: ../../enterprise/include/functions_ui.php:179 -#: ../../include/functions_ui.php:6995 -msgid "Field name" -msgstr "フィールド名" - -#: ../../enterprise/include/functions_ui.php:179 -#: ../../include/functions_ui.php:6995 -msgid "It's a password" -msgstr "それはパスワードです" - -#: ../../enterprise/include/functions_ui.php:179 -#: ../../include/functions_ui.php:6995 -msgid "Add field" -msgstr "フィールド追加" - -#: ../../enterprise/include/functions_reporting_pdf.php:72 -#: ../../include/class/Diagnostics.class.php:2138 -#: ../../include/class/Diagnostics.class.php:2256 +#: ../../enterprise/include/functions_reporting_pdf.php:75 +#: ../../include/class/Diagnostics.class.php:2158 +#: ../../include/class/Diagnostics.class.php:2276 #, php-format msgid "Automated %s report for user defined report" msgstr "ユーザ定義レポートのための自動 %s レポート" -#: ../../enterprise/include/functions_reporting_pdf.php:530 -#: ../../enterprise/include/functions_reporting_pdf.php:562 -#: ../../enterprise/include/functions_reporting_pdf.php:588 -#: ../../enterprise/include/functions_reporting_pdf.php:613 -#: ../../enterprise/include/functions_reporting_pdf.php:616 -#: ../../enterprise/include/functions_reporting_pdf.php:623 +#: ../../enterprise/include/functions_reporting_pdf.php:532 +#: ../../enterprise/include/functions_reporting_pdf.php:564 +#: ../../enterprise/include/functions_reporting_pdf.php:590 +#: ../../enterprise/include/functions_reporting_pdf.php:615 +#: ../../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:3742 -#: ../../include/functions_reporting_html.php:3771 -#: ../../include/functions_reporting_html.php:3812 -#: ../../include/functions_reporting_html.php:3835 -#: ../../include/functions_reporting_html.php:3838 -#: ../../include/functions_reporting_html.php:3845 -#: ../../include/functions_reporting.php:7230 -#: ../../include/functions_reporting.php:7253 -#: ../../include/functions_reporting.php:7268 -#: ../../include/functions_reporting.php:7284 -#: ../../include/functions_reporting.php:7299 +#: ../../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 msgid "Maximun" msgstr "最大" -#: ../../enterprise/include/functions_reporting_pdf.php:538 -#: ../../enterprise/include/functions_reporting_pdf.php:595 -#: ../../include/functions_reporting_html.php:3750 -#: ../../include/functions_reporting_html.php:3819 +#: ../../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 msgid "Minimun" msgstr "最低" -#: ../../enterprise/include/functions_reporting_pdf.php:587 -#: ../../enterprise/include/functions_reporting_pdf.php:594 -#: ../../enterprise/include/functions_reporting_pdf.php:601 -#: ../../enterprise/include/functions_reporting_pdf.php:615 -#: ../../enterprise/include/functions_reporting_pdf.php:620 +#: ../../enterprise/include/functions_reporting_pdf.php:589 +#: ../../enterprise/include/functions_reporting_pdf.php:596 +#: ../../enterprise/include/functions_reporting_pdf.php:603 +#: ../../enterprise/include/functions_reporting_pdf.php:617 +#: ../../enterprise/include/functions_reporting_pdf.php:622 #: ../../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:3811 -#: ../../include/functions_reporting_html.php:3818 -#: ../../include/functions_reporting_html.php:3826 -#: ../../include/functions_reporting_html.php:3837 -#: ../../include/functions_reporting_html.php:3842 -#: ../../include/functions_reporting.php:7248 +#: ../../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 msgid "Lapse" msgstr "経過" #: ../../enterprise/include/functions_reporting_pdf.php:972 -#: ../../include/functions_reporting_html.php:2167 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:520 +#: ../../include/functions_reporting_html.php:2256 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:517 #, php-format msgid "%s in %s : NORMAL" msgstr "%s (%s): 正常" #: ../../enterprise/include/functions_reporting_pdf.php:989 -#: ../../include/functions_reporting_html.php:2079 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:536 +#: ../../include/functions_reporting_html.php:2168 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:533 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s (%s): 障害" #: ../../enterprise/include/functions_reporting_pdf.php:1006 -#: ../../include/functions_reporting_html.php:2096 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:552 +#: ../../include/functions_reporting_html.php:2185 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:549 #, php-format msgid "%s in %s : WARNING" msgstr "%s (%s): 警告" #: ../../enterprise/include/functions_reporting_pdf.php:1023 -#: ../../include/functions_reporting_html.php:2113 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:568 +#: ../../include/functions_reporting_html.php:2202 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:565 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s (%s): 不明" #: ../../enterprise/include/functions_reporting_pdf.php:1040 -#: ../../include/functions_reporting_html.php:2149 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:584 +#: ../../include/functions_reporting_html.php:2238 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:581 #, php-format msgid "%s in %s : Not initialize" msgstr "%s (%s): 未初期化" #: ../../enterprise/include/functions_reporting_pdf.php:1057 -#: ../../include/functions_reporting_html.php:2132 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:601 +#: ../../include/functions_reporting_html.php:2221 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:598 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s (%s): アラート発生" -#: ../../enterprise/include/functions_reporting_pdf.php:1811 -#: ../../enterprise/include/functions_reporting_csv.php:2270 -#: ../../enterprise/include/functions_reporting_csv.php:2274 -#: ../../include/functions_reporting_html.php:139 -msgid "Generated" -msgstr "生成日" - -#: ../../enterprise/include/functions_reporting_pdf.php:1815 -#: ../../include/functions_reporting_html.php:142 -msgid "Report date" -msgstr "レポート日" - -#: ../../enterprise/include/functions_reporting_pdf.php:1834 -#: ../../include/functions_reporting_html.php:151 -#: ../../operation/reporting/reporting_viewer.php:307 -msgid "Items period before" -msgstr "次の日時以前" - -#: ../../enterprise/include/functions_reporting_pdf.php:1864 +#: ../../enterprise/include/functions_reporting_pdf.php:1832 +#: ../../enterprise/include/functions_reporting_pdf.php:1837 msgid "Contents" msgstr "目次" -#: ../../enterprise/include/functions_reporting_pdf.php:2010 +#: ../../enterprise/include/functions_reporting_pdf.php:1985 #: ../../enterprise/include/functions_reporting_csv.php:723 #: ../../enterprise/include/functions_reporting_csv.php:1002 #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../godmode/agentes/planned_downtime.list.php:339 -#: ../../include/functions_reporting_html.php:3930 +#: ../../godmode/agentes/planned_downtime.list.php:331 +#: ../../godmode/agentes/planned_downtime.editor.php:997 +#: ../../include/functions_reporting_html.php:4014 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 -#: ../../include/rest-api/index.php:374 +#: ../../include/rest-api/index.php:377 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 +#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:523 #: ../../operation/agentes/gis_view.php:221 msgid "To" msgstr "終了" -#: ../../enterprise/include/functions_reporting_pdf.php:2014 +#: ../../enterprise/include/functions_reporting_pdf.php:1989 #: ../../include/functions_reporting_html.php:91 -#: ../../include/functions_reporting_html.php:5729 -#: ../../include/functions_treeview.php:319 -#: ../../operation/agentes/interface_view.functions.php:539 +#: ../../include/functions_reporting_html.php:5816 +#: ../../include/functions_treeview.php:303 +#: ../../operation/agentes/interface_view.functions.php:560 msgid "Last data" msgstr "最新データ" @@ -23738,7 +24358,7 @@ msgid "There was an error retrieving the visual map information" msgstr "ビジュアルマップ情報の取得エラー" #: ../../enterprise/include/functions_visual_map.php:683 -#: ../../enterprise/operation/services/services.list.php:104 +#: ../../enterprise/operation/services/services.list.php:98 msgid "No services selected" msgstr "サービスが選択されていません" @@ -23841,30 +24461,30 @@ msgstr "サービス要素の取得に失敗しました: " msgid "Log collector" msgstr "ログ収集" -#: ../../enterprise/include/functions_setup.php:151 +#: ../../enterprise/include/functions_setup.php:150 msgid "Metaconsole link status" msgstr "メタコンソールリンク状態" -#: ../../enterprise/include/functions_setup.php:183 +#: ../../enterprise/include/functions_setup.php:188 msgid "DB connection" msgstr "DB 接続" -#: ../../enterprise/include/functions_setup.php:205 +#: ../../enterprise/include/functions_setup.php:209 msgid "This console is joining a metaconsole." msgstr "このコンソールはメタコンソールに参加しています。" -#: ../../enterprise/include/functions_setup.php:212 +#: ../../enterprise/include/functions_setup.php:219 msgid "There is no metaconsole defined." msgstr "メタコンソールの定義がありません。" #: ../../enterprise/include/rest-api/models/VisualConsole/Items/Service.php:236 -#: ../../godmode/reporting/visual_console_builder.elements.php:105 -#: ../../godmode/reporting/visual_console_builder.wizard.php:151 +#: ../../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 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:344 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:524 -#: ../../include/functions_filemanager.php:641 +#: ../../include/functions_filemanager.php:681 msgid "Image" msgstr "画像" @@ -23881,10 +24501,10 @@ msgid "Event report module" msgstr "イベントレポートモジュール" #: ../../enterprise/include/functions_reporting_csv.php:480 -#: ../../enterprise/include/functions_reporting.php:1229 -#: ../../include/functions_reports.php:830 -#: ../../include/functions_reporting.php:8707 -#: ../../include/functions_reporting.php:9099 +#: ../../enterprise/include/functions_reporting.php:1221 +#: ../../include/functions_reports.php:842 +#: ../../include/functions_reporting.php:8898 +#: ../../include/functions_reporting.php:9293 msgid "Availability" msgstr "可用性" @@ -23894,7 +24514,7 @@ msgid "% OK" msgstr "正常%" #: ../../enterprise/include/functions_reporting_csv.php:537 -#: ../../include/functions_reporting_html.php:618 +#: ../../include/functions_reporting_html.php:621 msgid "Checks Failed" msgstr "障害確認数" @@ -23903,7 +24523,7 @@ msgid "Maximum value" msgstr "最大値" #: ../../enterprise/include/functions_reporting_csv.php:673 -#: ../../include/functions_reporting_html.php:4477 +#: ../../include/functions_reporting_html.php:4562 msgid "Agent min value" msgstr "エージェント最小値" @@ -23916,15 +24536,13 @@ msgid "Average value" msgstr "平均値" #: ../../enterprise/include/functions_reporting_csv.php:703 -#: ../../include/functions_reports.php:879 +#: ../../include/functions_reports.php:891 msgid "Agents inventory" msgstr "エージェントインベントリ" #: ../../enterprise/include/functions_reporting_csv.php:725 -#: ../../enterprise/operation/agentes/tag_view.php:601 -#: ../../include/functions_treeview.php:668 -#: ../../operation/agentes/estado_agente.php:745 -#: ../../operation/agentes/estado_generalagente.php:362 +#: ../../enterprise/operation/agentes/tag_view.php:695 +#: ../../operation/agentes/estado_generalagente.php:464 #: ../../operation/gis_maps/ajax.php:360 ../../operation/gis_maps/ajax.php:477 msgid "Remote" msgstr "リモート" @@ -23938,7 +24556,7 @@ msgid "Custom Field" msgstr "カスタムフィールド" #: ../../enterprise/include/functions_reporting_csv.php:749 -#: ../../include/functions_reports.php:886 +#: ../../include/functions_reports.php:898 msgid "Modules inventory" msgstr "モジュールインベントリ" @@ -23947,22 +24565,22 @@ msgid "Agent groups" msgstr "エージェントグループ" #: ../../enterprise/include/functions_reporting_csv.php:763 -#: ../../include/functions_reporting_html.php:1720 +#: ../../include/functions_reporting_html.php:1780 msgid "Agent secondary groups" msgstr "エージェントセカンダリグループ" #: ../../enterprise/include/functions_reporting_csv.php:790 -#: ../../include/functions_reporting.php:2925 +#: ../../include/functions_reporting.php:3029 msgid "Inventory Changes" msgstr "インベントリ変更" #: ../../enterprise/include/functions_reporting_csv.php:818 -#: ../../include/functions_reports.php:725 +#: ../../include/functions_reports.php:737 msgid "Prediction date" msgstr "予測日" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6696 +#: ../../include/functions_reporting.php:6800 msgid "Projection Graph" msgstr "予想グラフ" @@ -23975,27 +24593,27 @@ msgid "Last Value " msgstr "最新の値 " #: ../../enterprise/include/functions_reporting_csv.php:982 -#: ../../include/functions_reporting.php:1544 -#: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:242 +#: ../../include/functions_reporting.php:1549 +#: ../../operation/snmpconsole/snmp_statistics.php:171 +#: ../../operation/snmpconsole/snmp_statistics.php:245 #, php-format msgid "Top %d" msgstr "トップ %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:4082 +#: ../../include/functions_reporting.php:4186 msgid "Group Report" msgstr "グループレポート" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:263 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1047 +#: ../../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:5809 -#: ../../include/class/Diagnostics.class.php:550 -#: ../../include/functions_reporting.php:12118 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:651 -#: ../../operation/tree.php:454 +#: ../../include/functions_reporting_html.php:5896 +#: ../../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 msgid "Total agents" msgstr "エージェント数" @@ -24004,35 +24622,37 @@ msgid "Uknown agents" msgstr "不明エージェント" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../godmode/groups/group_list.php:1048 +#: ../../enterprise/operation/services/services.treeview_services.php:290 +#: ../../godmode/groups/group_list.php:1083 #: ../../godmode/module_library/module_library_view.php:159 -#: ../../include/class/Diagnostics.class.php:554 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:652 -#: ../../operation/tree.php:455 +#: ../../include/class/Diagnostics.class.php:587 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:698 +#: ../../operation/tree.php:502 msgid "Total modules" msgstr "全モジュール" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:11961 +#: ../../include/functions_reporting.php:12155 +#: ../../include/functions_groups.php:2700 msgid "Defined alerts" msgstr "定義済みアラート" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../enterprise/operation/services/services.treeview_services.php:268 -#: ../../enterprise/operation/services/services.treeview_services.php:269 -#: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../godmode/groups/group_list.php:1052 -#: ../../godmode/groups/group_list.php:1053 -#: ../../godmode/groups/group_list.php:1054 -#: ../../include/functions_graph.php:2609 -#: ../../include/functions_reporting.php:11979 -#: ../../include/functions_reporting.php:12002 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:656 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:657 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 -#: ../../operation/tree.php:459 ../../operation/tree.php:460 -#: ../../operation/tree.php:461 +#: ../../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 msgid "Fired alerts" msgstr "発生したアラート" @@ -24041,8 +24661,8 @@ msgid "Last 8 hours events" msgstr "直近 8時間のイベント" #: ../../enterprise/include/functions_reporting_csv.php:1036 -#: ../../include/functions_reports.php:777 -#: ../../include/functions_reports.php:783 +#: ../../include/functions_reports.php:789 +#: ../../include/functions_reports.php:795 msgid "Group report" msgstr "グループレポート" @@ -24051,26 +24671,26 @@ msgid "Illegal query or any other error" msgstr "不正なクエリまたはその他エラー" #: ../../enterprise/include/functions_reporting_csv.php:1187 -#: ../../include/functions_reports.php:661 +#: ../../include/functions_reports.php:673 msgid "SQL vertical bar graph" msgstr "SQL 縦棒グラフ" #: ../../enterprise/include/functions_reporting_csv.php:1189 -#: ../../include/functions_reports.php:669 +#: ../../include/functions_reports.php:681 msgid "SQL horizontal bar graph" msgstr "SQL 横棒グラフ" #: ../../enterprise/include/functions_reporting_csv.php:1191 -#: ../../include/functions_reports.php:665 +#: ../../include/functions_reports.php:677 msgid "SQL pie graph" msgstr "SQL 円グラフ" #: ../../enterprise/include/functions_reporting_csv.php:1220 #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 -#: ../../include/functions_reports.php:754 -#: ../../include/functions_reporting.php:7002 -#: ../../include/functions_reporting.php:10377 +#: ../../include/functions_reports.php:766 +#: ../../include/functions_reporting.php:7106 +#: ../../include/functions_reporting.php:10571 msgid "Summatory" msgstr "合計" @@ -24082,7 +24702,7 @@ msgid "Minimum Value" msgstr "最小値" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10381 +#: ../../include/functions_reporting.php:10575 msgid "Minimum" msgstr "最小" @@ -24097,37 +24717,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:3933 -#: ../../include/functions_reports.php:762 -#: ../../include/functions_reporting.php:9837 +#: ../../include/functions_reporting_html.php:4017 +#: ../../include/functions_reports.php:774 +#: ../../include/functions_reporting.php:10031 msgid "Increment" msgstr "増分" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:3931 +#: ../../include/functions_reporting_html.php:4015 msgid "From data" msgstr "開始データ" #: ../../enterprise/include/functions_reporting_csv.php:1375 -#: ../../include/functions_reporting_html.php:3932 +#: ../../include/functions_reporting_html.php:4016 msgid "To data" msgstr "終了データ" #: ../../enterprise/include/functions_reporting_csv.php:1381 #: ../../enterprise/include/functions_reporting_csv.php:1392 -#: ../../include/functions_reporting_html.php:3960 +#: ../../include/functions_reporting_html.php:4044 msgid "Negative increase: " msgstr "マイナス増加: " #: ../../enterprise/include/functions_reporting_csv.php:1383 #: ../../enterprise/include/functions_reporting_csv.php:1394 -#: ../../include/functions_reporting_html.php:3962 +#: ../../include/functions_reporting_html.php:4046 msgid "Positive increase: " msgstr "プラス増加: " #: ../../enterprise/include/functions_reporting_csv.php:1385 #: ../../enterprise/include/functions_reporting_csv.php:1396 -#: ../../include/functions_reporting_html.php:3964 +#: ../../include/functions_reporting_html.php:4048 msgid "Neutral increase: " msgstr "中立的な増加: " @@ -24136,7 +24756,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:7007 +#: ../../include/functions_reporting.php:7111 msgid "AVG. Value" msgstr "平均値" @@ -24147,7 +24767,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:6338 +#: ../../include/functions_reporting.php:6442 msgid "Monitor Report" msgstr "モニタレポート" @@ -24180,11 +24800,11 @@ msgstr "最小 SLA" #: ../../enterprise/include/functions_reporting_csv.php:1675 #: ../../enterprise/include/functions_reporting_csv.php:1794 #: ../../enterprise/include/functions_reporting_csv.php:2102 -#: ../../enterprise/include/functions_reporting.php:1857 -#: ../../enterprise/include/functions_reporting.php:2896 -#: ../../enterprise/include/functions_reporting.php:3883 -#: ../../enterprise/include/functions_reporting.php:6133 -#: ../../include/functions_reporting_html.php:550 +#: ../../enterprise/include/functions_reporting.php:1849 +#: ../../enterprise/include/functions_reporting.php:2914 +#: ../../enterprise/include/functions_reporting.php:3903 +#: ../../enterprise/include/functions_reporting.php:6153 +#: ../../include/functions_reporting_html.php:551 msgid "SLA Limit" msgstr "SLA 制限" @@ -24256,16 +24876,16 @@ msgstr "状態 " #: ../../enterprise/include/functions_reporting_csv.php:1591 #: ../../enterprise/include/functions_reporting_csv.php:1637 #: ../../enterprise/include/functions_reporting_csv.php:1955 -#: ../../enterprise/include/functions_reporting.php:1877 -#: ../../enterprise/include/functions_reporting.php:1918 -#: ../../enterprise/include/functions_reporting.php:2921 -#: ../../enterprise/include/functions_reporting.php:2980 -#: ../../enterprise/include/functions_reporting.php:3909 -#: ../../enterprise/include/functions_reporting.php:3968 -#: ../../enterprise/include/functions_reporting.php:6157 -#: ../../include/functions_reporting_html.php:667 -#: ../../include/functions_config.php:1287 -#: ../../include/functions_config.php:3273 +#: ../../enterprise/include/functions_reporting.php:1869 +#: ../../enterprise/include/functions_reporting.php:1910 +#: ../../enterprise/include/functions_reporting.php:2939 +#: ../../enterprise/include/functions_reporting.php:2998 +#: ../../enterprise/include/functions_reporting.php:3929 +#: ../../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 msgid "Fail" msgstr "失敗" @@ -24355,7 +24975,7 @@ msgid "Status Month" msgstr "月間状態" #: ../../enterprise/include/functions_reporting_csv.php:1710 -#: ../../enterprise/include/functions_reporting.php:2025 +#: ../../enterprise/include/functions_reporting.php:2018 msgid "Day" msgstr "日" @@ -24446,7 +25066,7 @@ msgstr "日ごとの状態" #: ../../enterprise/include/functions_reporting_csv.php:1787 #: ../../enterprise/include/functions_reporting_csv.php:2095 -#: ../../include/functions_html.php:2279 +#: ../../include/functions_html.php:2322 msgid "Month" msgstr "月" @@ -24549,37 +25169,38 @@ msgid "IPAM Networks" msgstr "IPAM ネットワーク" #: ../../enterprise/include/functions_reporting_csv.php:1984 -#: ../../enterprise/include/functions_reporting.php:2318 -#: ../../godmode/events/custom_events.php:96 -#: ../../include/functions_events.php:244 ../../operation/events/events.php:2588 +#: ../../enterprise/include/functions_reporting.php:2336 +#: ../../godmode/events/custom_events.php:94 +#: ../../include/functions_events.php:244 ../../operation/events/events.php:2665 msgid "Agent ID" msgstr "エージェント ID" #: ../../enterprise/include/functions_reporting_csv.php:1985 -#: ../../enterprise/include/functions_reporting.php:2319 -#: ../../enterprise/include/functions_ipam.php:2054 -#: ../../enterprise/tools/ipam/ipam_network.php:404 -#: ../../enterprise/tools/ipam/ipam_network.php:673 -#: ../../enterprise/tools/ipam/ipam_ajax.php:293 -#: ../../enterprise/tools/ipam/ipam_ajax.php:479 -#: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../godmode/users/configure_user.php:1261 +#: ../../enterprise/include/functions_reporting.php:2337 +#: ../../enterprise/include/functions_ipam.php:2115 +#: ../../enterprise/tools/ipam/ipam_network.php:431 +#: ../../enterprise/tools/ipam/ipam_network.php:700 +#: ../../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:5928 -#: ../../include/functions.php:3099 ../../include/ajax/events.php:1690 -#: ../../include/class/AuditLog.class.php:111 -#: ../../operation/users/user_edit.php:681 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 -#: ../../general/logon_ok.php:253 +#: ../../include/functions_reporting_html.php:6016 +#: ../../include/functions.php:3109 ../../include/ajax/events.php:1763 +#: ../../include/class/AuditLog.class.php:114 +#: ../../operation/users/user_edit.php:743 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 +#: ../../general/logon_ok.php:259 msgid "Comments" msgstr "コメント" #: ../../enterprise/include/functions_reporting_csv.php:1986 -#: ../../enterprise/include/functions_reporting.php:2320 -#: ../../enterprise/include/functions_ipam.php:2052 -#: ../../enterprise/tools/ipam/ipam_network.php:415 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 +#: ../../enterprise/include/functions_reporting.php:2338 +#: ../../enterprise/include/functions_ipam.php:2113 +#: ../../enterprise/tools/ipam/ipam_network.php:442 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1413 msgid "Alive" msgstr "稼働" @@ -24596,15 +25217,15 @@ msgid "SLA limit" msgstr "SLA 制限" #: ../../enterprise/include/functions_reporting_csv.php:2030 -#: ../../enterprise/include/functions_reporting.php:4968 -#: ../../include/functions_reporting_html.php:584 +#: ../../enterprise/include/functions_reporting.php:4988 +#: ../../include/functions_reporting_html.php:586 msgid "Time Total" msgstr "合計時間" #: ../../enterprise/include/functions_reporting_csv.php:2031 -#: ../../enterprise/include/functions_reporting.php:4971 -#: ../../include/functions_reporting_html.php:586 -#: ../../include/functions_reporting_html.php:4072 +#: ../../enterprise/include/functions_reporting.php:4991 +#: ../../include/functions_reporting_html.php:588 +#: ../../include/functions_reporting_html.php:4157 msgid "Time OK" msgstr "正常時間" @@ -24613,33 +25234,33 @@ msgid "Time Error" msgstr "障害時間" #: ../../enterprise/include/functions_reporting_csv.php:2033 -#: ../../enterprise/include/functions_reporting.php:4972 -#: ../../include/functions_reporting_html.php:587 -#: ../../include/functions_reporting_html.php:4084 +#: ../../enterprise/include/functions_reporting.php:4992 +#: ../../include/functions_reporting_html.php:589 +#: ../../include/functions_reporting_html.php:4169 msgid "Time Unknown" msgstr "不明時間" #: ../../enterprise/include/functions_reporting_csv.php:2034 -#: ../../enterprise/include/functions_reporting.php:4973 -#: ../../include/functions_reporting_html.php:588 +#: ../../enterprise/include/functions_reporting.php:4993 +#: ../../include/functions_reporting_html.php:590 msgid "Time Not Init" msgstr "未初期化時間" #: ../../enterprise/include/functions_reporting_csv.php:2035 -#: ../../include/functions_reporting_html.php:4096 +#: ../../include/functions_reporting_html.php:4181 msgid "Time Downtime" msgstr "計画停止時間" #: ../../enterprise/include/functions_reporting_csv.php:2036 -#: ../../enterprise/include/functions_reporting.php:5063 -#: ../../include/functions_reporting_html.php:617 +#: ../../enterprise/include/functions_reporting.php:5083 +#: ../../include/functions_reporting_html.php:620 msgid "Checks Total" msgstr "合計確認数" #: ../../enterprise/include/functions_reporting_csv.php:2037 -#: ../../enterprise/include/functions_reporting.php:5066 -#: ../../include/functions_reporting_html.php:619 -#: ../../include/functions_reporting_html.php:4166 +#: ../../enterprise/include/functions_reporting.php:5086 +#: ../../include/functions_reporting_html.php:622 +#: ../../include/functions_reporting_html.php:4251 msgid "Checks OK" msgstr "正常確認数" @@ -24648,24 +25269,24 @@ msgid "Checks Error" msgstr "エラー数" #: ../../enterprise/include/functions_reporting_csv.php:2039 -#: ../../enterprise/include/functions_reporting.php:5067 -#: ../../include/functions_reporting_html.php:620 +#: ../../enterprise/include/functions_reporting.php:5087 +#: ../../include/functions_reporting_html.php:623 msgid "Checks Unknown" msgstr "不明確認数" #: ../../enterprise/include/functions_reporting_csv.php:2040 -#: ../../enterprise/include/functions_reporting.php:5068 +#: ../../enterprise/include/functions_reporting.php:5088 msgid "Checks Not Init" msgstr "未初期化数" #: ../../enterprise/include/functions_reporting_csv.php:2041 -#: ../../enterprise/operation/services/services.service.php:128 -#: ../../enterprise/operation/services/services.list.php:508 -#: ../../include/functions_reports.php:698 -#: ../../include/functions_reports.php:703 -#: ../../include/functions_reports.php:707 -#: ../../include/functions_reports.php:711 -#: ../../include/functions_reports.php:717 +#: ../../enterprise/operation/services/services.service.php:119 +#: ../../enterprise/operation/services/services.list.php:546 +#: ../../include/functions_reports.php:710 +#: ../../include/functions_reports.php:715 +#: ../../include/functions_reports.php:719 +#: ../../include/functions_reports.php:723 +#: ../../include/functions_reports.php:729 msgid "SLA" msgstr "SLA" @@ -24790,6 +25411,12 @@ msgstr "終了時間" msgid "Status hours" msgstr "1時間ごとの状態" +#: ../../enterprise/include/functions_reporting_csv.php:2270 +#: ../../enterprise/include/functions_reporting_csv.php:2274 +#: ../../include/functions_reporting_html.php:139 +msgid "Generated" +msgstr "生成日" + #: ../../enterprise/include/functions_reporting_csv.php:2317 msgid "Simple Baseline Graph" msgstr "シンプルベースライングラフ" @@ -24800,17 +25427,17 @@ msgid "Custom Graph" msgstr "カスタムグラフ" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:6046 +#: ../../include/functions_reporting.php:6150 msgid "Alert Report Module" msgstr "アラートレポートモジュール" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5879 +#: ../../include/functions_reporting.php:5983 msgid "Alert Report Agent" msgstr "アラートレポートエージェント" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5699 +#: ../../include/functions_reporting.php:5803 msgid "Alert Report Group" msgstr "アラートレポートグループ" @@ -24827,36 +25454,39 @@ msgid "Event Report Log" msgstr "イベントレポートログ" #: ../../enterprise/include/functions_reporting_csv.php:2581 -#: ../../include/functions_reports.php:939 -#: ../../include/functions_reports.php:940 -#: ../../include/functions_reporting.php:5004 +#: ../../include/functions_reports.php:951 +#: ../../include/functions_reports.php:952 +#: ../../include/functions_reporting.php:5108 msgid "Permissions report" msgstr "権限レポート" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../godmode/users/user_list.php:539 -#: ../../godmode/users/configure_user.php:1045 -#: ../../godmode/users/configure_user.php:1103 -#: ../../include/functions_reporting_html.php:5218 -#: ../../include/functions_reporting_html.php:6386 -#: ../../include/functions_reporting_html.php:6409 -#: ../../include/class/SnmpConsole.class.php:341 -#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:268 +#: ../../godmode/users/user_list.php:572 +#: ../../godmode/users/configure_user.php:1001 +#: ../../godmode/users/configure_user.php:1060 +#: ../../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/class/SnmpConsole.class.php:278 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:291 msgid "User ID" msgstr "ユーザ ID" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6387 -#: ../../include/functions_reporting_html.php:6410 +#: ../../godmode/users/user_management.php:166 +#: ../../include/functions_reporting_html.php:6437 +#: ../../include/functions_reporting_html.php:6460 msgid "Full name" msgstr "フルネーム" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6388 -#: ../../include/functions_reporting_html.php:6411 +#: ../../include/functions_reporting_html.php:6438 +#: ../../include/functions_reporting_html.php:6461 msgid "Permissions" msgstr "権限" @@ -24865,7 +25495,7 @@ msgid "Netflow data chart" msgstr "Netflow データグラフ" #: ../../enterprise/include/functions_reporting_csv.php:2657 -#: ../../include/functions_reports.php:914 +#: ../../include/functions_reports.php:926 msgid "Netflow area chart" msgstr "Netflow 塗り潰しグラフ" @@ -24909,23 +25539,23 @@ msgid "Agent/module status" msgstr "エージェント/モジュール状態" #: ../../enterprise/include/functions_reporting_csv.php:2792 -#: ../../include/functions_reporting_html.php:2269 +#: ../../include/functions_reporting_html.php:2358 msgid "Last time" msgstr "最新日時" #: ../../enterprise/include/functions_reporting_csv.php:2836 -#: ../../include/functions_reports.php:926 -#: ../../include/functions_reporting.php:6493 +#: ../../include/functions_reports.php:938 +#: ../../include/functions_reporting.php:6597 msgid "Netflow top-N connections" msgstr "Netflow トップ N 接続" #: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:5927 -#: ../../include/functions.php:3099 ../../include/functions_netflow.php:347 -#: ../../include/class/AuditLog.class.php:110 -#: ../../operation/snmpconsole/snmp_statistics.php:182 -#: ../../general/logon_ok.php:252 +#: ../../include/functions_reporting_html.php:6015 +#: ../../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 msgid "Source IP" msgstr "ソースIP" @@ -24935,10 +25565,11 @@ msgid "Destination IP" msgstr "宛先 IP" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:990 ../../include/functions_config.php:3185 +#: ../../include/functions_config.php:1024 +#: ../../include/functions_config.php:3453 #: ../../include/functions_netflow.php:349 -#: ../../operation/network/network_report.php:206 -#: ../../operation/network/network_report.php:238 +#: ../../operation/network/network_report.php:294 +#: ../../operation/network/network_report.php:326 msgid "Bytes" msgstr "バイト" @@ -24976,7 +25607,7 @@ msgid "Reservation status" msgstr "予約状況" #: ../../enterprise/include/functions_HA_cluster.php:46 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1823 msgid "Deploy" msgstr "デプロイ" @@ -24993,7 +25624,7 @@ msgid "Demote" msgstr "降格" #: ../../enterprise/include/functions_HA_cluster.php:64 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1946 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1969 msgid "Cleanup" msgstr "クリーンアップ" @@ -25018,7 +25649,7 @@ msgid "Register new node" msgstr "新規ノードの登録" #: ../../enterprise/include/functions_HA_cluster.php:496 -#: ../../include/class/NetworkMap.class.php:3090 +#: ../../include/class/NetworkMap.class.php:3156 msgid "Update node" msgstr "ノード更新" @@ -25029,7 +25660,7 @@ msgid "Cloud message" msgstr "クラウドメッセージ" #: ../../enterprise/include/class/Azure.cloud.php:153 -#: ../../include/class/CredentialStore.class.php:985 +#: ../../include/class/CredentialStore.class.php:961 msgid "Azure" msgstr "Azure" @@ -25053,7 +25684,7 @@ msgid "Microsoft Compute" msgstr "Microsoft コンピュート" #: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Aws.cloud.php:1493 +#: ../../enterprise/include/class/Aws.cloud.php:1523 #: ../../enterprise/include/class/Google.cloud.php:349 #, php-format msgid "%s not found or not executable" @@ -25071,94 +25702,94 @@ msgstr "グループが見つかりません。" msgid "Unauthorized access" msgstr "不正アクセス" -#: ../../enterprise/include/class/Azure.cloud.php:771 +#: ../../enterprise/include/class/Azure.cloud.php:774 #: ../../enterprise/include/class/VMware.app.php:583 -#: ../../enterprise/include/class/DB2.app.php:437 -#: ../../enterprise/include/class/Aws.S3.php:401 -#: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/Aws.cloud.php:1201 -#: ../../enterprise/include/class/MySQL.app.php:442 -#: ../../enterprise/include/class/Google.cloud.php:759 -#: ../../enterprise/include/class/Oracle.app.php:444 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:439 -#: ../../godmode/wizards/HostDevices.class.php:840 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:590 -#: ../../include/class/CustomNetScan.class.php:446 +#: ../../enterprise/include/class/DB2.app.php:445 +#: ../../enterprise/include/class/Aws.S3.php:408 +#: ../../enterprise/include/class/SAP.app.php:459 +#: ../../enterprise/include/class/Aws.cloud.php:1220 +#: ../../enterprise/include/class/MySQL.app.php:450 +#: ../../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/DiscoveryTaskList.class.php:593 +#: ../../include/class/CustomNetScan.class.php:452 msgid "Task name" msgstr "タスク名" -#: ../../enterprise/include/class/Azure.cloud.php:797 +#: ../../enterprise/include/class/Azure.cloud.php:800 #: ../../enterprise/include/class/VMware.app.php:614 -#: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/Aws.cloud.php:540 +#: ../../enterprise/include/class/Aws.S3.php:565 +#: ../../enterprise/include/class/Aws.cloud.php:528 msgid "Tentacle options" msgstr "Tentacle オプション" -#: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Aws.cloud.php:742 -#: ../../enterprise/include/class/Aws.cloud.php:1274 -#: ../../enterprise/include/class/Google.cloud.php:822 +#: ../../enterprise/include/class/Azure.cloud.php:875 +#: ../../enterprise/include/class/Aws.cloud.php:745 +#: ../../enterprise/include/class/Aws.cloud.php:1293 +#: ../../enterprise/include/class/Google.cloud.php:825 msgid "No instances found." msgstr "インスタンスが見つかりません。" -#: ../../enterprise/include/class/Azure.cloud.php:909 -#: ../../enterprise/include/class/Google.cloud.php:865 +#: ../../enterprise/include/class/Azure.cloud.php:912 +#: ../../enterprise/include/class/Google.cloud.php:868 msgid "Select target virtual machines" msgstr "対象の仮想マシンを選択してください" -#: ../../enterprise/include/class/Azure.cloud.php:928 -#: ../../enterprise/include/class/Aws.cloud.php:671 +#: ../../enterprise/include/class/Azure.cloud.php:931 +#: ../../enterprise/include/class/Aws.cloud.php:669 msgid "Scan and general monitoring." msgstr "スキャンと一般的な監視。" -#: ../../enterprise/include/class/Azure.cloud.php:941 -#: ../../enterprise/include/class/Aws.cloud.php:688 +#: ../../enterprise/include/class/Azure.cloud.php:944 +#: ../../enterprise/include/class/Aws.cloud.php:686 msgid "Cpu performance summary" msgstr "CPU パフォーマンス概要" -#: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Aws.cloud.php:698 -#: ../../enterprise/include/class/Google.cloud.php:911 +#: ../../enterprise/include/class/Azure.cloud.php:952 +#: ../../enterprise/include/class/Aws.cloud.php:696 +#: ../../enterprise/include/class/Google.cloud.php:914 msgid "IOPS performance summary" msgstr "IOPS パフォーマンス概要" -#: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Aws.cloud.php:708 -#: ../../enterprise/include/class/Google.cloud.php:919 +#: ../../enterprise/include/class/Azure.cloud.php:960 +#: ../../enterprise/include/class/Aws.cloud.php:706 +#: ../../enterprise/include/class/Google.cloud.php:922 msgid "Disk performance summary" msgstr "ディスクパフォーマンス概要" -#: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Aws.cloud.php:718 -#: ../../enterprise/include/class/Google.cloud.php:927 +#: ../../enterprise/include/class/Azure.cloud.php:968 +#: ../../enterprise/include/class/Aws.cloud.php:716 +#: ../../enterprise/include/class/Google.cloud.php:930 msgid "Network performance summary" msgstr "ネットワークパフォーマンス概要" -#: ../../enterprise/include/class/Azure.cloud.php:990 -#: ../../enterprise/include/class/VMware.app.php:1016 -#: ../../enterprise/include/class/DB2.app.php:869 -#: ../../enterprise/include/class/Aws.S3.php:659 -#: ../../enterprise/include/class/SAP.app.php:925 -#: ../../enterprise/include/class/Aws.cloud.php:1591 -#: ../../enterprise/include/class/MySQL.app.php:945 -#: ../../enterprise/include/class/Google.cloud.php:952 -#: ../../enterprise/include/class/Oracle.app.php:978 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:822 -#: ../../godmode/wizards/HostDevices.class.php:1613 -#: ../../include/class/CustomNetScan.class.php:759 +#: ../../enterprise/include/class/Azure.cloud.php:993 +#: ../../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/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 msgid "Task configured." msgstr "タスクを設定しました。" -#: ../../enterprise/include/class/Azure.cloud.php:994 -#: ../../enterprise/include/class/VMware.app.php:1020 -#: ../../enterprise/include/class/DB2.app.php:873 -#: ../../enterprise/include/class/SAP.app.php:929 -#: ../../enterprise/include/class/MySQL.app.php:949 -#: ../../enterprise/include/class/Google.cloud.php:956 -#: ../../enterprise/include/class/Oracle.app.php:982 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:826 -#: ../../godmode/wizards/HostDevices.class.php:1617 -#: ../../include/class/CustomNetScan.class.php:763 +#: ../../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/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 msgid "Wizard failed. Cannot configure task." msgstr "ウィザードに失敗しました。タスクを設定できません。" @@ -25173,8 +25804,8 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:264 #: ../../enterprise/include/class/DB2.app.php:197 #: ../../enterprise/include/class/Aws.S3.php:183 -#: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/Aws.cloud.php:917 +#: ../../enterprise/include/class/SAP.app.php:187 +#: ../../enterprise/include/class/Aws.cloud.php:931 #: ../../enterprise/include/class/MySQL.app.php:206 #: ../../enterprise/include/class/Oracle.app.php:204 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 @@ -25186,8 +25817,8 @@ msgstr "タスク名を設定する必要があります。" #: ../../enterprise/include/class/VMware.app.php:269 #: ../../enterprise/include/class/DB2.app.php:202 #: ../../enterprise/include/class/Aws.S3.php:188 -#: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/Aws.cloud.php:922 +#: ../../enterprise/include/class/SAP.app.php:192 +#: ../../enterprise/include/class/Aws.cloud.php:936 #: ../../enterprise/include/class/MySQL.app.php:211 #: ../../enterprise/include/class/Oracle.app.php:209 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 @@ -25203,8 +25834,8 @@ msgstr "正しい V-Center IP または FQDN を設定する必要がありま #: ../../enterprise/include/class/VMware.app.php:279 #: ../../enterprise/include/class/DB2.app.php:212 #: ../../enterprise/include/class/Aws.S3.php:193 -#: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/Aws.cloud.php:927 +#: ../../enterprise/include/class/SAP.app.php:202 +#: ../../enterprise/include/class/Aws.cloud.php:941 #: ../../enterprise/include/class/MySQL.app.php:226 #: ../../enterprise/include/class/Oracle.app.php:219 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 @@ -25229,31 +25860,31 @@ msgstr "自動検出 VMware タスクを見つけられませんでした。" msgid "Threads must be equal or greater than 1." msgstr "スレッドは 1以上である必要があります。" -#: ../../enterprise/include/class/VMware.app.php:486 -#: ../../enterprise/include/class/DB2.app.php:386 -#: ../../enterprise/include/class/SAP.app.php:336 -#: ../../enterprise/include/class/MySQL.app.php:403 -#: ../../enterprise/include/class/Oracle.app.php:393 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:388 +#: ../../enterprise/include/class/VMware.app.php:492 +#: ../../enterprise/include/class/DB2.app.php:392 +#: ../../enterprise/include/class/SAP.app.php:339 +#: ../../enterprise/include/class/MySQL.app.php:409 +#: ../../enterprise/include/class/Oracle.app.php:399 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:403 msgid "Application" msgstr "アプリケーション" -#: ../../enterprise/include/class/VMware.app.php:536 -#: ../../enterprise/include/class/DB2.app.php:569 -#: ../../enterprise/include/class/SAP.app.php:444 -#: ../../enterprise/include/class/MySQL.app.php:591 -#: ../../enterprise/include/class/Oracle.app.php:576 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:570 -#: ../../godmode/setup/setup_integria.php:636 -#: ../../godmode/wizards/HostDevices.class.php:774 -#: ../../include/class/CustomNetScan.class.php:553 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1236 +#: ../../enterprise/include/class/VMware.app.php:545 +#: ../../enterprise/include/class/DB2.app.php:576 +#: ../../enterprise/include/class/SAP.app.php:445 +#: ../../enterprise/include/class/MySQL.app.php:598 +#: ../../enterprise/include/class/Oracle.app.php:583 +#: ../../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 msgid "Update and continue" msgstr "更新して次へ" -#: ../../enterprise/include/class/VMware.app.php:547 -#: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/Aws.cloud.php:500 +#: ../../enterprise/include/class/VMware.app.php:556 +#: ../../enterprise/include/class/Aws.S3.php:560 +#: ../../enterprise/include/class/Aws.cloud.php:488 msgid "" "This kind of task uses multipurpose plugins in order to generate monitoring " "data, configure your desired tentacle target." @@ -25262,15 +25893,15 @@ msgstr "" "tentacle を設定します。" #: ../../enterprise/include/class/VMware.app.php:594 -#: ../../enterprise/include/class/DB2.app.php:449 -#: ../../enterprise/include/class/Aws.S3.php:413 -#: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/Aws.cloud.php:1213 -#: ../../enterprise/include/class/MySQL.app.php:454 -#: ../../enterprise/include/class/Oracle.app.php:456 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 -#: ../../godmode/wizards/HostDevices.class.php:851 -#: ../../include/class/CustomNetScan.class.php:480 +#: ../../enterprise/include/class/DB2.app.php:457 +#: ../../enterprise/include/class/Aws.S3.php:420 +#: ../../enterprise/include/class/SAP.app.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:1232 +#: ../../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 +#: ../../include/class/CustomNetScan.class.php:486 msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " "will never run" @@ -25283,55 +25914,44 @@ msgid "Datacenter user" msgstr "データセンターユーザ" #: ../../enterprise/include/class/VMware.app.php:668 -#: ../../enterprise/include/class/DB2.app.php:537 -#: ../../enterprise/include/class/Aws.S3.php:507 -#: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/Aws.cloud.php:1319 -#: ../../enterprise/include/class/MySQL.app.php:559 -#: ../../enterprise/include/class/Oracle.app.php:544 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 -#: ../../godmode/wizards/HostDevices.class.php:801 -#: ../../include/class/CustomNetScan.class.php:521 -msgid "Manual interval means that it will be executed only On-demand" -msgstr "手動は、オンデマンドでのみの実行を意味します。" - -#: ../../enterprise/include/class/VMware.app.php:675 -#: ../../enterprise/include/class/VMware.app.php:888 -#: ../../enterprise/include/class/DB2.app.php:544 +#: ../../enterprise/include/class/DB2.app.php:545 #: ../../enterprise/include/class/Aws.S3.php:514 -#: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/Aws.cloud.php:1326 -#: ../../enterprise/include/class/MySQL.app.php:566 -#: ../../enterprise/include/class/Oracle.app.php:551 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 -#: ../../godmode/wizards/HostDevices.class.php:808 -#: ../../include/functions_reporting_html.php:2500 -#: ../../include/class/CustomNetScan.class.php:528 +#: ../../enterprise/include/class/SAP.app.php:504 +#: ../../enterprise/include/class/Aws.cloud.php:1338 +#: ../../enterprise/include/class/MySQL.app.php:567 +#: ../../enterprise/include/class/Oracle.app.php:552 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:556 +msgid "" +"Manual interval means that it will be executed only On-demand, The minimum " +"recomended interval is 5 minutes" +msgstr "" +"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は " +"5分です。" + +#: ../../enterprise/include/class/VMware.app.php:677 +#: ../../enterprise/include/class/VMware.app.php:894 +#: ../../enterprise/include/class/DB2.app.php:554 +#: ../../enterprise/include/class/Aws.S3.php:523 +#: ../../enterprise/include/class/SAP.app.php:513 +#: ../../enterprise/include/class/Aws.cloud.php:1347 +#: ../../enterprise/include/class/MySQL.app.php:576 +#: ../../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 msgid "Defined" msgstr "定義済み" -#: ../../enterprise/include/class/VMware.app.php:693 -#: ../../enterprise/include/class/DB2.app.php:561 -#: ../../enterprise/include/class/Aws.S3.php:531 -#: ../../enterprise/include/class/SAPView.class.php:259 -#: ../../enterprise/include/class/SAPView.class.php:296 -#: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/Aws.cloud.php:1343 -#: ../../enterprise/include/class/MySQL.app.php:583 -#: ../../enterprise/include/class/Oracle.app.php:568 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 -msgid "The minimum recomended interval is 5 minutes" -msgstr "推奨される最小間隔は 5分です" - -#: ../../enterprise/include/class/VMware.app.php:707 +#: ../../enterprise/include/class/VMware.app.php:706 msgid "V-Center IP" msgstr "V-Center IP" -#: ../../enterprise/include/class/VMware.app.php:718 +#: ../../enterprise/include/class/VMware.app.php:717 msgid "Datacenter name" msgstr "データセンター名" -#: ../../enterprise/include/class/VMware.app.php:719 +#: ../../enterprise/include/class/VMware.app.php:718 msgid "" "This name must match with the name wich appears when you log in you VMware " "manager" @@ -25339,145 +25959,145 @@ msgstr "" "この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があ" "ります" -#: ../../enterprise/include/class/VMware.app.php:749 +#: ../../enterprise/include/class/VMware.app.php:748 msgid "Encrypt passwords" msgstr "パスワード暗号化" -#: ../../enterprise/include/class/VMware.app.php:763 -#: ../../enterprise/include/class/DB2.app.php:470 -#: ../../enterprise/include/class/Aws.S3.php:435 -#: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:1234 -#: ../../enterprise/include/class/MySQL.app.php:475 -#: ../../enterprise/include/class/Oracle.app.php:477 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 +#: ../../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/Aws.cloud.php:1253 +#: ../../enterprise/include/class/MySQL.app.php:483 +#: ../../enterprise/include/class/Oracle.app.php:485 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:490 msgid "This group will be used also to classify discovered agents" msgstr "このグループは、検出されたエージェントの分類にも使用されます" -#: ../../enterprise/include/class/VMware.app.php:871 +#: ../../enterprise/include/class/VMware.app.php:877 msgid "Max threads" msgstr "最大スレッド" -#: ../../enterprise/include/class/VMware.app.php:880 +#: ../../enterprise/include/class/VMware.app.php:886 msgid "Re-scan interval" msgstr "再スキャン間隔" -#: ../../enterprise/include/class/VMware.app.php:881 +#: ../../enterprise/include/class/VMware.app.php:887 msgid "Enables re-scan entities process every interval defined." msgstr "定義された間隔ごとに再スキャンエンティティが処理できるようにします。" -#: ../../enterprise/include/class/VMware.app.php:914 +#: ../../enterprise/include/class/VMware.app.php:920 msgid "Retry send" msgstr "送信リトライ" -#: ../../enterprise/include/class/VMware.app.php:924 +#: ../../enterprise/include/class/VMware.app.php:930 msgid "Event mode" msgstr "イベントモード" -#: ../../enterprise/include/class/VMware.app.php:924 +#: ../../enterprise/include/class/VMware.app.php:930 msgid "Only for VCenter." msgstr "VCenter のみ。" -#: ../../enterprise/include/class/VMware.app.php:934 +#: ../../enterprise/include/class/VMware.app.php:940 msgid "Virtual network monitoring" msgstr "仮想ネットワーク監視" -#: ../../enterprise/include/class/VMware.app.php:965 +#: ../../enterprise/include/class/VMware.app.php:971 msgid "Extra settings" msgstr "追加設定" -#: ../../enterprise/include/class/VMware.app.php:966 +#: ../../enterprise/include/class/VMware.app.php:972 msgid "This RAW block will be directly added to config file." msgstr "この RAW ブロックは、設定ファイルに直接追加されます。" -#: ../../enterprise/include/class/VMware.app.php:1261 +#: ../../enterprise/include/class/VMware.app.php:1288 msgid "Include datastores" msgstr "データストアを含める" -#: ../../enterprise/include/class/VMware.app.php:1271 +#: ../../enterprise/include/class/VMware.app.php:1298 msgid "Include datacenters" msgstr "データセンタを含める" -#: ../../enterprise/include/class/VMware.app.php:1281 +#: ../../enterprise/include/class/VMware.app.php:1308 msgid "Include esxs" msgstr "esx を含める" -#: ../../enterprise/include/class/VMware.app.php:1291 +#: ../../enterprise/include/class/VMware.app.php:1318 msgid "Include vms" msgstr "vm を含める" -#: ../../enterprise/include/class/DeploymentCenter.class.php:235 +#: ../../enterprise/include/class/DeploymentCenter.class.php:243 msgid "IP address is required" msgstr "IP アドレスが必要です" -#: ../../enterprise/include/class/DeploymentCenter.class.php:245 +#: ../../enterprise/include/class/DeploymentCenter.class.php:253 #: ../../enterprise/include/class/AgentRepository.class.php:454 msgid "Target OS is required" msgstr "対象 OS が必要です" -#: ../../enterprise/include/class/DeploymentCenter.class.php:247 +#: ../../enterprise/include/class/DeploymentCenter.class.php:255 #: ../../enterprise/include/class/AgentRepository.class.php:456 msgid "Target architecture is required" msgstr "対象アーキテクチャが必要です" -#: ../../enterprise/include/class/DeploymentCenter.class.php:249 +#: ../../enterprise/include/class/DeploymentCenter.class.php:257 msgid "Credentials to use are required" msgstr "利用する認証情報が必要です" -#: ../../enterprise/include/class/DeploymentCenter.class.php:251 +#: ../../enterprise/include/class/DeploymentCenter.class.php:259 msgid "Desired agent version is required" msgstr "必要とするエージェントバージョンが必要です" -#: ../../enterprise/include/class/DeploymentCenter.class.php:262 +#: ../../enterprise/include/class/DeploymentCenter.class.php:270 msgid "Target already defined." msgstr "対象は既に定義されています。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:288 +#: ../../enterprise/include/class/DeploymentCenter.class.php:296 msgid "Target successfully added" msgstr "対象を追加しました" -#: ../../enterprise/include/class/DeploymentCenter.class.php:309 +#: ../../enterprise/include/class/DeploymentCenter.class.php:317 msgid "Target successfully updated" msgstr "対象を更新しました" -#: ../../enterprise/include/class/DeploymentCenter.class.php:335 -#: ../../enterprise/include/class/AgentRepository.class.php:646 +#: ../../enterprise/include/class/DeploymentCenter.class.php:343 +#: ../../enterprise/include/class/AgentRepository.class.php:655 msgid "Target successfully deleted" msgstr "対象を削除しました" -#: ../../enterprise/include/class/DeploymentCenter.class.php:352 +#: ../../enterprise/include/class/DeploymentCenter.class.php:360 msgid "You should specify a Discovery server" msgstr "自動検出サーバを指定する必要があります" -#: ../../enterprise/include/class/DeploymentCenter.class.php:354 +#: ../../enterprise/include/class/DeploymentCenter.class.php:362 msgid "You must select some targets to deploy" msgstr "デプロイする対象を選択する必要があります" -#: ../../enterprise/include/class/DeploymentCenter.class.php:384 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1095 +#: ../../enterprise/include/class/DeploymentCenter.class.php:392 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1119 msgid "Failed to schedule" msgstr "スケジュール設定に失敗しました" -#: ../../enterprise/include/class/DeploymentCenter.class.php:399 +#: ../../enterprise/include/class/DeploymentCenter.class.php:407 msgid "Deploy scheduled" msgstr "スケジュールされたものを展開" -#: ../../enterprise/include/class/DeploymentCenter.class.php:425 +#: ../../enterprise/include/class/DeploymentCenter.class.php:433 msgid "CSV file is needed" msgstr "CSV ファイルが必要です" -#: ../../enterprise/include/class/DeploymentCenter.class.php:480 +#: ../../enterprise/include/class/DeploymentCenter.class.php:488 #, php-format msgid "" "Credential identifier %s does not exist, please, add it to your repository %s " msgstr "認証情報識別子 %s が存在しません。リポジトリ %s に追加してください " -#: ../../enterprise/include/class/DeploymentCenter.class.php:488 +#: ../../enterprise/include/class/DeploymentCenter.class.php:496 #, php-format msgid "OS %s does not math any existing, please, add it to OS list %s" msgstr "OS%s が既存のものと一致しません。OSリスト %s に追加してください" -#: ../../enterprise/include/class/DeploymentCenter.class.php:496 +#: ../../enterprise/include/class/DeploymentCenter.class.php:504 #, php-format msgid "" "Sofware agent version with id %s does not exist, please, add it to your " @@ -25486,218 +26106,218 @@ msgstr "" "ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加" "してください " -#: ../../enterprise/include/class/DeploymentCenter.class.php:518 +#: ../../enterprise/include/class/DeploymentCenter.class.php:526 msgid "No target could be added. " msgstr "対象を追加できませんでした。 " -#: ../../enterprise/include/class/DeploymentCenter.class.php:594 +#: ../../enterprise/include/class/DeploymentCenter.class.php:602 #: ../../enterprise/include/class/CSVImportAgents.class.php:98 #: ../../godmode/wizards/HostDevices.class.php:196 #: ../../include/class/ManageNetScanScripts.class.php:104 -#: ../../include/class/CustomNetScan.class.php:352 +#: ../../include/class/CustomNetScan.class.php:355 msgid "Host & Devices" msgstr "ホスト & デバイス" -#: ../../enterprise/include/class/DeploymentCenter.class.php:621 +#: ../../enterprise/include/class/DeploymentCenter.class.php:629 msgid "Deployment center" msgstr "デプロイセンター" -#: ../../enterprise/include/class/DeploymentCenter.class.php:637 +#: ../../enterprise/include/class/DeploymentCenter.class.php:666 +#: ../../enterprise/include/class/DeploymentCenter.class.php:735 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1329 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1429 +#: ../../enterprise/include/class/AgentRepository.class.php:368 +#: ../../enterprise/include/class/AgentRepository.class.php:713 +#: ../../enterprise/include/class/AgentRepository.class.php:767 +msgid "Architecture" +msgstr "アーキテクチャ" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:667 +msgid "Key identifier" +msgstr "鍵識別子" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:668 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1250 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1391 +msgid "Target server IP" +msgstr "対象サーバ IP" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:669 +msgid "Agent version installed" +msgstr "インストール済エージェントバージョン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:670 +msgid "Agent version desired" +msgstr "必要なエージェントバージョン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:671 +msgid "Installation date" +msgstr "インストール日時" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:672 +msgid "Last error" +msgstr "最新のエラー" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:746 +msgid "State" +msgstr "状態" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:767 msgid "There are no targets defined yet, please add some." msgstr "対象が定義されていません。追加してください。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:644 +#: ../../enterprise/include/class/DeploymentCenter.class.php:774 #, php-format msgid "Please set %s to make software available for targets." msgstr "対象でソフトウェアを使用できるようにするには、%s を設定してください。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:656 +#: ../../enterprise/include/class/DeploymentCenter.class.php:786 #, php-format msgid "There are no software agents in your repository yet, please add some %s." msgstr "" "リポジトリにはまだソフトウェアエージェントがありません。%s へ追加してください。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:675 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1751 -msgid "Scan for targets" -msgstr "対象のスキャン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:684 -msgid "Add target" -msgstr "対象の追加" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:693 -msgid "Load targets" -msgstr "対象をロード" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:757 -#: ../../enterprise/include/class/DeploymentCenter.class.php:825 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1301 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 -#: ../../enterprise/include/class/AgentRepository.class.php:368 -#: ../../enterprise/include/class/AgentRepository.class.php:686 -#: ../../enterprise/include/class/AgentRepository.class.php:739 -msgid "Architecture" -msgstr "アーキテクチャ" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:758 -msgid "Key identifier" -msgstr "鍵識別子" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:759 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1222 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1359 -msgid "Target server IP" -msgstr "対象サーバ IP" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:760 -msgid "Agent version installed" -msgstr "インストール済エージェントバージョン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:761 -msgid "Agent version desired" -msgstr "必要なエージェントバージョン" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:762 -msgid "Installation date" -msgstr "インストール日時" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:763 -msgid "Last error" -msgstr "最新のエラー" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:836 -msgid "State" -msgstr "状態" - -#: ../../enterprise/include/class/DeploymentCenter.class.php:868 +#: ../../enterprise/include/class/DeploymentCenter.class.php:805 msgid "Deploy agent to targets" msgstr "対象にエージェントをデプロイ" -#: ../../enterprise/include/class/DeploymentCenter.class.php:956 +#: ../../enterprise/include/class/DeploymentCenter.class.php:829 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1787 +msgid "Scan for targets" +msgstr "対象のスキャン" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:841 +msgid "Add target" +msgstr "対象の追加" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:853 +msgid "Load targets" +msgstr "対象をロード" + +#: ../../enterprise/include/class/DeploymentCenter.class.php:980 #: ../../enterprise/include/class/AgentRepository.class.php:276 msgid "Deploying" msgstr "デプロイ中" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1042 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1066 msgid "You must define a network." msgstr "ネットワークを定義する必要があります。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1044 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1068 msgid "You must select at least one credential to test." msgstr "テストのために少なくとも一つ認証情報を選択する必要があります。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1046 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 msgid "You must select a Discovery server." msgstr "自動検出サーバを選択する必要があります。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1048 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1072 msgid "Please select a desired software agent version." msgstr "希望するソフトウェアエージェントのバージョンを選択してください。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1050 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1074 msgid "Please specify a server IP." msgstr "サーバ IP を指定してください。" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1070 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1103 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1094 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1127 msgid "Discovery task list" msgstr "自動検出タスク一覧" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1069 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1093 #, php-format msgid "This network is already being scanned. See progress at %s" msgstr "このネットワークはスキャン済です。%s で進捗を見ます" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1102 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1126 #, php-format msgid "Network scheduled to be scanned. You can see progress at %s" msgstr "" "スキャンがスケジュールされているネットワーク。%s で進捗状況を見ることができます" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1135 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1138 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1265 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1268 -#: ../../enterprise/include/class/SAP.app.php:604 -#: ../../enterprise/include/class/SAP.app.php:607 -#: ../../godmode/wizards/HostDevices.class.php:1455 -#: ../../godmode/wizards/HostDevices.class.php:1458 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1162 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1293 +#: ../../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 msgid "No credentials available" msgstr "認証情報がありません" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1136 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1266 -#: ../../enterprise/include/class/SAP.app.php:605 -#: ../../godmode/agentes/module_manager_editor_network.php:518 -#: ../../godmode/wizards/HostDevices.class.php:1456 +#: ../../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 msgid "Manage credentials" msgstr "認証情報管理" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1150 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1174 msgid "Network/mask" msgstr "ネットワーク/マスク" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1159 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1183 msgid "Scan from" msgstr "次からスキャン:" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1468 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1202 +#: ../../godmode/wizards/HostDevices.class.php:1485 msgid "Credentials to try with" msgstr "利用認証情報" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1212 -#: ../../enterprise/include/class/DeploymentCenter.class.php:1349 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1240 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1381 msgid "Desired agent version" msgstr "必要なエージェントバージョン" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1396 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1428 msgid "CSV format" msgstr "CSV フォーマット" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1429 msgid "Target agent version" msgstr "対象エージェントバージョン" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1397 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1429 msgid "Target server ip" msgstr "対象サーバ IP" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1416 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1448 msgid "CSV file" msgstr "CSVファイル" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1476 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1512 msgid "Select desired targets to be deployed" msgstr "デプロイする必要な対象を選択してください" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1479 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1515 msgid "Deploy from" msgstr "次からデプロイ:" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1494 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1530 msgid "Available targets" msgstr "存在する対象" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1670 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1706 msgid "Add new target" msgstr "新たな対象の追加" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1673 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1709 msgid "Update target" msgstr "対象の更新" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1719 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1755 msgid "Import targets from CSV" msgstr "CSV から対象をインポート" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1752 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1788 #: ../../godmode/modules/manage_network_components_form_wizard.php:643 msgid "Scan" msgstr "スキャン" -#: ../../enterprise/include/class/DeploymentCenter.class.php:1786 +#: ../../enterprise/include/class/DeploymentCenter.class.php:1822 msgid "Select targets" msgstr "対象を選択" @@ -25709,6 +26329,9 @@ msgstr "対象を選択" #: ../../enterprise/include/class/DatabaseHA.class.php:534 #: ../../enterprise/include/class/DatabaseHA.class.php:651 #: ../../enterprise/include/class/DatabaseHA.class.php:660 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:131 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:208 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:217 msgid "Error, please refresh page" msgstr "エラー、ページをリロードしてください" @@ -25717,6 +26340,7 @@ msgid "Action already scheduled" msgstr "アクションはすでに計画済です" #: ../../enterprise/include/class/DatabaseHA.class.php:148 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:137 msgid "Unavailable action" msgstr "存在しないアクション" @@ -25729,32 +26353,34 @@ msgid "Please verify resync configuration is set before use this feature." msgstr "この機能を使用する前に、再同期設定がされていることを確認してください。" #: ../../enterprise/include/class/DatabaseHA.class.php:190 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2852 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2857 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:151 msgid "Successfully scheduled" msgstr "スケジュール設定しました" #: ../../enterprise/include/class/DatabaseHA.class.php:205 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2041 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3264 -#: ../../enterprise/tools/ipam/ipam_network.php:403 -#: ../../enterprise/tools/ipam/ipam_ajax.php:419 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2056 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3330 +#: ../../enterprise/tools/ipam/ipam_network.php:430 +#: ../../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:913 -#: ../../godmode/agentes/module_manager_editor_common.php:1075 -#: ../../godmode/agentes/module_manager_editor_common.php:1085 +#: ../../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/alerts/configure_alert_template.php:900 -#: ../../include/functions_visual_map_editor.php:825 -#: ../../include/functions_reporting_html.php:3578 +#: ../../godmode/alerts/configure_alert_template.php:919 +#: ../../include/functions_visual_map_editor.php:823 +#: ../../include/functions_reporting_html.php:3674 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:406 +#: ../../operation/agentes/estado_generalagente.php:314 msgid "Enabled" msgstr "有効" #: ../../enterprise/include/class/DatabaseHA.class.php:214 -#: ../../enterprise/include/class/Omnishell.class.php:363 -#: ../../enterprise/include/class/Omnishell.class.php:1089 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1847 +#: ../../enterprise/include/class/Omnishell.class.php:370 +#: ../../enterprise/include/class/Omnishell.class.php:1310 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1867 msgid "Pending" msgstr "保留中" @@ -25764,71 +26390,63 @@ msgstr "未初期化" #: ../../enterprise/include/class/DatabaseHA.class.php:476 #: ../../enterprise/include/class/DatabaseHA.class.php:575 -#: ../../enterprise/include/class/DatabaseHA.class.php:1250 +#: ../../enterprise/include/class/DatabaseHA.class.php:1254 msgid "This is not a cluster node" msgstr "これはクラスタノードではありません" #: ../../enterprise/include/class/DatabaseHA.class.php:480 -#: ../../enterprise/include/class/DatabaseHA.class.php:1254 +#: ../../enterprise/include/class/DatabaseHA.class.php:1258 msgid "Failed to retrieve master position" msgstr "マスターポジションの取得に失敗しました" #: ../../enterprise/include/class/DatabaseHA.class.php:494 -#: ../../enterprise/include/class/DatabaseHA.class.php:1267 +#: ../../enterprise/include/class/DatabaseHA.class.php:1271 msgid "Failed to retrieve slave information" msgstr "スレーブ情報の取得に失敗しました" -#: ../../enterprise/include/class/DatabaseHA.class.php:611 -msgid "Master" -msgstr "マスタ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:614 -msgid "Slave" -msgstr "スレーブ" - -#: ../../enterprise/include/class/DatabaseHA.class.php:796 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1785 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1875 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1970 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2064 +#: ../../enterprise/include/class/DatabaseHA.class.php:798 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1790 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1880 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1975 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2069 #: ../../include/class/CalendarManager.class.php:535 #: ../../include/class/CalendarManager.class.php:892 msgid "Failed to update" msgstr "更新に失敗しました" -#: ../../enterprise/include/class/DatabaseHA.class.php:823 -#: ../../enterprise/include/class/DatabaseHA.class.php:1005 +#: ../../enterprise/include/class/DatabaseHA.class.php:825 +#: ../../enterprise/include/class/DatabaseHA.class.php:1007 msgid "DB Replication user" msgstr "DB レプリケーションユーザ" -#: ../../enterprise/include/class/DatabaseHA.class.php:824 +#: ../../enterprise/include/class/DatabaseHA.class.php:826 msgid "User configured for Master to Slaves replication" msgstr "マスター・スレーブレプリケーション設定用ユーザ" -#: ../../enterprise/include/class/DatabaseHA.class.php:834 -#: ../../enterprise/include/class/DatabaseHA.class.php:1014 +#: ../../enterprise/include/class/DatabaseHA.class.php:836 +#: ../../enterprise/include/class/DatabaseHA.class.php:1016 msgid "DB Replication user password" msgstr "DB レプリケーションユーザパスワード" -#: ../../enterprise/include/class/DatabaseHA.class.php:835 +#: ../../enterprise/include/class/DatabaseHA.class.php:837 msgid "User password" msgstr "ユーザパスワード" -#: ../../enterprise/include/class/DatabaseHA.class.php:844 +#: ../../enterprise/include/class/DatabaseHA.class.php:846 msgid "Resync data dir" msgstr "再同期データディレクトリ" -#: ../../enterprise/include/class/DatabaseHA.class.php:845 +#: ../../enterprise/include/class/DatabaseHA.class.php:847 msgid "Directory where mysql files are stored (must be common to all nodes)" msgstr "" "mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があ" "ります)" -#: ../../enterprise/include/class/DatabaseHA.class.php:855 +#: ../../enterprise/include/class/DatabaseHA.class.php:857 msgid "Resync tmp directory" msgstr "再同期テンポラリディレクトリ" -#: ../../enterprise/include/class/DatabaseHA.class.php:856 +#: ../../enterprise/include/class/DatabaseHA.class.php:858 msgid "" "Temporary working directory where to store the backups that will be used to re-" "synchronize a slave node" @@ -25836,11 +26454,11 @@ msgstr "" "スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクト" "リ" -#: ../../enterprise/include/class/DatabaseHA.class.php:866 +#: ../../enterprise/include/class/DatabaseHA.class.php:868 msgid "Resync MySQL user" msgstr "再同期 MySQL ユーザ" -#: ../../enterprise/include/class/DatabaseHA.class.php:867 +#: ../../enterprise/include/class/DatabaseHA.class.php:869 msgid "" "User of the system that owns the MySQL files, necessary for the adjustment of " "permissions (by default mysql)" @@ -25848,11 +26466,11 @@ msgstr "" "MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトで" "は mysql)" -#: ../../enterprise/include/class/DatabaseHA.class.php:877 +#: ../../enterprise/include/class/DatabaseHA.class.php:879 msgid "Resync MySQL group" msgstr "再同期 MySQL グループ" -#: ../../enterprise/include/class/DatabaseHA.class.php:878 +#: ../../enterprise/include/class/DatabaseHA.class.php:880 msgid "" "System group that owns the MySQL files, needed for permissions setting " "(default mysql)" @@ -25860,11 +26478,13 @@ msgstr "" "MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは " "mysql)" -#: ../../enterprise/include/class/DatabaseHA.class.php:939 +#: ../../enterprise/include/class/DatabaseHA.class.php:941 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:261 msgid "IP or FQDN" msgstr "IP または FQDN" -#: ../../enterprise/include/class/DatabaseHA.class.php:940 +#: ../../enterprise/include/class/DatabaseHA.class.php:942 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:262 msgid "" "This action only registers an already configured node. This action does not " "configure any resource." @@ -25872,63 +26492,65 @@ msgstr "" "このアクションは、すでに設定されているノードのみを登録します。 このアクションで" "は、リソースは設定されません。" -#: ../../enterprise/include/class/DatabaseHA.class.php:950 +#: ../../enterprise/include/class/DatabaseHA.class.php:952 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:273 msgid "Cluster node label (pcs)" msgstr "クラスタノードラベル (pcs)" -#: ../../enterprise/include/class/DatabaseHA.class.php:966 +#: ../../enterprise/include/class/DatabaseHA.class.php:968 msgid "SSH user" msgstr "SSH ユーザ" -#: ../../enterprise/include/class/DatabaseHA.class.php:974 +#: ../../enterprise/include/class/DatabaseHA.class.php:976 msgid "SSH port" msgstr "SSH ポート" -#: ../../enterprise/include/class/DatabaseHA.class.php:982 +#: ../../enterprise/include/class/DatabaseHA.class.php:984 msgid "SSH key" msgstr "SSH 鍵" -#: ../../enterprise/include/class/DatabaseHA.class.php:990 +#: ../../enterprise/include/class/DatabaseHA.class.php:992 msgid "SSH public key" msgstr "SSH 公開鍵" -#: ../../enterprise/include/class/DatabaseHA.class.php:1042 +#: ../../enterprise/include/class/DatabaseHA.class.php:1046 msgid "Missed parameters" msgstr "不足パラメータ" -#: ../../enterprise/include/class/DatabaseHA.class.php:1089 +#: ../../enterprise/include/class/DatabaseHA.class.php:1093 msgid "You must specify a host" msgstr "ホストを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1091 +#: ../../enterprise/include/class/DatabaseHA.class.php:1095 msgid "DB port must be a positive integer" msgstr "DB ポートは正の整数である必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1093 +#: ../../enterprise/include/class/DatabaseHA.class.php:1097 msgid "SSH port must be a positive integer" msgstr "SSH ポートは正の整数である必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1095 +#: ../../enterprise/include/class/DatabaseHA.class.php:1099 msgid "You must specify a SSH user" msgstr "SSH ユーザを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1097 +#: ../../enterprise/include/class/DatabaseHA.class.php:1101 msgid "You must specify a replication DB user" msgstr "レプリケーション DB ユーザを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1099 +#: ../../enterprise/include/class/DatabaseHA.class.php:1103 msgid "You must specify a replication DB pass" msgstr "レプリケーション DB パスワードを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1101 +#: ../../enterprise/include/class/DatabaseHA.class.php:1105 msgid "You must specify a public key path" msgstr "公開鍵のパスを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1103 +#: ../../enterprise/include/class/DatabaseHA.class.php:1107 msgid "You must specify a private path" msgstr "秘密鍵のパスを指定する必要があります" -#: ../../enterprise/include/class/DatabaseHA.class.php:1153 +#: ../../enterprise/include/class/DatabaseHA.class.php:1157 +#: ../../enterprise/include/class/NewDatabaseHA.class.php:328 msgid "Successfully " msgstr "成功 " @@ -25936,130 +26558,130 @@ msgstr "成功 " msgid "Perform action" msgstr "アクションの実行" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1442 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1447 msgid "NCM devices" msgstr "NCM デバイス" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1456 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1461 msgid "NCM templates" msgstr "NCM テンプレート" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1470 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1475 msgid "Registered vendors" msgstr "登録ベンダ" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1484 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1489 msgid "Registered models" msgstr "登録モデル" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1498 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1503 msgid "Registered snippets" msgstr "登録スニペット" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1512 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1517 msgid "Registered firmwares" msgstr "登録ファームウエア" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1548 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1553 msgid "No agents with NCM features enabled yet" msgstr "NCM 機能が有効になっているエージェントがありません" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1679 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2189 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2240 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1684 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2194 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2245 #, php-format msgid "Template not found: %s" msgstr "テンプレートが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1709 msgid "Template created" msgstr "テンプレートを作成しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1704 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1709 msgid "Template updated" msgstr "テンプレートを更新しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1725 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1807 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1901 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1992 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2131 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2792 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1453 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1730 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1812 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1906 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1997 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2136 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2797 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1454 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5358 -#: ../../include/functions_reporting.php:5386 +#: ../../include/functions_reporting.php:5462 +#: ../../include/functions_reporting.php:5490 #, php-format msgid "Error: %s" msgstr "エラー: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1770 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2314 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1775 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2319 #, php-format msgid "Vendor not found: %s" msgstr "ベンダが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1788 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1878 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1973 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2067 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1793 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1883 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1978 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2072 #: ../../include/class/CalendarManager.class.php:538 #: ../../include/class/CalendarManager.class.php:895 msgid "Failed to create" msgstr "作成に失敗しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1801 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1806 msgid "Failed saving vendor: " msgstr "ベンダの保存に失敗しました: " -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1860 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1865 #, php-format msgid "model not found: %s" msgstr "モデルが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1882 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2653 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1887 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2658 msgid "you must select a valid vendor" msgstr "正しいベンダを選択する必要があります。" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1895 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1900 msgid "Failed saving model: " msgstr "モデルの保存に失敗しました: " -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1955 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1960 #, php-format msgid "snippet not found: %s" msgstr "スニペットが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:1986 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:1991 msgid "Failed saving snippet: " msgstr "スニペットを保存できませんでした" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2049 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2054 #, php-format msgid "firmware not found: %s" msgstr "ファームウエアが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2076 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2081 msgid "Firmware file missing" msgstr "ファームウエアファイルがありません" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2089 -#: ../../enterprise/include/class/AgentRepository.class.php:482 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2094 +#: ../../enterprise/include/class/AgentRepository.class.php:491 msgid "Cannot create target dir [" msgstr "対象ディレクトリを作成できません [" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2108 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2113 #, php-format msgid "Failed to store file in %s" msgstr "%s へのファイルの保存に失敗しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2125 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2130 msgid "Failed saving firmware: " msgstr "ファームウエアの保存に失敗しました: " -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2152 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2157 msgid "" "Upload only official binary files from your device provide in raw format (not " "compressed)" @@ -26067,54 +26689,54 @@ msgstr "" "デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロード" "してください" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2201 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2206 #: ../../godmode/modules/manage_network_templates.php:83 msgid "Template successfully deleted" msgstr "テンプレートを削除しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2256 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2261 msgid "Template successfully duplicated" msgstr "テンプレートを複製しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2279 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2284 #, php-format msgid "Model not found: %s" msgstr "モデルが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2291 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2296 msgid "Model successfully deleted" msgstr "モデルを削除しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2326 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2331 msgid "Vendor successfully deleted" msgstr "ベンダを削除しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2349 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2354 #, php-format msgid "Snippet not found: %s" msgstr "スニペットが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2361 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2366 msgid "Snippet successfully deleted" msgstr "スニペットを削除しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2384 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2389 #, php-format msgid "Firmware not found: %s" msgstr "ファームウエアが見つかりません: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2396 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2401 msgid "Firmware successfully deleted" msgstr "ファームウエアを削除しました" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2475 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2480 msgid "" "Not executed yet, no content to display, define your own in following textarea." msgstr "" "まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定" "義してください。" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2484 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2489 msgid "" "Following content is already queued to be executed! You must wait until " "execution is finished before being able to modify this." @@ -26122,51 +26744,51 @@ msgstr "" "以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了" "するまで待つ必要があります。" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2576 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2581 msgid "Check progress" msgstr "進捗確認" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2585 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2590 #, php-format msgid "Script scheduled %s %s" msgstr "計画スクリプト %s %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2643 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2648 #, php-format msgid "Error retrieving template: %s" msgstr "テンプレート取得エラー: %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2649 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2654 msgid "you must select a template" msgstr "テンプレートを選択する必要があります" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2651 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2656 msgid "you must select a valid model" msgstr "正しいモデルを選択する必要があります。" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2655 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2660 msgid "you must select a valid port" msgstr "正しいポートを選択する必要があります。" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2689 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2694 #, php-format msgid "Failed to update%s" msgstr "アップデートに失敗しました %s" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2721 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2726 msgid "No configuration registers to backup" msgstr "バックアップのための設定レジスタがありません" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2729 -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2745 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2734 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2750 msgid "Successfully backed up" msgstr "バックアップしました: " -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2780 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2785 msgid "Invalid id given" msgstr "不正な ID 指定です" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2815 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2820 msgid "" "Is highly recommendable to execute this kind of operation from agent details " "to preview the script content" @@ -26174,17 +26796,17 @@ msgstr "" "エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューする" "ことを強くお勧めします" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2824 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2829 msgid "This operation is not ready yet! Keep up to date with latest updates" msgstr "" "この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくだ" "さい" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2833 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2838 msgid "Invalid action" msgstr "不正なアクション" -#: ../../enterprise/include/class/NetworkConfigManager.class.php:2853 +#: ../../enterprise/include/class/NetworkConfigManager.class.php:2858 msgid "Failed to schedule action." msgstr "スケジュールアクションに失敗しました" @@ -26208,210 +26830,245 @@ msgstr "エージェントバージョンが必要です" msgid "This version already exists" msgstr "このバージョンはすでに存在します" -#: ../../enterprise/include/class/AgentRepository.class.php:499 +#: ../../enterprise/include/class/AgentRepository.class.php:475 +msgid "The Version, OS and Architecture already exists." +msgstr "このバージョン、OS、アーキテクチャはすでに存在します" + +#: ../../enterprise/include/class/AgentRepository.class.php:508 #, php-format msgid "Invalid installation file for %s" msgstr "%s 向けに不正なインストールファイルです" -#: ../../enterprise/include/class/AgentRepository.class.php:542 +#: ../../enterprise/include/class/AgentRepository.class.php:551 msgid "Installation files not modified" msgstr "インストールファイルが編集されていません" -#: ../../enterprise/include/class/AgentRepository.class.php:564 +#: ../../enterprise/include/class/AgentRepository.class.php:573 msgid "Installation files updated" msgstr "インストールファイルをアップロードしました" -#: ../../enterprise/include/class/AgentRepository.class.php:571 +#: ../../enterprise/include/class/AgentRepository.class.php:580 msgid "You must provide installation files to create a new entry." msgstr "新規エントリを作成するにはインストールファイルを提供する必要があります。" -#: ../../enterprise/include/class/AgentRepository.class.php:592 +#: ../../enterprise/include/class/AgentRepository.class.php:601 msgid "This agent has been already defined." msgstr "このエージェントはすでに定義済です。" -#: ../../enterprise/include/class/AgentRepository.class.php:608 +#: ../../enterprise/include/class/AgentRepository.class.php:617 msgid "Agent successfully registered and uploaded" msgstr "エージェントを登録しアップロードしました" -#: ../../enterprise/include/class/AgentRepository.class.php:688 +#: ../../enterprise/include/class/AgentRepository.class.php:715 msgid "Uploaded by" msgstr "アップロード:" -#: ../../enterprise/include/class/AgentRepository.class.php:689 +#: ../../enterprise/include/class/AgentRepository.class.php:716 msgid "Upload date" msgstr "アップロード日時" -#: ../../enterprise/include/class/AgentRepository.class.php:771 +#: ../../enterprise/include/class/AgentRepository.class.php:799 msgid "Add new software" msgstr "新規ソフトウエアの追加" -#: ../../enterprise/include/class/AgentRepository.class.php:828 +#: ../../enterprise/include/class/AgentRepository.class.php:861 +#: ../../include/class/EventSound.class.php:117 msgid "File is too large to upload. Check the configuration in php.ini." msgstr "アプロードするファイルが大きすぎます。php.ini の設定を確認してください。" -#: ../../enterprise/include/class/AgentRepository.class.php:969 +#: ../../enterprise/include/class/AgentRepository.class.php:1002 msgid "Add new Software agent" msgstr "新規ソフトウエアエージェントの追加" -#: ../../enterprise/include/class/AgentRepository.class.php:972 +#: ../../enterprise/include/class/AgentRepository.class.php:1005 msgid "Update Software agent" msgstr "ソフトウエアエージェントの更新" -#: ../../enterprise/include/class/Omnishell.class.php:214 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:414 +#: ../../enterprise/include/class/Omnishell.class.php:220 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:440 msgid "Please follow the wizard." msgstr "ウィザードに従ってください。" -#: ../../enterprise/include/class/Omnishell.class.php:226 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:427 +#: ../../enterprise/include/class/Omnishell.class.php:232 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:453 msgid "You have no acess to edit this command." msgstr "このコマンドを編集する権限がありません。" -#: ../../enterprise/include/class/Omnishell.class.php:261 +#: ../../enterprise/include/class/Omnishell.class.php:267 msgid "Failed to save command." msgstr "コメントを保存できませんでした" -#: ../../enterprise/include/class/Omnishell.class.php:272 +#: ../../enterprise/include/class/Omnishell.class.php:278 msgid "Command not found." msgstr "コマンドが見つかりません。" -#: ../../enterprise/include/class/Omnishell.class.php:319 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:720 +#: ../../enterprise/include/class/Omnishell.class.php:325 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:746 #: ../../include/class/HelpFeedBack.class.php:100 msgid "Page not found" msgstr "ページが見つかりません" -#: ../../enterprise/include/class/Omnishell.class.php:349 -#: ../../enterprise/include/class/Omnishell.class.php:612 +#: ../../enterprise/include/class/Omnishell.class.php:356 +#: ../../enterprise/include/class/Omnishell.class.php:616 +#: ../../enterprise/include/class/Omnishell.class.php:790 msgid "You must install php-yaml in order to use this feature." msgstr "この機能を利用するには php-yaml をインストールする必要があります。" -#: ../../enterprise/include/class/Omnishell.class.php:364 +#: ../../enterprise/include/class/Omnishell.class.php:371 msgid "Not Started" msgstr "未開始" -#: ../../enterprise/include/class/Omnishell.class.php:442 +#: ../../enterprise/include/class/Omnishell.class.php:449 msgid "Commands status" msgstr "コマンド状態" -#: ../../enterprise/include/class/Omnishell.class.php:487 +#: ../../enterprise/include/class/Omnishell.class.php:490 msgid "Create command" msgstr "コマンド作成" -#: ../../enterprise/include/class/Omnishell.class.php:506 +#: ../../enterprise/include/class/Omnishell.class.php:515 msgid "Selected command definitions will be erased" msgstr "選択したコマンド定義は削除されます" -#: ../../enterprise/include/class/Omnishell.class.php:690 +#: ../../enterprise/include/class/Omnishell.class.php:593 +#: ../../enterprise/include/class/Omnishell.class.php:1636 +msgid "Detailed view" +msgstr "詳細表示" + +#: ../../enterprise/include/class/Omnishell.class.php:602 +#: ../../enterprise/include/class/Omnishell.class.php:1627 +msgid "Agent list" +msgstr "エージェント一覧" + +#: ../../enterprise/include/class/Omnishell.class.php:704 +msgid "Selected agents will be erased from the command" +msgstr "選択したエージェントはコマンドから削除されます" + +#: ../../enterprise/include/class/Omnishell.class.php:871 msgid "Time out" msgstr "タイムアウト" -#: ../../enterprise/include/class/Omnishell.class.php:699 +#: ../../enterprise/include/class/Omnishell.class.php:880 msgid "Retries " msgstr "リトライ " -#: ../../enterprise/include/class/Omnishell.class.php:710 +#: ../../enterprise/include/class/Omnishell.class.php:891 msgid "Preconditions " msgstr "前提条件 " -#: ../../enterprise/include/class/Omnishell.class.php:711 +#: ../../enterprise/include/class/Omnishell.class.php:892 msgid "All commands defined line per line must success to execute main commands" msgstr "" "メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要" "があります" -#: ../../enterprise/include/class/Omnishell.class.php:723 +#: ../../enterprise/include/class/Omnishell.class.php:904 msgid "Execute commands " msgstr "コマンド実行 " -#: ../../enterprise/include/class/Omnishell.class.php:724 +#: ../../enterprise/include/class/Omnishell.class.php:905 msgid "Define as many lines as commands you want to execute" msgstr "実行するコマンドの数だけ行を定義します" -#: ../../enterprise/include/class/Omnishell.class.php:736 +#: ../../enterprise/include/class/Omnishell.class.php:917 msgid "Postconditions " msgstr "前提条件 " -#: ../../enterprise/include/class/Omnishell.class.php:737 +#: ../../enterprise/include/class/Omnishell.class.php:918 msgid "" "All commands defined line per line must success to consider command success" msgstr "" "コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要が" "あります" -#: ../../enterprise/include/class/Omnishell.class.php:1159 +#: ../../enterprise/include/class/Omnishell.class.php:1347 +msgid "Show agent list" +msgstr "エージェント一覧表示" + +#: ../../enterprise/include/class/Omnishell.class.php:1392 msgid "Selected command definition will be erased" msgstr "選択したコマンド定義は削除されます" -#: ../../enterprise/include/class/Omnishell.class.php:1245 +#: ../../enterprise/include/class/Omnishell.class.php:1501 +#: ../../enterprise/include/class/Omnishell.class.php:1949 +msgid "Cannot use commands without YAML dependency, please install it." +msgstr "" +"YAML の依存ファイルが無いとコマンドを利用できません。インストールしてください。" + +#: ../../enterprise/include/class/Omnishell.class.php:1527 +msgid "Selected agent will be deleted from the command" +msgstr "選択したエージェントはコマンドから削除されます" + +#: ../../enterprise/include/class/Omnishell.class.php:1617 msgid "Command viewer" msgstr "コマンドビューワ" -#: ../../enterprise/include/class/Omnishell.class.php:1253 -msgid "Detailed view" -msgstr "詳細表示" - -#: ../../enterprise/include/class/Omnishell.class.php:1394 +#: ../../enterprise/include/class/Omnishell.class.php:1786 msgid "Not an array of ids" msgstr "ID の配列ではありません" -#: ../../enterprise/include/class/Omnishell.class.php:1452 +#: ../../enterprise/include/class/Omnishell.class.php:1902 msgid "There are no targets for this remote command" msgstr "このリモートコマンドの対象がありません" -#: ../../enterprise/include/class/Omnishell.class.php:1459 +#: ../../enterprise/include/class/Omnishell.class.php:1909 msgid "Command does not exist" msgstr "コマンドが存在しません" -#: ../../enterprise/include/class/Omnishell.class.php:1558 +#: ../../enterprise/include/class/Omnishell.class.php:2012 +#: ../../enterprise/include/class/Omnishell.class.php:2015 msgid "timed out" msgstr "タイムアウトしました" -#: ../../enterprise/include/class/Omnishell.class.php:1561 +#: ../../enterprise/include/class/Omnishell.class.php:2014 +msgid "Dependency error" +msgstr "依存関係エラー" + +#: ../../enterprise/include/class/Omnishell.class.php:2018 msgid "failed" msgstr "失敗" -#: ../../enterprise/include/class/Omnishell.class.php:1577 +#: ../../enterprise/include/class/Omnishell.class.php:2034 msgid "Waiting results..." msgstr "結果待ち..." -#: ../../enterprise/include/class/Omnishell.class.php:1596 +#: ../../enterprise/include/class/Omnishell.class.php:2053 msgid "RCMD does not exist" msgstr "RCMD が存在しません" -#: ../../enterprise/include/class/LogSource.class.php:455 +#: ../../enterprise/include/class/LogSource.class.php:431 msgid "Source is required" msgstr "ソースが必要です" -#: ../../enterprise/include/class/LogSource.class.php:562 +#: ../../enterprise/include/class/LogSource.class.php:538 msgid "id cannot be empty" msgstr "ID は空にできません" -#: ../../enterprise/include/class/LogSource.class.php:567 -#: ../../include/class/CredentialStore.class.php:785 +#: ../../enterprise/include/class/LogSource.class.php:543 +#: ../../include/class/CredentialStore.class.php:759 msgid "Not allowed" msgstr "許可されません" -#: ../../enterprise/include/class/LogSource.class.php:611 -#: ../../include/class/CredentialStore.class.php:824 +#: ../../enterprise/include/class/LogSource.class.php:587 +#: ../../include/class/CredentialStore.class.php:798 msgid "How to configure encryption." msgstr "暗号化の設定方法。" -#: ../../enterprise/include/class/LogSource.class.php:610 +#: ../../enterprise/include/class/LogSource.class.php:586 #, php-format msgid "Log monitoring is disabled. %s" msgstr "ログ監視が無効です。%s" -#: ../../enterprise/include/class/LogSource.class.php:680 -#: ../../enterprise/include/class/LogSource.class.php:846 +#: ../../enterprise/include/class/LogSource.class.php:658 +#: ../../enterprise/include/class/LogSource.class.php:825 msgid "Add log source" msgstr "ログソースを追加" -#: ../../enterprise/include/class/LogSource.class.php:715 +#: ../../enterprise/include/class/LogSource.class.php:694 msgid "Source name" msgstr "ソース名" -#: ../../enterprise/include/class/LogSource.class.php:850 +#: ../../enterprise/include/class/LogSource.class.php:829 msgid "Update log source" msgstr "ログソース更新" @@ -26434,11 +27091,11 @@ msgstr "自動検出.アプリケーション.DB2" msgid "Failed to find discovery DB2 task." msgstr "自動検出 DB2 タスクを見つけられませんでした。" -#: ../../enterprise/include/class/DB2.app.php:486 +#: ../../enterprise/include/class/DB2.app.php:494 msgid "DB2 target strings" msgstr "DB2 対象文字列" -#: ../../enterprise/include/class/DB2.app.php:487 +#: ../../enterprise/include/class/DB2.app.php:495 msgid "" "SERVER:PORT/DATABASE, comma separated or line by line, as many targets as you " "need." @@ -26446,22 +27103,22 @@ msgstr "" "SERVER:PORT/DATABASE で、カンマ区切りまたは行ごとに必要な数のターゲッを設定しま" "す。" -#: ../../enterprise/include/class/DB2.app.php:487 -#: ../../enterprise/include/class/Oracle.app.php:494 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +#: ../../enterprise/include/class/DB2.app.php:495 +#: ../../enterprise/include/class/Oracle.app.php:502 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:506 msgid "Use # symbol to comment a line." msgstr "コメント行には # を使います。" -#: ../../enterprise/include/class/DB2.app.php:635 -#: ../../enterprise/include/class/MySQL.app.php:657 -#: ../../enterprise/include/class/Oracle.app.php:642 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:636 +#: ../../enterprise/include/class/DB2.app.php:646 +#: ../../enterprise/include/class/MySQL.app.php:668 +#: ../../enterprise/include/class/Oracle.app.php:653 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:657 msgid "Target agent" msgstr "対象エージェント" -#: ../../enterprise/include/class/DB2.app.php:636 -#: ../../enterprise/include/class/Oracle.app.php:643 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:637 +#: ../../enterprise/include/class/DB2.app.php:647 +#: ../../enterprise/include/class/Oracle.app.php:654 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:658 msgid "" "Defines a target agent where this task will store data detected, if you have " "defined multiple targets, define a comma separated list of names here or leave " @@ -26471,17 +27128,17 @@ msgstr "" "定義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象" "を名前として使用します。" -#: ../../enterprise/include/class/DB2.app.php:655 -#: ../../enterprise/include/class/MySQL.app.php:677 -#: ../../enterprise/include/class/Oracle.app.php:662 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:656 +#: ../../enterprise/include/class/DB2.app.php:666 +#: ../../enterprise/include/class/MySQL.app.php:688 +#: ../../enterprise/include/class/Oracle.app.php:673 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:677 msgid "Custom module prefix" msgstr "カスタムモジュールプレフィックス" -#: ../../enterprise/include/class/DB2.app.php:656 -#: ../../enterprise/include/class/MySQL.app.php:678 -#: ../../enterprise/include/class/Oracle.app.php:663 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:657 +#: ../../enterprise/include/class/DB2.app.php:667 +#: ../../enterprise/include/class/MySQL.app.php:689 +#: ../../enterprise/include/class/Oracle.app.php:674 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:678 msgid "" "Defines a custom prefix to be concatenated before module names generated by " "this task." @@ -26489,46 +27146,46 @@ msgstr "" "このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックス" "を定義します。" -#: ../../enterprise/include/class/DB2.app.php:674 +#: ../../enterprise/include/class/DB2.app.php:685 msgid "Get database summary" msgstr "データベース概要の取得" -#: ../../enterprise/include/class/DB2.app.php:690 +#: ../../enterprise/include/class/DB2.app.php:701 msgid "Check transactional log utilization" msgstr "トランザクションログ使用率の確認" -#: ../../enterprise/include/class/DB2.app.php:706 +#: ../../enterprise/include/class/DB2.app.php:717 msgid "Get number of connections" msgstr "接続数の取得" -#: ../../enterprise/include/class/DB2.app.php:722 +#: ../../enterprise/include/class/DB2.app.php:733 msgid "Check DB size" msgstr "DB サイズ確認" -#: ../../enterprise/include/class/DB2.app.php:738 -#: ../../enterprise/include/class/MySQL.app.php:822 -#: ../../enterprise/include/class/Oracle.app.php:761 +#: ../../enterprise/include/class/DB2.app.php:749 +#: ../../enterprise/include/class/MySQL.app.php:833 +#: ../../enterprise/include/class/Oracle.app.php:772 msgid "Retrieve cache statistics" msgstr "キャッシュ統計の取得" -#: ../../enterprise/include/class/DB2.app.php:754 -#: ../../enterprise/include/class/MySQL.app.php:838 -#: ../../enterprise/include/class/Oracle.app.php:777 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:723 +#: ../../enterprise/include/class/DB2.app.php:765 +#: ../../enterprise/include/class/MySQL.app.php:849 +#: ../../enterprise/include/class/Oracle.app.php:788 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:744 msgid "Execute custom queries" msgstr "カスタムクエリの実行" -#: ../../enterprise/include/class/DB2.app.php:822 -#: ../../enterprise/include/class/MySQL.app.php:890 -#: ../../enterprise/include/class/Oracle.app.php:931 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:775 +#: ../../enterprise/include/class/DB2.app.php:833 +#: ../../enterprise/include/class/MySQL.app.php:901 +#: ../../enterprise/include/class/Oracle.app.php:942 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:796 msgid "Custom queries" msgstr "カスタムクエリ" -#: ../../enterprise/include/class/DB2.app.php:823 -#: ../../enterprise/include/class/MySQL.app.php:891 -#: ../../enterprise/include/class/Oracle.app.php:932 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:776 +#: ../../enterprise/include/class/DB2.app.php:834 +#: ../../enterprise/include/class/MySQL.app.php:902 +#: ../../enterprise/include/class/Oracle.app.php:943 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:797 msgid "Define here your custom queries." msgstr "ここにカスタムクエリを定義します。" @@ -26537,7 +27194,7 @@ msgid "Aws S3" msgstr "AWS S3" #: ../../enterprise/include/class/Aws.S3.php:166 -#: ../../enterprise/include/class/Aws.cloud.php:886 +#: ../../enterprise/include/class/Aws.cloud.php:900 #: ../../include/class/CustomNetScan.class.php:134 msgid "This task has been already defined. Please edit it or create a new one." msgstr "このタスクはすでに定義済です。これを編集するか新たに作成してください。" @@ -26566,19 +27223,19 @@ msgstr "S3" msgid "Bucket monitoring" msgstr "バケット監視" -#: ../../enterprise/include/class/Aws.S3.php:454 +#: ../../enterprise/include/class/Aws.S3.php:461 msgid "No buckets found." msgstr "バケットがありません。" -#: ../../enterprise/include/class/Aws.S3.php:598 +#: ../../enterprise/include/class/Aws.S3.php:604 msgid "Select Buckets to be monitored" msgstr "監視するバケットを選択" -#: ../../enterprise/include/class/Aws.S3.php:634 +#: ../../enterprise/include/class/Aws.S3.php:640 msgid "Monitor bucket size" msgstr "監視バケットサイズ" -#: ../../enterprise/include/class/Aws.S3.php:644 +#: ../../enterprise/include/class/Aws.S3.php:650 msgid "Monitor bucket total items" msgstr "監視バケット全アイテム" @@ -26590,7 +27247,7 @@ msgstr "CSV ファイルは次の順番のフィールドでなければいけ msgid "Agent alias, IP address, OS id, Interval, Group id, Description" msgstr "エージェント別名, IPアドレス, OS ID, 間隔, グループID, 説明" -#: ../../enterprise/include/class/CSVImportAgents.class.php:127 +#: ../../enterprise/include/class/CSVImportAgents.class.php:128 msgid "" "Warning, this CSV importer will not perform any discovery, it will only create " "empty agents with the name, IP, OS type, description and group provided in the " @@ -26599,45 +27256,45 @@ msgstr "" "警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、" "IP、OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。" -#: ../../enterprise/include/class/CSVImportAgents.class.php:179 +#: ../../enterprise/include/class/CSVImportAgents.class.php:182 msgid "Alias as name" msgstr "名前としての別名" -#: ../../enterprise/include/class/CSVImportAgents.class.php:244 +#: ../../enterprise/include/class/CSVImportAgents.class.php:253 msgid "No data or wrong separator" msgstr "データが無いか不正なセパレータ" -#: ../../enterprise/include/class/CSVImportAgents.class.php:250 +#: ../../enterprise/include/class/CSVImportAgents.class.php:259 #, php-format msgid "Agent %s duplicated." msgstr "エージェント %s が重複しています。" -#: ../../enterprise/include/class/CSVImportAgents.class.php:257 +#: ../../enterprise/include/class/CSVImportAgents.class.php:266 #, php-format msgid "Id group %s doesn't exist in %s" msgstr "グループ ID %s は %s に存在しません" -#: ../../enterprise/include/class/CSVImportAgents.class.php:265 +#: ../../enterprise/include/class/CSVImportAgents.class.php:274 msgid "General failure." msgstr "一般的な失敗。" -#: ../../enterprise/include/class/CSVImportAgents.class.php:286 +#: ../../enterprise/include/class/CSVImportAgents.class.php:295 msgid "No input file detected" msgstr "入力ファイルがありません" -#: ../../enterprise/include/class/CSVImportAgents.class.php:375 +#: ../../enterprise/include/class/CSVImportAgents.class.php:387 msgid "Agent processed successfully" msgstr "エージェントの処理をしました" -#: ../../enterprise/include/class/CSVImportAgents.class.php:381 +#: ../../enterprise/include/class/CSVImportAgents.class.php:393 msgid "Some errors while processing CSV." msgstr "CSV 処理中にエラーです。" -#: ../../enterprise/include/class/CSVImportAgents.class.php:384 +#: ../../enterprise/include/class/CSVImportAgents.class.php:396 msgid "All agents processed correctly" msgstr "全エージェントを正しく処理しました。" -#: ../../enterprise/include/class/CSVImportAgents.class.php:391 +#: ../../enterprise/include/class/CSVImportAgents.class.php:403 #, php-format msgid "Line %s" msgstr "行 %s" @@ -26655,6 +27312,11 @@ msgstr "SAP データがありません。" msgid "Refresh Every" msgstr "更新間隔:" +#: ../../enterprise/include/class/SAPView.class.php:259 +#: ../../enterprise/include/class/SAPView.class.php:296 +msgid "The minimum recomended interval is 5 minutes" +msgstr "推奨される最小間隔は 5分です" + #: ../../enterprise/include/class/SAPView.class.php:295 msgid "Graph Interval" msgstr "グラフ間隔" @@ -26677,126 +27339,130 @@ msgstr "SAP インフラを監視するためです。" msgid "Discover SAP" msgstr "自動検出 SAP" -#: ../../enterprise/include/class/SAP.app.php:154 +#: ../../enterprise/include/class/SAP.app.php:155 msgid "" "This SAP configuration has been already defined. Please edit it or create a " "new one." msgstr "" "この SAP 設定はすでに定義済です。 編集するか、新しいものを作成してください。" -#: ../../enterprise/include/class/SAP.app.php:195 +#: ../../enterprise/include/class/SAP.app.php:197 msgid "You must specify at last one SAP hostname." msgstr "少なくとも 1つの SAP ホスト名を指定する必要があります。" -#: ../../enterprise/include/class/SAP.app.php:206 +#: ../../enterprise/include/class/SAP.app.php:208 msgid "Discovery.Application.SAP" msgstr "自動検出.アプリケーション.SAP" -#: ../../enterprise/include/class/SAP.app.php:262 +#: ../../enterprise/include/class/SAP.app.php:265 msgid "Failed to find discovery SAP task." msgstr "自動検出 SAP タスクを見つけられませんでした。" -#: ../../enterprise/include/class/SAP.app.php:286 +#: ../../enterprise/include/class/SAP.app.php:289 msgid "Select at least a module." msgstr "少なくとも一つのモジュールを選択してください。" -#: ../../enterprise/include/class/SAP.app.php:354 +#: ../../enterprise/include/class/SAP.app.php:357 msgid "SAP R3" msgstr "SAP R3" -#: ../../enterprise/include/class/SAP.app.php:547 +#: ../../enterprise/include/class/SAP.app.php:536 msgid "SAP Hostname" msgstr "SAP ホスト名" -#: ../../enterprise/include/class/SAP.app.php:571 +#: ../../enterprise/include/class/SAP.app.php:560 msgid "SAP Client" msgstr "SAP クライアント" -#: ../../enterprise/include/class/SAP.app.php:585 +#: ../../enterprise/include/class/SAP.app.php:574 msgid "SAP System Number" msgstr "SAP システム番号" -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 +#: ../../enterprise/include/class/SAP.app.php:606 +#: ../../enterprise/include/class/SAP.app.php:620 msgid "SAP Credentials" msgstr "SAP 認証情報" -#: ../../enterprise/include/class/SAP.app.php:617 -#: ../../enterprise/include/class/SAP.app.php:631 +#: ../../enterprise/include/class/SAP.app.php:606 +#: ../../enterprise/include/class/SAP.app.php:620 msgid "Optional" msgstr "オプション" -#: ../../enterprise/include/class/SAP.app.php:728 -#: ../../include/functions_agents.php:4021 +#: ../../enterprise/include/class/SAP.app.php:651 +msgid "SAP License" +msgstr "SAP ライセンス" + +#: ../../enterprise/include/class/SAP.app.php:747 +#: ../../include/functions_agents.php:4095 msgid "SAP Login OK" msgstr "SAP ログイン OK" -#: ../../enterprise/include/class/SAP.app.php:729 -#: ../../include/functions_agents.php:4022 +#: ../../enterprise/include/class/SAP.app.php:748 +#: ../../include/functions_agents.php:4096 msgid "SAP Dumps" msgstr "SAP ダンプ" -#: ../../enterprise/include/class/SAP.app.php:730 -#: ../../include/functions_agents.php:4023 +#: ../../enterprise/include/class/SAP.app.php:749 +#: ../../include/functions_agents.php:4097 msgid "SAP lock entry list" msgstr "SAP ロックエントリー一覧" -#: ../../enterprise/include/class/SAP.app.php:731 -#: ../../include/functions_agents.php:4024 +#: ../../enterprise/include/class/SAP.app.php:750 +#: ../../include/functions_agents.php:4098 msgid "SAP canceled Jobs" msgstr "SAP キャンセルジョブ" -#: ../../enterprise/include/class/SAP.app.php:732 -#: ../../include/functions_agents.php:4025 +#: ../../enterprise/include/class/SAP.app.php:751 +#: ../../include/functions_agents.php:4099 msgid "SAP Batch inputs erroneous" msgstr "SAPバッチ入力に誤りがあります" -#: ../../enterprise/include/class/SAP.app.php:733 -#: ../../include/functions_agents.php:4026 +#: ../../enterprise/include/class/SAP.app.php:752 +#: ../../include/functions_agents.php:4100 msgid "SAP IDOC erroneous" msgstr "SAP IDOC に誤りがあります" -#: ../../enterprise/include/class/SAP.app.php:734 -#: ../../include/functions_agents.php:4027 +#: ../../enterprise/include/class/SAP.app.php:753 +#: ../../include/functions_agents.php:4101 msgid "SAP IDOC OK" msgstr "SAP IDOC OK" -#: ../../enterprise/include/class/SAP.app.php:735 -#: ../../include/functions_agents.php:4028 +#: ../../enterprise/include/class/SAP.app.php:754 +#: ../../include/functions_agents.php:4102 msgid "SAP WP without active restart" msgstr "アクティブな再起動なしの SAP WP" -#: ../../enterprise/include/class/SAP.app.php:736 -#: ../../include/functions_agents.php:4029 +#: ../../enterprise/include/class/SAP.app.php:755 +#: ../../include/functions_agents.php:4103 msgid "SAP WP stopped" msgstr "SAP WP が停止しました" -#: ../../enterprise/include/class/SAP.app.php:737 -#: ../../include/functions_agents.php:4030 +#: ../../enterprise/include/class/SAP.app.php:756 +#: ../../include/functions_agents.php:4104 msgid "Average time of SAPGUI response" msgstr "SAPGUI 応答の平均時間" -#: ../../enterprise/include/class/SAP.app.php:738 -#: ../../include/functions_agents.php:4032 +#: ../../enterprise/include/class/SAP.app.php:757 +#: ../../include/functions_agents.php:4106 msgid "Dialog Logged users" msgstr "ダイアログログユーザ" -#: ../../enterprise/include/class/SAP.app.php:739 -#: ../../include/functions_agents.php:4033 +#: ../../enterprise/include/class/SAP.app.php:758 +#: ../../include/functions_agents.php:4107 msgid "TRFC in error" msgstr "エラー TRFC" -#: ../../enterprise/include/class/SAP.app.php:740 -#: ../../include/functions_agents.php:4034 +#: ../../enterprise/include/class/SAP.app.php:759 +#: ../../include/functions_agents.php:4108 msgid "QRFC in error SMQ2" msgstr "SMQ2 エラーの QRFC" -#: ../../enterprise/include/class/SAP.app.php:741 -#: ../../include/functions_agents.php:4035 +#: ../../enterprise/include/class/SAP.app.php:760 +#: ../../include/functions_agents.php:4109 msgid "Number of Update WPs in error" msgstr "エラーアップデート WP 数" -#: ../../enterprise/include/class/SAP.app.php:765 +#: ../../enterprise/include/class/SAP.app.php:784 #, php-format msgid "" "Module 180 must be customized before being used, please use advanced options " @@ -26805,39 +27471,40 @@ msgstr "" "モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを" "使用して、ドキュメントに従ってモジュールを定義してください。
%s" -#: ../../enterprise/include/class/SAP.app.php:786 +#: ../../enterprise/include/class/SAP.app.php:805 +#: ../../godmode/agentes/planned_downtime.editor.php:1257 msgid "Available modules" msgstr "存在するモジュール" -#: ../../enterprise/include/class/SAP.app.php:822 +#: ../../enterprise/include/class/SAP.app.php:829 msgid "Add monitors" msgstr "監視追加" -#: ../../enterprise/include/class/SAP.app.php:835 +#: ../../enterprise/include/class/SAP.app.php:842 msgid "Remove monitors" msgstr "監視削除" -#: ../../enterprise/include/class/SAP.app.php:846 -#: ../../enterprise/operation/services/massive/services.create.php:1259 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:270 -#: ../../enterprise/operation/services/massive/service.create.elements.php:616 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:379 +#: ../../enterprise/include/class/SAP.app.php:853 +#: ../../enterprise/operation/services/massive/services.create.php:1321 +#: ../../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:886 +#: ../../enterprise/include/class/SAP.app.php:893 msgid "Define your custom SAP modules." msgstr "カスタム SAP モジュールを定義してください。" -#: ../../enterprise/include/class/SAP.app.php:885 +#: ../../enterprise/include/class/SAP.app.php:892 msgid "Advanced module configuration" msgstr "高度なモジュール設定" -#: ../../enterprise/include/class/SAP.app.php:895 +#: ../../enterprise/include/class/SAP.app.php:902 msgid "Custom module definitions" msgstr "カスタムモジュール定義" -#: ../../enterprise/include/class/SAP.app.php:896 +#: ../../enterprise/include/class/SAP.app.php:903 msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." @@ -26846,7 +27513,7 @@ msgstr "" "プ ; SAPチェック定義" #: ../../enterprise/include/class/Aws.cloud.php:118 -#: ../../include/class/CredentialStore.class.php:984 +#: ../../include/class/CredentialStore.class.php:960 msgid "Aws" msgstr "AWS" @@ -26862,56 +27529,56 @@ msgstr "コスト" msgid "Instances" msgstr "インスタンス" -#: ../../enterprise/include/class/Aws.cloud.php:441 +#: ../../enterprise/include/class/Aws.cloud.php:424 msgid "Amazon EC2" msgstr "Amazon EC2" -#: ../../enterprise/include/class/Aws.cloud.php:446 +#: ../../enterprise/include/class/Aws.cloud.php:429 msgid "Amazon RDS" msgstr "Amazon RDS" -#: ../../enterprise/include/class/Aws.cloud.php:451 +#: ../../enterprise/include/class/Aws.cloud.php:434 msgid "S3 Buckets" msgstr "S3 バケット" -#: ../../enterprise/include/class/Aws.cloud.php:471 -#: ../../godmode/wizards/HostDevices.class.php:698 +#: ../../enterprise/include/class/Aws.cloud.php:456 +#: ../../godmode/wizards/HostDevices.class.php:702 msgid "NetScan" msgstr "ネットスキャン" -#: ../../enterprise/include/class/Aws.cloud.php:510 +#: ../../enterprise/include/class/Aws.cloud.php:498 msgid "Discovery task name" msgstr "自動検出タスク名" -#: ../../enterprise/include/class/Aws.cloud.php:614 +#: ../../enterprise/include/class/Aws.cloud.php:607 msgid "Total cost" msgstr "全体のコスト" -#: ../../enterprise/include/class/Aws.cloud.php:631 +#: ../../enterprise/include/class/Aws.cloud.php:624 msgid "Cost by region" msgstr "リージョンごとのコスト" -#: ../../enterprise/include/class/Aws.cloud.php:645 +#: ../../enterprise/include/class/Aws.cloud.php:638 msgid "Cost interval" msgstr "コスト間隔" -#: ../../enterprise/include/class/Aws.cloud.php:773 +#: ../../enterprise/include/class/Aws.cloud.php:776 msgid "Select EC2 instances" msgstr "EC2 インスタンスの選択" -#: ../../enterprise/include/class/Aws.cloud.php:789 +#: ../../enterprise/include/class/Aws.cloud.php:798 msgid "Storage" msgstr "ストレージ" -#: ../../enterprise/include/class/Aws.cloud.php:799 +#: ../../enterprise/include/class/Aws.cloud.php:808 msgid "Elastic IP Adresses" msgstr "Elastic IP アドレス" -#: ../../enterprise/include/class/Aws.cloud.php:982 +#: ../../enterprise/include/class/Aws.cloud.php:996 msgid "You must select at least one RDS instance." msgstr "少なくとも一つの RDS インスタンスを選択する必要があります。" -#: ../../enterprise/include/class/Aws.cloud.php:987 +#: ../../enterprise/include/class/Aws.cloud.php:1001 msgid "" "You cannot monitor RDS instances from different types. Please define several " "tasks for several types." @@ -26919,43 +27586,43 @@ msgstr "" "異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対" "してそれぞれのタスクを定義してください。" -#: ../../enterprise/include/class/Aws.cloud.php:994 +#: ../../enterprise/include/class/Aws.cloud.php:1008 msgid "Discovery.Cloud.AWS.RDS" msgstr "自動検出.クラウド.AWS.RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1160 +#: ../../enterprise/include/class/Aws.cloud.php:1177 msgid "RDS" msgstr "RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1165 +#: ../../enterprise/include/class/Aws.cloud.php:1182 msgid "DB monitoring" msgstr "DB 監視" -#: ../../enterprise/include/class/Aws.cloud.php:1175 +#: ../../enterprise/include/class/Aws.cloud.php:1192 msgid "AWS RDS" msgstr "AWS RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1249 +#: ../../enterprise/include/class/Aws.cloud.php:1268 msgid "Global DB User" msgstr "グローバル DB ユーザ" -#: ../../enterprise/include/class/Aws.cloud.php:1259 +#: ../../enterprise/include/class/Aws.cloud.php:1278 msgid "Global DB password" msgstr "グローバル DB パスワード" -#: ../../enterprise/include/class/Aws.cloud.php:1349 +#: ../../enterprise/include/class/Aws.cloud.php:1367 msgid "Select RDS instances" msgstr "RDS インスタンスの選択" -#: ../../enterprise/include/class/Aws.cloud.php:1653 +#: ../../enterprise/include/class/Aws.cloud.php:1683 msgid "Invalid group" msgstr "不正なグループ" -#: ../../enterprise/include/class/Aws.cloud.php:1711 +#: ../../enterprise/include/class/Aws.cloud.php:1741 msgid "Cannot update the recon database" msgstr "自動検出データベースを更新できません" -#: ../../enterprise/include/class/Aws.cloud.php:1733 +#: ../../enterprise/include/class/Aws.cloud.php:1763 msgid "Engine not supported" msgstr "エンジンがサポートされていません" @@ -26981,19 +27648,19 @@ msgstr "自動検出.アプリケーション.MySQL" msgid "Failed to find discovery MySQL task." msgstr "自動検出 MySQL タスクを見つけられませんでした。" -#: ../../enterprise/include/class/MySQL.app.php:491 +#: ../../enterprise/include/class/MySQL.app.php:499 msgid "MySQL server IP" msgstr "MySQL サーバ IP" -#: ../../enterprise/include/class/MySQL.app.php:492 +#: ../../enterprise/include/class/MySQL.app.php:500 msgid "Comma separated, as many targets as you need." msgstr "寒波区切りで、必要な数の対象。" -#: ../../enterprise/include/class/MySQL.app.php:511 +#: ../../enterprise/include/class/MySQL.app.php:519 msgid "MySQL server Port" msgstr "MySQL サーバポート" -#: ../../enterprise/include/class/MySQL.app.php:658 +#: ../../enterprise/include/class/MySQL.app.php:669 msgid "" "Defines a target agent where this task will store data detected, if you have " "defined multiple targets, define a comma separated list of names here or leave " @@ -27003,19 +27670,19 @@ msgstr "" "定義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレ" "ス/ FQDN を使用するために空白のままにします。" -#: ../../enterprise/include/class/MySQL.app.php:699 +#: ../../enterprise/include/class/MySQL.app.php:710 msgid "Scan databases" msgstr "データベーススキャン" -#: ../../enterprise/include/class/MySQL.app.php:715 +#: ../../enterprise/include/class/MySQL.app.php:726 msgid "Create agent per database" msgstr "データベースごとにエージェントを作成" -#: ../../enterprise/include/class/MySQL.app.php:736 +#: ../../enterprise/include/class/MySQL.app.php:747 msgid "Custom database agent prefix" msgstr "カスタムデータベースエージェントプレフィックス" -#: ../../enterprise/include/class/MySQL.app.php:737 +#: ../../enterprise/include/class/MySQL.app.php:748 msgid "" "Defines a custom prefix to be concatenated before database agent names " "generated by this task." @@ -27023,30 +27690,30 @@ msgstr "" "このタスクによって生成されるデータベースエージェント名の前に連結されるカスタム" "プレフィックスを定義します。" -#: ../../enterprise/include/class/MySQL.app.php:758 -#: ../../enterprise/include/class/Oracle.app.php:681 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:675 +#: ../../enterprise/include/class/MySQL.app.php:769 +#: ../../enterprise/include/class/Oracle.app.php:692 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:696 msgid "Check engine uptime" msgstr "エンジンの起動時間確認" -#: ../../enterprise/include/class/MySQL.app.php:774 -#: ../../enterprise/include/class/Oracle.app.php:697 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:691 +#: ../../enterprise/include/class/MySQL.app.php:785 +#: ../../enterprise/include/class/Oracle.app.php:708 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:712 msgid "Retrieve query statistics" msgstr "クエリ統計の取得" -#: ../../enterprise/include/class/MySQL.app.php:790 -#: ../../enterprise/include/class/Oracle.app.php:713 -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:707 +#: ../../enterprise/include/class/MySQL.app.php:801 +#: ../../enterprise/include/class/Oracle.app.php:724 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:728 msgid "Analyze connections" msgstr "接続分析" -#: ../../enterprise/include/class/MySQL.app.php:806 +#: ../../enterprise/include/class/MySQL.app.php:817 msgid "Retrieve InnoDB statistics" msgstr "InnoDB 統計の取得" #: ../../enterprise/include/class/Google.cloud.php:147 -#: ../../include/class/CredentialStore.class.php:987 +#: ../../include/class/CredentialStore.class.php:963 msgid "Google" msgstr "Google" @@ -27054,18 +27721,26 @@ msgstr "Google" msgid "Compute Engine" msgstr "コンピュートエンジン" -#: ../../enterprise/include/class/Google.cloud.php:877 +#: ../../enterprise/include/class/Google.cloud.php:880 msgid "This options only applies to zone (region) agents." msgstr "このオプションはゾーン(リージョン)エージェントにのみ適用されます。" -#: ../../enterprise/include/class/Google.cloud.php:890 +#: ../../enterprise/include/class/Google.cloud.php:893 msgid "Scan and general monitoring" msgstr "スキャンおよび一般的な監視" -#: ../../enterprise/include/class/Google.cloud.php:903 +#: ../../enterprise/include/class/Google.cloud.php:906 msgid "CPU performance summary" msgstr "CPU パフォーマンス概要" +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:131 +msgid "Search filter by Task field content" +msgstr "タスクフィールドの内容による検索フィルター" + +#: ../../enterprise/include/class/OmnishellTaskAgent.class.php:143 +msgid "FAILED" +msgstr "失敗" + #: ../../enterprise/include/class/Oracle.app.php:172 msgid "" "This Oracle configuration has been already defined. Please edit it or create a " @@ -27085,20 +27760,20 @@ msgstr "自動検出.アプリケーション.Oracle" msgid "Failed to find discovery Oracle task." msgstr "自動検出 Oracle タスクを見つけられませんでした。" -#: ../../enterprise/include/class/Oracle.app.php:493 +#: ../../enterprise/include/class/Oracle.app.php:501 msgid "Oracle target strings" msgstr "Oracle 対象文字列" -#: ../../enterprise/include/class/Oracle.app.php:494 +#: ../../enterprise/include/class/Oracle.app.php:502 msgid "" "SERVER:PORT/SID, comma separated or line by line, as many targets as you need." msgstr "SERVER:PORT/SID で、カンマ区切り、または行ごとに必要な数の対象を定義。" -#: ../../enterprise/include/class/Oracle.app.php:729 +#: ../../enterprise/include/class/Oracle.app.php:740 msgid "Calculate fragmentation ratio" msgstr "断片化率の計算" -#: ../../enterprise/include/class/Oracle.app.php:745 +#: ../../enterprise/include/class/Oracle.app.php:756 msgid "Monitor tablespaces" msgstr "テーブルスペース監視" @@ -27114,562 +27789,566 @@ msgstr "" msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." msgstr "正しい Microsoft SQL Server の IP または FQDN を指定する必要があります。" -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:277 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:282 msgid "Failed to find discovery Microsoft SQL Server task." msgstr "自動検出 Microsoft SQL Server タスクを見つけられませんでした。" -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:487 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:505 msgid "Microsoft SQL Server targets" msgstr "対象の Microsoft SQL Server" -#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:488 +#: ../../enterprise/include/class/MicrosoftSQLServer.app.php:506 msgid "" "SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you " "need." msgstr "" "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:473 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:534 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:593 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:499 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:560 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:619 msgid "Alert not found." msgstr "アラートが見つかりません。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:481 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:507 msgid "Invalid json data" msgstr "不正な json データ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:577 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:603 msgid "Rules updated." msgstr "ルールを更新しました。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:580 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:606 msgid "JSON decoding error. Please call support." msgstr "JSON デコードエラー: サポートに問い合わせてください。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:632 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:658 msgid "There was a problem creating Action. You must select an action" msgstr "アクション作成で問題が発生しました。アクションを選択する必要があります。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:900 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:925 msgid "Pass" msgstr "Pass" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:901 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:926 msgid "Drop" msgstr "Drop" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:927 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:952 msgid "Module alert" msgstr "モジュールアラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:947 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2023 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:972 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1223 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1224 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2038 msgid "Load from template" msgstr "テンプレートから読み込む" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:964 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2243 -#: ../../godmode/alerts/configure_alert_template.php:625 -#: ../../godmode/alerts/alert_view.php:258 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:989 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2259 +#: ../../godmode/alerts/configure_alert_template.php:657 +#: ../../godmode/alerts/alert_view.php:264 msgid "Use special days list" msgstr "特別日一覧を利用する" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:981 -#: ../../godmode/alerts/configure_alert_template.php:661 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006 +#: ../../godmode/alerts/configure_alert_template.php:678 msgid "Schedule" msgstr "スケジュール" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:984 -#: ../../godmode/alerts/configure_alert_template.php:665 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1009 +#: ../../godmode/alerts/configure_alert_template.php:681 msgid "No alert has been scheduled yet" msgstr "アラートがスケジューリングされていません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1006 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1031 msgid "Execute alert" msgstr "アラート実行" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1009 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3503 -msgid "from" -msgstr "開始" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1029 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3521 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1054 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3590 msgid "times in" msgstr "時間範囲" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1039 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1064 msgid "threshold" msgstr "しきい値" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1049 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1074 msgid "Rule evaluation mode" msgstr "ルール評価モード" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1049 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1074 msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." msgstr "" "Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止し" "ます。" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1066 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1091 msgid "Grouped by" msgstr "グループ化:" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1205 -msgid "" -"The templates shown are only for correlative alerts, event alert (legacy) will " -"be deprecated in the future" -msgstr "" -"表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)" -"は将来非推奨になります" - -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1215 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1237 msgid "Available items" msgstr "存在するアイテム" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1216 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1238 msgid "Block" msgstr "ブロック" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1264 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1085 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1286 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1088 msgid "Log content" msgstr "ログの内容" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1269 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1088 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1291 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1091 msgid "Log source" msgstr "ログソース" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1274 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1091 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1296 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1094 msgid "Log agent" msgstr "ログエージェント" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1332 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1097 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1354 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1100 msgid "Event content" msgstr "イベントの内容" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1337 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1094 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1359 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1097 msgid "Event user comment" msgstr "イベントユーザコメント" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1342 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1100 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1364 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1103 msgid "Event agent" msgstr "イベントエージェント" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1347 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1103 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1106 msgid "Event module" msgstr "イベントモジュール" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1352 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1106 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1374 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1109 msgid "Event module alerts" msgstr "イベントモジュールアラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1357 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1109 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1379 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1112 msgid "Event group" msgstr "イベントグループ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1363 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1385 msgid "Event group (recursive)" msgstr "イベントグループ(再帰)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1115 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1391 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1118 msgid "Event severity" msgstr "イベント重要度" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1374 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1118 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1396 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1121 msgid "Event tag" msgstr "イベントタグ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1379 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1121 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1401 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1124 msgid "Event user" msgstr "イベントユーザ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1409 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1431 msgid "Operators" msgstr "演算子" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1414 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1458 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1434 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1436 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1480 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 msgid "greater than" msgstr "より大きい" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1419 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1462 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1438 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1446 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1441 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1484 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 msgid "less than" msgstr "より小さい" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1424 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1466 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1442 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1446 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1488 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 msgid "greater or equal than" msgstr "より大きいか等しい" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1429 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1470 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1451 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1492 msgid "less or equal than" msgstr "次より小さいか等しい: " -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1434 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1474 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1450 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1456 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1496 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 msgid "is equal" msgstr "同じ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1439 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1478 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1454 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1461 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1500 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 msgid "is different" msgstr "異なる" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1444 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1482 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1458 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1466 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1504 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 msgid "is like (regex)" msgstr "一致 (正規表現)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1449 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1486 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1462 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1471 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1508 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1465 msgid "is not like (regex)" msgstr "不一致 (正規表現)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1519 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1541 msgid "Modifiers" msgstr "修飾子" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1524 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1546 msgid "within an interval (seconds)" msgstr "間隔内 (秒)" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1529 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1551 msgid "repeated at least" msgstr "繰り返された最低数" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1569 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1591 msgid "Matches on both true" msgstr "両方が真の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1575 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1597 msgid "Matches when any is false" msgstr "いずれかが偽の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1581 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1603 msgid "Matches on any true" msgstr "いずれかが真の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1587 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1609 msgid "Matches when both are false" msgstr "両方が偽の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1593 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1615 msgid "Matches when only one is true" msgstr "一つだけ真の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1599 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1621 msgid "Matches when both are either true or false" msgstr "両方が真または偽の時にマッチ" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1635 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1657 msgid "Rule definition" msgstr "ルール定義" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1924 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1947 msgid "Remove rule" msgstr "ルール削除" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1935 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1958 msgid "Remove item" msgstr "アイテム削除" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1956 -#: ../../operation/agentes/estado_monitores.php:602 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:1979 +#: ../../operation/agentes/estado_monitores.php:639 msgid "Reset" msgstr "リセット" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2050 -#: ../../godmode/alerts/configure_alert_template.php:897 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2065 +#: ../../godmode/alerts/configure_alert_template.php:922 msgid "Alert recovery" msgstr "復旧アラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2078 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2735 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2102 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2770 #: ../../godmode/alerts/alert_commands.php:102 #: ../../godmode/alerts/alert_commands.php:107 #: ../../godmode/alerts/alert_commands.php:123 #: ../../godmode/alerts/alert_commands.php:129 -#: ../../godmode/alerts/configure_alert_template.php:928 -#: ../../godmode/alerts/alert_view.php:484 -#: ../../godmode/alerts/alert_view.php:603 +#: ../../godmode/alerts/configure_alert_template.php:991 +#: ../../godmode/alerts/alert_view.php:490 +#: ../../godmode/alerts/alert_view.php:609 #, php-format msgid "Field %s" msgstr "フィールド %s" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121 msgid "Agent and module event recovery macros are not available in this section" msgstr "" "ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121 #, php-format msgid "Recovery Field %s" msgstr "復旧フィールド %s" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2157 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2159 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2177 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2178 msgid "Triggering Condition" msgstr "発報条件" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2252 -#: ../../godmode/alerts/alert_view.php:266 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2268 +#: ../../godmode/alerts/alert_view.php:272 msgid "Number of alerts" msgstr "アラート数" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2340 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2603 -#: ../../godmode/alerts/configure_alert_action.php:305 -#: ../../godmode/alerts/alert_view.php:403 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2373 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2636 +#: ../../godmode/alerts/alert_view.php:409 msgid "Firing" msgstr "障害通知" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2455 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2488 msgid "There are no defined actions for this alert" msgstr "このアラートには定義済のアクションがありません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2526 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3500 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2558 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3569 msgid "Number of alerts match" msgstr "アラートマッチ数" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2604 -#: ../../godmode/alerts/alert_view.php:404 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2637 +#: ../../godmode/alerts/alert_view.php:410 msgid "Recovering" msgstr "リカバリ中" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2621 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2655 msgid "" "Select the desired action and mode to view the Triggering fields for this " "action" msgstr "" "目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2638 -#: ../../godmode/alerts/alert_view.php:395 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2673 +#: ../../godmode/alerts/alert_view.php:401 msgid "Select the action" msgstr "アクションを選択" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2696 -#: ../../godmode/alerts/configure_alert_template.php:918 -#: ../../godmode/alerts/alert_view.php:435 -#: ../../godmode/alerts/alert_view.php:569 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2731 +#: ../../godmode/alerts/configure_alert_template.php:938 +#: ../../godmode/alerts/alert_view.php:441 +#: ../../godmode/alerts/alert_view.php:575 msgid "Firing fields" msgstr "発報フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2698 -#: ../../godmode/alerts/alert_view.php:437 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2733 +#: ../../godmode/alerts/alert_view.php:443 msgid "" "Fields passed to the command executed by this action when the alert is fired" msgstr "" "アラートが発報されたときに、このアクションによって実行されるコマンドに渡される" "フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2702 -#: ../../godmode/agentes/fields_manager.php:122 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:564 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2737 +#: ../../godmode/agentes/fields_manager.php:153 +#: ../../godmode/alerts/alert_view.php:447 +#: ../../godmode/alerts/alert_view.php:570 #: ../../operation/agentes/custom_fields.php:65 msgid "Field" msgstr "フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2704 -#: ../../godmode/alerts/alert_view.php:443 -#: ../../godmode/alerts/alert_view.php:566 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2739 +#: ../../godmode/alerts/alert_view.php:449 +#: ../../godmode/alerts/alert_view.php:572 msgid "Fields configured on the command associated to the action" msgstr "アクションに関連付けられたコマンドで設定されたフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2707 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2742 msgid "Alerts fields" msgstr "アラートフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2709 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2744 msgid "Triggering fields configured in Alerts" msgstr "アラートで設定された発報フィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2712 -#: ../../godmode/alerts/alert_view.php:451 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2747 +#: ../../godmode/alerts/alert_view.php:457 msgid "Action fields" msgstr "アクションフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2714 -#: ../../godmode/alerts/alert_view.php:453 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2749 +#: ../../godmode/alerts/alert_view.php:459 msgid "Triggering fields configured in action" msgstr "アクションで設定したトリガーフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2717 -#: ../../godmode/alerts/alert_view.php:457 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2752 +#: ../../godmode/alerts/alert_view.php:463 msgid "Executed on firing" msgstr "発報時の実行" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2719 -#: ../../godmode/alerts/alert_view.php:459 -#: ../../godmode/alerts/alert_view.php:571 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2754 +#: ../../godmode/alerts/alert_view.php:465 +#: ../../godmode/alerts/alert_view.php:577 msgid "Fields used on execution when the alert is fired" msgstr "アラートが発報したときに実行に使われるフィールド" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2768 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2802 +#: ../../godmode/users/user_management.php:42 +#: ../../godmode/massive/massive_edit_users.php:278 +#: ../../operation/users/user_edit.php:473 +#: ../../operation/agentes/alerts_status.php:189 ../../operation/menu.php:194 +msgid "Alert detail" +msgstr "アラート詳細" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2811 msgid "Correlated alerts" msgstr "関連付け" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2792 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2832 msgid "Alert succesfully deleted" msgstr "アラートを削除しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2801 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2841 msgid "Alerts validated" msgstr "アラートを承諾しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2804 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2844 msgid "Failed to process validation" msgstr "承諾処理に失敗しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2949 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3010 msgid "Matched" msgstr "マッチしました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2950 -#: ../../godmode/alerts/alert_list.list.php:147 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3011 +#: ../../godmode/alerts/alert_list.list.php:170 #: ../../mobile/operation/alerts.php:66 -#: ../../include/functions_reporting_html.php:2501 -#: ../../include/functions_reporting_html.php:3357 -#: ../../include/functions_reporting_html.php:3358 -#: ../../include/class/SnmpConsole.class.php:532 -#: ../../operation/agentes/alerts_status.functions.php:97 +#: ../../include/functions_reporting_html.php:2591 +#: ../../include/functions_reporting_html.php:3451 +#: ../../include/functions_reporting_html.php:3452 +#: ../../operation/agentes/alerts_status.functions.php:99 msgid "Fired" msgstr "通知済" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2972 -#: ../../enterprise/include/class/CommandCenter.class.php:329 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3033 +#: ../../enterprise/include/class/CommandCenter.class.php:331 msgid "Sort elements" msgstr "要素の並べ替え" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3017 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3403 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3078 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3472 msgid "No associated actions" msgstr "関連アクションがありません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3051 -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3067 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3112 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3128 msgid "Add Actions" msgstr "アクション追加" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3122 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3183 msgid "There are no defined correlated alerts" msgstr "定義済の相関アラートがありません" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3258 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3324 msgid "Are you sure you want to disable the alert" msgstr "アラートを無効化してよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3265 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3331 msgid "Are you sure you want to enable the alert" msgstr "アラートを有効化してよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3272 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3338 msgid "Disabled Alert" msgstr "無効化アラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3313 -#: ../../godmode/alerts/alert_list.list.php:154 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3379 +#: ../../godmode/alerts/alert_list.list.php:193 #: ../../mobile/operation/alerts.php:74 -#: ../../operation/agentes/alerts_status.functions.php:103 +#: ../../operation/agentes/alerts_status.functions.php:105 msgid "Standby off" msgstr "非スタンバイ状態" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3314 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3380 msgid "Are you sure you want to standby the alert" msgstr "アラートをスタンバイにしてよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3319 -#: ../../enterprise/operation/agentes/policy_view.php:292 -#: ../../godmode/alerts/alert_list.list.php:153 -#: ../../mobile/operation/alerts.php:73 ../../include/functions_ui.php:1155 -#: ../../operation/agentes/alerts_status.functions.php:102 +#: ../../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 +#: ../../operation/agentes/alerts_status.functions.php:104 msgid "Standby on" msgstr "スタンバイ状態" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3321 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3387 msgid "Are you sure you want to activate the alert" msgstr "アラートを有効化してよろしいですか" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3329 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3395 msgid "Standby Alert" msgstr "スタンバイアラート" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3401 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3470 msgid "Delete Actions" msgstr "アクション削除" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3580 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3572 +msgid "from" +msgstr "開始" + +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3649 msgid "Successfully added action" msgstr "アクションを追加しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3618 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:3687 msgid "Successfully delete action" msgstr "アクションを削除しました" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4031 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4100 msgid "Choosetime" msgstr "時間選択" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4238 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4307 msgid "Drop Here" msgstr "ここにドロップしてください" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4296 -#: ../../godmode/alerts/configure_alert_template.php:1495 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4365 +#: ../../godmode/alerts/configure_alert_template.php:1545 msgid "Simple" msgstr "シンプル" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4297 -#: ../../godmode/alerts/configure_alert_template.php:1496 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4366 +#: ../../godmode/alerts/configure_alert_template.php:1546 msgid "Detailed" msgstr "詳細" -#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4352 -#: ../../godmode/alerts/configure_alert_template.php:1551 +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:4421 +#: ../../godmode/alerts/configure_alert_template.php:1601 msgid "Drag out to remove" msgstr "削除にはドラッグアウトします" -#: ../../enterprise/include/class/CommandCenter.class.php:146 +#: ../../enterprise/include/class/CommandCenter.class.php:136 +msgid "Merging tool" +msgstr "管理ツール" + +#: ../../enterprise/include/class/CommandCenter.class.php:149 msgid "Command center" msgstr "コマンドセンター" -#: ../../enterprise/include/class/CommandCenter.class.php:160 +#: ../../enterprise/include/class/CommandCenter.class.php:162 msgid "Could not be start merge process, no nodes in the metaconsole " msgstr "マージ処理を開始できませんでした。メタコンソールにノードがありません " -#: ../../enterprise/include/class/CommandCenter.class.php:169 +#: ../../enterprise/include/class/CommandCenter.class.php:171 #: ../../enterprise/include/functions_groups.php:49 +#: ../../include/ajax/module.php:1834 msgid "Metaconsole" msgstr "メタコンソール" -#: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 +#: ../../enterprise/include/class/CommandCenter.class.php:267 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1003 msgid "" "Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " "php.ini." @@ -27677,68 +28356,68 @@ msgstr "" "メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に" "設定してください。" -#: ../../enterprise/include/class/CommandCenter.class.php:312 +#: ../../enterprise/include/class/CommandCenter.class.php:314 msgid "Nodes priority order" msgstr "ノード優先順位" -#: ../../enterprise/include/class/CommandCenter.class.php:366 +#: ../../enterprise/include/class/CommandCenter.class.php:368 msgid "Unify databases" msgstr "データベース統合" -#: ../../enterprise/include/class/CommandCenter.class.php:383 +#: ../../enterprise/include/class/CommandCenter.class.php:385 msgid "merge process" msgstr "マージ処理" -#: ../../enterprise/include/class/CommandCenter.class.php:391 +#: ../../enterprise/include/class/CommandCenter.class.php:393 msgid "Process detail of node" msgstr "ノードの処理詳細" -#: ../../enterprise/include/class/CommandCenter.class.php:392 +#: ../../enterprise/include/class/CommandCenter.class.php:394 msgid "Errors of node" msgstr "ノードのエラー" -#: ../../enterprise/include/class/CommandCenter.class.php:421 +#: ../../enterprise/include/class/CommandCenter.class.php:423 msgid "Unexpected end of process" msgstr "処理の予期しない終了" -#: ../../enterprise/include/class/CommandCenter.class.php:422 +#: ../../enterprise/include/class/CommandCenter.class.php:424 msgid "Please retry" msgstr "再試行してください" -#: ../../enterprise/include/class/CommandCenter.class.php:443 +#: ../../enterprise/include/class/CommandCenter.class.php:445 msgid "Critical issues while merging" msgstr "マージ中にクリティカルな問題が発生" -#: ../../enterprise/include/class/CommandCenter.class.php:444 +#: ../../enterprise/include/class/CommandCenter.class.php:446 msgid "Please restore your backups" msgstr "バックアップをリストアしてください" -#: ../../enterprise/include/class/CommandCenter.class.php:452 -#: ../../include/functions_ui.php:6667 +#: ../../enterprise/include/class/CommandCenter.class.php:454 +#: ../../include/functions_ui.php:7102 msgid "Query" msgstr "クエリ" -#: ../../enterprise/include/class/CommandCenter.class.php:453 +#: ../../enterprise/include/class/CommandCenter.class.php:455 #: ../../include/lib/Dashboard/Widgets/service_view.php:245 msgid "Table" msgstr "表" -#: ../../enterprise/include/class/CommandCenter.class.php:454 -#: ../../include/class/Heatmap.class.php:881 +#: ../../enterprise/include/class/CommandCenter.class.php:456 +#: ../../include/class/Heatmap.class.php:1302 #: ../../general/reporting_console_node.php:65 msgid "Info" msgstr "情報" -#: ../../enterprise/include/class/CommandCenter.class.php:455 -#: ../../enterprise/include/class/CommandCenter.class.php:1126 +#: ../../enterprise/include/class/CommandCenter.class.php:457 +#: ../../enterprise/include/class/CommandCenter.class.php:1135 msgid "Error message" msgstr "エラーメッセージ" -#: ../../enterprise/include/class/CommandCenter.class.php:457 +#: ../../enterprise/include/class/CommandCenter.class.php:459 msgid "Process details" msgstr "処理詳細" -#: ../../enterprise/include/class/CommandCenter.class.php:458 +#: ../../enterprise/include/class/CommandCenter.class.php:460 msgid "" "System is not unified yet, something is wrong, please troubleshoot the errors " "and retry the merge process. Your data have not been modified." @@ -27747,70 +28426,70 @@ msgstr "" "シューティングを行い、マージ処理を再試行してください。 データは変更されていませ" "ん。" -#: ../../enterprise/include/class/CommandCenter.class.php:459 +#: ../../enterprise/include/class/CommandCenter.class.php:461 msgid "Errors while merging" msgstr "マージ中にエラー" -#: ../../enterprise/include/class/CommandCenter.class.php:460 +#: ../../enterprise/include/class/CommandCenter.class.php:462 msgid "The process has been completed correctly" msgstr "処理が正しく完了しました" -#: ../../enterprise/include/class/CommandCenter.class.php:461 -#: ../../enterprise/include/functions_login.php:145 -#: ../../include/functions_menu.php:799 -#: ../../include/class/Diagnostics.class.php:1826 +#: ../../enterprise/include/class/CommandCenter.class.php:463 +#: ../../enterprise/include/functions_login.php:213 +#: ../../include/functions_menu.php:883 +#: ../../include/class/Diagnostics.class.php:1846 msgid "Successfully" msgstr "正常に終了" -#: ../../enterprise/include/class/CommandCenter.class.php:462 +#: ../../enterprise/include/class/CommandCenter.class.php:464 msgid "System is merging your environment, please wait" msgstr "システムは環境をマージしています。お待ちください。" -#: ../../enterprise/include/class/CommandCenter.class.php:464 -#: ../../enterprise/include/class/CommandCenter.class.php:891 +#: ../../enterprise/include/class/CommandCenter.class.php:466 +#: ../../enterprise/include/class/CommandCenter.class.php:900 msgid "Initialice merge" msgstr "マージの初期化" -#: ../../enterprise/include/class/CommandCenter.class.php:465 -#: ../../enterprise/include/class/CommandCenter.class.php:897 +#: ../../enterprise/include/class/CommandCenter.class.php:467 +#: ../../enterprise/include/class/CommandCenter.class.php:906 msgid "Apply merge" msgstr "マージを適用" -#: ../../enterprise/include/class/CommandCenter.class.php:466 +#: ../../enterprise/include/class/CommandCenter.class.php:468 msgid "Finished merge" msgstr "完了したマージ" -#: ../../enterprise/include/class/CommandCenter.class.php:467 -#: ../../enterprise/include/class/CommandCenter.class.php:903 +#: ../../enterprise/include/class/CommandCenter.class.php:469 +#: ../../enterprise/include/class/CommandCenter.class.php:912 msgid "Restore merge" msgstr "マージのリストア" -#: ../../enterprise/include/class/CommandCenter.class.php:469 +#: ../../enterprise/include/class/CommandCenter.class.php:471 msgid "Succesfully" msgstr "正常終了" -#: ../../enterprise/include/class/CommandCenter.class.php:470 +#: ../../enterprise/include/class/CommandCenter.class.php:472 msgid "Pending operations" msgstr "保留中操作" -#: ../../enterprise/include/class/CommandCenter.class.php:472 +#: ../../enterprise/include/class/CommandCenter.class.php:474 msgid "Error. Synchronization aborted. Backup restored" msgstr "エラー。同期が中止され、バックアップが復元されました" -#: ../../enterprise/include/class/CommandCenter.class.php:542 -#: ../../enterprise/include/class/CommandCenter.class.php:548 +#: ../../enterprise/include/class/CommandCenter.class.php:544 +#: ../../enterprise/include/class/CommandCenter.class.php:550 msgid "Update priority nodes" msgstr "優先ノードを更新" -#: ../../enterprise/include/class/CommandCenter.class.php:543 +#: ../../enterprise/include/class/CommandCenter.class.php:545 msgid "Successfully updated priority order nodes" msgstr "優先ノードの更新を完了しました" -#: ../../enterprise/include/class/CommandCenter.class.php:549 +#: ../../enterprise/include/class/CommandCenter.class.php:551 msgid "Could not be updated priority order nodes" msgstr "優先ノードの更新ができませんでした" -#: ../../enterprise/include/class/CommandCenter.class.php:565 +#: ../../enterprise/include/class/CommandCenter.class.php:567 msgid "" "By unifying databases all information across your infrastructure will be " "merged to gain integrity" @@ -27818,24 +28497,24 @@ msgstr "" "データベースを統合することにより、インフラストラクチャ全体のすべての情報がマー" "ジされ、整合性が得られます" -#: ../../enterprise/include/class/CommandCenter.class.php:578 -#: ../../enterprise/include/class/CommandCenter.class.php:588 +#: ../../enterprise/include/class/CommandCenter.class.php:580 +#: ../../enterprise/include/class/CommandCenter.class.php:590 msgid "Blocked" msgstr "ブロックされています" -#: ../../enterprise/include/class/CommandCenter.class.php:579 +#: ../../enterprise/include/class/CommandCenter.class.php:581 msgid "This process already running" msgstr "この処理は既に動作中です" -#: ../../enterprise/include/class/CommandCenter.class.php:589 +#: ../../enterprise/include/class/CommandCenter.class.php:591 msgid "You cannot start a new merge because system is merging events data." msgstr "システムがイベントデータをマージ中のため、新しいマージを開始できません。" -#: ../../enterprise/include/class/CommandCenter.class.php:597 +#: ../../enterprise/include/class/CommandCenter.class.php:599 msgid "Press OK button to start the process" msgstr "処理を開始するには OK ボタンを押します" -#: ../../enterprise/include/class/CommandCenter.class.php:599 +#: ../../enterprise/include/class/CommandCenter.class.php:601 msgid "" "There are backups from a previous merging process, are you sure you want to " "overwrite those backups? Press OK button to ignore this message and start the " @@ -27845,57 +28524,62 @@ msgstr "" "してもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタ" "ンを押してください。" -#: ../../enterprise/include/class/CommandCenter.class.php:647 +#: ../../enterprise/include/class/CommandCenter.class.php:648 msgid "System is merging events..." msgstr "システムはイベントをマージしています..." -#: ../../enterprise/include/class/CommandCenter.class.php:654 +#: ../../enterprise/include/class/CommandCenter.class.php:655 msgid "System pandoradb is running..." msgstr "システム pandoradb が実行されています..." -#: ../../enterprise/include/class/CommandCenter.class.php:661 +#: ../../enterprise/include/class/CommandCenter.class.php:664 msgid "Already working..." msgstr "すでに動作中です..." -#: ../../enterprise/include/class/CommandCenter.class.php:767 -#: ../../enterprise/include/class/CommandCenter.class.php:768 +#: ../../enterprise/include/class/CommandCenter.class.php:670 +#, php-format +msgid "Merge aborted. Failed to connect to node %d" +msgstr "マージの中止。ノード %d への接続に失敗しました" + +#: ../../enterprise/include/class/CommandCenter.class.php:776 +#: ../../enterprise/include/class/CommandCenter.class.php:777 msgid "Initilize" msgstr "初期化" -#: ../../enterprise/include/class/CommandCenter.class.php:873 -#: ../../enterprise/include/class/CommandCenter.class.php:1061 +#: ../../enterprise/include/class/CommandCenter.class.php:882 +#: ../../enterprise/include/class/CommandCenter.class.php:1070 msgid "Waiting" msgstr "待機中" -#: ../../enterprise/include/class/CommandCenter.class.php:880 +#: ../../enterprise/include/class/CommandCenter.class.php:889 msgid "Process detail" msgstr "処理詳細" -#: ../../enterprise/include/class/CommandCenter.class.php:885 +#: ../../enterprise/include/class/CommandCenter.class.php:894 msgid "Display errors" msgstr "エラー表示" -#: ../../enterprise/include/class/CommandCenter.class.php:916 +#: ../../enterprise/include/class/CommandCenter.class.php:925 msgid "There are no nodes to do the merge process." msgstr "マージ処理を行うノードがありません。" -#: ../../enterprise/include/class/CommandCenter.class.php:1024 +#: ../../enterprise/include/class/CommandCenter.class.php:1033 msgid "merge events" msgstr "マージイベント" -#: ../../enterprise/include/class/CommandCenter.class.php:1067 +#: ../../enterprise/include/class/CommandCenter.class.php:1076 msgid "Retry process" msgstr "処理の再試行" -#: ../../enterprise/include/class/CommandCenter.class.php:1072 +#: ../../enterprise/include/class/CommandCenter.class.php:1081 msgid "Display events errors" msgstr "イベントエラー表示" -#: ../../enterprise/include/class/CommandCenter.class.php:1085 +#: ../../enterprise/include/class/CommandCenter.class.php:1094 msgid "Events History" msgstr "ヒストリイベント" -#: ../../enterprise/include/class/CommandCenter.class.php:1147 +#: ../../enterprise/include/class/CommandCenter.class.php:1156 msgid "merge process events" msgstr "マージ処理イベント" @@ -27905,12 +28589,12 @@ msgid "%s database backup manager" msgstr "%s データベースバックアップ管理" #: ../../enterprise/include/class/ManageBackups.class.php:117 -#: ../../include/class/AuditLog.class.php:144 +#: ../../include/class/AuditLog.class.php:145 msgid "Admin Tools" msgstr "管理ツール" #: ../../enterprise/include/class/ManageBackups.class.php:121 -#: ../../enterprise/operation/menu.php:170 +#: ../../enterprise/operation/menu.php:181 msgid "DB Backup Manager" msgstr "DB バックアップ管理" @@ -27921,59 +28605,59 @@ msgid "" msgstr "" "定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" -#: ../../enterprise/include/class/ManageBackups.class.php:164 +#: ../../enterprise/include/class/ManageBackups.class.php:167 #: ../../extensions/files_repo/files_repo_list.php:57 -#: ../../godmode/events/event_responses.editor.php:130 +#: ../../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:838 -#: ../../include/functions_visual_map_editor.php:933 +#: ../../include/functions_visual_map_editor.php:836 +#: ../../include/functions_visual_map_editor.php:931 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 #: ../../include/rest-api/models/VisualConsole/Item.php:1992 -#: ../../include/functions_filemanager.php:606 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 +#: ../../include/functions_filemanager.php:646 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:135 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:266 msgid "Size" msgstr "サイズ" -#: ../../enterprise/include/class/ManageBackups.class.php:189 +#: ../../enterprise/include/class/ManageBackups.class.php:192 msgid "Path backups" msgstr "バックアップパス" -#: ../../enterprise/include/class/ManageBackups.class.php:314 +#: ../../enterprise/include/class/ManageBackups.class.php:320 msgid "Rollback to this backup" msgstr "このバックアップへロールバックする" -#: ../../enterprise/include/class/ManageBackups.class.php:323 +#: ../../enterprise/include/class/ManageBackups.class.php:329 msgid "Lost" msgstr "失敗" -#: ../../enterprise/include/class/ManageBackups.class.php:330 +#: ../../enterprise/include/class/ManageBackups.class.php:339 msgid "In Progress" msgstr "処理中" -#: ../../enterprise/include/class/ManageBackups.class.php:361 +#: ../../enterprise/include/class/ManageBackups.class.php:370 msgid "The backup was successfully deleted" msgstr "バックアップを削除しました" -#: ../../enterprise/include/class/ManageBackups.class.php:367 +#: ../../enterprise/include/class/ManageBackups.class.php:376 msgid "Missed id parameter" msgstr "ID パラメータがありません" -#: ../../enterprise/include/class/ManageBackups.class.php:386 +#: ../../enterprise/include/class/ManageBackups.class.php:395 msgid "Something was wrong with the rollback action." msgstr "ロールバック処理で問題が発生しました。" -#: ../../enterprise/include/class/ManageBackups.class.php:389 +#: ../../enterprise/include/class/ManageBackups.class.php:398 msgid "Missed id parameter." msgstr "ID パラメータがありません。" -#: ../../enterprise/include/class/ManageBackups.class.php:424 -#: ../../include/class/AuditLog.class.php:374 +#: ../../enterprise/include/class/ManageBackups.class.php:433 +#: ../../include/class/AuditLog.class.php:412 msgid "There is no additional information to display" msgstr "表示する追加情報がありません:" -#: ../../enterprise/include/class/ManageBackups.class.php:437 +#: ../../enterprise/include/class/ManageBackups.class.php:446 msgid "" "Are you sure you want to delete this database backup file? Once deleted you " "will not be able to recover it." @@ -27981,15 +28665,15 @@ msgstr "" "このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に" "戻すことはできません。" -#: ../../enterprise/include/class/ManageBackups.class.php:439 +#: ../../enterprise/include/class/ManageBackups.class.php:448 msgid "Do you like perform a database restoration?" msgstr "データベースの復元を実行しますか?" -#: ../../enterprise/include/functions_enterprise.php:471 +#: ../../enterprise/include/functions_enterprise.php:451 msgid "Tree view by tags" msgstr "タグごとのツリー表示" -#: ../../enterprise/include/functions_enterprise.php:501 +#: ../../enterprise/include/functions_enterprise.php:481 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 " @@ -27998,12 +28682,12 @@ msgstr "" "イベントデータの削除までの日数がヒストリイベントデータの保存間隔よりも短い場合" "データは失われます。 保存頻度は削除頻度よりも大きくすることをお勧めします。" -#: ../../enterprise/include/functions_enterprise.php:503 +#: ../../enterprise/include/functions_enterprise.php:483 msgid "" "Problems with event days purge and event days that pass data to history DB." msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" -#: ../../enterprise/include/functions_enterprise.php:514 +#: ../../enterprise/include/functions_enterprise.php:494 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 " @@ -28013,10 +28697,18 @@ msgstr "" "します。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくだ" "さい。" -#: ../../enterprise/include/functions_enterprise.php:516 +#: ../../enterprise/include/functions_enterprise.php:496 msgid "Problems with days purge and days that pass data to history DB" msgstr "データの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" +#: ../../enterprise/include/functions_reporting.php:71 +msgid "Wizard SLA" +msgstr "SLAウィザード" + +#: ../../enterprise/include/functions_reporting.php:82 +msgid "Global" +msgstr "全体" + #: ../../enterprise/include/functions_reporting.php:93 msgid "Advance options" msgstr "拡張オプション" @@ -28029,221 +28721,221 @@ msgstr "テンプレート一覧" msgid "Templates Wizard" msgstr "テンプレートウィザード" -#: ../../enterprise/include/functions_reporting.php:1234 +#: ../../enterprise/include/functions_reporting.php:1226 msgid "Availability item created from wizard." msgstr "ウィザードから作成された可用性アイテム" -#: ../../enterprise/include/functions_reporting.php:1856 -#: ../../enterprise/include/functions_reporting.php:2895 -#: ../../enterprise/include/functions_reporting.php:3882 -#: ../../include/functions_reporting_html.php:549 +#: ../../enterprise/include/functions_reporting.php:1848 +#: ../../enterprise/include/functions_reporting.php:2913 +#: ../../enterprise/include/functions_reporting.php:3902 +#: ../../include/functions_reporting_html.php:550 msgid "Max/Min Values" msgstr "最大/最小値" -#: ../../enterprise/include/functions_reporting.php:1858 -#: ../../enterprise/include/functions_reporting.php:2026 -#: ../../enterprise/include/functions_reporting.php:2897 -#: ../../enterprise/include/functions_reporting.php:3884 -#: ../../enterprise/include/functions_reporting.php:6134 -#: ../../include/functions_reporting_html.php:551 +#: ../../enterprise/include/functions_reporting.php:1850 +#: ../../enterprise/include/functions_reporting.php:2019 +#: ../../enterprise/include/functions_reporting.php:2915 +#: ../../enterprise/include/functions_reporting.php:3904 +#: ../../enterprise/include/functions_reporting.php:6154 +#: ../../include/functions_reporting_html.php:552 msgid "SLA Compliance" msgstr "SLA準拠" -#: ../../enterprise/include/functions_reporting.php:1898 -#: ../../enterprise/include/functions_reporting.php:2951 -#: ../../enterprise/include/functions_reporting.php:3202 -#: ../../enterprise/include/functions_reporting.php:3939 -#: ../../enterprise/include/functions_reporting.php:4203 -#: ../../enterprise/include/functions_reporting.php:4854 -#: ../../include/functions_reporting_html.php:874 -#: ../../include/functions_reporting_html.php:4795 +#: ../../enterprise/include/functions_reporting.php:1890 +#: ../../enterprise/include/functions_reporting.php:2969 +#: ../../enterprise/include/functions_reporting.php:3221 +#: ../../enterprise/include/functions_reporting.php:3959 +#: ../../enterprise/include/functions_reporting.php:4223 +#: ../../enterprise/include/functions_reporting.php:4874 +#: ../../include/functions_reporting_html.php:877 +#: ../../include/functions_reporting_html.php:4881 msgid "Not Init" msgstr "未初期化" -#: ../../enterprise/include/functions_reporting.php:1905 -#: ../../enterprise/include/functions_reporting.php:2961 -#: ../../enterprise/include/functions_reporting.php:3949 +#: ../../enterprise/include/functions_reporting.php:1897 +#: ../../enterprise/include/functions_reporting.php:2979 +#: ../../enterprise/include/functions_reporting.php:3969 msgid "Planned Downtimes" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:1912 +#: ../../enterprise/include/functions_reporting.php:1904 msgid "Ignore time" msgstr "除外時間" -#: ../../enterprise/include/functions_reporting.php:1932 +#: ../../enterprise/include/functions_reporting.php:1924 msgid "SLA Compliance per days" msgstr "日ごとの SLA 準拠" -#: ../../enterprise/include/functions_reporting.php:2023 +#: ../../enterprise/include/functions_reporting.php:2016 msgid "Summary of SLA Failures" msgstr "条件を満たさない SLA の概要" -#: ../../enterprise/include/functions_reporting.php:2043 -#: ../../enterprise/include/functions_reporting.php:2044 +#: ../../enterprise/include/functions_reporting.php:2036 +#: ../../enterprise/include/functions_reporting.php:2037 msgid "Out of SLA limits" msgstr "SLA 制限外" -#: ../../enterprise/include/functions_reporting.php:2049 -#: ../../enterprise/include/functions_reporting.php:2050 +#: ../../enterprise/include/functions_reporting.php:2042 +#: ../../enterprise/include/functions_reporting.php:2043 msgid "IN of SLA limits" msgstr "SLA 制限内" -#: ../../enterprise/include/functions_reporting.php:2133 -#: ../../include/functions_reports.php:933 +#: ../../enterprise/include/functions_reporting.php:2126 +#: ../../include/functions_reports.php:945 msgid "Log report" msgstr "ログレポート" -#: ../../enterprise/include/functions_reporting.php:2146 -#: ../../include/functions_reports.php:932 +#: ../../enterprise/include/functions_reporting.php:2139 +#: ../../include/functions_reports.php:944 msgid "Log" msgstr "ログ" -#: ../../enterprise/include/functions_reporting.php:2495 -#: ../../enterprise/include/functions_reporting.php:3439 -#: ../../enterprise/include/functions_reporting.php:4414 -#: ../../include/functions_reporting.php:1006 -#: ../../include/functions_reporting.php:9141 +#: ../../enterprise/include/functions_reporting.php:2513 +#: ../../enterprise/include/functions_reporting.php:3458 +#: ../../enterprise/include/functions_reporting.php:4434 +#: ../../include/functions_reporting.php:1011 +#: ../../include/functions_reporting.php:9335 msgid "There are no SLAs defined" msgstr "SLA が定義されていません。" -#: ../../enterprise/include/functions_reporting.php:2548 -#: ../../enterprise/include/functions_reporting.php:3492 -#: ../../enterprise/include/functions_reporting.php:4467 -#: ../../include/functions_reporting.php:1081 -#: ../../include/functions_reporting.php:9519 +#: ../../enterprise/include/functions_reporting.php:2566 +#: ../../enterprise/include/functions_reporting.php:3511 +#: ../../enterprise/include/functions_reporting.php:4487 +#: ../../include/functions_reporting.php:1086 +#: ../../include/functions_reporting.php:9713 msgid "Inverse" msgstr "反転" -#: ../../enterprise/include/functions_reporting.php:2971 -#: ../../enterprise/include/functions_reporting.php:3212 -#: ../../enterprise/include/functions_reporting.php:3959 +#: ../../enterprise/include/functions_reporting.php:2989 +#: ../../enterprise/include/functions_reporting.php:3231 +#: ../../enterprise/include/functions_reporting.php:3979 msgid "Planned Downtime" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:3001 +#: ../../enterprise/include/functions_reporting.php:3020 msgid "T. Total" msgstr "合計時間" -#: ../../enterprise/include/functions_reporting.php:3002 -#: ../../enterprise/include/functions_reporting.php:3986 +#: ../../enterprise/include/functions_reporting.php:3021 +#: ../../enterprise/include/functions_reporting.php:4007 msgid "T. OK" msgstr "正常時間" -#: ../../enterprise/include/functions_reporting.php:3003 -#: ../../enterprise/include/functions_reporting.php:3987 +#: ../../enterprise/include/functions_reporting.php:3022 +#: ../../enterprise/include/functions_reporting.php:4008 msgid "T. Error" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting.php:3004 -#: ../../enterprise/include/functions_reporting.php:3988 +#: ../../enterprise/include/functions_reporting.php:3023 +#: ../../enterprise/include/functions_reporting.php:4009 msgid "T. Unknown" msgstr "不明時間" -#: ../../enterprise/include/functions_reporting.php:3005 -#: ../../enterprise/include/functions_reporting.php:3989 +#: ../../enterprise/include/functions_reporting.php:3024 +#: ../../enterprise/include/functions_reporting.php:4010 msgid "T. Not_init" msgstr "未初期化時間" -#: ../../enterprise/include/functions_reporting.php:3006 -#: ../../enterprise/include/functions_reporting.php:3990 +#: ../../enterprise/include/functions_reporting.php:3025 +#: ../../enterprise/include/functions_reporting.php:4011 msgid "T. Downtime" msgstr "計画停止時間" -#: ../../enterprise/include/functions_reporting.php:3007 -#: ../../enterprise/include/functions_reporting.php:3991 +#: ../../enterprise/include/functions_reporting.php:3026 +#: ../../enterprise/include/functions_reporting.php:4012 msgid "SLA %" msgstr "SLA %" -#: ../../enterprise/include/functions_reporting.php:3197 -#: ../../enterprise/include/functions_reporting.php:4198 -#: ../../enterprise/include/functions_reporting.php:6199 +#: ../../enterprise/include/functions_reporting.php:3216 +#: ../../enterprise/include/functions_reporting.php:4218 +#: ../../enterprise/include/functions_reporting.php:6224 #: ../../enterprise/include/functions_services.php:1453 -#: ../../include/functions_reporting_html.php:869 -#: ../../include/functions_reporting_html.php:4790 +#: ../../include/functions_reporting_html.php:872 +#: ../../include/functions_reporting_html.php:4876 msgid "Unknow" msgstr "不明" -#: ../../enterprise/include/functions_reporting.php:3207 -#: ../../enterprise/include/functions_reporting.php:4208 -#: ../../enterprise/include/functions_reporting.php:6204 -#: ../../include/functions_reporting_html.php:879 -#: ../../include/functions_reporting_html.php:4800 +#: ../../enterprise/include/functions_reporting.php:3226 +#: ../../enterprise/include/functions_reporting.php:4228 +#: ../../enterprise/include/functions_reporting.php:6229 +#: ../../include/functions_reporting_html.php:882 +#: ../../include/functions_reporting_html.php:4886 msgid "Downtimes" msgstr "停止時間" -#: ../../enterprise/include/functions_reporting.php:4213 +#: ../../enterprise/include/functions_reporting.php:4233 msgid "Ignore Planned Downtime" msgstr "計画停止を無視" -#: ../../enterprise/include/functions_reporting.php:4303 -#: ../../include/functions_reports.php:712 +#: ../../enterprise/include/functions_reporting.php:4323 +#: ../../include/functions_reports.php:724 msgid "Hourly S.L.A." msgstr "1時間ごとの S.L.A." -#: ../../enterprise/include/functions_reporting.php:4906 +#: ../../enterprise/include/functions_reporting.php:4926 msgid "Max/Min Critical" msgstr "障害の最大/最小" -#: ../../enterprise/include/functions_reporting.php:4907 +#: ../../enterprise/include/functions_reporting.php:4927 msgid "Max/Min Warning" msgstr "警告の最大/最小" -#: ../../enterprise/include/functions_reporting.php:4908 +#: ../../enterprise/include/functions_reporting.php:4928 msgid "Total checks ok/total" msgstr "合計チェック ok/合計" -#: ../../enterprise/include/functions_reporting.php:4909 +#: ../../enterprise/include/functions_reporting.php:4929 msgid "% time ok" msgstr "% 時間 ok" -#: ../../enterprise/include/functions_reporting.php:4927 -#: ../../include/functions_reporting_html.php:638 -#: ../../include/functions_reporting_html.php:677 -#: ../../include/functions_reporting_html.php:748 -#: ../../include/functions_reporting_html.php:826 -#: ../../include/functions_reporting_html.php:4248 -#: ../../include/functions_reporting_html.php:4395 +#: ../../enterprise/include/functions_reporting.php:4947 +#: ../../include/functions_reporting_html.php:641 +#: ../../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 msgid "24 x 7" msgstr "24時間365日" -#: ../../enterprise/include/functions_reporting.php:4967 -#: ../../include/functions_reporting_html.php:583 +#: ../../enterprise/include/functions_reporting.php:4987 +#: ../../include/functions_reporting_html.php:585 msgid "Global Time" msgstr "グローバル時間" -#: ../../enterprise/include/functions_reporting.php:4969 +#: ../../enterprise/include/functions_reporting.php:4989 msgid "Time Critical" msgstr "障害時間" -#: ../../enterprise/include/functions_reporting.php:5062 -#: ../../include/functions_reporting_html.php:616 +#: ../../enterprise/include/functions_reporting.php:5082 +#: ../../include/functions_reporting_html.php:619 msgid "Checks Time" msgstr "確認数" -#: ../../enterprise/include/functions_reporting.php:5064 +#: ../../enterprise/include/functions_reporting.php:5084 msgid "Checks Critical" msgstr "障害チェック" -#: ../../enterprise/include/functions_reporting.php:5065 -#: ../../include/functions_reporting_html.php:4172 +#: ../../enterprise/include/functions_reporting.php:5085 +#: ../../include/functions_reporting_html.php:4257 msgid "Checks Warning" msgstr "警告チェック" -#: ../../enterprise/include/functions_reporting.php:5148 -#: ../../include/functions_reporting_html.php:806 -#: ../../include/functions_reporting_html.php:4438 -#: ../../include/functions_reporting_html.php:4988 -#: ../../include/functions_reporting_html.php:4991 -#: ../../include/functions_reporting.php:1651 -#: ../../include/functions_reporting.php:3631 +#: ../../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.php:1656 +#: ../../include/functions_reporting.php:3735 msgid "There are no Agent/Modules defined" msgstr "定義済のエージェント/モジュールがありません" -#: ../../enterprise/include/functions_reporting.php:5584 +#: ../../enterprise/include/functions_reporting.php:5604 msgid "There are no SLAs defined." msgstr "定義済のSLAがありません。" -#: ../../enterprise/include/functions_reporting.php:5799 +#: ../../enterprise/include/functions_reporting.php:5819 #: ../../enterprise/include/functions_services.php:1368 #: ../../enterprise/include/functions_services.php:1370 #: ../../enterprise/include/functions_services.php:1404 @@ -28254,97 +28946,97 @@ msgstr "定義済のSLAがありません。" msgid "Nonexistent" msgstr "なし" -#: ../../enterprise/include/functions_reporting.php:6209 +#: ../../enterprise/include/functions_reporting.php:6234 msgid "Scheduled shutdow" msgstr "計画停止" -#: ../../enterprise/include/functions_reporting.php:6575 -#: ../../enterprise/include/functions_reporting.php:7465 +#: ../../enterprise/include/functions_reporting.php:6600 +#: ../../enterprise/include/functions_reporting.php:7490 #, php-format msgid "Graph agents(%s) - %s" msgstr "エージェントグラフ(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7373 +#: ../../enterprise/include/functions_reporting.php:7398 #, php-format msgid "Graph agent(%s) - %s" msgstr "エージェントグラフ(%s) - %s" -#: ../../enterprise/include/functions_reporting.php:7820 +#: ../../enterprise/include/functions_reporting.php:7845 msgid "There is not data for the selected conditions" msgstr "選択した状態のデータがありません" -#: ../../enterprise/include/functions_reporting.php:8012 -#: ../../enterprise/include/functions_reporting.php:8078 +#: ../../enterprise/include/functions_reporting.php:8039 +#: ../../enterprise/include/functions_reporting.php:8105 msgid "Template editor" msgstr "テンプレート編集" -#: ../../enterprise/include/functions_reporting.php:8141 -#: ../../enterprise/operation/reporting/custom_reporting.php:101 +#: ../../enterprise/include/functions_reporting.php:8171 +#: ../../enterprise/operation/reporting/custom_reporting.php:130 msgid "ID Report" msgstr "レポートID" -#: ../../enterprise/include/functions_reporting.php:8209 -#: ../../enterprise/operation/reporting/custom_reporting.php:90 -#: ../../enterprise/operation/reporting/custom_reporting.php:164 +#: ../../enterprise/include/functions_reporting.php:8239 +#: ../../enterprise/operation/reporting/custom_reporting.php:116 +#: ../../enterprise/operation/reporting/custom_reporting.php:193 msgid "Send by email" msgstr "Eメールで送信" -#: ../../enterprise/include/functions_reporting.php:8297 -#: ../../enterprise/operation/reporting/custom_reporting.php:200 +#: ../../enterprise/include/functions_reporting.php:8327 +#: ../../enterprise/operation/reporting/custom_reporting.php:229 msgid "Send by email " msgstr "Eメールで送信 " -#: ../../enterprise/include/functions_reporting.php:8338 -#: ../../include/functions_reports.php:643 +#: ../../enterprise/include/functions_reporting.php:8368 +#: ../../include/functions_reports.php:655 msgid "Simple baseline graph" msgstr "シンプルベースライングラフ" -#: ../../enterprise/include/functions_reporting.php:8508 +#: ../../enterprise/include/functions_reporting.php:8538 msgid "Configuration changes" msgstr "設定変更" -#: ../../enterprise/include/functions_reporting.php:8525 +#: ../../enterprise/include/functions_reporting.php:8555 msgid "No NCM capabilities detected" msgstr "NCM 機能がありません" -#: ../../enterprise/include/functions_enterprise_api.php:1117 +#: ../../enterprise/include/functions_enterprise_api.php:1127 msgid "Is not metaconsole" msgstr "メタコンソールではありません" -#: ../../enterprise/include/functions_enterprise_api.php:2578 +#: ../../enterprise/include/functions_enterprise_api.php:2602 msgid "Error getting alert actions." msgstr "アラートアクション取得エラー" -#: ../../enterprise/include/functions_enterprise_api.php:3551 -#: ../../enterprise/include/functions_enterprise_api.php:3605 +#: ../../enterprise/include/functions_enterprise_api.php:3575 +#: ../../enterprise/include/functions_enterprise_api.php:3629 #, php-format msgid "%d agents added to apply queue." msgstr "適用キューへ %d エージェントを追加しました" -#: ../../enterprise/include/functions_enterprise_api.php:3574 -#: ../../enterprise/include/functions_policies.php:4860 +#: ../../enterprise/include/functions_enterprise_api.php:3598 +#: ../../enterprise/include/functions_policies.php:4815 #, php-format msgid "Successfully applied to node %s." msgstr "ノード %s へ適用しました。" -#: ../../enterprise/include/functions_enterprise_api.php:3576 -#: ../../enterprise/include/functions_policies.php:4862 +#: ../../enterprise/include/functions_enterprise_api.php:3600 +#: ../../enterprise/include/functions_policies.php:4817 #, php-format msgid "Successfully applied to nodes: %s." msgstr "ノードへ適用しました: %s" -#: ../../enterprise/include/functions_enterprise_api.php:3615 +#: ../../enterprise/include/functions_enterprise_api.php:3639 #, php-format msgid "Id policy %d already pending to apply." msgstr "ポリシー ID %d はすでに適用保留中です。" -#: ../../enterprise/include/functions_enterprise_api.php:3617 +#: ../../enterprise/include/functions_enterprise_api.php:3641 #, php-format msgid "Id policy %d already pending to apply in Id agent %d." msgstr "ポリシー ID %d は、すでにエージェント ID %d への適用保留中です。" -#: ../../enterprise/include/functions_enterprise_api.php:4037 -#: ../../enterprise/include/functions_enterprise_api.php:4064 +#: ../../enterprise/include/functions_enterprise_api.php:4061 +#: ../../enterprise/include/functions_enterprise_api.php:4088 msgid "" "Error adding web analysis module to policy. Id_module_type is not correct for " "web analysis modules." @@ -28352,7 +29044,7 @@ msgstr "" "ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 " "Id_module_type が、ウェブ分析モジュールに対して正しくありません。" -#: ../../enterprise/include/functions_enterprise_api.php:4046 +#: ../../enterprise/include/functions_enterprise_api.php:4070 msgid "" "Network Module could not be added to policy. Id_module_type is not correct for " "network modules." @@ -28360,7 +29052,7 @@ msgstr "" "ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネッ" "トワークモジュールに対して正しくありません。" -#: ../../enterprise/include/functions_enterprise_api.php:4055 +#: ../../enterprise/include/functions_enterprise_api.php:4079 msgid "" "Error adding web module to policy. Id_module_type is not correct for web " "modules." @@ -28368,21 +29060,21 @@ msgstr "" "ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対し" "て正しくありません。" -#: ../../enterprise/include/functions_enterprise_api.php:4076 +#: ../../enterprise/include/functions_enterprise_api.php:4100 msgid "Error adding module to policy configuration_data is not a valid base64." msgstr "" "ポリシーへのモジュール追加エラー。設定データが正しい base64 ではありません。" -#: ../../enterprise/include/functions_enterprise_api.php:6077 +#: ../../enterprise/include/functions_enterprise_api.php:6126 msgid "The agent could not be added to the policy." msgstr "エージェントをポリシーに追加できませんでした。" -#: ../../enterprise/include/functions_enterprise_api.php:6294 +#: ../../enterprise/include/functions_enterprise_api.php:6347 #, php-format msgid "Failed Updated remote config files %d" msgstr "リモート設定ファイル %d の更新に失敗しました。" -#: ../../enterprise/include/functions_enterprise_api.php:6304 +#: ../../enterprise/include/functions_enterprise_api.php:6357 #, php-format msgid "Updated remote config files: %d => %d" msgstr "リモート設定ファイルを更新しました: %d -> %d" @@ -28500,138 +29192,142 @@ msgstr "次のエージェント: \"%s\"" msgid "modules like \"%s\"" msgstr "次のモジュール: \"%s\"" -#: ../../enterprise/include/functions_services.php:1993 +#: ../../enterprise/include/functions_services.php:1995 msgid "NOT INITIALIZED" msgstr "未初期化" +#: ../../enterprise/include/functions_services.php:2019 +msgid "Edit service elements" +msgstr "サービス要素編集" + #: ../../enterprise/include/functions_services.php:2027 msgid "Delete service element" msgstr "サービス要素削除" -#: ../../enterprise/include/functions_services.php:2086 +#: ../../enterprise/include/functions_services.php:2037 +msgid "List of elements" +msgstr "要素一覧" + +#: ../../enterprise/include/functions_services.php:2093 msgid "FAIL" msgstr "失敗" -#: ../../enterprise/include/functions_login.php:22 +#: ../../enterprise/include/functions_login.php:39 msgid "You must change password:" msgstr "パスワードを変更する必要があります:" -#: ../../enterprise/include/functions_login.php:38 +#: ../../enterprise/include/functions_login.php:55 msgid "Password must be different from the 3 previous changes." msgstr "パスワードは、過去 3回と異なる必要があります。" -#: ../../enterprise/include/functions_login.php:50 -msgid "Old pass: " -msgstr "旧パスワード: " +#: ../../enterprise/include/functions_login.php:80 +msgid "Old pass" +msgstr "旧パスワード" -#: ../../enterprise/include/functions_login.php:53 -msgid "New pass: " -msgstr "新パスワード: " +#: ../../enterprise/include/functions_login.php:97 +msgid "New pass" +msgstr "新パスワード" -#: ../../enterprise/include/functions_login.php:57 -msgid "Confirm: " -msgstr "確認: " - -#: ../../enterprise/include/functions_login.php:63 +#: ../../enterprise/include/functions_login.php:120 msgid "Change" msgstr "変更" -#: ../../enterprise/include/functions_login.php:97 +#: ../../enterprise/include/functions_login.php:158 msgid "Login blocked" msgstr "ログインがブロックされました" -#: ../../enterprise/include/functions_login.php:105 +#: ../../enterprise/include/functions_login.php:166 msgid "User has been blocked. Try again in " msgstr "ユーザがブロックされました。次の時間経過後に再度試してください: " -#: ../../enterprise/include/functions_login.php:105 +#: ../../enterprise/include/functions_login.php:166 msgid " minutes" msgstr " 分" -#: ../../enterprise/include/functions_login.php:138 +#: ../../enterprise/include/functions_login.php:206 msgid "Login successfully" msgstr "ログイン成功" -#: ../../enterprise/include/functions_login.php:146 +#: ../../enterprise/include/functions_login.php:214 msgid "User pass successfully updated" msgstr "パスワードを更新しました" -#: ../../enterprise/include/functions_login.php:216 -#: ../../include/auth/mysql.php:741 +#: ../../enterprise/include/functions_login.php:291 +#: ../../include/auth/mysql.php:745 msgid "The password provided is not valid. Please, set another one." msgstr "パスワードが正しくありません。別のものを設定してください。" -#: ../../enterprise/include/functions_login.php:232 +#: ../../enterprise/include/functions_login.php:307 msgid "Password must be different from the " msgstr "パスワードは、次と異なっている必要があります: " -#: ../../enterprise/include/functions_login.php:232 +#: ../../enterprise/include/functions_login.php:307 msgid " previous changes." msgstr " 回前までの変更" -#: ../../enterprise/include/functions_login.php:245 +#: ../../enterprise/include/functions_login.php:320 msgid "Password must be different" msgstr "パスワードは違うものでなければいけません" -#: ../../enterprise/include/functions_login.php:256 -#: ../../enterprise/include/functions_login.php:306 +#: ../../enterprise/include/functions_login.php:331 +#: ../../enterprise/include/functions_login.php:381 msgid "Password too short" msgstr "パスワードが短すぎます" -#: ../../enterprise/include/functions_login.php:268 -#: ../../enterprise/include/functions_login.php:313 +#: ../../enterprise/include/functions_login.php:343 +#: ../../enterprise/include/functions_login.php:388 msgid "Password must contain numbers" msgstr "パスワードには数字を含めなければいけません" -#: ../../enterprise/include/functions_login.php:281 -#: ../../enterprise/include/functions_login.php:321 +#: ../../enterprise/include/functions_login.php:356 +#: ../../enterprise/include/functions_login.php:396 msgid "Password must contain symbols" msgstr "パスワードには記号を含めなければいけません" -#: ../../enterprise/include/functions_login.php:339 +#: ../../enterprise/include/functions_login.php:414 msgid "Invalid old password" msgstr "旧パスワードが不正です" -#: ../../enterprise/include/functions_login.php:376 +#: ../../enterprise/include/functions_login.php:451 msgid "Password confirm does not match" msgstr "パスワード確認が一致しません" -#: ../../enterprise/include/functions_login.php:383 +#: ../../enterprise/include/functions_login.php:458 msgid "Password empty" msgstr "パスワードが空です" -#: ../../enterprise/include/functions_login.php:502 -#: ../../godmode/users/configure_user.php:2129 -#: ../../godmode/users/configure_user.php:2199 -#: ../../godmode/users/configure_user.php:2271 -#: ../../include/ajax/double_auth.ajax.php:252 -#: ../../include/ajax/double_auth.ajax.php:350 -#: ../../include/ajax/double_auth.ajax.php:396 -#: ../../include/ajax/double_auth.ajax.php:512 -#: ../../operation/users/user_edit.php:1160 -#: ../../operation/users/user_edit.php:1226 -#: ../../operation/users/user_edit.php:1297 ../../general/register.php:154 +#: ../../enterprise/include/functions_login.php:577 +#: ../../godmode/users/configure_user.php:2065 +#: ../../godmode/users/configure_user.php:2134 +#: ../../godmode/users/configure_user.php:2205 +#: ../../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 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "認証エラー" -#: ../../enterprise/include/functions_login.php:509 -#: ../../godmode/users/configure_user.php:2136 -#: ../../godmode/users/configure_user.php:2206 -#: ../../include/ajax/double_auth.ajax.php:259 -#: ../../include/ajax/double_auth.ajax.php:357 -#: ../../include/ajax/double_auth.ajax.php:403 -#: ../../include/ajax/double_auth.ajax.php:520 -#: ../../operation/users/user_edit.php:1167 -#: ../../operation/users/user_edit.php:1233 ../../general/register.php:161 +#: ../../enterprise/include/functions_login.php:584 +#: ../../godmode/users/configure_user.php:2071 +#: ../../godmode/users/configure_user.php:2140 +#: ../../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 msgid "There was an error loading the data" msgstr "データのロードでエラーが発生しました" -#: ../../enterprise/include/functions_login.php:518 -#: ../../godmode/users/configure_user.php:2214 -#: ../../godmode/users/configure_user.php:2292 -#: ../../operation/users/user_edit.php:1241 -#: ../../operation/users/user_edit.php:1317 ../../general/register.php:170 +#: ../../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 msgid "Double authentication activation" msgstr "二段階認証の有効化" @@ -28679,10 +29375,10 @@ msgid "Invalid plugin definition" msgstr "不正なプラグイン定義" #: ../../enterprise/include/lib/NetworkManager.php:82 -#: ../../godmode/setup/setup_ehorus.php:111 -#: ../../godmode/setup/setup_integria.php:566 -#: ../../operation/users/user_edit.php:810 -#: ../../operation/users/user_edit.php:856 +#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_integria.php:652 +#: ../../operation/users/user_edit.php:872 +#: ../../operation/users/user_edit.php:925 msgid "Test" msgstr "テスト" @@ -28699,7 +29395,7 @@ msgid "Send firmware" msgstr "ファームウエア送信" #: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:489 +#: ../../godmode/setup/setup_general.php:198 msgid "On demand" msgstr "オンデマンド" @@ -28735,68 +29431,68 @@ msgstr "オンデマンドスクリプトの実行中" msgid "Montly" msgstr "月次" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:839 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:853 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:842 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:856 msgid "There was a problem creating Action" msgstr "アクション作成で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:890 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:903 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:893 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:906 msgid "There was a problem updating Action" msgstr "アクションの更新で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:939 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:942 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:956 msgid "There was a problem deleting Action" msgstr "アクション削除で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:997 msgid "There was a problem standby alert" msgstr "スタンバイアラートで問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1006 msgid "There was a problem standby off alert" msgstr "アラートのスタンバイ解除で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1046 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1049 msgid "There was a problem enabled alert" msgstr "アラート有効化で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1059 msgid "There was a problem disabled alert" msgstr "アラート無効化で問題が発生しました" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1112 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1115 msgid "Event group Recursive" msgstr "イベントグループ再帰" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 -#: ../../include/functions_reporting_html.php:1051 -#: ../../include/functions_reporting_html.php:1317 -#: ../../include/functions_reporting_html.php:2548 -#: ../../include/class/SnmpConsole.class.php:339 +#: ../../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/class/SnmpConsole.class.php:276 msgid "Count" msgstr "回数" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1133 msgid "Time window" msgstr "時刻ウィンドウ" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1664 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1667 msgid "Failed to cleanup old rules." msgstr "古いルールのクリーンアップに失敗しました。" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1672 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1675 #, php-format msgid "Failed SQL: %s" msgstr "失敗した SQL: %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1677 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1680 #, php-format msgid "Failed to apply rule: %s." msgstr "ルール適用に失敗しました: %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1825 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1828 msgid "any" msgstr "すべて" @@ -28876,15 +29572,15 @@ msgstr "" #: ../../enterprise/include/lib/Service.php:397 #: ../../enterprise/include/lib/Service.php:740 #: ../../enterprise/include/lib/Service.php:921 -#: ../../enterprise/include/lib/Metaconsole/Node.php:1353 -#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:534 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1354 +#: ../../enterprise/include/lib/Metaconsole/Synchronizer.php:559 #: ../../enterprise/include/lib/ServiceElement.php:390 -#: ../../enterprise/include/lib/ServiceElement.php:921 -#: ../../enterprise/include/lib/ServiceElement.php:963 -#: ../../enterprise/include/lib/ServiceElement.php:1005 -#: ../../enterprise/include/lib/ServiceElement.php:1111 -#: ../../enterprise/include/lib/ServiceElement.php:1153 -#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1176 +#: ../../enterprise/include/lib/ServiceElement.php:923 +#: ../../enterprise/include/lib/ServiceElement.php:965 +#: ../../enterprise/include/lib/ServiceElement.php:1007 +#: ../../enterprise/include/lib/ServiceElement.php:1113 +#: ../../enterprise/include/lib/ServiceElement.php:1155 +#: ../../include/lib/Agent.php:349 ../../include/lib/Module.php:1207 #: ../../include/lib/Entity.php:303 #, php-format msgid "Cannot connect to node %d" @@ -29013,7 +29709,7 @@ msgstr "" "%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確" "認してください" -#: ../../enterprise/include/lib/Metaconsole/Node.php:1173 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1174 msgid "" "The elimination of this node will lead to the suppression of its agents from " "metaconsole and all the configuration assigned to them. " @@ -29021,11 +29717,11 @@ msgstr "" "このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てら" "れているすべての設定が抑制されます。" -#: ../../enterprise/include/lib/Metaconsole/Node.php:1177 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1178 msgid "The rules for this node may stop working. " msgstr "このノードのルールが機能しなくなる可能性があります。" -#: ../../enterprise/include/lib/Metaconsole/Node.php:1181 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1182 msgid "" "The deleted node will lose its license, and you must license it manually " "again. " @@ -29033,18 +29729,18 @@ msgstr "" "削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があ" "ります。" -#: ../../enterprise/include/lib/Metaconsole/Node.php:1685 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1686 #, php-format msgid "Failed to overwrite node data: %s" msgstr "ノードデータの上書きに失敗しました: %s" -#: ../../enterprise/include/lib/Metaconsole/Node.php:1703 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3037 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1704 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3046 msgid "Final step" msgstr "最終ステップ" -#: ../../enterprise/include/lib/Metaconsole/Node.php:1704 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3038 +#: ../../enterprise/include/lib/Metaconsole/Node.php:1705 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3047 msgid "Database merged" msgstr "データベースをマージしました" @@ -29053,71 +29749,71 @@ msgid "Activating node" msgstr "ノードをアクティベート中" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:398 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:445 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:758 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1161 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1255 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1609 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1918 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2291 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3215 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3500 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3658 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3733 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4020 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4236 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:407 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:454 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:767 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:900 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1170 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1264 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1618 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1927 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2300 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3224 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3509 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3667 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3742 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4029 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4245 msgid "Connect node" msgstr "ノード接続" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:665 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:674 msgid "Create table tmerge_error" msgstr "テーブル tmerge_error を作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:691 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:700 msgid "Create table tmerge_steps" msgstr "テーブル tmerge_steps 作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:716 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:725 msgid "Create table tmerge_queries" msgstr "テーブル tmerge_queries 作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:861 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:870 #, php-format msgid "%s console" msgstr "%s コンソール" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:866 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:875 msgid "Check cron task" msgstr "cron タスクチェック" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:876 msgid "Please login into this node before using this feature" msgstr "この機能を使う前にこのノードへログインしてください" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:951 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:960 msgid "memory_limit current value" msgstr "memory_limit 現在値" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:967 msgid "" "Check current packages, all nodes and metaconsole, are not in the same version" msgstr "" "全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンで" "はありません。" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:979 msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" msgstr "" "全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではあり" "ません。" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991 msgid "Max size collection, all nodes and metaconsole, are not equal" msgstr "全ノードとメタコンソールで最大コレクションサイズが同じではありません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1007 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1016 #, php-format msgid "" "Post max size, nodes cannot be smaller than the size of the metaconsole %s" @@ -29125,7 +29821,7 @@ msgstr "" "最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできませ" "ん" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1022 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1031 #, php-format msgid "" "Upload max file size, nodes cannot be smaller than the size of the metaconsole " @@ -29134,238 +29830,238 @@ msgstr "" "最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより" "小さくすることはできません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1084 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1093 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1109 msgid "Problems with the backup directory" msgstr "バックアップディレクトリに問題があります" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1085 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1094 msgid "Cannot create \"merge_backups\" folder in attachment directory" msgstr "添付ファイルディレクトリに \"merge_backups\" フォルダを作成できません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1101 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1110 msgid "The \"merge_backpus\" directory does not have the correct permissions" msgstr "\"merge_backpus\" ディレクトリが正しいパーミッションではありません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1111 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1120 msgid "Extension ZIP" msgstr "拡張 ZIP" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1112 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1121 msgid "The ZIP extension is not loaded, please install this dependency" msgstr "" "ZIP 拡張機能がロードされていません。この依存ファイルをインストールしてください" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1212 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1221 msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" msgstr "バックアップの挿入、外部キーの無効化、tmerge_queries で例外発生" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1238 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1247 msgid "Resets foreing keys and exceptions and ends the merge preparation process" msgstr "外部キーと例外をリセットし、マージ準備処理を終了します" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1285 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1294 msgid "Enable exceptions in tmerge_queries" msgstr "tmerge_queries で例外を有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1309 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1318 msgid "Enable foreing keys in tmerge_queries" msgstr "tmerge_queries で外部キーを有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1590 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1887 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1599 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1896 msgid "Preparation of all nodes for the table merge process" msgstr "テーブルマージ処理のためのすべてのノードの準備" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1666 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1675 msgid "This table does not have the id" msgstr "このテーブルには id がありません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1667 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1676 msgid "Prepare merge request" msgstr "マージリクエストの準備" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2005 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2014 msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" msgstr "tmerge_queries の切り捨て、自動インクリメント、挿入" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2179 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2188 msgid "Inserts updates in tmerge_queries" msgstr "tmerge_queries へのインサート更新" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2216 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2225 msgid "Merging collections files" msgstr "コレクションファイルのマージ中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2272 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2418 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2589 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3202 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2281 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2427 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2598 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3211 #, php-format msgid "Api call: %s" msgstr "API 呼出: %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2330 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2331 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2339 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2340 msgid "Problems while backing up collections from: " msgstr "次のコレクションのバックアップで問題が発生しました: " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2348 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2352 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2357 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2361 #, php-format msgid "Problems downloading collections from %s" msgstr "%s からのコレクションのダウンロードで問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2364 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2368 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2373 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2377 #, php-format msgid "Problems unzipping collection file from %s" msgstr "%s からのコレクションファイルの unzip で問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2647 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2656 msgid "Start phase merge" msgstr "フェーズマージを開始" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2659 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2668 msgid "Create backups" msgstr "バックアップの作成" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2727 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2728 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2736 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2737 msgid "Problems creating the backup conf agents" msgstr "エージェント設定バックアップの作成で問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2738 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2976 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2747 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2985 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3355 msgid "Class agent" msgstr "クラスエージェント" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2762 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2774 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2771 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2783 msgid "Disable_foreing" msgstr "強制を無効" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2786 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2795 msgid "Truncate table" msgstr "テーブルの切り捨て" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2804 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2813 msgid "Autoincrement" msgstr "自動インクリメント" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2816 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2825 msgid "Inserts" msgstr "挿入" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2834 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2843 msgid "Disabling constraints" msgstr "制約の無効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2852 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2861 msgid "Updates" msgstr "アップデート" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2884 msgid "Restoring constraints" msgstr "制約の復元" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2893 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2902 msgid "Enable exceptions" msgstr "例外の有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2911 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2920 msgid "Enable foreings keys" msgstr "外部キーの有効化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2928 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2938 msgid "Update conf agent policies" msgstr "エージェント設定ポリシーの更新" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2965 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2966 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2974 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2975 msgid "Error updating agent conf" msgstr "エージェント設定更新エラー" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2987 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2996 msgid "Synchronizing collections" msgstr "コレクションの同期中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2999 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3000 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3008 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3009 msgid "Error synchronizing collections" msgstr "コレクションの同期エラー" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3096 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3105 msgid "Problems unzipping collections at: " msgstr "次のコレクションの unzip で問題が発生しました: " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3097 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3106 #, php-format msgid "File is not a valid zip file \"%s\"" msgstr "ファイルが正しい zip ファイルではありません \"%s\"" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3255 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3264 msgid "Restoring database backup" msgstr "データベースバックアップのリストア中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3281 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4501 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3290 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4516 msgid "Problems creating the backup" msgstr "バックアップ作成で問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3294 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3303 msgid "Restore backups conf agents" msgstr "エージェント設定バックアップのリストア" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3331 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3340 msgid "Problems restoring the backup conf agents" msgstr "エージェント設定バックアップのリストアで問題が発生しました" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3333 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3342 #, php-format msgid "Agent \"%s\" with md5 file \"%s\"" msgstr "エージェント \"%s\" と md5 ファイル \"%s\"" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3359 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3368 msgid "Restore collections" msgstr "コレクションのリストア" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3374 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3375 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3383 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3384 msgid "Error Synch collections" msgstr "コレクション同期エラー" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3596 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3828 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3605 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3837 msgid "Insert info steps" msgstr "情報挿入ステップ" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3745 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3754 msgid "Node not ready" msgstr "ノードが準備できていません" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3746 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3755 msgid "Pending to be unified" msgstr "統合待ち" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3987 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3992 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4044 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4049 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3996 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4001 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4053 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4058 msgid "Initialize" msgstr "初期化" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4192 msgid "Backup" msgstr "バックアップ" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4213 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4222 msgid "Applying" msgstr "適用中" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4432 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4447 msgid "Error updating events" msgstr "イベント更新エラー" @@ -29373,70 +30069,70 @@ msgstr "イベント更新エラー" msgid "You do not have grants to access this feature" msgstr "この機能にアクセスする権限がありません" -#: ../../enterprise/include/lib/RCMDFile.class.php:548 +#: ../../enterprise/include/lib/RCMDFile.class.php:550 msgid "There was a problem creating RCMD" msgstr "RCMD 作成で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:693 -#: ../../enterprise/include/lib/RCMDFile.class.php:717 +#: ../../enterprise/include/lib/RCMDFile.class.php:695 +#: ../../enterprise/include/lib/RCMDFile.class.php:719 msgid "There was a problem deleting RCMD" msgstr "RCMD 削除で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:865 +#: ../../enterprise/include/lib/RCMDFile.class.php:867 msgid "No agent configuration file" msgstr "エージェント設定ファイルがありません" -#: ../../enterprise/include/lib/RCMDFile.class.php:873 +#: ../../enterprise/include/lib/RCMDFile.class.php:875 msgid "you don't have write permissions in the configuration file" msgstr "設定ファイルに書き込む権限がありません" -#: ../../enterprise/include/lib/RCMDFile.class.php:914 +#: ../../enterprise/include/lib/RCMDFile.class.php:916 msgid "This agent is already a target" msgstr "このエージェントはすでに対象です" -#: ../../enterprise/include/lib/RCMDFile.class.php:945 +#: ../../enterprise/include/lib/RCMDFile.class.php:947 #, php-format msgid "You do not have grants to access in this agent %s" msgstr "このエージェント %s へアクセスする権限がありません" -#: ../../enterprise/include/lib/RCMDFile.class.php:1011 +#: ../../enterprise/include/lib/RCMDFile.class.php:1013 msgid "There was a problem creating RCMD files" msgstr "RCMD ファイルの作成で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:1058 +#: ../../enterprise/include/lib/RCMDFile.class.php:1060 msgid "There was a problem creating target" msgstr "対象作成で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:1092 +#: ../../enterprise/include/lib/RCMDFile.class.php:1094 msgid "There was a problem adding items in the configuration file" msgstr "設定ファイルへのアイテム追加で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:1118 -#: ../../enterprise/include/lib/RCMDFile.class.php:1285 +#: ../../enterprise/include/lib/RCMDFile.class.php:1120 +#: ../../enterprise/include/lib/RCMDFile.class.php:1287 msgid "No agent has been selected" msgstr "エージェントが選択されていません" -#: ../../enterprise/include/lib/RCMDFile.class.php:1151 +#: ../../enterprise/include/lib/RCMDFile.class.php:1153 msgid "Target doesn't exist" msgstr "対象が存在しません" -#: ../../enterprise/include/lib/RCMDFile.class.php:1223 +#: ../../enterprise/include/lib/RCMDFile.class.php:1225 msgid "There was a problem deleting tokens in the configuration file" msgstr "設定ファイル内のトークン削除で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:1259 +#: ../../enterprise/include/lib/RCMDFile.class.php:1261 msgid "There was a problem deleting target from DB" msgstr "DB からの対象削除で問題が発生しました" -#: ../../enterprise/include/lib/RCMDFile.class.php:1417 +#: ../../enterprise/include/lib/RCMDFile.class.php:1419 msgid "Yaml is empty" msgstr "Yaml が空です" -#: ../../enterprise/include/lib/RCMDFile.class.php:1426 +#: ../../enterprise/include/lib/RCMDFile.class.php:1428 msgid "Doesn't have a valid YAML format" msgstr "正しい YAML フォーマットではありません" -#: ../../enterprise/include/lib/RCMDFile.class.php:1444 +#: ../../enterprise/include/lib/RCMDFile.class.php:1446 #, php-format msgid "%s field is not allowed" msgstr "%s フィールドは許可されていません" @@ -29452,7 +30148,7 @@ msgid "Failed to update, already exists: \"%d\"" msgstr "更新に失敗しました。すでに存在します: \"%d\"" #: ../../enterprise/include/lib/Policy/Module.php:201 -#: ../../enterprise/include/lib/Policy.php:1207 ../../include/lib/Module.php:809 +#: ../../enterprise/include/lib/Policy.php:1207 ../../include/lib/Module.php:840 #, php-format msgid "Module already exists: \"%s\"" msgstr "モジュールがすでに存在します: \"%s\"" @@ -29477,12 +30173,12 @@ msgstr "このフィルタはサーバの速度を低下させます (%s ms)" msgid "Regular expression is not valid: %s." msgstr "正規表現が正しくありません: %s" -#: ../../enterprise/include/lib/ServiceElement.php:864 +#: ../../enterprise/include/lib/ServiceElement.php:866 #, php-format msgid " error while decoding rules: %s" msgstr " ルールデコードエラー: %s" -#: ../../enterprise/include/lib/ServiceElement.php:1271 +#: ../../enterprise/include/lib/ServiceElement.php:1273 #, php-format msgid " error: Failed to delete element: %s" msgstr " エラー: 要素の削除に失敗しました: %s" @@ -29498,39 +30194,40 @@ msgid "Policy already defined: \"%s\"" msgstr "ポリシーはすでに定義済です: \"%s\"" #: ../../enterprise/include/functions_events.php:40 -#: ../../godmode/events/event_filter.php:139 -#: ../../godmode/events/event_edit_filter.php:377 +#: ../../godmode/events/event_filter.php:147 +#: ../../godmode/events/event_edit_filter.php:391 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 -#: ../../operation/events/events.php:1688 ../../operation/events/events.php:2325 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:305 +#: ../../operation/events/events.php:1763 ../../operation/events/events.php:2385 msgid "Event status" msgstr "状態" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:450 -#: ../../operation/events/events.php:1964 +#: ../../godmode/events/event_edit_filter.php:501 +#: ../../operation/events/events.php:2008 msgid "User ack." msgstr "承諾したユーザ" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:505 +#: ../../godmode/events/event_edit_filter.php:558 +#: ../../godmode/events/event_edit_filter.php:574 msgid "Date from" msgstr "開始日" #: ../../enterprise/include/functions_events.php:121 -#: ../../godmode/events/event_edit_filter.php:508 msgid "Date to" msgstr "終了日" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:494 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4766 -#: ../../operation/events/events.php:1720 +#: ../../godmode/events/event_edit_filter.php:542 +#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4968 +#: ../../operation/events/events.php:1795 msgid "Repeated" msgstr "複数回発生イベント" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:654 -#: ../../operation/events/events.php:2000 +#: ../../godmode/events/event_edit_filter.php:759 +#: ../../operation/events/events.php:2054 msgid "Alert events" msgstr "アラートイベント" @@ -29539,14 +30236,15 @@ msgid "Id source events" msgstr "ソースイベントID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:440 +#: ../../godmode/events/event_edit_filter.php:475 #: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 -#: ../../include/class/SnmpConsole.class.php:467 -#: ../../include/class/AuditLog.class.php:186 +#: ../../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:1701 ../../operation/events/events.php:2355 +#: ../../operation/events/events.php:1776 ../../operation/events/events.php:2415 msgid "Max. hours old" msgstr "最大表示範囲(時間)" @@ -29556,14 +30254,14 @@ msgid "More than 5 tags" msgstr "5つ以上のタグ" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:549 -#: ../../operation/events/events.php:2196 ../../operation/events/events.php:2199 +#: ../../godmode/events/event_edit_filter.php:629 +#: ../../operation/events/events.php:2255 ../../operation/events/events.php:2258 msgid "Events with following tags" msgstr "次のタグを含むイベント" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:602 -#: ../../operation/events/events.php:2197 ../../operation/events/events.php:2200 +#: ../../godmode/events/event_edit_filter.php:694 +#: ../../operation/events/events.php:2256 ../../operation/events/events.php:2259 msgid "Events without following tags" msgstr "次のタグを含まないイベント" @@ -29633,8 +30331,8 @@ msgid "Subscription" msgstr "サブスクリプション" #: ../../enterprise/include/functions_license.php:120 -#: ../../include/functions_menu.php:837 -#: ../../include/class/Diagnostics.class.php:1159 +#: ../../include/functions_menu.php:956 +#: ../../include/class/Diagnostics.class.php:1179 msgid "Support expires" msgstr "サポート切れ" @@ -29654,267 +30352,271 @@ msgstr "次の空き IP を割り当てる" msgid "Next available IP" msgstr "次の空き IP" -#: ../../enterprise/include/functions_ipam.php:1341 -#: ../../enterprise/tools/ipam/ipam_ajax.php:483 -#: ../../include/ajax/events.php:1680 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 +#: ../../enterprise/include/functions_ipam.php:1343 +#: ../../enterprise/tools/ipam/ipam_ajax.php:486 +#: ../../include/ajax/events.php:1753 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" msgstr "詳細" -#: ../../enterprise/include/functions_ipam.php:1386 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../godmode/agentes/inventory_manager.php:258 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 -#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/group_view.php:221 -#: ../../operation/agentes/group_view.php:283 +#: ../../enterprise/include/functions_ipam.php:1388 +#: ../../enterprise/operation/services/services.list.php:677 +#: ../../godmode/agentes/inventory_manager.php:270 +#: ../../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 msgid "Force" msgstr "強制する" -#: ../../enterprise/include/functions_ipam.php:1559 -#: ../../include/class/SnmpConsole.class.php:189 -#: ../../operation/snmpconsole/snmp_statistics.php:78 -#: ../../operation/incidents/incident_statistics.php:21 +#: ../../enterprise/include/functions_ipam.php:1564 +#: ../../include/class/SnmpConsole.class.php:188 +#: ../../operation/snmpconsole/snmp_statistics.php:80 +#: ../../operation/incidents/incident_statistics.php:22 +#: ../../operation/incidents/incident_statistics.php:35 msgid "Statistics" msgstr "統計" -#: ../../enterprise/include/functions_ipam.php:1561 -#: ../../enterprise/include/functions_ipam.php:2003 +#: ../../enterprise/include/functions_ipam.php:1566 +#: ../../enterprise/include/functions_ipam.php:2064 #: ../../enterprise/tools/ipam/ipam_excel.php:142 #: ../../enterprise/tools/ipam/ipam_excel.php:210 msgid "Total IPs" msgstr "全IP" -#: ../../enterprise/include/functions_ipam.php:1567 +#: ../../enterprise/include/functions_ipam.php:1572 msgid "Occupied" msgstr "占有済" -#: ../../enterprise/include/functions_ipam.php:1573 -#: ../../enterprise/include/functions_ipam.php:2056 -#: ../../enterprise/tools/ipam/ipam_network.php:401 -#: ../../enterprise/tools/ipam/ipam_ajax.php:406 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 +#: ../../enterprise/include/functions_ipam.php:1574 +msgid "Available" +msgstr "利用可能" + +#: ../../enterprise/include/functions_ipam.php:1578 +#: ../../enterprise/include/functions_ipam.php:2117 +#: ../../enterprise/tools/ipam/ipam_network.php:428 +#: ../../enterprise/tools/ipam/ipam_ajax.php:409 +#: ../../enterprise/tools/ipam/ipam_massive.php:130 msgid "Managed" msgstr "管理対象" -#: ../../enterprise/include/functions_ipam.php:1575 +#: ../../enterprise/include/functions_ipam.php:1580 msgid "Not managed" msgstr "管理対象外" -#: ../../enterprise/include/functions_ipam.php:1579 -#: ../../enterprise/include/functions_ipam.php:1742 -#: ../../enterprise/include/functions_ipam.php:2057 -#: ../../enterprise/tools/ipam/ipam_network.php:402 -#: ../../enterprise/tools/ipam/ipam_ajax.php:432 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 +#: ../../enterprise/include/functions_ipam.php:1584 +#: ../../enterprise/include/functions_ipam.php:1776 +#: ../../enterprise/include/functions_ipam.php:2118 +#: ../../enterprise/tools/ipam/ipam_network.php:429 +#: ../../enterprise/tools/ipam/ipam_ajax.php:435 +#: ../../enterprise/tools/ipam/ipam_massive.php:135 msgid "Reserved" msgstr "予約済み" -#: ../../enterprise/include/functions_ipam.php:1581 +#: ../../enterprise/include/functions_ipam.php:1586 msgid "Not Reserved" msgstr "未予約" -#: ../../enterprise/include/functions_ipam.php:1590 +#: ../../enterprise/include/functions_ipam.php:1595 msgid "Occupancy statistics" msgstr "占有率統計" -#: ../../enterprise/include/functions_ipam.php:1654 +#: ../../enterprise/include/functions_ipam.php:1657 msgid "DESC" msgstr "降順" -#: ../../enterprise/include/functions_ipam.php:1655 +#: ../../enterprise/include/functions_ipam.php:1658 msgid "ASC" msgstr "昇順" -#: ../../enterprise/include/functions_ipam.php:1656 -#: ../../enterprise/include/functions_ipam.php:1657 -#: ../../enterprise/include/functions_ipam.php:2051 -#: ../../enterprise/tools/ipam/ipam_network.php:397 -#: ../../enterprise/tools/ipam/ipam_ajax.php:364 -#: ../../include/class/Diagnostics.class.php:735 -#: ../../include/class/Diagnostics.class.php:753 +#: ../../enterprise/include/functions_ipam.php:1659 +#: ../../enterprise/include/functions_ipam.php:1660 +#: ../../enterprise/include/functions_ipam.php:2112 +#: ../../enterprise/tools/ipam/ipam_network.php:424 +#: ../../enterprise/tools/ipam/ipam_ajax.php:367 +#: ../../include/class/Diagnostics.class.php:755 +#: ../../include/class/Diagnostics.class.php:773 msgid "Hostname" msgstr "ホスト名" -#: ../../enterprise/include/functions_ipam.php:1656 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "A -> Z" msgstr "A -> Z" -#: ../../enterprise/include/functions_ipam.php:1657 +#: ../../enterprise/include/functions_ipam.php:1660 msgid "Z -> A" msgstr "Z -> A" -#: ../../enterprise/include/functions_ipam.php:1658 -#: ../../enterprise/include/functions_ipam.php:1659 +#: ../../enterprise/include/functions_ipam.php:1661 +#: ../../enterprise/include/functions_ipam.php:1662 msgid "Last check" msgstr "最新の確認" -#: ../../enterprise/include/functions_ipam.php:1658 +#: ../../enterprise/include/functions_ipam.php:1661 msgid "Newer -> Older" msgstr "新しい -> 古い" -#: ../../enterprise/include/functions_ipam.php:1659 +#: ../../enterprise/include/functions_ipam.php:1662 msgid "Older -> Newer" msgstr "古い -> 新しい" -#: ../../enterprise/include/functions_ipam.php:1686 +#: ../../enterprise/include/functions_ipam.php:1700 msgid "Exact address match" msgstr "アドレスの完全一致" -#: ../../enterprise/include/functions_ipam.php:1690 +#: ../../enterprise/include/functions_ipam.php:1706 msgid "S.O" msgstr "OS" -#: ../../enterprise/include/functions_ipam.php:1703 +#: ../../enterprise/include/functions_ipam.php:1725 msgid "Big" msgstr "大" -#: ../../enterprise/include/functions_ipam.php:1704 +#: ../../enterprise/include/functions_ipam.php:1726 msgid "Tiny" msgstr "小" -#: ../../enterprise/include/functions_ipam.php:1705 +#: ../../enterprise/include/functions_ipam.php:1728 msgid "Icons style" msgstr "アイコンスタイル" -#: ../../enterprise/include/functions_ipam.php:1722 +#: ../../enterprise/include/functions_ipam.php:1752 msgid "Show not alive hosts" msgstr "非稼働ホスト表示" -#: ../../enterprise/include/functions_ipam.php:1730 +#: ../../enterprise/include/functions_ipam.php:1762 msgid "Show only managed addresses" msgstr "管理対象アドレスのみ表示" -#: ../../enterprise/include/functions_ipam.php:1738 +#: ../../enterprise/include/functions_ipam.php:1772 msgid "Reserved addresses" msgstr "予約済アドレス" -#: ../../enterprise/include/functions_ipam.php:1743 +#: ../../enterprise/include/functions_ipam.php:1777 msgid "Unreserved" msgstr "未予約" -#: ../../enterprise/include/functions_ipam.php:1753 +#: ../../enterprise/include/functions_ipam.php:1794 msgid "Last Contact" msgstr "最終接続" -#: ../../enterprise/include/functions_ipam.php:1796 +#: ../../enterprise/include/functions_ipam.php:1849 msgid "Filter options" msgstr "フィルターオプション" -#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/include/functions_ipam.php:2054 msgid "id Network" msgstr "ネットワーク ID" -#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/include/functions_ipam.php:2059 msgid "ID recon task" msgstr "自動検出タスク ID" -#: ../../enterprise/include/functions_ipam.php:1999 +#: ../../enterprise/include/functions_ipam.php:2060 msgid "Scan Interval" msgstr "スキャン間隔" -#: ../../enterprise/include/functions_ipam.php:2000 +#: ../../enterprise/include/functions_ipam.php:2061 msgid "Users Operator" msgstr "管理ユーザ" -#: ../../enterprise/include/functions_ipam.php:2001 +#: ../../enterprise/include/functions_ipam.php:2062 msgid "Total Ips" msgstr "全 IP" -#: ../../enterprise/include/functions_ipam.php:2002 -msgid "Last Update" -msgstr "最終更新" - -#: ../../enterprise/include/functions_ipam.php:2004 +#: ../../enterprise/include/functions_ipam.php:2065 #: ../../enterprise/tools/ipam/ipam_excel.php:143 #: ../../enterprise/tools/ipam/ipam_excel.php:211 msgid "Alive IPs" msgstr "応答 IP" -#: ../../enterprise/include/functions_ipam.php:2005 +#: ../../enterprise/include/functions_ipam.php:2066 #: ../../enterprise/tools/ipam/ipam_excel.php:144 #: ../../enterprise/tools/ipam/ipam_excel.php:212 msgid "Occupied %" msgstr "占有 %" -#: ../../enterprise/include/functions_ipam.php:2006 +#: ../../enterprise/include/functions_ipam.php:2067 #: ../../enterprise/tools/ipam/ipam_excel.php:145 #: ../../enterprise/tools/ipam/ipam_excel.php:213 msgid "Available %" msgstr "残り %" -#: ../../enterprise/include/functions_ipam.php:2007 +#: ../../enterprise/include/functions_ipam.php:2068 #: ../../enterprise/tools/ipam/ipam_excel.php:146 #: ../../enterprise/tools/ipam/ipam_excel.php:214 msgid "Managed IPs" msgstr "管理 IP" -#: ../../enterprise/include/functions_ipam.php:2008 +#: ../../enterprise/include/functions_ipam.php:2069 #: ../../enterprise/tools/ipam/ipam_excel.php:147 #: ../../enterprise/tools/ipam/ipam_excel.php:215 msgid "Managed %" msgstr "管理 %" -#: ../../enterprise/include/functions_ipam.php:2009 +#: ../../enterprise/include/functions_ipam.php:2070 #: ../../enterprise/tools/ipam/ipam_excel.php:148 #: ../../enterprise/tools/ipam/ipam_excel.php:216 msgid "Unmanaged %" msgstr "非管理 %" -#: ../../enterprise/include/functions_ipam.php:2010 +#: ../../enterprise/include/functions_ipam.php:2071 #: ../../enterprise/tools/ipam/ipam_excel.php:149 #: ../../enterprise/tools/ipam/ipam_excel.php:217 msgid "Reserved IPs" msgstr "予約済 IP" -#: ../../enterprise/include/functions_ipam.php:2011 +#: ../../enterprise/include/functions_ipam.php:2072 #: ../../enterprise/tools/ipam/ipam_excel.php:150 #: ../../enterprise/tools/ipam/ipam_excel.php:218 msgid "Reserved %" msgstr "予約済 %" -#: ../../enterprise/include/functions_ipam.php:2012 +#: ../../enterprise/include/functions_ipam.php:2073 #: ../../enterprise/tools/ipam/ipam_excel.php:151 #: ../../enterprise/tools/ipam/ipam_excel.php:219 msgid "Not reserved %" msgstr "未予約 %" -#: ../../enterprise/include/functions_ipam.php:2055 +#: ../../enterprise/include/functions_ipam.php:2116 msgid "OS Name" msgstr "OS 名" -#: ../../enterprise/include/functions_ipam.php:2058 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 +#: ../../enterprise/include/functions_ipam.php:2119 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:382 msgid "Created at" msgstr "作成日時" -#: ../../enterprise/include/functions_ipam.php:2059 +#: ../../enterprise/include/functions_ipam.php:2120 msgid "Last updated" msgstr "最終更新" -#: ../../enterprise/include/functions_ipam.php:2060 +#: ../../enterprise/include/functions_ipam.php:2121 msgid "Last modified" msgstr "最終更新" -#: ../../enterprise/include/functions_ipam.php:2061 +#: ../../enterprise/include/functions_ipam.php:2122 msgid "Dhcp Leased" msgstr "DHCP リース済" -#: ../../enterprise/include/functions_ipam.php:2062 +#: ../../enterprise/include/functions_ipam.php:2123 msgid "Dhcp Leased Mode" msgstr "DHCP リースモード" -#: ../../enterprise/include/functions_ipam.php:2063 +#: ../../enterprise/include/functions_ipam.php:2124 msgid "Dhcp Leased Expiration" msgstr "DHCP リース期限切れ" -#: ../../enterprise/include/functions_ipam.php:2064 +#: ../../enterprise/include/functions_ipam.php:2125 msgid "Mac address" msgstr "MAC アドレス" +#: ../../enterprise/include/reset_pass.php:276 +msgid "PANDORA FMS NEXT GENERATION" +msgstr "PANDORA FMS NEXT GENERATION" + #: ../../enterprise/include/functions_policies.php:424 #: ../../enterprise/include/functions_policies.php:439 #: ../../include/functions_alerts.php:477 @@ -29935,80 +30637,74 @@ msgstr "%s 失敗" msgid "Policy cleaned from nodes: " msgstr "ポリシーがノードから削除されました: " -#: ../../enterprise/include/functions_policies.php:935 -#, php-format -msgid "Failed to connect to node %s" -msgstr "ノード %s への接続に失敗しました" - -#: ../../enterprise/include/functions_policies.php:3507 +#: ../../enterprise/include/functions_policies.php:3477 msgid "Policy linkation" msgstr "ポリシーリンク" -#: ../../enterprise/include/functions_policies.php:3512 +#: ../../enterprise/include/functions_policies.php:3482 msgid "Module linked" msgstr "リンク済モジュール" -#: ../../enterprise/include/functions_policies.php:3517 -#: ../../enterprise/include/functions_policies.php:3537 +#: ../../enterprise/include/functions_policies.php:3487 +#: ../../enterprise/include/functions_policies.php:3507 msgid "Unlink from policy" msgstr "ポリシーからリンクを外す" -#: ../../enterprise/include/functions_policies.php:3522 +#: ../../enterprise/include/functions_policies.php:3492 msgid "Module unlinked" msgstr "未リンクモジュール" -#: ../../enterprise/include/functions_policies.php:3527 -#: ../../enterprise/include/functions_policies.php:3547 +#: ../../enterprise/include/functions_policies.php:3497 +#: ../../enterprise/include/functions_policies.php:3517 msgid "Relink to policy" msgstr "ポリシーへの再リンク" -#: ../../enterprise/include/functions_policies.php:3532 +#: ../../enterprise/include/functions_policies.php:3502 msgid "Module pending to link" msgstr "リンク待ちモジュール" -#: ../../enterprise/include/functions_policies.php:3532 +#: ../../enterprise/include/functions_policies.php:3502 #: ../../godmode/agentes/module_manager_editor.php:550 msgid "Module will be linked in the next application" msgstr "モジュールは次回適用時にリンクされます。" -#: ../../enterprise/include/functions_policies.php:3542 +#: ../../enterprise/include/functions_policies.php:3512 msgid "Module pending to unlink" msgstr "リンク解除待ちモジュール" -#: ../../enterprise/include/functions_policies.php:3542 +#: ../../enterprise/include/functions_policies.php:3512 #: ../../godmode/agentes/module_manager_editor.php:564 msgid "Module will be unlinked in the next application" msgstr "モジュールは次回適用時にリンク解除されます。" -#: ../../enterprise/include/functions_policies.php:3738 -#: ../../godmode/agentes/configurar_agente.php:563 -#: ../../godmode/agentes/configurar_agente.php:784 +#: ../../enterprise/include/functions_policies.php:3708 +#: ../../godmode/agentes/configurar_agente.php:562 +#: ../../godmode/agentes/configurar_agente.php:769 #: ../../godmode/setup/snmp_wizard.php:31 msgid "SNMP Wizard" msgstr "SNMPウィザード" -#: ../../enterprise/include/functions_policies.php:3741 -#: ../../godmode/agentes/configurar_agente.php:573 -#: ../../godmode/agentes/configurar_agente.php:790 +#: ../../enterprise/include/functions_policies.php:3711 +#: ../../godmode/agentes/configurar_agente.php:572 msgid "SNMP Interfaces wizard" msgstr "SNMP インタフェースウィザード" -#: ../../enterprise/include/functions_policies.php:3744 -#: ../../godmode/agentes/configurar_agente.php:583 -#: ../../godmode/agentes/configurar_agente.php:796 +#: ../../enterprise/include/functions_policies.php:3714 +#: ../../godmode/agentes/configurar_agente.php:582 +#: ../../godmode/agentes/configurar_agente.php:778 msgid "WMI Wizard" msgstr "WMIウィザード" -#: ../../enterprise/include/functions_policies.php:4061 +#: ../../enterprise/include/functions_policies.php:4033 msgid "Create a new policy map" msgstr "新規ポリシーマップ作成" -#: ../../enterprise/include/functions_policies.php:4449 -#: ../../extensions/resource_registration.php:1098 +#: ../../enterprise/include/functions_policies.php:4421 +#: ../../extensions/resource_registration.php:1096 msgid "Error, please install the PHP libXML in the system." msgstr "エラー。PHP libXML をインストールしてください。" -#: ../../enterprise/include/functions_policies.php:4461 +#: ../../enterprise/include/functions_policies.php:4431 #, php-format msgid "" "This extension makes registration of policies enterprise.
You can get more " @@ -30017,13 +30713,16 @@ msgstr "" "この拡張は、Enterprise ポリシーを登録します。
追加のポリシーは我々の
リソースライブラリから入手できます。" -#: ../../enterprise/include/functions_policies.php:4468 -#: ../../extensions/resource_registration.php:1133 +#: ../../enterprise/include/functions_policies.php:4445 msgid "Group filter: " msgstr "グループフィルター: " -#: ../../enterprise/include/functions_policies.php:4493 -#: ../../extensions/resource_registration.php:1150 +#: ../../enterprise/include/functions_policies.php:4464 +msgid "Registration" +msgstr "登録" + +#: ../../enterprise/include/functions_policies.php:4482 +#: ../../extensions/resource_registration.php:1174 msgid "" "Error uploading resource. Check if the selected file is a valid resource " "template in .ptr format" @@ -30031,25 +30730,25 @@ msgstr "" "リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の" "有効なリソーステンプレートであるかどうかを確認してください" -#: ../../enterprise/include/functions_policies.php:4519 +#: ../../enterprise/include/functions_policies.php:4508 msgid "Policy does not exist" msgstr "ポリシーがありません。" -#: ../../enterprise/include/functions_policies.php:4909 +#: ../../enterprise/include/functions_policies.php:4864 msgid "This will not produce any action." msgstr "これはアクションを起こしません。" -#: ../../enterprise/include/functions_policies.php:4938 +#: ../../enterprise/include/functions_policies.php:4893 #, php-format msgid "Error connecting with node %s." msgstr "ノード %s への接続エラー。" -#: ../../enterprise/include/functions_policies.php:4945 +#: ../../enterprise/include/functions_policies.php:4900 #, php-format msgid "This policy is being applied on node %s." msgstr "このポリシーはノード %s に適用されています。" -#: ../../enterprise/include/functions_policies.php:4983 +#: ../../enterprise/include/functions_policies.php:4938 msgid "Error syncronizing ." msgstr "同期エラー。" @@ -30068,13 +30767,13 @@ msgid "Copy of" msgstr "複製" #: ../../enterprise/include/functions_ux_console.php:517 -#: ../../enterprise/operation/agentes/tag_view.php:901 -#: ../../enterprise/operation/agentes/tag_view.php:911 +#: ../../enterprise/operation/agentes/tag_view.php:1019 +#: ../../enterprise/operation/agentes/tag_view.php:1030 #: ../../enterprise/operation/agentes/ux_console_view.php:102 #: ../../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:6322 +#: ../../include/functions_ui.php:6749 msgid "Snapshot view" msgstr "スナップショット表示" @@ -30084,7 +30783,7 @@ 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:538 +#: ../../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 @@ -30096,7 +30795,7 @@ msgid "This agent has no policy assigned" msgstr "このエージェントにはポリシーが適用されていません" #: ../../enterprise/operation/agentes/policy_view.php:70 -#: ../../include/functions_events.php:2546 +#: ../../include/functions_events.php:2547 msgid "V." msgstr "V." @@ -30104,354 +30803,345 @@ msgstr "V." msgid "Policy outdate" msgstr "期限切れポリシー" -#: ../../enterprise/operation/agentes/policy_view.php:159 -#: ../../enterprise/operation/agentes/policy_view.php:169 +#: ../../enterprise/operation/agentes/policy_view.php:160 +#: ../../enterprise/operation/agentes/policy_view.php:170 msgid "Toggle the collection table" msgstr "コレクションテーブル切り替え" -#: ../../enterprise/operation/agentes/policy_view.php:165 +#: ../../enterprise/operation/agentes/policy_view.php:166 msgid "Descripttion" msgstr "説明" -#: ../../enterprise/operation/agentes/policy_view.php:173 +#: ../../enterprise/operation/agentes/policy_view.php:174 msgid "Show Collection" msgstr "コレクション表示" -#: ../../enterprise/operation/agentes/policy_view.php:253 -#: ../../enterprise/operation/agentes/policy_view.php:265 +#: ../../enterprise/operation/agentes/policy_view.php:254 +#: ../../enterprise/operation/agentes/policy_view.php:266 msgid "Toggle the alert table" msgstr "アラートテーブル切り替え" -#: ../../enterprise/operation/agentes/policy_view.php:257 -#: ../../godmode/alerts/alert_list.list.php:151 +#: ../../enterprise/operation/agentes/policy_view.php:258 +#: ../../godmode/alerts/alert_list.list.php:195 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 -#: ../../operation/agentes/alerts_status.functions.php:124 +#: ../../operation/agentes/alerts_status.php:230 +#: ../../operation/agentes/alerts_status.php:231 +#: ../../operation/agentes/alerts_status.functions.php:159 msgid "Standby" msgstr "スタンバイ" -#: ../../enterprise/operation/agentes/policy_view.php:269 +#: ../../enterprise/operation/agentes/policy_view.php:270 msgid "Show Alert" msgstr "アラート表示" -#: ../../enterprise/operation/agentes/policy_view.php:345 -#: ../../godmode/alerts/alert_list.list.php:573 -#: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 -#: ../../include/functions_ui.php:1253 -#: ../../include/class/AgentsAlerts.class.php:937 +#: ../../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 msgid "time(s)" msgstr "回" -#: ../../enterprise/operation/agentes/policy_view.php:351 -#: ../../godmode/alerts/alert_list.list.php:579 -#: ../../godmode/alerts/alert_view.php:111 ../../mobile/operation/alerts.php:330 -#: ../../include/functions_agents.php:2944 -#: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 -#: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/class/SnmpConsole.class.php:877 -#: ../../include/functions_reporting.php:12876 +#: ../../enterprise/operation/agentes/policy_view.php:352 +#: ../../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 msgid "Alert not fired" msgstr "未通知アラート" -#: ../../enterprise/operation/agentes/policy_view.php:390 -#: ../../enterprise/operation/agentes/policy_view.php:402 +#: ../../enterprise/operation/agentes/policy_view.php:391 +#: ../../enterprise/operation/agentes/policy_view.php:403 msgid "Toggle the module table" msgstr "モジュールテーブル切り替え" -#: ../../enterprise/operation/agentes/policy_view.php:394 +#: ../../enterprise/operation/agentes/policy_view.php:395 msgid "Relationship" msgstr "関連" -#: ../../enterprise/operation/agentes/policy_view.php:406 +#: ../../enterprise/operation/agentes/policy_view.php:407 msgid "Show Modules" msgstr "モジュール表示" -#: ../../enterprise/operation/agentes/policy_view.php:425 +#: ../../enterprise/operation/agentes/policy_view.php:426 msgid "(Un-adopted)" msgstr "(未適用)" -#: ../../enterprise/operation/agentes/policy_view.php:428 +#: ../../enterprise/operation/agentes/policy_view.php:429 msgid "(Adopted)" msgstr "(適用)" -#: ../../enterprise/operation/agentes/policy_view.php:433 +#: ../../enterprise/operation/agentes/policy_view.php:434 msgid "(Un-adopted) (Unlinked)" msgstr "(未適用) (未リンク)" -#: ../../enterprise/operation/agentes/policy_view.php:436 +#: ../../enterprise/operation/agentes/policy_view.php:437 msgid "(Adopted) (Unlinked)" msgstr "(適用) (未リンク)" -#: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1147 +#: ../../enterprise/operation/agentes/policy_view.php:458 +#: ../../godmode/agentes/module_manager.php:881 msgid "Non initialized module" msgstr "未初期化モジュール" -#: ../../enterprise/operation/agentes/policy_view.php:485 -#: ../../enterprise/operation/agentes/policy_view.php:490 -#: ../../enterprise/operation/agentes/policy_view.php:495 -#: ../../enterprise/operation/agentes/tag_view.php:1017 -#: ../../enterprise/operation/agentes/tag_view.php:1023 -#: ../../enterprise/operation/agentes/tag_view.php:1033 -#: ../../enterprise/operation/agentes/tag_view.php:1039 -#: ../../enterprise/operation/agentes/tag_view.php:1049 -#: ../../enterprise/operation/agentes/tag_view.php:1055 +#: ../../enterprise/operation/agentes/policy_view.php:484 +#: ../../enterprise/operation/agentes/policy_view.php:489 +#: ../../enterprise/operation/agentes/policy_view.php:494 +#: ../../enterprise/operation/agentes/tag_view.php:1137 +#: ../../enterprise/operation/agentes/tag_view.php:1143 +#: ../../enterprise/operation/agentes/tag_view.php:1153 +#: ../../enterprise/operation/agentes/tag_view.php:1159 +#: ../../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_modules.php:2889 -#: ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:2897 -#: ../../operation/agentes/status_monitor.php:1695 -#: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/status_monitor.php:1711 -#: ../../operation/agentes/status_monitor.php:1717 -#: ../../operation/agentes/status_monitor.php:1727 -#: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1823 -#: ../../operation/agentes/pandora_networkmap.view.php:1828 -#: ../../operation/agentes/pandora_networkmap.view.php:1833 -#: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 -#: ../../operation/search_modules.php:157 +#: ../../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 msgid "Last status" msgstr "最新の状態" #: ../../enterprise/operation/agentes/tag_view.php:41 -#: ../../enterprise/operation/menu.php:161 +#: ../../enterprise/operation/menu.php:172 msgid "Tag view" msgstr "タグ表示" #: ../../enterprise/operation/agentes/tag_view.php:54 -#: ../../extensions/agents_modules.php:478 ../../extensions/module_groups.php:264 +#: ../../extensions/agents_modules.php:556 ../../extensions/module_groups.php:264 #: ../../extensions/realtime_graphs.php:71 -#: ../../include/class/AgentsAlerts.class.php:742 ../../operation/heatmap.php:141 -#: ../../operation/agentes/alerts_status.php:203 -#: ../../operation/agentes/estado_agente.php:228 +#: ../../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:108 +#: ../../operation/agentes/status_monitor.php:340 #: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/tactical.php:83 ../../operation/menu.php:39 +#: ../../operation/agentes/tactical.php:85 ../../operation/menu.php:165 msgid "Views" msgstr "表示" #: ../../enterprise/operation/agentes/tag_view.php:139 -#: ../../operation/agentes/status_monitor.php:500 +#: ../../operation/agentes/status_monitor.php:884 msgid "Monitor status" msgstr "モニタ項目の状態" -#: ../../enterprise/operation/agentes/tag_view.php:223 -#: ../../enterprise/operation/agentes/tag_view.php:225 -#: ../../operation/agentes/status_monitor.php:550 -#: ../../operation/agentes/alerts_status.functions.php:108 +#: ../../enterprise/operation/agentes/tag_view.php:241 +#: ../../operation/agentes/status_monitor.php:609 +#: ../../operation/agentes/alerts_status.functions.php:146 msgid "Only it is show tags in use." msgstr "利用中のタグのみ表示します。" -#: ../../enterprise/operation/agentes/tag_view.php:229 -#: ../../operation/agentes/status_monitor.php:555 -#: ../../operation/agentes/alerts_status.functions.php:113 -msgid "No tags" -msgstr "タグ無し" - -#: ../../enterprise/operation/agentes/tag_view.php:278 +#: ../../enterprise/operation/agentes/tag_view.php:288 #: ../../godmode/agentes/module_manager_editor_data.php:15 -#: ../../operation/agentes/status_monitor.php:621 +#: ../../operation/agentes/status_monitor.php:655 msgid "Data server module" msgstr "データサーバモジュール" -#: ../../enterprise/operation/agentes/tag_view.php:280 -#: ../../godmode/agentes/module_manager_editor_network.php:77 -#: ../../operation/agentes/status_monitor.php:623 +#: ../../enterprise/operation/agentes/tag_view.php:290 +#: ../../godmode/agentes/module_manager_editor_network.php:78 +#: ../../operation/agentes/status_monitor.php:657 msgid "Network server module" msgstr "ネットワークサーバモジュール" -#: ../../enterprise/operation/agentes/tag_view.php:284 +#: ../../enterprise/operation/agentes/tag_view.php:294 #: ../../godmode/agentes/module_manager_editor_plugin.php:46 -#: ../../operation/agentes/status_monitor.php:627 +#: ../../operation/agentes/status_monitor.php:661 msgid "Plugin server module" msgstr "プラグインサーバモジュール" -#: ../../enterprise/operation/agentes/tag_view.php:288 +#: ../../enterprise/operation/agentes/tag_view.php:298 #: ../../godmode/agentes/module_manager_editor_wmi.php:33 -#: ../../operation/agentes/status_monitor.php:631 +#: ../../operation/agentes/status_monitor.php:665 msgid "WMI server module" msgstr "WMI サーバモジュール" -#: ../../enterprise/operation/agentes/tag_view.php:292 -#: ../../godmode/agentes/module_manager_editor_prediction.php:107 -#: ../../operation/agentes/status_monitor.php:635 +#: ../../enterprise/operation/agentes/tag_view.php:302 +#: ../../godmode/agentes/module_manager_editor_prediction.php:117 +#: ../../operation/agentes/status_monitor.php:669 msgid "Prediction server module" msgstr "予測サーバモジュール" -#: ../../enterprise/operation/agentes/tag_view.php:296 -#: ../../godmode/agentes/module_manager_editor_web.php:55 -#: ../../operation/agentes/status_monitor.php:639 +#: ../../enterprise/operation/agentes/tag_view.php:306 +#: ../../godmode/agentes/module_manager_editor_web.php:57 +#: ../../operation/agentes/status_monitor.php:673 msgid "Web server module" msgstr "ウェブサーバモジュール" -#: ../../enterprise/operation/agentes/tag_view.php:299 -#: ../../enterprise/operation/agentes/tag_view.php:680 +#: ../../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:146 -#: ../../operation/agentes/status_monitor.php:646 -#: ../../operation/agentes/status_monitor.php:1336 +#: ../../godmode/agentes/status_monitor_custom_fields.php:144 +#: ../../operation/agentes/status_monitor.php:935 +#: ../../operation/agentes/status_monitor.php:1553 msgid "Server type" msgstr "サーバの種類" -#: ../../enterprise/operation/agentes/tag_view.php:305 -#: ../../godmode/agentes/modificar_agente.php:337 -#: ../../operation/agentes/status_monitor.php:652 +#: ../../enterprise/operation/agentes/tag_view.php:329 +#: ../../godmode/agentes/modificar_agente.php:290 +#: ../../operation/agentes/status_monitor.php:681 msgid "Only enabled" msgstr "有効のもののみ" -#: ../../enterprise/operation/agentes/tag_view.php:306 -#: ../../godmode/agentes/modificar_agente.php:336 +#: ../../enterprise/operation/agentes/tag_view.php:330 +#: ../../godmode/agentes/modificar_agente.php:289 #: ../../include/class/SatelliteAgent.class.php:153 -#: ../../operation/agentes/status_monitor.php:653 +#: ../../operation/agentes/status_monitor.php:682 msgid "Only disabled" msgstr "無効のもののみ" -#: ../../enterprise/operation/agentes/tag_view.php:309 -#: ../../operation/agentes/status_monitor.php:656 +#: ../../enterprise/operation/agentes/tag_view.php:334 +#: ../../operation/agentes/status_monitor.php:953 msgid "Show monitors..." msgstr "監視の有効・無効" -#: ../../enterprise/operation/agentes/tag_view.php:319 -#: ../../enterprise/operation/agentes/tag_view.php:679 +#: ../../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:144 -#: ../../operation/agentes/status_monitor.php:666 +#: ../../godmode/agentes/status_monitor_custom_fields.php:142 +#: ../../operation/agentes/status_monitor.php:976 msgid "Data type" msgstr "データのタイプ" -#: ../../enterprise/operation/agentes/tag_view.php:447 +#: ../../enterprise/operation/agentes/tag_view.php:503 +#: ../../operation/agentes/estado_agente.php:431 #: ../../operation/agentes/agent_fields.php:37 -#: ../../operation/agentes/status_monitor.php:831 +#: ../../operation/agentes/status_monitor.php:1007 msgid "Agent custom fields" msgstr "エージェントカスタムフィールド" -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../godmode/groups/group_list.php:1039 -#: ../../include/functions_inventory.php:301 -#: ../../include/class/Heatmap.class.php:820 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:317 -msgid "No data found" -msgstr "データがありません" +#: ../../enterprise/operation/agentes/tag_view.php:672 +#: ../../operation/agentes/status_monitor.php:2280 +msgid "Sorry no search parameters" +msgstr "検索パラメータがありません" -#: ../../enterprise/operation/agentes/tag_view.php:647 -#: ../../operation/agentes/estado_agente.php:894 +#: ../../enterprise/operation/agentes/tag_view.php:748 +#: ../../operation/agentes/estado_agente.php:1206 msgid "Remote config" msgstr "リモート設定" -#: ../../enterprise/operation/agentes/tag_view.php:682 -#: ../../enterprise/operation/services/services.service.php:130 -#: ../../enterprise/operation/services/services.list.php:509 -#: ../../extensions/realtime_graphs.php:161 +#: ../../enterprise/operation/agentes/tag_view.php:785 +#: ../../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:150 +#: ../../godmode/agentes/status_monitor_custom_fields.php:148 #: ../../include/functions_visual_map_editor.php:58 -#: ../../include/ajax/module.php:996 -#: ../../include/class/NetworkMap.class.php:3041 +#: ../../include/class/NetworkMap.class.php:3065 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4311 -#: ../../operation/agentes/status_monitor.php:1359 +#: ../../include/functions_events.php:4508 +#: ../../operation/agentes/interface_view.functions.php:558 +#: ../../operation/agentes/status_monitor.php:1579 #: ../../operation/search_modules.php:37 msgid "Graph" msgstr "グラフ" -#: ../../enterprise/operation/agentes/tag_view.php:683 +#: ../../enterprise/operation/agentes/tag_view.php:786 #: ../../godmode/agentes/status_monitor_custom_fields.php:109 -#: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/agentes/module_manager.php:907 -#: ../../operation/agentes/status_monitor.php:1364 +#: ../../godmode/agentes/status_monitor_custom_fields.php:149 +#: ../../godmode/agentes/module_manager.php:646 msgid "Warn" msgstr "警告" -#: ../../enterprise/operation/agentes/tag_view.php:963 +#: ../../enterprise/operation/agentes/tag_view.php:1083 #: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 -#: ../../include/functions_modules.php:2874 -#: ../../include/functions_modules.php:4211 ../../include/functions_events.php:70 -#: ../../operation/agentes/status_monitor.php:1585 -#: ../../operation/search_modules.php:108 ../../operation/events/events.php:716 +#: ../../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 msgid "NOT INIT" msgstr "未初期化" -#: ../../enterprise/operation/agentes/tag_view.php:1103 -#: ../../include/functions_reporting.php:12998 -#: ../../include/functions_reporting.php:13007 +#: ../../enterprise/operation/agentes/tag_view.php:1223 +#: ../../include/functions_reporting.php:13188 +#: ../../include/functions_reporting.php:13197 #, php-format msgid "%d Total modules" msgstr "全モジュール数 %d" -#: ../../enterprise/operation/agentes/tag_view.php:1104 -#: ../../include/functions_reporting.php:12999 +#: ../../enterprise/operation/agentes/tag_view.php:1224 +#: ../../include/functions_reporting.php:13189 #, php-format msgid "%d Modules in normal status" msgstr "%d モジュールが正常状態" -#: ../../enterprise/operation/agentes/tag_view.php:1105 -#: ../../include/functions_reporting.php:13000 +#: ../../enterprise/operation/agentes/tag_view.php:1225 +#: ../../include/functions_reporting.php:13190 #, php-format msgid "%d Modules in critical status" msgstr "%d モジュールが障害状態" -#: ../../enterprise/operation/agentes/tag_view.php:1106 -#: ../../include/functions_reporting.php:13001 +#: ../../enterprise/operation/agentes/tag_view.php:1226 +#: ../../include/functions_reporting.php:13191 #, php-format msgid "%d Modules in warning status" msgstr "%d モジュールが警告状態" -#: ../../enterprise/operation/agentes/tag_view.php:1107 -#: ../../include/functions_reporting.php:13002 +#: ../../enterprise/operation/agentes/tag_view.php:1227 +#: ../../include/functions_reporting.php:13192 #, php-format msgid "%d Modules in unknown status" msgstr "%d モジュールが不明状態" -#: ../../enterprise/operation/agentes/tag_view.php:1108 -#: ../../include/functions_reporting.php:13003 +#: ../../enterprise/operation/agentes/tag_view.php:1228 +#: ../../include/functions_reporting.php:13193 #, php-format msgid "%d Modules in not init status" msgstr "%d モジュールが未初期化状態" -#: ../../enterprise/operation/agentes/ver_agente.php:72 +#: ../../enterprise/operation/agentes/ver_agente.php:90 #: ../../operation/agentes/ver_agente.php:1035 msgid "Main IP" msgstr "代表 IP" -#: ../../enterprise/operation/agentes/ver_agente.php:78 -#: ../../include/functions_events.php:4238 +#: ../../enterprise/operation/agentes/ver_agente.php:96 +#: ../../include/functions_events.php:4435 #: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "最終リモート接続" -#: ../../enterprise/operation/agentes/ver_agente.php:122 +#: ../../enterprise/operation/agentes/ver_agente.php:140 #: ../../operation/agentes/ver_agente.php:1092 msgid "Monitors down" msgstr "停止中のモニタ項目" -#: ../../enterprise/operation/agentes/ver_agente.php:164 +#: ../../enterprise/operation/agentes/ver_agente.php:182 #: ../../mobile/operation/groups.php:174 #: ../../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:235 +#: ../../enterprise/operation/agentes/ver_agente.php:297 +#: ../../operation/agentes/ver_agente.php:1877 msgid "URL Route Analyzer" msgstr "URL ルートアナライザー" -#: ../../enterprise/operation/agentes/ver_agente.php:251 +#: ../../enterprise/operation/agentes/ver_agente.php:316 +#: ../../operation/agentes/ver_agente.php:1868 msgid "UX Console" msgstr "UX コンソール" -#: ../../enterprise/operation/agentes/ver_agente.php:267 +#: ../../enterprise/operation/agentes/ver_agente.php:335 +#: ../../operation/agentes/ver_agente.php:1872 msgid "WUX Console" msgstr "WUX コンソール" -#: ../../enterprise/operation/agentes/collection_view.php:66 +#: ../../enterprise/operation/agentes/collection_view.php:75 msgid "No collection assigned to this agent" msgstr "このエージェントに割り当てられたコレクションがありません" @@ -30463,6 +31153,10 @@ msgstr "エージェント選択なし" msgid "Route not found" msgstr "ルートが見つかりません" +#: ../../enterprise/operation/agentes/omnishell_view.php:76 +msgid "This agent has no omnishell assigned" +msgstr "このエージェントには omnishell が割り当てられていません" + #: ../../enterprise/operation/agentes/ux_console_view.php:43 msgid "No ux transaction selected." msgstr "UX トランザクションが選択されていません。" @@ -30501,7 +31195,7 @@ msgid "No wux transaction selected." msgstr "WUX トランザクションが選択されていません。" #: ../../enterprise/operation/agentes/wux_console_view.php:149 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:398 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:383 msgid "Phase modules not found" msgstr "フェーズモジュールがありません" @@ -30517,16 +31211,11 @@ msgstr "WUX トランザクションが見つかりません。" msgid "Failed: " msgstr "失敗: " -#: ../../enterprise/operation/agentes/wux_console_view.php:342 -#: ../../enterprise/operation/agentes/wux_console_view.php:363 -#: ../../godmode/setup/performance.php:188 -#: ../../godmode/setup/performance.php:243 ../../general/logon_ok.php:193 -msgid "ago" -msgstr "前" - #: ../../enterprise/operation/agentes/wux_console_view.php:354 #: ../../enterprise/operation/agentes/wux_console_view.php:358 #: ../../include/functions_alerts.php:681 +#: ../../include/class/TreeService.class.php:441 +#: ../../include/class/TreeService.class.php:650 msgid "Unknown status" msgstr "不明状態" @@ -30548,10 +31237,10 @@ msgid "View all stats" msgstr "全状態表示" #: ../../enterprise/operation/agentes/wux_console_view.php:570 -#: ../../include/class/SnmpConsole.class.php:924 -#: ../../include/class/SnmpConsole.class.php:925 ../../operation/menu.php:254 -#: ../../operation/menu.php:256 ../../operation/events/events.php:560 -#: ../../operation/events/events.php:825 +#: ../../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 msgid "Show more" msgstr "詳細を表示する" @@ -30559,13 +31248,14 @@ msgstr "詳細を表示する" msgid "Invalid transaction." msgstr "不正なトランザクション。" -#: ../../enterprise/operation/log/elasticsearch_interface.php:39 -#: ../../enterprise/operation/log/log_viewer.php:392 -#: ../../enterprise/operation/menu.php:181 +#: ../../enterprise/operation/log/elasticsearch_interface.php:37 +#: ../../enterprise/operation/log/elasticsearch_interface.php:50 +#: ../../enterprise/operation/log/log_viewer.php:413 +#: ../../enterprise/operation/menu.php:192 msgid "Elasticsearch Interface" msgstr "Elasticsearch インタフェース" -#: ../../enterprise/operation/log/elasticsearch_interface.php:49 +#: ../../enterprise/operation/log/elasticsearch_interface.php:57 msgid "" "This is a view to interface with Elasticsearch directly from WEB console. \n" "Please note that you can damage your Elasticsearch if you don`t know exactly " @@ -30579,106 +31269,155 @@ msgstr "" "この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としていま" "す。" -#: ../../enterprise/operation/log/log_viewer.php:406 -#: ../../enterprise/operation/log/log_viewer.php:425 -#: ../../enterprise/operation/log/log_viewer.php:436 +#: ../../enterprise/operation/log/log_viewer.php:427 +#: ../../enterprise/operation/log/log_viewer.php:445 +#: ../../enterprise/operation/log/log_viewer.php:455 msgid "Log sources" msgstr "ログソース" -#: ../../enterprise/operation/log/log_viewer.php:459 -#: ../../godmode/modules/manage_inventory_modules.php:72 -#: ../../godmode/modules/manage_inventory_modules_form.php:48 -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../operation/netflow/nf_live_view.php:141 +#: ../../enterprise/operation/log/log_viewer.php:519 +#: ../../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 msgid "Not supported in Windows systems" msgstr "Windows システムでは対応していません" -#: ../../enterprise/operation/log/log_viewer.php:479 +#: ../../enterprise/operation/log/log_viewer.php:541 msgid "All words" msgstr "全単語" -#: ../../enterprise/operation/log/log_viewer.php:480 +#: ../../enterprise/operation/log/log_viewer.php:542 msgid "Any word" msgstr "任意の単語" -#: ../../enterprise/operation/log/log_viewer.php:483 +#: ../../enterprise/operation/log/log_viewer.php:547 msgid "Search mode" msgstr "検索モード" -#: ../../enterprise/operation/log/log_viewer.php:530 +#: ../../enterprise/operation/log/log_viewer.php:607 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1325 msgid "Full context" msgstr "全文章" -#: ../../enterprise/operation/log/log_viewer.php:553 -#: ../../operation/network/network_report.php:102 -#: ../../operation/network/network_usage_map.php:75 -#: ../../operation/netflow/nf_live_view.php:271 +#: ../../enterprise/operation/log/log_viewer.php:660 +msgid "Select dates by range" +msgstr "範囲で日付を選択" + +#: ../../enterprise/operation/log/log_viewer.php:671 +#: ../../godmode/reporting/create_container.php:417 +#: ../../include/functions.php:2744 +msgid "custom" +msgstr "カスタム" + +#: ../../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 +#: ../../include/functions.php:2756 ../../include/functions.php:2757 +#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 +#: ../../include/ajax/graph.ajax.php:149 +#, php-format +msgid "%s hours" +msgstr "%s 時間" + +#: ../../enterprise/operation/log/log_viewer.php:677 +#: ../../enterprise/operation/log/log_viewer.php:678 +#: ../../godmode/reporting/create_container.php:423 +#: ../../godmode/reporting/create_container.php:424 +#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 +#, php-format +msgid "%s days" +msgstr "%s 日" + +#: ../../enterprise/operation/log/log_viewer.php:679 +#: ../../godmode/reporting/create_container.php:425 +#: ../../include/functions.php:2759 ../../include/ajax/module.php:225 +#: ../../include/ajax/graph.ajax.php:153 +msgid "1 week" +msgstr "1週間" + +#: ../../enterprise/operation/log/log_viewer.php:681 +#: ../../godmode/reporting/create_container.php:427 +#: ../../include/functions.php:2761 ../../include/ajax/module.php:227 +#: ../../include/ajax/graph.ajax.php:155 +#: ../../include/class/AuditLog.class.php:214 +msgid "1 month" +msgstr "1ヵ月" + +#: ../../enterprise/operation/log/log_viewer.php:684 +#: ../../enterprise/operation/log/log_viewer.php:704 +#: ../../operation/network/network_report.php:114 +#: ../../operation/network/network_usage_map.php:128 +#: ../../operation/netflow/nf_live_view.php:403 msgid "Start date" msgstr "開始日時" -#: ../../enterprise/operation/log/log_viewer.php:580 -#: ../../operation/agentes/exportdata.php:347 -#: ../../operation/network/network_report.php:126 -#: ../../operation/network/network_usage_map.php:99 -#: ../../operation/netflow/nf_live_view.php:295 +#: ../../enterprise/operation/log/log_viewer.php:736 +#: ../../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 msgid "End date" msgstr "終了日時" -#: ../../enterprise/operation/log/log_viewer.php:668 -#: ../../enterprise/operation/log/log_viewer.php:669 +#: ../../enterprise/operation/log/log_viewer.php:806 +#: ../../enterprise/operation/log/log_viewer.php:807 msgid "Edit sources" msgstr "ソース編集" -#: ../../enterprise/operation/log/log_viewer.php:712 +#: ../../enterprise/operation/log/log_viewer.php:853 msgid "Show log entries" msgstr "ログエントリ表示" -#: ../../enterprise/operation/log/log_viewer.php:713 +#: ../../enterprise/operation/log/log_viewer.php:854 msgid "Graph log results" msgstr "ログ結果グラフ表示" -#: ../../enterprise/operation/log/log_viewer.php:715 +#: ../../enterprise/operation/log/log_viewer.php:857 msgid "Display mode" msgstr "表示モード" -#: ../../enterprise/operation/log/log_viewer.php:728 +#: ../../enterprise/operation/log/log_viewer.php:875 msgid "Use capture model" msgstr "キャプチャモデルの利用" -#: ../../enterprise/operation/log/log_viewer.php:758 +#: ../../enterprise/operation/log/log_viewer.php:910 msgid "Create new model" msgstr "新規モデル作成" -#: ../../enterprise/operation/log/log_viewer.php:762 -#: ../../godmode/reporting/graph_builder.main.php:220 +#: ../../enterprise/operation/log/log_viewer.php:918 +#: ../../godmode/reporting/graph_builder.main.php:214 msgid "Horizontal bars" msgstr "水平バー" -#: ../../enterprise/operation/log/log_viewer.php:763 -#: ../../godmode/reporting/graph_builder.main.php:221 +#: ../../enterprise/operation/log/log_viewer.php:919 +#: ../../godmode/reporting/graph_builder.main.php:215 msgid "Vertical bars" msgstr "垂直バー" -#: ../../enterprise/operation/log/log_viewer.php:765 +#: ../../enterprise/operation/log/log_viewer.php:922 msgid "Graph type" msgstr "グラフタイプ" -#: ../../enterprise/operation/log/log_viewer.php:780 +#: ../../enterprise/operation/log/log_viewer.php:942 msgid "Advanced options " msgstr "高度なオプション " -#: ../../enterprise/operation/log/log_viewer.php:900 +#: ../../enterprise/operation/log/log_viewer.php:1101 msgid "" "The maximum limit of rows has been exceeded. Please enter an email to send the " "csv file" msgstr "" "行の上限を超えました。 CSV ファイルを送信するメールアドレスを入力してください" -#: ../../enterprise/operation/log/log_viewer.php:902 +#: ../../enterprise/operation/log/log_viewer.php:1103 msgid "e-mail address" msgstr "メールアドレス" -#: ../../enterprise/operation/log/log_viewer.php:905 +#: ../../enterprise/operation/log/log_viewer.php:1106 msgid "" "WARNING: If your email size exceeds your mail attachment size limit, the file " "will be saved in the local attachment folder." @@ -30686,173 +31425,174 @@ msgstr "" "警告:メールの添付ファイルのサイズ制限を超えると、ファイルはローカルの添付ファ" "イルフォルダに保存されます。" -#: ../../enterprise/operation/log/log_viewer.php:1023 +#: ../../enterprise/operation/log/log_viewer.php:1239 msgid "The start date cannot be greater than the end date" msgstr "開始日は終了日より後にできません" -#: ../../enterprise/operation/log/log_viewer.php:1451 +#: ../../enterprise/operation/log/log_viewer.php:1676 msgid "Add new capture model" msgstr "新たなキャプチャモデル追加" -#: ../../enterprise/operation/log/log_viewer.php:1454 +#: ../../enterprise/operation/log/log_viewer.php:1679 msgid "Edit capture model" msgstr "キャプチャモデル編集" -#: ../../enterprise/operation/log/log_viewer.php:1537 +#: ../../enterprise/operation/log/log_viewer.php:1762 msgid "Error create new model" msgstr "新規モデル作成エラー" -#: ../../enterprise/operation/log/log_viewer.php:1564 +#: ../../enterprise/operation/log/log_viewer.php:1789 msgid "Error delete model" msgstr "モデル削除エラー" -#: ../../enterprise/operation/log/log_viewer.php:1610 +#: ../../enterprise/operation/log/log_viewer.php:1835 msgid "Error update model" msgstr "モデル更新エラー" -#: ../../enterprise/operation/menu.php:19 ../../operation/menu.php:155 +#: ../../enterprise/operation/menu.php:19 ../../operation/menu.php:267 msgid "Cluster View" msgstr "クラスタ表示" +#: ../../enterprise/operation/menu.php:32 +msgid "AWS view" +msgstr "AWS 表示" + #: ../../enterprise/operation/menu.php:48 -#: ../../operation/agentes/ver_agente.php:1713 -#: ../../operation/agentes/ver_agente.php:1912 +#: ../../operation/agentes/ver_agente.php:1698 +#: ../../operation/agentes/ver_agente.php:1905 msgid "SAP view" msgstr "SAP 表示" -#: ../../enterprise/operation/services/services.service.php:63 -#: ../../enterprise/operation/services/services.service_map.php:78 -#: ../../include/lib/Dashboard/Widgets/service_map.php:192 -msgid "Service Map" -msgstr "サービスマップ" +#: ../../enterprise/operation/menu.php:117 +#: ../../enterprise/operation/menu.php:118 +#: ../../enterprise/operation/services/services.php:244 +msgid "Service tree view" +msgstr "サービスツリー表示" -#: ../../enterprise/operation/services/services.service.php:90 +#: ../../enterprise/operation/services/services.service.php:80 msgid "No Services" msgstr "サービスがありません" -#: ../../enterprise/operation/services/services.service.php:203 -#: ../../enterprise/operation/services/services.list.php:586 +#: ../../enterprise/operation/services/services.service.php:194 +#: ../../enterprise/operation/services/services.list.php:624 msgid "SLA graph" msgstr "SLA グラフ" -#: ../../enterprise/operation/services/services.service.php:227 -msgid "List of elements" -msgstr "要素一覧" - #: ../../enterprise/operation/services/services.php:229 msgid "Service table view" msgstr "サービス一覧表示" -#: ../../enterprise/operation/services/services.php:244 -msgid "Service tree view" -msgstr "サービスツリー表示" - #: ../../enterprise/operation/services/services.php:261 -#: ../../enterprise/operation/services/massive/services.create.php:599 +#: ../../enterprise/operation/services/massive/services.create.php:594 msgid "Creation services" msgstr "サービス作成" #: ../../enterprise/operation/services/services.php:274 -#: ../../enterprise/operation/services/massive/services.delete.php:46 +#: ../../enterprise/operation/services/massive/services.delete.php:41 msgid "Deletion services" msgstr "サービス削除" -#: ../../enterprise/operation/services/massive/services.delete.php:76 +#: ../../enterprise/operation/services/massive/services.delete.php:70 #, php-format msgid "Failed to delete: %s" msgstr "削除に失敗しました: %s" -#: ../../enterprise/operation/services/massive/services.create.php:212 +#: ../../enterprise/operation/services/massive/services.delete.php:101 +msgid "Select services to be deleted" +msgstr "削除するサービスを選択" + +#: ../../enterprise/operation/services/massive/services.delete.php:135 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:315 +msgid "Remove selected" +msgstr "選択したものを削除" + +#: ../../enterprise/operation/services/massive/services.create.php:210 #, php-format msgid "Failed to create service for agent %s, %s" msgstr "エージェント %s, %s のサービス作成に失敗しました" -#: ../../enterprise/operation/services/massive/services.create.php:296 +#: ../../enterprise/operation/services/massive/services.create.php:294 #, php-format msgid "Failed to create service for module %s, %s" msgstr "モジュール %s, %s のサービス作成に失敗しました" -#: ../../enterprise/operation/services/massive/services.create.php:382 +#: ../../enterprise/operation/services/massive/services.create.php:380 #, php-format msgid "Failed to create service for service %s, %s" msgstr "サービス %s, %s のサービス作成に失敗しました" -#: ../../enterprise/operation/services/massive/services.create.php:437 +#: ../../enterprise/operation/services/massive/services.create.php:435 #, php-format msgid "Agent selected %d not found" msgstr "選択したエージェント %d が見つかりません" -#: ../../enterprise/operation/services/massive/services.create.php:483 +#: ../../enterprise/operation/services/massive/services.create.php:481 #, php-format msgid "Module selected %d not found" msgstr "選択したモジュール %d が見つかりません" -#: ../../enterprise/operation/services/massive/services.create.php:530 +#: ../../enterprise/operation/services/massive/services.create.php:528 #, php-format msgid "Service selected %d not found" msgstr "選択したサービス %d が見つかりません" -#: ../../enterprise/operation/services/massive/services.create.php:564 +#: ../../enterprise/operation/services/massive/services.create.php:562 #, php-format msgid "Failed to create service for agent %s" msgstr "エージェント %s のサービス作成に失敗しました" -#: ../../enterprise/operation/services/massive/services.create.php:575 +#: ../../enterprise/operation/services/massive/services.create.php:573 #, php-format msgid "Failed to create services: %s" msgstr "サービス作成に失敗しました: %s" -#: ../../enterprise/operation/services/massive/services.create.php:630 +#: ../../enterprise/operation/services/massive/services.create.php:624 #, php-format msgid "%d services created with %d items" msgstr "%d サービスが %d アイテムで作成されました" -#: ../../enterprise/operation/services/massive/services.create.php:636 +#: ../../enterprise/operation/services/massive/services.create.php:630 msgid "No services created" msgstr "サービスが作成されませんでした" -#: ../../enterprise/operation/services/massive/services.create.php:656 +#: ../../enterprise/operation/services/massive/services.create.php:651 msgid "Service(s) definition" msgstr "サービス定義" -#: ../../enterprise/operation/services/massive/services.create.php:789 +#: ../../enterprise/operation/services/massive/services.create.php:785 msgid "Create a service per item" msgstr "アイテムごとにサービスを作成する" -#: ../../enterprise/operation/services/massive/services.create.php:790 +#: ../../enterprise/operation/services/massive/services.create.php:786 msgid "If enabled multiple services will be created." msgstr "有効にすると、複数のサービスが作成されます。" -#: ../../enterprise/operation/services/massive/services.create.php:808 +#: ../../enterprise/operation/services/massive/services.create.php:804 msgid "Services header" msgstr "サービスヘッダ" -#: ../../enterprise/operation/services/massive/services.create.php:809 +#: ../../enterprise/operation/services/massive/services.create.php:805 msgid "All services names created will start with selected name." msgstr "作成されるすべてのサービス名は、選択した名前で始まります。" -#: ../../enterprise/operation/services/massive/services.create.php:863 +#: ../../enterprise/operation/services/massive/services.create.php:859 msgid "SLA calculation" msgstr "SLA 計算" -#: ../../enterprise/operation/services/massive/services.create.php:970 +#: ../../enterprise/operation/services/massive/services.create.php:966 msgid "Items selected here will be added to the lists at Service items summary." msgstr "ここで選択したアイテムは、サービスアイテム概要の一覧に追加されます。" -#: ../../enterprise/operation/services/massive/services.create.php:973 +#: ../../enterprise/operation/services/massive/services.create.php:969 msgid "Item(s) definition" msgstr "アイテム定義" -#: ../../enterprise/operation/services/massive/services.create.php:981 -msgid "Item type" -msgstr "アイテムタイプ" - -#: ../../enterprise/operation/services/massive/services.create.php:998 -#: ../../enterprise/operation/services/massive/service.create.elements.php:393 +#: ../../enterprise/operation/services/massive/services.create.php:996 +#: ../../enterprise/operation/services/massive/service.create.elements.php:391 msgid "Add selected" msgstr "選択中を追加" -#: ../../enterprise/operation/services/massive/services.create.php:1168 +#: ../../enterprise/operation/services/massive/services.create.php:1170 msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit the service." @@ -30860,49 +31600,50 @@ msgstr "" "設定されたウエイトは、サービスに追加されるすべてのアイテムに共通です。それらを" "カスタマイズする場合は、サービスを編集してください。" -#: ../../enterprise/operation/services/massive/services.create.php:1172 -#: ../../enterprise/operation/services/massive/service.create.elements.php:528 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:291 +#: ../../enterprise/operation/services/massive/services.create.php:1174 +#: ../../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:1175 -#: ../../enterprise/operation/services/massive/service.create.elements.php:531 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:294 -#: ../../include/functions_visual_map_editor.php:1148 +#: ../../enterprise/operation/services/massive/services.create.php:1181 +#: ../../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 msgid "Critical weight" msgstr "障害ウエイト" -#: ../../enterprise/operation/services/massive/services.create.php:1188 -#: ../../enterprise/operation/services/massive/service.create.elements.php:544 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:307 -#: ../../include/functions_visual_map_editor.php:1174 +#: ../../enterprise/operation/services/massive/services.create.php:1193 +#: ../../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 msgid "Warning weight" msgstr "警告ウエイト" -#: ../../enterprise/operation/services/massive/services.create.php:1201 -#: ../../enterprise/operation/services/massive/service.create.elements.php:557 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:320 +#: ../../enterprise/operation/services/massive/services.create.php:1205 +#: ../../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:1214 -#: ../../enterprise/operation/services/massive/service.create.elements.php:570 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:333 +#: ../../enterprise/operation/services/massive/services.create.php:1217 +#: ../../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:1229 -#: ../../enterprise/operation/services/massive/service.delete.elements.php:240 -#: ../../enterprise/operation/services/massive/service.create.elements.php:586 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:349 +#: ../../enterprise/operation/services/massive/services.create.php:1289 +#: ../../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:1284 -msgid "Create services" +#: ../../enterprise/operation/services/massive/services.create.php:1370 +msgid "Create service" msgstr "サービスの作成" #: ../../enterprise/operation/services/massive/service.delete.elements.php:70 @@ -30915,45 +31656,41 @@ msgstr "サービスを選択する必要があります" msgid "Failed to process deleting services elements: " msgstr "サービス要素の削除に失敗しました: " -#: ../../enterprise/operation/services/massive/service.delete.elements.php:109 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:104 msgid "Delete elements" msgstr "要素削除" -#: ../../enterprise/operation/services/massive/service.delete.elements.php:141 -#: ../../enterprise/operation/services/massive/service.create.elements.php:280 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:182 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:135 +#: ../../enterprise/operation/services/massive/service.create.elements.php:273 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:176 #, php-format msgid "%d modules" msgstr "%d モジュール" -#: ../../enterprise/operation/services/massive/service.delete.elements.php:149 -#: ../../enterprise/operation/services/massive/service.create.elements.php:288 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:190 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:143 +#: ../../enterprise/operation/services/massive/service.create.elements.php:281 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:184 #, php-format msgid "%d agents" msgstr "%d エージェント" -#: ../../enterprise/operation/services/massive/service.delete.elements.php:157 -#: ../../enterprise/operation/services/massive/service.create.elements.php:296 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:198 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:151 +#: ../../enterprise/operation/services/massive/service.create.elements.php:289 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:192 #, php-format msgid "%d services" msgstr "%d サービス" -#: ../../enterprise/operation/services/massive/service.delete.elements.php:160 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:154 msgid "removed" msgstr "削除しました" -#: ../../enterprise/operation/services/massive/service.delete.elements.php:164 -#: ../../enterprise/operation/services/massive/service.create.elements.php:303 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:205 +#: ../../enterprise/operation/services/massive/service.delete.elements.php:158 +#: ../../enterprise/operation/services/massive/service.create.elements.php:296 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:199 msgid "No changes made" msgstr "変更されませんでした" -#: ../../enterprise/operation/services/massive/service.delete.elements.php:293 -msgid "Remove selected" -msgstr "選択したものを削除" - #: ../../enterprise/operation/services/massive/service.create.elements.php:115 #, php-format msgid "Problems while adding module element: %d, %s" @@ -30973,27 +31710,23 @@ msgstr "%s: %d, %s" msgid "Failed to process adding elements in services: " msgstr "サービス要素の追加に失敗しました: " -#: ../../enterprise/operation/services/massive/service.create.elements.php:247 -#: ../../enterprise/operation/services/massive/service.create.elements.php:638 -#: ../../include/functions_notifications.php:927 +#: ../../enterprise/operation/services/massive/service.create.elements.php:242 +#: ../../enterprise/operation/services/massive/service.create.elements.php:665 +#: ../../include/functions_notifications.php:933 msgid "Add elements" msgstr "要素追加" -#: ../../enterprise/operation/services/massive/service.create.elements.php:299 +#: ../../enterprise/operation/services/massive/service.create.elements.php:292 msgid "added" msgstr "追加しました" -#: ../../enterprise/operation/services/massive/service.create.elements.php:376 -msgid "Item type to be added" -msgstr "追加されるアイテムタイプ" - #: ../../enterprise/operation/services/massive/service.create.elements.php:518 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:281 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:276 msgid "In smart services weights are automatically calculated." msgstr "スマートサービスウエイトは自動的に計算されます。" #: ../../enterprise/operation/services/massive/service.create.elements.php:523 -#: ../../enterprise/operation/services/massive/service.edit.elements.php:286 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:281 msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit each element at service element editor." @@ -31001,133 +31734,140 @@ msgstr "" "設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらを" "カスタマイズする場合は、サービス要素エディタで各要素を編集してください。" +#: ../../enterprise/operation/services/massive/service.create.elements.php:646 +msgid "Item type to be added" +msgstr "追加されるアイテムタイプ" + #: ../../enterprise/operation/services/massive/service.edit.elements.php:134 msgid "Failed to process updating elements in services: " msgstr "サービス要素の更新に失敗しました: " -#: ../../enterprise/operation/services/massive/service.edit.elements.php:150 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:145 msgid "Edit elements" msgstr "要素編集" -#: ../../enterprise/operation/services/massive/service.edit.elements.php:201 -#: ../../include/class/ConfigPEN.class.php:564 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:195 +#: ../../include/class/ConfigPEN.class.php:566 msgid "updated" msgstr "更新しました" -#: ../../enterprise/operation/services/massive/service.edit.elements.php:402 +#: ../../enterprise/operation/services/massive/service.edit.elements.php:422 msgid "Update selected service elements" msgstr "選択したサービス要素を更新" -#: ../../enterprise/operation/services/services.service_map.php:116 +#: ../../enterprise/operation/services/services.service_map.php:106 msgid "Show tree" msgstr "ツリー表示" -#: ../../enterprise/operation/services/services.service_map.php:130 +#: ../../enterprise/operation/services/services.service_map.php:120 msgid "Show sunburst" msgstr "サンバースト表示" -#: ../../enterprise/operation/services/services.service_map.php:139 -#: ../../extensions/agents_modules.php:947 ../../extensions/module_groups.php:391 -#: ../../godmode/snmpconsole/snmp_alert.php:1518 -#: ../../include/functions_reporting_html.php:2192 +#: ../../enterprise/operation/services/services.service_map.php:129 +#: ../../extensions/agents_modules.php:1043 +#: ../../extensions/module_groups.php:464 +#: ../../godmode/snmpconsole/snmp_alert.php:2203 +#: ../../include/functions_reporting_html.php:2281 +#: ../../include/class/SnmpConsole.class.php:522 msgid "Legend" msgstr "凡例" -#: ../../enterprise/operation/services/services.treeview_services.php:117 +#: ../../enterprise/operation/services/services.treeview_services.php:101 msgid "Search service" msgstr "サービス検索" -#: ../../enterprise/operation/services/services.treeview_services.php:119 -#: ../../enterprise/operation/services/services.list.php:284 -#: ../../enterprise/operation/services/services.table_services.php:206 +#: ../../enterprise/operation/services/services.treeview_services.php:112 +#: ../../enterprise/operation/services/services.list.php:297 +#: ../../enterprise/operation/services/services.table_services.php:265 msgid "Show only favourites" msgstr "お気に入りのみ表示" -#: ../../enterprise/operation/services/services.treeview_services.php:157 +#: ../../enterprise/operation/services/services.treeview_services.php:176 msgid "No favourite services defined." msgstr "お気に入りサービスがありません" -#: ../../enterprise/operation/services/services.treeview_services.php:159 +#: ../../enterprise/operation/services/services.treeview_services.php:178 msgid "No services matched." msgstr "マッチするサービスがありません。" -#: ../../enterprise/operation/services/services.treeview_services.php:161 -#: ../../enterprise/operation/services/services.list.php:447 -#: ../../enterprise/operation/services/services.list.php:456 -#: ../../enterprise/operation/services/services.table_services.php:359 -#: ../../enterprise/operation/services/services.table_services.php:365 +#: ../../enterprise/operation/services/services.treeview_services.php:180 +#: ../../enterprise/operation/services/services.list.php:473 +#: ../../enterprise/operation/services/services.list.php:492 +#: ../../enterprise/operation/services/services.table_services.php:466 +#: ../../enterprise/operation/services/services.table_services.php:482 msgid "No services defined." msgstr "サービスが定義されていません" -#: ../../enterprise/operation/services/services.treeview_services.php:189 -#: ../../enterprise/operation/services/services.list.php:721 -#: ../../enterprise/operation/services/services.table_services.php:450 +#: ../../enterprise/operation/services/services.treeview_services.php:209 +#: ../../enterprise/operation/services/services.list.php:756 +#: ../../enterprise/operation/services/services.table_services.php:584 msgid "Create Service" msgstr "サービスの作成" -#: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../godmode/groups/group_list.php:1040 +#: ../../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 +#: ../../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 msgid "Found groups" msgstr "見つかったグループ" -#: ../../enterprise/operation/services/services.treeview_services.php:350 -#: ../../operation/tree.php:539 ../../operation/agentes/status_monitor.php:2088 -#: ../../operation/agentes/estado_monitores.php:421 +#: ../../enterprise/operation/services/services.treeview_services.php:376 +#: ../../operation/tree.php:591 ../../operation/agentes/status_monitor.php:2419 +#: ../../operation/agentes/estado_monitores.php:430 msgid "Module: " msgstr "モジュール: " -#: ../../enterprise/operation/services/services.list.php:62 -msgid "List of services" -msgstr "サービス一覧" - -#: ../../enterprise/operation/services/services.list.php:100 +#: ../../enterprise/operation/services/services.list.php:94 msgid "Services successfully deleted" msgstr "サービスを削除しました" -#: ../../enterprise/operation/services/services.list.php:101 +#: ../../enterprise/operation/services/services.list.php:95 #, php-format msgid "Error while deleting services: %s" msgstr "サービス削除エラー: %s" -#: ../../enterprise/operation/services/services.list.php:118 +#: ../../enterprise/operation/services/services.list.php:112 msgid "Service deleted successfully" msgstr "サービスを削除しました" -#: ../../enterprise/operation/services/services.list.php:119 +#: ../../enterprise/operation/services/services.list.php:113 #, php-format msgid "Error deleting service %s" msgstr "サービス削除エラー %s" -#: ../../enterprise/operation/services/services.list.php:127 +#: ../../enterprise/operation/services/services.list.php:121 msgid "Service forced successfully" msgstr "サービスの強制実行をしました" -#: ../../enterprise/operation/services/services.list.php:128 +#: ../../enterprise/operation/services/services.list.php:122 msgid "Error service forced" msgstr "サービスの強制実行エラー" -#: ../../enterprise/operation/services/services.list.php:298 -#: ../../enterprise/operation/services/services.table_services.php:220 +#: ../../enterprise/operation/services/services.list.php:309 +#: ../../enterprise/operation/services/services.table_services.php:277 msgid "Show only root services" msgstr "ルートサービスのみ表示" -#: ../../enterprise/operation/services/services.list.php:590 +#: ../../enterprise/operation/services/services.list.php:628 msgid "Status graph" msgstr "状態グラフ" -#: ../../enterprise/operation/services/services.list.php:625 -#: ../../operation/heatmap.php:70 ../../operation/heatmap.php:283 -#: ../../operation/agentes/pandora_networkmap.php:810 -msgid "Config" -msgstr "設定" - -#: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:360 +#: ../../enterprise/operation/services/services.table_services.php:54 +#: ../../godmode/groups/group_list.php:358 msgid "Table view" msgstr "表形式表示" #: ../../enterprise/tools/ipam/ipam.php:52 ../../extensions/files_repo.php:122 -#: ../../extensions/files_repo.php:210 +#: ../../extensions/files_repo.php:232 msgid "Operation view" msgstr "操作画面" @@ -31171,12 +31911,12 @@ msgid "Supernet map" msgstr "スーパーネットマップ" #: ../../enterprise/tools/ipam/ipam.php:280 -#: ../../enterprise/tools/ipam/ipam_list.php:711 +#: ../../enterprise/tools/ipam/ipam_list.php:794 msgid "Manage addresses" msgstr "アドレス管理" #: ../../enterprise/tools/ipam/ipam.php:320 -#: ../../enterprise/tools/ipam/ipam_list.php:720 +#: ../../enterprise/tools/ipam/ipam_list.php:803 msgid "Addresses view" msgstr "アドレス表示" @@ -31216,11 +31956,6 @@ msgstr "スーパーネットツリー表示" msgid "Operation View" msgstr "操作画面" -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:399 -#: ../../godmode/setup/file_manager.php:56 -msgid "Admin tools" -msgstr "管理ツール" - #: ../../enterprise/tools/ipam/ipam_sites.php:70 msgid "Successfully saved" msgstr "保存しました" @@ -31235,48 +31970,55 @@ msgstr "サイト %s の保存に失敗しました" msgid "Failed to delete site %s" msgstr "サイト %s の削除に失敗しました" -#: ../../enterprise/tools/ipam/ipam_network.php:164 +#: ../../enterprise/tools/ipam/ipam_network.php:147 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:926 +#: ../../enterprise/tools/ipam/ipam_list.php:220 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:551 +msgid "Upload CSV file" +msgstr "CSV ファイルのアップロード" + +#: ../../enterprise/tools/ipam/ipam_network.php:191 msgid "No addresses found on this network" msgstr "このネットワークにアドレスが見つかりませんでした" -#: ../../enterprise/tools/ipam/ipam_network.php:315 +#: ../../enterprise/tools/ipam/ipam_network.php:342 msgid "Edit address" msgstr "アドレス編集" -#: ../../enterprise/tools/ipam/ipam_network.php:328 +#: ../../enterprise/tools/ipam/ipam_network.php:355 msgid "Disabled address" msgstr "無効化アドレス" -#: ../../enterprise/tools/ipam/ipam_network.php:328 +#: ../../enterprise/tools/ipam/ipam_network.php:355 msgid "This address will not be updated by the server" msgstr "このアドレスは、サーバにより更新されません" -#: ../../enterprise/tools/ipam/ipam_network.php:424 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1398 +#: ../../enterprise/tools/ipam/ipam_network.php:451 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1418 msgid "Not alive" msgstr "停止" -#: ../../enterprise/tools/ipam/ipam_network.php:455 -#: ../../enterprise/tools/ipam/ipam_network.php:534 -#: ../../enterprise/tools/ipam/ipam_network.php:576 +#: ../../enterprise/tools/ipam/ipam_network.php:482 +#: ../../enterprise/tools/ipam/ipam_network.php:561 +#: ../../enterprise/tools/ipam/ipam_network.php:603 msgid "Change to automatic mode" msgstr "自動モードに切り替える" -#: ../../enterprise/tools/ipam/ipam_network.php:464 -#: ../../enterprise/tools/ipam/ipam_network.php:543 -#: ../../enterprise/tools/ipam/ipam_network.php:585 +#: ../../enterprise/tools/ipam/ipam_network.php:491 +#: ../../enterprise/tools/ipam/ipam_network.php:570 +#: ../../enterprise/tools/ipam/ipam_network.php:612 msgid "Change to manual mode" msgstr "手動モードに切り替える" -#: ../../enterprise/tools/ipam/ipam_network.php:664 +#: ../../enterprise/tools/ipam/ipam_network.php:691 msgid "Add comments" msgstr "コメント追加" -#: ../../enterprise/tools/ipam/ipam_network.php:692 +#: ../../enterprise/tools/ipam/ipam_network.php:718 msgid "Update agent address" msgstr "エージェントアドレス更新" -#: ../../enterprise/tools/ipam/ipam_network.php:858 +#: ../../enterprise/tools/ipam/ipam_network.php:895 msgid "Please, uncheck auto option to set manual agent." msgstr "手動エージェントを設定するには、自動オプションを外してください。" @@ -31329,222 +32071,227 @@ msgid "Could not be deleted, please select supernet" msgstr "削除できませんでした。スーパーネットを選択してください" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:227 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:327 -#: ../../enterprise/tools/ipam/ipam_list.php:395 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:323 +#: ../../enterprise/tools/ipam/ipam_list.php:461 #: ../../enterprise/tools/ipam/ipam_action.php:121 #: ../../enterprise/tools/ipam/ipam_action.php:264 msgid "The location is not filled, please add a location." msgstr "位置情報が入力されていません。位置情報を追加してください。" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:391 #, php-format msgid "Successfully created %d networks" msgstr "%d ネットワークを作成しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:399 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:395 msgid "Failed to create networks" msgstr "ネットワークの作成に失敗しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:402 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:398 msgid "Entered range address is not valid" msgstr "入力されたアドレス範囲が不正です" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:429 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:425 msgid "Network name cannot be repeated in this supernet" msgstr "このスーパーネットでネットワーク名は繰り返しできません" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:432 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:170 msgid "Successfully added networks" msgstr "ネットワークを追加しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:440 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:436 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:174 msgid "Network could not be added" msgstr "ネットワークを追加できませんでした" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:445 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:441 msgid "No networks to be added to supernet" msgstr "スーパーネットへ追加されるネットワークがありません" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:450 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:446 msgid "supernet name could not be added, please select supernet" msgstr "" "スーパーネット名を追加できませんでした。スーパーネットを選択してください。" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:479 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:475 msgid "Could not be deleted, please select supernet and network" msgstr "削除できませんでした。スーパーネットとネットワークを選択してください。" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:482 #, php-format msgid "Failed to delete %d/%d networks from supernet" msgstr "スーパーネットから %d/%d ネットワークの削除に失敗しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:490 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:486 msgid "Successfully deleted network from supernet" msgstr "スーパーネットからネットワークを削除しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:492 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:488 #, php-format msgid "Successfully deleted %d/%d networks from supernet" msgstr "スーパーネットから %d/%d ネットワークを削除しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:495 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:491 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:228 msgid "No items selected" msgstr "テーマが選択されていません" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:564 -#: ../../enterprise/tools/ipam/ipam_excel.php:140 -#: ../../enterprise/tools/ipam/ipam_calculator.php:84 -msgid "Mask" -msgstr "マスク" +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:531 +#: ../../enterprise/tools/ipam/ipam_list.php:50 +msgid "Search filter by name, network address or description" +msgstr "名前、ネットワークアドレス、説明による検索フィルタ" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:582 -msgid "Subnetting Mask" -msgstr "サブネットマスク" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:605 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:777 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1064 -#: ../../enterprise/tools/ipam/ipam_list.php:129 -#: ../../enterprise/tools/ipam/ipam_list.php:619 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:559 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:742 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1200 +#: ../../enterprise/tools/ipam/ipam_list.php:99 +#: ../../enterprise/tools/ipam/ipam_list.php:702 msgid "Site" msgstr "サイト" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:640 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1313 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:576 +msgid "Min. networks range" +msgstr "最小ネットワーク範囲" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:593 +msgid "Max. networks range" +msgstr "最大ネットワーク範囲" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:692 +#: ../../enterprise/tools/ipam/ipam_excel.php:140 +#: ../../enterprise/tools/ipam/ipam_calculator.php:110 +msgid "Mask" +msgstr "マスク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:713 +msgid "Subnetting Mask" +msgstr "サブネットマスク" + +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:786 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1450 msgid "Update Supernet" msgstr "スーパーネット更新" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:647 -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1451 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:803 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1588 msgid "New Supernet" msgstr "新規スーパーネット" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:688 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:853 #, php-format msgid "%s supernets created" msgstr "%s スーパーネットを作成しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:690 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:855 msgid "supernets creation failed" msgstr "スーパーネットの作成に失敗しました" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:763 -#: ../../enterprise/tools/ipam/ipam_list.php:93 -msgid "Search filter by name, network address or description" -msgstr "名前、ネットワークアドレス、説明による検索フィルタ" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:790 -msgid "Min. networks range" -msgstr "最小ネットワーク範囲" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:793 -msgid "Max. networks range" -msgstr "最大ネットワーク範囲" - -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1060 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1196 msgid "Address / Masks" msgstr "アドレス / マスク" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1062 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1198 msgid "Subnetting mask" msgstr "サブネットマスク" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1063 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1199 msgid "Networks range" msgstr "ネットワーク範囲" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1071 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:688 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1207 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:806 msgid "Networks" msgstr "ネットワーク" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1237 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1374 msgid "Delete network in supernet" msgstr "スーパーネットのネットワーク削除" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1286 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1423 msgid "Manage networks in supernet" msgstr "スーパーネットのネットワーク管理" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1320 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1457 msgid "Add network to supernet" msgstr "スーパーネットへネットワーク追加" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1323 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1460 msgid "Next network" msgstr "次のネットワーク" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1355 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1493 msgid "Delete Supernet" msgstr "スーパーネット削除" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1377 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:871 -#: ../../include/functions_visual_map_editor.php:793 +#: ../../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 msgid "Show statistics" msgstr "統計表示" -#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1444 +#: ../../enterprise/tools/ipam/ipam_supernet_config.php:1580 msgid "No Supernet found" msgstr "スーパーネットがありません" -#: ../../enterprise/tools/ipam/ipam_list.php:151 -#: ../../enterprise/tools/ipam/ipam_list.php:626 +#: ../../enterprise/tools/ipam/ipam_list.php:124 +#: ../../enterprise/tools/ipam/ipam_list.php:709 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:58 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:62 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:67 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:39 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:339 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:402 msgid "Vlan" msgstr "VLAN" -#: ../../enterprise/tools/ipam/ipam_list.php:412 +#: ../../enterprise/tools/ipam/ipam_list.php:478 #: ../../enterprise/tools/ipam/ipam_action.php:150 #: ../../enterprise/tools/ipam/ipam_action.php:341 msgid "Incorrect format in Subnet field" msgstr "ネットワークの範囲指定が正しくありません。" -#: ../../enterprise/tools/ipam/ipam_list.php:437 +#: ../../enterprise/tools/ipam/ipam_list.php:512 +msgid "Could not be created: The location id does not exist." +msgstr "作成できません: 位置 ID がありません。" + +#: ../../enterprise/tools/ipam/ipam_list.php:520 #: ../../enterprise/tools/ipam/ipam_action.php:244 #, php-format msgid "Could not be created: %s" msgstr "作成できませんでした: %s" -#: ../../enterprise/tools/ipam/ipam_list.php:446 +#: ../../enterprise/tools/ipam/ipam_list.php:529 #, php-format msgid "%s networks created" msgstr "%s ネットワークを作成しました" -#: ../../enterprise/tools/ipam/ipam_list.php:448 +#: ../../enterprise/tools/ipam/ipam_list.php:531 msgid "Networks creation failed" msgstr "ネットワーク作成エラー" -#: ../../enterprise/tools/ipam/ipam_list.php:513 +#: ../../enterprise/tools/ipam/ipam_list.php:596 msgid "No networks found" msgstr "ネットワークが見つかりません" -#: ../../enterprise/tools/ipam/ipam_list.php:649 +#: ../../enterprise/tools/ipam/ipam_list.php:732 msgid "IPs" msgstr "IP" -#: ../../enterprise/tools/ipam/ipam_list.php:734 +#: ../../enterprise/tools/ipam/ipam_list.php:817 msgid "Edit network" msgstr "ネットワーク編集" -#: ../../enterprise/tools/ipam/ipam_list.php:745 +#: ../../enterprise/tools/ipam/ipam_list.php:828 msgid "Delete network" msgstr "ネットワーク削除" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 -#: ../../operation/agentes/interface_view.functions.php:93 -#: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1428 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:488 +#: ../../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 msgid "Interfaces" msgstr "インタフェース" @@ -31568,39 +32315,26 @@ msgstr "作成する VLAN を選択してください" msgid "Please enter adress, for search vlans" msgstr "VLAN 検索のためのアドレスを入力してください" -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:263 -#: ../../godmode/modules/manage_network_components_form_network.php:82 -#: ../../godmode/agentes/module_manager_editor_network.php:192 -#: ../../include/class/CredentialStore.class.php:1118 -#: ../../include/class/CredentialStore.class.php:1391 -#: ../../include/class/AgentWizard.class.php:795 -msgid "SNMP community" -msgstr "SNMPコミュニティ" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:337 -msgid "privacy pass" -msgstr "暗号化パスワード" - -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:374 -#: ../../godmode/wizards/HostDevices.class.php:1270 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:435 +#: ../../godmode/wizards/HostDevices.class.php:1287 msgid "Context" msgstr "コンテキスト" -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:397 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:464 msgid "Run" msgstr "実行" -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:409 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:487 msgid "Vlan name" msgstr "VLAN 名" -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:424 -#: ../../enterprise/tools/ipam/ipam_ajax.php:489 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:502 +#: ../../enterprise/tools/ipam/ipam_ajax.php:492 msgid "Created" msgstr "作成" -#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:459 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:906 +#: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:537 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:1023 msgid "No vlans found" msgstr "VLAN がありません" @@ -31625,7 +32359,7 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "スーパーネット %s (%s) にネットワーク名がすでに存在します" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1656 +#: ../../operation/agentes/pandora_networkmap.view.php:1689 msgid "Could not be updated." msgstr "更新できませんでした。" @@ -31636,18 +32370,18 @@ msgid "Successfully updated." msgstr "更新しました。" #: ../../enterprise/tools/ipam/ipam_action.php:456 -#: ../../include/functions_reporting.php:2998 +#: ../../include/functions_reporting.php:3102 msgid "No changes found." msgstr "変更が見つかりません。" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:40 -#: ../../godmode/modules/manage_nc_groups.php:64 +#: ../../godmode/modules/manage_nc_groups.php:88 msgid "Could not be created. Blank name" msgstr "作成できませんでした。名前が空です。" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 -#: ../../godmode/modules/manage_nc_groups.php:119 -#: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 +#: ../../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 msgid "Not updated. Error updating data" msgstr "データの更新に失敗しました。" @@ -31661,15 +32395,15 @@ msgstr "%d/%d アイテムを削除しました" msgid "Failed to delete items" msgstr "アイテムの削除に失敗しました" -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:167 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:199 msgid "Search filter by name or network address" msgstr "名前またはネットワークアドレスでの検索フィルタ" -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:273 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:346 msgid "No locations found" msgstr "場所がありません" -#: ../../enterprise/tools/ipam/ipam_network_location_config.php:309 +#: ../../enterprise/tools/ipam/ipam_network_location_config.php:387 msgid "There are no defined network locations" msgstr "定義済のネットワークの場所がありません" @@ -31685,70 +32419,70 @@ msgstr "空き IP がありません。" msgid "Next available IP Address is:" msgstr "次の空き IP アドレス:" -#: ../../enterprise/tools/ipam/ipam_ajax.php:313 +#: ../../enterprise/tools/ipam/ipam_ajax.php:316 msgid "Reserve this IP now" msgstr "この IP を予約する" -#: ../../enterprise/tools/ipam/ipam_ajax.php:329 +#: ../../enterprise/tools/ipam/ipam_ajax.php:332 msgid "Manage this IP now" msgstr "この IP を管理対象にする" -#: ../../enterprise/tools/ipam/ipam_ajax.php:374 +#: ../../enterprise/tools/ipam/ipam_ajax.php:377 msgid "Operating system" msgstr "オペレーティングシステム" -#: ../../enterprise/tools/ipam/ipam_ajax.php:384 +#: ../../enterprise/tools/ipam/ipam_ajax.php:387 msgid "This agent has other IPs" msgstr "このエージェントには他の IP があります" -#: ../../enterprise/tools/ipam/ipam_ajax.php:393 +#: ../../enterprise/tools/ipam/ipam_ajax.php:396 msgid "Generate events" msgstr "イベント生成" -#: ../../enterprise/tools/ipam/ipam_ajax.php:445 +#: ../../enterprise/tools/ipam/ipam_ajax.php:448 msgid "Leases Dhcp" msgstr "DHCP リース" -#: ../../enterprise/tools/ipam/ipam_ajax.php:455 +#: ../../enterprise/tools/ipam/ipam_ajax.php:458 msgid "leased mode" msgstr "リースモード" -#: ../../enterprise/tools/ipam/ipam_ajax.php:468 +#: ../../enterprise/tools/ipam/ipam_ajax.php:471 msgid "leased expiration" msgstr "リース期限切れ" -#: ../../enterprise/tools/ipam/ipam_ajax.php:473 -#: ../../include/class/NetworkMap.class.php:3043 +#: ../../enterprise/tools/ipam/ipam_ajax.php:476 +#: ../../include/class/NetworkMap.class.php:3067 msgid "MAC" msgstr "MAC" -#: ../../enterprise/tools/ipam/ipam_ajax.php:499 +#: ../../enterprise/tools/ipam/ipam_ajax.php:502 msgid "Edited" msgstr "編集" -#: ../../enterprise/tools/ipam/ipam_ajax.php:509 +#: ../../enterprise/tools/ipam/ipam_ajax.php:512 msgid "Tracking" msgstr "トラッキング" -#: ../../enterprise/tools/ipam/ipam_ajax.php:524 +#: ../../enterprise/tools/ipam/ipam_ajax.php:527 msgid "Ping" msgstr "Ping" -#: ../../enterprise/tools/ipam/ipam_ajax.php:540 +#: ../../enterprise/tools/ipam/ipam_ajax.php:543 #, php-format msgid "Executing command: %s" msgstr "コマンド実行中: %s" -#: ../../enterprise/tools/ipam/ipam_ajax.php:551 -#: ../../include/functions_events.php:5743 +#: ../../enterprise/tools/ipam/ipam_ajax.php:554 +#: ../../include/functions_events.php:5965 msgid "Execute again" msgstr "再実行" -#: ../../enterprise/tools/ipam/ipam_ajax.php:565 +#: ../../enterprise/tools/ipam/ipam_ajax.php:568 msgid "Ping to host" msgstr "ホストへの Ping" -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:94 +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:90 msgid "Found supernets" msgstr "見つかったスーパーネット" @@ -31835,118 +32569,118 @@ msgstr "%s VLAN ネットワークを作成しました" msgid "Could not create VLAN networks" msgstr "VLAN ネットワークを作成できませんでした" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:366 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:822 -msgid "Update Vlan" -msgstr "VLAN 更新" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:373 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:917 -msgid "New Vlan" -msgstr "新規 VLAN" - -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:435 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:336 msgid "Search filter by name" msgstr "名前での検索フィルタ" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:736 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:461 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:940 +msgid "Update Vlan" +msgstr "VLAN 更新" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:473 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:1031 +msgid "New Vlan" +msgstr "新規 VLAN" + +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:854 msgid "Delete network to vlan" msgstr "VLAN のネットワーク削除" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:796 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:914 msgid "Manage networks in VLAN" msgstr "VLAN のネットワーク管理" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:816 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:934 msgid "Not assigned networks" msgstr "未割当ネットワーク" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:829 -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:848 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:947 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:966 msgid "Add network to Vlan" msgstr "VLAN へネットワーク追加" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:832 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:950 msgid "Create network" msgstr "ネットワーク作成" -#: ../../enterprise/tools/ipam/ipam_vlan_config.php:865 +#: ../../enterprise/tools/ipam/ipam_vlan_config.php:984 msgid "Delete Vlan" msgstr "VLAN 削除" -#: ../../enterprise/tools/ipam/ipam_massive.php:82 +#: ../../enterprise/tools/ipam/ipam_massive.php:84 msgid "Addresses" msgstr "アドレス" -#: ../../enterprise/tools/ipam/ipam_calculator.php:64 -#: ../../enterprise/tools/ipam/ipam_calculator.php:66 -#: ../../enterprise/tools/ipam/ipam_calculator.php:87 -#: ../../enterprise/tools/ipam/ipam_calculator.php:90 -#: ../../enterprise/tools/ipam/ipam_calculator.php:93 -#: ../../enterprise/tools/ipam/ipam_calculator.php:96 +#: ../../enterprise/tools/ipam/ipam_calculator.php:82 +#: ../../enterprise/tools/ipam/ipam_calculator.php:83 +#: ../../enterprise/tools/ipam/ipam_calculator.php:123 +#: ../../enterprise/tools/ipam/ipam_calculator.php:124 +#: ../../enterprise/tools/ipam/ipam_calculator.php:125 +#: ../../enterprise/tools/ipam/ipam_calculator.php:126 msgid "Example:" msgstr "例:" -#: ../../enterprise/tools/ipam/ipam_calculator.php:70 +#: ../../enterprise/tools/ipam/ipam_calculator.php:89 msgid "Bit mask" msgstr "ビットマスク" -#: ../../enterprise/tools/ipam/ipam_calculator.php:71 +#: ../../enterprise/tools/ipam/ipam_calculator.php:90 msgid "Net mask" msgstr "ネットマスク" -#: ../../enterprise/tools/ipam/ipam_calculator.php:74 +#: ../../enterprise/tools/ipam/ipam_calculator.php:94 msgid "Mask format" msgstr "マスクフォーマット" -#: ../../enterprise/tools/ipam/ipam_calculator.php:105 +#: ../../enterprise/tools/ipam/ipam_calculator.php:138 msgid "Calculate" msgstr "計算" -#: ../../enterprise/tools/ipam/ipam_calculator.php:112 +#: ../../enterprise/tools/ipam/ipam_calculator.php:156 msgid "Address field is empty" msgstr "アドレスフィールドが空です" -#: ../../enterprise/tools/ipam/ipam_calculator.php:120 +#: ../../enterprise/tools/ipam/ipam_calculator.php:164 msgid "Mask field is empty" msgstr "マスクフィールドが空です" -#: ../../enterprise/tools/ipam/ipam_calculator.php:139 -#: ../../enterprise/tools/ipam/ipam_calculator.php:152 +#: ../../enterprise/tools/ipam/ipam_calculator.php:183 +#: ../../enterprise/tools/ipam/ipam_calculator.php:196 msgid "Incorrect address format" msgstr "アドレスフォーマットが不正です" -#: ../../enterprise/tools/ipam/ipam_calculator.php:144 -#: ../../enterprise/tools/ipam/ipam_calculator.php:157 -#: ../../enterprise/tools/ipam/ipam_calculator.php:162 +#: ../../enterprise/tools/ipam/ipam_calculator.php:188 +#: ../../enterprise/tools/ipam/ipam_calculator.php:201 +#: ../../enterprise/tools/ipam/ipam_calculator.php:206 msgid "Incorrect mask format" msgstr "マスクフォーマットが不正です" -#: ../../enterprise/tools/ipam/ipam_calculator.php:190 +#: ../../enterprise/tools/ipam/ipam_calculator.php:235 msgid "Network mask" msgstr "ネットワークマスク" -#: ../../enterprise/tools/ipam/ipam_calculator.php:211 +#: ../../enterprise/tools/ipam/ipam_calculator.php:256 msgid "Network wildcard" msgstr "ネットワークワイルドカード" -#: ../../enterprise/tools/ipam/ipam_calculator.php:220 +#: ../../enterprise/tools/ipam/ipam_calculator.php:265 msgid "Network address" msgstr "ネットワークアドレス" -#: ../../enterprise/tools/ipam/ipam_calculator.php:229 +#: ../../enterprise/tools/ipam/ipam_calculator.php:274 msgid "Broadcast address" msgstr "ブロードキャストアドレス" -#: ../../enterprise/tools/ipam/ipam_calculator.php:238 +#: ../../enterprise/tools/ipam/ipam_calculator.php:283 msgid "First valid IP" msgstr "最初の有効IP" -#: ../../enterprise/tools/ipam/ipam_calculator.php:247 +#: ../../enterprise/tools/ipam/ipam_calculator.php:292 msgid "Last valid IP" msgstr "最後の有効IP" -#: ../../enterprise/tools/ipam/ipam_calculator.php:257 +#: ../../enterprise/tools/ipam/ipam_calculator.php:302 msgid "Hosts/Net" msgstr "ホスト/ネット" @@ -31954,14 +32688,10 @@ msgstr "ホスト/ネット" msgid "Network not found" msgstr "ネットワークが見つかりません" -#: ../../enterprise/tools/ipam/ipam_editor.php:122 +#: ../../enterprise/tools/ipam/ipam_editor.php:127 msgid "Format: IP/Mask" msgstr "フォーマット: IP/マスク" -#: ../../enterprise/tools/ipam/ipam_editor.php:136 -msgid "Examples" -msgstr "例" - #: ../../update_manager_client/views/offline.php:65 msgid "Drop the package here or" msgstr "ここにパッケージをドロップするかまたは" @@ -32128,7 +32858,7 @@ msgid "Visit our privacy policy for more information" msgstr "詳細についてはプライバシーポリシーをご覧ください" #: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1918 +#: ../../include/class/Diagnostics.class.php:1938 msgid "Your email" msgstr "あなたのメールアドレス" @@ -32297,171 +33027,171 @@ msgstr "次へのアップデート中: " msgid "Matrix events" msgstr "Matrix イベント" -#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:244 +#: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 msgid "WebService engine has not been started, please check documentation." msgstr "" "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" -#: ../../extensions/quick_shell.php:152 +#: ../../extensions/quick_shell.php:153 msgid "Retry" msgstr "再試行" -#: ../../extensions/quick_shell.php:196 +#: ../../extensions/quick_shell.php:198 msgid "Telnet" msgstr "Telnet" -#: ../../extensions/quick_shell.php:204 +#: ../../extensions/quick_shell.php:211 msgid "Connect" msgstr "接続" -#: ../../extensions/quick_shell.php:232 +#: ../../extensions/quick_shell.php:239 msgid "Please use SSH or Telnet." msgstr "SSH または Telnet を利用してください。" -#: ../../extensions/quick_shell.php:266 +#: ../../extensions/quick_shell.php:273 msgid "WebService engine is not working properly, please check documentation." msgstr "" "ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してくださ" "い。" -#: ../../extensions/quick_shell.php:425 +#: ../../extensions/quick_shell.php:432 #, php-format msgid "%d Updated" msgstr "%d 更新" -#: ../../extensions/quick_shell.php:428 +#: ../../extensions/quick_shell.php:435 #, php-format msgid "%d Updated, please restart WebSocket engine service" msgstr "%d 更新、WebSocket サービスを再起動してください。" -#: ../../extensions/quick_shell.php:438 +#: ../../extensions/quick_shell.php:445 msgid "Quickshell" msgstr "クイックシェル" -#: ../../extensions/quick_shell.php:448 +#: ../../extensions/quick_shell.php:456 msgid "Gotty path" msgstr "Gotty パス" -#: ../../extensions/quick_shell.php:458 +#: ../../extensions/quick_shell.php:468 msgid "Gotty host" msgstr "Gotty ホスト" -#: ../../extensions/quick_shell.php:468 +#: ../../extensions/quick_shell.php:480 msgid "Gotty ssh port" msgstr "Gotty ssh ポート" -#: ../../extensions/quick_shell.php:478 +#: ../../extensions/quick_shell.php:492 msgid "Gotty telnet port" msgstr "Gotty telnet ポート" -#: ../../extensions/quick_shell.php:495 +#: ../../extensions/quick_shell.php:511 msgid "Gotty user" msgstr "Gotty ユーザ" -#: ../../extensions/quick_shell.php:505 +#: ../../extensions/quick_shell.php:523 msgid "Gotty password" msgstr "Gotty パスワード" -#: ../../extensions/quick_shell.php:545 +#: ../../extensions/quick_shell.php:563 msgid "QuickShell" msgstr "クイックシェル" -#: ../../extensions/extension_uploader.php:29 +#: ../../extensions/extension_uploader.php:47 msgid "Uploader extension" msgstr "拡張アップローダ" -#: ../../extensions/extension_uploader.php:72 +#: ../../extensions/extension_uploader.php:87 msgid "Success to upload extension" msgstr "拡張をアップロードしました" -#: ../../extensions/extension_uploader.php:73 +#: ../../extensions/extension_uploader.php:88 msgid "Fail to upload extension" msgstr "拡張のアップロードに失敗しました" -#: ../../extensions/extension_uploader.php:82 +#: ../../extensions/extension_uploader.php:102 msgid "Upload extension" msgstr "拡張のアップロード" -#: ../../extensions/extension_uploader.php:83 +#: ../../extensions/extension_uploader.php:102 msgid "Upload the extension as a zip file." msgstr "zipファイルで拡張をアップロードしてください。" -#: ../../extensions/extension_uploader.php:85 +#: ../../extensions/extension_uploader.php:115 msgid "Upload enterprise extension" msgstr "Enterprise 拡張のアップロード" -#: ../../extensions/extension_uploader.php:98 +#: ../../extensions/extension_uploader.php:145 msgid "Extension uploader" msgstr "拡張アップローダ" -#: ../../extensions/resource_registration.php:55 +#: ../../extensions/resource_registration.php:56 #, php-format msgid "Success add '%s' item in report '%s'." msgstr "レポート '%s' に、アイテム '%s' を追加しました。" -#: ../../extensions/resource_registration.php:60 +#: ../../extensions/resource_registration.php:61 #, php-format msgid "Error create '%s' item in report '%s'." msgstr "レポート '%s' にアイテム '%s' の追加でエラーになりました。" -#: ../../extensions/resource_registration.php:96 +#: ../../extensions/resource_registration.php:97 #, php-format msgid "Error create '%s' report, the name exist and there aren't free name." msgstr "レポート '%s' でエラーです。指定の名前はすでに使われています。" -#: ../../extensions/resource_registration.php:104 +#: ../../extensions/resource_registration.php:105 #, php-format msgid "Warning create '%s' report, the name exist, the report have a name %s." msgstr "" "レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は " "%s です。" -#: ../../extensions/resource_registration.php:113 +#: ../../extensions/resource_registration.php:114 msgid "Error the report haven't name." msgstr "レポートに名前がありません。" -#: ../../extensions/resource_registration.php:127 +#: ../../extensions/resource_registration.php:128 msgid "Error the report haven't group." msgstr "レポートにグループがありません。" -#: ../../extensions/resource_registration.php:140 +#: ../../extensions/resource_registration.php:141 #, php-format msgid "Success create '%s' report." msgstr "レポート '%s' を作成しました。" -#: ../../extensions/resource_registration.php:141 +#: ../../extensions/resource_registration.php:142 #, php-format msgid "Error create '%s' report." msgstr "レポート '%s' の作成に失敗しました。" -#: ../../extensions/resource_registration.php:435 -#: ../../extensions/resource_registration.php:457 -#: ../../extensions/resource_registration.php:468 +#: ../../extensions/resource_registration.php:416 +#: ../../extensions/resource_registration.php:438 +#: ../../extensions/resource_registration.php:449 #, php-format msgid "Success add '%s' content." msgstr "コンテンツ '%s'を追加しました。" -#: ../../extensions/resource_registration.php:445 +#: ../../extensions/resource_registration.php:426 #, php-format msgid "Success add '%s' SLA." msgstr "SLA '%s' を追加しました。" -#: ../../extensions/resource_registration.php:446 +#: ../../extensions/resource_registration.php:427 #, php-format msgid "Error add '%s' SLA." msgstr "SLA '%s' の追加に失敗しました。" -#: ../../extensions/resource_registration.php:489 +#: ../../extensions/resource_registration.php:470 #, php-format msgid "Error create '%s' visual map, lost tag name." msgstr "ビジュアルマップ '%s' の作成に失敗しました。タグ名がありません。" -#: ../../extensions/resource_registration.php:532 +#: ../../extensions/resource_registration.php:513 #, php-format msgid "Error create '%s' visual map, the name exist and there aren't free name." msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前がすでに存在します。" -#: ../../extensions/resource_registration.php:540 +#: ../../extensions/resource_registration.php:521 #, php-format msgid "" "Warning create '%s' visual map, the name exist, the report have a name %s." @@ -32469,69 +33199,89 @@ msgstr "" "ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s " "です。" -#: ../../extensions/resource_registration.php:552 +#: ../../extensions/resource_registration.php:533 #, php-format msgid "Success create '%s' visual map." msgstr "ビジュアルマップ '%s' を作成しました。" -#: ../../extensions/resource_registration.php:553 +#: ../../extensions/resource_registration.php:534 #, php-format msgid "Error create '%s' visual map." msgstr "ビジュアルマップ '%s' の作成に失敗しました。" -#: ../../extensions/resource_registration.php:718 +#: ../../extensions/resource_registration.php:699 #, php-format msgid "Success create item type '%d' visual map." msgstr "アイテムタイプ '%d' のビジュアルマップを作成しました。" -#: ../../extensions/resource_registration.php:719 +#: ../../extensions/resource_registration.php:700 #, php-format msgid "Error create item type '%d' visual map." msgstr "アイテムタイム '%d' のビジュアルマップを作成できませんでした。" -#: ../../extensions/resource_registration.php:742 -#: ../../extensions/resource_registration.php:763 +#: ../../extensions/resource_registration.php:723 +#: ../../extensions/resource_registration.php:744 #, php-format msgid "Success create item for agent '%s' visual map." msgstr "'%s'ビジュアルマップ用エージェント項目を作成しました。" -#: ../../extensions/resource_registration.php:743 -#: ../../extensions/resource_registration.php:764 +#: ../../extensions/resource_registration.php:724 +#: ../../extensions/resource_registration.php:745 #, php-format msgid "Error create item for agent '%s' visual map." msgstr "'%s'ビジュアルマップ用エージェント項目の作成に失敗しました。" -#: ../../extensions/resource_registration.php:1028 +#: ../../extensions/resource_registration.php:1009 #, php-format msgid "Success create '%s' component." msgstr "コンポーネント '%s' を作成しました。" -#: ../../extensions/resource_registration.php:1029 +#: ../../extensions/resource_registration.php:1010 #, php-format msgid "Error create '%s' component." msgstr "コンポーネント '%s' の作成に失敗しました。" -#: ../../extensions/resource_registration.php:1095 -#: ../../extensions/resource_registration.php:1158 +#: ../../extensions/resource_registration.php:1077 +#: ../../extensions/resource_registration.php:1090 +#: ../../extensions/resource_registration.php:1182 msgid "Resource registration" msgstr "リソース登録" -#: ../../extensions/resource_registration.php:1114 +#: ../../extensions/resource_registration.php:1086 +#: ../../extensions/resource_exportation.php:426 +#: ../../extensions/insert_data.php:84 +#: ../../godmode/modules/manage_nc_groups.php:62 +#: ../../godmode/modules/module_list.php:54 +#: ../../godmode/groups/configure_modu_group.php:39 +#: ../../godmode/groups/modu_group_list.php:79 +#: ../../godmode/agentes/configurar_agente.php:820 +#: ../../godmode/agentes/configurar_agente.php:844 +#: ../../godmode/agentes/modificar_agente.php:105 +#: ../../godmode/agentes/fields_manager.php:55 +#: ../../godmode/agentes/configure_field.php:75 +#: ../../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 +msgid "Resources" +msgstr "リソース" + +#: ../../extensions/resource_registration.php:1112 #, php-format msgid "" "This node is configured with centralized mode. Go to %s to create a policy." msgstr "" "このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。" -#: ../../extensions/resource_registration.php:1123 +#: ../../extensions/resource_registration.php:1121 msgid "This extension makes registering resource templates easier." msgstr "この拡張機能により、リソーステンプレートの登録が簡単になります。" -#: ../../extensions/resource_registration.php:1123 +#: ../../extensions/resource_registration.php:1121 msgid "Here you can upload a resource template in .ptr format." msgstr "ここに、.ptr フォーマットでリソーステンプレートをアップロードできます。" -#: ../../extensions/resource_registration.php:1123 +#: ../../extensions/resource_registration.php:1121 #, php-format msgid "" "Please refer to our documentation for more information on how to obtain and " @@ -32540,7 +33290,7 @@ msgstr "" "%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してくださ" "い。" -#: ../../extensions/resource_registration.php:1123 +#: ../../extensions/resource_registration.php:1121 msgid "" "You can get more resurces in our Public Resource Library" @@ -32548,82 +33298,95 @@ msgstr "" "公開リソースライブラリか" "ら追加のリソースを入手できます。" -#: ../../extensions/api_checker.php:190 ../../extensions/api_checker.php:332 +#: ../../extensions/resource_registration.php:1131 +msgid "File to upload" +msgstr "アップロードするファイル" + +#: ../../extensions/resource_registration.php:1136 +#: ../../godmode/agentes/planned_downtime.editor.php:1177 +msgid "Group filter" +msgstr "グループフィルタ" + +#: ../../extensions/api_checker.php:217 ../../extensions/api_checker.php:395 msgid "API checker" msgstr "API チェッカ" -#: ../../extensions/api_checker.php:207 +#: ../../extensions/api_checker.php:236 #, php-format msgid "%s Console URL" msgstr "%s コンソールURL" -#: ../../extensions/api_checker.php:212 -#: ../../godmode/users/configure_user.php:1049 -#: ../../godmode/users/configure_user.php:1075 -#: ../../operation/users/user_edit.php:271 -#: ../../operation/users/user_edit.php:310 +#: ../../extensions/api_checker.php:243 +#: ../../godmode/users/configure_user.php:1006 +#: ../../godmode/users/configure_user.php:1029 +#: ../../operation/users/user_edit.php:299 +#: ../../operation/users/user_edit.php:338 msgid "API Token" msgstr "API トークン" -#: ../../extensions/api_checker.php:212 +#: ../../extensions/api_checker.php:243 msgid "Use API Token instead API Pass, User and Password." msgstr "" "API パスワード、ユーザ、パスワードの代わりに、API トークンを使ってください。" -#: ../../extensions/api_checker.php:217 +#: ../../extensions/api_checker.php:248 msgid "API Pass" msgstr "API パス" -#: ../../extensions/api_checker.php:235 +#: ../../extensions/api_checker.php:274 msgid "Action (get or set)" msgstr "アクション (get または set)" -#: ../../extensions/api_checker.php:250 +#: ../../extensions/api_checker.php:291 msgid "ID 2" msgstr "ID 2" -#: ../../extensions/api_checker.php:255 +#: ../../extensions/api_checker.php:298 msgid "Return Type" msgstr "Return Type" -#: ../../extensions/api_checker.php:265 +#: ../../extensions/api_checker.php:310 msgid "Other Mode" msgstr "Other Mode" -#: ../../extensions/api_checker.php:273 +#: ../../extensions/api_checker.php:324 msgid "Raw URL" msgstr "詳細 URL" -#: ../../extensions/api_checker.php:284 +#: ../../extensions/api_checker.php:336 msgid "Call parameters" msgstr "呼び出しパラメータ" -#: ../../extensions/api_checker.php:284 +#: ../../extensions/api_checker.php:336 msgid "Action: get Operation: module_last_value id: 63" msgstr "アクション: get操作: module_last_value id:63" -#: ../../extensions/api_checker.php:291 +#: ../../extensions/api_checker.php:343 msgid "Custom URL" msgstr "カスタムURL" -#: ../../extensions/api_checker.php:297 +#: ../../extensions/api_checker.php:351 msgid "Call" msgstr "呼び出し" -#: ../../extensions/api_checker.php:306 ../../extensions/api_checker.php:323 -msgid "Show URL" -msgstr "URL を表示" - -#: ../../extensions/api_checker.php:319 +#: ../../extensions/api_checker.php:382 msgid "Hide URL" msgstr "URL を隠す" -#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:456 +#: ../../extensions/api_checker.php:386 +msgid "Show URL" +msgstr "URL を表示" + +#: ../../extensions/db_status.php:25 ../../extensions/db_status.php:520 +#: ../../godmode/menu.php:478 msgid "DB Schema check" msgstr "DBスキーマチェック" -#: ../../extensions/db_status.php:43 +#: ../../extensions/db_status.php:38 +msgid "Run test" +msgstr "テストの実行" + +#: ../../extensions/db_status.php:53 msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." @@ -32632,67 +33395,67 @@ msgstr "" "でテーブルのフィールドが不足していたりデータが変更されていなかったりするためで" "す。" -#: ../../extensions/db_status.php:46 +#: ../../extensions/db_status.php:56 msgid "At the moment the checks is for MySQL/MariaDB." msgstr "現時点では、MySQL/MariaDB 用です。" -#: ../../extensions/db_status.php:52 +#: ../../extensions/db_status.php:62 msgid "DB settings" msgstr "DB 設定" -#: ../../extensions/db_status.php:56 +#: ../../extensions/db_status.php:67 msgid "DB User with privileges" msgstr "権限のある DB ユーザ" -#: ../../extensions/db_status.php:58 +#: ../../extensions/db_status.php:82 msgid "DB Password for this user" msgstr "この DB ユーザのパスワード" -#: ../../extensions/db_status.php:62 +#: ../../extensions/db_status.php:98 msgid "DB Hostname" msgstr "DB ホスト名" -#: ../../extensions/db_status.php:64 +#: ../../extensions/db_status.php:113 msgid "DB Name (temporal for testing)" msgstr "DB 名 (一時的なテスト用)" -#: ../../extensions/db_status.php:72 +#: ../../extensions/db_status.php:133 msgid "Execute Test" msgstr "テスト実行" -#: ../../extensions/db_status.php:108 +#: ../../extensions/db_status.php:175 msgid "Unsuccessful connected to the DB" msgstr "DB 接続に失敗しました" -#: ../../extensions/db_status.php:119 +#: ../../extensions/db_status.php:186 msgid "Unsuccessful created the testing DB" msgstr "テスト DB の作成に失敗しました" -#: ../../extensions/db_status.php:135 +#: ../../extensions/db_status.php:202 msgid "Unsuccessful installed tables into the testing DB" msgstr "テスト DB へのテーブル設定に失敗しました" -#: ../../extensions/db_status.php:219 +#: ../../extensions/db_status.php:286 #, php-format msgid "Success! %s DB contains all tables" msgstr "成功! %s DB はすべてのテーブルを含んでいます" -#: ../../extensions/db_status.php:221 +#: ../../extensions/db_status.php:288 #, php-format msgid "%s DB could not retrieve all tables. The missing tables are (%s)" msgstr "%s DB はすべてのテーブルが揃っていません。不足テーブルは (%s) です。" -#: ../../extensions/db_status.php:235 ../../extensions/db_status.php:246 -#: ../../extensions/db_status.php:349 +#: ../../extensions/db_status.php:302 ../../extensions/db_status.php:313 +#: ../../extensions/db_status.php:416 msgid "You can execute this SQL query for to fix." msgstr "修正するには、この SQL クエリを実行します。" -#: ../../extensions/db_status.php:343 +#: ../../extensions/db_status.php:410 #, php-format msgid "Unsuccessful the table %s has not the field %s" msgstr "テーブル %s に、フィールド %s がありません。" -#: ../../extensions/db_status.php:408 +#: ../../extensions/db_status.php:475 msgid "Successful all the tables have the correct fields" msgstr "すべてのテーブルにおいてフィールドは正しい状態です" @@ -32700,17 +33463,21 @@ msgstr "すべてのテーブルにおいてフィールドは正しい状態で msgid "Agents/Alerts view" msgstr "エージェント/アラート 表示" -#: ../../extensions/resource_exportation.php:50 -#: ../../extensions/resource_exportation.php:420 +#: ../../extensions/resource_exportation.php:66 +#: ../../extensions/resource_exportation.php:417 msgid "Resource exportation" msgstr "リソースのエクスポート" -#: ../../extensions/resource_exportation.php:423 +#: ../../extensions/resource_exportation.php:430 +msgid "Resource exporting" +msgstr "リソースのエクスポート中" + +#: ../../extensions/resource_exportation.php:436 msgid "This extension makes exportation of resource template more easy." msgstr "" "この拡張機能により、リソーステンプレートのエクスポートがより簡単になります。" -#: ../../extensions/resource_exportation.php:423 +#: ../../extensions/resource_exportation.php:436 msgid "You can export resource templates in .ptr format." msgstr "リソーステンプレートを .ptr フォーマットでエクスポートできます。" @@ -32718,15 +33485,15 @@ msgstr "リソーステンプレートを .ptr フォーマットでエクスポ msgid "Extension not installed" msgstr "拡張がインストールされていません" -#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:207 +#: ../../extensions/files_repo.php:118 ../../extensions/files_repo.php:229 msgid "Administration view" msgstr "管理画面" -#: ../../extensions/files_repo.php:130 ../../extensions/files_repo.php:240 +#: ../../extensions/files_repo.php:149 ../../extensions/files_repo.php:283 msgid "Files repository manager" msgstr "ファイルリポジトリ管理" -#: ../../extensions/files_repo.php:148 +#: ../../extensions/files_repo.php:170 msgid "" "Problem uploading. Please check this PHP runtime variable values:
  "
 "post_max_size (currently "
@@ -32734,15 +33501,16 @@ msgstr ""
 "アップロードに問題があります。 次の PHP ランタイム変数値を確認してください: "
 "
 post_max_size(現在 "
 
-#: ../../extensions/files_repo.php:221 ../../extensions/files_repo.php:238
+#: ../../extensions/files_repo.php:244 ../../extensions/files_repo.php:261
+#: ../../extensions/files_repo.php:281
 msgid "Files repository"
 msgstr "ファイルリポジトリ"
 
-#: ../../extensions/dbmanager.php:95
+#: ../../extensions/dbmanager.php:93
 msgid "Database interface"
 msgstr "DBインタフェース"
 
-#: ../../extensions/dbmanager.php:108
+#: ../../extensions/dbmanager.php:118
 msgid ""
 "Warning, you are accessing the database directly. You can leave the system "
 "inoperative if you run an inappropriate SQL statement"
@@ -32750,20 +33518,22 @@ msgstr ""
 "警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行す"
 "ると、システムが動作しなくなる可能性があります"
 
-#: ../../extensions/dbmanager.php:146
+#: ../../extensions/dbmanager.php:137
 #, php-format
 msgid ""
 "This is an advanced extension to interface with %s database directly from WEB "
 "console\n"
-"\t\tusing native SQL sentences. Please note that you can damage your %s "
-"installation\n"
-"\t\tif you don't know exactly what are you are doing,\n"
-"\t\tthis means that you can severily damage your setup using this extension.\n"
-"\t\tThis extension is intended to be used only by experienced users\n"
-"\t\twith a depth knowledge of %s internals."
+"            using native SQL sentences. Please note that you can damage "
+"your %s installation\n"
+"            if you don't know exactly what are you are doing,\n"
+"            this means that you can severily damage your setup using this "
+"extension.\n"
+"            This extension is intended to be used only by experienced "
+"users\n"
+"            with a depth knowledge of %s internals."
 msgstr ""
-"これは、ウェブコンソールから直接 %s データベースに SQL を使ってアクセスするため"
-"の高度な拡張機能です。\n"
+"これは、WEB コンソールから %s データベースと直接接続するための高度な拡張機能で"
+"す。\n"
 "\t\t何をやっているかを正しく把握していない場合、%s のインストールを\n"
 "\t\t破壊する可能性があることに注意してください。\n"
 "\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性がありま"
@@ -32771,129 +33541,133 @@ msgstr ""
 "\t\tこの拡張は、%s の内部について深い理解を持っているユーザにのみ\n"
 "\t\t利用いただくことを想定しています。"
 
-#: ../../extensions/dbmanager.php:193
+#: ../../extensions/dbmanager.php:164
+msgid "Some samples of usage:"
+msgstr "いくつかの使用例: "
+
+#: ../../extensions/dbmanager.php:185
 msgid "Select query target"
 msgstr "クエリ対象を選択"
 
-#: ../../extensions/dbmanager.php:200
+#: ../../extensions/dbmanager.php:208
+msgid "Type your query here..."
+msgstr "クエリをここに入力してください..."
+
+#: ../../extensions/dbmanager.php:214
 msgid "Execute SQL"
 msgstr "SQLの実行"
 
-#: ../../extensions/dbmanager.php:241
+#: ../../extensions/dbmanager.php:262
 msgid "Error querying database node"
 msgstr "データベースノードへのクエリ中にエラー"
 
-#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:456
-msgid "DB interface"
-msgstr "DBインタフェース"
-
 #: ../../extensions/agents_modules.php:396
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1972
+#: ../../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
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1973
+#: ../../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:400
-#: ../../godmode/reporting/reporting_builder.item_editor.php:1968
+#: ../../extensions/agents_modules.php:401
+#: ../../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:465
-#: ../../include/functions_reports.php:795
+#: ../../extensions/agents_modules.php:543
+#: ../../include/functions_reports.php:807
 msgid "Agents/Modules"
 msgstr "エージェント/モジュール"
 
-#: ../../extensions/agents_modules.php:564
+#: ../../extensions/agents_modules.php:636
 msgid "Agent/module view"
 msgstr "エージェント/モジュール表示"
 
-#: ../../extensions/agents_modules.php:605
+#: ../../extensions/agents_modules.php:681
 msgid "Filters "
 msgstr "フィルタ "
 
-#: ../../extensions/agents_modules.php:605
+#: ../../extensions/agents_modules.php:681
 msgid "Secondary groups and agent subgroups will be taken into account."
 msgstr "セカンダリグループとエージェントサブグループが考慮されます。"
 
-#: ../../extensions/agents_modules.php:750
-#: ../../include/functions_reporting.php:3272
+#: ../../extensions/agents_modules.php:833
+#: ../../include/functions_reporting.php:3376
 msgid "There are no agents with modules"
 msgstr "モジュールが定義されたエージェントがありません。"
 
-#: ../../extensions/agents_modules.php:765
+#: ../../extensions/agents_modules.php:848
 msgid "Previous modules"
 msgstr "前のモジュールへ"
 
-#: ../../extensions/agents_modules.php:791
+#: ../../extensions/agents_modules.php:874
 msgid "More modules"
 msgstr "次のモジュールへ"
 
-#: ../../extensions/agents_modules.php:934
-#: ../../include/functions_reporting_html.php:2193
+#: ../../extensions/agents_modules.php:1030
+#: ../../include/functions_reporting_html.php:2282
 msgid "Orange cell when the module has fired alerts"
 msgstr "オレンジのセルは、アラート発生中を示します。"
 
-#: ../../extensions/agents_modules.php:936
-#: ../../include/functions_reporting_html.php:2194
+#: ../../extensions/agents_modules.php:1032
+#: ../../include/functions_reporting_html.php:2283
 msgid "Red cell when the module has a critical status"
 msgstr "赤のセルは、障害状態を示します。"
 
-#: ../../extensions/agents_modules.php:939
-#: ../../include/functions_reporting_html.php:2195
+#: ../../extensions/agents_modules.php:1035
+#: ../../include/functions_reporting_html.php:2284
 msgid "Yellow cell when the module has a warning status"
 msgstr "黄色のセルは、警告状態を示します。"
 
-#: ../../extensions/agents_modules.php:941
-#: ../../include/functions_reporting_html.php:2196
+#: ../../extensions/agents_modules.php:1037
+#: ../../include/functions_reporting_html.php:2285
 msgid "Green cell when the module has a normal status"
 msgstr "緑のセルは、正常状態を示します。"
 
-#: ../../extensions/agents_modules.php:943
-#: ../../include/functions_reporting_html.php:2197
+#: ../../extensions/agents_modules.php:1039
+#: ../../include/functions_reporting_html.php:2286
 msgid "Grey cell when the module has an unknown status"
 msgstr "グレーのセルは、不明状態を示します。"
 
-#: ../../extensions/agents_modules.php:945
+#: ../../extensions/agents_modules.php:1041
 msgid "Cell turns blue when the module is in 'not initialize' status"
 msgstr "モジュールが未初期化状態のときにセルが青になります。"
 
-#: ../../extensions/agents_modules.php:959
+#: ../../extensions/agents_modules.php:1055
 msgid "Agents/Modules view"
 msgstr "エージェント/モジュール表示"
 
-#: ../../extensions/pandora_logs.php:29
+#: ../../extensions/pandora_logs.php:30
 msgid "Cannot find file"
 msgstr "ファイルが見つかりません"
 
-#: ../../extensions/pandora_logs.php:34
+#: ../../extensions/pandora_logs.php:35
 msgid "File is too large than PHP memory allocated in the system."
 msgstr "PHP のメモリ割り当てよりもファイルが大きすぎます。"
 
-#: ../../extensions/pandora_logs.php:35
+#: ../../extensions/pandora_logs.php:36
 msgid "The preview file is imposible."
 msgstr "ファイルのプレビューはできません。"
 
-#: ../../extensions/pandora_logs.php:38 ../../extensions/pandora_logs.php:45
+#: ../../extensions/pandora_logs.php:39 ../../extensions/pandora_logs.php:46
 msgid "The folder /var/log/pandora must have pandora:apache and its content too."
 msgstr "/var/log/pandora フォルダ以下は、pandora:apache である必要があります。"
 
-#: ../../extensions/pandora_logs.php:67
+#: ../../extensions/pandora_logs.php:103
 msgid "System logfile viewer"
 msgstr "システムログファイルビューワ"
 
-#: ../../extensions/pandora_logs.php:69
+#: ../../extensions/pandora_logs.php:109
 #, php-format
 msgid "Use this tool to view your %s logfiles directly on the console"
 msgstr "コンソールで %s ログファイルを直接参照するためにこのツールを利用"
 
-#: ../../extensions/pandora_logs.php:71
+#: ../../extensions/pandora_logs.php:110
 msgid ""
 "You can choose the amount of information shown in general setup (Log size "
 "limit in system logs viewer extension), "
@@ -32901,7 +33675,7 @@ msgstr ""
 "一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できま"
 "す。 "
 
-#: ../../extensions/pandora_logs.php:85
+#: ../../extensions/pandora_logs.php:126
 msgid "System logfiles"
 msgstr "システムログファイル"
 
@@ -32936,23 +33710,25 @@ msgstr "信頼性の低い操作"
 msgid "Please contact the administrator"
 msgstr "管理者に連絡してください"
 
-#: ../../extensions/files_repo/files_repo_form.php:84
+#: ../../extensions/files_repo/files_repo_form.php:81
 msgid "Only 200 characters are permitted"
 msgstr "200文字までです"
 
-#: ../../extensions/files_repo/files_repo_form.php:95
-#: ../../godmode/extensions.php:138
+#: ../../extensions/files_repo/files_repo_form.php:99
+#: ../../extensions/files_repo/files_repo_form.php:110
+#: ../../extensions/files_repo/files_repo_form.php:132
+#: ../../godmode/extensions.php:159
 msgid "File"
 msgstr "ファイル"
 
-#: ../../extensions/files_repo/files_repo_form.php:98
-#: ../../extensions/files_repo/files_repo_form.php:104
+#: ../../extensions/files_repo/files_repo_form.php:115
+#: ../../extensions/files_repo/files_repo_form.php:140
 #: ../../extensions/files_repo/files_repo_list.php:112
 msgid "Public link"
 msgstr "公開リンク"
 
 #: ../../extensions/files_repo/files_repo_list.php:58
-#: ../../include/functions_filemanager.php:605
+#: ../../include/functions_filemanager.php:645
 msgid "Last modification"
 msgstr "最終更新"
 
@@ -32960,9 +33736,9 @@ msgstr "最終更新"
 msgid "Copy to clipboard"
 msgstr "クリップボードへコピー"
 
-#: ../../extensions/files_repo/files_repo_list.php:164
-#: ../../include/functions_reporting_html.php:2225
-#: ../../include/functions_reporting_html.php:2229
+#: ../../extensions/files_repo/files_repo_list.php:167
+#: ../../include/functions_reporting_html.php:2314
+#: ../../include/functions_reporting_html.php:2318
 msgid "No items"
 msgstr "アイテムがありません。"
 
@@ -32990,18 +33766,18 @@ msgstr "エージェントグループとモジュールグループの一覧"
 msgid "Search by agent group"
 msgstr "エージェントグループでの検索"
 
-#: ../../extensions/module_groups.php:279
+#: ../../extensions/module_groups.php:288
 msgid "Search by module group"
 msgstr "モジュールグループでの検索"
 
-#: ../../extensions/module_groups.php:392
+#: ../../extensions/module_groups.php:455
 msgid ""
 "Orange cell when the module group and agent have at least one alarm fired."
 msgstr ""
 "モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが"
 "発生している時にオレンジになります。"
 
-#: ../../extensions/module_groups.php:393
+#: ../../extensions/module_groups.php:456
 msgid ""
 "Red cell when the module group and agent have at least one module in critical "
 "status and the others in any status"
@@ -33009,7 +33785,7 @@ msgstr ""
 "モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の"
 "時に赤になります。"
 
-#: ../../extensions/module_groups.php:394
+#: ../../extensions/module_groups.php:457
 msgid ""
 "Yellow cell when the module group and agent have at least one in warning "
 "status and the others in grey or green status"
@@ -33017,7 +33793,7 @@ msgstr ""
 "モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態"
 "で、その他のモジュールが不明か正常状態の時にに黄色なります。"
 
-#: ../../extensions/module_groups.php:395
+#: ../../extensions/module_groups.php:458
 msgid ""
 "Grey cell when the module group and agent have at least one in unknown status "
 "and the others in green status"
@@ -33025,18 +33801,18 @@ msgstr ""
 "モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態"
 "で、その他のモジュールが正常状態の時にグレーになります。"
 
-#: ../../extensions/module_groups.php:396
+#: ../../extensions/module_groups.php:459
 msgid "Green cell when the module group and agent have all modules in OK status"
 msgstr ""
 "モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑にな"
 "ります。"
 
-#: ../../extensions/module_groups.php:397
+#: ../../extensions/module_groups.php:460
 msgid ""
 "Blue cell when the module group and agent have all modules in not init status."
 msgstr "青のセルは、全モジュールが未初期化状態であることを示します。"
 
-#: ../../extensions/module_groups.php:401
+#: ../../extensions/module_groups.php:466
 msgid ""
 "This table shows in columns the modules group and in rows agents group. The "
 "cell shows all modules"
@@ -33044,36 +33820,16 @@ msgstr ""
 "列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モ"
 "ジュールの状態を表示しています。"
 
-#: ../../extensions/module_groups.php:402
+#: ../../extensions/module_groups.php:467
 msgid "There are no defined groups or module groups"
 msgstr "定義済のグループまたはモジュールグループがありません。"
 
-#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:113
-#: ../../godmode/reporting/reporting_builder.item_editor.php:86
-#: ../../include/lib/Dashboard/Widgets/tree_view.php:330
-#: ../../operation/tree.php:102
-msgid "Module groups"
-msgstr "モジュールグループ"
-
-#: ../../extensions/insert_data.php:58
-msgid "Insert data"
+#: ../../extensions/insert_data.php:75 ../../extensions/insert_data.php:88
+#: ../../extensions/insert_data.php:328
+msgid "Insert Data"
 msgstr "データの挿入"
 
-#: ../../extensions/insert_data.php:89
-msgid "You haven't privileges for insert data in the agent."
-msgstr "エージェントにデータを挿入する権限がありません。"
-
-#: ../../extensions/insert_data.php:125
-#, php-format
-msgid "Can't save agent (%s), module (%s) data xml."
-msgstr "エージェント(%s)、モジュール(%s) のデータを保存できません。"
-
-#: ../../extensions/insert_data.php:134
-#, php-format
-msgid "Save agent (%s), module (%s) data xml."
-msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。"
-
-#: ../../extensions/insert_data.php:145
+#: ../../extensions/insert_data.php:122
 #, php-format
 msgid ""
 "Please check that the directory \"%s\" is writeable by the apache user. 

CSV ファイルフォーマットは、date;value<newline>date;value<" "newline>... です。CSV 内の日時フォーマットは Y/m/d H:i:s です。" -#: ../../extensions/insert_data.php:273 -msgid "Insert Data" -msgstr "データの挿入" +#: ../../extensions/insert_data.php:129 +msgid "You haven't privileges for insert data in the agent." +msgstr "エージェントにデータを挿入する権限がありません。" + +#: ../../extensions/insert_data.php:165 +#, php-format +msgid "Can't save agent (%s), module (%s) data xml." +msgstr "エージェント(%s)、モジュール(%s) のデータを保存できません。" + +#: ../../extensions/insert_data.php:174 +#, php-format +msgid "Save agent (%s), module (%s) data xml." +msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。" #: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:268 +#: ../../extensions/realtime_graphs.php:295 msgid "Realtime graphs" msgstr "リアルタイムグラフ" -#: ../../extensions/realtime_graphs.php:134 +#: ../../extensions/realtime_graphs.php:84 #, php-format msgid "%s Server CPU" msgstr "%s サーバ CPU" -#: ../../extensions/realtime_graphs.php:136 +#: ../../extensions/realtime_graphs.php:86 #, php-format msgid "Pending packages from %s Server" msgstr "%s サーバの保留中 XML 処理" -#: ../../extensions/realtime_graphs.php:140 +#: ../../extensions/realtime_graphs.php:90 #, php-format msgid "%s Server Disk IO Wait" msgstr "%s サーバディスク IO ウエイト" -#: ../../extensions/realtime_graphs.php:144 +#: ../../extensions/realtime_graphs.php:94 #, php-format msgid "%s Server Apache load" msgstr "%s サーバ Apache 負荷" -#: ../../extensions/realtime_graphs.php:148 +#: ../../extensions/realtime_graphs.php:98 #, php-format msgid "%s Server MySQL load" msgstr "%s サーバ MySQL 負荷" -#: ../../extensions/realtime_graphs.php:152 +#: ../../extensions/realtime_graphs.php:102 #, php-format msgid "%s Server load" msgstr "%s サーバ負荷" -#: ../../extensions/realtime_graphs.php:155 +#: ../../extensions/realtime_graphs.php:105 msgid "SNMP Interface throughput" msgstr "SNMP インタフェーススループット" -#: ../../extensions/realtime_graphs.php:206 +#: ../../extensions/realtime_graphs.php:163 msgid "Refresh interval" msgstr "更新間隔" -#: ../../extensions/realtime_graphs.php:217 +#: ../../extensions/realtime_graphs.php:182 #: ../../godmode/modules/manage_network_components_form_wizard.php:135 msgid "Incremental" msgstr "インクリメンタル" -#: ../../extensions/realtime_graphs.php:222 +#: ../../extensions/realtime_graphs.php:203 msgid "Clear graph" msgstr "グラフをクリア" -#: ../../extensions/realtime_graphs.php:249 -#: ../../godmode/agentes/module_manager_editor_network.php:43 +#: ../../extensions/realtime_graphs.php:276 +#: ../../godmode/agentes/module_manager_editor_network.php:44 msgid "Use this OID" msgstr "この OID を利用" -#: ../../extensions/users_connected.php:37 -#: ../../extensions/users_connected.php:209 +#: ../../extensions/users_connected.php:55 +msgid "List of users connected" +msgstr "接続ユーザ一覧" + +#: ../../extensions/users_connected.php:64 +#: ../../operation/users/user_edit_header.php:125 +#: ../../operation/messages/message_list.php:82 +#: ../../operation/messages/message_edit.php:94 ../../operation/menu.php:634 +msgid "Workspace" +msgstr "ワークスペース" + +#: ../../extensions/users_connected.php:68 +#: ../../extensions/users_connected.php:243 msgid "Users connected" msgstr "接続ユーザ" -#: ../../extensions/users_connected.php:42 +#: ../../extensions/users_connected.php:76 msgid "This user does not have any associated profile" msgstr "このユーザに関連付けられたプロファイルがありません" -#: ../../extensions/users_connected.php:132 +#: ../../extensions/users_connected.php:166 msgid "No other users connected" msgstr "他のユーザは接続していません" -#: ../../extensions/users_connected.php:145 +#: ../../extensions/users_connected.php:179 msgid "Last login" msgstr "最終ログイン" -#: ../../godmode/modules/manage_nc_groups_form.php:54 +#: ../../godmode/modules/manage_nc_groups_form.php:62 msgid "Update Group Component" msgstr "グループコンポーネント更新" -#: ../../godmode/modules/manage_nc_groups_form.php:56 +#: ../../godmode/modules/manage_nc_groups_form.php:62 msgid "Create Group Component" msgstr "グループコンポーネント作成" @@ -33224,11 +34001,11 @@ msgstr "このプロファイルにはモジュールがありません。" msgid "Add modules" msgstr "モジュール追加" -#: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_nc_groups.php:53 msgid "Component group management" msgstr "コンポーネントグループ管理" -#: ../../godmode/modules/manage_nc_groups.php:293 +#: ../../godmode/modules/manage_nc_groups.php:322 #, php-format msgid "" "This node is configured with centralized mode. Component groups are read only. " @@ -33237,52 +34014,52 @@ msgstr "" "このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り" "専用です。管理は %s にて行います。" -#: ../../godmode/modules/manage_nc_groups.php:311 +#: ../../godmode/modules/manage_nc_groups.php:334 msgid "There are no defined component groups" msgstr "定義済のコンポーネントグループがありません" -#: ../../godmode/modules/manage_inventory_modules.php:40 +#: ../../godmode/modules/manage_inventory_modules.php:39 msgid "To manage inventory plugin you must activate centralized management" msgstr "インベントリプラグインを管理するには、中央管理を有効化する必要があります" -#: ../../godmode/modules/manage_inventory_modules.php:121 +#: ../../godmode/modules/manage_inventory_modules.php:132 msgid "Successfully created inventory module" msgstr "インベントリモジュールを作成しました" -#: ../../godmode/modules/manage_inventory_modules.php:122 +#: ../../godmode/modules/manage_inventory_modules.php:133 msgid "Error creating inventory module" msgstr "インベントリモジュールの作成エラー" -#: ../../godmode/modules/manage_inventory_modules.php:168 -#: ../../godmode/modules/manage_inventory_modules.php:189 +#: ../../godmode/modules/manage_inventory_modules.php:179 +#: ../../godmode/modules/manage_inventory_modules.php:200 #: ../../godmode/agentes/inventory_manager.php:100 msgid "Successfully deleted inventory module" msgstr "インベントリモジュールを削除しました" -#: ../../godmode/modules/manage_inventory_modules.php:169 -#: ../../godmode/modules/manage_inventory_modules.php:190 +#: ../../godmode/modules/manage_inventory_modules.php:180 +#: ../../godmode/modules/manage_inventory_modules.php:201 #: ../../godmode/agentes/inventory_manager.php:102 msgid "Error deleting inventory module" msgstr "インベントリモジュールの削除エラー" -#: ../../godmode/modules/manage_inventory_modules.php:281 -#: ../../godmode/modules/manage_inventory_modules_form.php:118 +#: ../../godmode/modules/manage_inventory_modules.php:292 +#: ../../godmode/modules/manage_inventory_modules_form.php:153 msgid "Interpreter" msgstr "処理系" -#: ../../godmode/modules/manage_inventory_modules.php:290 +#: ../../godmode/modules/manage_inventory_modules.php:302 msgid "No inventory modules defined" msgstr "インベントリモジュールがありません" -#: ../../godmode/modules/manage_inventory_modules.php:311 +#: ../../godmode/modules/manage_inventory_modules.php:329 msgid "Local module" msgstr "ローカルモジュール" -#: ../../godmode/modules/manage_inventory_modules.php:313 +#: ../../godmode/modules/manage_inventory_modules.php:331 msgid "Remote/Local" msgstr "リモート/ローカル" -#: ../../godmode/modules/manage_inventory_modules.php:359 +#: ../../godmode/modules/manage_inventory_modules.php:410 msgid "" "The configurations of inventory modules from the nodes have been unified.\n" "\t\tFrom this point on, changes to the inventory scripts must be made through " @@ -33291,12 +34068,12 @@ msgstr "" "ノードからのインベントリモジュールの設定が統合されました。\n" "\t\tこれ以降、インベントリスクリプトへの変更はこの画面から行う必要があります。" -#: ../../godmode/modules/manage_inventory_modules.php:361 +#: ../../godmode/modules/manage_inventory_modules.php:412 msgid "You can find more information at:" msgstr "詳細については次を参照してください:" #: ../../godmode/modules/manage_network_components_form_common.php:723 -#: ../../godmode/agentes/module_manager_editor_common.php:2014 +#: ../../godmode/agentes/module_manager_editor_common.php:2270 msgid "Please introduce a positive percentage value" msgstr "正のパーセント値を設定してください" @@ -33310,9 +34087,9 @@ msgid "Name OID" msgstr "OID 名" #: ../../godmode/modules/manage_network_components_form_wmi.php:41 -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 -#: ../../include/class/CredentialStore.class.php:1033 -#: ../../include/class/CredentialStore.class.php:1369 +#: ../../godmode/agentes/module_manager_editor_wmi.php:106 +#: ../../include/class/CredentialStore.class.php:1009 +#: ../../include/class/CredentialStore.class.php:1347 msgid "Namespace" msgstr "名前空間" @@ -33324,11 +34101,11 @@ msgstr "ネットワークコンポーネント更新" msgid "Create Network Component" msgstr "ネットワークコンポーネント作成" -#: ../../godmode/modules/manage_network_components.php:291 +#: ../../godmode/modules/manage_network_components.php:289 msgid "Remote component management" msgstr "リモートコンポーネント管理" -#: ../../godmode/modules/manage_network_components.php:314 +#: ../../godmode/modules/manage_network_components.php:321 #, php-format msgid "" "This node is configured with centralized mode. All remote components are read " @@ -33337,54 +34114,35 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは" "読み取り専用です。 それらを管理するには、%s に移動します。" -#: ../../godmode/modules/manage_network_components.php:426 +#: ../../godmode/modules/manage_network_components.php:433 msgid "Could not be created because the component exists" msgstr "コンポーネントが存在するため、作成できませんでした" -#: ../../godmode/modules/manage_network_components.php:663 +#: ../../godmode/modules/manage_network_components.php:686 msgid "Search by name, description, tcp send or tcp rcv, list matches." msgstr "名前、説明、tcp送受信による検索にマッチした一覧を表示" -#: ../../godmode/modules/manage_network_components.php:756 +#: ../../godmode/modules/manage_network_components.php:779 msgid "Max/Min" msgstr "最大/最小" -#: ../../godmode/modules/manage_network_components.php:807 -#: ../../include/class/ModuleTemplates.class.php:1235 -msgid "Network module" -msgstr "ネットワークモジュール" - -#: ../../godmode/modules/manage_network_components.php:818 -#: ../../include/class/ModuleTemplates.class.php:1246 -msgid "WMI module" -msgstr "WMIモジュール" - -#: ../../godmode/modules/manage_network_components.php:829 -#: ../../include/class/ModuleTemplates.class.php:1257 -msgid "Plug-in module" -msgstr "プラグインモジュール" - -#: ../../godmode/modules/manage_network_components.php:840 -msgid "Wizard module" -msgstr "ウィザードモジュール" - -#: ../../godmode/modules/manage_network_components.php:913 +#: ../../godmode/modules/manage_network_components.php:888 msgid "There are no defined network components" msgstr "定義済のネットワークコンポーネントがありません" -#: ../../godmode/modules/manage_network_components.php:924 +#: ../../godmode/modules/manage_network_components.php:921 msgid "Create a new network component" msgstr "ネットワークコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:925 +#: ../../godmode/modules/manage_network_components.php:922 msgid "Create a new plugin component" msgstr "プラグインコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:926 +#: ../../godmode/modules/manage_network_components.php:923 msgid "Create a new WMI component" msgstr "WMIコンポーネントを新規作成する。" -#: ../../godmode/modules/manage_network_components.php:927 +#: ../../godmode/modules/manage_network_components.php:924 msgid "Create a new wizard component" msgstr "ウィザードコンポーネントを新規作成する。" @@ -33437,7 +34195,7 @@ msgid "Scan Type" msgstr "スキャンタイプ" #: ../../godmode/modules/manage_network_components_form_wizard.php:478 -#: ../../godmode/agentes/planned_downtime.list.php:359 +#: ../../godmode/agentes/planned_downtime.list.php:405 msgid "Execution type" msgstr "実行タイプ" @@ -33484,51 +34242,48 @@ msgstr "クエリフィルタ" msgid "Field value" msgstr "フィールド値" -#: ../../godmode/modules/manage_inventory_modules_form.php:75 +#: ../../godmode/modules/manage_inventory_modules_form.php:84 #: ../../godmode/agentes/inventory_manager.php:165 msgid "Inventory module error" msgstr "インベントリモジュールエラー" -#: ../../godmode/modules/manage_inventory_modules_form.php:120 +#: ../../godmode/modules/manage_inventory_modules_form.php:162 msgid "Left blank for the LOCAL inventory modules" msgstr "ローカルインベントリモジュールの場合は入力しないでください" -#: ../../godmode/modules/manage_inventory_modules_form.php:122 -msgid "Block Mode" -msgstr "ブロックモード" - -#: ../../godmode/modules/manage_inventory_modules_form.php:125 +#: ../../godmode/modules/manage_inventory_modules_form.php:168 #: ../../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 -#: ../../include/class/ModuleTemplates.class.php:1209 +#: ../../include/class/ModuleTemplates.class.php:1184 msgid "Format" msgstr "フォーマット" -#: ../../godmode/modules/manage_inventory_modules_form.php:126 +#: ../../godmode/modules/manage_inventory_modules_form.php:177 msgid "separate fields with " msgstr "フィールドセパレータは、 " -#: ../../godmode/modules/manage_inventory_modules_form.php:129 +#: ../../godmode/modules/manage_inventory_modules_form.php:183 +msgid "Block Mode" +msgstr "ブロックモード" + +#: ../../godmode/modules/manage_inventory_modules_form.php:193 +#: ../../godmode/modules/manage_inventory_modules_form.php:197 msgid "Script mode" msgstr "スクリプトモード" -#: ../../godmode/modules/manage_inventory_modules_form.php:131 -msgid "Use script" -msgstr "スクリプトの利用" - -#: ../../godmode/modules/manage_inventory_modules_form.php:139 +#: ../../godmode/modules/manage_inventory_modules_form.php:194 msgid "Use inline code" msgstr "インラインコードの利用" -#: ../../godmode/modules/manage_inventory_modules_form.php:151 -#: ../../include/ajax/double_auth.ajax.php:149 -#: ../../include/ajax/double_auth.ajax.php:292 +#: ../../godmode/modules/manage_inventory_modules_form.php:223 +#: ../../include/ajax/double_auth.ajax.php:167 +#: ../../include/ajax/double_auth.ajax.php:307 msgid "Code" msgstr "コード" -#: ../../godmode/modules/manage_inventory_modules_form.php:152 +#: ../../godmode/modules/manage_inventory_modules_form.php:232 msgid "" "Here is placed the script for the REMOTE inventory modules Local inventory " "modules don't use this field" @@ -33536,15 +34291,19 @@ msgstr "" "リモートインベントリモジュールのスクリプトを入力します。ローカルインベントリモ" "ジュールではこのフィールドは使いません。" -#: ../../godmode/modules/module_list.php:29 -msgid "Defined modules" -msgstr "定義済みモジュール" +#: ../../godmode/modules/module_list.php:45 +msgid "Defined module types" +msgstr "定義済みモジュールタイプ" -#: ../../godmode/modules/module_list.php:51 +#: ../../godmode/modules/module_list.php:58 ../../godmode/menu.php:113 +msgid "Module types" +msgstr "モジュールタイプ" + +#: ../../godmode/modules/module_list.php:84 msgid "Problem modifying module" msgstr "モジュールの更新に失敗しました。" -#: ../../godmode/modules/module_list.php:53 +#: ../../godmode/modules/module_list.php:86 msgid "Module updated successfully" msgstr "モジュールを更新しました。" @@ -33576,12 +34335,12 @@ msgstr "データ保持日数(未圧縮)" msgid "Max. time before purge" msgstr "データ保持日数" -#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:231 +#: ../../godmode/db/db_main.php:98 ../../include/class/Diagnostics.class.php:239 msgid "Database size stats" msgstr "データベースサイズ" -#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:570 -#: ../../include/functions_reporting.php:14550 +#: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:603 +#: ../../include/functions_reporting.php:14740 msgid "Total events" msgstr "イベント数" @@ -33632,99 +34391,82 @@ msgstr "" "いることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データ" "ベースを最新の状態に保つことが非常に重要です。" -#: ../../godmode/groups/configure_group.php:87 -#: ../../godmode/groups/configure_modu_group.php:49 -msgid "There was a problem loading group" -msgstr "グループの読み込みに失敗しました。" - -#: ../../godmode/groups/configure_group.php:106 +#: ../../godmode/groups/configure_group.php:95 msgid "Update group" msgstr "グループ情報の更新" -#: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:986 +#: ../../godmode/groups/configure_group.php:95 +#: ../../godmode/groups/group_list.php:1006 msgid "Create group" msgstr "グループの作成" -#: ../../godmode/groups/configure_group.php:126 -#: ../../godmode/groups/group_list.php:389 +#: ../../godmode/groups/configure_group.php:112 +#: ../../godmode/groups/group_list.php:381 msgid "Manage agents group" msgstr "エージェントグループ管理" -#: ../../godmode/groups/configure_group.php:138 -msgid "Update Group" -msgstr "グループの更新" - -#: ../../godmode/groups/configure_group.php:140 -msgid "Create Group" -msgstr "グループの作成" - -#: ../../godmode/groups/configure_group.php:178 +#: ../../godmode/groups/configure_group.php:160 msgid "You have not access to the parent." msgstr "親へアクセスできません" -#: ../../godmode/groups/configure_group.php:226 +#: ../../godmode/groups/configure_group.php:218 msgid "Group Password" msgstr "グループパスワード" -#: ../../godmode/groups/configure_group.php:230 +#: ../../godmode/groups/configure_group.php:224 msgid "Enable alert use in this group." msgstr "このグループでアラート利用を有効化" -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:229 msgid "Propagate ACL" msgstr "ACL の伝播" -#: ../../godmode/groups/configure_group.php:234 +#: ../../godmode/groups/configure_group.php:229 msgid "Propagate the same ACL security into the child subgroups." msgstr "子のサブグループへ同じ ACL を適用します。" -#: ../../godmode/groups/configure_group.php:246 -#: ../../include/functions_events.php:4855 +#: ../../godmode/groups/configure_group.php:244 +#: ../../include/functions_events.php:5068 msgid "Contact" msgstr "連絡先" -#: ../../godmode/groups/configure_group.php:246 +#: ../../godmode/groups/configure_group.php:244 msgid "Contact information accessible through the _groupcontact_ macro" msgstr "_groupcontact_ マクロで参照可能な連絡先情報" -#: ../../godmode/groups/configure_group.php:250 +#: ../../godmode/groups/configure_group.php:249 msgid "Information accessible through the _group_other_ macro" msgstr "_group_other_ マクロで参照可能な情報" -#: ../../godmode/groups/configure_group.php:259 +#: ../../godmode/groups/configure_group.php:254 msgid "Max agents allowed" msgstr "最大エージェント数" -#: ../../godmode/groups/configure_group.php:259 +#: ../../godmode/groups/configure_group.php:254 msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "このグループの最大エージェント数を設定します。0 は無制限です。" -#: ../../godmode/groups/group_list.php:314 +#: ../../godmode/groups/group_list.php:312 msgid "Tree Group view" msgstr "グループツリー表示" -#: ../../godmode/groups/group_list.php:338 +#: ../../godmode/groups/group_list.php:336 msgid "Credential Store" msgstr "認証情報ストア" -#: ../../godmode/groups/group_list.php:344 +#: ../../godmode/groups/group_list.php:342 #, php-format msgid "Groups defined in %s" msgstr "%s に定義済のグループ" -#: ../../godmode/groups/group_list.php:354 -#: ../../godmode/agentes/module_manager_editor_network.php:164 -#: ../../godmode/menu.php:223 ../../include/class/AgentWizard.class.php:722 -#: ../../include/class/AgentWizard.class.php:778 +#: ../../godmode/groups/group_list.php:352 +#: ../../godmode/agentes/module_manager_editor_network.php:172 +#: ../../godmode/menu.php:226 ../../include/class/AgentWizard.class.php:723 +#: ../../include/class/AgentWizard.class.php:779 msgid "Credential store" msgstr "認証情報ストア" -#: ../../godmode/groups/group_list.php:370 -msgid "Edit or delete groups can cause problems with synchronization" -msgstr "グループの編集や削除は、同期で問題が発生する可能性があります。" - -#: ../../godmode/groups/group_list.php:408 +#: ../../godmode/groups/group_list.php:400 #, php-format msgid "" "This node is configured with centralized mode. All groups information is read " @@ -33733,60 +34475,60 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専" "用です。管理するには %s に移動します。" -#: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/modu_group_list.php:119 +#: ../../godmode/groups/group_list.php:465 +#: ../../godmode/groups/modu_group_list.php:129 msgid "Group successfully created" msgstr "グループを作成しました。" -#: ../../godmode/groups/group_list.php:475 -#: ../../godmode/groups/modu_group_list.php:122 +#: ../../godmode/groups/group_list.php:467 +#: ../../godmode/groups/modu_group_list.php:132 msgid "There was a problem creating group" msgstr "グループの作成に失敗しました。" -#: ../../godmode/groups/group_list.php:478 -#: ../../godmode/groups/group_list.php:550 +#: ../../godmode/groups/group_list.php:470 +#: ../../godmode/groups/group_list.php:542 msgid "Each group must have a different name" msgstr "各グループは異なる名前でなければいけません" -#: ../../godmode/groups/group_list.php:481 -#: ../../godmode/groups/group_list.php:553 +#: ../../godmode/groups/group_list.php:473 +#: ../../godmode/groups/group_list.php:545 msgid "Group must have a name" msgstr "グループには名前が必要です" -#: ../../godmode/groups/group_list.php:545 -#: ../../godmode/groups/modu_group_list.php:155 +#: ../../godmode/groups/group_list.php:537 +#: ../../godmode/groups/modu_group_list.php:165 msgid "Group successfully updated" msgstr "グループを更新しました。" -#: ../../godmode/groups/group_list.php:547 -#: ../../godmode/groups/modu_group_list.php:158 +#: ../../godmode/groups/group_list.php:539 +#: ../../godmode/groups/modu_group_list.php:168 msgid "There was a problem modifying group" msgstr "グループの更新に失敗しました。" -#: ../../godmode/groups/group_list.php:610 +#: ../../godmode/groups/group_list.php:602 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "グループ %s はノードが空ではないため、削除できませんでした" -#: ../../godmode/groups/group_list.php:684 +#: ../../godmode/groups/group_list.php:676 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" msgstr "" "ノードデータベースのエラーのため、グループはメタコンソールで削除されていません" -#: ../../godmode/groups/group_list.php:693 +#: ../../godmode/groups/group_list.php:685 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "グループ %s をノードで削除しました" #: ../../godmode/groups/group_list.php:725 -#: ../../godmode/groups/modu_group_list.php:229 +#: ../../godmode/groups/modu_group_list.php:238 msgid "Group successfully deleted" msgstr "グループを削除しました。" #: ../../godmode/groups/group_list.php:728 -#: ../../godmode/groups/modu_group_list.php:227 +#: ../../godmode/groups/modu_group_list.php:239 msgid "There was a problem deleting group" msgstr "グループの削除に失敗しました。" @@ -33795,30 +34537,37 @@ msgstr "グループの削除に失敗しました。" msgid "The group is not empty. It is use in %s." msgstr "グループが空ではありません。%s で利用されています。" -#: ../../godmode/groups/group_list.php:780 -#: ../../godmode/groups/group_list.php:974 +#: ../../godmode/groups/group_list.php:774 +#: ../../godmode/groups/group_list.php:994 msgid "There are no defined groups" msgstr "グループが定義されていません" -#: ../../godmode/groups/group_list.php:929 +#: ../../godmode/groups/group_list.php:832 +msgid "Edit or delete groups can cause problems with synchronization" +msgstr "グループの編集や削除は、同期で問題が発生する可能性があります。" + +#: ../../godmode/groups/group_list.php:958 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "よろしいですか? このグループはすべてのノードで削除されます。" -#: ../../godmode/groups/group_list.php:935 +#: ../../godmode/groups/group_list.php:964 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます" -#: ../../godmode/groups/configure_modu_group.php:31 +#: ../../godmode/groups/configure_modu_group.php:30 msgid "Module group management" msgstr "モジュールグループ管理" -#: ../../godmode/groups/modu_group_list.php:70 -#, php-format -msgid "Module groups defined in %s" -msgstr "%s に定義済のモジュールグループ" +#: ../../godmode/groups/configure_modu_group.php:65 +msgid "There was a problem loading group" +msgstr "グループの読み込みに失敗しました。" -#: ../../godmode/groups/modu_group_list.php:92 +#: ../../godmode/groups/modu_group_list.php:70 +msgid "Module groups list" +msgstr "モジュールグループ一覧" + +#: ../../godmode/groups/modu_group_list.php:102 #, php-format msgid "" "This node is configured with centralized mode. All module groups information " @@ -33827,57 +34576,79 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は" "読み取り専用です。管理するには %s に移動します。" -#: ../../godmode/groups/modu_group_list.php:127 -#: ../../godmode/groups/modu_group_list.php:163 +#: ../../godmode/groups/modu_group_list.php:137 +#: ../../godmode/groups/modu_group_list.php:173 msgid "Each module group must have a different name" msgstr "各モジュールグループは、異なる名前でなければいけません。" -#: ../../godmode/groups/modu_group_list.php:131 -#: ../../godmode/groups/modu_group_list.php:167 +#: ../../godmode/groups/modu_group_list.php:141 +#: ../../godmode/groups/modu_group_list.php:177 msgid "Module group must have a name" msgstr "モジュールグループには名前が必要です" -#: ../../godmode/groups/modu_group_list.php:294 +#: ../../godmode/groups/modu_group_list.php:304 msgid "There are no defined module groups" msgstr "定義済のモジュールグループがありません" -#: ../../godmode/groups/modu_group_list.php:303 +#: ../../godmode/groups/modu_group_list.php:313 msgid "Create module group" msgstr "モジュールグループの作成" -#: ../../godmode/extensions.php:28 +#: ../../godmode/groups/tactical.php:75 +msgid "Tactical group view" +msgstr "グループ概要表示" + +#: ../../godmode/groups/tactical.php:115 +msgid "Distribution by os" +msgstr "OS ディストリビューション" + +#: ../../godmode/groups/tactical.php:146 +#: ../../include/functions_reporting_html.php:1204 +#: ../../include/functions_reporting_html.php:1419 +msgid "Events by agent" +msgstr "エージェントで分類したイベント" + +#: ../../godmode/groups/tactical.php:155 +msgid "Alerts and events" +msgstr "アラートとイベント" + +#: ../../godmode/groups/tactical.php:182 +msgid "Ultimo contacto remoto" +msgstr "" + +#: ../../godmode/extensions.php:46 msgid "Defined extensions" msgstr "定義されている拡張" -#: ../../godmode/extensions.php:33 +#: ../../godmode/extensions.php:54 msgid "There are no extensions defined" msgstr "「拡張」が定義されていません。" -#: ../../godmode/extensions.php:141 +#: ../../godmode/extensions.php:162 msgid "Godmode Function" msgstr "システム管理機能" -#: ../../godmode/extensions.php:142 +#: ../../godmode/extensions.php:163 msgid "Godmode Menu" msgstr "システム管理メニュー" -#: ../../godmode/extensions.php:143 +#: ../../godmode/extensions.php:164 msgid "Operation Menu" msgstr "操作メニュー" -#: ../../godmode/extensions.php:144 +#: ../../godmode/extensions.php:165 msgid "Operation Function" msgstr "操作機能" -#: ../../godmode/extensions.php:145 +#: ../../godmode/extensions.php:166 msgid "Login Function" msgstr "ログイン機能" -#: ../../godmode/extensions.php:146 +#: ../../godmode/extensions.php:167 msgid "Agent operation tab" msgstr "エージェント操作タブ" -#: ../../godmode/extensions.php:147 +#: ../../godmode/extensions.php:168 msgid "Agent godmode tab" msgstr "エージェント管理タブ" @@ -33889,60 +34660,60 @@ msgstr "ワープアップデート URL" msgid "URL update manager" msgstr "アップデートマネージャ URL" -#: ../../godmode/update_manager/update_manager.setup.php:282 +#: ../../godmode/update_manager/update_manager.setup.php:284 msgid "Use secured Warp Update" msgstr "安全なワープアップデートを使用" -#: ../../godmode/update_manager/update_manager.setup.php:291 #: ../../godmode/update_manager/update_manager.setup.php:295 +#: ../../godmode/update_manager/update_manager.setup.php:299 msgid "Proxy server" msgstr "プロキシサーバ" -#: ../../godmode/update_manager/update_manager.setup.php:301 -#: ../../godmode/update_manager/update_manager.setup.php:305 +#: ../../godmode/update_manager/update_manager.setup.php:307 +#: ../../godmode/update_manager/update_manager.setup.php:311 msgid "Proxy port" msgstr "プロキシのポート番号" -#: ../../godmode/update_manager/update_manager.setup.php:311 -#: ../../godmode/update_manager/update_manager.setup.php:315 +#: ../../godmode/update_manager/update_manager.setup.php:319 +#: ../../godmode/update_manager/update_manager.setup.php:323 msgid "Proxy user" msgstr "プロキシのユーザ" -#: ../../godmode/update_manager/update_manager.setup.php:321 -#: ../../godmode/update_manager/update_manager.setup.php:325 +#: ../../godmode/update_manager/update_manager.setup.php:331 +#: ../../godmode/update_manager/update_manager.setup.php:335 msgid "Proxy password" msgstr "プロキシのパスワード" -#: ../../godmode/update_manager/update_manager.setup.php:331 +#: ../../godmode/update_manager/update_manager.setup.php:343 msgid "Allow no-consecutive patches" msgstr "不連続パッチを許可" -#: ../../godmode/update_manager/update_manager.setup.php:340 +#: ../../godmode/update_manager/update_manager.setup.php:354 msgid "Limit to LTS updates" msgstr "LTS アップデートに限定" -#: ../../godmode/update_manager/update_manager.setup.php:350 +#: ../../godmode/update_manager/update_manager.setup.php:365 msgid "Registration ID" msgstr "登録 ID" -#: ../../godmode/update_manager/update_manager.setup.php:351 +#: ../../godmode/update_manager/update_manager.setup.php:366 msgid "Not registred yet" msgstr "登録されていません" -#: ../../godmode/update_manager/update_manager.setup.php:354 -msgid "Cancel registration" -msgstr "登録のキャンセル" - -#: ../../godmode/update_manager/update_manager.setup.php:366 +#: ../../godmode/update_manager/update_manager.setup.php:381 msgid "Unregister" msgstr "登録解除" -#: ../../godmode/update_manager/update_manager.setup.php:371 +#: ../../godmode/update_manager/update_manager.setup.php:384 +msgid "Cancel registration" +msgstr "登録のキャンセル" + +#: ../../godmode/update_manager/update_manager.setup.php:393 #, php-format msgid "%s community reminder" msgstr "%s コミュニティリマインダ" -#: ../../godmode/update_manager/update_manager.setup.php:371 +#: ../../godmode/update_manager/update_manager.setup.php:393 #, php-format msgid "" "Every 8 days, a message is displayed to admin users to remember to register " @@ -33980,13 +34751,20 @@ msgstr "オンライン" msgid "Please register on metaconsole first." msgstr "先にメタコンソールで登録してください。" -#: ../../godmode/users/profile_list.php:84 -#: ../../godmode/users/configure_profile.php:76 -#, php-format -msgid "Profiles defined on %s" -msgstr "%s に定義済のプロファイル" +#: ../../godmode/users/profile_list.php:83 +#: ../../godmode/users/configure_profile.php:94 +msgid "User Profile management" +msgstr "ユーザプロファイル管理" -#: ../../godmode/users/profile_list.php:115 +#: ../../godmode/users/profile_list.php:96 +#: ../../godmode/users/configure_profile.php:90 +#: ../../godmode/users/configure_profile.php:389 +#: ../../godmode/users/user_list.php:301 +#: ../../godmode/users/configure_user.php:280 +msgid "Manage users" +msgstr "ユーザ管理" + +#: ../../godmode/users/profile_list.php:124 #, php-format msgid "" "This node is configured with centralized mode. All profiles information is " @@ -33995,192 +34773,273 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取" "り専用です。管理には %s に移動します。" -#: ../../godmode/users/profile_list.php:127 ../../godmode/users/user_list.php:401 +#: ../../godmode/users/profile_list.php:136 ../../godmode/users/user_list.php:412 msgid "There was a problem deleting the profile" msgstr "プロファイルの削除に失敗しました。" -#: ../../godmode/users/profile_list.php:254 +#: ../../godmode/users/profile_list.php:263 msgid "There was a problem updating this profile" msgstr "プロファイルの更新に失敗しました。" -#: ../../godmode/users/profile_list.php:257 +#: ../../godmode/users/profile_list.php:266 msgid "Profile name cannot be empty" msgstr "プロファイル名は空にできません" -#: ../../godmode/users/profile_list.php:303 -#: ../../godmode/users/profile_list.php:306 +#: ../../godmode/users/profile_list.php:312 +#: ../../godmode/users/profile_list.php:315 msgid "There was a problem creating this profile" msgstr "プロファイルの作成に失敗しました。" -#: ../../godmode/users/profile_list.php:456 -msgid "There are no defined profiles" -msgstr "定義済のプロファイルがありません" - -#: ../../godmode/users/configure_profile.php:142 -msgid "Create profile" -msgstr "プロファイル作成" - -#: ../../godmode/users/configure_profile.php:147 -msgid "There was a problem loading profile" -msgstr "プロファイルの読み込みに失敗しました。" - -#: ../../godmode/users/configure_profile.php:239 -msgid "Update profile" -msgstr "プロファイルを更新しました。" - -#: ../../godmode/users/configure_profile.php:249 -msgid "Update Profile" -msgstr "プロファイル更新" - -#: ../../godmode/users/configure_profile.php:251 -msgid "Create Profile" -msgstr "プロファイル作成" - -#: ../../godmode/users/configure_profile.php:272 -msgid "View agents" +#: ../../godmode/users/profile_list.php:334 +msgid "View Agents" msgstr "エージェント参照" -#: ../../godmode/users/configure_profile.php:276 -msgid "Disable agents" -msgstr "エージェント無効化" - -#: ../../godmode/users/configure_profile.php:280 -msgid "Edit agents" +#: ../../godmode/users/profile_list.php:335 +msgid "Edit Agents" msgstr "エージェント編集" -#: ../../godmode/users/configure_profile.php:287 -msgid "Edit alerts" +#: ../../godmode/users/profile_list.php:336 +msgid "Disable Agents" +msgstr "エージェント無効化" + +#: ../../godmode/users/profile_list.php:337 +msgid "Edit Alerts" msgstr "アラート編集" -#: ../../godmode/users/configure_profile.php:302 -msgid "Edit events" +#: ../../godmode/users/profile_list.php:338 +msgid "Manage Alerts" +msgstr "アラート管理" + +#: ../../godmode/users/profile_list.php:340 +msgid "Database Management" +msgstr "データベース管理" + +#: ../../godmode/users/profile_list.php:341 +#: ../../include/class/OrderInterpreter.class.php:195 +msgid "View Events" +msgstr "イベント表示" + +#: ../../godmode/users/profile_list.php:342 +msgid "Edit Events" msgstr "イベント編集" -#: ../../godmode/users/configure_profile.php:306 -#: ../../godmode/events/events.php:133 ../../operation/events/events.php:1495 -msgid "Manage events" +#: ../../godmode/users/profile_list.php:343 +msgid "Manage Events" msgstr "イベント管理" -#: ../../godmode/users/configure_profile.php:313 -msgid "View reports" +#: ../../godmode/users/profile_list.php:344 +msgid "View Reports" msgstr "レポート表示" -#: ../../godmode/users/configure_profile.php:317 -msgid "Edit reports" +#: ../../godmode/users/profile_list.php:345 +msgid "Edit Reports" msgstr "レポート編集" -#: ../../godmode/users/configure_profile.php:321 -msgid "Manage reports" +#: ../../godmode/users/profile_list.php:346 +msgid "Manage Reports" msgstr "レポート管理" -#: ../../godmode/users/configure_profile.php:328 -msgid "View network maps" +#: ../../godmode/users/profile_list.php:347 +msgid "View Network Maps" msgstr "ネットワークマップ参照" -#: ../../godmode/users/configure_profile.php:332 -msgid "Edit network maps" +#: ../../godmode/users/profile_list.php:348 +msgid "Edit Network Maps" msgstr "ネットワークマップ編集" -#: ../../godmode/users/configure_profile.php:336 -msgid "Manage network maps" +#: ../../godmode/users/profile_list.php:349 +msgid "Manage Network Maps" msgstr "ネットワークマップ管理" -#: ../../godmode/users/configure_profile.php:343 -#: ../../include/functions_menu.php:496 -msgid "View visual console" -msgstr "ビジュアルコンソール表示" +#: ../../godmode/users/profile_list.php:350 +msgid "View Visual Consoles" +msgstr "ビジュアルコンソール参照" -#: ../../godmode/users/configure_profile.php:347 -msgid "Edit visual console" +#: ../../godmode/users/profile_list.php:351 +msgid "Edit Visual Consoles" msgstr "ビジュアルコンソール編集" -#: ../../godmode/users/configure_profile.php:351 -msgid "Manage visual console" +#: ../../godmode/users/profile_list.php:352 +msgid "Manage Visual Consoles" msgstr "ビジュアルコンソール管理" -#: ../../godmode/users/configure_profile.php:363 -msgid "View NCM data" -msgstr "NCM データ表示" +#: ../../godmode/users/profile_list.php:353 +msgid "View NCM Data" +msgstr "NCM データ参照" -#: ../../godmode/users/configure_profile.php:367 +#: ../../godmode/users/profile_list.php:354 +#: ../../godmode/users/configure_profile.php:378 msgid "Operate NCM" msgstr "NCM 操作" -#: ../../godmode/users/configure_profile.php:371 +#: ../../godmode/users/profile_list.php:355 +#: ../../godmode/users/configure_profile.php:382 msgid "Manage NCM" msgstr "NCM 管理" -#: ../../godmode/users/configure_profile.php:378 -#: ../../godmode/users/configure_user.php:321 -msgid "Manage users" -msgstr "ユーザ管理" +#: ../../godmode/users/profile_list.php:356 +msgid "Pandora Administration" +msgstr "Pandora 管理" -#: ../../godmode/users/configure_profile.php:385 +#: ../../godmode/users/profile_list.php:473 +msgid "There are no defined profiles" +msgstr "定義済のプロファイルがありません" + +#: ../../godmode/users/profile_list.php:481 +#: ../../godmode/users/configure_profile.php:153 +#: ../../godmode/users/configure_profile.php:415 +msgid "Create profile" +msgstr "プロファイル作成" + +#: ../../godmode/users/configure_profile.php:77 +#, php-format +msgid "Edit profile %s" +msgstr "プロファイル編集 %s" + +#: ../../godmode/users/configure_profile.php:158 +msgid "There was a problem loading profile" +msgstr "プロファイルの読み込みに失敗しました。" + +#: ../../godmode/users/configure_profile.php:250 +msgid "Update profile" +msgstr "プロファイルを更新しました。" + +#: ../../godmode/users/configure_profile.php:260 +msgid "Update Profile" +msgstr "プロファイル更新" + +#: ../../godmode/users/configure_profile.php:262 +msgid "Create Profile" +msgstr "プロファイル作成" + +#: ../../godmode/users/configure_profile.php:283 +#: ../../operation/agentes/ver_agente.php:1938 +msgid "View agents" +msgstr "エージェント参照" + +#: ../../godmode/users/configure_profile.php:287 +msgid "Disable agents" +msgstr "エージェント無効化" + +#: ../../godmode/users/configure_profile.php:291 +msgid "Edit agents" +msgstr "エージェント編集" + +#: ../../godmode/users/configure_profile.php:298 +msgid "Edit alerts" +msgstr "アラート編集" + +#: ../../godmode/users/configure_profile.php:313 +msgid "Edit events" +msgstr "イベント編集" + +#: ../../godmode/users/configure_profile.php:317 +#: ../../operation/events/events.php:1545 +msgid "Manage events" +msgstr "イベント管理" + +#: ../../godmode/users/configure_profile.php:324 +msgid "View reports" +msgstr "レポート表示" + +#: ../../godmode/users/configure_profile.php:328 +msgid "Edit reports" +msgstr "レポート編集" + +#: ../../godmode/users/configure_profile.php:332 +msgid "Manage reports" +msgstr "レポート管理" + +#: ../../godmode/users/configure_profile.php:339 +msgid "View network maps" +msgstr "ネットワークマップ参照" + +#: ../../godmode/users/configure_profile.php:343 +msgid "Edit network maps" +msgstr "ネットワークマップ編集" + +#: ../../godmode/users/configure_profile.php:347 +msgid "Manage network maps" +msgstr "ネットワークマップ管理" + +#: ../../godmode/users/configure_profile.php:354 +#: ../../include/functions_menu.php:571 +msgid "View visual console" +msgstr "ビジュアルコンソール表示" + +#: ../../godmode/users/configure_profile.php:358 +msgid "Edit visual console" +msgstr "ビジュアルコンソール編集" + +#: ../../godmode/users/configure_profile.php:362 +msgid "Manage visual console" +msgstr "ビジュアルコンソール管理" + +#: ../../godmode/users/configure_profile.php:374 +msgid "View NCM data" +msgstr "NCM データ表示" + +#: ../../godmode/users/configure_profile.php:396 msgid "Manage database" msgstr "データベース管理" -#: ../../godmode/users/configure_profile.php:392 +#: ../../godmode/users/configure_profile.php:403 #, php-format msgid "%s management" msgstr "%s 管理" -#: ../../godmode/users/configure_profile.php:454 +#: ../../godmode/users/configure_profile.php:475 msgid "Profile name already on use, please, change the name before save" msgstr "プロファイルが既に存在します。保存する前に名前を変更してください。" -#: ../../godmode/users/user_list.php:289 -#, php-format -msgid "Users defined on %s" -msgstr "%s に定義済のユーザ" - -#: ../../godmode/users/user_list.php:338 -#: ../../godmode/users/configure_user.php:162 +#: ../../godmode/users/user_list.php:351 +#: ../../godmode/users/configure_user.php:115 #, php-format msgid "Deleted user %s" msgstr "ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:345 ../../godmode/users/user_list.php:389 -#: ../../godmode/users/configure_user.php:169 +#: ../../godmode/users/user_list.php:358 ../../godmode/users/user_list.php:400 +#: ../../godmode/users/configure_user.php:122 msgid "There was a problem deleting the user" msgstr "ユーザの削除に失敗しました。" -#: ../../godmode/users/user_list.php:363 -#: ../../godmode/users/configure_user.php:184 +#: ../../godmode/users/user_list.php:376 +#: ../../godmode/users/configure_user.php:137 #, php-format msgid "Deleted user %s from metaconsole" msgstr "メタコンソールから、ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:375 -#: ../../godmode/users/configure_user.php:196 +#: ../../godmode/users/user_list.php:388 +#: ../../godmode/users/configure_user.php:149 #, php-format msgid "Deleted user %s from %s" msgstr "ユーザ %s を %s から削除しました" -#: ../../godmode/users/user_list.php:381 -#: ../../godmode/users/configure_user.php:205 +#: ../../godmode/users/user_list.php:394 +#: ../../godmode/users/configure_user.php:158 #, php-format msgid "Successfully deleted from %s" msgstr "%s から削除しました" -#: ../../godmode/users/user_list.php:382 -#: ../../godmode/users/configure_user.php:206 +#: ../../godmode/users/user_list.php:395 +#: ../../godmode/users/configure_user.php:159 #, php-format msgid "There was a problem deleting the user from %s" msgstr "%s からのユーザ削除で問題が発生しました" -#: ../../godmode/users/user_list.php:392 +#: ../../godmode/users/user_list.php:403 msgid "ID user cannot be empty" msgstr "ユーザIDは空にできません" -#: ../../godmode/users/user_list.php:427 +#: ../../godmode/users/user_list.php:443 msgid "There was a problem disabling user" msgstr "ユーザの無効化で問題が発生しました" -#: ../../godmode/users/user_list.php:433 +#: ../../godmode/users/user_list.php:449 msgid "There was a problem enabling user" msgstr "ユーザの有効化で問題が発生しました" -#: ../../godmode/users/user_list.php:492 ../../operation/users/user_edit.php:261 +#: ../../godmode/users/user_list.php:544 ../../operation/users/user_edit.php:284 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -34189,23 +35048,23 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用" "です。管理には %s に移動します。" -#: ../../godmode/users/user_list.php:544 +#: ../../godmode/users/user_list.php:580 msgid "Profile / Group" msgstr "プロファイル / グループ" -#: ../../godmode/users/user_list.php:727 ../../operation/search_users.php:63 +#: ../../godmode/users/user_list.php:768 ../../operation/search_users.php:63 msgid "Administrator" msgstr "管理者" -#: ../../godmode/users/user_list.php:753 +#: ../../godmode/users/user_list.php:794 msgid "Show profiles" msgstr "ファイル表示" -#: ../../godmode/users/user_list.php:772 +#: ../../godmode/users/user_list.php:812 msgid "Other profiles are also assigned." msgstr "他のプロファイルも割り当てられています。" -#: ../../godmode/users/user_list.php:774 +#: ../../godmode/users/user_list.php:814 msgid "" "Other profiles you cannot manage are also assigned. These profiles are not " "shown. You cannot enable/disable or delete this user." @@ -34213,119 +35072,119 @@ msgstr "" "管理できない他のプロファイルも割り当てられています。これらのプロファイルは表示" "されていません。このユーザを有効/無効または削除することはできません。" -#: ../../godmode/users/user_list.php:783 -#: ../../include/functions_reporting.php:5036 -#: ../../include/functions_reporting.php:5083 ../../operation/search_users.php:87 +#: ../../godmode/users/user_list.php:823 +#: ../../include/functions_reporting.php:5140 +#: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "" "このユーザには、プロファイル/グループの組み合わせが何も割り当てられていません。" -#: ../../godmode/users/user_list.php:933 -#: ../../godmode/users/configure_user.php:308 +#: ../../godmode/users/user_list.php:935 +#: ../../operation/users/user_edit_header.php:129 +msgid "Edit user" +msgstr "ユーザ編集" + +#: ../../godmode/users/user_list.php:1032 msgid "Create user" msgstr "ユーザの作成" -#: ../../godmode/users/user_list.php:936 -#: ../../godmode/users/configure_user.php:397 +#: ../../godmode/users/user_list.php:1046 +#: ../../godmode/users/configure_user.php:357 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "現在の認証スキーマは、%s のユーザ作成に対応していません。" -#: ../../godmode/users/configure_user.php:308 -msgid "Update user" +#: ../../godmode/users/configure_user.php:267 +msgid "Update User" msgstr "ユーザ更新" -#: ../../godmode/users/configure_user.php:325 +#: ../../godmode/users/configure_user.php:267 +msgid "Create User" +msgstr "ユーザ作成" + +#: ../../godmode/users/configure_user.php:284 msgid "User Detail Editor" msgstr "ユーザ詳細の編集" -#: ../../godmode/users/configure_user.php:487 +#: ../../godmode/users/configure_user.php:449 msgid "User ID cannot be empty" msgstr "ユーザ ID は空に設定できません。" -#: ../../godmode/users/configure_user.php:494 +#: ../../godmode/users/configure_user.php:456 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "不正なユーザID: 先頭または末尾にスペースを含めることはできません" -#: ../../godmode/users/configure_user.php:502 +#: ../../godmode/users/configure_user.php:464 msgid "Passwords cannot be empty" msgstr "パスワードは空に設定できません。" -#: ../../godmode/users/configure_user.php:509 +#: ../../godmode/users/configure_user.php:471 msgid "Passwords didn't match" msgstr "パスワードが一致しません。" -#: ../../godmode/users/configure_user.php:516 +#: ../../godmode/users/configure_user.php:478 msgid "The password provided is not valid. Please set another one." msgstr "パスワードが正しくありません。別のものを設定してください。" -#: ../../godmode/users/configure_user.php:578 +#: ../../godmode/users/configure_user.php:540 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." msgstr "" "パフォーマンスに影響するため、管理者ユーザへの厳重な ACL 設定はお勧めしません。" -#: ../../godmode/users/configure_user.php:662 -#: ../../godmode/users/configure_user.php:998 +#: ../../godmode/users/configure_user.php:624 +#: ../../godmode/users/configure_user.php:963 msgid "Profile added successfully" msgstr "プロファイルを追加しました。" -#: ../../godmode/users/configure_user.php:663 -#: ../../godmode/users/configure_user.php:999 +#: ../../godmode/users/configure_user.php:625 +#: ../../godmode/users/configure_user.php:964 msgid "Profile cannot be added" msgstr "プロファイルの追加に失敗しました。" -#: ../../godmode/users/configure_user.php:790 -#: ../../godmode/users/configure_user.php:814 -#: ../../godmode/users/configure_user.php:888 -#: ../../godmode/users/configure_user.php:895 -#: ../../godmode/users/configure_user.php:927 -#: ../../operation/users/user_edit.php:193 -#: ../../operation/users/user_edit.php:239 +#: ../../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 +#: ../../operation/users/user_edit.php:216 +#: ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "ユーザ情報を更新しました。" -#: ../../godmode/users/configure_user.php:791 -#: ../../godmode/users/configure_user.php:815 -#: ../../godmode/users/configure_user.php:889 -#: ../../godmode/users/configure_user.php:896 -#: ../../godmode/users/configure_user.php:928 +#: ../../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 msgid "Error updating user info (no change?)" msgstr "ユーザ情報の更新に失敗しました。(変更なし?)" -#: ../../godmode/users/configure_user.php:820 +#: ../../godmode/users/configure_user.php:784 msgid "Password of the active user is required to perform password change" msgstr "パスワード変更を行うには、アクティブユーザのパスワードが必要です" -#: ../../godmode/users/configure_user.php:822 +#: ../../godmode/users/configure_user.php:786 msgid "Password of active user is not correct" msgstr "アクティブユーザのパスワードが正しくありません" -#: ../../godmode/users/configure_user.php:838 +#: ../../godmode/users/configure_user.php:802 msgid "Passwords does not match" msgstr "パスワードが一致しません。" -#: ../../godmode/users/configure_user.php:888 -#: ../../operation/users/user_edit.php:191 +#: ../../godmode/users/configure_user.php:852 +#: ../../operation/users/user_edit.php:214 msgid "You have generated a new API Token." msgstr "新たな API トークンを生成しました。" -#: ../../godmode/users/configure_user.php:917 +#: ../../godmode/users/configure_user.php:881 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。" -#: ../../godmode/users/configure_user.php:1039 -msgid "Update User" -msgstr "ユーザ更新" - -#: ../../godmode/users/configure_user.php:1039 -msgid "Create User" -msgstr "ユーザ作成" - -#: ../../godmode/users/configure_user.php:1055 -#: ../../operation/users/user_edit.php:278 +#: ../../godmode/users/configure_user.php:1014 +#: ../../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?" @@ -34333,74 +35192,68 @@ msgstr "" "API トークンが更新されます。 これの実行後は以前のトークンは利用できなくなりま" "す。 よろしいですか?" -#: ../../godmode/users/configure_user.php:1063 -#: ../../operation/users/user_edit.php:286 -msgid "Renew API Token" -msgstr "API トークンの更新" - -#: ../../godmode/users/configure_user.php:1076 -#: ../../operation/users/user_edit.php:311 +#: ../../godmode/users/configure_user.php:1030 +#: ../../operation/users/user_edit.php:339 msgid "Your API Token is:" msgstr "API トークン: " -#: ../../godmode/users/configure_user.php:1076 -#: ../../operation/users/user_edit.php:311 +#: ../../godmode/users/configure_user.php:1030 +#: ../../operation/users/user_edit.php:339 msgid "Please, avoid share this string with others." msgstr "この文字列の他人への共有は避けてください。" -#: ../../godmode/users/configure_user.php:1083 -#: ../../operation/users/user_edit.php:318 -msgid "Show API Token" -msgstr "API トークンの表示" - -#: ../../godmode/users/configure_user.php:1134 -#: ../../operation/users/user_edit.php:349 +#: ../../godmode/users/configure_user.php:1091 +#: ../../godmode/users/user_management.php:178 +#: ../../operation/users/user_edit.php:384 msgid "Full (display) name" msgstr "表示名" -#: ../../godmode/users/configure_user.php:1151 -#: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:496 -msgid "Timezone" -msgstr "タイムゾーン" - -#: ../../godmode/users/configure_user.php:1152 -#: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:496 +#: ../../godmode/users/configure_user.php:1109 +#: ../../godmode/users/user_management.php:664 +#: ../../godmode/massive/massive_edit_users.php:469 +#: ../../operation/users/user_edit.php:537 msgid "The timezone must be that of the associated server." msgstr "" "タイムゾーンは、関連付けられているサーバのタイムゾーンである必要があります。" -#: ../../godmode/users/configure_user.php:1185 -#: ../../operation/users/user_edit.php:376 +#: ../../godmode/users/configure_user.php:1142 +#: ../../godmode/users/user_management.php:299 +#: ../../operation/users/user_edit.php:411 msgid "Password confirmation" msgstr "パスワード確認" -#: ../../godmode/users/configure_user.php:1203 +#: ../../godmode/users/configure_user.php:1160 +#: ../../godmode/users/user_management.php:319 msgid "Own password confirmation" msgstr "自分自身のパスワードの確認" -#: ../../godmode/users/configure_user.php:1213 +#: ../../godmode/users/configure_user.php:1170 +#: ../../godmode/users/user_management.php:233 msgid "Administrator user" msgstr "管理者" -#: ../../godmode/users/configure_user.php:1240 -#: ../../operation/users/user_edit.php:369 +#: ../../godmode/users/configure_user.php:1197 +#: ../../godmode/users/user_management.php:198 +#: ../../operation/users/user_edit.php:404 msgid "E-mail" msgstr "メールアドレス" -#: ../../godmode/users/configure_user.php:1256 -#: ../../operation/users/user_edit.php:371 +#: ../../godmode/users/configure_user.php:1213 +#: ../../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:1272 -#: ../../operation/users/user_edit.php:693 +#: ../../godmode/users/configure_user.php:1229 +#: ../../godmode/users/user_management.php:695 +#: ../../operation/users/user_edit.php:755 msgid "Login allowed IP list" msgstr "ログイン許可 IP 一覧" -#: ../../godmode/users/configure_user.php:1273 -#: ../../operation/users/user_edit.php:694 +#: ../../godmode/users/configure_user.php:1230 +#: ../../godmode/users/user_management.php:712 +#: ../../operation/users/user_edit.php:756 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -34408,31 +35261,32 @@ msgstr "" "コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る" "必要があります。* はすべてを許可します。" -#: ../../godmode/users/configure_user.php:1311 +#: ../../godmode/users/configure_user.php:1269 msgid "Skin" msgstr "スキン" -#: ../../godmode/users/configure_user.php:1320 +#: ../../godmode/users/configure_user.php:1280 msgid "Search custom field view" msgstr "カスタムフィールド表示検索" -#: ../../godmode/users/configure_user.php:1320 +#: ../../godmode/users/configure_user.php:1294 msgid "Load by default the selected view in custom field view" msgstr "デフォルトでは、選択した表示をカスタムフィールド表示に読み込みます" -#: ../../godmode/users/configure_user.php:1337 +#: ../../godmode/users/configure_user.php:1300 msgid "Use global conf" msgstr "グローバル設定を利用します。" -#: ../../godmode/users/configure_user.php:1342 -#: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:431 +#: ../../godmode/users/configure_user.php:1305 +#: ../../godmode/users/user_management.php:614 +#: ../../godmode/massive/massive_edit_users.php:270 +#: ../../operation/users/user_edit.php:466 msgid "Home screen" msgstr "ホーム画面" -#: ../../godmode/users/configure_user.php:1343 -#: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:431 +#: ../../godmode/users/configure_user.php:1306 +#: ../../godmode/massive/massive_edit_users.php:270 +#: ../../operation/users/user_edit.php:466 msgid "" "User can customize the home page. By default, will display 'Agent Detail'. " "Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" @@ -34443,118 +35297,72 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 と入力すると、エージェ" "ントの詳細を表示します。" -#: ../../godmode/users/configure_user.php:1350 -#: ../../godmode/massive/massive_edit_users.php:276 -#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:435 -#: ../../operation/events/events.php:1438 -msgid "Event list" -msgstr "イベント一覧" - -#: ../../godmode/users/configure_user.php:1353 -#: ../../godmode/massive/massive_edit_users.php:279 -#: ../../operation/users/user_edit.php:438 -#: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:68 -msgid "Alert detail" -msgstr "アラート詳細" - -#: ../../godmode/users/configure_user.php:1354 -msgid "External link" -msgstr "外部リンク" - -#: ../../godmode/users/configure_user.php:1447 +#: ../../godmode/users/configure_user.php:1410 msgid "Metaconsole access" msgstr "メタコンソールアクセス" -#: ../../godmode/users/configure_user.php:1465 -msgid "Not Login" -msgstr "ログイン無し" - -#: ../../godmode/users/configure_user.php:1467 -msgid "The user with not login set only can access to API." -msgstr "ログイン無しを設定したユーザは、API にのみアクセスできます。" - -#: ../../godmode/users/configure_user.php:1477 -msgid "Local user" -msgstr "ローカルユーザ" - -#: ../../godmode/users/configure_user.php:1479 -msgid "" -"The user with local authentication enabled will always use local " -"authentication." -msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。" - -#: ../../godmode/users/configure_user.php:1489 -msgid "Session Time" -msgstr "セッション時間" - -#: ../../godmode/users/configure_user.php:1491 -msgid "" -"This is defined in minutes, If you wish a permanent session should putting -1 " -"in this field." -msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" - -#: ../../godmode/users/configure_user.php:1524 +#: ../../godmode/users/configure_user.php:1442 msgid "Default event filter" msgstr "デフォルトイベントフィルタ" -#: ../../godmode/users/configure_user.php:1538 +#: ../../godmode/users/configure_user.php:1456 msgid "eHorus user access enabled" msgstr "eHorus ユーザアクセス有効化" -#: ../../godmode/users/configure_user.php:1546 -#: ../../include/functions_config.php:1722 +#: ../../godmode/users/configure_user.php:1464 +#: ../../include/functions_config.php:1820 msgid "eHorus user" msgstr "eHorus ユーザ" -#: ../../godmode/users/configure_user.php:1555 -#: ../../include/functions_config.php:1726 +#: ../../godmode/users/configure_user.php:1473 +#: ../../include/functions_config.php:1824 msgid "eHorus password" msgstr "eHorus パスワード" -#: ../../godmode/users/configure_user.php:1578 +#: ../../godmode/users/configure_user.php:1502 msgid "User must be created before activating double authentication." msgstr "二段階認証を有効にする前に、ユーザを作成する必要があります。" -#: ../../godmode/users/configure_user.php:1588 -#: ../../operation/users/user_edit.php:514 +#: ../../godmode/users/configure_user.php:1529 +#: ../../operation/users/user_edit.php:559 msgid "Show information" msgstr "情報表示" -#: ../../godmode/users/configure_user.php:1606 +#: ../../godmode/users/configure_user.php:1608 msgid "Enable agents managment" msgstr "エージェント管理を有効にする" -#: ../../godmode/users/configure_user.php:1614 +#: ../../godmode/users/configure_user.php:1616 msgid "Enable node access" msgstr "ノードアクセスを有効にする" -#: ../../godmode/users/configure_user.php:1614 +#: ../../godmode/users/configure_user.php:1617 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" -#: ../../godmode/users/configure_user.php:1854 +#: ../../godmode/users/configure_user.php:1849 msgid "yes" msgstr "はい" -#: ../../godmode/users/configure_user.php:1857 +#: ../../godmode/users/configure_user.php:1852 msgid "no" msgstr "いいえ" -#: ../../godmode/users/configure_user.php:1861 +#: ../../godmode/users/configure_user.php:1856 msgid "Please select profile and group" msgstr "プロファイルとグループを選択してください" -#: ../../godmode/users/configure_user.php:1875 -#: ../../godmode/users/configure_user.php:1926 +#: ../../godmode/users/configure_user.php:1870 +#: ../../godmode/users/configure_user.php:1921 msgid "This profile is already defined" msgstr "このプロファイルはすでに定義済です" -#: ../../godmode/users/configure_user.php:1940 +#: ../../godmode/users/configure_user.php:1935 msgid "Deleting last profile will delete this user" msgstr "最後のプロファイルを削除すると、このユーザが削除されます" -#: ../../godmode/users/configure_user.php:1980 +#: ../../godmode/users/configure_user.php:1975 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -34562,65 +35370,220 @@ msgstr "" "ユーザはプロファイルが割り当てられていない状態で作成され、ログインできなくなり" "ます。よろしいですか?" -#: ../../godmode/users/configure_user.php:2147 -#: ../../operation/users/user_edit.php:1178 +#: ../../godmode/users/configure_user.php:2082 +#: ../../operation/users/user_edit.php:1256 msgid "Double autentication information" msgstr "二段階認証情報" -#: ../../godmode/users/configure_user.php:2237 -#: ../../operation/users/user_edit.php:1267 +#: ../../godmode/users/configure_user.php:2171 +#: ../../operation/users/user_edit.php:1345 msgid "The double authentication will be deactivated" msgstr "二段階認証は無効化されます" -#: ../../godmode/users/configure_user.php:2238 -#: ../../operation/users/user_edit.php:1268 +#: ../../godmode/users/configure_user.php:2172 +#: ../../operation/users/user_edit.php:1346 msgid "Deactivate" msgstr "無効化" -#: ../../godmode/users/configure_user.php:2274 -#: ../../operation/users/user_edit.php:1300 +#: ../../godmode/users/configure_user.php:2207 +#: ../../operation/users/user_edit.php:1378 msgid "The double autentication was deactivated successfully" msgstr "二段階認証を無効化しました" -#: ../../godmode/users/configure_user.php:2278 -#: ../../godmode/users/configure_user.php:2282 -#: ../../operation/users/user_edit.php:1303 -#: ../../operation/users/user_edit.php:1307 +#: ../../godmode/users/configure_user.php:2210 +#: ../../godmode/users/configure_user.php:2214 +#: ../../operation/users/user_edit.php:1381 +#: ../../operation/users/user_edit.php:1385 msgid "There was an error deactivating the double autentication" msgstr "二段階認証の無効化でエラーが発生しました" -#: ../../godmode/agentes/agent_template.php:67 -#: ../../include/functions_api.php:15030 +#: ../../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 "プロファイル情報" + +#: ../../godmode/users/user_management.php:136 +msgid "Profile information for" +msgstr "次のプロファイル情報: " + +#: ../../godmode/users/user_management.php:267 +msgid "New password" +msgstr "新しいパスワード" + +#: ../../godmode/users/user_management.php:286 +msgid "Repeat new password" +msgstr "新しいパスワード(確認)" + +#: ../../godmode/users/user_management.php:306 +#: ../../operation/users/user_edit.php:412 +msgid "Current password" +msgstr "現在のパスワード" + +#: ../../godmode/users/user_management.php:333 +msgid "Not Login" +msgstr "ログイン無し" + +#: ../../godmode/users/user_management.php:350 +msgid "The user with not login set only can access to API." +msgstr "ログイン無しを設定したユーザは、API にのみアクセスできます。" + +#: ../../godmode/users/user_management.php:355 +msgid "Local User" +msgstr "ローカルユーザ" + +#: ../../godmode/users/user_management.php:372 +msgid "" +"The user with local authentication enabled will always use local " +"authentication." +msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。" + +#: ../../godmode/users/user_management.php:384 +msgid "Session time" +msgstr "セッション時間" + +#: ../../godmode/users/user_management.php:394 +msgid "" +"This is defined in minutes, If you wish a permanent session should putting -1 " +"in this field." +msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" + +#: ../../godmode/users/user_management.php:399 +#: ../../godmode/massive/massive_edit_users.php:378 +#: ../../operation/users/user_edit.php:645 +msgid "Autorefresh" +msgstr "自動更新" + +#: ../../godmode/users/user_management.php:434 +#: ../../godmode/massive/massive_edit_users.php:418 +#: ../../operation/users/user_edit.php:681 +msgid "Full list of pages" +msgstr "全ページ一覧" + +#: ../../godmode/users/user_management.php:445 +msgid "Pages with autorefresh" +msgstr "自動更新ページ" + +#: ../../godmode/users/user_management.php:466 +#: ../../godmode/users/user_management.php:467 +#: ../../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 +msgid "Push selected pages into autorefresh list" +msgstr "選択したページを自動更新にする" + +#: ../../godmode/users/user_management.php:483 +#: ../../godmode/users/user_management.php:484 +#: ../../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 +msgid "Pop selected pages out of autorefresh list" +msgstr "選択したページを自動更新から外す" + +#: ../../godmode/users/user_management.php:530 +msgid "Autorefresh pages" +msgstr "自動更新ページ" + +#: ../../godmode/users/user_management.php:536 +msgid "Time for autorefresh" +msgstr "自動更新時間" + +#: ../../godmode/users/user_management.php:549 +#: ../../godmode/massive/massive_edit_users.php:454 +#: ../../operation/users/user_edit.php:716 +msgid "" +"Interval of autorefresh of the elements, by default they are 30 seconds, " +"needing to enable the autorefresh first" +msgstr "" +"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要" +"があります。" + +#: ../../godmode/users/user_management.php:554 +msgid "Language and Appearance" +msgstr "言語と外見" + +#: ../../godmode/users/user_management.php:576 +msgid "User color scheme" +msgstr "ユーザカラースキーム" + +#: ../../godmode/users/user_management.php:593 +#: ../../godmode/massive/massive_edit_users.php:340 +#: ../../operation/users/user_edit.php:574 +msgid "Event filter" +msgstr "イベントフィルタ" + +#: ../../godmode/users/user_management.php:661 +#: ../../include/functions_visual_map_editor.php:313 +#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 +msgid "Time zone" +msgstr "タイムゾーン" + +#: ../../godmode/users/user_management.php:678 +msgid "Additional settings" +msgstr "追加設定" + +#: ../../godmode/users/user_management.php:717 +msgid "Allow all IPs" +msgstr "全IPを許可" + +#: ../../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 msgid "Created by template " msgstr "テンプレートにより作成 " -#: ../../godmode/agentes/agent_template.php:156 +#: ../../godmode/agentes/agent_template.php:172 msgid "Error adding modules" msgstr "モジュールを追加できませんでした。" -#: ../../godmode/agentes/agent_template.php:158 +#: ../../godmode/agentes/agent_template.php:174 msgid "Error adding modules. The following errors already exists: " msgstr "モジュールを追加できませんでした。次のモジュールは存在します: " -#: ../../godmode/agentes/agent_template.php:163 -#: ../../include/functions_api.php:15124 +#: ../../godmode/agentes/agent_template.php:179 +#: ../../include/functions_api.php:15186 msgid "Modules successfully added" msgstr "モジュールを追加しました。" -#: ../../godmode/agentes/agent_template.php:188 +#: ../../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 +msgid "Module templates" +msgstr "モジュールテンプレート" + +#: ../../godmode/agentes/agent_template.php:222 +#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/agent_template.php:237 msgid "Assign" msgstr "割当" -#: ../../godmode/agentes/agent_template.php:270 +#: ../../godmode/agentes/agent_template.php:317 #: ../../mobile/operation/modules.php:772 msgid "No modules" msgstr "モジュールがありません" -#: ../../godmode/agentes/module_manager_editor_wmi.php:87 +#: ../../godmode/agentes/module_manager_editor_wmi.php:106 msgid "Optional. WMI namespace. If unsure leave blank." msgstr "オプション。WMI 名前空間。不明な場合は空白のままにします。" -#: ../../godmode/agentes/module_manager_editor_wmi.php:151 +#: ../../godmode/agentes/module_manager_editor_wmi.php:193 msgid "" "Optional. Substring to look for in the WQL query result. The module returns 1 " "if found, 0 if not." @@ -34628,73 +35591,79 @@ msgstr "" "オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は " "1 を返し、見つからない場合は 0 を返します。" -#: ../../godmode/agentes/module_manager_editor_wmi.php:164 +#: ../../godmode/agentes/module_manager_editor_wmi.php:217 msgid "Column number to retrieve from the WQL query result (starting from zero)." msgstr "WQL クエリ結果から取得する列番号(ゼロから開始)。" -#: ../../godmode/agentes/module_manager_editor_web.php:155 +#: ../../godmode/agentes/module_manager_editor_web.php:161 msgid "Debug remotely this module" msgstr "このモジュールをリモートデバッグ" -#: ../../godmode/agentes/module_manager_editor_web.php:158 +#: ../../godmode/agentes/module_manager_editor_web.php:164 msgid "Debug this module once it has been initialized" msgstr "初期化されたら、このモジュールをデバッグ" -#: ../../godmode/agentes/module_manager_editor_web.php:180 +#: ../../godmode/agentes/module_manager_editor_web.php:190 #: ../../include/class/WebServerModuleDebug.class.php:325 msgid "Debug" msgstr "デバッグ" -#: ../../godmode/agentes/module_manager_editor_web.php:205 +#: ../../godmode/agentes/module_manager_editor_web.php:219 msgid "Requests" msgstr "リクエスト" -#: ../../godmode/agentes/module_manager_editor_web.php:208 +#: ../../godmode/agentes/module_manager_editor_web.php:222 msgid "Agent browser id" msgstr "エージェントブラウザID" -#: ../../godmode/agentes/module_manager_editor_web.php:214 +#: ../../godmode/agentes/module_manager_editor_web.php:228 msgid "HTTP auth (login)" msgstr "HTTP 認証 (ログイン)" -#: ../../godmode/agentes/module_manager_editor_web.php:217 +#: ../../godmode/agentes/module_manager_editor_web.php:231 msgid "HTTP auth (password)" msgstr "HTTP 認証(パスワード)" -#: ../../godmode/agentes/module_manager_editor_web.php:231 +#: ../../godmode/agentes/module_manager_editor_web.php:245 msgid "Proxy auth (login)" msgstr "プロキシ認証(ログイン)" -#: ../../godmode/agentes/module_manager_editor_web.php:235 +#: ../../godmode/agentes/module_manager_editor_web.php:249 msgid "Proxy auth (pass)" msgstr "プロキシ認証(パスワード)" -#: ../../godmode/agentes/module_manager_editor_web.php:242 +#: ../../godmode/agentes/module_manager_editor_web.php:256 msgid "Proxy auth (server)" msgstr "プロキシ認証(サーバ)" -#: ../../godmode/agentes/module_manager_editor_web.php:246 +#: ../../godmode/agentes/module_manager_editor_web.php:260 msgid "Proxy auth (realm)" msgstr "プロキシ認証(レルム)" -#: ../../godmode/agentes/module_manager_editor_web.php:258 +#: ../../godmode/agentes/module_manager_editor_web.php:272 msgid "There isn't get or post" msgstr "get または post がありません" #: ../../godmode/agentes/status_monitor_custom_fields.php:101 -#: ../../godmode/agentes/status_monitor_custom_fields.php:149 -#: ../../include/functions_treeview.php:326 -#: ../../operation/agentes/status_monitor.php:1353 -#: ../../operation/agentes/estado_generalagente.php:436 +#: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4011 +#: ../../include/functions_reporting_html.php:1784 +#: ../../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 msgid "Last status change" msgstr "最新の状態変化" -#: ../../godmode/agentes/status_monitor_custom_fields.php:125 +#: ../../godmode/agentes/status_monitor_custom_fields.php:165 msgid "Show monitor detail fields" msgstr "監視詳細フィールド表示" #: ../../godmode/agentes/configurar_agente.php:254 -#: ../../godmode/agentes/configurar_agente.php:1082 +#: ../../godmode/agentes/configurar_agente.php:1065 msgid "No agent alias specified" msgstr "エージェントの別名が定義されていません" @@ -34702,253 +35671,255 @@ msgstr "エージェントの別名が定義されていません" msgid "Agent cannot be created due to the maximum agent limit for this group" msgstr "このグループのエージェント上限のため、エージェントを作成できません" -#: ../../godmode/agentes/configurar_agente.php:364 +#: ../../godmode/agentes/configurar_agente.php:363 msgid "Could not be created, because name already exists" msgstr "名前がすでに存在するため、作成できませんでした。" -#: ../../godmode/agentes/configurar_agente.php:366 +#: ../../godmode/agentes/configurar_agente.php:365 msgid "Could not be created, because IP already exists" msgstr "IP はすでに存在するため作成できません" -#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:174 -#: ../../godmode/wizards/HostDevices.class.php:1081 -msgid "Module templates" -msgstr "モジュールテンプレート" - -#: ../../godmode/agentes/configurar_agente.php:534 -#: ../../operation/agentes/ver_agente.php:1517 +#: ../../godmode/agentes/configurar_agente.php:536 +#: ../../operation/agentes/ver_agente.php:1523 +#: ../../operation/agentes/ver_agente.php:1827 msgid "GIS data" msgstr "GIS データ" -#: ../../godmode/agentes/configurar_agente.php:606 -#: ../../godmode/agentes/configurar_agente.php:774 -#: ../../operation/agentes/ver_agente.php:1537 ../../operation/menu.php:506 -#: ../../operation/incidents/incident_statistics.php:21 +#: ../../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 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "インシデント" -#: ../../godmode/agentes/configurar_agente.php:769 +#: ../../godmode/agentes/configurar_agente.php:753 +#: ../../godmode/setup/gis_step_2.php:67 ../../godmode/setup/gis_step_2.php:104 msgid "Gis" msgstr "GIS" -#: ../../godmode/agentes/configurar_agente.php:811 +#: ../../godmode/agentes/configurar_agente.php:773 +msgid "SNMP Interfaces Wizard" +msgstr "SNMP インタフェースウィザード" + +#: ../../godmode/agentes/configurar_agente.php:792 msgid "SNMP explorer" msgstr "SNMPエクスプローラ" -#: ../../godmode/agentes/configurar_agente.php:842 -#: ../../godmode/agentes/configurar_agente.php:864 -#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:129 -msgid "Resources" -msgstr "リソース" +#: ../../godmode/agentes/configurar_agente.php:811 +msgid "Agent setup view" +msgstr "エージェント設定表示" -#: ../../godmode/agentes/configurar_agente.php:852 -msgid "Agent manager" -msgstr "エージェントマネージャ" +#: ../../godmode/agentes/configurar_agente.php:824 +#: ../../godmode/agentes/configurar_agente.php:848 +#: ../../godmode/agentes/modificar_agente.php:109 ../../godmode/menu.php:97 +#: ../../godmode/servers/modificar_server.php:193 +msgid "Manage agents" +msgstr "エージェント管理" -#: ../../godmode/agentes/configurar_agente.php:892 -#: ../../godmode/servers/modificar_server.php:248 +#: ../../godmode/agentes/configurar_agente.php:874 +#: ../../godmode/servers/modificar_server.php:350 msgid "Conf file deleted successfully" msgstr "conf ファイルを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:893 -#: ../../godmode/servers/modificar_server.php:249 +#: ../../godmode/agentes/configurar_agente.php:875 +#: ../../godmode/servers/modificar_server.php:351 msgid "Could not delete conf file" msgstr "conf ファイルの削除に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:910 -#: ../../godmode/agentes/configurar_agente.php:1077 -#: ../../include/class/ExternalTools.class.php:756 +#: ../../godmode/agentes/configurar_agente.php:893 +#: ../../godmode/agentes/configurar_agente.php:1060 +#: ../../include/class/ExternalTools.class.php:832 msgid "The ip or dns name entered cannot be resolved" msgstr "入力された IP または DNS 名の名前解決ができません。" -#: ../../godmode/agentes/configurar_agente.php:937 -#: ../../godmode/agentes/configurar_agente.php:941 +#: ../../godmode/agentes/configurar_agente.php:920 +#: ../../godmode/agentes/configurar_agente.php:924 msgid "No data to normalize" msgstr "正規化するデータがありません。" -#: ../../godmode/agentes/configurar_agente.php:946 +#: ../../godmode/agentes/configurar_agente.php:929 #, php-format msgid "Deleted data above %f" msgstr "%f を超えるデータを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:947 +#: ../../godmode/agentes/configurar_agente.php:930 #, php-format msgid "Error normalizing module %s" msgstr "モジュール %s において正規化に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1093 +#: ../../godmode/agentes/configurar_agente.php:1076 #, php-format msgid "The group id %d is incorrect." msgstr "グループ ID %d は不正です。" -#: ../../godmode/agentes/configurar_agente.php:1095 +#: ../../godmode/agentes/configurar_agente.php:1078 msgid "Agent cannot be updated due to the maximum agent limit for this group" msgstr "このグループのエージェント上限のため、エージェントを更新できません" -#: ../../godmode/agentes/configurar_agente.php:1097 +#: ../../godmode/agentes/configurar_agente.php:1080 msgid "Duplicate main IP address" msgstr "メイン IP が重複しています" -#: ../../godmode/agentes/configurar_agente.php:1151 +#: ../../godmode/agentes/configurar_agente.php:1134 msgid "There was a problem updating the agent" msgstr "エージェントの更新に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1244 +#: ../../godmode/agentes/configurar_agente.php:1227 msgid "There was a problem loading the agent" msgstr "エージェントのロードに失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:1758 +#: ../../godmode/agentes/configurar_agente.php:1736 msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "" "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" -#: ../../godmode/agentes/configurar_agente.php:1762 +#: ../../godmode/agentes/configurar_agente.php:1740 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名" "前)" -#: ../../godmode/agentes/configurar_agente.php:1766 +#: ../../godmode/agentes/configurar_agente.php:1744 msgid "There was a problem updating module. \"No change\"" msgstr "モジュールの更新で問題が発生しました。\"変更点がありません\"" -#: ../../godmode/agentes/configurar_agente.php:1772 +#: ../../godmode/agentes/configurar_agente.php:1750 msgid "There was a problem updating module. Processing error" msgstr "モジュールの更新で問題が発生しました。処理エラー" -#: ../../godmode/agentes/configurar_agente.php:1801 +#: ../../godmode/agentes/configurar_agente.php:1779 msgid "Module successfully updated" msgstr "モジュールの更新が完了しました。" -#: ../../godmode/agentes/configurar_agente.php:1949 +#: ../../godmode/agentes/configurar_agente.php:1913 msgid "" "There was a problem adding module. Another module already exists with the same " "name." msgstr "" "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" -#: ../../godmode/agentes/configurar_agente.php:1953 +#: ../../godmode/agentes/configurar_agente.php:1917 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名" "前)" -#: ../../godmode/agentes/configurar_agente.php:1959 +#: ../../godmode/agentes/configurar_agente.php:1923 msgid "There was a problem adding module. Processing error" msgstr "モジュールの追加で問題が発生しました。処理エラー" -#: ../../godmode/agentes/configurar_agente.php:1988 +#: ../../godmode/agentes/configurar_agente.php:1952 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "モジュールを追加しました。" -#: ../../godmode/agentes/configurar_agente.php:2142 +#: ../../godmode/agentes/configurar_agente.php:2106 msgid "There was a problem deleting the module" msgstr "モジュールの削除に失敗しました。" -#: ../../godmode/agentes/configurar_agente.php:2146 +#: ../../godmode/agentes/configurar_agente.php:2110 msgid "Module deleted succesfully" msgstr "モジュールを削除しました。" -#: ../../godmode/agentes/configurar_agente.php:2285 -#: ../../include/functions_api.php:11172 +#: ../../godmode/agentes/configurar_agente.php:2249 +#: ../../include/functions_api.php:11217 #, php-format msgid "Save by %s Console" msgstr "%s コンソールでの保存" -#: ../../godmode/agentes/configurar_agente.php:2303 -#: ../../include/functions_api.php:11173 +#: ../../godmode/agentes/configurar_agente.php:2267 +#: ../../include/functions_api.php:11218 #, php-format msgid "Update by %s Console" msgstr "%s コンソールでの更新" -#: ../../godmode/agentes/configurar_agente.php:2319 -#: ../../include/functions_api.php:11174 +#: ../../godmode/agentes/configurar_agente.php:2283 +#: ../../include/functions_api.php:11219 #, php-format msgid "Insert by %s Console" msgstr "%s コンソールによる挿入" -#: ../../godmode/agentes/configurar_agente.php:2392 -#: ../../godmode/agentes/configurar_agente.php:2408 +#: ../../godmode/agentes/configurar_agente.php:2356 +#: ../../godmode/agentes/configurar_agente.php:2372 msgid "Invalid tab specified" msgstr "不正なタブが指定されました" -#: ../../godmode/agentes/module_manager_editor_prediction.php:110 +#: ../../godmode/agentes/module_manager_editor_prediction.php:120 msgid "Source module" msgstr "対象モジュール" -#: ../../godmode/agentes/module_manager_editor_prediction.php:148 -#: ../../godmode/agentes/module_manager_editor_prediction.php:169 +#: ../../godmode/agentes/module_manager_editor_prediction.php:162 +#: ../../godmode/agentes/module_manager_editor_prediction.php:179 msgid "Select Module" msgstr "モジュールの選択" -#: ../../godmode/agentes/module_manager_editor_prediction.php:195 +#: ../../godmode/agentes/module_manager_editor_prediction.php:200 msgid "Calculation type" msgstr "計算タイプ" -#: ../../godmode/agentes/module_manager_editor_prediction.php:203 -msgid "Estimated absolute value" -msgstr "推定絶対値" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:204 -msgid "Calculation of days to reach limit" -msgstr "制限に達するまでの日数の計算" - -#: ../../godmode/agentes/module_manager_editor_prediction.php:213 +#: ../../godmode/agentes/module_manager_editor_prediction.php:201 msgid "Future estimation" msgstr "将来の見積" -#: ../../godmode/agentes/module_manager_editor_prediction.php:228 +#: ../../godmode/agentes/module_manager_editor_prediction.php:202 msgid "Limit value" msgstr "制限値" -#: ../../godmode/agentes/module_manager_editor.php:720 +#: ../../godmode/agentes/module_manager_editor_prediction.php:211 +msgid "Estimated absolute value" +msgstr "推定絶対値" + +#: ../../godmode/agentes/module_manager_editor_prediction.php:212 +msgid "Calculation of days to reach limit" +msgstr "制限に達するまでの日数の計算" + +#: ../../godmode/agentes/module_manager_editor.php:719 msgid "Invalid module type" msgstr "不正なモジュールタイプ" -#: ../../godmode/agentes/module_manager_editor.php:764 +#: ../../godmode/agentes/module_manager_editor.php:781 msgid "Module relations" msgstr "モジュール関係" -#: ../../godmode/agentes/module_manager_editor.php:854 +#: ../../godmode/agentes/module_manager_editor.php:898 msgid "No module to predict" msgstr "予測モジュールがありません。" -#: ../../godmode/agentes/module_manager_editor.php:864 +#: ../../godmode/agentes/module_manager_editor.php:908 msgid "No plug-in provided" msgstr "プラグインがありません" -#: ../../godmode/agentes/module_manager_editor.php:874 +#: ../../godmode/agentes/module_manager_editor.php:918 msgid "No server provided" msgstr "サーバがありません" -#: ../../godmode/agentes/module_manager_editor.php:905 +#: ../../godmode/agentes/module_manager_editor.php:949 msgid "" "Error, The field name and name in module_name in data configuration are " "different." msgstr "" "エラー、データ設定におけるフィールド名と module_name 内の名前が異なります。" -#: ../../godmode/agentes/module_manager_editor.php:943 +#: ../../godmode/agentes/module_manager_editor.php:987 msgid "The File APIs are not fully supported in this browser." msgstr "このブラウザでは、ファイル API は完全にはサポートされていません。" -#: ../../godmode/agentes/module_manager_editor.php:944 +#: ../../godmode/agentes/module_manager_editor.php:988 msgid "Couldn`t find the fileinput element." msgstr "ファイル入力要素がみつかりません。" -#: ../../godmode/agentes/module_manager_editor.php:945 +#: ../../godmode/agentes/module_manager_editor.php:989 msgid "This browser doesn`t seem to support the files property of file inputs." msgstr "" "このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていませ" "ん。" -#: ../../godmode/agentes/module_manager_editor.php:946 +#: ../../godmode/agentes/module_manager_editor.php:990 msgid "Please select a file before clicking Load" msgstr "読み込みをクリックする前にファイルを選択してください。" @@ -34960,12 +35931,17 @@ msgstr "インベントリモジュールを強制実行しました" msgid "Error forcing inventory module" msgstr "インベントリモジュールの強制実行エラー" -#: ../../godmode/agentes/modificar_agente.php:95 +#: ../../godmode/agentes/inventory_manager.php:235 +#: ../../include/functions_ui.php:7438 +msgid "Target" +msgstr "対象" + +#: ../../godmode/agentes/modificar_agente.php:96 #, php-format msgid "Agents defined in %s" msgstr "%s で定義されたエージェント" -#: ../../godmode/agentes/modificar_agente.php:124 +#: ../../godmode/agentes/modificar_agente.php:125 #, php-format msgid "" "This node is configured with centralized mode. Go to %s to delete an agent" @@ -34981,61 +35957,75 @@ msgstr "エージェントを削除しました" msgid "Could not be deleted." msgstr "削除できませんでした。" -#: ../../godmode/agentes/modificar_agente.php:186 +#: ../../godmode/agentes/modificar_agente.php:179 msgid "Maybe the files conf or md5 could not be deleted" msgstr "confまたはmd5ファイルを削除できませんでした" -#: ../../godmode/agentes/modificar_agente.php:333 -msgid "Show Agents" -msgstr "エージェント表示" - -#: ../../godmode/agentes/modificar_agente.php:335 +#: ../../godmode/agentes/modificar_agente.php:288 #: ../../include/class/SatelliteAgent.class.php:152 msgid "Everyone" msgstr "全て" -#: ../../godmode/agentes/modificar_agente.php:349 -msgid "Operative System" -msgstr "オペレーションシステム" +#: ../../godmode/agentes/modificar_agente.php:345 +#: ../../include/functions_massive_operations.php:163 +#: ../../include/class/SatelliteAgent.class.php:193 +msgid "Show agents" +msgstr "エージェント表示" -#: ../../godmode/agentes/modificar_agente.php:367 -#: ../../include/class/SatelliteAgent.class.php:190 +#: ../../godmode/agentes/modificar_agente.php:363 +#: ../../operation/agentes/estado_agente.php:374 +msgid "Operating System" +msgstr "オペレーティングシステム" + +#: ../../godmode/agentes/modificar_agente.php:382 +#: ../../include/class/SatelliteAgent.class.php:185 msgid "" "Search filter by alias, name, description, IP address or custom fields content" msgstr "別名、名前、説明、IPドレス、カスタムフィールドの内容による検索フィルタ" -#: ../../godmode/agentes/modificar_agente.php:648 +#: ../../godmode/agentes/modificar_agente.php:692 msgid "Remote agent configuration" msgstr "リモートエージェント設定" -#: ../../godmode/agentes/modificar_agente.php:648 +#: ../../godmode/agentes/modificar_agente.php:692 msgid "R" msgstr "R" -#: ../../godmode/agentes/modificar_agente.php:853 +#: ../../godmode/agentes/modificar_agente.php:772 +#: ../../godmode/agentes/module_manager.php:788 +msgid "Module in scheduled downtime" +msgstr "計画停止内エージェント" + +#: ../../godmode/agentes/modificar_agente.php:858 msgid "Edit remote config" msgstr "リモート設定" -#: ../../godmode/agentes/modificar_agente.php:903 -msgid "You are going to enable a cluster agent. Are you sure?" -msgstr "クラスタエージェントを有効化します。よろしいですか?" - -#: ../../godmode/agentes/modificar_agente.php:906 +#: ../../godmode/agentes/modificar_agente.php:905 msgid "Enable agent" msgstr "エージェントの有効化" -#: ../../godmode/agentes/modificar_agente.php:913 -msgid "You are going to disable a cluster agent. Are you sure?" -msgstr "クラスタエージェントを無効化します。よろしいですか?" +#: ../../godmode/agentes/modificar_agente.php:907 +msgid "You are going to enable a cluster agent. Are you sure?" +msgstr "クラスタエージェントを有効化します。よろしいですか?" -#: ../../godmode/agentes/modificar_agente.php:916 +#: ../../godmode/agentes/modificar_agente.php:910 msgid "Disable agent" msgstr "エージェントの無効化" -#: ../../godmode/agentes/modificar_agente.php:926 +#: ../../godmode/agentes/modificar_agente.php:912 +msgid "You are going to disable a cluster agent. Are you sure?" +msgstr "クラスタエージェントを無効化します。よろしいですか?" + +#: ../../godmode/agentes/modificar_agente.php:943 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 +msgid "Delete agent" +msgstr "エージェント削除" + #: ../../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." @@ -35061,127 +36051,133 @@ msgstr "" msgid "Agent position" msgstr "エージェントの位置" -#: ../../godmode/agentes/agent_conf_gis.php:74 +#: ../../godmode/agentes/agent_conf_gis.php:75 msgid "Latitude: " msgstr "緯度: " -#: ../../godmode/agentes/agent_conf_gis.php:91 +#: ../../godmode/agentes/agent_conf_gis.php:94 msgid "Longitude: " msgstr "経度: " -#: ../../godmode/agentes/agent_conf_gis.php:108 +#: ../../godmode/agentes/agent_conf_gis.php:113 msgid "Altitude: " msgstr "高度: " -#: ../../godmode/agentes/agent_conf_gis.php:125 -#: ../../godmode/massive/massive_edit_agents.php:1072 -msgid "Ignore new GIS data:" +#: ../../godmode/agentes/agent_conf_gis.php:132 +msgid "Ignore new GIS data: " msgstr "新たな GIS データを無視する:" -#: ../../godmode/agentes/planned_downtime.list.php:166 -#: ../../godmode/agentes/planned_downtime.editor.php:1245 -#: ../../godmode/agentes/planned_downtime.editor.php:1367 +#: ../../godmode/agentes/planned_downtime.list.php:167 +#: ../../godmode/agentes/planned_downtime.editor.php:1407 +#: ../../godmode/agentes/planned_downtime.editor.php:1519 msgid "All modules" msgstr "全モジュール" -#: ../../godmode/agentes/planned_downtime.list.php:211 -#: ../../godmode/agentes/planned_downtime.editor.php:68 -#: ../../include/functions_reporting_html.php:884 -#: ../../include/functions_reporting_html.php:4805 +#: ../../godmode/agentes/planned_downtime.list.php:212 +#: ../../godmode/agentes/planned_downtime.list.php:225 +#: ../../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 msgid "Scheduled Downtime" msgstr "計画停止" -#: ../../godmode/agentes/planned_downtime.list.php:243 +#: ../../godmode/agentes/planned_downtime.list.php:221 +#: ../../godmode/agentes/planned_downtime.editor.php:75 +#: ../../operation/agentes/exportdata.php:58 ../../operation/menu.php:778 +msgid "Tools" +msgstr "ツール" + +#: ../../godmode/agentes/planned_downtime.list.php:254 msgid "An error occurred stopping the scheduled downtime" msgstr "計画停止の中止中にエラーが発生しました" -#: ../../godmode/agentes/planned_downtime.list.php:270 +#: ../../godmode/agentes/planned_downtime.list.php:281 msgid "This scheduled downtime is running" msgstr "この計画停止を実行中" -#: ../../godmode/agentes/planned_downtime.list.php:355 -#: ../../godmode/agentes/planned_downtime.list.php:709 -#: ../../godmode/agentes/planned_downtime.editor.php:881 +#: ../../godmode/agentes/planned_downtime.list.php:343 +#: ../../godmode/agentes/planned_downtime.list.php:786 +#: ../../godmode/agentes/planned_downtime.editor.php:954 msgid "Once" msgstr "一回のみ" -#: ../../godmode/agentes/planned_downtime.list.php:356 -#: ../../godmode/agentes/planned_downtime.list.php:710 -#: ../../godmode/agentes/planned_downtime.editor.php:882 +#: ../../godmode/agentes/planned_downtime.list.php:344 +#: ../../godmode/agentes/planned_downtime.list.php:787 +#: ../../godmode/agentes/planned_downtime.editor.php:955 msgid "Periodically" msgstr "定期的" -#: ../../godmode/agentes/planned_downtime.list.php:357 -#: ../../godmode/agentes/planned_downtime.list.php:711 -msgid "Cron" -msgstr "Cron" +#: ../../godmode/agentes/planned_downtime.list.php:384 +msgid "Between dates" +msgstr "期間" -#: ../../godmode/agentes/planned_downtime.list.php:371 +#: ../../godmode/agentes/planned_downtime.list.php:395 msgid "Show past downtimes" msgstr "終了した計画停止の表示" -#: ../../godmode/agentes/planned_downtime.list.php:620 +#: ../../godmode/agentes/planned_downtime.list.php:673 #: ../../godmode/agentes/planned_downtime.export_csv.php:204 msgid "No scheduled downtime" msgstr "計画停止がありません" -#: ../../godmode/agentes/planned_downtime.list.php:656 +#: ../../godmode/agentes/planned_downtime.list.php:733 msgid "Name #Ag." msgstr "名前" -#: ../../godmode/agentes/planned_downtime.list.php:663 +#: ../../godmode/agentes/planned_downtime.list.php:740 msgid "Affected" msgstr "対象" -#: ../../godmode/agentes/planned_downtime.list.php:668 -#: ../../godmode/agentes/planned_downtime.list.php:772 -#: ../../godmode/agentes/planned_downtime.list.php:778 +#: ../../godmode/agentes/planned_downtime.list.php:745 +#: ../../godmode/agentes/planned_downtime.list.php:850 +#: ../../godmode/agentes/planned_downtime.list.php:859 msgid "Stop downtime" msgstr "計画停止の中止" -#: ../../godmode/agentes/planned_downtime.list.php:702 -#: ../../godmode/agentes/planned_downtime.editor.php:863 +#: ../../godmode/agentes/planned_downtime.list.php:779 +#: ../../godmode/agentes/planned_downtime.editor.php:930 msgid "Disabled Agents" msgstr "エージェント無効化" -#: ../../godmode/agentes/planned_downtime.list.php:703 -#: ../../godmode/agentes/planned_downtime.editor.php:865 +#: ../../godmode/agentes/planned_downtime.list.php:780 +#: ../../godmode/agentes/planned_downtime.editor.php:932 msgid "Disabled only Alerts" msgstr "アラートのみ無効化" -#: ../../godmode/agentes/planned_downtime.list.php:725 +#: ../../godmode/agentes/planned_downtime.list.php:802 msgid "Not running" msgstr "停止中" -#: ../../godmode/agentes/planned_downtime.list.php:743 -msgid "Agents / Modules affected" -msgstr "対象エージェント/モジュール" +#: ../../godmode/agentes/planned_downtime.list.php:820 +msgid "Elements affected" +msgstr "影響する要素" -#: ../../godmode/agentes/planned_downtime.list.php:752 +#: ../../godmode/agentes/planned_downtime.list.php:829 msgid "Agents and modules affected" msgstr "対象エージェントとモジュール" -#: ../../godmode/agentes/planned_downtime.list.php:950 +#: ../../godmode/agentes/planned_downtime.list.php:1036 msgid "" "WARNING: If you delete this scheduled downtime, it will not be taken into " "account in future SLA reports" msgstr "警告: この計画停止を削除すると、将来の SLA レポートには考慮されません" -#: ../../godmode/agentes/planned_downtime.list.php:956 +#: ../../godmode/agentes/planned_downtime.list.php:1042 msgid "WARNING: There are malformed scheduled downtimes" msgstr "警告: 不正な計画停止があります" -#: ../../godmode/agentes/planned_downtime.list.php:956 +#: ../../godmode/agentes/planned_downtime.list.php:1042 msgid "Do you want to migrate automatically the malformed items?" msgstr "不正な要素を自動的に移動しますか。" -#: ../../godmode/agentes/planned_downtime.editor.php:221 -#: ../../godmode/agentes/planned_downtime.editor.php:1422 -#: ../../godmode/agentes/planned_downtime.editor.php:1625 +#: ../../godmode/agentes/planned_downtime.editor.php:229 +#: ../../godmode/agentes/planned_downtime.editor.php:1574 +#: ../../godmode/agentes/planned_downtime.editor.php:1777 msgid "This elements cannot be modified while the downtime is being executed" msgstr "計画停止実行中は、この要素は変更できません。" -#: ../../godmode/agentes/planned_downtime.editor.php:254 +#: ../../godmode/agentes/planned_downtime.editor.php:262 #: ../../include/functions_planned_downtimes.php:41 #: ../../include/functions_planned_downtimes.php:760 msgid "" @@ -35191,10 +36187,10 @@ msgstr "" "作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなけれ" "ばいけません。" -#: ../../godmode/agentes/planned_downtime.editor.php:258 -#: ../../godmode/agentes/planned_downtime.editor.php:262 +#: ../../godmode/agentes/planned_downtime.editor.php:266 #: ../../godmode/agentes/planned_downtime.editor.php:270 -#: ../../godmode/agentes/planned_downtime.editor.php:274 +#: ../../godmode/agentes/planned_downtime.editor.php:278 +#: ../../godmode/agentes/planned_downtime.editor.php:282 #: ../../include/functions_planned_downtimes.php:43 #: ../../include/functions_planned_downtimes.php:48 #: ../../include/functions_planned_downtimes.php:50 @@ -35211,251 +36207,266 @@ msgstr "" msgid "Not created. Error inserting data" msgstr "設定できませんでした。入力データエラーです。" -#: ../../godmode/agentes/planned_downtime.editor.php:258 +#: ../../godmode/agentes/planned_downtime.editor.php:266 #: ../../include/functions_planned_downtimes.php:43 #: ../../include/functions_planned_downtimes.php:772 msgid "The end date must be higher than the start date" msgstr "終了日は開始日より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:262 +#: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../include/functions_planned_downtimes.php:765 msgid "The end date must be higher than the current time" msgstr "終了日時は開始日時より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:270 -#: ../../godmode/agentes/planned_downtime.editor.php:992 -#: ../../godmode/agentes/planned_downtime.editor.php:1005 +#: ../../godmode/agentes/planned_downtime.editor.php:278 +#: ../../godmode/agentes/planned_downtime.editor.php:1135 #: ../../include/functions_planned_downtimes.php:48 #: ../../include/functions_planned_downtimes.php:780 msgid "The end time must be higher than the start time" msgstr "終了時刻は開始時刻より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:274 -#: ../../godmode/agentes/planned_downtime.editor.php:977 +#: ../../godmode/agentes/planned_downtime.editor.php:282 +#: ../../godmode/agentes/planned_downtime.editor.php:1099 #: ../../include/functions_planned_downtimes.php:50 #: ../../include/functions_planned_downtimes.php:788 msgid "The end day must be higher than the start day" msgstr "終了日は開始日より後でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:287 +#: ../../godmode/agentes/planned_downtime.editor.php:295 msgid "hour (from)" msgstr "時間(開始)" -#: ../../godmode/agentes/planned_downtime.editor.php:304 +#: ../../godmode/agentes/planned_downtime.editor.php:312 msgid "minute (from)" msgstr "分(開始)" -#: ../../godmode/agentes/planned_downtime.editor.php:321 +#: ../../godmode/agentes/planned_downtime.editor.php:329 msgid "month day (from)" msgstr "日にち(開始)" -#: ../../godmode/agentes/planned_downtime.editor.php:338 +#: ../../godmode/agentes/planned_downtime.editor.php:346 msgid "month (from)" msgstr "月(開始)" -#: ../../godmode/agentes/planned_downtime.editor.php:355 +#: ../../godmode/agentes/planned_downtime.editor.php:363 msgid "week day (from)" msgstr "曜日(開始)" -#: ../../godmode/agentes/planned_downtime.editor.php:372 +#: ../../godmode/agentes/planned_downtime.editor.php:380 msgid "hour (to)" msgstr "時間(終了)" -#: ../../godmode/agentes/planned_downtime.editor.php:389 +#: ../../godmode/agentes/planned_downtime.editor.php:397 msgid "minute (to)" msgstr "分(終了)" -#: ../../godmode/agentes/planned_downtime.editor.php:406 +#: ../../godmode/agentes/planned_downtime.editor.php:414 msgid "month day (to)" msgstr "日にち(終了)" -#: ../../godmode/agentes/planned_downtime.editor.php:423 +#: ../../godmode/agentes/planned_downtime.editor.php:431 msgid "month (to)" msgstr "月(終了)" -#: ../../godmode/agentes/planned_downtime.editor.php:440 +#: ../../godmode/agentes/planned_downtime.editor.php:448 msgid "week day (to)" msgstr "曜日(終了)" -#: ../../godmode/agentes/planned_downtime.editor.php:479 -#: ../../godmode/agentes/planned_downtime.editor.php:614 +#: ../../godmode/agentes/planned_downtime.editor.php:487 +#: ../../godmode/agentes/planned_downtime.editor.php:622 msgid "Downtime start cron expression is not correct" msgstr "計画停止開始の cron 書式が正しくありません" -#: ../../godmode/agentes/planned_downtime.editor.php:485 -#: ../../godmode/agentes/planned_downtime.editor.php:620 +#: ../../godmode/agentes/planned_downtime.editor.php:493 +#: ../../godmode/agentes/planned_downtime.editor.php:628 msgid "Downtime stop cron expression is not correct" msgstr "計画停止 cron 書式が正しくありません" -#: ../../godmode/agentes/planned_downtime.editor.php:530 +#: ../../godmode/agentes/planned_downtime.editor.php:538 #: ../../include/functions_planned_downtimes.php:99 #: ../../include/functions_planned_downtimes.php:832 msgid "Each scheduled downtime must have a different name" msgstr "それぞれの計画停止は異なる名前である必要があります" -#: ../../godmode/agentes/planned_downtime.editor.php:535 -#: ../../godmode/agentes/planned_downtime.editor.php:568 +#: ../../godmode/agentes/planned_downtime.editor.php:543 +#: ../../godmode/agentes/planned_downtime.editor.php:576 #: ../../include/functions_planned_downtimes.php:104 #: ../../include/functions_planned_downtimes.php:838 msgid "Scheduled downtime must have a name" msgstr "計画停止には名前が必要です" -#: ../../godmode/agentes/planned_downtime.editor.php:857 -msgid "Quiet: Modules will not generate events or fire alerts." -msgstr "静観: モジュールはイベント生成やアラートの発報を行いません" +#: ../../godmode/agentes/planned_downtime.editor.php:877 +#: ../../godmode/category/edit_category.php:79 +msgid "Editor" +msgstr "編集" -#: ../../godmode/agentes/planned_downtime.editor.php:857 -msgid "Disable Agents: Disables the selected agents." -msgstr "エージェント無効化: 選択したエージェントを無効化します。" - -#: ../../godmode/agentes/planned_downtime.editor.php:857 -msgid "Disable Alerts: Disable alerts for the selected agents." -msgstr "アラートのみ無効化: 選択したエージェントのアラートを無効化します。" - -#: ../../godmode/agentes/planned_downtime.editor.php:864 +#: ../../godmode/agentes/planned_downtime.editor.php:931 msgid "Disable Modules" msgstr "モジュール無効化" -#: ../../godmode/agentes/planned_downtime.editor.php:883 +#: ../../godmode/agentes/planned_downtime.editor.php:945 +msgid "Quiet: Modules will not generate events or fire alerts." +msgstr "静観: モジュールはイベント生成やアラートの発報を行いません" + +#: ../../godmode/agentes/planned_downtime.editor.php:945 +msgid "Disable Agents: Disables the selected agents." +msgstr "エージェント無効化: 選択したエージェントを無効化します。" + +#: ../../godmode/agentes/planned_downtime.editor.php:945 +msgid "Disable Alerts: Disable alerts for the selected agents." +msgstr "アラートのみ無効化: 選択したエージェントのアラートを無効化します。" + +#: ../../godmode/agentes/planned_downtime.editor.php:956 msgid "Cron from/to" msgstr "Cron 開始/終了" -#: ../../godmode/agentes/planned_downtime.editor.php:904 -#: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5736 -#: ../../include/ajax/alert_list.ajax.php:592 -msgid "From:" -msgstr "開始日時:" +#: ../../godmode/agentes/planned_downtime.editor.php:1028 +msgid "Type Periodicity" +msgstr "定期実行タイプ" -#: ../../godmode/agentes/planned_downtime.editor.php:908 -#: ../../include/functions_reporting_html.php:87 -#: ../../include/functions_reporting_html.php:5736 -#: ../../include/ajax/alert_list.ajax.php:606 -msgid "To:" -msgstr "終了日時:" +#: ../../godmode/agentes/planned_downtime.editor.php:1069 +#: ../../include/functions_reporting.php:14923 +msgid "From day" +msgstr "開始日" -#: ../../godmode/agentes/planned_downtime.editor.php:963 -msgid "To day:" -msgstr "終了日:" +#: ../../godmode/agentes/planned_downtime.editor.php:1085 +#: ../../include/functions_reporting.php:14924 +msgid "To day" +msgstr "終了日" -#: ../../godmode/agentes/planned_downtime.editor.php:995 -msgid "To hour:" -msgstr "終了時間:" +#: ../../godmode/agentes/planned_downtime.editor.php:1110 +msgid "From hour" +msgstr "開始時間" -#: ../../godmode/agentes/planned_downtime.editor.php:1017 -msgid "Cron from:" -msgstr "Cron 開始: " +#: ../../godmode/agentes/planned_downtime.editor.php:1120 +msgid "The start time must be lower than the end time" +msgstr "監視時刻は終了時刻より前でなければいけません" -#: ../../godmode/agentes/planned_downtime.editor.php:1021 -msgid "Cron to:" -msgstr "Cron 終了: " +#: ../../godmode/agentes/planned_downtime.editor.php:1125 +msgid "To hour" +msgstr "終了時間" -#: ../../godmode/agentes/planned_downtime.editor.php:1084 -msgid "Group filter" -msgstr "グループフィルタ" +#: ../../godmode/agentes/planned_downtime.editor.php:1152 +#: ../../godmode/agentes/module_manager_editor_common.php:1085 +#: ../../godmode/agentes/module_manager_editor_common.php:1091 +msgid "Cron from" +msgstr "Cron 開始" -#: ../../godmode/agentes/planned_downtime.editor.php:1129 -msgid "Available modules:" -msgstr "存在するモジュール:" +#: ../../godmode/agentes/planned_downtime.editor.php:1155 +#: ../../godmode/agentes/module_manager_editor_common.php:1088 +#: ../../godmode/agentes/module_manager_editor_common.php:1094 +msgid "Cron to" +msgstr "Cron 終了" -#: ../../godmode/agentes/planned_downtime.editor.php:1130 +#: ../../godmode/agentes/planned_downtime.editor.php:1171 +msgid "Filtering" +msgstr "フィルタ" + +#: ../../godmode/agentes/planned_downtime.editor.php:1232 +#: ../../godmode/massive/massive_delete_modules.php:318 +#: ../../godmode/massive/massive_edit_modules.php:304 +msgid "Selection mode" +msgstr "選択モード" + +#: ../../godmode/agentes/planned_downtime.editor.php:1272 msgid "Only for type Quiet for downtimes." msgstr "静観タイプの場合のみ" -#: ../../godmode/agentes/planned_downtime.editor.php:1180 +#: ../../godmode/agentes/planned_downtime.editor.php:1330 msgid "Agents planned for this downtime" msgstr "この計画停止が予定される対象エージェント" -#: ../../godmode/agentes/planned_downtime.editor.php:1198 +#: ../../godmode/agentes/planned_downtime.editor.php:1348 msgid "There are no agents" msgstr "エージェントがありません" -#: ../../godmode/agentes/planned_downtime.editor.php:1240 +#: ../../godmode/agentes/planned_downtime.editor.php:1402 msgid "All alerts" msgstr "全アラート" -#: ../../godmode/agentes/planned_downtime.editor.php:1242 +#: ../../godmode/agentes/planned_downtime.editor.php:1404 msgid "Entire agent" msgstr "エージェント全体" -#: ../../godmode/agentes/planned_downtime.editor.php:1247 -#: ../../godmode/agentes/planned_downtime.editor.php:1359 -#: ../../godmode/agentes/planned_downtime.editor.php:1363 +#: ../../godmode/agentes/planned_downtime.editor.php:1409 +#: ../../godmode/agentes/planned_downtime.editor.php:1511 +#: ../../godmode/agentes/planned_downtime.editor.php:1515 msgid "Some modules" msgstr "いくつかのモジュール" -#: ../../godmode/agentes/planned_downtime.editor.php:1313 +#: ../../godmode/agentes/planned_downtime.editor.php:1465 msgid "Add Module:" msgstr "モジュール追加:" -#: ../../godmode/agentes/planned_downtime.editor.php:1755 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4834 +#: ../../godmode/agentes/planned_downtime.editor.php:1907 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4939 msgid "Please select a module." msgstr "モジュールを選択してください。" -#: ../../godmode/agentes/planned_downtime.editor.php:1894 +#: ../../godmode/agentes/planned_downtime.editor.php:2046 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" msgstr "" "警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます" -#: ../../godmode/agentes/fields_manager.php:30 +#: ../../godmode/agentes/fields_manager.php:46 msgid "Agents custom fields manager" msgstr "エージェントカスタムフィールド管理" -#: ../../godmode/agentes/fields_manager.php:47 +#: ../../godmode/agentes/fields_manager.php:79 #: ../../include/ajax/custom_fields.php:739 msgid "The name must not be empty" msgstr "名前は空ではいけません" -#: ../../godmode/agentes/fields_manager.php:49 +#: ../../godmode/agentes/fields_manager.php:81 msgid "The name must be unique" msgstr "名前はユニークである必要があります" -#: ../../godmode/agentes/fields_manager.php:61 +#: ../../godmode/agentes/fields_manager.php:93 msgid "Field successfully created" msgstr "フィールドを作成しました。" -#: ../../godmode/agentes/fields_manager.php:83 +#: ../../godmode/agentes/fields_manager.php:115 msgid "Field successfully updated" msgstr "フィールドを更新しました。" -#: ../../godmode/agentes/fields_manager.php:85 +#: ../../godmode/agentes/fields_manager.php:117 msgid "There was a problem modifying field" msgstr "フィールドの修正で問題が発生しました。" -#: ../../godmode/agentes/fields_manager.php:97 +#: ../../godmode/agentes/fields_manager.php:129 msgid "There was a problem deleting field" msgstr "フィールドの削除で問題が発生しました。" -#: ../../godmode/agentes/fields_manager.php:99 +#: ../../godmode/agentes/fields_manager.php:131 msgid "Field successfully deleted" msgstr "フィールドを削除しました。" -#: ../../godmode/agentes/fields_manager.php:123 -#: ../../godmode/agentes/configure_field.php:98 +#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/agentes/configure_field.php:127 #: ../../operation/agentes/custom_fields.php:67 msgid "Display on front" msgstr "前面に表示" -#: ../../godmode/agentes/fields_manager.php:123 -#: ../../godmode/agentes/configure_field.php:99 +#: ../../godmode/agentes/fields_manager.php:154 +#: ../../godmode/agentes/configure_field.php:128 #: ../../operation/agentes/custom_fields.php:67 msgid "" "The fields with display on front enabled will be displayed into the agent " "details" msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" -#: ../../godmode/agentes/fields_manager.php:171 +#: ../../godmode/agentes/fields_manager.php:228 msgid "Create field" msgstr "フィールド作成" -#: ../../godmode/agentes/module_manager_editor_network.php:309 -msgid "SNMP walk" +#: ../../godmode/agentes/module_manager_editor_network.php:310 +#: ../../include/class/AgentWizard.class.php:584 +msgid "SNMP Walk" msgstr "snmpwalk" -#: ../../godmode/agentes/module_manager_editor_network.php:492 +#: ../../godmode/agentes/module_manager_editor_network.php:477 msgid "" "Please use single quotation marks when necessary. \n" "\n" @@ -35467,133 +36478,113 @@ msgstr "" "ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープし" "てください。" -#: ../../godmode/agentes/module_manager_editor_network.php:523 +#: ../../godmode/agentes/module_manager_editor_network.php:536 msgid "Windows remote" msgstr "リモート Windows" -#: ../../godmode/agentes/agent_manager.php:226 -#: ../../operation/agentes/estado_agente.php:215 ../../operation/menu.php:56 -msgid "Agent detail" -msgstr "エージェント詳細" - -#: ../../godmode/agentes/agent_manager.php:241 -msgid "Delete agent" -msgstr "エージェント削除" - -#: ../../godmode/agentes/agent_manager.php:275 -msgid "QR Code Agent view" -msgstr "エージェント表示 QR コード" - -#: ../../godmode/agentes/agent_manager.php:296 -msgid "Use alias as name" -msgstr "名前に別名を利用" - -#: ../../godmode/agentes/agent_manager.php:304 -#: ../../godmode/setup/setup_general.php:540 -#: ../../include/functions_config.php:368 -msgid "Unique IP" -msgstr "ユニーク IP" - -#: ../../godmode/agentes/agent_manager.php:312 -msgid "Fix IP address" -msgstr "IP アドレスの固定" - -#: ../../godmode/agentes/agent_manager.php:312 -msgid "Avoid automatic IP address update when agent IP changes." -msgstr "エージェント IP が変更された場合、IP アドレスの自動更新を回避します" - -#: ../../godmode/agentes/agent_manager.php:322 -msgid "Delete selected IPs" -msgstr "選択 IP を削除します" - -#: ../../godmode/agentes/agent_manager.php:347 -msgid "Primary group" -msgstr "プライマリグループ" - -#: ../../godmode/agentes/agent_manager.php:461 -#: ../../godmode/setup/license.php:179 -#: ../../godmode/servers/modificar_server.php:42 -#: ../../include/functions_ui.php:866 -#: ../../include/class/Diagnostics.class.php:1187 -msgid "Satellite" -msgstr "サテライト" - -#: ../../godmode/agentes/agent_manager.php:527 -#: ../../godmode/massive/massive_edit_agents.php:1128 -msgid "Safe operation mode" -msgstr "セーフオペレーションモード" - -#: ../../godmode/agentes/agent_manager.php:568 -msgid "Cascade protection services" -msgstr "サービス関連障害検知抑制" - -#: ../../godmode/agentes/agent_manager.php:599 -#: ../../godmode/massive/massive_edit_agents.php:668 -msgid "Cascade protection" -msgstr "関連障害検知抑制" - -#: ../../godmode/agentes/agent_manager.php:615 -#: ../../godmode/massive/massive_edit_agents.php:879 -msgid "Module definition" -msgstr "モジュール定義" - -#: ../../godmode/agentes/agent_manager.php:620 -#: ../../godmode/massive/massive_edit_agents.php:891 -msgid "Learning mode" -msgstr "学習モード" - -#: ../../godmode/agentes/agent_manager.php:630 -#: ../../godmode/massive/massive_edit_agents.php:902 -msgid "Normal mode" -msgstr "通常モード" - -#: ../../godmode/agentes/agent_manager.php:640 -#: ../../godmode/massive/massive_edit_agents.php:913 -msgid "Autodisable mode" -msgstr "自動無効化モード" - -#: ../../godmode/agentes/agent_manager.php:657 -msgid "Disabled mode" -msgstr "無効化モード" - -#: ../../godmode/agentes/agent_manager.php:662 -#: ../../godmode/agentes/agent_manager.php:679 -#: ../../include/functions_treeview.php:752 -#: ../../operation/agentes/ver_agente.php:1556 -#: ../../operation/agentes/estado_generalagente.php:495 -msgid "Url address" -msgstr "URLアドレス" - -#: ../../godmode/agentes/agent_manager.php:704 +#: ../../godmode/agentes/agent_manager.php:329 +#: ../../godmode/agentes/agent_manager.php:744 #: ../../godmode/massive/massive_edit_agents.php:1014 msgid "Agent icon" msgstr "エージェントアイコン" -#: ../../godmode/agentes/agent_manager.php:754 -msgid "Update new GIS data:" -msgstr "新たな GIS データ更新:" +#: ../../godmode/agentes/agent_manager.php:379 +msgid "Use alias as name" +msgstr "名前に別名を利用" -#: ../../godmode/agentes/agent_manager.php:812 -msgid "Click to display" -msgstr "クリックして表示" +#: ../../godmode/agentes/agent_manager.php:407 +#: ../../godmode/setup/setup_general.php:649 +#: ../../include/functions_config.php:390 +msgid "Unique IP" +msgstr "ユニーク IP" -#: ../../godmode/agentes/agent_manager.php:883 +#: ../../godmode/agentes/agent_manager.php:426 +#: ../../godmode/agentes/agent_manager.php:452 +msgid "Delete selected IPs" +msgstr "選択 IP を削除します" + +#: ../../godmode/agentes/agent_manager.php:443 +msgid "Fix IP address" +msgstr "IP アドレスの固定" + +#: ../../godmode/agentes/agent_manager.php:444 +msgid "Avoid automatic IP address update when agent IP changes." +msgstr "エージェント IP が変更された場合、IP アドレスの自動更新を回避します" + +#: ../../godmode/agentes/agent_manager.php:448 +msgid "IP Address list" +msgstr "IP アドレス一覧" + +#: ../../godmode/agentes/agent_manager.php:456 +msgid "Primary group" +msgstr "プライマリグループ" + +#: ../../godmode/agentes/agent_manager.php:673 +msgid "Cascade protection modules" +msgstr "関連障害検知抑制モジュール" + +#: ../../godmode/agentes/agent_manager.php:689 +#: ../../godmode/massive/massive_edit_agents.php:891 +msgid "Learning mode" +msgstr "学習モード" + +#: ../../godmode/agentes/agent_manager.php:699 +#: ../../godmode/massive/massive_edit_agents.php:902 +msgid "Normal mode" +msgstr "通常モード" + +#: ../../godmode/agentes/agent_manager.php:709 +#: ../../godmode/massive/massive_edit_agents.php:913 +msgid "Autodisable mode" +msgstr "自動無効化モード" + +#: ../../godmode/agentes/agent_manager.php:718 +#: ../../godmode/massive/massive_edit_agents.php:879 +msgid "Module definition" +msgstr "モジュール定義" + +#: ../../godmode/agentes/agent_manager.php:730 +msgid "Cascade protection services" +msgstr "サービス関連障害検知抑制" + +#: ../../godmode/agentes/agent_manager.php:737 +msgid "Update new GIS data" +msgstr "新たな GIS データ更新" + +#: ../../godmode/agentes/agent_manager.php:809 +msgid "URL Address" +msgstr "URL アドレス" + +#: ../../godmode/agentes/agent_manager.php:815 +msgid "Disabled mode" +msgstr "無効化モード" + +#: ../../godmode/agentes/agent_manager.php:892 +#: ../../godmode/massive/massive_edit_agents.php:1128 +msgid "Safe operation mode" +msgstr "セーフオペレーションモード" + +#: ../../godmode/agentes/agent_manager.php:969 msgid "Link text:" msgstr "リンクテキスト: " -#: ../../godmode/agentes/agent_manager.php:894 +#: ../../godmode/agentes/agent_manager.php:980 msgid "Link URL:" msgstr "リンク URL: " -#: ../../godmode/agentes/agent_manager.php:1093 +#: ../../godmode/agentes/agent_manager.php:1121 +msgid "This action is not reversible. Are you sure" +msgstr "この処理は元に戻せません。よろしいですか?" + +#: ../../godmode/agentes/agent_manager.php:1182 msgid "Secondary group cannot be primary too." msgstr "セカンダリグループはプライマリにできません。" #: ../../godmode/agentes/agent_incidents.php:22 -#: ../../operation/incidents/incident_statistics.php:24 -#: ../../operation/incidents/configure_integriaims_incident.php:33 +#: ../../operation/incidents/incident_statistics.php:41 +#: ../../operation/incidents/configure_integriaims_incident.php:52 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 -#: ../../operation/incidents/list_integriaims_incidents.php:34 +#: ../../operation/incidents/list_integriaims_incidents.php:44 msgid "" "In order to access ticket management system, integration with Integria IMS " "must be enabled and properly configured" @@ -35601,30 +36592,30 @@ msgstr "" "チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正" "しく設定されている必要があります" -#: ../../godmode/agentes/agent_incidents.php:69 +#: ../../godmode/agentes/agent_incidents.php:65 msgid "No incidents associated to this agent" msgstr "このエージェントに関連付けられたインシデントがありません" -#: ../../godmode/agentes/agent_incidents.php:90 +#: ../../godmode/agentes/agent_incidents.php:89 msgid "Incident" msgstr "インシデント" -#: ../../godmode/agentes/configure_field.php:44 +#: ../../godmode/agentes/configure_field.php:60 msgid "Update agent custom field" msgstr "エージェントカスタムフィールドの更新" -#: ../../godmode/agentes/configure_field.php:46 +#: ../../godmode/agentes/configure_field.php:62 msgid "Create agent custom field" msgstr "エージェントカスタムフィールドの作成" -#: ../../godmode/agentes/configure_field.php:58 -#: ../../godmode/agentes/configure_field.php:62 -#: ../../godmode/agentes/configure_field.php:66 -#: ../../godmode/agentes/configure_field.php:70 +#: ../../godmode/agentes/configure_field.php:88 +#: ../../godmode/agentes/configure_field.php:92 +#: ../../godmode/agentes/configure_field.php:96 +#: ../../godmode/agentes/configure_field.php:100 msgid "Agent Custom Fields Information" msgstr "エージェントカスタムフィールド情報" -#: ../../godmode/agentes/configure_field.php:59 +#: ../../godmode/agentes/configure_field.php:89 msgid "" "You cannot set the Password type until you clear the combo values and click on " "update button." @@ -35632,7 +36623,7 @@ msgstr "" "選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定するこ" "とはできません。" -#: ../../godmode/agentes/configure_field.php:63 +#: ../../godmode/agentes/configure_field.php:93 msgid "" "You cannot unset the enable combo until you clear the combo values and click " "on update." @@ -35640,235 +36631,207 @@ msgstr "" "選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできま" "せん。" -#: ../../godmode/agentes/configure_field.php:67 +#: ../../godmode/agentes/configure_field.php:97 msgid "If you select Enabled combo the Password type will be disabled." msgstr "有効な設定を選択すると、パスワードタイプは無効になります。" -#: ../../godmode/agentes/configure_field.php:71 +#: ../../godmode/agentes/configure_field.php:101 msgid "If you select Passord type the Enabled combo will be disabled." msgstr "パスワードを選択すると、有効な設定が無効化されます。" -#: ../../godmode/agentes/configure_field.php:87 +#: ../../godmode/agentes/configure_field.php:140 +msgid "Link type" +msgstr "リンクタイプ" + +#: ../../godmode/agentes/configure_field.php:153 msgid "Pass type" msgstr "パスタイプ" -#: ../../godmode/agentes/configure_field.php:88 +#: ../../godmode/agentes/configure_field.php:154 msgid "" "The fields with pass type enabled will be displayed like html input type pass " "in html" msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" -#: ../../godmode/agentes/configure_field.php:109 +#: ../../godmode/agentes/configure_field.php:166 msgid "Enabled combo" msgstr "有効な設定" -#: ../../godmode/agentes/configure_field.php:121 +#: ../../godmode/agentes/configure_field.php:179 msgid "Combo values" msgstr "選択肢" -#: ../../godmode/agentes/configure_field.php:122 +#: ../../godmode/agentes/configure_field.php:180 msgid "Set values separated by comma" msgstr "カンマ区切りで値を設定" -#: ../../godmode/agentes/configure_field.php:134 -msgid "Link type" -msgstr "リンクタイプ" - -#: ../../godmode/agentes/module_manager_editor_common.php:108 +#: ../../godmode/agentes/module_manager_editor_common.php:149 msgid "Using module component" msgstr "モジュールコンポーネント" -#: ../../godmode/agentes/module_manager_editor_common.php:413 +#: ../../godmode/agentes/module_manager_editor_common.php:446 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:406 msgid "Warning threshold" msgstr "警告閾値" -#: ../../godmode/agentes/module_manager_editor_common.php:415 -#: ../../godmode/agentes/module_manager_editor_common.php:491 -msgid "Min. " -msgstr "最小 " +#: ../../godmode/agentes/module_manager_editor_common.php:448 +#: ../../godmode/agentes/module_manager_editor_common.php:531 +msgid "Min / Max" +msgstr "最小 / 最大" -#: ../../godmode/agentes/module_manager_editor_common.php:489 +#: ../../godmode/agentes/module_manager_editor_common.php:530 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:435 msgid "Critical threshold" msgstr "障害閾値" -#: ../../godmode/agentes/module_manager_editor_common.php:687 -msgid "Dynamic Threshold Interval" -msgstr "動的しきい値の間隔" +#: ../../godmode/agentes/module_manager_editor_common.php:741 +msgid "Identification and Categorization" +msgstr "識別と分類" -#: ../../godmode/agentes/module_manager_editor_common.php:714 -msgid "Dynamic Threshold Min. " -msgstr "最小動的しきい値 " - -#: ../../godmode/agentes/module_manager_editor_common.php:727 -msgid "Dynamic Threshold Max. " -msgstr "最大動的しきい値 " - -#: ../../godmode/agentes/module_manager_editor_common.php:740 -msgid "Dynamic Threshold Two Tailed: " -msgstr "2つの動的しきい値を使う: " - -#: ../../godmode/agentes/module_manager_editor_common.php:751 -msgid "Not needed" -msgstr "不要です。" - -#: ../../godmode/agentes/module_manager_editor_common.php:1049 -msgid "Tags from policy" -msgstr "ポリシーからのタグ" - -#: ../../godmode/agentes/module_manager_editor_common.php:1089 -msgid "Cascade Protection Services" -msgstr "サービス関連障害検知抑制" - -#: ../../godmode/agentes/module_manager_editor_common.php:1123 -#: ../../godmode/agentes/module_manager_editor_common.php:1131 -#: ../../godmode/agentes/module_manager_editor_common.php:1140 -msgid "Cron from" -msgstr "Cron 開始" - -#: ../../godmode/agentes/module_manager_editor_common.php:1127 -#: ../../godmode/agentes/module_manager_editor_common.php:1135 -#: ../../godmode/agentes/module_manager_editor_common.php:1144 -msgid "Cron to" -msgstr "Cron 終了" - -#: ../../godmode/agentes/module_manager_editor_common.php:1180 +#: ../../godmode/agentes/module_manager_editor_common.php:944 msgid "Module parent" msgstr "モジュールの親" -#: ../../godmode/agentes/module_manager_editor_common.php:1278 -#: ../../godmode/agentes/module_manager_editor_common.php:1389 +#: ../../godmode/agentes/module_manager_editor_common.php:994 +msgid "Tags from policy" +msgstr "ポリシーからのタグ" + +#: ../../godmode/agentes/module_manager_editor_common.php:1065 +msgid "Execution interval" +msgstr "実行間隔" + +#: ../../godmode/agentes/module_manager_editor_common.php:1101 +msgid "Thresholds and state changes" +msgstr "しきい値と状態の変化" + +#: ../../godmode/agentes/module_manager_editor_common.php:1119 +msgid "Dynamic Threshold Interval" +msgstr "動的しきい値の間隔" + +#: ../../godmode/agentes/module_manager_editor_common.php:1172 +msgid "Two Tailed" +msgstr "2つの動的しきい値" + +#: ../../godmode/agentes/module_manager_editor_common.php:1323 +msgid "Data and their processing" +msgstr "データとその処理" + +#: ../../godmode/agentes/module_manager_editor_common.php:1353 +msgid "Notifications and alerts" +msgstr "通知とアラート" + +#: ../../godmode/agentes/module_manager_editor_common.php:1357 +msgid "Not needed" +msgstr "不要です。" + +#: ../../godmode/agentes/module_manager_editor_common.php:1403 +msgid "Cascade Protection Services" +msgstr "サービス関連障害検知抑制" + +#: ../../godmode/agentes/module_manager_editor_common.php:1486 +#: ../../godmode/agentes/module_manager_editor_common.php:1620 msgid "Direct" msgstr "直接" -#: ../../godmode/agentes/module_manager_editor_common.php:1279 -#: ../../godmode/agentes/module_manager_editor_common.php:1389 -#: ../../include/functions_reporting_html.php:4047 -#: ../../include/functions_reporting_html.php:4141 -#: ../../include/functions_reporting_html.php:4221 -#: ../../include/functions_reporting_html.php:4230 -#: ../../include/functions_reporting_html.php:4368 -#: ../../include/functions_reporting_html.php:4377 -#: ../../include/functions_reporting_html.php:4702 -#: ../../include/functions_reporting_html.php:4708 +#: ../../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 msgid "Failover" msgstr "フェイルオーバ" -#: ../../godmode/agentes/module_manager_editor_common.php:1280 +#: ../../godmode/agentes/module_manager_editor_common.php:1489 msgid "Rel. type" msgstr "関係タイプ" -#: ../../godmode/agentes/module_manager_editor_common.php:1295 +#: ../../godmode/agentes/module_manager_editor_common.php:1511 msgid "Add relationship" msgstr "関係の追加" -#: ../../godmode/agentes/module_manager_editor_common.php:1320 +#: ../../godmode/agentes/module_manager_editor_common.php:1537 msgid "Changes" msgstr "変更" -#: ../../godmode/agentes/module_manager.php:120 -msgid "Create a new data server module" -msgstr "データサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:122 -msgid "Create a new network server module" -msgstr "ネットワークサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:126 -msgid "Create a new plugin server module" -msgstr "プラグインサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:130 -msgid "Create a new WMI server module" -msgstr "WMI サーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:134 -msgid "Create a new prediction server module" -msgstr "予測サーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:138 -msgid "Create a new web Server module" -msgstr "ウェブサーバモジュールの新規作成" - -#: ../../godmode/agentes/module_manager.php:182 -#: ../../operation/agentes/estado_monitores.php:582 -msgid "Show in hierachy mode" -msgstr "階層モードで表示" - -#: ../../godmode/agentes/module_manager.php:231 -msgid "Get more modules on Monitoring Library" -msgstr "ライブラリからモジュールを取得" - -#: ../../godmode/agentes/module_manager.php:272 +#: ../../godmode/agentes/module_manager.php:88 msgid "There was a problem completing the operation" msgstr "処理が正しく終了しませんでした。" -#: ../../godmode/agentes/module_manager.php:429 -#: ../../godmode/agentes/module_manager.php:475 -#: ../../godmode/agentes/module_manager.php:521 +#: ../../godmode/agentes/module_manager.php:219 +#: ../../godmode/agentes/module_manager.php:265 +#: ../../godmode/agentes/module_manager.php:311 #, php-format msgid "There was a problem completing the operation. Applied to 0/%d modules." msgstr "処理が正しく終了しませんでした。 0 /%d モジュールに適用されます。" -#: ../../godmode/agentes/module_manager.php:435 -#: ../../godmode/agentes/module_manager.php:481 -#: ../../godmode/agentes/module_manager.php:527 +#: ../../godmode/agentes/module_manager.php:225 +#: ../../godmode/agentes/module_manager.php:271 +#: ../../godmode/agentes/module_manager.php:317 msgid "Operation finished successfully." msgstr "処理が正常に終了しました。" -#: ../../godmode/agentes/module_manager.php:439 -#: ../../godmode/agentes/module_manager.php:485 -#: ../../godmode/agentes/module_manager.php:531 +#: ../../godmode/agentes/module_manager.php:229 +#: ../../godmode/agentes/module_manager.php:275 +#: ../../godmode/agentes/module_manager.php:321 #, php-format msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "処理が正しく完了しませんでした。%d/%d モジュールに適用されます。" -#: ../../godmode/agentes/module_manager.php:837 -#: ../../godmode/reporting/map_builder.php:452 -#: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:573 -#: ../../operation/agentes/datos_agente.php:295 -msgid "No available data to show" -msgstr "表示するデータがありません。" +#: ../../godmode/agentes/module_manager.php:619 ../../include/ajax/module.php:999 +msgid "P" +msgstr "P" -#: ../../godmode/agentes/module_manager.php:911 -msgid "Del." -msgstr "削除" +#: ../../godmode/agentes/module_manager.php:623 +msgid "S" +msgstr "S" -#: ../../godmode/agentes/module_manager.php:1051 -msgid "Module in scheduled downtime" -msgstr "計画停止内エージェント" - -#: ../../godmode/agentes/module_manager.php:1103 -#: ../../godmode/agentes/module_manager.php:1111 -#: ../../include/ajax/module.php:1097 ../../include/ajax/module.php:1105 +#: ../../godmode/agentes/module_manager.php:836 +#: ../../godmode/agentes/module_manager.php:844 +#: ../../include/ajax/module.php:1064 ../../include/ajax/module.php:1072 msgid "Adopted" msgstr "適用" -#: ../../godmode/agentes/module_manager.php:1245 +#: ../../godmode/agentes/module_manager.php:972 msgid "Normalize" msgstr "正規化" -#: ../../godmode/agentes/module_manager.php:1255 -msgid "Normalize (Disabled)" -msgstr "正規化 (無効)" - -#: ../../godmode/agentes/module_manager.php:1270 +#: ../../godmode/agentes/module_manager.php:985 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "ネットワークコンポーネントの作成" -#: ../../godmode/agentes/module_manager.php:1279 -msgid "Create network component (Disabled)" -msgstr "ネットワークコンポーネントの作成 (無効)" +#: ../../godmode/agentes/module_manager.php:1020 +#: ../../godmode/reporting/map_builder.php:485 +#: ../../godmode/reporting/map_builder.php:502 +#: ../../operation/agentes/datos_agente.php:295 +msgid "No available data to show" +msgstr "表示するデータがありません。" -#: ../../godmode/agentes/module_manager.php:1342 -#: ../../include/class/SatelliteAgent.class.php:245 +#: ../../godmode/agentes/module_manager.php:1037 +#: ../../include/class/SatelliteAgent.class.php:233 msgid "Execute action" msgstr "アクション実行" +#: ../../godmode/agentes/module_manager.php:1081 +msgid "Select module type" +msgstr "モジュールタイプを選択" + +#: ../../godmode/agentes/module_manager.php:1104 +msgid "Get more modules on Monitoring Library" +msgstr "ライブラリからモジュールを取得" + +#: ../../godmode/agentes/module_manager.php:1239 +msgid "" +"This module has children modules.The following modules will also be deleted: " +msgstr "このモジュールには子モジュールがあります。次のモジュールも削除されます: " + #: ../../godmode/netflow/nf_item_list.php:27 -#: ../../operation/reporting/reporting_viewer.php:119 +#: ../../operation/reporting/reporting_viewer.php:118 msgid "Report list" msgstr "レポート一覧" @@ -35890,13 +36853,12 @@ msgid "Item list" msgstr "アイテム一覧" #: ../../godmode/netflow/nf_item_list.php:176 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2504 -#: ../../operation/netflow/nf_live_view.php:330 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2549 msgid "Max. values" msgstr "最大値" #: ../../godmode/netflow/nf_item_list.php:177 -#: ../../operation/agentes/graphs.php:233 +#: ../../operation/agentes/graphs.php:248 msgid "Chart type" msgstr "グラフタイプ" @@ -35904,52 +36866,62 @@ msgstr "グラフタイプ" msgid "There are no defined items" msgstr "定義済のアイテムがありません" -#: ../../godmode/netflow/nf_edit.php:38 -msgid "Manage Netflow Filter" -msgstr "Netflow フィルタ管理" +#: ../../godmode/netflow/nf_edit.php:50 +msgid "Manage Filters" +msgstr "フィルタ管理" -#: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 -#: ../../godmode/netflow/nf_edit_form.php:73 -#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:123 +#: ../../godmode/netflow/nf_edit.php:63 ../../godmode/menu.php:126 msgid "Netflow filters" msgstr "Netflow フィルタ" -#: ../../godmode/netflow/nf_edit.php:212 -#: ../../godmode/events/event_filter.php:215 +#: ../../godmode/netflow/nf_edit.php:225 +#: ../../godmode/events/event_filter.php:224 msgid "There are no defined filters" msgstr "定義済のフィルタがありません" -#: ../../godmode/netflow/nf_edit_form.php:53 ../../godmode/events/events.php:54 +#: ../../godmode/netflow/nf_edit_form.php:66 ../../godmode/events/events.php:69 msgid "Filter list" msgstr "フィルタ一覧" -#: ../../godmode/netflow/nf_edit_form.php:55 -#: ../../godmode/netflow/nf_edit_form.php:77 +#: ../../godmode/netflow/nf_edit_form.php:67 msgid "Add filter" msgstr "フィルタの追加" -#: ../../godmode/netflow/nf_edit_form.php:58 -msgid "Netflow Filter" -msgstr "Netflow フィルタ" +#: ../../godmode/netflow/nf_edit_form.php:181 +#: ../../operation/netflow/nf_live_view.php:261 +msgid "Src Ip Address" +msgstr "送信元 IP アドレス" -#: ../../godmode/netflow/nf_edit_form.php:188 -#: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:775 -#: ../../include/ajax/events.php:835 -msgid "Update filter" -msgstr "フィルタの更新" +#: ../../godmode/netflow/nf_edit_form.php:182 +#: ../../operation/netflow/nf_live_view.php:262 +msgid "Dst Ip Address" +msgstr "宛先 IP アドレス" -#: ../../godmode/netflow/nf_edit_form.php:235 -msgid "Filter:" -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 +msgid "Src Port" +msgstr "送信元ポート" -#: ../../godmode/netflow/nf_edit_form.php:239 -#: ../../operation/netflow/nf_live_view.php:414 +#: ../../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 +msgid "Dst Port" +msgstr "宛先ポート" + +#: ../../godmode/netflow/nf_edit_form.php:261 +msgid "Aggregate by" +msgstr "集約" + +#: ../../godmode/netflow/nf_edit_form.php:278 +#: ../../operation/netflow/nf_live_view.php:294 msgid "Dst Ip" msgstr "宛先 IP" -#: ../../godmode/netflow/nf_edit_form.php:239 -#: ../../operation/netflow/nf_live_view.php:414 +#: ../../godmode/netflow/nf_edit_form.php:286 +#: ../../operation/netflow/nf_live_view.php:294 msgid "" "Destination IP. A comma separated list of destination ip. If we leave the " "field blank, will show all ip. Example filter by ip:" @@ -35958,13 +36930,13 @@ msgstr "" "宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によ" "るフィルタ例:
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:242 -#: ../../operation/netflow/nf_live_view.php:422 +#: ../../godmode/netflow/nf_edit_form.php:290 +#: ../../operation/netflow/nf_live_view.php:302 msgid "Src Ip" msgstr "送信元IP" -#: ../../godmode/netflow/nf_edit_form.php:242 -#: ../../operation/netflow/nf_live_view.php:422 +#: ../../godmode/netflow/nf_edit_form.php:298 +#: ../../operation/netflow/nf_live_view.php:302 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" @@ -35972,15 +36944,8 @@ msgstr "" "カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IP" "によるフィルタ例:
25.46.157.214,160.253.135.249" -#: ../../godmode/netflow/nf_edit_form.php:245 -#: ../../godmode/netflow/nf_edit_form.php:258 -#: ../../operation/netflow/nf_live_view.php:350 -#: ../../operation/netflow/nf_live_view.php:433 -msgid "Dst Port" -msgstr "宛先ポート" - -#: ../../godmode/netflow/nf_edit_form.php:245 -#: ../../operation/netflow/nf_live_view.php:433 +#: ../../godmode/netflow/nf_edit_form.php:310 +#: ../../operation/netflow/nf_live_view.php:313 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" @@ -35988,15 +36953,8 @@ msgstr "" "宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。" "ポート 80 および 22 のフィルタ例:
80,22" -#: ../../godmode/netflow/nf_edit_form.php:248 -#: ../../godmode/netflow/nf_edit_form.php:257 -#: ../../operation/netflow/nf_live_view.php:349 -#: ../../operation/netflow/nf_live_view.php:441 -msgid "Src Port" -msgstr "送信元ポート" - -#: ../../godmode/netflow/nf_edit_form.php:248 -#: ../../operation/netflow/nf_live_view.php:441 +#: ../../godmode/netflow/nf_edit_form.php:322 +#: ../../operation/netflow/nf_live_view.php:321 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" @@ -36004,25 +36962,21 @@ msgstr "" "カンマ区切りの発信元ポート一覧です。何も入力しない場合は全てのポートを表示しま" "す。ポート 80 と 22 でのフィルタ例:
80,22" -#: ../../godmode/netflow/nf_edit_form.php:253 -#: ../../operation/netflow/nf_live_view.php:344 -msgid "Aggregate by" -msgstr "集約" - -#: ../../godmode/netflow/nf_edit_form.php:255 -#: ../../operation/netflow/nf_live_view.php:347 -msgid "Src Ip Address" -msgstr "送信元 IP アドレス" - -#: ../../godmode/netflow/nf_edit_form.php:256 -#: ../../operation/netflow/nf_live_view.php:348 -msgid "Dst Ip Address" -msgstr "宛先 IP アドレス" +#: ../../godmode/netflow/nf_edit_form.php:327 +msgid "Advanced filters" +msgstr "高度なフィルタ" #: ../../godmode/snmpconsole/snmp_trap_generator.php:38 msgid "SNMP Trap generator" msgstr "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 "SNMP" + #: ../../godmode/snmpconsole/snmp_trap_generator.php:68 msgid "Empty parameters" msgstr "パラメータが空です" @@ -36036,27 +36990,27 @@ msgstr "生成しました" msgid "Could not be generated: %s" msgstr "生成できません: %s" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:86 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:90 msgid "Host address" msgstr "ホストアドレス" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:96 -#: ../../include/functions_snmp_browser.php:727 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:102 +#: ../../include/functions_snmp_browser.php:738 msgid "Community" msgstr "コミュニティ" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:106 -#: ../../godmode/snmpconsole/snmp_alert.php:774 -#: ../../godmode/snmpconsole/snmp_alert.php:1263 -#: ../../include/class/SnmpConsole.class.php:338 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:114 +#: ../../godmode/snmpconsole/snmp_alert.php:800 +#: ../../godmode/snmpconsole/snmp_alert.php:1900 +#: ../../include/class/SnmpConsole.class.php:275 msgid "Enterprise String" msgstr "Enterprise文字列" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:136 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:159 msgid "SNMP Type" msgstr "SNMPタイプ" -#: ../../godmode/snmpconsole/snmp_trap_generator.php:169 +#: ../../godmode/snmpconsole/snmp_trap_generator.php:178 msgid "Generate trap" msgstr "トラップ生成" @@ -36066,7 +37020,7 @@ msgstr "アラート一覧" #: ../../godmode/snmpconsole/snmp_alert.php:118 #: ../../godmode/snmpconsole/snmp_filters.php:46 -#: ../../include/class/SnmpConsole.class.php:214 +#: ../../include/class/SnmpConsole.class.php:204 msgid "SNMP Console" msgstr "SNMP コンソール" @@ -36091,34 +37045,34 @@ msgstr "複製しました" msgid "There was a problem deleting the alert" msgstr "アラートの削除に失敗しました。" -#: ../../godmode/snmpconsole/snmp_alert.php:774 +#: ../../godmode/snmpconsole/snmp_alert.php:800 msgid "Matches substrings. End the string with $ for exact matches." msgstr "部分文字列に一致します。 完全に一致させるには、文字列を $ で終了します。" -#: ../../godmode/snmpconsole/snmp_alert.php:842 -#: ../../godmode/snmpconsole/snmp_alert.php:852 -#: ../../godmode/snmpconsole/snmp_alert.php:862 -#: ../../godmode/snmpconsole/snmp_alert.php:872 -#: ../../godmode/snmpconsole/snmp_alert.php:882 -#: ../../godmode/snmpconsole/snmp_alert.php:892 -#: ../../godmode/snmpconsole/snmp_alert.php:902 -#: ../../godmode/snmpconsole/snmp_alert.php:912 -#: ../../godmode/snmpconsole/snmp_alert.php:922 -#: ../../godmode/snmpconsole/snmp_alert.php:932 -#: ../../godmode/snmpconsole/snmp_alert.php:942 -#: ../../godmode/snmpconsole/snmp_alert.php:952 -#: ../../godmode/snmpconsole/snmp_alert.php:962 -#: ../../godmode/snmpconsole/snmp_alert.php:972 -#: ../../godmode/snmpconsole/snmp_alert.php:982 -#: ../../godmode/snmpconsole/snmp_alert.php:992 -#: ../../godmode/snmpconsole/snmp_alert.php:1002 -#: ../../godmode/snmpconsole/snmp_alert.php:1012 -#: ../../godmode/snmpconsole/snmp_alert.php:1022 -#: ../../godmode/snmpconsole/snmp_alert.php:1032 +#: ../../godmode/snmpconsole/snmp_alert.php:903 +#: ../../godmode/snmpconsole/snmp_alert.php:931 +#: ../../godmode/snmpconsole/snmp_alert.php:963 +#: ../../godmode/snmpconsole/snmp_alert.php:991 +#: ../../godmode/snmpconsole/snmp_alert.php:1023 +#: ../../godmode/snmpconsole/snmp_alert.php:1051 +#: ../../godmode/snmpconsole/snmp_alert.php:1083 +#: ../../godmode/snmpconsole/snmp_alert.php:1111 +#: ../../godmode/snmpconsole/snmp_alert.php:1143 +#: ../../godmode/snmpconsole/snmp_alert.php:1171 +#: ../../godmode/snmpconsole/snmp_alert.php:1203 +#: ../../godmode/snmpconsole/snmp_alert.php:1231 +#: ../../godmode/snmpconsole/snmp_alert.php:1263 +#: ../../godmode/snmpconsole/snmp_alert.php:1291 +#: ../../godmode/snmpconsole/snmp_alert.php:1323 +#: ../../godmode/snmpconsole/snmp_alert.php:1351 +#: ../../godmode/snmpconsole/snmp_alert.php:1383 +#: ../../godmode/snmpconsole/snmp_alert.php:1411 +#: ../../godmode/snmpconsole/snmp_alert.php:1443 +#: ../../godmode/snmpconsole/snmp_alert.php:1471 msgid "Variable bindings/Data" msgstr "変数バインディング/データ" -#: ../../godmode/snmpconsole/snmp_alert.php:1162 +#: ../../godmode/snmpconsole/snmp_alert.php:1743 msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Variable bindings/Datas." @@ -36126,42 +37080,42 @@ msgstr "" "説明、OID、カスタム値、SNMPエージェント(IP)、単一値、変数の割り当て・データの" "フィールドで検索します" -#: ../../godmode/snmpconsole/snmp_alert.php:1180 +#: ../../godmode/snmpconsole/snmp_alert.php:1811 msgid "Alert SNMP control filter" msgstr "SNMPアラート管理フィルタ" -#: ../../godmode/snmpconsole/snmp_alert.php:1232 +#: ../../godmode/snmpconsole/snmp_alert.php:1871 msgid "There are no SNMP alerts" msgstr "SNMP アラートはありません。" -#: ../../godmode/snmpconsole/snmp_alert.php:1266 +#: ../../godmode/snmpconsole/snmp_alert.php:1903 msgid "Custom Value/Enterprise String" msgstr "カスタム値/Enterprise文字列" -#: ../../godmode/snmpconsole/snmp_alert.php:1271 -#: ../../include/functions_reporting_html.php:5286 -#: ../../include/functions_reporting_html.php:5408 -#: ../../include/functions_treeview.php:454 +#: ../../godmode/snmpconsole/snmp_alert.php:1908 +#: ../../include/functions_reporting_html.php:5373 +#: ../../include/functions_reporting_html.php:5495 +#: ../../include/functions_treeview.php:441 msgid "Times fired" msgstr "通知回数" -#: ../../godmode/snmpconsole/snmp_alert.php:1271 +#: ../../godmode/snmpconsole/snmp_alert.php:1908 msgid "TF." msgstr "回数" -#: ../../godmode/snmpconsole/snmp_alert.php:1427 +#: ../../godmode/snmpconsole/snmp_alert.php:2067 msgid "ID Alert SNMP" msgstr "SNMPアラートID" -#: ../../godmode/snmpconsole/snmp_alert.php:1546 +#: ../../godmode/snmpconsole/snmp_alert.php:2225 msgid "Do you want delete this alert?" msgstr "このエージェントを削除しますか?" -#: ../../godmode/snmpconsole/snmp_alert.php:1561 +#: ../../godmode/snmpconsole/snmp_alert.php:2240 msgid "Do you want delete the selected alerts?" msgstr "選択したアラートを削除しますか?" -#: ../../godmode/snmpconsole/snmp_alert.php:1676 +#: ../../godmode/snmpconsole/snmp_alert.php:2355 msgid "Add action " msgstr "アクション追加 " @@ -36194,198 +37148,210 @@ msgstr "フィルタの作成に問題が発生しました。" msgid "There was a problem deleting the filter" msgstr "フィルタの削除で問題が発生しました。" -#: ../../godmode/snmpconsole/snmp_filters.php:221 -#: ../../godmode/snmpconsole/snmp_filters.php:231 +#: ../../godmode/snmpconsole/snmp_filters.php:210 +#: ../../godmode/snmpconsole/snmp_filters.php:211 +msgid "Click to add new filter" +msgstr "新規フィルタ追加" + +#: ../../godmode/snmpconsole/snmp_filters.php:234 +#: ../../godmode/snmpconsole/snmp_filters.php:244 msgid "" "This field contains a substring, could be part of a IP address, a numeric OID, " "or a plain substring" msgstr "このフィールドには、IPアドレス、OID、文字列の一部を入力します。" -#: ../../godmode/snmpconsole/snmp_filters.php:223 +#: ../../godmode/snmpconsole/snmp_filters.php:236 msgid "Click to remove the filter" msgstr "フィルタ削除" -#: ../../godmode/snmpconsole/snmp_filters.php:254 -#: ../../godmode/snmpconsole/snmp_filters.php:255 -msgid "Click to add new filter" -msgstr "新規フィルタ追加" +#: ../../godmode/snmpconsole/snmp_filters.php:353 +msgid "There are no SNMP Filters defined yet." +msgstr "SNMPフィルタがまだ定義されていません。" -#: ../../godmode/menu.php:63 +#: ../../godmode/menu.php:64 msgid "Network scan" msgstr "ネットワークスキャン" -#: ../../godmode/menu.php:65 +#: ../../godmode/menu.php:66 msgid "Custom network scan" msgstr "カスタムネットワークスキャン" -#: ../../godmode/menu.php:69 +#: ../../godmode/menu.php:70 msgid "Manage scan scripts" msgstr "スキャンスクリプト管理" -#: ../../godmode/menu.php:72 ../../godmode/wizards/HostDevices.class.php:204 +#: ../../godmode/menu.php:73 ../../godmode/wizards/HostDevices.class.php:204 msgid "Host & devices" msgstr "ホスト & デバイス" -#: ../../godmode/menu.php:106 +#: ../../godmode/menu.php:109 ../../godmode/category/category.php:85 +#: ../../godmode/category/edit_category.php:96 msgid "Module categories" msgstr "モジュールカテゴリ" -#: ../../godmode/menu.php:110 -msgid "Module types" -msgstr "モジュールタイプ" - -#: ../../godmode/menu.php:116 +#: ../../godmode/menu.php:119 msgid "Operating systems" msgstr "オペレーティングシステム" -#: ../../godmode/menu.php:137 +#: ../../godmode/menu.php:140 msgid "Manage agents groups" msgstr "エージェントグループ管理" -#: ../../godmode/menu.php:176 ../../include/class/ConfigPEN.class.php:337 -#: ../../include/class/ConfigPEN.class.php:345 +#: ../../godmode/menu.php:179 ../../include/class/ConfigPEN.class.php:339 +#: ../../include/class/ConfigPEN.class.php:347 msgid "Private Enterprise Numbers" msgstr "プライベートエンタープライズ番号" -#: ../../godmode/menu.php:180 +#: ../../godmode/menu.php:183 msgid "Remote components" msgstr "リモートコンポーネント" -#: ../../godmode/menu.php:206 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:209 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "エージェント操作" -#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "モジュール操作" -#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:211 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "プラグイン操作" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "ユーザ操作" -#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:216 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "アラート操作" -#: ../../godmode/menu.php:231 +#: ../../godmode/menu.php:234 msgid "Event filters" msgstr "イベントフィルタ" -#: ../../godmode/menu.php:236 ../../godmode/events/events.php:80 -#: ../../godmode/events/events.php:95 +#: ../../godmode/menu.php:239 ../../godmode/events/events.php:95 +#: ../../godmode/events/events.php:110 msgid "Custom columns" msgstr "カスタムカラム" -#: ../../godmode/menu.php:267 +#: ../../godmode/menu.php:270 msgid "List of Alerts" msgstr "アラート一覧" -#: ../../godmode/menu.php:282 ../../godmode/menu.php:283 +#: ../../godmode/menu.php:285 msgid "Special days list" msgstr "特別日一覧" -#: ../../godmode/menu.php:287 +#: ../../godmode/menu.php:290 msgid "SNMP alerts" msgstr "SNMPアラート" -#: ../../godmode/menu.php:304 +#: ../../godmode/menu.php:307 msgid "Manage servers" msgstr "サーバ管理" -#: ../../godmode/menu.php:315 +#: ../../godmode/menu.php:314 +msgid "Manage consoles" +msgstr "コンソール管理" + +#: ../../godmode/menu.php:325 msgid "Register Plugin" msgstr "プラグイン登録" -#: ../../godmode/menu.php:341 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:351 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "基本設定" -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1639 +#: ../../godmode/menu.php:376 ../../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 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:165 -#: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 +#: ../../godmode/menu.php:384 ../../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:377 +#: ../../godmode/menu.php:392 msgid "Websocket Engine" msgstr "Websocket エンジン" -#: ../../godmode/menu.php:380 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1725 +#: ../../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 msgid "External Tools" msgstr "外部ツール" -#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:295 +#: ../../godmode/menu.php:398 +msgid "Welcome Tips" +msgstr "ようこそ表示" + +#: ../../godmode/menu.php:402 ../../godmode/setup/setup.php:320 msgid "Map conections GIS" msgstr "GIS 利用マップ" -#: ../../godmode/menu.php:412 +#: ../../godmode/menu.php:430 msgid "Diagnostic info" msgstr "診断情報" -#: ../../godmode/menu.php:417 +#: ../../godmode/menu.php:435 ../../godmode/setup/news.php:43 msgid "Site news" msgstr "サイトニュース" -#: ../../godmode/menu.php:426 +#: ../../godmode/menu.php:444 msgid "DB Schema Check" msgstr "DB スキーマチェック" -#: ../../godmode/menu.php:429 +#: ../../godmode/menu.php:447 msgid "DB Interface" msgstr "DB インタフェース" -#: ../../godmode/menu.php:511 +#: ../../godmode/menu.php:456 ../../include/class/EventSound.class.php:230 +msgid "Accoustic console setup" +msgstr "アコースティックコンソールセットアップ" + +#: ../../godmode/menu.php:533 msgid "Extension manager view" msgstr "拡張マネージャ表示" -#: ../../godmode/menu.php:515 -msgid "Extension manager" -msgstr "拡張マネージャ" - -#: ../../godmode/menu.php:547 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:569 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "ワープアップデート" -#: ../../godmode/menu.php:552 +#: ../../godmode/menu.php:574 msgid "Update offline" msgstr "オフラインアップデート" -#: ../../godmode/menu.php:555 +#: ../../godmode/menu.php:577 msgid "Update online" msgstr "オンラインアップデート" -#: ../../godmode/menu.php:561 +#: ../../godmode/menu.php:583 msgid "Warp journal" msgstr "ワープ履歴" -#: ../../godmode/menu.php:570 +#: ../../godmode/menu.php:592 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "モジュールライブラリ" -#: ../../godmode/menu.php:577 +#: ../../godmode/menu.php:599 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 msgid "Categories" msgstr "分類" -#: ../../godmode/menu.php:586 -msgid "About" -msgstr "情報" - #: ../../godmode/gis_maps/configure_gis_map.php:86 #: ../../operation/gis_maps/gis_map.php:30 -#: ../../operation/gis_maps/render_view.php:130 +#: ../../operation/gis_maps/render_view.php:131 msgid "GIS Maps list" msgstr "GIS マップ一覧" @@ -36393,136 +37359,146 @@ msgstr "GIS マップ一覧" msgid "View GIS" msgstr "GIS 表示" -#: ../../godmode/gis_maps/configure_gis_map.php:106 +#: ../../godmode/gis_maps/configure_gis_map.php:107 msgid "GIS Maps builder" msgstr "GIS マップビルダ" -#: ../../godmode/gis_maps/configure_gis_map.php:196 +#: ../../godmode/gis_maps/configure_gis_map.php:120 ../../operation/menu.php:399 +#: ../../operation/gis_maps/gis_map.php:51 +#: ../../operation/gis_maps/render_view.php:193 +msgid "GIS Maps" +msgstr "GIS マップ" + +#: ../../godmode/gis_maps/configure_gis_map.php:207 msgid "Map successfully created" msgstr "マップを作成しました。" -#: ../../godmode/gis_maps/configure_gis_map.php:197 +#: ../../godmode/gis_maps/configure_gis_map.php:208 msgid "Map could not be created" msgstr "マップを作成できませんでした。" -#: ../../godmode/gis_maps/configure_gis_map.php:299 +#: ../../godmode/gis_maps/configure_gis_map.php:310 msgid "Map successfully update" msgstr "マップを更新しました。" -#: ../../godmode/gis_maps/configure_gis_map.php:300 +#: ../../godmode/gis_maps/configure_gis_map.php:311 msgid "Map could not be updated" msgstr "マップを更新できませんでした" -#: ../../godmode/gis_maps/configure_gis_map.php:353 +#: ../../godmode/gis_maps/configure_gis_map.php:364 msgid "Do you want to use the default data from the connection?" msgstr "利用マップのデフォルトデータを利用しますか。" -#: ../../godmode/gis_maps/configure_gis_map.php:387 +#: ../../godmode/gis_maps/configure_gis_map.php:398 msgid "The connection" msgstr "利用マップ" -#: ../../godmode/gis_maps/configure_gis_map.php:387 +#: ../../godmode/gis_maps/configure_gis_map.php:398 msgid "just added previously." msgstr "すでに追加されています。" -#: ../../godmode/gis_maps/configure_gis_map.php:455 +#: ../../godmode/gis_maps/configure_gis_map.php:466 msgid "Map Name" msgstr "マップ名" -#: ../../godmode/gis_maps/configure_gis_map.php:474 +#: ../../godmode/gis_maps/configure_gis_map.php:485 msgid "Add Map connection" msgstr "利用マップの追加" -#: ../../godmode/gis_maps/configure_gis_map.php:523 +#: ../../godmode/gis_maps/configure_gis_map.php:534 msgid "Default zoom" msgstr "デフォルトの拡大率" -#: ../../godmode/gis_maps/configure_gis_map.php:530 +#: ../../godmode/gis_maps/configure_gis_map.php:541 msgid "Center Latitude" msgstr "中心の緯度" -#: ../../godmode/gis_maps/configure_gis_map.php:533 +#: ../../godmode/gis_maps/configure_gis_map.php:544 msgid "Center Longitude" msgstr "中心の経度" -#: ../../godmode/gis_maps/configure_gis_map.php:536 +#: ../../godmode/gis_maps/configure_gis_map.php:547 msgid "Center Altitude" msgstr "中心の高度" -#: ../../godmode/gis_maps/configure_gis_map.php:539 +#: ../../godmode/gis_maps/configure_gis_map.php:550 msgid "Default Latitude" msgstr "デフォルトの緯度" -#: ../../godmode/gis_maps/configure_gis_map.php:542 +#: ../../godmode/gis_maps/configure_gis_map.php:553 msgid "Default Longitude" msgstr "デフォルトの経度" -#: ../../godmode/gis_maps/configure_gis_map.php:545 +#: ../../godmode/gis_maps/configure_gis_map.php:556 msgid "Default Altitude" msgstr "デフォルトの高度" -#: ../../godmode/gis_maps/configure_gis_map.php:552 -#: ../../godmode/setup/gis_step_2.php:396 +#: ../../godmode/gis_maps/configure_gis_map.php:563 +#: ../../godmode/setup/gis_step_2.php:416 msgid "Layers" msgstr "レイヤ" -#: ../../godmode/gis_maps/configure_gis_map.php:561 +#: ../../godmode/gis_maps/configure_gis_map.php:572 msgid "List of layers" msgstr "レイヤ一覧" -#: ../../godmode/gis_maps/configure_gis_map.php:562 +#: ../../godmode/gis_maps/configure_gis_map.php:573 msgid "New layer" msgstr "新規レイヤ" -#: ../../godmode/gis_maps/configure_gis_map.php:568 +#: ../../godmode/gis_maps/configure_gis_map.php:579 msgid "Layer name" msgstr "レイヤ名" -#: ../../godmode/gis_maps/configure_gis_map.php:570 +#: ../../godmode/gis_maps/configure_gis_map.php:581 msgid "Visible" msgstr "可視化" -#: ../../godmode/gis_maps/configure_gis_map.php:574 +#: ../../godmode/gis_maps/configure_gis_map.php:585 msgid "Show agents from group" msgstr "表示するエージェントのグループ" -#: ../../godmode/gis_maps/configure_gis_map.php:586 +#: ../../godmode/gis_maps/configure_gis_map.php:597 msgid "Add agent" msgstr "エージェント追加" -#: ../../godmode/gis_maps/configure_gis_map.php:608 +#: ../../godmode/gis_maps/configure_gis_map.php:619 msgid "List of Agents to be shown in the layer" msgstr "レイヤ内に表示されるエージェント一覧" -#: ../../godmode/gis_maps/configure_gis_map.php:639 +#: ../../godmode/gis_maps/configure_gis_map.php:650 msgid "Use the data of this agent" msgstr "このエージェントのデータを利用" -#: ../../godmode/gis_maps/configure_gis_map.php:647 +#: ../../godmode/gis_maps/configure_gis_map.php:658 msgid "List of groups to be shown in the layer" msgstr "レイヤーに表示されるグループの一覧" -#: ../../godmode/gis_maps/configure_gis_map.php:654 +#: ../../godmode/gis_maps/configure_gis_map.php:665 msgid "Save Layer" msgstr "レイヤの保存" -#: ../../godmode/gis_maps/configure_gis_map.php:670 -#: ../../godmode/gis_maps/configure_gis_map.php:677 +#: ../../godmode/gis_maps/configure_gis_map.php:679 +#: ../../godmode/gis_maps/configure_gis_map.php:686 msgid "Save map" msgstr "マップの保存" -#: ../../godmode/gis_maps/configure_gis_map.php:672 +#: ../../godmode/gis_maps/configure_gis_map.php:681 msgid "Update map" msgstr "マップの更新" -#: ../../godmode/gis_maps/configure_gis_map.php:1060 +#: ../../godmode/gis_maps/configure_gis_map.php:1072 msgid "Using data from" msgstr "次のデータを利用" -#: ../../godmode/gis_maps/configure_gis_map.php:1218 +#: ../../godmode/gis_maps/configure_gis_map.php:1230 msgid "Empty layer names are not supported" msgstr "空のレイヤ名には対応していません" +#: ../../godmode/massive/massive_copy_modules.php:188 +msgid "Copy modules" +msgstr "モジュールのコピー" + #: ../../godmode/massive/massive_copy_modules.php:193 msgid "Copy alerts" msgstr "アラートのコピー" @@ -36539,6 +37515,7 @@ msgstr "このエージェントにはアラートが定義されていません #: ../../godmode/massive/massive_copy_modules.php:292 #: ../../godmode/massive/massive_delete_modules.php:530 +#: ../../operation/agentes/interface_view.functions.php:115 msgid "Filter Agents" msgstr "エージェントフィルタ" @@ -36551,7 +37528,7 @@ msgid "No operation selected" msgstr "操作が選択されていません。" #: ../../godmode/massive/massive_copy_modules.php:569 -#: ../../include/functions_agents.php:845 +#: ../../include/functions_agents.php:881 msgid "No destiny agent(s) to copy" msgstr "コピー先エージェントがありません。" @@ -36615,7 +37592,7 @@ msgstr "一括モジュール削除" msgid "Bulk plugin edit" msgstr "一括プラグイン編集" -#: ../../godmode/massive/massive_operations.php:372 +#: ../../godmode/massive/massive_operations.php:412 #, php-format msgid "" "No changes have been made because they exceed the maximum allowed (%d). Make " @@ -36624,14 +37601,14 @@ msgstr "" "最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理" "者に連絡してください。" -#: ../../godmode/massive/massive_operations.php:400 +#: ../../godmode/massive/massive_operations.php:440 #, php-format msgid "This node is configured with centralized mode. To delete agents go to %s" msgstr "" "このノードは中央管理モードで設定されています。 エージェントを削除するには、%s " "に移動します" -#: ../../godmode/massive/massive_operations.php:423 +#: ../../godmode/massive/massive_operations.php:448 msgid "The blank fields will not be updated" msgstr "未入力の項目は更新されません。" @@ -36667,10 +37644,10 @@ msgstr "テンプレートがあるエージェント" #: ../../godmode/massive/massive_delete_action_alerts.php:240 #: ../../godmode/massive/massive_add_action_alerts.php:219 -#: ../../godmode/alerts/alert_templates.php:131 -#: ../../godmode/alerts/alert_templates.php:183 -#: ../../godmode/alerts/alert_templates.php:206 -#: ../../godmode/alerts/alert_templates.php:227 +#: ../../godmode/alerts/alert_templates.php:139 +#: ../../godmode/alerts/alert_templates.php:188 +#: ../../godmode/alerts/alert_templates.php:211 +#: ../../godmode/alerts/alert_templates.php:232 msgid "Alert templates" msgstr "アラートテンプレート" @@ -36685,15 +37662,21 @@ msgstr "不明および未初期化モジュールを表示" msgid "No module selected" msgstr "モジュールが選択されていません。" +#: ../../godmode/massive/massive_delete_modules.php:87 +#: ../../godmode/massive/massive_add_alerts.php:100 +#: ../../godmode/massive/massive_delete_agents.php:61 +#: ../../godmode/massive/massive_edit_agents.php:214 +#: ../../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 +msgid "No agents selected" +msgstr "エージェントが選択されていません。" + #: ../../godmode/massive/massive_delete_modules.php:156 msgid "There was an error deleting the modules, the operation has been cancelled" msgstr "モジュール削除でエラーが発生しました。操作はキャンセルされます。" -#: ../../godmode/massive/massive_delete_modules.php:318 -#: ../../godmode/massive/massive_edit_modules.php:304 -msgid "Selection mode" -msgstr "選択モード" - #: ../../godmode/massive/massive_delete_modules.php:319 #: ../../godmode/massive/massive_edit_modules.php:305 msgid "Select modules first " @@ -36716,7 +37699,7 @@ msgstr "このグループの全てのモジュールを選択" #: ../../godmode/massive/massive_delete_modules.php:436 #: ../../godmode/massive/massive_edit_modules.php:382 -#: ../../godmode/events/custom_events.php:116 +#: ../../godmode/events/custom_events.php:114 #: ../../include/functions_events.php:304 msgid "Module Status" msgstr "モジュールの状態" @@ -36747,7 +37730,7 @@ msgid "Select all agents" msgstr "全エージェントを選択" #: ../../godmode/massive/massive_delete_modules.php:595 -#: ../../godmode/massive/massive_edit_modules.php:1260 +#: ../../godmode/massive/massive_edit_modules.php:1275 msgid "Please, select an agent first" msgstr "エージェントを先に選択してください" @@ -36762,80 +37745,42 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報" "は読み取り専用です。管理するには %s に移動します。" -#: ../../godmode/massive/massive_edit_users.php:154 +#: ../../godmode/massive/massive_edit_users.php:153 #, php-format msgid "Users updated successfully (%s)" msgstr "ユーザを更新しました (%s)" -#: ../../godmode/massive/massive_edit_users.php:166 +#: ../../godmode/massive/massive_edit_users.php:165 #, php-format msgid "Users cannot be updated (%s)" msgstr "ユーザの更新ができませんでした (%s)" -#: ../../godmode/massive/massive_edit_users.php:210 +#: ../../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:12207 +#: ../../include/functions_reporting.php:12397 #: ../../operation/search_results.php:94 msgid "Users" msgstr "ユーザ" -#: ../../godmode/massive/massive_edit_users.php:341 -#: ../../operation/users/user_edit.php:522 -msgid "Event filter" -msgstr "イベントフィルタ" - #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:594 -msgid "Autorefresh" -msgstr "自動更新" - -#: ../../godmode/massive/massive_edit_users.php:380 -#: ../../operation/users/user_edit.php:595 +#: ../../operation/users/user_edit.php:646 msgid "This will activate autorefresh in selected pages" msgstr "選択したページで自動更新を有効にします" -#: ../../godmode/massive/massive_edit_users.php:419 -#: ../../operation/users/user_edit.php:630 -msgid "Full list of pages" -msgstr "全ページ一覧" - -#: ../../godmode/massive/massive_edit_users.php:428 -#: ../../godmode/massive/massive_edit_users.php:429 -#: ../../operation/users/user_edit.php:639 -#: ../../operation/users/user_edit.php:640 -msgid "Push selected pages into autorefresh list" -msgstr "選択したページを自動更新にする" - -#: ../../godmode/massive/massive_edit_users.php:438 -#: ../../godmode/massive/massive_edit_users.php:439 -#: ../../operation/users/user_edit.php:648 -#: ../../operation/users/user_edit.php:649 -msgid "Pop selected pages out of autorefresh list" -msgstr "選択したページを自動更新から外す" - -#: ../../godmode/massive/massive_edit_users.php:444 -#: ../../operation/users/user_edit.php:654 +#: ../../godmode/massive/massive_edit_users.php:443 +#: ../../operation/users/user_edit.php:705 msgid "List of pages with autorefresh" msgstr "自動更新ページ一覧" -#: ../../godmode/massive/massive_edit_users.php:453 -#: ../../operation/users/user_edit.php:663 +#: ../../godmode/massive/massive_edit_users.php:452 +#: ../../operation/users/user_edit.php:714 msgid "Time autorefresh" msgstr "自動更新時間" -#: ../../godmode/massive/massive_edit_users.php:455 -#: ../../operation/users/user_edit.php:665 -msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, " -"needing to enable the autorefresh first" -msgstr "" -"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要" -"があります。" - #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:540 +#: ../../operation/agentes/alerts_status.php:566 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "アラートが選択されていません。" @@ -36973,6 +37918,10 @@ msgstr "エージェントID: %s はカスタムフィールド (%s) を更新 msgid "Agent ID: %s cannot be updated %s secondary groups (%s)" msgstr "エージェントID: %s は %s セカンダリグループ (%s) を更新できません" +#: ../../godmode/massive/massive_edit_agents.php:668 +msgid "Cascade protection" +msgstr "関連障害検知抑制" + #: ../../godmode/massive/massive_edit_agents.php:940 msgid "" "If the remote configuration is enabled, it will also go into standby mode when " @@ -36981,6 +37930,7 @@ msgstr "" "リモート設定が有効になっている場合、無効にするとスタンバイモードになります。" #: ../../godmode/massive/massive_edit_agents.php:953 +#: ../../include/class/EventSound.class.php:344 msgid "Active" msgstr "有効" @@ -36997,6 +37947,10 @@ msgstr "状態不明" msgid "Bad" msgstr "障害" +#: ../../godmode/massive/massive_edit_agents.php:1072 +msgid "Ignore new GIS data:" +msgstr "新たな GIS データを無視する:" + #: ../../godmode/massive/massive_edit_agents.php:1110 msgid "The agent still runs but the alerts and events will be stop" msgstr "エージェントは実行しますが、アラートとイベントは停止します" @@ -37051,16 +38005,29 @@ 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:405 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:419 msgid "Filter agents" msgstr "エージェントフィルタ" -#: ../../godmode/alerts/configure_alert_command.php:60 +#: ../../godmode/massive/massive_edit_modules.php:811 +msgid "SMNP community" +msgstr "SNMPコミュニティ" + +#: ../../godmode/consoles/consoles.php:59 +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 " +"registered." +msgstr "" +"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを" +"定義し、登録のための cron が実行されるまで待つ必要があります。" + +#: ../../godmode/alerts/configure_alert_command.php:67 msgid "Configure alert command" msgstr "コマンドの作成" -#: ../../godmode/alerts/configure_alert_command.php:196 -#: ../../godmode/alerts/alert_commands.php:730 +#: ../../godmode/alerts/configure_alert_command.php:201 +#: ../../godmode/alerts/alert_commands.php:737 #, php-format msgid "" "This node is configured with centralized mode. All alert commands information " @@ -37069,40 +38036,31 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読" "み取り専用です。管理するには %s に移動します。" -#: ../../godmode/alerts/configure_alert_command.php:207 -msgid "Update Command" -msgstr "コマンドの更新" - -#: ../../godmode/alerts/configure_alert_command.php:207 -#: ../../godmode/alerts/configure_alert_action.php:275 -msgid "Create Command" -msgstr "コマンドの作成" - -#: ../../godmode/alerts/configure_alert_command.php:297 +#: ../../godmode/alerts/configure_alert_command.php:304 #, php-format msgid "Field %s description" msgstr "フィールド %s の説明" -#: ../../godmode/alerts/configure_alert_command.php:325 +#: ../../godmode/alerts/configure_alert_command.php:339 #, php-format msgid "Field %s values" msgstr "フィールド %s の値" -#: ../../godmode/alerts/configure_alert_command.php:327 +#: ../../godmode/alerts/configure_alert_command.php:340 msgid "value1,tag1;value2,tag2;value3,tag3" msgstr "値1,タグ1;値2,タグ2;値3,タグ3" -#: ../../godmode/alerts/configure_alert_command.php:363 +#: ../../godmode/alerts/configure_alert_command.php:365 msgid "Hide" msgstr "隠す" -#: ../../godmode/alerts/alert_actions.php:74 -#: ../../include/functions_reporting.php:3122 +#: ../../godmode/alerts/alert_actions.php:79 +#: ../../include/functions_reporting.php:3226 msgid "Alert actions" msgstr "アクション" -#: ../../godmode/alerts/alert_actions.php:222 -#: ../../godmode/alerts/configure_alert_action.php:120 +#: ../../godmode/alerts/alert_actions.php:225 +#: ../../godmode/alerts/configure_alert_action.php:132 #, php-format msgid "" "This node is configured with centralized mode. All alert actions information " @@ -37111,13 +38069,13 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は" "読み取り専用です。管理するには %s に移動します。" -#: ../../godmode/alerts/alert_actions.php:396 +#: ../../godmode/alerts/alert_actions.php:421 msgid "" "You cannot edit this action, You don't have the permission to edit All group." msgstr "" "このアクションは編集できません。'全て' グループを編集する権限がありません。" -#: ../../godmode/alerts/alert_actions.php:407 +#: ../../godmode/alerts/alert_actions.php:432 msgid "" "The action and the command associated with it do not have the same group. " "Please contact an administrator to fix it." @@ -37125,29 +38083,33 @@ msgstr "" "アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連" "絡して修正してください。" -#: ../../godmode/alerts/alert_actions.php:465 +#: ../../godmode/alerts/alert_actions.php:496 msgid "No alert actions configured" msgstr "アクションが設定されていません。" -#: ../../godmode/alerts/alert_list.list.php:133 +#: ../../godmode/alerts/alert_list.list.php:141 msgid "Field content" msgstr "フィールドの内容" -#: ../../godmode/alerts/alert_list.list.php:145 +#: ../../godmode/alerts/alert_list.list.php:168 #: ../../mobile/operation/alerts.php:64 -#: ../../operation/agentes/alerts_status.functions.php:95 +#: ../../operation/agentes/alerts_status.functions.php:97 msgid "All (Enabled)" msgstr "全て(有効状態のもの)" -#: ../../godmode/alerts/alert_list.list.php:148 +#: ../../godmode/alerts/alert_list.list.php:171 #: ../../mobile/operation/alerts.php:67 -#: ../../include/class/SnmpConsole.class.php:541 -#: ../../operation/agentes/alerts_status.functions.php:98 +#: ../../include/class/SnmpConsole.class.php:509 +#: ../../operation/agentes/alerts_status.functions.php:100 msgid "Not fired" msgstr "未通知" -#: ../../godmode/alerts/alert_list.list.php:676 -#: ../../godmode/alerts/alert_view.php:317 +#: ../../godmode/alerts/alert_list.list.php:259 +msgid "Alert control filter" +msgstr "アラートフィルタ" + +#: ../../godmode/alerts/alert_list.list.php:748 +#: ../../godmode/alerts/alert_view.php:323 msgid "" "The default actions will be executed every time that the alert is fired and no " "other action is executed" @@ -37155,12 +38117,12 @@ msgstr "" "他のアクションが無い場合に、アラートが発生するたびに実行されるデフォルトのアク" "ション。" -#: ../../godmode/alerts/alert_list.list.php:944 +#: ../../godmode/alerts/alert_list.list.php:1061 msgid "View alert advanced details" msgstr "アラートの拡張詳細表示" -#: ../../godmode/alerts/alert_list.list.php:960 -#: ../../include/functions_reporting_html.php:3347 +#: ../../godmode/alerts/alert_list.list.php:1081 +#: ../../include/functions_reporting_html.php:3441 msgid "No alerts defined" msgstr "アラートが定義されていません" @@ -37187,11 +38149,11 @@ msgstr "プレーンテキストのみでのメール送信" msgid "Text/html" msgstr "Text/html" -#: ../../godmode/alerts/alert_commands.php:561 +#: ../../godmode/alerts/alert_commands.php:563 msgid "Permissions warning" msgstr "権限の警告" -#: ../../godmode/alerts/alert_commands.php:564 +#: ../../godmode/alerts/alert_commands.php:566 msgid "" "Command management is limited to administrator users or user profiles with " "permissions PM" @@ -37199,29 +38161,29 @@ msgstr "" "コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられた" "ユーザに制限されています" -#: ../../godmode/alerts/alert_commands.php:581 +#: ../../godmode/alerts/alert_commands.php:590 msgid "Alert commands" msgstr "アラートコマンド" -#: ../../godmode/alerts/alert_commands.php:650 +#: ../../godmode/alerts/alert_commands.php:657 #: ../../include/functions_alerts.php:2659 msgid "No name specified" msgstr "名前が指定されていません" -#: ../../godmode/alerts/alert_commands.php:654 +#: ../../godmode/alerts/alert_commands.php:661 #: ../../include/functions_alerts.php:2654 msgid "No command specified" msgstr "コマンドが指定されていません。" -#: ../../godmode/alerts/alert_commands.php:706 +#: ../../godmode/alerts/alert_commands.php:713 msgid " (copy)" msgstr " (コピー)" -#: ../../godmode/alerts/alert_commands.php:823 +#: ../../godmode/alerts/alert_commands.php:830 msgid "No alert commands configured" msgstr "アラートコマンドが設定されていません" -#: ../../godmode/alerts/alert_templates.php:268 +#: ../../godmode/alerts/alert_templates.php:273 #, php-format msgid "" "This node is configured with centralized mode. All alert templates information " @@ -37230,7 +38192,7 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報" "は読み取り専用です。管理するには %s に移動します。" -#: ../../godmode/alerts/alert_templates.php:413 +#: ../../godmode/alerts/alert_templates.php:438 msgid "" "You cannot edit this alert template, You don't have the permission to edit All " "group." @@ -37238,44 +38200,42 @@ msgstr "" "このアラートテンプレートを編集することはできません。'全て' グループを編集する権" "限がありません。" -#: ../../godmode/alerts/alert_templates.php:474 +#: ../../godmode/alerts/alert_templates.php:505 msgid "No alert templates defined" msgstr "アラートテンプレートが定義されていません" -#: ../../godmode/alerts/configure_alert_action.php:74 -#: ../../godmode/alerts/configure_alert_action.php:87 +#: ../../godmode/alerts/configure_alert_action.php:81 +#: ../../godmode/alerts/configure_alert_action.php:101 msgid "Configure alert action" msgstr "アクションの作成" -#: ../../godmode/alerts/configure_alert_action.php:167 -msgid "Update Action" -msgstr "アクションの更新" - -#: ../../godmode/alerts/configure_alert_action.php:169 -#: ../../godmode/alerts/alert_list.builder.php:136 -#: ../../include/class/AgentsAlerts.class.php:332 -msgid "Create Action" -msgstr "アクションの作成" - -#: ../../godmode/alerts/configure_alert_action.php:204 +#: ../../godmode/alerts/configure_alert_action.php:207 msgid "This action may stop working, if you change its name." msgstr "名前を変更すると、このアクションは動作を停止します。" -#: ../../godmode/alerts/configure_alert_action.php:306 +#: ../../godmode/alerts/configure_alert_action.php:262 +msgid "Create Command" +msgstr "コマンドの作成" + +#: ../../godmode/alerts/configure_alert_action.php:320 +msgid "Triggering" +msgstr "発報" + +#: ../../godmode/alerts/configure_alert_action.php:325 msgid "Recovery" msgstr "復旧通知" -#: ../../godmode/alerts/configure_alert_action.php:310 -#: ../../godmode/alerts/alert_view.php:527 -#: ../../godmode/alerts/alert_view.php:654 ../../godmode/servers/plugin.php:415 +#: ../../godmode/alerts/configure_alert_action.php:330 +#: ../../godmode/alerts/alert_view.php:533 +#: ../../godmode/alerts/alert_view.php:660 ../../godmode/servers/plugin.php:513 msgid "Command preview" msgstr "実行されるコマンドのプレビュー" -#: ../../godmode/alerts/configure_alert_action.php:330 +#: ../../godmode/alerts/configure_alert_action.php:362 msgid "Create workunit on recovery" msgstr "リカバリ時のワークユニットを作成" -#: ../../godmode/alerts/configure_alert_action.php:331 +#: ../../godmode/alerts/configure_alert_action.php:363 msgid "" "If closed status is set on recovery, a workunit will be added to the ticket in " "Integria IMS rather that closing the ticket." @@ -37283,24 +38243,24 @@ msgstr "" "リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットを" "クローズするのではなく、Integria IMS のチケットに追加されます。" -#: ../../godmode/alerts/configure_alert_template.php:99 -#: ../../godmode/alerts/configure_alert_template.php:123 -#: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../include/functions_menu.php:494 +#: ../../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 msgid "Configure alert template" msgstr "アラートテンプレート設定" -#: ../../godmode/alerts/configure_alert_template.php:250 -#: ../../godmode/alerts/configure_alert_template.php:254 +#: ../../godmode/alerts/configure_alert_template.php:267 +#: ../../godmode/alerts/configure_alert_template.php:271 msgid "Conditions" msgstr "状態" -#: ../../godmode/alerts/configure_alert_template.php:271 -#: ../../godmode/alerts/configure_alert_template.php:275 +#: ../../godmode/alerts/configure_alert_template.php:288 +#: ../../godmode/alerts/configure_alert_template.php:292 msgid "Advanced fields" msgstr "拡張フィールド" -#: ../../godmode/alerts/configure_alert_template.php:419 +#: ../../godmode/alerts/configure_alert_template.php:436 #, php-format msgid "" "This node is configured with centralized mode. All alerts templates " @@ -37309,29 +38269,11 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報" "は読み取り専用です。 管理するには、%s に移動します。" -#: ../../godmode/alerts/configure_alert_template.php:531 +#: ../../godmode/alerts/configure_alert_template.php:548 msgid "No template name specified" msgstr "テンプレート名が指定されていません" -#: ../../godmode/alerts/configure_alert_template.php:607 -#: ../../godmode/alerts/alert_list.builder.php:169 -#: ../../include/class/AgentsAlerts.class.php:379 -msgid "Create Template" -msgstr "テンプレートの作成" - -#: ../../godmode/alerts/configure_alert_template.php:712 -msgid "Reset counter for non-sustained alerts" -msgstr "アラートが継続しない場合にカウンターをリセット" - -#: ../../godmode/alerts/configure_alert_template.php:714 -msgid "" -"Enable this option if you want the counter to be reset when the alert is not " -"being fired consecutively, even if it's within the time threshold" -msgstr "" -"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタ" -"をリセットしたい場合にこのオプションを有効化します。" - -#: ../../godmode/alerts/configure_alert_template.php:788 +#: ../../godmode/alerts/configure_alert_template.php:722 msgid "" "Unless they're left blank, the fields from the action will override those set " "on the template." @@ -37339,55 +38281,67 @@ msgstr "" "空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が" "優先されます。" -#: ../../godmode/alerts/configure_alert_template.php:792 +#: ../../godmode/alerts/configure_alert_template.php:767 +msgid "Reset counter for non-sustained alerts" +msgstr "アラートが継続しない場合にカウンターをリセット" + +#: ../../godmode/alerts/configure_alert_template.php:768 +msgid "" +"Enable this option if you want the counter to be reset when the alert is not " +"being fired consecutively, even if it's within the time threshold" +msgstr "" +"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタ" +"をリセットしたい場合にこのオプションを有効化します。" + +#: ../../godmode/alerts/configure_alert_template.php:818 msgid "Condition type" msgstr "条件種別" -#: ../../godmode/alerts/configure_alert_template.php:809 +#: ../../godmode/alerts/configure_alert_template.php:832 msgid "Trigger when matches the value" msgstr "以下の値にマッチしたら、条件を満たしたと判断する。" -#: ../../godmode/alerts/configure_alert_template.php:832 +#: ../../godmode/alerts/configure_alert_template.php:853 msgid "The regular expression is valid" msgstr "この正規表現は正しいです。" -#: ../../godmode/alerts/configure_alert_template.php:842 +#: ../../godmode/alerts/configure_alert_template.php:862 msgid "The regular expression is not valid" msgstr "この正規表現は間違っています。" -#: ../../godmode/alerts/configure_alert_template.php:919 +#: ../../godmode/alerts/configure_alert_template.php:939 msgid "Recovery fields" msgstr "復旧フィールド" -#: ../../godmode/alerts/configure_alert_template.php:1136 +#: ../../godmode/alerts/configure_alert_template.php:1167 msgid "No wizard" msgstr "ウィザードがありません" -#: ../../godmode/alerts/configure_alert_template.php:1216 -#: ../../godmode/alerts/alert_view.php:166 ../../include/functions_ui.php:1340 +#: ../../godmode/alerts/configure_alert_template.php:1266 +#: ../../godmode/alerts/alert_view.php:172 ../../include/functions_ui.php:1504 msgid "The alert would fire when the value matches " msgstr "" "取得した値が にマッチした場合、アラートを発生させま" "す。" -#: ../../godmode/alerts/configure_alert_template.php:1217 +#: ../../godmode/alerts/configure_alert_template.php:1267 #, php-format msgid "The alert would fire when the value doesn\\'t match %s" msgstr "値が %s にマッチしなかったときにアラートが発報します" -#: ../../godmode/alerts/configure_alert_template.php:1218 -#: ../../godmode/alerts/alert_view.php:175 ../../include/functions_ui.php:1329 +#: ../../godmode/alerts/configure_alert_template.php:1268 +#: ../../godmode/alerts/alert_view.php:181 ../../include/functions_ui.php:1493 msgid "The alert would fire when the value is " msgstr "取得した値が の場合、アラートを発生させます。" -#: ../../godmode/alerts/configure_alert_template.php:1219 -#: ../../godmode/alerts/alert_view.php:180 ../../include/functions_ui.php:1334 +#: ../../godmode/alerts/configure_alert_template.php:1269 +#: ../../godmode/alerts/alert_view.php:186 ../../include/functions_ui.php:1498 msgid "The alert would fire when the value is not " msgstr "" "取得した値が 以外の場合、アラートを発生させます。" -#: ../../godmode/alerts/configure_alert_template.php:1220 -#: ../../godmode/alerts/alert_view.php:187 ../../include/functions_ui.php:1352 +#: ../../godmode/alerts/configure_alert_template.php:1270 +#: ../../godmode/alerts/alert_view.php:193 ../../include/functions_ui.php:1516 msgid "" "The alert would fire when the value is between and " "" @@ -37395,7 +38349,7 @@ msgstr "" "取得した値が の間になった" "ら、アラートを発生させます。" -#: ../../godmode/alerts/configure_alert_template.php:1221 +#: ../../godmode/alerts/configure_alert_template.php:1271 msgid "" "The alert would fire when the value is not between and " "" @@ -37403,51 +38357,51 @@ msgstr "" "値が の間にない場合、アラートが発" "生します。" -#: ../../godmode/alerts/configure_alert_template.php:1222 -#: ../../godmode/alerts/alert_view.php:200 +#: ../../godmode/alerts/configure_alert_template.php:1272 +#: ../../godmode/alerts/alert_view.php:206 msgid "The alert would fire when the value is below " msgstr "値が より小さかったときにアラートが発報します" -#: ../../godmode/alerts/configure_alert_template.php:1223 -#: ../../godmode/alerts/alert_view.php:205 +#: ../../godmode/alerts/configure_alert_template.php:1273 +#: ../../godmode/alerts/alert_view.php:211 msgid "The alert would fire when the value is above " msgstr "値が を超えたときにアラートが発報されます" -#: ../../godmode/alerts/configure_alert_template.php:1224 -#: ../../godmode/alerts/alert_view.php:218 ../../include/functions_ui.php:1371 +#: ../../godmode/alerts/configure_alert_template.php:1274 +#: ../../godmode/alerts/alert_view.php:224 ../../include/functions_ui.php:1535 msgid "The alert would fire when the module is in warning status" msgstr "該当モジュールが警告状態になったら、アラートを発生させます。" -#: ../../godmode/alerts/configure_alert_template.php:1225 -#: ../../godmode/alerts/alert_view.php:222 ../../include/functions_ui.php:1376 +#: ../../godmode/alerts/configure_alert_template.php:1275 +#: ../../godmode/alerts/alert_view.php:228 ../../include/functions_ui.php:1540 msgid "The alert would fire when the module is in critical status" msgstr "該当モジュールが障害になったら、アラートを発生させます。" -#: ../../godmode/alerts/configure_alert_template.php:1226 -#: ../../godmode/alerts/alert_view.php:211 +#: ../../godmode/alerts/configure_alert_template.php:1276 +#: ../../godmode/alerts/alert_view.php:217 msgid "The alert would fire when the module value changes" msgstr "モジュールの値が変化したときにアラートが上がります。" -#: ../../godmode/alerts/configure_alert_template.php:1227 -#: ../../godmode/alerts/alert_view.php:213 +#: ../../godmode/alerts/configure_alert_template.php:1277 +#: ../../godmode/alerts/alert_view.php:219 msgid "The alert would fire when the module value does not change" msgstr "モジュールの値が変化しなかったときにアラートが上がります。" -#: ../../godmode/alerts/configure_alert_template.php:1228 -#: ../../godmode/alerts/alert_view.php:230 +#: ../../godmode/alerts/configure_alert_template.php:1278 +#: ../../godmode/alerts/alert_view.php:236 msgid "The alert would fire when the module is in unknown status" msgstr "モジュールが不明状態になるとアラートが発生します。" -#: ../../godmode/alerts/configure_alert_template.php:1229 +#: ../../godmode/alerts/configure_alert_template.php:1279 msgid "The alert template cannot have the same value for min and max thresholds." msgstr "アラートテンプレートは最小と最大の閾値に同じ値を設定できません。" -#: ../../godmode/alerts/configure_alert_template.php:1230 -#: ../../godmode/alerts/alert_view.php:226 +#: ../../godmode/alerts/configure_alert_template.php:1280 +#: ../../godmode/alerts/alert_view.php:232 msgid "The alert would fire when the module is in not normal status" msgstr "モジュールが正常状態でない場合にアラートが発報されます。" -#: ../../godmode/alerts/configure_alert_template.php:1407 +#: ../../godmode/alerts/configure_alert_template.php:1457 msgid "" "The alert would fire when the module is in unknown status. Warning: " "unknown_updates of pandora_server.conf must be equal to 1" @@ -37455,30 +38409,25 @@ msgstr "" "モジュールのステータスが不明の場合、アラートが発生します。 警告: " "pandora_server.conf の unknown_updates を 1 にする必要があります" -#: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:280 -#: ../../include/functions_events.php:4354 -msgid "Alert details" -msgstr "アラート詳細" - -#: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84 -#: ../../godmode/alerts/alert_list.php:505 +#: ../../godmode/alerts/alert_view.php:89 ../../godmode/alerts/alert_view.php:90 +#: ../../godmode/alerts/alert_list.php:487 msgid "List alerts" msgstr "アラート一覧" -#: ../../godmode/alerts/alert_view.php:128 ../../mobile/operation/alerts.php:125 +#: ../../godmode/alerts/alert_view.php:134 ../../mobile/operation/alerts.php:125 #: ../../mobile/operation/alerts.php:126 ../../mobile/operation/alerts.php:256 #: ../../mobile/operation/alerts.php:257 msgid "Stand by" msgstr "スタンバイ" -#: ../../godmode/alerts/alert_view.php:168 ../../include/functions_ui.php:1343 +#: ../../godmode/alerts/alert_view.php:174 ../../include/functions_ui.php:1507 msgid "" "The alert would fire when the value doesn't match " msgstr "" "取得した値が にマッチしない場合、アラートを発生させ" "ます。" -#: ../../godmode/alerts/alert_view.php:191 ../../include/functions_ui.php:1355 +#: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519 msgid "" "The alert would fire when the value is not between " "and " @@ -37486,16 +38435,16 @@ msgstr "" "取得した値が の間を外れた" "ら、アラートを発生させます。" -#: ../../godmode/alerts/alert_view.php:281 +#: ../../godmode/alerts/alert_view.php:287 msgid "Firing conditions" msgstr "発報条件" -#: ../../godmode/alerts/alert_view.php:305 -#: ../../godmode/alerts/alert_view.php:339 +#: ../../godmode/alerts/alert_view.php:311 +#: ../../godmode/alerts/alert_view.php:345 msgid "Every time that the alert is fired" msgstr "アラート発生のたび" -#: ../../godmode/alerts/alert_view.php:385 +#: ../../godmode/alerts/alert_view.php:391 msgid "" "Select the desired action and mode to see the Firing/Recovery fields for this " "action" @@ -37503,23 +38452,23 @@ msgstr "" "このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを" "選択してください。" -#: ../../godmode/alerts/alert_view.php:446 +#: ../../godmode/alerts/alert_view.php:452 msgid "Template fields" msgstr "テンプレートフィールド" -#: ../../godmode/alerts/alert_view.php:448 +#: ../../godmode/alerts/alert_view.php:454 msgid "Triggering fields configured in template" msgstr "テンプレートで設定したトリガーフィールド" -#: ../../godmode/alerts/alert_view.php:542 +#: ../../godmode/alerts/alert_view.php:548 msgid "The alert recovering is disabled on this template." msgstr "このテンプレートでは復旧アラートが無効です。" -#: ../../godmode/alerts/alert_view.php:558 +#: ../../godmode/alerts/alert_view.php:564 msgid "Recovering fields" msgstr "復旧フィールド" -#: ../../godmode/alerts/alert_view.php:560 +#: ../../godmode/alerts/alert_view.php:566 msgid "" "Fields passed to the command executed by this action when the alert is " "recovered" @@ -37527,35 +38476,45 @@ msgstr "" "アラートが復旧したときに、このアクションによって実行されるコマンドに渡される" "フィールド" -#: ../../godmode/alerts/alert_view.php:574 +#: ../../godmode/alerts/alert_view.php:580 msgid "Template recovery fields" msgstr "テンプレート復旧フィールド" -#: ../../godmode/alerts/alert_view.php:576 +#: ../../godmode/alerts/alert_view.php:582 msgid "Recovery fields configured in alert template" msgstr "アラートテンプレートで設定した復旧フィールド" -#: ../../godmode/alerts/alert_view.php:579 +#: ../../godmode/alerts/alert_view.php:585 msgid "Action recovery fields" msgstr "アクション復旧フィールド" -#: ../../godmode/alerts/alert_view.php:581 +#: ../../godmode/alerts/alert_view.php:587 msgid "Recovery fields configured in alert action" msgstr "アラートアクションで設定した復旧フィールド" -#: ../../godmode/alerts/alert_view.php:584 +#: ../../godmode/alerts/alert_view.php:590 msgid "Executed on recovery" msgstr "復旧時の実行" -#: ../../godmode/alerts/alert_view.php:586 +#: ../../godmode/alerts/alert_view.php:592 msgid "Fields used on execution when the alert is recovered" msgstr "アラートが復旧した時に実行に使われるフィールド" -#: ../../godmode/alerts/alert_list.builder.php:91 +#: ../../godmode/alerts/alert_list.builder.php:81 msgid "Latest value" msgstr "最新の値" -#: ../../godmode/alerts/alert_list.builder.php:201 +#: ../../godmode/alerts/alert_list.builder.php:102 +#: ../../include/class/AgentsAlerts.class.php:342 +msgid "Create Action" +msgstr "アクションの作成" + +#: ../../godmode/alerts/alert_list.builder.php:141 +#: ../../include/class/AgentsAlerts.class.php:391 +msgid "Create Template" +msgstr "テンプレートの作成" + +#: ../../godmode/alerts/alert_list.builder.php:199 msgid "Finish and view cluster" msgstr "終了しクラスタを見る" @@ -37567,76 +38526,81 @@ msgstr "すでに追加されています。" msgid "No template specified" msgstr "テンプレートが指定されていません" -#: ../../godmode/alerts/alert_list.php:509 +#: ../../godmode/alerts/alert_list.php:491 msgid "Builder alert" msgstr "アラート作成" -#: ../../godmode/setup/license.php:51 +#: ../../godmode/setup/license.php:50 msgid "License management" msgstr "ライセンス管理" -#: ../../godmode/setup/license.php:125 +#: ../../godmode/setup/license.php:127 msgid "Error while connecting to licence server." msgstr "ライセンスサーバへの接続エラー" -#: ../../godmode/setup/license.php:126 +#: ../../godmode/setup/license.php:128 msgid "Invalid response while validating license." msgstr "ライセンスの検証に失敗しました。" -#: ../../godmode/setup/license.php:147 +#: ../../godmode/setup/license.php:154 msgid "Licence" msgstr "ライセンス" -#: ../../godmode/setup/license.php:155 -#: ../../include/class/Diagnostics.class.php:1155 +#: ../../godmode/setup/license.php:158 +#: ../../include/class/Diagnostics.class.php:1175 msgid "Customer key" msgstr "カスタマーキー" -#: ../../godmode/setup/license.php:161 -#: ../../include/class/Diagnostics.class.php:1163 +#: ../../godmode/setup/license.php:183 +#: ../../include/class/Diagnostics.class.php:1183 msgid "Platform Limit" msgstr "ライセンス数上限" -#: ../../godmode/setup/license.php:162 ../../godmode/setup/license.php:165 -#: ../../godmode/setup/license.php:168 ../../godmode/setup/license.php:171 +#: ../../godmode/setup/license.php:192 ../../godmode/setup/license.php:205 +#: ../../godmode/setup/license.php:218 ../../godmode/setup/license.php:231 msgid "agents" msgstr "エージェント" -#: ../../godmode/setup/license.php:162 ../../godmode/setup/license.php:165 -#: ../../godmode/setup/license.php:168 ../../godmode/setup/license.php:171 -#: ../../operation/tree.php:158 +#: ../../godmode/setup/license.php:192 ../../godmode/setup/license.php:205 +#: ../../godmode/setup/license.php:218 ../../godmode/setup/license.php:231 +#: ../../operation/tree.php:157 msgid "modules" msgstr "モジュール" -#: ../../godmode/setup/license.php:164 -#: ../../include/class/Diagnostics.class.php:1167 +#: ../../godmode/setup/license.php:196 +#: ../../include/class/Diagnostics.class.php:1187 msgid "Current Platform Count" msgstr "現在の利用数" -#: ../../godmode/setup/license.php:167 -#: ../../include/class/Diagnostics.class.php:1171 +#: ../../godmode/setup/license.php:209 +#: ../../include/class/Diagnostics.class.php:1191 msgid "Current Platform Count (enabled: items)" msgstr "現在の利用数 (有効のもの)" -#: ../../godmode/setup/license.php:170 -#: ../../include/class/Diagnostics.class.php:1175 +#: ../../godmode/setup/license.php:222 +#: ../../include/class/Diagnostics.class.php:1195 msgid "Current Platform Count (disabled: items)" msgstr "現在の利用数 (無効のもの)" -#: ../../godmode/setup/license.php:173 -#: ../../include/class/Diagnostics.class.php:1179 +#: ../../godmode/setup/license.php:235 +#: ../../include/class/Diagnostics.class.php:1199 msgid "License Mode" msgstr "ライセンスモード" -#: ../../godmode/setup/license.php:176 +#: ../../godmode/setup/license.php:248 msgid "NMS" msgstr "NMS" -#: ../../godmode/setup/license.php:183 +#: ../../godmode/setup/license.php:274 +#: ../../include/class/Diagnostics.class.php:1211 +msgid "Licensed to" +msgstr "ライセンス先" + +#: ../../godmode/setup/license.php:288 msgid "License encryption key" msgstr "ライセンス暗号化キー" -#: ../../godmode/setup/license.php:184 +#: ../../godmode/setup/license.php:289 msgid "" "This key is used to encrypt your Pandora FMS license when it is shared with " "other Pandora FMS components" @@ -37644,39 +38608,34 @@ msgstr "" "このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセン" "スを暗号化するために使用されます。" -#: ../../godmode/setup/license.php:198 -#: ../../include/class/Diagnostics.class.php:1191 -msgid "Licensed to" -msgstr "ライセンス先" - -#: ../../godmode/setup/license.php:209 ../../godmode/setup/license.php:224 +#: ../../godmode/setup/license.php:317 ../../godmode/setup/license.php:345 msgid "Request new license" msgstr "新規ライセンス要求" -#: ../../godmode/setup/license.php:228 +#: ../../godmode/setup/license.php:349 #, php-format msgid "To get your %s Enterprise License:" msgstr "%s Enterprise ライセンスの取得:" -#: ../../godmode/setup/license.php:231 +#: ../../godmode/setup/license.php:352 #, php-format msgid "Go to %s" msgstr "%s へ移動" -#: ../../godmode/setup/license.php:234 +#: ../../godmode/setup/license.php:355 msgid "Enter the auth key and the following request key:" msgstr "auth key と次の request key を入力してください:" -#: ../../godmode/setup/license.php:240 +#: ../../godmode/setup/license.php:361 msgid "Enter your name (or a company name) and a contact email address." msgstr "" "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。" -#: ../../godmode/setup/license.php:243 +#: ../../godmode/setup/license.php:364 msgid "Click on Generate." msgstr "
生成 をクリックします。" -#: ../../godmode/setup/license.php:246 +#: ../../godmode/setup/license.php:367 msgid "" "Click here, enter the " "generated license key and click on Validate." @@ -37684,44 +38643,44 @@ msgstr "" "ここをクリックし、生成" "されたライセンスキーを入力し有効化をクリックします。" -#: ../../godmode/setup/news.php:29 +#: ../../godmode/setup/news.php:30 msgid "Site news management" msgstr "サイトニュース管理" -#: ../../godmode/setup/news.php:152 ../../godmode/setup/links.php:92 +#: ../../godmode/setup/news.php:169 ../../godmode/setup/links.php:105 msgid "Name error" msgstr "名前が不正です。" -#: ../../godmode/setup/news.php:191 +#: ../../godmode/setup/news.php:234 msgid "Modal screen" msgstr "別ウインドウ" -#: ../../godmode/setup/news.php:194 +#: ../../godmode/setup/news.php:247 msgid "Expire" msgstr "有効期限" -#: ../../godmode/setup/news.php:197 ../../godmode/setup/news.php:250 +#: ../../godmode/setup/news.php:260 ../../godmode/setup/news.php:353 msgid "Expiration" msgstr "有効期限" -#: ../../godmode/setup/news.php:241 +#: ../../godmode/setup/news.php:344 msgid "There are no defined news" msgstr "定義済のニュースがありません" -#: ../../godmode/setup/news.php:248 -#: ../../operation/agentes/estado_generalagente.php:658 +#: ../../godmode/setup/news.php:351 +#: ../../operation/agentes/estado_generalagente.php:749 msgid "Author" msgstr "作者" -#: ../../godmode/setup/news.php:268 +#: ../../godmode/setup/news.php:371 msgid "Modal" msgstr "別ウインドウ" -#: ../../godmode/setup/news.php:270 +#: ../../godmode/setup/news.php:373 msgid "Board" msgstr "ボード" -#: ../../godmode/setup/news.php:281 +#: ../../godmode/setup/news.php:384 msgid "Expired" msgstr "期限切れ" @@ -37733,102 +38692,179 @@ msgstr "GIS 利用マップ名" msgid "Do you wan delete this connection?" msgstr "このマップ利用設定を削除しますか。" -#: ../../godmode/setup/setup.php:216 +#: ../../godmode/setup/setup.php:230 msgid "Websocket engine" msgstr "Websocket エンジン" -#: ../../godmode/setup/setup.php:234 +#: ../../godmode/setup/setup.php:243 ../../godmode/setup/setup.php:342 +msgid "Welcome tips" +msgstr "ようこそ表示" + +#: ../../godmode/setup/setup.php:253 msgid "GIS Map connection" msgstr "GIS マップ接続" -#: ../../godmode/setup/setup.php:305 +#: ../../godmode/setup/setup.php:330 msgid "Pandora Websocket Engine" msgstr "Pandora Websocket エンジン" -#: ../../godmode/setup/setup.php:349 +#: ../../godmode/setup/setup.php:344 ../../include/class/TipsWindow.class.php:493 +msgid "Create tip" +msgstr "表示の作成" + +#: ../../godmode/setup/setup.php:346 +msgid "Edit tip" +msgstr "表示の編集" + +#: ../../godmode/setup/setup.php:368 +msgid "Password policies" +msgstr "パスワードポリシー" + +#: ../../godmode/setup/setup.php:398 msgid "Correct update the setup options" msgstr "設定オプションを更新しました" -#: ../../godmode/setup/setup_ehorus.php:58 -#: ../../include/functions_config.php:1714 +#: ../../godmode/setup/setup_ehorus.php:67 +#: ../../include/functions_config.php:1812 msgid "Enable eHorus" msgstr "eHorus の有効化" -#: ../../godmode/setup/setup_ehorus.php:93 +#: ../../godmode/setup/setup_ehorus.php:84 +msgid "eHorus configuration at user level" +msgstr "ユーザレベルでの eHorus 設定" + +#: ../../godmode/setup/setup_ehorus.php:113 msgid "API Hostname" msgstr "API ホスト名" -#: ../../godmode/setup/setup_ehorus.php:99 +#: ../../godmode/setup/setup_ehorus.php:119 msgid "API Port" msgstr "API ポート" -#: ../../godmode/setup/setup_ehorus.php:105 -#: ../../godmode/setup/setup_integria.php:309 +#: ../../godmode/setup/setup_ehorus.php:127 +#: ../../godmode/setup/setup_integria.php:352 msgid "Request timeout" msgstr "要求タイムアウト" -#: ../../godmode/setup/setup_ehorus.php:139 +#: ../../godmode/setup/setup_ehorus.php:175 msgid "Remote Management System" msgstr "リモート管理システム" -#: ../../godmode/setup/setup_ehorus.php:147 +#: ../../godmode/setup/setup_ehorus.php:183 msgid "Custom field eHorusID created" msgstr "カスタムフィールド eHorusID を作成しました" -#: ../../godmode/setup/setup_ehorus.php:147 +#: ../../godmode/setup/setup_ehorus.php:183 msgid "Error creating custom field" msgstr "カスタムフィールド作成エラー" -#: ../../godmode/setup/setup_ehorus.php:151 +#: ../../godmode/setup/setup_ehorus.php:187 msgid "eHorus has his own agent identifiers" msgstr "eHorus には独自のエージェント識別があります" -#: ../../godmode/setup/setup_ehorus.php:152 +#: ../../godmode/setup/setup_ehorus.php:188 msgid "To store them, it will be necessary to use an agent custom field" msgstr "" "それを保存するために、エージェントのカスタムフィールドを使う必要があります" -#: ../../godmode/setup/setup_ehorus.php:153 +#: ../../godmode/setup/setup_ehorus.php:189 msgid "Possibly the eHorus id will have to be filled in by hand for every agent" msgstr "eHorus ID は、エージェントごとに設定する必要があります" -#: ../../godmode/setup/setup_ehorus.php:158 +#: ../../godmode/setup/setup_ehorus.php:194 msgid "The custom field does not exists already" msgstr "カスタムフィールドが存在しません" -#: ../../godmode/setup/setup_ehorus.php:172 +#: ../../godmode/setup/setup_ehorus.php:208 msgid "eHorus API" msgstr "eHorus API" -#: ../../godmode/setup/setup_ehorus.php:254 -#: ../../godmode/setup/setup_integria.php:719 +#: ../../godmode/setup/setup_ehorus.php:296 +#: ../../godmode/setup/setup_integria.php:824 msgid "Connection timeout" msgstr "接続タイムアウト" -#: ../../godmode/setup/setup_ehorus.php:255 -#: ../../godmode/setup/setup_integria.php:720 -#: ../../godmode/setup/setup_integria.php:801 -#: ../../operation/users/user_edit.php:1342 +#: ../../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 msgid "Empty user or password" msgstr "ユーザまたはパスワードが空です" -#: ../../godmode/setup/setup_ehorus.php:256 -#: ../../godmode/setup/setup_integria.php:721 -#: ../../godmode/setup/setup_integria.php:802 -#: ../../operation/users/user_edit.php:1343 +#: ../../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 msgid "User not found" msgstr "ユーザが見つかりません" -#: ../../godmode/setup/setup_ehorus.php:257 -#: ../../godmode/setup/setup_integria.php:722 -#: ../../godmode/setup/setup_integria.php:803 -#: ../../operation/users/user_edit.php:1344 +#: ../../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 msgid "Invalid password" msgstr "パスワードが正しくありません" +#: ../../godmode/setup/setup_sflow.php:45 +#: ../../godmode/setup/setup_netflow.php:45 +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 +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 +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 +msgid "Nfdump binary path" +msgstr "nfdump バイナリのパス" + +#: ../../godmode/setup/setup_sflow.php:65 +#: ../../godmode/setup/setup_netflow.php:65 +#: ../../include/functions_config.php:1552 +#: ../../include/functions_config.php:1595 +msgid "Nfexpire binary path" +msgstr "nfexpire バイナリのパス" + +#: ../../godmode/setup/setup_sflow.php:70 +#: ../../godmode/setup/setup_netflow.php:70 +#: ../../include/functions_config.php:1556 +#: ../../include/functions_config.php:1599 +msgid "Maximum chart resolution" +msgstr "最大グラフ解像度" + +#: ../../godmode/setup/setup_sflow.php:80 ../../include/functions_config.php:1607 +msgid "Sflow max lifetime" +msgstr "Sflow 最大保持期間" + +#: ../../godmode/setup/setup_sflow.php:84 +#: ../../godmode/setup/setup_netflow.php:84 +#: ../../operation/netflow/nf_live_view.php:339 +msgid "IP address resolution can take a lot of time" +msgstr "IP アドレスの解決には多くの時間がかかります" + +#: ../../godmode/setup/setup_sflow.php:86 +#: ../../godmode/setup/setup_netflow.php:86 +#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1611 +msgid "Name resolution for IP address" +msgstr "IP アドレスの名前解決" + #: ../../godmode/setup/setup_websocket_engine.php:38 msgid "WebSocket settings" msgstr "Websocket 設定" @@ -37837,12 +38873,12 @@ msgstr "Websocket 設定" msgid "Bind address" msgstr "待ち受けアドレス" -#: ../../godmode/setup/setup_websocket_engine.php:57 +#: ../../godmode/setup/setup_websocket_engine.php:59 msgid "Bind port" msgstr "待ち受けポート" -#: ../../godmode/setup/setup_websocket_engine.php:67 -#: ../../include/functions_config.php:1866 +#: ../../godmode/setup/setup_websocket_engine.php:71 +#: ../../include/functions_config.php:1964 msgid "WebSocket proxy url" msgstr "Websocket プロキシ URL" @@ -37855,11 +38891,11 @@ msgstr "" "このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用で" "す。 それらを管理するには、%s に移動します。" -#: ../../godmode/setup/os.list.php:141 +#: ../../godmode/setup/os.list.php:163 msgid "There are no defined operating systems" msgstr "定義済のオペレーティングシステムがありません" -#: ../../godmode/setup/os.list.php:147 +#: ../../godmode/setup/os.list.php:170 msgid "Create OS" msgstr "OS を作成" @@ -37879,7 +38915,7 @@ msgstr "OS の編集" msgid "List of Operating Systems" msgstr "オペレーティングシステム一覧" -#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2074 +#: ../../godmode/setup/os.php:238 ../../include/functions_api.php:2084 msgid "Success creating OS" msgstr "OS を作成しました" @@ -37887,7 +38923,7 @@ msgstr "OS を作成しました" msgid "Fail creating OS" msgstr "OS の作成に失敗しました" -#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2111 +#: ../../godmode/setup/os.php:246 ../../include/functions_api.php:2121 msgid "Success updating OS" msgstr "OS を更新しました" @@ -37915,212 +38951,212 @@ msgstr "GIS マップ接続" msgid "Create new map connection" msgstr "新たな利用マップ設定" -#: ../../godmode/setup/gis_step_2.php:81 +#: ../../godmode/setup/gis_step_2.php:91 msgid "Edit map connection" msgstr "利用マップ編集" -#: ../../godmode/setup/gis_step_2.php:214 +#: ../../godmode/setup/gis_step_2.php:234 msgid "Connection Name" msgstr "名称" -#: ../../godmode/setup/gis_step_2.php:220 +#: ../../godmode/setup/gis_step_2.php:240 msgid "Number of zoom levels" msgstr "選択可能な拡大率の数" -#: ../../godmode/setup/gis_step_2.php:224 +#: ../../godmode/setup/gis_step_2.php:244 msgid "Default zoom level" msgstr "デフォルト拡大レベル" -#: ../../godmode/setup/gis_step_2.php:227 +#: ../../godmode/setup/gis_step_2.php:247 msgid "Basic configuration" msgstr "基本設定" -#: ../../godmode/setup/gis_step_2.php:232 +#: ../../godmode/setup/gis_step_2.php:252 msgid "Open Street Maps" msgstr "Open Street マップ" -#: ../../godmode/setup/gis_step_2.php:233 +#: ../../godmode/setup/gis_step_2.php:253 msgid "Google Maps" msgstr "Google マップ" -#: ../../godmode/setup/gis_step_2.php:234 -#: ../../godmode/reporting/visual_console_builder.elements.php:183 -#: ../../include/functions_visual_map_editor.php:1387 +#: ../../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:298 +#: ../../operation/visual_console/view.php:316 msgid "Static Image" msgstr "静的画像" -#: ../../godmode/setup/gis_step_2.php:235 +#: ../../godmode/setup/gis_step_2.php:255 msgid "WMS Server" msgstr "WMS サーバ" -#: ../../godmode/setup/gis_step_2.php:237 +#: ../../godmode/setup/gis_step_2.php:257 msgid "Please select the connection type" msgstr "利用マップタイプを選択してください" -#: ../../godmode/setup/gis_step_2.php:239 +#: ../../godmode/setup/gis_step_2.php:259 msgid "Map connection type" msgstr "利用マップタイプ" -#: ../../godmode/setup/gis_step_2.php:287 +#: ../../godmode/setup/gis_step_2.php:307 msgid "Tile Server URL" msgstr "サーバ URL" -#: ../../godmode/setup/gis_step_2.php:300 +#: ../../godmode/setup/gis_step_2.php:320 msgid "Google Physical" msgstr "地形" -#: ../../godmode/setup/gis_step_2.php:301 +#: ../../godmode/setup/gis_step_2.php:321 msgid "Google Hybrid" msgstr "航空写真" -#: ../../godmode/setup/gis_step_2.php:302 +#: ../../godmode/setup/gis_step_2.php:322 msgid "Google Satelite" msgstr "地図" -#: ../../godmode/setup/gis_step_2.php:304 +#: ../../godmode/setup/gis_step_2.php:324 msgid "Google Map Type" msgstr "Google マップタイプ" -#: ../../godmode/setup/gis_step_2.php:328 +#: ../../godmode/setup/gis_step_2.php:348 msgid "Google Maps Key" msgstr "Google マップキー" -#: ../../godmode/setup/gis_step_2.php:337 +#: ../../godmode/setup/gis_step_2.php:357 msgid "Image URL" msgstr "画像 URL" -#: ../../godmode/setup/gis_step_2.php:344 +#: ../../godmode/setup/gis_step_2.php:364 msgid "Corners of the area of the image" msgstr "画像が表す領域の範囲" -#: ../../godmode/setup/gis_step_2.php:344 +#: ../../godmode/setup/gis_step_2.php:364 #: ../../include/rest-api/models/VisualConsole/Item.php:1961 msgid "Left" msgstr "左" -#: ../../godmode/setup/gis_step_2.php:351 +#: ../../godmode/setup/gis_step_2.php:371 #: ../../include/rest-api/models/VisualConsole/Item.php:1958 #: ../../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:358 +#: ../../godmode/setup/gis_step_2.php:378 #: ../../include/rest-api/models/VisualConsole/Item.php:1960 msgid "Right" msgstr "右" -#: ../../godmode/setup/gis_step_2.php:365 +#: ../../godmode/setup/gis_step_2.php:385 #: ../../include/rest-api/models/VisualConsole/Item.php:1959 msgid "Top" msgstr "上" -#: ../../godmode/setup/gis_step_2.php:372 +#: ../../godmode/setup/gis_step_2.php:392 msgid "Image Size" msgstr "画像サイズ" -#: ../../godmode/setup/gis_step_2.php:389 +#: ../../godmode/setup/gis_step_2.php:409 msgid "WMS Server URL" msgstr "WMS サーバ URL" -#: ../../godmode/setup/gis_step_2.php:431 +#: ../../godmode/setup/gis_step_2.php:451 msgid "" "Preview to select the center of the map and the default position of an agent " "without gis data" msgstr "" "マップの中心選択と、GISデータが無い場合のエージェントのデフォルト位置プレビュー" -#: ../../godmode/setup/gis_step_2.php:432 +#: ../../godmode/setup/gis_step_2.php:452 msgid "Load preview map" msgstr "マッププレビュー" -#: ../../godmode/setup/gis_step_2.php:441 +#: ../../godmode/setup/gis_step_2.php:461 msgid "Map Center" msgstr "マップの中心" -#: ../../godmode/setup/gis_step_2.php:442 +#: ../../godmode/setup/gis_step_2.php:462 msgid "Default position for agents without GIS data" msgstr "GIS データが無い場合のエージェントのデフォルト位置" -#: ../../godmode/setup/gis_step_2.php:444 +#: ../../godmode/setup/gis_step_2.php:464 msgid "Change in the map" msgstr "マップ内での変更" -#: ../../godmode/setup/gis_step_2.php:466 +#: ../../godmode/setup/gis_step_2.php:486 #: ../../operation/agentes/gis_view.php:218 msgid "Latitude" msgstr "緯度" -#: ../../godmode/setup/gis_step_2.php:484 +#: ../../godmode/setup/gis_step_2.php:504 #: ../../operation/agentes/gis_view.php:217 msgid "Longitude" msgstr "経度" -#: ../../godmode/setup/gis_step_2.php:502 +#: ../../godmode/setup/gis_step_2.php:522 #: ../../operation/agentes/gis_view.php:219 msgid "Altitude" msgstr "高度" -#: ../../godmode/setup/gis_step_2.php:565 ../../godmode/setup/gis_step_2.php:660 +#: ../../godmode/setup/gis_step_2.php:585 ../../godmode/setup/gis_step_2.php:680 msgid "Center" msgstr "中心" -#: ../../godmode/setup/gis_step_2.php:625 +#: ../../godmode/setup/gis_step_2.php:645 msgid "Refresh preview map" msgstr "マッププレビューの再実行" -#: ../../godmode/setup/setup_auth.php:207 -msgid "Ldap search timeout (secs)" -msgstr "LDAP 検索タイムアウト(秒)" - -#: ../../godmode/setup/setup_auth.php:223 +#: ../../godmode/setup/setup_auth.php:235 msgid "Enable secondary LDAP" msgstr "セカンダリ LDAP の有効化" -#: ../../godmode/setup/setup_auth.php:294 +#: ../../godmode/setup/setup_auth.php:317 msgid "Secondary Base DN" msgstr "セカンダリ Base DN" -#: ../../godmode/setup/setup_auth.php:307 +#: ../../godmode/setup/setup_auth.php:330 msgid "Secondary Login attribute" msgstr "セカンダリログイン属性" -#: ../../godmode/setup/setup_auth.php:384 +#: ../../godmode/setup/setup_auth.php:407 msgid "Force 2FA for all users is enabled" msgstr "全ユーザに二段階認証を強制する" -#: ../../godmode/setup/setup_auth.php:405 +#: ../../godmode/setup/setup_auth.php:428 msgid "Session timeout (mins)" msgstr "セッションタイムアウト(分)" -#: ../../godmode/setup/setup_auth.php:448 +#: ../../godmode/setup/setup_auth.php:475 #, php-format msgid "Local %s" msgstr "ローカル %s" -#: ../../godmode/setup/setup_auth.php:449 +#: ../../godmode/setup/setup_auth.php:476 msgid "ldap" msgstr "LDAP" -#: ../../godmode/setup/setup_integria.php:64 -#: ../../operation/incidents/configure_integriaims_incident.php:41 +#: ../../godmode/setup/setup_integria.php:65 +#: ../../operation/incidents/configure_integriaims_incident.php:60 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:31 -#: ../../operation/incidents/list_integriaims_incidents.php:42 +#: ../../operation/incidents/list_integriaims_incidents.php:52 msgid "Integria IMS API is not reachable" msgstr "Integria IMS API に通信できません" -#: ../../godmode/setup/setup_integria.php:261 -#: ../../include/functions_config.php:1752 +#: ../../godmode/setup/setup_integria.php:262 +#: ../../include/functions_config.php:1850 msgid "Enable Integria IMS" msgstr "Integria IMS の有効化" -#: ../../godmode/setup/setup_integria.php:296 +#: ../../godmode/setup/setup_integria.php:279 +msgid "Integria configuration at user level" +msgstr "ユーザレベルでの Integria 設定" + +#: ../../godmode/setup/setup_integria.php:322 msgid "URL to Integria IMS setup" msgstr "Integria IMS セットアップ URL" -#: ../../godmode/setup/setup_integria.php:296 +#: ../../godmode/setup/setup_integria.php:322 msgid "" "Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, " "https://support.mycompany.com)." @@ -38128,32 +39164,32 @@ msgstr "" "完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, " "https://support.mycompany.com)" -#: ../../godmode/setup/setup_integria.php:302 +#: ../../godmode/setup/setup_integria.php:336 msgid "API Password" msgstr "API パスワード" -#: ../../godmode/setup/setup_integria.php:315 +#: ../../godmode/setup/setup_integria.php:368 msgid "Sync inventory" msgstr "インベントリ同期" -#: ../../godmode/setup/setup_integria.php:348 -#: ../../godmode/setup/setup_integria.php:469 +#: ../../godmode/setup/setup_integria.php:411 +#: ../../godmode/setup/setup_integria.php:544 msgid "Ticket body" msgstr "チケット本文" -#: ../../godmode/setup/setup_integria.php:603 +#: ../../godmode/setup/setup_integria.php:699 msgid "Integria API settings" msgstr "Integria API 設定" -#: ../../godmode/setup/setup_integria.php:614 +#: ../../godmode/setup/setup_integria.php:710 msgid "Alert default values" msgstr "アラートデフォルト値" -#: ../../godmode/setup/setup_integria.php:624 +#: ../../godmode/setup/setup_integria.php:720 msgid "Event custom response default values" msgstr "イベントカスタム応答デフォルト値" -#: ../../godmode/setup/links.php:28 +#: ../../godmode/setup/links.php:38 msgid "Link management" msgstr "リンク管理" @@ -38181,268 +39217,183 @@ msgstr "SNMP翻訳の保存に失敗しました" msgid "Unsucessful save the snmp translation." msgstr "SNMP翻訳の保存に失敗しました。" -#: ../../godmode/setup/setup_netflow.php:47 -#: ../../include/functions_config.php:1481 -msgid "Data storage path" -msgstr "データストアのパス" - -#: ../../godmode/setup/setup_netflow.php:50 -#: ../../include/functions_config.php:1485 -msgid "Daemon interval" -msgstr "デーモン間隔" - -#: ../../godmode/setup/setup_netflow.php:53 -#: ../../include/functions_config.php:1489 -msgid "Daemon binary path" -msgstr "デーモンのバイナリパス" - -#: ../../godmode/setup/setup_netflow.php:56 -#: ../../include/functions_config.php:1493 -msgid "Nfdump binary path" -msgstr "nfdump バイナリのパス" - -#: ../../godmode/setup/setup_netflow.php:59 -#: ../../include/functions_config.php:1497 -msgid "Nfexpire binary path" -msgstr "nfexpire バイナリのパス" - -#: ../../godmode/setup/setup_netflow.php:62 -#: ../../include/functions_config.php:1501 -msgid "Maximum chart resolution" -msgstr "最大グラフ解像度" - -#: ../../godmode/setup/setup_netflow.php:67 -#: ../../include/functions_config.php:1509 +#: ../../godmode/setup/setup_netflow.php:80 +#: ../../include/functions_config.php:1564 msgid "Netflow max lifetime" msgstr "Netflow 最大保持期間" -#: ../../godmode/setup/setup_netflow.php:70 -#: ../../include/functions_config.php:1513 -msgid "Name resolution for IP address" -msgstr "IP アドレスの名前解決" - -#: ../../godmode/setup/setup_netflow.php:71 -#: ../../operation/netflow/nf_live_view.php:459 -msgid "IP address resolution can take a lot of time" -msgstr "IP アドレスの解決には多くの時間がかかります" - -#: ../../godmode/setup/setup_visuals.php:79 -msgid "Paginated module view" -msgstr "ページ区切りモジュール表示" - -#: ../../godmode/setup/setup_visuals.php:106 +#: ../../godmode/setup/setup_visuals.php:108 msgid "Click to display lateral menus" msgstr "クリックして横のメニューを表示" -#: ../../godmode/setup/setup_visuals.php:116 -#: ../../include/functions_config.php:1297 +#: ../../godmode/setup/setup_visuals.php:120 +msgid "Paginated module view" +msgstr "ページ区切りモジュール表示" + +#: ../../godmode/setup/setup_visuals.php:152 +#: ../../include/functions_config.php:1347 msgid "Service label font size" msgstr "サービスラベルフォントサイズ" -#: ../../godmode/setup/setup_visuals.php:120 +#: ../../godmode/setup/setup_visuals.php:156 msgid "Space between items in Service maps" msgstr "サービスマップにおける要素間のスペース" -#: ../../godmode/setup/setup_visuals.php:137 -#: ../../include/functions_config.php:1004 -msgid "Style template" -msgstr "スタイルテンプレート" - -#: ../../godmode/setup/setup_visuals.php:150 -#: ../../include/functions_config.php:1024 -msgid "Status icon set" -msgstr "ステータスアイコンの種類" - -#: ../../godmode/setup/setup_visuals.php:151 +#: ../../godmode/setup/setup_visuals.php:235 msgid "Colors" msgstr "色" -#: ../../godmode/setup/setup_visuals.php:152 +#: ../../godmode/setup/setup_visuals.php:236 msgid "Faces" msgstr "顔" -#: ../../godmode/setup/setup_visuals.php:153 +#: ../../godmode/setup/setup_visuals.php:237 msgid "Colors and text" msgstr "色と文字" -#: ../../godmode/setup/setup_visuals.php:176 -#: ../../include/functions_config.php:1100 -msgid "Login background" -msgstr "ログイン背景" +#: ../../godmode/setup/setup_visuals.php:339 +#: ../../include/functions_config.php:1038 +msgid "Style template" +msgstr "スタイルテンプレート" -#: ../../godmode/setup/setup_visuals.php:394 -#: ../../include/functions_config.php:1060 +#: ../../godmode/setup/setup_visuals.php:357 +#: ../../include/functions_config.php:1058 +msgid "Status icon set" +msgstr "ステータスアイコンの種類" + +#: ../../godmode/setup/setup_visuals.php:602 +#: ../../include/functions_config.php:1094 msgid "Custom documentation logo" msgstr "カスタムドキュメントロゴ" -#: ../../godmode/setup/setup_visuals.php:414 -#: ../../include/functions_config.php:1064 +#: ../../godmode/setup/setup_visuals.php:642 +#: ../../include/functions_config.php:1098 msgid "Custom support logo" msgstr "カスタムサポートロゴ" -#: ../../godmode/setup/setup_visuals.php:433 -#: ../../include/functions_config.php:1068 -#: ../../include/functions_config.php:1072 +#: ../../godmode/setup/setup_visuals.php:680 +#: ../../include/functions_config.php:1102 +#: ../../include/functions_config.php:1106 msgid "Custom networkmap center logo" msgstr "カスタムネットワークマップセンターロゴ" -#: ../../godmode/setup/setup_visuals.php:452 +#: ../../godmode/setup/setup_visuals.php:720 msgid "Custom mobile console icon" msgstr "カスタムモバイルコンソールアイコン" -#: ../../godmode/setup/setup_visuals.php:520 +#: ../../godmode/setup/setup_visuals.php:814 msgid "Disable logo in graphs" msgstr "グラフ内ロゴの無効化" -#: ../../godmode/setup/setup_visuals.php:536 +#: ../../godmode/setup/setup_visuals.php:832 msgid "Disable helps" msgstr "ヘルプの無効化" -#: ../../godmode/setup/setup_visuals.php:545 -#: ../../include/functions_config.php:1236 +#: ../../godmode/setup/setup_visuals.php:842 +#: ../../include/functions_config.php:1286 msgid "Fixed header" msgstr "ヘッダーの固定" -#: ../../godmode/setup/setup_visuals.php:556 +#: ../../godmode/setup/setup_visuals.php:854 msgid "Automatically hide submenu" msgstr "サブメニューを自動的に隠す" -#: ../../godmode/setup/setup_visuals.php:584 -#: ../../include/functions_config.php:1208 +#: ../../godmode/setup/setup_visuals.php:901 +#: ../../include/functions_config.php:1250 msgid "GIS Labels" msgstr "GIS ラベル" -#: ../../godmode/setup/setup_visuals.php:599 -#: ../../include/functions_config.php:1216 +#: ../../godmode/setup/setup_visuals.php:911 +#: ../../include/functions_config.php:1258 msgid "Default icon in GIS" msgstr "GIS でのデフォルトアイコン" -#: ../../godmode/setup/setup_visuals.php:605 +#: ../../godmode/setup/setup_visuals.php:920 msgid "Agent icon group" msgstr "エージェントアイコングループ" -#: ../../godmode/setup/setup_visuals.php:623 +#: ../../godmode/setup/setup_visuals.php:970 msgid "Graphs font size" msgstr "グラフフォントサイズ" -#: ../../godmode/setup/setup_visuals.php:654 -#: ../../include/functions_config.php:1184 -#: ../../include/functions_config.php:1188 -msgid "Agent size text" -msgstr "エージェント名の表示長さ" - -#: ../../godmode/setup/setup_visuals.php:655 -#: ../../godmode/setup/setup_visuals.php:660 -msgid "Small:" -msgstr "小:" - -#: ../../godmode/setup/setup_visuals.php:656 -#: ../../godmode/setup/setup_visuals.php:661 -msgid "Normal:" -msgstr "通常:" - -#: ../../godmode/setup/setup_visuals.php:659 -#: ../../include/functions_config.php:1192 -msgid "Module size text" -msgstr "モジュール名の表示長さ" - -#: ../../godmode/setup/setup_visuals.php:664 -#: ../../include/functions_config.php:1196 -#: ../../include/functions_config.php:1200 -msgid "Description size text" -msgstr "説明の表示長さ" - -#: ../../godmode/setup/setup_visuals.php:668 -#: ../../include/functions_config.php:1204 -msgid "Item title size text" -msgstr "アイテムタイトルの表示長さ" - -#: ../../godmode/setup/setup_visuals.php:679 +#: ../../godmode/setup/setup_visuals.php:989 msgid "Show unit along with value in reports" msgstr "レポート内に値に加えて単位を表示する" -#: ../../godmode/setup/setup_visuals.php:732 -#: ../../include/functions_config.php:963 -msgid "Graph color #4" -msgstr "グラフの色 #4" +#: ../../godmode/setup/setup_visuals.php:1000 +#: ../../include/functions_config.php:1226 +#: ../../include/functions_config.php:1230 +msgid "Agent size text" +msgstr "エージェント名の表示長さ" -#: ../../godmode/setup/setup_visuals.php:743 -#: ../../include/functions_config.php:967 -msgid "Graph color #5" -msgstr "グラフの色 #5" +#: ../../godmode/setup/setup_visuals.php:1007 +#: ../../godmode/setup/setup_visuals.php:1029 +msgid "Small" +msgstr "小" -#: ../../godmode/setup/setup_visuals.php:754 -#: ../../include/functions_config.php:971 -msgid "Graph color #6" -msgstr "グラフの色 #6" +#: ../../godmode/setup/setup_visuals.php:1022 +#: ../../include/functions_config.php:1234 +msgid "Module size text" +msgstr "モジュール名の表示長さ" -#: ../../godmode/setup/setup_visuals.php:765 -#: ../../include/functions_config.php:975 -msgid "Graph color #7" -msgstr "グラフの色 #7" +#: ../../godmode/setup/setup_visuals.php:1046 +#: ../../include/functions_config.php:1238 +#: ../../include/functions_config.php:1242 +msgid "Description size text" +msgstr "説明の表示長さ" -#: ../../godmode/setup/setup_visuals.php:776 -#: ../../include/functions_config.php:979 -msgid "Graph color #8" -msgstr "グラフの色 #8" +#: ../../godmode/setup/setup_visuals.php:1057 +#: ../../include/functions_config.php:1246 +msgid "Item title size text" +msgstr "アイテムタイトルの表示長さ" -#: ../../godmode/setup/setup_visuals.php:787 -#: ../../include/functions_config.php:983 -msgid "Graph color #9" -msgstr "グラフの色 #9" +#: ../../godmode/setup/setup_visuals.php:1109 +msgid "Graph color #" +msgstr "グラフの色 #" -#: ../../godmode/setup/setup_visuals.php:798 -#: ../../include/functions_config.php:987 -msgid "Graph color #10" -msgstr "グラフの色 #10" - -#: ../../godmode/setup/setup_visuals.php:825 +#: ../../godmode/setup/setup_visuals.php:1123 msgid "Data precision" msgstr "データ精度" -#: ../../godmode/setup/setup_visuals.php:843 +#: ../../godmode/setup/setup_visuals.php:1141 msgid "Data precision in graphs" msgstr "グラフにおけるデータの精度" -#: ../../godmode/setup/setup_visuals.php:858 -#: ../../include/functions_config.php:1264 +#: ../../godmode/setup/setup_visuals.php:1172 +#: ../../include/functions_config.php:1314 msgid "Default line thickness for the Custom Graph." msgstr "カスタムグラフのデフォルトの線の太さ" -#: ../../godmode/setup/setup_visuals.php:919 -msgid "Type of interface charts" -msgstr "インタフェースグラフのタイプ" +#: ../../godmode/setup/setup_visuals.php:1299 +msgid "Zoom graphs" +msgstr "グラフ倍率" -#: ../../godmode/setup/setup_visuals.php:947 -msgid "Graph TIP view:" -msgstr "グラフ詳細表示:" - -#: ../../godmode/setup/setup_visuals.php:1070 +#: ../../godmode/setup/setup_visuals.php:1328 msgid "Classic view" msgstr "クラシック表示" -#: ../../godmode/setup/setup_visuals.php:1071 +#: ../../godmode/setup/setup_visuals.php:1329 msgid "View of favorites" msgstr "お気に入りの表示" -#: ../../godmode/setup/setup_visuals.php:1072 +#: ../../godmode/setup/setup_visuals.php:1384 msgid "Type of view of visual consoles" msgstr "ビジュアルコンソールの表示タイプ" -#: ../../godmode/setup/setup_visuals.php:1084 +#: ../../godmode/setup/setup_visuals.php:1398 msgid "Number of favorite visual consoles to show in the menu" msgstr "メニューに表示するお気に入りビジュアルコンソールの数" -#: ../../godmode/setup/setup_visuals.php:1088 -#: ../../include/functions_config.php:1172 +#: ../../godmode/setup/setup_visuals.php:1403 +#: ../../include/functions_config.php:1214 msgid "Default line thickness for the Visual Console" msgstr "ビジュアルコンソールのデフォルトの線の太さ" -#: ../../godmode/setup/setup_visuals.php:1118 +#: ../../godmode/setup/setup_visuals.php:1437 msgid "Number of favorite services to show in the menu" msgstr "メニューに表示するお気に入りのサービスの数" -#: ../../godmode/setup/setup_visuals.php:1195 +#: ../../godmode/setup/setup_visuals.php:1535 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." @@ -38451,228 +39402,242 @@ msgstr "" "す。 コンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップ" "ロードできます。" -#: ../../godmode/setup/setup_visuals.php:1281 -#: ../../include/functions_config.php:1248 +#: ../../godmode/setup/setup_visuals.php:1724 +#: ../../include/functions_config.php:1298 msgid "Networkmap max width" msgstr "ネットワークマップ最大幅" -#: ../../godmode/setup/setup_visuals.php:1301 +#: ../../godmode/setup/setup_visuals.php:1747 msgid "Show empty groups in group view" msgstr "グループ表示で空のグループを表示する" -#: ../../godmode/setup/setup_visuals.php:1320 -#: ../../include/functions_config.php:1470 +#: ../../godmode/setup/setup_visuals.php:1773 +#: ../../include/functions_config.php:1520 msgid "Decimal separator" msgstr "小数点区切り" -#: ../../godmode/setup/setup_visuals.php:1362 +#: ../../godmode/setup/setup_visuals.php:1788 +msgid "Visible time of successful notifiations" +msgstr "成功通知の表示時間" + +#: ../../godmode/setup/setup_visuals.php:1816 msgid "Custom values post process" msgstr "保存倍率のカスタム値" -#: ../../godmode/setup/setup_visuals.php:1383 -#: ../../godmode/setup/setup_visuals.php:1451 +#: ../../godmode/setup/setup_visuals.php:1856 +#: ../../godmode/setup/setup_visuals.php:2023 msgid "Delete custom values" msgstr "カスタム値の削除" -#: ../../godmode/setup/setup_visuals.php:1415 +#: ../../godmode/setup/setup_visuals.php:1906 msgid "Interval values" msgstr "間隔値" -#: ../../godmode/setup/setup_visuals.php:1443 +#: ../../godmode/setup/setup_visuals.php:1945 +msgid "Delete interval values" +msgstr "間隔値を削除" + +#: ../../godmode/setup/setup_visuals.php:1988 msgid "Module units" msgstr "モジュール単位" -#: ../../godmode/setup/setup_visuals.php:1559 +#: ../../godmode/setup/setup_visuals.php:2084 msgid "Behaviour configuration" msgstr "動作設定" -#: ../../godmode/setup/setup_visuals.php:1564 +#: ../../godmode/setup/setup_visuals.php:2089 msgid "GIS configuration" msgstr "GIS設定" -#: ../../godmode/setup/setup_visuals.php:1569 +#: ../../godmode/setup/setup_visuals.php:2094 msgid "Style configuration" msgstr "スタイル設定" -#: ../../godmode/setup/setup_visuals.php:1574 +#: ../../godmode/setup/setup_visuals.php:2099 msgid "Charts configuration" msgstr "グラフ設定" -#: ../../godmode/setup/setup_visuals.php:1579 +#: ../../godmode/setup/setup_visuals.php:2104 msgid "Font and Text configuration" msgstr "フォントおよびテキスト設定" -#: ../../godmode/setup/setup_visuals.php:1584 +#: ../../godmode/setup/setup_visuals.php:2109 msgid "Visual consoles configuration" msgstr "ビジュアルコンソール設定" -#: ../../godmode/setup/setup_visuals.php:1589 +#: ../../godmode/setup/setup_visuals.php:2114 msgid "Reports configuration " msgstr "レポート設定 " -#: ../../godmode/setup/setup_visuals.php:1594 +#: ../../godmode/setup/setup_visuals.php:2119 msgid "Services configuration" msgstr "サービス設定" -#: ../../godmode/setup/setup_visuals.php:1599 +#: ../../godmode/setup/setup_visuals.php:2124 msgid "Other configuration" msgstr "その他設定" -#: ../../godmode/setup/setup_visuals.php:1876 +#: ../../godmode/setup/setup_visuals.php:2405 msgid "Mobile console logo preview" msgstr "モバイルコンソールロゴプレビュー" -#: ../../godmode/setup/setup_visuals.php:1911 +#: ../../godmode/setup/setup_visuals.php:2441 msgid "Gis icons preview" msgstr "GISアイコンのプレビュー" -#: ../../godmode/setup/setup_visuals.php:1977 +#: ../../godmode/setup/setup_visuals.php:2507 msgid "Status set preview" msgstr "状態表示プレビュー" -#: ../../godmode/setup/setup_general.php:77 -#: ../../include/functions_register.php:122 -msgid "Language code" -msgstr "言語" - -#: ../../godmode/setup/setup_general.php:137 -#: ../../include/functions_config.php:200 -msgid "Automatic check for updates" -msgstr "更新の自動チェック" - -#: ../../godmode/setup/setup_general.php:145 +#: ../../godmode/setup/setup_general.php:52 msgid "Enforce https Information" msgstr "https の利用" -#: ../../godmode/setup/setup_general.php:146 +#: ../../godmode/setup/setup_general.php:53 msgid "If SSL is not properly configured you will lose access to " msgstr "SSL が正しく設定されていないと、こちらへのアクセスができなくなります: " -#: ../../godmode/setup/setup_general.php:146 -#: ../../godmode/setup/setup_general.php:340 +#: ../../godmode/setup/setup_general.php:53 +#: ../../godmode/setup/setup_general.php:115 msgid " Console" msgstr " コンソール" -#: ../../godmode/setup/setup_general.php:160 -msgid "Use cert of SSL" -msgstr "SSL証明書の利用" - -#: ../../godmode/setup/setup_general.php:173 -msgid "Path of SSL Cert." -msgstr "SSL証明書のパス" - -#: ../../godmode/setup/setup_general.php:223 -#: ../../include/functions_config.php:240 -msgid "Enable GIS features" -msgstr "GIS 機能の有効化" - -#: ../../godmode/setup/setup_general.php:231 -#: ../../include/functions_config.php:256 -msgid "Enable Netflow" -msgstr "Netflow を利用する" - -#: ../../godmode/setup/setup_general.php:338 -msgid "Enforce public URL usage information" -msgstr "公開 URL 利用に関する情報" - -#: ../../godmode/setup/setup_general.php:340 +#: ../../godmode/setup/setup_general.php:115 msgid "If public URL is not properly configured you will lose access to " msgstr "" "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: " -#: ../../godmode/setup/setup_general.php:354 -#: ../../include/functions_config.php:401 -msgid "Inventory changes blacklist" -msgstr "インベントリブラックリスト変更" - -#: ../../godmode/setup/setup_general.php:417 +#: ../../godmode/setup/setup_general.php:181 msgid "Out of black list" msgstr "ブラックリスト対象外" -#: ../../godmode/setup/setup_general.php:419 +#: ../../godmode/setup/setup_general.php:183 msgid "In black list" msgstr "ブラックリスト対象" -#: ../../godmode/setup/setup_general.php:424 +#: ../../godmode/setup/setup_general.php:188 msgid "Push selected modules into blacklist" msgstr "選択したモジュールをブラックリストへ追加" -#: ../../godmode/setup/setup_general.php:426 +#: ../../godmode/setup/setup_general.php:190 msgid "Pop selected modules out of blacklist" msgstr "選択したモジュールをブラックリストから削除" -#: ../../godmode/setup/setup_general.php:434 -#: ../../include/functions_config.php:304 -msgid "Referer security" -msgstr "リファラーセキュリティ" - -#: ../../godmode/setup/setup_general.php:442 -#: ../../include/functions_config.php:308 -msgid "Event storm protection" -msgstr "イベントストーム保護" - -#: ../../godmode/setup/setup_general.php:459 -msgid "Change remote config encoding" -msgstr "リモートコンフィグのエンコーディング自動調整" - -#: ../../godmode/setup/setup_general.php:467 -#: ../../include/functions_config.php:320 -msgid "Server logs directory" -msgstr "サーバログディレクトリ" - -#: ../../godmode/setup/setup_general.php:477 -#: ../../include/functions_config.php:324 -msgid "Log size limit in system logs viewer extension" -msgstr "システムログビューワ拡張でのログサイズ制限" - -#: ../../godmode/setup/setup_general.php:488 +#: ../../godmode/setup/setup_general.php:197 msgid "Full mode" msgstr "フルモード" -#: ../../godmode/setup/setup_general.php:490 +#: ../../godmode/setup/setup_general.php:199 msgid "Expert" msgstr "上級者" -#: ../../godmode/setup/setup_general.php:492 -#: ../../include/functions_config.php:328 +#: ../../godmode/setup/setup_general.php:227 +#: ../../include/functions_register.php:122 +msgid "Language code" +msgstr "言語" + +#: ../../godmode/setup/setup_general.php:320 +#: ../../include/functions_config.php:204 +msgid "Automatic check for updates" +msgstr "更新の自動チェック" + +#: ../../godmode/setup/setup_general.php:330 +msgid "Use cert of SSL" +msgstr "SSL証明書の利用" + +#: ../../godmode/setup/setup_general.php:343 +msgid "Path of SSL Cert." +msgstr "SSL証明書のパス" + +#: ../../godmode/setup/setup_general.php:384 +#: ../../include/functions_config.php:244 +msgid "Enable GIS features" +msgstr "GIS 機能の有効化" + +#: ../../godmode/setup/setup_general.php:394 +#: ../../include/functions_config.php:260 +msgid "Enable Netflow" +msgstr "Netflow を利用する" + +#: ../../godmode/setup/setup_general.php:408 +#: ../../include/functions_config.php:264 +msgid "Enable Sflow" +msgstr "Sflow を利用する" + +#: ../../godmode/setup/setup_general.php:421 +#: ../../include/functions_config.php:268 +msgid "General network path" +msgstr "一般ネットワークパス" + +#: ../../godmode/setup/setup_general.php:515 +#: ../../include/functions_config.php:423 +msgid "Inventory changes blacklist" +msgstr "インベントリブラックリスト変更" + +#: ../../godmode/setup/setup_general.php:520 +#: ../../include/functions_config.php:342 +msgid "Server logs directory" +msgstr "サーバログディレクトリ" + +#: ../../godmode/setup/setup_general.php:532 +#: ../../include/functions_config.php:330 +msgid "Event storm protection" +msgstr "イベントストーム保護" + +#: ../../godmode/setup/setup_general.php:552 +msgid "Change remote config encoding" +msgstr "リモートコンフィグのエンコーディング自動調整" + +#: ../../godmode/setup/setup_general.php:561 +#: ../../include/functions_config.php:326 +msgid "Referer security" +msgstr "リファラーセキュリティ" + +#: ../../godmode/setup/setup_general.php:571 +#: ../../include/functions_config.php:346 +msgid "Log size limit in system logs viewer extension" +msgstr "システムログビューワ拡張でのログサイズ制限" + +#: ../../godmode/setup/setup_general.php:592 +#: ../../include/functions_config.php:350 msgid "Tutorial mode" msgstr "チュートリアルモード" -#: ../../godmode/setup/setup_general.php:506 -#: ../../include/functions_config.php:332 +#: ../../godmode/setup/setup_general.php:605 +#: ../../include/functions_config.php:354 msgid "Allow create scheduled downtimes in the past" msgstr "過去の計画停止の作成を許可する" -#: ../../godmode/setup/setup_general.php:514 +#: ../../godmode/setup/setup_general.php:614 msgid "Limit for bulk operations" msgstr "一括操作制限" -#: ../../godmode/setup/setup_general.php:524 +#: ../../godmode/setup/setup_general.php:630 msgid "Include agents manually disabled" msgstr "手動で無効化したエージェントを含める" -#: ../../godmode/setup/setup_general.php:532 +#: ../../godmode/setup/setup_general.php:639 msgid "Set alias as name by default in agent creation" msgstr "エージェント作成でデフォルトでエイリアスを名前にする" -#: ../../godmode/setup/setup_general.php:549 -#: ../../godmode/setup/setup_general.php:560 -msgid "Log location" -msgstr "ログの場所" - -#: ../../godmode/setup/setup_general.php:570 +#: ../../godmode/setup/setup_general.php:659 msgid "Module custom ID readonly" msgstr "モジュールカスタム ID を読み出し専用にする" -#: ../../godmode/setup/setup_general.php:571 +#: ../../godmode/setup/setup_general.php:666 msgid "Useful for integrations" msgstr "統合に便利です" -#: ../../godmode/setup/setup_general.php:595 +#: ../../godmode/setup/setup_general.php:679 +#: ../../godmode/setup/setup_general.php:692 +msgid "Log location" +msgstr "ログの場所" + +#: ../../godmode/setup/setup_general.php:710 msgid "General options" msgstr "全般オプション" -#: ../../godmode/setup/setup_general.php:614 +#: ../../godmode/setup/setup_general.php:729 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 " @@ -38685,152 +39650,140 @@ msgstr "" "効化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してく" "ださい。" -#: ../../godmode/setup/setup_general.php:620 +#: ../../godmode/setup/setup_general.php:744 msgid "From address" msgstr "発信元アドレス" -#: ../../godmode/setup/setup_general.php:640 +#: ../../godmode/setup/setup_general.php:768 msgid "SMTP Server" msgstr "SMTP サーバ" -#: ../../godmode/setup/setup_general.php:650 +#: ../../godmode/setup/setup_general.php:780 msgid "SMTP Port" msgstr "SMTP ポート" -#: ../../godmode/setup/setup_general.php:700 +#: ../../godmode/setup/setup_general.php:847 msgid "Email test" msgstr "Email テスト" -#: ../../godmode/setup/setup_general.php:752 ../../general/header.php:826 +#: ../../godmode/setup/setup_general.php:896 +#: ../../include/class/TipsWindow.class.php:767 +#: ../../include/class/TipsWindow.class.php:934 ../../general/header.php:833 msgid "Send" msgstr "送信" -#: ../../godmode/setup/setup_general.php:762 +#: ../../godmode/setup/setup_general.php:910 msgid "Check mail configuration" msgstr "メール設定確認" -#: ../../godmode/setup/performance.php:181 -msgid "Pandora_db running in active database." -msgstr "アクティブデータベースで pandora_db が動作しています。" - -#: ../../godmode/setup/performance.php:182 -#: ../../godmode/setup/performance.php:238 -msgid "Executed:" -msgstr "実行済:" - -#: ../../godmode/setup/performance.php:237 +#: ../../godmode/setup/performance.php:242 msgid "Pandora_db running in historical database." msgstr "ヒストリデータベースで pandora_db が動作しています。" -#: ../../godmode/setup/performance.php:245 +#: ../../godmode/setup/performance.php:250 msgid "not executed" msgstr "未実行" -#: ../../godmode/setup/performance.php:273 ../../include/functions_config.php:808 +#: ../../godmode/setup/performance.php:278 ../../include/functions_config.php:834 msgid "Max. days before delete traps" msgstr "トラップデータ保持日数" -#: ../../godmode/setup/performance.php:293 -#: ../../godmode/setup/performance.php:470 ../../include/functions_config.php:812 +#: ../../godmode/setup/performance.php:308 +#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838 msgid "Max. days before delete string data" msgstr "文字列データ保持日数" -#: ../../godmode/setup/performance.php:303 ../../include/functions_config.php:820 +#: ../../godmode/setup/performance.php:323 ../../include/functions_config.php:846 msgid "Max. days before delete GIS data" msgstr "GIS データ保持日数" -#: ../../godmode/setup/performance.php:313 -#: ../../godmode/setup/performance.php:430 ../../include/functions_config.php:824 -msgid "Max. days before purge" -msgstr "データ保持日数" - -#: ../../godmode/setup/performance.php:323 -#: ../../godmode/setup/performance.php:440 ../../include/functions_config.php:836 +#: ../../godmode/setup/performance.php:353 +#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862 msgid "Max. days before compact data" msgstr "データ保持日数(丸め込みなし)" -#: ../../godmode/setup/performance.php:333 ../../include/functions_config.php:828 +#: ../../godmode/setup/performance.php:368 ../../include/functions_config.php:854 msgid "Max. days before delete unknown modules" msgstr "不明モジュール保持日数" -#: ../../godmode/setup/performance.php:344 ../../include/functions_config.php:832 +#: ../../godmode/setup/performance.php:383 ../../include/functions_config.php:858 msgid "Max. days before delete not initialized modules" msgstr "未初期化モジュール保持日数" -#: ../../godmode/setup/performance.php:354 +#: ../../godmode/setup/performance.php:398 msgid "Max. days before delete autodisabled agents" msgstr "自動無効化エージェントを削除せず保持する日数" -#: ../../godmode/setup/performance.php:364 ../../include/functions_config.php:884 +#: ../../godmode/setup/performance.php:413 ../../include/functions_config.php:914 msgid "Retention period of past special days" msgstr "過去の特別日の保存期間" -#: ../../godmode/setup/performance.php:388 ../../include/functions_config.php:893 -msgid "Max. days before delete inventory data" -msgstr "インベントリデータの保持日数" - -#: ../../godmode/setup/performance.php:450 -#: ../../godmode/setup/performance.php:531 ../../include/functions_config.php:848 +#: ../../godmode/setup/performance.php:494 +#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878 msgid "Compact interpolation in hours (1 Fine-20 bad)" msgstr "データ縮小時の丸め込み単位時間 (1〜20)" -#: ../../godmode/setup/performance.php:488 ../../include/functions_config.php:898 +#: ../../godmode/setup/performance.php:537 ../../include/functions_config.php:928 msgid "Max. days before delete old messages" msgstr "古いメッセージの保持日数" -#: ../../godmode/setup/performance.php:501 ../../include/functions_config.php:902 +#: ../../godmode/setup/performance.php:549 ../../include/functions_config.php:932 msgid "Max. days before delete old network matrix data" msgstr "ネットワークマトリックスデータ保持日数" -#: ../../godmode/setup/performance.php:521 +#: ../../godmode/setup/performance.php:565 ../../include/functions_config.php:923 +msgid "Max. days before delete inventory data" +msgstr "インベントリデータの保持日数" + +#: ../../godmode/setup/performance.php:586 msgid "Item limit for realtime reports" msgstr "リアルタイムレポートのアイテム制限" -#: ../../godmode/setup/performance.php:544 +#: ../../godmode/setup/performance.php:629 msgid "Last day" msgstr "昨日" -#: ../../godmode/setup/performance.php:546 +#: ../../godmode/setup/performance.php:631 msgid "10 days" msgstr "10日" -#: ../../godmode/setup/performance.php:548 +#: ../../godmode/setup/performance.php:633 msgid "2 weeks" msgstr "2週間" -#: ../../godmode/setup/performance.php:561 ../../include/functions_config.php:856 +#: ../../godmode/setup/performance.php:652 ../../include/functions_config.php:886 msgid "Use realtime statistics" msgstr "リアルタイム更新の利用" -#: ../../godmode/setup/performance.php:569 ../../include/functions_config.php:860 +#: ../../godmode/setup/performance.php:662 ../../include/functions_config.php:890 msgid "Batch statistics period (secs)" msgstr "バッチ更新間隔(秒)" -#: ../../godmode/setup/performance.php:582 ../../include/functions_config.php:868 +#: ../../godmode/setup/performance.php:685 ../../include/functions_config.php:898 msgid "Max. recommended number of files in attachment directory" msgstr "添付ディレクトリファイルの推奨上限数" -#: ../../godmode/setup/performance.php:592 ../../include/functions_config.php:872 +#: ../../godmode/setup/performance.php:697 ../../include/functions_config.php:902 msgid "Delete not init modules" msgstr "未初期化モジュールの削除" -#: ../../godmode/setup/performance.php:595 +#: ../../godmode/setup/performance.php:707 msgid "Big Operation Step to purge old data" msgstr "古いデータ削除のための大きい処理の分割数" -#: ../../godmode/setup/performance.php:605 ../../include/functions_config.php:880 +#: ../../godmode/setup/performance.php:722 ../../include/functions_config.php:910 msgid "Small Operation Step to purge old data" msgstr "古いデータ削除のための小さな操作ステップ" -#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:906 +#: ../../godmode/setup/performance.php:737 ../../include/functions_config.php:936 msgid "Graph container - Max. Items" msgstr "グラフコンテナ - 最大アイテム" -#: ../../godmode/setup/performance.php:645 +#: ../../godmode/setup/performance.php:776 msgid "SNMP walk binary" msgstr "snmpwalk バイナリ" -#: ../../godmode/setup/performance.php:656 +#: ../../godmode/setup/performance.php:788 msgid "" "SNMP bulk walk is not able to request V1 SNMP, this option will be used " "instead (by default snmpwalk, slower)." @@ -38838,11 +39791,11 @@ msgstr "" "snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されま" "す。(デフォルトで snmpwalk で遅くなります)" -#: ../../godmode/setup/performance.php:659 +#: ../../godmode/setup/performance.php:793 msgid "SNMP walk binary (fallback)" msgstr "snmpwalk バイナリ (フォールバック)" -#: ../../godmode/setup/performance.php:671 +#: ../../godmode/setup/performance.php:806 #, php-format msgid "" "%s web2image cache system cleanup. It is always cleaned up after perform an " @@ -38851,177 +39804,232 @@ msgstr "" "%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は" "常にクリーンアップされます" -#: ../../godmode/setup/performance.php:677 +#: ../../godmode/setup/performance.php:813 msgid "WMI binary" msgstr "WMI バイナリ" -#: ../../godmode/setup/performance.php:717 +#: ../../godmode/setup/performance.php:856 msgid "Database maintenance options" msgstr "データベースメンテナンスオプション" -#: ../../godmode/setup/performance.php:723 +#: ../../godmode/setup/performance.php:862 msgid "Historical database maintenance options" msgstr "ヒストリデータベースメンテナンスオプション" -#: ../../godmode/setup/performance.php:729 ../../include/graphs/fgraph.php:404 -#: ../../include/functions_netflow.php:2078 -#: ../../include/functions_reporting.php:3959 +#: ../../godmode/setup/performance.php:868 ../../include/graphs/fgraph.php:404 +#: ../../include/functions_netflow.php:2097 +#: ../../include/functions_reporting.php:4063 msgid "Others" msgstr "その他" -#: ../../godmode/setup/performance.php:734 +#: ../../godmode/setup/performance.php:873 msgid "Agent SNMP Interface Wizard defaults" msgstr "デフォルトエージェント SNMP インタフェースウィザード" -#: ../../godmode/setup/file_manager.php:83 ../../godmode/servers/plugin.php:235 -#: ../../include/functions_filemanager.php:590 +#: ../../godmode/setup/file_manager.php:83 +#: ../../include/functions_filemanager.php:630 #, php-format msgid "Index of %s" msgstr "%s 一覧" -#: ../../godmode/reporting/visual_console_builder.data.php:94 +#: ../../godmode/setup/welcome_tips.php:61 +msgid "Language is empty" +msgstr "言語が空です" + +#: ../../godmode/setup/welcome_tips.php:65 +msgid "Title is empty" +msgstr "タイトルが空です" + +#: ../../godmode/setup/welcome_tips.php:69 +msgid "Text is empty" +msgstr "テキストが空です" + +#: ../../godmode/setup/welcome_tips.php:82 +msgid "Error in insert tip" +msgstr "表示の挿入エラー" + +#: ../../godmode/setup/welcome_tips.php:106 +msgid "Error in update tip" +msgstr "表示の更新エラー" + +#: ../../godmode/setup/welcome_tips.php:146 +msgid "Tip required" +msgstr "表示が必要です" + +#: ../../godmode/setup/welcome_tips.php:153 +msgid "Error in delete tip" +msgstr "表示の削除エラー" + +#: ../../godmode/reporting/visual_console_builder.data.php:148 msgid "Create visual console" msgstr "ビジュアルコンソールの作成" -#: ../../godmode/reporting/visual_console_builder.data.php:106 -msgid "" -"Use [ or ( as first character, for example '[*] Map name', to render this map " -"name in main menu" -msgstr "" -"最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに" -"表示するには、'[*] Map name' です。" - -#: ../../godmode/reporting/visual_console_builder.data.php:169 -#: ../../godmode/reporting/visual_console_builder.elements.php:151 +#: ../../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:568 +#: ../../include/lib/Dashboard/Widget.php:575 msgid "Background" msgstr "背景" -#: ../../godmode/reporting/visual_console_builder.data.php:179 +#: ../../godmode/reporting/visual_console_builder.data.php:201 msgid "Background image" msgstr "背景画像" -#: ../../godmode/reporting/visual_console_builder.data.php:181 +#: ../../godmode/reporting/visual_console_builder.data.php:227 #: ../../include/functions_visual_map_editor.php:347 #: ../../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:251 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:250 msgid "Background color" msgstr "背景色" -#: ../../godmode/reporting/visual_console_builder.data.php:211 -msgid "Layout size" -msgstr "レイアウトサイズ" - -#: ../../godmode/reporting/visual_console_builder.data.php:214 +#: ../../godmode/reporting/visual_console_builder.data.php:250 msgid "Set custom size" msgstr "カスタムサイズを設定" -#: ../../godmode/reporting/visual_console_builder.data.php:220 +#: ../../godmode/reporting/visual_console_builder.data.php:265 msgid "Get default image size" msgstr "デフォルトのイメージサイズ取得" -#: ../../godmode/reporting/visual_console_builder.data.php:222 +#: ../../godmode/reporting/visual_console_builder.data.php:279 +msgid "Layout size" +msgstr "レイアウトサイズ" + +#: ../../godmode/reporting/visual_console_builder.data.php:290 msgid "Favourite visual console" msgstr "お気に入りのビジュアルコンソール" -#: ../../godmode/reporting/visual_console_builder.data.php:225 +#: ../../godmode/reporting/visual_console_builder.data.php:300 msgid "Auto adjust to screen in fullscreen" msgstr "全画面時の画面自動調整" -#: ../../godmode/reporting/visual_console_builder.php:226 +#: ../../godmode/reporting/visual_console_builder.php:212 msgid "This file isn't image" msgstr "このファイルは画像ではありません" -#: ../../godmode/reporting/visual_console_builder.php:229 +#: ../../godmode/reporting/visual_console_builder.php:215 msgid "This file isn't image." msgstr "このファイルは画像ではありません。" -#: ../../godmode/reporting/visual_console_builder.php:235 -#: ../../godmode/reporting/visual_console_builder.php:238 +#: ../../godmode/reporting/visual_console_builder.php:221 +#: ../../godmode/reporting/visual_console_builder.php:224 msgid "File already are exists." msgstr "ファイルが既に存在します。" -#: ../../godmode/reporting/visual_console_builder.php:246 -#: ../../godmode/reporting/visual_console_builder.php:249 +#: ../../godmode/reporting/visual_console_builder.php:232 +#: ../../godmode/reporting/visual_console_builder.php:235 msgid "The file have not image extension." msgstr "画像ファイルの拡張子ではありません。" -#: ../../godmode/reporting/visual_console_builder.php:261 -#: ../../godmode/reporting/visual_console_builder.php:264 -#: ../../godmode/reporting/visual_console_builder.php:274 -#: ../../godmode/reporting/visual_console_builder.php:280 +#: ../../godmode/reporting/visual_console_builder.php:247 +#: ../../godmode/reporting/visual_console_builder.php:250 +#: ../../godmode/reporting/visual_console_builder.php:260 +#: ../../godmode/reporting/visual_console_builder.php:266 msgid "Problems with move file to target." msgstr "対象へのファイルの移動で問題が発生しました。" -#: ../../godmode/reporting/visual_console_builder.php:317 +#: ../../godmode/reporting/visual_console_builder.php:303 msgid "Successfully update." msgstr "更新しました。" -#: ../../godmode/reporting/visual_console_builder.php:336 +#: ../../godmode/reporting/visual_console_builder.php:322 msgid "Could not be update." msgstr "更新に失敗しました。" -#: ../../godmode/reporting/visual_console_builder.php:356 +#: ../../godmode/reporting/visual_console_builder.php:342 msgid "Successfully created." msgstr "作成しました。" -#: ../../godmode/reporting/visual_console_builder.php:375 +#: ../../godmode/reporting/visual_console_builder.php:361 msgid "Could not be created." msgstr "作成に失敗しました。" -#: ../../godmode/reporting/visual_console_builder.php:423 +#: ../../godmode/reporting/visual_console_builder.php:409 msgid "Successfully multiple delete." msgstr "複数削除をしました。" -#: ../../godmode/reporting/visual_console_builder.php:424 +#: ../../godmode/reporting/visual_console_builder.php:410 msgid "Unsuccessful multiple delete." msgstr "複数削除失敗。" -#: ../../godmode/reporting/visual_console_builder.php:544 +#: ../../godmode/reporting/visual_console_builder.php:530 msgid "Successfully delete." msgstr "削除しました。" -#: ../../godmode/reporting/visual_console_builder.php:834 -#: ../../operation/visual_console/view.php:180 -#: ../../operation/visual_console/legacy_view.php:165 +#: ../../godmode/reporting/visual_console_builder.php:801 +#: ../../operation/visual_console/view.php:130 +#: ../../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 +#: ../../operation/visual_console/legacy_view.php:133 +msgid "Show link to public Visual Console" +msgstr "パブリックビジュアルコンソール表示" + +#: ../../godmode/reporting/visual_console_builder.php:814 +#: ../../godmode/reporting/graph_builder.php:304 +#: ../../godmode/reporting/reporting_builder.php:3634 +#: ../../operation/visual_console/view.php:174 +#: ../../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 +#: ../../operation/visual_console/legacy_view.php:151 +msgid "List elements" +msgstr "エレメント一覧" + +#: ../../godmode/reporting/visual_console_builder.php:824 +#: ../../operation/visual_console/view.php:192 +#: ../../operation/visual_console/legacy_view.php:161 msgid "Services wizard" msgstr "サービスウィザード" -#: ../../godmode/reporting/reporting_builder.list_items.php:706 -#: ../../godmode/reporting/reporting_builder.list_items.php:710 -#: ../../godmode/reporting/graph_builder.graph_editor.php:284 -#: ../../godmode/reporting/graph_builder.graph_editor.php:288 -msgid "Sort items" -msgstr "アイテムの並び替え" +#: ../../godmode/reporting/visual_console_builder.php:849 +msgid "New visual console" +msgstr "新規ビジュアルコンソール" -#: ../../godmode/reporting/reporting_builder.list_items.php:713 +#: ../../godmode/reporting/reporting_builder.list_items.php:701 msgid "Sort selected items from position: " msgstr "選択したアイテムを次の位置から並び替え: " -#: ../../godmode/reporting/reporting_builder.list_items.php:716 +#: ../../godmode/reporting/reporting_builder.list_items.php:704 msgid "Move before to" msgstr "この前に移動:" -#: ../../godmode/reporting/reporting_builder.list_items.php:717 +#: ../../godmode/reporting/reporting_builder.list_items.php:705 msgid "Move after to" msgstr "この後ろに移動:" -#: ../../godmode/reporting/reporting_builder.list_items.php:764 +#: ../../godmode/reporting/reporting_builder.list_items.php:754 +#: ../../godmode/reporting/graph_builder.graph_editor.php:301 +#: ../../godmode/reporting/graph_builder.graph_editor.php:369 +msgid "Sort items" +msgstr "アイテムの並び替え" + +#: ../../godmode/reporting/reporting_builder.list_items.php:763 msgid "Delete selected items from position: " msgstr "次の場所から選択したアイテムを削除する: " -#: ../../godmode/reporting/reporting_builder.list_items.php:767 +#: ../../godmode/reporting/reporting_builder.list_items.php:766 msgid "Delete above to" msgstr "次の上を削除" -#: ../../godmode/reporting/reporting_builder.list_items.php:768 +#: ../../godmode/reporting/reporting_builder.list_items.php:767 msgid "Delete below to" msgstr "次の下を削除" -#: ../../godmode/reporting/reporting_builder.list_items.php:824 +#: ../../godmode/reporting/reporting_builder.list_items.php:779 +msgid "Poisition" +msgstr "位置" + +#: ../../godmode/reporting/reporting_builder.list_items.php:845 msgid "" "Are you sure to sort the items into the report?\\n. This action change the " "sorting of items into data base." @@ -39029,16 +40037,16 @@ msgstr "" "レポートのアイテムを並べ替えますか?\\n この操作は、データベースでのアイテムの" "ソートを変更します。" -#: ../../godmode/reporting/reporting_builder.list_items.php:844 -#: ../../godmode/reporting/graph_builder.graph_editor.php:407 +#: ../../godmode/reporting/reporting_builder.list_items.php:867 +#: ../../godmode/reporting/graph_builder.graph_editor.php:463 msgid "Please select any item to order" msgstr "並び替えるアイテムを選択してください" -#: ../../godmode/reporting/reporting_builder.list_items.php:874 +#: ../../godmode/reporting/reporting_builder.list_items.php:897 msgid "Are you sure to delete the items into the report?\\n" msgstr "レポートのアイテムを削除しますがよろしいですか?\\n" -#: ../../godmode/reporting/reporting_builder.list_items.php:901 +#: ../../godmode/reporting/reporting_builder.list_items.php:925 msgid "Please select any item to delete" msgstr "削除するアイテムを選択してください" @@ -39047,67 +40055,38 @@ msgid "Container name is missing." msgstr "コンテナ名がありません。" #: ../../godmode/reporting/create_container.php:196 -#: ../../godmode/reporting/graph_container.php:134 +#: ../../godmode/reporting/graph_container.php:135 msgid "Create container" msgstr "コンテナ作成" -#: ../../godmode/reporting/create_container.php:205 +#: ../../godmode/reporting/create_container.php:215 msgid "Container stored successfully" msgstr "コンテナを保存しました" -#: ../../godmode/reporting/create_container.php:205 +#: ../../godmode/reporting/create_container.php:215 msgid "There was a problem storing container" msgstr "コンテナの保存に問題が発生しました" -#: ../../godmode/reporting/create_container.php:212 +#: ../../godmode/reporting/create_container.php:222 msgid "Update the container" msgstr "コンテナの更新" -#: ../../godmode/reporting/create_container.php:212 +#: ../../godmode/reporting/create_container.php:222 msgid "Bad update the container" msgstr "コンテナの更新に失敗しました" -#: ../../godmode/reporting/create_container.php:287 +#: ../../godmode/reporting/create_container.php:285 +#: ../../godmode/reporting/create_container.php:304 msgid "Parent container" msgstr "親コンテナ" -#: ../../godmode/reporting/create_container.php:345 -#: ../../include/functions.php:2734 -msgid "custom" -msgstr "カスタム" +#: ../../godmode/reporting/create_container.php:400 +msgid "Container" +msgstr "コンテナ" -#: ../../godmode/reporting/create_container.php:347 -#: ../../godmode/reporting/create_container.php:348 -#: ../../godmode/reporting/create_container.php:349 -#: ../../include/functions.php:2746 ../../include/functions.php:2747 -#: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148 -#: ../../include/ajax/graph.ajax.php:149 -#, php-format -msgid "%s hours" -msgstr "%s 時間" - -#: ../../godmode/reporting/create_container.php:351 -#: ../../godmode/reporting/create_container.php:352 -#: ../../include/ajax/graph.ajax.php:151 ../../include/ajax/graph.ajax.php:152 -#, php-format -msgid "%s days" -msgstr "%s 日" - -#: ../../godmode/reporting/create_container.php:353 -#: ../../include/functions.php:2749 ../../include/ajax/module.php:211 -#: ../../include/ajax/graph.ajax.php:153 -msgid "1 week" -msgstr "1週間" - -#: ../../godmode/reporting/create_container.php:355 -#: ../../include/functions.php:2751 ../../include/ajax/module.php:213 -#: ../../include/ajax/graph.ajax.php:155 -msgid "1 month" -msgstr "1ヵ月" - -#: ../../godmode/reporting/create_container.php:365 -#: ../../godmode/reporting/create_container.php:474 -#: ../../godmode/reporting/create_container.php:528 +#: ../../godmode/reporting/create_container.php:438 +#: ../../godmode/reporting/create_container.php:557 +#: ../../godmode/reporting/create_container.php:628 msgid "" "This is the interval or period of time with which the graph data will be " "obtained. For example, a week means data from a week ago from now. " @@ -39115,37 +40094,45 @@ msgstr "" "グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味し" "ます。 " -#: ../../godmode/reporting/create_container.php:428 -#: ../../godmode/reporting/create_container.php:583 -#: ../../godmode/reporting/graph_builder.main.php:208 +#: ../../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 msgid "Type of graph" msgstr "グラフのタイプ" -#: ../../godmode/reporting/create_container.php:437 -#: ../../godmode/reporting/create_container.php:494 -#: ../../godmode/reporting/create_container.php:589 -#: ../../godmode/reporting/graph_builder.main.php:285 +#: ../../godmode/reporting/create_container.php:505 +#: ../../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 msgid "Show full scale graph (TIP)" msgstr "詳細グラフ表示 (TIP)" -#: ../../godmode/reporting/create_container.php:448 -#: ../../godmode/reporting/create_container.php:501 -#: ../../godmode/reporting/create_container.php:596 +#: ../../godmode/reporting/create_container.php:516 +#: ../../godmode/reporting/create_container.php:585 +#: ../../godmode/reporting/create_container.php:700 msgid "Add item" msgstr "アイテムの追加" -#: ../../godmode/reporting/create_container.php:614 +#: ../../godmode/reporting/create_container.php:531 +msgid "Simple module graph" +msgstr "単一モジュールグラフ" + +#: ../../godmode/reporting/create_container.php:715 +msgid "Dynamic rules for simple module graph" +msgstr "単一モジュールグラフの動的ルール" + +#: ../../godmode/reporting/create_container.php:731 msgid "There are no items in this container." msgstr "このコンテナにはアイテムがありません。" -#: ../../godmode/reporting/create_container.php:623 +#: ../../godmode/reporting/create_container.php:740 msgid "Agent/Module" msgstr "エージェント/モジュール" -#: ../../godmode/reporting/create_container.php:626 +#: ../../godmode/reporting/create_container.php:743 msgid "M.Group" msgstr "モジュールグループ" @@ -39154,21 +40141,20 @@ msgstr "モジュールグループ" msgid "Not copied. Error copying data" msgstr "コピーできませんでした。データのコピーでエラーが発生しました。" -#: ../../godmode/reporting/map_builder.php:368 -#: ../../godmode/reporting/visual_console_favorite.php:185 +#: ../../godmode/reporting/map_builder.php:367 +#: ../../godmode/reporting/visual_console_favorite.php:187 msgid "Group Recursion" msgstr "子グループを含む" -#: ../../godmode/reporting/map_builder.php:384 +#: ../../godmode/reporting/map_builder.php:417 msgid "Map name" msgstr "マップ名" -#: ../../godmode/reporting/map_builder.php:386 +#: ../../godmode/reporting/map_builder.php:419 msgid "Items" msgstr "アイテム" -#: ../../godmode/reporting/map_builder.php:462 -#: ../../general/first_task/map_builder.php:23 +#: ../../godmode/reporting/map_builder.php:495 msgid "There are no visual console defined yet." msgstr "ビジュアルコンソールが定義されていません。" @@ -39178,6 +40164,7 @@ msgid "Graph editor" msgstr "グラフ編集" #: ../../godmode/reporting/graph_builder.php:326 +#: ../../include/functions_events.php:4542 #: ../../operation/reporting/graph_viewer.php:223 msgid "View graph" msgstr "グラフ表示" @@ -39222,37 +40209,36 @@ msgstr "グラフコンテナ" msgid "List of custom graphs" msgstr "カスタムグラフ一覧" -#: ../../godmode/reporting/graphs.php:235 -#: ../../godmode/reporting/reporting_builder.php:780 +#: ../../godmode/reporting/graphs.php:233 ../../godmode/reporting/graphs.php:272 +#: ../../godmode/reporting/reporting_builder.php:745 msgid "Free text for search: " msgstr "文字列検索: " -#: ../../godmode/reporting/graphs.php:236 -#: ../../godmode/reporting/reporting_builder.php:782 +#: ../../godmode/reporting/graphs.php:234 ../../godmode/reporting/graphs.php:272 +#: ../../godmode/reporting/reporting_builder.php:746 msgid "Search by report name or description, list matches." msgstr "レポート名または説明で検索したリスト。" -#: ../../godmode/reporting/graphs.php:248 -#: ../../godmode/reporting/reporting_builder.php:808 +#: ../../godmode/reporting/graphs.php:243 msgid "Show Option" msgstr "オプション表示" -#: ../../godmode/reporting/graphs.php:310 +#: ../../godmode/reporting/graphs.php:362 #: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30 -#: ../../operation/reporting/graph_viewer.php:521 +#: ../../operation/reporting/graph_viewer.php:567 msgid "Graph name" msgstr "グラフ名" -#: ../../godmode/reporting/graphs.php:312 +#: ../../godmode/reporting/graphs.php:364 #: ../../include/functions_container.php:148 msgid "Number of Graphs" msgstr "グラフ数" -#: ../../godmode/reporting/graphs.php:402 +#: ../../godmode/reporting/graphs.php:458 ../../godmode/reporting/graphs.php:465 msgid "Create graph" msgstr "グラフ作成" -#: ../../godmode/reporting/visual_console_favorite.php:223 +#: ../../godmode/reporting/visual_console_favorite.php:240 msgid "No favourite consoles defined" msgstr "お気に入りコンソールが定義されていません" @@ -39265,23 +40251,23 @@ msgstr "" "グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムの" "み表示されます。" -#: ../../godmode/reporting/graph_builder.graph_editor.php:291 +#: ../../godmode/reporting/graph_builder.graph_editor.php:315 msgid "Sort selected items" msgstr "選択アイテムの並べ替え" -#: ../../godmode/reporting/graph_builder.graph_editor.php:294 +#: ../../godmode/reporting/graph_builder.graph_editor.php:318 msgid "before to" msgstr "この前へ:" -#: ../../godmode/reporting/graph_builder.graph_editor.php:295 +#: ../../godmode/reporting/graph_builder.graph_editor.php:319 msgid "after to" msgstr "この後へ:" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1070 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1067 msgid "Not valid" msgstr "不正です" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1078 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1075 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." @@ -39289,17 +40275,17 @@ msgstr "" "このタイプのレポートは多くのデータを読み込みます。リアルタイム表示ではなくスケ" "ジューリングでのレポートをお勧めします。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1305 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1333 msgid "Log number" msgstr "ログ番号" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1307 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1335 msgid "" "Warning: this parameter limits the contents of the logs and affects the " "performance." msgstr "警告: このパラメータはログの内容を制限しパフォーマンスに影響します。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:1368 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1396 msgid "" "This is the range, or period of time over which the report renders the " "information for this report type. For example, a week means data from a week " @@ -39308,58 +40294,59 @@ msgstr "" "これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間で" "す。 たとえば、1週間は、今から1週間前のデータを意味します。 " -#: ../../godmode/reporting/reporting_builder.item_editor.php:1891 +#: ../../godmode/reporting/reporting_builder.item_editor.php:1919 msgid "Show modules" msgstr "モジュール表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2193 -#: ../../operation/inventory/inventory.php:437 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2221 +#: ../../include/functions_ui.php:2494 +#: ../../operation/inventory/inventory.php:687 msgid "Last" msgstr "最新" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2272 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2300 msgid "Target server" msgstr "対象サーバ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2573 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2618 msgid "Macros definition" msgstr "マクロ定義" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2584 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2629 msgid "Render definition" msgstr "描画定義" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2585 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2630 msgid "Please note that not all CSS styles are supported by PDF reports." msgstr "" "すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意して" "ください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2682 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2728 msgid "Greater or equal (>=)" msgstr "以上 (>=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2683 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2729 msgid "Less or equal (<=)" msgstr "以下 (<=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2684 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2730 msgid "Less (<)" msgstr "未満 (<)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2685 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2731 msgid "Greater (>)" msgstr "超えて (>)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2686 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2732 msgid "Equal (=)" msgstr "同じ (=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2687 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2733 msgid "Not equal (!=)" msgstr "異なる (!=)" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2812 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2858 msgid "" "Show a summary chart with max, min and average number of total modules at the " "end of the report and Checks." @@ -39367,39 +40354,39 @@ msgstr "" "最新のレポートおよび監視時点のトータルモジュール数の最大、最小、平均の概要グラ" "フを表示します。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2867 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2913 msgid "Checks in Warning status" msgstr "警告状態のチェック" -#: ../../godmode/reporting/reporting_builder.item_editor.php:2937 +#: ../../godmode/reporting/reporting_builder.item_editor.php:2983 msgid "Only data" msgstr "ベースのみ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3035 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 msgid "Include extended events" msgstr "拡張イベントを含める" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3052 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3098 msgid "Show custom data" msgstr "カスタムデータを表示" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3071 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3117 msgid "By agent " msgstr "エージェントごと " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3081 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3127 msgid "By user validator " msgstr "承諾ユーザごと " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3091 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3137 msgid "By criticity " msgstr "重要度ごと " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3101 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3147 msgid "Validated vs unvalidated " msgstr "承諾済 / 未承諾 " -#: ../../godmode/reporting/reporting_builder.item_editor.php:3116 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3162 msgid "" "With the token enabled the query will affect the Historical Database, which " "may mean a small drop in performance." @@ -39407,20 +40394,20 @@ msgstr "" "トークンを有効にすると、クエリはヒストリデータベースに影響を与えます。これは、" "パフォーマンスのわずかな低下を発生させる場合があります。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3301 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3347 msgid "Include filter" msgstr "含めるフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3305 -#: ../../godmode/reporting/reporting_builder.item_editor.php:3314 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3351 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3360 msgid "Free text string search on event description" msgstr "イベントの説明の任意のテキスト検索" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3310 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3356 msgid "Exclude filter" msgstr "除外フィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3418 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3464 msgid "" "Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise " "full value will be displayed (example: 20.742 bytes/sec)" @@ -39428,83 +40415,87 @@ msgstr "" "数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完" "全な値が表示されます (例: 20.742 bytes/sec)。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3456 -#: ../../include/functions_reporting.php:5059 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 +#: ../../include/functions_reporting.php:5163 msgid "Unassigned group" msgstr "未割当グループ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3502 -#: ../../include/functions_reporting.php:5053 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3548 +#: ../../include/functions_reporting.php:5157 msgid "Unnasigned group" msgstr "未割当グループ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3525 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3571 msgid "Select by group" msgstr "グループ選択" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3613 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3659 msgid "Display options" msgstr "表示オプション" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3671 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3717 msgid "Agent group filter" msgstr "エージェントグループフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3706 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3752 msgid "Agent OS filter" msgstr "エージェント OS フィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3732 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 msgid "Agent custom field" msgstr "エージェントカスタムフィールド" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3754 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3800 msgid "Agent custom field filter" msgstr "エージェントカスタムフィールドフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3778 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3824 msgid "Agent status filter" msgstr "エージェント状態フィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3816 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3862 msgid "Agent version filter" msgstr "エージェントバージョンフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3840 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3886 msgid "Agent has remote configuration" msgstr "リモート設定エージェント" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3841 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3887 msgid "Filter agents by remote configuration enabled." msgstr "リモート設定が有効化されているエージェントのフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3852 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3898 msgid "Agent module filter" msgstr "エージェントモジュールフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:3876 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3922 msgid "Module group filter" msgstr "モジュールグループフィルタ" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4000 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4515 +#: ../../godmode/reporting/reporting_builder.item_editor.php:3952 +msgid "Search module name" +msgstr "モジュール名検索" + +#: ../../godmode/reporting/reporting_builder.item_editor.php:4105 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4620 msgid "Agent Failover" msgstr "エージェントフェイルオーバー" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4005 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4518 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4110 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4623 msgid "Module Failover" msgstr "モジュールフェイルオーバー" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4045 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4150 msgid "Please save the item before adding entries to this list." msgstr "一覧へのエントリ追加の前に、アイテムを保存してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4491 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4596 msgid "rate" msgstr "律" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4539 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4644 msgid "" "Please be careful, when the module have diferent intervals in their life, the " "summatory maybe get bad result." @@ -39512,169 +40503,169 @@ msgstr "" "モジュールの間隔が異なる場合、合計は正しい値にならない場合があることに注意して" "ください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4559 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4664 msgid "Please save the report to start adding items into the list." msgstr "リストに項目を追加する前にレポートを保存してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4825 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4829 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4833 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4837 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4841 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4845 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4849 -#: ../../godmode/reporting/reporting_builder.item_editor.php:4853 +#: ../../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 msgid "Item Editor Information" msgstr "アイテムエディタ情報" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4826 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4931 msgid "Please select a name." msgstr "名前を選択してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4830 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4935 msgid "Please select an agent." msgstr "エージェントを選択してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4838 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4943 msgid "Please insert a SQL query." msgstr "SQL クエリを入力してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4842 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4947 msgid "Please insert a URL." msgstr "URL を入力してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4846 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4951 msgid "Please checked a custom interval option." msgstr "カスタム間隔オプションを確認してください。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4850 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4955 msgid "Please select a user." msgstr "ユーザを選択して下さい。" -#: ../../godmode/reporting/reporting_builder.item_editor.php:4854 +#: ../../godmode/reporting/reporting_builder.item_editor.php:4959 msgid "Please select a group." msgstr "グループを選択してください。" -#: ../../godmode/reporting/visual_console_builder.elements.php:106 +#: ../../godmode/reporting/visual_console_builder.elements.php:122 msgid "Width x Height
Max value" msgstr "幅 x 高さ
最大値" -#: ../../godmode/reporting/visual_console_builder.elements.php:108 +#: ../../godmode/reporting/visual_console_builder.elements.php:124 msgid "Map linked" msgstr "リンク先マップ" -#: ../../godmode/reporting/visual_console_builder.elements.php:194 +#: ../../godmode/reporting/visual_console_builder.elements.php:210 msgid "Percentile Bar" msgstr "パーセントバー" -#: ../../godmode/reporting/visual_console_builder.elements.php:204 +#: ../../godmode/reporting/visual_console_builder.elements.php:221 msgid "Percentile Bubble" msgstr "パーセント円表示" -#: ../../godmode/reporting/visual_console_builder.elements.php:222 +#: ../../godmode/reporting/visual_console_builder.elements.php:244 #: ../../mobile/operation/events.php:837 -#: ../../include/functions_visual_map_editor.php:1389 +#: ../../include/functions_visual_map_editor.php:1387 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545 -#: ../../operation/visual_console/view.php:308 +#: ../../operation/visual_console/view.php:326 msgid "Module Graph" msgstr "モジュールグラフ" -#: ../../godmode/reporting/visual_console_builder.elements.php:232 +#: ../../godmode/reporting/visual_console_builder.elements.php:255 #: ../../include/functions_visual_map_editor.php:59 -#: ../../include/functions_visual_map_editor.php:1392 +#: ../../include/functions_visual_map_editor.php:1390 #: ../../include/functions_visual_map.php:4180 -#: ../../operation/visual_console/view.php:328 +#: ../../operation/visual_console/view.php:346 msgid "Event history graph" msgstr "イベント履歴グラフ" -#: ../../godmode/reporting/visual_console_builder.elements.php:241 -#: ../../include/functions_visual_map_editor.php:1393 +#: ../../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:333 +#: ../../operation/visual_console/view.php:351 msgid "Simple Value" msgstr "数値" -#: ../../godmode/reporting/visual_console_builder.elements.php:252 +#: ../../godmode/reporting/visual_console_builder.elements.php:277 msgid "Simple Value (Process Max)" msgstr "値 (最大値)" -#: ../../godmode/reporting/visual_console_builder.elements.php:263 +#: ../../godmode/reporting/visual_console_builder.elements.php:288 msgid "Simple Value (Process Min)" msgstr "値 (最小値)" -#: ../../godmode/reporting/visual_console_builder.elements.php:274 +#: ../../godmode/reporting/visual_console_builder.elements.php:299 msgid "Simple Value (Process Avg)" msgstr "値 (平均値)" -#: ../../godmode/reporting/visual_console_builder.elements.php:304 +#: ../../godmode/reporting/visual_console_builder.elements.php:332 #: ../../include/functions_visual_map_editor.php:71 -#: ../../include/functions_visual_map_editor.php:1398 +#: ../../include/functions_visual_map_editor.php:1396 #: ../../include/functions_visual_map.php:4160 -#: ../../operation/visual_console/view.php:358 +#: ../../operation/visual_console/view.php:376 msgid "Box" msgstr "ボックス" -#: ../../godmode/reporting/visual_console_builder.elements.php:323 -#: ../../include/functions_visual_map_editor.php:1405 -#: ../../operation/visual_console/view.php:373 +#: ../../godmode/reporting/visual_console_builder.elements.php:354 +#: ../../include/functions_visual_map_editor.php:1403 +#: ../../operation/visual_console/view.php:391 msgid "Network link" msgstr "ネットワークリンク" -#: ../../godmode/reporting/visual_console_builder.elements.php:344 +#: ../../godmode/reporting/visual_console_builder.elements.php:376 #: ../../include/functions_visual_map_editor.php:73 -#: ../../include/functions_visual_map_editor.php:1400 +#: ../../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:368 +#: ../../operation/visual_console/view.php:386 msgid "Color cloud" msgstr "カラークラウド" -#: ../../godmode/reporting/visual_console_builder.elements.php:352 +#: ../../godmode/reporting/visual_console_builder.elements.php:387 #: ../../include/rest-api/models/VisualConsole/Item.php:2156 -#: ../../operation/visual_console/view.php:313 +#: ../../operation/visual_console/view.php:331 msgid "Basic chart" msgstr "基本グラフ" -#: ../../godmode/reporting/visual_console_builder.elements.php:360 +#: ../../godmode/reporting/visual_console_builder.elements.php:398 #: ../../include/rest-api/models/VisualConsole/Item.php:2152 -#: ../../operation/visual_console/view.php:378 +#: ../../operation/visual_console/view.php:396 msgid "Odometer" msgstr "オドメーター" -#: ../../godmode/reporting/visual_console_builder.elements.php:368 +#: ../../godmode/reporting/visual_console_builder.elements.php:409 #: ../../include/functions_visual_map_editor.php:69 -#: ../../include/functions_visual_map_editor.php:1396 +#: ../../include/functions_visual_map_editor.php:1394 #: ../../include/functions_visual_map.php:4170 #: ../../include/rest-api/models/VisualConsole/Item.php:2104 #: ../../include/lib/Dashboard/Widgets/clock.php:158 #: ../../include/lib/Dashboard/Widgets/clock.php:310 -#: ../../operation/visual_console/view.php:348 +#: ../../operation/visual_console/view.php:366 msgid "Clock" msgstr "時計" -#: ../../godmode/reporting/visual_console_builder.elements.php:395 -#: ../../godmode/reporting/visual_console_builder.elements.php:853 +#: ../../godmode/reporting/visual_console_builder.elements.php:438 +#: ../../godmode/reporting/visual_console_builder.elements.php:910 msgid "Edit label" msgstr "ラベル編集" -#: ../../godmode/reporting/reporting_builder.main.php:146 +#: ../../godmode/reporting/reporting_builder.main.php:157 msgid "Only the group can view the report" msgstr "指定のグループのみレポートを参照可能" -#: ../../godmode/reporting/reporting_builder.main.php:147 +#: ../../godmode/reporting/reporting_builder.main.php:158 msgid "The next group can edit the report" msgstr "グループがレポートを編集可能" -#: ../../godmode/reporting/reporting_builder.main.php:148 +#: ../../godmode/reporting/reporting_builder.main.php:159 msgid "Only the user and admin user can edit the report" msgstr "ユーザおよび管理者のみがレポートを編集可能" -#: ../../godmode/reporting/reporting_builder.main.php:150 +#: ../../godmode/reporting/reporting_builder.main.php:162 msgid "Write Access" msgstr "書き込みアクセス" -#: ../../godmode/reporting/reporting_builder.main.php:152 +#: ../../godmode/reporting/reporting_builder.main.php:163 msgid "" "For example, you want a report that the people of \"All\" groups can see but " "you want to edit only for you or your group." @@ -39682,72 +40673,76 @@ msgstr "" "例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分" "のグループのみが編集できるようにしたい場合等に利用します。" -#: ../../godmode/reporting/reporting_builder.main.php:193 +#: ../../godmode/reporting/reporting_builder.main.php:207 msgid "Non interactive report" msgstr "非対話型レポート" -#: ../../godmode/reporting/reporting_builder.php:210 -#: ../../operation/reporting/reporting_viewer.php:101 +#: ../../godmode/reporting/reporting_builder.php:190 +#: ../../operation/reporting/reporting_viewer.php:100 msgid "Your report has been planned, and the system will email you a " msgstr "" "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: " -#: ../../godmode/reporting/reporting_builder.php:211 -#: ../../operation/reporting/reporting_viewer.php:102 +#: ../../godmode/reporting/reporting_builder.php:191 +#: ../../operation/reporting/reporting_viewer.php:101 msgid "An error has ocurred" msgstr "エラーが発生しました" -#: ../../godmode/reporting/reporting_builder.php:535 -#: ../../godmode/reporting/reporting_builder.php:3527 -#: ../../godmode/reporting/reporting_builder.php:3610 -#: ../../godmode/reporting/reporting_builder.php:3658 +#: ../../godmode/reporting/reporting_builder.php:515 +#: ../../godmode/reporting/reporting_builder.php:3560 +#: ../../godmode/reporting/reporting_builder.php:3627 +#: ../../godmode/reporting/reporting_builder.php:3675 msgid "Reports list" msgstr "レポート一覧" -#: ../../godmode/reporting/reporting_builder.php:551 -#: ../../godmode/reporting/reporting_builder.php:3538 -#: ../../operation/menu.php:332 ../../operation/reporting/custom_reporting.php:23 +#: ../../godmode/reporting/reporting_builder.php:531 +#: ../../godmode/reporting/reporting_builder.php:3571 +#: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23 msgid "Custom reporting" msgstr "カスタムレポート" -#: ../../godmode/reporting/reporting_builder.php:583 +#: ../../godmode/reporting/reporting_builder.php:548 msgid "List of reports" msgstr "レポート一覧" -#: ../../godmode/reporting/reporting_builder.php:1044 +#: ../../godmode/reporting/reporting_builder.php:750 +msgid "search" +msgstr "検索" + +#: ../../godmode/reporting/reporting_builder.php:1020 msgid "This report exceeds the item limit for realtime operations" msgstr "このレポートはリアルタイム処理のアイテム数制限を超過しています" -#: ../../godmode/reporting/reporting_builder.php:1276 +#: ../../godmode/reporting/reporting_builder.php:1280 msgid "Create report" msgstr "レポートの作成" -#: ../../godmode/reporting/reporting_builder.php:3642 -#: ../../operation/reporting/reporting_viewer.php:173 +#: ../../godmode/reporting/reporting_builder.php:3659 +#: ../../operation/reporting/reporting_viewer.php:172 msgid "View report" msgstr "レポート参照" -#: ../../godmode/reporting/reporting_builder.php:3661 +#: ../../godmode/reporting/reporting_builder.php:3678 msgid "Create Custom Report" msgstr "カスタムレポートの作成" -#: ../../godmode/reporting/reporting_builder.php:3749 +#: ../../godmode/reporting/reporting_builder.php:3750 msgid "Unsuccessful action

" msgstr "アクション失敗

" -#: ../../godmode/reporting/visual_console_builder.wizard.php:127 +#: ../../godmode/reporting/visual_console_builder.wizard.php:123 #: ../../include/functions_visual_map_editor.php:56 msgid "Static Graph" msgstr "静的グラフ" -#: ../../godmode/reporting/visual_console_builder.wizard.php:128 +#: ../../godmode/reporting/visual_console_builder.wizard.php:124 #: ../../include/functions_visual_map_editor.php:57 -#: ../../include/functions_visual_map_editor.php:1388 -#: ../../operation/visual_console/view.php:303 +#: ../../include/functions_visual_map_editor.php:1386 +#: ../../operation/visual_console/view.php:321 msgid "Percentile Item" msgstr "パーセント表示" -#: ../../godmode/reporting/visual_console_builder.wizard.php:129 +#: ../../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 @@ -39755,169 +40750,169 @@ msgstr "パーセント表示" msgid "Module graph" msgstr "モジュールデータのグラフ" -#: ../../godmode/reporting/visual_console_builder.wizard.php:130 +#: ../../godmode/reporting/visual_console_builder.wizard.php:126 #: ../../include/functions_visual_map_editor.php:60 msgid "Simple value" msgstr "値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:165 +#: ../../godmode/reporting/visual_console_builder.wizard.php:162 msgid "Range between elements (px)" msgstr "エレメント間の幅 (px)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:178 +#: ../../godmode/reporting/visual_console_builder.wizard.php:180 msgid "Size (px)" msgstr "サイズ (px)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:228 -#: ../../include/functions_config.php:1032 +#: ../../godmode/reporting/visual_console_builder.wizard.php:232 +#: ../../include/functions_config.php:1066 msgid "Font size" msgstr "フォントサイズ" -#: ../../godmode/reporting/visual_console_builder.wizard.php:256 +#: ../../godmode/reporting/visual_console_builder.wizard.php:260 #: ../../include/functions_visual_map_editor.php:612 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:371 msgid "Process" msgstr "処理" -#: ../../godmode/reporting/visual_console_builder.wizard.php:259 +#: ../../godmode/reporting/visual_console_builder.wizard.php:263 #: ../../include/functions_visual_map_editor.php:615 msgid "Min value" msgstr "最小値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:260 -#: ../../godmode/reporting/visual_console_builder.wizard.php:278 +#: ../../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:682 +#: ../../include/functions_visual_map_editor.php:680 msgid "Max value" msgstr "最大値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:261 +#: ../../godmode/reporting/visual_console_builder.wizard.php:265 #: ../../include/functions_visual_map_editor.php:617 msgid "Avg value" msgstr "平均値" -#: ../../godmode/reporting/visual_console_builder.wizard.php:273 +#: ../../godmode/reporting/visual_console_builder.wizard.php:278 msgid "Width (px)" msgstr "幅 (px)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:295 -#: ../../include/functions_visual_map_editor.php:687 +#: ../../godmode/reporting/visual_console_builder.wizard.php:300 +#: ../../include/functions_visual_map_editor.php:685 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:459 msgid "Bubble" msgstr "バブル" -#: ../../godmode/reporting/visual_console_builder.wizard.php:307 -#: ../../include/functions_visual_map_editor.php:711 -#: ../../include/functions_visual_map_editor.php:729 -#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 -msgid "Value to show" -msgstr "表示する値" - -#: ../../godmode/reporting/visual_console_builder.wizard.php:309 -#: ../../include/functions_visual_map_editor.php:692 +#: ../../godmode/reporting/visual_console_builder.wizard.php:319 +#: ../../include/functions_visual_map_editor.php:690 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:504 msgid "Percent" msgstr "パーセント" -#: ../../godmode/reporting/visual_console_builder.wizard.php:378 +#: ../../godmode/reporting/visual_console_builder.wizard.php:345 +#: ../../include/functions_visual_map_editor.php:709 +#: ../../include/functions_visual_map_editor.php:727 +#: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:509 +msgid "Value to show" +msgstr "表示する値" + +#: ../../godmode/reporting/visual_console_builder.wizard.php:413 msgid "One item per agent" msgstr "1エージェントに 1アイテム" -#: ../../godmode/reporting/visual_console_builder.wizard.php:448 -#: ../../godmode/reporting/visual_console_builder.wizard.php:765 +#: ../../godmode/reporting/visual_console_builder.wizard.php:461 +#: ../../godmode/reporting/visual_console_builder.wizard.php:816 msgid "Agent - Module" msgstr "エージェント - モジュール" -#: ../../godmode/reporting/visual_console_builder.wizard.php:465 +#: ../../godmode/reporting/visual_console_builder.wizard.php:506 msgid "Enable link agent" msgstr "エージェントのリンクを有効にする" -#: ../../godmode/reporting/visual_console_builder.wizard.php:476 +#: ../../godmode/reporting/visual_console_builder.wizard.php:516 msgid "Set Parent" msgstr "親を設定" -#: ../../godmode/reporting/visual_console_builder.wizard.php:479 +#: ../../godmode/reporting/visual_console_builder.wizard.php:519 msgid "Item created in the visualmap" msgstr "ビジュアルマップに作成したアイテム" -#: ../../godmode/reporting/visual_console_builder.wizard.php:480 +#: ../../godmode/reporting/visual_console_builder.wizard.php:520 msgid "Use the agents relationship (from selected agents)" msgstr "エージェント関係を利用する (選択したエージェント)" -#: ../../godmode/reporting/visual_console_builder.wizard.php:489 +#: ../../godmode/reporting/visual_console_builder.wizard.php:537 msgid "Item in the map" msgstr "マップ内のアイテム" -#: ../../godmode/reporting/visual_console_builder.wizard.php:490 +#: ../../godmode/reporting/visual_console_builder.wizard.php:538 #, php-format msgid "The parenting relationships in %s will be drawn on the map." msgstr "%s の親子関係がマップに描画されます。" -#: ../../godmode/reporting/visual_console_builder.wizard.php:510 -#: ../../godmode/reporting/visual_console_builder.wizard.php:514 +#: ../../godmode/reporting/visual_console_builder.wizard.php:557 +#: ../../godmode/reporting/visual_console_builder.wizard.php:561 msgid "Are you sure to add many elements\\nin visual map?" msgstr "" "ビジュアルマップに多くのエレメントを追加しようとしています。\n" "よろしいですか。" -#: ../../godmode/reporting/visual_console_builder.wizard.php:686 +#: ../../godmode/reporting/visual_console_builder.wizard.php:737 msgid "Please select any module or modules." msgstr "モジュールを選択してください。" -#: ../../godmode/reporting/visual_console_builder.editor.php:163 +#: ../../godmode/reporting/visual_console_builder.editor.php:173 msgid "Min allowed size is 1024x768" msgstr "最小サイズは 1024x768 です" -#: ../../godmode/reporting/visual_console_builder.editor.php:167 -#: ../../godmode/reporting/visual_console_builder.editor.php:169 -#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../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 msgid "Action in progress" msgstr "アクション実行中" -#: ../../godmode/reporting/visual_console_builder.editor.php:167 +#: ../../godmode/reporting/visual_console_builder.editor.php:177 msgid "Loading in progress" msgstr "読み込み中" -#: ../../godmode/reporting/visual_console_builder.editor.php:169 +#: ../../godmode/reporting/visual_console_builder.editor.php:179 msgid "Saving in progress" msgstr "保存中" -#: ../../godmode/reporting/visual_console_builder.editor.php:171 +#: ../../godmode/reporting/visual_console_builder.editor.php:181 msgid "Deletion in progress" msgstr "削除中" -#: ../../godmode/reporting/graph_builder.main.php:218 +#: ../../godmode/reporting/graph_builder.main.php:212 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:356 -#: ../../operation/reporting/graph_viewer.php:346 +#: ../../operation/reporting/graph_viewer.php:358 msgid "Bullet chart" msgstr "ブレットグラフ" -#: ../../godmode/reporting/graph_builder.main.php:219 +#: ../../godmode/reporting/graph_builder.main.php:213 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:357 -#: ../../operation/reporting/graph_viewer.php:347 +#: ../../operation/reporting/graph_viewer.php:359 msgid "Gauge" msgstr "ゲージ" -#: ../../godmode/reporting/graph_builder.main.php:222 +#: ../../godmode/reporting/graph_builder.main.php:216 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:360 -#: ../../operation/reporting/graph_viewer.php:350 +#: ../../operation/reporting/graph_viewer.php:362 msgid "Pie" msgstr "円" -#: ../../godmode/reporting/graph_builder.main.php:230 +#: ../../godmode/reporting/graph_builder.main.php:235 msgid "Equalize maximum thresholds" msgstr "最大閾値を合わせる" -#: ../../godmode/reporting/graph_builder.main.php:258 +#: ../../godmode/reporting/graph_builder.main.php:263 msgid "Add summatory series" msgstr "合計の表示" -#: ../../godmode/reporting/graph_builder.main.php:268 +#: ../../godmode/reporting/graph_builder.main.php:273 msgid "Add average series" msgstr "平均の表示" -#: ../../godmode/reporting/graph_builder.main.php:279 +#: ../../godmode/reporting/graph_builder.main.php:284 msgid "Modules and series" msgstr "モジュール値と統計値" @@ -39980,42 +40975,38 @@ msgstr "" "オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。" "パッチを適用する前に、ファイルを完全にバックアップすることをお勧めします。" -#: ../../godmode/events/event_responses.editor.php:73 -msgid "Edit event responses" -msgstr "イベント応答の編集" - -#: ../../godmode/events/event_responses.editor.php:123 -msgid "For Command type Modal Window mode is enforced" -msgstr "種類がコマンドの場合は、専用ウインドウになります。" - -#: ../../godmode/events/event_responses.editor.php:125 +#: ../../godmode/events/event_responses.editor.php:156 msgid "Modal window" msgstr "専用ウインドウ" -#: ../../godmode/events/event_responses.editor.php:126 +#: ../../godmode/events/event_responses.editor.php:157 msgid "New window" msgstr "新しいウィンドウ" -#: ../../godmode/events/event_responses.editor.php:175 +#: ../../godmode/events/event_responses.editor.php:160 +msgid "For Command type Modal Window mode is enforced" +msgstr "種類がコマンドの場合は、専用ウインドウになります。" + +#: ../../godmode/events/event_responses.editor.php:268 #: ../../include/class/AgentWizard.class.php:558 -#: ../../include/functions_snmp_browser.php:766 +#: ../../include/functions_snmp_browser.php:785 msgid "Local console" msgstr "ローカルコンソール" -#: ../../godmode/events/event_responses.editor.php:192 -#: ../../include/class/AgentWizard.class.php:742 +#: ../../godmode/events/event_responses.editor.php:287 +#: ../../include/class/AgentWizard.class.php:743 msgid "Server to execute command" msgstr "コマンドを実行するサーバ" -#: ../../godmode/events/event_responses.editor.php:198 +#: ../../godmode/events/event_responses.editor.php:300 msgid "Command timeout (s)" msgstr "コマンドタイムアウト: (s)" -#: ../../godmode/events/event_responses.editor.php:204 +#: ../../godmode/events/event_responses.editor.php:315 msgid "Display command" msgstr "表示コマンド" -#: ../../godmode/events/event_responses.editor.php:204 +#: ../../godmode/events/event_responses.editor.php:315 msgid "" "If enabled the command will be displayed to any user that can execute this " "event response" @@ -40023,109 +41014,98 @@ msgstr "" "有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されま" "す" -#: ../../godmode/events/event_edit_filter.php:276 -msgid "Update Filter" -msgstr "フィルタ更新" - -#: ../../godmode/events/event_edit_filter.php:278 -msgid "Create Filter" -msgstr "フィルタ作成" - -#: ../../godmode/events/event_edit_filter.php:288 -#: ../../include/ajax/custom_fields.php:573 -#: ../../include/ajax/custom_fields.php:620 -#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:782 -msgid "Filter name" -msgstr "フィルタ名" - -#: ../../godmode/events/event_edit_filter.php:291 +#: ../../godmode/events/event_edit_filter.php:304 msgid "Save in group" msgstr "保存グループ" -#: ../../godmode/events/event_edit_filter.php:291 +#: ../../godmode/events/event_edit_filter.php:304 msgid "" "This group will be use to restrict the visibility of this filter with ACLs" msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます" -#: ../../godmode/events/event_edit_filter.php:453 +#: ../../godmode/events/event_edit_filter.php:502 msgid "Choose between the users who have validated an event. " msgstr "イベントを承諾したユーザを選択します。 " -#: ../../godmode/events/event_edit_filter.php:477 +#: ../../godmode/events/event_edit_filter.php:520 msgid "Owner." msgstr "所有者" -#: ../../godmode/events/event_edit_filter.php:489 -#: ../../operation/events/events.php:1708 +#: ../../godmode/events/event_edit_filter.php:535 +#: ../../operation/events/events.php:1783 msgid "All events" msgstr "全イベント一覧表示" -#: ../../godmode/events/event_edit_filter.php:490 -#: ../../operation/events/events.php:1709 ../../operation/events/events.php:2375 +#: ../../godmode/events/event_edit_filter.php:536 +#: ../../operation/events/events.php:1784 ../../operation/events/events.php:2435 msgid "Group events" msgstr "グルーピング・回数表示" -#: ../../godmode/events/event_edit_filter.php:491 -#: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1710 +#: ../../godmode/events/event_edit_filter.php:537 +#: ../../include/ajax/heatmap.ajax.php:80 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:252 +#: ../../operation/events/events.php:1785 msgid "Group agents" msgstr "グループエージェント" -#: ../../godmode/events/event_edit_filter.php:492 -#: ../../operation/events/events.php:1711 +#: ../../godmode/events/event_edit_filter.php:538 +#: ../../operation/events/events.php:1786 msgid "Group extra id" msgstr "グループ追加 ID" -#: ../../godmode/events/event_edit_filter.php:658 -#: ../../operation/events/events.php:1984 +#: ../../godmode/events/event_edit_filter.php:763 +#: ../../operation/events/events.php:2033 msgid "Filter alert events" msgstr "アラートイベントフィルター" -#: ../../godmode/events/event_edit_filter.php:659 -#: ../../operation/events/events.php:1985 +#: ../../godmode/events/event_edit_filter.php:764 +#: ../../operation/events/events.php:2034 msgid "Only alert events" msgstr "アラートイベントのみ" -#: ../../godmode/events/event_edit_filter.php:686 -#: ../../operation/events/events.php:1855 +#: ../../godmode/events/event_edit_filter.php:813 +#: ../../operation/events/events.php:1893 msgid "Extra ID" msgstr "拡張 ID" -#: ../../godmode/events/event_edit_filter.php:692 +#: ../../godmode/events/event_edit_filter.php:845 msgid "Custom data filter type" msgstr "カスタムデータフィルタタイプ" -#: ../../godmode/events/event_edit_filter.php:695 +#: ../../godmode/events/event_edit_filter.php:848 msgid "Filter custom data by name field" msgstr "名前フィールドでカスタムデータをフィルタ" -#: ../../godmode/events/event_edit_filter.php:696 +#: ../../godmode/events/event_edit_filter.php:849 msgid "Filter custom data by value field" msgstr "値フィールドでカスタムデータをフィルタ" -#: ../../godmode/events/event_edit_filter.php:706 -#: ../../godmode/events/custom_events.php:119 -#: ../../include/functions_reporting_html.php:1069 -#: ../../include/functions_reporting_html.php:1330 -#: ../../include/functions_reporting_html.php:2557 -#: ../../include/ajax/events.php:1725 ../../include/functions_events.php:221 +#: ../../godmode/events/event_edit_filter.php:864 +#: ../../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_events.php:323 msgid "Custom data" msgstr "カスタムデータ" -#: ../../godmode/events/event_edit_filter.php:710 +#: ../../godmode/events/event_edit_filter.php:881 msgid "Id souce event" msgstr "ソースイベントID" -#: ../../godmode/events/event_edit_filter.php:735 -#: ../../operation/events/events.php:256 +#: ../../godmode/events/event_edit_filter.php:911 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:313 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:358 +#: ../../operation/events/events.php:265 msgid "Metaconsola" msgstr "メタコンソール" -#: ../../godmode/events/event_responses.list.php:32 +#: ../../godmode/events/event_responses.list.php:48 msgid "No responses found" msgstr "応答がありません" -#: ../../godmode/events/event_responses.list.php:92 +#: ../../godmode/events/event_responses.list.php:121 msgid "Create response" msgstr "応答の作成" @@ -40137,88 +41117,88 @@ msgstr "前のイベントからフィールドをロード" msgid "Event fields will be loaded. Do you want to continue?" msgstr "イベントフィールドが読み込まれます。続けますか?" -#: ../../godmode/events/custom_events.php:94 +#: ../../godmode/events/custom_events.php:92 #: ../../include/functions_events.php:238 msgid "Event Id" msgstr "イベント ID" -#: ../../godmode/events/custom_events.php:95 +#: ../../godmode/events/custom_events.php:93 #: ../../mobile/operation/events.php:237 ../../include/functions_events.php:241 msgid "Event Name" msgstr "イベント名" -#: ../../godmode/events/custom_events.php:97 +#: ../../godmode/events/custom_events.php:95 #: ../../include/class/SatelliteAgent.class.php:146 msgid "Agent Name" msgstr "エージェント名" -#: ../../godmode/events/custom_events.php:98 +#: ../../godmode/events/custom_events.php:96 #: ../../include/functions_events.php:320 msgid "Agent IP" msgstr "エージェント IP" -#: ../../godmode/events/custom_events.php:103 +#: ../../godmode/events/custom_events.php:101 #: ../../include/functions_events.php:265 msgid "Event Type" msgstr "イベントタイプ" -#: ../../godmode/events/custom_events.php:104 -#: ../../include/class/ModuleTemplates.class.php:1208 -#: ../../include/class/AgentWizard.class.php:1278 -#: ../../include/class/AgentWizard.class.php:4170 +#: ../../godmode/events/custom_events.php:102 +#: ../../include/class/ModuleTemplates.class.php:1183 +#: ../../include/class/AgentWizard.class.php:1281 +#: ../../include/class/AgentWizard.class.php:4173 #: ../../include/functions_events.php:268 msgid "Module Name" msgstr "モジュール名" -#: ../../godmode/events/custom_events.php:110 +#: ../../godmode/events/custom_events.php:108 #: ../../include/functions_events.php:286 msgid "Extra Id" msgstr "追加 ID" -#: ../../godmode/events/custom_events.php:114 +#: ../../godmode/events/custom_events.php:112 #: ../../include/functions_events.php:298 msgid "Server Name" msgstr "サーバ名" -#: ../../godmode/events/custom_events.php:117 +#: ../../godmode/events/custom_events.php:115 #: ../../include/functions_events.php:316 msgid "Severity mini" msgstr "重要度(縮小表示)" -#: ../../godmode/events/custom_events.php:118 -#: ../../include/functions_events.php:307 ../../include/functions_events.php:4890 +#: ../../godmode/events/custom_events.php:116 +#: ../../include/functions_events.php:307 ../../include/functions_events.php:5103 msgid "Module custom ID" msgstr "モジュールカスタム ID" -#: ../../godmode/events/custom_events.php:171 +#: ../../godmode/events/custom_events.php:172 msgid "Move up selected fields" msgstr "選択したフィールドを上へ" -#: ../../godmode/events/custom_events.php:179 +#: ../../godmode/events/custom_events.php:181 msgid "Move down selected fields" msgstr "選択したフィールドを下へ" -#: ../../godmode/events/event_responses.php:51 +#: ../../godmode/events/event_responses.php:67 msgid "Response added succesfully" msgstr "応答を追加しました" -#: ../../godmode/events/event_responses.php:53 +#: ../../godmode/events/event_responses.php:69 msgid "Response cannot be added" msgstr "応答を追加できません" -#: ../../godmode/events/event_responses.php:77 +#: ../../godmode/events/event_responses.php:93 msgid "Response updated succesfully" msgstr "応答を更新しました" -#: ../../godmode/events/event_responses.php:79 +#: ../../godmode/events/event_responses.php:95 msgid "Response cannot be updated" msgstr "応答を更新できません" -#: ../../godmode/events/event_responses.php:89 +#: ../../godmode/events/event_responses.php:105 msgid "Response deleted succesfully" msgstr "応答を削除しました" -#: ../../godmode/events/event_responses.php:91 +#: ../../godmode/events/event_responses.php:107 msgid "Response cannot be deleted" msgstr "応答を削除できません" @@ -40262,34 +41242,39 @@ msgstr "正しいネットワークを指定する必要があります。" msgid "Failed to find network scan task." msgstr "ネットワークスキャンタスクを見つけられませんでした。" -#: ../../godmode/wizards/HostDevices.class.php:702 +#: ../../godmode/wizards/HostDevices.class.php:706 #, php-format msgid "\"%s\" features" msgstr "\"%s\" 機能" -#: ../../godmode/wizards/HostDevices.class.php:730 -#: ../../include/class/CustomNetScan.class.php:403 +#: ../../godmode/wizards/HostDevices.class.php:734 +#: ../../include/class/CustomNetScan.class.php:406 msgid "Internal error, please re-run this wizard." msgstr "内部エラー。このウィザードを再実行してください。" -#: ../../godmode/wizards/HostDevices.class.php:815 -#: ../../include/class/CustomNetScan.class.php:545 +#: ../../godmode/wizards/HostDevices.class.php:800 +#: ../../include/class/CustomNetScan.class.php:527 +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 "自動検出タスクの最小間隔は、5分をお勧めします。" -#: ../../godmode/wizards/HostDevices.class.php:870 +#: ../../godmode/wizards/HostDevices.class.php:869 msgid "Use CSV file definition" msgstr "CSV ファイルの定義を利用" -#: ../../godmode/wizards/HostDevices.class.php:871 +#: ../../godmode/wizards/HostDevices.class.php:870 msgid "Define targets using csv o network definition." msgstr "CSV またはネットワーク定義を利用して対象を定義" -#: ../../godmode/wizards/HostDevices.class.php:889 +#: ../../godmode/wizards/HostDevices.class.php:888 msgid "Networks (csv)" msgstr "ネットワーク (CSV)" -#: ../../godmode/wizards/HostDevices.class.php:890 +#: ../../godmode/wizards/HostDevices.class.php:889 msgid "" "You can upload a CSV file. Each line must contain a network in IP/MASK format. " "For instance: 192.168.1.1/32" @@ -40297,15 +41282,15 @@ msgstr "" "CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含ま" "れている必要があります。例: 192.168.1.1/32" -#: ../../godmode/wizards/HostDevices.class.php:902 +#: ../../godmode/wizards/HostDevices.class.php:901 msgid "Networks (current)" msgstr "ネットワーク (現在)" -#: ../../godmode/wizards/HostDevices.class.php:903 +#: ../../godmode/wizards/HostDevices.class.php:902 msgid "Please upload a new file to overwrite this content." msgstr "この内容を上書きするために新たなファイルをアップロードしてください。" -#: ../../godmode/wizards/HostDevices.class.php:919 +#: ../../godmode/wizards/HostDevices.class.php:918 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." @@ -40314,11 +41299,11 @@ msgstr "" "特定のホストのネットワーク名または FQDN 名をカンマで区切って指定できます。例: " "192.168.50.0/24,192.168.60.0/24, hostname.artica.es" -#: ../../godmode/wizards/HostDevices.class.php:1051 +#: ../../godmode/wizards/HostDevices.class.php:1068 msgid "Filter by opened ports" msgstr "開いているポートでフィルタ" -#: ../../godmode/wizards/HostDevices.class.php:1053 +#: ../../godmode/wizards/HostDevices.class.php:1070 msgid "" "Targets will be scanned if at least one of defined ports (comma separated) is " "open." @@ -40326,11 +41311,11 @@ msgstr "" "定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャン" "されます。" -#: ../../godmode/wizards/HostDevices.class.php:1066 +#: ../../godmode/wizards/HostDevices.class.php:1083 msgid "Auto discover known hardware" msgstr "既知のハードウェアの自動検出" -#: ../../godmode/wizards/HostDevices.class.php:1068 +#: ../../godmode/wizards/HostDevices.class.php:1085 msgid "" "Targets will be monitorized based on its Private Enterprise Number. " "Requires SNMP." @@ -40338,13 +41323,13 @@ msgstr "" "対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP " "が必要です。" -#: ../../godmode/wizards/HostDevices.class.php:1083 +#: ../../godmode/wizards/HostDevices.class.php:1100 msgid "Module Host Alive will be added to discovered agents by default." msgstr "" "モジュール Host Alive が検出されたエージェントにデフォルトで追加されま" "す。" -#: ../../godmode/wizards/HostDevices.class.php:1131 +#: ../../godmode/wizards/HostDevices.class.php:1148 #, php-format msgid "" "Configured networks could generate %d agents, your license only allows %d, " @@ -40353,20 +41338,20 @@ msgstr "" "設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセン" "スは %d までです。'結果の確認' は必須です。" -#: ../../godmode/wizards/HostDevices.class.php:1139 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:910 +#: ../../godmode/wizards/HostDevices.class.php:1156 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:917 msgid "Review results" msgstr "結果確認" -#: ../../godmode/wizards/HostDevices.class.php:1141 +#: ../../godmode/wizards/HostDevices.class.php:1158 msgid "Targets must be validated by user before create agents." msgstr "エージェントを作成する前に、ユーザが対象を検証する必要があります。" -#: ../../godmode/wizards/HostDevices.class.php:1167 +#: ../../godmode/wizards/HostDevices.class.php:1184 msgid "Apply autoconfiguration rules" msgstr "自動設定ルールの適用" -#: ../../godmode/wizards/HostDevices.class.php:1169 +#: ../../godmode/wizards/HostDevices.class.php:1186 msgid "" "System is able to auto configure detected host & devices by applying your " "defined configuration rules." @@ -40374,288 +41359,289 @@ msgstr "" "システムは、定義された設定ルールを適用することにより、検出されたホストとデバイ" "スを自動設定できます。" -#: ../../godmode/wizards/HostDevices.class.php:1185 +#: ../../godmode/wizards/HostDevices.class.php:1202 msgid "SNMP enabled" msgstr "SNMP 有効化" -#: ../../godmode/wizards/HostDevices.class.php:1226 +#: ../../godmode/wizards/HostDevices.class.php:1243 msgid "Skip non-enabled interfaces" msgstr "未有効化インタフェースをスキップ" -#: ../../godmode/wizards/HostDevices.class.php:1245 +#: ../../godmode/wizards/HostDevices.class.php:1262 msgid "SNMP communities to try with" msgstr "処理実行時の SNMP コミュニティ" -#: ../../godmode/wizards/HostDevices.class.php:1247 +#: ../../godmode/wizards/HostDevices.class.php:1264 msgid "" "You can specify several values, separated by commas, for example: public," "mysecret,1234" msgstr "カンマ区切りで複数の値を指定できます。例: public,mysecret,1234" -#: ../../godmode/wizards/HostDevices.class.php:1374 +#: ../../godmode/wizards/HostDevices.class.php:1391 msgid "OS detection" msgstr "OSの検出" -#: ../../godmode/wizards/HostDevices.class.php:1386 +#: ../../godmode/wizards/HostDevices.class.php:1403 msgid "Name resolution" msgstr "名前解決" -#: ../../godmode/wizards/HostDevices.class.php:1397 +#: ../../godmode/wizards/HostDevices.class.php:1414 msgid "Parent detection" msgstr "親の検出" -#: ../../godmode/wizards/HostDevices.class.php:1408 +#: ../../godmode/wizards/HostDevices.class.php:1425 msgid "Parent recursion" msgstr "親の再帰検出" -#: ../../godmode/wizards/HostDevices.class.php:1419 +#: ../../godmode/wizards/HostDevices.class.php:1436 msgid "VLAN enabled" msgstr "VLAN 有効" -#: ../../godmode/wizards/HostDevices.class.php:1430 +#: ../../godmode/wizards/HostDevices.class.php:1447 msgid "WMI enabled" msgstr "WMI 有効" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:256 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:259 msgid "Task successfully deleted" msgstr "タスクを削除しました" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:363 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:490 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:366 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:493 msgid "Task successfully enabled" msgstr "タスクが有効化されました" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:363 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:366 msgid "Task succesfully disabled" msgstr "タスクを無効化しました" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:403 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:406 msgid "Console Task successfully deleted" msgstr "コンソールタスクを削除しました" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:445 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:448 msgid "Task successfully disabled" msgstr "タスクが無効化されました" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:522 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:525 msgid "Discovery Server is disabled" msgstr "自動検出サーバが無効です" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:605 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:608 msgid "Task type" msgstr "タスクタイプ" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:611 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:614 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:383 msgid "Updated at" msgstr "更新日時" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:667 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:670 msgid "This action will rescan the target networks." msgstr "対象ネットワークを再スキャンします。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:684 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:687 msgid "This task has not been completely defined, please edit it" msgstr "このタスクは定義が完了していません。編集してください。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:734 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:737 msgid "Discovery Cloud Azure Compute" msgstr "Cloud Azure Compute の自動検出" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:738 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:741 msgid "Cloud.Azure.Compute" msgstr "Cloud.Azure.Compute" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:747 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:750 msgid "Discovery Cloud AWS EC2" msgstr "Cloud AWS EC2 の自動検出" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:751 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:754 msgid "Cloud.AWS.EC2" msgstr "Cloud.AWS.EC2" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:760 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:763 msgid "Discovery Cloud RDS" msgstr "Cloud RDS の自動検出" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:764 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:767 msgid "Discovery.Cloud.Aws.RDS" msgstr "Discovery.Cloud.Aws.RDS" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:773 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:776 msgid "Discovery Cloud S3" msgstr "クラウド検出 S3" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:777 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:780 msgid "Discovery.Cloud.Aws.S3" msgstr "クラウド検出 AWS.S3" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:786 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:789 msgid "Discovery Applications MySQL" msgstr "MySQL アプリケーションの自動検出" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:790 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:793 msgid "Discovery.App.MySQL" msgstr "Discovery.App.MySQL" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:799 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:802 msgid "Discovery Applications Oracle" msgstr "Oracle アプリケーションの自動検出" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:803 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:806 msgid "Discovery.App.Oracle" msgstr "Discovery.App.Oracle" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:812 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:815 msgid "Discovery Applications DB2" msgstr "アプリケーション検出 DB2" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:816 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:819 msgid "Discovery.App.DB2" msgstr "検出.App.DB2" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:827 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:830 msgid "Discovery.Agent.Deployment" msgstr "Discovery.Agent.Deployment" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:835 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:839 msgid "Discovery Applications Microsoft SQL Server" msgstr "アプリケーション検出 Microsoft SQL Server" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:837 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:843 msgid "Discovery.App.Microsoft SQL Server" msgstr "検出.App.Microsoft SQL Server" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:848 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:854 msgid "Discovery NetScan" msgstr "NetScan 自動検出" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:852 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:858 msgid "Discovery.NetScan" msgstr "Discovery.NetScan" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:898 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:905 msgid "Not executed yet" msgstr "未実行" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:922 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:929 msgid "View summary" msgstr "概要表示" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:943 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:950 #: ../../operation/agentes/pandora_networkmap.editor.php:214 msgid "View map" msgstr "マップ表示" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:967 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:993 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:975 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1013 msgid "Edit task" msgstr "タスク編集" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:977 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1003 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:985 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:996 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1023 msgid "Delete task" msgstr "タスク削除" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1016 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1036 msgid "enable task" msgstr "タスク有効化" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1065 msgid "has no discovery tasks assigned" msgstr "に自動検出タスクが割り当てられていません。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1052 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1072 msgid "Server Tasks" msgstr "サーバタスク" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1199 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1219 msgid "Overall Progress" msgstr "全体の進捗" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1218 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1238 msgid "Scanning network" msgstr "ネットワークスキャン中" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1222 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1242 msgid "Checking" msgstr "確認中" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1226 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1246 msgid "Finding AFT connectivity" msgstr "AFT 接続検出中" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1230 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1250 msgid "Finding traceroute connectivity" msgstr "traceroute 到達性検出中" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1234 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1254 msgid "Finding gateway connectivity" msgstr "ゲートウェイ到達性検出中" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1238 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1258 msgid "Searching for devices..." msgstr "デバイスを検索中..." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1242 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1262 msgid "Analyzing application..." msgstr "アプリケーションの分析中..." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1246 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1266 msgid "Executing custom queries..." msgstr "カスタムクエリの実行中..." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1250 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1270 msgid "Testing modules..." msgstr "モジュールのテスト中..." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1254 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1274 msgid "Processing results..." msgstr "結果の処理中..." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1258 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1278 msgid "Processing..." msgstr "処理中..." -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1291 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1855 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1311 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1875 #: ../../operation/agentes/log_sources_status.php:57 msgid "Review" msgstr "確認" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1371 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1391 msgid "Host&devices total" msgstr "全ホスト&デバイス" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1376 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1396 msgid "Agents monitored" msgstr "監視対象エージェント" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1381 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1401 msgid "Agents pending" msgstr "保留中エージェント" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1388 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1408 msgid "Hosts discovered" msgstr "ホストが見つかりました" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1404 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1424 msgid "Responding SNMP" msgstr "SNMP 応答" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1409 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1429 msgid "Responding WMI" msgstr "WMI 応答" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1456 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1476 msgid "This task has never executed" msgstr "このタスクは一度も実行されていません" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1468 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1488 msgid "Task queued, please wait." msgstr "タスクがキューに入っています。お待ちください。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1512 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1532 msgid "" "Please ensure instances or regions are being monitorized and 'scan and general " "monitoring' is enabled." @@ -40663,174 +41649,186 @@ msgstr "" "インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有" "効になっていることを確認してください。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1530 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1672 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1550 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1692 msgid "Invalid task" msgstr "不正なタスク" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1629 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1649 msgid "Please select devices to be monitored" msgstr "監視するデバイスを選択してください" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1632 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1652 msgid "select all" msgstr "全て選択" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1635 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1655 msgid "deselect all" msgstr "全て未選択" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1638 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1658 msgid "expand all" msgstr "すべて展開" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1641 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1661 msgid "collapse all" msgstr "すべて折りたたむ" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1655 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1675 msgid "No devices found in temporary resources, please re-launch." msgstr "一時リソースにデバイスが見つかりません。再実行してください。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1722 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1742 #, php-format msgid "Your selection exceeds the agents available on your license. Limit %d" msgstr "選択内容がライセンスで利用可能なエージェント数を超えています。制限: %d" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1746 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1765 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1766 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1785 msgid "Removed" msgstr "削除済" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1802 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1822 msgid "No changes. Re-Scheduled" msgstr "変更なし。再スケジュール" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1804 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1824 msgid "Scheduled for creation" msgstr "作成予定" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1831 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1851 msgid "Cancelled" msgstr "取消済" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1832 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1852 msgid "Server has been restarted while executing this task, please retry." msgstr "このタスクの実行中にサーバが再起動されました。再試行してください。" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1839 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1845 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1859 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 #: ../../include/help/clippy/operation_agentes_ver_agente.php:40 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:119 msgid "Done" msgstr "完了" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1843 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1860 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1880 msgid "Not started" msgstr "開始していません" -#: ../../godmode/wizards/DiscoveryTaskList.class.php:1865 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:1885 msgid "Searching" msgstr "検索中" -#: ../../godmode/servers/servers.build_table.php:118 +#: ../../godmode/servers/servers.build_table.php:122 msgid "Server has crashed." msgstr "サーバがクラッシュしました。" -#: ../../godmode/servers/servers.build_table.php:126 +#: ../../godmode/servers/servers.build_table.php:130 msgid "Server is stopped." msgstr "サーバが停止しました。" -#: ../../godmode/servers/servers.build_table.php:138 +#: ../../godmode/servers/servers.build_table.php:142 msgid "Exec server enabled" msgstr "Exec サーバが有効化されています" -#: ../../godmode/servers/servers.build_table.php:196 +#: ../../godmode/servers/servers.build_table.php:200 msgid "Manage Discovery tasks" msgstr "自動検出タスク管理" -#: ../../godmode/servers/servers.build_table.php:211 +#: ../../godmode/servers/servers.build_table.php:214 msgid "Reset module status and fired alert counts" msgstr "モジュールの状態とアラート発報回数のリセット" -#: ../../godmode/servers/servers.build_table.php:222 +#: ../../godmode/servers/servers.build_table.php:225 msgid "Claim back SNMP modules" msgstr "SNMP モジュールに戻す" -#: ../../godmode/servers/servers.build_table.php:246 +#: ../../godmode/servers/servers.build_table.php:249 msgid "Manage satellite hosts" msgstr "サテライトホスト管理" -#: ../../godmode/servers/modificar_server.php:34 +#: ../../godmode/servers/modificar_server.php:50 msgid "Update Server" msgstr "サーバ情報の更新" -#: ../../godmode/servers/modificar_server.php:40 -#: ../../godmode/servers/plugin.php:346 ../../godmode/servers/plugin.php:824 -msgid "Standard" -msgstr "標準" - -#: ../../godmode/servers/modificar_server.php:77 -msgid "Exec Server" -msgstr "実行サーバ" - -#: ../../godmode/servers/modificar_server.php:85 -msgid "Leave blank to use SSH default port (22)" -msgstr "SSH デフォルトポート(22)を使うには空のままにします" - -#: ../../godmode/servers/modificar_server.php:90 -msgid "Check Exec Server" -msgstr "実行サーバ確認" - -#: ../../godmode/servers/modificar_server.php:106 -msgid "Credential boxes" -msgstr "認証情報ボックス" - -#: ../../godmode/servers/modificar_server.php:129 -msgid "Standard editor" -msgstr "標準エディタ" - -#: ../../godmode/servers/modificar_server.php:133 -msgid "Advanced editor" -msgstr "高度なエディタ" - -#: ../../godmode/servers/modificar_server.php:153 -msgid "Remote Configuration" -msgstr "リモート設定" - -#: ../../godmode/servers/modificar_server.php:162 -msgid "Dynamic search" -msgstr "動的検索" - -#: ../../godmode/servers/modificar_server.php:176 +#: ../../godmode/servers/modificar_server.php:63 +#: ../../godmode/servers/modificar_server.php:222 +#: ../../godmode/servers/modificar_server.php:262 #, php-format msgid "%s servers" msgstr "%s サーバ" -#: ../../godmode/servers/modificar_server.php:185 -#: ../../godmode/servers/modificar_server.php:196 +#: ../../godmode/servers/modificar_server.php:73 +#: ../../godmode/servers/plugin.php:398 ../../godmode/servers/plugin.php:1080 +#: ../../include/ajax/consoles.ajax.php:61 +msgid "Standard" +msgstr "標準" + +#: ../../godmode/servers/modificar_server.php:110 +msgid "Exec Server" +msgstr "実行サーバ" + +#: ../../godmode/servers/modificar_server.php:118 +msgid "Leave blank to use SSH default port (22)" +msgstr "SSH デフォルトポート(22)を使うには空のままにします" + +#: ../../godmode/servers/modificar_server.php:123 +msgid "Check Exec Server" +msgstr "実行サーバ確認" + +#: ../../godmode/servers/modificar_server.php:158 +msgid "Credential boxes" +msgstr "認証情報ボックス" + +#: ../../godmode/servers/modificar_server.php:182 +msgid "Standard editor" +msgstr "標準エディタ" + +#: ../../godmode/servers/modificar_server.php:186 +msgid "Advanced editor" +msgstr "高度なエディタ" + +#: ../../godmode/servers/modificar_server.php:209 +msgid "Remote Configuration" +msgstr "リモート設定" + +#: ../../godmode/servers/modificar_server.php:235 +msgid "Dynamic search" +msgstr "動的検索" + +#: ../../godmode/servers/modificar_server.php:275 +#: ../../include/class/OrderInterpreter.class.php:247 +msgid "Manage Servers" +msgstr "サーバ管理" + +#: ../../godmode/servers/modificar_server.php:287 +#: ../../godmode/servers/modificar_server.php:298 msgid "Successfully action" msgstr "アクションに成功しました。" -#: ../../godmode/servers/modificar_server.php:227 +#: ../../godmode/servers/modificar_server.php:329 msgid "Server updated successfully" msgstr "サーバを更新しました。" -#: ../../godmode/servers/modificar_server.php:229 +#: ../../godmode/servers/modificar_server.php:331 msgid "There was a problem updating the server" msgstr "サーバの更新に失敗しました。" -#: ../../godmode/servers/plugin_registration.php:59 -#: ../../godmode/servers/plugin.php:290 ../../godmode/servers/plugin.php:596 +#: ../../godmode/servers/plugin_registration.php:58 +#: ../../godmode/servers/plugin.php:341 ../../godmode/servers/plugin.php:751 msgid "To manage plugin you must activate centralized management" msgstr "プラグインを管理するには、中央管理を有効化する必要があります。" -#: ../../godmode/servers/plugin_registration.php:65 +#: ../../godmode/servers/plugin_registration.php:64 msgid "PLUGIN REGISTRATION" msgstr "プラグイン登録" -#: ../../godmode/servers/plugin_registration.php:76 +#: ../../godmode/servers/plugin_registration.php:77 +msgid "Register plugin" +msgstr "プラグインの登録" + +#: ../../godmode/servers/plugin_registration.php:86 #, php-format msgid "" "This console is not manager of this environment, please manage this feature " @@ -40839,55 +41837,55 @@ msgstr "" "このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理" "してください。" -#: ../../godmode/servers/plugin_registration.php:95 +#: ../../godmode/servers/plugin_registration.php:105 msgid "Plugin Registration" msgstr "プラグイン登録" -#: ../../godmode/servers/plugin_registration.php:103 +#: ../../godmode/servers/plugin_registration.php:113 msgid "You can get more plugins in our" msgstr "追加プラグインは次から入手できます:" -#: ../../godmode/servers/plugin_registration.php:105 +#: ../../godmode/servers/plugin_registration.php:115 msgid "Public Resource Library" msgstr "公開リソースライブラリ" -#: ../../godmode/servers/plugin_registration.php:133 +#: ../../godmode/servers/plugin_registration.php:143 msgid "Failed to create temporary directory" msgstr "一時ディレクトリの作成に失敗しました" -#: ../../godmode/servers/plugin_registration.php:152 +#: ../../godmode/servers/plugin_registration.php:162 msgid "Cannot load INI file" msgstr "INI ファイルをロードできません。" -#: ../../godmode/servers/plugin_registration.php:177 +#: ../../godmode/servers/plugin_registration.php:187 msgid "Plugin exec not found. Aborting!" msgstr "実行可能なプラグインがありません。中止します。" -#: ../../godmode/servers/plugin_registration.php:188 +#: ../../godmode/servers/plugin_registration.php:198 msgid "Plugin already registered. Aborting!" msgstr "プラグインは既に登録されています。中止します。" -#: ../../godmode/servers/plugin_registration.php:355 +#: ../../godmode/servers/plugin_registration.php:365 msgid "Plug-in Remote Registered unsuccessfull" msgstr "プラグインのリモート登録に失敗しました" -#: ../../godmode/servers/plugin_registration.php:358 +#: ../../godmode/servers/plugin_registration.php:368 msgid "Please check the syntax of file \"plugin_definition.ini\"" msgstr "\"plugin_definition.ini\" の書式を確認してください。" -#: ../../godmode/servers/plugin_registration.php:498 +#: ../../godmode/servers/plugin_registration.php:508 msgid "Module plugin registered" msgstr "モジュールプラグインを登録しました。" -#: ../../godmode/servers/plugin_registration.php:503 +#: ../../godmode/servers/plugin_registration.php:513 msgid "Registered successfully" msgstr "登録しました。" -#: ../../godmode/servers/plugin_registration.php:516 +#: ../../godmode/servers/plugin_registration.php:526 msgid "Unable to uncompress uploaded file" msgstr "アップロードされたファイルを展開できません" -#: ../../godmode/servers/plugin_registration.php:534 +#: ../../godmode/servers/plugin_registration.php:544 #, php-format msgid "Cannot move uploaded file to %s." msgstr "アップロードされたファイルを %s へ移動できません。" @@ -40896,11 +41894,24 @@ msgstr "アップロードされたファイルを %s へ移動できません msgid "Network Components" msgstr "ネットワークコンポーネント" -#: ../../godmode/servers/plugin.php:303 +#: ../../godmode/servers/plugin.php:251 ../../godmode/servers/plugin.php:775 +msgid "Attachments" +msgstr "添付" + +#: ../../godmode/servers/plugin.php:261 ../../godmode/servers/plugin.php:785 +msgid "Index of attachment/plugin" +msgstr "添付/プラグインの一覧" + +#: ../../godmode/servers/plugin.php:264 ../../godmode/servers/plugin.php:788 +#, php-format +msgid "Plug-ins registered on %s" +msgstr "%s に登録されているプラグイン" + +#: ../../godmode/servers/plugin.php:346 msgid "Plugin update" msgstr "プラグインの更新" -#: ../../godmode/servers/plugin.php:314 ../../godmode/servers/plugin.php:615 +#: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:815 msgid "" "This console is not manager of this environment,\n" " \t\tplease manage this feature from centralized manager console " @@ -40909,109 +41920,116 @@ msgstr "" "このコンソールは、この環境における管理コンソールではありません。\n" " \t\tこの機能は中央管理コンソール(メタコンソール)から管理してください。" -#: ../../godmode/servers/plugin.php:345 -msgid "Plugin type" -msgstr "プラグインタイプ" - -#: ../../godmode/servers/plugin.php:347 ../../godmode/servers/plugin.php:826 +#: ../../godmode/servers/plugin.php:399 ../../godmode/servers/plugin.php:1080 msgid "Nagios" msgstr "Nagios" -#: ../../godmode/servers/plugin.php:352 -msgid "Max. timeout" -msgstr "最大タイムアウト" +#: ../../godmode/servers/plugin.php:427 +msgid "Plugin type" +msgstr "プラグインタイプ" -#: ../../godmode/servers/plugin.php:352 +#: ../../godmode/servers/plugin.php:433 msgid "" "This value only will be applied if is minor than the server general " "configuration plugin timeout" msgstr "" "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。" -#: ../../godmode/servers/plugin.php:352 +#: ../../godmode/servers/plugin.php:433 msgid "If you set a 0 seconds timeout, the server plugin timeout will be used" msgstr "タイムアウトを 0 に設定した場合、plugin_timeout の値が利用されます。" -#: ../../godmode/servers/plugin.php:401 +#: ../../godmode/servers/plugin.php:435 +msgid "Max. timeout" +msgstr "最大タイムアウト" + +#: ../../godmode/servers/plugin.php:467 +msgid "Save changes" +msgstr "変更の保存" + +#: ../../godmode/servers/plugin.php:476 msgid "Plugin command" msgstr "プラグインコマンド" -#: ../../godmode/servers/plugin.php:401 +#: ../../godmode/servers/plugin.php:478 msgid "" "Specify interpreter and plugin path. The server needs permissions to run it." msgstr "" "インタプリタとプラグインのパスを指定します。サーバでそれを実行する権限が必要で" "す。" -#: ../../godmode/servers/plugin.php:410 +#: ../../godmode/servers/plugin.php:489 msgid "Plug-in parameters" msgstr "プラグインパラメータ" -#: ../../godmode/servers/plugin.php:492 -#: ../../include/class/ManageNetScanScripts.class.php:667 -msgid "Hide value" -msgstr "値を隠す" - -#: ../../godmode/servers/plugin.php:493 -#: ../../include/class/ManageNetScanScripts.class.php:669 -msgid "This field will show up as dots like a password" -msgstr "このフィールドは、パスワードのようにドットで表示されます。" - -#: ../../godmode/servers/plugin.php:560 ../../godmode/servers/plugin.php:565 +#: ../../godmode/servers/plugin.php:521 ../../godmode/servers/plugin.php:689 msgid "Parameters macros" msgstr "パラメータマクロ" -#: ../../godmode/servers/plugin.php:602 -#, php-format -msgid "Plug-ins registered on %s" -msgstr "%s に登録されているプラグイン" +#: ../../godmode/servers/plugin.php:585 +#: ../../include/class/ManageNetScanScripts.class.php:675 +msgid "Hide value" +msgstr "値を隠す" -#: ../../godmode/servers/plugin.php:624 +#: ../../godmode/servers/plugin.php:596 +#: ../../include/class/ManageNetScanScripts.class.php:677 +msgid "This field will show up as dots like a password" +msgstr "このフィールドは、パスワードのようにドットで表示されます。" + +#: ../../godmode/servers/plugin.php:824 msgid "You need to create your own plugins with Windows compatibility" msgstr "Windows に対応したプラグインを作成する必要があります" -#: ../../godmode/servers/plugin.php:690 +#: ../../godmode/servers/plugin.php:890 msgid "Problem updating plugin" msgstr "プラグインの更新に失敗しました。" -#: ../../godmode/servers/plugin.php:692 +#: ../../godmode/servers/plugin.php:892 msgid "Plugin updated successfully" msgstr "プラグインを更新しました。" -#: ../../godmode/servers/plugin.php:750 +#: ../../godmode/servers/plugin.php:950 msgid "Problem creating plugin" msgstr "プラグインの作成に失敗しました。" -#: ../../godmode/servers/plugin.php:752 +#: ../../godmode/servers/plugin.php:952 msgid "Plugin created successfully" msgstr "プラグインを作成しました。" -#: ../../godmode/servers/plugin.php:764 +#: ../../godmode/servers/plugin.php:964 msgid "Problem deleting plugin" msgstr "プラグインの削除に失敗しました。" -#: ../../godmode/servers/plugin.php:766 ../../godmode/servers/plugin.php:778 +#: ../../godmode/servers/plugin.php:966 ../../godmode/servers/plugin.php:978 msgid "Plugin deleted successfully" msgstr "プラグインを削除しました。" -#: ../../godmode/servers/plugin.php:864 +#: ../../godmode/servers/plugin.php:1034 +msgid "Lock" +msgstr "ロック" + +#: ../../godmode/servers/plugin.php:1062 msgid "All the modules that are using this plugin will be deleted" msgstr "このプラグインを利用しているすべてのモジュールが削除されます" -#: ../../godmode/servers/plugin.php:882 +#: ../../godmode/servers/plugin.php:1096 msgid "There are no plugins in the system" msgstr "プラグインがありません。" -#: ../../godmode/servers/plugin.php:896 +#: ../../godmode/servers/plugin.php:1104 +msgid "Add plugin" +msgstr "プラグイン追加" + +#: ../../godmode/servers/plugin.php:1117 #, php-format msgid "List of modules and components created by \"%s\" " msgstr "\"%s\" にて作成されたモジュールおよびコンポーネントの一覧 " -#: ../../godmode/servers/plugin.php:1005 +#: ../../godmode/servers/plugin.php:1221 msgid "Some modules or components are using the plugin" msgstr "いくつかのモジュールまたはコンポーネントがプラグインを利用しています" -#: ../../godmode/servers/plugin.php:1006 +#: ../../godmode/servers/plugin.php:1222 msgid "" "The modules or components should be updated manually or using the bulk " "operations for plugins after this change" @@ -41019,11 +42037,11 @@ msgstr "" "モジュールまたはコンポーネントは手動で更新するか、変更後にプラグインの一括操作" "を使う必要があります。" -#: ../../godmode/servers/plugin.php:1008 +#: ../../godmode/servers/plugin.php:1224 msgid "Are you sure you want to perform this action?" msgstr "この処理を実行してもよろしいですか。" -#: ../../godmode/servers/plugin.php:1017 +#: ../../godmode/servers/plugin.php:1233 msgid "" "The plugin macros cannot be updated because some modules or components are " "using the plugin" @@ -41031,36 +42049,35 @@ msgstr "" "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ" "インマクロは更新できません。" -#: ../../godmode/servers/discovery.php:188 +#: ../../godmode/servers/discovery.php:190 msgid "You must create a task first" msgstr "タスクを最初に作成する必要があります。" -#: ../../godmode/tag/tag.php:117 +#: ../../godmode/tag/tag.php:109 msgid "Number of modules" msgstr "モジュール数" -#: ../../godmode/tag/tag.php:119 +#: ../../godmode/tag/tag.php:111 msgid "Number of policy modules" msgstr "ポリシーモジュール数" -#: ../../godmode/tag/tag.php:140 ../../godmode/tag/edit_tag.php:57 -#: ../../godmode/tag/edit_tag.php:75 +#: ../../godmode/tag/tag.php:132 ../../godmode/tag/edit_tag.php:56 msgid "List tags" msgstr "タグ一覧" -#: ../../godmode/tag/tag.php:152 ../../godmode/tag/edit_tag.php:85 +#: ../../godmode/tag/tag.php:144 ../../godmode/tag/edit_tag.php:67 msgid "Tags configuration" msgstr "タグ設定" -#: ../../godmode/tag/tag.php:178 +#: ../../godmode/tag/tag.php:176 msgid "Successfully deleted tag" msgstr "タグを削除しました" -#: ../../godmode/tag/tag.php:179 +#: ../../godmode/tag/tag.php:177 msgid "Error deleting tag" msgstr "タグを削除できません" -#: ../../godmode/tag/tag.php:195 +#: ../../godmode/tag/tag.php:193 #, php-format msgid "" "This node is configured with centralized mode. All tags information is read " @@ -41069,93 +42086,83 @@ msgstr "" "このノードは中央管理モードで設定されています。すべてのタグ情報は読み取り専用で" "す。管理するには %s に移動します。" -#: ../../godmode/tag/tag.php:277 +#: ../../godmode/tag/tag.php:302 msgid "Tag name" msgstr "タグ名" -#: ../../godmode/tag/tag.php:279 +#: ../../godmode/tag/tag.php:304 msgid "Detail information" msgstr "詳細情報" -#: ../../godmode/tag/tag.php:280 +#: ../../godmode/tag/tag.php:305 msgid "Number of modules affected" msgstr "影響するモジュール数" -#: ../../godmode/tag/tag.php:282 ../../godmode/tag/edit_tag.php:251 +#: ../../godmode/tag/tag.php:307 ../../godmode/tag/edit_tag.php:233 msgid "Phone" msgstr "電話番号" -#: ../../godmode/tag/tag.php:311 +#: ../../godmode/tag/tag.php:336 msgid "Tag details" msgstr "タグ詳細" -#: ../../godmode/tag/tag.php:344 +#: ../../godmode/tag/tag.php:369 #, php-format msgid "Emails for the tag: %s" msgstr "タグ %s のメールアドレス" -#: ../../godmode/tag/tag.php:367 +#: ../../godmode/tag/tag.php:392 #, php-format msgid "Phones for the tag: %s" msgstr "タグ %s の電話番号" -#: ../../godmode/tag/tag.php:413 -msgid "No tags defined" -msgstr "タグが定義されていません" - -#: ../../godmode/tag/tag.php:428 +#: ../../godmode/tag/tag.php:455 msgid "Create tag" msgstr "タグの作成" -#: ../../godmode/tag/edit_tag.php:128 +#: ../../godmode/tag/edit_tag.php:80 +msgid "Manage tags" +msgstr "タグ管理" + +#: ../../godmode/tag/edit_tag.php:119 msgid "Successfully updated tag" msgstr "タグを更新しました" -#: ../../godmode/tag/edit_tag.php:129 +#: ../../godmode/tag/edit_tag.php:120 msgid "Error updating tag" msgstr "タグ更新に失敗" -#: ../../godmode/tag/edit_tag.php:169 +#: ../../godmode/tag/edit_tag.php:160 msgid "Successfully created tag" msgstr "タグを作成しました" -#: ../../godmode/tag/edit_tag.php:170 +#: ../../godmode/tag/edit_tag.php:161 msgid "Error creating tag" msgstr "タグを作成できません" -#: ../../godmode/tag/edit_tag.php:201 -msgid "Update Tag" -msgstr "タグの更新" - -#: ../../godmode/tag/edit_tag.php:205 -msgid "Create Tag" -msgstr "タグの作成" - -#: ../../godmode/tag/edit_tag.php:229 +#: ../../godmode/tag/edit_tag.php:213 msgid "Hyperlink to help information that has to exist previously." msgstr "情報がある場所へのハイパーリンク" -#: ../../godmode/tag/edit_tag.php:241 +#: ../../godmode/tag/edit_tag.php:225 msgid "Associated Email direction to use later in alerts associated to Tags." msgstr "タグに関連付けられるアラートで利用するためのメール送信先" -#: ../../godmode/tag/edit_tag.php:253 +#: ../../godmode/tag/edit_tag.php:234 msgid "Associated phone number to use later in alerts associated to Tags." msgstr "タグに関連付けられるアラートで利用するための電話番号" -#: ../../godmode/category/category.php:63 ../../godmode/category/category.php:77 -#: ../../godmode/category/edit_category.php:47 -#: ../../godmode/category/edit_category.php:61 +#: ../../godmode/category/category.php:62 +#: ../../godmode/category/edit_category.php:65 msgid "List categories" msgstr "カテゴリ一覧" -#: ../../godmode/category/category.php:89 ../../godmode/category/category.php:91 -#: ../../godmode/category/edit_category.php:73 -#: ../../godmode/category/edit_category.php:75 +#: ../../godmode/category/category.php:72 +#: ../../godmode/category/edit_category.php:79 msgid "Categories configuration" msgstr "カテゴリ設定" -#: ../../godmode/category/category.php:108 +#: ../../godmode/category/category.php:103 #, php-format msgid "" "This node is configured with centralized mode. All categories information is " @@ -41164,48 +42171,48 @@ msgstr "" "このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専" "用です。管理するには %s に移動します。" -#: ../../godmode/category/category.php:123 +#: ../../godmode/category/category.php:118 msgid "Error deleting category" msgstr "カテゴリの削除に失敗しました" -#: ../../godmode/category/category.php:129 +#: ../../godmode/category/category.php:124 msgid "Successfully deleted category" msgstr "カテゴリを削除しました" -#: ../../godmode/category/category.php:168 +#: ../../godmode/category/category.php:159 msgid "Category name" msgstr "カテゴリ名" -#: ../../godmode/category/category.php:226 +#: ../../godmode/category/category.php:246 msgid "No categories found" msgstr "カテゴリがありません" -#: ../../godmode/category/category.php:239 -#: ../../godmode/category/edit_category.php:171 +#: ../../godmode/category/category.php:259 +#: ../../godmode/category/edit_category.php:183 msgid "Create category" msgstr "カテゴリの作成" -#: ../../godmode/category/edit_category.php:73 -msgid "Editor" -msgstr "編集" +#: ../../godmode/category/edit_category.php:83 +msgid "Manage category" +msgstr "カテゴリ管理" -#: ../../godmode/category/edit_category.php:95 +#: ../../godmode/category/edit_category.php:119 msgid "Error updating category" msgstr "カテゴリの更新に失敗しました" -#: ../../godmode/category/edit_category.php:101 +#: ../../godmode/category/edit_category.php:125 msgid "Successfully updated category" msgstr "カテゴリを更新しました" -#: ../../godmode/category/edit_category.php:123 +#: ../../godmode/category/edit_category.php:147 msgid "Error creating category" msgstr "カテゴリの作成に失敗しました" -#: ../../godmode/category/edit_category.php:131 +#: ../../godmode/category/edit_category.php:155 msgid "Successfully created category" msgstr "カテゴリを作成しました" -#: ../../godmode/category/edit_category.php:163 +#: ../../godmode/category/edit_category.php:181 msgid "Update category" msgstr "カテゴリ更新" @@ -41338,24 +42345,24 @@ msgstr "コードの確認でエラーが発生しました" msgid "Login Failed" msgstr "ログイン失敗" -#: ../../mobile/include/user.class.php:355 +#: ../../mobile/include/user.class.php:352 msgid "User not found in database or incorrect password." msgstr "ユーザが存在しないかパスワードが異なります。" -#: ../../mobile/include/user.class.php:364 +#: ../../mobile/include/user.class.php:360 msgid "Login out" msgstr "ログアウト" -#: ../../mobile/include/user.class.php:395 +#: ../../mobile/include/user.class.php:391 msgid "user" msgstr "ユーザ" -#: ../../mobile/include/user.class.php:402 +#: ../../mobile/include/user.class.php:398 msgid "password" msgstr "パスワード" -#: ../../mobile/include/user.class.php:491 -#: ../../mobile/include/user.class.php:492 +#: ../../mobile/include/user.class.php:488 +#: ../../mobile/include/user.class.php:489 msgid "Authenticator code" msgstr "認証コード" @@ -41429,10 +42436,11 @@ msgid "No agent found" msgstr "エージェントがありません" #: ../../mobile/operation/agent.php:238 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:588 msgid "Modules by status" msgstr "状態ごとのモジュール" -#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:824 +#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:724 msgid "Events (24h)" msgstr "イベント (24時間)" @@ -41450,7 +42458,7 @@ msgstr "%sによる発報アラート" msgid "Last Fired" msgstr "直近の発報" -#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2406 +#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2508 msgid "No alerts" msgstr "アラートなし" @@ -41509,8 +42517,8 @@ msgstr "時間範囲 (時間)" #: ../../operation/agentes/stat_win.php:289 #: ../../operation/agentes/stat_win.php:408 #: ../../operation/agentes/interface_traffic_graph_win.php:183 -#: ../../operation/agentes/graphs.php:207 -#: ../../operation/agentes/exportdata.php:318 +#: ../../operation/agentes/graphs.php:222 +#: ../../operation/agentes/exportdata.php:393 msgid "Begin date" msgstr "開始日時" @@ -41523,29 +42531,29 @@ msgid "Error get the graph" msgstr "グラフ生成エラー" #: ../../mobile/operation/events.php:450 -#: ../../include/functions_reporting_html.php:1108 -#: ../../include/functions_reporting_html.php:1359 -#: ../../include/functions_reporting_html.php:2582 -#: ../../include/functions_events.php:2569 -#: ../../include/functions_events.php:4547 ../../operation/events/events.php:749 +#: ../../include/functions_reporting_html.php:1095 +#: ../../include/functions_reporting_html.php:1337 +#: ../../include/functions_reporting_html.php:2658 +#: ../../include/functions_events.php:2571 +#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779 msgid "New event" msgstr "新規イベント" #: ../../mobile/operation/events.php:455 -#: ../../include/functions_reporting_html.php:1097 -#: ../../include/functions_reporting_html.php:1364 -#: ../../include/functions_reporting_html.php:2587 -#: ../../include/functions_events.php:2574 -#: ../../include/functions_events.php:4553 ../../operation/events/events.php:762 +#: ../../include/functions_reporting_html.php:1084 +#: ../../include/functions_reporting_html.php:1342 +#: ../../include/functions_reporting_html.php:2663 +#: ../../include/functions_events.php:2576 +#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792 msgid "Event validated" msgstr "承諾済" #: ../../mobile/operation/events.php:460 -#: ../../include/functions_reporting_html.php:1102 -#: ../../include/functions_reporting_html.php:1369 -#: ../../include/functions_reporting_html.php:2592 -#: ../../include/functions_events.php:2579 -#: ../../include/functions_events.php:4559 ../../operation/events/events.php:774 +#: ../../include/functions_reporting_html.php:1089 +#: ../../include/functions_reporting_html.php:1347 +#: ../../include/functions_reporting_html.php:2668 +#: ../../include/functions_events.php:2581 +#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804 msgid "Event in process" msgstr "処理中イベント" @@ -41561,11 +42569,11 @@ msgstr "DB 接続エラー。" msgid "Event detail" msgstr "イベント詳細" -#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4700 +#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4895 msgid "Event ID" msgstr "イベントID" -#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4810 +#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:5013 msgid "Acknowledged by" msgstr "承諾者" @@ -41587,12 +42595,12 @@ msgid "Preset Filters" msgstr "定義済フィルタ" #: ../../mobile/operation/events.php:1144 -#: ../../include/functions_reporting_html.php:6126 -#: ../../include/functions_reporting_html.php:6285 -#: ../../include/functions_reporting.php:2184 -#: ../../include/functions_reporting.php:2559 -#: ../../include/functions_events.php:2493 -#: ../../include/functions_events.php:2496 +#: ../../include/functions_reporting_html.php:6176 +#: ../../include/functions_reporting_html.php:6335 +#: ../../include/functions_reporting.php:2189 +#: ../../include/functions_reporting.php:2564 +#: ../../include/functions_events.php:2497 +#: ../../include/functions_events.php:2500 msgid "No events" msgstr "イベントがありません。" @@ -41695,11 +42703,6 @@ msgstr "時間のみ" msgid "Time and date" msgstr "時間および日付" -#: ../../include/functions_visual_map_editor.php:313 -#: ../../include/rest-api/models/VisualConsole/Items/Clock.php:302 -msgid "Time zone" -msgstr "タイムゾーン" - #: ../../include/functions_visual_map_editor.php:329 msgid "Enable link" msgstr "リンクを有効にする" @@ -41776,40 +42779,44 @@ msgstr "プロポーショナル幅" msgid "Height proportional" msgstr "高さに比例" -#: ../../include/functions_visual_map_editor.php:688 +#: ../../include/functions_visual_map_editor.php:668 +msgid "Widtzzzzh" +msgstr "幅" + +#: ../../include/functions_visual_map_editor.php:686 #: ../../include/functions_visual_map.php:4190 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460 #: ../../include/rest-api/models/VisualConsole/Item.php:2124 msgid "Circular progress bar" msgstr "円形進捗バー" -#: ../../include/functions_visual_map_editor.php:689 +#: ../../include/functions_visual_map_editor.php:687 #: ../../include/functions_visual_map.php:4195 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462 #: ../../include/rest-api/models/VisualConsole/Item.php:2128 msgid "Circular progress bar (interior)" msgstr "円進捗バー(内部)" -#: ../../include/functions_visual_map_editor.php:739 +#: ../../include/functions_visual_map_editor.php:737 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:522 msgid "Element color" msgstr "要素の色" -#: ../../include/functions_visual_map_editor.php:759 +#: ../../include/functions_visual_map_editor.php:757 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:534 msgid "Value color" msgstr "値の色" -#: ../../include/functions_visual_map_editor.php:801 +#: ../../include/functions_visual_map_editor.php:799 msgid "Diameter" msgstr "直径" -#: ../../include/functions_visual_map_editor.php:808 +#: ../../include/functions_visual_map_editor.php:806 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:426 msgid "Default color" msgstr "デフォルト色" -#: ../../include/functions_visual_map_editor.php:812 +#: ../../include/functions_visual_map_editor.php:810 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 " @@ -41818,91 +42825,91 @@ msgstr "" "要素の色は、見つかったモジュールの値内で作成された最初の範囲で選択された色にな" "ります(含まれる範囲の初期値と最終値)。" -#: ../../include/functions_visual_map_editor.php:815 +#: ../../include/functions_visual_map_editor.php:813 msgid "Ranges" msgstr "範囲" -#: ../../include/functions_visual_map_editor.php:815 +#: ../../include/functions_visual_map_editor.php:813 msgid "From value" msgstr "開始値" -#: ../../include/functions_visual_map_editor.php:815 +#: ../../include/functions_visual_map_editor.php:813 msgid "To value" msgstr "終了値" -#: ../../include/functions_visual_map_editor.php:815 -#: ../../include/rest-api/index.php:376 +#: ../../include/functions_visual_map_editor.php:813 +#: ../../include/rest-api/index.php:379 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471 -#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530 +#: ../../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 msgid "Color" msgstr "色" -#: ../../include/functions_visual_map_editor.php:820 +#: ../../include/functions_visual_map_editor.php:818 msgid "Always show on top" msgstr "常に上に表示" -#: ../../include/functions_visual_map_editor.php:821 +#: ../../include/functions_visual_map_editor.php:819 msgid "" "It allows the element to be superimposed to the rest of items of the visual " "console" msgstr "要素をビジュアルコンソールの残りの項目に重ね合わせることができます。" -#: ../../include/functions_visual_map_editor.php:824 +#: ../../include/functions_visual_map_editor.php:822 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:404 msgid "Hide last value on boolean modules" msgstr "boolean モジュールでは最新の値を隠す" -#: ../../include/functions_visual_map_editor.php:830 +#: ../../include/functions_visual_map_editor.php:828 msgid "Show last value" msgstr "最新の値を表示" -#: ../../include/functions_visual_map_editor.php:934 +#: ../../include/functions_visual_map_editor.php:932 msgid "For use the original image file size, set 0 width and 0 height." msgstr "" "オリジナルの画像サイズを利用するためには、幅と高さを 0 に設定してください。" -#: ../../include/functions_visual_map_editor.php:974 +#: ../../include/functions_visual_map_editor.php:972 #: ../../include/rest-api/models/VisualConsole/Item.php:2439 msgid "Linked visual console" msgstr "リンクされたビジュアルコンソール" -#: ../../include/functions_visual_map_editor.php:1081 +#: ../../include/functions_visual_map_editor.php:1079 #: ../../include/rest-api/models/VisualConsole/Item.php:2490 msgid "By status weight" msgstr "状態ウエイトごと" -#: ../../include/functions_visual_map_editor.php:1082 +#: ../../include/functions_visual_map_editor.php:1080 #: ../../include/rest-api/models/VisualConsole/Item.php:2491 msgid "By critical elements" msgstr "障害要素ごと" -#: ../../include/functions_visual_map_editor.php:1097 +#: ../../include/functions_visual_map_editor.php:1095 #: ../../include/rest-api/models/VisualConsole/Item.php:2498 msgid "Type of the status calculation of the linked visual console" msgstr "リンクされたビジュアルコンソールの状態計算のタイプ" -#: ../../include/functions_visual_map_editor.php:1102 +#: ../../include/functions_visual_map_editor.php:1100 #: ../../include/rest-api/models/VisualConsole/Item.php:2489 msgid "By default" msgstr "デフォルト" -#: ../../include/functions_visual_map_editor.php:1122 +#: ../../include/functions_visual_map_editor.php:1120 #: ../../include/rest-api/models/VisualConsole/Item.php:2514 msgid "Linked visual console weight" msgstr "リンクされたビジュアルコンソールのウエイト" -#: ../../include/functions_visual_map_editor.php:1189 +#: ../../include/functions_visual_map_editor.php:1187 msgid "Lines haven't advanced options" msgstr "拡張オプションがありません" -#: ../../include/functions_visual_map_editor.php:1206 +#: ../../include/functions_visual_map_editor.php:1204 #: ../../include/rest-api/models/VisualConsole/Item.php:2189 msgid "Restrict access to group" msgstr "グループへの制限アクセス" -#: ../../include/functions_visual_map_editor.php:1217 +#: ../../include/functions_visual_map_editor.php:1215 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 " @@ -41912,135 +42919,135 @@ msgstr "" "セスできるユーザーに制限します。 これは、子ビジュアルコンソールにも使用されま" "す。" -#: ../../include/functions_visual_map_editor.php:1248 +#: ../../include/functions_visual_map_editor.php:1246 #: ../../include/rest-api/models/VisualConsole/Item.php:2202 msgid "Cache expiration" msgstr "キャッシュ有効期限" -#: ../../include/functions_visual_map_editor.php:1287 +#: ../../include/functions_visual_map_editor.php:1285 msgid "Click start point
of the line" msgstr "線の開始場所
をクリックしてください" -#: ../../include/functions_visual_map_editor.php:1290 +#: ../../include/functions_visual_map_editor.php:1288 msgid "Click end point
of the line" msgstr "線の終了場所
をクリックしてください" -#: ../../include/functions_visual_map_editor.php:1390 -#: ../../operation/visual_console/view.php:318 +#: ../../include/functions_visual_map_editor.php:1388 +#: ../../operation/visual_console/view.php:336 msgid "Serialized pie graph" msgstr "連続円グラフ" -#: ../../include/functions_visual_map_editor.php:1391 -#: ../../operation/visual_console/view.php:323 +#: ../../include/functions_visual_map_editor.php:1389 +#: ../../operation/visual_console/view.php:341 msgid "Bars Graph" msgstr "棒グラフ" -#: ../../include/functions_visual_map_editor.php:1420 +#: ../../include/functions_visual_map_editor.php:1418 msgid "Show grid" msgstr "グリッド表示" -#: ../../include/functions_visual_map_editor.php:1422 +#: ../../include/functions_visual_map_editor.php:1420 msgid "Delete item" msgstr "アイテムの削除" -#: ../../include/functions_visual_map_editor.php:1423 +#: ../../include/functions_visual_map_editor.php:1421 msgid "Copy item" msgstr "アイテムのコピー" -#: ../../include/functions_visual_map_editor.php:1463 -#: ../../include/functions_visual_map_editor.php:1467 -#: ../../include/functions_visual_map_editor.php:1471 -#: ../../include/functions_visual_map_editor.php:1475 -#: ../../include/functions_visual_map_editor.php:1479 -#: ../../include/functions_visual_map_editor.php:1483 -#: ../../include/functions_visual_map_editor.php:1487 -#: ../../include/functions_visual_map_editor.php:1491 -#: ../../include/functions_visual_map_editor.php:1495 -#: ../../include/functions_visual_map_editor.php:1499 -#: ../../include/functions_visual_map_editor.php:1503 -#: ../../include/functions_visual_map_editor.php:1507 -#: ../../include/functions_visual_map_editor.php:1511 -#: ../../include/functions_visual_map_editor.php:1515 -#: ../../include/functions_visual_map_editor.php:1519 -#: ../../include/functions_visual_map_editor.php:1523 -#: ../../include/functions_visual_map_editor.php:1527 -#: ../../include/functions_visual_map_editor.php:1531 -#: ../../include/functions_visual_map_editor.php:1535 +#: ../../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 msgid "Visual Console Builder Information" msgstr "ビジュアルコンソールビルダ情報" -#: ../../include/functions_visual_map_editor.php:1464 +#: ../../include/functions_visual_map_editor.php:1459 msgid "Min allowed size is 1024x768." msgstr "最小サイズは 1024x768 です。" -#: ../../include/functions_visual_map_editor.php:1468 -#: ../../include/functions_visual_map_editor.php:1536 +#: ../../include/functions_visual_map_editor.php:1463 +#: ../../include/functions_visual_map_editor.php:1531 msgid "No custom graph defined." msgstr "カスタムグラフがありません。" -#: ../../include/functions_visual_map_editor.php:1472 +#: ../../include/functions_visual_map_editor.php:1467 msgid "No image or name defined." msgstr "画像や名前が定義されていません。" -#: ../../include/functions_visual_map_editor.php:1476 +#: ../../include/functions_visual_map_editor.php:1471 msgid "No label defined." msgstr "ラベルが定義されていません。" -#: ../../include/functions_visual_map_editor.php:1480 +#: ../../include/functions_visual_map_editor.php:1475 msgid "No service defined." msgstr "サービスがありません。" -#: ../../include/functions_visual_map_editor.php:1484 +#: ../../include/functions_visual_map_editor.php:1479 msgid "No image defined." msgstr "画像が定義されていません。" -#: ../../include/functions_visual_map_editor.php:1488 +#: ../../include/functions_visual_map_editor.php:1483 msgid "No process defined." msgstr "処理が定義されていません。" -#: ../../include/functions_visual_map_editor.php:1492 +#: ../../include/functions_visual_map_editor.php:1487 msgid "No Max value defined." msgstr "最大値が定義されていません" -#: ../../include/functions_visual_map_editor.php:1496 +#: ../../include/functions_visual_map_editor.php:1491 msgid "No width defined." msgstr "幅が定義されていません" -#: ../../include/functions_visual_map_editor.php:1500 +#: ../../include/functions_visual_map_editor.php:1495 msgid "No height defined." msgstr "高さが定義されていません。" -#: ../../include/functions_visual_map_editor.php:1504 +#: ../../include/functions_visual_map_editor.php:1499 msgid "The width must not exceed the size of the visual console container." msgstr "幅はビジュアルコンソールコンテナのサイズを超えてはいけません。" -#: ../../include/functions_visual_map_editor.php:1508 +#: ../../include/functions_visual_map_editor.php:1503 msgid "The height must not exceed the size of the visual console container." msgstr "高さはビジュアルコンソールコンテナのサイズを超えてはいけません。" -#: ../../include/functions_visual_map_editor.php:1512 +#: ../../include/functions_visual_map_editor.php:1507 msgid "No period defined." msgstr "期間が定義されていません。" -#: ../../include/functions_visual_map_editor.php:1516 +#: ../../include/functions_visual_map_editor.php:1511 msgid "No agent defined." msgstr "エージェントが定義されていません" -#: ../../include/functions_visual_map_editor.php:1520 +#: ../../include/functions_visual_map_editor.php:1515 msgid "No module defined." msgstr "モジュールが定義されていません" -#: ../../include/functions_visual_map_editor.php:1524 +#: ../../include/functions_visual_map_editor.php:1519 msgid "No module defined. This module must be string type." msgstr "" "モジュールが定義されていません。このモジュールは文字列タイプである必要がありま" "す。" -#: ../../include/functions_visual_map_editor.php:1528 +#: ../../include/functions_visual_map_editor.php:1523 msgid "Successfully save the changes." msgstr "変更を保存しました。" -#: ../../include/functions_visual_map_editor.php:1532 +#: ../../include/functions_visual_map_editor.php:1527 msgid "Could not be save." msgstr "保存できません。" @@ -42049,9 +43056,13 @@ msgstr "保存できません。" msgid "An error occured exporting the data" msgstr "データエクスポートエラー" +#: ../../include/graphs/export_data.php:103 +msgid "Selected" +msgstr "選択済" + #: ../../include/graphs/functions_gd.php:183 #: ../../include/graphs/functions_gd.php:466 -#: ../../include/functions_graph.php:2775 ../../include/functions_graph.php:2823 +#: ../../include/functions_graph.php:2774 ../../include/functions_graph.php:2822 msgid "Out of limits" msgstr "範囲外" @@ -42068,10 +43079,10 @@ msgid "Overview graph" msgstr "概要グラフ" #: ../../include/graphs/functions_flot.php:514 -#: ../../include/functions_reporting_html.php:660 -#: ../../include/functions_reporting_html.php:4596 -#: ../../include/ajax/events.php:1260 ../../include/functions_graph.php:4836 -#: ../../include/functions_treeview.php:315 +#: ../../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 "データがありません" @@ -42084,17 +43095,17 @@ msgid "Correlation server" msgstr "相関サーバ" #: ../../include/functions_servers.php:712 -#: ../../include/functions_servers.php:1314 +#: ../../include/functions_servers.php:1230 msgid "Enterprise ICMP server" msgstr "エンタープライズ ICMP サーバ" #: ../../include/functions_servers.php:725 -#: ../../include/functions_servers.php:1317 +#: ../../include/functions_servers.php:1233 msgid "Enterprise SNMP server" msgstr "エンタープライズSNMPサーバ" #: ../../include/functions_servers.php:738 -#: ../../include/class/AgentWizard.class.php:1350 +#: ../../include/class/AgentWizard.class.php:1353 msgid "Enterprise Satellite server" msgstr "Enterprise サテライトサーバ" @@ -42115,7 +43126,7 @@ msgid "Wux server" msgstr "Wux サーバ" #: ../../include/functions_servers.php:803 -#: ../../include/functions_servers.php:1344 +#: ../../include/functions_servers.php:1260 msgid "Log server" msgstr "ログサーバ" @@ -42127,528 +43138,542 @@ msgstr "自動プロビジョニングサーバ" msgid "Migration server" msgstr "マイグレーションサーバ" -#: ../../include/functions_servers.php:1323 +#: ../../include/functions_servers.php:1239 msgid "Prediction Server" msgstr "予測サーバ" -#: ../../include/functions_servers.php:1350 +#: ../../include/functions_servers.php:1266 +#: ../../operation/agentes/estado_generalagente.php:329 msgid "Satellite server" msgstr "サテライトサーバ" +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5823 +#: ../../include/ajax/alert_list.ajax.php:592 +msgid "From:" +msgstr "開始日時:" + +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5823 +#: ../../include/ajax/alert_list.ajax.php:606 +msgid "To:" +msgstr "終了日時:" + #: ../../include/functions_reporting_html.php:110 msgid "Label: " msgstr "ラベル: " -#: ../../include/functions_reporting_html.php:585 +#: ../../include/functions_reporting_html.php:142 +msgid "Report date" +msgstr "レポート日" + +#: ../../include/functions_reporting_html.php:151 +#: ../../operation/reporting/reporting_viewer.php:271 +msgid "Items period before" +msgstr "次の日時以前" + +#: ../../include/functions_reporting_html.php:587 msgid "Time Failed" msgstr "障害時間" -#: ../../include/functions_reporting_html.php:589 +#: ../../include/functions_reporting_html.php:591 msgid "Downtime" msgstr "停止時間" -#: ../../include/functions_reporting_html.php:999 -#: ../../include/functions_reporting_html.php:2424 -#: ../../include/functions_reporting_html.php:4478 -#: ../../include/functions_reporting_html.php:5015 +#: ../../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/rest-api/models/VisualConsole/Items/SimpleValue.php:367 msgid "Min Value" msgstr "最小値" -#: ../../include/functions_reporting_html.php:1000 -#: ../../include/functions_reporting_html.php:2425 -#: ../../include/functions_reporting_html.php:4479 -#: ../../include/functions_reporting_html.php:5016 +#: ../../include/functions_reporting_html.php:1004 +#: ../../include/functions_reporting_html.php:2515 +#: ../../include/functions_reporting_html.php:4564 +#: ../../include/functions_reporting_html.php:5103 msgid "Average Value" msgstr "平均値" -#: ../../include/functions_reporting_html.php:1001 -#: ../../include/functions_reporting_html.php:2426 -#: ../../include/functions_reporting_html.php:4476 -#: ../../include/functions_reporting_html.php:5018 +#: ../../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/rest-api/models/VisualConsole/Items/SimpleValue.php:366 msgid "Max Value" msgstr "最大値" -#: ../../include/functions_reporting_html.php:1056 -#: ../../include/functions_reporting_html.php:1064 -#: ../../include/functions_reporting_html.php:2554 +#: ../../include/functions_reporting_html.php:1061 +#: ../../include/functions_reporting_html.php:1069 +#: ../../include/functions_reporting_html.php:2645 msgid "Val. by" msgstr "承諾ユーザ" -#: ../../include/functions_reporting_html.php:1144 +#: ../../include/functions_reporting_html.php:1135 #, php-format msgid "%s System" msgstr "%s システム" -#: ../../include/functions_reporting_html.php:1213 -#: ../../include/functions_reporting_html.php:1435 -msgid "Events by agent" -msgstr "エージェントで分類したイベント" - -#: ../../include/functions_reporting_html.php:1230 -#: ../../include/functions_reporting_html.php:1452 +#: ../../include/functions_reporting_html.php:1221 +#: ../../include/functions_reporting_html.php:1436 msgid "Events by user validator" msgstr "承諾したユーザごとのイベント" -#: ../../include/functions_reporting_html.php:1247 -#: ../../include/functions_reporting_html.php:1469 +#: ../../include/functions_reporting_html.php:1238 +#: ../../include/functions_reporting_html.php:1453 msgid "Events by Severity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:1264 -#: ../../include/functions_reporting_html.php:1486 +#: ../../include/functions_reporting_html.php:1255 +#: ../../include/functions_reporting_html.php:1470 msgid "Events validated vs unvalidated" msgstr "承諾済と未承諾イベント" -#: ../../include/functions_reporting_html.php:1577 +#: ../../include/functions_reporting_html.php:1612 msgid "Sec. groups" msgstr "セカンダリグループ" -#: ../../include/functions_reporting_html.php:1597 +#: ../../include/functions_reporting_html.php:1632 msgid "Remote conf." msgstr "リモート設定" -#: ../../include/functions_reporting_html.php:1831 -#: ../../include/functions_inventory.php:885 -#: ../../include/functions_inventory.php:948 +#: ../../include/functions_reporting_html.php:1919 +#: ../../include/functions_inventory.php:1068 +#: ../../include/functions_inventory.php:1131 msgid "Added" msgstr "追加済み" -#: ../../include/functions_reporting_html.php:1842 -#: ../../include/functions_inventory.php:891 -#: ../../include/functions_inventory.php:956 -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 +#: ../../include/functions_reporting_html.php:1930 +#: ../../include/functions_inventory.php:1074 +#: ../../include/functions_inventory.php:1139 +#: ../../include/functions_filemanager.php:343 +#: ../../include/functions_filemanager.php:360 msgid "Deleted" msgstr "削除しました" -#: ../../include/functions_reporting_html.php:2198 +#: ../../include/functions_reporting_html.php:2287 msgid "Cell turns grey when the module is in 'not initialize' status" msgstr "青色のセルは、不明状態を示します。" -#: ../../include/functions_reporting_html.php:2490 -#: ../../include/functions_reporting_html.php:5604 +#: ../../include/functions_reporting_html.php:2580 +#: ../../include/functions_reporting_html.php:5691 msgid "Monitors" msgstr "モニタ項目" -#: ../../include/functions_reporting_html.php:2509 +#: ../../include/functions_reporting_html.php:2599 msgid "Events (not validated)" msgstr "イベント (未承諾)" -#: ../../include/functions_reporting_html.php:2675 +#: ../../include/functions_reporting_html.php:2755 msgid "Events validated by user" msgstr "ユーザで分類したイベント" -#: ../../include/functions_reporting_html.php:2692 -#: ../../include/functions_reporting_html.php:5893 +#: ../../include/functions_reporting_html.php:2772 +#: ../../include/functions_reporting_html.php:5980 msgid "Events by severity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:2709 +#: ../../include/functions_reporting_html.php:2789 msgid "Amount events validated" msgstr "承諾済みイベントの割合" -#: ../../include/functions_reporting_html.php:3135 +#: ../../include/functions_reporting_html.php:3219 msgid "Total summary" msgstr "全体概要" -#: ../../include/functions_reporting_html.php:3142 +#: ../../include/functions_reporting_html.php:3226 msgid "No alerts fired" msgstr "アラート未発報" -#: ../../include/functions_reporting_html.php:3233 +#: ../../include/functions_reporting_html.php:3326 #, php-format msgid "Interface '%s' throughput graph" msgstr "インタフェース '%s' スループットグラフ" -#: ../../include/functions_reporting_html.php:3237 +#: ../../include/functions_reporting_html.php:3330 msgid "Mac" msgstr "Mac" -#: ../../include/functions_reporting_html.php:3238 +#: ../../include/functions_reporting_html.php:3331 msgid "Actual status" msgstr "現在の状態" -#: ../../include/functions_reporting_html.php:3606 -#: ../../include/functions_reporting_html.php:3608 +#: ../../include/functions_reporting_html.php:3702 +#: ../../include/functions_reporting_html.php:3704 msgid "Empty modules" msgstr "モジュールなし" -#: ../../include/functions_reporting_html.php:3615 -msgid "Warning
Critical" -msgstr "警告
障害" - -#: ../../include/functions_reporting_html.php:4090 +#: ../../include/functions_reporting_html.php:4175 msgid "Time Not Init Module" msgstr "未初期化モジュール時間" -#: ../../include/functions_reporting_html.php:4101 +#: ../../include/functions_reporting_html.php:4186 msgid "% Ok" msgstr "正常%" -#: ../../include/functions_reporting_html.php:4178 +#: ../../include/functions_reporting_html.php:4263 msgid "Checks Uknown" msgstr "不明確認数" -#: ../../include/functions_reporting_html.php:4217 -#: ../../include/functions_reporting_html.php:4364 -#: ../../include/functions_reporting_html.php:4690 -#: ../../include/functions_reporting_html.php:4696 +#: ../../include/functions_reporting_html.php:4302 +#: ../../include/functions_reporting_html.php:4449 +#: ../../include/functions_reporting_html.php:4776 +#: ../../include/functions_reporting_html.php:4782 msgid "Primary" msgstr "プライマリ" -#: ../../include/functions_reporting_html.php:5130 -#: ../../include/functions_reporting.php:11900 -#: ../../include/functions_reporting.php:11921 +#: ../../include/functions_reporting_html.php:5217 +#: ../../include/functions_reporting.php:12094 +#: ../../include/functions_reporting.php:12115 msgid "Alert level" msgstr "アラートレベル" -#: ../../include/functions_reporting_html.php:5378 +#: ../../include/functions_reporting_html.php:5465 #, php-format msgid "Agents in group: %s" msgstr "グループに含まれるエージェント: %s" -#: ../../include/functions_reporting_html.php:5480 +#: ../../include/functions_reporting_html.php:5567 msgid "Last failure" msgstr "最新の障害" -#: ../../include/functions_reporting_html.php:5570 +#: ../../include/functions_reporting_html.php:5657 msgid "N/A(*)" msgstr "N/A(*)" -#: ../../include/functions_reporting_html.php:5818 -#: ../../include/functions_reporting.php:12132 +#: ../../include/functions_reporting_html.php:5905 +#: ../../include/functions_reporting.php:12322 +#: ../../include/functions_groups.php:2650 msgid "Monitor checks" msgstr "モニタ項目" -#: ../../include/functions_reporting_html.php:5825 -#: ../../include/functions_reporting.php:12151 +#: ../../include/functions_reporting_html.php:5912 +#: ../../include/functions_reporting.php:12341 +#: ../../include/functions_groups.php:2669 msgid "Total agents and monitors" msgstr "全エージェントと監視項目" -#: ../../include/functions_reporting_html.php:5844 -#: ../../include/functions_reporting_html.php:5849 +#: ../../include/functions_reporting_html.php:5931 +#: ../../include/functions_reporting_html.php:5936 msgid "Node overview" msgstr "ノードの概要" -#: ../../include/functions_reporting_html.php:5869 -#: ../../include/functions_reporting_html.php:5881 +#: ../../include/functions_reporting_html.php:5956 +#: ../../include/functions_reporting_html.php:5968 msgid "Critical events" msgstr "障害イベント" -#: ../../include/functions_reporting_html.php:5872 -#: ../../include/functions_reporting_html.php:5883 +#: ../../include/functions_reporting_html.php:5959 +#: ../../include/functions_reporting_html.php:5970 msgid "Warning events" msgstr "警告イベント" -#: ../../include/functions_reporting_html.php:5875 -#: ../../include/functions_reporting_html.php:5885 +#: ../../include/functions_reporting_html.php:5962 +#: ../../include/functions_reporting_html.php:5972 msgid "OK events" msgstr "正常イベント" -#: ../../include/functions_reporting_html.php:5878 -#: ../../include/functions_reporting_html.php:5887 +#: ../../include/functions_reporting_html.php:5965 +#: ../../include/functions_reporting_html.php:5974 msgid "Unknown events" msgstr "不明イベント" -#: ../../include/functions_reporting_html.php:5903 +#: ../../include/functions_reporting_html.php:5990 msgid "Important Events by Criticity" msgstr "重要度ごとのイベント" -#: ../../include/functions_reporting_html.php:5929 +#: ../../include/functions_reporting_html.php:6017 #, php-format msgid "Last activity in %s console" msgstr "%s コンソールの最新の操作" -#: ../../include/functions_reporting_html.php:6016 -#: ../../include/functions_reporting_html.php:6158 +#: ../../include/functions_reporting_html.php:6066 +#: ../../include/functions_reporting_html.php:6208 msgid "Events info (1hr.)" msgstr "イベント情報 (1時間)" -#: ../../include/functions_reporting_html.php:6315 +#: ../../include/functions_reporting_html.php:6365 msgid "This SLA has been affected by the following scheduled downtimes" msgstr "このSLAは、次の計画停止の影響を受けています" -#: ../../include/functions_reporting_html.php:6316 +#: ../../include/functions_reporting_html.php:6366 msgid "" "If the duration of the scheduled downtime is less than 5 minutes it will not " "be represented in the graph" msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。" -#: ../../include/functions_reporting_html.php:6323 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380 +#: ../../include/functions_reporting_html.php:6373 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:396 msgid "Dates" msgstr "日付" -#: ../../include/functions_reporting_html.php:6354 +#: ../../include/functions_reporting_html.php:6404 msgid "This item is affected by a malformed scheduled downtime" msgstr "このアイテムは、不正な形式の計画停止の影響を受けます" -#: ../../include/functions_reporting_html.php:6354 +#: ../../include/functions_reporting_html.php:6404 msgid "Go to the scheduled downtimes section to solve this" msgstr "これを解決するには、計画停止の画面に移動します" -#: ../../include/functions.php:488 ../../include/functions.php:640 +#: ../../include/functions.php:498 ../../include/functions.php:650 msgid "s" msgstr "s" -#: ../../include/functions.php:489 ../../include/functions.php:641 +#: ../../include/functions.php:499 ../../include/functions.php:651 msgid "d" msgstr "d" -#: ../../include/functions.php:490 ../../include/functions.php:642 +#: ../../include/functions.php:500 ../../include/functions.php:652 msgid "M" msgstr "M" -#: ../../include/functions.php:491 ../../include/functions.php:643 +#: ../../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 msgid "Y" msgstr "Y" -#: ../../include/functions.php:492 ../../include/functions.php:644 +#: ../../include/functions.php:502 ../../include/functions.php:654 msgid "m" msgstr "m" -#: ../../include/functions.php:493 ../../include/functions.php:645 +#: ../../include/functions.php:503 ../../include/functions.php:655 msgid "h" msgstr "h" -#: ../../include/functions.php:494 ../../include/functions.php:646 +#: ../../include/functions.php:504 ../../include/functions.php:656 msgid "N" msgstr "N" -#: ../../include/functions.php:1069 ../../include/functions.php:1315 -#: ../../include/functions.php:1349 ../../include/functions_graph.php:3318 -#: ../../include/functions_graph.php:3320 ../../include/functions_graph.php:4848 +#: ../../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_incidents.php:34 #: ../../include/functions_incidents.php:75 -#: ../../include/functions_events.php:3069 -#: ../../operation/visual_console/view.php:433 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:547 +#: ../../include/functions_events.php:3210 +#: ../../operation/visual_console/view.php:451 msgid "Maintenance" msgstr "メンテナンス" -#: ../../include/functions.php:1073 ../../include/functions.php:1316 -#: ../../include/functions.php:1353 ../../include/functions_graph.php:3324 -#: ../../include/functions_graph.php:3326 ../../include/functions_graph.php:4852 -#: ../../include/functions_events.php:3073 +#: ../../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/lib/Dashboard/Widgets/EventCardboard.php:552 +#: ../../include/functions_events.php:3214 msgid "Informational" msgstr "情報" -#: ../../include/functions.php:1089 ../../include/functions.php:1318 -#: ../../include/functions.php:1369 ../../include/functions_graph.php:3336 -#: ../../include/functions_graph.php:3338 ../../include/functions_graph.php:4868 +#: ../../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/lib/Dashboard/Widgets/EventCardboard.php:572 msgid "Minor" msgstr "マイナー" -#: ../../include/functions.php:1093 ../../include/functions.php:1320 -#: ../../include/functions.php:1373 ../../include/functions_graph.php:3348 -#: ../../include/functions_graph.php:3350 ../../include/functions_graph.php:4872 +#: ../../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/lib/Dashboard/Widgets/EventCardboard.php:577 msgid "Major" msgstr "メジャー" -#: ../../include/functions.php:1268 ../../include/functions_events.php:2989 +#: ../../include/functions.php:1278 ../../include/functions_events.php:3130 msgid "Monitor Critical" msgstr "障害" -#: ../../include/functions.php:1269 ../../include/functions_events.php:2993 +#: ../../include/functions.php:1279 ../../include/functions_events.php:3134 msgid "Monitor Warning" msgstr "警告" -#: ../../include/functions.php:1270 ../../include/functions_events.php:2997 +#: ../../include/functions.php:1280 ../../include/functions_events.php:3138 msgid "Monitor Normal" msgstr "正常" -#: ../../include/functions.php:1272 +#: ../../include/functions.php:1282 msgid "Monitor Unknown" msgstr "不明状態" -#: ../../include/functions.php:1275 ../../include/functions_events.php:2773 -#: ../../include/functions_events.php:3005 +#: ../../include/functions.php:1285 ../../include/functions_events.php:2914 +#: ../../include/functions_events.php:3146 msgid "Alert recovered" msgstr "復旧したアラート" -#: ../../include/functions.php:1276 ../../include/functions_events.php:2821 -#: ../../include/functions_events.php:3009 +#: ../../include/functions.php:1286 ../../include/functions_events.php:2962 +#: ../../include/functions_events.php:3150 msgid "Alert ceased" msgstr "停止されたアラート" -#: ../../include/functions.php:1277 ../../include/functions_events.php:3013 +#: ../../include/functions.php:1287 ../../include/functions_events.php:3154 msgid "Alert manual validation" msgstr "承諾されたアラート" -#: ../../include/functions.php:1279 +#: ../../include/functions.php:1289 msgid "Agent created" msgstr "エージェント作成" -#: ../../include/functions.php:1280 ../../include/functions_events.php:3017 +#: ../../include/functions.php:1290 ../../include/functions_events.php:3158 msgid "Recon host detected" msgstr "自動検出" -#: ../../include/functions.php:1283 ../../include/functions_events.php:2817 -#: ../../include/functions_events.php:3029 +#: ../../include/functions.php:1293 ../../include/functions_events.php:2958 +#: ../../include/functions_events.php:3170 msgid "Configuration change" msgstr "設定変更" -#: ../../include/functions.php:1400 ../../include/functions.php:1430 +#: ../../include/functions.php:1410 ../../include/functions.php:1440 msgid "ALERT FIRED" msgstr "アラート発報" -#: ../../include/functions.php:1403 ../../include/functions.php:1440 -#: ../../include/functions_modules.php:4223 -#: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:567 -#: ../../operation/agentes/status_monitor.php:1669 -#: ../../operation/agentes/status_monitor.php:1682 +#: ../../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 msgid "NO DATA" msgstr "データがありません" -#: ../../include/functions.php:2740 +#: ../../include/functions.php:2750 #, php-format msgid "%s seconds" msgstr "%s 秒" -#: ../../include/functions.php:2743 ../../include/functions.php:2744 +#: ../../include/functions.php:2753 ../../include/functions.php:2754 #, php-format msgid "%s minutes" msgstr "%s 分" -#: ../../include/functions.php:2752 ../../include/functions.php:2753 +#: ../../include/functions.php:2762 ../../include/functions.php:2763 #, php-format msgid "%s months" msgstr "%s ヶ月" -#: ../../include/functions.php:2755 ../../include/functions.php:2756 +#: ../../include/functions.php:2765 ../../include/functions.php:2766 #, php-format msgid "%s years" msgstr "%s 年" -#: ../../include/functions.php:2758 +#: ../../include/functions.php:2768 msgid "Default values will be used" msgstr "デフォルト値を利用します" -#: ../../include/functions.php:2943 ../../include/functions.php:2948 +#: ../../include/functions.php:2953 ../../include/functions.php:2958 msgid "The file exceeds the maximum size" msgstr "ファイルサイズが上限を超えています。" -#: ../../include/functions.php:2944 +#: ../../include/functions.php:2954 msgid "" "Please check this PHP runtime variable values:
  upload_max_filesize "
 "(currently "
 msgstr "PHP 実行時の変数値を確認してください: 
 upload_max_filesize(現在"
 
-#: ../../include/functions.php:2952
+#: ../../include/functions.php:2962
 msgid "The uploaded file was only partially uploaded"
 msgstr "ファイルは部分的にのみアップロードされました"
 
-#: ../../include/functions.php:2956
+#: ../../include/functions.php:2966
 msgid "No file was uploaded"
 msgstr "ファイルがアップロードされませんでした"
 
-#: ../../include/functions.php:2960
+#: ../../include/functions.php:2970
 msgid "Missing a temporary folder"
 msgstr "テンポラリフォルダがありません"
 
-#: ../../include/functions.php:2964
+#: ../../include/functions.php:2974
 msgid "Failed to write file to disk"
 msgstr "ファイルのディスクへの書き込みに失敗しました"
 
-#: ../../include/functions.php:2968
+#: ../../include/functions.php:2978
 msgid "File upload stopped by extension"
 msgstr "拡張によりファイルのアップロードが停止されました"
 
-#: ../../include/functions.php:2972
+#: ../../include/functions.php:2982
 msgid "Unknown upload error"
 msgstr "不明なアップロードエラー"
 
-#: ../../include/functions.php:3083
+#: ../../include/functions.php:3093
 msgid "No data found to export"
 msgstr "エクスポートするデータがありません"
 
-#: ../../include/functions.php:3404 ../../operation/gis_maps/render_view.php:149
+#: ../../include/functions.php:3414 ../../operation/gis_maps/render_view.php:150
 msgid "5 seconds"
 msgstr "5 秒"
 
-#: ../../include/functions.php:3405 ../../operation/gis_maps/render_view.php:150
+#: ../../include/functions.php:3415 ../../operation/gis_maps/render_view.php:151
 msgid "10 seconds"
 msgstr "10 秒"
 
-#: ../../include/functions.php:3406
+#: ../../include/functions.php:3416
 msgid "15 seconds"
 msgstr "15秒"
 
-#: ../../include/functions.php:3407 ../../include/ajax/heatmap.ajax.php:50
-#: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:175
-#: ../../operation/gis_maps/render_view.php:151
+#: ../../include/functions.php:3417 ../../include/ajax/heatmap.ajax.php:52
+#: ../../operation/heatmap.php:178 ../../operation/gis_maps/render_view.php:152
 msgid "30 seconds"
 msgstr "30 秒"
 
-#: ../../include/functions.php:3408 ../../include/ajax/heatmap.ajax.php:51
-#: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:176
-#: ../../operation/gis_maps/render_view.php:152
+#: ../../include/functions.php:3418 ../../include/ajax/heatmap.ajax.php:53
+#: ../../operation/heatmap.php:179 ../../operation/gis_maps/render_view.php:153
 msgid "1 minute"
 msgstr "1 分"
 
-#: ../../include/functions.php:3409
-#: ../../include/class/AgentsAlerts.class.php:806
-#: ../../operation/gis_maps/render_view.php:153
+#: ../../include/functions.php:3419 ../../operation/gis_maps/render_view.php:154
 msgid "2 minutes"
 msgstr "2 分"
 
-#: ../../include/functions.php:3410 ../../include/ajax/heatmap.ajax.php:53
-#: ../../include/ajax/module.php:205
-#: ../../include/class/AgentsAlerts.class.php:807 ../../operation/heatmap.php:178
-#: ../../operation/gis_maps/render_view.php:154
+#: ../../include/functions.php:3420 ../../include/ajax/heatmap.ajax.php:55
+#: ../../include/ajax/module.php:219 ../../operation/heatmap.php:181
+#: ../../operation/gis_maps/render_view.php:155
 msgid "5 minutes"
 msgstr "5 分"
 
-#: ../../include/functions.php:3411
+#: ../../include/functions.php:3421
 msgid "15 minutes"
 msgstr "15 分"
 
-#: ../../include/functions.php:3412 ../../include/ajax/module.php:206
+#: ../../include/functions.php:3422 ../../include/ajax/module.php:220
 msgid "30 minutes"
 msgstr "30 分"
 
-#: ../../include/functions.php:3927
+#: ../../include/functions.php:3949
 msgid "Summatory series"
 msgstr "合計シリーズ"
 
-#: ../../include/functions.php:3931
+#: ../../include/functions.php:3953
 msgid "Average series"
 msgstr "平均シリーズ"
 
-#: ../../include/functions.php:3959 ../../include/functions.php:3978
-#: ../../include/functions.php:3992 ../../include/functions.php:4014
-#: ../../include/functions.php:4095 ../../include/functions.php:4172
+#: ../../include/functions.php:3981 ../../include/functions.php:4000
+#: ../../include/functions.php:4014 ../../include/functions.php:4036
+#: ../../include/functions.php:4117 ../../include/functions.php:4194
 msgid "Unit "
 msgstr "単位 "
 
-#: ../../include/functions.php:4040 ../../include/functions.php:4105
+#: ../../include/functions.php:4062 ../../include/functions.php:4127
 msgid "Min:"
 msgstr "最小:"
 
-#: ../../include/functions.php:4047 ../../include/functions.php:4114
+#: ../../include/functions.php:4069 ../../include/functions.php:4136
 msgid "Max:"
 msgstr "最大:"
 
-#: ../../include/functions.php:4054 ../../include/functions.php:4123
+#: ../../include/functions.php:4076 ../../include/functions.php:4145
 msgid "Avg:"
 msgstr "平均:"
 
-#: ../../include/functions.php:4169 ../../include/functions.php:4177
+#: ../../include/functions.php:4191 ../../include/functions.php:4199
 msgid "of module"
 msgstr "のモジュール"
 
-#: ../../include/functions.php:4196
+#: ../../include/functions.php:4218
 msgid "Projection"
 msgstr "投影"
 
-#: ../../include/functions.php:6039
+#: ../../include/functions.php:6064
 msgid "Testing Pandora FMS email"
 msgstr "Pandora FMS メールのテスト"
 
-#: ../../include/functions.php:6052
+#: ../../include/functions.php:6077
 msgid ""
 "This is an email test sent from Pandora FMS. If you can read this, your "
 "configuration works."
@@ -42656,35 +43681,35 @@ msgstr ""
 "これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は"
 "機能しています。"
 
-#: ../../include/functions.php:6286
-#: ../../include/class/ConsoleSupervisor.php:1490
-#: ../../include/class/ConsoleSupervisor.php:1514
-#: ../../include/class/ConsoleSupervisor.php:1543
-#: ../../include/class/ConsoleSupervisor.php:1624
+#: ../../include/functions.php:6311
+#: ../../include/class/ConsoleSupervisor.php:1645
+#: ../../include/class/ConsoleSupervisor.php:1669
+#: ../../include/class/ConsoleSupervisor.php:1698
+#: ../../include/class/ConsoleSupervisor.php:1779
 #, php-format
 msgid "Not recommended '%s' value in PHP configuration"
 msgstr "PHP 設定における値 '%s' はおすすめしません"
 
-#: ../../include/functions.php:6287
+#: ../../include/functions.php:6312
 msgid "Recommended value is: -1"
 msgstr "推奨値は -1 です"
 
-#: ../../include/functions.php:6288
-#: ../../include/class/ConsoleSupervisor.php:1549
-#: ../../include/class/ConsoleSupervisor.php:1630
+#: ../../include/functions.php:6313
+#: ../../include/class/ConsoleSupervisor.php:1704
+#: ../../include/class/ConsoleSupervisor.php:1785
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
 "administrator"
 msgstr "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。"
 
-#: ../../include/functions.php:6289 ../../general/login_help_dialog.php:96
-#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
+#: ../../include/functions.php:6314 ../../general/login_help_dialog.php:96
+#: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:41
 msgid "Documentation"
 msgstr "ドキュメント"
 
-#: ../../include/functions_cron.php:492
-msgid "Scheduled jobs"
-msgstr "スケジュールされたジョブ"
+#: ../../include/functions_cron.php:993
+msgid "There are no jobs"
+msgstr "ジョブがありません"
 
 #: ../../include/functions_api.php:126
 msgid "Not `set`, `get` or `help` operation selected."
@@ -42718,7 +43743,11 @@ msgstr ""
 msgid "Auth error"
 msgstr "認証エラー"
 
-#: ../../include/functions_api.php:1524
+#: ../../include/functions_api.php:206
+msgid "License not allowed for this operation."
+msgstr "現在のライセンスではこの操作はできません。"
+
+#: ../../include/functions_api.php:1534
 msgid ""
 "The agent could not be modified. For security reasons, use a group other than "
 "0."
@@ -42726,59 +43755,59 @@ msgstr ""
 "エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループ"
 "を利用してください。"
 
-#: ../../include/functions_api.php:1879
+#: ../../include/functions_api.php:1889
 #, php-format
 msgid "Updated %d/%d agents"
 msgstr "%d/%d エージェントを更新しました"
 
-#: ../../include/functions_api.php:1887
+#: ../../include/functions_api.php:1897
 msgid "Agent updated."
 msgstr "エージェントを更新しました。"
 
-#: ../../include/functions_api.php:2076
+#: ../../include/functions_api.php:2086
 msgid "Could not create OS"
 msgstr "OS を作成できませんでした"
 
-#: ../../include/functions_api.php:2113
+#: ../../include/functions_api.php:2123
 msgid "Could not update OS"
 msgstr "OS を更新できませんでした"
 
-#: ../../include/functions_api.php:2314
+#: ../../include/functions_api.php:2324
 msgid "The agent was successfully deleted"
 msgstr "エージェントを削除しました"
 
-#: ../../include/functions_api.php:3822
+#: ../../include/functions_api.php:3832
 msgid "Network module updated."
 msgstr "ネットワークモジュールを更新しました。"
 
-#: ../../include/functions_api.php:4118
+#: ../../include/functions_api.php:4128
 msgid "Plugin module updated."
 msgstr "プラグインモジュールを更新しました。"
 
-#: ../../include/functions_api.php:4474
+#: ../../include/functions_api.php:4484
 #, php-format
 msgid "Synthetic module created ID: %s"
 msgstr "合成モジュールが作成したID: %s"
 
-#: ../../include/functions_api.php:4627
+#: ../../include/functions_api.php:4637
 msgid "Synthetic module created ID: "
 msgstr "統合モジュールを作成しました。ID: "
 
-#: ../../include/functions_api.php:4744
+#: ../../include/functions_api.php:4754
 msgid "Data module updated."
 msgstr "データモジュールを更新しました。"
 
-#: ../../include/functions_api.php:5117
+#: ../../include/functions_api.php:5127
 msgid "SNMP module updated."
 msgstr "SNMPモジュールを更新しました。"
 
-#: ../../include/functions_api.php:5716
+#: ../../include/functions_api.php:5726
 msgid "Error creating alert template. Id_group cannot be left blank."
 msgstr ""
 "アラートテンプレートの作成中にエラーが発生しました。 id_group は空白にできませ"
 "ん。"
 
-#: ../../include/functions_api.php:5730
+#: ../../include/functions_api.php:5740
 msgid ""
 "Error creating alert template. Invalid id_group or the user has not enough "
 "permission to make this action."
@@ -42786,7 +43815,7 @@ msgstr ""
 "アラートテンプレートの作成中にエラーが発生しました。 id_group が無効であるか、"
 "ユーザにこのアクションを実行するための十分な権限がありません。"
 
-#: ../../include/functions_api.php:5874
+#: ../../include/functions_api.php:5884
 msgid ""
 "Error updating alert template. Invalid id_group or the user has not enough "
 "permission to make this action."
@@ -42794,63 +43823,63 @@ msgstr ""
 "アラートテンプレートの更新中にエラーが発生しました。 id_group が無効であるか、"
 "ユーザにこのアクションを実行するための十分な権限がありません。"
 
-#: ../../include/functions_api.php:5958
+#: ../../include/functions_api.php:5968
 msgid "Successful update of the alert template"
 msgstr "アラートテンプレートを更新しました"
 
-#: ../../include/functions_api.php:6004
+#: ../../include/functions_api.php:6014
 msgid "Error deleting alert template. Id_template doesn't exist."
 msgstr "アラートテンプレート削除エラー。id_template が存在しません。"
 
-#: ../../include/functions_api.php:6033
+#: ../../include/functions_api.php:6043
 msgid "Successful delete of alert template."
 msgstr "アラートテンプレートを削除しました。"
 
-#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11971
-#: ../../include/functions_api.php:12037 ../../include/functions_api.php:12318
-#: ../../include/functions_api.php:12398
+#: ../../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
 #, php-format
 msgid "%d agents affected"
 msgstr "%d エージェントに影響します"
 
-#: ../../include/functions_api.php:6599
+#: ../../include/functions_api.php:6609
 msgid "Correct deleting of module template."
 msgstr "モジュールテンプレートの削除内容を修正してください。"
 
-#: ../../include/functions_api.php:6707
+#: ../../include/functions_api.php:6717
 msgid "Successful delete of module template."
 msgstr "モジュールテンプレートを削除しました。"
 
-#: ../../include/functions_api.php:6740
+#: ../../include/functions_api.php:6750
 msgid "Error validating alert. Id_template cannot be left blank."
 msgstr "アラート承諾エラー。id_template は空にできません。"
 
-#: ../../include/functions_api.php:6748
+#: ../../include/functions_api.php:6758
 msgid "Error validating alert. Id_agent cannot be left blank."
 msgstr "アラート承諾エラー。id_agent は空にできません。"
 
-#: ../../include/functions_api.php:6756
+#: ../../include/functions_api.php:6766
 msgid "Error validating alert. Id_module cannot be left blank."
 msgstr "アラート承諾エラー。id_module は空にできません。"
 
-#: ../../include/functions_api.php:6827
+#: ../../include/functions_api.php:6837
 msgid "Error validating alert. Specified alert does not exist."
 msgstr "アラート承諾エラー。指定のアラートが存在しません。"
 
-#: ../../include/functions_api.php:6838
+#: ../../include/functions_api.php:6848
 msgid "Error validating alert"
 msgstr "アラート承諾エラー"
 
-#: ../../include/functions_api.php:6912
+#: ../../include/functions_api.php:6922
 #, php-format
 msgid "Correct validation of all alerts (total %d)."
 msgstr "全アラートの承諾をしました(合計 %d)。"
 
-#: ../../include/functions_api.php:7006
+#: ../../include/functions_api.php:7016
 msgid "Correct validation of all policy alerts."
 msgstr "全ポリシーアラートを承諾しました。"
 
-#: ../../include/functions_api.php:7048
+#: ../../include/functions_api.php:7058
 msgid ""
 "Error stopping downtime. Periodical and running scheduled downtime cannot be "
 "stopped."
@@ -42858,266 +43887,266 @@ msgstr ""
 "計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止する"
 "ことはできません。"
 
-#: ../../include/functions_api.php:7061
+#: ../../include/functions_api.php:7071
 msgid "Downtime stopped."
 msgstr "計画停止を中断しました。"
 
-#: ../../include/functions_api.php:7541
+#: ../../include/functions_api.php:7551
 msgid "and this modules are doesn't exists or not applicable a this agents: "
 msgstr "これらのモジュールが存在しないかまたはエージェントに適用できません : "
 
-#: ../../include/functions_api.php:7545
+#: ../../include/functions_api.php:7555
 msgid "and this agents are generate problems: "
 msgstr "これらのエージェントでエラーです : "
 
-#: ../../include/functions_api.php:7549
+#: ../../include/functions_api.php:7559
 msgid "and this agents with ids are doesn't exists: "
 msgstr "これらのエージェントIDは存在しません : "
 
-#: ../../include/functions_api.php:7697
+#: ../../include/functions_api.php:7707
 msgid "Planned downtime updated"
 msgstr "計画停止を更新しました"
 
-#: ../../include/functions_api.php:7772
+#: ../../include/functions_api.php:7782
 msgid " Agents deleted"
 msgstr " エージェントを削除しました"
 
-#: ../../include/functions_api.php:7852
+#: ../../include/functions_api.php:7862
 msgid " Agents added"
 msgstr " エージェントを追加しました"
 
-#: ../../include/functions_api.php:7970
+#: ../../include/functions_api.php:7980
 msgid "Data policy module updated."
 msgstr "データポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:8199
+#: ../../include/functions_api.php:8209
 msgid "Network policy module updated."
 msgstr "ネットワークポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:8452
+#: ../../include/functions_api.php:8462
 msgid "Plugin policy module updated."
 msgstr "プラグインポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:8957
+#: ../../include/functions_api.php:8967
 msgid "SNMP policy module updated."
 msgstr "SNMPポリシーモジュールを更新しました。"
 
-#: ../../include/functions_api.php:9292
+#: ../../include/functions_api.php:9302
 msgid "Successful deletion"
 msgstr "削除しました"
 
-#: ../../include/functions_api.php:9614
+#: ../../include/functions_api.php:9624
 msgid "User created."
 msgstr "ユーザを作成しました"
 
-#: ../../include/functions_api.php:9707
+#: ../../include/functions_api.php:9717
 msgid "User updated."
 msgstr "ユーザを更新しました。"
 
-#: ../../include/functions_api.php:9784
+#: ../../include/functions_api.php:9794
 msgid "Enabled user."
 msgstr "ユーザを有効化しました。"
 
-#: ../../include/functions_api.php:9792
+#: ../../include/functions_api.php:9802
 msgid "Disabled user."
 msgstr "ユーザを無効化しました。"
 
-#: ../../include/functions_api.php:10087
+#: ../../include/functions_api.php:10097
 #, php-format
 msgid "Template have been inserted in %d agents."
 msgstr "%d エージェントにテンプレートを挿入しました。"
 
-#: ../../include/functions_api.php:10263
+#: ../../include/functions_api.php:10273
 msgid "XML file was generated successfully in path: "
 msgstr "次のパスに XML ファイルを生成しました: "
 
-#: ../../include/functions_api.php:10403
+#: ../../include/functions_api.php:10413
 #, php-format
 msgid "Module has been created in %d agents."
 msgstr "%d エージェントにモジュールを作成しました。"
 
-#: ../../include/functions_api.php:10531
+#: ../../include/functions_api.php:10541
 #, php-format
 msgid "Action has been set for %d agents."
 msgstr "%d エージェントにアクションを設定しました。"
 
-#: ../../include/functions_api.php:11571
+#: ../../include/functions_api.php:11616
 msgid "User deleted."
 msgstr "ユーザを削除しました。"
 
-#: ../../include/functions_api.php:11630
+#: ../../include/functions_api.php:11675
 msgid "User profile added."
 msgstr "ユーザプロファイルを追加しました。"
 
-#: ../../include/functions_api.php:11695
+#: ../../include/functions_api.php:11740
 msgid "User profile deleted."
 msgstr "ユーザプロファイルを削除しました。"
 
-#: ../../include/functions_api.php:11978
+#: ../../include/functions_api.php:12023
 msgid "Module disabled successfully."
 msgstr "モジュールを無効化しました。"
 
-#: ../../include/functions_api.php:11980
+#: ../../include/functions_api.php:12025
 msgid "The module could not be disabled."
 msgstr "モジュールを無効化できませんでした。"
 
-#: ../../include/functions_api.php:12044
+#: ../../include/functions_api.php:12089
 msgid "Module enabled successfully."
 msgstr "モジュールを有効化しました。"
 
-#: ../../include/functions_api.php:12046
+#: ../../include/functions_api.php:12091
 msgid "The module could not be enabled."
 msgstr "モジュールを有効化できませんでした。"
 
-#: ../../include/functions_api.php:12094 ../../include/functions_api.php:12147
+#: ../../include/functions_api.php:12139 ../../include/functions_api.php:12192
 msgid "The alert could not be disabled."
 msgstr "アラートを無効化できませんでえした。"
 
-#: ../../include/functions_api.php:12194 ../../include/functions_api.php:12247
+#: ../../include/functions_api.php:12239 ../../include/functions_api.php:12292
 msgid "The alert could not be enabled."
 msgstr "アラートを有効化できませんでした。"
 
-#: ../../include/functions_api.php:13524
+#: ../../include/functions_api.php:13586
 msgid "Enabled agent."
 msgstr "エージェントを有効化しました"
 
-#: ../../include/functions_api.php:13532
+#: ../../include/functions_api.php:13594
 msgid "Disabled agent."
 msgstr "エージェントを無効化しました"
 
-#: ../../include/functions_api.php:14511
+#: ../../include/functions_api.php:14573
 msgid "Metaconsole and the licenses of all nodes were updated."
 msgstr "メタコンソールと全ノードのライセンスを更新しました。"
 
-#: ../../include/functions_api.php:14513
+#: ../../include/functions_api.php:14575
 #, php-format
 msgid "Metaconsole license updated but %d of %d node failed to sync."
 msgstr ""
 "メタコンソールライセンスを更新しましたが、%d/%d ノードの同期に失敗しました。"
 
-#: ../../include/functions_api.php:14516
+#: ../../include/functions_api.php:14578
 msgid "This function is for metaconsole only."
 msgstr "この機能はメタコンソールのみです。"
 
-#: ../../include/functions_api.php:14906 ../../include/functions_api.php:14977
+#: ../../include/functions_api.php:14968 ../../include/functions_api.php:15039
 msgid "Successfully deleted."
 msgstr "削除しました。"
 
-#: ../../include/functions_api.php:14936
+#: ../../include/functions_api.php:14998
 msgid "The user cannot access the cluster."
 msgstr "ユーザがクラスタにアクセスできません。"
 
-#: ../../include/functions_api.php:15822
+#: ../../include/functions_api.php:15884
 msgid "Event filter successfully created."
 msgstr "イベントフィルタを作成しました。"
 
-#: ../../include/functions_api.php:16055
+#: ../../include/functions_api.php:16117
 msgid "Event filter successfully updated."
 msgstr "イベントフィルタを更新しました。"
 
-#: ../../include/functions_api.php:16096
+#: ../../include/functions_api.php:16158
 msgid "Event filter successfully deleted."
 msgstr "イベントフィルタを削除しました。"
 
-#: ../../include/functions_api.php:16412
+#: ../../include/functions_api.php:16474
 msgid "Validated traps."
 msgstr "トラップを承諾しました。"
 
-#: ../../include/functions_api.php:16439
+#: ../../include/functions_api.php:16501
 msgid "Deleted traps."
 msgstr "トラップを削除しました。"
 
-#: ../../include/functions_api.php:16632
+#: ../../include/functions_api.php:16694
 #, php-format
 msgid "Successfully updated module/alert count in id agent %d."
 msgstr "エージェント ID %d のモジュール/アラートカウントを更新しました。"
 
-#: ../../include/functions_api.php:16634
+#: ../../include/functions_api.php:16696
 msgid "Successfully updated module/alert count in all agents"
 msgstr "全エージェントのモジュール/アラートカウントを更新しました。"
 
-#: ../../include/functions_api.php:17108
+#: ../../include/functions_api.php:17170
 #, php-format
 msgid "Successfully added to delete pending id agent %d to id policy %d."
 msgstr "削除保留エージェント ID %d をポリシー ID %d に追加しました。"
 
-#: ../../include/functions_api.php:17297
+#: ../../include/functions_api.php:17359
 msgid "Error enable/disable discovery task. Id_user cannot be left blank."
 msgstr "自動検出タスクの有効化/無効化エラー。id_user は空にできません。"
 
-#: ../../include/functions_api.php:17305
+#: ../../include/functions_api.php:17367
 msgid ""
 "Error enable/disable discovery task. Enable/disable value cannot be left blank."
 msgstr ""
 "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
 
-#: ../../include/functions_api.php:17330
+#: ../../include/functions_api.php:17392
 msgid "Error in discovery task enabling/disabling."
 msgstr "自動検出タスクの有効化/無効化エラー。"
 
-#: ../../include/functions_api.php:17338
+#: ../../include/functions_api.php:17400
 msgid "Enabled discovery task."
 msgstr "自動検出タスクを有効化しました。"
 
-#: ../../include/functions_api.php:17346
+#: ../../include/functions_api.php:17408
 msgid "Disabled discovery task."
 msgstr "自動検出タスクを無効化しました。"
 
-#: ../../include/functions_networkmap.php:1303
+#: ../../include/functions_networkmap.php:1307
 msgid "Radial dynamic"
 msgstr "放射状で動的"
 
-#: ../../include/functions_networkmap.php:1307
+#: ../../include/functions_networkmap.php:1311
 #: ../../include/functions_maps.php:38
 msgid "Topology"
 msgstr "トポロジ"
 
-#: ../../include/functions_networkmap.php:1332
+#: ../../include/functions_networkmap.php:1336
 msgid "Create a new topology map"
 msgstr "トポロジマップの新規作成"
 
-#: ../../include/functions_networkmap.php:1333
+#: ../../include/functions_networkmap.php:1337
 msgid "Create a new group map"
 msgstr "グループマップの新規作成"
 
-#: ../../include/functions_networkmap.php:1334
+#: ../../include/functions_networkmap.php:1338
 msgid "Create a new dynamic map"
 msgstr "新たな動的マップの作成"
 
-#: ../../include/functions_networkmap.php:1336
+#: ../../include/functions_networkmap.php:1340
 msgid "Create a new radial dynamic map"
 msgstr "放射状の動的マップを新規作成"
 
-#: ../../include/functions_networkmap.php:2068
+#: ../../include/functions_networkmap.php:2073
 #: ../../include/functions_maps.php:73
 #: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr "コピー: "
 
-#: ../../include/functions_networkmap.php:3508
+#: ../../include/functions_networkmap.php:3513
 msgid "Map not found."
 msgstr "マップがありません。"
 
-#: ../../include/ajax/double_auth.ajax.php:144
+#: ../../include/ajax/double_auth.ajax.php:162
 msgid "This is the private code that you should use with your authenticator app"
 msgstr "これは、認証アプリケーションで利用するプライベートコードです"
 
-#: ../../include/ajax/double_auth.ajax.php:145
-#: ../../include/ajax/double_auth.ajax.php:288
+#: ../../include/ajax/double_auth.ajax.php:163
+#: ../../include/ajax/double_auth.ajax.php:303
 msgid ""
 "You could enter the code manually or use the QR code to add it automatically"
 msgstr "コードを手動で入力するか、QRコードを使って自動追加できます。"
 
-#: ../../include/ajax/double_auth.ajax.php:151
-#: ../../include/ajax/double_auth.ajax.php:294
+#: ../../include/ajax/double_auth.ajax.php:169
+#: ../../include/ajax/double_auth.ajax.php:309
 msgid "QR"
 msgstr "QR"
 
-#: ../../include/ajax/double_auth.ajax.php:190
+#: ../../include/ajax/double_auth.ajax.php:208
 msgid "You are about to activate the double authentication"
 msgstr "二段階認証を有効化しようとしています"
 
-#: ../../include/ajax/double_auth.ajax.php:192
+#: ../../include/ajax/double_auth.ajax.php:210
 msgid ""
 "With this option enabled, your account access will be more secure, \n"
 "\t\tcause a code generated by other application will be required after the "
@@ -43126,97 +44155,100 @@ msgstr ""
 "このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n"
 "\t\tログイン後、他のアプリケーションで生成したコードが必要になります。"
 
-#: ../../include/ajax/double_auth.ajax.php:197
+#: ../../include/ajax/double_auth.ajax.php:215
 msgid "You will need to install the app from the following link before continue"
 msgstr ""
 "先に進む前に、次のリンクからアプリケーションをインストールする必要があります。"
 
-#: ../../include/ajax/double_auth.ajax.php:202
+#: ../../include/ajax/double_auth.ajax.php:220
 msgid "Download the app"
 msgstr "アプリケーションをダウンロード"
 
-#: ../../include/ajax/double_auth.ajax.php:206
-#: ../../include/ajax/double_auth.ajax.php:299
+#: ../../include/ajax/double_auth.ajax.php:221
+#: ../../include/ajax/double_auth.ajax.php:313
 #: ../../include/functions_register.php:188
 msgid "Continue"
 msgstr "続ける"
 
-#: ../../include/ajax/double_auth.ajax.php:222
+#: ../../include/ajax/double_auth.ajax.php:237
 msgid "Are you installed the app yet?"
 msgstr "アプリケーションをインストールしましたか。"
 
-#: ../../include/ajax/double_auth.ajax.php:282
+#: ../../include/ajax/double_auth.ajax.php:297
 msgid "A private code has been generated"
 msgstr "プライベートコードを生成しました"
 
-#: ../../include/ajax/double_auth.ajax.php:287
+#: ../../include/ajax/double_auth.ajax.php:302
 msgid "Before continue, you should create a new entry into the authenticator app"
 msgstr ""
 "次に進む前に、認証アプリケーションに新たなエントリーを作成する必要があります。"
 
-#: ../../include/ajax/double_auth.ajax.php:297
+#: ../../include/ajax/double_auth.ajax.php:312
 msgid "Refresh code"
 msgstr "コードのリフレッシュ"
 
-#: ../../include/ajax/double_auth.ajax.php:366
+#: ../../include/ajax/double_auth.ajax.php:381
 msgid "Are you introduced the code in the authenticator app yet?"
 msgstr "認証アプリケーションにコードを入力しましたか。"
 
-#: ../../include/ajax/double_auth.ajax.php:429
+#: ../../include/ajax/double_auth.ajax.php:444
 msgid "Introduce a code generated by the app"
 msgstr "アプリケーションにより生成されたコードを入力してください"
 
-#: ../../include/ajax/double_auth.ajax.php:430
+#: ../../include/ajax/double_auth.ajax.php:445
 msgid "If the code is valid, the double authentication will be activated"
 msgstr "コードが正しければ、二段階認証が有効化されます。"
 
-#: ../../include/ajax/double_auth.ajax.php:439
+#: ../../include/ajax/double_auth.ajax.php:454
 msgid "Validate code"
 msgstr "コードを確認"
 
-#: ../../include/ajax/double_auth.ajax.php:491
+#: ../../include/ajax/double_auth.ajax.php:506
 msgid "The code is valid, you can exit now"
 msgstr "正しいコードです。終了します。"
 
-#: ../../include/ajax/double_auth.ajax.php:508
+#: ../../include/ajax/double_auth.ajax.php:523
 msgid "The code is valid, but it was an error saving the data"
 msgstr "正しいコードですが、データの保存でエラーが発生しました。"
 
-#: ../../include/ajax/heatmap.ajax.php:52 ../../operation/heatmap.php:177
+#: ../../include/ajax/heatmap.ajax.php:54 ../../operation/heatmap.php:180
 msgid "3 minutes"
 msgstr "3 分"
 
-#: ../../include/ajax/heatmap.ajax.php:79
+#: ../../include/ajax/heatmap.ajax.php:81
+#: ../../include/lib/Dashboard/Widgets/heatmap.php:253
 msgid "Group modules by tag"
 msgstr "タグでモジュールをグループ化"
 
-#: ../../include/ajax/heatmap.ajax.php:80
+#: ../../include/ajax/heatmap.ajax.php:82
+#: ../../include/lib/Dashboard/Widgets/heatmap.php:254
 msgid "Group modules by module group"
 msgstr "モジュールグループでモジュールをグループ化"
 
-#: ../../include/ajax/heatmap.ajax.php:81
+#: ../../include/ajax/heatmap.ajax.php:83
+#: ../../include/lib/Dashboard/Widgets/heatmap.php:255
 msgid "Group modules by agents"
 msgstr "エージェントごとのモジュールグループ"
 
-#: ../../include/ajax/heatmap.ajax.php:98
+#: ../../include/ajax/heatmap.ajax.php:100
 msgid "Show groups"
 msgstr "グループ表示"
 
 #: ../../include/ajax/alert_list.ajax.php:289
-#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:983
+#: ../../include/ajax/alert_list.ajax.php:314
 msgid "Force execution"
 msgstr "確認の強制(再)実行"
 
 #: ../../include/ajax/alert_list.ajax.php:289
-#: ../../include/ajax/alert_list.ajax.php:314 ../../include/ajax/module.php:983
+#: ../../include/ajax/alert_list.ajax.php:314
 msgid "F."
 msgstr "F."
 
 #: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:374
-#: ../../operation/agentes/alerts_status.php:375
+#: ../../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:416
 msgid "No alerts found"
 msgstr "該当するアラートがありません。"
 
@@ -43250,31 +44282,31 @@ msgstr "ポリシー作成に失敗しました"
 msgid "Policy created succesfully"
 msgstr "ポリシーを作成しました"
 
-#: ../../include/ajax/module.php:214
+#: ../../include/ajax/module.php:228 ../../include/class/AuditLog.class.php:215
 msgid "3 months"
 msgstr "3ヵ月"
 
-#: ../../include/ajax/module.php:217
+#: ../../include/ajax/module.php:231
 msgid "2 years"
 msgstr "2年"
 
-#: ../../include/ajax/module.php:218
+#: ../../include/ajax/module.php:232
 msgid "3 years"
 msgstr "3 年"
 
-#: ../../include/ajax/module.php:230 ../../operation/agentes/datos_agente.php:194
+#: ../../include/ajax/module.php:243 ../../operation/agentes/datos_agente.php:194
 msgid "Choose a time from now"
 msgstr "現在からさかのぼって表示する期間を選択"
 
-#: ../../include/ajax/module.php:256 ../../operation/agentes/datos_agente.php:197
+#: ../../include/ajax/module.php:269 ../../operation/agentes/datos_agente.php:197
 msgid "Specify time range"
 msgstr "時間範囲指定"
 
-#: ../../include/ajax/module.php:314
+#: ../../include/ajax/module.php:327
 msgid "Exact phrase"
 msgstr "完全なフレーズ"
 
-#: ../../include/ajax/module.php:406 ../../operation/agentes/stat_win.php:491
+#: ../../include/ajax/module.php:419 ../../operation/agentes/stat_win.php:485
 #: ../../operation/agentes/interface_traffic_graph_win.php:310
 msgid ""
 "In Pandora FMS, data is stored compressed. The data visualization in database, "
@@ -43285,14 +44317,64 @@ msgstr ""
 "フ、または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ド"
 "キュメントの 'Pandora FMS の技術情報' の章を確認してください。"
 
-#: ../../include/ajax/module.php:1317
+#: ../../include/ajax/module.php:586
+msgid "No available data to showaaaa"
+msgstr "表示するデータがありません。"
+
+#: ../../include/ajax/module.php:1000
+msgid "T"
+msgstr "T"
+
+#: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
+#: ../../include/functions_reports.php:654
+#: ../../include/functions_reports.php:659
+#: ../../include/functions_reports.php:665
+#: ../../include/functions_reports.php:672
+#: ../../include/functions_reports.php:676
+#: ../../include/functions_reports.php:680
+#: ../../include/functions_reports.php:687
+#: ../../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
+msgid "Graphs"
+msgstr "グラフ"
+
+#: ../../include/ajax/module.php:1155
+msgid "Time elapsed since last status change: "
+msgstr "最後に状態が変化してからの経過時間: "
+
+#: ../../include/ajax/module.php:1281
+#: ../../operation/agentes/estado_generalagente.php:411
+msgid "Force checks"
+msgstr "チェックを強制する"
+
+#: ../../include/ajax/module.php:1360
 msgid "Any monitors aren't with this filter."
 msgstr "このフィルタに合うモニタ項目がありません。"
 
-#: ../../include/ajax/module.php:1319
+#: ../../include/ajax/module.php:1360
 msgid "This agent doesn't have any active monitors."
 msgstr "エージェントに有効な監視がありません。"
 
+#: ../../include/ajax/module.php:2138
+msgid "Load"
+msgstr "処理実行率"
+
+#: ../../include/ajax/module.php:2235 ../../include/ajax/agent.php:582
+msgid "Update/delete filter"
+msgstr "フィルタの更新/削除"
+
+#: ../../include/ajax/module.php:2313 ../../include/ajax/agent.php:672
+msgid "Save current filter"
+msgstr "現在のフィルタを保存"
+
+#: ../../include/ajax/module.php:2328 ../../include/ajax/agent.php:687
+#: ../../include/ajax/custom_fields.php:702
+msgid "Delete filter"
+msgstr "フィルタの削除"
+
 #: ../../include/ajax/custom_fields.php:414
 msgid "Current interval"
 msgstr "現在の間隔"
@@ -43326,10 +44408,6 @@ msgstr "新規フィルタ"
 msgid "Existing Filter"
 msgstr "既存フィルタ"
 
-#: ../../include/ajax/custom_fields.php:702
-msgid "Delete filter"
-msgstr "フィルタの削除"
-
 #: ../../include/ajax/custom_fields.php:752
 msgid "Filter name already exists in the bbdd"
 msgstr "データベースにフィルタがすでに存在します"
@@ -43371,123 +44449,111 @@ msgstr "フィルタを削除しました。"
 msgid "Error delete filter."
 msgstr "フィルタ削除エラー。"
 
-#: ../../include/ajax/events.php:96
+#: ../../include/ajax/consoles.ajax.php:90
+msgid "Console successfully deleted"
+msgstr "コンソールを削除しました"
+
+#: ../../include/ajax/events.php:98
 msgid "Failed to retrieve comments"
 msgstr "コメントを取得できませんでした"
 
-#: ../../include/ajax/events.php:767
-msgid "New filter"
-msgstr "新規フィルタ"
+#: ../../include/ajax/events.php:897
+msgid "Save/Update filters"
+msgstr "フィルタの保存/更新"
 
-#: ../../include/ajax/events.php:785
-msgid "Save in Group"
-msgstr "保存グループ"
-
-#: ../../include/ajax/events.php:821
-msgid "Overwrite filter"
-msgstr "フィルタの上書き"
-
-#: ../../include/ajax/events.php:892
-msgid "Filter name cannot be left blank"
-msgstr "フィルタ名は空にできません"
-
-#: ../../include/ajax/events.php:1243
+#: ../../include/ajax/events.php:1287
 msgid "unauthorized"
 msgstr "未認証"
 
-#: ../../include/ajax/events.php:1349
+#: ../../include/ajax/events.php:1393
 msgid "Error executing response"
 msgstr "応答の実行エラー"
 
-#: ../../include/ajax/events.php:1673
+#: ../../include/ajax/events.php:1746
 msgid "Related"
 msgstr "関連"
 
-#: ../../include/ajax/events.php:1685
+#: ../../include/ajax/events.php:1758
 msgid "Agent fields"
 msgstr "エージェントフィールド"
 
-#: ../../include/ajax/events.php:1823
+#: ../../include/ajax/events.php:1896
 msgid "Error adding comment"
 msgstr "コメント追加エラー"
 
-#: ../../include/ajax/events.php:1830
+#: ../../include/ajax/events.php:1903
 msgid "Comment added successfully"
 msgstr "コメントを追加しました"
 
-#: ../../include/ajax/events.php:1837
+#: ../../include/ajax/events.php:1910
 msgid "Error changing event status"
 msgstr "イベント状態変更エラー"
 
-#: ../../include/ajax/events.php:1844
+#: ../../include/ajax/events.php:1917
 msgid "Event status changed successfully"
 msgstr "イベントの状態を変更しました"
 
-#: ../../include/ajax/events.php:1851
+#: ../../include/ajax/events.php:1924
 msgid "Error changing event owner"
 msgstr "イベント所有者変更エラー"
 
-#: ../../include/ajax/events.php:1858
+#: ../../include/ajax/events.php:1931
 msgid "Event owner changed successfully"
 msgstr "イベントの所有者を変更しました"
 
-#: ../../include/ajax/events.php:1865
+#: ../../include/ajax/events.php:1938
 msgid "Error deleting event"
 msgstr "イベントの削除エラー"
 
-#: ../../include/ajax/events.php:1991
+#: ../../include/ajax/events.php:2073
 msgid "Show all Events 24h"
 msgstr "24h以内の全イベント表示"
 
-#: ../../include/ajax/events.php:2085
+#: ../../include/ajax/events.php:2170
 msgid "These commands will apply to all selected events"
 msgstr "これらのコマンドは、選択したすべてのイベントに適用されます。"
 
-#: ../../include/ajax/events.php:2147
+#: ../../include/ajax/events.php:2232
 msgid "Total number of events in this node reached"
 msgstr "このノードのイベントの総数に達しました"
 
-#: ../../include/ajax/events.php:2181
+#: ../../include/ajax/events.php:2266
 msgid "Total Events per node"
 msgstr "ノードごとの全イベント"
 
-#: ../../include/ajax/events.php:2235 ../../operation/events/events.php:1549
-msgid "Events list"
-msgstr "イベント一覧"
-
-#: ../../include/ajax/events.php:2246
+#: ../../include/ajax/events.php:2331
 msgid "Console configuration"
 msgstr "コンソール設定"
 
-#: ../../include/ajax/events.php:2253
+#: ../../include/ajax/events.php:2338
 msgid "Set condition"
 msgstr "状態設定"
 
-#: ../../include/ajax/events.php:2260 ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2345 ../../operation/events/sound_events.php:192
 msgid "All new events"
 msgstr "全新規イベント"
 
-#: ../../include/ajax/events.php:2297
+#: ../../include/ajax/events.php:2382
 msgid "Sound duration"
 msgstr "音の長さ設定"
 
-#: ../../include/ajax/events.php:2328
+#: ../../include/ajax/events.php:2418
 msgid "Sound melody"
 msgstr "サウンドメロディ"
 
-#: ../../include/ajax/events.php:2342
+#: ../../include/ajax/events.php:2432
 msgid "Test sound"
 msgstr "サウンドテスト"
 
-#: ../../include/ajax/events.php:2366
+#: ../../include/ajax/events.php:2456
 msgid "Discovered alerts"
 msgstr "検出されたアラート"
 
-#: ../../include/ajax/events.php:2373
+#: ../../include/ajax/events.php:2463
 msgid "No alerts discovered"
 msgstr "アラートが検出されません"
 
-#: ../../include/ajax/events.php:2378
+#: ../../include/ajax/events.php:2468
 msgid "Congrats! there’s nothing to show"
 msgstr "おめでとうございます! 表示するものはありません"
 
@@ -43495,55 +44561,55 @@ msgstr "おめでとうございます! 表示するものはありません"
 msgid "Time container lapse"
 msgstr "時間コンテナの経過"
 
-#: ../../include/functions_agents.php:1009
+#: ../../include/functions_agents.php:1045
 msgid ""
 "There was an error copying the agent configuration, the copy has been cancelled"
 msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。"
 
-#: ../../include/functions_agents.php:2966
-#: ../../include/functions_agents.php:3005
-#: ../../include/functions_agents.php:3076
+#: ../../include/functions_agents.php:3022
+#: ../../include/functions_agents.php:3061
+#: ../../include/functions_agents.php:3150
 msgid "No Monitors"
 msgstr "モニタ項目なし"
 
-#: ../../include/functions_agents.php:2974
-#: ../../include/functions_agents.php:3029
-#: ../../include/functions_agents.php:3084
-#: ../../include/functions_reporting.php:12921
+#: ../../include/functions_agents.php:3030
+#: ../../include/functions_agents.php:3091
+#: ../../include/functions_agents.php:3158
+#: ../../include/functions_reporting.php:13111
 msgid "At least one module in CRITICAL status"
 msgstr "一つ以上のモジュールが致命的な状態です。"
 
-#: ../../include/functions_agents.php:2980
-#: ../../include/functions_agents.php:3039
-#: ../../include/functions_agents.php:3092
-#: ../../include/functions_reporting.php:12928
+#: ../../include/functions_agents.php:3036
+#: ../../include/functions_agents.php:3104
+#: ../../include/functions_agents.php:3166
+#: ../../include/functions_reporting.php:13118
 msgid "At least one module in WARNING status"
 msgstr "一つ以上のモジュールが警告状態です。"
 
-#: ../../include/functions_agents.php:2986
-#: ../../include/functions_agents.php:3049
-#: ../../include/functions_agents.php:3100
-#: ../../include/functions_reporting.php:12935
+#: ../../include/functions_agents.php:3042
+#: ../../include/functions_agents.php:3117
+#: ../../include/functions_agents.php:3174
+#: ../../include/functions_reporting.php:13125
 msgid "At least one module is in UKNOWN status"
 msgstr "一つ以上のモジュールが不明な状態です。"
 
-#: ../../include/functions_agents.php:2992
-#: ../../include/functions_agents.php:3059
-#: ../../include/functions_agents.php:3108
-#: ../../include/functions_reporting.php:12942
+#: ../../include/functions_agents.php:3048
+#: ../../include/functions_agents.php:3130
+#: ../../include/functions_agents.php:3182
+#: ../../include/functions_reporting.php:13132
 msgid "All Monitors OK"
 msgstr "全モニタ項目が正常"
 
-#: ../../include/functions_agents.php:3017
+#: ../../include/functions_agents.php:3076
 msgid "Alert fired on agent"
 msgstr "エージェントでアラート発報"
 
-#: ../../include/functions_agents.php:4031
+#: ../../include/functions_agents.php:4105
 msgid "Dialog response time"
 msgstr "ダイアログ応答時間"
 
 #: ../../include/functions_inventory.php:115
-#: ../../include/functions_inventory.php:868
+#: ../../include/functions_inventory.php:1051
 msgid "No changes found"
 msgstr "変更がありません"
 
@@ -43601,25 +44667,49 @@ msgstr "ファイルを追加できませんでした"
 msgid "File has an invalid extension"
 msgstr "ファイルの拡張子が不正です"
 
-#: ../../include/functions_modules.php:4150
+#: ../../include/functions_modules.php:4190
 msgid "Realtime SNMP graph"
 msgstr "リアルタイム SNMP グラフ"
 
-#: ../../include/functions_modules.php:4215
+#: ../../include/functions_modules.php:4255
 msgid "ALL"
 msgstr "すべて"
 
-#: ../../include/functions_modules.php:4231
+#: ../../include/functions_modules.php:4271
 msgid "NOT NORMAL"
 msgstr "非正常"
 
+#: ../../include/functions_modules.php:4618
+msgid "Create a new data server module"
+msgstr "データサーバモジュールの新規作成"
+
+#: ../../include/functions_modules.php:4620
+msgid "Create a new network server module"
+msgstr "ネットワークサーバモジュールの新規作成"
+
+#: ../../include/functions_modules.php:4624
+msgid "Create a new plugin server module"
+msgstr "プラグインサーバモジュールの新規作成"
+
+#: ../../include/functions_modules.php:4628
+msgid "Create a new WMI server module"
+msgstr "WMI サーバモジュールの新規作成"
+
+#: ../../include/functions_modules.php:4632
+msgid "Create a new prediction server module"
+msgstr "予測サーバモジュールの新規作成"
+
+#: ../../include/functions_modules.php:4636
+msgid "Create a new web Server module"
+msgstr "ウェブサーバモジュールの新規作成"
+
 #: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
 msgid ""
 "Problems with configuration permissions. Please contact with Administrator"
 msgstr "パーミッション設定に問題があります。管理者に連絡してください。"
 
 #: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
-#: ../../include/auth/mysql.php:398 ../../include/auth/mysql.php:429
+#: ../../include/auth/mysql.php:402 ../../include/auth/mysql.php:433
 msgid "User not found in database or incorrect password"
 msgstr "データベース上にユーザが存在しないかパスワードが不正です"
 
@@ -43631,11 +44721,11 @@ msgstr ""
 "データベースにユーザがいないか\n"
 "\t\t\t\tパスワードが不正です。"
 
-#: ../../include/auth/mysql.php:769
+#: ../../include/auth/mysql.php:773
 msgid "Could not changes password on remote pandora"
 msgstr "リモートの pandora のパスワードを変更できません"
 
-#: ../../include/auth/mysql.php:854
+#: ../../include/auth/mysql.php:858
 msgid "Your installation of PHP does not support LDAP"
 msgstr "インストールされている PHP が LDAP に対応していません"
 
@@ -43655,17 +44745,17 @@ msgstr "ユーザ、グループまたは、プロファイルが指定されて
 msgid "User, group or profile status not specified"
 msgstr "ユーザ、グループまたは、プロファイルの状態が指定されていません"
 
-#: ../../include/functions_graph.php:2608
+#: ../../include/functions_graph.php:2607
 msgid "Not fired alerts"
 msgstr "未発報アラート"
 
-#: ../../include/functions_graph.php:3236 ../../include/functions_ui.php:3837
-#: ../../include/functions_events.php:108 ../../include/functions_events.php:2805
-#: ../../operation/events/events.php:668
+#: ../../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
 msgid "SYSTEM"
 msgstr "システム"
 
-#: ../../include/functions_graph.php:5251
+#: ../../include/functions_graph.php:5237
 msgid "Main node"
 msgstr "メインノード"
 
@@ -43678,216 +44768,248 @@ msgstr "エージェントの階層"
 msgid "There was a problem loading module"
 msgstr "モジュールの読み込みで問題が発生しました。"
 
-#: ../../include/functions_treeview.php:342
-msgid "Go to module edition"
-msgstr "モジュールの編集へ行く"
+#: ../../include/functions_treeview.php:73
+msgid "Click here for view this module"
+msgstr "モジュールを見るにはここをクリック"
 
-#: ../../include/functions_treeview.php:393
+#: ../../include/functions_treeview.php:316
+msgid "Module information"
+msgstr "モジュール情報"
+
+#: ../../include/functions_treeview.php:380
 msgid "There was a problem loading alerts"
 msgstr "アラートの読み込みで問題が発生しました。"
 
-#: ../../include/functions_treeview.php:478
+#: ../../include/functions_treeview.php:467
 msgid "Go to alerts edition"
 msgstr "アラートの編集へ行く"
 
-#: ../../include/functions_treeview.php:564
+#: ../../include/functions_treeview.php:559
 #: ../../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:634
-#: ../../operation/agentes/estado_generalagente.php:505
+#: ../../include/functions_treeview.php:611
+msgid "Click here for view this agent"
+msgstr "このエージェントを見るにはここをクリック"
+
+#: ../../include/functions_treeview.php:633
+#: ../../operation/agentes/estado_generalagente.php:588
 msgid "Other IP addresses"
 msgstr "他のIPアドレス"
 
 #: ../../include/functions_treeview.php:676
+msgid "Remote contact"
+msgstr "リモート接続"
+
+#: ../../include/functions_treeview.php:684
 msgid "Next agent contact"
 msgstr "次の接続予定"
 
 #: ../../include/functions_treeview.php:697
-msgid "Go to cluster edition"
-msgstr "クラスタ編集へ行く"
+msgid "Agent information"
+msgstr "エージェント情報"
 
-#: ../../include/functions_treeview.php:700
-msgid "Go to agent edition"
-msgstr "エージェントの編集へ行く"
-
-#: ../../include/functions_treeview.php:712
-msgid "Agent data"
-msgstr "エージェントデータ"
-
-#: ../../include/functions_treeview.php:743
-#: ../../operation/agentes/estado_generalagente.php:471
-msgid "Position (Long, Lat)"
-msgstr "位置 (経度、緯度)"
-
-#: ../../include/functions_treeview.php:760
-#: ../../operation/agentes/estado_generalagente.php:513
-msgid "Timezone Offset"
-msgstr "タイムゾーンオフセット"
-
-#: ../../include/functions_treeview.php:792
-msgid "Advanced information"
-msgstr "拡張情報"
-
-#: ../../include/functions_treeview.php:805
+#: ../../include/functions_treeview.php:744
 msgid "Agent access rate (24h)"
 msgstr "エージェントアクセス頻度(過去24時間)"
 
-#: ../../include/functions_treeview.php:871
-#: ../../operation/agentes/pandora_networkmap.view.php:1277
-#: ../../operation/agentes/estado_generalagente.php:735
+#: ../../include/functions_treeview.php:800
+#: ../../operation/agentes/interface_view.functions.php:722
+#: ../../operation/agentes/pandora_networkmap.view.php:1303
+#: ../../operation/agentes/estado_generalagente.php:826
 msgid "Interface traffic"
 msgstr "インタフェーストラフィック"
 
-#: ../../include/functions_treeview.php:894
+#: ../../include/functions_treeview.php:823
 msgid "Interface information"
 msgstr "インタフェース情報"
 
-#: ../../include/functions_menu.php:486
+#: ../../include/functions_treeview.php:863
+#: ../../operation/agentes/estado_generalagente.php:549
+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
+msgid "Url address"
+msgstr "URLアドレス"
+
+#: ../../include/functions_treeview.php:886
+#: ../../operation/agentes/estado_generalagente.php:600
+msgid "Timezone Offset"
+msgstr "タイムゾーンオフセット"
+
+#: ../../include/functions_treeview.php:917
+msgid "Advanced information"
+msgstr "拡張情報"
+
+#: ../../include/functions_menu.php:561
 msgid "Configure user"
 msgstr "ユーザ設定"
 
-#: ../../include/functions_menu.php:487
+#: ../../include/functions_menu.php:562
 msgid "Configure profile"
 msgstr "プロファイル設定"
 
-#: ../../include/functions_menu.php:489
+#: ../../include/functions_menu.php:564
 msgid "Module templates management"
 msgstr "モジュールテンプレート管理"
 
-#: ../../include/functions_menu.php:490
+#: ../../include/functions_menu.php:565
 msgid "Inventory modules management"
 msgstr "インベントリモジュール管理"
 
-#: ../../include/functions_menu.php:497
+#: ../../include/functions_menu.php:572
 msgid "Builder visual console"
 msgstr "ビジュアルコンソールビルダ"
 
-#: ../../include/functions_menu.php:499
+#: ../../include/functions_menu.php:574
 msgid "View reporting"
 msgstr "レポート表示"
 
-#: ../../include/functions_menu.php:500
+#: ../../include/functions_menu.php:575
 msgid "Graph viewer"
 msgstr "グラフ表示"
 
-#: ../../include/functions_menu.php:502
+#: ../../include/functions_menu.php:577
 msgid "Manage custom graphs"
 msgstr "カスタムグラフ管理"
 
-#: ../../include/functions_menu.php:503
+#: ../../include/functions_menu.php:578
 msgid "View graph containers"
 msgstr "グラフコンテナ表示"
 
-#: ../../include/functions_menu.php:504
+#: ../../include/functions_menu.php:579
 msgid "Manage graph containers"
 msgstr "グラフコンテナ管理"
 
-#: ../../include/functions_menu.php:505
+#: ../../include/functions_menu.php:580
 msgid "View graph templates"
 msgstr "グラフテンプレート表示"
 
-#: ../../include/functions_menu.php:506
+#: ../../include/functions_menu.php:581
 msgid "Manage graph templates"
 msgstr "グラフテンプレート管理"
 
-#: ../../include/functions_menu.php:507
+#: ../../include/functions_menu.php:582
 msgid "Graph template items"
 msgstr "グラフテンプレートアイテム"
 
-#: ../../include/functions_menu.php:508
+#: ../../include/functions_menu.php:583
 msgid "Graph template wizard"
 msgstr "グラフテンプレートウィザード"
 
-#: ../../include/functions_menu.php:512
+#: ../../include/functions_menu.php:586
+msgid "Edit custom reports"
+msgstr "カスタムレポート編集"
+
+#: ../../include/functions_menu.php:588
+msgid "Edit item"
+msgstr "アイテム編集"
+
+#: ../../include/functions_menu.php:590
+msgid "Wizard sla"
+msgstr "SLA ウィザード"
+
+#: ../../include/functions_menu.php:591
+msgid "Global custom reports"
+msgstr "全体のカスタムレポート"
+
+#: ../../include/functions_menu.php:592
+msgid "Avanced options"
+msgstr "高度なオプション"
+
+#: ../../include/functions_menu.php:595
 msgid "Manage GIS Maps"
 msgstr "GIS マップ管理"
 
-#: ../../include/functions_menu.php:515
+#: ../../include/functions_menu.php:598
 msgid "Manage messages"
 msgstr "メッセージ管理"
 
-#: ../../include/functions_menu.php:517
+#: ../../include/functions_menu.php:600
 msgid "Manage module groups"
 msgstr "モジュールグループ管理"
 
-#: ../../include/functions_menu.php:518
+#: ../../include/functions_menu.php:601
 msgid "Manage custom field"
 msgstr "カスタムフィールド管理"
 
-#: ../../include/functions_menu.php:520
+#: ../../include/functions_menu.php:603
 msgid "Manage alert actions"
 msgstr "アラートアクション管理"
 
-#: ../../include/functions_menu.php:521
+#: ../../include/functions_menu.php:604
 msgid "Manage commands"
 msgstr "コマンド管理"
 
-#: ../../include/functions_menu.php:523
+#: ../../include/functions_menu.php:606
 msgid "Manage export targets"
 msgstr "エクスポートターゲット管理"
 
-#: ../../include/functions_menu.php:525 ../../operation/menu.php:142
+#: ../../include/functions_menu.php:608 ../../operation/menu.php:254
 msgid "SNMP trap generator"
 msgstr "SNMPトラップジェネレータ"
 
-#: ../../include/functions_menu.php:528
+#: ../../include/functions_menu.php:611
 msgid "Manage incident"
 msgstr "インシデント管理"
 
-#: ../../include/functions_menu.php:530
+#: ../../include/functions_menu.php:613
 msgid "Manage groups"
 msgstr "グループ管理"
 
-#: ../../include/functions_menu.php:590
+#: ../../include/functions_menu.php:673
 msgid "Administration"
 msgstr "システム管理"
 
-#: ../../include/functions_menu.php:817 ../../include/functions_ui.php:287
+#: ../../include/functions_menu.php:936 ../../include/functions_ui.php:303
 msgid "Information"
 msgstr "情報"
 
-#: ../../include/functions_menu.php:819 ../../include/functions_menu.php:961
-#: ../../include/class/Diagnostics.class.php:243
+#: ../../include/functions_menu.php:938 ../../include/functions_menu.php:1109
+#: ../../include/class/Diagnostics.class.php:251
 msgid "System Info"
 msgstr "システム情報"
 
-#: ../../include/functions_menu.php:820
+#: ../../include/functions_menu.php:939
 msgid "PHP System"
 msgstr "PHP システム"
 
-#: ../../include/functions_menu.php:835
+#: ../../include/functions_menu.php:954
 msgid "MR version"
 msgstr "MR バージョン"
 
-#: ../../include/functions_menu.php:841
+#: ../../include/functions_menu.php:962
 msgid "Update manager"
 msgstr "アップデートマネージャ"
 
-#: ../../include/functions_menu.php:842
+#: ../../include/functions_menu.php:974
 msgid "System report"
 msgstr "システムレポート"
 
-#: ../../include/functions_menu.php:858
-#: ../../include/class/Diagnostics.class.php:235
+#: ../../include/functions_menu.php:1006
+#: ../../include/class/Diagnostics.class.php:243
 msgid "Database health status"
 msgstr "データベースの正常性状態"
 
-#: ../../include/functions_menu.php:888
-#: ../../include/class/Diagnostics.class.php:239
+#: ../../include/functions_menu.php:1036
+#: ../../include/class/Diagnostics.class.php:247
 msgid "Database status info"
 msgstr "データベースステータス情報"
 
-#: ../../include/functions_menu.php:926
-#: ../../include/class/Diagnostics.class.php:252
+#: ../../include/functions_menu.php:1074
+#: ../../include/class/Diagnostics.class.php:260
 #, php-format
 msgid "Tables fragmentation in the %s database"
 msgstr "%s データベースにおけるテーブルのフラグメンテーション"
 
-#: ../../include/functions_menu.php:1012
+#: ../../include/functions_menu.php:1168
 msgid "PHP system"
 msgstr "PHP システム"
 
@@ -43898,13 +45020,13 @@ msgstr "情報"
 
 #: ../../include/functions_incidents.php:30
 #: ../../include/functions_incidents.php:59
-#: ../../include/functions_netflow.php:1845
+#: ../../include/functions_netflow.php:1864
 msgid "Low"
 msgstr "低い"
 
 #: ../../include/functions_incidents.php:31
 #: ../../include/functions_incidents.php:63
-#: ../../include/functions_netflow.php:1846
+#: ../../include/functions_netflow.php:1865
 msgid "Medium"
 msgstr "中くらい"
 
@@ -44302,10 +45424,6 @@ msgid ""
 msgstr ""
 "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。"
 
-#: ../../include/help/clippy/server_queued_modules.php:35
-msgid "Excesive Queued."
-msgstr "実行キュー"
-
 #: ../../include/help/clippy/server_queued_modules.php:35
 msgid ""
 "You have too much items in the processing queue. This can happen if your "
@@ -44388,8 +45506,8 @@ msgid "Please check if the email configuration is correct."
 msgstr "メール設定が正しいか確認してください。"
 
 #: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:886
-#: ../../operation/users/user_edit.php:895
+#: ../../operation/users/user_edit.php:972
+#: ../../operation/users/user_edit.php:981
 msgid "Profiles/Groups assigned to this user"
 msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ"
 
@@ -44409,112 +45527,123 @@ msgstr "上位の TCP プロトコル"
 msgid "Top UDP protocols"
 msgstr "上位の UDP プロトコル"
 
-#: ../../include/functions_ui.php:465
+#: ../../include/functions_ui.php:522
 msgid "Request successfully processed"
 msgstr "要求された処理を実行しました。"
 
-#: ../../include/functions_ui.php:469
+#: ../../include/functions_ui.php:526
 msgid "Error processing request"
 msgstr "要求された処理の実行に失敗しました。"
 
-#: ../../include/functions_ui.php:625
+#: ../../include/functions_ui.php:683
 msgid ""
 "Is possible that this view uses part of information which your user has not "
 "access"
 msgstr "あなたのユーザでアクセスできない情報の一部を利用している可能性があります"
 
-#: ../../include/functions_ui.php:874
+#: ../../include/functions_ui.php:985
 msgid "Software"
 msgstr "ソフトウェア"
 
-#: ../../include/functions_ui.php:1361
+#: ../../include/functions_ui.php:1281
+msgid "Force check"
+msgstr "チェックを強制する"
+
+#: ../../include/functions_ui.php:1525
 msgid "The alert would fire when the value is over "
 msgstr ""
 "取得した値が  以上になったら、アラートを発生させます。"
 
-#: ../../include/functions_ui.php:1366
+#: ../../include/functions_ui.php:1530
 msgid "The alert would fire when the value is under "
 msgstr ""
 "取得した値が  未満になったら、アラートを発生させます。"
 
-#: ../../include/functions_ui.php:1381
+#: ../../include/functions_ui.php:1545
 msgid "Unknown option."
 msgstr "不明なオプション。"
 
-#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2470
+#: ../../include/functions_ui.php:1907 ../../include/functions_config.php:2666
 msgid "the Flexible Monitoring System"
 msgstr "the Flexible Monitoring System"
 
-#: ../../include/functions_ui.php:2113 ../../include/functions_ui.php:2139
+#: ../../include/functions_ui.php:2286 ../../include/functions_ui.php:2312
 #, php-format
 msgid "Total items: %s"
 msgstr "全アイテム数: %s"
 
-#: ../../include/functions_ui.php:2544
+#: ../../include/functions_ui.php:2341
+msgid "First"
+msgstr "最初のページ"
+
+#: ../../include/functions_ui.php:2797
 msgid "Unknown type"
 msgstr "不明なタイプ"
 
-#: ../../include/functions_ui.php:3447
+#: ../../include/functions_ui.php:3752
 msgid "No matching records found"
 msgstr "マッチするレコードが見つかりません"
 
-#: ../../include/functions_ui.php:3448
+#: ../../include/functions_ui.php:3753
 msgid "No data available in table"
 msgstr "テーブルにデータがありません"
 
-#: ../../include/functions_ui.php:3543 ../../include/functions_ui.php:3544
+#: ../../include/functions_ui.php:3994 ../../include/functions_ui.php:3995
 msgid "Export current page to CSV"
 msgstr "現在のページを CSV へエクスポート"
 
-#: ../../include/functions_ui.php:3828 ../../include/functions_events.php:75
-#: ../../include/functions_events.php:101 ../../operation/events/events.php:659
-#: ../../operation/events/events.php:723
+#: ../../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
 msgid "ALERT"
 msgstr "アラート"
 
-#: ../../include/functions_ui.php:3906 ../../include/functions_events.php:167
-#: ../../operation/events/events.php:583
+#: ../../include/functions_ui.php:4312 ../../include/functions_events.php:167
+#: ../../operation/events/events.php:613
 msgid "MAINTENANCE"
 msgstr "メンテナンス"
 
-#: ../../include/functions_ui.php:3911 ../../include/functions_events.php:170
-#: ../../operation/events/events.php:588
+#: ../../include/functions_ui.php:4317 ../../include/functions_events.php:170
+#: ../../operation/events/events.php:618
 msgid "INFORMATIONAL"
 msgstr "情報"
 
-#: ../../include/functions_ui.php:3931 ../../include/functions_events.php:176
-#: ../../operation/events/events.php:598
+#: ../../include/functions_ui.php:4337 ../../include/functions_events.php:176
+#: ../../operation/events/events.php:628
 msgid "MINOR"
 msgstr "マイナー"
 
-#: ../../include/functions_ui.php:3936 ../../include/functions_events.php:173
-#: ../../operation/events/events.php:593
+#: ../../include/functions_ui.php:4342 ../../include/functions_events.php:173
+#: ../../operation/events/events.php:623
 msgid "MAJOR"
 msgstr "メジャー"
 
-#: ../../include/functions_ui.php:4755 ../../include/functions_html.php:930
-#: ../../include/functions_html.php:3392 ../../include/functions_html.php:3884
-#: ../../include/functions_reporting.php:11972
-#: ../../include/functions_reporting.php:12129
-#: ../../include/functions_reporting.php:12143
-#: ../../include/functions_reporting.php:14482
-#: ../../include/functions_reporting.php:14557
+#: ../../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
 msgid "Enterprise version not installed"
 msgstr "Enterprise 版がインストールされていません"
 
-#: ../../include/functions_ui.php:5137
+#: ../../include/functions_ui.php:5563
 msgid "Type at least two characters to search."
 msgstr "2文字以上入力するとマッチするエージェント名が検索されます"
 
-#: ../../include/functions_ui.php:6076
+#: ../../include/functions_ui.php:6503
 msgid "Unhandled error"
 msgstr "処理できないエラー"
 
-#: ../../include/functions_ui.php:6077
+#: ../../include/functions_ui.php:6504
 msgid "An unhandled error occurs"
 msgstr "処理できないエラーが発生しました"
 
-#: ../../include/functions_ui.php:6348
+#: ../../include/functions_ui.php:6775
 #, php-format
 msgid ""
 "These controls are using the timezone of the system (%s) instead of yours "
@@ -44523,18 +45652,46 @@ msgstr ""
 "これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイム"
 "ゾーン(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。"
 
-#: ../../include/functions_ui.php:6684
-msgid "Execute query"
-msgstr "クエリの実行"
-
-#: ../../include/functions_ui.php:6706
+#: ../../include/functions_ui.php:7127
 msgid "Results"
 msgstr "結果"
 
-#: ../../include/functions_ui.php:6770
+#: ../../include/functions_ui.php:7173
+msgid "Execute query"
+msgstr "クエリの実行"
+
+#: ../../include/functions_ui.php:7196
 msgid "Show password"
 msgstr "パスワードを表示"
 
+#: ../../include/functions_ui.php:7296
+msgid "WEB server"
+msgstr "ウェブサーバ"
+
+#: ../../include/functions_ui.php:7306
+msgid "Wizard Module"
+msgstr "ウィザードモジュール"
+
+#: ../../include/functions_ui.php:7399
+msgid "Select inventory module"
+msgstr "インベントリモジュールの選択"
+
+#: ../../include/functions_ui.php:7455
+msgid "Use custom fields"
+msgstr "カスタムフィールドを利用"
+
+#: ../../include/functions_ui.php:7581
+msgid "Field name"
+msgstr "フィールド名"
+
+#: ../../include/functions_ui.php:7598
+msgid "It's a password"
+msgstr "それはパスワードです"
+
+#: ../../include/functions_ui.php:7606
+msgid "Add field"
+msgstr "フィールド追加"
+
 #: ../../include/functions_visual_map.php:1746
 #: ../../include/functions_visual_map.php:1748
 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:283
@@ -44730,7 +45887,7 @@ msgstr "保存"
 msgid "Time (ms)"
 msgstr "時間 (ミリ秒)"
 
-#: ../../include/functions_users.php:916
+#: ../../include/functions_users.php:938
 msgid "NONE"
 msgstr "なし"
 
@@ -44738,7 +45895,7 @@ msgstr "なし"
 msgid "Add new range"
 msgstr "新しい範囲を追加"
 
-#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:495
+#: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:498
 msgid "Current ranges"
 msgstr "現在の範囲"
 
@@ -44806,8 +45963,8 @@ 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/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:713
-#: ../../include/rest-api/models/VisualConsole/View.php:792
+#: ../../include/rest-api/models/VisualConsole/View.php:721
+#: ../../include/rest-api/models/VisualConsole/View.php:800
 msgid "Failed to connect to node"
 msgstr "ノードへの接続に失敗しました"
 
@@ -44819,52 +45976,52 @@ msgstr "タイトルの色"
 msgid "Label settings"
 msgstr "ラベル設定"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:72
-#: ../../include/rest-api/models/VisualConsole/View.php:104
+#: ../../include/rest-api/models/VisualConsole/View.php:73
+#: ../../include/rest-api/models/VisualConsole/View.php:108
 msgid "General settings"
 msgstr "一般設定"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:78
-#: ../../include/rest-api/models/VisualConsole/View.php:94
-#: ../../include/rest-api/models/VisualConsole/View.php:110
+#: ../../include/rest-api/models/VisualConsole/View.php:80
+#: ../../include/rest-api/models/VisualConsole/View.php:97
+#: ../../include/rest-api/models/VisualConsole/View.php:115
 msgid "Specific settings"
 msgstr "特定の設定"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:213
+#: ../../include/rest-api/models/VisualConsole/View.php:221
 msgid "Item type not valid ["
 msgstr "アイテムタイプが不正です ["
 
-#: ../../include/rest-api/models/VisualConsole/View.php:218
+#: ../../include/rest-api/models/VisualConsole/View.php:226
 msgid "Item type has no getFormInputs method ["
 msgstr "アイテムタイプに getFormInputs メソッドがありません ["
 
-#: ../../include/rest-api/models/VisualConsole/View.php:730
+#: ../../include/rest-api/models/VisualConsole/View.php:738
 msgid "NetworkLink from"
 msgstr "次からのネットワークリンク"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:734
-#: ../../include/rest-api/models/VisualConsole/View.php:813
+#: ../../include/rest-api/models/VisualConsole/View.php:742
+#: ../../include/rest-api/models/VisualConsole/View.php:821
 #, php-format
 msgid "Interface %s status"
 msgstr "インタフェース %s の状態"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:739
-#: ../../include/rest-api/models/VisualConsole/View.php:818
+#: ../../include/rest-api/models/VisualConsole/View.php:747
+#: ../../include/rest-api/models/VisualConsole/View.php:826
 #: ../../operation/agentes/interface_traffic_graph_win.php:78
 msgid "In"
 msgstr "入力"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:740
-#: ../../include/rest-api/models/VisualConsole/View.php:819
+#: ../../include/rest-api/models/VisualConsole/View.php:748
+#: ../../include/rest-api/models/VisualConsole/View.php:827
 #: ../../operation/agentes/interface_traffic_graph_win.php:79
 msgid "Out"
 msgstr "出力"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:809
+#: ../../include/rest-api/models/VisualConsole/View.php:817
 msgid "NetworkLink to"
 msgstr "次へのネットワークリンク"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:861
+#: ../../include/rest-api/models/VisualConsole/View.php:869
 #, php-format
 msgid "Failed to generate charts: %s"
 msgstr "グラフ生成に失敗しました: %s"
@@ -44894,263 +46051,252 @@ msgstr "パーセンタイルバブル"
 msgid "Image Vc"
 msgstr "Vc 画像"
 
-#: ../../include/functions_notifications.php:806
+#: ../../include/functions_notifications.php:808
 msgid "Subtype customization"
 msgstr "サブタイプのカスタマイズ"
 
-#: ../../include/functions_notifications.php:833
+#: ../../include/functions_notifications.php:835
 msgid "Notified users"
 msgstr "通知されたユーザ"
 
-#: ../../include/functions_notifications.php:833
+#: ../../include/functions_notifications.php:835
 msgid "Notified groups"
 msgstr "通知されたグループ"
 
-#: ../../include/functions_notifications.php:834
+#: ../../include/functions_notifications.php:836
 msgid "Add users"
 msgstr "ユーザ追加"
 
-#: ../../include/functions_notifications.php:834
+#: ../../include/functions_notifications.php:836
 msgid "Add groups"
 msgstr "グループ追加"
 
-#: ../../include/functions_notifications.php:835
+#: ../../include/functions_notifications.php:837
 msgid "Delete users"
 msgstr "ユーザ削除"
 
-#: ../../include/functions_notifications.php:835
+#: ../../include/functions_notifications.php:837
 msgid "Delete groups"
 msgstr "グループ削除"
 
-#: ../../include/functions_notifications.php:940
+#: ../../include/functions_notifications.php:947
 msgid "Remove elements"
 msgstr "要素削除"
 
-#: ../../include/functions_notifications.php:1057
+#: ../../include/functions_notifications.php:1065
 msgid "Click here to get more information"
 msgstr "詳細についてはこちらをクリックしてください"
 
-#: ../../include/functions_reports.php:638
-#: ../../include/functions_reports.php:642
-#: ../../include/functions_reports.php:647
-#: ../../include/functions_reports.php:653
-#: ../../include/functions_reports.php:660
-#: ../../include/functions_reports.php:664
-#: ../../include/functions_reports.php:668
-#: ../../include/functions_reports.php:675
-#: ../../include/functions_reports.php:681
-#: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123
-#: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1590
-msgid "Graphs"
-msgstr "グラフ"
-
-#: ../../include/functions_reports.php:639
-#: ../../include/functions_reports.php:1090
-#: ../../include/functions_reporting.php:10535
-#: ../../include/functions_reporting.php:10695
+#: ../../include/functions_reports.php:651
+#: ../../include/functions_reports.php:1102
+#: ../../include/functions_reporting.php:10729
+#: ../../include/functions_reporting.php:10889
 msgid "Simple graph"
 msgstr "単一グラフ"
 
-#: ../../include/functions_reports.php:676
+#: ../../include/functions_reports.php:688
 msgid "Automatic combined Graph"
 msgstr "自動合成グラフ"
 
-#: ../../include/functions_reports.php:682
+#: ../../include/functions_reports.php:694
 msgid "Availability graph"
 msgstr "可用性グラフ"
 
-#: ../../include/functions_reports.php:687
+#: ../../include/functions_reports.php:699
 msgid "Module Histogram graph"
 msgstr "モジュールヒストグラムグラフ"
 
-#: ../../include/functions_reports.php:693
+#: ../../include/functions_reports.php:705
 msgid "IPAM networks"
 msgstr "IPAM ネットワーク"
 
-#: ../../include/functions_reports.php:724
-#: ../../include/functions_reports.php:728
+#: ../../include/functions_reports.php:736
+#: ../../include/functions_reports.php:740
 msgid "Forecasting"
 msgstr "予測"
 
-#: ../../include/functions_reports.php:729
+#: ../../include/functions_reports.php:741
 msgid "Projection graph"
 msgstr "予想グラフ"
 
-#: ../../include/functions_reports.php:734
+#: ../../include/functions_reports.php:746
 msgid "Avg. value"
 msgstr "平均値"
 
-#: ../../include/functions_reports.php:738
+#: ../../include/functions_reports.php:750
 msgid "Max. value"
 msgstr "最大値"
 
-#: ../../include/functions_reports.php:742
+#: ../../include/functions_reports.php:754
 msgid "Min. value"
 msgstr "最小値"
 
-#: ../../include/functions_reports.php:746
+#: ../../include/functions_reports.php:758
 msgid "Monitor report"
 msgstr "モニタ項目レポート"
 
-#: ../../include/functions_reports.php:750
+#: ../../include/functions_reports.php:762
 msgid "Serialize data"
 msgstr "データの並び"
 
-#: ../../include/functions_reports.php:758
+#: ../../include/functions_reports.php:770
 msgid "Historical Data"
 msgstr "保存データ"
 
-#: ../../include/functions_reports.php:770
-#: ../../include/functions_reports.php:776
 #: ../../include/functions_reports.php:782
 #: ../../include/functions_reports.php:788
 #: ../../include/functions_reports.php:794
-#: ../../include/functions_reports.php:801
-#: ../../include/functions_reports.php:808
-#: ../../include/functions_reports.php:814
-#: ../../include/functions_reports.php:818
-#: ../../include/functions_reports.php:823
-#: ../../include/functions_reports.php:829
+#: ../../include/functions_reports.php:800
+#: ../../include/functions_reports.php:806
+#: ../../include/functions_reports.php:813
+#: ../../include/functions_reports.php:820
+#: ../../include/functions_reports.php:826
+#: ../../include/functions_reports.php:830
+#: ../../include/functions_reports.php:835
+#: ../../include/functions_reports.php:841
 msgid "Grouped"
 msgstr "グループ化"
 
-#: ../../include/functions_reports.php:802
+#: ../../include/functions_reports.php:814
 msgid "Agents/Modules status"
 msgstr "エージェント/モジュール状態"
 
-#: ../../include/functions_reports.php:819
+#: ../../include/functions_reports.php:831
 msgid "Network interfaces"
 msgstr "ネットワークインタフェース"
 
-#: ../../include/functions_reports.php:824
+#: ../../include/functions_reports.php:836
 msgid "Custom Render"
 msgstr "カスタムレンダリング"
 
-#: ../../include/functions_reports.php:834
-#: ../../include/functions_reports.php:838
+#: ../../include/functions_reports.php:846
+#: ../../include/functions_reports.php:850
 msgid "Text/HTML "
 msgstr "テキスト/HTML "
 
-#: ../../include/functions_reports.php:839
+#: ../../include/functions_reports.php:851
 msgid "Import text from URL"
 msgstr "URL からテキストをインポート"
 
-#: ../../include/functions_reports.php:844
+#: ../../include/functions_reports.php:856
 msgid "Module alert report"
 msgstr "モジュールアラートレポート"
 
-#: ../../include/functions_reports.php:848
+#: ../../include/functions_reports.php:860
 msgid "Agent alert report "
 msgstr "エージェントアラートレポート "
 
-#: ../../include/functions_reports.php:854
+#: ../../include/functions_reports.php:866
 msgid "Group alert report"
 msgstr "グループアラートレポート"
 
-#: ../../include/functions_reports.php:860
+#: ../../include/functions_reports.php:872
 msgid "Actions alert report "
 msgstr "アクションアラートレポート"
 
-#: ../../include/functions_reports.php:865
+#: ../../include/functions_reports.php:877
 msgid "Module event report"
 msgstr "モジュールイベントレポート"
 
-#: ../../include/functions_reports.php:869
+#: ../../include/functions_reports.php:881
 msgid "Agent event report"
 msgstr "エージェントイベントレポート"
 
-#: ../../include/functions_reports.php:873
+#: ../../include/functions_reports.php:885
 msgid "Group event report"
 msgstr "グループイベントレポート"
 
-#: ../../include/functions_reports.php:898
+#: ../../include/functions_reports.php:910
 msgid "Inventory changes"
 msgstr "インベントリ変更"
 
-#: ../../include/functions_reports.php:906
-#: ../../include/functions_reporting.php:6817
+#: ../../include/functions_reports.php:918
+#: ../../include/functions_reporting.php:6921
 msgid "Agent configuration"
 msgstr "エージェント設定"
 
-#: ../../include/functions_reports.php:910
-#: ../../include/functions_reporting.php:5126
+#: ../../include/functions_reports.php:922
+#: ../../include/functions_reporting.php:5230
 msgid "Group configuration"
 msgstr "グループ設定"
 
-#: ../../include/functions_reports.php:918
+#: ../../include/functions_reports.php:930
 msgid "Netflow data table"
 msgstr "Netflow データ表"
 
-#: ../../include/functions_reports.php:922
+#: ../../include/functions_reports.php:934
 msgid "Netflow summary table"
 msgstr "Netflow サマリ表"
 
-#: ../../include/functions_reports.php:946
+#: ../../include/functions_reports.php:958
 msgid "Network configuration changes"
 msgstr "ネットワーク設定変更"
 
-#: ../../include/functions_reports.php:1073
+#: ../../include/functions_reports.php:1085
 msgid "Macro"
 msgstr "マクロ"
 
-#: ../../include/functions_reports.php:1088
-#: ../../include/functions_reports.php:1217
-#: ../../include/functions_reports.php:1237
+#: ../../include/functions_reports.php:1100
+#: ../../include/functions_reports.php:1229
+#: ../../include/functions_reports.php:1249
 msgid "Sql"
 msgstr "SQL"
 
-#: ../../include/functions_reports.php:1089
+#: ../../include/functions_reports.php:1101
 msgid "Graph Sql"
 msgstr "グラフ SQL"
 
-#: ../../include/functions_html.php:595 ../../include/functions_html.php:969
+#: ../../include/functions_html.php:622 ../../include/functions_html.php:1001
 msgid "Please select an item from this list."
 msgstr "この一覧からアイテムを選択してください。"
 
-#: ../../include/functions_html.php:621 ../../include/functions_html.php:5991
+#: ../../include/functions_html.php:648 ../../include/functions_html.php:6363
 msgid "Please select..."
 msgstr "選択してください..."
 
-#: ../../include/functions_html.php:1592
+#: ../../include/functions_html.php:1622
 msgid "Type to search agents"
 msgstr "エージェント検索タイプ"
 
-#: ../../include/functions_html.php:1606
+#: ../../include/functions_html.php:1636
 msgid "Type to search modules"
 msgstr "モジュール検索タイプ"
 
-#: ../../include/functions_html.php:1674
+#: ../../include/functions_html.php:1704
 msgid "Only common modules"
 msgstr "共通モジュールのみ"
 
-#: ../../include/functions_html.php:2107
+#: ../../include/functions_html.php:2139
 msgid "weeks"
 msgstr "週"
 
-#: ../../include/functions_html.php:2278
+#: ../../include/functions_html.php:2321
 msgid "Month day"
 msgstr "日にち"
 
-#: ../../include/functions_html.php:2280
+#: ../../include/functions_html.php:2323
 msgid "Week day"
 msgstr "曜日"
 
-#: ../../include/functions_html.php:4657
+#: ../../include/functions_html.php:4800
+msgid "Select a file"
+msgstr "ファイルを選択"
+
+#: ../../include/functions_html.php:5018 ../../include/functions_html.php:5020
 msgid "Type at least two characters to search the module."
 msgstr "モジュールを検索するには、少なくとも二文字入力してください。"
 
-#: ../../include/functions_html.php:4818 ../../index.php:524 ../../index.php:807
-#: ../../index.php:881
+#: ../../include/functions_html.php:5182 ../../index.php:533 ../../index.php:817
+#: ../../index.php:891
 #, php-format
 msgid "%s cannot verify the origin of the request. Try again, please."
 msgstr "%s はリクエストを確認できません。 もう一度やり直してください。"
 
-#: ../../include/functions_html.php:5746
+#: ../../include/functions_html.php:6104
 msgid "Type at least two characters to search the user."
 msgstr "ユーザを検索するには、少なくとも 2文字入力してください。"
 
-#: ../../include/functions_html.php:6135
+#: ../../include/functions_html.php:6507
 msgid "Primary group cannot be secondary too."
 msgstr "プライマリグループはセカンダリにできません。"
 
@@ -45194,511 +46340,554 @@ msgstr ""
 "このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できま"
 "す。"
 
-#: ../../include/functions_massive_operations.php:165
-#: ../../include/class/SatelliteAgent.class.php:198
-msgid "Show agents"
-msgstr "エージェント表示"
-
-#: ../../include/functions_config.php:146
+#: ../../include/functions_config.php:150
 msgid "Failed updated: User did not login."
 msgstr "更新失敗: ユーザがログインしていません。"
 
-#: ../../include/functions_config.php:154
+#: ../../include/functions_config.php:158
 msgid "Failed updated: User is not admin."
 msgstr "更新失敗: ユーザは管理者ではありません。"
 
-#: ../../include/functions_config.php:188
+#: ../../include/functions_config.php:192
 msgid "Chromium config directory"
 msgstr "Chromium 設定ディレクトリ"
 
-#: ../../include/functions_config.php:204
+#: ../../include/functions_config.php:208
 msgid "SSL cert path"
 msgstr "SSL証明書パス"
 
-#: ../../include/functions_config.php:212
+#: ../../include/functions_config.php:216
 msgid "Use cert."
 msgstr "証明書利用"
 
-#: ../../include/functions_config.php:244
+#: ../../include/functions_config.php:248
 msgid "Integria inventory"
 msgstr "Integria インベントリ"
 
-#: ../../include/functions_config.php:248 ../../include/functions_config.php:1778
+#: ../../include/functions_config.php:252 ../../include/functions_config.php:1876
 msgid "Integria API password"
 msgstr "Integria API パスワード"
 
-#: ../../include/functions_config.php:252
+#: ../../include/functions_config.php:256
 msgid "Integria URL"
 msgstr "Integria URL"
 
-#: ../../include/functions_config.php:265
-#: ../../include/class/ExternalTools.class.php:213
+#: ../../include/functions_config.php:287
+#: ../../include/class/ExternalTools.class.php:218
 msgid "Sound for Alert fired"
 msgstr "アラート発生時のサウンド"
 
-#: ../../include/functions_config.php:269
-#: ../../include/class/ExternalTools.class.php:243
+#: ../../include/functions_config.php:291
+#: ../../include/class/ExternalTools.class.php:253
 msgid "Sound for Monitor critical"
 msgstr "障害状態時のサウンド"
 
-#: ../../include/functions_config.php:273
-#: ../../include/class/ExternalTools.class.php:273
+#: ../../include/functions_config.php:295
+#: ../../include/class/ExternalTools.class.php:288
 msgid "Sound for Monitor warning"
 msgstr "警告状態時のサウンド"
 
-#: ../../include/functions_config.php:286
+#: ../../include/functions_config.php:308
 msgid "License information"
 msgstr "ライセンス情報"
 
-#: ../../include/functions_config.php:316
+#: ../../include/functions_config.php:338
 msgid "Use custom encoding"
 msgstr "エンコードの自動判定の利用"
 
-#: ../../include/functions_config.php:336
+#: ../../include/functions_config.php:358
 msgid "Limit parameters bulk"
 msgstr "一括処理制限"
 
-#: ../../include/functions_config.php:340
+#: ../../include/functions_config.php:362
 msgid "Identification_reminder"
 msgstr "識別リマインダ"
 
-#: ../../include/functions_config.php:344
+#: ../../include/functions_config.php:366
 msgid "Include_agents"
 msgstr "エージェントのインクルード"
 
-#: ../../include/functions_config.php:348
+#: ../../include/functions_config.php:370
 msgid "alias_as_name"
 msgstr "名前としてのエイリアス"
 
-#: ../../include/functions_config.php:352
+#: ../../include/functions_config.php:374
 msgid "Console log enabled"
 msgstr "コンソールログ有効化"
 
-#: ../../include/functions_config.php:356
+#: ../../include/functions_config.php:378
 msgid "Audit log enabled"
 msgstr "監査ログ有効化"
 
-#: ../../include/functions_config.php:360
+#: ../../include/functions_config.php:382
 msgid "Module Custom ID read only"
 msgstr "モジュールカスタム ID の読み出し専用"
 
-#: ../../include/functions_config.php:424
+#: ../../include/functions_config.php:446
 msgid "Replication DB host"
 msgstr "複製 DB ホスト"
 
-#: ../../include/functions_config.php:428
+#: ../../include/functions_config.php:450
 msgid "Replication DB database"
 msgstr "複製データベース"
 
-#: ../../include/functions_config.php:432
+#: ../../include/functions_config.php:454
 msgid "Replication DB user"
 msgstr "複製 DB ユーザ"
 
-#: ../../include/functions_config.php:436
+#: ../../include/functions_config.php:458
 msgid "Replication DB password"
 msgstr "複製 DB パスワード"
 
-#: ../../include/functions_config.php:440
+#: ../../include/functions_config.php:462
 msgid "Replication DB port"
 msgstr "複製 DB ポート"
 
-#: ../../include/functions_config.php:444
+#: ../../include/functions_config.php:466
 msgid "Metaconsole agent cache"
 msgstr "メタコンソールエージェントキャッシュ"
 
-#: ../../include/functions_config.php:452
+#: ../../include/functions_config.php:474
 msgid "Enable Update Manager"
 msgstr "アップデートマネージャの有効化"
 
-#: ../../include/functions_config.php:456
+#: ../../include/functions_config.php:478
+msgid "Legacy database HA"
+msgstr "レガシーデータベース HA"
+
+#: ../../include/functions_config.php:482
 msgid "Ipam Ocuppied Manager Critical"
 msgstr "IPAM 障害占有管理"
 
-#: ../../include/functions_config.php:460
+#: ../../include/functions_config.php:486
 msgid "Ipam Ocuppied Manager Warning"
 msgstr "IPAM 警告占有管理"
 
-#: ../../include/functions_config.php:629
+#: ../../include/functions_config.php:583
+msgid "Automatically timezone visual"
+msgstr "自動タイムゾーン表示"
+
+#: ../../include/functions_config.php:655
 msgid "Ldap search timeout"
 msgstr "LDAP 検索タイムアウト"
 
-#: ../../include/functions_config.php:645
+#: ../../include/functions_config.php:671
 msgid "Secontary start TLS"
 msgstr "セカンダリ TLS の開始"
 
-#: ../../include/functions_config.php:761
+#: ../../include/functions_config.php:787
 msgid "Saml profile parameters"
 msgstr "SAML プロファイルパラメータ"
 
-#: ../../include/functions_config.php:777
+#: ../../include/functions_config.php:803
 msgid "2FA all users"
 msgstr "全ユーザの二段階認証"
 
-#: ../../include/functions_config.php:784
+#: ../../include/functions_config.php:810
 msgid "Session timeout forced to 90 minutes"
 msgstr "セッションタイムアウトを 90分に強制"
 
-#: ../../include/functions_config.php:804
+#: ../../include/functions_config.php:830
 msgid "Event purge"
 msgstr "イベント削除"
 
-#: ../../include/functions_config.php:840
+#: ../../include/functions_config.php:866
 msgid "Max. days before autodisable deletion"
 msgstr "自動無効化エージェントの保持日数"
 
-#: ../../include/functions_config.php:844
+#: ../../include/functions_config.php:870
 msgid "Item limit for realtime reports)"
 msgstr "リアルタイムレポートのアイテム制限"
 
-#: ../../include/functions_config.php:876
+#: ../../include/functions_config.php:906
 msgid "Big Operatiopn Step to purge old data"
 msgstr "古いデータ削除のための大きな操作ステップ"
 
-#: ../../include/functions_config.php:910
+#: ../../include/functions_config.php:940
 msgid "Max execution event response"
 msgstr "最大実行イベント応答"
 
-#: ../../include/functions_config.php:918
+#: ../../include/functions_config.php:948
 msgid "SNMP walk binary path"
 msgstr "snmpwalk バイナリパス"
 
-#: ../../include/functions_config.php:922
+#: ../../include/functions_config.php:952
 msgid "SNMP walk binary path (fallback for v1)"
 msgstr "snmpwalk バイナリパス (v1 フォールバック)"
 
-#: ../../include/functions_config.php:926
+#: ../../include/functions_config.php:956
 msgid "Default WMI Binary"
 msgstr "デフォルト WMI バイナリ"
 
-#: ../../include/functions_config.php:936
+#: ../../include/functions_config.php:966
 msgid "SNMP Interface Agent Wizard"
 msgstr "SNMP インタフェースエージェントウィザード"
 
-#: ../../include/functions_config.php:1020
+#: ../../include/functions_config.php:977
+msgid "Notification Autoclose time"
+msgstr "通知の自動クローズ時間"
+
+#: ../../include/functions_config.php:997
+msgid "Graph color #4"
+msgstr "グラフの色 #4"
+
+#: ../../include/functions_config.php:1001
+msgid "Graph color #5"
+msgstr "グラフの色 #5"
+
+#: ../../include/functions_config.php:1005
+msgid "Graph color #6"
+msgstr "グラフの色 #6"
+
+#: ../../include/functions_config.php:1009
+msgid "Graph color #7"
+msgstr "グラフの色 #7"
+
+#: ../../include/functions_config.php:1013
+msgid "Graph color #8"
+msgstr "グラフの色 #8"
+
+#: ../../include/functions_config.php:1017
+msgid "Graph color #9"
+msgstr "グラフの色 #9"
+
+#: ../../include/functions_config.php:1021
+msgid "Graph color #10"
+msgstr "グラフの色 #10"
+
+#: ../../include/functions_config.php:1054
 msgid "Show QR code header"
 msgstr "QR コードヘッダー表示"
 
-#: ../../include/functions_config.php:1048
+#: ../../include/functions_config.php:1082
 msgid "Custom logo white background"
 msgstr "白背景カスタムロゴ"
 
-#: ../../include/functions_config.php:1076
+#: ../../include/functions_config.php:1110
 msgid "Custom title header"
 msgstr "カスタムタイトルヘッダ"
 
-#: ../../include/functions_config.php:1080
+#: ../../include/functions_config.php:1114
 msgid "Custom subtitle header"
 msgstr "カスタムサブタイトルヘッダ"
 
-#: ../../include/functions_config.php:1104
-#: ../../include/functions_config.php:1144
+#: ../../include/functions_config.php:1134
+msgid "Login background"
+msgstr "ログイン背景"
+
+#: ../../include/functions_config.php:1138
+#: ../../include/functions_config.php:1186
 msgid "Custom Docs url"
 msgstr "カスタムドキュメントURL"
 
-#: ../../include/functions_config.php:1108
-#: ../../include/functions_config.php:1148
+#: ../../include/functions_config.php:1142
+#: ../../include/functions_config.php:1190
 msgid "Custom support url"
 msgstr "カスタムサポートURL"
 
-#: ../../include/functions_config.php:1120
+#: ../../include/functions_config.php:1162
 msgid "Custom logo metaconsole (white background)"
 msgstr "メタコンソールカスタムロゴ(白背景)"
 
-#: ../../include/functions_config.php:1124
+#: ../../include/functions_config.php:1166
 msgid "Custom logo login metaconsole"
 msgstr "メタコンソールログインカスタムロゴ"
 
-#: ../../include/functions_config.php:1128
+#: ../../include/functions_config.php:1170
 msgid "Custom splash login metaconsole"
 msgstr "カスタムスプラッシュログイン メタコンソール"
 
-#: ../../include/functions_config.php:1132
+#: ../../include/functions_config.php:1174
 msgid "Custom title1 login metaconsole"
 msgstr "カスタムタイトル1 メタコンソールログイン"
 
-#: ../../include/functions_config.php:1136
+#: ../../include/functions_config.php:1178
 msgid "Custom title2 login metaconsole"
 msgstr "カスタムタイトル2 メタコンソールログイン"
 
-#: ../../include/functions_config.php:1140
+#: ../../include/functions_config.php:1182
 msgid "Login background metaconsole"
 msgstr "メタコンソールログイン背景"
 
-#: ../../include/functions_config.php:1164
+#: ../../include/functions_config.php:1206
 msgid "Default line favourite_view for the Visual Console"
 msgstr "ビジュアルコンソールのデフォルトお気に入り"
 
-#: ../../include/functions_config.php:1168
+#: ../../include/functions_config.php:1210
 msgid "Default line menu items for the Visual Console"
 msgstr "ビジュアルコンソールのデフォルトメニューアイテム"
 
-#: ../../include/functions_config.php:1180
+#: ../../include/functions_config.php:1222
 msgid "Default line menu items for the Services"
 msgstr "サービス用のデフォルトラインメニューアイテム"
 
-#: ../../include/functions_config.php:1212
+#: ../../include/functions_config.php:1254
 msgid "Show units in values report"
 msgstr "値のレポートに単位を表示"
 
-#: ../../include/functions_config.php:1220
+#: ../../include/functions_config.php:1262
 msgid "Autohidden menu"
 msgstr "メニューを自動的に隠す"
 
-#: ../../include/functions_config.php:1224
-msgid "visual_animation"
+#: ../../include/functions_config.php:1266
+msgid "Visual animation"
 msgstr "ビジュアルアニメーション"
 
-#: ../../include/functions_config.php:1232
+#: ../../include/functions_config.php:1282
 msgid "Fixed graph"
 msgstr "グラフの固定"
 
-#: ../../include/functions_config.php:1240
+#: ../../include/functions_config.php:1290
 msgid "Paginate module"
 msgstr "モジュール画面分割"
 
-#: ../../include/functions_config.php:1244
-#: ../../include/class/ExternalTools.class.php:303
+#: ../../include/functions_config.php:1294
+#: ../../include/class/ExternalTools.class.php:323
 msgid "Custom graphviz directory"
 msgstr "カスタム graphviz ディレクトリ"
 
-#: ../../include/functions_config.php:1252
+#: ../../include/functions_config.php:1302
 msgid "Shortened module graph data"
 msgstr "短縮モジュールグラフデータ"
 
-#: ../../include/functions_config.php:1260
+#: ../../include/functions_config.php:1310
 msgid "Show empty groups in group view."
 msgstr "グループ表示に空のグループを表示する"
 
-#: ../../include/functions_config.php:1268
+#: ../../include/functions_config.php:1318
 msgid "Default type of module charts."
 msgstr "モジュールグラフのデフォルトタイプ"
 
-#: ../../include/functions_config.php:1272
+#: ../../include/functions_config.php:1322
 msgid "Default Number of elements in Custom Graph."
 msgstr "カスタムグラフのデフォルト要素数"
 
-#: ../../include/functions_config.php:1276
+#: ../../include/functions_config.php:1326
 msgid "Default type of interface charts."
 msgstr "インタフェースグラフのデフォルトタイプ"
 
-#: ../../include/functions_config.php:1292
+#: ../../include/functions_config.php:1342
 msgid "Display lateral menus with left click"
 msgstr "クリックでサイドメニューを表示"
 
-#: ../../include/functions_config.php:1301
+#: ../../include/functions_config.php:1351
 msgid "Service item padding size"
 msgstr "サービス要素の間隔"
 
-#: ../../include/functions_config.php:1306
+#: ../../include/functions_config.php:1356
 msgid "Default percentil"
 msgstr "デフォルトのパーセンテージ"
 
-#: ../../include/functions_config.php:1310
+#: ../../include/functions_config.php:1360
 msgid "Default full scale (TIP)"
 msgstr "デフォルトフルスケール(TIP)"
 
-#: ../../include/functions_config.php:1314
+#: ../../include/functions_config.php:1364
 msgid "Default soft graphs"
 msgstr "デフォルトグラフソフト"
 
-#: ../../include/functions_config.php:1318
+#: ../../include/functions_config.php:1368
 msgid "Default zoom graphs"
 msgstr "デフォルトグラフ拡大率"
 
-#: ../../include/functions_config.php:1327
+#: ../../include/functions_config.php:1377
 msgid "Default height of the chart image"
 msgstr "グラフ画像のデフォルトの高さ"
 
-#: ../../include/functions_config.php:1349
+#: ../../include/functions_config.php:1399
 msgid "Add the custom post process"
 msgstr "カスタム保存倍率を追加"
 
-#: ../../include/functions_config.php:1357
+#: ../../include/functions_config.php:1407
 msgid "Delete the custom post process"
 msgstr "カスタム保存倍率を削除"
 
-#: ../../include/functions_config.php:1411
+#: ../../include/functions_config.php:1461
 msgid "Add custom module unit"
 msgstr "カスタムモジュール単位追加"
 
-#: ../../include/functions_config.php:1417
+#: ../../include/functions_config.php:1467
 msgid "Delete custom module unit"
 msgstr "カスタムモジュール単位削除"
 
-#: ../../include/functions_config.php:1474
+#: ../../include/functions_config.php:1524
 msgid "Thousand separator"
 msgstr "桁区切り記号"
 
-#: ../../include/functions_config.php:1519
+#: ../../include/functions_config.php:1531
+msgid "Name storage path"
+msgstr "ストレージパス名"
+
+#: ../../include/functions_config.php:1574
+msgid "Sflow name dir"
+msgstr "Sflow ディレクトリ名"
+
+#: ../../include/functions_config.php:1617
 msgid "IP ElasticSearch server"
 msgstr "ElasticSearch サーバ IP"
 
-#: ../../include/functions_config.php:1523
+#: ../../include/functions_config.php:1621
 msgid "Port ElasticSearch server"
 msgstr "ElasticSearch サーバポート番号"
 
-#: ../../include/functions_config.php:1570
+#: ../../include/functions_config.php:1668
 msgid "Enable history trap"
 msgstr "ヒストリトラップの有効化"
 
-#: ../../include/functions_config.php:1590
+#: ../../include/functions_config.php:1688
 msgid "Enable history database advanced"
 msgstr "ヒストリデータベース詳細の有効化"
 
-#: ../../include/functions_config.php:1599
+#: ../../include/functions_config.php:1697
 msgid "String Days"
 msgstr "文字列日数"
 
-#: ../../include/functions_config.php:1615
+#: ../../include/functions_config.php:1713
 msgid "Trap Days"
 msgstr "トラップ日数"
 
-#: ../../include/functions_config.php:1623
+#: ../../include/functions_config.php:1721
 msgid "Trap history purge"
 msgstr "ヒストリトラップ削除"
 
-#: ../../include/functions_config.php:1695
+#: ../../include/functions_config.php:1793
 msgid "Historical database traps purge"
 msgstr "ヒストリデータベーストラップ削除"
 
-#: ../../include/functions_config.php:1718
+#: ../../include/functions_config.php:1816
 msgid "eHorus user login"
 msgstr "eHorus ユーザログイン"
 
-#: ../../include/functions_config.php:1730
+#: ../../include/functions_config.php:1828
 msgid "eHorus API hostname"
 msgstr "eHorus API ホスト名"
 
-#: ../../include/functions_config.php:1734
+#: ../../include/functions_config.php:1832
 msgid "eHorus API port"
 msgstr "eHorus API ポート"
 
-#: ../../include/functions_config.php:1738
+#: ../../include/functions_config.php:1836
 msgid "eHorus request timeout"
 msgstr "eHorus リクエストタイムアウト"
 
-#: ../../include/functions_config.php:1742
+#: ../../include/functions_config.php:1840
 msgid "eHorus id custom field"
 msgstr "eHorus id カスタムフィールド"
 
-#: ../../include/functions_config.php:1748
+#: ../../include/functions_config.php:1846
 msgid "Integria user login"
 msgstr "Integria ユーザログイン"
 
-#: ../../include/functions_config.php:1756
+#: ../../include/functions_config.php:1854
 msgid "Integria user"
 msgstr "Integria ユーザ"
 
-#: ../../include/functions_config.php:1760
+#: ../../include/functions_config.php:1858
 msgid "Integria password"
 msgstr "Integria パスワード"
 
-#: ../../include/functions_config.php:1774
+#: ../../include/functions_config.php:1872
 msgid "integria API hostname"
 msgstr "Integria API ホスト名"
 
-#: ../../include/functions_config.php:1782
+#: ../../include/functions_config.php:1880
 msgid "Integria request timeout"
 msgstr "Integria 要求タイムアウト"
 
-#: ../../include/functions_config.php:1786
+#: ../../include/functions_config.php:1884
 msgid "Integria default group"
 msgstr "Integria デフォルトグループ"
 
-#: ../../include/functions_config.php:1790
+#: ../../include/functions_config.php:1888
 msgid "Integria custom response default group"
 msgstr "Integria カスタム応答デフォルトグループ"
 
-#: ../../include/functions_config.php:1794
+#: ../../include/functions_config.php:1892
 msgid "Integria default priority"
 msgstr "Integria デフォルト優先順位"
 
-#: ../../include/functions_config.php:1798
+#: ../../include/functions_config.php:1896
 msgid "Integria custom response default priority"
 msgstr "Integria カスタム応答デフォルト優先順位"
 
-#: ../../include/functions_config.php:1802
+#: ../../include/functions_config.php:1900
 msgid "Integria default creator"
 msgstr "Integria デフォルト作成者"
 
-#: ../../include/functions_config.php:1806
+#: ../../include/functions_config.php:1904
 msgid "Integria default owner"
 msgstr "Integria デフォルト所有者"
 
-#: ../../include/functions_config.php:1810
+#: ../../include/functions_config.php:1908
 msgid "Integria custom response default owner"
 msgstr "Integria カスタム応答デフォルト所有者"
 
-#: ../../include/functions_config.php:1814
+#: ../../include/functions_config.php:1912
 msgid "Integria default ticket type"
 msgstr "Integria デフォルトチケットタイプ"
 
-#: ../../include/functions_config.php:1818
+#: ../../include/functions_config.php:1916
 msgid "Integria custom response default ticket type"
 msgstr "Integria カスタム応答デフォルトチケットタイプ"
 
-#: ../../include/functions_config.php:1822
+#: ../../include/functions_config.php:1920
 msgid "Integria default ticket status"
 msgstr "Integria デフォルトチケット状態"
 
-#: ../../include/functions_config.php:1826
+#: ../../include/functions_config.php:1924
 msgid "Integria custom response default ticket status"
 msgstr "Integria カスタム応答デフォルトチケット状態"
 
-#: ../../include/functions_config.php:1830
+#: ../../include/functions_config.php:1928
 msgid "Integria default ticket title"
 msgstr "Integria デフォルトチケットタイトル"
 
-#: ../../include/functions_config.php:1834
+#: ../../include/functions_config.php:1932
 msgid "Integria custom response default ticket title"
 msgstr "Integria カスタム応答デフォルトチケットタイトル"
 
-#: ../../include/functions_config.php:1838
+#: ../../include/functions_config.php:1936
 msgid "Integria default ticket content"
 msgstr "Integria デフォルトチケット内容"
 
-#: ../../include/functions_config.php:1842
+#: ../../include/functions_config.php:1940
 msgid "Integria custom response default ticket content"
 msgstr "Integria カスタム応答デフォルトチケット内容"
 
-#: ../../include/functions_config.php:1848
+#: ../../include/functions_config.php:1946
 msgid "Module Library User"
 msgstr "モジュールライブラリユーザ"
 
-#: ../../include/functions_config.php:1852
+#: ../../include/functions_config.php:1950
 msgid "Module Library Password"
 msgstr "モジュールライブラリパスワード"
 
-#: ../../include/functions_config.php:1858
+#: ../../include/functions_config.php:1956
 msgid "WebSocket bind address"
 msgstr "WebSocket 待受アドレス"
 
-#: ../../include/functions_config.php:1862
+#: ../../include/functions_config.php:1960
 msgid "WebSocket port"
 msgstr "WebSocket ポート"
 
-#: ../../include/functions_config.php:1885
+#: ../../include/functions_config.php:1983
 #, php-format
 msgid "Update failed. The next values could not be updated: 
-%s" msgstr "更新失敗: 次の値は更新できません:
-%s" -#: ../../include/functions_config.php:2466 -#: ../../operation/agentes/networkmap.dinamic.php:226 +#: ../../include/functions_config.php:2662 +#: ../../operation/agentes/networkmap.dinamic.php:220 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2474 +#: ../../include/functions_config.php:2670 msgid "PandoraFMS Metaconsole" msgstr "Pandora FMS メタコンソール" -#: ../../include/functions_config.php:2478 +#: ../../include/functions_config.php:2674 msgid "Centralized operation console" msgstr "中央操作コンソール" -#: ../../include/functions_config.php:2482 -msgid "PANDORA FMS" -msgstr "PANDORA FMS" - #: ../../include/get_file.php:57 msgid "Security error. Please contact the administrator." msgstr "セキュリティエラー。管理者に連絡してください。" @@ -45723,133 +46912,133 @@ msgstr "平均パケット/秒" msgid "Average bytes per packet" msgstr "平均バイト/パケット" -#: ../../include/functions_netflow.php:1182 +#: ../../include/functions_netflow.php:1201 msgid "Area graph" msgstr "塗り潰しグラフ" -#: ../../include/functions_netflow.php:1184 -#: ../../operation/agentes/exportdata.php:378 +#: ../../include/functions_netflow.php:1203 +#: ../../operation/agentes/exportdata.php:308 msgid "Data table" msgstr "データの表示" -#: ../../include/functions_netflow.php:1185 +#: ../../include/functions_netflow.php:1204 msgid "Top-N connections" msgstr "トップ N 接続" -#: ../../include/functions_netflow.php:1186 +#: ../../include/functions_netflow.php:1205 msgid "Circular mesh" msgstr "円形メッシュ" -#: ../../include/functions_netflow.php:1187 -#: ../../include/functions_netflow.php:1452 +#: ../../include/functions_netflow.php:1206 +#: ../../include/functions_netflow.php:1471 msgid "Host detailed traffic" msgstr "ホストの詳細トラフィック" -#: ../../include/functions_netflow.php:1439 +#: ../../include/functions_netflow.php:1458 msgid "Sent" msgstr "送信" -#: ../../include/functions_netflow.php:1447 +#: ../../include/functions_netflow.php:1466 msgid "Received" msgstr "受信" -#: ../../include/functions_netflow.php:1628 +#: ../../include/functions_netflow.php:1647 msgid "Dst port" msgstr "宛先ポート" -#: ../../include/functions_netflow.php:1631 +#: ../../include/functions_netflow.php:1650 msgid "Dst IP" msgstr "宛先 IP" -#: ../../include/functions_netflow.php:1634 +#: ../../include/functions_netflow.php:1653 msgid "Src IP" msgstr "送信元 IP" -#: ../../include/functions_netflow.php:1637 +#: ../../include/functions_netflow.php:1656 msgid "Src port" msgstr "送信元ポート" -#: ../../include/functions_netflow.php:1823 +#: ../../include/functions_netflow.php:1842 #, php-format msgid "nfdump binary (%s) not found!" msgstr "nfdump バイナリ (%s) が見つかりません!" -#: ../../include/functions_netflow.php:1830 +#: ../../include/functions_netflow.php:1849 msgid "Make sure nfdump version 1.6.8 or newer is installed!" msgstr "" "nfdump のバージョン 1.6.8 以上がインストールされていることを確認してください!" -#: ../../include/functions_netflow.php:1847 +#: ../../include/functions_netflow.php:1866 msgid "High" msgstr "高い" -#: ../../include/functions_netflow.php:1848 +#: ../../include/functions_netflow.php:1867 msgid "Ultra High" msgstr "とても高い" -#: ../../include/functions_netflow.php:1881 +#: ../../include/functions_netflow.php:1900 #, php-format msgid "Agregate by %s" msgstr "%s 集計" -#: ../../include/functions_netflow.php:1889 +#: ../../include/functions_netflow.php:1908 #, php-format msgid "Resolution %s" msgstr "解像度 %s" -#: ../../include/class/Tree.class.php:775 ../../include/class/Tree.class.php:777 +#: ../../include/class/Tree.class.php:790 msgid "Module alerts" msgstr "モジュールアラート" -#: ../../include/class/ConfigPEN.class.php:428 -#: ../../include/class/ConfigPEN.class.php:597 -#: ../../include/class/ModuleTemplates.class.php:1075 +#: ../../include/class/ConfigPEN.class.php:430 +#: ../../include/class/ConfigPEN.class.php:599 +#: ../../include/class/ModuleTemplates.class.php:1054 msgid "PEN" msgstr "PEN" -#: ../../include/class/ConfigPEN.class.php:435 -#: ../../include/class/ConfigPEN.class.php:598 +#: ../../include/class/ConfigPEN.class.php:437 +#: ../../include/class/ConfigPEN.class.php:600 msgid "Manufacturer" msgstr "製造元" -#: ../../include/class/ConfigPEN.class.php:483 +#: ../../include/class/ConfigPEN.class.php:485 msgid "PEN is required" msgstr "PEN が必要です" -#: ../../include/class/ConfigPEN.class.php:509 +#: ../../include/class/ConfigPEN.class.php:511 msgid "PEN is required." msgstr "PEN が必要です。" -#: ../../include/class/ConfigPEN.class.php:513 +#: ../../include/class/ConfigPEN.class.php:515 msgid "Manufacturer is required" msgstr "製造元が必要です" -#: ../../include/class/ConfigPEN.class.php:530 +#: ../../include/class/ConfigPEN.class.php:532 msgid "This PEN definition does not exist" msgstr "この PEN 定義がありませえん" -#: ../../include/class/ConfigPEN.class.php:544 +#: ../../include/class/ConfigPEN.class.php:546 msgid "created" msgstr "作成しました" -#: ../../include/class/ConfigPEN.class.php:550 +#: ../../include/class/ConfigPEN.class.php:552 msgid "This PEN definition already exists" msgstr "この PEN 定義はすでに存在します" -#: ../../include/class/ConfigPEN.class.php:571 +#: ../../include/class/ConfigPEN.class.php:573 #, php-format msgid "Succesfully %s" msgstr "成功 %s" -#: ../../include/class/ConfigPEN.class.php:651 +#: ../../include/class/ConfigPEN.class.php:654 msgid "Register manufacturer" msgstr "製造元登録" -#: ../../include/class/ConfigPEN.class.php:667 +#: ../../include/class/ConfigPEN.class.php:673 msgid "Are you sure you want to delete this PEN?" msgstr "この PEN を削除してもよろしいですか?" -#: ../../include/class/ConfigPEN.class.php:694 +#: ../../include/class/ConfigPEN.class.php:700 msgid "Register new manufacturer" msgstr "新たな製造元を登録" @@ -45865,70 +47054,135 @@ msgstr "削除のみ" msgid "Only added" msgstr "追加のみ" -#: ../../include/class/SatelliteAgent.class.php:255 +#: ../../include/class/SatelliteAgent.class.php:245 msgid "Add host" msgstr "ホストを追加" -#: ../../include/class/SatelliteAgent.class.php:511 +#: ../../include/class/SatelliteAgent.class.php:501 msgid "Agent address" msgstr "エージェントアドレス" -#: ../../include/class/SatelliteAgent.class.php:555 +#: ../../include/class/SatelliteAgent.class.php:547 msgid "Error saving agent. The address already exists" msgstr "エージェント保存エラー。アドレスがすでに使われています。" -#: ../../include/class/SatelliteAgent.class.php:560 +#: ../../include/class/SatelliteAgent.class.php:552 msgid "Error saving agent. The Name already exists" msgstr "エージェント保存エラー。名前がすでに使われています。" -#: ../../include/class/SatelliteAgent.class.php:565 +#: ../../include/class/SatelliteAgent.class.php:557 msgid "Error saving agent" msgstr "エージェント保存エラー" -#: ../../include/class/SatelliteAgent.class.php:567 -#: ../../include/class/SatelliteAgent.class.php:609 -#: ../../include/class/SatelliteAgent.class.php:610 -#: ../../include/class/SatelliteAgent.class.php:654 -#: ../../include/class/SatelliteAgent.class.php:655 +#: ../../include/class/SatelliteAgent.class.php:559 +#: ../../include/class/SatelliteAgent.class.php:601 +#: ../../include/class/SatelliteAgent.class.php:602 +#: ../../include/class/SatelliteAgent.class.php:646 +#: ../../include/class/SatelliteAgent.class.php:647 msgid "Host " msgstr "ホスト" -#: ../../include/class/SatelliteAgent.class.php:602 +#: ../../include/class/SatelliteAgent.class.php:594 msgid "Error delete agent" msgstr "エージェント削除エラー" -#: ../../include/class/SatelliteAgent.class.php:602 +#: ../../include/class/SatelliteAgent.class.php:594 msgid "Error add agent" msgstr "エージェント追加エラー" -#: ../../include/class/SatelliteAgent.class.php:646 +#: ../../include/class/SatelliteAgent.class.php:638 msgid "Error disable agent" msgstr "エージェント無効化エラー" -#: ../../include/class/SatelliteAgent.class.php:646 +#: ../../include/class/SatelliteAgent.class.php:638 msgid "Error enable agent" msgstr "エージェント有効化エラー" -#: ../../include/class/SatelliteAgent.class.php:1128 +#: ../../include/class/SatelliteAgent.class.php:1107 msgid "Add agent to satellite" msgstr "サテライトにエージェントを追加" -#: ../../include/class/SatelliteAgent.class.php:1278 +#: ../../include/class/SatelliteAgent.class.php:1257 msgid "Disable / Enable Agents" msgstr "エージェント無効化 / 有効化" -#: ../../include/class/SatelliteAgent.class.php:1278 +#: ../../include/class/SatelliteAgent.class.php:1257 msgid "Delete / create Agents" msgstr "エージェント削除 / 作成" -#: ../../include/class/SatelliteAgent.class.php:1360 +#: ../../include/class/SatelliteAgent.class.php:1339 msgid "These agents could not be deleted. They must first be enabled" msgstr "これらのエージェントは削除できません。最初に有効化する必要があります。" -#: ../../include/class/SatelliteAgent.class.php:1385 +#: ../../include/class/SatelliteAgent.class.php:1364 msgid "These agents could not be disabled. They must first be created" msgstr "これらのエージェントは削除できません。最初に作成する必要があります。" +#: ../../include/class/EventSound.class.php:102 +msgid "Name already exist" +msgstr "名前が既に存在します" + +#: ../../include/class/EventSound.class.php:124 +msgid "Sound already are exists." +msgstr "音が既に存在します。" + +#: ../../include/class/EventSound.class.php:136 +msgid "Fail uploading the sound" +msgstr "音のアップロードに失敗しました" + +#: ../../include/class/EventSound.class.php:146 +msgid "Sound already are exists" +msgstr "音が既に存在します。" + +#: ../../include/class/EventSound.class.php:161 +msgid "Error on update status" +msgstr "状態の更新エラー" + +#: ../../include/class/EventSound.class.php:166 +msgid "Sound not exist" +msgstr "音が存在しません" + +#: ../../include/class/EventSound.class.php:188 +#: ../../operation/events/sound_events.php:261 +msgid "Sounds" +msgstr "サウンド" + +#: ../../include/class/EventSound.class.php:209 +msgid "Add new sound" +msgstr "新たな音を追加" + +#: ../../include/class/EventSound.class.php:212 +msgid "Accoustic console sound list" +msgstr "アコースティックコンソールの音一覧" + +#: ../../include/class/EventSound.class.php:253 +msgid "Name:" +msgstr "名前:" + +#: ../../include/class/EventSound.class.php:267 +msgid "WAV Sound" +msgstr "WAV サウンド" + +#: ../../include/class/EventSound.class.php:307 +msgid "Sound" +msgstr "音" + +#: ../../include/class/EventSound.class.php:337 +msgid "Search filter by Name or Sound fields content" +msgstr "名前または音フィールドコンテンツでの検索フィルタ" + +#: ../../include/class/EventSound.class.php:433 +msgid "Disable sound" +msgstr "音の無効化" + +#: ../../include/class/EventSound.class.php:437 +msgid "Enable sound" +msgstr "音の有効化" + +#: ../../include/class/EventSound.class.php:496 +msgid "invalid extension" +msgstr "無効な拡張子" + #: ../../include/class/HelpFeedBack.class.php:105 msgid "Browser not compatible." msgstr "ブラウザに互換性がありません。" @@ -45942,7 +47196,7 @@ msgid "Something is wrong" msgstr "何かおかしいです" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1902 +#: ../../include/class/Diagnostics.class.php:1922 msgid "What happened?" msgstr "何が発生しましたか?" @@ -45955,8 +47209,8 @@ msgid "Submit" msgstr "実行" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1975 ../../general/header.php:356 -#: ../../general/header.php:358 +#: ../../include/class/Diagnostics.class.php:1995 ../../general/header.php:364 +#: ../../general/header.php:366 msgid "Feedback" msgstr "フィードバック" @@ -45985,397 +47239,401 @@ msgstr "レポートを Artica へ送信しました。" msgid "Thank you!" msgstr "ありがとうございます!" -#: ../../include/class/Diagnostics.class.php:158 +#: ../../include/class/Diagnostics.class.php:168 #, php-format msgid "%s Diagnostic tool" msgstr "%s 診断ツール" -#: ../../include/class/Diagnostics.class.php:223 +#: ../../include/class/Diagnostics.class.php:231 #, php-format msgid "Info status %s" msgstr "情報ステータス %s" -#: ../../include/class/Diagnostics.class.php:227 +#: ../../include/class/Diagnostics.class.php:235 msgid "PHP setup" msgstr "PHP 設定" -#: ../../include/class/Diagnostics.class.php:247 +#: ../../include/class/Diagnostics.class.php:255 msgid "MySQL Performance metrics" msgstr "MySQLパフォーマンスメトリック" -#: ../../include/class/Diagnostics.class.php:258 +#: ../../include/class/Diagnostics.class.php:266 #, php-format msgid "%s logs dates" msgstr "%s ログ状態" -#: ../../include/class/Diagnostics.class.php:262 +#: ../../include/class/Diagnostics.class.php:270 #, php-format msgid "%s Licence Information" msgstr "%s ライセンス情報" -#: ../../include/class/Diagnostics.class.php:266 -#: ../../include/class/Diagnostics.class.php:1254 +#: ../../include/class/Diagnostics.class.php:274 +#: ../../include/class/Diagnostics.class.php:1274 msgid "Status of the attachment folder" msgstr "添付フォルダの状態" -#: ../../include/class/Diagnostics.class.php:270 +#: ../../include/class/Diagnostics.class.php:278 msgid "Information from the tagente_datos table" msgstr "tagente_datos テーブルからの情報" -#: ../../include/class/Diagnostics.class.php:274 +#: ../../include/class/Diagnostics.class.php:282 #, php-format msgid "%s server threads" msgstr "%s サーバスレッド" -#: ../../include/class/Diagnostics.class.php:278 +#: ../../include/class/Diagnostics.class.php:286 msgid "SQL show engine innodb status" msgstr "innodb エンジンの状態を表示します" -#: ../../include/class/Diagnostics.class.php:326 +#: ../../include/class/Diagnostics.class.php:290 +msgid "Date system" +msgstr "日付システム" + +#: ../../include/class/Diagnostics.class.php:338 msgid "Graph of the Agents Unknown module." msgstr "エージェント不明モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:333 +#: ../../include/class/Diagnostics.class.php:345 msgid "Graph of the Database Maintenance module." msgstr "データベースメンテナンスモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:340 +#: ../../include/class/Diagnostics.class.php:352 msgid "Graph of the Free Disk Spool Dir module." msgstr "スプールディレクトリディスクの空き容量モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:346 +#: ../../include/class/Diagnostics.class.php:358 msgid "Graph of the Free RAM module." msgstr "メモリ空き容量モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:352 +#: ../../include/class/Diagnostics.class.php:364 msgid "Graph of the Queued Modules module." msgstr "モジュールキューのモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:358 +#: ../../include/class/Diagnostics.class.php:370 msgid "Graph of the Status module." msgstr "状態モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:364 +#: ../../include/class/Diagnostics.class.php:376 msgid "Graph of the System Load AVG module." msgstr "システムロードアベレージモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:371 +#: ../../include/class/Diagnostics.class.php:383 msgid "Graph of the Execution Time module." msgstr "実行時間モジュールグラフ" -#: ../../include/class/Diagnostics.class.php:380 +#: ../../include/class/Diagnostics.class.php:392 msgid "Graphs modules that represent the self-monitoring system" msgstr "自己監視システムモジュールグラフ" -#: ../../include/class/Diagnostics.class.php:437 +#: ../../include/class/Diagnostics.class.php:449 #, php-format msgid "%s Build" msgstr "%s ビルド" -#: ../../include/class/Diagnostics.class.php:441 +#: ../../include/class/Diagnostics.class.php:453 #, php-format msgid "%s Version" msgstr "%s バージョン" -#: ../../include/class/Diagnostics.class.php:445 +#: ../../include/class/Diagnostics.class.php:457 msgid "Minor Release" msgstr "マイナーリリース" -#: ../../include/class/Diagnostics.class.php:449 +#: ../../include/class/Diagnostics.class.php:461 msgid "Homedir" msgstr "ホームディレクトリ" -#: ../../include/class/Diagnostics.class.php:453 +#: ../../include/class/Diagnostics.class.php:465 msgid "HomeUrl" msgstr "ホームURL" -#: ../../include/class/Diagnostics.class.php:457 +#: ../../include/class/Diagnostics.class.php:469 msgid "Enterprise installed" msgstr "Enterprise インストール済" -#: ../../include/class/Diagnostics.class.php:458 +#: ../../include/class/Diagnostics.class.php:470 msgid "true" msgstr "はい" -#: ../../include/class/Diagnostics.class.php:458 +#: ../../include/class/Diagnostics.class.php:470 msgid "false" msgstr "いいえ" -#: ../../include/class/Diagnostics.class.php:461 +#: ../../include/class/Diagnostics.class.php:473 msgid "Update Key" msgstr "アップデートキー" -#: ../../include/class/Diagnostics.class.php:465 +#: ../../include/class/Diagnostics.class.php:477 msgid "Updating code path" msgstr "アップデートコードパス" -#: ../../include/class/Diagnostics.class.php:469 +#: ../../include/class/Diagnostics.class.php:481 msgid "Current Update #" msgstr "現在のアップデート #" -#: ../../include/class/Diagnostics.class.php:493 +#: ../../include/class/Diagnostics.class.php:505 msgid "PHP Version" msgstr "PHPバージョン" -#: ../../include/class/Diagnostics.class.php:497 +#: ../../include/class/Diagnostics.class.php:509 msgid "PHP Max execution time" msgstr "PHP 最大実行時間" -#: ../../include/class/Diagnostics.class.php:501 +#: ../../include/class/Diagnostics.class.php:513 msgid "PHP Max input time" msgstr "PHP 最大入力時間" -#: ../../include/class/Diagnostics.class.php:505 +#: ../../include/class/Diagnostics.class.php:517 msgid "PHP Memory limit" msgstr "PHP メモリ制限" -#: ../../include/class/Diagnostics.class.php:509 +#: ../../include/class/Diagnostics.class.php:521 msgid "Session cookie lifetime" msgstr "セッションクッキー有効期間" -#: ../../include/class/Diagnostics.class.php:558 +#: ../../include/class/Diagnostics.class.php:542 +msgid "System Date (Console)" +msgstr "システムの日時 (コンソール)" + +#: ../../include/class/Diagnostics.class.php:591 msgid "Total groups" msgstr "全グループ数" -#: ../../include/class/Diagnostics.class.php:562 +#: ../../include/class/Diagnostics.class.php:595 msgid "Total module data records" msgstr "全モジュールデータ記録数" -#: ../../include/class/Diagnostics.class.php:566 +#: ../../include/class/Diagnostics.class.php:599 msgid "Total agent access record" msgstr "全エージェントアクセス記録数" -#: ../../include/class/Diagnostics.class.php:574 +#: ../../include/class/Diagnostics.class.php:607 msgid "Total traps" msgstr "全トラップ数" -#: ../../include/class/Diagnostics.class.php:578 +#: ../../include/class/Diagnostics.class.php:611 msgid "Total users" msgstr "全ユーザ数" -#: ../../include/class/Diagnostics.class.php:582 +#: ../../include/class/Diagnostics.class.php:615 msgid "Total sessions" msgstr "全セッション数" -#: ../../include/class/Diagnostics.class.php:621 +#: ../../include/class/Diagnostics.class.php:654 msgid "Pandora DB has never been executed" msgstr "Pandora DB が一度も実行されていません" -#: ../../include/class/Diagnostics.class.php:628 +#: ../../include/class/Diagnostics.class.php:661 msgid "Ago" msgstr "前" -#: ../../include/class/Diagnostics.class.php:635 +#: ../../include/class/Diagnostics.class.php:668 msgid "Total unknown agents" msgstr "全不明エージェント数" -#: ../../include/class/Diagnostics.class.php:639 +#: ../../include/class/Diagnostics.class.php:672 msgid "Total not-init modules" msgstr "全未初期化モジュール数" -#: ../../include/class/Diagnostics.class.php:643 +#: ../../include/class/Diagnostics.class.php:676 msgid "Pandora DB Last run" msgstr "最後の Pandora DB 実行" -#: ../../include/class/Diagnostics.class.php:675 +#: ../../include/class/Diagnostics.class.php:699 msgid "DB Schema Version (first installed)" msgstr "DB スキーマバージョン(初回インストール時)" -#: ../../include/class/Diagnostics.class.php:679 +#: ../../include/class/Diagnostics.class.php:703 msgid "DB Schema Version (actual)" msgstr "DB スキーマバージョン(現在)" -#: ../../include/class/Diagnostics.class.php:683 +#: ../../include/class/Diagnostics.class.php:707 msgid "DB Schema Build" msgstr "DB スキーマビルド" -#: ../../include/class/Diagnostics.class.php:687 -msgid "DB Size" -msgstr "DB サイズ" - -#: ../../include/class/Diagnostics.class.php:727 +#: ../../include/class/Diagnostics.class.php:747 msgid "RAM" msgstr "メモリ" -#: ../../include/class/Diagnostics.class.php:731 +#: ../../include/class/Diagnostics.class.php:751 msgid "Os" msgstr "OS" -#: ../../include/class/Diagnostics.class.php:739 -#: ../../include/class/Diagnostics.class.php:757 -#: ../../include/class/NetworkMap.class.php:3042 +#: ../../include/class/Diagnostics.class.php:759 +#: ../../include/class/Diagnostics.class.php:777 +#: ../../include/class/NetworkMap.class.php:3066 msgid "Ip" msgstr "IP" -#: ../../include/class/Diagnostics.class.php:785 +#: ../../include/class/Diagnostics.class.php:805 msgid "InnoDB buffer pool size" msgstr "InnoDB buffer pool size" -#: ../../include/class/Diagnostics.class.php:789 -#, php-format +#: ../../include/class/Diagnostics.class.php:809 +#, no-php-format msgid "" "It has to be 40% of the server memory not recommended to be greater or less" msgstr "" "サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。" -#: ../../include/class/Diagnostics.class.php:794 +#: ../../include/class/Diagnostics.class.php:814 msgid "InnoDB file per table" msgstr "InnoDB" -#: ../../include/class/Diagnostics.class.php:797 -#: ../../include/class/Diagnostics.class.php:869 +#: ../../include/class/Diagnostics.class.php:817 +#: ../../include/class/Diagnostics.class.php:889 msgid "Recommended ON" msgstr "ON を推奨" -#: ../../include/class/Diagnostics.class.php:801 +#: ../../include/class/Diagnostics.class.php:821 msgid "InnoDB flush log at trx-commit" msgstr "InnoDB flush log at trx-commit" -#: ../../include/class/Diagnostics.class.php:804 +#: ../../include/class/Diagnostics.class.php:824 #, php-format msgid "Recommended Value %d" msgstr "推奨値 %d" -#: ../../include/class/Diagnostics.class.php:808 +#: ../../include/class/Diagnostics.class.php:828 msgid "InnoDB lock wait timeout" msgstr "InnoDB lock wait timeout" -#: ../../include/class/Diagnostics.class.php:811 -#: ../../include/class/Diagnostics.class.php:818 -#: ../../include/class/Diagnostics.class.php:825 -#: ../../include/class/Diagnostics.class.php:832 -#: ../../include/class/Diagnostics.class.php:839 -#: ../../include/class/Diagnostics.class.php:848 -#: ../../include/class/Diagnostics.class.php:855 -#: ../../include/class/Diagnostics.class.php:862 -#: ../../include/class/Diagnostics.class.php:876 -#: ../../include/class/Diagnostics.class.php:883 -#: ../../include/class/Diagnostics.class.php:890 -#: ../../include/class/Diagnostics.class.php:904 -#: ../../include/class/Diagnostics.class.php:911 +#: ../../include/class/Diagnostics.class.php:831 +#: ../../include/class/Diagnostics.class.php:838 +#: ../../include/class/Diagnostics.class.php:845 +#: ../../include/class/Diagnostics.class.php:852 +#: ../../include/class/Diagnostics.class.php:859 +#: ../../include/class/Diagnostics.class.php:868 +#: ../../include/class/Diagnostics.class.php:875 +#: ../../include/class/Diagnostics.class.php:882 +#: ../../include/class/Diagnostics.class.php:896 +#: ../../include/class/Diagnostics.class.php:903 +#: ../../include/class/Diagnostics.class.php:910 +#: ../../include/class/Diagnostics.class.php:924 +#: ../../include/class/Diagnostics.class.php:931 msgid "Min. Recommended Value" msgstr "最小推奨値" -#: ../../include/class/Diagnostics.class.php:815 +#: ../../include/class/Diagnostics.class.php:835 msgid "InnoDB log buffer size" msgstr "InnoDB log buffer size" -#: ../../include/class/Diagnostics.class.php:822 +#: ../../include/class/Diagnostics.class.php:842 msgid "InnoDB log file size" msgstr "InnoDB log file size" -#: ../../include/class/Diagnostics.class.php:829 +#: ../../include/class/Diagnostics.class.php:849 msgid "Maximun allowed packet" msgstr "Maximun allowed packet" -#: ../../include/class/Diagnostics.class.php:836 +#: ../../include/class/Diagnostics.class.php:856 msgid "Maximun connections" msgstr "Maximun connections" -#: ../../include/class/Diagnostics.class.php:841 +#: ../../include/class/Diagnostics.class.php:861 msgid "conections" msgstr "接続" -#: ../../include/class/Diagnostics.class.php:845 +#: ../../include/class/Diagnostics.class.php:865 msgid "Query cache limit" msgstr "Query cache limit" -#: ../../include/class/Diagnostics.class.php:852 +#: ../../include/class/Diagnostics.class.php:872 msgid "Query cache min-res-unit" msgstr "Query cache min-res-unit" -#: ../../include/class/Diagnostics.class.php:859 +#: ../../include/class/Diagnostics.class.php:879 msgid "Query cache size" msgstr "Query cache size" -#: ../../include/class/Diagnostics.class.php:866 +#: ../../include/class/Diagnostics.class.php:886 msgid "Query cache type" msgstr "Query cache type" -#: ../../include/class/Diagnostics.class.php:873 +#: ../../include/class/Diagnostics.class.php:893 msgid "Read buffer size" msgstr "Read buffer size" -#: ../../include/class/Diagnostics.class.php:880 +#: ../../include/class/Diagnostics.class.php:900 msgid "Read rnd-buffer size" msgstr "Read rnd-buffer size" -#: ../../include/class/Diagnostics.class.php:887 +#: ../../include/class/Diagnostics.class.php:907 msgid "Sort buffer size" msgstr "Sort buffer size" -#: ../../include/class/Diagnostics.class.php:894 +#: ../../include/class/Diagnostics.class.php:914 msgid "Sql mode" msgstr "Sql mode" -#: ../../include/class/Diagnostics.class.php:897 +#: ../../include/class/Diagnostics.class.php:917 msgid "Must be empty" msgstr "空である必要があります" -#: ../../include/class/Diagnostics.class.php:901 +#: ../../include/class/Diagnostics.class.php:921 msgid "Thread cache size" msgstr "Thread cache size" -#: ../../include/class/Diagnostics.class.php:908 +#: ../../include/class/Diagnostics.class.php:928 msgid "Thread stack" msgstr "Thread stack" -#: ../../include/class/Diagnostics.class.php:971 +#: ../../include/class/Diagnostics.class.php:991 msgid "" "Table fragmentation is higher than recommended. They should be defragmented." msgstr "" "テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要が" "あります。" -#: ../../include/class/Diagnostics.class.php:975 +#: ../../include/class/Diagnostics.class.php:995 msgid "Table fragmentation is correct." msgstr "テーブルフラグメンテーションは正常です。" -#: ../../include/class/Diagnostics.class.php:984 +#: ../../include/class/Diagnostics.class.php:1004 msgid "Tables fragmentation (maximum recommended value)" msgstr "テーブルフラグメンテーション(最大推奨値)" -#: ../../include/class/Diagnostics.class.php:989 +#: ../../include/class/Diagnostics.class.php:1009 msgid "Tables fragmentation (current value)" msgstr "テーブルフラグメンテーション(現在の値)" -#: ../../include/class/Diagnostics.class.php:993 +#: ../../include/class/Diagnostics.class.php:1013 msgid "Table fragmentation status" msgstr "テーブルフラグメンテーションの状態" -#: ../../include/class/Diagnostics.class.php:1028 +#: ../../include/class/Diagnostics.class.php:1048 msgid "Size server logs (current value)" msgstr "サーバログサイズ(現在の値)" -#: ../../include/class/Diagnostics.class.php:1032 +#: ../../include/class/Diagnostics.class.php:1052 msgid "Status server logs" msgstr "サーバログ状態" -#: ../../include/class/Diagnostics.class.php:1037 +#: ../../include/class/Diagnostics.class.php:1057 msgid "Size error logs (current value)" msgstr "エラーログサイズ(現在の値)" -#: ../../include/class/Diagnostics.class.php:1041 +#: ../../include/class/Diagnostics.class.php:1061 msgid "Status error logs" msgstr "エラーログ状態" -#: ../../include/class/Diagnostics.class.php:1046 +#: ../../include/class/Diagnostics.class.php:1066 msgid "Size console logs (current value)" msgstr "コンソールログサイズ(現在の値)" -#: ../../include/class/Diagnostics.class.php:1050 +#: ../../include/class/Diagnostics.class.php:1070 msgid "Status console logs" msgstr "コンソールログ状態" -#: ../../include/class/Diagnostics.class.php:1085 +#: ../../include/class/Diagnostics.class.php:1105 msgid "License capacity is less than 90 percent" msgstr "ライセンス容量は90%未満です" -#: ../../include/class/Diagnostics.class.php:1088 +#: ../../include/class/Diagnostics.class.php:1108 msgid "License capacity exceeds 90 percent" msgstr "ライセンス容量の90%を超えています" -#: ../../include/class/Diagnostics.class.php:1096 +#: ../../include/class/Diagnostics.class.php:1116 msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" @@ -46383,48 +47641,48 @@ msgstr "" "1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題" "が発生する可能性があります。" -#: ../../include/class/Diagnostics.class.php:1101 +#: ../../include/class/Diagnostics.class.php:1121 msgid "The average of modules per agent is less than 40" msgstr "1エージェントあたりの平均モジュール数が 40未満です。" -#: ../../include/class/Diagnostics.class.php:1139 +#: ../../include/class/Diagnostics.class.php:1159 msgid "The system has no load" msgstr "システムに負荷がかかっていません" -#: ../../include/class/Diagnostics.class.php:1183 +#: ../../include/class/Diagnostics.class.php:1203 msgid "Network Management System" msgstr "ネットワーク管理システム" -#: ../../include/class/Diagnostics.class.php:1184 -#: ../../include/class/Diagnostics.class.php:1188 +#: ../../include/class/Diagnostics.class.php:1204 +#: ../../include/class/Diagnostics.class.php:1208 msgid "Off" msgstr "オフ" -#: ../../include/class/Diagnostics.class.php:1195 +#: ../../include/class/Diagnostics.class.php:1215 msgid "Status of agents capacity" msgstr "エージェントキャパシティの状態" -#: ../../include/class/Diagnostics.class.php:1200 +#: ../../include/class/Diagnostics.class.php:1220 msgid "Status of average modules per agent" msgstr "1エージェントごとの平均モジュール数の状態" -#: ../../include/class/Diagnostics.class.php:1206 +#: ../../include/class/Diagnostics.class.php:1226 msgid "Interval average of the network modules" msgstr "ネットワークモジュールの平均実行間隔" -#: ../../include/class/Diagnostics.class.php:1236 +#: ../../include/class/Diagnostics.class.php:1256 msgid "The attached folder contains more than 700 files." msgstr "attachment フォルダに 700以上のファイルがあります。" -#: ../../include/class/Diagnostics.class.php:1241 +#: ../../include/class/Diagnostics.class.php:1261 msgid "The attached folder contains less than 700 files." msgstr "attachment フォルダは 700未満のファイルがあります。" -#: ../../include/class/Diagnostics.class.php:1250 +#: ../../include/class/Diagnostics.class.php:1270 msgid "Total files in the attached folder" msgstr "attachment フォルダの全ファイル数" -#: ../../include/class/Diagnostics.class.php:1285 +#: ../../include/class/Diagnostics.class.php:1305 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -46432,31 +47690,31 @@ msgstr "" "tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお" "勧めします。" -#: ../../include/class/Diagnostics.class.php:1290 +#: ../../include/class/Diagnostics.class.php:1310 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "tagente_datos テーブルのデータ量は適正です。" -#: ../../include/class/Diagnostics.class.php:1299 +#: ../../include/class/Diagnostics.class.php:1319 msgid "Total data in tagente_datos table" msgstr "tagente_datos テーブルの全データ量" -#: ../../include/class/Diagnostics.class.php:1303 +#: ../../include/class/Diagnostics.class.php:1323 msgid "Tagente_datos table status" msgstr "tagente_datos テーブルの状態" -#: ../../include/class/Diagnostics.class.php:1339 +#: ../../include/class/Diagnostics.class.php:1359 msgid "Threads" msgstr "スレッド" -#: ../../include/class/Diagnostics.class.php:1349 +#: ../../include/class/Diagnostics.class.php:1369 msgid "Total threads" msgstr "全スレッド数" -#: ../../include/class/Diagnostics.class.php:1356 +#: ../../include/class/Diagnostics.class.php:1376 msgid "Current pandora_server running threads" msgstr "現在の pandora_server 実行スレッド" -#: ../../include/class/Diagnostics.class.php:1360 +#: ../../include/class/Diagnostics.class.php:1380 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -46464,7 +47722,7 @@ msgstr "" "設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していま" "せんか?" -#: ../../include/class/Diagnostics.class.php:1494 +#: ../../include/class/Diagnostics.class.php:1514 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -46472,7 +47730,7 @@ msgstr "" "Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作して" "いるか確認してください。" -#: ../../include/class/Diagnostics.class.php:1498 +#: ../../include/class/Diagnostics.class.php:1518 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -46480,44 +47738,44 @@ msgstr "" "Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこ" "とが非常に重要です。" -#: ../../include/class/Diagnostics.class.php:1760 +#: ../../include/class/Diagnostics.class.php:1780 msgid "You have more than 10 MB of logs" msgstr "10MB 以上のログがあります" -#: ../../include/class/Diagnostics.class.php:1763 +#: ../../include/class/Diagnostics.class.php:1783 msgid "You have less than 10 MB of logs" msgstr "ログは 10MB 未満です" -#: ../../include/class/Diagnostics.class.php:1930 +#: ../../include/class/Diagnostics.class.php:1950 msgid "Include installation data" msgstr "インストールデータを含む" -#: ../../include/class/Diagnostics.class.php:1967 +#: ../../include/class/Diagnostics.class.php:1987 msgid "Hello Feedback-Men" msgstr "こんにちは、フィードバックありがとうございます" -#: ../../include/class/Diagnostics.class.php:1977 +#: ../../include/class/Diagnostics.class.php:1997 msgid "Hello" msgstr "こんにちは" -#: ../../include/class/Diagnostics.class.php:1981 +#: ../../include/class/Diagnostics.class.php:2001 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "ユーザ %s より、%s で発生した事象をレポートします" -#: ../../include/class/Diagnostics.class.php:1990 +#: ../../include/class/Diagnostics.class.php:2010 msgid "Find some files attached to this mail" msgstr "このメールに添付するファイル" -#: ../../include/class/Diagnostics.class.php:1993 +#: ../../include/class/Diagnostics.class.php:2013 msgid "PDF is the diagnostic information retrieved at report time" msgstr "PDF はレポート時に取得する診断情報を含みます" -#: ../../include/class/Diagnostics.class.php:1996 +#: ../../include/class/Diagnostics.class.php:2016 msgid "CSV contains the statuses of every product file" msgstr "CSV に各製品ファイルの状態を含みます" -#: ../../include/class/Diagnostics.class.php:2001 +#: ../../include/class/Diagnostics.class.php:2021 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " @@ -46526,11 +47784,11 @@ msgstr "" "この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" " "へ転送してください。" -#: ../../include/class/Diagnostics.class.php:2005 +#: ../../include/class/Diagnostics.class.php:2025 msgid "LEGAL WARNING" msgstr "法的な警告" -#: ../../include/class/Diagnostics.class.php:2007 +#: ../../include/class/Diagnostics.class.php:2027 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -46538,7 +47796,7 @@ msgstr "" "この送信に含まれる情報は、上記の個人または団体での使用のみを目的とした機密情報" "です。" -#: ../../include/class/Diagnostics.class.php:2011 +#: ../../include/class/Diagnostics.class.php:2031 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 " @@ -46547,92 +47805,92 @@ msgstr "" "このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピー" "を固く禁止します" -#: ../../include/class/Diagnostics.class.php:2015 +#: ../../include/class/Diagnostics.class.php:2035 msgid "If you have received this transmission in error, do not read it" msgstr "もし、間違えてこの情報を受け取った場合は、読まないでください" -#: ../../include/class/Diagnostics.class.php:2019 +#: ../../include/class/Diagnostics.class.php:2039 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:2098 +#: ../../include/class/Diagnostics.class.php:2118 msgid "Invalid cron task" msgstr "不正な cron タスク" -#: ../../include/class/Diagnostics.class.php:2099 +#: ../../include/class/Diagnostics.class.php:2119 msgid "Sending of information has been processed" msgstr "情報の送信処理が行われました" -#: ../../include/class/Diagnostics.class.php:2134 -#: ../../include/class/Diagnostics.class.php:2144 +#: ../../include/class/Diagnostics.class.php:2154 +#: ../../include/class/Diagnostics.class.php:2164 msgid "Diagnostics Info" msgstr "診断情報" -#: ../../include/class/Diagnostics.class.php:2252 -#: ../../include/class/Diagnostics.class.php:2262 +#: ../../include/class/Diagnostics.class.php:2272 +#: ../../include/class/Diagnostics.class.php:2282 msgid "PHP Info" msgstr "PHP Info" -#: ../../include/class/NetworkMap.class.php:2371 +#: ../../include/class/NetworkMap.class.php:2382 msgid "Failed to generate dotmap, please select different layout schema" msgstr "" "ドットマップの生成に失敗しました。異なるレイアウトスキーマを選択してください。" -#: ../../include/class/NetworkMap.class.php:2513 +#: ../../include/class/NetworkMap.class.php:2524 msgid "Failed to retrieve graph data." msgstr "グラフデータの取得に失敗しました。" -#: ../../include/class/NetworkMap.class.php:2797 +#: ../../include/class/NetworkMap.class.php:2808 msgid "Holding Area" msgstr "保持エリア" -#: ../../include/class/NetworkMap.class.php:2924 +#: ../../include/class/NetworkMap.class.php:2935 #, php-format msgid "Edit node %s" msgstr "ノード編集 %s" -#: ../../include/class/NetworkMap.class.php:2926 +#: ../../include/class/NetworkMap.class.php:2937 msgid "Show details and options" msgstr "詳細とオプションの表示" -#: ../../include/class/NetworkMap.class.php:2927 +#: ../../include/class/NetworkMap.class.php:2938 msgid "Add a interface link" msgstr "インタフェースリンクを追加" -#: ../../include/class/NetworkMap.class.php:2928 +#: ../../include/class/NetworkMap.class.php:2939 msgid "Set parent interface" msgstr "親インタフェースを設定" -#: ../../include/class/NetworkMap.class.php:2929 +#: ../../include/class/NetworkMap.class.php:2940 msgid "Set as children" msgstr "子に設定" -#: ../../include/class/NetworkMap.class.php:2930 +#: ../../include/class/NetworkMap.class.php:2941 msgid "Set parent" msgstr "親を設定" -#: ../../include/class/NetworkMap.class.php:2931 -#: ../../include/class/NetworkMap.class.php:2943 +#: ../../include/class/NetworkMap.class.php:2942 +#: ../../include/class/NetworkMap.class.php:2954 msgid "Abort the action of set relationship" msgstr "関係設定動作の中止" -#: ../../include/class/NetworkMap.class.php:2933 -#: ../../include/class/NetworkMap.class.php:3288 +#: ../../include/class/NetworkMap.class.php:2944 +#: ../../include/class/NetworkMap.class.php:3344 msgid "Add node" msgstr "ノード追加" -#: ../../include/class/NetworkMap.class.php:2934 +#: ../../include/class/NetworkMap.class.php:2945 msgid "Set center" msgstr "中心設定" -#: ../../include/class/NetworkMap.class.php:2936 -#: ../../include/class/NetworkMap.class.php:2939 +#: ../../include/class/NetworkMap.class.php:2947 +#: ../../include/class/NetworkMap.class.php:2950 msgid "Proceed" msgstr "実行" -#: ../../include/class/NetworkMap.class.php:2937 +#: ../../include/class/NetworkMap.class.php:2948 msgid "" "Resetting the map will delete all customizations you have done, including " "manual relationships between elements, new items, etc." @@ -46640,172 +47898,167 @@ msgstr "" "マップリセットは、要素や新たなアイテム間の関連付けなど、行った全てのカスタマイ" "ズを削除します。" -#: ../../include/class/NetworkMap.class.php:2941 +#: ../../include/class/NetworkMap.class.php:2952 msgid "Restart map" msgstr "マップリセット" -#: ../../include/class/NetworkMap.class.php:2942 +#: ../../include/class/NetworkMap.class.php:2953 msgid "Abort the interface relationship" msgstr "インタフェース関連付けの中止" -#: ../../include/class/NetworkMap.class.php:2960 -#: ../../include/class/NetworkMap.class.php:3009 +#: ../../include/class/NetworkMap.class.php:2971 +#: ../../include/class/NetworkMap.class.php:3020 msgid "Edit node" msgstr "ノード編集" -#: ../../include/class/NetworkMap.class.php:2970 -#: ../../include/class/NetworkMap.class.php:3019 +#: ../../include/class/NetworkMap.class.php:2981 +#: ../../include/class/NetworkMap.class.php:3036 msgid "Adresses" msgstr "アドレス" -#: ../../include/class/NetworkMap.class.php:2972 -#: ../../include/class/NetworkMap.class.php:3021 +#: ../../include/class/NetworkMap.class.php:2983 +#: ../../include/class/NetworkMap.class.php:3041 msgid "OS type" msgstr "OS 種別" -#: ../../include/class/NetworkMap.class.php:2979 -#: ../../include/class/NetworkMap.class.php:2980 -#: ../../include/class/NetworkMap.class.php:3028 -#: ../../include/class/NetworkMap.class.php:3029 +#: ../../include/class/NetworkMap.class.php:2990 +#: ../../include/class/NetworkMap.class.php:2991 +#: ../../include/class/NetworkMap.class.php:3052 +#: ../../include/class/NetworkMap.class.php:3053 msgid "Node Details" msgstr "ノード詳細" -#: ../../include/class/NetworkMap.class.php:3054 -#: ../../include/class/NetworkMap.class.php:3055 +#: ../../include/class/NetworkMap.class.php:3078 +#: ../../include/class/NetworkMap.class.php:3079 msgid "Interface Information (SNMP)" msgstr "インタフェース情報 (SNMP)" -#: ../../include/class/NetworkMap.class.php:3066 +#: ../../include/class/NetworkMap.class.php:3092 msgid "Shape" msgstr "形" -#: ../../include/class/NetworkMap.class.php:3069 +#: ../../include/class/NetworkMap.class.php:3095 msgid "Circle" msgstr "円" -#: ../../include/class/NetworkMap.class.php:3070 +#: ../../include/class/NetworkMap.class.php:3096 msgid "Square" msgstr "四角" -#: ../../include/class/NetworkMap.class.php:3071 +#: ../../include/class/NetworkMap.class.php:3097 msgid "Rhombus" msgstr "ひしがた" -#: ../../include/class/NetworkMap.class.php:3084 +#: ../../include/class/NetworkMap.class.php:3113 msgid "name node" msgstr "ノード名" -#: ../../include/class/NetworkMap.class.php:3102 -#: ../../include/class/NetworkMap.class.php:3405 +#: ../../include/class/NetworkMap.class.php:3125 +#: ../../include/class/NetworkMap.class.php:3495 msgid "name fictional node" msgstr "仮想ノード名" -#: ../../include/class/NetworkMap.class.php:3107 -#: ../../include/class/NetworkMap.class.php:3410 +#: ../../include/class/NetworkMap.class.php:3133 +#: ../../include/class/NetworkMap.class.php:3503 msgid "Networkmap to link" msgstr "リンクするネットワークマップ" -#: ../../include/class/NetworkMap.class.php:3119 +#: ../../include/class/NetworkMap.class.php:3147 msgid "Update fictional node" msgstr "仮想ノード更新" -#: ../../include/class/NetworkMap.class.php:3129 -#: ../../include/class/NetworkMap.class.php:3130 +#: ../../include/class/NetworkMap.class.php:3175 +#: ../../include/class/NetworkMap.class.php:3176 msgid "Node options" msgstr "ノードオプション" -#: ../../include/class/NetworkMap.class.php:3141 -#: ../../include/class/NetworkMap.class.php:3234 +#: ../../include/class/NetworkMap.class.php:3187 +#: ../../include/class/NetworkMap.class.php:3281 msgid "Node source" msgstr "ノードソース" -#: ../../include/class/NetworkMap.class.php:3142 -#: ../../include/class/NetworkMap.class.php:3235 +#: ../../include/class/NetworkMap.class.php:3188 +#: ../../include/class/NetworkMap.class.php:3282 msgid "Interface source" msgstr "インタフェースソース" -#: ../../include/class/NetworkMap.class.php:3143 -#: ../../include/class/NetworkMap.class.php:3236 +#: ../../include/class/NetworkMap.class.php:3189 +#: ../../include/class/NetworkMap.class.php:3283 msgid "Interface Target" msgstr "インタフェースターゲット" -#: ../../include/class/NetworkMap.class.php:3145 -#: ../../include/class/NetworkMap.class.php:3237 +#: ../../include/class/NetworkMap.class.php:3191 +#: ../../include/class/NetworkMap.class.php:3284 msgid "Node target" msgstr "ノードターゲット" -#: ../../include/class/NetworkMap.class.php:3146 +#: ../../include/class/NetworkMap.class.php:3192 msgid "E." msgstr "E." -#: ../../include/class/NetworkMap.class.php:3208 +#: ../../include/class/NetworkMap.class.php:3254 msgid "There are not relations" msgstr "関連付がありません。" -#: ../../include/class/NetworkMap.class.php:3276 +#: ../../include/class/NetworkMap.class.php:3327 msgid "Add interface link" msgstr "インタフェースリンクを追加" -#: ../../include/class/NetworkMap.class.php:3307 -#: ../../include/class/NetworkMap.class.php:3329 -#: ../../include/class/NetworkMap.class.php:3330 -#: ../../include/class/NetworkMap.class.php:3380 -#: ../../include/class/NetworkMap.class.php:3392 -#: ../../include/class/NetworkMap.class.php:3433 +#: ../../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 msgid "Add agent node" msgstr "エージェントノード追加" -#: ../../include/class/NetworkMap.class.php:3391 +#: ../../include/class/NetworkMap.class.php:3478 msgid "Add agent node (filter by group)" msgstr "エージェントノード追加 (グループによるフィルタ)" -#: ../../include/class/NetworkMap.class.php:3422 +#: ../../include/class/NetworkMap.class.php:3520 msgid "Add fictional node" msgstr "仮想ノード追加" -#: ../../include/class/NetworkMap.class.php:3432 +#: ../../include/class/NetworkMap.class.php:3535 msgid "Add fictional point" msgstr "仮想ポイント追加" -#: ../../include/class/NetworkMap.class.php:3516 +#: ../../include/class/NetworkMap.class.php:3620 #: ../../operation/visual_console/legacy_public_view.php:198 -#: ../../operation/visual_console/legacy_view.php:339 +#: ../../operation/visual_console/legacy_view.php:335 msgid "Until refresh" msgstr "リフレッシュまで" -#: ../../include/class/NetworkMap.class.php:3675 +#: ../../include/class/NetworkMap.class.php:3775 msgid "Open Minimap" msgstr "ミニマップを開く" -#: ../../include/class/NetworkMap.class.php:3681 +#: ../../include/class/NetworkMap.class.php:3781 msgid "Hide Labels" msgstr "ラベルを隠す" -#: ../../include/class/AgentsAlerts.class.php:502 +#: ../../include/class/AgentsAlerts.class.php:527 msgid "There are no agents with alerts" msgstr "アラートがついたエージェントがありません" -#: ../../include/class/AgentsAlerts.class.php:580 +#: ../../include/class/AgentsAlerts.class.php:605 msgid "Previous alerts" msgstr "以前のアラート" -#: ../../include/class/AgentsAlerts.class.php:644 +#: ../../include/class/AgentsAlerts.class.php:669 msgid "More alerts" msgstr "他のアラート" -#: ../../include/class/AgentsAlerts.class.php:729 +#: ../../include/class/AgentsAlerts.class.php:742 msgid "Agents/Alerts" msgstr "エージェント/アラート" -#: ../../include/class/AgentsAlerts.class.php:778 +#: ../../include/class/AgentsAlerts.class.php:791 msgid "Show modules without alerts" msgstr "アラート無しでモジュールを表示" -#: ../../include/class/AgentsAlerts.class.php:808 -#: ../../operation/gis_maps/render_view.php:155 -msgid "10 minutes" -msgstr "10 分" - #: ../../include/class/ManageNetScanScripts.class.php:122 msgid "Net scan scripts" msgstr "ネットスキャンスクリプト" @@ -46845,266 +48098,274 @@ msgstr "スクリプトを削除しますか?" msgid "Delete Script" msgstr "スクリプト削除" -#: ../../include/class/ManageNetScanScripts.class.php:478 +#: ../../include/class/ManageNetScanScripts.class.php:490 msgid "There are no net scan scripts in the system" msgstr "システムにネットスキャンスクリプトがありません" -#: ../../include/class/ManageNetScanScripts.class.php:552 +#: ../../include/class/ManageNetScanScripts.class.php:560 msgid "Script fullpath" msgstr "スクリプトのフルパス" -#: ../../include/class/CredentialStore.class.php:611 +#: ../../include/class/CredentialStore.class.php:585 #, php-format msgid "Not a valid JSON: %s" msgstr "不正な JSON: %s" -#: ../../include/class/CredentialStore.class.php:622 +#: ../../include/class/CredentialStore.class.php:596 msgid "Key identifier is required" msgstr "鍵の識別子が必要です" -#: ../../include/class/CredentialStore.class.php:624 +#: ../../include/class/CredentialStore.class.php:598 msgid "You must select a group where store this key!" msgstr "この鍵を保存するグループを選択する必要があります。" -#: ../../include/class/CredentialStore.class.php:626 +#: ../../include/class/CredentialStore.class.php:600 msgid "You must specify a product type" msgstr "製品タイプを指定する必要があります" -#: ../../include/class/CredentialStore.class.php:628 +#: ../../include/class/CredentialStore.class.php:602 msgid "You must specify a username and/or password" msgstr "ユーザ名およびパスワードを指定する必要があります" -#: ../../include/class/CredentialStore.class.php:630 +#: ../../include/class/CredentialStore.class.php:604 msgid "Identifier with forbidden characters. Check the documentation." msgstr "禁止文字を含む識別子。ドキュメントを確認してください。" -#: ../../include/class/CredentialStore.class.php:780 +#: ../../include/class/CredentialStore.class.php:754 msgid "identifier cannot be empty" msgstr "識別子は空にできません" -#: ../../include/class/CredentialStore.class.php:823 +#: ../../include/class/CredentialStore.class.php:797 #, php-format msgid "" "Database encryption is not enabled. Credentials will be stored in plaintext. %s" msgstr "" "データベースの暗号化が無効です。認証情報がプレーンテキストで保存されます。%s" -#: ../../include/class/CredentialStore.class.php:842 -#: ../../include/class/CredentialStore.class.php:975 +#: ../../include/class/CredentialStore.class.php:816 +#: ../../include/class/CredentialStore.class.php:951 msgid "Product" msgstr "製品" -#: ../../include/class/CredentialStore.class.php:907 +#: ../../include/class/CredentialStore.class.php:882 msgid "Add key" msgstr "鍵を追加" -#: ../../include/class/CredentialStore.class.php:988 +#: ../../include/class/CredentialStore.class.php:964 msgid "WMI" msgstr "WMI" -#: ../../include/class/CredentialStore.class.php:989 -#: ../../include/class/SnmpConsole.class.php:231 -#: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/menu.php:147 -msgid "SNMP" -msgstr "SNMP" - -#: ../../include/class/CredentialStore.class.php:1000 +#: ../../include/class/CredentialStore.class.php:976 msgid "Extra (2)" msgstr "拡張 (2)" -#: ../../include/class/CredentialStore.class.php:1010 -#: ../../include/class/CredentialStore.class.php:1329 +#: ../../include/class/CredentialStore.class.php:986 +#: ../../include/class/CredentialStore.class.php:1307 msgid "Access key ID" msgstr "アクセスキー ID" -#: ../../include/class/CredentialStore.class.php:1011 -#: ../../include/class/CredentialStore.class.php:1330 +#: ../../include/class/CredentialStore.class.php:987 +#: ../../include/class/CredentialStore.class.php:1308 msgid "Secret access key" msgstr "シークレットアクセスキー" -#: ../../include/class/CredentialStore.class.php:1017 -#: ../../include/class/CredentialStore.class.php:1047 +#: ../../include/class/CredentialStore.class.php:993 +#: ../../include/class/CredentialStore.class.php:1023 msgid "Account ID" msgstr "アカウント ID" -#: ../../include/class/CredentialStore.class.php:1018 -#: ../../include/class/CredentialStore.class.php:1337 +#: ../../include/class/CredentialStore.class.php:994 +#: ../../include/class/CredentialStore.class.php:1315 msgid "Application secret" msgstr "アプリケーションシークレット" -#: ../../include/class/CredentialStore.class.php:1019 -#: ../../include/class/CredentialStore.class.php:1338 +#: ../../include/class/CredentialStore.class.php:995 +#: ../../include/class/CredentialStore.class.php:1316 msgid "Tenant or domain name" msgstr "テナントまたはドメイン名" -#: ../../include/class/CredentialStore.class.php:1020 -#: ../../include/class/CredentialStore.class.php:1339 +#: ../../include/class/CredentialStore.class.php:996 +#: ../../include/class/CredentialStore.class.php:1317 msgid "Subscription id" msgstr "サブスクリプション ID" -#: ../../include/class/CredentialStore.class.php:1024 -#: ../../include/class/CredentialStore.class.php:1355 +#: ../../include/class/CredentialStore.class.php:1000 +#: ../../include/class/CredentialStore.class.php:1333 msgid "Auth JSON" msgstr "認証 JSON" -#: ../../include/class/CredentialStore.class.php:1138 +#: ../../include/class/CredentialStore.class.php:1114 msgid "1" msgstr "1" -#: ../../include/class/CredentialStore.class.php:1139 +#: ../../include/class/CredentialStore.class.php:1115 msgid "2" msgstr "2" -#: ../../include/class/CredentialStore.class.php:1140 +#: ../../include/class/CredentialStore.class.php:1116 msgid "2c" msgstr "2c" -#: ../../include/class/CredentialStore.class.php:1141 +#: ../../include/class/CredentialStore.class.php:1117 msgid "3" msgstr "3" -#: ../../include/class/CredentialStore.class.php:1158 -#: ../../include/class/CredentialStore.class.php:1447 +#: ../../include/class/CredentialStore.class.php:1134 +#: ../../include/class/CredentialStore.class.php:1425 msgid "Authenticated and non-private method" msgstr "認証あり、暗号化なし" -#: ../../include/class/CredentialStore.class.php:1159 -#: ../../include/class/CredentialStore.class.php:1449 +#: ../../include/class/CredentialStore.class.php:1135 +#: ../../include/class/CredentialStore.class.php:1427 msgid "Authenticated and private method" msgstr "認証あり、暗号化あり" -#: ../../include/class/CredentialStore.class.php:1160 -#: ../../include/class/CredentialStore.class.php:1451 +#: ../../include/class/CredentialStore.class.php:1136 +#: ../../include/class/CredentialStore.class.php:1429 msgid "Non-authenticated and non-private method" msgstr "認証なし、暗号化なし" -#: ../../include/class/CredentialStore.class.php:1168 -#: ../../include/class/CredentialStore.class.php:1464 -#: ../../include/class/AgentWizard.class.php:907 +#: ../../include/class/CredentialStore.class.php:1144 +#: ../../include/class/CredentialStore.class.php:1442 +#: ../../include/class/AgentWizard.class.php:910 msgid "User authentication" msgstr "ユーザ認証" -#: ../../include/class/CredentialStore.class.php:1203 -#: ../../include/class/CredentialStore.class.php:1498 -#: ../../include/class/AgentWizard.class.php:936 +#: ../../include/class/CredentialStore.class.php:1179 +#: ../../include/class/CredentialStore.class.php:1476 +#: ../../include/class/AgentWizard.class.php:939 msgid "Password authentication" msgstr "パスワード認証" -#: ../../include/class/CredentialStore.class.php:1336 +#: ../../include/class/CredentialStore.class.php:1314 msgid "Client ID" msgstr "クライアントID" -#: ../../include/class/CredentialStore.class.php:1345 +#: ../../include/class/CredentialStore.class.php:1323 msgid "Account ID." msgstr "アカウント ID" -#: ../../include/class/CredentialStore.class.php:1670 +#: ../../include/class/CredentialStore.class.php:1648 msgid "Register new key into keystore" msgstr "キーストアへ新たな鍵を登録" -#: ../../include/class/CredentialStore.class.php:1674 +#: ../../include/class/CredentialStore.class.php:1652 msgid "Update key" msgstr "鍵の更新" -#: ../../include/class/SnmpConsole.class.php:262 -msgid "Refresh every" -msgstr "更新周期" - -#: ../../include/class/SnmpConsole.class.php:274 -msgid "SNMP Traps" -msgstr "SNMP トラップ" - -#: ../../include/class/SnmpConsole.class.php:340 +#: ../../include/class/SnmpConsole.class.php:277 msgid "Trap subtype" msgstr "トラップサブタイプ" -#: ../../include/class/SnmpConsole.class.php:354 -#: ../../include/functions_reporting.php:5786 -#: ../../include/functions_reporting.php:5803 -#: ../../include/functions_reporting.php:5820 +#: ../../include/class/SnmpConsole.class.php:291 +#: ../../include/functions_reporting.php:5890 +#: ../../include/functions_reporting.php:5907 +#: ../../include/functions_reporting.php:5924 msgid "Not triggered" msgstr "未発報" -#: ../../include/class/SnmpConsole.class.php:355 +#: ../../include/class/SnmpConsole.class.php:292 msgid "Triggered" msgstr "発報" -#: ../../include/class/SnmpConsole.class.php:372 -#: ../../include/class/SnmpConsole.class.php:521 -#: ../../include/class/SnmpConsole.class.php:795 -#: ../../include/functions_reporting.php:2361 -#: ../../include/functions_reporting.php:4493 -#: ../../include/functions_reporting.php:11196 +#: ../../include/class/SnmpConsole.class.php:309 +#: ../../include/class/SnmpConsole.class.php:503 +#: ../../include/class/SnmpConsole.class.php:761 +#: ../../include/functions_reporting.php:2366 +#: ../../include/functions_reporting.php:4597 +#: ../../include/functions_reporting.php:11390 msgid "Not validated" msgstr "未承諾" -#: ../../include/class/SnmpConsole.class.php:373 -#: ../../include/class/SnmpConsole.class.php:512 -#: ../../include/class/SnmpConsole.class.php:805 -#: ../../include/functions_reporting.php:2360 -#: ../../include/functions_reporting.php:4492 -#: ../../include/functions_reporting.php:11195 -#: ../../include/functions_events.php:2546 -#: ../../include/functions_events.php:3128 -#: ../../include/functions_events.php:3400 -#: ../../include/functions_events.php:3409 -#: ../../include/functions_events.php:3416 -#: ../../include/functions_events.php:3423 +#: ../../include/class/SnmpConsole.class.php:310 +#: ../../include/class/SnmpConsole.class.php:501 +#: ../../include/class/SnmpConsole.class.php:771 +#: ../../include/functions_reporting.php:2365 +#: ../../include/functions_reporting.php:4596 +#: ../../include/functions_reporting.php:11389 +#: ../../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 msgid "Validated" msgstr "承諾済み" -#: ../../include/class/SnmpConsole.class.php:454 +#: ../../include/class/SnmpConsole.class.php:393 msgid "Group by Enterprise String/IP" msgstr "Enterprise 文字列/IP ごとのグループ" -#: ../../include/class/SnmpConsole.class.php:817 -#: ../../operation/snmpconsole/snmp_statistics.php:197 +#: ../../include/class/SnmpConsole.class.php:783 +#: ../../operation/snmpconsole/snmp_statistics.php:199 msgid "View agent details" msgstr "エージェント概要の参照" -#: ../../include/class/SnmpConsole.class.php:1363 +#: ../../include/class/SnmpConsole.class.php:902 +#: ../../include/class/SnmpConsole.class.php:903 +msgid "Hide details" +msgstr "詳細を隠す" + +#: ../../include/class/SnmpConsole.class.php:1365 msgid "Count:" msgstr "件数:" -#: ../../include/class/SnmpConsole.class.php:1363 +#: ../../include/class/SnmpConsole.class.php:1365 msgid "First trap:" msgstr "最初のトラップ:" -#: ../../include/class/SnmpConsole.class.php:1363 +#: ../../include/class/SnmpConsole.class.php:1365 msgid "Last trap:" msgstr "最新のトラップ:" -#: ../../include/class/SnmpConsole.class.php:1401 +#: ../../include/class/SnmpConsole.class.php:1403 msgid "Type:" msgstr "タイプ:" -#: ../../include/class/SnmpConsole.class.php:1415 +#: ../../include/class/SnmpConsole.class.php:1410 +msgid "Description:" +msgstr "説明:" + +#: ../../include/class/SnmpConsole.class.php:1417 msgid "Enterprise String:" msgstr "Enterprise文字列:" -#: ../../include/class/SnmpConsole.class.php:1424 -#: ../../include/class/SnmpConsole.class.php:1438 +#: ../../include/class/SnmpConsole.class.php:1426 +#: ../../include/class/SnmpConsole.class.php:1440 msgid "Variable bindings:" msgstr "バインド変数:" -#: ../../include/class/SnmpConsole.class.php:1434 +#: ../../include/class/SnmpConsole.class.php:1436 msgid "See more details" msgstr "詳細表示" -#: ../../include/class/AuditLog.class.php:135 +#: ../../include/class/AuditLog.class.php:136 #, php-format msgid "%s audit" msgstr "%s 監査" -#: ../../include/class/AuditLog.class.php:135 +#: ../../include/class/AuditLog.class.php:136 msgid "Review Logs" msgstr "ログ一覧" -#: ../../include/class/AuditLog.class.php:148 +#: ../../include/class/AuditLog.class.php:149 msgid "System Audit log" msgstr "システム監査ログ" +#: ../../include/class/AuditLog.class.php:197 +msgid "Search filter by User, Action, Date, Source IP or Comments fields content" +msgstr "" +"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索" +"フィルタ" + +#: ../../include/class/AuditLog.class.php:212 +msgid "7 days" +msgstr "7日" + +#: ../../include/class/AuditLog.class.php:217 +msgid "1 Year" +msgstr "1年" + #: ../../include/class/OrderInterpreter.class.php:123 msgid "Agent Management" msgstr "エージェント管理" @@ -47117,14 +48378,6 @@ msgstr "ポリシー管理" msgid "List Alerts" msgstr "アラート一覧" -#: ../../include/class/OrderInterpreter.class.php:195 -msgid "View Events" -msgstr "イベント表示" - -#: ../../include/class/OrderInterpreter.class.php:247 -msgid "Manage Servers" -msgstr "サーバ管理" - #: ../../include/class/OrderInterpreter.class.php:261 msgid "Edit User" msgstr "ユーザ編集" @@ -47157,165 +48410,247 @@ msgstr "件見つかりました" msgid "Press enter to search" msgstr "検索するには Enter キーを押します" -#: ../../include/class/CustomNetScan.class.php:369 -#: ../../include/class/CustomNetScan.class.php:394 +#: ../../include/class/TipsWindow.class.php:432 +msgid "Tip deleted" +msgstr "表示を削除しました" + +#: ../../include/class/TipsWindow.class.php:482 +msgid "Search by title" +msgstr "タイトルによる検索" + +#: ../../include/class/TipsWindow.class.php:683 +msgid "Tip created" +msgstr "表示を作成しました" + +#: ../../include/class/TipsWindow.class.php:743 +#: ../../include/class/TipsWindow.class.php:911 +msgid "Wrong size, we recommend images of 464x260 px" +msgstr "不正なサイズです。画像は 464x260 px を推奨します。" + +#: ../../include/class/TipsWindow.class.php:751 +#: ../../include/class/TipsWindow.class.php:919 +msgid "Please select a image" +msgstr "画像を選択してください。" + +#: ../../include/class/TipsWindow.class.php:755 +#: ../../include/class/TipsWindow.class.php:923 +msgid "Add image" +msgstr "画像の追加" + +#: ../../include/class/TipsWindow.class.php:758 +#: ../../include/class/TipsWindow.class.php:926 +msgid "Images" +msgstr "画像" + +#: ../../include/class/TipsWindow.class.php:823 +msgid "Tip edited" +msgstr "表示を編集しました" + +#: ../../include/class/TipsWindow.class.php:1096 +msgid "Incorrect file" +msgstr "不正なファイルです" + +#: ../../include/class/TipsWindow.class.php:1100 +msgid "Format image invalid" +msgstr "画像フォーマットが不正です" + +#: ../../include/class/TipsWindow.class.php:1104 +msgid "Image size too large" +msgstr "画像サイズが大きすぎます" + +#: ../../include/class/CustomNetScan.class.php:372 +#: ../../include/class/CustomNetScan.class.php:397 msgid "NetScan Custom" msgstr "カスタムネットスキャン" -#: ../../include/class/CustomNetScan.class.php:612 +#: ../../include/class/CustomNetScan.class.php:623 msgid "Recon script" msgstr "自動検出スクリプト" -#: ../../include/class/CustomNetScan.class.php:653 +#: ../../include/class/CustomNetScan.class.php:663 msgid "Explanation" msgstr "説明" -#: ../../include/class/CustomNetScan.class.php:669 +#: ../../include/class/CustomNetScan.class.php:679 msgid "macro_desc" msgstr "マクロの説明" -#: ../../include/class/ModuleTemplates.class.php:353 +#: ../../include/class/TreeService.class.php:427 +#: ../../include/class/TreeService.class.php:637 +msgid "Normal status" +msgstr "正常状態" + +#: ../../include/class/ModuleTemplates.class.php:337 #, php-format msgid "Template %s successfully updated" msgstr "テンプレート %s を更新しました" -#: ../../include/class/ModuleTemplates.class.php:400 +#: ../../include/class/ModuleTemplates.class.php:384 #, php-format msgid "Template %s successfully created" msgstr "テンプレート %s を作成しました" -#: ../../include/class/ModuleTemplates.class.php:402 +#: ../../include/class/ModuleTemplates.class.php:386 msgid "Error creating template" msgstr "テンプレート作成エラー" -#: ../../include/class/ModuleTemplates.class.php:410 +#: ../../include/class/ModuleTemplates.class.php:394 #, php-format msgid "Template %s successfully deleted" msgstr "テンプレート %s を削除しました" -#: ../../include/class/ModuleTemplates.class.php:412 +#: ../../include/class/ModuleTemplates.class.php:396 #, php-format msgid "Error deleting %s template" msgstr "%s テンプレートの削除エラー" -#: ../../include/class/ModuleTemplates.class.php:560 +#: ../../include/class/ModuleTemplates.class.php:507 msgid "Module successfully deleted" msgstr "モジュールを削除しました" -#: ../../include/class/ModuleTemplates.class.php:562 +#: ../../include/class/ModuleTemplates.class.php:509 msgid "Error deleting module" msgstr "モジュール削除エラー" -#: ../../include/class/ModuleTemplates.class.php:573 +#: ../../include/class/ModuleTemplates.class.php:520 msgid "Block successfully deleted" msgstr "ブロックを削除しました" -#: ../../include/class/ModuleTemplates.class.php:575 +#: ../../include/class/ModuleTemplates.class.php:522 msgid "Error deleting block" msgstr "ブロック削除エラー" -#: ../../include/class/ModuleTemplates.class.php:587 +#: ../../include/class/ModuleTemplates.class.php:534 msgid "All templates deleted" msgstr "全テンプレートを削除しました" -#: ../../include/class/ModuleTemplates.class.php:589 +#: ../../include/class/ModuleTemplates.class.php:536 msgid "Error deleting all templates" msgstr "全テンプレートの削除エラー" -#: ../../include/class/ModuleTemplates.class.php:598 +#: ../../include/class/ModuleTemplates.class.php:545 msgid "Selected templates deleted" msgstr "選択したテンプレートを削除しました" -#: ../../include/class/ModuleTemplates.class.php:600 +#: ../../include/class/ModuleTemplates.class.php:547 msgid "Error deleting selected templates" msgstr "選択したテンプレートの削除エラー" -#: ../../include/class/ModuleTemplates.class.php:612 +#: ../../include/class/ModuleTemplates.class.php:559 msgid "Something gone wrong. Please, try again" msgstr "何らかの問題が発生しました。もう一度試してください。" -#: ../../include/class/ModuleTemplates.class.php:663 +#: ../../include/class/ModuleTemplates.class.php:610 msgid "The modules is already added" msgstr "モジュールはすでに追加されています" -#: ../../include/class/ModuleTemplates.class.php:1112 -#: ../../include/class/ModuleTemplates.class.php:1384 +#: ../../include/class/ModuleTemplates.class.php:1097 +#: ../../include/class/ModuleTemplates.class.php:1361 msgid "Add components" msgstr "全コンポーネント" -#: ../../include/class/ModuleTemplates.class.php:1164 -#: ../../include/class/ModuleTemplates.class.php:1299 +#: ../../include/class/ModuleTemplates.class.php:1139 +#: ../../include/class/ModuleTemplates.class.php:1274 msgid "No module blocks for this profile" msgstr "このプロファイルにはモジュールブロックがありません" -#: ../../include/class/ModuleTemplates.class.php:1187 +#: ../../include/class/ModuleTemplates.class.php:1162 msgid "Delete this block" msgstr "このブロックを削除" -#: ../../include/class/ModuleTemplates.class.php:1189 +#: ../../include/class/ModuleTemplates.class.php:1164 msgid "Do you want delete this block?" msgstr "このブロックを削除しますか?" -#: ../../include/class/ModuleTemplates.class.php:1284 +#: ../../include/class/ModuleTemplates.class.php:1210 +msgid "Network module" +msgstr "ネットワークモジュール" + +#: ../../include/class/ModuleTemplates.class.php:1221 +msgid "WMI module" +msgstr "WMIモジュール" + +#: ../../include/class/ModuleTemplates.class.php:1232 +msgid "Plug-in module" +msgstr "プラグインモジュール" + +#: ../../include/class/ModuleTemplates.class.php:1259 msgid "Delete this module" msgstr "このモジュールを削除" -#: ../../include/class/ModuleTemplates.class.php:1286 +#: ../../include/class/ModuleTemplates.class.php:1261 msgid "Do you want delete this module?" msgstr "このモジュールを削除しますか?" -#: ../../include/class/ModuleTemplates.class.php:1477 +#: ../../include/class/ModuleTemplates.class.php:1454 msgid "Do you want delete all templates?" msgstr "全テンプレートを削除しますか?" -#: ../../include/class/ModuleTemplates.class.php:1480 +#: ../../include/class/ModuleTemplates.class.php:1457 msgid "Do you want delete the selected templates?" msgstr "選択したテンプレートを削除しますか?" -#: ../../include/class/ConsoleSupervisor.php:834 +#: ../../include/class/ConsoleSupervisor.php:622 +#: ../../include/class/ConsoleSupervisor.php:635 +msgid "Incorrect config value" +msgstr "設定値が不正です" + +#: ../../include/class/ConsoleSupervisor.php:677 +msgid "Access statistics performance" +msgstr "アクセス統計パフォーマンス" + +#: ../../include/class/ConsoleSupervisor.php:679 +msgid "" +"Usage of agent access statistics IS NOT RECOMMENDED on systems with more than " +"200 agents due performance penalty" +msgstr "" +"200 を超えるエージェントが存在するシステムでは、パフォーマンスが低下するため、" +"エージェントアクセス統計の使用は推奨されません。" + +#: ../../include/class/ConsoleSupervisor.php:989 msgid "Limited mode." msgstr "制限モード" -#: ../../include/class/ConsoleSupervisor.php:848 +#: ../../include/class/ConsoleSupervisor.php:1003 msgid "License is about to expire" msgstr "ライセンスの有効期限が近づいています" -#: ../../include/class/ConsoleSupervisor.php:851 +#: ../../include/class/ConsoleSupervisor.php:1006 msgid "Support is about to expire" msgstr "サポートの有効期限が近づいています" -#: ../../include/class/ConsoleSupervisor.php:869 +#: ../../include/class/ConsoleSupervisor.php:1024 msgid "Expired license" msgstr "ライセンス切れ" -#: ../../include/class/ConsoleSupervisor.php:870 +#: ../../include/class/ConsoleSupervisor.php:1025 msgid "Your license has expired. Please, contact our sales department." msgstr "ライセンスが切れています。営業窓口までご連絡ください。" -#: ../../include/class/ConsoleSupervisor.php:872 +#: ../../include/class/ConsoleSupervisor.php:1027 msgid "Support expired" msgstr "サポートの有効期限が切れています" -#: ../../include/class/ConsoleSupervisor.php:873 +#: ../../include/class/ConsoleSupervisor.php:1028 msgid "This license is outside of support. Please, contact our sales department." msgstr "このライセンスはサポート外です。販売元の営業に連絡してください。" -#: ../../include/class/ConsoleSupervisor.php:954 +#: ../../include/class/ConsoleSupervisor.php:1109 msgid "Attachment directory is not writable" msgstr "添付ファイルディレクトリ書き込み不可" -#: ../../include/class/ConsoleSupervisor.php:956 +#: ../../include/class/ConsoleSupervisor.php:1111 #, php-format msgid "" "Directory %s is not writable. Please, configure corresponding permissions." msgstr "" "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" -#: ../../include/class/ConsoleSupervisor.php:976 +#: ../../include/class/ConsoleSupervisor.php:1131 msgid "There are too many files in attachment directory" msgstr "添付ファイルディレクトリに多くのファイルがあります" -#: ../../include/class/ConsoleSupervisor.php:978 +#: ../../include/class/ConsoleSupervisor.php:1133 #, php-format msgid "" "There are more than %d files in attachment, consider cleaning up attachment " @@ -47324,51 +48659,51 @@ msgstr "" "attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリ" "を手動で整理することを検討してください。" -#: ../../include/class/ConsoleSupervisor.php:1010 +#: ../../include/class/ConsoleSupervisor.php:1165 msgid "Remote configuration directory is not readable" msgstr "リモート設定ディレクトリが読めません" -#: ../../include/class/ConsoleSupervisor.php:1012 +#: ../../include/class/ConsoleSupervisor.php:1167 #, php-format msgid "" "Remote configuration directory %s is not readable. Please, adjust " "configuration." msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1029 +#: ../../include/class/ConsoleSupervisor.php:1184 msgid "Remote configuration directory is not writable" msgstr "リモート設定ディレクトリに書けません" -#: ../../include/class/ConsoleSupervisor.php:1031 +#: ../../include/class/ConsoleSupervisor.php:1186 #, php-format msgid "" "Remote configuration directory %s is not writable. Please, adjust " "configuration." msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1047 +#: ../../include/class/ConsoleSupervisor.php:1202 msgid "Remote collections directory is not writable" msgstr "リモートコレクションディレクトリに書き込めません" -#: ../../include/class/ConsoleSupervisor.php:1049 +#: ../../include/class/ConsoleSupervisor.php:1204 #, php-format msgid "Collections directory %s is not writable. Please, adjust configuration." msgstr "コレクションディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1065 +#: ../../include/class/ConsoleSupervisor.php:1220 msgid "Remote md5 directory is not writable" msgstr "リモート md5 ディレクトリに書き込めません" -#: ../../include/class/ConsoleSupervisor.php:1067 +#: ../../include/class/ConsoleSupervisor.php:1222 #, php-format msgid "MD5 directory %s is not writable. Please, adjust configuration." msgstr "MDS ディレクトリ %s に書き込めません。設定を調整してください。" -#: ../../include/class/ConsoleSupervisor.php:1095 +#: ../../include/class/ConsoleSupervisor.php:1250 msgid "There are too much files in spool" msgstr "スプールに多くのファイルがあります" -#: ../../include/class/ConsoleSupervisor.php:1097 +#: ../../include/class/ConsoleSupervisor.php:1252 #, php-format msgid "" "There are more than %d files in %s. Consider checking DataServer performance" @@ -47376,27 +48711,27 @@ msgstr "" "%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してく" "ださい。" -#: ../../include/class/ConsoleSupervisor.php:1118 +#: ../../include/class/ConsoleSupervisor.php:1273 msgid "There are too many BADXML files in spool" msgstr "スプールに BADXML ファイルが大量にあります" -#: ../../include/class/ConsoleSupervisor.php:1120 +#: ../../include/class/ConsoleSupervisor.php:1275 #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "" "%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくだ" "さい。" -#: ../../include/class/ConsoleSupervisor.php:1207 +#: ../../include/class/ConsoleSupervisor.php:1362 #, php-format msgid "%s (%s) is lacking performance." msgstr "%s (%s) はパフォーマンスが低下しています。" -#: ../../include/class/ConsoleSupervisor.php:1275 +#: ../../include/class/ConsoleSupervisor.php:1430 msgid "No servers available." msgstr "サーバがありません。" -#: ../../include/class/ConsoleSupervisor.php:1276 +#: ../../include/class/ConsoleSupervisor.php:1431 msgid "" "There are no servers registered in this console. Please, check installation " "guide." @@ -47404,22 +48739,22 @@ msgstr "" "コンソールに登録されたサーバがありません。インストールガイドを確認してくださ" "い。" -#: ../../include/class/ConsoleSupervisor.php:1321 +#: ../../include/class/ConsoleSupervisor.php:1476 #, php-format msgid "%s (%s) has crashed." msgstr "%s (%s) がクラッシュしました。" -#: ../../include/class/ConsoleSupervisor.php:1327 +#: ../../include/class/ConsoleSupervisor.php:1482 #, php-format msgid "%s (%s) has crashed, please check log files." msgstr "%s (%s) がクラッシュしました。ログファイルを確認してください。" -#: ../../include/class/ConsoleSupervisor.php:1334 +#: ../../include/class/ConsoleSupervisor.php:1489 #, php-format msgid "%s (%s) is not running." msgstr "%s (%s) が動作していません。" -#: ../../include/class/ConsoleSupervisor.php:1339 +#: ../../include/class/ConsoleSupervisor.php:1494 #, php-format msgid "" "%s (%s) is not running. Please, check configuration file or remove this server " @@ -47428,11 +48763,11 @@ msgstr "" "%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から" "削除してください。" -#: ../../include/class/ConsoleSupervisor.php:1391 +#: ../../include/class/ConsoleSupervisor.php:1546 msgid "No master servers found." msgstr "マスターサーバがありません。" -#: ../../include/class/ConsoleSupervisor.php:1392 +#: ../../include/class/ConsoleSupervisor.php:1547 msgid "" "At least one server must be defined to run as master. Please, check " "documentation." @@ -47440,11 +48775,11 @@ msgstr "" "少なくとも一つのサーバがマスターとして動作するように定義されている必要がありま" "す。ドキュメントを確認してください。" -#: ../../include/class/ConsoleSupervisor.php:1447 +#: ../../include/class/ConsoleSupervisor.php:1602 msgid "PHP safe mode is enabled. Some features may not work properly" msgstr "PHP safe モードが有効です。いくつかの機能は正しく動作しません。" -#: ../../include/class/ConsoleSupervisor.php:1448 +#: ../../include/class/ConsoleSupervisor.php:1603 msgid "" "To disable it, go to your PHP configuration file (php.ini) and put safe_mode = " "Off (Do not forget to restart apache process after changes)" @@ -47452,22 +48787,22 @@ msgstr "" "無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してく" "ださい。(変更後は apache プロセスの再起動を忘れないようにしてください)" -#: ../../include/class/ConsoleSupervisor.php:1466 +#: ../../include/class/ConsoleSupervisor.php:1621 #, php-format msgid "%s value in PHP configuration is not recommended" msgstr "PHP 設定の %s の値は、お勧めしません。" -#: ../../include/class/ConsoleSupervisor.php:1470 +#: ../../include/class/ConsoleSupervisor.php:1625 #, php-format msgid "Recommended value is %s" msgstr "推奨値は %s です" -#: ../../include/class/ConsoleSupervisor.php:1471 -#: ../../include/class/ConsoleSupervisor.php:1495 +#: ../../include/class/ConsoleSupervisor.php:1626 +#: ../../include/class/ConsoleSupervisor.php:1650 msgid "Unlimited" msgstr "無制限" -#: ../../include/class/ConsoleSupervisor.php:1472 +#: ../../include/class/ConsoleSupervisor.php:1627 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Do not forget to restart Apache process after)" @@ -47475,17 +48810,17 @@ msgstr "" "PHP 設定ファイル(php.ini)で変更もしくは、管理者に連絡してください。(設定後は " "apache プロセスの再起動を忘れないようにしてください)" -#: ../../include/class/ConsoleSupervisor.php:1494 -#: ../../include/class/ConsoleSupervisor.php:1518 -#: ../../include/class/ConsoleSupervisor.php:1547 -#: ../../include/class/ConsoleSupervisor.php:1628 +#: ../../include/class/ConsoleSupervisor.php:1649 +#: ../../include/class/ConsoleSupervisor.php:1673 +#: ../../include/class/ConsoleSupervisor.php:1702 +#: ../../include/class/ConsoleSupervisor.php:1783 #, php-format msgid "Recommended value is: %s" msgstr "推奨値: %s" -#: ../../include/class/ConsoleSupervisor.php:1496 -#: ../../include/class/ConsoleSupervisor.php:1520 -#: ../../include/class/ConsoleSupervisor.php:1567 +#: ../../include/class/ConsoleSupervisor.php:1651 +#: ../../include/class/ConsoleSupervisor.php:1675 +#: ../../include/class/ConsoleSupervisor.php:1722 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Dont forget restart apache process after changes)" @@ -47493,17 +48828,17 @@ msgstr "" "PHP 設定ファイル (php.ini) を変更するか、管理者へ連絡してください。(変更後は " "apache プロセスの再起動を忘れないでください)" -#: ../../include/class/ConsoleSupervisor.php:1519 -#: ../../include/class/ConsoleSupervisor.php:1548 +#: ../../include/class/ConsoleSupervisor.php:1674 +#: ../../include/class/ConsoleSupervisor.php:1703 #, php-format msgid "%s or greater" msgstr "%s または大きい" -#: ../../include/class/ConsoleSupervisor.php:1566 +#: ../../include/class/ConsoleSupervisor.php:1721 msgid "Problems with disable_functions in php.ini" msgstr "php.ini 内の disable_functions に問題があります" -#: ../../include/class/ConsoleSupervisor.php:1567 +#: ../../include/class/ConsoleSupervisor.php:1722 msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" @@ -47511,11 +48846,11 @@ msgstr "" "PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() " "を含んでいます。" -#: ../../include/class/ConsoleSupervisor.php:1583 +#: ../../include/class/ConsoleSupervisor.php:1738 msgid "chromium is not installed" msgstr "chromium がインストールされていません" -#: ../../include/class/ConsoleSupervisor.php:1584 +#: ../../include/class/ConsoleSupervisor.php:1739 msgid "" "To be able to create images of the graphs for PDFs, please install the " "chromium extension. For that, it is necessary to follow these steps:" @@ -47523,11 +48858,11 @@ msgstr "" "PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールして" "ください。それには、以下のステップを行う必要があります。" -#: ../../include/class/ConsoleSupervisor.php:1605 +#: ../../include/class/ConsoleSupervisor.php:1760 msgid "PHP UPDATE REQUIRED" msgstr "PHP のアップデートが必要です" -#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../include/class/ConsoleSupervisor.php:1761 #: ../../general/php_message.php:30 msgid "" "For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " @@ -47536,41 +48871,41 @@ msgstr "" "Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があ" "ります。" -#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../include/class/ConsoleSupervisor.php:1761 #: ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "そうしないと、機能が動作しません。" -#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../include/class/ConsoleSupervisor.php:1761 #: ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "PDF フォーマットでのレポートダウンロード" -#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../include/class/ConsoleSupervisor.php:1761 #: ../../general/php_message.php:34 msgid "Emails Sending" msgstr "メール送信" -#: ../../include/class/ConsoleSupervisor.php:1606 +#: ../../include/class/ConsoleSupervisor.php:1761 #: ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "メタコンソールコレクション" -#: ../../include/class/ConsoleSupervisor.php:1672 +#: ../../include/class/ConsoleSupervisor.php:1827 msgid "Historical database not available" msgstr "ヒストリデータベースがありません" -#: ../../include/class/ConsoleSupervisor.php:1673 +#: ../../include/class/ConsoleSupervisor.php:1828 msgid "" "Historical database is enabled, though not accessible with the current " "configuration." msgstr "ヒストリデータベースが有効ですが、現在の設定でアクセスできません。" -#: ../../include/class/ConsoleSupervisor.php:1716 +#: ../../include/class/ConsoleSupervisor.php:1871 msgid "Database maintenance problem" msgstr "データベースメンテナンスにおける問題" -#: ../../include/class/ConsoleSupervisor.php:1718 +#: ../../include/class/ConsoleSupervisor.php:1873 #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " @@ -47581,11 +48916,11 @@ msgstr "" "を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してく" "ださい。" -#: ../../include/class/ConsoleSupervisor.php:1778 +#: ../../include/class/ConsoleSupervisor.php:1933 msgid "Historical database maintenance problem." msgstr "ヒストリデータベースにおける問題" -#: ../../include/class/ConsoleSupervisor.php:1780 +#: ../../include/class/ConsoleSupervisor.php:1935 #, php-format msgid "" "Your historical database hasn't been through maintenance for 48hrs. Please, " @@ -47596,11 +48931,11 @@ msgstr "" "プロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効" "化してください。" -#: ../../include/class/ConsoleSupervisor.php:1818 +#: ../../include/class/ConsoleSupervisor.php:1973 msgid "Historical database MR mismatch" msgstr "ヒストリデータベースの MR が一致していません" -#: ../../include/class/ConsoleSupervisor.php:1819 +#: ../../include/class/ConsoleSupervisor.php:1974 msgid "" "Your historical database is not using the same schema as the main DB. This " "could produce anomalies while storing historical data." @@ -47608,27 +48943,27 @@ msgstr "" "ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これによ" "り、ヒストリデータの保存中に異常が発生する可能性があります。" -#: ../../include/class/ConsoleSupervisor.php:1859 +#: ../../include/class/ConsoleSupervisor.php:2014 msgid "Log collector cannot connect to ElasticSearch" msgstr "ログコレクターが ElasticSearch に接続できません" -#: ../../include/class/ConsoleSupervisor.php:1860 +#: ../../include/class/ConsoleSupervisor.php:2015 msgid "ElasticSearch is not available using current configuration." msgstr "現在の設定を利用している ElasticSearch が存在しません。" -#: ../../include/class/ConsoleSupervisor.php:1929 +#: ../../include/class/ConsoleSupervisor.php:2084 msgid "Metaconsole DB is not available." msgstr "メタコンソール DB がありません。" -#: ../../include/class/ConsoleSupervisor.php:1930 +#: ../../include/class/ConsoleSupervisor.php:2085 msgid "Cannot connect with Metaconsole DB using current configuration." msgstr "現在の設定でメタコンソール DB に接続できません。" -#: ../../include/class/ConsoleSupervisor.php:1958 +#: ../../include/class/ConsoleSupervisor.php:2113 msgid "Scheduled downtime running." msgstr "計画停止実行中" -#: ../../include/class/ConsoleSupervisor.php:1959 +#: ../../include/class/ConsoleSupervisor.php:2114 msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." @@ -47636,11 +48971,11 @@ msgstr "" "計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用でき" "ません。" -#: ../../include/class/ConsoleSupervisor.php:2115 +#: ../../include/class/ConsoleSupervisor.php:2270 msgid "Downtime scheduled soon." msgstr "まもなく計画停止" -#: ../../include/class/ConsoleSupervisor.php:2117 +#: ../../include/class/ConsoleSupervisor.php:2272 #, php-format msgid "" "A scheduled downtime is going to be executed from %s to %s. Some monitoring " @@ -47649,29 +48984,29 @@ msgstr "" "計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監" "視データは利用できません。" -#: ../../include/class/ConsoleSupervisor.php:2147 +#: ../../include/class/ConsoleSupervisor.php:2302 msgid "This instance is not registered in the Update manager section" msgstr "このインスタンスは、アップデートマネージャに登録されていません。" -#: ../../include/class/ConsoleSupervisor.php:2148 +#: ../../include/class/ConsoleSupervisor.php:2303 msgid "Click here to start the registration process" msgstr "登録処理についてはこちらをクリックしてください" -#: ../../include/class/ConsoleSupervisor.php:2180 +#: ../../include/class/ConsoleSupervisor.php:2335 msgid "Default password for \"Admin\" user has not been changed" msgstr "\"admin\" ユーザのデフォルトパスワードが変更されていません" -#: ../../include/class/ConsoleSupervisor.php:2181 +#: ../../include/class/ConsoleSupervisor.php:2336 msgid "" "Please, change the default password since it is a commonly reported " "vulnerability." msgstr "脆弱性として通知されるため、デフォルトパスワードは変更してください。" -#: ../../include/class/ConsoleSupervisor.php:2216 +#: ../../include/class/ConsoleSupervisor.php:2371 msgid "Default font doesn't exist" msgstr "デフォルトのフォントがありません" -#: ../../include/class/ConsoleSupervisor.php:2217 +#: ../../include/class/ConsoleSupervisor.php:2372 msgid "" "Your defined font doesn't exist or is not defined. Please, check font " "parameters in your config" @@ -47679,11 +49014,11 @@ msgstr "" "定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラ" "メータを確認してください。" -#: ../../include/class/ConsoleSupervisor.php:2242 +#: ../../include/class/ConsoleSupervisor.php:2397 msgid "Developer mode is enabled" msgstr "開発モードが有効です" -#: ../../include/class/ConsoleSupervisor.php:2244 +#: ../../include/class/ConsoleSupervisor.php:2399 #, php-format msgid "" "Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and " @@ -47693,11 +49028,11 @@ msgstr "" "%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境で" "は無効化してください。この定義は、メインの index.php ファイル内にあります。" -#: ../../include/class/ConsoleSupervisor.php:2268 +#: ../../include/class/ConsoleSupervisor.php:2423 msgid "Event storm protection is enabled." msgstr "イベントストーム保護が有効です。" -#: ../../include/class/ConsoleSupervisor.php:2269 +#: ../../include/class/ConsoleSupervisor.php:2424 msgid "" "Some events may get lost while this mode is enabled. The server must be " "restarted after altering this setting." @@ -47705,24 +49040,24 @@ msgstr "" "このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変" "更した後はサーバを再起動する必要があります。" -#: ../../include/class/ConsoleSupervisor.php:2295 +#: ../../include/class/ConsoleSupervisor.php:2450 msgid "Failed to retrieve updates, please configure utility" msgstr "アップデートの取得に失敗しました。ユーティリティの設定をしてください。" -#: ../../include/class/ConsoleSupervisor.php:2313 +#: ../../include/class/ConsoleSupervisor.php:2468 #, php-format msgid "New %s Console update" msgstr "新規コンソールアップデート %s" -#: ../../include/class/ConsoleSupervisor.php:2316 +#: ../../include/class/ConsoleSupervisor.php:2471 msgid "There is a new update available. Please.マイナーリリースアップデートについて。" -#: ../../include/class/ConsoleSupervisor.php:2380 +#: ../../include/class/ConsoleSupervisor.php:2535 msgid "Discovery relies on an appropriate cron setup." msgstr "自動検出は、適切な cron 設定に依存しています。" -#: ../../include/class/ConsoleSupervisor.php:2396 +#: ../../include/class/ConsoleSupervisor.php:2551 msgid "Please, make sure process is not locked." msgstr "プロセスがロックされていないことを確認してください。" -#: ../../include/class/ConsoleSupervisor.php:2407 +#: ../../include/class/ConsoleSupervisor.php:2562 msgid "DiscoveryConsoleTasks is not configured." msgstr "自動検出コンソールタスクが設定されていません。" -#: ../../include/class/ConsoleSupervisor.php:2498 +#: ../../include/class/ConsoleSupervisor.php:2653 #, php-format msgid "%s version misaligned with Console" msgstr "%s バージョンがコンソールと食い違っています" -#: ../../include/class/ConsoleSupervisor.php:2502 +#: ../../include/class/ConsoleSupervisor.php:2657 #, php-format msgid "" "Server %s and this console have different versions. This might cause several " @@ -47757,19 +49092,19 @@ msgstr "" "%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作" "が発生する場合があります。 サーバを更新してください。" -#: ../../include/class/ConsoleSupervisor.php:2565 +#: ../../include/class/ConsoleSupervisor.php:2720 msgid "AllowOverride is disabled" msgstr "AllowOverride が無効です" -#: ../../include/class/ConsoleSupervisor.php:2611 +#: ../../include/class/ConsoleSupervisor.php:2766 msgid "Desynchronized operation on the node " msgstr "ノードでの非同期操作 " -#: ../../include/class/ConsoleSupervisor.php:2634 +#: ../../include/class/ConsoleSupervisor.php:2789 msgid "Pandora FMS console log file changed location" msgstr "Pandora FMS コンソールログの場所が変わりました" -#: ../../include/class/ConsoleSupervisor.php:2638 +#: ../../include/class/ConsoleSupervisor.php:2793 #, php-format msgid "" "Pandora FMS console log file has been moved to new location %s/log. Currently " @@ -47779,11 +49114,11 @@ msgstr "" "Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いロ" "グファイルがあります。 削除を検討してください。" -#: ../../include/class/ConsoleSupervisor.php:2673 +#: ../../include/class/ConsoleSupervisor.php:2828 msgid "Pandora FMS audit log file changed location" msgstr "Pandora FMS 監査ログの場所が変わりました" -#: ../../include/class/ConsoleSupervisor.php:2677 +#: ../../include/class/ConsoleSupervisor.php:2832 #, php-format msgid "" "Pandora FMS audit log file has been moved to new location %s/log. Currently " @@ -47793,12 +49128,12 @@ msgstr "" "Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファ" "イルがあります。 削除を検討してください。" -#: ../../include/class/ConsoleSupervisor.php:2735 +#: ../../include/class/ConsoleSupervisor.php:2890 #, php-format msgid "Node %s sync queue length exceeded, " msgstr "ノード %s の同期キューの長さを超えました。" -#: ../../include/class/ConsoleSupervisor.php:2737 +#: ../../include/class/ConsoleSupervisor.php:2892 #, php-format msgid "" "Synchronization queue lenght for node %s is %d items, this value should be 0 " @@ -47807,12 +49142,12 @@ msgstr "" "ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下であ" "る必要があります。キューの状態を確認してください。" -#: ../../include/class/ConsoleSupervisor.php:2790 +#: ../../include/class/ConsoleSupervisor.php:2945 #, php-format msgid "Node %s sync queue failed, " msgstr "ノード %s の同期キューが失敗しました。" -#: ../../include/class/ConsoleSupervisor.php:2792 +#: ../../include/class/ConsoleSupervisor.php:2947 #, php-format msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " @@ -47821,6 +49156,14 @@ msgstr "" "ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくだ" "さい。" +#: ../../include/class/ConsoleSupervisor.php:2978 +msgid "Agent dependency error" +msgstr "エージェント依存関係エラー" + +#: ../../include/class/ConsoleSupervisor.php:2980 +msgid "There are omnishell agents with dependency errors" +msgstr "依存関係エラーの omnishell エージェントがあります" + #: ../../include/class/CalendarManager.class.php:161 msgid "Alert calendar list" msgstr "アラートカレンダー一覧" @@ -47915,44 +49258,44 @@ msgstr "設定ウインドウのキャンセル" msgid "Are you sure you want to cancel this tutorial?" msgstr "このチュートリアルをキャンセルしても良いですか?" -#: ../../include/class/WelcomeWindow.class.php:428 +#: ../../include/class/WelcomeWindow.class.php:423 msgid "Please ensure mail configuration matches your needs" msgstr "メール設定がニーズに合っていることを確認してください" -#: ../../include/class/WelcomeWindow.class.php:462 +#: ../../include/class/WelcomeWindow.class.php:460 msgid "Create an agent" msgstr "エージェント作成" -#: ../../include/class/WelcomeWindow.class.php:487 +#: ../../include/class/WelcomeWindow.class.php:488 msgid "Create a module to check if an agent is online" msgstr "エージェントがオンラインかどうかをチェックするモジュールの作成" -#: ../../include/class/WelcomeWindow.class.php:512 +#: ../../include/class/WelcomeWindow.class.php:516 msgid "Be warned if something is wrong, create an alert on the module" msgstr "何かが障害の場合は警告を受けるよう、モジュールにアラートを作成します" -#: ../../include/class/WelcomeWindow.class.php:537 +#: ../../include/class/WelcomeWindow.class.php:544 msgid "Discover hosts and devices in your network" msgstr "ネットワーク内のホストおよびデバイスの検出" -#: ../../include/class/WelcomeWindow.class.php:565 +#: ../../include/class/WelcomeWindow.class.php:575 msgid "If something is not working as expected, look for this icon and report!" msgstr "期待どおりに機能しない場合は、このアイコンとレポートを探してください!" -#: ../../include/class/SatelliteCollection.class.php:304 +#: ../../include/class/SatelliteCollection.class.php:306 msgid "Error adding collection" msgstr "コレクション追加エラー" -#: ../../include/class/SatelliteCollection.class.php:306 -#: ../../include/class/SatelliteCollection.class.php:325 +#: ../../include/class/SatelliteCollection.class.php:308 +#: ../../include/class/SatelliteCollection.class.php:327 msgid "Collection " msgstr "コレクション" -#: ../../include/class/SatelliteCollection.class.php:323 +#: ../../include/class/SatelliteCollection.class.php:325 msgid "Error deleting collection" msgstr "コレクション削除エラー" -#: ../../include/class/SatelliteCollection.class.php:547 +#: ../../include/class/SatelliteCollection.class.php:533 msgid "Add collection" msgstr "コレクション追加" @@ -47976,127 +49319,123 @@ msgstr "モジュールの初回実行を待ってください" msgid "There are not defined Remote components for this performance." msgstr "この処理用に定義されたリモートコンポーネントはありません。" -#: ../../include/class/AgentWizard.class.php:584 -msgid "SNMP Walk" -msgstr "snmpwalk" - #: ../../include/class/AgentWizard.class.php:589 msgid "WMI Explorer" msgstr "WMI エクスプローラ" -#: ../../include/class/AgentWizard.class.php:663 +#: ../../include/class/AgentWizard.class.php:664 msgid "namespace" msgstr "名前空間" -#: ../../include/class/AgentWizard.class.php:1089 +#: ../../include/class/AgentWizard.class.php:1092 #, php-format msgid "The PEN (%s) is not registered." msgstr "PEN (%s) が登録されていません。" -#: ../../include/class/AgentWizard.class.php:1156 +#: ../../include/class/AgentWizard.class.php:1159 msgid "The SNMP Walk does not return anything with the received arguments." msgstr "snmpwalk が与えられた引数で何も返しません。" -#: ../../include/class/AgentWizard.class.php:1216 +#: ../../include/class/AgentWizard.class.php:1219 #, php-format msgid "The target host response with an error: %s" msgstr "対象ホストの応答がエラーです: %s" -#: ../../include/class/AgentWizard.class.php:1266 +#: ../../include/class/AgentWizard.class.php:1269 msgid "No selected modules" msgstr "モジュールが選択されていません" -#: ../../include/class/AgentWizard.class.php:1303 +#: ../../include/class/AgentWizard.class.php:1306 msgid "Module exists in policy" msgstr "モジュールがポリシーに存在します" -#: ../../include/class/AgentWizard.class.php:1313 +#: ../../include/class/AgentWizard.class.php:1316 msgid "Module exists in agent" msgstr "モジュールがエージェントに存在します" -#: ../../include/class/AgentWizard.class.php:1320 +#: ../../include/class/AgentWizard.class.php:1323 msgid "Module with the same name in the module creation list" msgstr "モジュール作成一覧に同じ名前のモジュールがあります" -#: ../../include/class/AgentWizard.class.php:1738 +#: ../../include/class/AgentWizard.class.php:1741 #, php-format msgid "Module \"%s\" exits in this policy" msgstr "モジュール \"%s\" がこのポリシーに存在します" -#: ../../include/class/AgentWizard.class.php:1840 -#: ../../include/class/AgentWizard.class.php:2277 +#: ../../include/class/AgentWizard.class.php:1843 +#: ../../include/class/AgentWizard.class.php:2280 #, php-format msgid "Module %s module_exec not configuration" msgstr "モジュール %s で module_exec を設定できません" -#: ../../include/class/AgentWizard.class.php:1996 -#: ../../include/class/AgentWizard.class.php:2452 +#: ../../include/class/AgentWizard.class.php:1999 +#: ../../include/class/AgentWizard.class.php:2455 #, php-format msgid "Module %s satellite execution not configuration" msgstr "モジュール %s でサテライト実行を設定できません" -#: ../../include/class/AgentWizard.class.php:2097 +#: ../../include/class/AgentWizard.class.php:2100 #, php-format msgid "Module \"%s\" problems insert in bbdd" msgstr "モジュール \"%s\" で DB へのインサートで問題があります" -#: ../../include/class/AgentWizard.class.php:2105 -#: ../../include/class/AgentWizard.class.php:2544 +#: ../../include/class/AgentWizard.class.php:2108 +#: ../../include/class/AgentWizard.class.php:2547 msgid "Modules created" msgstr "モジュールを作成しました" -#: ../../include/class/AgentWizard.class.php:2135 +#: ../../include/class/AgentWizard.class.php:2138 #, php-format msgid "Module \"%s\" exists in this agent" msgstr "モジュール \"%s” はこのエージェントに存在します" -#: ../../include/class/AgentWizard.class.php:2737 +#: ../../include/class/AgentWizard.class.php:2740 msgid "Select all filtered interfaces" msgstr "全フィルタ済インタフェースを選択" -#: ../../include/class/AgentWizard.class.php:2760 +#: ../../include/class/AgentWizard.class.php:2763 msgid "OperStatus UP" msgstr "OperStatus UP" -#: ../../include/class/AgentWizard.class.php:2771 +#: ../../include/class/AgentWizard.class.php:2774 msgid "AdminStatus UP" msgstr "AdminStatus UP" -#: ../../include/class/AgentWizard.class.php:3169 -#: ../../include/class/AgentWizard.class.php:3473 +#: ../../include/class/AgentWizard.class.php:3172 +#: ../../include/class/AgentWizard.class.php:3476 msgid "No information could be retrieved." msgstr "情報を取得できませんでした。" -#: ../../include/class/AgentWizard.class.php:3763 +#: ../../include/class/AgentWizard.class.php:3766 msgid "Create modules" msgstr "モジュール作成" -#: ../../include/class/AgentWizard.class.php:4072 +#: ../../include/class/AgentWizard.class.php:4075 msgid "Add general monitoring for all selected interfaces" msgstr "全フィルタ済インタフェースの一般的な監視を追加" -#: ../../include/class/AgentWizard.class.php:4093 -#: ../../include/class/AgentWizard.class.php:4094 -#: ../../include/class/AgentWizard.class.php:4113 -#: ../../include/class/AgentWizard.class.php:4114 +#: ../../include/class/AgentWizard.class.php:4096 +#: ../../include/class/AgentWizard.class.php:4097 +#: ../../include/class/AgentWizard.class.php:4116 +#: ../../include/class/AgentWizard.class.php:4117 msgid "Modules selected" msgstr "選択済モジュール" -#: ../../include/class/AgentWizard.class.php:4182 +#: ../../include/class/AgentWizard.class.php:4185 msgid "Module info" msgstr "モジュール情報" -#: ../../include/class/AgentWizard.class.php:4211 +#: ../../include/class/AgentWizard.class.php:4217 msgid "Current value" msgstr "現在の値" -#: ../../include/class/AgentWizard.class.php:5698 +#: ../../include/class/AgentWizard.class.php:5716 #, php-format msgid "The operation '%s' is not permitted. Review for remote components." msgstr "" "'%s' の操作は許可されていません。リモートコンポーネントを確認してください。" -#: ../../include/class/AgentWizard.class.php:6164 +#: ../../include/class/AgentWizard.class.php:6182 msgid "Modules about to be created" msgstr "作成しようとしているモジュール" @@ -48108,396 +49447,396 @@ msgstr "変更を保存しました。" msgid "Changes not saved." msgstr "変更は保存していません。" -#: ../../include/class/ExternalTools.class.php:233 -#: ../../include/class/ExternalTools.class.php:263 -#: ../../include/class/ExternalTools.class.php:293 +#: ../../include/class/ExternalTools.class.php:240 +#: ../../include/class/ExternalTools.class.php:275 +#: ../../include/class/ExternalTools.class.php:310 msgid "Play sound" msgstr "サウンドの再生" -#: ../../include/class/ExternalTools.class.php:313 -msgid "Traceroute path" -msgstr "Traceroute パス" - -#: ../../include/class/ExternalTools.class.php:316 -msgid "Ping path" -msgstr "Ping パス" - -#: ../../include/class/ExternalTools.class.php:319 -msgid "Nmap path" -msgstr "Nmap パス" - -#: ../../include/class/ExternalTools.class.php:322 -msgid "Dig path" -msgstr "dig パス" - -#: ../../include/class/ExternalTools.class.php:325 +#: ../../include/class/ExternalTools.class.php:335 msgid "Snmpget path" msgstr "snmpget パス" -#: ../../include/class/ExternalTools.class.php:331 +#: ../../include/class/ExternalTools.class.php:340 +msgid "Traceroute path" +msgstr "Traceroute パス" + +#: ../../include/class/ExternalTools.class.php:344 +msgid "Ping path" +msgstr "Ping パス" + +#: ../../include/class/ExternalTools.class.php:349 +msgid "Nmap path" +msgstr "Nmap パス" + +#: ../../include/class/ExternalTools.class.php:353 +msgid "Dig path" +msgstr "dig パス" + +#: ../../include/class/ExternalTools.class.php:360 msgid "Custom commands" msgstr "カスタムコマンド" -#: ../../include/class/ExternalTools.class.php:342 +#: ../../include/class/ExternalTools.class.php:371 msgid "Add new custom command" msgstr "新たなカスタムコマンドの追加" -#: ../../include/class/ExternalTools.class.php:354 +#: ../../include/class/ExternalTools.class.php:383 msgid "Adding `_address_` macro will use agent's IP when perform the execution" msgstr "`_address_`マクロを追加すると、実行時にエージェントの IP が使用されます" -#: ../../include/class/ExternalTools.class.php:438 +#: ../../include/class/ExternalTools.class.php:469 msgid "Delete this custom command" msgstr "このカスタムコマンドを削除" -#: ../../include/class/ExternalTools.class.php:486 +#: ../../include/class/ExternalTools.class.php:517 msgid "The agent doesn`t have an IP yet" msgstr "エージェントはまだ IP がありません" -#: ../../include/class/ExternalTools.class.php:508 +#: ../../include/class/ExternalTools.class.php:539 msgid "Traceroute" msgstr "Traceroute" -#: ../../include/class/ExternalTools.class.php:509 +#: ../../include/class/ExternalTools.class.php:540 msgid "Ping host & Latency" msgstr "ホストへの ping および遅延" -#: ../../include/class/ExternalTools.class.php:510 +#: ../../include/class/ExternalTools.class.php:541 msgid "SNMP Interface status" msgstr "SNMP インタフェースの状態" -#: ../../include/class/ExternalTools.class.php:511 +#: ../../include/class/ExternalTools.class.php:542 msgid "Basic TCP Port Scan" msgstr "基本 TCP ポートスキャン" -#: ../../include/class/ExternalTools.class.php:512 +#: ../../include/class/ExternalTools.class.php:543 msgid "DiG/Whois Lookup" msgstr "DiG/Whois ルックアップ" -#: ../../include/class/ExternalTools.class.php:542 +#: ../../include/class/ExternalTools.class.php:589 msgid "IP Adress" msgstr "IP アドレス" -#: ../../include/class/ExternalTools.class.php:554 +#: ../../include/class/ExternalTools.class.php:607 msgid "SNMP Version" msgstr "SNMPバージョン" -#: ../../include/class/ExternalTools.class.php:713 +#: ../../include/class/ExternalTools.class.php:787 msgid "Command not response" msgstr "コマンドが応答しません" -#: ../../include/class/ExternalTools.class.php:722 +#: ../../include/class/ExternalTools.class.php:796 msgid "The command failed and obtained the return code:" msgstr "コマンドが失敗し、戻り値が返りました:" -#: ../../include/class/ExternalTools.class.php:732 +#: ../../include/class/ExternalTools.class.php:806 msgid "" "Something went wrong while perform the execution. Please check the " "configuration." msgstr "実行中に何らかの問題が発生しました。設定を確認してください。" -#: ../../include/class/ExternalTools.class.php:769 +#: ../../include/class/ExternalTools.class.php:845 msgid "SNMP information for " msgstr "SNMP情報: " -#: ../../include/class/ExternalTools.class.php:774 -#: ../../include/class/ExternalTools.class.php:786 +#: ../../include/class/ExternalTools.class.php:850 +#: ../../include/class/ExternalTools.class.php:862 msgid "Target unreachable." msgstr "対象に到達できません。" -#: ../../include/class/ExternalTools.class.php:777 +#: ../../include/class/ExternalTools.class.php:853 msgid "Uptime" msgstr "稼働時間" -#: ../../include/class/ExternalTools.class.php:789 +#: ../../include/class/ExternalTools.class.php:865 msgid "Device info" msgstr "デバイス情報" -#: ../../include/class/ExternalTools.class.php:800 +#: ../../include/class/ExternalTools.class.php:876 msgid "Interface" msgstr "インタフェース" -#: ../../include/class/ExternalTools.class.php:831 +#: ../../include/class/ExternalTools.class.php:907 msgid "Domain and IP information for " msgstr "ドメインおよびIP情報: " -#: ../../include/class/ExternalTools.class.php:836 +#: ../../include/class/ExternalTools.class.php:912 msgid "Dig executable does not exist." msgstr "digコマンドがありません。" -#: ../../include/class/ExternalTools.class.php:845 +#: ../../include/class/ExternalTools.class.php:921 msgid "Whois executable does not exist." msgstr "whoisコマンドがありません。" -#: ../../include/class/ExternalTools.class.php:857 +#: ../../include/class/ExternalTools.class.php:933 msgid "Traceroute executable does not exist." msgstr "traceroute コマンドがありません。" -#: ../../include/class/ExternalTools.class.php:860 +#: ../../include/class/ExternalTools.class.php:936 #, php-format msgid "Traceroute to %s" msgstr "%s への traceroute" -#: ../../include/class/ExternalTools.class.php:868 +#: ../../include/class/ExternalTools.class.php:944 msgid "Ping executable does not exist." msgstr "pingコマンドがありません。" -#: ../../include/class/ExternalTools.class.php:871 +#: ../../include/class/ExternalTools.class.php:947 #, php-format msgid "Ping to %s" msgstr "%s への ping" -#: ../../include/class/ExternalTools.class.php:879 +#: ../../include/class/ExternalTools.class.php:955 msgid "Nmap executable does not exist." msgstr "nmapコマンドがありません。" -#: ../../include/class/ExternalTools.class.php:882 +#: ../../include/class/ExternalTools.class.php:958 #, php-format msgid "Basic TCP Scan on %s" msgstr "%s の基本 TCP スキャン" -#: ../../include/class/ExternalTools.class.php:900 +#: ../../include/class/ExternalTools.class.php:976 #, php-format msgid "Performing %s execution on %s" msgstr "%s 実行を %s にて実施中" -#: ../../include/class/ExternalTools.class.php:902 +#: ../../include/class/ExternalTools.class.php:978 #, php-format msgid "Performing %s execution" msgstr "%s を実行中" -#: ../../include/functions_reporting.php:366 +#: ../../include/functions_reporting.php:371 msgid " agents" msgstr " エージェント" -#: ../../include/functions_reporting.php:376 +#: ../../include/functions_reporting.php:381 msgid " modules" msgstr " モジュール" -#: ../../include/functions_reporting.php:1520 +#: ../../include/functions_reporting.php:1525 msgid "Top N" msgstr "トップ N" -#: ../../include/functions_reporting.php:1706 +#: ../../include/functions_reporting.php:1711 msgid "Insuficient data" msgstr "不十分なデータ" -#: ../../include/functions_reporting.php:2072 +#: ../../include/functions_reporting.php:2077 msgid "Event Report Group" msgstr "イベントレポートグループ" -#: ../../include/functions_reporting.php:2102 +#: ../../include/functions_reporting.php:2107 msgid "Exclude " msgstr "除外 " -#: ../../include/functions_reporting.php:2443 +#: ../../include/functions_reporting.php:2448 msgid "Event Report Module" msgstr "イベントレポートモジュール" -#: ../../include/functions_reporting.php:3231 +#: ../../include/functions_reporting.php:3335 msgid "Agent/Modules" msgstr "エージェント/モジュール" -#: ../../include/functions_reporting.php:3328 +#: ../../include/functions_reporting.php:3432 msgid "Agent/Modules Status" msgstr "エージェント/モジュール状態" -#: ../../include/functions_reporting.php:3477 +#: ../../include/functions_reporting.php:3581 msgid "Exception - Everything" msgstr "例外 - 全て" -#: ../../include/functions_reporting.php:3483 +#: ../../include/functions_reporting.php:3587 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "例外 - モジュールが %s 以上" -#: ../../include/functions_reporting.php:3486 +#: ../../include/functions_reporting.php:3590 #, php-format msgid "Modules over or equal to %s" msgstr "%s 以上のモジュール" -#: ../../include/functions_reporting.php:3491 +#: ../../include/functions_reporting.php:3595 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "例外 - モジュールが %s 以下" -#: ../../include/functions_reporting.php:3494 +#: ../../include/functions_reporting.php:3598 #, php-format msgid "Modules under or equal to %s" msgstr "%s 以下のモジュール" -#: ../../include/functions_reporting.php:3499 +#: ../../include/functions_reporting.php:3603 #, php-format msgid "Exception - Modules under %s" msgstr "例外 - モジュールが %s 未満" -#: ../../include/functions_reporting.php:3502 +#: ../../include/functions_reporting.php:3606 #, php-format msgid "Modules under %s" msgstr "%s 未満のモジュール" -#: ../../include/functions_reporting.php:3507 +#: ../../include/functions_reporting.php:3611 #, php-format msgid "Exception - Modules over %s" msgstr "例外 - モジュールが %s より大きい" -#: ../../include/functions_reporting.php:3510 +#: ../../include/functions_reporting.php:3614 #, php-format msgid "Modules over %s" msgstr "%s を超えるモジュール" -#: ../../include/functions_reporting.php:3515 +#: ../../include/functions_reporting.php:3619 #, php-format msgid "Exception - Equal to %s" msgstr "例外 - %s と同じ" -#: ../../include/functions_reporting.php:3518 +#: ../../include/functions_reporting.php:3622 #, php-format msgid "Equal to %s" msgstr "%s と同じ" -#: ../../include/functions_reporting.php:3523 +#: ../../include/functions_reporting.php:3627 #, php-format msgid "Exception - Not equal to %s" msgstr "例外 - %s と異なる" -#: ../../include/functions_reporting.php:3526 +#: ../../include/functions_reporting.php:3630 #, php-format msgid "Not equal to %s" msgstr "%s と異なる" -#: ../../include/functions_reporting.php:3530 +#: ../../include/functions_reporting.php:3634 msgid "Exception - Modules at normal status" msgstr "例外 - モジュールが正常状態" -#: ../../include/functions_reporting.php:3531 +#: ../../include/functions_reporting.php:3635 msgid "Modules at normal status" msgstr "正常状態のモジュール" -#: ../../include/functions_reporting.php:3535 +#: ../../include/functions_reporting.php:3639 msgid "Exception - Modules at critical or warning status" msgstr "例外 - モジュールが障害または警告状態" -#: ../../include/functions_reporting.php:3536 +#: ../../include/functions_reporting.php:3640 msgid "Modules at critical or warning status" msgstr "障害または警告状態のモジュール" -#: ../../include/functions_reporting.php:3816 +#: ../../include/functions_reporting.php:3920 msgid "There are no Modules under those conditions." msgstr "これらの条件のモジュールはありません。" -#: ../../include/functions_reporting.php:3820 +#: ../../include/functions_reporting.php:3924 #, php-format msgid "There are no Modules over or equal to %s." msgstr "%s 以上のモジュールがありません。" -#: ../../include/functions_reporting.php:3824 +#: ../../include/functions_reporting.php:3928 #, php-format msgid "There are no Modules less or equal to %s." msgstr "%s 以下のモジュールがありません。" -#: ../../include/functions_reporting.php:3828 +#: ../../include/functions_reporting.php:3932 #, php-format msgid "There are no Modules less %s." msgstr "%s 未満のモジュールがありません。" -#: ../../include/functions_reporting.php:3832 +#: ../../include/functions_reporting.php:3936 #, php-format msgid "There are no Modules over %s." msgstr "%s を超えるモジュールがありません。" -#: ../../include/functions_reporting.php:3836 +#: ../../include/functions_reporting.php:3940 #, php-format msgid "There are no Modules equal to %s" msgstr "%s と同じモジュールがありません。" -#: ../../include/functions_reporting.php:3840 +#: ../../include/functions_reporting.php:3944 #, php-format msgid "There are no Modules not equal to %s" msgstr "%s と異なるモジュールがありません。" -#: ../../include/functions_reporting.php:3844 +#: ../../include/functions_reporting.php:3948 msgid "There are no Modules normal status" msgstr "正常状態のモジュールがありません" -#: ../../include/functions_reporting.php:3848 +#: ../../include/functions_reporting.php:3952 msgid "There are no Modules at critial or warning status" msgstr "障害または警告状態のモジュールはありません" -#: ../../include/functions_reporting.php:4276 +#: ../../include/functions_reporting.php:4380 msgid "Event Report Agent" msgstr "イベントレポートエージェント" -#: ../../include/functions_reporting.php:4695 +#: ../../include/functions_reporting.php:4799 msgid "Database Serialized" msgstr "データベースの並び" -#: ../../include/functions_reporting.php:4891 +#: ../../include/functions_reporting.php:4995 msgid "Last Value" msgstr "最新の値" -#: ../../include/functions_reporting.php:4941 -#: ../../include/functions_reporting.php:4984 +#: ../../include/functions_reporting.php:5045 +#: ../../include/functions_reporting.php:5088 msgid "No data to display within the selected interval" msgstr "選択した期間では表示するデータがありません" -#: ../../include/functions_reporting.php:5215 +#: ../../include/functions_reporting.php:5319 msgid "Network interfaces report" msgstr "ネットワークインタフェースレポート" -#: ../../include/functions_reporting.php:5309 +#: ../../include/functions_reporting.php:5413 msgid "Custom render report" msgstr "カスタムレンダリングレポート" -#: ../../include/functions_reporting.php:5349 -#: ../../include/functions_reporting.php:5375 +#: ../../include/functions_reporting.php:5453 +#: ../../include/functions_reporting.php:5479 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "このクエリは安全ではなく、スキーマに不要な変更を適用する可能性があります" -#: ../../include/functions_reporting.php:5554 +#: ../../include/functions_reporting.php:5658 msgid "The group has no agents or none of the agents has any network interface" msgstr "" "グループにエージェントが無いか、ネットワークインタフェースのあるエージェントが" "ありません" -#: ../../include/functions_reporting.php:5579 +#: ../../include/functions_reporting.php:5683 msgid "bytes/s" msgstr "バイト/秒" -#: ../../include/functions_reporting.php:6246 +#: ../../include/functions_reporting.php:6350 msgid "SQL Graph Vertical Bars" msgstr "SQL縦棒グラフ" -#: ../../include/functions_reporting.php:6250 +#: ../../include/functions_reporting.php:6354 msgid "SQL Graph Horizontal Bars" msgstr "SQL横棒グラフ" -#: ../../include/functions_reporting.php:6254 +#: ../../include/functions_reporting.php:6358 msgid "SQL Graph Pie" msgstr "SQL円グラフ" -#: ../../include/functions_reporting.php:6481 +#: ../../include/functions_reporting.php:6585 msgid "Netflow Area" msgstr "Netflow塗りつぶしグラフ" -#: ../../include/functions_reporting.php:6485 +#: ../../include/functions_reporting.php:6589 msgid "Netflow Summary" msgstr "Netflow 概要" -#: ../../include/functions_reporting.php:6489 +#: ../../include/functions_reporting.php:6593 msgid "Netflow Data" msgstr "Netflowデータ" -#: ../../include/functions_reporting.php:6497 +#: ../../include/functions_reporting.php:6601 msgid "Unknown report" msgstr "不明レポート" -#: ../../include/functions_reporting.php:6591 +#: ../../include/functions_reporting.php:6695 msgid "Prediction Date" msgstr "予測日時" -#: ../../include/functions_reporting.php:7510 +#: ../../include/functions_reporting.php:7705 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -48506,257 +49845,253 @@ msgstr "" "password, pass, insert, update といったいくつかのトークンや単語は利用できませ" "ん。" -#: ../../include/functions_reporting.php:8924 -#: ../../include/functions_reporting.php:9642 +#: ../../include/functions_reporting.php:9118 +#: ../../include/functions_reporting.php:9836 msgid "No Address" msgstr "アドレスがありません" -#: ../../include/functions_reporting.php:9941 +#: ../../include/functions_reporting.php:10135 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "この日付範囲にデータが無いか、数値ではないタイプの監視項目です。" -#: ../../include/functions_reporting.php:9959 +#: ../../include/functions_reporting.php:10153 msgid "The monitor type is not numeric" msgstr "監視タイプは数値ではありません。" -#: ../../include/functions_reporting.php:10385 +#: ../../include/functions_reporting.php:10579 msgid "Maximum" msgstr "最大" -#: ../../include/functions_reporting.php:10463 +#: ../../include/functions_reporting.php:10657 msgid "Automatic combined graph" msgstr "自動結合グラフ" -#: ../../include/functions_reporting.php:11885 -#: ../../include/functions_reporting.php:11909 +#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12103 msgid "Server health" msgstr "サーバの正常性" -#: ../../include/functions_reporting.php:11885 +#: ../../include/functions_reporting.php:12079 #, php-format msgid "%d Downed servers" msgstr "停止サーバ数 %d" -#: ../../include/functions_reporting.php:11890 -#: ../../include/functions_reporting.php:11913 +#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12107 msgid "Monitor health" msgstr "モニタ項目の正常性" -#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:12084 #, php-format msgid "%d Not Normal monitors" msgstr "非正常数 %d" -#: ../../include/functions_reporting.php:11890 -#: ../../include/functions_reporting.php:11914 +#: ../../include/functions_reporting.php:12084 +#: ../../include/functions_reporting.php:12108 msgid "of monitors up" msgstr "のモニタ項目が正常です。" -#: ../../include/functions_reporting.php:11895 -#: ../../include/functions_reporting.php:11917 -msgid "Module sanity" -msgstr "モジュール" +#: ../../include/functions_reporting.php:12089 +msgid "Module sanityX" +msgstr "モジュールサニティX" -#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:12089 #, php-format msgid "%d Not inited monitors" msgstr "未初期化数 %d" -#: ../../include/functions_reporting.php:11895 -#: ../../include/functions_reporting.php:11918 +#: ../../include/functions_reporting.php:12089 +#: ../../include/functions_reporting.php:12112 msgid "of total modules inited" msgstr "のモジュールが初期化済みです。" -#: ../../include/functions_reporting.php:11900 -#: ../../include/functions_reporting.php:13012 -#: ../../include/functions_reporting.php:13022 +#: ../../include/functions_reporting.php:12094 +#: ../../include/functions_reporting.php:13202 +#: ../../include/functions_reporting.php:13212 #, php-format msgid "%d Fired alerts" msgstr "アラート発報数 %d" -#: ../../include/functions_reporting.php:11900 -#: ../../include/functions_reporting.php:11922 +#: ../../include/functions_reporting.php:12094 +#: ../../include/functions_reporting.php:12116 msgid "of defined alerts not fired" msgstr "の定義済みアラートが未発生です。" -#: ../../include/functions_reporting.php:11994 +#: ../../include/functions_reporting.php:12111 +msgid "Module sanity" +msgstr "モジュール" + +#: ../../include/functions_reporting.php:12184 +#: ../../include/functions_groups.php:2733 msgid "Defined and fired alerts" msgstr "定義済・発報アラート" -#: ../../include/functions_reporting.php:12173 +#: ../../include/functions_reporting.php:12363 msgid "Defined users" msgstr "定義済ユーザ" -#: ../../include/functions_reporting.php:12869 +#: ../../include/functions_reporting.php:13059 msgid "Agent without data" msgstr "データの無いエージェント" -#: ../../include/functions_reporting.php:13008 +#: ../../include/functions_reporting.php:13198 #, php-format msgid "%d Normal modules" msgstr "正常モジュール数 %d" -#: ../../include/functions_reporting.php:13009 +#: ../../include/functions_reporting.php:13199 #, php-format msgid "%d Critical modules" msgstr "障害モジュール数 %d" -#: ../../include/functions_reporting.php:13010 +#: ../../include/functions_reporting.php:13200 #, php-format msgid "%d Warning modules" msgstr "警告モジュール数 %d" -#: ../../include/functions_reporting.php:13011 +#: ../../include/functions_reporting.php:13201 #, php-format msgid "%d Unknown modules" msgstr "不明モジュール数 %d" -#: ../../include/functions_reporting.php:13016 +#: ../../include/functions_reporting.php:13206 #, php-format msgid "%d Total agents" msgstr "全エージェント数 %d" -#: ../../include/functions_reporting.php:13017 +#: ../../include/functions_reporting.php:13207 #, php-format msgid "%d Normal agents" msgstr "正常エージェント数 %d" -#: ../../include/functions_reporting.php:13018 +#: ../../include/functions_reporting.php:13208 #, php-format msgid "%d Critical agents" msgstr "障害エージェント数 %d" -#: ../../include/functions_reporting.php:13019 +#: ../../include/functions_reporting.php:13209 #, php-format msgid "%d Warning agents" msgstr "警告エージェント数 %d" -#: ../../include/functions_reporting.php:13020 +#: ../../include/functions_reporting.php:13210 #, php-format msgid "%d Unknown agents" msgstr "不明エージェント数 %d" -#: ../../include/functions_reporting.php:13021 +#: ../../include/functions_reporting.php:13211 #, php-format msgid "%d not init agents" msgstr "%d 未初期化エージェント" -#: ../../include/functions_reporting.php:14449 +#: ../../include/functions_reporting.php:14639 msgid "Total running modules" msgstr "全実行中モジュール数" -#: ../../include/functions_reporting.php:14452 -#: ../../include/functions_reporting.php:14467 -#: ../../include/functions_reporting.php:14479 -#: ../../include/functions_reporting.php:14497 -#: ../../include/functions_reporting.php:14509 -#: ../../include/functions_reporting.php:14521 -#: ../../include/functions_reporting.php:14533 +#: ../../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 msgid "Ratio" msgstr "比率" -#: ../../include/functions_reporting.php:14452 -#: ../../include/functions_reporting.php:14467 -#: ../../include/functions_reporting.php:14479 -#: ../../include/functions_reporting.php:14497 -#: ../../include/functions_reporting.php:14509 -#: ../../include/functions_reporting.php:14521 -#: ../../include/functions_reporting.php:14533 +#: ../../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 msgid "Modules by second" msgstr "秒ごとのモジュール" -#: ../../include/functions_reporting.php:14464 +#: ../../include/functions_reporting.php:14654 msgid "Local modules" msgstr "ローカルモジュール数" -#: ../../include/functions_reporting.php:14474 +#: ../../include/functions_reporting.php:14664 msgid "Network modules" msgstr "ネットワークモジュール" -#: ../../include/functions_reporting.php:14493 +#: ../../include/functions_reporting.php:14683 msgid "Plugin modules" msgstr "プラグインモジュール" -#: ../../include/functions_reporting.php:14505 +#: ../../include/functions_reporting.php:14695 msgid "Prediction modules" msgstr "予測モジュール" -#: ../../include/functions_reporting.php:14517 +#: ../../include/functions_reporting.php:14707 msgid "WMI modules" msgstr "WMIモジュール" -#: ../../include/functions_reporting.php:14529 +#: ../../include/functions_reporting.php:14719 msgid "Web modules" msgstr "Webモジュール" -#: ../../include/functions_reporting.php:14567 +#: ../../include/functions_reporting.php:14757 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "サーバパフォーマンス" -#: ../../include/functions_reporting.php:14680 +#: ../../include/functions_reporting.php:14870 msgid "Start condition" msgstr "開始状態" -#: ../../include/functions_reporting.php:14680 +#: ../../include/functions_reporting.php:14870 msgid "Stop condition" msgstr "停止状態" -#: ../../include/functions_reporting.php:14690 +#: ../../include/functions_reporting.php:14880 msgid "Weekly:" msgstr "週次:" -#: ../../include/functions_reporting.php:14732 +#: ../../include/functions_reporting.php:14922 msgid "Monthly:" msgstr "月次:" -#: ../../include/functions_reporting.php:14733 -msgid "From day" -msgstr "開始日" - -#: ../../include/functions_reporting.php:14734 -msgid "To day" -msgstr "終了日" - -#: ../../include/functions_reporting.php:15283 +#: ../../include/functions_reporting.php:15473 msgid "Module Histogram Graph" msgstr "モジュールヒストグラム" -#: ../../include/functions_reporting.php:15646 +#: ../../include/functions_reporting.php:15836 msgid "Attached to this email there's a PDF file of the" msgstr "このメールには次の PDF ファイルが添付されます:" -#: ../../include/functions_reporting.php:15647 +#: ../../include/functions_reporting.php:15837 msgid "report" msgstr "レポート" -#: ../../include/functions_filemanager.php:135 -#: ../../include/functions_filemanager.php:192 -#: ../../include/functions_filemanager.php:247 -#: ../../include/functions_filemanager.php:340 +#: ../../include/functions_filemanager.php:136 +#: ../../include/functions_filemanager.php:193 +#: ../../include/functions_filemanager.php:248 +#: ../../include/functions_filemanager.php:341 msgid "Security error" msgstr "セキュリティエラー" -#: ../../include/functions_filemanager.php:154 +#: ../../include/functions_filemanager.php:155 msgid "Upload error" msgstr "アップロードエラー" -#: ../../include/functions_filemanager.php:163 +#: ../../include/functions_filemanager.php:164 #, php-format msgid "Issue setting umask: %s" msgstr "umask の設定に問題があります: %s" -#: ../../include/functions_filemanager.php:168 -#: ../../include/functions_filemanager.php:198 +#: ../../include/functions_filemanager.php:169 +#: ../../include/functions_filemanager.php:199 msgid "Upload correct" msgstr "アップロードしました" -#: ../../include/functions_filemanager.php:195 +#: ../../include/functions_filemanager.php:196 msgid "It was impossible to uncompress your file" msgstr "ファイルを解凍できませんでした" -#: ../../include/functions_filemanager.php:211 +#: ../../include/functions_filemanager.php:212 msgid "" "File size seems to be too large. Please check your php.ini configuration or " "contact with the administrator" @@ -48764,102 +50099,107 @@ msgstr "" "ファイルサイズが大きすぎます。php.ini の設定を確認するか管理者に相談してくださ" "い。" -#: ../../include/functions_filemanager.php:260 +#: ../../include/functions_filemanager.php:261 msgid "File created correctly" msgstr "ファイルを作成しました" -#: ../../include/functions_filemanager.php:263 +#: ../../include/functions_filemanager.php:264 msgid "Error creating file" msgstr "ファイル作成エラー" -#: ../../include/functions_filemanager.php:270 -#: ../../include/functions_filemanager.php:320 +#: ../../include/functions_filemanager.php:271 +#: ../../include/functions_filemanager.php:321 msgid "Error creating file with empty name" msgstr "ファイル名未指定によるファイル作成エラー" -#: ../../include/functions_filemanager.php:311 +#: ../../include/functions_filemanager.php:312 msgid "Directory created" msgstr "ディレクトリを作成しました" -#: ../../include/functions_filemanager.php:314 +#: ../../include/functions_filemanager.php:315 msgid "Something gone wrong creating directory" msgstr "ディレクトリ作成で何らかの問題が発生しました" -#: ../../include/functions_filemanager.php:539 -#: ../../include/functions_filemanager.php:775 +#: ../../include/functions_filemanager.php:541 +#: ../../include/functions_filemanager.php:821 msgid "Create a Directory" msgstr "ディレクトリ作成" -#: ../../include/functions_filemanager.php:543 -#: ../../include/functions_filemanager.php:786 -#: ../../include/functions_filemanager.php:789 -msgid "Create a Text" -msgstr "テキストの作成" +#: ../../include/functions_filemanager.php:545 +#: ../../include/functions_filemanager.php:832 +#: ../../include/functions_filemanager.php:835 +msgid "Create File" +msgstr "ファイルの作成" -#: ../../include/functions_filemanager.php:547 -#: ../../include/functions_filemanager.php:800 -#: ../../include/functions_filemanager.php:803 +#: ../../include/functions_filemanager.php:549 +#: ../../include/functions_filemanager.php:846 +#: ../../include/functions_filemanager.php:849 msgid "Upload Files" msgstr "ファイルをアップロード" -#: ../../include/functions_filemanager.php:578 +#: ../../include/functions_filemanager.php:583 +#: ../../include/functions_filemanager.php:793 +msgid "Real path" +msgstr "実際のパス" + +#: ../../include/functions_filemanager.php:618 #, php-format msgid "Directory %s doesn't exist!" msgstr "%s ディレクトリは存在しません!" -#: ../../include/functions_filemanager.php:623 +#: ../../include/functions_filemanager.php:663 msgid "Parent directory" msgstr "親ディレクトリ" -#: ../../include/functions_filemanager.php:637 +#: ../../include/functions_filemanager.php:677 msgid "Directory" msgstr "ディレクトリ" -#: ../../include/functions_filemanager.php:645 +#: ../../include/functions_filemanager.php:685 msgid "Compressed file" msgstr "圧縮ファイル" -#: ../../include/functions_filemanager.php:649 -#: ../../include/functions_filemanager.php:656 +#: ../../include/functions_filemanager.php:689 +#: ../../include/functions_filemanager.php:696 msgid "Text file" msgstr "テキストファイル" -#: ../../include/functions_filemanager.php:689 +#: ../../include/functions_filemanager.php:729 msgid "This file could be executed by any user" msgstr "このファイルは任意のユーザで実行できます。" -#: ../../include/functions_filemanager.php:690 +#: ../../include/functions_filemanager.php:730 msgid "Make sure it can't perform dangerous tasks" msgstr "危険な処理はできないことを確認してください" -#: ../../include/functions_filemanager.php:758 +#: ../../include/functions_filemanager.php:804 msgid "No files or directories to show." msgstr "表示するファイルまたはディレクトリがありません。" -#: ../../include/functions_filemanager.php:772 -#: ../../include/functions_filemanager.php:898 +#: ../../include/functions_filemanager.php:818 +#: ../../include/functions_filemanager.php:940 msgid "Create directory" msgstr "ディレクトリの作成" -#: ../../include/functions_filemanager.php:834 +#: ../../include/functions_filemanager.php:880 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" "このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロー" "ドも簡単です。" -#: ../../include/functions_filemanager.php:836 +#: ../../include/functions_filemanager.php:882 msgid "Decompress" msgstr "展開" -#: ../../include/functions_filemanager.php:910 -msgid "Create text" -msgstr "テキストの作成" +#: ../../include/functions_filemanager.php:954 +msgid "Create file" +msgstr "ファイルの作成" -#: ../../include/functions_filemanager.php:922 +#: ../../include/functions_filemanager.php:968 msgid "Upload file/s" msgstr "ファイルのアップロード" -#: ../../include/functions_filemanager.php:931 +#: ../../include/functions_filemanager.php:999 msgid "The directory is read-only" msgstr "ディレクトリが読み出し専用です。" @@ -48867,20 +50207,20 @@ msgstr "ディレクトリが読み出し専用です。" msgid "Click here to open a popup window with URL tag" msgstr "URLタグのポップアップウインドウを開くにはここをクリックしてください" -#: ../../include/lib/Dashboard/Manager.php:600 +#: ../../include/lib/Dashboard/Manager.php:610 #, php-format msgid "Copy of %s" msgstr "%s のコピー" -#: ../../include/lib/Dashboard/Manager.php:992 +#: ../../include/lib/Dashboard/Manager.php:1007 msgid "Error create or update dashboard" msgstr "ダッシュボードの作成または更新エラー" -#: ../../include/lib/Dashboard/Manager.php:1473 +#: ../../include/lib/Dashboard/Manager.php:1479 msgid "Icon image dashboard" msgstr "ダッシュボードアイコン画像" -#: ../../include/lib/Dashboard/Widget.php:461 +#: ../../include/lib/Dashboard/Widget.php:468 #: ../../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 @@ -48888,18 +50228,18 @@ msgstr "ダッシュボードアイコン画像" msgid "Failed to connect to node %d" msgstr "ノード %d への接続に失敗しました" -#: ../../include/lib/Dashboard/Widget.php:476 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:624 +#: ../../include/lib/Dashboard/Widget.php:483 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:621 msgid "Please configure this widget before usage" msgstr "使用前にこのウィジェットを設定してください" -#: ../../include/lib/Dashboard/Widget.php:484 +#: ../../include/lib/Dashboard/Widget.php:491 #: ../../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:484 +#: ../../include/lib/Dashboard/Widget.php:491 #: ../../include/lib/Dashboard/Widgets/maps_status.php:390 msgid "Please, configure the widget again to recover it" msgstr "復旧するためにウィジェットを設定しなおしてください" @@ -48938,30 +50278,45 @@ msgstr "障害状態のモジュール" msgid "No modules in selected groups" msgstr "選択したグループにモジュールがありません" +#: ../../include/lib/Dashboard/Widgets/heatmap.php:173 +#: ../../include/lib/Dashboard/Widgets/heatmap.php:385 +msgid "Heatmap" +msgstr "ヒートマップ" + #: ../../include/lib/Dashboard/Widgets/sla_percent.php:176 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:523 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:561 msgid "SLA percentage" msgstr "SLA パーセンテージ" -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:385 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:451 -#: ../../include/lib/Dashboard/Widgets/module_value.php:366 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:389 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:452 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:455 +#: ../../include/lib/Dashboard/Widgets/module_value.php:370 msgid "Text size of value in px" msgstr "pxでの値のテキストサイズ" -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:397 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:463 -#: ../../include/lib/Dashboard/Widgets/module_value.php:378 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:401 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:464 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:467 +#: ../../include/lib/Dashboard/Widgets/module_value.php:382 #: ../../include/lib/Dashboard/Widgets/module_table_value.php:343 #: ../../include/lib/Dashboard/Widgets/graph_module_histogram.php:376 -#: ../../include/lib/Dashboard/Widgets/module_status.php:442 +#: ../../include/lib/Dashboard/Widgets/module_status.php:446 msgid "Text size of label in px" msgstr "pxでのラベルのテキストサイズ" -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:454 -#: ../../include/lib/Dashboard/Widgets/sla_percent.php:465 +#: ../../include/lib/Dashboard/Widgets/sla_percent.php:413 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:510 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:491 +#: ../../include/lib/Dashboard/Widgets/module_value.php:394 +#: ../../include/lib/Dashboard/Widgets/module_status.php:470 +msgid "If not, layout is vertical" +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:649 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:646 msgid "You don't have access" msgstr "アクセスできません。" @@ -48988,7 +50343,8 @@ msgid "Agent / module" msgstr "エージェント / モジュール" #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:457 -#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:551 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:552 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:465 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:699 #: ../../include/lib/Dashboard/Widgets/ColorModuleTabs.php:408 msgid "Not found modules" @@ -49007,7 +50363,7 @@ msgstr "ツリー" msgid "The user doesn't have permission to read agents" msgstr "エージェントを参照する権限がありません" -#: ../../include/lib/Dashboard/Widgets/service_view.php:454 +#: ../../include/lib/Dashboard/Widgets/service_view.php:420 msgid "Services view" msgstr "サービス表示" @@ -49020,6 +50376,43 @@ msgstr "一般的なビジュアルマップレポート" msgid "Maps" msgstr "マップ" +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:175 +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:709 +msgid "Avg|Sum|Max|Min Module Data" +msgstr "平均|合計|最大|最小モジュールデータ" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:390 +msgid "Last 30 days" +msgstr "直近 30日" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:391 +msgid "This month" +msgstr "今月" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:392 +msgid "Last 7 days" +msgstr "直近 7日" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:393 +msgid "This week" +msgstr "今週" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:394 +msgid "Last 24 hrs" +msgstr "直近 24時間" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:395 +msgid "Today" +msgstr "今日" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:401 +msgid "Time period" +msgstr "期間" + +#: ../../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php:486 +msgid "Text color" +msgstr "テキストの色" + #: ../../include/lib/Dashboard/Widgets/example.php:158 #: ../../include/lib/Dashboard/Widgets/example.php:277 #, php-format @@ -49082,6 +50475,7 @@ msgid "Periodicity" msgstr "周期" #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:346 +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:292 #: ../../include/lib/Dashboard/Widgets/events_list.php:370 msgid "Limit" msgstr "制限" @@ -49094,10 +50488,14 @@ msgid "" msgstr "" "表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。" -#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:666 +#: ../../include/lib/Dashboard/Widgets/DataMatrix.php:674 msgid "Data Matrix" msgstr "データマトリックス" +#: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:241 +msgid "Search filter by Module name field content" +msgstr "モジュール名フィールドの内容による検索フィルタ" + #: ../../include/lib/Dashboard/Widgets/monitor_health.php:158 #: ../../include/lib/Dashboard/Widgets/monitor_health.php:337 msgid "Global health info" @@ -49116,8 +50514,8 @@ msgid "Grouped meter graphs" msgstr "グループかされたメータグラフ" #: ../../include/lib/Dashboard/Widgets/network_map.php:173 -#: ../../include/lib/Dashboard/Widgets/network_map.php:515 -#: ../../operation/menu.php:175 +#: ../../include/lib/Dashboard/Widgets/network_map.php:516 +#: ../../operation/menu.php:287 msgid "Network map" msgstr "ネットワークマップ" @@ -49148,21 +50546,21 @@ msgid "Zoom level" msgstr "拡大率" #: ../../include/lib/Dashboard/Widgets/alerts_fired.php:162 -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:371 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:376 msgid "Triggered alerts report" msgstr "発報したアラートのレポート" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:344 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:349 msgid "Not alert fired" msgstr "アラート未発報" -#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:353 +#: ../../include/lib/Dashboard/Widgets/alerts_fired.php:358 #: ../../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:714 +#: ../../include/lib/Dashboard/Widgets/events_list.php:715 msgid "List of latest events" msgstr "最新イベント一覧" @@ -49171,19 +50569,22 @@ msgid "Custom filters" msgstr "カスタムフィルタ" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 -#: ../../include/functions_events.php:3120 -#: ../../include/functions_events.php:3126 -#: ../../include/functions_events.php:3148 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:299 +#: ../../include/functions_events.php:3261 +#: ../../include/functions_events.php:3267 +#: ../../include/functions_events.php:3289 msgid "All event" msgstr "全イベント" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 -#: ../../include/functions_events.php:3122 -#: ../../include/functions_events.php:3156 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:300 +#: ../../include/functions_events.php:3263 +#: ../../include/functions_events.php:3297 msgid "Only validated" msgstr "承諾済み" #: ../../include/lib/Dashboard/Widgets/events_list.php:385 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:301 msgid "Only pending" msgstr "未承諾" @@ -49191,6 +50592,11 @@ msgstr "未承諾" msgid "Please, event filter has been removed." msgstr "イベントフィルタが削除されました。" +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:172 +#: ../../include/lib/Dashboard/Widgets/EventCardboard.php:626 +msgid "Event cardboard" +msgstr "イベントカードボード" + #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:172 #: ../../include/lib/Dashboard/Widgets/wux_transaction_stats.php:378 msgid "WUX transaction stats" @@ -49206,12 +50612,12 @@ msgid "View all statistics" msgstr "全ての統計を表示" #: ../../include/lib/Dashboard/Widgets/module_icon.php:179 -#: ../../include/lib/Dashboard/Widgets/module_icon.php:580 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:642 msgid "Icon and module value" msgstr "アイコンとモジュールの値" -#: ../../include/lib/Dashboard/Widgets/module_icon.php:475 -#: ../../include/lib/Dashboard/Widgets/module_status.php:454 +#: ../../include/lib/Dashboard/Widgets/module_icon.php:479 +#: ../../include/lib/Dashboard/Widgets/module_status.php:458 msgid "Size of icon" msgstr "アイコンのサイズ" @@ -49225,20 +50631,15 @@ msgid "Please, configure this widget before use" msgstr "利用前にウィジェットを設定してください" #: ../../include/lib/Dashboard/Widgets/module_value.php:175 -#: ../../include/lib/Dashboard/Widgets/module_value.php:473 +#: ../../include/lib/Dashboard/Widgets/module_value.php:532 msgid "Module value" msgstr "モジュールの値" #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:169 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:418 +#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:403 msgid "Agent WUX transaction" msgstr "エージェント WUX トランザクション" -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:370 -#: ../../include/lib/Dashboard/Widgets/wux_transaction.php:375 -msgid "Global status" -msgstr "全体の状態" - #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:536 msgid "Top N events by module" @@ -49310,6 +50711,10 @@ msgstr "表内モジュール" msgid "Module histogram" msgstr "モジュールヒストグラム" +#: ../../include/lib/Dashboard/Widgets/service_map.php:192 +msgid "Service Map" +msgstr "サービスマップ" + #: ../../include/lib/Dashboard/Widgets/service_map.php:311 msgid "" "ZOOM functionality is only available when there is only one such widget in the " @@ -49323,12 +50728,12 @@ msgid "Missing Service id" msgstr "サービス ID がありません" #: ../../include/lib/Dashboard/Widgets/agent_module.php:173 -#: ../../include/lib/Dashboard/Widgets/agent_module.php:769 +#: ../../include/lib/Dashboard/Widgets/agent_module.php:766 msgid "Agent/Module View" msgstr "エージェント/モジュール表示" #: ../../include/lib/Dashboard/Widgets/agent_module.php:250 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:439 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:454 msgid "Filter modules" msgstr "モジュールをフィルタ" @@ -49342,12 +50747,12 @@ msgid "This graph has been deleted." msgstr "このグラフは削除されました。" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:358 -#: ../../operation/reporting/graph_viewer.php:348 +#: ../../operation/reporting/graph_viewer.php:360 msgid "Horizontal Bars" msgstr "水平バー" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:359 -#: ../../operation/reporting/graph_viewer.php:349 +#: ../../operation/reporting/graph_viewer.php:361 msgid "Vertical Bars" msgstr "垂直バー" @@ -49362,43 +50767,43 @@ msgid "Custom report" msgstr "カスタムレポート" #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:173 -#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:335 +#: ../../include/lib/Dashboard/Widgets/os_quick_report.php:337 msgid "OS quick report" msgstr "OS クイックレポート" #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:285 -msgid "total agents" -msgstr "全エージェント" +msgid "total" +msgstr "合計" #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:286 -msgid "normal agents" -msgstr "正常エージェント" +msgid "normal" +msgstr "正常" #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:287 -msgid "critical agents" -msgstr "障害エージェント" +msgid "critical" +msgstr "障害" #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:288 -msgid "unknown agents" -msgstr "不明エージェント" +msgid "unknown" +msgstr "不明" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:341 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:354 msgid "Type tree" msgstr "ツリータイプ" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:373 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:386 msgid "Open all groups" msgstr "全グループを開く" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:393 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:407 msgid "Agents status" msgstr "エージェントの状態" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:427 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:442 msgid "Modules status" msgstr "モジュールの状態" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:493 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:508 #, php-format msgid "" "The user doesn't have permission to read agents. Please contact with your %s " @@ -49406,31 +50811,41 @@ msgid "" msgstr "" "ユーザにエージェントを参照する権限がありません。%s 管理者へ連絡してください。" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:608 -#: ../../operation/tree.php:423 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:654 +#: ../../operation/tree.php:471 msgid "Operating systems found" msgstr "オペレーティングシステムを見つけました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:612 -#: ../../operation/tree.php:426 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:658 +#: ../../operation/tree.php:474 msgid "Tags found" msgstr "タグを見つけました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:616 -#: ../../operation/tree.php:429 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:662 +#: ../../operation/tree.php:477 msgid "Module Groups found" msgstr "モジュールグループを見つけました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:620 -#: ../../operation/tree.php:432 ../../operation/search_main.php:56 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:666 +#: ../../operation/tree.php:480 ../../operation/search_main.php:56 msgid "Modules found" msgstr "モジュールが見つかりました" -#: ../../include/lib/Dashboard/Widgets/tree_view.php:625 -#: ../../operation/tree.php:436 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:671 +#: ../../operation/tree.php:484 msgid "Groups found" msgstr "グループを見つけました" +#: ../../include/lib/Dashboard/Widgets/tree_view.php:732 +#: ../../operation/tree.php:536 +msgid "Not normal agents" +msgstr "非正常エージェント" + +#: ../../include/lib/Dashboard/Widgets/tree_view.php:733 +#: ../../operation/tree.php:537 +msgid "Not normal modules" +msgstr "非正常モジュール" + #: ../../include/lib/Dashboard/Widgets/top_n.php:163 #: ../../include/lib/Dashboard/Widgets/top_n.php:540 msgid "Top N of agent modules" @@ -49511,22 +50926,22 @@ msgstr "アクティブ-スタンバイ" msgid "Cluster already defined, please use another name." msgstr "クラスタは定義済です。他の名前を利用してください。" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:779 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:782 msgid "Cluster name" msgstr "クラスタ名" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:780 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:783 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:794 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:797 msgid "Cluster type" msgstr "クラスタタイプ" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:795 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "" "AA is a cluster where all members are working. In AP cluster only master " "member is working" @@ -49534,48 +50949,48 @@ msgstr "" "アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-" "スタンバイクラスタでは、マスターのみが稼働しています" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:803 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:806 msgid "Active - Active" msgstr "アクティブ - アクティブ" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:804 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:807 msgid "Active - Pasive" msgstr "アクティブ - スタンバイ" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:824 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:827 msgid "Target cluster agent will be stored under this group" msgstr "対象のクラスタエージェントはこのグループに保存されます" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:841 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "" "You must select a Prediction Server to perform all cluster status calculations" msgstr "" "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1037 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 msgid "critical if" msgstr "次の場合に障害" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1046 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1069 -#, php-format +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1050 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1073 +#, no-php-format msgid "% of balanced modules are down (equal or greater)." msgstr "% (またはそれ以上)のバランスモジュールがダウンしています。" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1085 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1089 msgid "Please, set thresholds for all active-passive modules" msgstr "全アクティブ - スタンバイモジュールのしきい値を設定してください" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1096 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1100 msgid "Please, set thresholds for all active-active modules" msgstr "全アクティブ - アクティブモジュールのしきい値を設定してください" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1201 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1205 msgid "Please, check all active-passive modules critical for this cluster" msgstr "" "このクラスタに重要な全アクティブ-スタンバイモジュールをチェックしてください" -#: ../../include/lib/ClusterViewer/ClusterWizard.php:1203 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 msgid "" "If a critical balanced module is going to critical status, then cluster will " "be critical." @@ -49596,33 +51011,45 @@ msgstr "ビュー %s が見つかりません" msgid " error: Module has no agent assigned." msgstr " エラー: モジュールがエージェントに割り当てられていません" -#: ../../include/lib/Module.php:1043 +#: ../../include/lib/Module.php:1074 msgid "Module name empty." msgstr "モジュール名が空です。" -#: ../../include/lib/Module.php:1049 +#: ../../include/lib/Module.php:1080 msgid "Invalid characters in module name" msgstr "モジュール名に不正な文字が含まれています" -#: ../../include/lib/Module.php:1055 +#: ../../include/lib/Module.php:1086 msgid "Module already exists please select another name or agent." msgstr "" "モジュールが既に存在します。他の名前またはエージェントを選択してください。" -#: ../../include/lib/Module.php:1061 +#: ../../include/lib/Module.php:1092 msgid "Insufficent permissions to perform this action" msgstr "このアクションを実行するには権限が不十分です" -#: ../../include/lib/Module.php:1068 +#: ../../include/lib/Module.php:1099 #, php-format msgid "Error while processing: %s" msgstr "処理中にエラー: %s" -#: ../../include/lib/Group.php:299 +#: ../../include/lib/Group.php:305 #, php-format msgid "Failed to save group %s" msgstr "グループ %s の保存に失敗しました" +#: ../../include/lib/Group.php:546 +msgid "Id" +msgstr "ID" + +#: ../../include/lib/Group.php:558 +msgid "Ip Address" +msgstr "IP アドレス" + +#: ../../include/lib/Group.php:574 +msgid "Operative system" +msgstr "オペレーティングシステム" + #: ../../include/functions_snmp_browser.php:355 msgid "The server did not return any response." msgstr "サーバが応答を返しませんでした。" @@ -49647,92 +51074,93 @@ msgstr "最大アクセス" msgid "OID Information" msgstr "OID 情報" -#: ../../include/functions_snmp_browser.php:647 +#: ../../include/functions_snmp_browser.php:648 msgid "Create agent module" msgstr "エージェントモジュール作成" -#: ../../include/functions_snmp_browser.php:736 +#: ../../include/functions_snmp_browser.php:750 msgid "Starting OID" msgstr "開始 OID" -#: ../../include/functions_snmp_browser.php:786 +#: ../../include/functions_snmp_browser.php:805 msgid "Server to execute" msgstr "実行サーバ" -#: ../../include/functions_snmp_browser.php:801 -msgid "Browse" -msgstr "参照" +#: ../../include/functions_snmp_browser.php:946 +msgid "SNMP v3 settings" +msgstr "SNMP v3 設定" -#: ../../include/functions_snmp_browser.php:939 +#: ../../include/functions_snmp_browser.php:1037 msgid "First match" msgstr "最初のマッチ" -#: ../../include/functions_snmp_browser.php:952 +#: ../../include/functions_snmp_browser.php:1050 msgid "Previous match" msgstr "前のマッチ" -#: ../../include/functions_snmp_browser.php:965 +#: ../../include/functions_snmp_browser.php:1063 msgid "Next match" msgstr "次のマッチ" -#: ../../include/functions_snmp_browser.php:978 +#: ../../include/functions_snmp_browser.php:1076 msgid "Last match" msgstr "最後のマッチ" -#: ../../include/functions_snmp_browser.php:992 +#: ../../include/functions_snmp_browser.php:1090 msgid "Expand the tree (can be slow)" msgstr "ツリーを展開する (遅くなります)" -#: ../../include/functions_snmp_browser.php:1005 +#: ../../include/functions_snmp_browser.php:1103 msgid "Collapse the tree" msgstr "ツリーを閉じる" -#: ../../include/functions_snmp_browser.php:1034 -msgid "SNMP v3 options" -msgstr "SNMP v3 オプション" - -#: ../../include/functions_snmp_browser.php:1044 +#: ../../include/functions_snmp_browser.php:1115 +#: ../../include/functions_snmp_browser.php:1170 msgid "Search options" msgstr "検索オプション" -#: ../../include/functions_snmp_browser.php:1065 +#: ../../include/functions_snmp_browser.php:1160 +msgid "SNMP v3 options" +msgstr "SNMP v3 オプション" + +#: ../../include/functions_snmp_browser.php:1192 msgid "Search matches" msgstr "検索マッチ" -#: ../../include/functions_snmp_browser.php:1081 +#: ../../include/functions_snmp_browser.php:1208 msgid "Create agent modules" msgstr "エージェントモジュール作成" -#: ../../include/functions_snmp_browser.php:1090 +#: ../../include/functions_snmp_browser.php:1217 msgid "Create policy modules" msgstr "ポリシーモジュール作成" -#: ../../include/functions_snmp_browser.php:1099 +#: ../../include/functions_snmp_browser.php:1226 msgid "Create network components" msgstr "ネットワークコンポーネント作成" -#: ../../include/functions_snmp_browser.php:1519 +#: ../../include/functions_snmp_browser.php:1656 msgid " available" msgstr " があります" -#: ../../include/functions_snmp_browser.php:1521 +#: ../../include/functions_snmp_browser.php:1663 msgid " to apply" msgstr " を適用" -#: ../../include/functions_snmp_browser.php:1542 -#: ../../operation/snmpconsole/snmp_browser.php:539 +#: ../../include/functions_snmp_browser.php:1668 +#: ../../operation/snmpconsole/snmp_browser.php:535 msgid "Create new policy" msgstr "新たなポリシーを作成" -#: ../../include/functions_snmp_browser.php:1574 +#: ../../include/functions_snmp_browser.php:1723 msgid "Undo" msgstr "元に戻す" -#: ../../include/chart_generator.php:113 ../../operation/agentes/stat_win.php:51 +#: ../../include/chart_generator.php:117 ../../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:206 +#: ../../operation/inventory/inventory.php:369 msgid "There was a problem connecting with the node" msgstr "ノード接続で問題が発生しました" @@ -49745,8 +51173,8 @@ msgid "Alert Templates" msgstr "アラートテンプレート" #: ../../include/functions_groups.php:107 -#: ../../operation/agentes/pandora_networkmap.editor.php:355 -#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/pandora_networkmap.editor.php:429 +#: ../../operation/agentes/pandora_networkmap.view.php:177 msgid "Discovery task" msgstr "自動検出タスク" @@ -49771,6 +51199,7 @@ msgid "GIS map layers" msgstr "GIS マップレイヤ" #: ../../include/functions_groups.php:251 +#: ../../operation/agentes/pandora_networkmap.view.php:2413 msgid "Network maps" msgstr "ネットワークマップ" @@ -49794,180 +51223,168 @@ msgstr "エージェントモジュール" msgid "Module custom id" msgstr "モジュールカスタム ID" -#: ../../include/functions_events.php:1785 +#: ../../include/functions_events.php:1790 #, php-format msgid "Could not connect: %s" msgstr "接続できませんでした: %s" -#: ../../include/functions_events.php:2506 -#: ../../operation/agentes/tactical.php:229 +#: ../../include/functions_events.php:2510 +#: ../../operation/agentes/tactical.php:248 msgid "Latest events" msgstr "最新のイベント" -#: ../../include/functions_events.php:2769 +#: ../../include/functions_events.php:2910 msgid "Going to unknown" msgstr "不明状態になりました。" -#: ../../include/functions_events.php:2777 +#: ../../include/functions_events.php:2918 msgid "Alert manually validated" msgstr "アラートは承諾されました。" -#: ../../include/functions_events.php:2781 +#: ../../include/functions_events.php:2922 msgid "Going from critical to warning" msgstr "障害が警告状態になりました。" -#: ../../include/functions_events.php:2787 +#: ../../include/functions_events.php:2928 msgid "Going up to critical state" msgstr "障害状態に変わりました" -#: ../../include/functions_events.php:2793 +#: ../../include/functions_events.php:2934 msgid "Going up to normal state" msgstr "正常になりました。" -#: ../../include/functions_events.php:2797 +#: ../../include/functions_events.php:2938 msgid "Going down from normal to warning" msgstr "警告状態になりました。" -#: ../../include/functions_events.php:2809 +#: ../../include/functions_events.php:2950 msgid "Discovery server detected a new host" msgstr "自動検出サーバが新たなホストを検出しました" -#: ../../include/functions_events.php:2813 +#: ../../include/functions_events.php:2954 msgid "New agent created" msgstr "新しいエージェントが作成されました。" -#: ../../include/functions_events.php:2830 +#: ../../include/functions_events.php:2971 msgid "Unknown type:" msgstr "不明なタイプ" -#: ../../include/functions_events.php:3121 -#: ../../include/functions_events.php:3152 +#: ../../include/functions_events.php:3262 +#: ../../include/functions_events.php:3293 msgid "Only new" msgstr "新規のみ" -#: ../../include/functions_events.php:3123 -#: ../../include/functions_events.php:3160 +#: ../../include/functions_events.php:3264 +#: ../../include/functions_events.php:3301 msgid "Only in process" msgstr "処理中のみ" -#: ../../include/functions_events.php:3124 -#: ../../include/functions_events.php:3164 +#: ../../include/functions_events.php:3265 +#: ../../include/functions_events.php:3305 msgid "Only not validated" msgstr "未承諾のみ" -#: ../../include/functions_events.php:3129 -#: ../../include/functions_events.php:3399 -#: ../../include/functions_events.php:3408 +#: ../../include/functions_events.php:3270 +#: ../../include/functions_events.php:3543 +#: ../../include/functions_events.php:3552 msgid "In process" msgstr "処理中" -#: ../../include/functions_events.php:3130 +#: ../../include/functions_events.php:3271 msgid "Not Validated" msgstr "未承諾" -#: ../../include/functions_events.php:3322 +#: ../../include/functions_events.php:3463 msgid "Change owner" msgstr "所有者変更" -#: ../../include/functions_events.php:3384 +#: ../../include/functions_events.php:3528 msgid "Change status" msgstr "ステータス変更" -#: ../../include/functions_events.php:3478 -#: ../../include/functions_events.php:5139 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 +#: ../../include/functions_events.php:3625 +#: ../../include/functions_events.php:5361 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:330 msgid "Add comment" msgstr "コメントの追加" -#: ../../include/functions_events.php:3498 -#: ../../include/functions_events.php:3502 ../../operation/events/events.php:948 +#: ../../include/functions_events.php:3648 +#: ../../include/functions_events.php:3652 ../../operation/events/events.php:978 msgid "Delete event" msgstr "削除" -#: ../../include/functions_events.php:3522 +#: ../../include/functions_events.php:3675 msgid "Custom responses" msgstr "カスタム応答" -#: ../../include/functions_events.php:4128 +#: ../../include/functions_events.php:4281 msgid "Extended information" msgstr "拡張情報" -#: ../../include/functions_events.php:4159 +#: ../../include/functions_events.php:4312 msgid "There was an error connecting to the node" msgstr "ノードへの接続エラーが発生しました" -#: ../../include/functions_events.php:4180 +#: ../../include/functions_events.php:4333 msgid "Agent details" msgstr "エージェント詳細" -#: ../../include/functions_events.php:4194 +#: ../../include/functions_events.php:4347 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "このエージェントはメタコンソールに属しており、表示できません" -#: ../../include/functions_events.php:4245 +#: ../../include/functions_events.php:4442 msgid "View custom fields" msgstr "カスタムフィールド表示" -#: ../../include/functions_events.php:4268 +#: ../../include/functions_events.php:4465 msgid "Module details" msgstr "モジュール詳細" -#: ../../include/functions_events.php:4284 +#: ../../include/functions_events.php:4481 msgid "No assigned" msgstr "未割当" -#: ../../include/functions_events.php:4368 -#: ../../include/functions_events.php:4377 +#: ../../include/functions_events.php:4562 +#: ../../include/functions_events.php:4571 msgid "Go to data overview" msgstr "データ概要表示" -#: ../../include/functions_events.php:4493 +#: ../../include/functions_events.php:4688 #, php-format msgid "Invalid custom data: %s" msgstr "不正なカスタムデータ: %s" -#: ../../include/functions_events.php:4722 +#: ../../include/functions_events.php:4917 msgid "First event" msgstr "最初のイベント" -#: ../../include/functions_events.php:4725 +#: ../../include/functions_events.php:4920 msgid "Last event" msgstr "最後のイベント" -#: ../../include/functions_events.php:4814 +#: ../../include/functions_events.php:5017 msgid "Autovalidated" msgstr "自動承諾済" -#: ../../include/functions_events.php:4880 +#: ../../include/functions_events.php:5093 msgid "ID extra" msgstr "拡張 ID" -#: ../../include/functions_events.php:4988 +#: ../../include/functions_events.php:5210 msgid "There are no comments" msgstr "コメントがありません" -#: ../../include/functions_events.php:5052 ../../general/logon_ok.php:208 +#: ../../include/functions_events.php:5274 ../../general/logon_ok.php:214 msgid "by" msgstr "発行者:" -#: ../../include/functions_events.php:5149 -msgid "" -"If event replication is ongoing, it won't be possible to enter comments here. " -"This option is only to allow local pandora users to see comments, but not to " -"operate with them. The operation, when event replication is enabled, must be " -"done only in the Metaconsole." -msgstr "" -"イベントの複製実行中は、ここにコメントを入力することはできません。 このオプショ" -"ンでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、コメント" -"を操作することはできません。 イベント複製が有効な場合は、操作はメタコンソールで" -"のみ実行する必要があります。" - -#: ../../include/functions_events.php:5719 +#: ../../include/functions_events.php:5941 #, php-format msgid "Event # %d" msgstr "イベント # %d" -#: ../../include/functions_events.php:5722 +#: ../../include/functions_events.php:5944 msgid "Executing command: " msgstr "コマンド実行中: " @@ -50030,15 +51447,27 @@ msgstr "コピーした計画停止へのエージェント追加エラー" msgid "Error adding module to copied downtime" msgstr "コピーした計画停止へのモジュール追加エラー" -#: ../../index.php:993 +#: ../../index.php:425 +msgid "Double auth error" +msgstr "二段階認証エラー" + +#: ../../index.php:451 +msgid "saml error" +msgstr "SAML エラー" + +#: ../../index.php:714 ../../general/login_page.php:653 +msgid "User is blocked" +msgstr "ユーザはブロックされています" + +#: ../../index.php:1003 msgid "User doesn\\'t exist." msgstr "ユーザが存在しません。" -#: ../../index.php:1015 +#: ../../index.php:1025 msgid "User only can use the API." msgstr "ユーザは API のみ利用可能" -#: ../../index.php:1217 +#: ../../index.php:1231 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "メタコンソールの MR (%d) は、こちら (%d) と異なります" @@ -50054,36 +51483,32 @@ msgstr "見つかりませんでした。" msgid "Standard User" msgstr "標準ユーザ" -#: ../../operation/heatmap.php:92 ../../operation/menu.php:71 +#: ../../operation/heatmap.php:95 ../../operation/menu.php:197 msgid "Heatmap view" msgstr "ヒートマップ表示" -#: ../../operation/tree.php:139 +#: ../../operation/tree.php:138 #, php-format msgid "Sort the agents by %s" msgstr "%s によるエージェント並び替え" -#: ../../operation/tree.php:142 -msgid "tags" -msgstr "タグ" - -#: ../../operation/tree.php:150 +#: ../../operation/tree.php:149 msgid "groups" msgstr "グループ" -#: ../../operation/tree.php:154 +#: ../../operation/tree.php:153 msgid "module groups" msgstr "モジュールグループ" -#: ../../operation/tree.php:163 +#: ../../operation/tree.php:162 msgid "policies" msgstr "ポリシー" -#: ../../operation/tree.php:219 +#: ../../operation/tree.php:215 msgid "Search group" msgstr "検索グループ" -#: ../../operation/tree.php:223 ../../operation/tree.php:279 +#: ../../operation/tree.php:221 ../../operation/tree.php:310 msgid "Show not init modules" msgstr "未初期化モジュール表示" @@ -50091,23 +51516,23 @@ msgstr "未初期化モジュール表示" msgid "Search agent" msgstr "エージェント検索" -#: ../../operation/tree.php:235 +#: ../../operation/tree.php:244 msgid "Show not init agents" msgstr "未初期化エージェント表示" -#: ../../operation/tree.php:243 +#: ../../operation/tree.php:254 msgid "Show full hirearchy" msgstr "全階層表示" -#: ../../operation/tree.php:254 +#: ../../operation/tree.php:288 msgid "Show only disabled" msgstr "無効のもののみ表示" -#: ../../operation/tree.php:276 +#: ../../operation/tree.php:305 msgid "Search module" msgstr "モジュール検索" -#: ../../operation/tree.php:308 +#: ../../operation/tree.php:355 msgid "Tree search" msgstr "ツリー検索" @@ -50115,50 +51540,58 @@ msgstr "ツリー検索" msgid "User detail editor" msgstr "ユーザ情報の編集" -#: ../../operation/users/user_edit.php:159 +#: ../../operation/users/user_edit.php:182 msgid "Current password of user is required to perform password change" msgstr "ユーザの現在のパスワードは変更する必要があります" -#: ../../operation/users/user_edit.php:161 +#: ../../operation/users/user_edit.php:184 msgid "Current password of user is not correct" msgstr "ユーザの現在のパスワードは正しくありません" -#: ../../operation/users/user_edit.php:165 +#: ../../operation/users/user_edit.php:188 msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" -#: ../../operation/users/user_edit.php:178 -#: ../../operation/users/user_edit.php:197 +#: ../../operation/users/user_edit.php:201 +#: ../../operation/users/user_edit.php:220 msgid "Password successfully updated" msgstr "パスワードを更新しました。" -#: ../../operation/users/user_edit.php:188 -#: ../../operation/users/user_edit.php:240 +#: ../../operation/users/user_edit.php:211 +#: ../../operation/users/user_edit.php:263 msgid "Error updating user info" msgstr "ユーザ情報の更新に失敗しました。" -#: ../../operation/users/user_edit.php:199 +#: ../../operation/users/user_edit.php:222 msgid "Skin successfully updated" msgstr "スキンを更新しました。" -#: ../../operation/users/user_edit.php:213 +#: ../../operation/users/user_edit.php:236 msgid "Please enter a valid email" msgstr "正しいメールアドレスを入力してください" -#: ../../operation/users/user_edit.php:215 +#: ../../operation/users/user_edit.php:238 msgid "Please enter a valid phone number" msgstr "正しい電話番号を入力してください" -#: ../../operation/users/user_edit.php:221 +#: ../../operation/users/user_edit.php:244 msgid "Error updating passwords: " msgstr "パスワード更新エラー: " -#: ../../operation/users/user_edit.php:245 +#: ../../operation/users/user_edit.php:268 msgid "Edit my User" msgstr "ユーザ編集" -#: ../../operation/users/user_edit.php:328 +#: ../../operation/users/user_edit.php:314 +msgid "Renew API Token" +msgstr "API トークンの更新" + +#: ../../operation/users/user_edit.php:346 +msgid "Show API Token" +msgstr "API トークンの表示" + +#: ../../operation/users/user_edit.php:356 msgid "" "Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf." "d/php.conf" @@ -50166,67 +51599,53 @@ msgstr "" "ディレクティブ HTTP_AUTHORIZATION=$1 が設定されていません。 /etc/httpd/conf.d/" "php.conf に追加してください。" -#: ../../operation/users/user_edit.php:377 -msgid "Current password" -msgstr "現在のパスワード" - -#: ../../operation/users/user_edit.php:379 +#: ../../operation/users/user_edit.php:414 msgid "You cannot change your password under the current authentication scheme" msgstr "現在の認証スキームではパスワードを変更できません" -#: ../../operation/users/user_edit.php:394 +#: ../../operation/users/user_edit.php:429 msgid "If checkbox is clicked then block size global configuration is used" msgstr "チェックボックスをクリックすると、システム全体の設定が利用されます" -#: ../../operation/users/user_edit.php:478 -#: ../../operation/users/user_edit.php:487 +#: ../../operation/users/user_edit.php:519 +#: ../../operation/users/user_edit.php:528 msgid "Theme" msgstr "テーマ" -#: ../../operation/users/user_edit.php:488 +#: ../../operation/users/user_edit.php:529 msgid "This change will only apply to nodes" msgstr "この変更はノードにのみ適用されます" -#: ../../operation/users/user_edit.php:784 +#: ../../operation/users/user_edit.php:846 msgid "eHorus user configuration" msgstr "eHorus ユーザ設定" -#: ../../operation/users/user_edit.php:789 +#: ../../operation/users/user_edit.php:851 msgid "eHorus user acces enabled" msgstr "eHorus ユーザアクセスの有効化" -#: ../../operation/users/user_edit.php:836 +#: ../../operation/users/user_edit.php:905 msgid "Integria user configuration" msgstr "Integria ユーザ設定" -#: ../../operation/users/user_edit.php:873 +#: ../../operation/users/user_edit.php:948 msgid "You can not change your user info under the current authentication scheme" msgstr "現在の認証スキームではユーザ情報を変更できません" -#: ../../operation/users/user_edit.php:950 +#: ../../operation/users/user_edit.php:1036 msgid "This user doesn't have any assigned profile/group." msgstr "このユーザにはプロファイル・グループが割り当てられていません。" -#: ../../operation/users/user_edit_header.php:102 +#: ../../operation/users/user_edit_header.php:100 #: ../../operation/users/user_edit_notifications.php:36 msgid "User notifications" msgstr "ユーザ通知" -#: ../../operation/users/user_edit_header.php:127 -#: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:485 -msgid "Workspace" -msgstr "ワークスペース" - -#: ../../operation/users/user_edit_header.php:131 -msgid "Edit user" -msgstr "ユーザ編集" - #: ../../operation/users/user_edit_notifications.php:65 msgid "Also receive an email" msgstr "メールも受信する" -#: ../../operation/users/user_edit_notifications.php:94 +#: ../../operation/users/user_edit_notifications.php:95 msgid "Controls have been disabled by the system administrator" msgstr "システム管理者によって制御が無効化されています" @@ -50245,46 +51664,45 @@ msgstr "" msgid "Matches" msgstr "一致" -#: ../../operation/visual_console/view.php:389 +#: ../../operation/visual_console/view.php:407 msgid "Delete Item" msgstr "アイテム削除" -#: ../../operation/visual_console/view.php:395 +#: ../../operation/visual_console/view.php:413 msgid "Copy Item" msgstr "アイテムコピー" -#: ../../operation/visual_console/view.php:412 -#: ../../operation/agentes/estado_generalagente.php:345 +#: ../../operation/visual_console/view.php:430 msgid "Force remote checks" msgstr "リモートチェックを強制する" -#: ../../operation/visual_console/view.php:770 +#: ../../operation/visual_console/view.php:788 msgid "Are you sure you wish to set the visual console in maintenance mode" msgstr "ビジュアルコンソールをメンテナンスモードにしてよろしいですか" -#: ../../operation/visual_console/view.php:773 -#: ../../operation/visual_console/view.php:780 +#: ../../operation/visual_console/view.php:791 +#: ../../operation/visual_console/view.php:798 msgid "Are you sure you wish to disable maintenance mode" msgstr "メンテナンスモードを無効化してよろしいですか" -#: ../../operation/visual_console/view.php:776 +#: ../../operation/visual_console/view.php:794 msgid "The visual console was set to maintenance mode" msgstr "ビジュアルコンソールはメンテナンスモードに設定されています。" -#: ../../operation/visual_console/view.php:778 +#: ../../operation/visual_console/view.php:796 msgid "ago by user" msgstr "前、次のユーザによる: " -#: ../../operation/visual_console/view.php:785 +#: ../../operation/visual_console/view.php:803 msgid "Maintenance mode" msgstr "メンテナンスモード" -#: ../../operation/visual_console/view.php:846 +#: ../../operation/visual_console/view.php:864 msgid "Are you sure" msgstr "よろしいですか" #: ../../operation/visual_console/legacy_public_view.php:168 -#: ../../operation/visual_console/public_view.php:150 +#: ../../operation/visual_console/public_view.php:156 msgid "QR code of the page" msgstr "ページの QR コード" @@ -50307,12 +51725,12 @@ msgid "Refresh time" msgstr "更新時間" #: ../../operation/agentes/stat_win.php:278 -#: ../../operation/agentes/graphs.php:222 +#: ../../operation/agentes/graphs.php:237 msgid "Show events" msgstr "イベント表示" #: ../../operation/agentes/stat_win.php:299 -#: ../../operation/agentes/graphs.php:224 +#: ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "アラート表示" @@ -50325,12 +51743,13 @@ msgstr "開始時間" #: ../../operation/agentes/stat_win.php:325 #: ../../operation/agentes/stat_win.php:428 #: ../../operation/agentes/interface_traffic_graph_win.php:215 -#: ../../operation/agentes/graphs.php:218 -#: ../../operation/reporting/graph_viewer.php:332 +#: ../../operation/agentes/graphs.php:233 +#: ../../operation/reporting/graph_viewer.php:346 msgid "Time range" msgstr "時間範囲" #: ../../operation/agentes/stat_win.php:340 +#: ../../operation/reporting/graph_viewer.php:390 msgid "Zoom" msgstr "ズーム" @@ -50343,31 +51762,31 @@ msgstr "パーセント表示" msgid "Show AVG/MAX/MIN data series in graph" msgstr "グラウに平均/最大/最小データを表示" -#: ../../operation/agentes/stat_win.php:489 +#: ../../operation/agentes/stat_win.php:484 #: ../../operation/agentes/interface_traffic_graph_win.php:308 msgid "Graph configuration menu" msgstr "グラフ設定メニュー" -#: ../../operation/agentes/alerts_status.php:347 +#: ../../operation/agentes/alerts_status.php:344 msgid "No actions" msgstr "アクションがありません" -#: ../../operation/agentes/alerts_status.php:380 -#: ../../operation/agentes/estado_monitores.php:539 -#: ../../operation/agentes/alerts_status.functions.php:160 +#: ../../operation/agentes/alerts_status.php:378 +#: ../../operation/agentes/estado_monitores.php:577 +#: ../../operation/agentes/alerts_status.functions.php:223 msgid "Free text for search (*):" msgstr "検索文字列 (*):" -#: ../../operation/agentes/alerts_status.php:381 -#: ../../operation/agentes/alerts_status.functions.php:161 +#: ../../operation/agentes/alerts_status.php:379 +#: ../../operation/agentes/alerts_status.functions.php:224 msgid "Filter by module name, template name or action name" msgstr "モジュール名、テンプレート名、アクション名によるフィルタ" -#: ../../operation/agentes/alerts_status.php:450 +#: ../../operation/agentes/alerts_status.php:475 msgid "Full list of alerts" msgstr "アラートのフィルタ一覧" -#: ../../operation/agentes/alerts_status.php:541 +#: ../../operation/agentes/alerts_status.php:567 msgid "You must select at least one alert." msgstr "少なくとも一つのアラートを選択する必要があります。" @@ -50405,13 +51824,13 @@ msgid "Manual placement" msgstr "手動位置設定" #: ../../operation/agentes/exportdata.csv.php:66 -#: ../../operation/agentes/exportdata.php:71 +#: ../../operation/agentes/exportdata.php:102 #: ../../operation/agentes/exportdata.excel.php:66 msgid "Invalid time specified" msgstr "時間が正しくありません。" #: ../../operation/agentes/exportdata.csv.php:181 -#: ../../operation/agentes/exportdata.php:209 +#: ../../operation/agentes/exportdata.php:240 #: ../../operation/agentes/exportdata.excel.php:164 msgid "No modules specified" msgstr "モジュールが指定されていません。" @@ -50420,26 +51839,39 @@ msgstr "モジュールが指定されていません。" msgid "Review in log viewer" msgstr "ログビューワで確認" -#: ../../operation/agentes/log_sources_status.php:98 -msgid "No log sources found" -msgstr "ログソースが見つかりません" - -#: ../../operation/agentes/log_sources_status.php:117 +#: ../../operation/agentes/log_sources_status.php:101 msgid "Log sources status" msgstr "ログソースの状態" -#: ../../operation/agentes/estado_agente.php:242 +#: ../../operation/agentes/estado_agente.php:237 ../../operation/menu.php:182 +msgid "Agent detail" +msgstr "エージェント詳細" + +#: ../../operation/agentes/estado_agente.php:265 msgid "Sucessfully deleted agent" msgstr "エージェントを削除しました" -#: ../../operation/agentes/estado_agente.php:244 +#: ../../operation/agentes/estado_agente.php:266 msgid "There was an error message deleting the agent" msgstr "エージェント削除においてエラーが発生しました" -#: ../../operation/agentes/estado_agente.php:285 +#: ../../operation/agentes/estado_agente.php:354 msgid "Search in custom fields" msgstr "カスタムフィールド検索" +#: ../../operation/agentes/estado_agente.php:467 +#: ../../operation/agentes/status_monitor.php:1058 +msgid "Manage filter" +msgstr "フィルタ管理" + +#: ../../operation/agentes/estado_agente.php:1059 +msgid "L.S change" +msgstr "L.S 変更" + +#: ../../operation/agentes/estado_agente.php:1238 +msgid "Agent events" +msgstr "エージェントイベント" + #: ../../operation/agentes/ehorus.php:30 msgid "Missing agent id" msgstr "エージェントIDがありません" @@ -50477,20 +51909,20 @@ msgstr "接続が切れました、認証トークンが期限切れです" msgid "Reload the page to request a new authorization token" msgstr "新たな認証トークンの取得にはページを再読み込みしてください" -#: ../../operation/agentes/status_events.php:26 -#: ../../operation/agentes/status_events.php:27 +#: ../../operation/agentes/status_events.php:30 +#: ../../operation/agentes/status_events.php:31 msgid "Latest events for this agent" msgstr "このエージェントにおける最新イベント" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2314 +#: ../../operation/agentes/pandora_networkmap.view.php:2347 #: ../../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:2342 +#: ../../operation/agentes/pandora_networkmap.view.php:2375 msgid "List of networkmap" msgstr "ネットワークマップ一覧" @@ -50512,39 +51944,89 @@ msgstr "リアルタイム実行が無効です。" msgid "Network maps editor" msgstr "ネットワークマップエディタ" -#: ../../operation/agentes/pandora_networkmap.editor.php:342 +#: ../../operation/agentes/pandora_networkmap.editor.php:279 +msgid "Creating map..." +msgstr "マップ作成中..." + +#: ../../operation/agentes/pandora_networkmap.editor.php:281 +msgid "" +"To create a network map that visually recreates link-level (L2) relationships, " +"you must first discover these relationships with Discovery Server. Network " +"maps only reflect relationships that have already been discovered." +msgstr "" +"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、ま" +"ず自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク " +"マップには、すでに検出されている関係のみが反映されます。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:283 +msgid "" +"Discovery Server discovers relationships between interfaces (L2) through SNMP " +"and relationships between hosts (L3) through route discovery." +msgstr "" +"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティ" +"ング検出を通じてホスト間の関係 (L3) を検出します。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:284 +msgid "" +"You can also create these relationships manually by editing nodes or re-" +"passing a discovery task after adding new information (for example by adding " +"new SNMP communities)." +msgstr "" +"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 " +"(新しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行するこ" +"とによって作成することもできます。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:285 +msgid "See our documentation for more information." +msgstr "詳細についてはドキュメントを参照してください:" + +#: ../../operation/agentes/pandora_networkmap.editor.php:381 #: ../../operation/agentes/pandora_networkmap.view.php:164 msgid "Position X" msgstr "X 位置" -#: ../../operation/agentes/pandora_networkmap.editor.php:344 +#: ../../operation/agentes/pandora_networkmap.editor.php:387 #: ../../operation/agentes/pandora_networkmap.view.php:166 msgid "Position Y" msgstr "Y 位置" -#: ../../operation/agentes/pandora_networkmap.editor.php:347 +#: ../../operation/agentes/pandora_networkmap.editor.php:393 #: ../../operation/agentes/pandora_networkmap.view.php:169 msgid "Zoom scale" msgstr "拡大スケール" -#: ../../operation/agentes/pandora_networkmap.editor.php:352 +#: ../../operation/agentes/pandora_networkmap.editor.php:394 #: ../../operation/agentes/pandora_networkmap.view.php:171 msgid "" "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" -#: ../../operation/agentes/pandora_networkmap.editor.php:355 -#: ../../operation/agentes/pandora_networkmap.view.php:174 +#: ../../operation/agentes/pandora_networkmap.editor.php:430 +#: ../../operation/agentes/pandora_networkmap.view.php:178 msgid "CIDR IP mask" msgstr "CIDR IPマスク" -#: ../../operation/agentes/pandora_networkmap.editor.php:357 -#: ../../operation/agentes/pandora_networkmap.view.php:201 +#: ../../operation/agentes/pandora_networkmap.editor.php:446 +msgid "Source group" +msgstr "複製元グループ" + +#: ../../operation/agentes/pandora_networkmap.editor.php:459 +msgid "Source id group changed. All elements in networkmap will be lost." +msgstr "" +"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" + +#: ../../operation/agentes/pandora_networkmap.editor.php:470 +#: ../../operation/agentes/pandora_networkmap.view.php:260 +msgid "Don't show subgroups:" +msgstr "サブグループを表示しない:" + +#: ../../operation/agentes/pandora_networkmap.editor.php:482 +#: ../../operation/agentes/pandora_networkmap.view.php:217 msgid "Source from recon task" msgstr "自動検出タスクからのソース" -#: ../../operation/agentes/pandora_networkmap.editor.php:359 -#: ../../operation/agentes/pandora_networkmap.view.php:203 +#: ../../operation/agentes/pandora_networkmap.editor.php:496 +#: ../../operation/agentes/pandora_networkmap.view.php:219 msgid "" "It is setted any recon task, the nodes get from the recontask IP mask instead " "from the group." @@ -50552,47 +52034,28 @@ msgstr "" "自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マ" "スクから取得します。" -#: ../../operation/agentes/pandora_networkmap.editor.php:376 -#: ../../operation/agentes/pandora_networkmap.view.php:219 -msgid "Show only the task with the recon script \"SNMP L2 Recon\"." -msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:380 -#: ../../operation/agentes/pandora_networkmap.view.php:223 +#: ../../operation/agentes/pandora_networkmap.editor.php:502 +#: ../../operation/agentes/pandora_networkmap.view.php:239 msgid "Source from CIDR IP mask" msgstr "CIDR IPマスクからのソース" -#: ../../operation/agentes/pandora_networkmap.editor.php:383 -msgid "Source group" -msgstr "複製元グループ" - -#: ../../operation/agentes/pandora_networkmap.editor.php:400 -msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "" -"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" - -#: ../../operation/agentes/pandora_networkmap.editor.php:405 -#: ../../operation/agentes/pandora_networkmap.view.php:235 -msgid "Don't show subgroups:" -msgstr "サブグループを表示しない:" - -#: ../../operation/agentes/pandora_networkmap.editor.php:423 -#: ../../operation/agentes/pandora_networkmap.view.php:269 +#: ../../operation/agentes/pandora_networkmap.editor.php:516 +#: ../../operation/agentes/pandora_networkmap.view.php:294 msgid "Method generation networkmap" msgstr "ネットワークマップ生成手法" -#: ../../operation/agentes/pandora_networkmap.editor.php:444 -#: ../../operation/agentes/pandora_networkmap.view.php:285 +#: ../../operation/agentes/pandora_networkmap.editor.php:534 +#: ../../operation/agentes/pandora_networkmap.view.php:310 msgid "Separation between nodes. By default 0.25" msgstr "ノード間の分離。デフォルトは 0.25 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:446 -#: ../../operation/agentes/pandora_networkmap.view.php:287 +#: ../../operation/agentes/pandora_networkmap.editor.php:538 +#: ../../operation/agentes/pandora_networkmap.view.php:312 msgid "Rank separation" msgstr "ランク分け" -#: ../../operation/agentes/pandora_networkmap.editor.php:447 -#: ../../operation/agentes/pandora_networkmap.view.php:288 +#: ../../operation/agentes/pandora_networkmap.editor.php:539 +#: ../../operation/agentes/pandora_networkmap.view.php:313 msgid "" "Only flat and radial. Separation between arrows. By default 0.5 in flat and " "1.0 in radial" @@ -50600,29 +52063,29 @@ msgstr "" "フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが " "0.5、ラジアルが 1.0 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:449 -#: ../../operation/agentes/pandora_networkmap.view.php:290 +#: ../../operation/agentes/pandora_networkmap.editor.php:543 +#: ../../operation/agentes/pandora_networkmap.view.php:315 msgid "Min nodes dist" msgstr "最小ノード間隔" -#: ../../operation/agentes/pandora_networkmap.editor.php:450 -#: ../../operation/agentes/pandora_networkmap.view.php:291 +#: ../../operation/agentes/pandora_networkmap.editor.php:544 +#: ../../operation/agentes/pandora_networkmap.view.php:316 msgid "Only circular. Minimum separation between all nodes. By default 1.0" msgstr "円のみ。ノード間の最小距離です。デフォルトは 1.0 です。" -#: ../../operation/agentes/pandora_networkmap.editor.php:452 -#: ../../operation/agentes/pandora_networkmap.view.php:293 +#: ../../operation/agentes/pandora_networkmap.editor.php:548 +#: ../../operation/agentes/pandora_networkmap.view.php:318 msgid "Default ideal node separation" msgstr "デフォルトノード間距離" -#: ../../operation/agentes/pandora_networkmap.editor.php:453 -#: ../../operation/agentes/pandora_networkmap.view.php:294 +#: ../../operation/agentes/pandora_networkmap.editor.php:549 +#: ../../operation/agentes/pandora_networkmap.view.php:319 msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" msgstr "" "fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 で" "す。" -#: ../../operation/agentes/pandora_networkmap.editor.php:632 +#: ../../operation/agentes/pandora_networkmap.editor.php:744 msgid "Source id group changed. All elements in Networkmap will be lost" msgstr "" "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" @@ -50641,11 +52104,11 @@ msgstr "更新しました" msgid "Succesfully duplicate" msgstr "複製しました" -#: ../../operation/agentes/pandora_networkmap.php:553 +#: ../../operation/agentes/pandora_networkmap.php:562 msgid "Succesfully deleted" msgstr "削除しました" -#: ../../operation/agentes/pandora_networkmap.php:663 +#: ../../operation/agentes/pandora_networkmap.php:672 msgid "List of network maps" msgstr "ネットワークマップの一覧" @@ -50657,15 +52120,15 @@ msgstr "空マップ" msgid "Pending to generate" msgstr "生成の保留" -#: ../../operation/agentes/pandora_networkmap.php:821 +#: ../../operation/agentes/pandora_networkmap.php:846 msgid "There are no maps defined." msgstr "定義済マップがありません。" -#: ../../operation/agentes/pandora_networkmap.php:828 +#: ../../operation/agentes/pandora_networkmap.php:860 msgid "Create network map" msgstr "ネットワークマップ作成" -#: ../../operation/agentes/pandora_networkmap.php:835 +#: ../../operation/agentes/pandora_networkmap.php:860 msgid "Create empty network map" msgstr "空のネットワークマップ作成" @@ -50682,63 +52145,63 @@ msgstr "ズーム倍率" msgid "Full" msgstr "フル" -#: ../../operation/agentes/graphs.php:143 +#: ../../operation/agentes/graphs.php:158 msgid "Other modules" msgstr "他のモジュール" -#: ../../operation/agentes/graphs.php:150 +#: ../../operation/agentes/graphs.php:165 msgid "Modules network no proc" msgstr "proc以外のネットワークモジュール" -#: ../../operation/agentes/graphs.php:157 +#: ../../operation/agentes/graphs.php:172 msgid "Modules boolean" msgstr "ブーリアン(二値)モジュール" -#: ../../operation/agentes/graphs.php:224 +#: ../../operation/agentes/graphs.php:239 msgid "the combined graph does not show the alerts into this graph" msgstr "組み合わせグラフは、グラフ内にアラートを表示しません" -#: ../../operation/agentes/graphs.php:226 +#: ../../operation/agentes/graphs.php:241 msgid "Show as one combined graph" msgstr "一つの組み合わせグラフとして表示" -#: ../../operation/agentes/graphs.php:228 +#: ../../operation/agentes/graphs.php:243 msgid "several graphs for each module" msgstr "モジュールごとの複数のグラフ" -#: ../../operation/agentes/graphs.php:229 +#: ../../operation/agentes/graphs.php:244 msgid "One combined graph" msgstr "一つの組み合わせグラフ" -#: ../../operation/agentes/graphs.php:237 ../../operation/agentes/graphs.php:412 +#: ../../operation/agentes/graphs.php:252 ../../operation/agentes/graphs.php:447 msgid "Area stack" msgstr "塗りつぶし積み重ね" -#: ../../operation/agentes/graphs.php:239 ../../operation/agentes/graphs.php:420 +#: ../../operation/agentes/graphs.php:254 ../../operation/agentes/graphs.php:455 msgid "Line stack" msgstr "線の積み重ね" -#: ../../operation/agentes/graphs.php:256 +#: ../../operation/agentes/graphs.php:282 msgid "Save as custom graph" msgstr "カスタムグラフとして保存" -#: ../../operation/agentes/graphs.php:269 +#: ../../operation/agentes/graphs.php:304 msgid "Filter graphs" msgstr "グラフフィルタ" -#: ../../operation/agentes/graphs.php:296 +#: ../../operation/agentes/graphs.php:331 msgid "There was an error loading the graph" msgstr "グラフロード中にエラーが発生しました" -#: ../../operation/agentes/graphs.php:304 ../../operation/agentes/graphs.php:308 +#: ../../operation/agentes/graphs.php:339 ../../operation/agentes/graphs.php:343 msgid "Name custom graph" msgstr "カスタムグラフ名" -#: ../../operation/agentes/graphs.php:354 +#: ../../operation/agentes/graphs.php:389 msgid "Save custom graph" msgstr "カスタムグラフの保存" -#: ../../operation/agentes/graphs.php:375 +#: ../../operation/agentes/graphs.php:410 msgid "Custom graph create from the tab graphs in the agent." msgstr "エージェントのグラフタブからカスタムグラフを作成" @@ -50759,40 +52222,45 @@ msgstr "" "ベース間で切り替えます。" #: ../../operation/agentes/datos_agente.php:211 -#: ../../operation/agentes/alerts_status.functions.php:118 +#: ../../operation/agentes/alerts_status.functions.php:151 msgid "Free text for search" msgstr "検索文字列" -#: ../../operation/agentes/interface_view.functions.php:170 -#: ../../operation/agentes/interface_view.functions.php:171 +#: ../../operation/agentes/interface_view.functions.php:184 +#: ../../operation/agentes/interface_view.functions.php:185 msgid "Interface filter" msgstr "インタフェースフィルタ" -#: ../../operation/agentes/interface_view.functions.php:489 +#: ../../operation/agentes/interface_view.functions.php:508 msgid "IfName" msgstr "IfName" -#: ../../operation/agentes/interface_view.functions.php:499 +#: ../../operation/agentes/interface_view.functions.php:518 msgid "IfSpeed" msgstr "IfSpeed" -#: ../../operation/agentes/interface_view.functions.php:507 +#: ../../operation/agentes/interface_view.functions.php:526 msgid "IfInOctets" msgstr "IfInOctets" -#: ../../operation/agentes/interface_view.functions.php:515 +#: ../../operation/agentes/interface_view.functions.php:534 msgid "IfOutOctets" msgstr "IfOutOctets" -#: ../../operation/agentes/interface_view.functions.php:523 +#: ../../operation/agentes/interface_view.functions.php:542 msgid "% Bandwidth usage (in)" msgstr "% 帯域幅使用量 (in)" -#: ../../operation/agentes/interface_view.functions.php:531 +#: ../../operation/agentes/interface_view.functions.php:550 msgid "% Bandwidth usage (out)" msgstr "% 帯域幅使用量 (out)" -#: ../../operation/agentes/interface_view.functions.php:736 +#: ../../operation/agentes/interface_view.functions.php:731 +#: ../../operation/agentes/pandora_networkmap.view.php:1308 +msgid "inOctets and outOctets must be enabled." +msgstr "inOctets および outOctets は有効化する必要があります。" + +#: ../../operation/agentes/interface_view.functions.php:797 msgid "No search parameters" msgstr "検索パラメータがありません" @@ -50810,15 +52278,24 @@ msgstr "%s スナップショットデータ表示 (モジュール %s)" msgid "Current data at %s" msgstr "%s 時点のデータ" -#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:548 +#: ../../operation/agentes/exportdata.php:49 +#: ../../operation/agentes/exportdata.php:62 ../../operation/menu.php:699 msgid "Export data" msgstr "データのエクスポート" -#: ../../operation/agentes/exportdata.php:248 +#: ../../operation/agentes/exportdata.php:310 +msgid "MS Excel" +msgstr "MS Excelファイル" + +#: ../../operation/agentes/exportdata.php:311 +msgid "Average per hour/day" +msgstr "平均の表示" + +#: ../../operation/agentes/exportdata.php:348 msgid "Source agent" msgstr "対象エージェント" -#: ../../operation/agentes/exportdata.php:283 +#: ../../operation/agentes/exportdata.php:368 msgid "No modules of type string. You can not calculate their average" msgstr "文字列タイプのモジュールは対象外です。また、平均の計算はできません。" @@ -50826,80 +52303,65 @@ msgstr "文字列タイプのモジュールは対象外です。また、平均 msgid "Export type" msgstr "エクスポート形式" -#: ../../operation/agentes/exportdata.php:380 -msgid "MS Excel" -msgstr "MS Excelファイル" - -#: ../../operation/agentes/exportdata.php:381 -msgid "Average per hour/day" -msgstr "平均の表示" - #: ../../operation/agentes/custom_fields.php:59 msgid "No fields defined" msgstr "フィールドが定義されていません。" -#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:63 +#: ../../operation/agentes/interface_view.php:63 ../../operation/menu.php:189 msgid "Interface view" msgstr "インタフェース表示" -#: ../../operation/agentes/status_monitor.php:95 ../../operation/menu.php:60 +#: ../../operation/agentes/status_monitor.php:327 ../../operation/menu.php:186 msgid "Monitor detail" msgstr "モニタ項目詳細" -#: ../../operation/agentes/status_monitor.php:119 -msgid "Monitor view" -msgstr "モニタ表示" +#: ../../operation/agentes/status_monitor.php:592 +#: ../../operation/agentes/alerts_status.functions.php:127 +msgid "No tags" +msgstr "タグ無し" -#: ../../operation/agentes/status_monitor.php:641 +#: ../../operation/agentes/status_monitor.php:675 msgid "Wux server module" msgstr "Wux サーバモジュール" -#: ../../operation/agentes/status_monitor.php:662 +#: ../../operation/agentes/status_monitor.php:971 msgid "Min. hours in current status" msgstr "現在の状態の最小時間" -#: ../../operation/agentes/status_monitor.php:765 +#: ../../operation/agentes/status_monitor.php:981 msgid "Not condition" msgstr "状態なし" -#: ../../operation/agentes/status_monitor.php:765 +#: ../../operation/agentes/status_monitor.php:996 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:872 -msgid "Show filters" -msgstr "フィルタ表示" - -#: ../../operation/agentes/status_monitor.php:1325 +#: ../../operation/agentes/status_monitor.php:1541 msgid "Data Type" msgstr "データのタイプ" -#: ../../operation/agentes/status_monitor.php:1444 -#: ../../operation/agentes/pandora_networkmap.view.php:1786 +#: ../../operation/agentes/status_monitor.php:1585 +msgid "W/C" +msgstr "" + +#: ../../operation/agentes/status_monitor.php:1671 +#: ../../operation/agentes/pandora_networkmap.view.php:1819 msgid "(Adopt) " msgstr "(適用) " -#: ../../operation/agentes/status_monitor.php:1452 -#: ../../operation/agentes/pandora_networkmap.view.php:1794 +#: ../../operation/agentes/status_monitor.php:1679 +#: ../../operation/agentes/pandora_networkmap.view.php:1827 msgid "(Unlinked) (Adopt) " msgstr "(未リンク) (適用) " -#: ../../operation/agentes/status_monitor.php:1455 -#: ../../operation/agentes/pandora_networkmap.view.php:1797 +#: ../../operation/agentes/status_monitor.php:1682 +#: ../../operation/agentes/pandora_networkmap.view.php:1830 msgid "(Unlinked) " msgstr "(未リンク) " -#: ../../operation/agentes/status_monitor.php:2013 -msgid "This group doesn't have any monitor" -msgstr "該当するモニタ項目がありません。" - -#: ../../operation/agentes/status_monitor.php:2015 -msgid "Sorry no search parameters" -msgstr "検索パラメータがありません" - -#: ../../operation/agentes/group_view.php:180 +#: ../../operation/agentes/group_view.php:181 msgid "Summary of the status groups" msgstr "グループの状態概要" @@ -50915,11 +52377,11 @@ msgstr "関係情報" msgid "Non-initialized modules found." msgstr "未初期化モジュールがあります。" -#: ../../operation/agentes/estado_monitores.php:181 +#: ../../operation/agentes/estado_monitores.php:190 msgid "List of modules" msgstr "モジュールの一覧" -#: ../../operation/agentes/estado_monitores.php:182 +#: ../../operation/agentes/estado_monitores.php:191 msgid "" "To see the list of modules paginated, enable this option in the Styles " "Configuration." @@ -50927,36 +52389,40 @@ msgstr "" "モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化" "します。" -#: ../../operation/agentes/estado_monitores.php:518 -msgid "Status:" -msgstr "状態:" - -#: ../../operation/agentes/estado_monitores.php:524 +#: ../../operation/agentes/estado_monitores.php:519 msgid "Not Normal" msgstr "非正常" -#: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name or alert name, list matches." -msgstr "モジュール名またはアラート名で検索し、一致したものを一覧表示します。" +#: ../../operation/agentes/estado_monitores.php:559 +msgid "Status:" +msgstr "状態:" -#: ../../operation/agentes/pandora_networkmap.view.php:1654 +#: ../../operation/agentes/estado_monitores.php:578 +msgid "Search by module name, list matches." +msgstr "モジュール名で検索し、一致したものを一覧表示します。" + +#: ../../operation/agentes/pandora_networkmap.view.php:235 +msgid "Show only the task with the recon script \"SNMP L2 Recon\"." +msgstr "自動検出スクリプト \"SNMP L2 Recon\" のタスクのみ表示。" + +#: ../../operation/agentes/pandora_networkmap.view.php:1687 msgid "Success be updated." msgstr "更新しました。" -#: ../../operation/agentes/pandora_networkmap.view.php:1751 +#: ../../operation/agentes/pandora_networkmap.view.php:1784 msgid "Name: " msgstr "名前: " -#: ../../operation/agentes/pandora_networkmap.view.php:1801 +#: ../../operation/agentes/pandora_networkmap.view.php:1834 msgid "Policy: " msgstr "ポリシー: " -#: ../../operation/agentes/pandora_networkmap.view.php:1898 +#: ../../operation/agentes/pandora_networkmap.view.php:1931 msgid "Data: " msgstr "データ: " -#: ../../operation/agentes/pandora_networkmap.view.php:1900 -#: ../../operation/agentes/estado_generalagente.php:832 +#: ../../operation/agentes/pandora_networkmap.view.php:1933 +#: ../../operation/agentes/estado_generalagente.php:923 msgid "Last contact: " msgstr "最新の接続: " @@ -50964,61 +52430,77 @@ msgstr "最新の接続: " msgid "Sons" msgstr "子" -#: ../../operation/agentes/ver_agente.php:1612 +#: ../../operation/agentes/ver_agente.php:1596 msgid "Log Viewer" msgstr "ログビューア" -#: ../../operation/agentes/ver_agente.php:1651 +#: ../../operation/agentes/ver_agente.php:1635 msgid "Terminal" msgstr "端末" -#: ../../operation/agentes/ver_agente.php:1673 +#: ../../operation/agentes/ver_agente.php:1657 msgid "Processes" msgstr "プロセス" +#: ../../operation/agentes/ver_agente.php:1840 +msgid "Data View" +msgstr "データ表示" + +#: ../../operation/agentes/ver_agente.php:1910 +msgid "Network configuration" +msgstr "ネットワーク設定" + +#: ../../operation/agentes/ver_agente.php:1925 +msgid "Agent main view" +msgstr "エージェントメイン表示" + #: ../../operation/agentes/estado_generalagente.php:57 msgid "The agent has not assigned server. Maybe agent does not run fine." msgstr "" "エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可" "能性があります。" -#: ../../operation/agentes/estado_generalagente.php:265 -msgid "Remote configuration enabled" -msgstr "リモート設定有効" +#: ../../operation/agentes/estado_generalagente.php:98 +msgid "In scheduled downtime" +msgstr "計画停止中" -#: ../../operation/agentes/estado_generalagente.php:328 +#: ../../operation/agentes/estado_generalagente.php:395 msgid "Agent contact" msgstr "エージェント接続" -#: ../../operation/agentes/estado_generalagente.php:335 +#: ../../operation/agentes/estado_generalagente.php:401 msgid "Refresh data" msgstr "最新情報に更新" -#: ../../operation/agentes/estado_generalagente.php:376 +#: ../../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:464 -msgid "Agent info" -msgstr "エージェント情報" - -#: ../../operation/agentes/estado_generalagente.php:477 +#: ../../operation/agentes/estado_generalagente.php:555 msgid "There is no GIS data." msgstr "GIS データがありません。" -#: ../../operation/agentes/estado_generalagente.php:614 +#: ../../operation/agentes/estado_generalagente.php:688 msgid "Agent access rate (Last 24h)" msgstr "エージェントアクセス頻度(直近 24時間)" -#: ../../operation/agentes/estado_generalagente.php:654 +#: ../../operation/agentes/estado_generalagente.php:745 msgid "Active incident on this agent" msgstr "このエージェントにおけるアクティブインシデント" -#: ../../operation/agentes/estado_generalagente.php:812 +#: ../../operation/agentes/estado_generalagente.php:903 msgid "Events info (24hr.)" msgstr "イベント情報 (24時間)" -#: ../../operation/agentes/estado_generalagente.php:951 +#: ../../operation/agentes/estado_generalagente.php:1050 +msgid "Agent data" +msgstr "エージェントデータ" + +#: ../../operation/agentes/estado_generalagente.php:1111 msgid "Interface information (SNMP)" msgstr "インタフェース情報 (SNMP)" @@ -51039,20 +52521,20 @@ msgstr "アラートを承諾しました。" msgid "Error processing alert(s)" msgstr "アラート処理エラー" -#: ../../operation/agentes/alerts_status.functions.php:119 +#: ../../operation/agentes/alerts_status.functions.php:152 msgid "Filter by agent name, module name, template name or action name" msgstr "" "エージェント名、モジュール名、テンプレート名および、アクション名でのフィルタ" -#: ../../operation/agentes/tactical.php:202 +#: ../../operation/agentes/tactical.php:221 msgid "Report of State" msgstr "状態レポート" -#: ../../operation/agentes/tactical.php:246 +#: ../../operation/agentes/tactical.php:265 msgid "Event graph" msgstr "イベントグラフ" -#: ../../operation/agentes/tactical.php:251 +#: ../../operation/agentes/tactical.php:270 msgid "Event graph by agent" msgstr "エージェントごとのイベントグラフ" @@ -51069,263 +52551,259 @@ msgid "Received messages" msgstr "受信メッセージ" #: ../../operation/messages/message_list.php:64 -#: ../../operation/messages/message_list.php:304 +#: ../../operation/messages/message_list.php:310 #: ../../operation/messages/message_edit.php:78 msgid "Create message" msgstr "メッセージの作成" -#: ../../operation/messages/message_list.php:136 +#: ../../operation/messages/message_list.php:132 msgid "Not deleted. Error deleting messages" msgstr "削除できません。メッセージ削除エラー" -#: ../../operation/messages/message_list.php:144 -#: ../../operation/messages/message_list.php:153 +#: ../../operation/messages/message_list.php:140 +#: ../../operation/messages/message_list.php:149 msgid "You have" msgstr "あなたのアカウントに" -#: ../../operation/messages/message_list.php:144 +#: ../../operation/messages/message_list.php:140 msgid "sent message(s)" msgstr "通の送信済メッセージがあります" -#: ../../operation/messages/message_list.php:153 +#: ../../operation/messages/message_list.php:149 msgid "unread message(s)" msgstr "通の新しいメッセージがあります。" -#: ../../operation/messages/message_list.php:164 +#: ../../operation/messages/message_list.php:160 msgid "There are no messages." msgstr "メッセージがありません。" -#: ../../operation/messages/message_list.php:194 -#: ../../operation/messages/message_edit.php:269 +#: ../../operation/messages/message_list.php:190 +#: ../../operation/messages/message_edit.php:364 msgid "Destination" msgstr "宛先" -#: ../../operation/messages/message_list.php:196 -#: ../../operation/messages/message_edit.php:265 +#: ../../operation/messages/message_list.php:192 +#: ../../operation/messages/message_edit.php:303 msgid "Sender" msgstr "差出人" -#: ../../operation/messages/message_list.php:214 +#: ../../operation/messages/message_list.php:210 msgid "Click to read" msgstr "メッセージを読む" -#: ../../operation/messages/message_list.php:218 +#: ../../operation/messages/message_list.php:213 msgid "Mark as unread" msgstr "未読にする" -#: ../../operation/messages/message_list.php:224 -#: ../../operation/messages/message_list.php:228 +#: ../../operation/messages/message_list.php:218 +#: ../../operation/messages/message_list.php:221 msgid "Message unread - click to read" msgstr "未読メッセージ - クリックして読む" -#: ../../operation/messages/message_list.php:256 +#: ../../operation/messages/message_list.php:262 msgid "No Subject" msgstr "件名なし" -#: ../../operation/messages/message_edit.php:90 +#: ../../operation/messages/message_edit.php:85 msgid "Compose message" msgstr "メッセージを作成" -#: ../../operation/messages/message_edit.php:119 +#: ../../operation/messages/message_edit.php:114 msgid "This message does not exist in the system" msgstr "このメッセージはシステム上に存在しません。" -#: ../../operation/messages/message_edit.php:188 +#: ../../operation/messages/message_edit.php:183 msgid "wrote" msgstr "によると" -#: ../../operation/messages/message_edit.php:203 -msgid "Delete conversation" -msgstr "メッセージ削除" - -#: ../../operation/messages/message_edit.php:211 +#: ../../operation/messages/message_edit.php:198 msgid "Reply" msgstr "返信" -#: ../../operation/messages/message_edit.php:226 +#: ../../operation/messages/message_edit.php:210 +msgid "Delete conversation" +msgstr "メッセージ削除" + +#: ../../operation/messages/message_edit.php:231 msgid "User or group must be selected." msgstr "ユーザまたはグループを選択する必要があります。" -#: ../../operation/messages/message_edit.php:244 +#: ../../operation/messages/message_edit.php:249 #, php-format msgid "Message successfully sent to user %s" msgstr "ユーザ %s 宛にメッセージを送りました。" -#: ../../operation/messages/message_edit.php:245 +#: ../../operation/messages/message_edit.php:250 #, php-format msgid "Error sending message to user %s" msgstr "ユーザ %s 宛のメッセージ送信に失敗しました。" -#: ../../operation/messages/message_edit.php:324 +#: ../../operation/messages/message_edit.php:334 msgid "Select user" msgstr "ユーザの選択" -#: ../../operation/messages/message_edit.php:330 +#: ../../operation/messages/message_edit.php:343 msgid "OR" msgstr "または" -#: ../../operation/messages/message_edit.php:341 +#: ../../operation/messages/message_edit.php:354 msgid "Select group" msgstr "グループの選択" -#: ../../operation/messages/message_edit.php:396 +#: ../../operation/messages/message_edit.php:423 msgid "Send message" msgstr "メッセージを送信する" -#: ../../operation/network/network_report.php:67 -#: ../../operation/network/network_usage_map.php:124 +#: ../../operation/network/network_report.php:79 +#: ../../operation/network/network_usage_map.php:223 msgid "Data to show" msgstr "表示データ" -#: ../../operation/network/network_report.php:78 -#: ../../operation/network/network_usage_map.php:104 +#: ../../operation/network/network_report.php:92 msgid "Number of result to show" msgstr "表示する結果の数" -#: ../../operation/network/network_report.php:109 -#: ../../operation/network/network_usage_map.php:82 -msgid "Time Period" -msgstr "期間" +#: ../../operation/network/network_report.php:183 +#: ../../operation/network/network_usage_map.php:189 +#: ../../operation/netflow/nf_live_view.php:483 +msgid "Defined period" +msgstr "定義済期間" -#: ../../operation/network/network_report.php:121 -#: ../../operation/network/network_usage_map.php:94 -#: ../../operation/netflow/nf_live_view.php:292 -msgid "Select this checkbox to write interval instead a date." -msgstr "日時の代わりに間隔を記載するにはこのチェックボックスを選択してください。" - -#: ../../operation/network/network_report.php:186 -#: ../../operation/network/network_report.php:235 +#: ../../operation/network/network_report.php:274 +#: ../../operation/network/network_report.php:323 msgid "Flows" msgstr "フロー" -#: ../../operation/network/network_report.php:197 -#: ../../operation/network/network_report.php:237 +#: ../../operation/network/network_report.php:285 +#: ../../operation/network/network_report.php:325 msgid "Packets" msgstr "パケット" -#: ../../operation/network/network_report.php:258 +#: ../../operation/network/network_report.php:427 #, php-format msgid "Filtered by port %s. Click here to remove the filter." msgstr "" "ポート %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" -#: ../../operation/network/network_report.php:258 +#: ../../operation/network/network_report.php:427 #, php-format msgid "Filtered by IP %s. Click here to remove the filter." msgstr "IP %s によるフィルタ。フィルタを削除するにはこれをクリックしてください。" -#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:112 +#: ../../operation/network/network_usage_map.php:39 ../../operation/menu.php:226 msgid "Network usage map" msgstr "ネットワーク利用マップ" -#: ../../operation/network/network_usage_map.php:139 +#: ../../operation/network/network_usage_map.php:93 msgid "Show netflow map" msgstr "Netflow マップ表示" -#: ../../operation/network/network_usage_map.php:175 -msgid "No data retrieved" -msgstr "取得データがありません" +#: ../../operation/network/network_usage_map.php:201 +msgid "Results to show" +msgstr "表示する結果" -#: ../../operation/netflow/nf_live_view.php:131 -#: ../../operation/netflow/nf_live_view.php:153 -#: ../../operation/netflow/nf_live_view.php:159 +#: ../../operation/netflow/nf_live_view.php:130 msgid "Netflow live view" msgstr "Netflow ライブビュー" -#: ../../operation/netflow/nf_live_view.php:170 +#: ../../operation/netflow/nf_live_view.php:163 msgid "Error creating filter" msgstr "フィルタ作成エラー" -#: ../../operation/netflow/nf_live_view.php:172 +#: ../../operation/netflow/nf_live_view.php:165 msgid "Filter created successfully" msgstr "フィルタを作成しました" -#: ../../operation/netflow/nf_live_view.php:191 +#: ../../operation/netflow/nf_live_view.php:184 msgid "Filter updated successfully" msgstr "フィルタを更新しました" -#: ../../operation/netflow/nf_live_view.php:192 +#: ../../operation/netflow/nf_live_view.php:185 msgid "Error updating filter" msgstr "フィルタ更新エラー" -#: ../../operation/netflow/nf_live_view.php:216 -msgid "Draw live filter" -msgstr "ライブ表示フィルタ" - -#: ../../operation/netflow/nf_live_view.php:250 +#: ../../operation/netflow/nf_live_view.php:228 msgid "Connection" msgstr "接続" -#: ../../operation/netflow/nf_live_view.php:303 -#: ../../operation/incidents/integriaims_export_csv.php:84 -#: ../../operation/incidents/configure_integriaims_incident.php:325 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:323 -#: ../../operation/incidents/list_integriaims_incidents.php:359 -msgid "Resolution" -msgstr "解像度" - -#: ../../operation/netflow/nf_live_view.php:303 -msgid "The interval will be divided in chunks the length of the resolution." -msgstr "間隔は解像度の長さに分割されます。" - -#: ../../operation/netflow/nf_live_view.php:404 +#: ../../operation/netflow/nf_live_view.php:284 msgid "Select a filter" msgstr "フィルタを選択" -#: ../../operation/netflow/nf_live_view.php:477 +#: ../../operation/netflow/nf_live_view.php:357 msgid "IP address resolution" msgstr "IP アドレス解決" -#: ../../operation/netflow/nf_live_view.php:477 +#: ../../operation/netflow/nf_live_view.php:357 msgid "Resolve the IP addresses to get their hostnames." msgstr "ホスト名を得るために IP アドレスから名前解決をします。" -#: ../../operation/netflow/nf_live_view.php:480 +#: ../../operation/netflow/nf_live_view.php:360 msgid "Source ip" msgstr "ソース IP" -#: ../../operation/netflow/nf_live_view.php:503 +#: ../../operation/netflow/nf_live_view.php:465 +#: ../../operation/incidents/integriaims_export_csv.php:84 +#: ../../operation/incidents/configure_integriaims_incident.php:353 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:339 +#: ../../operation/incidents/list_integriaims_incidents.php:401 +msgid "Resolution" +msgstr "解像度" + +#: ../../operation/netflow/nf_live_view.php:477 +msgid "The interval will be divided in chunks the length of the resolution." +msgstr "間隔は解像度の長さに分割されます。" + +#: ../../operation/netflow/nf_live_view.php:508 +msgid "Aggregated by" +msgstr "集約: " + +#: ../../operation/netflow/nf_live_view.php:525 +msgid "Max values" +msgstr "最大値" + +#: ../../operation/netflow/nf_live_view.php:575 msgid "Draw" msgstr "描画" -#: ../../operation/netflow/nf_live_view.php:507 +#: ../../operation/netflow/nf_live_view.php:587 msgid "Save as new filter" msgstr "新規フィルタとして保存" -#: ../../operation/netflow/nf_live_view.php:508 +#: ../../operation/netflow/nf_live_view.php:588 msgid "Update current filter" msgstr "現在のフィルタを更新" -#: ../../operation/netflow/nf_live_view.php:522 +#: ../../operation/netflow/nf_live_view.php:618 msgid "No filter selected" msgstr "フィルタが選択されていません" -#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:98 +#: ../../operation/netflow/netflow_explorer.php:46 ../../operation/menu.php:218 msgid "Netflow explorer" msgstr "Netflow エクスプローラ" -#: ../../operation/snmpconsole/snmp_statistics.php:85 +#: ../../operation/snmpconsole/snmp_statistics.php:87 msgid "SNMP Statistics" msgstr "SNMP 統計" -#: ../../operation/snmpconsole/snmp_statistics.php:156 +#: ../../operation/snmpconsole/snmp_statistics.php:158 msgid "There are no SNMP traps in database" msgstr "SNMP トラップデータがありません。" -#: ../../operation/snmpconsole/snmp_statistics.php:169 +#: ../../operation/snmpconsole/snmp_statistics.php:171 msgid "Traps received by source" msgstr "ソースごとの受信トラップ" -#: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:256 +#: ../../operation/snmpconsole/snmp_statistics.php:184 +#: ../../operation/snmpconsole/snmp_statistics.php:258 msgid "Number" msgstr "数" -#: ../../operation/snmpconsole/snmp_statistics.php:242 +#: ../../operation/snmpconsole/snmp_statistics.php:245 msgid "Traps received by Enterprise String" msgstr "Enterprise文字列ごとの受信トラップ" -#: ../../operation/snmpconsole/snmp_statistics.php:255 +#: ../../operation/snmpconsole/snmp_statistics.php:257 msgid "Trap Enterprise String" msgstr "Enterprise文字列トラップ" @@ -51337,16 +52815,16 @@ msgstr "SNMP ブラウザ" msgid "Adding modules in progress" msgstr "モジュールを追加中" -#: ../../operation/snmpconsole/snmp_browser.php:550 +#: ../../operation/snmpconsole/snmp_browser.php:546 msgid "Create policy" msgstr "ポリシー作成" -#: ../../operation/snmpconsole/snmp_browser.php:642 +#: ../../operation/snmpconsole/snmp_browser.php:638 msgid "Are you sure you want add module?" msgstr "モジュールを追加しますか?" #: ../../operation/snmpconsole/snmp_mib_uploader.php:47 -#: ../../operation/menu.php:137 +#: ../../operation/menu.php:249 msgid "MIB uploader" msgstr "MIB アップローダ" @@ -51359,83 +52837,94 @@ msgstr "" "あることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップ" "エディタを使ってください。" -#: ../../operation/menu.php:102 +#: ../../operation/menu.php:222 msgid "Netflow Live View" msgstr "Netflow ライブビュー" -#: ../../operation/menu.php:132 +#: ../../operation/menu.php:244 msgid "SNMP browser" msgstr "SNMP ブラウザ" -#: ../../operation/menu.php:141 +#: ../../operation/menu.php:253 msgid "SNMP filters" msgstr "SNMP フィルタ" -#: ../../operation/menu.php:274 ../../operation/gis_maps/gis_map.php:35 -msgid "GIS Maps" -msgstr "GIS マップ" +#: ../../operation/menu.php:338 ../../operation/menu.php:339 +msgid "Visual console list" +msgstr "ビジュアルコンソール一覧" -#: ../../operation/menu.php:279 +#: ../../operation/menu.php:404 msgid "List of Gis maps" msgstr "GISマップ一覧" -#: ../../operation/menu.php:430 +#: ../../operation/menu.php:489 ../../operation/menu.php:490 +msgid "Dashboard list" +msgstr "ダッシュボード一覧" + +#: ../../operation/menu.php:561 msgid "RSS" msgstr "RSS" -#: ../../operation/menu.php:474 ../../operation/events/events.php:1583 -msgid "Sound Alerts" -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" +msgstr "アコースティックコンソール" -#: ../../operation/menu.php:497 +#: ../../operation/menu.php:648 msgid "Configure user notifications" msgstr "ユーザ通知設定" -#: ../../operation/menu.php:517 +#: ../../operation/menu.php:668 msgid "Integria IMS statistics" msgstr "Integria IMS 統計" -#: ../../operation/menu.php:518 +#: ../../operation/menu.php:669 msgid "Integria IMS ticket list" msgstr "Integria IMS チケット一覧" -#: ../../operation/menu.php:531 +#: ../../operation/menu.php:682 msgid "Messages List" msgstr "メッセージ一覧" -#: ../../operation/menu.php:532 +#: ../../operation/menu.php:683 msgid "New message" msgstr "新規メッセージ" -#: ../../operation/menu.php:554 +#: ../../operation/menu.php:705 msgid "Scheduled downtime" msgstr "計画停止" -#: ../../operation/menu.php:628 -msgid "Tools" -msgstr "ツール" +#: ../../operation/gis_maps/gis_map.php:38 +msgid "List of GIS maps" +msgstr "GISマップ一覧" -#: ../../operation/gis_maps/gis_map.php:200 +#: ../../operation/gis_maps/gis_map.php:213 msgid "No maps found" msgstr "マップがありません。" -#: ../../operation/gis_maps/gis_map.php:219 +#: ../../operation/gis_maps/gis_map.php:240 msgid "Caution: Do you want delete the map?" msgstr "警告: マップを削除しますか。" -#: ../../operation/gis_maps/gis_map.php:226 +#: ../../operation/gis_maps/gis_map.php:247 msgid "Do you want to set default the map?" msgstr "このマップをデフォルトに設定しますか。" -#: ../../operation/gis_maps/gis_map.php:234 +#: ../../operation/gis_maps/gis_map.php:255 msgid "There was error on setup the default map." msgstr "デフォルトマップの設定でエラーが発生しました。" -#: ../../operation/gis_maps/render_view.php:145 +#: ../../operation/gis_maps/render_view.php:146 msgid "Show link to public GIS map" msgstr "公開 GIS マップのリンク表示" -#: ../../operation/gis_maps/render_view.php:170 +#: ../../operation/gis_maps/render_view.php:156 +msgid "10 minutes" +msgstr "10 分" + +#: ../../operation/gis_maps/render_view.php:171 msgid "Filter by status" msgstr "状態によるフィルタ" @@ -51473,7 +52962,7 @@ msgid "ID Ticket" msgstr "チケット ID" #: ../../operation/incidents/integriaims_export_csv.php:82 -#: ../../operation/incidents/list_integriaims_incidents.php:517 +#: ../../operation/incidents/list_integriaims_incidents.php:588 msgid "Group/Company" msgstr "グループ/会社" @@ -51482,25 +52971,32 @@ msgid "Started" msgstr "起動" #: ../../operation/incidents/integriaims_export_csv.php:88 -#: ../../operation/incidents/configure_integriaims_incident.php:282 -#: ../../operation/incidents/list_integriaims_incidents.php:345 -#: ../../operation/incidents/list_integriaims_incidents.php:521 +#: ../../operation/incidents/configure_integriaims_incident.php:323 +#: ../../operation/incidents/list_integriaims_incidents.php:374 +#: ../../operation/incidents/list_integriaims_incidents.php:592 msgid "Creator" msgstr "作成者" -#: ../../operation/incidents/incident_statistics.php:29 +#: ../../operation/incidents/incident_statistics.php:31 +#: ../../operation/incidents/configure_integriaims_incident.php:41 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:69 +#: ../../operation/incidents/list_integriaims_incidents.php:33 +msgid "Issues" +msgstr "イシュー" + +#: ../../operation/incidents/incident_statistics.php:47 msgid "Incidents by status" msgstr "ステータスで分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:32 +#: ../../operation/incidents/incident_statistics.php:50 msgid "Incidents by priority" msgstr "優先順位で分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:35 +#: ../../operation/incidents/incident_statistics.php:53 msgid "Incidents by group" msgstr "グループで分類したインシデント" -#: ../../operation/incidents/incident_statistics.php:38 +#: ../../operation/incidents/incident_statistics.php:56 msgid "Incidents by user" msgstr "ユーザで分類したインシデント" @@ -51512,140 +53008,170 @@ msgstr "Integria IMS チケットの更新" msgid "Create Integria IMS Ticket" msgstr "Integria IMS チケットの作成" -#: ../../operation/incidents/configure_integriaims_incident.php:123 +#: ../../operation/incidents/configure_integriaims_incident.php:142 msgid "Successfully created in Integria IMS" msgstr "Integria IMS で作成しました" -#: ../../operation/incidents/configure_integriaims_incident.php:124 +#: ../../operation/incidents/configure_integriaims_incident.php:143 msgid "Could not be created in Integria IMS" msgstr "Integria IMS で作成できませんでした" -#: ../../operation/incidents/configure_integriaims_incident.php:144 +#: ../../operation/incidents/configure_integriaims_incident.php:163 msgid "Successfully updated in Integria IMS" msgstr "Integria IMS で更新しました" -#: ../../operation/incidents/configure_integriaims_incident.php:145 +#: ../../operation/incidents/configure_integriaims_incident.php:164 msgid "Could not be updated in Integria IMS" msgstr "Integria IMS で更新できませんでした" -#: ../../operation/incidents/configure_integriaims_incident.php:294 +#: ../../operation/incidents/configure_integriaims_incident.php:323 msgid "" "This field corresponds to the Integria IMS user specified in Integria IMS setup" msgstr "" "このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対" "応します" -#: ../../operation/incidents/configure_integriaims_incident.php:352 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:206 +#: ../../operation/incidents/configure_integriaims_incident.php:383 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 msgid "File name" msgstr "ファイル名" -#: ../../operation/incidents/configure_integriaims_incident.php:354 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:208 +#: ../../operation/incidents/configure_integriaims_incident.php:388 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224 msgid "Attachment description" msgstr "添付の説明" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:77 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:93 msgid "Not yet" msgstr "未完了" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:81 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:97 msgid "Not closed yet" msgstr "未クローズ" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:115 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:246 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:131 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:262 msgid "Filename" msgstr "ファイル名" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:142 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:158 msgid "File successfully deleted" msgstr "ファイルを削除しました" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:143 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:159 msgid "File could not be deleted" msgstr "ファイルを削除できませんでした" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:238 msgid "Add attachment" msgstr "ファイルを追加" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:224 -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:397 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:240 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:413 msgid "Attached files" msgstr "添付ファイル一覧" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:282 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:298 msgid "Comment successfully added" msgstr "コメントを追加しました" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:283 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:299 msgid "Comment could not be added" msgstr "コメントを追加できませんでした" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:309 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:325 msgid "No comments found" msgstr "コメントがありません" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:349 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:365 msgid "Created by" msgstr "作者:" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:350 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 msgid "Owned by" msgstr "オーナー:" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:351 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:367 msgid "Closed by" msgstr "クローズ者:" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:368 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:384 msgid "Closed at" msgstr "クローズ日時:" -#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:379 +#: ../../operation/incidents/dashboard_detail_integriaims_incident.php:395 msgid "People" msgstr "ユーザ" #: ../../operation/incidents/list_integriaims_incidents.php:24 +#: ../../operation/incidents/list_integriaims_incidents.php:37 msgid "Integria IMS Tickets" msgstr "Integria IMS チケット" -#: ../../operation/incidents/list_integriaims_incidents.php:317 +#: ../../operation/incidents/list_integriaims_incidents.php:329 msgid "Text filter" msgstr "テキストフィルタ" -#: ../../operation/incidents/list_integriaims_incidents.php:381 +#: ../../operation/incidents/list_integriaims_incidents.php:423 msgid "Created from" msgstr "作成者:" -#: ../../operation/incidents/list_integriaims_incidents.php:393 +#: ../../operation/incidents/list_integriaims_incidents.php:435 msgid "Created to" msgstr "作成対象者:" -#: ../../operation/incidents/list_integriaims_incidents.php:518 +#: ../../operation/incidents/list_integriaims_incidents.php:589 msgid "Status/Resolution" msgstr "状態/解決" -#: ../../operation/incidents/list_integriaims_incidents.php:520 +#: ../../operation/incidents/list_integriaims_incidents.php:591 msgid "Updated/Started" msgstr "更新/開始" -#: ../../operation/incidents/list_integriaims_incidents.php:564 +#: ../../operation/incidents/list_integriaims_incidents.php:635 msgid "No tickets to show" msgstr "表示するチケットがありません" -#: ../../operation/inventory/inventory.php:292 -msgid "You must select at least one filter." -msgstr "少なくとも一つのフィルタを選択する必要があります。" +#: ../../operation/inventory/inventory.php:535 +#: ../../operation/inventory/inventory.php:570 +msgid "Basic info" +msgstr "基本情報" -#: ../../operation/inventory/inventory.php:441 +#: ../../operation/inventory/inventory.php:661 msgid "Order by agent" msgstr "エージェントで並べ替え" -#: ../../operation/inventory/inventory.php:485 -msgid "Export this list to CSV" -msgstr "この一覧を CSV へエクスポートする" +#: ../../operation/inventory/inventory.php:733 +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 +msgid "No inventory found" +msgstr "インベントリが見つかりません" + +#: ../../operation/inventory/inventory.php:1001 +#: ../../operation/inventory/inventory.php:1295 +msgid "Secondary IP" +msgstr "セカンダリ IP" + +#: ../../operation/inventory/inventory.php:1010 +#: ../../operation/inventory/inventory.php:1304 +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 +msgid "Agent info not found" +msgstr "エージェント情報が見つかりません。" #: ../../operation/search_main.php:55 ../../operation/search_main.php:57 #: ../../operation/search_main.php:65 ../../operation/search_main.php:67 @@ -51672,38 +53198,38 @@ msgstr "レポートが見つかりました" msgid "Show %s of %s. View all matches" msgstr "%s 件(%s件中)の表示。全マッチ内容の表示。" -#: ../../operation/reporting/reporting_viewer.php:249 +#: ../../operation/reporting/reporting_viewer.php:247 msgid "View Report" msgstr "レポート表示" -#: ../../operation/reporting/reporting_viewer.php:291 +#: ../../operation/reporting/reporting_viewer.php:267 msgid "Set initial date" msgstr "開始日時を指定する" -#: ../../operation/reporting/reporting_viewer.php:321 +#: ../../operation/reporting/reporting_viewer.php:318 msgid "Invalid date selected. Initial date must be before end date." msgstr "不正な日時です。開始日時は終了日時より前でなければいけません。" -#: ../../operation/reporting/reporting_viewer.php:426 -#: ../../operation/reporting/graph_viewer.php:502 +#: ../../operation/reporting/reporting_viewer.php:412 +#: ../../operation/reporting/graph_viewer.php:548 msgid "Invalid date selected" msgstr "不正なデータが選択されました。" #: ../../operation/reporting/custom_reporting.php:28 -#: ../../operation/reporting/graph_viewer.php:536 +#: ../../operation/reporting/graph_viewer.php:582 msgid "There are no defined reportings" msgstr "定義されたレポートがありません" -#: ../../operation/reporting/graph_viewer.php:341 -#: ../../operation/reporting/graph_viewer.php:363 +#: ../../operation/reporting/graph_viewer.php:353 +#: ../../operation/reporting/graph_viewer.php:386 msgid "Graph defined" msgstr "定義済みグラフ" -#: ../../operation/reporting/graph_viewer.php:355 +#: ../../operation/reporting/graph_viewer.php:367 msgid "Equalize maxiddmum thresholds" msgstr "最大閾値を等しくする" -#: ../../operation/reporting/graph_viewer.php:355 +#: ../../operation/reporting/graph_viewer.php:368 msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" @@ -51711,39 +53237,31 @@ msgstr "" "オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値" "が含まれます。" -#: ../../operation/reporting/graph_viewer.php:364 +#: ../../operation/reporting/graph_viewer.php:387 msgid "Zoom x1" msgstr "ズーム x1" -#: ../../operation/reporting/graph_viewer.php:365 +#: ../../operation/reporting/graph_viewer.php:388 msgid "Zoom x2" msgstr "ズーム x2" -#: ../../operation/reporting/graph_viewer.php:366 +#: ../../operation/reporting/graph_viewer.php:389 msgid "Zoom x3" msgstr "ズーム x3" -#: ../../operation/reporting/graph_viewer.php:400 +#: ../../operation/reporting/graph_viewer.php:446 msgid "No data." msgstr "データがありません。" -#: ../../operation/reporting/graph_viewer.php:510 +#: ../../operation/reporting/graph_viewer.php:556 msgid "Custom graph viewer" msgstr "カスタムグラフ参照" -#: ../../operation/events/sound_events.php:164 -msgid "Sound console" -msgstr "サウンドコンソール" - #: ../../operation/events/sound_events.php:229 msgid "Time Sound" msgstr "タイムサウンド" -#: ../../operation/events/sound_events.php:256 -msgid "Sounds" -msgstr "サウンド" - -#: ../../operation/events/sound_events.php:283 +#: ../../operation/events/sound_events.php:288 msgid "Events not found" msgstr "イベントが見つかりません。" @@ -51755,177 +53273,173 @@ msgstr "API アクセスできる IP 一覧に入っていません。" msgid "The URL of your feed has bad hash." msgstr "フィードの URL に不正はハッシュがあります。" -#: ../../operation/events/events.php:854 +#: ../../operation/events/events.php:884 msgid "Validate events" msgstr "イベントの承諾" -#: ../../operation/events/events.php:871 +#: ../../operation/events/events.php:901 msgid "Validate event" msgstr "承諾" -#: ../../operation/events/events.php:906 +#: ../../operation/events/events.php:936 msgid "Change to in progress status" msgstr "進捗状況へ変更" -#: ../../operation/events/events.php:931 +#: ../../operation/events/events.php:961 msgid "Delete events" msgstr "イベントの削除" -#: ../../operation/events/events.php:1402 +#: ../../operation/events/events.php:1440 msgid "Event viewer" msgstr "イベントビューワ" -#: ../../operation/events/events.php:1449 +#: ../../operation/events/events.php:1482 msgid "History event list" msgstr "イベント一覧履歴" -#: ../../operation/events/events.php:1460 +#: ../../operation/events/events.php:1493 msgid "RSS Events" msgstr "RSS イベント" -#: ../../operation/events/events.php:1471 +#: ../../operation/events/events.php:1504 msgid "Export to CSV file" msgstr "CSV ファイルに書き出す" -#: ../../operation/events/events.php:1482 ../../operation/events/events.php:1532 -msgid "Sound events" -msgstr "サウンドイベント" - -#: ../../operation/events/events.php:1537 +#: ../../operation/events/events.php:1587 msgid "History" msgstr "履歴" -#: ../../operation/events/events.php:1612 +#: ../../operation/events/events.php:1641 msgid "Errors" msgstr "エラー" -#: ../../operation/events/events.php:1728 -msgid "Search for elements NOT containing given text." -msgstr "指定されたテキストを含まない要素を検索します。" - -#: ../../operation/events/events.php:1788 ../../operation/events/events.php:1810 +#: ../../operation/events/events.php:1706 ../../operation/events/events.php:1727 msgid "WARNING: This could cause a performace impact." msgstr "警告: これは、パフォーマンスに影響を与える可能性があります。" -#: ../../operation/events/events.php:1808 +#: ../../operation/events/events.php:1725 msgid "Search in secondary groups" msgstr "セカンダリグループで検索" -#: ../../operation/events/events.php:2022 +#: ../../operation/events/events.php:1815 +msgid "Search for elements NOT containing given text." +msgstr "指定されたテキストを含まない要素を検索します。" + +#: ../../operation/events/events.php:2076 msgid "Id source event" msgstr "ソースイベントID" -#: ../../operation/events/events.php:2080 +#: ../../operation/events/events.php:2134 msgid "From (date:time)" msgstr "開始 (日付:時間)" -#: ../../operation/events/events.php:2138 +#: ../../operation/events/events.php:2192 msgid "To (date:time)" msgstr "終了 (日付:時間)" -#: ../../operation/events/events.php:2149 +#: ../../operation/events/events.php:2203 msgid "Filter custom data by field name" msgstr "フィールド名でカスタムデータをフィルタ" -#: ../../operation/events/events.php:2150 +#: ../../operation/events/events.php:2204 msgid "Filter custom data by field value" msgstr "フィールドの値でカスタムデータをフィルタ" -#: ../../operation/events/events.php:2165 +#: ../../operation/events/events.php:2224 msgid "Custom data filter" msgstr "カスタムデータフィルタ" -#: ../../operation/events/events.php:2187 +#: ../../operation/events/events.php:2246 msgid "Custom data search" msgstr "カスタムデータ検索" -#: ../../operation/events/events.php:2312 +#: ../../operation/events/events.php:2372 msgid "Current filter" msgstr "現在のフィルタ" -#: ../../operation/events/events.php:2317 +#: ../../operation/events/events.php:2377 msgid "Not set." msgstr "未設定" -#: ../../operation/events/events.php:2330 +#: ../../operation/events/events.php:2390 msgid "Any status." msgstr "任意の状態" -#: ../../operation/events/events.php:2334 +#: ../../operation/events/events.php:2394 msgid "New events." msgstr "新規イベント" -#: ../../operation/events/events.php:2338 +#: ../../operation/events/events.php:2398 msgid "Validated." msgstr "承諾済" -#: ../../operation/events/events.php:2342 +#: ../../operation/events/events.php:2402 msgid "In proccess." msgstr "処理中" -#: ../../operation/events/events.php:2346 +#: ../../operation/events/events.php:2406 msgid "Not validated." msgstr "未承諾" -#: ../../operation/events/events.php:2358 +#: ../../operation/events/events.php:2418 msgid "Any time." msgstr "任意の時間" -#: ../../operation/events/events.php:2360 ../../operation/events/events.php:2953 +#: ../../operation/events/events.php:2420 ../../operation/events/events.php:3030 msgid "Last hour." msgstr "直近 1時間" -#: ../../operation/events/events.php:2362 +#: ../../operation/events/events.php:2422 #, php-format msgid "Last %d hours." msgstr "直近 %d 時間" -#: ../../operation/events/events.php:2370 +#: ../../operation/events/events.php:2430 msgid "Duplicated" msgstr "複数回数発生イベント" -#: ../../operation/events/events.php:2373 +#: ../../operation/events/events.php:2433 msgid "All events." msgstr "全イベント" -#: ../../operation/events/events.php:2377 +#: ../../operation/events/events.php:2437 msgid "Group agents." msgstr "グループエージェント" -#: ../../operation/events/events.php:2379 +#: ../../operation/events/events.php:2439 msgid "Group extra id." msgstr "グループ追加 ID" -#: ../../operation/events/events.php:2471 +#: ../../operation/events/events.php:2543 msgid "In progress selected" msgstr "処理中を選択" -#: ../../operation/events/events.php:2472 +#: ../../operation/events/events.php:2544 msgid "Validate selected" msgstr "選択したものを承諾" -#: ../../operation/events/events.php:2505 +#: ../../operation/events/events.php:2566 msgid "Execute event response" msgstr "イベント応答の実行" -#: ../../operation/events/events.php:2518 +#: ../../operation/events/events.php:2598 #, php-format msgid "A maximum of %s event custom responses can be selected" msgstr "最大 %s イベントのカスタム応答を選択できます" -#: ../../operation/events/events.php:2523 +#: ../../operation/events/events.php:2603 msgid "Please, select an event" msgstr "イベントを選択してください" -#: ../../operation/events/events.php:2612 +#: ../../operation/events/events.php:2689 msgid "has at least" msgstr "は少なくとも次のイベント数あります:" -#: ../../operation/events/events.php:2614 +#: ../../operation/events/events.php:2691 msgid "events" msgstr "イベント" -#: ../../operation/events/events.php:2955 +#: ../../operation/events/events.php:3032 msgid "hours." msgstr "時間" @@ -51933,6 +53447,10 @@ msgstr "時間" msgid "Id_group" msgstr "グループ ID" +#: ../../operation/search_maps.php:30 +msgid "Elements" +msgstr "エレメント" + #: ../../general/footer.php:56 #, php-format msgid "Page generated on %s" @@ -52039,12 +53557,11 @@ msgstr "" msgid "Add new node" msgstr "新規ノード追加" -#: ../../general/first_task/map_builder.php:34 -#: ../../general/first_task/map_builder.php:45 -msgid "Create Visual Console" -msgstr "ビジュアルコンソール作成" +#: ../../general/first_task/map_builder.php:44 +msgid "Visual Consoles" +msgstr "ビジュアルコンソール" -#: ../../general/first_task/map_builder.php:37 +#: ../../general/first_task/map_builder.php:47 #, php-format msgid "" "%s allows users to create visual maps on which each user is able to create his " @@ -52067,6 +53584,10 @@ msgstr "" "テムは、’静的画像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' で" "す。" +#: ../../general/first_task/map_builder.php:58 +msgid "Create a Visual Console" +msgstr "ビジュアルコンソール作成" + #: ../../general/first_task/cluster_builder.php:46 msgid "There are no clusters defined yet." msgstr "クラスタが定義されていません。" @@ -52210,17 +53731,18 @@ msgstr "" msgid "Define a command" msgstr "コマンド定義" -#: ../../general/first_task/custom_fields.php:19 +#: ../../general/first_task/custom_fields.php:35 #: ../../general/first_task/fields_manager.php:18 msgid "There are no custom fields defined yet." msgstr "カスタムフィールドが定義されていません。" -#: ../../general/first_task/custom_fields.php:27 -#: ../../general/first_task/custom_fields.php:36 +#: ../../general/first_task/custom_fields.php:43 +#: ../../general/first_task/custom_fields.php:57 +#: ../../general/first_task/custom_fields.php:66 msgid "Create Custom Fields" msgstr "カスタムフィールド作成" -#: ../../general/first_task/custom_fields.php:30 +#: ../../general/first_task/custom_fields.php:46 msgid "" "Custom fields are an easy way to personalized agent's information.\n" "\t\t You're able to create custom fields by klicking on 'Administration' -> " @@ -52252,20 +53774,20 @@ msgstr "" msgid "Create Fields " msgstr "フィールド作成 " -#: ../../general/first_task/planned_downtime.php:18 +#: ../../general/first_task/planned_downtime.php:34 msgid "There are no scheduled downtime defined yet." msgstr "計画停止が定義されていません。" -#: ../../general/first_task/planned_downtime.php:22 +#: ../../general/first_task/planned_downtime.php:38 msgid "Scehduled Downtime" msgstr "計画停止" -#: ../../general/first_task/planned_downtime.php:25 -#: ../../general/first_task/planned_downtime.php:37 +#: ../../general/first_task/planned_downtime.php:41 +#: ../../general/first_task/planned_downtime.php:55 msgid "Create Scheduled Downtime" msgstr "計画停止の作成" -#: ../../general/first_task/planned_downtime.php:28 +#: ../../general/first_task/planned_downtime.php:44 #, php-format msgid "" "%s contains a scheduled downtime management system.\n" @@ -52317,16 +53839,7 @@ msgstr "" "\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外さ" "れ、一つになります。 " -#: ../../general/first_task/service_list.php:19 -msgid "There are no services defined yet." -msgstr "サービスが定義されていません。" - -#: ../../general/first_task/service_list.php:26 -#: ../../general/first_task/service_list.php:40 -msgid "Create Services" -msgstr "サービス作成" - -#: ../../general/first_task/service_list.php:30 +#: ../../general/first_task/service_list.php:45 msgid "" "A service is a way to group your IT resources based on their " "functionalities. \n" @@ -52353,20 +53866,20 @@ msgstr "" "\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門" "からなっています。" -#: ../../general/first_task/custom_graphs.php:19 -msgid "There are no custom graphs defined yet." -msgstr "カスタムグラフが定義されていません。" +#: ../../general/first_task/service_list.php:58 +msgid "Create a service" +msgstr "サービスの作成" -#: ../../general/first_task/custom_graphs.php:24 +#: ../../general/first_task/custom_graphs.php:21 msgid "Custom Graphs" msgstr "カスタムグラフ" -#: ../../general/first_task/custom_graphs.php:27 +#: ../../general/first_task/custom_graphs.php:24 #: ../../general/first_task/custom_graphs.php:39 msgid "Create Custom Graph" msgstr "カスタムグラフ作成" -#: ../../general/first_task/custom_graphs.php:30 +#: ../../general/first_task/custom_graphs.php:27 #, php-format msgid "" "Graphs are designed to show the data collected by %s in a temporary scale " @@ -52420,27 +53933,27 @@ msgstr "" "ションへ行きます。以下の画像で示すように、\n" "\t\t新たなコレクションを作成するにはそれをクリックします。 " -#: ../../general/header.php:77 +#: ../../general/header.php:87 msgid "Sobre actualización de revisión menor" msgstr "" -#: ../../general/header.php:79 +#: ../../general/header.php:89 msgid "About minor release update" msgstr "マイナーアップデートに関して" -#: ../../general/header.php:112 ../../general/header.php:114 +#: ../../general/header.php:123 ../../general/header.php:125 msgid "Enter keywords to search" msgstr "検索文字列を入力してください" -#: ../../general/header.php:379 +#: ../../general/header.php:387 msgid "Go to support" msgstr "サポート" -#: ../../general/header.php:393 +#: ../../general/header.php:401 msgid "Go to documentation" msgstr "ドキュメント" -#: ../../general/header.php:828 +#: ../../general/header.php:835 msgid "Report an issue" msgstr "問題を報告" @@ -52748,20 +54261,16 @@ msgstr "このメッセージを再度表示したくない場合はこちらを msgid "Maintenance tasks in progress" msgstr "メンテナンスタスク実行中" -#: ../../general/maintenance.php:53 ../../general/node_deactivated.php:64 -msgid "You will be automatically redirected when all tasks finish" -msgstr "全タスクが完了すると自動的にリダイレクトされます" - -#: ../../general/logon_ok.php:169 +#: ../../general/logon_ok.php:175 #, php-format msgid "%s Overview" msgstr "%s 概要" -#: ../../general/logon_ok.php:222 +#: ../../general/logon_ok.php:228 msgid "News board" msgstr "ニュースボード" -#: ../../general/logon_ok.php:298 +#: ../../general/logon_ok.php:304 msgid "Latest activity" msgstr "最新の活動" @@ -52810,11 +54319,11 @@ msgstr "" "\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリ" "ティログに記録されます。" -#: ../../general/mysqlerr.php:105 -msgid "Database error" -msgstr "データベースエラー" +#: ../../general/main_menu.php:79 ../../general/main_menu.php:86 +msgid "Management" +msgstr "管理" -#: ../../general/mysqlerr.php:115 +#: ../../general/mysqlerr.php:7 msgid "" "Failure to connect to historical database, please check the configuration or " "contact system administrator if you need assistance." @@ -52822,7 +54331,7 @@ msgstr "" "ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合" "はシステム管理者に連絡してください。" -#: ../../general/mysqlerr.php:117 +#: ../../general/mysqlerr.php:9 msgid "" "Failure to connect to Database server, please check the configuration file " "config.php or contact system administrator if you need assistance." @@ -52830,24 +54339,40 @@ msgstr "" "データベースサーバへの接続に失敗しました。設定ファイル config.php を確認する" "か、支援が必要な場合はシステム管理者に連絡してください。" -#: ../../general/login_page.php:54 +#: ../../general/mysqlerr.php:31 +msgid "Mysql error" +msgstr "MySQL エラー" + +#: ../../general/mysqlerr.php:35 +msgid "Database error" +msgstr "データベースエラー" + +#: ../../general/login_page.php:76 #, php-format msgid "Go to %s Website" msgstr "%s ウェブサイトへ行く" -#: ../../general/login_page.php:68 +#: ../../general/login_page.php:90 msgid "Go to Login" msgstr "ログインへ" -#: ../../general/login_page.php:251 +#: ../../general/login_page.php:297 ../../general/login_page.php:302 msgid "Login as admin" msgstr "admin としてログイン" -#: ../../general/login_page.php:319 +#: ../../general/login_page.php:355 +msgid "Let's go" +msgstr "" + +#: ../../general/login_page.php:409 msgid "View details" msgstr "詳細を表示" -#: ../../general/login_page.php:347 +#: ../../general/login_page.php:430 ../../general/login_page.php:433 +msgid "Centralized mode" +msgstr "中央管理モード" + +#: ../../general/login_page.php:437 msgid "" "This node is configured with centralized mode. Go to metaconsole to reset the " "password" @@ -52855,24 +54380,23 @@ msgstr "" "このノードは集中モードで設定されています。 パスワードのリセットはメタコンソール" "で行います。" -#: ../../general/login_page.php:372 ../../general/login_page.php:375 -#, php-format -msgid "WELCOME TO %s" -msgstr "%s へようこそ" +#: ../../general/login_page.php:569 +msgid "Forbidden" +msgstr "アクセスできません" -#: ../../general/login_page.php:384 ../../general/login_page.php:387 -msgid "NEXT GENERATION" -msgstr "NEXT GENERATION" +#: ../../general/login_page.php:651 +msgid "Remaining attempts: " +msgstr "残りの試行回数: " -#: ../../general/login_page.php:536 +#: ../../general/login_page.php:694 msgid "User node access not enabled" msgstr "ユーザノードアクセスが有効になっていません" -#: ../../general/login_page.php:539 ../../general/login_page.php:543 +#: ../../general/login_page.php:697 ../../general/login_page.php:701 msgid "Centralized user in metaconsole" msgstr "メタコンソールの一元化ユーザ" -#: ../../general/login_page.php:544 +#: ../../general/login_page.php:702 msgid "" "This user does not have access on node, please enable node access on this user " "from metaconsole." @@ -52880,12 +54404,12 @@ msgstr "" "このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードア" "クセスを有効にしてください。" -#: ../../general/login_page.php:559 ../../general/login_page.php:561 +#: ../../general/login_page.php:718 ../../general/login_page.php:720 #, php-format msgid "Problem with %s database" msgstr "%s データベースに問題があります" -#: ../../general/login_page.php:565 +#: ../../general/login_page.php:724 msgid "" "Cannot connect to the database, please check your database setup in the " "include/config.php file.

\n" @@ -52898,11 +54422,11 @@ msgstr "" "\t\tおそらく、データベース名、ホスト名、ユーザ名、パスワードの値が不正か\n" "\t\tデータベースサーバが動作していません。" -#: ../../general/login_page.php:570 +#: ../../general/login_page.php:729 msgid "DB ERROR" msgstr "DB エラー" -#: ../../general/login_page.php:576 +#: ../../general/login_page.php:735 #, php-format msgid "" "If you have modified the auth system, the origin of this problem could be that " @@ -52914,11 +54438,11 @@ msgstr "" "上書きできないことです。以下を実行することにより、データベースよりそれらを削除" "してください。
DELETE FROM tconfig WHERE token = \"auth\";
" -#: ../../general/login_page.php:581 +#: ../../general/login_page.php:740 msgid "Empty configuration table" msgstr "設定テーブルが空です" -#: ../../general/login_page.php:583 +#: ../../general/login_page.php:742 #, php-format msgid "" "Cannot load configuration variables from database. Please check your database " @@ -52941,11 +54465,11 @@ msgstr "" "\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメント" "を確認してください。" -#: ../../general/login_page.php:593 +#: ../../general/login_page.php:752 msgid "No configuration file found" msgstr "設定ファイルがありません" -#: ../../general/login_page.php:595 +#: ../../general/login_page.php:754 #, php-format msgid "" "%s Console cannot find include/config.php or this file has invalid\n" @@ -52957,16 +54481,16 @@ msgstr "" "\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照して" "ください。" -#: ../../general/login_page.php:607 +#: ../../general/login_page.php:766 #, php-format msgid "You may try to run the %sinstallation wizard%s to create one." msgstr "作成するには、%sインストールウィザード%s を実行します。" -#: ../../general/login_page.php:611 +#: ../../general/login_page.php:770 msgid "Installer active" msgstr "インストーラが有効です" -#: ../../general/login_page.php:613 +#: ../../general/login_page.php:772 #, php-format msgid "" "For security reasons, normal operation is not possible until you delete " @@ -52978,11 +54502,11 @@ msgstr "" "\t\t%s コンソールを実行する前に、./install.php ファイルを削除してくださ" "い。" -#: ../../general/login_page.php:620 +#: ../../general/login_page.php:779 msgid "Bad permission for include/config.php" msgstr "include/config.php のパーミッションが不正です" -#: ../../general/login_page.php:622 +#: ../../general/login_page.php:781 msgid "" "For security reasons, config.php must have restrictive permissions, and " "\"other\" users\n" @@ -53000,11 +54524,11 @@ msgstr "" "更するまで\n" "\t\t通常の操作はできません。セキュリティのために対応してください。" -#: ../../general/login_page.php:630 +#: ../../general/login_page.php:789 msgid "Bad defined homedir" msgstr "homedir の定義が不正です" -#: ../../general/login_page.php:631 +#: ../../general/login_page.php:790 msgid "" "In the config.php file in the variable $config[\"homedir\"] = add the correct " "path" @@ -53012,11 +54536,11 @@ msgstr "" "config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してくださ" "い。" -#: ../../general/login_page.php:635 +#: ../../general/login_page.php:794 msgid "Bad defined homeurl or homeurl_static" msgstr "homeurl または homeurl_static の定義が不正です" -#: ../../general/login_page.php:636 +#: ../../general/login_page.php:795 msgid "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" @@ -53042,6 +54566,350 @@ msgstr "" "%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘル" "プコンテンツはありません。" +#~ msgid "Calendars" +#~ msgstr "カレンダー" + +#~ msgid "Calendars Edit" +#~ msgstr "カレンダー編集" + +#~ msgid "Move agents" +#~ msgstr "エージェント移動" + +#~ msgid "Group:" +#~ msgstr "グループ:" + +#~ msgid " Items" +#~ msgstr "アイテム" + +#~ msgid "Users control filter" +#~ msgstr "ユーザ制御フィルタ" + +#~ msgid "View options" +#~ msgstr "オプションの表示" + +#~ msgid "Online validation" +#~ msgstr "オンライン認証" + +#~ msgid "Autoconfiguration" +#~ msgstr "自動設定" + +#~ msgid "Show Agent >" +#~ msgstr "エージェント表示 >" + +#~ msgid "Files in " +#~ msgstr "次の中に存在するファイル: " + +#~ msgid "The changes on this field are linked with the configuration data." +#~ msgstr "このフィールド上の変更は、設定データにリンクされます。" + +#~ msgid "macro_help" +#~ msgstr "マクロヘルプ" + +#~ msgid "Delete remote conf agent files" +#~ msgstr "エージェントのリモート設定ファイル削除" + +#~ msgid "" +#~ "The url specified in this field is mandatory to retrieve performance stats." +#~ msgstr "" +#~ "このフィールドで指定された URL は、パフォーマンス統計を取得するために必須で" +#~ "す。" + +#~ msgid "Manager collection" +#~ msgstr "コレクション管理" + +#~ msgid "Copy selected modules to policy: " +#~ msgstr "選択したモジュールをポリシーへコピー: " + +#~ msgid "Queue filter" +#~ msgstr "キューフィルタ" + +#~ msgid "Events Configuration Information" +#~ msgstr "イベント設定情報" + +#~ msgid "SAP/R3 Plugin Licence" +#~ msgstr "SAP/R3 プラグインライセンス" + +#, php-format +#~ msgid "" +#~ "Password related configuration only applies when local %s authentication is " +#~ "selected." +#~ msgstr "" +#~ "パスワード関連の設定は、ローカル %s 認証が選択されている場合にのみ適用されま" +#~ "す。" + +#~ msgid "Create template report wizard" +#~ msgstr "レポートウィザードテンプレート作成" + +#~ msgid "Advance Reporting" +#~ msgstr "拡張レポート" + +#~ msgid "Item Editor" +#~ msgstr "アイテムエディタ" + +#~ msgid "Advance Options" +#~ msgstr "拡張オプション" + +#~ msgid "" +#~ "The templates shown are only for correlative alerts, event alert (legacy) " +#~ "will be deprecated in the future" +#~ msgstr "" +#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガ" +#~ "シー)は将来非推奨になります" + +#~ msgid "Confirm: " +#~ msgstr "確認: " + +#~ msgid "Item type" +#~ msgstr "アイテムタイプ" + +#~ msgid "privacy pass" +#~ msgstr "暗号化パスワード" + +#~ msgid "Examples" +#~ msgstr "例" + +#~ msgid "Insert data" +#~ msgstr "データの挿入" + +#~ msgid "Use script" +#~ msgstr "スクリプトの利用" + +#~ msgid "Update Group" +#~ msgstr "グループの更新" + +#~ msgid "Create Group" +#~ msgstr "グループの作成" + +#, php-format +#~ msgid "Module groups defined in %s" +#~ msgstr "%s に定義済のモジュールグループ" + +#, php-format +#~ msgid "Profiles defined on %s" +#~ msgstr "%s に定義済のプロファイル" + +#, php-format +#~ msgid "Users defined on %s" +#~ msgstr "%s に定義済のユーザ" + +#~ msgid "Update user" +#~ msgstr "ユーザ更新" + +#~ msgid "Agent manager" +#~ msgstr "エージェントマネージャ" + +#~ msgid "Show Agents" +#~ msgstr "エージェント表示" + +#~ msgid "Agents / Modules affected" +#~ msgstr "対象エージェント/モジュール" + +#~ msgid "To day:" +#~ msgstr "終了日:" + +#~ msgid "Cron from:" +#~ msgstr "Cron 開始: " + +#~ msgid "Cron to:" +#~ msgstr "Cron 終了: " + +#~ msgid "Available modules:" +#~ msgstr "存在するモジュール:" + +#~ msgid "SNMP walk" +#~ msgstr "snmpwalk" + +#~ msgid "QR Code Agent view" +#~ msgstr "エージェント表示 QR コード" + +#~ msgid "Click to display" +#~ msgstr "クリックして表示" + +#~ msgid "Min. " +#~ msgstr "最小 " + +#~ msgid "Dynamic Threshold Min. " +#~ msgstr "最小動的しきい値 " + +#~ msgid "Dynamic Threshold Max. " +#~ msgstr "最大動的しきい値 " + +#~ msgid "Dynamic Threshold Two Tailed: " +#~ msgstr "2つの動的しきい値を使う: " + +#~ msgid "Del." +#~ msgstr "削除" + +#~ msgid "Normalize (Disabled)" +#~ msgstr "正規化 (無効)" + +#~ msgid "Create network component (Disabled)" +#~ msgstr "ネットワークコンポーネントの作成 (無効)" + +#~ msgid "Manage Netflow Filter" +#~ msgstr "Netflow フィルタ管理" + +#~ msgid "Netflow Filter" +#~ msgstr "Netflow フィルタ" + +#~ msgid "Filter:" +#~ msgstr "フィルタ:" + +#~ msgid "Update Command" +#~ msgstr "コマンドの更新" + +#~ msgid "Update Action" +#~ msgstr "アクションの更新" + +#~ msgid "Normal:" +#~ msgstr "通常:" + +#~ msgid "Type of interface charts" +#~ msgstr "インタフェースグラフのタイプ" + +#~ msgid "Graph TIP view:" +#~ msgstr "グラフ詳細表示:" + +#~ msgid "Enforce public URL usage information" +#~ msgstr "公開 URL 利用に関する情報" + +#~ msgid "" +#~ "Use [ or ( as first character, for example '[*] Map name', to render this " +#~ "map name in main menu" +#~ msgstr "" +#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニュー" +#~ "に表示するには、'[*] Map name' です。" + +#~ msgid "Edit event responses" +#~ msgstr "イベント応答の編集" + +#~ msgid "Update Filter" +#~ msgstr "フィルタ更新" + +#~ msgid "No tags defined" +#~ msgstr "タグが定義されていません" + +#~ msgid "Update Tag" +#~ msgstr "タグの更新" + +#~ msgid "Create Tag" +#~ msgstr "タグの作成" + +#~ msgid "Warning
Critical" +#~ msgstr "警告
障害" + +#~ msgid "Scheduled jobs" +#~ msgstr "スケジュールされたジョブ" + +#~ msgid "Go to module edition" +#~ msgstr "モジュールの編集へ行く" + +#~ msgid "Go to cluster edition" +#~ msgstr "クラスタ編集へ行く" + +#~ msgid "Go to agent edition" +#~ msgstr "エージェントの編集へ行く" + +#~ msgid "PANDORA FMS" +#~ msgstr "PANDORA FMS" + +#~ msgid "DB Size" +#~ msgstr "DB サイズ" + +#~ msgid "Refresh every" +#~ msgstr "更新周期" + +#~ msgid "SNMP Traps" +#~ msgstr "SNMP トラップ" + +#~ msgid "Create a Text" +#~ msgstr "テキストの作成" + +#~ msgid "Create text" +#~ msgstr "テキストの作成" + +#~ msgid "Global status" +#~ msgstr "全体の状態" + +#~ msgid "total agents" +#~ msgstr "全エージェント" + +#~ msgid "critical agents" +#~ msgstr "障害エージェント" + +#~ msgid "unknown agents" +#~ msgstr "不明エージェント" + +#~ msgid "Browse" +#~ msgstr "参照" + +#~ msgid "" +#~ "If event replication is ongoing, it won't be possible to enter comments " +#~ "here. This option is only to allow local pandora users to see comments, but " +#~ "not to operate with them. The operation, when event replication is enabled, " +#~ "must be done only in the Metaconsole." +#~ msgstr "" +#~ "イベントの複製実行中は、ここにコメントを入力することはできません。 このオプ" +#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、" +#~ "コメントを操作することはできません。 イベント複製が有効な場合は、操作はメタ" +#~ "コンソールでのみ実行する必要があります。" + +#~ msgid "No log sources found" +#~ msgstr "ログソースが見つかりません" + +#~ msgid "Monitor view" +#~ msgstr "モニタ表示" + +#~ msgid "Show filters" +#~ msgstr "フィルタ表示" + +#~ msgid "This group doesn't have any monitor" +#~ msgstr "該当するモニタ項目がありません。" + +#~ msgid "Remote configuration enabled" +#~ msgstr "リモート設定有効" + +#~ msgid "Agent info" +#~ msgstr "エージェント情報" + +#~ msgid "Select this checkbox to write interval instead a date." +#~ msgstr "" +#~ "日時の代わりに間隔を記載するにはこのチェックボックスを選択してください。" + +#~ msgid "No data retrieved" +#~ msgstr "取得データがありません" + +#~ msgid "Draw live filter" +#~ msgstr "ライブ表示フィルタ" + +#~ msgid "Sound Alerts" +#~ msgstr "サウンドアラート" + +#~ msgid "Export this list to CSV" +#~ msgstr "この一覧を CSV へエクスポートする" + +#~ msgid "Sound console" +#~ msgstr "サウンドコンソール" + +#~ msgid "Sound events" +#~ msgstr "サウンドイベント" + +#~ msgid "There are no services defined yet." +#~ msgstr "サービスが定義されていません。" + +#~ msgid "Create Services" +#~ msgstr "サービス作成" + +#~ msgid "There are no custom graphs defined yet." +#~ msgstr "カスタムグラフが定義されていません。" + +#, php-format +#~ msgid "WELCOME TO %s" +#~ msgstr "%s へようこそ" + +#~ msgid "NEXT GENERATION" +#~ msgstr "NEXT GENERATION" + #~ msgid "Agents to move" #~ msgstr "移動するエージェント" @@ -53193,9 +55061,6 @@ msgstr "" #~ msgid "Index" #~ msgstr "目次" -#~ msgid "Dependencies" -#~ msgstr "依存関係" - #~ msgid "Enables" #~ msgstr "有効" @@ -53251,9 +55116,6 @@ msgstr "" #~ msgid "Refresh Holding area" #~ msgstr "保持エリアの更新" -#~ msgid "Enable sunburst" -#~ msgstr "サンバーストの有効化" - #~ msgid "Events -by module-" #~ msgstr "イベント -モジュールごと-" @@ -53265,9 +55127,6 @@ msgstr "" #~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してくださ" #~ "い。" -#~ msgid "Search by trap type" -#~ msgstr "トラップタイプによる検索" - #~ msgid "There are no SNMP traps in database that contains this filter" #~ msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" @@ -53710,9 +55569,6 @@ msgstr "" #~ msgid "We recommend launching " #~ msgstr "次の実行をお勧めします " -#~ msgid " to this process" -#~ msgstr " 対象プロセス:" - #~ msgid "There is a new update available" #~ msgstr "新しい更新があります" @@ -53985,9 +55841,6 @@ msgstr "" #~ msgid "Could not be set in process" #~ msgstr "処理中に設定できませんでした。" -#~ msgid "Autorefresh time" -#~ msgstr "自動リフレッシュ時間" - #~ msgid "Search by any alphanumeric field in the trap" #~ msgstr "トラップの英数字フィールド検索" @@ -54027,9 +55880,6 @@ msgstr "" #~ msgid "File could not be saved due to database error" #~ msgstr "データベースエラーのため、ファイルの保存に失敗しました。" -#~ msgid "File uploaded" -#~ msgstr "ファイルをアップロードしました。" - #~ msgid "File could not be uploaded" #~ msgstr "ファイルのアップロードに失敗しました。" @@ -54106,9 +55956,6 @@ msgstr "" #~ msgid "Full list of monitors" #~ msgstr "モニタ項目一覧" -#~ msgid "Load" -#~ msgstr "処理実行率" - #~ msgid "Pandora FMS Graph configuration menu" #~ msgstr "Pandora FMS グラフ設定メニュー" @@ -54186,9 +56033,6 @@ msgstr "" #~ msgid "Refresh: " #~ msgstr "更新: " -#~ msgid "Show agents by state: " -#~ msgstr "表示するエージェントの状態: " - #~ msgid "Successfully deleted recon task" #~ msgstr "自動検出処理を削除しました。" @@ -54510,9 +56354,6 @@ msgstr "" #~ msgid "No action selected" #~ msgstr "アクションが選択されていません。" -#~ msgid "Select modules first" -#~ msgstr "最初にモジュールを選択" - #~ msgid "Select agents first" #~ msgstr "最初にエージェントを選択" @@ -54567,9 +56408,6 @@ msgstr "" #~ "さい。パフォーマンスを維持するためには、データベースを日々整理することが重要" #~ "です。" -#~ msgid "Database maintenance" -#~ msgstr "データベースメンテナンス" - #~ msgid "Get data from agent" #~ msgstr "エージェントから収集したデータ" @@ -54832,9 +56670,6 @@ msgstr "" #~ "を参照してください。

プラグインは、パブリックリソースラ" #~ "イブラリから入手できます。" -#~ msgid "Register plugin" -#~ msgstr "プラグインの登録" - #~ msgid "Traceroute to " #~ msgstr "以下へのtraceroute " @@ -54882,9 +56717,6 @@ msgstr "" #~ "は、http://pandorafms.com を参照してく" #~ "ださい。" -#~ msgid "Today" -#~ msgstr "今日" - #~ msgid "Week" #~ msgstr "週" @@ -54900,9 +56732,6 @@ msgstr "" #~ msgid "Outdated" #~ msgstr "期限切れ" -#~ msgid "No set or get or help operation." -#~ msgstr "設定、参照、ヘルプの操作がありません。" - #~ msgid "Id does not exist in BD." #~ msgstr "ID が存在しません。" @@ -56354,9 +58183,6 @@ msgstr "" #~ "拡張データが削除されているか、監査データが tsession_extended テーブルにあり" #~ "ません。" -#~ msgid "7 days" -#~ msgstr "7日" - #~ msgid "Update all" #~ msgstr "全て更新" @@ -56411,15 +58237,9 @@ msgstr "" #~ msgid "View associated rules" #~ msgstr "関連付けルール表示" -#~ msgid "List event rules" -#~ msgstr "イベントルール一覧" - #~ msgid "Configure event rule" #~ msgstr "イベントルール設定" -#~ msgid "User comment" -#~ msgstr "ユーザコメント" - #~ msgid "This field will be processed with regexp" #~ msgstr "このフィールドは、正規表現で処理されます" @@ -56823,9 +58643,6 @@ msgstr "" #~ msgid "Profile mode" #~ msgstr "プロファイルモード" -#~ msgid "New profile" -#~ msgstr "新規プロファイル" - #~ msgid "Copy profile" #~ msgstr "プロファイルのコピー" @@ -58059,9 +59876,6 @@ msgstr "" #~ msgid "List of visual console" #~ msgstr "ビジュアルコンソール一覧" -#~ msgid "List of Incidents" -#~ msgstr "インシデント一覧" - #~ msgid "" #~ "This item is affected by a malformed planned downtime. Go to the planned " #~ "downtimes section to solve this." @@ -58818,9 +60632,6 @@ msgstr "" #~ msgid "Show a service map" #~ msgstr "サービスマップ表示" -#~ msgid "There are unsaved changes" -#~ msgstr "保存されていない変更があります" - #~ msgid "Missing id" #~ msgstr "IDがありません。" @@ -58954,9 +60765,6 @@ msgstr "" #~ "で 40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認" #~ "してください。" -#~ msgid "critical" -#~ msgstr "障害" - #~ msgid "Status of module" #~ msgstr "モジュールの状態" @@ -58978,9 +60786,6 @@ msgstr "" #~ msgid "Open all nodes" #~ msgstr "すべてのノードを開く" -#~ msgid "Dashboards list" -#~ msgstr "ダッシュボード一覧" - #~ msgid "This widget only working in desktop version." #~ msgstr "ウィジェットはデスクトップ版でのみ動作します。" From 7b414c6b69b2044618fee0cd88289bdb4b00a950 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 17 May 2023 09:39:35 +0200 Subject: [PATCH 163/533] #10362 change MR 64 correction ticket #11109 --- pandora_console/extras/mr/64.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql index 5f9ef08e05..9408ab3ca5 100644 --- a/pandora_console/extras/mr/64.sql +++ b/pandora_console/extras/mr/64.sql @@ -1,6 +1,6 @@ START TRANSACTION; -UPDATE pandora.tnetwork_component +UPDATE `tnetwork_component` SET module_enabled=1 WHERE name='Cisco _nameOID_ power state'; From a1d02e4f4dfc222ef8aede2dd30a97f187e1a26e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 09:50:08 +0200 Subject: [PATCH 164/533] #11233 fixed bug no data in basic chart --- .../lib/Dashboard/Widgets/BasicChart.php | 23 +++++++++++-------- 1 file changed, 13 insertions(+), 10 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php index 8041cf77d9..ec02614285 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php @@ -561,7 +561,6 @@ class BasicChart extends Widget global $config; $size = parent::getSize(); - hd($size, true); include_once $config['homedir'].'/include/functions_graph.php'; include_once $config['homedir'].'/include/functions_agents.php'; @@ -625,16 +624,20 @@ class BasicChart extends Widget ], ]; + $graph = \grafico_modulo_sparse($params); $output = '
'; - $output .= '
'; - $output .= ''; - $output .= ((bool) $this->values['showLabel'] === true) ? $title : ''; - $output .= ''; - $output .= ''; - $output .= ((bool) $this->values['showValue'] === true) ? $value : ''; - $output .= ''; - $output .= '
'; - $output .= \grafico_modulo_sparse($params); + if (str_contains($graph, 'values['colorLabel'].'; font-size:'.$this->values['sizeLabel'].'px;">'; + $output .= ((bool) $this->values['showLabel'] === true) ? $title : ''; + $output .= ''; + $output .= ''; + $output .= ((bool) $this->values['showValue'] === true) ? $value : ''; + $output .= ''; + $output .= '
'; + } + + $output .= $graph; $output .= '
'; return $output; } From cb63ee92f70b2c4d0f747c8a452fd61d0aa8044e Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 17 May 2023 10:54:43 +0200 Subject: [PATCH 165/533] #10328 Fix JS code --- pandora_console/godmode/alerts/alert_commands.php | 2 +- pandora_console/include/functions_html.php | 10 +++++----- pandora_console/include/javascript/pandora_alerts.js | 5 ++++- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php index 42b643acd7..271ae79784 100644 --- a/pandora_console/godmode/alerts/alert_commands.php +++ b/pandora_console/godmode/alerts/alert_commands.php @@ -133,7 +133,7 @@ if (is_ajax()) { } } - $style = ((int) $field_hidden === 1) ? '-webkit-text-security: disc;' : ''; + $style = ((int) $field_hidden === 1) ? '-webkit-text-security: disc; font-family: text-security-disc;' : ''; if (!empty($field_value)) { $field_value = io_safe_output($field_value); diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index bc8ffefe8a..610c2c1c26 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4273,22 +4273,22 @@ function html_print_checkbox_extended( if (is_array($attributes) === true) { $tmpAttributes = []; - foreach ($attributes as $key => $value) { + foreach ($attributes as $key => $val) { switch ($key) { case 'input_class': - $inputClass .= ' '.$value; + $inputClass .= ' '.$val; break; case 'label_class': - $labelClass .= ' '.$value; + $labelClass .= ' '.$val; break; case 'label_style': - $labelStyle .= 'style="'.$value.'"'; + $labelStyle .= 'style="'.$val.'"'; break; default: - $tmpAttributes[] = $key.'="'.$value.'"'; + $tmpAttributes[] = $key.'="'.$val.'"'; break; } } diff --git a/pandora_console/include/javascript/pandora_alerts.js b/pandora_console/include/javascript/pandora_alerts.js index b527067290..7af8b5b1ec 100644 --- a/pandora_console/include/javascript/pandora_alerts.js +++ b/pandora_console/include/javascript/pandora_alerts.js @@ -21,7 +21,10 @@ function parse_alert_command(command, classs) { "[RECOVER]" + $($(".fields")[nfield - 1]).val() ); } - } else if ($(this).css("-webkit-text-security") == "disc") { + } else if ( + $(this).css("-webkit-text-security") == "disc" || + $(this).css("font-family") == "text-security-disc" + ) { var hidden_character = "*"; var hidden_string = hidden_character.repeat($(this).val().length); From eee080e6236683bda5c05d5817b7bb39675b1666 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 17 May 2023 11:19:57 +0200 Subject: [PATCH 166/533] #9242 fixed the text string so that it is taken into account in the translation --- pandora_console/godmode/servers/plugin_registration.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pandora_console/godmode/servers/plugin_registration.php b/pandora_console/godmode/servers/plugin_registration.php index 296a29a510..e6bf99c768 100644 --- a/pandora_console/godmode/servers/plugin_registration.php +++ b/pandora_console/godmode/servers/plugin_registration.php @@ -93,10 +93,6 @@ if (is_metaconsole() === true) { } } -$str = 'This extension makes registering server plugins an easier task.'; -$str .= ' Here you can upload a server plugin in .pspz zipped format.'; -$str .= ' Please refer to the official documentation on how to obtain and use Server Plugins.'; - $output = '
'; $output .= '
'; $output .= html_print_image( @@ -108,7 +104,7 @@ $output .= '
'; $output .= '
'; $output .= '

'.__('Plugin registration').'

'; $output .= '

'; -$output .= __($str); +$output .= __('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.'); $output .= '

'; $output .= __('You can get more plugins in our'); $output .= ''; From 7980d68fafdf88e97394e902467b9c2c0f67d077 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 11:24:48 +0200 Subject: [PATCH 167/533] #11190 fixed filter with name module --- pandora_console/include/lib/Dashboard/Widgets/tree_view.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php index f0cbc5941d..5e7feb5acd 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php @@ -552,7 +552,7 @@ class TreeViewWidget extends Widget $searchModule = ''; if (empty($this->values['filterModule']) === false) { - $searchModule = $this->values['filterModule']; + $searchModule = io_safe_output($this->values['filterModule']); } $searchGroup = 0; From e29fef437be7b6a0cf3a973b379dfe81799b2597 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 13:15:26 +0200 Subject: [PATCH 168/533] #11231 added token for filter recursively in remote component --- .../modules/manage_network_components.php | 17 ++++++++++++-- .../include/functions_network_components.php | 23 +++++++++++++++++++ 2 files changed, 38 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index 7ef20ca385..1af17e323c 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -602,6 +602,7 @@ if ((bool) $id !== false || $new_component $search_id_group = (int) get_parameter('search_id_group'); +$group_recursive = (bool) get_parameter_switch('group_recursive', false); $search_string = (string) get_parameter('search_string'); $offset = (int) get_parameter('offset'); @@ -672,7 +673,15 @@ $table->data[0][] = html_print_label_input_block( 'width: 100%' ) ); - +$table->data[0][] = html_print_label_input_block( + __('Recursive'), + html_print_checkbox_switch( + 'group_recursive', + 1, + $group_recursive, + true + ) +); $table->data[0][] = html_print_label_input_block( __('Free Search'), html_print_input_text( @@ -722,7 +731,11 @@ ui_toggle( $filter = []; if ($search_id_group) { - $filter['id_group'] = $search_id_group; + if ($group_recursive === true) { + $filter['id_group'] = network_component_get_groups_recursive($search_id_group); + } else { + $filter['id_group'] = $search_id_group; + } } if ($search_string != '') { diff --git a/pandora_console/include/functions_network_components.php b/pandora_console/include/functions_network_components.php index f6c0087b37..7ca97d65c4 100644 --- a/pandora_console/include/functions_network_components.php +++ b/pandora_console/include/functions_network_components.php @@ -594,3 +594,26 @@ function network_components_duplicate_network_component($id_local_component) return network_components_create_network_component($name, $network['type'], $network['id_group'], $network); } + + +/** + * Return all children groups recursive include parent. + * + * @param integer $id_parent Id of parent. + * @param array $groups NO setting, array for recursive. + * + * @return array $groups All children ids include first parent. + */ +function network_component_get_groups_recursive($id_parent, $groups=[]) +{ + $groups[] = $id_parent; + $ids = db_get_all_rows_filter('tnetwork_component_group', ['parent' => $id_parent], 'id_sg'); + + if ($ids !== false) { + foreach ($ids as $key => $id) { + $groups = network_component_get_groups_recursive($id['id_sg'], $groups); + } + } + + return $groups; +} From 6a2210b0d5e5ed733dd73c06ea18158b594bbce6 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 17 May 2023 14:51:54 +0200 Subject: [PATCH 169/533] #11221 fixed filter in Module Template Manager --- pandora_console/include/class/ModuleTemplates.class.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/class/ModuleTemplates.class.php b/pandora_console/include/class/ModuleTemplates.class.php index bfb02c7ae8..dab74a8846 100644 --- a/pandora_console/include/class/ModuleTemplates.class.php +++ b/pandora_console/include/class/ModuleTemplates.class.php @@ -1339,7 +1339,11 @@ class ModuleTemplates extends HTML function filterGroupComponents(e){ var selectedGroup = e.target.value; var entireList = JSON.parse($('#hidden-group-components').val()); - var componentsToShow = entireList[selectedGroup]; + if(typeof entireList[selectedGroup] !== 'undefined'){ + var componentsToShow = entireList[selectedGroup].split(","); + } else { + var componentsToShow = []; + } $('#add-modules-components').children().each(function(){ var id = $(this).val(); if (typeof componentsToShow === 'undefined' && selectedGroup != '0') { @@ -1348,7 +1352,7 @@ class ModuleTemplates extends HTML $(this).css('display','block'); } else { $(this).css('display','none'); - } + } }); } From be0f77b782472282cad466673ecebd42d0fb8e10 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 17 May 2023 14:56:00 +0200 Subject: [PATCH 170/533] #11202 Fixed url icon --- pandora_console/include/functions_visual_map.php | 7 ++++++- .../include/rest-api/models/VisualConsole/Items/Icon.php | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index 80267a18e9..01e290b264 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -3173,7 +3173,12 @@ function visual_map_get_image_status_element($layoutData, $status=false) if ($layoutData['type'] == 5) { // ICON ELEMENT. - $img .= '.png'; + $url = parse_url($layoutData['image']); + if (isset($url['scheme']) === false) { + $img .= '.png'; + } else { + $img = $layoutData['image']; + } } else { if ($status === false) { $status = visual_map_get_status_element($layoutData); diff --git a/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php b/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php index 81ae02209e..cd89dc3f52 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Items/Icon.php @@ -116,7 +116,12 @@ final class Icon extends Item // Get the img src. $imagePath = \visual_map_get_image_status_element($data); - $data['imageSrc'] = \ui_get_full_url($imagePath, false, false, false); + $url = parse_url($imagePath); + if (isset($url['scheme']) === false) { + $data['imageSrc'] = \ui_get_full_url($imagePath, false, false, false); + } else { + $data['imageSrc'] = $imagePath; + } // If the width or the height are equal to 0 we will extract them // from the real image size. From ce19fa25df04473dcad0bf3d3060d78a0c8f4314 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 18 May 2023 01:00:17 +0200 Subject: [PATCH 171/533] 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 592c5072a0..5cdf1c62b6 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-230517 +Version: 7.0NG.771-230518 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 5dfb14ed12..2f47b9f05a 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-230517" +pandora_version="7.0NG.771-230518" 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 170eb7f81b..dae78890d7 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 => '230517'; +use constant AGENT_BUILD => '230518'; # 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 035678a021..66bb15c1be 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 230517 +%define release 230518 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 d59e5e8e23..afd716a670 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 230517 +%define release 230518 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 c634aa6007..076a1c294e 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="230517" +PI_BUILD="230518" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index ecb82d8e7e..8b312976a0 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230517} +{230518} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 0eada00935..f14f705866 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 230517") +#define PANDORA_VERSION ("7.0NG.771 Build 230518") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index cf97c6d914..da457b7d9f 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 230517))" + VALUE "ProductVersion", "(7.0NG.771(Build 230518))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 7030313b5e..bf74be3666 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230517 +Version: 7.0NG.771-230518 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 1e7db70601..fcdcb046ea 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-230517" +pandora_version="7.0NG.771-230518" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 3a14a7d59c..5fb8681e31 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 = 'PC230517'; +$build_version = 'PC230518'; $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 9b520d1d6a..471a353d39 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 efbb6b09a9..bf39b9f84c 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 230517 +%define release 230518 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 002a38d4cb..99153fe46b 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 230517 +%define release 230518 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 7e88d86706..c20967a83d 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230517" +PI_BUILD="230518" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 445a00fe40..21d941d913 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 230517"; +my $version = "7.0NG.771 Build 230518"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 1597a02b1f..565e26513c 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 230517"; +my $version = "7.0NG.771 Build 230518"; # save program name for logging my $progname = basename($0); From 51b4b99e37325b0c8666cbb7a399f5bccd2b1f88 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 18 May 2023 10:32:52 +0200 Subject: [PATCH 172/533] #11245 Added required functions --- .../include/javascript/d3.3.5.14.js | 72 ++++++++++++++++++- 1 file changed, 71 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/d3.3.5.14.js b/pandora_console/include/javascript/d3.3.5.14.js index 092de8d4c1..eb34e540d8 100644 --- a/pandora_console/include/javascript/d3.3.5.14.js +++ b/pandora_console/include/javascript/d3.3.5.14.js @@ -1395,6 +1395,76 @@ duration = +_; return zoom; }; + zoom.setTranslate = function(v) { + translate = v; + }; + zoom.convertLevelsToScale = function(i) { + min = Math.pow(2, (-360 * i) * .002) * 1; + max = Math.pow(2, (360 * i) * .002) * 1; + + return [min, max]; + }; + zoom.getZoomLevel = function(x, y) { + if (typeof(x) == 'undefined') { + x = 0; + //Get center + } + if (typeof(y) == 'undefined') { + y = 0; + //Get center + } + + var zoom_levels = []; + + if (!translate0) + translate0 = location([x, y]); + + var old_scale = scale; + var old_translate = [translate[0], translate[1]]; + + var count = 0; + + + scale = 1; + high_levels = []; + high_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]}); + do { + scaleTo(Math.pow(2, 360 * .002) * scale); + translateTo([x, y], translate0); + + high_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]}); + + if (count > 30) { + break; + } + count++; + } + while (scale < scaleExtent[1]); + scale = 1; + count = 0; + do { + scaleTo(Math.pow(2, -360 * .002) * scale); + translateTo([x, y], translate0); + + zoom_levels.push({'scale': scale, 'translate': [translate[0], translate[1]]}); + + if (count > 30) { + break; + } + count++; + } + while (scale > scaleExtent[0]); + + zoom_levels.reverse(); + high_levels.forEach(function(v, i) { + zoom_levels.push(v); + }); + + scale = old_scale; + translate = old_translate; + + return zoom_levels; + }; zoom.x = function(z) { if (!arguments.length) return x1; x1 = z; @@ -9550,4 +9620,4 @@ return request.responseXML; }); if (typeof define === "function" && define.amd) this.d3 = d3, define(d3); else if (typeof module === "object" && module.exports) module.exports = d3; else this.d3 = d3; -}(); \ No newline at end of file +}(); From 2eb617e1e6653acfdac31c4164a8e31c8a40f9ff Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 18 May 2023 11:38:44 +0200 Subject: [PATCH 173/533] #11268 Fixed css --- pandora_console/include/styles/visual_maps.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pandora_console/include/styles/visual_maps.css b/pandora_console/include/styles/visual_maps.css index f106dda76d..7b958de489 100644 --- a/pandora_console/include/styles/visual_maps.css +++ b/pandora_console/include/styles/visual_maps.css @@ -34,6 +34,7 @@ div#vc-controls { div#vc-controls div#menu_tab { margin: 0px; + height: 100% !important; } div#vc-controls ul.white-box-content { @@ -165,6 +166,14 @@ div.label strong span { z-index: 999; } +.vc-btn-no-fullscreen { + padding: 0 !important; +} + +.vc-btn-no-fullscreen img { + margin-top: 0 !important; +} + .visual_font_size_4pt, .visual_font_size_4pt > em, .visual_font_size_4pt > strong, From 90c3ccccd8a1cb1e07b4df2430b5708bd0335b2a Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 18 May 2023 12:53:45 +0200 Subject: [PATCH 174/533] #11222 Fix url to home screen visual console --- pandora_console/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index fc28451ea1..9de85373ab 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1388,7 +1388,7 @@ if ($searchPage) { case 'Visual console': $id_visualc = db_get_value('id', 'tlayout', 'name', $home_url); if (($home_url == '') || ($id_visualc == false)) { - $str = 'sec=network&sec2=operation/visual_console/index&refr=60'; + $str = 'sec=godmode/reporting/map_builder&sec2=godmode/reporting/map_builder'; } else { $str = 'sec=network&sec2=operation/visual_console/render_view&id='.$id_visualc; } From 1037eaa8b445b81fed8e60a8b8c89ce364f0035d Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 18 May 2023 13:56:40 +0200 Subject: [PATCH 175/533] #11064 Fix JS code button --- pandora_console/include/functions_ui.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 473e96fe37..2b4affc249 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -4512,7 +4512,7 @@ function ui_toggle( // Link to toggle. $output = '
'; - $output .= '
'; + $output .= '
'; if ($reverseImg === false) { if ($switch === true) { if (empty($switch_name) === true) { @@ -4602,7 +4602,7 @@ function ui_toggle( $output .= ' /* Date: Thu, 18 May 2023 15:28:58 +0200 Subject: [PATCH 176/533] #11255 Fixed monitor health in metaconsole --- pandora_console/include/functions_reporting.php | 2 +- pandora_console/include/functions_tactical.php | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 5adae9abf7..705878acec 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -12095,7 +12095,7 @@ function reporting_get_stats_indicators($data, $width=280, $height=20, $html=tru $table_ind->data[] = $tdata; $tdata[0] = '
- '.__('Module sanityX').ui_print_help_tip(sprintf(__('%d Not inited monitors'), (int) $data['monitor_not_init']), true).''.progress_bar($data['module_sanity'], $width, $height, $data['module_sanity'].'% '.__('of total modules inited'), 0).'
'; + '.__('Module sanity').ui_print_help_tip(sprintf(__('%d Not inited monitors'), (int) $data['monitor_not_init']), true).''.progress_bar($data['module_sanity'], $width, $height, $data['module_sanity'].'% '.__('of total modules inited'), 0).''; $table_ind->rowclass[] = ''; $table_ind->data[] = $tdata; diff --git a/pandora_console/include/functions_tactical.php b/pandora_console/include/functions_tactical.php index deb39c4e88..8b8575b8d7 100644 --- a/pandora_console/include/functions_tactical.php +++ b/pandora_console/include/functions_tactical.php @@ -278,8 +278,8 @@ function tactical_get_data( // Get total count of monitors for this group, except disabled. $list['_monitor_checks_'] = ($list['_monitors_not_init_'] + $list['_monitors_unknown_'] + $list['_monitors_warning_'] + $list['_monitors_critical_'] + $list['_monitors_ok_']); - // Calculate not_normal monitors - $list['_monitor_not_normal_'] = ($list[$i]['_monitor_checks_'] - $list['_monitors_ok_']); + // Calculate not_normal monitors. + $list['_monitor_not_normal_'] = ($list['_monitor_checks_'] - $list['_monitors_ok_']); if ($list['_monitor_not_normal_'] > 0 && $list['_monitor_checks_'] > 0) { $list['_monitor_health_'] = format_numeric((100 - ($list['_monitor_not_normal_'] / ($list['_monitor_checks_'] / 100))), 1); @@ -293,7 +293,7 @@ function tactical_get_data( $list['_module_sanity_'] = 100; } - if (isset($list[$i]['_alerts_'])) { + if (isset($list['_alerts_'])) { if ($list['_monitors_alerts_fired_'] > 0 && $list['_alerts_'] > 0) { $list['_alert_level_'] = format_numeric((100 - ($list['_monitors_alerts_fired_'] / ($list['_alerts_'] / 100))), 1); } else { From 1860baac0c660fa5d7fffb21a5e526a5286b0c3e Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 18 May 2023 16:30:17 +0200 Subject: [PATCH 177/533] #11117 Fix unset values --- pandora_console/include/auth/mysql.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index bb2e51bc73..9783c609b6 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -805,6 +805,9 @@ function update_user(string $id_user, array $values) unset($values['id_skin']); unset($values['section']); unset($values['default_event_filter']); + $update_user_metaconsole = true; + } else { + $update_user_metaconsole = false; } $output = db_process_sql_update('tusuario', $values, ['id_user' => $id_user]); @@ -844,6 +847,10 @@ function update_user(string $id_user, array $values) } } + if ($update_user_metaconsole === true) { + $output = 1; + } + return $output; } From cebe92296b6308df1f281e338e6352e3c9019f8b Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 18 May 2023 16:32:30 +0200 Subject: [PATCH 178/533] #11001 fix languaje tips window --- pandora_console/include/class/TipsWindow.class.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 712fc62f0a..dfa0c70f9c 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -270,6 +270,7 @@ class TipsWindow } $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); + $sql .= sprintf(' AND id_lang = "%s"', $language); $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; @@ -320,6 +321,7 @@ class TipsWindow WHERE enable = "1" '; $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); + $sql .= sprintf(' AND id_lang = "%s"', $config['language']); $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; From 9f1002e0820f6b60fafecd137df8a7fa81dd0f12 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 18 May 2023 17:21:26 +0200 Subject: [PATCH 179/533] #11276 Fixed group --- .../lib/Dashboard/Widgets/agent_module.php | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index 9d6cb524f7..02368a42c7 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -279,13 +279,26 @@ class AgentModuleWidget extends Widget $return_all_group = true; } + $mgroup = ''; + if (isset($this->values['mGroup']) === false) { + $sql = sprintf( + 'SELECT id_group FROM tdashboard WHERE id = %d', + $this->dashboardId + ); + + $group_dahsboard = db_get_value_sql($sql); + if ($group_dahsboard > 0) { + $mgroup = $group_dahsboard; + } + } + $inputs[] = [ 'class' => 'flex flex-row', 'id' => 'select_multiple_modules_filtered', 'arguments' => [ 'type' => 'select_multiple_modules_filtered', 'uniqId' => $this->cellId, - 'mGroup' => (isset($this->values['mGroup']) === true) ? $this->values['mGroup'] : '', + 'mGroup' => (isset($this->values['mGroup']) === true) ? $this->values['mGroup'] : $mgroup, 'mRecursion' => (isset($this->values['mRecursion']) === true) ? $this->values['mRecursion'] : '', 'mModuleGroup' => (isset($this->values['mModuleGroup']) === true) ? $this->values['mModuleGroup'] : '', 'mAgents' => (isset($this->values['mAgents']) === true) ? $this->values['mAgents'] : '', From 2efd36c6830c5c1ffeac11516b4abcc1cfac06e7 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 19 May 2023 01:00:17 +0200 Subject: [PATCH 180/533] 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 5cdf1c62b6..4e0e77fea2 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-230518 +Version: 7.0NG.771-230519 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 2f47b9f05a..eb5ec84530 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-230518" +pandora_version="7.0NG.771-230519" 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 dae78890d7..c4bc56f416 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 => '230518'; +use constant AGENT_BUILD => '230519'; # 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 66bb15c1be..05f17c036f 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 230518 +%define release 230519 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 afd716a670..a538b7dfbc 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 230518 +%define release 230519 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 076a1c294e..0d95a0e1d5 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="230518" +PI_BUILD="230519" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 8b312976a0..7ecb5ca020 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230518} +{230519} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f14f705866..77a2b2f710 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 230518") +#define PANDORA_VERSION ("7.0NG.771 Build 230519") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index da457b7d9f..15b02c04f3 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 230518))" + VALUE "ProductVersion", "(7.0NG.771(Build 230519))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index bf74be3666..9db5bdb34e 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230518 +Version: 7.0NG.771-230519 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 fcdcb046ea..bac0db7493 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-230518" +pandora_version="7.0NG.771-230519" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5fb8681e31..88cb0e4800 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 = 'PC230518'; +$build_version = 'PC230519'; $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 471a353d39..680d80bd0e 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 bf39b9f84c..3779b83e29 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 230518 +%define release 230519 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 99153fe46b..59d6c14aa8 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 230518 +%define release 230519 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index c20967a83d..106f2ce9b4 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230518" +PI_BUILD="230519" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 21d941d913..6707bcdff4 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 230518"; +my $version = "7.0NG.771 Build 230519"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 565e26513c..7215a58182 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 230518"; +my $version = "7.0NG.771 Build 230519"; # save program name for logging my $progname = basename($0); From efc2990a5c81f59806c8be3bf1017b4b81d1b950 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 19 May 2023 10:49:16 +0200 Subject: [PATCH 181/533] #11117 Fix homscreen in metaconsole --- pandora_console/extras/mr/64.sql | 16 ++++ .../godmode/users/configure_user.php | 6 ++ .../godmode/users/user_management.php | 75 +++++++++++-------- pandora_console/include/auth/mysql.php | 36 ++++++--- 4 files changed, 89 insertions(+), 44 deletions(-) create mode 100644 pandora_console/extras/mr/64.sql diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql new file mode 100644 index 0000000000..81253929b3 --- /dev/null +++ b/pandora_console/extras/mr/64.sql @@ -0,0 +1,16 @@ +START TRANSACTION; + +UPDATE `tnetwork_component` + SET module_enabled=1 +WHERE name='Cisco _nameOID_ power state'; + +ALTER TABLE `tlayout_data` +ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; + +ALTER TABLE `tusuario` +ADD COLUMN `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default' AFTER `data_section`; + +ALTER TABLE `tusuario` +ADD COLUMN `metaconsole_data_section` VARCHAR(255) NOT NULL DEFAULT '' AFTER `metaconsole_section`; + +COMMIT; diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 2f01df4a55..c05e486b81 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -73,6 +73,12 @@ if ($id !== $config['id_user']) { // ID given as parameter. $pure = get_parameter('pure', 0); $user_info = get_user_info($id); + +if (is_metaconsole() === true) { + $user_info['section'] = $user_info['metaconsole_section']; + $user_info['data_section'] = $user_info['metaconsole_data_section']; +} + $is_err = false; if (is_ajax() === true) { diff --git a/pandora_console/godmode/users/user_management.php b/pandora_console/godmode/users/user_management.php index 45c54306ce..8df367d263 100644 --- a/pandora_console/godmode/users/user_management.php +++ b/pandora_console/godmode/users/user_management.php @@ -608,42 +608,51 @@ $userManagementTable->data['fields_blocksize_eventfilter'][1] = html_print_selec false, false ); -if (is_metaconsole() === false) { - // Home screen table. - $homeScreenTable = new stdClass(); - $homeScreenTable->class = 'w100p full_section'; - $homeScreenTable->id = 'home_screen_table'; - $homeScreenTable->style = []; - $homeScreenTable->rowclass = []; - $homeScreenTable->data = []; - // Home screen. - $homeScreenTable->data['captions_homescreen'][0] = __('Home screen'); - $homeScreenTable->colspan['captions_homescreen'][0] = 2; - $homeScreenTable->rowclass['captions_homescreen'] = 'field_half_width'; - $homeScreenTable->rowclass['fields_homescreen'] = 'field_half_width flex'; - $homeScreenTable->data['fields_homescreen'][0] = html_print_select( - $homeScreenValues, - 'section', - io_safe_output($user_info['section']), - 'show_data_section();', - '', - -1, - true, - false, - false - ); - $homeScreenTable->data['fields_homescreen'][1] = html_print_div( - [ - 'class' => 'w100p', - 'content' => $customHomeScreenDataField, - ], - true - ); - $userManagementTable->rowclass['homescreen_table'] = 'w100p'; - $userManagementTable->data['homescreen_table'] = html_print_table($homeScreenTable, true); +// Home screen table. +$homeScreenTable = new stdClass(); +$homeScreenTable->class = 'w100p full_section'; +$homeScreenTable->id = 'home_screen_table'; +$homeScreenTable->style = []; +$homeScreenTable->rowclass = []; +$homeScreenTable->data = []; +// Home screen. +$homeScreenTable->data['captions_homescreen'][0] = __('Home screen'); +$homeScreenTable->colspan['captions_homescreen'][0] = 2; +$homeScreenTable->rowclass['captions_homescreen'] = 'field_half_width'; +$homeScreenTable->rowclass['fields_homescreen'] = 'field_half_width flex'; + +$selected_homescreen = $user_info['section']; +foreach ($homeScreenValues as $key => $value) { + if ($value === $selected_homescreen) { + $selected_homescreen = $key; + break; + } } +$homeScreenTable->data['fields_homescreen'][0] = html_print_select( + $homeScreenValues, + 'section', + $selected_homescreen, + 'show_data_section();', + '', + -1, + true, + false, + false +); +$homeScreenTable->data['fields_homescreen'][1] = html_print_div( + [ + 'class' => 'w100p', + 'content' => $customHomeScreenDataField, + ], + true +); + +$userManagementTable->rowclass['homescreen_table'] = 'w100p'; +$userManagementTable->data['homescreen_table'] = html_print_table($homeScreenTable, true); + + if (is_metaconsole() === true && users_is_admin() === true) { $userManagementTable->rowclass['search_custom1_looknfeel'] = 'field_half_width'; $userManagementTable->rowclass['search_custom2_looknfeel'] = 'field_half_width flex-column'; diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 9783c609b6..cd6f8f056f 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -801,13 +801,31 @@ function update_user(string $id_user, array $values) return false; } - if (is_metaconsole() === true) { - unset($values['id_skin']); - unset($values['section']); - unset($values['default_event_filter']); - $update_user_metaconsole = true; - } else { - $update_user_metaconsole = false; + if (isset($values['section']) === true) { + $homeScreenValues = [ + HOME_SCREEN_DEFAULT => __('Default'), + HOME_SCREEN_VISUAL_CONSOLE => __('Visual console'), + HOME_SCREEN_EVENT_LIST => __('Event list'), + HOME_SCREEN_GROUP_VIEW => __('Group view'), + HOME_SCREEN_TACTICAL_VIEW => __('Tactical view'), + HOME_SCREEN_ALERT_DETAIL => __('Alert detail'), + HOME_SCREEN_EXTERNAL_LINK => __('External link'), + HOME_SCREEN_OTHER => __('Other'), + HOME_SCREEN_DASHBOARD => __('Dashboard'), + ]; + + if (array_key_exists($values['section'], $homeScreenValues) === true) { + $values['section'] = $homeScreenValues[$values['section']]; + } + + if (is_metaconsole() === true) { + $values['metaconsole_section'] = $values['section']; + $values['metaconsole_data_section'] = $values['data_section']; + unset($values['id_skin']); + unset($values['section']); + unset($values['data_section']); + unset($values['default_event_filter']); + } } $output = db_process_sql_update('tusuario', $values, ['id_user' => $id_user]); @@ -847,10 +865,6 @@ function update_user(string $id_user, array $values) } } - if ($update_user_metaconsole === true) { - $output = 1; - } - return $output; } From c204558a579fa08dbe0cf112adafd43b5e5d45c8 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 19 May 2023 11:00:39 +0200 Subject: [PATCH 182/533] #11288 fixed icon gis in agent --- pandora_console/godmode/agentes/agent_manager.php | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index f01c035e80..e89dd671c9 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -754,13 +754,14 @@ $tableAdvancedAgent->data['agent_icon'][] = html_print_label_input_block( false, true, 'w540px' - ).html_print_image( + ).'
'.html_print_image( $path_ok, true, [ 'id' => 'icon_ok', 'style' => 'display:'.$display_icons.';', - 'width' => '40', + 'width' => '30', + 'class' => 'mrgn_right_5px', ] ).html_print_image( $path_bad, @@ -768,7 +769,8 @@ $tableAdvancedAgent->data['agent_icon'][] = html_print_label_input_block( [ 'id' => 'icon_bad', 'style' => 'display:'.$display_icons.';', - 'width' => '40', + 'width' => '30', + 'class' => 'mrgn_right_5px', ] ).html_print_image( $path_warning, @@ -776,9 +778,10 @@ $tableAdvancedAgent->data['agent_icon'][] = html_print_label_input_block( [ 'id' => 'icon_warning', 'style' => 'display:'.$display_icons.';', - 'width' => '40', + 'width' => '30', + 'class' => 'mrgn_right_5px', ] - ) + ).'
' ); // Url address. From 94cdd624fa60e7aeff76704a20e4f5a8707e403d Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 19 May 2023 13:10:19 +0200 Subject: [PATCH 183/533] #11289 fixed autocomplete url address in agent --- pandora_console/godmode/agentes/agent_manager.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index f01c035e80..2e9e73f376 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -795,8 +795,6 @@ if (enterprise_installed() === true) { '', 'w540px', '', - // Autocomplete. - 'new-password' ); } else { $urlAddressInput = html_print_input_text( From e0781801acb65e6a2c96ca5315e755374a4678da Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 19 May 2023 13:40:20 +0200 Subject: [PATCH 184/533] #11117 add new tusuario columns on pandoradb.sql --- pandora_console/pandoradb.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 38ce21bc71..b55330a42f 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1296,6 +1296,8 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `shortcut_data` TEXT, `section` TEXT, `data_section` TEXT, + `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default', + `metaconsole_data_section` VARCHAR(255) NOT NULL DEFAULT '', `force_change_pass` TINYINT UNSIGNED NOT NULL DEFAULT 0, `last_pass_change` DATETIME, `last_failed_login` DATETIME, From 16a3a2011deff4c0d744d7a38eea073b34ebb742 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 20 May 2023 01:00:15 +0200 Subject: [PATCH 185/533] 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 4e0e77fea2..0adbfca6e0 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-230519 +Version: 7.0NG.771-230520 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 eb5ec84530..7c2b403c38 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-230519" +pandora_version="7.0NG.771-230520" 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 c4bc56f416..d515011882 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 => '230519'; +use constant AGENT_BUILD => '230520'; # 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 05f17c036f..d83c8a689c 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 230519 +%define release 230520 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 a538b7dfbc..84a661d432 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 230519 +%define release 230520 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 0d95a0e1d5..0994b4e2ee 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="230519" +PI_BUILD="230520" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 7ecb5ca020..e031a57f7d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230519} +{230520} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 77a2b2f710..b0aaf07bb4 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 230519") +#define PANDORA_VERSION ("7.0NG.771 Build 230520") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 15b02c04f3..50b37d8c21 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 230519))" + VALUE "ProductVersion", "(7.0NG.771(Build 230520))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 9db5bdb34e..14c2257b7c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230519 +Version: 7.0NG.771-230520 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 bac0db7493..a288f572b7 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-230519" +pandora_version="7.0NG.771-230520" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 88cb0e4800..f375f070fd 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 = 'PC230519'; +$build_version = 'PC230520'; $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 680d80bd0e..123692a7e9 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 3779b83e29..d09fddc48d 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 230519 +%define release 230520 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 59d6c14aa8..1c7df88d10 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 230519 +%define release 230520 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 106f2ce9b4..021e8982a2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230519" +PI_BUILD="230520" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 6707bcdff4..58f6c1392f 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 230519"; +my $version = "7.0NG.771 Build 230520"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 7215a58182..8f7c147a8a 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 230519"; +my $version = "7.0NG.771 Build 230520"; # save program name for logging my $progname = basename($0); From ae1f31043a1c6851e79004341d3473fd3e4edfa3 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 21 May 2023 01:00:17 +0200 Subject: [PATCH 186/533] 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 0adbfca6e0..ad35580115 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-230520 +Version: 7.0NG.771-230521 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 7c2b403c38..ae8854a6ff 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-230520" +pandora_version="7.0NG.771-230521" 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 d515011882..a786026d64 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 => '230520'; +use constant AGENT_BUILD => '230521'; # 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 d83c8a689c..b6e2710c96 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 230520 +%define release 230521 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 84a661d432..960eaddd3b 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 230520 +%define release 230521 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 0994b4e2ee..b24ce2de18 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="230520" +PI_BUILD="230521" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index e031a57f7d..f55ba42092 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230520} +{230521} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index b0aaf07bb4..37359b8047 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 230520") +#define PANDORA_VERSION ("7.0NG.771 Build 230521") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 50b37d8c21..1c9dbd07ce 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 230520))" + VALUE "ProductVersion", "(7.0NG.771(Build 230521))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 14c2257b7c..80f8ebca28 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230520 +Version: 7.0NG.771-230521 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 a288f572b7..0a2547cc1d 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-230520" +pandora_version="7.0NG.771-230521" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index f375f070fd..7a892aa5f8 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 = 'PC230520'; +$build_version = 'PC230521'; $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 123692a7e9..f2be200e90 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 d09fddc48d..5a44900ec9 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 230520 +%define release 230521 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 1c7df88d10..c5a92b2c47 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 230520 +%define release 230521 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 021e8982a2..338097ad45 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230520" +PI_BUILD="230521" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 58f6c1392f..d36b9fb973 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 230520"; +my $version = "7.0NG.771 Build 230521"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 8f7c147a8a..6adfabf226 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 230520"; +my $version = "7.0NG.771 Build 230521"; # save program name for logging my $progname = basename($0); From 5888a26e376c58eab2d95740e463888e1bdfdd5e Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 22 May 2023 01:00:17 +0200 Subject: [PATCH 187/533] 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 ad35580115..09387bceaf 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-230521 +Version: 7.0NG.771-230522 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 ae8854a6ff..04997ef393 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-230521" +pandora_version="7.0NG.771-230522" 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 a786026d64..a8957a008f 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 => '230521'; +use constant AGENT_BUILD => '230522'; # 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 b6e2710c96..9a920daf1f 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 230521 +%define release 230522 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 960eaddd3b..fe1ce87ff1 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 230521 +%define release 230522 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 b24ce2de18..a219b6c42d 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="230521" +PI_BUILD="230522" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index f55ba42092..a552e59ab8 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230521} +{230522} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 37359b8047..a6e4bfe216 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 230521") +#define PANDORA_VERSION ("7.0NG.771 Build 230522") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 1c9dbd07ce..1ec84a95fd 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 230521))" + VALUE "ProductVersion", "(7.0NG.771(Build 230522))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 80f8ebca28..0f4bd9467b 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230521 +Version: 7.0NG.771-230522 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 0a2547cc1d..c1b185b699 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-230521" +pandora_version="7.0NG.771-230522" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7a892aa5f8..492cd1f596 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 = 'PC230521'; +$build_version = 'PC230522'; $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 f2be200e90..76d5ea73dc 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 5a44900ec9..fa947b6803 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 230521 +%define release 230522 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index c5a92b2c47..9c3c234965 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 230521 +%define release 230522 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 338097ad45..6fd55c64b2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230521" +PI_BUILD="230522" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index d36b9fb973..7a07d7b207 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 230521"; +my $version = "7.0NG.771 Build 230522"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 6adfabf226..fd18746326 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 230521"; +my $version = "7.0NG.771 Build 230522"; # save program name for logging my $progname = basename($0); From 6a1f389109834eea33f5cc693a02044759c11392 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 22 May 2023 09:38:01 +0200 Subject: [PATCH 188/533] #11229 Add input text for new filter name --- pandora_console/operation/netflow/nf_live_view.php | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php index ceaa2249e6..06dffcaa9f 100644 --- a/pandora_console/operation/netflow/nf_live_view.php +++ b/pandora_console/operation/netflow/nf_live_view.php @@ -85,7 +85,7 @@ if (is_ajax() === true) { // Read filter configuration. $filter_id = (int) get_parameter('filter_id', 0); -$filter['id_name'] = get_parameter('name', ''); +$filter['id_name'] = get_parameter('new_filter_name', ''); $filter['id_group'] = (int) get_parameter('assign_group', 0); $filter['aggregate'] = get_parameter('aggregate', ''); $filter['ip_dst'] = get_parameter('ip_dst', ''); @@ -162,6 +162,10 @@ if ($save != '' && check_acl($config['id_user'], 0, 'AW')) { // Save filter args. $filter['filter_args'] = netflow_get_filter_arguments($filter, true); + if ($filter['id_name'] === '') { + $filter['id_name'] = 'Netflow_Filter_'.time(); + } + $filter_id = db_process_sql_insert('tnetflow_filter', $filter); if ($filter_id === false) { $filter_id = 0; @@ -380,6 +384,9 @@ $advanced_toggle .= ''.html_print_checkbox_switch( 'displayMonitoringFilter()', ).''; +$advanced_toggle .= ''.__('New filter name').''; +$advanced_toggle .= ''.html_print_input_text('new_filter_name', '', false, 40, 80, true).''; + $advanced_toggle .= ''; $advanced_toggle .= "".__('Netflow monitoring interval').ui_print_help_tip(__('Netflow monitoring interval in secs.'), true).''; $advanced_toggle .= ''.html_print_input_number( From efc96d96616d299a2b157ae4a0f1a8213a8aa780 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 22 May 2023 10:01:57 +0200 Subject: [PATCH 189/533] #11299 added avanced mode agent in open version --- .../godmode/agentes/agent_manager.php | 77 ++++++++++--------- 1 file changed, 39 insertions(+), 38 deletions(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index f01c035e80..10f35549ea 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -295,25 +295,25 @@ if (enterprise_installed() === true) { $cps_val = $cps; } } +} - // Parent agents. - $paramsParentAgent = []; - $paramsParentAgent['return'] = true; - $paramsParentAgent['show_helptip'] = false; - $paramsParentAgent['input_name'] = 'id_parent'; - $paramsParentAgent['print_hidden_input_idagent'] = true; - $paramsParentAgent['hidden_input_idagent_name'] = 'id_agent_parent'; - $paramsParentAgent['hidden_input_idagent_value'] = $id_parent; - $paramsParentAgent['value'] = db_get_value('alias', 'tagente', 'id_agente', $id_parent); - $paramsParentAgent['selectbox_id'] = 'cascade_protection_module'; - $paramsParentAgent['javascript_is_function_select'] = true; - $paramsParentAgent['cascade_protection'] = true; - $paramsParentAgent['input_style'] = 'width: 100%;'; +// Parent agents. +$paramsParentAgent = []; +$paramsParentAgent['return'] = true; +$paramsParentAgent['show_helptip'] = false; +$paramsParentAgent['input_name'] = 'id_parent'; +$paramsParentAgent['print_hidden_input_idagent'] = true; +$paramsParentAgent['hidden_input_idagent_name'] = 'id_agent_parent'; +$paramsParentAgent['hidden_input_idagent_value'] = $id_parent; +$paramsParentAgent['value'] = db_get_value('alias', 'tagente', 'id_agente', $id_parent); +$paramsParentAgent['selectbox_id'] = 'cascade_protection_module'; +$paramsParentAgent['javascript_is_function_select'] = true; +$paramsParentAgent['cascade_protection'] = true; +$paramsParentAgent['input_style'] = 'width: 100%;'; - if ($id_agente !== 0) { - // Deletes the agent's offspring. - $paramsParentAgent['delete_offspring_agents'] = $id_agente; - } +if ($id_agente !== 0) { + // Deletes the agent's offspring. + $paramsParentAgent['delete_offspring_agents'] = $id_agente; } $listIcons = gis_get_array_list_icons(); @@ -631,15 +631,18 @@ $tableAdvancedAgent->style = []; $tableAdvancedAgent->cellclass = []; $tableAdvancedAgent->colspan = []; $tableAdvancedAgent->rowspan = []; -// Secondary groups. -$tableAdvancedAgent->data['secondary_groups'][] = html_print_label_input_block( - __('Secondary groups'), - html_print_select_agent_secondary( - $agent, - $id_agente, - ['selected_post' => $secondary_groups] - ) -); + +if (enterprise_installed() === true) { + // Secondary groups. + $tableAdvancedAgent->data['secondary_groups'][] = html_print_label_input_block( + __('Secondary groups'), + html_print_select_agent_secondary( + $agent, + $id_agente, + ['selected_post' => $secondary_groups] + ) + ); +} // Parent agent. $tableAdvancedAgent->data['parent_agent'][] = html_print_label_input_block( @@ -903,18 +906,16 @@ $tableAdvancedAgent->data['safe_operation'][] = html_print_label_input_block( ) ); -if (enterprise_installed() === true) { - ui_toggle( - html_print_table($tableAdvancedAgent, true), - ''.__('Advanced options').'', - '', - '', - true, - false, - 'white_box_content', - 'no-border white_table_graph' - ); -} +ui_toggle( + html_print_table($tableAdvancedAgent, true), + ''.__('Advanced options').'', + '', + '', + true, + false, + 'white_box_content', + 'no-border white_table_graph' +); // Custom fields. $customOutputData = ''; From 466e44681d6a1ab2bb80a8faf67bb21e593cf7bb Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 22 May 2023 10:37:52 +0200 Subject: [PATCH 190/533] #11282 Fixed basic chart --- .../include/graphs/flot/pandora.flot.js | 40 ++++++++++--------- 1 file changed, 21 insertions(+), 19 deletions(-) diff --git a/pandora_console/include/graphs/flot/pandora.flot.js b/pandora_console/include/graphs/flot/pandora.flot.js index ee99a0ad4f..4be0fd1f79 100644 --- a/pandora_console/include/graphs/flot/pandora.flot.js +++ b/pandora_console/include/graphs/flot/pandora.flot.js @@ -1975,25 +1975,27 @@ function pandoraFlotArea( !(type == 1 && /percentil/.test(index) == true) && !(type == 3 && /percentil/.test(index) == true) ) { - data_base.push({ - id: "serie_" + i, - data: value.data, - label: index, - color: color[index]["color"], - lines: { - show: line_show, - fill: filled, - lineWidth: lineWidth, - steps: steps_chart - }, - points: { - show: points_show, - radius: radius, - fillColor: fill_points, - fill: filled - }, - legend: legend.index - }); + if (color[index] !== null) { + data_base.push({ + id: "serie_" + i, + data: value.data, + label: index, + color: color[index]["color"], + lines: { + show: line_show, + fill: filled, + lineWidth: lineWidth, + steps: steps_chart + }, + points: { + show: points_show, + radius: radius, + fillColor: fill_points, + fill: filled + }, + legend: legend.index + }); + } } } i++; From a6415b1d8e40de77ac44ccdf93a3a4f05afbf049 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 22 May 2023 10:45:26 +0200 Subject: [PATCH 191/533] #11281 fixed agent installer --- pandora_console/include/class/AgentDeployWizard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/AgentDeployWizard.class.php b/pandora_console/include/class/AgentDeployWizard.class.php index 9e76960b22..7cd19859a0 100644 --- a/pandora_console/include/class/AgentDeployWizard.class.php +++ b/pandora_console/include/class/AgentDeployWizard.class.php @@ -662,7 +662,7 @@ class AgentDeployWizard var group_val = $('[name="group"] option:selected').text(); var win_installer_command = `Invoke-WebRequest -Uri https://firefly.pandorafms.com/pandorafms/latest/Windows/Pandora%20FMS%20Windows%20Agent%20v7.0NG.x86_64.exe -OutFile \$\{env:tmp\}\\\pandora-agent-windows.exe; & \$\{env:tmp\}\\\pandora-agent-windows.exe /S --ip ${server_addr_val} --group \"${group_val}\" --remote_config 1`; - var linux_installer_command = `export PANDORA_SERVER_IP='${server_addr_val}' && \\ \nexport PANDORA_REMOTE_CONFIG=1 && \\ \nexport PANDORA_GROUP='${group_val}' && \\ \ncurl -Ls https://pfms.me/agent-deploy | bash`; + var linux_installer_command = `export PANDORA_SERVER_IP='${server_addr_val}' && \\\nexport PANDORA_REMOTE_CONFIG=1 && \\\nexport PANDORA_GROUP='${group_val}' && \\\ncurl -Ls https://pfms.me/agent-deploy | bash`; var mac_installer_text = `To complete the installation process, please perform a manual installation and configure the server IP to ${server_addr_val} and specify the group as ${group_val}. Thank you for your cooperation`; var linux_service_start = "/etc/init.d/pandora_agent_daemon start"; var win_service_start = "NET START PandoraFMSAgent"; From 5fe0f7fb084080c37a8576ceb0c21070f467c42d Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 22 May 2023 11:39:59 +0200 Subject: [PATCH 192/533] #11140 fix style message warning --- pandora_console/godmode/servers/servers.build_table.php | 9 ++++++--- pandora_console/include/ajax/module.php | 3 ++- pandora_console/include/functions_clippy.php | 8 ++++++-- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php index fe74c172c8..b38ff6591a 100644 --- a/pandora_console/godmode/servers/servers.build_table.php +++ b/pandora_console/godmode/servers/servers.build_table.php @@ -167,19 +167,22 @@ foreach ($servers as $server) { break; } - $data[6] = $server['threads'].' : '.$server['queued_modules']; + $data[6] = ''; if ($server['queued_modules'] > 500) { - $data[6] .= '    '; } + $data[6] .= $server['threads'].' : '.$server['queued_modules']; + $data[7] = ui_print_timestamp($server['keepalive'], true); diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 78751eb001..995745f38b 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1155,7 +1155,6 @@ if (check_login()) { $last_status_change_text = __('Time elapsed since last status change: '); $last_status_change_text .= (empty($module['last_status_change']) === false) ? human_time_comparation($module['last_status_change']) : __('N/A'); - $data[4] .= ui_print_status_image($status, htmlspecialchars($title), true, false, false, true, $last_status_change_text); if ($show_context_help_first_time === false) { $show_context_help_first_time = true; @@ -1164,6 +1163,8 @@ if (check_login()) { } } + $data[4] .= ui_print_status_image($status, htmlspecialchars($title), true, false, false, true, $last_status_change_text); + // Module thresholds. $data[5] = ''; if ((int) $module['id_tipo_modulo'] !== 25) { diff --git a/pandora_console/include/functions_clippy.php b/pandora_console/include/functions_clippy.php index 8dbaaaa780..2b883df434 100644 --- a/pandora_console/include/functions_clippy.php +++ b/pandora_console/include/functions_clippy.php @@ -297,8 +297,12 @@ function clippy_context_help($help=null) $code = str_replace('{clippy_obj}', 'intro_'.$id, $code); $return = $code.' '; @@ -7968,4 +7969,4 @@ function ui_update_name_fav_element($id_element, $section, $label) 'id_element' => $id_element, ] ); -} \ No newline at end of file +} From b9400e73b4aa6194063a0bc06a989f50f48c35c9 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 23 May 2023 12:48:01 +0200 Subject: [PATCH 212/533] #11304 adjusted the size of the modal create module and the width of the select --- pandora_console/godmode/agentes/module_manager.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index f436894545..1c6126467f 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -1105,8 +1105,9 @@ $createModuleTable->data[0][] = html_print_label_input_block( false, '', false, - 'width:250px;' - ) + 'width:350px;' + ), + ['div_style' => 'margin-top: 25px;'], ); $createModuleTable->data[1][] = html_print_label_input_block( @@ -1134,8 +1135,9 @@ $modalCreateModule .= html_print_div( 'modal_button_create', false, [ - 'icon' => 'next', - 'mode' => 'mini secondary', + 'icon' => 'next', + 'mode' => 'mini secondary', + 'style' => 'margin-top: 140px;', ], true ), @@ -1162,8 +1164,8 @@ html_print_div( draggable: true, modal: true, close: false, - height: 222, - width: 480, + height: 400, + width: 495, overlay: { opacity: 0.5, background: "black" From bbd86792350ff119dabd81def7a614d43f7a590a Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 23 May 2023 13:39:40 +0200 Subject: [PATCH 213/533] #11149 Fix conditional when selected is string and value is integer --- pandora_console/include/functions_html.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 91d4cd734e..55f444771a 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -903,6 +903,11 @@ function html_print_select( ) { // This fixes string ($value) to int ($selected) comparisons $output .= ' selected="selected"'; + } else if (is_numeric($value) && is_string($selected)) { + $str_value = strval($value); + if ($str_value === $selected) { + $output .= ' selected="selected"'; + } } else if ($value === $selected) { // Needs type comparison otherwise if $selected = 0 and $value = "string" this would evaluate to true $output .= ' selected="selected"'; @@ -2155,6 +2160,7 @@ function html_print_extended_select_for_time( } ob_start(); + hd($fields, true); // Use the no_meta parameter because this image is only in the base console. echo '
'; html_print_select( From e1a10ef5c3dc7b1706b8ae339041e80a962d1235 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 23 May 2023 13:41:32 +0200 Subject: [PATCH 214/533] #11149 Delete hd --- pandora_console/include/functions_html.php | 1 - 1 file changed, 1 deletion(-) diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 55f444771a..f3a23ce1e8 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -2160,7 +2160,6 @@ function html_print_extended_select_for_time( } ob_start(); - hd($fields, true); // Use the no_meta parameter because this image is only in the base console. echo '
'; html_print_select( From 5a9fcbde9557b522cbef29b9cf5fd046bcc713c1 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 23 May 2023 15:12:06 +0200 Subject: [PATCH 215/533] #11302 Fixed bugs in modal UI about --- pandora_console/include/functions_menu.php | 44 +++++++++---------- pandora_console/include/styles/pandora.css | 7 +-- .../include/styles/pandora_black.css | 5 --- 3 files changed, 23 insertions(+), 33 deletions(-) diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 1b4aded0bd..6d60af2bf1 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -957,7 +957,7 @@ if (is_ajax()) {

'.$product_name.'

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

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

-

'.__('Build').' '.$build_version.'

+

Build'.$build_version.'

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

'; if (((bool) check_acl($config['id_user'], 0, 'PM') === true) && (is_metaconsole() === false)) { @@ -970,7 +970,7 @@ if (is_ajax()) { 'location.href="'.ui_get_full_url('/index.php?sec=gsetup&sec2=godmode/update_manager/update_manager&tab=history', false, false, false).'"', [ 'icon' => 'cog', - 'mode' => 'mini secondary', + 'mode' => 'secondary', ], true ); @@ -982,7 +982,7 @@ if (is_ajax()) { 'location.href="'.ui_get_full_url('/index.php?sec=gextensions&sec2=tools/diagnostics', false, false, false).'"', [ 'icon' => 'info', - 'mode' => 'mini secondary', + 'mode' => 'secondary', ], true ); @@ -1016,7 +1016,7 @@ if (is_ajax()) {

'.$db_health->data->unknownAgents->name.'

-

'.$db_health->data->unknownAgents->value.'

+

'.$db_health->data->unknownAgents->value.'

@@ -1024,7 +1024,7 @@ if (is_ajax()) {

'.$db_health->data->notInitAgents->name.'

-

'.$db_health->data->notInitAgents->value.'

+

'.$db_health->data->notInitAgents->value.'

@@ -1032,7 +1032,7 @@ if (is_ajax()) {

'.$db_health->data->pandoraDbLastRun->name.'

-

'.$db_health->data->pandoraDbLastRun->value.'

+

'.$db_health->data->pandoraDbLastRun->value.'

@@ -1046,7 +1046,7 @@ if (is_ajax()) {

'.$db_info->data->dbSchemeFirstVersion->name.'

-

'.$db_info->data->dbSchemeFirstVersion->value.'

+

'.$db_info->data->dbSchemeFirstVersion->value.'

@@ -1054,7 +1054,7 @@ if (is_ajax()) {

'.$db_info->data->dbSchemeVersion->name.'

-

'.$db_info->data->dbSchemeVersion->value.'

+

'.$db_info->data->dbSchemeVersion->value.'

@@ -1062,7 +1062,7 @@ if (is_ajax()) {

'.$db_info->data->dbSchemeBuild->name.'

-

'.$db_info->data->dbSchemeBuild->value.'

+

'.$db_info->data->dbSchemeBuild->value.'

@@ -1115,11 +1115,11 @@ if (is_ajax()) { - +

'.$sys_info->data->cpuInfo->name.'

-

'.$sys_info->data->cpuInfo->value.'

+

'.$sys_info->data->cpuInfo->value.'

@@ -1127,7 +1127,7 @@ if (is_ajax()) {

'.$sys_info->data->ramInfo->name.'

-

'.$sys_info->data->ramInfo->value.'

+

'.$sys_info->data->ramInfo->value.'

@@ -1135,7 +1135,7 @@ if (is_ajax()) {

'.$sys_info->data->osInfo->name.'

-

'.$sys_info->data->osInfo->value.'

+

'.$sys_info->data->osInfo->value.'

@@ -1143,7 +1143,7 @@ if (is_ajax()) {

'.$sys_info->data->hostnameInfo->name.'

-

'.$sys_info->data->hostnameInfo->value.'

+

'.$sys_info->data->hostnameInfo->value.'

@@ -1151,7 +1151,7 @@ if (is_ajax()) {

'.$sys_info->data->ipInfo->name.'

-

'.$sys_info->data->ipInfo->value.'

+

'.$sys_info->data->ipInfo->value.'

@@ -1159,7 +1159,7 @@ if (is_ajax()) {

'.$system_date->data->date->name.'

-

'.$system_date->data->date->value.'

+

'.$system_date->data->date->value.'

@@ -1174,11 +1174,11 @@ if (is_ajax()) { - +

'.$php_sys->data->phpVersion->name.'

-

'.$php_sys->data->phpVersion->value.'

+

'.$php_sys->data->phpVersion->value.'

@@ -1186,7 +1186,7 @@ if (is_ajax()) {

'.$php_sys->data->maxExecutionTime->name.'

-

'.$php_sys->data->maxExecutionTime->value.'

+

'.$php_sys->data->maxExecutionTime->value.'

@@ -1194,7 +1194,7 @@ if (is_ajax()) {

'.$php_sys->data->maxInputTime->name.'

-

'.$php_sys->data->maxInputTime->value.'

+

'.$php_sys->data->maxInputTime->value.'

@@ -1202,7 +1202,7 @@ if (is_ajax()) {

'.$php_sys->data->memoryLimit->name.'

-

'.$php_sys->data->memoryLimit->value.'

+

'.$php_sys->data->memoryLimit->value.'

@@ -1210,7 +1210,7 @@ if (is_ajax()) {

'.$php_sys->data->sessionLifetime->name.'

-

'.$php_sys->data->sessionLifetime->value.'

+

'.$php_sys->data->sessionLifetime->value.'

diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index ef19fbdb13..43cc9106e7 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -10249,7 +10249,7 @@ button.submitButton { justify-content: space-between; flex-direction: row; min-width: 110px; - height: 42px; + height: 45px; font-size: 14px; /*font-family: "lato";*/ align-items: center; @@ -11557,11 +11557,6 @@ p.trademark-copyright { overflow: hidden; } -#tab-database { - height: 80%; - overflow: auto; -} - .item_status_tree_view { position: absolute; top: 7px; diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index e6e2710d7c..1b95063c7c 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1389,11 +1389,6 @@ p.trademark-copyright { overflow: hidden; } -#tab-database { - height: 80%; - overflow: auto; -} - button.buttonButton, button.submitButton { box-shadow: 0px 3px 6px #111; From e783cd6f297bceae9df0d57ffb969cb737241e4b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 23 May 2023 15:20:30 +0200 Subject: [PATCH 216/533] #11287 Add title to image --- pandora_console/include/ajax/module.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index b20bad2a18..9e3e2580af 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1267,7 +1267,10 @@ if (check_login()) { 'content' => html_print_image( 'images/module-graph.svg', true, - [ 'class' => 'main_menu_icon' ] + [ + 'title' => $module['nombre'], + 'class' => 'main_menu_icon forced_title', + ] ), ], true From 4bf98a82c2396abd1b78aa6c8d2c74919ce9fc66 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 23 May 2023 16:27:02 +0200 Subject: [PATCH 217/533] #11320 fixed pdf histogram --- pandora_console/include/functions_reporting.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 5adae9abf7..e488cdf92e 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -15845,6 +15845,11 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) ]; $width_graph = 100; + if ($metaconsole_on && $server_name != '') { + // Restore db connection. + metaconsole_restore_db(); + } + if (empty($array_result) === false) { $return['chart'] = flot_slicesbar_graph( $array_result, @@ -15871,11 +15876,6 @@ function reporting_module_histogram_graph($report, $content, $pdf=0) $return['chart'] = graph_nodata_image(['height' => $height_graph]); } - if ($metaconsole_on && $server_name != '') { - // Restore db connection. - metaconsole_restore_db(); - } - return reporting_check_structure_content($return); } From e77657a1219a443b3679086729144c5df40a9d3a Mon Sep 17 00:00:00 2001 From: Calvo Date: Tue, 23 May 2023 17:56:41 +0200 Subject: [PATCH 218/533] Fix nmap os detection with OS details --- pandora_server/lib/PandoraFMS/DiscoveryServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index f17d2c5363..a556334ee0 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -433,7 +433,7 @@ sub PandoraFMS::Recon::Base::guess_os($$;$) { return OS_OTHER if ($? != 0); my $str_os; if ($return =~ /Aggressive OS guesses:\s*(.*)|OS details:\s(.*)/) { - if($1 ne "") { + if(defined($1) && $1 ne "") { $str_os = $1; } else { $str_os = $2; From 6b17837c4d96802be1a1fd5f58116e3a2fdb7ae8 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 23 May 2023 18:02:03 +0200 Subject: [PATCH 219/533] #11318 added funcion for validate sql --- .../godmode/reporting/reporting_builder.php | 9 ++++--- pandora_console/include/functions_db.php | 25 +++++++++++++++++++ 2 files changed, 31 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index cd049f1d83..4e6e39fe19 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -2197,9 +2197,12 @@ switch ($action) { 'id_custom' ); if ($values['treport_custom_sql_id'] == 0) { - $values['external_source'] = get_parameter( - 'sql' - ); + $sql = get_parameter('sql', ''); + if ($sql !== '') { + $good_format = db_validate_sql($sql); + } + + $values['external_source'] = get_parameter('sql'); } $values['historical_db'] = get_parameter( diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 1bd96221e9..aa21543ee6 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -2555,3 +2555,28 @@ function db_get_column_type(string $table, string $column='') return $result; } + + +/** + * Validate sql query. + * + * @param string $sql Query for validate. + * + * @return boolean True if query is valid. + */ +function db_validate_sql(string $sql) +{ + try { + error_reporting(0); + db_process_sql_begin(); + $result = db_process_sql(io_safe_output($sql)); + } catch (Exception $e) { + // Catch all posible errors. + $result = false; + } finally { + db_process_sql_rollback(); + error_reporting(E_ALL); + } + + return ($result !== false) ? true : false; +} From 25d1b2a5cd2af3b6b0d6328298137c596f4caf59 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 23 May 2023 18:05:14 +0200 Subject: [PATCH 220/533] #11318 added funcion for validate sql when create item --- .../godmode/reporting/reporting_builder.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index 4e6e39fe19..8b286b70ce 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -2202,7 +2202,7 @@ switch ($action) { $good_format = db_validate_sql($sql); } - $values['external_source'] = get_parameter('sql'); + $values['external_source'] = $sql; } $values['historical_db'] = get_parameter( @@ -2939,9 +2939,12 @@ switch ($action) { 'id_custom' ); if ($values['treport_custom_sql_id'] == 0) { - $values['external_source'] = get_parameter( - 'sql' - ); + $sql = get_parameter('sql', ''); + if ($sql !== '') { + $good_format = db_validate_sql($sql); + } + + $values['external_source'] = $sql; } $values['historical_db'] = get_parameter( From 6904cec4a6c2d366adb217f22f6d81523623ce5a Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 24 May 2023 01:00:21 +0200 Subject: [PATCH 221/533] 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 765884f534..2203291695 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-230523 +Version: 7.0NG.771-230524 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 3e06c80fdd..f9160c0f5c 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-230523" +pandora_version="7.0NG.771-230524" 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 a5a6571877..3fd3989614 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 => '230523'; +use constant AGENT_BUILD => '230524'; # 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 ba20e44bb4..d52585d984 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 230523 +%define release 230524 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 afff86d16b..486dc69d55 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 230523 +%define release 230524 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 9ac6ad0a78..0c889f78bc 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="230523" +PI_BUILD="230524" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 71e424d2d8..381e0cd72d 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230523} +{230524} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index a7edea17cb..3db581ee83 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 230523") +#define PANDORA_VERSION ("7.0NG.771 Build 230524") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 6fcb93bf91..e1abd5469d 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 230523))" + VALUE "ProductVersion", "(7.0NG.771(Build 230524))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 978eb9ab42..9d471d88c9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230523 +Version: 7.0NG.771-230524 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 2f07a836b3..b1c8e42812 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-230523" +pandora_version="7.0NG.771-230524" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index ace0bed42b..7a795464ff 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 = 'PC230523'; +$build_version = 'PC230524'; $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 1195fabb90..6d195db5a8 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 f59d63ed42..b5bd488eeb 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 230523 +%define release 230524 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index ec66b3fe3f..f916f1d67b 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 230523 +%define release 230524 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 5957944ffa..17cc585f51 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230523" +PI_BUILD="230524" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 071c2b116b..91c5570925 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 230523"; +my $version = "7.0NG.771 Build 230524"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 95e9482024..80a13f578d 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 230523"; +my $version = "7.0NG.771 Build 230524"; # save program name for logging my $progname = basename($0); From c0a21a44ebd3d332a1b46fd590ce6ada51eea23a Mon Sep 17 00:00:00 2001 From: Junichi Satoh Date: Wed, 24 May 2023 11:26:49 +0900 Subject: [PATCH 222/533] Fixed a wrong Japanese translation. --- pandora_console/include/languages/ja.mo | Bin 875781 -> 875775 bytes pandora_console/include/languages/ja.po | 5733 +++++++++++------------ 2 files changed, 2606 insertions(+), 3127 deletions(-) diff --git a/pandora_console/include/languages/ja.mo b/pandora_console/include/languages/ja.mo index 1f1f600bd83f93e5eb9699fad0107b7084acdeb5..644e4e430c5349c30975a25d13a03fb270e14f25 100644 GIT binary patch delta 56660 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 GkNyv|<&pXT delta 56664 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 H%dzSIpOK+P diff --git a/pandora_console/include/languages/ja.po b/pandora_console/include/languages/ja.po index 9d57632c97..b1211fe6cd 100644 --- a/pandora_console/include/languages/ja.po +++ b/pandora_console/include/languages/ja.po @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: pandora-fms\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2023-05-09 10:50+0200\n" -"PO-Revision-Date: 2023-05-17 15:29+0900\n" +"PO-Revision-Date: 2023-05-24 11:11+0900\n" "Last-Translator: Junichi Satoh \n" "Language-Team: Japanese \n" "Language: ja\n" @@ -29,9 +29,8 @@ msgid "Console ID" msgstr "コンソール ID" #: ../../views/consoles/list.php:69 ../../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 +#: ../../views/calendar/special_days_edit.php:137 ../../views/calendar/edit.php:112 +#: ../../views/cluster/list.php:70 ../../views/cluster/view.php:285 #: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 #: ../../enterprise/views/ipam/sites/edit.php:71 @@ -248,8 +247,7 @@ msgstr "コンソール ID" #: ../../include/functions_reporting_html.php:5491 #: ../../include/functions_reporting_html.php:6371 #: ../../include/ajax/events_extended.php:91 -#: ../../include/ajax/heatmap.ajax.php:246 -#: ../../include/ajax/heatmap.ajax.php:285 +#: ../../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 @@ -327,8 +325,7 @@ msgstr "タイムゾーン" #: ../../views/consoles/list.php:74 #: ../../enterprise/meta/advanced/metasetup.setup.php:237 #: ../../enterprise/meta/include/functions_meta.php:171 -#: ../../godmode/setup/setup_general.php:480 -#: ../../include/functions_config.php:314 +#: ../../godmode/setup/setup_general.php:480 ../../include/functions_config.php:314 msgid "Public URL" msgstr "公開 URL" @@ -456,8 +453,7 @@ msgstr "オプション" #: ../../godmode/modules/manage_network_components.php:906 #: ../../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:971 ../../godmode/groups/group_list.php:972 #: ../../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 @@ -473,8 +469,8 @@ msgstr "オプション" #: ../../godmode/agentes/module_manager_editor_common.php:1538 #: ../../godmode/agentes/module_manager.php:1000 #: ../../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 +#: ../../godmode/netflow/nf_item_list.php:273 ../../godmode/netflow/nf_edit.php:203 +#: ../../godmode/netflow/nf_edit.php:223 #: ../../godmode/snmpconsole/snmp_alert.php:1950 #: ../../godmode/snmpconsole/snmp_filters.php:326 #: ../../godmode/snmpconsole/snmp_filters.php:337 @@ -508,8 +504,7 @@ msgstr "オプション" #: ../../godmode/servers/servers.build_table.php:273 #: ../../godmode/servers/plugin.php:1067 ../../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/functions_cron.php:958 ../../include/class/ConfigPEN.class.php:264 #: ../../include/class/SatelliteAgent.class.php:1147 #: ../../include/class/NetworkMap.class.php:2943 #: ../../include/class/ManageNetScanScripts.class.php:405 @@ -542,14 +537,13 @@ msgstr "削除" #: ../../views/consoles/list.php:121 msgid "" -"Are you sure?

WARNING: you also need to delete config." -"php options in your console or delete the whole console." +"Are you sure?

WARNING: you also need to delete config.php " +"options in your console or delete the whole console." msgstr "" -"よろしいですか?

警告: コンソールの config.php オプション" -"を削除するか、コンソール全体を削除する必要もあります。" +"よろしいですか?

警告: コンソールの config.php オプションを" +"削除するか、コンソール全体を削除する必要もあります。" -#: ../../views/consoles/list.php:127 -#: ../../views/calendar/special_days_edit.php:209 +#: ../../views/consoles/list.php:127 ../../views/calendar/special_days_edit.php:209 #: ../../views/calendar/special_days.php:430 #: ../../views/calendar/special_days.php:530 ../../views/dashboard/header.php:70 #: ../../views/dashboard/header.php:106 ../../views/dashboard/list.php:228 @@ -629,8 +623,8 @@ msgstr "キャンセル" #: ../../enterprise/include/class/LogSource.class.php:767 #: ../../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/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 @@ -733,10 +727,8 @@ msgstr "失敗" #: ../../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 -#: ../../include/functions_reports.php:855 -#: ../../include/functions_reports.php:859 -#: ../../include/functions_reports.php:865 +#: ../../include/functions_treeview.php:392 ../../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 @@ -858,11 +850,11 @@ msgstr "任意のノード" #: ../../views/calendar/edit.php:69 ../../views/calendar/special_days.php:70 #, php-format msgid "" -"This node is configured with centralized mode. All alert calendar information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert calendar information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は" -"読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートカレンダー情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../views/calendar/list.php:95 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 @@ -997,8 +989,7 @@ msgstr "ID" #: ../../godmode/agentes/module_manager_editor_common.php:252 #: ../../godmode/agentes/module_manager_editor_common.php:1430 #: ../../godmode/agentes/module_manager.php:605 -#: ../../godmode/netflow/nf_edit.php:166 -#: ../../godmode/netflow/nf_edit_form.php:199 +#: ../../godmode/netflow/nf_edit.php:166 ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:220 #: ../../godmode/alerts/alert_actions.php:351 #: ../../godmode/alerts/alert_commands.php:749 @@ -1044,9 +1035,8 @@ msgstr "ID" #: ../../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 -#: ../../operation/search_helps.php:31 +#: ../../include/functions_events.php:4339 ../../include/functions_events.php:4472 +#: ../../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.view.php:137 @@ -1056,8 +1046,7 @@ msgstr "ID" msgid "Name" msgstr "名前" -#: ../../views/calendar/list.php:97 -#: ../../views/calendar/special_days_edit.php:105 +#: ../../views/calendar/list.php:97 ../../views/calendar/special_days_edit.php:105 #: ../../views/calendar/edit.php:100 ../../views/calendar/special_days.php:117 #: ../../views/cluster/list.php:71 ../../views/dashboard/list.php:101 #: ../../views/dashboard/formDashboard.php:92 @@ -1155,8 +1144,7 @@ msgstr "名前" #: ../../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.php:167 ../../godmode/netflow/nf_edit_form.php:211 #: ../../godmode/snmpconsole/snmp_alert.php:837 #: ../../godmode/gis_maps/configure_gis_map.php:509 #: ../../godmode/gis_maps/configure_gis_map.php:646 @@ -1217,12 +1205,10 @@ msgstr "名前" #: ../../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/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 #: ../../include/functions_visual_map_editor.php:70 #: ../../include/functions_visual_map_editor.php:594 #: ../../include/functions_visual_map_editor.php:1395 @@ -1231,11 +1217,9 @@ msgstr "名前" #: ../../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/ajax/custom_fields.php:630 -#: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:4937 ../../include/functions_gis.php:228 -#: ../../include/functions_profile.php:204 +#: ../../include/ajax/heatmap.ajax.php:358 ../../include/ajax/custom_fields.php:630 +#: ../../include/ajax/custom_fields.php:679 ../../include/functions_graph.php:4937 +#: ../../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 @@ -1320,10 +1304,9 @@ msgstr "グループ" msgid "Free search" msgstr "検索語" -#: ../../views/calendar/list.php:149 -#: ../../views/calendar/special_days_edit.php:161 -#: ../../views/calendar/special_days_edit.php:208 -#: ../../views/calendar/edit.php:129 ../../views/calendar/special_days.php:346 +#: ../../views/calendar/list.php:149 ../../views/calendar/special_days_edit.php:161 +#: ../../views/calendar/special_days_edit.php:208 ../../views/calendar/edit.php:129 +#: ../../views/calendar/special_days.php:346 #: ../../views/calendar/special_days.php:429 #: ../../views/calendar/special_days.php:504 #: ../../views/calendar/special_days.php:529 @@ -1474,8 +1457,8 @@ msgstr "特別日設定" #: ../../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:6014 ../../include/functions.php:3109 +#: ../../include/functions_inventory.php:1065 #: ../../include/class/AuditLog.class.php:112 #: ../../include/functions_reporting.php:4728 #: ../../include/functions_reporting.php:4769 @@ -1609,8 +1592,7 @@ msgstr "休日" msgid "Same day of the week" msgstr "同一の曜日" -#: ../../views/calendar/special_days_edit.php:161 -#: ../../views/calendar/edit.php:129 +#: ../../views/calendar/special_days_edit.php:161 ../../views/calendar/edit.php:129 #: ../../enterprise/views/ncm/snippets/edit.php:123 #: ../../enterprise/views/ncm/templates/edit.php:328 #: ../../enterprise/views/ncm/firmwares/edit.php:183 @@ -1746,12 +1728,10 @@ msgstr "同一の曜日" #: ../../godmode/alerts/configure_alert_action.php:424 #: ../../godmode/setup/news.php:329 ../../godmode/setup/setup_ehorus.php:216 #: ../../godmode/setup/setup_sflow.php:95 -#: ../../godmode/setup/setup_websocket_engine.php:93 -#: ../../godmode/setup/os.php:73 ../../godmode/setup/os.php:142 -#: ../../godmode/setup/setup_auth.php:515 +#: ../../godmode/setup/setup_websocket_engine.php:93 ../../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/snmp_wizard.php:100 ../../godmode/setup/setup_netflow.php:95 #: ../../godmode/setup/setup_visuals.php:2130 #: ../../godmode/setup/setup_general.php:841 #: ../../godmode/setup/performance.php:880 @@ -1765,8 +1745,7 @@ msgstr "同一の曜日" #: ../../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/category/edit_category.php:196 +#: ../../godmode/tag/edit_tag.php:247 ../../godmode/category/edit_category.php:196 #: ../../include/functions_visual_map_editor.php:878 #: ../../include/ajax/alert_list.ajax.php:564 #: ../../include/class/ConfigPEN.class.php:703 @@ -1775,8 +1754,7 @@ msgstr "同一の曜日" #: ../../include/class/CredentialStore.class.php:1651 #: ../../include/class/ModuleTemplates.class.php:992 #: ../../include/class/ExternalTools.class.php:420 -#: ../../include/functions_events.php:3512 -#: ../../include/functions_events.php:3594 +#: ../../include/functions_events.php:3512 ../../include/functions_events.php:3594 #: ../../operation/users/user_edit.php:951 #: ../../operation/agentes/datos_agente.php:218 #: ../../operation/incidents/configure_integriaims_incident.php:415 @@ -1849,8 +1827,7 @@ msgstr "表示範囲: " #: ../../godmode/massive/massive_edit_agents.php:1034 #: ../../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/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 @@ -1860,10 +1837,8 @@ msgstr "表示範囲: " #: ../../include/functions_ui.php:1404 #: ../../include/class/AgentsAlerts.class.php:947 #: ../../include/class/SnmpConsole.class.php:299 -#: ../../operation/users/user_edit.php:429 -#: ../../operation/users/user_edit.php:432 -#: ../../operation/users/user_edit.php:443 -#: ../../operation/users/user_edit.php:468 +#: ../../operation/users/user_edit.php:429 ../../operation/users/user_edit.php:432 +#: ../../operation/users/user_edit.php:443 ../../operation/users/user_edit.php:468 #: ../../operation/gis_maps/gis_map.php:119 msgid "Default" msgstr "デフォルト" @@ -2065,8 +2040,7 @@ 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:951 ../../godmode/groups/group_list.php:952 #: ../../godmode/users/profile_list.php:444 #: ../../godmode/agentes/agent_template.php:306 #: ../../godmode/agentes/modificar_agente.php:810 @@ -2081,9 +2055,8 @@ msgstr "テンプレート表示" #: ../../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/category/category.php:182 -#: ../../godmode/category/category.php:211 ../../include/functions_cron.php:918 -#: ../../include/functions_cron.php:944 +#: ../../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/CredentialStore.class.php:1263 #: ../../include/class/TipsWindow.class.php:457 @@ -2186,8 +2159,7 @@ msgstr "編集" #: ../../godmode/agentes/fields_manager.php:210 #: ../../godmode/agentes/module_manager.php:1014 #: ../../godmode/agentes/module_manager.php:1235 -#: ../../godmode/netflow/nf_item_list.php:262 -#: ../../godmode/netflow/nf_edit.php:202 +#: ../../godmode/netflow/nf_item_list.php:262 ../../godmode/netflow/nf_edit.php:202 #: ../../godmode/snmpconsole/snmp_alert.php:1945 #: ../../godmode/snmpconsole/snmp_alert.php:2325 #: ../../godmode/snmpconsole/snmp_filters.php:326 @@ -2217,8 +2189,7 @@ msgstr "編集" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1032 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1043 #: ../../godmode/servers/plugin.php:1062 ../../godmode/tag/tag.php:420 -#: ../../godmode/category/category.php:186 -#: ../../godmode/category/category.php:222 +#: ../../godmode/category/category.php:186 ../../godmode/category/category.php:222 #: ../../include/functions_profile.php:319 #: ../../include/class/ConfigPEN.class.php:672 #: ../../include/class/SatelliteAgent.class.php:1145 @@ -2239,8 +2210,7 @@ msgstr "編集" #: ../../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:3655 ../../operation/users/user_edit.php:1345 #: ../../operation/agentes/pandora_networkmap.editor.php:743 #: ../../operation/messages/message_list.php:300 #: ../../operation/snmpconsole/snmp_browser.php:637 @@ -2273,8 +2243,7 @@ msgstr "カレンダー読み込み" msgid "Cluster view" msgstr "クラスタ表示" -#: ../../views/cluster/list.php:40 -#: ../../enterprise/meta/general/main_header.php:91 +#: ../../views/cluster/list.php:40 ../../enterprise/meta/general/main_header.php:91 #: ../../enterprise/meta/general/logon_ok.php:82 #: ../../enterprise/meta/general/main_menu.php:191 #: ../../enterprise/meta/general/main_menu.php:192 @@ -2372,10 +2341,9 @@ msgstr "クラスタ" #: ../../godmode/servers/servers.build_table.php:79 #: ../../godmode/servers/modificar_server.php:105 #: ../../godmode/servers/plugin.php:993 ../../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 +#: ../../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 @@ -2399,8 +2367,7 @@ msgstr "クラスタ" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:364 #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 -#: ../../include/functions_events.php:2525 -#: ../../include/functions_events.php:4958 +#: ../../include/functions_events.php:2525 ../../include/functions_events.php:4958 #: ../../operation/agentes/estado_agente.php:1043 #: ../../operation/agentes/ver_agente.php:1171 #: ../../operation/netflow/nf_live_view.php:495 @@ -2411,15 +2378,13 @@ msgstr "クラスタ" msgid "Type" msgstr "種類" -#: ../../views/cluster/list.php:73 -#: ../../include/functions_reporting_html.php:5925 +#: ../../views/cluster/list.php:73 ../../include/functions_reporting_html.php:5925 #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:325 #: ../../operation/agentes/pandora_networkmap.php:717 msgid "Nodes" msgstr "ノード" -#: ../../views/cluster/list.php:74 -#: ../../enterprise/views/ncm/devices/list.php:120 +#: ../../views/cluster/list.php:74 ../../enterprise/views/ncm/devices/list.php:120 #: ../../enterprise/meta/advanced/servers.build_table.php:62 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:584 #: ../../enterprise/meta/advanced/policymanager.queue.php:225 @@ -2529,8 +2494,8 @@ msgstr "ノード" #: ../../include/lib/Dashboard/Widgets/ModulesByStatus.php:561 #: ../../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:2543 ../../include/functions_events.php:5004 +#: ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:324 #: ../../operation/agentes/estado_agente.php:1049 #: ../../operation/agentes/interface_view.functions.php:516 @@ -2545,8 +2510,7 @@ msgstr "ノード" msgid "Status" msgstr "状態" -#: ../../views/cluster/list.php:99 -#: ../../enterprise/views/ncm/snippets/list.php:95 +#: ../../views/cluster/list.php:99 ../../enterprise/views/ncm/snippets/list.php:95 #: ../../enterprise/views/ncm/templates/list.php:101 #: ../../enterprise/views/ncm/devices/list.php:148 #: ../../enterprise/views/ncm/firmwares/list.php:100 @@ -2630,12 +2594,10 @@ msgstr "このクラスタを編集" #: ../../mobile/operation/alerts.php:68 #: ../../include/functions_visual_map_editor.php:824 #: ../../include/functions_reporting_html.php:3676 -#: ../../include/functions_agents.php:1472 -#: ../../include/functions_treeview.php:66 +#: ../../include/functions_agents.php:1472 ../../include/functions_treeview.php:66 #: ../../include/functions_treeview.php:602 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6992 -#: ../../operation/search_agents.php:93 +#: ../../include/functions_reporting.php:6992 ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:92 #: ../../operation/agentes/alerts_status.functions.php:101 msgid "Disabled" @@ -2749,56 +2711,35 @@ msgstr "IP アドレス" #: ../../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.php:1180 ../../include/functions.php:1186 -#: ../../include/functions.php:1190 ../../include/ajax/module.php:1156 -#: ../../include/functions_treeview.php:153 +#: ../../include/functions_reporting_html.php:5617 ../../include/functions.php:1180 +#: ../../include/functions.php:1186 ../../include/functions.php:1190 +#: ../../include/ajax/module.php:1156 ../../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_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 +#: ../../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_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 #: ../../operation/agentes/interface_view.functions.php:742 #: ../../operation/agentes/interface_view.functions.php:743 @@ -2852,8 +2793,7 @@ 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:380 ../../extensions/agents_modules.php:387 #: ../../extensions/agents_modules.php:390 #: ../../operation/visual_console/view.php:231 #: ../../operation/visual_console/legacy_view.php:201 @@ -2900,8 +2840,7 @@ msgstr "ダッシュボードの更新" #: ../../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 +#: ../../include/functions_config.php:1333 ../../include/functions_config.php:3537 #: ../../include/class/SatelliteAgent.class.php:1269 #: ../../operation/gis_maps/render_view.php:167 msgid "Ok" @@ -3009,13 +2948,12 @@ msgstr "ダッシュボード" #: ../../godmode/modules/manage_nc_groups.php:176 #: ../../godmode/modules/manage_network_components.php:562 #: ../../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/user_list.php:411 ../../godmode/users/configure_user.php:101 #: ../../godmode/users/configure_user.php:121 #: ../../godmode/agentes/planned_downtime.list.php:290 #: ../../godmode/netflow/nf_item_list.php:120 -#: ../../godmode/netflow/nf_item_list.php:148 -#: ../../godmode/netflow/nf_edit.php:111 ../../godmode/netflow/nf_edit.php:144 +#: ../../godmode/netflow/nf_item_list.php:148 ../../godmode/netflow/nf_edit.php:111 +#: ../../godmode/netflow/nf_edit.php:144 #: ../../godmode/snmpconsole/snmp_alert.php:686 #: ../../godmode/snmpconsole/snmp_filters.php:180 #: ../../godmode/massive/massive_delete_action_alerts.php:170 @@ -3024,10 +2962,9 @@ msgstr "ダッシュボード" #: ../../godmode/alerts/alert_actions.php:208 #: ../../godmode/alerts/alert_commands.php:698 #: ../../godmode/alerts/alert_templates.php:257 -#: ../../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 -#: ../../godmode/reporting/map_builder.php:209 +#: ../../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 ../../godmode/reporting/map_builder.php:209 #: ../../godmode/reporting/graphs.php:150 ../../godmode/reporting/graphs.php:162 #: ../../godmode/reporting/graphs.php:213 #: ../../godmode/reporting/reporting_builder.php:631 @@ -3071,9 +3008,8 @@ msgstr "削除しました。" #: ../../godmode/alerts/alert_actions.php:209 #: ../../godmode/alerts/alert_commands.php:699 #: ../../godmode/alerts/alert_templates.php:258 -#: ../../godmode/alerts/alert_list.php:240 -#: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:138 -#: ../../godmode/setup/gis.php:59 +#: ../../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/messages/message_list.php:110 @@ -3235,8 +3171,8 @@ msgid "" "This mode will show the dashboard with all the widgets in the screen. Click to " "change to single screen mode." msgstr "" -"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 " -"クリックしてシングルスクリーンモードに変更します。" +"このモードでは、画面にすべてのウィジェットを含むダッシュボードが表示されます。 ク" +"リックしてシングルスクリーンモードに変更します。" #: ../../views/dashboard/slides.php:259 msgid "Single screen" @@ -3261,8 +3197,8 @@ msgstr "" #: ../../enterprise/views/ncm/models/list.php:32 #: ../../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 +#: ../../enterprise/views/ncm/vendors/edit.php:35 ../../include/functions.php:1294 +#: ../../include/functions_events.php:3178 msgid "Network configuration manager" msgstr "ネットワーク設定管理" @@ -3550,11 +3486,10 @@ msgstr "プレビュー" #: ../../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/functions_ui.php:606 ../../include/functions_ui.php:607 -#: ../../include/functions_visual_map.php:2457 +#: ../../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/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 @@ -3763,8 +3698,8 @@ msgid "" "This action will connect to the device to retrieve firmware version. Are you " "sure?" msgstr "" -"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろし" -"いですか?" +"この操作はファームウエアバージョンを取得するためにデバイスへ接続します。よろしい" +"ですか?" #: ../../enterprise/views/ncm/agent/details.php:636 msgid "Get running config?" @@ -3772,10 +3707,9 @@ msgstr "running config を取得しますか?" #: ../../enterprise/views/ncm/agent/details.php:637 msgid "" -"This action will connect to the device to retrieve latest configuration. Are " -"you sure?" -msgstr "" -"この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" +"This action will connect to the device to retrieve latest configuration. Are you " +"sure?" +msgstr "この操作は最新の設定を取得するためにデバイスへ接続します。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:648 msgid "Backup latest config?" @@ -3783,8 +3717,8 @@ msgstr "最新の設定をバックアップしますた?" #: ../../enterprise/views/ncm/agent/details.php:649 msgid "" -"This action will overwrite current backup to use latest retrieved " -"configuration. Are you sure?" +"This action will overwrite current backup to use latest retrieved configuration. " +"Are you sure?" msgstr "" "この操作は取得した最新の設定で既存のバックアップを上書きします。よろしいですか?" @@ -3794,10 +3728,9 @@ msgstr "対象の設定をバックアップしますか?" #: ../../enterprise/views/ncm/agent/details.php:658 msgid "" -"This action will overwrite current backup to use selected configuration. Are " -"you sure?" -msgstr "" -"この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" +"This action will overwrite current backup to use selected configuration. Are you " +"sure?" +msgstr "この操作は選択した設定で既存のバックアップを上書きします。よろしいですか?" #: ../../enterprise/views/ncm/agent/details.php:669 msgid "Restore device configuration?" @@ -3805,8 +3738,7 @@ msgstr "デバイス設定をリストアしますか?" #: ../../enterprise/views/ncm/agent/details.php:670 msgid "" -"This action will overwrite device configuration with latest backup. Are you " -"sure?" +"This action will overwrite device configuration with latest backup. Are you sure?" msgstr "" "この操作は最新のバックアップでデバイスの設定を上書きします。よろしいですか?" @@ -3840,8 +3772,7 @@ msgstr "実行" #: ../../godmode/modules/manage_network_components.php:302 #: ../../godmode/menu.php:172 ../../godmode/menu.php:275 #: ../../godmode/reporting/reporting_builder.item_editor.php:2027 -#: ../../include/functions_menu.php:585 -#: ../../include/class/ConfigPEN.class.php:334 +#: ../../include/functions_menu.php:585 ../../include/class/ConfigPEN.class.php:334 #: ../../include/class/ModuleTemplates.class.php:196 #: ../../include/class/ModuleTemplates.class.php:214 msgid "Templates" @@ -3882,8 +3813,7 @@ msgstr "デバイス" #: ../../enterprise/views/ncm/templates/edit.php:102 msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"template." +"Comma separated, a vendors list compatible with scripts defined within template." msgstr "" "カンマ区切りの、テンプレート内で定義されたスクリプトと互換性のあるベンダ一覧。" @@ -3911,11 +3841,10 @@ msgstr "スクリプト: 設定取得" #: ../../enterprise/views/ncm/templates/edit.php:203 msgid "" -"This script will be used to apply configuration, previously backed up, to " -"devices" +"This script will be used to apply configuration, previously backed up, to devices" msgstr "" -"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用され" -"ます" +"このスクリプトは、以前のバックアップからデバイスの設定を適用するために使用されま" +"す" #: ../../enterprise/views/ncm/templates/edit.php:208 msgid "Script: set configuration" @@ -3924,8 +3853,8 @@ msgstr "スクリプト: 設定投入" #: ../../enterprise/views/ncm/templates/edit.php:231 msgid "This script will be used to retrieve firmware version from devices" msgstr "" -"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用され" -"ます" +"このスクリプトは、デバイスからファームウェアバージョンを取得するために使用されま" +"す" #: ../../enterprise/views/ncm/templates/edit.php:236 msgid "Script: get firmware" @@ -3934,8 +3863,8 @@ msgstr "スクリプト: ファームウエア取得" #: ../../enterprise/views/ncm/templates/edit.php:258 msgid "This script will be used to upgrade firmware version of the devices" msgstr "" -"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために" -"使用されます" +"このスクリプトは、デバイスのファームウェアバージョンをアップグレードするために使" +"用されます" #: ../../enterprise/views/ncm/templates/edit.php:263 msgid "Script: set firmware" @@ -3952,19 +3881,19 @@ msgstr "スクリプト: カスタムタスク" #: ../../enterprise/views/ncm/devices/list.php:69 msgid "" "WARNING: This is a new feature and is still at an early stage. It is available " -"with limited features, use it with caution and send us your feedback to " -"improve these current capabilities." +"with limited features, use it with caution and send us your feedback to improve " +"these current capabilities." msgstr "" -"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意し" -"て使用し、現在の機能の改善のためのフィードバックをお願いします。" +"警告: これは新機能であり、まだ初期段階です。 限られた機能で利用可能です。注意して" +"使用し、現在の機能の改善のためのフィードバックをお願いします。" #: ../../enterprise/views/ncm/devices/list.php:72 msgid "" "Network configuration manager is used to keep configurations and software " "versions of any network device in your infrastructure under your control." msgstr "" -"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソ" -"フトウェアバージョンを管理するために使用します。" +"ネットワーク設定管理は、インフラストラクチャ内のネットワークデバイスの設定とソフ" +"トウェアバージョンを管理するために使用します。" #: ../../enterprise/views/ncm/devices/list.php:77 msgid "" @@ -4058,18 +3987,15 @@ msgstr "ファームウエア" #: ../../enterprise/views/ncm/firmwares/edit.php:101 msgid "" -"Comma separated, a vendors list compatible with scripts defined within " -"firmware." +"Comma separated, a vendors list compatible with scripts defined within firmware." msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一" -"覧。" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるベンダー一覧。" #: ../../enterprise/views/ncm/firmwares/edit.php:129 msgid "" "Comma separated, a model list compatible with scripts defined within firmware." msgstr "" -"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリス" -"ト。" +"カンマ区切り、ファームウェア内で定義されたスクリプトと互換性のあるモデルリスト。" #: ../../enterprise/views/ncm/firmwares/edit.php:149 #: ../../enterprise/meta/advanced/metasetup.consoles.php:484 @@ -4122,16 +4048,15 @@ msgstr "" #: ../../godmode/massive/massive_edit_agents.php:1061 #: ../../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/setup/setup_sflow.php:84 ../../godmode/setup/setup_netflow.php:84 #: ../../godmode/reporting/reporting_builder.item_editor.php:3831 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 -#: ../../include/functions_reporting_html.php:2575 -#: ../../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/functions_reporting_html.php:2575 ../../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/functions_massive_operations.php:147 #: ../../include/class/SatelliteAgent.class.php:1337 @@ -4437,8 +4362,7 @@ msgstr "親" #: ../../godmode/alerts/configure_alert_template.php:663 #: ../../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/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 @@ -4480,16 +4404,14 @@ msgstr "親" #: ../../include/functions_visual_map_editor.php:1008 #: ../../include/functions_visual_map_editor.php:1070 #: ../../include/functions.php:1129 ../../include/functions_cron.php:680 -#: ../../include/functions_networkmap.php:1524 -#: ../../include/ajax/audit_log.php:156 +#: ../../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/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/functions_integriaims.php:135 -#: ../../include/functions_profile.php:349 -#: ../../include/functions_profile.php:367 +#: ../../include/functions_profile.php:349 ../../include/functions_profile.php:367 #: ../../include/functions_profile.php:382 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 @@ -4540,12 +4462,9 @@ 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 +#: ../../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 @@ -4624,14 +4543,10 @@ msgstr "データベースにサーバがありません。" #: ../../mobile/operation/agent.php:327 #: ../../include/functions_reporting_html.php:2094 #: ../../include/functions_reporting_html.php:5662 -#: ../../include/functions_reports.php:745 -#: ../../include/functions_reports.php:749 -#: ../../include/functions_reports.php:753 -#: ../../include/functions_reports.php:757 -#: ../../include/functions_reports.php:761 -#: ../../include/functions_reports.php:765 -#: ../../include/functions_reports.php:769 -#: ../../include/functions_reports.php:773 +#: ../../include/functions_reports.php:745 ../../include/functions_reports.php:749 +#: ../../include/functions_reports.php:753 ../../include/functions_reports.php:757 +#: ../../include/functions_reports.php:761 ../../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/class/AgentsAlerts.class.php:253 @@ -4727,15 +4642,15 @@ msgstr "実行キュー" #: ../../enterprise/meta/advanced/servers.build_table.php:181 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 " -"temporary, or a bottleneck. If it is associated with a delay in monitoring, " -"with modules going to unknown, try increasing the number of threads." +"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 temporary, " +"or a bottleneck. If it is associated with a delay in monitoring, with modules " +"going to unknown, try increasing the number of threads." msgstr "" -"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているか" -"サーバが正しく設定されていません。これは一時的なものかもしれませんがボトルネッ" -"クになります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増" -"やしてみてください。" +"キューにたくさんの処理が溜まっています。サーバに多くの処理が設定されているかサー" +"バが正しく設定されていません。これは一時的なものかもしれませんがボトルネックにな" +"ります。監視の遅延が原因でモジュールが不明になる場合は、スレッドの数を増やしてみ" +"てください。" #: ../../enterprise/meta/advanced/servers.build_table.php:182 #: ../../enterprise/meta/advanced/cron_main.php:408 @@ -4785,8 +4700,7 @@ msgstr "コマンドセンター" #: ../../enterprise/meta/monitoring/wizard/wizard.php:68 #, php-format msgid "" -"You should centralise management in order to use Wizard section. Please go to " -"%s" +"You should centralise management in order to use Wizard section. Please go to %s" msgstr "" "ウィザードを利用するには中央管理を行う必要があります。%s へ移動してください" @@ -4941,8 +4855,7 @@ msgstr "インタフェースグラフの値" #: ../../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 -#: ../../operation/users/user_edit.php:420 +#: ../../include/functions_config.php:1042 ../../operation/users/user_edit.php:420 msgid "Block size for pagination" msgstr "ページ毎の表示件数" @@ -5059,8 +4972,7 @@ msgstr "ヘルプの無効化" #: ../../godmode/alerts/alert_list.list.php:169 #: ../../godmode/alerts/alert_list.list.php:201 #: ../../godmode/alerts/alert_templates.php:313 -#: ../../godmode/alerts/alert_list.php:553 -#: ../../godmode/alerts/alert_list.php:574 +#: ../../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/reporting/reporting_builder.list_items.php:217 @@ -5422,8 +5334,8 @@ msgid "" "You can place your favicon into the folder images/custom_favicon/. This file " "should be in .ico format with a size of 16x16." msgstr "" -"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、" -"16x16 のサイズの .ico 形式である必要があります。" +"favicon を images/custom_favicon/ フォルダに配置できます。 このファイルは、16x16 " +"のサイズの .ico 形式である必要があります。" #: ../../enterprise/meta/advanced/metasetup.visual.php:563 #: ../../godmode/setup/setup_visuals.php:424 @@ -5512,8 +5424,7 @@ 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 +#: ../../include/functions_config.php:1154 ../../include/functions_config.php:1158 msgid "Background opacity % (login)" msgstr "背景の透明度 % (ログイン)" @@ -5644,11 +5555,11 @@ msgstr "説明とともにレポート情報を表示" #: ../../enterprise/meta/advanced/metasetup.visual.php:1029 msgid "" -"Custom report description info. It will be applied to all reports and " -"templates by default." +"Custom report description info. It will be applied to all reports and templates " +"by default." msgstr "" -"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適" -"用されます。" +"カスタムレポートの説明情報。デフォルトですべてのレポートおよびテンプレートに適用" +"されます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1042 #: ../../godmode/setup/setup_visuals.php:1492 @@ -5660,8 +5571,8 @@ msgid "" "Custom report front page. It will be applied to all reports and templates by " "default." msgstr "" -"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用さ" -"れます。" +"カスタムレポートの表紙。すべてのレポートおよびテンプレートにデフォルトで適用され" +"ます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1055 #: ../../enterprise/meta/include/functions_meta.php:1459 @@ -5685,8 +5596,8 @@ msgstr "HTML レポートのグラフ画像の高さ" #: ../../enterprise/meta/advanced/metasetup.visual.php:1066 msgid "" -"This is the height in pixels of the module graph or custom graph in the " -"reports (only: HTML)" +"This is the height in pixels of the module graph or custom graph in the reports " +"(only: HTML)" msgstr "" "これは、レポートのモジュールグラフまたはカスタムグラフのピクセル単位の高さです" "(HTMLのみ)。" @@ -5715,8 +5626,7 @@ msgstr "間隔の表示" msgid "" "A long interval description is for example 10 hours, 20 minutes 33 seconds”, a " "short one is 10h 20m 33s" -msgstr "" -"長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" +msgstr "長い時間間隔の説明は、たとえば、10時間20分33秒、短い説明は 10h20m33sです。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1164 #: ../../enterprise/meta/include/functions_meta.php:1654 @@ -5724,8 +5634,7 @@ msgstr "" #: ../../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 +#: ../../include/functions_config.php:1074 ../../include/functions_config.php:1492 msgid "Custom logo" msgstr "カスタムロゴ" @@ -5736,8 +5645,8 @@ msgid "" "The path of custom logos is 'images/custom_logo' in the console installation. " "You can upload more files (ONLY JPEG AND PNG) with the upload tool." msgstr "" -"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツー" -"ルを使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" +"カスタムロゴのパスは、コンソールの 'images/custom_logo' です。 アップロードツール" +"を使用して、追加のファイル(JPEG と PNG のみ)をアップロードできます。" #: ../../enterprise/meta/advanced/metasetup.visual.php:1184 #: ../../enterprise/meta/advanced/metasetup.visual.php:1195 @@ -5754,12 +5663,9 @@ msgstr "" #: ../../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 -#: ../../include/functions_config.php:1500 -#: ../../include/functions_config.php:1504 +#: ../../include/functions_config.php:1484 ../../include/functions_config.php:1488 +#: ../../include/functions_config.php:1492 ../../include/functions_config.php:1496 +#: ../../include/functions_config.php:1500 ../../include/functions_config.php:1504 msgid "Custom report front" msgstr "カスタムレポートスタイル" @@ -5887,12 +5793,11 @@ msgstr "エージェント: %d はマイグレーションキューにすでに #: ../../godmode/modules/manage_nc_groups.php:177 #: ../../godmode/agentes/planned_downtime.list.php:291 #: ../../godmode/netflow/nf_item_list.php:121 -#: ../../godmode/netflow/nf_item_list.php:149 -#: ../../godmode/netflow/nf_edit.php:112 ../../godmode/netflow/nf_edit.php:145 +#: ../../godmode/netflow/nf_item_list.php:149 ../../godmode/netflow/nf_edit.php:112 +#: ../../godmode/netflow/nf_edit.php:145 #: ../../godmode/reporting/map_builder.php:210 #: ../../godmode/reporting/graphs.php:152 ../../godmode/reporting/graphs.php:163 -#: ../../godmode/reporting/graphs.php:214 -#: ../../godmode/events/event_filter.php:78 +#: ../../godmode/reporting/graphs.php:214 ../../godmode/events/event_filter.php:78 #: ../../godmode/events/event_filter.php:105 #: ../../operation/reporting/graph_viewer.php:59 #: ../../operation/reporting/graph_viewer.php:67 @@ -6001,13 +5906,11 @@ msgid "All collections needed are syncronized with target server." msgstr "必要なすべてのコレクションは対象サーバと同期されています。" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:543 -msgid "" -"All remote inventory definitions needed are syncronized with target server." +msgid "All remote inventory definitions needed are syncronized with target server." msgstr "必要なすべてのインベントリ定義は対象サーバと同期されています。" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:544 -msgid "" -"All alert templates definitions needed are syncronized with target server." +msgid "All alert templates definitions needed are syncronized with target server." msgstr "必要なすべてのアラートテンプレート定義は対象サーバっと同期されています。" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:545 @@ -6034,8 +5937,7 @@ 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_events.php:250 +#: ../../include/functions_inventory.php:176 ../../include/functions_events.php:250 msgid "Agent alias" msgstr "エージェントの別名" @@ -6276,8 +6178,8 @@ msgstr "検索文字列 (*)" #: ../../operation/agentes/status_monitor.php:915 #: ../../operation/agentes/agent_inventory.php:138 #: ../../operation/agentes/agent_inventory.php:140 -#: ../../operation/inventory/inventory.php:640 -#: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 +#: ../../operation/inventory/inventory.php:640 ../../general/ui/agents_list.php:100 +#: ../../general/ui/agents_list.php:113 msgid "Search" msgstr "検索" @@ -6311,8 +6213,7 @@ msgstr "検索" #: ../../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 +#: ../../extensions/module_groups.php:322 ../../extensions/realtime_graphs.php:220 #: ../../godmode/modules/manage_network_components.php:713 #: ../../godmode/groups/group_list.php:820 #: ../../godmode/agentes/planned_downtime.list.php:661 @@ -6464,8 +6365,7 @@ msgstr "関係一覧の表示" #: ../../include/functions_reporting_html.php:5492 #: ../../include/ajax/events.php:2173 ../../include/functions_graph.php:5172 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 -#: ../../include/functions_reports.php:1087 -#: ../../include/functions_netflow.php:212 +#: ../../include/functions_reports.php:1087 ../../include/functions_netflow.php:212 #: ../../include/functions_snmp_browser.php:560 msgid "Value" msgstr "値" @@ -6507,8 +6407,7 @@ msgstr "ノードアドレス" #: ../../godmode/agentes/agent_template.php:277 #: ../../godmode/agentes/planned_downtime.editor.php:1446 #: ../../godmode/agentes/module_manager.php:647 -#: ../../godmode/netflow/nf_item_list.php:178 -#: ../../godmode/netflow/nf_edit.php:168 +#: ../../godmode/netflow/nf_item_list.php:178 ../../godmode/netflow/nf_edit.php:168 #: ../../godmode/snmpconsole/snmp_alert.php:1915 #: ../../godmode/snmpconsole/snmp_alert.php:2075 #: ../../godmode/snmpconsole/snmp_filters.php:315 @@ -6526,8 +6425,8 @@ msgstr "ノードアドレス" #: ../../godmode/events/event_filter.php:149 #: ../../mobile/operation/tactical.php:348 #: ../../include/functions_reporting_html.php:3451 -#: ../../include/functions_reporting_html.php:6013 -#: ../../include/functions.php:3109 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/functions_reporting_html.php:6013 ../../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 @@ -6616,8 +6515,7 @@ msgstr "パスワードポリシーを利用する" #: ../../godmode/massive/massive_edit_modules.php:1058 #: ../../godmode/massive/massive_edit_modules.php:1096 #: ../../godmode/massive/massive_edit_modules.php:1124 -#: ../../godmode/alerts/alert_view.php:135 -#: ../../godmode/alerts/alert_view.php:265 +#: ../../godmode/alerts/alert_view.php:135 ../../godmode/alerts/alert_view.php:265 #: ../../godmode/reporting/reporting_builder.php:1084 #: ../../godmode/reporting/visual_console_builder.wizard.php:382 #: ../../godmode/reporting/visual_console_builder.wizard.php:481 @@ -6686,8 +6584,7 @@ msgstr "はい" #: ../../godmode/massive/massive_edit_modules.php:1058 #: ../../godmode/massive/massive_edit_modules.php:1097 #: ../../godmode/massive/massive_edit_modules.php:1125 -#: ../../godmode/alerts/alert_view.php:135 -#: ../../godmode/alerts/alert_view.php:265 +#: ../../godmode/alerts/alert_view.php:135 ../../godmode/alerts/alert_view.php:265 #: ../../godmode/alerts/alert_view.php:358 ../../godmode/setup/news.php:390 #: ../../godmode/reporting/reporting_builder.php:1086 #: ../../godmode/reporting/visual_console_builder.wizard.php:393 @@ -6699,8 +6596,7 @@ msgstr "はい" #: ../../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:4971 ../../include/functions_events.php:4976 #: ../../operation/users/user_edit.php:434 #: ../../operation/netflow/nf_live_view.php:350 msgid "No" @@ -6875,12 +6771,12 @@ msgid "" "If you have manual settings in your pandora_server.conf, please note these " "settings will ignore this console setup." msgstr "" -"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で" -"設定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意" -"してください。\n" +"Gmail や Office365 などの一部のプロバイダーは、SMTP を使用した外部接続を手動で設" +"定/有効にする必要があり、ポート 587 でSTARTTLS を使用する必要があることに注意して" +"ください。\n" "\n" -"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注" -"意してください。" +"pandora_server.conf に 手動設定がある場合、コンソールの設定は無視されることに注意" +"してください。" #: ../../enterprise/meta/advanced/metasetup.mail.php:117 #: ../../godmode/setup/setup_general.php:725 @@ -6893,8 +6789,7 @@ msgid "From dir" msgstr "From アドレス" #: ../../enterprise/meta/advanced/metasetup.mail.php:127 -#: ../../godmode/setup/setup_general.php:756 -#: ../../include/functions_config.php:402 +#: ../../godmode/setup/setup_general.php:756 ../../include/functions_config.php:402 msgid "From name" msgstr "From 名" @@ -6909,8 +6804,7 @@ msgid "Port SMTP" msgstr "SMTP ポート" #: ../../enterprise/meta/advanced/metasetup.mail.php:142 -#: ../../godmode/setup/setup_general.php:817 -#: ../../include/functions_config.php:410 +#: ../../godmode/setup/setup_general.php:817 ../../include/functions_config.php:410 msgid "Encryption" msgstr "暗号化" @@ -6925,14 +6819,12 @@ 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:792 ../../include/functions_config.php:414 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:803 ../../include/functions_config.php:418 msgid "Email password" msgstr "メールユーザパスワード" @@ -6991,8 +6883,7 @@ msgstr "パフォーマンス設定" #: ../../enterprise/meta/advanced/metasetup.php:126 #: ../../enterprise/meta/advanced/metasetup.php:225 #: ../../enterprise/meta/advanced/metasetup.php:269 ../../godmode/menu.php:439 -#: ../../godmode/setup/file_manager.php:47 -#: ../../godmode/setup/file_manager.php:60 +#: ../../godmode/setup/file_manager.php:47 ../../godmode/setup/file_manager.php:60 msgid "File manager" msgstr "ファイルマネージャ" @@ -7131,8 +7022,7 @@ msgstr "ポリシー適用" #: ../../enterprise/godmode/policies/policy.php:154 #: ../../enterprise/include/functions_groups.php:33 #: ../../enterprise/operation/agentes/ver_agente.php:254 -#: ../../include/functions_networkmap.php:1303 -#: ../../include/functions_maps.php:42 +#: ../../include/functions_networkmap.php:1303 ../../include/functions_maps.php:42 #: ../../include/lib/Dashboard/Widgets/tree_view.php:346 #: ../../operation/tree.php:128 ../../operation/search_results.php:172 #: ../../operation/agentes/estado_agente.php:387 @@ -7214,8 +7104,8 @@ msgstr "ノード同期処理に失敗しました。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:229 #: ../../enterprise/meta/advanced/metasetup.consoles.php:343 msgid "" -"If you are trying to migrate this node to a new metaconsole, please use the " -"form available at Settings > Enterprise at node console." +"If you are trying to migrate this node to a new metaconsole, please use the form " +"available at Settings > Enterprise at node console." msgstr "" "このノードを新しいメタコンソールに移行する場合は、ノードコンソールの 設定 > " "Enterprise にあるフォームを使用してください。" @@ -7307,8 +7197,8 @@ msgid "" "If you have changed the node database to a different one, please go to Command " "center and perform a database unification process." msgstr "" -"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの" -"統合プロセスを実行してください。" +"ノードデータベースを別のものに変更した場合は、コマンドセンタにてデータベースの統" +"合プロセスを実行してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:455 msgid "" @@ -7320,8 +7210,8 @@ msgid "" "System is centralised, please go to command center to perform a database merge " "process to add new nodes." msgstr "" -"システムは中央管理されています。コマンドセンターにアクセスして、データベース" -"マージプロセスを実行し新しいノードを追加してください。" +"システムは中央管理されています。コマンドセンターにアクセスして、データベースマー" +"ジプロセスを実行し新しいノードを追加してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:464 msgid "" @@ -7332,11 +7222,11 @@ msgstr "環境が統一されるまで、新しいノードは使用できない #: ../../enterprise/meta/advanced/metasetup.consoles.php:470 #, php-format msgid "" -"System is centralised, but you just modify nodes registered, please go to %s " -"to perform a database merge process." +"System is centralised, but you just modify nodes registered, please go to %s to " +"perform a database merge process." msgstr "" -"システムは中央管理になっています。登録されているノードを変更するだけです。%s に" -"移動して、データベースの管理処理を実行してください。" +"システムは中央管理になっています。登録されているノードを変更するだけです。%s に移" +"動して、データベースの管理処理を実行してください。" #: ../../enterprise/meta/advanced/metasetup.consoles.php:473 msgid "This node will not be usable until unifying the environment" @@ -7411,8 +7301,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:221 #: ../../enterprise/meta/include/functions_meta.php:231 #: ../../enterprise/godmode/setup/setup_metaconsole.php:210 -#: ../../godmode/setup/setup_general.php:359 -#: ../../include/functions_config.php:240 +#: ../../godmode/setup/setup_general.php:359 ../../include/functions_config.php:240 msgid "API password" msgstr "API パスワード" @@ -7515,9 +7404,8 @@ msgid "" "erased, and replaced with new data from this metaconsole automatically after " "register the node. Are you sure?" msgstr "" -"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後" -"にこのメタコンソールからの新しいデータに自動的に置き換えられます。よろしいです" -"か?" +"このノードに含まれる情報は必要ありません。ノード情報は消去され、ノードの登録後に" +"このメタコンソールからの新しいデータに自動的に置き換えられます。よろしいですか?" #: ../../enterprise/meta/advanced/metasetup.consoles.php:877 msgid "Node data will be merged" @@ -7525,14 +7413,13 @@ msgstr "ノードデータはマージされます" #: ../../enterprise/meta/advanced/metasetup.consoles.php:878 msgid "" -"Information contained in this node is useful. After register the node, you " -"must launch a merge process from command center, which will combine " -"information in current environment with information contained in this new " -"node. Are you sure?" +"Information contained in this node is useful. After register the node, you must " +"launch a merge process from command center, which will combine information in " +"current environment with information contained in this new node. Are you sure?" msgstr "" -"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターから" -"マージ処理を起動する必要があります。これにより、現在の環境の情報がこの新しい" -"ノードに含まれる情報とマージされます。よろしいですか?" +"このノードに含まれる情報は有用です。ノードを登録した後、コマンドセンターからマー" +"ジ処理を起動する必要があります。これにより、現在の環境の情報がこの新しいノードに" +"含まれる情報とマージされます。よろしいですか?" #: ../../enterprise/meta/advanced/metasetup.consoles.php:920 #: ../../enterprise/godmode/setup/setup_metaconsole.php:270 @@ -7675,8 +7562,7 @@ msgstr "リンクの編集に失敗しました。" #: ../../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 +#: ../../godmode/setup/links.php:76 ../../godmode/events/event_edit_filter.php:242 #: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 @@ -7971,11 +7857,11 @@ msgstr "短い名前" #: ../../enterprise/meta/advanced/collections.data.php:452 #: ../../enterprise/godmode/agentes/collections.data.php:562 msgid "" -"The collection's short name is the name of dir in attachment dir and the " -"package collection." +"The collection's short name is the name of dir in attachment dir and the package " +"collection." msgstr "" -"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレ" -"クトリ名です。" +"コレクションの短い名前は、添付ディレクトリおよびパッケージコレクションのディレク" +"トリ名です。" #: ../../enterprise/meta/advanced/collections.data.php:452 #: ../../enterprise/godmode/agentes/collections.data.php:564 @@ -7985,8 +7871,7 @@ msgstr "短い名前は、アルファベットと、- および _ のみ利用 #: ../../enterprise/meta/advanced/collections.data.php:452 #: ../../enterprise/godmode/agentes/collections.data.php:566 msgid "Empty for default short name fc_X where X is the collection id." -msgstr "" -"指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" +msgstr "指定しない場合のデフォルトの短い名前は fc_X で、X はコレクション ID です。" #: ../../enterprise/meta/advanced/agents_setup.autoprovision.php:72 #, php-format @@ -8006,8 +7891,7 @@ msgstr "カスタムプロビジョニングデータの移動中にエラーで #: ../../enterprise/meta/advanced/collections.editor.php:219 #: ../../enterprise/godmode/agentes/collections.editor.php:179 #: ../../enterprise/godmode/agentes/collections.editor.php:245 -#: ../../godmode/servers/plugin.php:171 -#: ../../include/functions_filemanager.php:776 +#: ../../godmode/servers/plugin.php:171 ../../include/functions_filemanager.php:776 msgid "Edit file" msgstr "ファイル編集" @@ -8083,11 +7967,10 @@ msgid "Edit job" msgstr "ジョブ編集" #: ../../enterprise/meta/advanced/cron_main.php:313 -msgid "" -"In order to make backups it is necessary to have mysqldump on your console." +msgid "In order to make backups it is necessary to have mysqldump on your console." msgstr "" -"バックアップを作成するには、コンソールに mysqldump をインストールする必要があり" -"ます。" +"バックアップを作成するには、コンソールに mysqldump をインストールする必要がありま" +"す。" #: ../../enterprise/meta/advanced/cron_main.php:402 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:950 @@ -8300,20 +8183,18 @@ msgstr "言語設定" #: ../../enterprise/meta/advanced/metasetup.setup.php:99 #: ../../enterprise/meta/include/functions_meta.php:85 -#: ../../godmode/setup/setup_general.php:270 -#: ../../include/functions_config.php:196 +#: ../../godmode/setup/setup_general.php:270 ../../include/functions_config.php:196 msgid "Auto login (hash) password" msgstr "自動ログインパスワード(ハッシュ)" #: ../../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.php:1291 +#: ../../include/functions_reporting_html.php:2701 ../../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:2609 ../../include/functions_events.php:3162 +#: ../../operation/events/events.php:833 msgid "System" msgstr "システム" @@ -8324,8 +8205,7 @@ msgstr "データベース" #: ../../enterprise/meta/advanced/metasetup.setup.php:113 #: ../../enterprise/meta/include/functions_meta.php:95 -#: ../../godmode/setup/setup_general.php:282 -#: ../../include/functions_config.php:200 +#: ../../godmode/setup/setup_general.php:282 ../../include/functions_config.php:200 msgid "Time source" msgstr "日時データソース" @@ -8335,20 +8215,18 @@ msgid "" "If SSL is not properly configured, you will lose access to the %s Console. Do " "you want to continue?" msgstr "" -"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けま" -"すか?" +"SSL が適切に設定されていないと、%s コンソールにアクセスできなくなります。続けます" +"か?" #: ../../enterprise/meta/advanced/metasetup.setup.php:148 #: ../../enterprise/meta/include/functions_meta.php:105 -#: ../../godmode/setup/setup_general.php:307 -#: ../../include/functions_config.php:212 +#: ../../godmode/setup/setup_general.php:307 ../../include/functions_config.php:212 msgid "Enforce https" msgstr "httpsの利用" #: ../../enterprise/meta/advanced/metasetup.setup.php:153 #: ../../enterprise/meta/include/functions_meta.php:130 -#: ../../godmode/setup/setup_general.php:295 -#: ../../include/functions_config.php:223 +#: ../../godmode/setup/setup_general.php:295 ../../include/functions_config.php:223 msgid "Attachment store" msgstr "添付ファイル保存場所" @@ -8358,8 +8236,7 @@ msgstr "テンポラリデータの保存ディレクトリ" #: ../../enterprise/meta/advanced/metasetup.setup.php:168 #: ../../enterprise/meta/include/functions_meta.php:141 -#: ../../godmode/setup/setup_general.php:244 -#: ../../include/functions_config.php:188 +#: ../../godmode/setup/setup_general.php:244 ../../include/functions_config.php:188 msgid "Remote config directory" msgstr "リモート設定ディレクトリ" @@ -8480,8 +8357,7 @@ 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 +#: ../../include/functions_register.php:164 ../../include/functions_config.php:283 msgid "Timezone setup" msgstr "タイムゾーン設定" @@ -8491,8 +8367,8 @@ msgid "" "Set this value when you need your %s to be accessible via a public URL (for " "example using Apache mod_proxy settings)." msgstr "" -"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、" -"Apache mod_proxy 設定を使用)、この値を設定します。" +"公開用 URL を介して %s にアクセスできるようにする必要がある場合(たとえば、Apache " +"mod_proxy 設定を使用)、この値を設定します。" #: ../../enterprise/meta/advanced/metasetup.setup.php:251 #, php-format @@ -8500,20 +8376,18 @@ msgid "" "If public URL is not properly configured, you will lose access to the %s " "Console. Do you want to continue?" msgstr "" -"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 " -"続けますか?" +"公開 URL が適切に設定されていないと、%s コンソールにアクセスできなくなります。 続" +"けますか?" #: ../../enterprise/meta/advanced/metasetup.setup.php:266 #: ../../enterprise/meta/include/functions_meta.php:191 -#: ../../godmode/setup/setup_general.php:502 -#: ../../include/functions_config.php:322 +#: ../../godmode/setup/setup_general.php:502 ../../include/functions_config.php:322 msgid "Public URL host exclusions" msgstr "公開 URL 除外ホスト" #: ../../enterprise/meta/advanced/metasetup.setup.php:278 #: ../../enterprise/meta/include/functions_meta.php:181 -#: ../../godmode/setup/setup_general.php:492 -#: ../../include/functions_config.php:318 +#: ../../godmode/setup/setup_general.php:492 ../../include/functions_config.php:318 msgid "Force use Public URL" msgstr "公開 URL の強制利用" @@ -8522,20 +8396,18 @@ msgid "Force using defined public URL)." msgstr "定義された公開 URL を使用するように強制します)。" #: ../../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_sflow.php:75 ../../godmode/setup/setup_netflow.php:75 +#: ../../include/functions_config.php:1560 ../../include/functions_config.php:1603 msgid "Disable custom live view filters" msgstr "カスタムライブビューフィルタの無効化" #: ../../enterprise/meta/advanced/metasetup.setup.php:307 msgid "" -"Disable the definition of custom filters in the live view. Only existing " -"filters can be used." +"Disable the definition of custom filters in the live view. Only existing filters " +"can be used." msgstr "" -"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ" -"利用可能です。" +"ライブビューでカスタムフィルタの定義を無効化します。フィルタが存在する場合のみ利" +"用可能です。" #: ../../enterprise/meta/advanced/metasetup.setup.php:329 msgid "Disabled sections" @@ -8559,8 +8431,7 @@ msgstr "セクションのカスタマイズ" #: ../../enterprise/meta/advanced/metasetup.setup.php:370 #: ../../enterprise/meta/include/functions_meta.php:211 -#: ../../godmode/setup/setup_general.php:542 -#: ../../include/functions_config.php:334 +#: ../../godmode/setup/setup_general.php:542 ../../include/functions_config.php:334 msgid "Command Snapshot" msgstr "コマンドスナップショット" @@ -8574,8 +8445,7 @@ msgstr "パスワードの設定には注意してください。httpsアクセ #: ../../enterprise/meta/advanced/metasetup.setup.php:402 #: ../../enterprise/meta/include/functions_meta.php:241 -#: ../../godmode/setup/setup_general.php:371 -#: ../../include/functions_config.php:236 +#: ../../godmode/setup/setup_general.php:371 ../../include/functions_config.php:236 msgid "IP list with API access" msgstr "APIアクセスを許可するIPアドレスリスト" @@ -8599,8 +8469,8 @@ msgid "" "Maximum allowed number of agents to be added in policy concurrently (adding a " "high number of agents at a time can lead to performance issues)" msgstr "" -"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを" -"追加すると、パフォーマンスの問題が発生する可能性があります)" +"ポリシーに同時に追加できるエージェントの最大許容数 (一度に多数のエージェントを追" +"加すると、パフォーマンスの問題が発生する可能性があります)" #: ../../enterprise/meta/advanced/metasetup.setup.php:464 msgid "Warning for synchronization queue" @@ -8644,8 +8514,7 @@ msgstr "ログの場所: pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:597 #: ../../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 +#: ../../godmode/setup/setup_general.php:698 ../../include/functions_config.php:386 msgid "Enable console report" msgstr "コンソールレポートの有効化" @@ -8660,8 +8529,8 @@ msgid "" "New event with that Extra ID is received, it will be created as "In " "process" instead." msgstr "" -"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイ" -"ベントを受け取った際に "処理中" として作成します。" +"拡張 ID を持つ "処理中" イベントがある場合に、その ID を持つ新たなイベ" +"ントを受け取った際に "処理中" として作成します。" #: ../../enterprise/meta/advanced/metasetup.setup.php:639 #: ../../enterprise/meta/include/functions_meta.php:336 @@ -8737,8 +8606,7 @@ msgstr "%s ポリシーアラートを削除しました" #: ../../godmode/events/event_edit_filter.php:797 #: ../../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:4554 ../../include/functions_events.php:4636 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:425 #: ../../operation/agentes/pandora_networkmap.view.php:173 @@ -8806,8 +8674,8 @@ msgid "" "Be aware that group synchronization can change the group configuration of the " "node" msgstr "" -"グループの同期により、ノードのグループ設定が変更される可能性があることに注意し" -"てください" +"グループの同期により、ノードのグループ設定が変更される可能性があることに注意して" +"ください" #: ../../enterprise/meta/advanced/metasetup.performance.php:88 #: ../../godmode/setup/performance.php:186 @@ -8815,16 +8683,15 @@ msgid "Pandora_db running in active database." msgstr "アクティブデータベースで pandora_db が動作しています。" #: ../../enterprise/meta/advanced/metasetup.performance.php:89 -#: ../../godmode/setup/performance.php:187 -#: ../../godmode/setup/performance.php:243 +#: ../../godmode/setup/performance.php:187 ../../godmode/setup/performance.php:243 msgid "Executed:" msgstr "実行済:" #: ../../enterprise/meta/advanced/metasetup.performance.php:95 #: ../../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:193 ../../godmode/setup/performance.php:248 +#: ../../general/logon_ok.php:199 msgid "ago" msgstr "前" @@ -8836,8 +8703,7 @@ msgstr "パフォーマンス" #: ../../enterprise/meta/advanced/metasetup.performance.php:117 #: ../../enterprise/meta/include/functions_meta.php:2015 -#: ../../godmode/setup/performance.php:263 -#: ../../godmode/setup/performance.php:506 +#: ../../godmode/setup/performance.php:263 ../../godmode/setup/performance.php:506 msgid "Max. days before delete events" msgstr "イベントデータ保持日数" @@ -8898,8 +8764,8 @@ msgstr "クエリごとのイベント制限" #: ../../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:338 ../../godmode/setup/performance.php:470 +#: ../../include/functions_config.php:850 msgid "Max. days before purge" msgstr "データ保持日数" @@ -9135,9 +9001,8 @@ msgstr "未完了" #: ../../godmode/reporting/graphs.php:283 #: ../../godmode/reporting/visual_console_favorite.php:204 #: ../../godmode/reporting/reporting_builder.item_editor.php:1120 -#: ../../godmode/reporting/reporting_builder.php:766 -#: ../../godmode/tag/tag.php:247 ../../include/ajax/agent.php:652 -#: ../../include/functions_ui.php:3697 +#: ../../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 #: ../../operation/agentes/estado_agente.php:444 #: ../../operation/agentes/graphs.php:270 @@ -9222,8 +9087,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 ../../godmode/groups/tactical.php:213 +#: ../../extensions/agents_modules.php:470 ../../extensions/agents_modules.php:841 +#: ../../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 @@ -9239,9 +9104,8 @@ msgstr "サーバ" #: ../../godmode/reporting/reporting_builder.item_editor.php:1879 #: ../../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 +#: ../../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 @@ -9433,8 +9297,7 @@ msgstr "キューが空です" #: ../../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:252 ../../include/ajax/heatmap.ajax.php:291 #: ../../include/ajax/heatmap.ajax.php:326 #: ../../include/ajax/alert_list.ajax.php:459 #: ../../include/functions_inventory.php:393 @@ -9486,8 +9349,7 @@ msgstr "キューが空です" #: ../../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_alerts.php:34 ../../operation/inventory/inventory.php:628 #: ../../operation/search_modules.php:33 ../../operation/events/events.php:2688 msgid "Agent" msgstr "エージェント" @@ -9553,11 +9415,11 @@ msgstr "エージェントの状態" #: ../../godmode/setup/setup_visuals.php:1035 #: ../../godmode/reporting/reporting_builder.item_editor.php:3830 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 -#: ../../include/functions_reporting_html.php:2573 -#: ../../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/functions_reporting_html.php:2573 ../../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/functions_massive_operations.php:146 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 @@ -9623,12 +9485,12 @@ msgstr "正常" #: ../../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.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/functions_reporting_html.php:4871 ../../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_massive_operations.php:148 #: ../../include/class/AgentWizard.class.php:1404 @@ -9857,8 +9719,7 @@ msgstr "警告状態エージェント" #: ../../enterprise/meta/monitoring/custom_fields_view.php:412 #: ../../include/functions_reporting_html.php:5852 -#: ../../include/functions_agents.php:3945 -#: ../../include/functions_agents.php:3999 +#: ../../include/functions_agents.php:3945 ../../include/functions_agents.php:3999 msgid "Agents ok" msgstr "正常状態エージェント" @@ -9915,8 +9776,7 @@ 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_groups.php:2836 ../../include/functions_groups.php:2842 msgid "Monitors by status" msgstr "状態ごとの監視項目" @@ -10218,8 +10078,7 @@ msgstr "アラート作成" #: ../../operation/agentes/estado_monitores.php:125 #: ../../operation/agentes/agent_inventory.php:116 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 -#: ../../operation/inventory/inventory.php:634 +#: ../../operation/search_alerts.php:35 ../../operation/inventory/inventory.php:634 #: ../../operation/search_modules.php:32 msgid "Module" msgstr "モジュール" @@ -10241,8 +10100,7 @@ msgstr "モジュール" #: ../../mobile/operation/alerts.php:342 #: ../../include/functions_reporting_html.php:3449 #: ../../include/functions_reporting_html.php:3452 -#: ../../include/functions_cron.php:691 -#: ../../include/ajax/alert_list.ajax.php:293 +#: ../../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 @@ -10392,8 +10250,7 @@ msgstr "モジュール名に不正な文字があります" #: ../../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 +#: ../../include/functions_menu.php:589 ../../operation/visual_console/view.php:202 #: ../../operation/visual_console/legacy_view.php:171 msgid "Wizard" msgstr "設定追加" @@ -10486,8 +10343,7 @@ msgstr "テンプレートを設定する必要があります" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:588 #: ../../godmode/users/configure_profile.php:302 -#: ../../godmode/alerts/alert_list.php:513 -#: ../../godmode/alerts/alert_list.php:532 +#: ../../godmode/alerts/alert_list.php:513 ../../godmode/alerts/alert_list.php:532 msgid "Manage alerts" msgstr "アラート管理" @@ -10542,8 +10398,7 @@ msgstr "ウェブチェック" #: ../../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: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 #: ../../include/lib/Dashboard/Widgets/heatmap.php:324 @@ -10627,8 +10482,7 @@ msgstr "説明なし" #: ../../godmode/modules/manage_network_components_form_plugin.php:54 #: ../../godmode/modules/manage_network_components_form_wmi.php:60 #: ../../godmode/alerts/configure_alert_template.php:1338 -#: ../../godmode/alerts/alert_list.builder.php:329 -#: ../../include/functions.php:2768 +#: ../../godmode/alerts/alert_list.builder.php:329 ../../include/functions.php:2768 #: ../../include/class/AgentWizard.class.php:2629 msgid "Empty" msgstr "空" @@ -10640,8 +10494,7 @@ 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:3268 ../../include/functions_events.php:3542 msgid "New" msgstr "新規" @@ -10680,8 +10533,7 @@ 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 +#: ../../godmode/tag/edit_tag.php:212 ../../include/class/TipsWindow.class.php:726 #: ../../include/class/TipsWindow.class.php:893 #: ../../include/functions_reporting.php:7470 #: ../../include/lib/Dashboard/Widgets/url.php:216 @@ -10716,14 +10568,14 @@ msgstr "エージェント実行間隔 x %s" #: ../../enterprise/meta/monitoring/wizard/wizard.php:365 msgid "" "This feature will be removed in version 771 and its\n" -" functions transferred to different metaconsole tools " -"( bulk operations, agent alert editing, etc).\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 "" "この機能はバージョン 771 で削除され、\n" -" 別のメタコンソールツール (一括操作、エージェントアラート編" -"集など) に移ります。\n" +" 別のメタコンソールツール (一括操作、エージェントアラート編集" +"など) に移ります。\n" " ウィザードの現在の機能は最小限で利用はお勧めしません。" #: ../../enterprise/meta/monitoring/group_view.php:59 @@ -10819,8 +10671,7 @@ msgstr "合計" #: ../../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 +#: ../../include/functions_events.php:2942 ../../include/functions_events.php:3142 #: ../../operation/agentes/group_view.php:252 msgid "Alert fired" msgstr "発生中アラート" @@ -10829,11 +10680,11 @@ msgstr "発生中アラート" #: ../../operation/agentes/group_view.php:343 #, php-format msgid "" -"This %s installation are using the secondary groups feature. For this reason, " -"an agent can be counted several times." +"This %s installation are using the secondary groups feature. For this reason, an " +"agent can be counted several times." msgstr "" -"この %s インストールはセカンダリグループ機能を使用しています。 このため、エー" -"ジェントは数回カウントされる可能性があります。" +"この %s インストールはセカンダリグループ機能を使用しています。 このため、エージェ" +"ントは数回カウントされる可能性があります。" #: ../../enterprise/meta/monitoring/tactical.php:46 #: ../../enterprise/meta/general/main_header.php:103 @@ -10843,8 +10694,8 @@ msgstr "" #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:472 -#: ../../operation/agentes/tactical.php:72 ../../operation/menu.php:173 +#: ../../operation/users/user_edit.php:472 ../../operation/agentes/tactical.php:72 +#: ../../operation/menu.php:173 msgid "Tactical view" msgstr "モニタリング概要" @@ -10868,8 +10719,7 @@ msgstr "状態レポート" #: ../../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 -#: ../../include/functions_reports.php:880 +#: ../../include/functions_reports.php:876 ../../include/functions_reports.php:880 #: ../../include/functions_reports.php:884 ../../operation/menu.php:518 #: ../../operation/events/events.php:1613 msgid "Events" @@ -10894,8 +10744,7 @@ msgid "View events" 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.php:211 ../../godmode/netflow/nf_edit_form.php:69 #: ../../godmode/snmpconsole/snmp_filters.php:37 #: ../../godmode/events/event_filter.php:230 #: ../../include/ajax/custom_fields.php:654 @@ -10977,8 +10826,8 @@ msgstr "イベントフィールド表示" #: ../../godmode/events/custom_events.php:232 msgid "There must be at least one custom field. Timestamp will be set by default" msgstr "" -"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定" -"されます。" +"少なくとも 1つのカスタムフィールドが必要です。 タイムスタンプはデフォルトで設定さ" +"れます。" #: ../../enterprise/meta/include/functions_autoprovision.php:391 msgid "Round Robin" @@ -10991,16 +10840,16 @@ msgstr "低負荷" #: ../../enterprise/meta/include/functions_autoprovision.php:435 msgid "" "It uses the Round-robin planning method to distribute, \n" -" in an equitable way and in a rational order, all the new " -"Pandora software agents that reach the Metaconsole.\n" +" in an equitable way and in a rational order, all the new Pandora " +"software agents that reach the Metaconsole.\n" " The distribution of the agents will be done in a circular way, " "assigning the corresponding server to each new agent.\n" " " msgstr "" -"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウン" -"ドロビン方式で公平に配布します。\n" -" エージェントの配布は循環的に行われ、新しいエージェントは対応す" -"るサーバに割り当てられます。\n" +"メタコンソールに到達するすべての新しい Pandora ソフトウェアエージェントをラウンド" +"ロビン方式で公平に配布します。\n" +" エージェントの配布は循環的に行われ、新しいエージェントは対応する" +"サーバに割り当てられます。\n" " " #: ../../enterprise/meta/include/functions_autoprovision.php:443 @@ -11017,8 +10866,8 @@ msgid "" " " msgstr "" "カスタム配布では、独自の配布ルールを定義できます。\n" -" エージェントから取得された情報(エージェント名とその IP アドレ" -"ス)に基づきます。\n" +" エージェントから取得された情報(エージェント名とその IP アドレス)" +"に基づきます。\n" " " #: ../../enterprise/meta/include/functions_autoprovision.php:494 @@ -11035,11 +10884,11 @@ msgstr "並べ替え" #: ../../enterprise/meta/include/functions_autoprovision.php:552 msgid "" -"There is no custom entries defined. Click on \"Create custom entry\" to add " -"the first." +"There is no custom entries defined. Click on \"Create custom entry\" to add the " +"first." msgstr "" -"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックし" -"て、最初のエントリを追加します。" +"カスタムエントリは定義されていません。\"カスタムエントリの作成\" をクリックして、" +"最初のエントリを追加します。" #: ../../enterprise/meta/include/functions_autoprovision.php:557 msgid "Create custom entry" @@ -11058,8 +10907,8 @@ msgid "" "There is no rules configured for this custom entry. Click on Add button to " "create the first." msgstr "" -"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリッ" -"クして作成します。" +"このカスタムエントリ用に設定されたルールがありません。 最初に追加ボタンをクリック" +"して作成します。" #: ../../enterprise/meta/include/functions_autoprovision.php:699 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:502 @@ -11129,8 +10978,8 @@ msgstr "ユーザ管理" #: ../../enterprise/meta/include/functions_users_meta.php:214 #: ../../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/user_list.php:262 ../../godmode/users/configure_user.php:256 +#: ../../godmode/menu.php:159 msgid "Profile management" msgstr "プロファイル管理" @@ -11167,8 +11016,8 @@ msgstr "ユーザ管理" #: ../../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 +#: ../../include/functions_reporting_html.php:1756 ../../include/lib/Group.php:554 +#: ../../operation/inventory/inventory.php:999 #: ../../operation/inventory/inventory.php:1293 msgid "Alias" msgstr "別名" @@ -11184,8 +11033,8 @@ msgstr "別名" #: ../../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_treeview.php:643 ../../include/functions_events.php:4372 +#: ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "IP アドレス" @@ -11280,11 +11129,10 @@ msgstr "プライマリを利用" #: ../../godmode/setup/setup_integria.php:292 #: ../../godmode/reporting/reporting_builder.item_editor.php:3525 #: ../../godmode/events/custom_events.php:97 -#: ../../mobile/include/user.class.php:392 -#: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:6011 -#: ../../include/functions.php:3109 ../../include/functions_cron.php:498 -#: ../../include/functions_config.php:731 ../../include/functions_config.php:751 +#: ../../mobile/include/user.class.php:392 ../../mobile/operation/tactical.php:349 +#: ../../include/functions_reporting_html.php:6011 ../../include/functions.php:3109 +#: ../../include/functions_cron.php:498 ../../include/functions_config.php:731 +#: ../../include/functions_config.php:751 #: ../../include/class/CredentialStore.class.php:817 #: ../../include/class/CredentialStore.class.php:1300 #: ../../include/class/AuditLog.class.php:110 @@ -11339,9 +11187,8 @@ msgstr "ユーザ" #: ../../include/class/CredentialStore.class.php:1324 #: ../../include/class/CredentialStore.class.php:1346 #: ../../include/class/AgentWizard.class.php:690 -#: ../../operation/users/user_edit.php:863 -#: ../../operation/users/user_edit.php:916 ../../general/login_page.php:290 -#: ../../general/login_page.php:351 +#: ../../operation/users/user_edit.php:863 ../../operation/users/user_edit.php:916 +#: ../../general/login_page.php:290 ../../general/login_page.php:351 msgid "Password" msgstr "パスワード" @@ -11726,8 +11573,7 @@ msgid "%s Modules deleted" msgstr "%s モジュールを削除しました" #: ../../enterprise/meta/include/functions_wizard_meta.php:2693 -msgid "" -"There was an error creating the alerts, the operation has been cancelled ." +msgid "There was an error creating the alerts, the operation has been cancelled ." msgstr "アラート作成エラーです。操作はキャンセルされました。" #: ../../enterprise/meta/include/functions_wizard_meta.php:2723 @@ -11877,10 +11723,9 @@ msgstr "イベント名" #: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 #: ../../include/functions_reporting_html.php:3659 #: ../../include/functions_treeview.php:607 -#: ../../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 +#: ../../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 msgid "Agent name" msgstr "エージェント名" @@ -11916,8 +11761,7 @@ msgstr "エージェント名" #: ../../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:2539 ../../include/functions_events.php:4914 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:114 #: ../../operation/agentes/status_monitor.php:1598 @@ -11957,9 +11801,8 @@ msgstr "イベントタイプ" #: ../../godmode/agentes/status_monitor_custom_fields.php:143 #: ../../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 -#: ../../include/ajax/custom_fields.php:411 +#: ../../include/ajax/heatmap.ajax.php:239 ../../include/ajax/heatmap.ajax.php:278 +#: ../../include/ajax/module.php:1001 ../../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 @@ -11995,10 +11838,9 @@ msgstr "アラート" #: ../../godmode/reporting/reporting_builder.item_editor.php:2998 #: ../../godmode/events/event_filter.php:148 #: ../../godmode/events/event_edit_filter.php:372 -#: ../../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 +#: ../../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 #: ../../include/functions_reporting_html.php:1060 #: ../../include/functions_reporting_html.php:1068 #: ../../include/functions_reporting_html.php:1308 @@ -12044,12 +11886,10 @@ msgstr "コメント" #: ../../godmode/massive/massive_edit_modules.php:1062 #: ../../godmode/reporting/reporting_builder.item_editor.php:85 #: ../../godmode/reporting/reporting_builder.item_editor.php:3964 -#: ../../godmode/events/custom_events.php:106 -#: ../../mobile/operation/events.php:845 +#: ../../godmode/events/custom_events.php:106 ../../mobile/operation/events.php:845 #: ../../include/functions_reporting_html.php:1772 #: ../../include/functions_reporting_html.php:3715 -#: ../../include/functions_treeview.php:152 -#: ../../include/functions_profile.php:205 +#: ../../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/functions_events.php:211 ../../include/functions_events.php:280 @@ -12070,9 +11910,9 @@ msgstr "拡張 ID" #: ../../enterprise/meta/include/functions_events_meta.php:118 #: ../../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 +#: ../../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 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:339 #: ../../operation/incidents/list_integriaims_incidents.php:360 @@ -12116,8 +11956,7 @@ msgstr "モジュールの状態" #: ../../enterprise/meta/include/process_reset_pass.php:28 #: ../../enterprise/meta/include/reset_pass.php:28 -#: ../../enterprise/meta/general/login_page.php:99 -#: ../../general/login_page.php:101 +#: ../../enterprise/meta/general/login_page.php:99 ../../general/login_page.php:101 msgid "Splash login" msgstr "スプラッシュログイン" @@ -12202,8 +12041,8 @@ 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 ../../include/functions_menu.php:955 +#: ../../general/login_page.php:460 msgid "Build" msgstr "ビルド" @@ -12708,8 +12547,7 @@ 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:1270 ../../include/functions_config.php:1274 msgid "Random background" msgstr "ランダム背景" @@ -13006,9 +12844,8 @@ msgstr "%s - フレキシブルモニタリングシステム" #: ../../include/functions_menu.php:892 ../../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 +#: ../../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 #: ../../general/mysqlerr.php:28 ../../general/login_page.php:566 msgid "Error" @@ -13034,8 +12871,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:757 ../../enterprise/include/reset_pass.php:195 +#: ../../index.php:928 msgid "Reset password" msgstr "パスワードをリセット" @@ -13045,9 +12882,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 -#: ../../general/login_page.php:530 +#: ../../include/functions_config.php:2678 ../../include/functions_config.php:2730 +#: ../../general/login_page.php:527 ../../general/login_page.php:530 msgid "ONE TOOL TO RULE THEM ALL" msgstr "一つのツールですべてを管理" @@ -13115,8 +12951,8 @@ msgid "" "The relation type: %s to %s -> %s was not saved. This relationship already " "exists in the database" msgstr "" -"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既" -"に存在します" +"関係タイプ: %s から %s -> %s は保存されませんでした。この関係はデータベースに既に" +"存在します" #: ../../enterprise/meta/include/functions_relations.php:230 #, php-format @@ -13151,11 +12987,11 @@ msgstr "サーバとの接続が切断されました" #: ../../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." +"Connection to the server has been lost. Please check your internet connection or " +"contact with administrator." msgstr "" -"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡して" -"ください。" +"サーバとの接続が切断されました。インターネット接続を確認するか管理者へ連絡してく" +"ださい。" #: ../../enterprise/meta/index.php:345 ../../mobile/include/user.class.php:303 #: ../../include/ajax/double_auth.ajax.php:515 ../../index.php:380 @@ -13228,8 +13064,8 @@ msgstr "メール送信エラー" msgid "" "System is not centralised, please go to %s to perform a database merge process." msgstr "" -"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行っ" -"てください。" +"システムは中央管理ではありません。データベースの統合処理を行うために %s へ行って" +"ください。" #: ../../enterprise/meta/index.php:1001 #, php-format @@ -13265,9 +13101,8 @@ msgstr "エージェントが見つかりました" #: ../../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 -#: ../../operation/search_agents.php:58 +#: ../../include/functions_treeview.php:671 ../../include/functions_events.php:4389 +#: ../../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/ver_agente.php:1046 @@ -13344,8 +13179,8 @@ msgid "" "Metaconsole needs previous activation from regular console, please contact " "system administrator if you need assistance.
" msgstr "" -"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが" -"必要であればシステム管理者へ問い合わせてください。
" +"メタコンソールは、通常のコンソールから事前に有効化する必要があります。手助けが必" +"要であればシステム管理者へ問い合わせてください。
" #: ../../enterprise/meta/general/header.php:69 #: ../../enterprise/meta/general/header.php:75 @@ -13386,10 +13221,9 @@ msgstr "自動更新の無効化" #: ../../enterprise/meta/general/header.php:264 #: ../../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 -#: ../../general/header.php:445 +#: ../../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 ../../general/header.php:445 msgid "Logout" msgstr "ログアウト" @@ -13528,10 +13362,8 @@ msgstr "ビジュアルコンソールウィザード" #: ../../enterprise/include/functions_enterprise.php:439 #: ../../godmode/netflow/nf_edit_form.php:82 ../../godmode/menu.php:371 #: ../../godmode/setup/setup.php:151 ../../godmode/setup/setup.php:290 -#: ../../include/functions_reports.php:925 -#: ../../include/functions_reports.php:929 -#: ../../include/functions_reports.php:933 -#: ../../include/functions_reports.php:937 +#: ../../include/functions_reports.php:925 ../../include/functions_reports.php:929 +#: ../../include/functions_reports.php:933 ../../include/functions_reports.php:937 msgid "Netflow" msgstr "Netflow" @@ -13606,10 +13438,9 @@ msgstr "リンク" #: ../../enterprise/meta/general/main_menu.php:806 #: ../../enterprise/meta/general/main_menu.php:807 #: ../../enterprise/extensions/csv_import_group/main.php:23 -#: ../../extensions/extension_uploader.php:30 -#: ../../extensions/api_checker.php:200 ../../extensions/files_repo.php:132 -#: ../../extensions/dbmanager.php:102 ../../extensions/pandora_logs.php:86 -#: ../../godmode/extensions.php:29 +#: ../../extensions/extension_uploader.php:30 ../../extensions/api_checker.php:200 +#: ../../extensions/files_repo.php:132 ../../extensions/dbmanager.php:102 +#: ../../extensions/pandora_logs.php:86 ../../godmode/extensions.php:29 msgid "Extensions" msgstr "拡張" @@ -13647,11 +13478,11 @@ msgstr "レポート" #: ../../enterprise/meta/general/noaccesssaml.php:135 #: ../../general/noaccesssaml.php:135 msgid "" -"Access to this page is restricted to authorized users SAML only, please " -"contact system administrator if you need assistance." +"Access to this page is restricted to authorized users SAML only, please contact " +"system administrator if you need assistance." msgstr "" -"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が" -"必要な場合はシステム管理者に連絡してください。" +"このページへのアクセスは、SAML で許可されたユーザのみに制限されています。支援が必" +"要な場合はシステム管理者に連絡してください。" #: ../../enterprise/meta/general/noaccesssaml.php:137 #: ../../general/noaccesssaml.php:137 @@ -13661,26 +13492,26 @@ msgid "" "information the error to access this page are recorded in security logs of %s " "System Database" msgstr "" -"SAML 認証が適切に構成されていることを確認してください。 詳細については、この" -"ページへのアクセスエラーが %s システムデータベースのセキュリティログに記録され" -"ています。" +"SAML 認証が適切に構成されていることを確認してください。 詳細については、このペー" +"ジへのアクセスエラーが %s システムデータベースのセキュリティログに記録されていま" +"す。" #: ../../enterprise/meta/general/noaccess.php:135 ../../general/noaccess.php:152 msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要" -"な場合はシステム管理者に連絡してください。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な" +"場合はシステム管理者に連絡してください。" #: ../../enterprise/meta/general/noaccess.php:137 ../../general/noaccess.php:154 #, php-format msgid "" -"Please know that all attempts to access this page are recorded in security " -"logs of %s System Database" +"Please know that all attempts to access this page are recorded in security logs " +"of %s System Database" msgstr "" -"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに" -"記録されます。" +"このページへのアクセス試行はすべて、%s システムデータベースのセキュリティログに記" +"録されます。" #: ../../enterprise/meta/general/main_menu.php:240 #: ../../enterprise/godmode/policies/policies.php:611 @@ -13690,10 +13521,8 @@ msgstr "" #: ../../godmode/agentes/configurar_agente.php:468 #: ../../godmode/agentes/configurar_agente.php:725 #: ../../godmode/setup/setup_integria.php:366 -#: ../../include/functions_reports.php:890 -#: ../../include/functions_reports.php:897 -#: ../../include/functions_reports.php:904 -#: ../../include/functions_reports.php:905 +#: ../../include/functions_reports.php:890 ../../include/functions_reports.php:897 +#: ../../include/functions_reports.php:904 ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/functions_reporting.php:3124 #: ../../operation/agentes/ver_agente.php:1450 @@ -13716,9 +13545,8 @@ msgstr "サウンドコンソール" #: ../../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 +#: ../../operation/users/user_edit.php:874 ../../operation/users/user_edit.php:927 +#: ../../operation/menu.php:571 ../../operation/events/events.php:1517 msgid "Start" msgstr "開始" @@ -13885,8 +13713,8 @@ msgid "" "Your session has ended. Please close your browser window to close this %s " "session." msgstr "" -"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを" -"閉じてください。" +"セッションを終了しました。 この %s セッションを閉じるには、ブラウザウィンドウを閉" +"じてください。" #: ../../enterprise/load_enterprise.php:568 ../../godmode/setup/license.php:111 msgid "License updated" @@ -13942,8 +13770,8 @@ msgid "" "node has a metaconsole license and cannot contact with the metaconsole." msgstr "" "メタコンソールに到達できません " -"

このノードはメタコンソールライセンスを持っていますがメタコンソールに接" -"続できません。" +"

このノードはメタコンソールライセンスを持っていますがメタコンソールに接続" +"できません。" #: ../../enterprise/load_enterprise.php:874 #: ../../enterprise/load_enterprise.php:880 @@ -13953,8 +13781,8 @@ msgid "" "License exceeded

This " "license allows %d agents and you have %d agents configured." msgstr "" -"ライセンス超過

このライセン" -"スは %d エージェントまでですが、%d エージェントが設定されています。" +"ライセンス超過

このライセンス" +"は %d エージェントまでですが、%d エージェントが設定されています。" #: ../../enterprise/load_enterprise.php:875 #: ../../enterprise/load_enterprise.php:882 @@ -13971,8 +13799,7 @@ msgstr "ライセンスを拡張するには %s へ連絡してください。" #: ../../enterprise/load_enterprise.php:899 #: ../../enterprise/load_enterprise.php:926 #: ../../enterprise/load_enterprise.php:934 -msgid "" -"This console will work in limited mode. Enterprise features will not work." +msgid "This console will work in limited mode. Enterprise features will not work." msgstr "このコンソールは制限モードで動作します。Enterprise 機能は動作しません。" #: ../../enterprise/load_enterprise.php:890 @@ -13981,8 +13808,8 @@ msgid "" "License exceeded

This " "license allows %d agents and you have %d agents configured." msgstr "" -"ライセンス超過

このライセ" -"ンスは %d エージェントまでですが、%d エージェントが設定されています。" +"ライセンス超過

このライセン" +"スは %d エージェントまでですが、%d エージェントが設定されています。" #: ../../enterprise/load_enterprise.php:909 #, php-format @@ -13990,14 +13817,14 @@ msgid "" "License exceeded

This " "license allows %d modules and you have %d modules configured." msgstr "" -"ライセンス超過

このラインセ" -"ンスは %d モジュールまでですが、%d モジュールが設定されています。" +"ライセンス超過

このラインセン" +"スは %d モジュールまでですが、%d モジュールが設定されています。" #: ../../enterprise/load_enterprise.php:919 #: ../../enterprise/load_enterprise.php:925 msgid "" -"This license has expired. " -"

You can not get updates until you renew the license." +"This license has expired.

You " +"can not get updates until you renew the license." msgstr "" "このライセンスは期限切れです。 " "

ライセンスを更新するまでアップデートの入手はできません。" @@ -14022,8 +13849,8 @@ msgid "" "limitations, but without support or updates." msgstr "" "このライセンスはサポート外です。 " -"

この %s インストールは引き続き制限なく動作しますが、サポートや更新はあ" -"りません。" +"

この %s インストールは引き続き制限なく動作しますが、サポートや更新はあり" +"ません。" #: ../../enterprise/extensions/disabled/check_acls.php:16 msgid "ACL users for this agent" @@ -14136,22 +13963,22 @@ msgstr "VMware 表示" #: ../../enterprise/include/class/Omnishell.class.php:341 #: ../../enterprise/operation/log/elasticsearch_interface.php:46 #: ../../enterprise/tools/ipam/ipam.php:449 -#: ../../extensions/extension_uploader.php:39 -#: ../../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/setup/links.php:29 ../../godmode/setup/file_manager.php:56 +#: ../../extensions/extension_uploader.php:39 ../../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/setup/links.php:29 +#: ../../godmode/setup/file_manager.php:56 #: ../../include/class/EventSound.class.php:226 #: ../../include/class/Diagnostics.class.php:159 msgid "Admin tools" msgstr "管理ツール" #: ../../enterprise/extensions/csv_import_group/main.php:36 -#: ../../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 +#: ../../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 msgid "Extension manager" msgstr "拡張マネージャ" @@ -14590,8 +14417,8 @@ msgid "" "Looking for VMware configuration? You can configure several tasks using " "Discovery Applications." msgstr "" -"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設" -"定できます。" +"VMware 設定を探しますか? 動検出アプリケーションを使用して、いくつかのタスクを設定" +"できます。" #: ../../enterprise/extensions/vmware/vmware_view.php:1299 #: ../../enterprise/extensions/vmware/vmware_view.php:1586 @@ -14708,13 +14535,13 @@ msgstr "こちら" #: ../../enterprise/extensions/vmware/vmware_view.php:1872 #, php-format msgid "" -"This map is a quick representation of all your VMware entities detected. You " -"can create a custom VMware map by defining a network map based on your VMware " +"This map is a quick representation of all your VMware entities detected. You can " +"create a custom VMware map by defining a network map based on your VMware " "discovery task %s" msgstr "" "このマップは、検出されたすべての VMware エンティティをすばやく表したものです。 " -"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタ" -"ム VMware マップを作成できます。" +"VMware 検出タスク %s に基づいてネットワークマップを定義することにより、カスタム " +"VMware マップを作成できます。" #: ../../enterprise/extensions/vmware/vmware_manager.php:227 msgid "Power Status: " @@ -14747,8 +14574,8 @@ msgid "" "This node is configured with centralized mode. All group information is read " "only. Go to %s to import the CSV." msgstr "" -"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専" -"用です。CSV をインポートするには %s に移動します。" +"このノードは中央管理モードに設定されています。 すべてのグループ情報は読み取り専用" +"です。CSV をインポートするには %s に移動します。" #: ../../enterprise/extensions/csv_import_group.php:75 msgid "CSV group import" @@ -14768,8 +14595,8 @@ msgid "" "You can activate it manually
here or " "automatically filling the form below:" msgstr "" -"ここから手動で有効化するか、以下のフォーム" -"から自動入力できます:" +"ここから手動で有効化するか、以下のフォームか" +"ら自動入力できます:" #: ../../enterprise/load_html_extra.php:213 msgid "Auth Key:" @@ -14860,8 +14687,7 @@ msgstr "警告状態" #: ../../godmode/massive/massive_edit_modules.php:900 #: ../../godmode/alerts/configure_alert_template.php:870 #: ../../include/functions_reporting_html.php:5528 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:103 +#: ../../include/functions_treeview.php:91 ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:676 #: ../../include/lib/Dashboard/Widgets/top_n.php:282 msgid "Min." @@ -14884,8 +14710,7 @@ msgstr "最小" #: ../../godmode/massive/massive_edit_modules.php:902 #: ../../godmode/alerts/configure_alert_template.php:883 #: ../../include/functions_reporting_html.php:5529 -#: ../../include/functions_treeview.php:91 -#: ../../include/functions_treeview.php:103 +#: ../../include/functions_treeview.php:91 ../../include/functions_treeview.php:103 #: ../../include/functions_alerts.php:675 #: ../../include/lib/Dashboard/Widgets/top_n.php:281 msgid "Max." @@ -14903,8 +14728,7 @@ msgstr "最大" #: ../../godmode/agentes/module_manager_editor_common.php:596 #: ../../godmode/massive/massive_edit_modules.php:610 #: ../../godmode/massive/massive_edit_modules.php:701 -#: ../../include/functions_treeview.php:89 -#: ../../include/functions_treeview.php:101 +#: ../../include/functions_treeview.php:89 ../../include/functions_treeview.php:101 msgid "Str." msgstr "文字列" @@ -14946,8 +14770,7 @@ msgstr "警告状態の期間。" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:589 #: ../../godmode/modules/manage_network_components_form_common.php:216 #: ../../godmode/massive/massive_edit_modules.php:667 -#: ../../include/functions_treeview.php:107 -#: ../../include/functions_alerts.php:680 +#: ../../include/functions_treeview.php:107 ../../include/functions_alerts.php:680 #: ../../include/class/TreeService.class.php:432 #: ../../include/class/TreeService.class.php:641 msgid "Critical status" @@ -15041,8 +14864,8 @@ msgstr "連続抑制タイムアウト" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:964 #: ../../godmode/massive/massive_edit_modules.php:1053 msgid "" -"Timeout in secs from start of flip flop counting. If this value is exceeded, " -"FF counter is reset. Set to 0 for no timeout." +"Timeout in secs from start of flip flop counting. If this value is exceeded, FF " +"counter is reset. Set to 0 for no timeout." msgstr "" "連続抑制開始からのタイムアウト秒数です。この値を超えると連続抑制のカウンタがリ" "セットされます。0に設定するとタイムアウトしません。" @@ -15121,8 +14944,8 @@ msgid "" "Name is missed. Please add a line with \"module_name yourmodulename\" to data " "configuration" msgstr "" -"名前がありません。データ設定に \"module_name モジュール名\" という行を追加して" -"ください。" +"名前がありません。データ設定に \"module_name モジュール名\" という行を追加してく" +"ださい。" #: ../../enterprise/godmode/modules/configure_local_component.php:522 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:253 @@ -15130,8 +14953,8 @@ msgid "" "Type is missed. Please add a line with \"module_type yourmoduletype\" to data " "configuration" msgstr "" -"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追" -"加してください。" +"タイプがありません。データ設定に \"module_type モジュールタイプ\" という行を追加" +"してください。" #: ../../enterprise/godmode/modules/configure_local_component.php:523 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:254 @@ -15334,8 +15157,8 @@ msgid "" "This node is configured with centralized mode. All local components are read " "only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは" -"読み取り専用です。それらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのローカルコンポーネントは読" +"み取り専用です。それらを管理するには、%s に移動します。" #: ../../enterprise/godmode/modules/local_components.php:339 #: ../../godmode/modules/manage_network_components.php:447 @@ -15429,16 +15252,15 @@ msgstr "エージェント自動設定情報" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:90 msgid "You must click the Create or Update buttom for a correct configuration!!!" msgstr "" -"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要がありま" -"す!!!" +"正しい設定を行うには、[作成] または [更新] ボタンをクリックする必要があります!!!" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:98 msgid "" "Cannot create autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成して" -"ください(中央管理)" +"読み取り専用コンソールから自動設定を作成できません。メタコンソールから作成してく" +"ださい(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:139 msgid "Cannot create autoconfiguration in metaconsole" @@ -15453,8 +15275,8 @@ msgid "" "Cannot udpate autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成して" -"ください(中央管理)" +"読み取り専用コンソールから自動設定を更新できません。メタコンソールから作成してく" +"ださい(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:194 msgid "Cannot update autoconfiguration" @@ -15466,8 +15288,8 @@ msgid "" "Cannot modify autoconfiguration from read only console, please create from " "metaconsole (centralized management)" msgstr "" -"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールか" -"ら作成してください(中央管理)" +"読み取り専用コンソールから自動設定を変更することはできません。メタコンソールから" +"作成してください(中央管理)" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:304 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:93 @@ -15480,11 +15302,11 @@ msgstr "エージェント自動設定一覧" #: ../../godmode/modules/manage_inventory_modules.php:74 #, php-format msgid "" -"This console is not manager of this environment, please manage this feature " -"from centralized manager console. Go to %s to manage it." +"This console is not manager of this environment, please manage this feature from " +"centralized manager console. Go to %s to manage it." msgstr "" -"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールから" -"この機能を管理してください。管理するには %s に移動します。" +"このコンソールはこの環境の管理コンソールではありません。中央管理コンソールからこ" +"の機能を管理してください。管理するには %s に移動します。" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:373 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:146 @@ -15690,8 +15512,8 @@ msgid "" "Put here any extra configuration you want to be applied to any new agent " "matching previously defined rules" msgstr "" -"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入" -"力します" +"以前に定義されたルールに一致する新しいエージェントに適用する追加の設定ここに入力" +"します" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:870 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:910 @@ -15976,11 +15798,11 @@ msgstr "コレクションを更新しました" #: ../../enterprise/godmode/agentes/collections.php:176 #, php-format msgid "" -"This console is not manager of this environment, please manage this feature " -"from %s." +"This console is not manager of this environment, please manage this feature from " +"%s." msgstr "" -"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理し" -"てください。" +"このコンソールはこの環境の管理コンソールではありません。%s からこの機能を管理して" +"ください。" #: ../../enterprise/godmode/agentes/collections.data.php:463 msgid "Please go to the metaconsole and apply this collection" @@ -16104,8 +15926,8 @@ msgid "" "Delete this conf file implies that for restore you must reactive remote config " "in the local agent.

Are you sure?" msgstr "" -"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効" -"化する必要があります。

よろしいですか?" +"この設定を削除した場合、元に戻すにはローカルエージェントのリモート設定を再有効化" +"する必要があります。

よろしいですか?" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:339 msgid "Add Modules" @@ -16141,8 +15963,8 @@ msgid "" "Support for IE and Edge browsers is experimental. Tests might not work as " "expected." msgstr "" -"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能" -"しない可能性があります。" +"IE および Edge ブラウザのサポートは実験的なものです。 テストが期待どおりに機能し" +"ない可能性があります。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:210 msgid "User data dir" @@ -16152,23 +15974,20 @@ msgstr "ユーザデータディレクトリ" #, php-format msgid "Google Chrome only. Set user data dir, specify the full path %s." msgstr "" -"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %s を指定しま" -"す。" +"Google Chrome のみ。 ユーザデータディレクトリを設定し、フルパス %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 -#: ../../operation/search_users.php:47 +#: ../../include/class/TipsWindow.class.php:885 ../../operation/search_users.php:47 msgid "Profile" msgstr "プロファイル" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:232 #, php-format -msgid "" -"Google Chrome only. Use a custom profile, specify the full folder name %s." +msgid "Google Chrome only. Use a custom profile, specify the full folder name %s." msgstr "" -"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定" -"します。" +"Google Chrome のみ。 カスタムプロファイルを使用して、完全なフォルダ名 %s を指定し" +"ます。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:252 msgid "Accept insecure certificates" @@ -16214,11 +16033,11 @@ msgstr "カスタムID" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:497 #: ../../godmode/agentes/module_manager.php:902 msgid "" -"The policy modules of data type will only update their intervals when policy " -"is applied." +"The policy modules of data type will only update their intervals when policy is " +"applied." msgstr "" -"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔" -"でのみ更新されます。" +"データタイプのポリシーモジュールは、ポリシーが適用されたときに、それ自身の間隔で" +"のみ更新されます。" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:527 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:961 @@ -16394,8 +16213,7 @@ msgstr "設定の複製" #: ../../enterprise/godmode/agentes/manage_config_remote.php:345 msgid "The action to be performed cannot be reversed. Are you sure to continue?" -msgstr "" -"実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" +msgstr "実行したアクションを元に戻すことはできません。 続行してもよろしいですか?" #: ../../enterprise/godmode/agentes/module_manager.php:48 msgid "Create a new web analysis module" @@ -16421,16 +16239,16 @@ msgstr "新規ウェブ分析モジュールの作成" #: ../../enterprise/operation/agentes/policy_view.php:58 #, php-format msgid "" -"This node is configured with centralized mode. All policies information is " -"read only. Go to %s to manage it." +"This node is configured with centralized mode. All policies information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専" -"用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのポリシー情報は読み取り専用" +"です。管理するには %s に移動します。" #: ../../enterprise/godmode/policies/policy_plugins.php:56 msgid "" -"Successfully added to delete pending plugins. Will be deleted in the next " -"policy application." +"Successfully added to delete pending plugins. Will be deleted in the next policy " +"application." msgstr "削除待ちプラグインを追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_plugins.php:57 @@ -16529,8 +16347,8 @@ msgstr " の作成ができませんでした" #: ../../enterprise/godmode/policies/policy_alerts.php:266 #: ../../enterprise/godmode/policies/policy_external_alerts.php:157 msgid "" -"Successfully added to delete pending alerts. Will be deleted in the next " -"policy application." +"Successfully added to delete pending alerts. Will be deleted in the next policy " +"application." msgstr "削除待ちアラートを追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_alerts.php:291 @@ -16647,8 +16465,8 @@ msgid "" "Force the creation of modules even if the software agent does not have remote " "configuration" msgstr "" -"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制し" -"ます" +"ソフトウェアエージェントにリモート設定がない場合でも、モジュールの作成を強制しま" +"す" #: ../../enterprise/godmode/policies/configure_policy.php:151 msgid "Use secondary groups" @@ -16659,8 +16477,8 @@ msgid "" "Policy will be applied to those agents belonging to groups or secondary groups " "that have been selected" msgstr "" -"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適" -"用されます" +"ポリシーは、選択されたグループまたはセカンダリグループに属するエージェントに適用" +"されます" #: ../../enterprise/godmode/policies/policy_modules.php:300 msgid "" @@ -16707,15 +16525,14 @@ msgstr "データ設定内のモジュールタイプが空です。フォーム #: ../../enterprise/godmode/policies/policy_modules.php:1285 msgid "" "The module name in Data configuration is empty, take from text field of form." -msgstr "" -"データ設定内のモジュール名が空です。テキストフィールドに入力してください。" +msgstr "データ設定内のモジュール名が空です。テキストフィールドに入力してください。" #: ../../enterprise/godmode/policies/policy_modules.php:1315 #: ../../enterprise/godmode/policies/policy_modules.php:1328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:171 msgid "" -"Successfully added to delete pending modules. Will be deleted in the next " -"policy application." +"Successfully added to delete pending modules. Will be deleted in the next policy " +"application." msgstr "削除待ちモジュールに追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_modules.php:1319 @@ -16812,8 +16629,8 @@ 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 "" -"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグ" -"ループに追加されたすべての新しいエージェントに自動的に適用されます。" +"Pandora FMS バージョン 760 以降、グループ全体をポリシーに割り当てると、そのグルー" +"プに追加されたすべての新しいエージェントに自動的に適用されます。" #: ../../enterprise/godmode/policies/policy_queue.php:146 #, php-format @@ -17037,8 +16854,7 @@ msgstr "ポリシーを削除するにはエージェントがあってはいけ #: ../../enterprise/godmode/policies/policies.php:672 msgid "A policy with agents cannot be deleted. Purge it first" msgstr "" -"エージェントのあるポリシーは削除できません。先にエージェントを削除してくださ" -"い。" +"エージェントのあるポリシーは削除できません。先にエージェントを削除してください。" #: ../../enterprise/godmode/policies/policies.php:682 msgid "Deleting all policy agents" @@ -17161,8 +16977,8 @@ msgstr "インベントリモジュール" #: ../../enterprise/godmode/policies/policy_collections.php:118 msgid "" -"Successfully added to delete the collection. Will be deleted in the next " -"policy application." +"Successfully added to delete the collection. Will be deleted in the next policy " +"application." msgstr "コレクション削除を追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_collections.php:295 @@ -17188,14 +17004,14 @@ msgstr "追加するコレクションがありません" #: ../../enterprise/godmode/policies/policy_agents.php:101 msgid "" -"Successfully added to delete pending agents. Will be deleted in the next " -"policy application." +"Successfully added to delete pending agents. Will be deleted in the next policy " +"application." msgstr "削除待ちエージェントに追加しました。次回のポリシー適用時に削除されます。" #: ../../enterprise/godmode/policies/policy_agents.php:123 msgid "" -"Successfully added to delete pending groups. Will be deleted in the next " -"policy application." +"Successfully added to delete pending groups. Will be deleted in the next policy " +"application." msgstr "削除保留中グループに追加しました。 次のポリシー適用で削除されます。" #: ../../enterprise/godmode/policies/policy_agents.php:147 @@ -17221,11 +17037,11 @@ msgstr "追加しました %d" #: ../../enterprise/godmode/policies/policy_agents.php:281 msgid "" -"Number of agents added to the policy concurrently is too large. This might " -"cause the operation to fail or lead to performance issues." +"Number of agents added to the policy concurrently is too large. This might cause " +"the operation to fail or lead to performance issues." msgstr "" -"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗" -"したり、パフォーマンスの問題が発生したりする可能性があります。" +"ポリシーに同時に追加されたエージェントの数が多すぎます。 これにより、操作が失敗し" +"たり、パフォーマンスの問題が発生したりする可能性があります。" #: ../../enterprise/godmode/policies/policy_agents.php:288 msgid "Successfully added to policy" @@ -17284,8 +17100,7 @@ msgstr "ポリシー内エージェント" #: ../../extensions/module_groups.php:350 #: ../../godmode/reporting/visual_console_builder.wizard.php:368 #: ../../mobile/include/functions_web.php:27 ../../mobile/operation/home.php:57 -#: ../../mobile/operation/groups.php:77 -#: ../../include/functions_networkmap.php:1299 +#: ../../mobile/operation/groups.php:77 ../../include/functions_networkmap.php:1299 #: ../../include/functions_maps.php:46 #: ../../include/lib/Dashboard/Widgets/groups_status.php:231 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:299 @@ -17338,8 +17153,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 -#: ../../include/ajax/alert_list.ajax.php:286 +#: ../../mobile/operation/agents.php:406 ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 #: ../../include/class/AuditLog.class.php:130 msgid "S." @@ -17357,8 +17171,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 -#: ../../include/class/AuditLog.class.php:130 +#: ../../mobile/operation/agents.php:407 ../../include/class/AuditLog.class.php:130 msgid "A." msgstr "A." @@ -17426,8 +17239,8 @@ msgid "" "Some features of policy management are disabled because an instance of DB Tool " "is running on a node." msgstr "" -"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能" -"が無効になっています。" +"DB ツールのインスタンスがノード上で実行されているため、ポリシー管理の一部の機能が" +"無効になっています。" #: ../../enterprise/godmode/policies/policy.php:115 #: ../../enterprise/include/functions_policies.php:3805 @@ -17445,8 +17258,7 @@ msgstr "エージェントウィザード" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:57 #: ../../include/class/CredentialStore.class.php:965 #: ../../include/class/SnmpConsole.class.php:221 -#: ../../operation/snmpconsole/snmp_statistics.php:104 -#: ../../operation/menu.php:259 +#: ../../operation/snmpconsole/snmp_statistics.php:104 ../../operation/menu.php:259 msgid "SNMP" msgstr "SNMP" @@ -17546,8 +17358,8 @@ msgid "" "MIB files will be loaded and searched for SNMP trap definitions. They will not " "be installed on the system! You can use the MIB uploader for that purpose." msgstr "" -"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストー" -"ルされません。MIB アップローダはこの目的の範囲で利用できます。" +"MIBファイルがロードされ SNMP トラップ定義で検索されます。システムにはインストール" +"されません。MIB アップローダはこの目的の範囲で利用できます。" #: ../../enterprise/godmode/menu.php:16 msgid "Manage Satellite Server" @@ -17950,8 +17762,7 @@ 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:489 ../../extensions/agents_modules.php:493 #: ../../godmode/agentes/planned_downtime.editor.php:1235 #: ../../godmode/massive/massive_delete_action_alerts.php:246 #: ../../godmode/massive/massive_delete_modules.php:555 @@ -18084,8 +17895,8 @@ msgid "" "Search by these fields description, OID, Custom Value, SNMP Agent (IP), Single " "value, each Custom OIDs/Datas." msgstr "" -"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/" -"データ フィールドで検索します。" +"説明、OID、カスタム値、SNMPエージェント(IP)、単一値、それぞれのカスタム OID/デー" +"タ フィールドで検索します。" #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:202 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:262 @@ -18835,8 +18646,7 @@ msgstr "ランダムな名前" #: ../../enterprise/godmode/services/services.service.php:612 #: ../../enterprise/operation/services/massive/services.create.php:679 msgid "" -"This group will be used also to control access to this service and its " -"elements." +"This group will be used also to control access to this service and its elements." msgstr "" "このグループは、このサービスとその要素へのアクセスを制御するためにも使用されま" "す。" @@ -18940,12 +18750,12 @@ msgstr "SLA" #: ../../enterprise/godmode/services/services.service.php:869 msgid "" "Here are described the alert templates, which will use their default actions.\n" -"\t\tYou can modify the default behaviour editing alerts in the agent who " -"stores data and alert definitions about the service and the SLA status." +"\t\tYou can modify the default behaviour editing alerts in the agent who stores " +"data and alert definitions about the service and the SLA status." msgstr "" "アラートテンプレートの説明です。デフォルトのアクションで利用されます。\n" -"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントで" -"アラートを編集することによりデフォルトの動作を変更できます。" +"\t\tデータが存在しサービスとSLAの状態に関するアラートの定義があるエージェントでア" +"ラートを編集することによりデフォルトの動作を変更できます。" #: ../../enterprise/godmode/services/services.service.php:895 #: ../../enterprise/operation/services/massive/services.create.php:916 @@ -19007,8 +18817,7 @@ msgstr "SLA 障害サービスアラート" #: ../../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/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 @@ -19024,16 +18833,16 @@ msgstr "OK" #: ../../enterprise/godmode/services/services.service.php:1028 msgid "" -"This change in the service configuration will delete the history of the " -"service modules. Do you wish to continue?" +"This change in the service configuration will delete the history of the service " +"modules. Do you wish to continue?" msgstr "" -"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行しま" -"すか?" +"このサービス設定の変更により、サービスモジュールの履歴が削除されます。 続行します" +"か?" #: ../../enterprise/godmode/services/services.service.php:1030 msgid "" -"This change in the service configuration will prevent the SLA modules from " -"being created. Do you wish to continue?" +"This change in the service configuration will prevent the SLA modules from being " +"created. Do you wish to continue?" msgstr "" "このサービス設定の変更により、SLA モジュールを作成できなくなります。 続行します" "か?" @@ -19069,8 +18878,8 @@ msgstr "カスタムフィールド値" #: ../../enterprise/godmode/services/services.elements.php:260 msgid "Both 'name' and 'value' must be defined to filter. Ignored otherwise." msgstr "" -"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視" -"します。" +"フィルタに '名前' と '値' の両方が定義される必要があります。そうでなければ無視し" +"ます。" #: ../../enterprise/godmode/services/services.elements.php:265 msgid "MySQL Regular expressions case sensitive." @@ -19180,12 +18989,12 @@ msgstr "ヒストリ設定有効化" #, php-format msgid "" "Data will be available in active database as time as days you specify here. " -"Older information will be sent to historical database. Note data will be " -"purged from active database after %d days." +"Older information will be sent to historical database. Note data will be purged " +"from active database after %d days." msgstr "" -"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス" -"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" -"されることに注意してください。" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒスト" +"リデータベースに送信されます。 データは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:300 msgid "Data days old to keep in active database" @@ -19198,9 +19007,9 @@ msgid "" "here. Older information will be sent to historical database. Note data will be " "purged from active database after %d days." msgstr "" -"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒス" -"トリデータベースに送信されます。 データは %d 日後にメインのデータベースから削除" -"されることに注意してください。" +"データは、ここで指定した日数メインのデータベースで利用できます。 古い情報はヒスト" +"リデータベースに送信されます。 データは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:324 msgid "String data days old to keep in active database" @@ -19211,8 +19020,8 @@ msgid "" "Number of rows to be sent to historical database each 'delay' seconds. If you " "experience issues running pandora_db, try decreasing this value." msgstr "" -"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題" -"が発生した場合は、この値を減らしてみてください。" +"'delay' 秒ごとにヒストリデータベースに送信される行数。 pandora_db の実行で問題が" +"発生した場合は、この値を減らしてみてください。" #: ../../enterprise/godmode/setup/setup_history.php:345 msgid "Transference block size (Step)" @@ -19244,8 +19053,8 @@ msgid "" "Automatically create partitions on specific database IDB files (tagente_datos, " "tagente_datos_string, tevento). Monthly partitions." msgstr "" -"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)" -"にパーティションを自動的に作成します。 月次のパーティションです。" +"特定のデータベースの IDB ファイル(tagente_datos, tagente_datos_string, tevento)に" +"パーティションを自動的に作成します。 月次のパーティションです。" #: ../../enterprise/godmode/setup/setup_history.php:420 msgid "Automatic partition of big tables." @@ -19263,8 +19072,8 @@ msgid "" "active database after %d days." msgstr "" "イベントは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ" -"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除さ" -"れることに注意してください。" +"データベースに転送されます。 イベントは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:448 msgid "Events days old to keep in active database" @@ -19294,13 +19103,13 @@ msgstr "ヒストリトラップ設定" #: ../../enterprise/godmode/setup/setup_history.php:516 #, php-format msgid "" -"Traps will remain in active database a maximum of specified days, then they " -"will be transferred to historical database. Note traps will be purged from " -"active database after %d days." +"Traps will remain in active database a maximum of specified days, then they will " +"be transferred to historical database. Note traps will be purged from active " +"database after %d days." msgstr "" "トラップは、指定された最大日数の間メインのデータベースに残り、その後、ヒストリ" -"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除さ" -"れることに注意してください。" +"データベースに転送されます。 トラップは %d 日後にメインのデータベースから削除され" +"ることに注意してください。" #: ../../enterprise/godmode/setup/setup_history.php:523 msgid "Days old to keep in active database" @@ -19376,11 +19185,10 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:746 msgid "" "By enabling historical database, target connection will be tested. If needed, " -"database schema will be applied on your selected target, do you want to " -"proceed?" +"database schema will be applied on your selected target, do you want to proceed?" msgstr "" -"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応" -"じて、データベーススキーマが選択した対象に適用されます。続行しますか?" +"ヒストリデータベースを有効にすることで、対象への接続がテストされます。 必要に応じ" +"て、データベーススキーマが選択した対象に適用されます。続行しますか?" #: ../../enterprise/godmode/setup/setup_history.php:747 msgid "" @@ -19388,9 +19196,9 @@ msgid "" "old data will remain in previous node, unlinked from this console and not " "maintained, do you want to proceed?" msgstr "" -"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されます" -"が、古いデータは前のノードに残り、このコンソールからリンク解除され、維持されま" -"せん。続行しますか?" +"ヒストリデータベースの対象を変更すると、スキーマは新しいものに再作成されますが、" +"古いデータは前のノードに残り、このコンソールからリンク解除され、維持されません。" +"続行しますか?" #: ../../enterprise/godmode/setup/setup_history.php:749 #, php-format @@ -19398,17 +19206,17 @@ msgid "" "Disabling historical database, you will not keep any data older than %d days. " "Are you sure?" msgstr "" -"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろ" -"しいですか?" +"ヒストリデータベースを無効にすると、%d 日より古いデータは保持されません。 よろし" +"いですか?" #: ../../enterprise/godmode/setup/setup_history.php:753 #, php-format msgid "" -"Historical database allows you to keep data older than %d days. This action " -"will produce no changes. Historical database will remain disabled." +"Historical database allows you to keep data older than %d days. This action will " +"produce no changes. Historical database will remain disabled." msgstr "" -"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクショ" -"ンでは変更は行われません。ヒストリデータベースは無効のままになります。" +"履歴データベースを使用すると、%d 日より古いデータを保持できます。 このアクション" +"では変更は行われません。ヒストリデータベースは無効のままになります。" #: ../../enterprise/godmode/setup/setup_history.php:758 msgid "" @@ -19416,9 +19224,9 @@ msgid "" "needed, database schema will be applied on your selected target. Information " "stored in previous configuration will be IGNORED, do you want to proceed?" msgstr "" -"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必" -"要に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存" -"された情報は無視されます。続行しますか?" +"ヒストリデータベースの対象を変更することにより、新しい接続がテストされます。 必要" +"に応じて、データベーススキーマが選択した対象に適用されます。 以前の設定で保存され" +"た情報は無視されます。続行しますか?" #: ../../enterprise/godmode/setup/setup_history.php:761 msgid "Please ensure all fields matches your needs." @@ -19432,14 +19240,14 @@ msgstr "更新が予定されています。" msgid "" " If you are replicating events, events validated or deleted on the metaconsole " "WILL NOT be deleted or validated here. This option is just to allow local " -"pandora users to see events, but not to operate with them. Operation, when " -"event replication is enabled, should be done only in metaconsole" +"pandora users to see events, but not to operate with them. Operation, when event " +"replication is enabled, should be done only in metaconsole" msgstr "" -" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここで" -"は削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベ" -"ントを表示できるようにするためだけのものであり、イベントを操作するためのもので" -"はありません。イベントの複製が有効になっている場合の操作は、メタコンソールでの" -"み実行する必要があります。" +" イベントを複製する場合、メタコンソールで検証または削除されたイベントは、ここでは" +"削除または検証されません。 このオプションは、ローカルの pandora ユーザがイベント" +"を表示できるようにするためだけのものであり、イベントを操作するためのものではあり" +"ません。イベントの複製が有効になっている場合の操作は、メタコンソールでのみ実行す" +"る必要があります。" #: ../../enterprise/godmode/setup/setup.php:45 msgid "Yes and change status" @@ -19590,8 +19398,8 @@ msgid "" "Token previously configured on the destination Pandora console in order to use " "delegated authentification." msgstr "" -"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークン" -"です。" +"認証代行を利用するために、対象となる Pandora コンソールで事前に設定するトークンで" +"す。" #: ../../enterprise/godmode/setup/setup_metaconsole.php:274 msgid "Console URLxxxxxx" @@ -19690,12 +19498,11 @@ msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:1411 #: ../../enterprise/godmode/setup/setup_acl.php:68 #: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:377 -#: ../../godmode/users/profile_list.php:92 +#: ../../godmode/groups/group_list.php:377 ../../godmode/users/profile_list.php:92 #: ../../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/user_list.php:297 ../../godmode/users/configure_user.php:276 +#: ../../godmode/menu.php:165 msgid "Profiles" msgstr "プロファイル" @@ -19775,8 +19582,8 @@ msgid "" "SAML field where search for the user email (while autocreate remote users is " "enabled)" msgstr "" -"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になっ" -"ている場合)" +"ユーザのメールを検索する SAML フィールド (リモートユーザの自動作成が有効になって" +"いる場合)" #: ../../enterprise/godmode/setup/setup_auth.php:1203 msgid "SAML group name attribute" @@ -19787,8 +19594,8 @@ msgid "" "SAML field where search for the group name (while autocreate remote users is " "enabled)" msgstr "" -"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になって" -"いる場合)" +"グループ名の検索を行う SAML フィールド (リモートユーザの自動作成が有効になってい" +"る場合)" #: ../../enterprise/godmode/setup/setup_auth.php:1211 msgid "Simple attribute / Multivalue attribute" @@ -19883,8 +19690,7 @@ msgstr "プロファイルへカスタム要素を追加" #: ../../godmode/users/configure_profile.php:276 #: ../../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 +#: ../../include/functions_profile.php:203 ../../operation/users/user_edit.php:998 msgid "Profile name" msgstr "プロファイル名" @@ -19968,9 +19774,9 @@ msgid "" "max_input_time = -1" msgstr "" "一括操作のためには、PHPのタイムアウトパラメータを正しく設定する必要があります。" -"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タ" -"イムアウトパラメータを次のように設定してください。
max_execution_time = " -"0max_input_time = -1" +"php設定ファイル(php.ini)を開き(例:sudo vi /etc/php5/apache2/php.ini;)タイ" +"ムアウトパラメータを次のように設定してください。
max_execution_time = 0max_input_time = -1" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:263 #: ../../enterprise/godmode/reporting/graph_template_wizard.php:205 @@ -19998,8 +19804,8 @@ msgid "" "Left in blank if you want to use default name: Template name - agents (num " "agents) - Date" msgstr "" -"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利" -"用したい場合は、空白にしてください。" +"デフォルトの名前「テンプレート名 - エージェント (エージェント数) - 日付」 を利用" +"したい場合は、空白にしてください。" #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:314 #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:377 @@ -20011,8 +19817,7 @@ msgstr "対象グループ" #: ../../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 +#: ../../include/ajax/heatmap.ajax.php:129 ../../include/ajax/heatmap.ajax.php:310 #: ../../include/lib/Dashboard/Widgets/heatmap.php:301 #: ../../operation/heatmap.php:116 ../../operation/agentes/group_view.php:350 msgid "Tag" @@ -20156,14 +19961,14 @@ msgstr "クラウド監視自動検出タスク作成" msgid "" "Within this view you will find information collected using Discovery Cloud AWS " "task. You will be able to see the most relevant information about your " -"infrastructure, such as the current cost of your contracted services, the " -"number of instances per region or resource usage metrics. In order to collect " -"this information you must create a Cloud Monitoring Discovery task." +"infrastructure, such as the current cost of your contracted services, the number " +"of instances per region or resource usage metrics. In order to collect this " +"information you must create a Cloud Monitoring Discovery task." msgstr "" -"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 " -"契約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指" -"標など、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集する" -"には、クラウド監視自動検出タスクを作成する必要があります。" +"この画面には、クラウド検出 AWS タスクを使用して収集された情報が表示されます。 契" +"約サービスの現在のコスト、リージョンごとのインスタンス数、リソース使用量の指標な" +"ど、インフラに関する最も関連性の高い情報を確認できます。 この情報を収集するには、" +"クラウド監視自動検出タスクを作成する必要があります。" #: ../../enterprise/godmode/reporting/aws_view.php:192 msgid "Press the create button to begin." @@ -20230,14 +20035,14 @@ msgid "" "You can use macro _agentalias_ here. Left in blank if you want to use default " "name: Template name - agent alias" msgstr "" -"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白" -"のままにします: テンプレート名 - エージェントの別名" +"ここでマクロ _agentalias_ を使用できます。 デフォルトの名前を使用する場合は空白の" +"ままにします: テンプレート名 - エージェントの別名" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:244 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:895 msgid "" -"Case insensitive regular expression for agent alias. For example: Network.* " -"will match with the following agent alias: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent alias. For example: Network.* will " +"match with the following agent alias: network_agent1, NetworK CHECKS" msgstr "" "エージェントの別名の大文字と小文字を区別しない正規表現。 例: Network.* は、次の" "エージェント別名と一致します: network_agent1, NetworK CHECKS" @@ -20386,8 +20191,7 @@ msgstr "12時間" #: ../../enterprise/operation/log/log_viewer.php:676 #: ../../godmode/reporting/create_container.php:422 #: ../../include/functions.php:2758 ../../include/ajax/module.php:224 -#: ../../include/ajax/graph.ajax.php:150 -#: ../../include/class/AuditLog.class.php:211 +#: ../../include/ajax/graph.ajax.php:150 ../../include/class/AuditLog.class.php:211 msgid "1 day" msgstr "1日" @@ -20409,8 +20213,7 @@ msgstr "先週" #: ../../enterprise/operation/log/log_viewer.php:680 #: ../../godmode/reporting/create_container.php:426 #: ../../include/functions.php:2760 ../../include/ajax/module.php:226 -#: ../../include/ajax/graph.ajax.php:154 -#: ../../include/class/AuditLog.class.php:213 +#: ../../include/ajax/graph.ajax.php:154 ../../include/class/AuditLog.class.php:213 msgid "15 days" msgstr "15日" @@ -20544,11 +20347,11 @@ msgstr "最新の値" #: ../../godmode/reporting/reporting_builder.item_editor.php:7472 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 " -"most recent information" +"Information contained in this kind of reports will be always reporting the most " +"recent information" msgstr "" -"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれ" -"るのは、最新の情報のみとなります。" +"警告: 間隔 0 のレポートは過去の情報表示には利用できません。このレポートに含まれる" +"のは、最新の情報のみとなります。" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:217 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:211 @@ -20697,8 +20500,7 @@ msgstr "復旧を表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2741 msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom" +"Show a resume table with max, min, average of total modules on the report bottom" msgstr "レポートの下に、全モジュールの最大、最小、平均とともに、復旧表を表示" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:462 @@ -20760,8 +20562,7 @@ msgstr "並び順:" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:338 msgid "" -"Show a resume table with max, min, average of total modules on the report " -"bottom:" +"Show a resume table with max, min, average of total modules on the report bottom:" msgstr "レポートの下に全モジュールの最大、最小、平均を含む復旧表を表示:" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:358 @@ -20799,8 +20600,8 @@ msgid "" "SLA calculation must be performed taking into account the failover modules " "assigned to the primary module" msgstr "" -"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを" -"考慮して実行する必要があります" +"SLA の計算は、プライマリモジュールに割り当てられたフェールオーバーモジュールを考" +"慮して実行する必要があります" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:470 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:405 @@ -20872,8 +20673,8 @@ msgstr "詳細グラフ (TIP)" #: ../../operation/agentes/stat_win.php:397 #: ../../operation/agentes/interface_traffic_graph_win.php:242 msgid "" -"TIP mode charts do not support average - maximum - minimum series, you can " -"only enable TIP or average, maximum or minimum series" +"TIP mode charts do not support average - maximum - minimum series, you can only " +"enable TIP or average, maximum or minimum series" msgstr "" "詳細(TIP)モードグラフは平均-最大-最小をサポートしていません。詳細または平均、最" "大、最小を有効にできます" @@ -20895,11 +20696,11 @@ msgstr "パーセント値" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:595 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2554 msgid "" -"If this option was checked, only adding in elements that type of modules " -"support this option." +"If this option was checked, only adding in elements that type of modules support " +"this option." msgstr "" -"このオプションをチェックすると、このオプションをサポートするモジュールタイプの" -"要素のみ追加できます。" +"このオプションをチェックすると、このオプションをサポートするモジュールタイプの要" +"素のみ追加できます。" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:609 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2835 @@ -21180,8 +20981,7 @@ msgstr "JSON" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:473 #: ../../enterprise/operation/reporting/custom_reporting.php:18 -#: ../../extensions/insert_data.php:231 -#: ../../operation/agentes/exportdata.php:309 +#: ../../extensions/insert_data.php:231 ../../operation/agentes/exportdata.php:309 msgid "CSV" msgstr "CSVファイル" @@ -21437,8 +21237,8 @@ msgstr "ローカルメタコンソール" #: ../../godmode/reporting/reporting_builder.item_editor.php:1169 #: ../../include/lib/Dashboard/Widgets/top_n.php:207 msgid "" -"Case insensitive regular expression for agent name. For example: Network.* " -"will match with the following agent names: network_agent1, NetworK CHECKS" +"Case insensitive regular expression for agent name. For example: Network.* will " +"match with the following agent names: network_agent1, NetworK CHECKS" msgstr "" "エージェント名に対して大文字小文字を区別しない正規表現です。例: Network.* は、" "network_agent1, NetworKCHECKS というエージェント名にマッチします。" @@ -21449,14 +21249,14 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1192 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 " -"be fulfilled with the literally string of the module name, if not you can use " -"a regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " +"you use this field with \"Module exact match\" enabled then this field has to be " +"fulfilled with the literally string of the module name, if not you can use a " +"regular expression. Example: .*usage.* will match: cpu_usage, vram usage in " "matchine 1." msgstr "" "モジュール名に対して大文字小文字を区別しない正規表現または文字列です。例: \"モ" -"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字" -"列そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、" +"ジュール完全一致\" を有効にしてこのフィールドを使った場合は、モジュール名の文字列" +"そのままの指定です。そうでない場合は正規表現です。例えば .*usage.* は、" "cpu_usage、vram usage in machine 1 にマッチします。" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2121 @@ -21497,8 +21297,7 @@ msgstr "データのないアイテムを表示したくない場合はチェッ #: ../../include/functions_visual_map_editor.php:397 #: ../../include/functions_visual_map_editor.php:400 #: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 -#: ../../include/functions_reports.php:573 -#: ../../include/functions_reports.php:660 +#: ../../include/functions_reports.php:573 ../../include/functions_reports.php:660 #: ../../include/functions_reports.php:666 #: ../../include/functions_reporting.php:10655 msgid "Custom graph" @@ -21517,8 +21316,8 @@ msgstr "カスタム SQL テンプレート" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2295 #: ../../godmode/reporting/reporting_builder.item_editor.php:2386 msgid "" -"The entities of the fields that contain them must be included. Also is " -"possible use macros like `_start_date_` or `_end_date_`." +"The entities of the fields that contain them must be included. Also is possible " +"use macros like `_start_date_` or `_end_date_`." msgstr "" "それらを含むフィールドのエンティティを含める必要があります。 `_start_date_` や " "`_end_date_` などのマクロを使用することもできます。" @@ -21708,8 +21507,8 @@ msgid "" "If it is checked, the regexp or name of modules match only each to each to " "agent, instead create a big graph with all modules from all agents." msgstr "" -"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチし" -"ます。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します。" +"チェックした場合、それぞれのエージェントでモジュール名または正規表現でマッチしま" +"す。そうでなければ、全エージェントの全モジュールの大きなグラフを生成します。" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3305 #: ../../godmode/reporting/reporting_builder.item_editor.php:3367 @@ -22001,8 +21800,7 @@ msgid "Updating console task" msgstr "コンソールタスクの更新中" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:524 -#: ../../godmode/menu.php:55 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:105 +#: ../../godmode/menu.php:55 ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "タスク一覧" @@ -22053,8 +21851,8 @@ msgid "" "All company names used here are for identification purposes only. Use of these " "names, logos, and brands does not imply endorsement." msgstr "" -"ここで使用されているすべての会社名は、識別することのみを目的としています。 これ" -"らの名前、ロゴ、およびブランドの使用の承認を意味するものではありません。" +"ここで使用されているすべての会社名は、識別することのみを目的としています。 これら" +"の名前、ロゴ、およびブランドの使用の承認を意味するものではありません。" #: ../../enterprise/godmode/wizards/Cloud.class.php:240 #: ../../enterprise/godmode/wizards/Cloud.class.php:248 @@ -22065,11 +21863,10 @@ msgstr "%s 認証情報" #: ../../enterprise/godmode/wizards/Cloud.class.php:264 msgid "" "If a task with the selected credentials is already running, it will be edited. " -"To create a new one, another account from the credential store must be " -"selected." +"To create a new one, another account from the credential store must be selected." msgstr "" -"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 " -"新規作成するには、認証情報ストアから別のアカウントを選択する必要があります。" +"選択した資格情報を持つタスクがすでに実行されている場合は、それが編集されます。 新" +"規作成するには、認証情報ストアから別のアカウントを選択する必要があります。" #: ../../enterprise/godmode/wizards/Cloud.class.php:284 msgid "Manage accounts" @@ -22304,15 +22101,15 @@ msgid "" "Successfully deleted export target. All the linked modules will be " "automatically unattached" msgstr "" -"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは" -"自動的に接続解除されます" +"エクスポートターゲットが正常に削除されました。 リンクされたすべてのモジュールは自" +"動的に接続解除されます" #: ../../enterprise/godmode/servers/manage_export.php:135 msgid "" "Can't be created export target: User and password must be filled with FTP mode" msgstr "" -"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力" -"する必要があります" +"エクスポートターゲットを作成できません: FTP モードではユーザとパスワードを入力す" +"る必要があります" #: ../../enterprise/godmode/servers/manage_export.php:155 msgid "There are no defined export targets" @@ -22365,21 +22162,20 @@ 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:556 ../../include/functions_servers.php:1221 +#: ../../include/functions_ui.php:7271 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:569 ../../include/functions_servers.php:1224 +#: ../../include/functions_ui.php:7276 #: ../../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:855 ../../include/functions_servers.php:1269 msgid "Alert server" msgstr "アラートサーバ" @@ -22398,8 +22194,7 @@ msgstr "アラートサーバ" #: ../../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 +#: ../../include/functions_servers.php:595 ../../include/functions_servers.php:1257 #: ../../include/class/CustomNetScan.class.php:485 #: ../../general/first_task/recon_view.php:22 msgid "Discovery server" @@ -22412,8 +22207,8 @@ 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:608 ../../include/functions_servers.php:1236 +#: ../../include/functions_ui.php:7281 #: ../../include/class/AgentWizard.class.php:1363 msgid "Plugin server" msgstr "プラグインサーバ" @@ -22429,27 +22224,23 @@ msgid "SNMP server" msgstr "SNNP サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:404 -#: ../../include/functions_servers.php:673 -#: ../../include/functions_servers.php:1245 +#: ../../include/functions_servers.php:673 ../../include/functions_servers.php:1245 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:660 ../../include/functions_servers.php:1251 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:647 ../../include/functions_servers.php:1248 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:686 ../../include/functions_servers.php:1254 msgid "Event server" msgstr "イベントサーバ" @@ -22463,14 +22254,13 @@ msgid "WUX server" msgstr "WUX サーバ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:440 -#: ../../include/functions_servers.php:816 -#: ../../include/functions_servers.php:1272 +#: ../../include/functions_servers.php:816 ../../include/functions_servers.php:1272 msgid "NCM server" msgstr "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:634 ../../include/functions_servers.php:1242 +#: ../../include/functions_ui.php:7291 #: ../../include/class/AgentWizard.class.php:1373 msgid "WMI server" msgstr "WMI サーバ" @@ -22614,8 +22404,8 @@ msgid "" "Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " "files so that they don't interfere with remote agent configuration" msgstr "" -"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモー" -"ト エージェントの設定に干渉しないようにするには、1 に設定します。" +"動的に自動検出されたモジュール (SNMP、WMI...) を別のファイルに移動して、リモート " +"エージェントの設定に干渉しないようにするには、1 に設定します。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Exec interval" @@ -22644,9 +22434,9 @@ msgid "" "in /usr/bin/fping and update this field with the new path" msgstr "" "Enterprise ICMP サーバによって使用されます。 CentOS にインストールする場合のデ" -"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールす" -"る場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストー" -"ル先のパスを設定します。" +"フォルトパスは /usr/sbin/fping です。別のディストリビューションにインストールする" +"場合は、fping を /usr/bin/fping にインストールし、このフィールドにインストール先" +"のパスを設定します。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 msgid "Path to Pandora Fast SNMP binary" @@ -22669,16 +22459,14 @@ msgid "General GIS exec" msgstr "一般的な GIS 実行" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 -msgid "" -"Path to general GIS coordinates generator. It should be an executable file" +msgid "Path to general GIS coordinates generator. It should be an executable file" msgstr "" "一般的な GIS 座標ジェネレータへのパス。 実行可能ファイルである必要があります" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" -"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要がありま" -"す)" +"エージェントが配置されるグループ (Pandora FMS コンソールに存在する必要があります)" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Host file" @@ -22871,8 +22659,8 @@ msgid "" "Comma separated list of networks (in slash notation) to scan for host auto-" "discovery (example: 192.168.0.0/24,192.168.1.0/24)" msgstr "" -"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表" -"記) (例: 192.168.0.0/24,192.168.1.0/24)" +"ホストの自動検出でスキャンするネットワークのカンマ区切りリスト (スラッシュ表記) " +"(例: 192.168.0.0/24,192.168.1.0/24)" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 msgid "Recon timing template" @@ -22894,8 +22682,7 @@ msgstr "サーバ IP" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" -"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してくださ" -"い" +"Tentacle サーバのアドレス。 Pandora FMS データサーバのアドレスを入力してください" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Name of the Satellite server (the hostname is used by default)" @@ -22909,8 +22696,8 @@ msgstr "サーバパス" msgid "" "Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" -"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用" -"されます)" +"XML ファイルがコピーされるパス (転送モードが local に設定されている場合のみ使用さ" +"れます)" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "Server port" @@ -22950,8 +22737,8 @@ msgstr "キープアライブ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "" -"Interval of the main server loop in seconds. Status updates are sent to " -"Pandora every keepalive seconds" +"Interval of the main server loop in seconds. Status updates are sent to Pandora " +"every keepalive seconds" msgstr "" "メインサーバループの間隔 (秒単位)。 ステータスの更新はキープアライブ秒ごとに " "Pandora に送信されます" @@ -23015,9 +22802,9 @@ msgid "" "Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " "version). WARNING: some modules could stop working if you change this setting" msgstr "" -"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョ" -"ンを明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しな" -"くなる可能性があります" +"使用するデフォルトの SNMP バージョン (1 または 2c、SNMPv3 モジュールはバージョン" +"を明示的に示します)。 警告: この設定を変更すると、一部のモジュールが動作しなくな" +"る可能性があります" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c block" @@ -23175,8 +22962,7 @@ msgid "Startup delay" msgstr "開始遅延" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 -msgid "" -"Wait startup_delay seconds before sending XML data files for the first time" +msgid "Wait startup_delay seconds before sending XML data files for the first time" msgstr "初回の XML データファイル送信の前に、startup_delay 秒待機します。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 @@ -23216,8 +23002,7 @@ msgid "Temporal minimum size" msgstr "一時的な最小サイズ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159 -msgid "" -"Minimum available bytes in the temporal directory to enable the XML buffer" +msgid "Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "XML バッファを有効にする場合の一時ディレクトリで使用可能な最小バイト数" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 @@ -23315,11 +23100,11 @@ msgstr "timeout バイナリ" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254 msgid "" -"If defined, the timeout program (usually /usr/bin/timeout) will be used to " -"call the Tentacle client" +"If defined, the timeout program (usually /usr/bin/timeout) will be used to call " +"the Tentacle client" msgstr "" -"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle ク" -"ライアントの呼び出しに使用されます。" +"設定されている場合、timeout プログラム (通常は /usr/bin/timeout) が Tentacle クラ" +"イアントの呼び出しに使用されます。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260 msgid "IPAM interval" @@ -23336,12 +23121,12 @@ msgstr "セカンダリモード" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1270 msgid "" "If secondary_mode is set to on_error, data files are copied to the secondary " -"server only if the primary server fails. If set to always, data files are " -"always copied to the secondary server" +"server only if the primary server fails. If set to always, data files are always " +"copied to the secondary server" msgstr "" -"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生し" -"た場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定" -"すると、データ ファイルは常にセカンダリサーバにコピーされます。" +"secondary_mode が on_error に設定されている場合、プライマリサーバに障害が発生した" +"場合にのみ、データファイルがセカンダリサーバにコピーされます。 always に設定する" +"と、データ ファイルは常にセカンダリサーバにコピーされます。" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1276 msgid "Secondary server IP" @@ -23374,11 +23159,10 @@ msgstr "リモート設定ファイル削除" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1388 msgid "" -"Delete this conf file implies that server will send back local config to " -"console" +"Delete this conf file implies that server will send back local config to console" msgstr "" -"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すこと" -"を意味します" +"この conf ファイルを削除すると、サーバがローカル設定をコンソールに送り返すことを" +"意味します" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1432 msgid "General server configuration" @@ -23426,8 +23210,7 @@ msgstr "サテライトサーバ" #: ../../enterprise/godmode/servers/list_satellite.php:41 #: ../../godmode/setup/license.php:261 -#: ../../godmode/servers/modificar_server.php:75 -#: ../../include/functions_ui.php:961 +#: ../../godmode/servers/modificar_server.php:75 ../../include/functions_ui.php:961 #: ../../include/class/Diagnostics.class.php:1207 msgid "Satellite" msgstr "サテライト" @@ -23568,8 +23351,7 @@ msgstr "スケジュールされたレポートは、添付ファイルなしで #: ../../enterprise/include/functions_cron.php:1558 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 @@ -23581,8 +23363,7 @@ msgid "Attached to this email there's a CSV file of the logs" msgstr "このメールに添付されているのは、ログの CSV ファイルです。" #: ../../enterprise/include/functions_cron.php:1805 -#: ../../mobile/include/functions_web.php:84 -#: ../../mobile/include/ui.class.php:327 +#: ../../mobile/include/functions_web.php:84 ../../mobile/include/ui.class.php:327 #: ../../include/functions_reporting.php:15840 msgid "Generated at" msgstr "更新日時:" @@ -23626,8 +23407,8 @@ msgstr "自動検出コンソールタスクが正しく動作していません msgid "" "Discovery relies on a proper setup of cron, the time-based scheduling service" msgstr "" -"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存" -"しています" +"自動検出は、時間ベースのスケジューリングサービスである cron の適切な設定に依存し" +"ています" #: ../../enterprise/include/functions_tasklist.php:59 #: ../../include/class/ConsoleSupervisor.php:2536 @@ -23794,14 +23575,13 @@ msgstr "開始ネットワーク" #: ../../enterprise/include/ajax/ipam.ajax.php:316 msgid "" -"The networks will be created/added starting from this address in the " -"subnetting range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). " -"If no value was provided, it uses the starting address of the supernet by " -"default." +"The networks will be created/added starting from this address in the subnetting " +"range given by the mask. Use CIDR format (e.g.: 192.168.72.0/22). If no value " +"was provided, it uses the starting address of the supernet by default." msgstr "" "ネットワークは、マスクで指定されたサブネット範囲のアドレスから作成/追加されま" -"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デ" -"フォルトでスーパーネットの開始アドレスが使用されます。" +"す。 CIDR 形式(例:192.168.72.0/22)を使用します。値が指定されていない場合、デフォ" +"ルトでスーパーネットの開始アドレスが使用されます。" #: ../../enterprise/include/ajax/ipam.ajax.php:320 msgid "Max. number" @@ -24374,8 +24154,7 @@ msgstr "mysqldump の実行で問題が発生しました。" msgid "" "In order to make backups it is necessary to check if the configuration is " "correct." -msgstr "" -"バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" +msgstr "バックアップを作成するには、設定が正しいかどうかを確認する必要があります。" #: ../../enterprise/include/functions_backup.php:256 msgid "No description" @@ -24643,16 +24422,15 @@ msgstr "定義済みアラート" #: ../../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 +#: ../../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 +#: ../../include/functions_groups.php:2718 ../../include/functions_groups.php:2741 +#: ../../operation/tree.php:506 ../../operation/tree.php:507 +#: ../../operation/tree.php:508 msgid "Fired alerts" msgstr "発生したアラート" @@ -24661,8 +24439,7 @@ msgid "Last 8 hours events" msgstr "直近 8時間のイベント" #: ../../enterprise/include/functions_reporting_csv.php:1036 -#: ../../include/functions_reports.php:789 -#: ../../include/functions_reports.php:795 +#: ../../include/functions_reports.php:789 ../../include/functions_reports.php:795 msgid "Group report" msgstr "グループレポート" @@ -24884,8 +24661,7 @@ 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:1337 ../../include/functions_config.php:3541 msgid "Fail" msgstr "失敗" @@ -25170,8 +24946,8 @@ msgstr "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 +#: ../../godmode/events/custom_events.php:94 ../../include/functions_events.php:244 +#: ../../operation/events/events.php:2665 msgid "Agent ID" msgstr "エージェント ID" @@ -25186,9 +24962,8 @@ msgstr "エージェント ID" #: ../../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 -#: ../../include/class/AuditLog.class.php:114 +#: ../../include/functions_reporting_html.php:6016 ../../include/functions.php:3109 +#: ../../include/ajax/events.php:1763 ../../include/class/AuditLog.class.php:114 #: ../../operation/users/user_edit.php:743 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:333 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:426 @@ -25282,10 +25057,8 @@ msgstr "未初期化数" #: ../../enterprise/include/functions_reporting_csv.php:2041 #: ../../enterprise/operation/services/services.service.php:119 #: ../../enterprise/operation/services/services.list.php:546 -#: ../../include/functions_reports.php:710 -#: ../../include/functions_reports.php:715 -#: ../../include/functions_reports.php:719 -#: ../../include/functions_reports.php:723 +#: ../../include/functions_reports.php:710 ../../include/functions_reports.php:715 +#: ../../include/functions_reports.php:719 ../../include/functions_reports.php:723 #: ../../include/functions_reports.php:729 msgid "SLA" msgstr "SLA" @@ -25454,8 +25227,7 @@ msgid "Event Report Log" msgstr "イベントレポートログ" #: ../../enterprise/include/functions_reporting_csv.php:2581 -#: ../../include/functions_reports.php:951 -#: ../../include/functions_reports.php:952 +#: ../../include/functions_reports.php:951 ../../include/functions_reports.php:952 #: ../../include/functions_reporting.php:5108 msgid "Permissions report" msgstr "権限レポート" @@ -25551,8 +25323,8 @@ msgstr "Netflow トップ N 接続" #: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:6015 -#: ../../include/functions.php:3109 ../../include/functions_netflow.php:347 +#: ../../include/functions_reporting_html.php:6015 ../../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 @@ -25565,8 +25337,7 @@ msgid "Destination IP" msgstr "宛先 IP" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1024 -#: ../../include/functions_config.php:3453 +#: ../../include/functions_config.php:1024 ../../include/functions_config.php:3453 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:294 #: ../../operation/network/network_report.php:326 @@ -25798,8 +25569,8 @@ msgid "" "This VMware configuration has been already defined. Please edit it or create a " "new one." msgstr "" -"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくだ" -"さい。" +"この VMware 設定はすでに定義されています。 編集するか、新しいものを作成してくださ" +"い。" #: ../../enterprise/include/class/VMware.app.php:264 #: ../../enterprise/include/class/DB2.app.php:197 @@ -25906,8 +25677,8 @@ msgid "" "You must select a Discovery Server to run the Task, otherwise the Recon Task " "will never run" msgstr "" -"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検" -"出タスクは実行されません。" +"タスクを実行するには自動検出サーバを選択する必要があります。選択しないと自動検出" +"タスクは実行されません。" #: ../../enterprise/include/class/VMware.app.php:656 msgid "Datacenter user" @@ -25925,8 +25696,8 @@ msgid "" "Manual interval means that it will be executed only On-demand, The minimum " "recomended interval is 5 minutes" msgstr "" -"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は " -"5分です。" +"手動間隔は、オンデマンドのみで実行されることを意味します。推奨される最小間隔は 5" +"分です。" #: ../../enterprise/include/class/VMware.app.php:677 #: ../../enterprise/include/class/VMware.app.php:894 @@ -25956,8 +25727,8 @@ msgid "" "This name must match with the name wich appears when you log in you VMware " "manager" msgstr "" -"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があ" -"ります" +"この名前は、VMware Manager にログインしたときに表示される名前と一致する必要があり" +"ます" #: ../../enterprise/include/class/VMware.app.php:748 msgid "Encrypt passwords" @@ -26103,8 +25874,8 @@ msgid "" "Sofware agent version with id %s does not exist, please, add it to your " "repository %s " msgstr "" -"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加" -"してください " +"ID %s のソフトウェアエージェントバージョンが存在しません。リポジトリ %s に追加し" +"てください " #: ../../enterprise/include/class/DeploymentCenter.class.php:526 msgid "No target could be added. " @@ -26439,8 +26210,8 @@ msgstr "再同期データディレクトリ" #: ../../enterprise/include/class/DatabaseHA.class.php:847 msgid "Directory where mysql files are stored (must be common to all nodes)" msgstr "" -"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があ" -"ります)" +"mysql ファイルが保存されているディレクトリ (すべてのノードに共通である必要があり" +"ます)" #: ../../enterprise/include/class/DatabaseHA.class.php:857 msgid "Resync tmp directory" @@ -26451,8 +26222,7 @@ msgid "" "Temporary working directory where to store the backups that will be used to re-" "synchronize a slave node" msgstr "" -"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクト" -"リ" +"スレーブノードの再同期に使用されるバックアップを保存する一時的な作業ディレクトリ" #: ../../enterprise/include/class/DatabaseHA.class.php:868 msgid "Resync MySQL user" @@ -26463,8 +26233,8 @@ msgid "" "User of the system that owns the MySQL files, necessary for the adjustment of " "permissions (by default mysql)" msgstr "" -"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトで" -"は mysql)" +"MySQL ファイルを所有するシステムのユーザ。権限の調整に必要です。(デフォルトでは " +"mysql)" #: ../../enterprise/include/class/DatabaseHA.class.php:879 msgid "Resync MySQL group" @@ -26472,11 +26242,10 @@ msgstr "再同期 MySQL グループ" #: ../../enterprise/include/class/DatabaseHA.class.php:880 msgid "" -"System group that owns the MySQL files, needed for permissions setting " -"(default mysql)" -msgstr "" -"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは " +"System group that owns the MySQL files, needed for permissions setting (default " "mysql)" +msgstr "" +"MySQLファイルを所有するシステムグループ。権限設定に必要です。(デフォルトは mysql)" #: ../../enterprise/include/class/DatabaseHA.class.php:941 #: ../../enterprise/include/class/NewDatabaseHA.class.php:261 @@ -26686,8 +26455,8 @@ msgid "" "Upload only official binary files from your device provide in raw format (not " "compressed)" msgstr "" -"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロード" -"してください" +"デバイスの公式のバイナリファイルをそのままの形式(圧縮等をしない)でアップロードし" +"てください" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2206 #: ../../godmode/modules/manage_network_templates.php:83 @@ -26733,16 +26502,16 @@ msgstr "ファームウエアを削除しました" msgid "" "Not executed yet, no content to display, define your own in following textarea." msgstr "" -"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定" -"義してください。" +"まだ実行されていません。表示するコンテンツはありません。次のテキストエリアで定義" +"してください。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2489 msgid "" "Following content is already queued to be executed! You must wait until " "execution is finished before being able to modify this." msgstr "" -"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了" -"するまで待つ必要があります。" +"以下のコンテンツはすでに実行待ちになっています。これを変更するには、実行が終了す" +"るまで待つ必要があります。" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2581 msgid "Check progress" @@ -26790,17 +26559,17 @@ msgstr "不正な ID 指定です" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2820 msgid "" -"Is highly recommendable to execute this kind of operation from agent details " -"to preview the script content" +"Is highly recommendable to execute this kind of operation from agent details to " +"preview the script content" msgstr "" -"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューする" -"ことを強くお勧めします" +"エージェントの詳細からこの種の操作を実行して、スクリプトの内容をプレビューするこ" +"とを強くお勧めします" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2829 msgid "This operation is not ready yet! Keep up to date with latest updates" msgstr "" -"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくだ" -"さい" +"この操作はまだ準備ができていません! 最新のアップデートで最新の状態に保ってくださ" +"い" #: ../../enterprise/include/class/NetworkConfigManager.class.php:2838 msgid "Invalid action" @@ -26959,8 +26728,8 @@ msgstr "前提条件 " #: ../../enterprise/include/class/Omnishell.class.php:892 msgid "All commands defined line per line must success to execute main commands" msgstr "" -"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要" -"があります" +"メインコマンドを実行するには、1行ごとに定義されたすべてのコマンドが成功する必要が" +"あります" #: ../../enterprise/include/class/Omnishell.class.php:904 msgid "Execute commands " @@ -26975,11 +26744,10 @@ msgid "Postconditions " msgstr "前提条件 " #: ../../enterprise/include/class/Omnishell.class.php:918 -msgid "" -"All commands defined line per line must success to consider command success" +msgid "All commands defined line per line must success to consider command success" msgstr "" -"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要が" -"あります" +"コマンドが成功するためには、1行ごとに定義されたすべてのコマンドが成功する必要があ" +"ります" #: ../../enterprise/include/class/Omnishell.class.php:1347 msgid "Show agent list" @@ -27074,8 +26842,8 @@ msgstr "ログソース更新" #: ../../enterprise/include/class/DB2.app.php:165 msgid "" -"This DB2 configuration has been already defined. Please edit it or create a " -"new one." +"This DB2 configuration has been already defined. Please edit it or create a new " +"one." msgstr "" "この DB2 設定はすでに定義済です。 編集するか、新しいものを作成してください。" @@ -27124,9 +26892,9 @@ msgid "" "defined multiple targets, define a comma separated list of names here or leave " "in blank to use target as name." msgstr "" -"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を" -"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象" -"を名前として使用します。" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定" +"義した場合は、ここで名前のカンマ区切り一覧を定義するか、空白のままにして対象を名" +"前として使用します。" #: ../../enterprise/include/class/DB2.app.php:666 #: ../../enterprise/include/class/MySQL.app.php:688 @@ -27140,11 +26908,11 @@ msgstr "カスタムモジュールプレフィックス" #: ../../enterprise/include/class/Oracle.app.php:674 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:678 msgid "" -"Defines a custom prefix to be concatenated before module names generated by " -"this task." +"Defines a custom prefix to be concatenated before module names generated by this " +"task." msgstr "" -"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックス" -"を定義します。" +"このタスクによって生成されるモジュール名の前に連結されるカスタムプレフィックスを" +"定義します。" #: ../../enterprise/include/class/DB2.app.php:685 msgid "Get database summary" @@ -27253,8 +27021,8 @@ msgid "" "empty agents with the name, IP, OS type, description and group provided in the " "CSV." msgstr "" -"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、" -"IP、OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。" +"警告: この CSV インポートではいかなる検出も行いません。CSVで提供された名前、IP、" +"OSタイプ、説明、グループを使って、空のエージェントを作成するだけです。" #: ../../enterprise/include/class/CSVImportAgents.class.php:182 msgid "Alias as name" @@ -27328,8 +27096,8 @@ msgid "" "yet, please visit" msgstr "" "SAP 表示では、自動検出サーバが通常再試行するように設定されている最も重要なモ" -"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にア" -"クセスしてください:" +"ジュールを確認できます。自動検出 SAP R3 タスクがまだ設定されていません。次にアク" +"セスしてください:" #: ../../enterprise/include/class/SAPView.class.php:626 msgid "to start monitoring your SAP infrastructure." @@ -27341,8 +27109,8 @@ msgstr "自動検出 SAP" #: ../../enterprise/include/class/SAP.app.php:155 msgid "" -"This SAP configuration has been already defined. Please edit it or create a " -"new one." +"This SAP configuration has been already defined. Please edit it or create a new " +"one." msgstr "" "この SAP 設定はすでに定義済です。 編集するか、新しいものを作成してください。" @@ -27465,11 +27233,11 @@ msgstr "エラーアップデート WP 数" #: ../../enterprise/include/class/SAP.app.php:784 #, php-format msgid "" -"Module 180 must be customized before being used, please use advanced options " -"to define the module following the documentation:
%s" +"Module 180 must be customized before being used, please use advanced options to " +"define the module following the documentation:
%s" msgstr "" -"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを" -"使用して、ドキュメントに従ってモジュールを定義してください。
%s" +"モジュール 180 は、使用する前にカスタマイズする必要があります。詳細オプションを使" +"用して、ドキュメントに従ってモジュールを定義してください。
%s" #: ../../enterprise/include/class/SAP.app.php:805 #: ../../godmode/agentes/planned_downtime.editor.php:1257 @@ -27509,8 +27277,8 @@ msgid "" "Each line is a module definition using following format: module name ; " "module_type ; SAP check definition." msgstr "" -"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイ" -"プ ; SAPチェック定義" +"各行は次のフォーマットでのモジュール定義です: モジュール名 ; モジュールタイプ ; " +"SAPチェック定義" #: ../../enterprise/include/class/Aws.cloud.php:118 #: ../../include/class/CredentialStore.class.php:960 @@ -27583,8 +27351,8 @@ msgid "" "You cannot monitor RDS instances from different types. Please define several " "tasks for several types." msgstr "" -"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対" -"してそれぞれのタスクを定義してください。" +"異なるタイプの RDS インスタンスを監視することはできません。それぞれのタイプに対し" +"てそれぞれのタスクを定義してください。" #: ../../enterprise/include/class/Aws.cloud.php:1008 msgid "Discovery.Cloud.AWS.RDS" @@ -27666,9 +27434,9 @@ msgid "" "defined multiple targets, define a comma separated list of names here or leave " "in blank to use server IP address/ FQDN." msgstr "" -"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を" -"定義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレ" -"ス/ FQDN を使用するために空白のままにします。" +"このタスクが検出したデータを保存する対象エージェントを定義します。複数の対象を定" +"義した場合は、ここで名前のカンマ区切り一覧を定義するか、サーバの IP アドレス/ " +"FQDN を使用するために空白のままにします。" #: ../../enterprise/include/class/MySQL.app.php:710 msgid "Scan databases" @@ -27684,11 +27452,11 @@ msgstr "カスタムデータベースエージェントプレフィックス" #: ../../enterprise/include/class/MySQL.app.php:748 msgid "" -"Defines a custom prefix to be concatenated before database agent names " -"generated by this task." +"Defines a custom prefix to be concatenated before database agent names generated " +"by this task." msgstr "" -"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタム" -"プレフィックスを定義します。" +"このタスクによって生成されるデータベースエージェント名の前に連結されるカスタムプ" +"レフィックスを定義します。" #: ../../enterprise/include/class/MySQL.app.php:769 #: ../../enterprise/include/class/Oracle.app.php:692 @@ -27779,11 +27547,11 @@ msgstr "テーブルスペース監視" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:171 msgid "" -"This Microsoft SQL Server configuration has been already defined. Please edit " -"it or create a new one." +"This Microsoft SQL Server configuration has been already defined. Please edit it " +"or create a new one." msgstr "" -"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成" -"してください。" +"この Microsoft SQL Server 設定はすでに定義済です。 編集するか、新しいものを作成し" +"てください。" #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:213 msgid "You must provide a valid Microsoft SQL Server server IP or FQDN." @@ -27801,8 +27569,7 @@ msgstr "対象の Microsoft SQL Server" msgid "" "SERVER:PORT\\INSTANCE, comma separated or line by line, as many targets as you " "need." -msgstr "" -"SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" +msgstr "SERVER:PORT\\INSTANCE で、カンマ区切りまたは行ごとに必要な数の対象を指定。" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:499 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:560 @@ -27882,8 +27649,8 @@ msgstr "ルール評価モード" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1074 msgid "Pass - All alerts are evaluated. Drop - It stops when 1 alert matches." msgstr "" -"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止し" -"ます。" +"Pass - すべてのアラートが評価されます。 Drop - 1つのアラートが一致すると停止しま" +"す。" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1091 msgid "Grouped by" @@ -28078,16 +27845,14 @@ msgstr "復旧アラート" #: ../../godmode/alerts/alert_commands.php:123 #: ../../godmode/alerts/alert_commands.php:129 #: ../../godmode/alerts/configure_alert_template.php:991 -#: ../../godmode/alerts/alert_view.php:490 -#: ../../godmode/alerts/alert_view.php:609 +#: ../../godmode/alerts/alert_view.php:490 ../../godmode/alerts/alert_view.php:609 #, php-format msgid "Field %s" msgstr "フィールド %s" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121 msgid "Agent and module event recovery macros are not available in this section" -msgstr "" -"ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません" +msgstr "ここでは、エージェントとモジュールのイベントリカバリマクロは利用できません" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2121 #, php-format @@ -28126,8 +27891,7 @@ msgstr "リカバリ中" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2655 msgid "" -"Select the desired action and mode to view the Triggering fields for this " -"action" +"Select the desired action and mode to view the Triggering fields for this action" msgstr "" "目的のアクションとモードを選択して、このアクションの発報フィールドを表示します" @@ -28138,8 +27902,7 @@ msgstr "アクションを選択" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2731 #: ../../godmode/alerts/configure_alert_template.php:938 -#: ../../godmode/alerts/alert_view.php:441 -#: ../../godmode/alerts/alert_view.php:575 +#: ../../godmode/alerts/alert_view.php:441 ../../godmode/alerts/alert_view.php:575 msgid "Firing fields" msgstr "発報フィールド" @@ -28153,15 +27916,13 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2737 #: ../../godmode/agentes/fields_manager.php:153 -#: ../../godmode/alerts/alert_view.php:447 -#: ../../godmode/alerts/alert_view.php:570 +#: ../../godmode/alerts/alert_view.php:447 ../../godmode/alerts/alert_view.php:570 #: ../../operation/agentes/custom_fields.php:65 msgid "Field" msgstr "フィールド" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2739 -#: ../../godmode/alerts/alert_view.php:449 -#: ../../godmode/alerts/alert_view.php:572 +#: ../../godmode/alerts/alert_view.php:449 ../../godmode/alerts/alert_view.php:572 msgid "Fields configured on the command associated to the action" msgstr "アクションに関連付けられたコマンドで設定されたフィールド" @@ -28189,8 +27950,7 @@ msgid "Executed on firing" msgstr "発報時の実行" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2754 -#: ../../godmode/alerts/alert_view.php:465 -#: ../../godmode/alerts/alert_view.php:577 +#: ../../godmode/alerts/alert_view.php:465 ../../godmode/alerts/alert_view.php:577 msgid "Fields used on execution when the alert is fired" msgstr "アラートが発報したときに実行に使われるフィールド" @@ -28353,8 +28113,8 @@ msgid "" "Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " "php.ini." msgstr "" -"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に" -"設定してください。" +"メタコンソールではメモリ制限を無制限にすることをお勧めします。php.ini で -1 に設" +"定してください。" #: ../../enterprise/include/class/CommandCenter.class.php:314 msgid "Nodes priority order" @@ -28422,9 +28182,8 @@ msgid "" "System is not unified yet, something is wrong, please troubleshoot the errors " "and retry the merge process. Your data have not been modified." msgstr "" -"システムはまだ統合されていません。何らかの問題があります。エラーのトラブル" -"シューティングを行い、マージ処理を再試行してください。 データは変更されていませ" -"ん。" +"システムはまだ統合されていません。何らかの問題があります。エラーのトラブルシュー" +"ティングを行い、マージ処理を再試行してください。 データは変更されていません。" #: ../../enterprise/include/class/CommandCenter.class.php:461 msgid "Errors while merging" @@ -28491,11 +28250,11 @@ msgstr "優先ノードの更新ができませんでした" #: ../../enterprise/include/class/CommandCenter.class.php:567 msgid "" -"By unifying databases all information across your infrastructure will be " -"merged to gain integrity" +"By unifying databases all information across your infrastructure will be merged " +"to gain integrity" msgstr "" -"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマー" -"ジされ、整合性が得られます" +"データベースを統合することにより、インフラストラクチャ全体のすべての情報がマージ" +"され、整合性が得られます" #: ../../enterprise/include/class/CommandCenter.class.php:580 #: ../../enterprise/include/class/CommandCenter.class.php:590 @@ -28520,9 +28279,9 @@ msgid "" "overwrite those backups? Press OK button to ignore this message and start the " "process." msgstr "" -"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書き" -"してもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタ" -"ンを押してください。" +"以前のマージプ処理からのバックアップがありますが、それらのバックアップを上書きし" +"てもよろしいですか? このメッセージを無視してプロセスを開始するには、OK ボタンを" +"押してください。" #: ../../enterprise/include/class/CommandCenter.class.php:648 msgid "System is merging events..." @@ -28600,8 +28359,7 @@ msgstr "DB バックアップ管理" #: ../../enterprise/include/class/ManageBackups.class.php:129 #, php-format -msgid "" -"To schedule a periodic (or one-time) backup task you can do it through %s." +msgid "To schedule a periodic (or one-time) backup task you can do it through %s." msgstr "" "定期的(または1回限り)バックアップタスクのスケジューリングは、%s から行えます。" @@ -28659,11 +28417,11 @@ msgstr "表示する追加情報がありません:" #: ../../enterprise/include/class/ManageBackups.class.php:446 msgid "" -"Are you sure you want to delete this database backup file? Once deleted you " -"will not be able to recover it." +"Are you sure you want to delete this database backup file? Once deleted you will " +"not be able to recover it." msgstr "" -"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に" -"戻すことはできません。" +"このデータベースバックアップファイルを削除してもよろしいですか? 削除すると元に戻" +"すことはできません。" #: ../../enterprise/include/class/ManageBackups.class.php:448 msgid "Do you like perform a database restoration?" @@ -28675,16 +28433,15 @@ msgstr "タグごとのツリー表示" #: ../../enterprise/include/functions_enterprise.php:481 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." +"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 -msgid "" -"Problems with event days purge and event days that pass data to history DB." +msgid "Problems with event days purge and event days that pass data to history DB." msgstr "イベントの削除日とヒストリデータベースへ渡す日数の設定に問題があります。" #: ../../enterprise/include/functions_enterprise.php:494 @@ -28693,9 +28450,9 @@ msgid "" "problems and you lost data. Recommended that days purge will more taller than " "days to history DB" msgstr "" -"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失" -"します。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくだ" -"さい。" +"ヒストリデータベースへ渡すよりも削除する日が先の場合、問題が発生しデータを消失し" +"ます。データ保持期間は、ヒストリデータベースへ移すタイミングより長くしてくださ" +"い。" #: ../../enterprise/include/functions_enterprise.php:496 msgid "Problems with days purge and days that pass data to history DB" @@ -29041,24 +28798,23 @@ msgid "" "Error adding web analysis module to policy. Id_module_type is not correct for " "web analysis modules." msgstr "" -"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 " -"Id_module_type が、ウェブ分析モジュールに対して正しくありません。" +"ポリシーへのウェブ分析モジュールの追加中にエラーが発生しました。 Id_module_type " +"が、ウェブ分析モジュールに対して正しくありません。" #: ../../enterprise/include/functions_enterprise_api.php:4070 msgid "" "Network Module could not be added to policy. Id_module_type is not correct for " "network modules." msgstr "" -"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネッ" -"トワークモジュールに対して正しくありません。" +"ネットワークモジュールをポリシーに追加できませんでした。 Id_module_type がネット" +"ワークモジュールに対して正しくありません。" #: ../../enterprise/include/functions_enterprise_api.php:4079 msgid "" -"Error adding web module to policy. Id_module_type is not correct for web " -"modules." +"Error adding web module to policy. Id_module_type is not correct for web modules." msgstr "" -"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対し" -"て正しくありません。" +"ポリシーへのウェブモジュール追加エラー。Id_module_type がウェブモジュールに対して" +"正しくありません。" #: ../../enterprise/include/functions_enterprise_api.php:4100 msgid "Error adding module to policy configuration_data is not a valid base64." @@ -29377,8 +29133,7 @@ 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 +#: ../../operation/users/user_edit.php:872 ../../operation/users/user_edit.php:925 msgid "Test" msgstr "テスト" @@ -29517,8 +29272,8 @@ msgstr "現在選択されているテンプレートが、設定されている #, php-format msgid "No %s script available for this agent, check template %s" msgstr "" -"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認" -"してください" +"このエージェントで使用できる %s スクリプトはありません。テンプレート %s を確認し" +"てください" #: ../../enterprise/include/lib/NetworkManager/Template.php:192 msgid "Error linking script: " @@ -29566,8 +29321,8 @@ msgid "" " Cannot switch from SMART to MANUAL if there are dynamic elements attached to " "the service. Please erase dynamic elements before change to MANUAL" msgstr "" -" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 " -"手動に変更する前に、動的要素を消去してください" +" サービスに動的要素がある場合、スマートから手動に切り替えることはできません。 手" +"動に変更する前に、動的要素を消去してください" #: ../../enterprise/include/lib/Service.php:397 #: ../../enterprise/include/lib/Service.php:740 @@ -29686,11 +29441,10 @@ msgstr "ノードが見つかりません" #: ../../enterprise/include/lib/Metaconsole/Node.php:396 #, php-format -msgid "" -"There are %d queries pending to be applied, click in the eye to see results" +msgid "There are %d queries pending to be applied, click in the eye to see results" msgstr "" -"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認" -"してください" +"適用が保留されている %d クエリがあります。目のアイコンをクリックして結果を確認し" +"てください" #: ../../enterprise/include/lib/Metaconsole/Node.php:405 msgid "Database synchronization state and pending tasks" @@ -29706,16 +29460,16 @@ msgid "" "Failed synchronizing %s, please check node PHP configuration issues and " "collection max sizes" msgstr "" -"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確" -"認してください" +"%s の同期に失敗しました。ノードの PHP 設定の問題とコレクションの最大サイズを確認" +"してください" #: ../../enterprise/include/lib/Metaconsole/Node.php:1174 msgid "" "The elimination of this node will lead to the suppression of its agents from " "metaconsole and all the configuration assigned to them. " msgstr "" -"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てら" -"れているすべての設定が抑制されます。" +"このノードを削除すると、メタコンソールからのエージェントと、それらに割り当てられ" +"ているすべての設定が抑制されます。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1178 msgid "The rules for this node may stop working. " @@ -29723,11 +29477,10 @@ msgstr "このノードのルールが機能しなくなる可能性がありま #: ../../enterprise/include/lib/Metaconsole/Node.php:1182 msgid "" -"The deleted node will lose its license, and you must license it manually " -"again. " +"The deleted node will lose its license, and you must license it manually again. " msgstr "" -"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があ" -"ります。" +"削除されたノードはライセンスを失います。手動で再度ライセンスを取得する必要があり" +"ます。" #: ../../enterprise/include/lib/Metaconsole/Node.php:1686 #, php-format @@ -29800,14 +29553,14 @@ msgstr "memory_limit 現在値" msgid "" "Check current packages, all nodes and metaconsole, are not in the same version" msgstr "" -"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンで" -"はありません。" +"全ノードとメタコンソールの現在のパッケージを確認してください。同じバージョンでは" +"ありません。" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:979 msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" msgstr "" -"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではあり" -"ません。" +"全ノードとメタコンソールのマイナーリリースを確認してください。同一 MR ではありま" +"せん。" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:991 msgid "Max size collection, all nodes and metaconsole, are not equal" @@ -29815,20 +29568,17 @@ msgstr "全ノードとメタコンソールで最大コレクションサイズ #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1016 #, php-format -msgid "" -"Post max size, nodes cannot be smaller than the size of the metaconsole %s" +msgid "Post max size, nodes cannot be smaller than the size of the metaconsole %s" msgstr "" -"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできませ" -"ん" +"最大サイズ設定、ノードはメタコンソール %s のサイズより小さくすることはできません" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1031 #, php-format msgid "" -"Upload max file size, nodes cannot be smaller than the size of the metaconsole " -"%s" +"Upload max file size, nodes cannot be smaller than the size of the metaconsole %s" msgstr "" -"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより" -"小さくすることはできません" +"最大ファイルサイズをアップロードします。ノードはメタコンソール %s のサイズより小" +"さくすることはできません" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1093 #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1109 @@ -30301,10 +30051,8 @@ msgid "Agent plugins does not exist in target node" msgstr "エージェントプラグインが対象ノードに存在しません" #: ../../enterprise/include/functions_metaconsole.php:2906 -msgid "" -"Agent policies definitions does not match with defined ones in target node" -msgstr "" -"エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" +msgid "Agent policies definitions does not match with defined ones in target node" +msgstr "エージェントポリシーの定義が、対象ノードで定義されているものと一致しません" #: ../../enterprise/include/functions_metaconsole.php:2913 msgid "Agent group does not exist in target node" @@ -30353,8 +30101,7 @@ msgid "Next available IP" msgstr "次の空き IP" #: ../../enterprise/include/functions_ipam.php:1343 -#: ../../enterprise/tools/ipam/ipam_ajax.php:486 -#: ../../include/ajax/events.php:1753 +#: ../../enterprise/tools/ipam/ipam_ajax.php:486 ../../include/ajax/events.php:1753 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:73 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:394 msgid "Details" @@ -30727,8 +30474,8 @@ msgid "" "Error uploading resource. Check if the selected file is a valid resource " "template in .ptr format" msgstr "" -"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の" -"有効なリソーステンプレートであるかどうかを確認してください" +"リソースのアップロード中にエラーが発生しました。 選択したファイルが .ptr 形式の有" +"効なリソーステンプレートであるかどうかを確認してください" #: ../../enterprise/include/functions_policies.php:4508 msgid "Policy does not exist" @@ -30846,8 +30593,8 @@ msgstr "回" #: ../../enterprise/operation/agentes/policy_view.php:352 #: ../../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/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 @@ -31260,12 +31007,11 @@ msgid "" "This is a view to interface with Elasticsearch directly from WEB console. \n" "Please note that you can damage your Elasticsearch if you don`t know exactly " "what are you are doing. \n" -"This view is intended to be used only by users with a knowledge of " -"Elasticsearch" +"This view is intended to be used only by users with a knowledge of Elasticsearch" msgstr "" "これは、WEBコンソールから直接 Elasticsearch を操作するための画面です。\n" -"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意" -"してください。\n" +"何をしているのか良くわからない場合、Elasticsearch を壊す可能性があることに注意し" +"てください。\n" "この画面は、Elasticsearch の知識を持つユーザのみが使用することを目的としていま" "す。" @@ -31342,8 +31088,7 @@ msgstr "1週間" #: ../../enterprise/operation/log/log_viewer.php:681 #: ../../godmode/reporting/create_container.php:427 #: ../../include/functions.php:2761 ../../include/ajax/module.php:227 -#: ../../include/ajax/graph.ajax.php:155 -#: ../../include/class/AuditLog.class.php:214 +#: ../../include/ajax/graph.ajax.php:155 ../../include/class/AuditLog.class.php:214 msgid "1 month" msgstr "1ヵ月" @@ -31422,8 +31167,8 @@ 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 msgid "The start date cannot be greater than the end date" @@ -31463,8 +31208,7 @@ msgstr "AWS 表示" msgid "SAP view" msgstr "SAP 表示" -#: ../../enterprise/operation/menu.php:117 -#: ../../enterprise/operation/menu.php:118 +#: ../../enterprise/operation/menu.php:117 ../../enterprise/operation/menu.php:118 #: ../../enterprise/operation/services/services.php:244 msgid "Service tree view" msgstr "サービスツリー表示" @@ -31597,8 +31341,8 @@ 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/service.delete.elements.php:209 @@ -31731,8 +31475,8 @@ msgid "" "Weights configured are common for every item added to the service, if you want " "to customize them, please edit each element at service element editor." msgstr "" -"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらを" -"カスタマイズする場合は、サービス要素エディタで各要素を編集してください。" +"設定されたウエイトは、サービスに追加されたすべてのアイテムに共通です。それらをカ" +"スタマイズする場合は、サービス要素エディタで各要素を編集してください。" #: ../../enterprise/operation/services/massive/service.create.elements.php:646 msgid "Item type to be added" @@ -31764,8 +31508,7 @@ msgid "Show sunburst" msgstr "サンバースト表示" #: ../../enterprise/operation/services/services.service_map.php:129 -#: ../../extensions/agents_modules.php:1043 -#: ../../extensions/module_groups.php:464 +#: ../../extensions/agents_modules.php:1043 ../../extensions/module_groups.php:464 #: ../../godmode/snmpconsole/snmp_alert.php:2203 #: ../../include/functions_reporting_html.php:2281 #: ../../include/class/SnmpConsole.class.php:522 @@ -31871,8 +31614,7 @@ msgstr "表形式表示" msgid "Operation view" msgstr "操作画面" -#: ../../enterprise/tools/ipam/ipam.php:78 -#: ../../enterprise/tools/ipam/ipam.php:356 +#: ../../enterprise/tools/ipam/ipam.php:78 ../../enterprise/tools/ipam/ipam.php:356 msgid "Subnetworks calculator" msgstr "サブネット計算" @@ -32111,8 +31853,7 @@ msgstr "スーパーネットへ追加されるネットワークがありませ #: ../../enterprise/tools/ipam/ipam_supernet_config.php:446 msgid "supernet name could not be added, please select supernet" -msgstr "" -"スーパーネット名を追加できませんでした。スーパーネットを選択してください。" +msgstr "スーパーネット名を追加できませんでした。スーパーネットを選択してください。" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:475 msgid "Could not be deleted, please select supernet and network" @@ -32707,12 +32448,12 @@ msgstr "パッケージをアップロードしました。" #: ../../update_manager_client/views/offline.php:68 #, php-format msgid "" -"Please keep in mind that this package is going to override your actual %s " -"files and that it's recommended to conduct a backup before continuing the " -"updating process." +"Please keep in mind that this package is going to override your actual %s files " +"and that it's recommended to conduct a backup before continuing the updating " +"process." msgstr "" -"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバッ" -"クアップを取ることをお勧めします。" +"このパッケージは実際の %s ファイルを上書きするため、更新処理を続行する前にバック" +"アップを取ることをお勧めします。" #: ../../update_manager_client/views/offline.php:69 msgid "Click on the file below to begin." @@ -32763,8 +32504,8 @@ msgid "" "This update does not correspond with next version of %s. Are you sure you want " "to install it?" msgstr "" -"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしい" -"ですか?" +"この更新は、%s の次のバージョンに対応していません。 インストールしてもよろしいで" +"すか?" #: ../../update_manager_client/views/offline.php:82 msgid "" @@ -32777,12 +32518,12 @@ msgstr "" #: ../../update_manager_client/views/offline.php:83 msgid "" "File name does not match required format: package_NUMBER.oum or " -"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use " -"numbers with decimals." +"pandorafms_server[_enterprise]-7.0NG.NUMBER_x86[_64].tar.gz, you can use numbers " +"with decimals." msgstr "" "ファイル名が所定の形式と一致しません: package_数字.oum または " -"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含む" -"ことがあります。" +"pandorafms_server[_enterprise]-7.0NG.数字_x86[_64].tar.gz で、数字は小数を含むこ" +"とがあります。" #: ../../update_manager_client/views/offline.php:84 msgid "Files included in this package" @@ -32800,11 +32541,10 @@ msgstr "パッケージの署名を確認" #, php-format msgid "" "Copy into the textarea the signature validation token you can retrieve from %s " -"and press OK to verify the package, press ignore to avoid signature " -"verification" +"and press OK to verify the package, press ignore to avoid signature verification" msgstr "" -"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケー" -"ジを確認します。'無視する' を押すと署名の確認を回避します。" +"%s から取得できる署名検証トークンをテキスト領域にコピーし、OK を押してパッケージ" +"を確認します。'無視する' を押すと署名の確認を回避します。" #: ../../update_manager_client/views/offline.php:88 msgid "" @@ -32812,9 +32552,9 @@ msgid "" "going to be installed unless patches are allowed. Please enable patches in " "update manager settings." msgstr "" -"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ" -"適用が許可されていない限りインストールされません。 アップデートマネージャの設定" -"でパッチを有効にしてください。" +"ここのサーバーアップデートは現在のコンソールバージョンに対応しておらず、パッチ適" +"用が許可されていない限りインストールされません。 アップデートマネージャの設定で" +"パッチを有効にしてください。" #: ../../update_manager_client/views/offline.php:89 #, php-format @@ -32823,9 +32563,9 @@ msgid "" "installed unless patches are allowed. Please enable patches in update manager " "settings." msgstr "" -"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されて" -"いない限りインストールされません。 アップデートマネージャの設定でパッチを有効に" -"してください。" +"このアップデートは %s の次のバージョンに対応しておらず、パッチ適用が許可されてい" +"ない限りインストールされません。 アップデートマネージャの設定でパッチを有効にして" +"ください。" #: ../../update_manager_client/views/register.php:47 msgid "Register to Warp Update" @@ -32849,8 +32589,8 @@ msgstr "" "%s ワープアップデートサーバを購読すると、\n" " %s インスタンスを %s が所有するデータベースの識別子として登録しま" "す。 このデータは、\n" -" %s に関する情報提供のために利用され、第三者に提供されることはありま" -"せん。 登録は\n" +" %s に関する情報提供のために利用され、第三者に提供されることはありませ" +"ん。 登録は\n" " ワープアップデートオプションからいつでも解除できます。" #: ../../update_manager_client/views/register.php:74 @@ -33029,8 +32769,7 @@ msgstr "Matrix イベント" #: ../../extensions/quick_shell.php:140 ../../extensions/quick_shell.php:251 msgid "WebService engine has not been started, please check documentation." -msgstr "" -"ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" +msgstr "ウェブサービスエンジンが起動していません。ドキュメントを確認してください。" #: ../../extensions/quick_shell.php:153 msgid "Retry" @@ -33051,8 +32790,7 @@ msgstr "SSH または Telnet を利用してください。" #: ../../extensions/quick_shell.php:273 msgid "WebService engine is not working properly, please check documentation." msgstr "" -"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してくださ" -"い。" +"ウェブサービスエンジンが正しく動作していません。ドキュメントを確認してください。" #: ../../extensions/quick_shell.php:432 #, php-format @@ -33143,8 +32881,8 @@ msgstr "レポート '%s' でエラーです。指定の名前はすでに使わ #, php-format msgid "Warning create '%s' report, the name exist, the report have a name %s." msgstr "" -"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は " -"%s です。" +"レポート '%s' で警告です。その名前はすでに使われており、このレポートの名前は %s " +"です。" #: ../../extensions/resource_registration.php:114 msgid "Error the report haven't name." @@ -33193,11 +32931,10 @@ msgstr "ビジュアルマップ '%s' の作成に失敗しました。名前が #: ../../extensions/resource_registration.php:521 #, php-format -msgid "" -"Warning create '%s' visual map, the name exist, the report have a name %s." +msgid "Warning create '%s' visual map, the name exist, the report have a name %s." msgstr "" -"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s " -"です。" +"ビジュアルマップ '%s' の生成で警告です。名前がすでに存在し、本レポート名は %s で" +"す。" #: ../../extensions/resource_registration.php:533 #, php-format @@ -33268,8 +33005,7 @@ msgstr "リソース" #: ../../extensions/resource_registration.php:1112 #, php-format -msgid "" -"This node is configured with centralized mode. Go to %s to create a policy." +msgid "This node is configured with centralized mode. Go to %s to create a policy." msgstr "" "このノードは集中モードで設定されています。 %s に移動してポリシーを作成します。" @@ -33284,8 +33020,8 @@ msgstr "ここに、.ptr フォーマットでリソーステンプレートを #: ../../extensions/resource_registration.php:1121 #, php-format msgid "" -"Please refer to our documentation for more information on how to obtain and " -"use %s resources." +"Please refer to our documentation for more information on how to obtain and use " +"%s resources." msgstr "" "%s リソースを取得して使用する方法の詳細については、ドキュメントを参照してくださ" "い。" @@ -33295,8 +33031,8 @@ msgid "" "You can get more resurces in our Public Resource Library" msgstr "" -"公開リソースライブラリか" -"ら追加のリソースを入手できます。" +"公開リソースライブラリから" +"追加のリソースを入手できます。" #: ../../extensions/resource_registration.php:1131 msgid "File to upload" @@ -33316,11 +33052,9 @@ msgstr "API チェッカ" msgid "%s Console URL" msgstr "%s コンソールURL" -#: ../../extensions/api_checker.php:243 -#: ../../godmode/users/configure_user.php:1006 +#: ../../extensions/api_checker.php:243 ../../godmode/users/configure_user.php:1006 #: ../../godmode/users/configure_user.php:1029 -#: ../../operation/users/user_edit.php:299 -#: ../../operation/users/user_edit.php:338 +#: ../../operation/users/user_edit.php:299 ../../operation/users/user_edit.php:338 msgid "API Token" msgstr "API トークン" @@ -33391,9 +33125,8 @@ msgid "" "This extension checks the DB is correct. Because sometimes the old DB from a " "migration has not some fields in the tables or the data is changed." msgstr "" -"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーション" -"でテーブルのフィールドが不足していたりデータが変更されていなかったりするためで" -"す。" +"この拡張は、DB が正しいかどうか確認します。たまに、古いDBからのマイグレーションで" +"テーブルのフィールドが不足していたりデータが変更されていなかったりするためです。" #: ../../extensions/db_status.php:56 msgid "At the moment the checks is for MySQL/MariaDB." @@ -33515,8 +33248,8 @@ msgid "" "Warning, you are accessing the database directly. You can leave the system " "inoperative if you run an inappropriate SQL statement" msgstr "" -"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行す" -"ると、システムが動作しなくなる可能性があります" +"警告、データベースに直接アクセスしています。 不適切なSQLステートメントを実行する" +"と、システムが動作しなくなる可能性があります" #: ../../extensions/dbmanager.php:137 #, php-format @@ -33528,16 +33261,15 @@ msgid "" " if you don't know
exactly what are you are doing,\n" " this means that you can severily damage your setup using this " "extension.\n" -" This extension is intended to be used only by experienced " -"users\n" +" This extension is intended to be used only by experienced users\n" " with a depth knowledge of %s internals." msgstr "" "これは、WEB コンソールから %s データベースと直接接続するための高度な拡張機能で" "す。\n" "\t\t何をやっているかを正しく把握していない場合、%s のインストールを\n" "\t\t破壊する可能性があることに注意してください。\n" -"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性がありま" -"す。\n" +"\t\tつまり、この拡張機能の利用により設定に重大な損傷を与える可能性があります。\n" "\t\tこの拡張は、%s の内部について深い理解を持っているユーザにのみ\n" "\t\t利用いただくことを想定しています。" @@ -33579,8 +33311,7 @@ msgstr "モジュールの値表示" msgid "Information to be shown" msgstr "表示情報" -#: ../../extensions/agents_modules.php:543 -#: ../../include/functions_reports.php:807 +#: ../../extensions/agents_modules.php:543 ../../include/functions_reports.php:807 msgid "Agents/Modules" msgstr "エージェント/モジュール" @@ -33669,8 +33400,8 @@ msgstr "コンソールで %s ログファイルを直接参照するために #: ../../extensions/pandora_logs.php:110 msgid "" -"You can choose the amount of information shown in general setup (Log size " -"limit in system logs viewer extension), " +"You can choose the amount of information shown in general setup (Log size limit " +"in system logs viewer extension), " msgstr "" "一般の設定で表示される情報量(システムログビューワのログサイズ制限)を選択できま" "す。 " @@ -33771,41 +33502,40 @@ msgid "Search by module group" msgstr "モジュールグループでの検索" #: ../../extensions/module_groups.php:455 -msgid "" -"Orange cell when the module group and agent have at least one alarm fired." +msgid "Orange cell when the module group and agent have at least one alarm fired." msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが" -"発生している時にオレンジになります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールでアラートが発" +"生している時にオレンジになります。" #: ../../extensions/module_groups.php:456 msgid "" "Red cell when the module group and agent have at least one module in critical " "status and the others in any status" msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の" -"時に赤になります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが障害状態の時" +"に赤になります。" #: ../../extensions/module_groups.php:457 msgid "" -"Yellow cell when the module group and agent have at least one in warning " -"status and the others in grey or green status" +"Yellow cell when the module group and agent have at least one in warning status " +"and the others in grey or green status" msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態" -"で、その他のモジュールが不明か正常状態の時にに黄色なります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが警告状態で、" +"その他のモジュールが不明か正常状態の時にに黄色なります。" #: ../../extensions/module_groups.php:458 msgid "" "Grey cell when the module group and agent have at least one in unknown status " "and the others in green status" msgstr "" -"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態" -"で、その他のモジュールが正常状態の時にグレーになります。" +"モジュールグループおよびエージェントで、少なくとも 1つのモジュールが不明状態で、" +"その他のモジュールが正常状態の時にグレーになります。" #: ../../extensions/module_groups.php:459 msgid "Green cell when the module group and agent have all modules in OK status" msgstr "" -"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑にな" -"ります。" +"モジュールグループおよびエージェントの全てのモジュールが正常状態の時に、緑になり" +"ます。" #: ../../extensions/module_groups.php:460 msgid "" @@ -33814,8 +33544,8 @@ msgstr "青のセルは、全モジュールが未初期化状態であること #: ../../extensions/module_groups.php:466 msgid "" -"This table shows in columns the modules group and in rows agents group. The " -"cell shows all modules" +"This table shows in columns the modules group and in rows agents group. The cell " +"shows all modules" msgstr "" "列にモジュールグループ、行にエージェントグループを示しています。各セルは、全モ" "ジュールの状態を表示しています。" @@ -33854,8 +33584,7 @@ msgstr "エージェント(%s)、モジュール(%s) のデータを保存でき msgid "Save agent (%s), module (%s) data xml." msgstr "エージェント(%s)、モジュール(%s) のデータを保存しました。" -#: ../../extensions/realtime_graphs.php:58 -#: ../../extensions/realtime_graphs.php:295 +#: ../../extensions/realtime_graphs.php:58 ../../extensions/realtime_graphs.php:295 msgid "Realtime graphs" msgstr "リアルタイムグラフ" @@ -33922,8 +33651,7 @@ msgstr "接続ユーザ一覧" msgid "Workspace" msgstr "ワークスペース" -#: ../../extensions/users_connected.php:68 -#: ../../extensions/users_connected.php:243 +#: ../../extensions/users_connected.php:68 ../../extensions/users_connected.php:243 msgid "Users connected" msgstr "接続ユーザ" @@ -34011,8 +33739,8 @@ msgid "" "This node is configured with centralized mode. Component groups are read only. " "Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り" -"専用です。管理は %s にて行います。" +"このノードは中央管理モードで設定されています。 コンポーネントグループは読み取り専" +"用です。管理は %s にて行います。" #: ../../godmode/modules/manage_nc_groups.php:334 msgid "There are no defined component groups" @@ -34111,8 +33839,8 @@ msgid "" "This node is configured with centralized mode. All remote components are read " "only. Go to %s to manage them." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは" -"読み取り専用です。 それらを管理するには、%s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのリモートコンポーネントは読" +"み取り専用です。 それらを管理するには、%s に移動します。" #: ../../godmode/modules/manage_network_components.php:433 msgid "Could not be created because the component exists" @@ -34387,9 +34115,9 @@ msgid "" "maintenance daemon is running. It's very important to keep your database up to " "date in order to get the best performance and results from %s." msgstr "" -"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されて" -"いることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データ" -"ベースを最新の状態に保つことが非常に重要です。" +"%s サーバの設定が正しいこと、およびデータベースメンテナンスデーモンが実行されてい" +"ることを確認してください。 %s の最高のパフォーマンスと結果を得るには、データベー" +"スを最新の状態に保つことが非常に重要です。" #: ../../godmode/groups/configure_group.php:95 msgid "Update group" @@ -34472,8 +34200,8 @@ msgid "" "This node is configured with centralized mode. All groups information is read " "only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専" -"用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのグループ情報は読み取り専用" +"です。管理するには %s に移動します。" #: ../../godmode/groups/group_list.php:465 #: ../../godmode/groups/modu_group_list.php:129 @@ -34485,13 +34213,11 @@ msgstr "グループを作成しました。" 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:470 ../../godmode/groups/group_list.php:542 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:473 ../../godmode/groups/group_list.php:545 msgid "Group must have a name" msgstr "グループには名前が必要です" @@ -34537,8 +34263,7 @@ msgstr "グループの削除に失敗しました。" msgid "The group is not empty. It is use in %s." msgstr "グループが空ではありません。%s で利用されています。" -#: ../../godmode/groups/group_list.php:774 -#: ../../godmode/groups/group_list.php:994 +#: ../../godmode/groups/group_list.php:774 ../../godmode/groups/group_list.php:994 msgid "There are no defined groups" msgstr "グループが定義されていません" @@ -34551,8 +34276,7 @@ msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "よろしいですか? このグループはすべてのノードで削除されます。" #: ../../godmode/groups/group_list.php:964 -msgid "" -"The child groups will be updated to use the parent id of the deleted group" +msgid "The child groups will be updated to use the parent id of the deleted group" msgstr "削除されたグループの親 ID を使用するように、子グループが更新されます" #: ../../godmode/groups/configure_modu_group.php:30 @@ -34570,11 +34294,11 @@ msgstr "モジュールグループ一覧" #: ../../godmode/groups/modu_group_list.php:102 #, php-format msgid "" -"This node is configured with centralized mode. All module groups information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All module groups information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は" -"読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのモジュールグループ情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../godmode/groups/modu_group_list.php:137 #: ../../godmode/groups/modu_group_list.php:173 @@ -34716,11 +34440,11 @@ msgstr "%s コミュニティリマインダ" #: ../../godmode/update_manager/update_manager.setup.php:393 #, php-format msgid "" -"Every 8 days, a message is displayed to admin users to remember to register " -"this %s instance" +"Every 8 days, a message is displayed to admin users to remember to register this " +"%s instance" msgstr "" -"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに" -"表示します。" +"8日ごとに、この %s インスタンスを登録するリマインダメッセージを admin ユーザに表" +"示します。" #: ../../godmode/update_manager/update_manager.history.php:42 msgid "Origin" @@ -34759,19 +34483,18 @@ msgstr "ユーザプロファイル管理" #: ../../godmode/users/profile_list.php:96 #: ../../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/user_list.php:301 ../../godmode/users/configure_user.php:280 msgid "Manage users" msgstr "ユーザ管理" #: ../../godmode/users/profile_list.php:124 #, php-format msgid "" -"This node is configured with centralized mode. All profiles information is " -"read only. Go to %s to manage it." +"This node is configured with centralized mode. All profiles information is read " +"only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取" -"り専用です。管理には %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのプロファイル情報は読み取り" +"専用です。管理には %s に移動します。" #: ../../godmode/users/profile_list.php:136 ../../godmode/users/user_list.php:412 msgid "There was a problem deleting the profile" @@ -34992,8 +34715,7 @@ msgstr "%s 管理" 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/user_list.php:351 ../../godmode/users/configure_user.php:115 #, php-format msgid "Deleted user %s" msgstr "ユーザ %s を削除しました" @@ -35003,26 +34725,22 @@ msgstr "ユーザ %s を削除しました" msgid "There was a problem deleting the user" msgstr "ユーザの削除に失敗しました。" -#: ../../godmode/users/user_list.php:376 -#: ../../godmode/users/configure_user.php:137 +#: ../../godmode/users/user_list.php:376 ../../godmode/users/configure_user.php:137 #, php-format msgid "Deleted user %s from metaconsole" msgstr "メタコンソールから、ユーザ %s を削除しました" -#: ../../godmode/users/user_list.php:388 -#: ../../godmode/users/configure_user.php:149 +#: ../../godmode/users/user_list.php:388 ../../godmode/users/configure_user.php:149 #, php-format msgid "Deleted user %s from %s" msgstr "ユーザ %s を %s から削除しました" -#: ../../godmode/users/user_list.php:394 -#: ../../godmode/users/configure_user.php:158 +#: ../../godmode/users/user_list.php:394 ../../godmode/users/configure_user.php:158 #, php-format msgid "Successfully deleted from %s" msgstr "%s から削除しました" -#: ../../godmode/users/user_list.php:395 -#: ../../godmode/users/configure_user.php:159 +#: ../../godmode/users/user_list.php:395 ../../godmode/users/configure_user.php:159 #, php-format msgid "There was a problem deleting the user from %s" msgstr "%s からのユーザ削除で問題が発生しました" @@ -35045,8 +34763,8 @@ msgid "" "This node is configured with centralized mode. All users information is read " "only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用" -"です。管理には %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのユーザ情報は読み取り専用で" +"す。管理には %s に移動します。" #: ../../godmode/users/user_list.php:580 msgid "Profile / Group" @@ -35069,11 +34787,10 @@ 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 +#: ../../godmode/users/user_list.php:823 ../../include/functions_reporting.php:5140 #: ../../include/functions_reporting.php:5187 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "" @@ -35148,8 +34865,7 @@ msgstr "プロファイルの追加に失敗しました。" #: ../../godmode/users/configure_user.php:852 #: ../../godmode/users/configure_user.php:859 #: ../../godmode/users/configure_user.php:891 -#: ../../operation/users/user_edit.php:216 -#: ../../operation/users/user_edit.php:262 +#: ../../operation/users/user_edit.php:216 ../../operation/users/user_edit.php:262 msgid "User info successfully updated" msgstr "ユーザ情報を更新しました。" @@ -35179,15 +34895,14 @@ msgid "You have generated a new API Token." msgstr "新たな API トークンを生成しました。" #: ../../godmode/users/configure_user.php:881 -msgid "" -"Strict ACL is not recommended for this user. Performance could be affected." +msgid "Strict ACL is not recommended for this user. Performance could be affected." msgstr "このユーザには厳重な ACL はお勧めしません。パフォーマンスに影響します。" #: ../../godmode/users/configure_user.php:1014 #: ../../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?" +"The API token will be renewed. After this action, the last token you were using " +"will not work. Are you sure?" msgstr "" "API トークンが更新されます。 これの実行後は以前のトークンは利用できなくなりま" "す。 よろしいですか?" @@ -35258,8 +34973,8 @@ msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." msgstr "" -"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る" -"必要があります。* はすべてを許可します。" +"コンソールアクセスを許可するソース IP を追加します。各 IP はカンマだけで区切る必" +"要があります。* はすべてを許可します。" #: ../../godmode/users/configure_user.php:1269 msgid "Skin" @@ -35293,9 +35008,8 @@ msgid "" "ver_agente&id_agente=1 to show agent detail view" msgstr "" "ユーザはホームページをカスタマイズできます。 デフォルトでは、'エージェントの詳" -"細' が表示されます。 例: 'その他' を選択し、index.php?" -"sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 と入力すると、エージェ" -"ントの詳細を表示します。" +"細' が表示されます。 例: 'その他' を選択し、index.php?sec=estado&sec2=operation/" +"agentes/ver_agente&id_agente=1 と入力すると、エージェントの詳細を表示します。" #: ../../godmode/users/configure_user.php:1410 msgid "Metaconsole access" @@ -35338,8 +35052,7 @@ msgstr "ノードアクセスを有効にする" #: ../../godmode/users/configure_user.php:1617 msgid "With this option enabled, the user will can access to nodes console" -msgstr "" -"このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" +msgstr "このオプションが有能の場合、ユーザはノードのコンソールへアクセスできます。" #: ../../godmode/users/configure_user.php:1849 msgid "yes" @@ -35364,11 +35077,11 @@ msgstr "最後のプロファイルを削除すると、このユーザが削除 #: ../../godmode/users/configure_user.php:1975 msgid "" -"User will be created without profiles assigned and won't be able to log in, " -"are you sure?" +"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 @@ -35443,8 +35156,7 @@ msgstr "ローカルユーザ" #: ../../godmode/users/user_management.php:372 msgid "" -"The user with local authentication enabled will always use local " -"authentication." +"The user with local authentication enabled will always use local authentication." msgstr "ローカル認証が有効になっているユーザは、常にローカル認証を使用します。" #: ../../godmode/users/user_management.php:384 @@ -35453,8 +35165,8 @@ msgstr "セッション時間" #: ../../godmode/users/user_management.php:394 msgid "" -"This is defined in minutes, If you wish a permanent session should putting -1 " -"in this field." +"This is defined in minutes, If you wish a permanent session should putting -1 in " +"this field." msgstr "分単位で定義します。無制限の場合は -1 を設定してください。" #: ../../godmode/users/user_management.php:399 @@ -35478,8 +35190,7 @@ msgstr "自動更新ページ" #: ../../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 +#: ../../operation/users/user_edit.php:690 ../../operation/users/user_edit.php:691 msgid "Push selected pages into autorefresh list" msgstr "選択したページを自動更新にする" @@ -35488,8 +35199,7 @@ msgstr "選択したページを自動更新にする" #: ../../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 +#: ../../operation/users/user_edit.php:699 ../../operation/users/user_edit.php:700 msgid "Pop selected pages out of autorefresh list" msgstr "選択したページを自動更新から外す" @@ -35505,11 +35215,11 @@ msgstr "自動更新時間" #: ../../godmode/massive/massive_edit_users.php:454 #: ../../operation/users/user_edit.php:716 msgid "" -"Interval of autorefresh of the elements, by default they are 30 seconds, " -"needing to enable the autorefresh first" +"Interval of autorefresh of the elements, by default they are 30 seconds, needing " +"to enable the autorefresh first" msgstr "" -"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要" -"があります。" +"要素の自動更新の間隔です。デフォルトでは 30秒で、最初に自動更新を有効にする必要が" +"あります。" #: ../../godmode/users/user_management.php:554 msgid "Language and Appearance" @@ -35585,11 +35295,11 @@ msgstr "オプション。WMI 名前空間。不明な場合は空白のまま #: ../../godmode/agentes/module_manager_editor_wmi.php:193 msgid "" -"Optional. Substring to look for in the WQL query result. The module returns 1 " -"if found, 0 if not." +"Optional. Substring to look for in the WQL query result. The module returns 1 if " +"found, 0 if not." msgstr "" -"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は " -"1 を返し、見つからない場合は 0 を返します。" +"オプション。WQL クエリ結果で検索する部分文字列。モジュールは、見つかった場合は 1 " +"を返し、見つからない場合は 0 を返します。" #: ../../godmode/agentes/module_manager_editor_wmi.php:217 msgid "Column number to retrieve from the WQL query result (starting from zero)." @@ -35771,8 +35481,8 @@ msgstr "エージェントのロードに失敗しました。" #: ../../godmode/agentes/configurar_agente.php:1736 msgid "" -"There was a problem updating module. Another module already exists with the " -"same name." +"There was a problem updating module. Another module already exists with the same " +"name." msgstr "" "モジュールの更新で問題が発生しました。同じ名前のモジュールがすでに存在します。" @@ -35780,8 +35490,7 @@ msgstr "" msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" -"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名" -"前)" +"モジュールの更新で問題が発生しました。必須フィールドが入力されていません: (名前)" #: ../../godmode/agentes/configurar_agente.php:1744 msgid "There was a problem updating module. \"No change\"" @@ -35803,11 +35512,9 @@ msgstr "" "モジュールの追加で問題が発生しました。同じ名前のモジュールがすでに存在します。" #: ../../godmode/agentes/configurar_agente.php:1917 -msgid "" -"There was a problem adding module. Some required fields are missed : (name)" +msgid "There was a problem adding module. Some required fields are missed : (name)" msgstr "" -"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名" -"前)" +"モジュールの追加で問題が発生しました。必須フィールドが入力されていません: (名前)" #: ../../godmode/agentes/configurar_agente.php:1923 msgid "There was a problem adding module. Processing error" @@ -35916,8 +35623,7 @@ msgstr "ファイル入力要素がみつかりません。" #: ../../godmode/agentes/module_manager_editor.php:989 msgid "This browser doesn`t seem to support the files property of file inputs." msgstr "" -"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていませ" -"ん。" +"このブラウザは、ファイル入力におけるファイルのプロパティをサポートしていません。" #: ../../godmode/agentes/module_manager_editor.php:990 msgid "Please select a file before clicking Load" @@ -35943,11 +35649,10 @@ msgstr "%s で定義されたエージェント" #: ../../godmode/agentes/modificar_agente.php:125 #, php-format -msgid "" -"This node is configured with centralized mode. Go to %s to delete an agent" +msgid "This node is configured with centralized mode. Go to %s to delete an agent" msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に" -"移動します" +"このノードは中央管理モードで設定されています。 エージェントを削除するには %s に移" +"動します" #: ../../godmode/agentes/modificar_agente.php:170 msgid "Success deleted agent." @@ -36036,8 +35741,8 @@ msgid "" "There is no GIS data for this agent, so it's positioned in default position of " "map." msgstr "" -"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に" -"配置します。" +"このエージェントには GIS データがありません。そのため、マップのデフォルト位置に配" +"置します。" #: ../../godmode/agentes/agent_conf_gis.php:58 msgid "" @@ -36184,8 +35889,8 @@ msgid "" "Not created. Error inserting data. Start time must be higher than the current " "time" msgstr "" -"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなけれ" -"ばいけません。" +"作成できませんでした。データ挿入エラーです。開始時刻は現在時刻よりも後でなければ" +"いけません。" #: ../../godmode/agentes/planned_downtime.editor.php:266 #: ../../godmode/agentes/planned_downtime.editor.php:270 @@ -36405,8 +36110,8 @@ msgstr "モジュールを選択してください。" #: ../../godmode/agentes/planned_downtime.editor.php:2046 msgid "" -"WARNING: If you edit this scheduled downtime, the data of future SLA reports " -"may be altered" +"WARNING: If you edit this scheduled downtime, the data of future SLA reports may " +"be altered" msgstr "" "警告: この計画停止を編集すると、将来の SLA レポートデータが置き換えられます" @@ -36453,8 +36158,7 @@ msgstr "前面に表示" #: ../../godmode/agentes/configure_field.php:128 #: ../../operation/agentes/custom_fields.php:67 msgid "" -"The fields with display on front enabled will be displayed into the agent " -"details" +"The fields with display on front enabled will be displayed into the agent details" msgstr "前面表示が有効になっていると、エージェント詳細に表示されます。" #: ../../godmode/agentes/fields_manager.php:228 @@ -36475,8 +36179,8 @@ msgid "" msgstr "" "必要であれば、シングルクォーテーションを使ってください。\n" "\n" -"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープし" -"てください。" +"ダブルクォーテーションが必要な場合は、バックスラッシュ(\\")でエスケープして" +"ください。" #: ../../godmode/agentes/module_manager_editor_network.php:536 msgid "Windows remote" @@ -36493,8 +36197,7 @@ msgid "Use alias as name" msgstr "名前に別名を利用" #: ../../godmode/agentes/agent_manager.php:407 -#: ../../godmode/setup/setup_general.php:649 -#: ../../include/functions_config.php:390 +#: ../../godmode/setup/setup_general.php:649 ../../include/functions_config.php:390 msgid "Unique IP" msgstr "ユニーク IP" @@ -36586,11 +36289,11 @@ msgstr "セカンダリグループはプライマリにできません。" #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:23 #: ../../operation/incidents/list_integriaims_incidents.php:44 msgid "" -"In order to access ticket management system, integration with Integria IMS " -"must be enabled and properly configured" +"In order to access ticket management system, integration with Integria IMS must " +"be enabled and properly configured" msgstr "" -"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正" -"しく設定されている必要があります" +"チケット管理システムにアクセスするためには、Integria IMS との統合が有効化され正し" +"く設定されている必要があります" #: ../../godmode/agentes/agent_incidents.php:65 msgid "No incidents associated to this agent" @@ -36620,16 +36323,16 @@ msgid "" "You cannot set the Password type until you clear the combo values and click on " "update button." msgstr "" -"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定するこ" -"とはできません。" +"選択した値クリアして更新ボタンをクリックするまで、パスワードタイプを設定すること" +"はできません。" #: ../../godmode/agentes/configure_field.php:93 msgid "" -"You cannot unset the enable combo until you clear the combo values and click " -"on update." +"You cannot unset the enable combo until you clear the combo values and click on " +"update." msgstr "" -"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできま" -"せん。" +"選択した値をクリアして更新をクリックするまで、有効な設定を解除することはできませ" +"ん。" #: ../../godmode/agentes/configure_field.php:97 msgid "If you select Enabled combo the Password type will be disabled." @@ -36649,8 +36352,8 @@ msgstr "パスタイプ" #: ../../godmode/agentes/configure_field.php:154 msgid "" -"The fields with pass type enabled will be displayed like html input type pass " -"in html" +"The fields with pass type enabled will be displayed like html input type pass in " +"html" msgstr "パスタイプを有効化すると、html 内の入力パスタイプのように表示されます。" #: ../../godmode/agentes/configure_field.php:166 @@ -36791,8 +36494,8 @@ 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:844 ../../include/ajax/module.php:1064 +#: ../../include/ajax/module.php:1072 msgid "Adopted" msgstr "適用" @@ -36874,8 +36577,7 @@ msgstr "フィルタ管理" msgid "Netflow filters" msgstr "Netflow フィルタ" -#: ../../godmode/netflow/nf_edit.php:225 -#: ../../godmode/events/event_filter.php:224 +#: ../../godmode/netflow/nf_edit.php:225 ../../godmode/events/event_filter.php:224 msgid "There are no defined filters" msgstr "定義済のフィルタがありません" @@ -36923,12 +36625,11 @@ msgstr "宛先 IP" #: ../../godmode/netflow/nf_edit_form.php:286 #: ../../operation/netflow/nf_live_view.php:294 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" +"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 "" -"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP によ" -"るフィルタ例:
25.46.157.214,160.253.135.249" +"宛先 IP をカンマで区切った一覧。何も入力しないと全ての IP を表示します。IP による" +"フィルタ例:
25.46.157.214,160.253.135.249" #: ../../godmode/netflow/nf_edit_form.php:290 #: ../../operation/netflow/nf_live_view.php:302 @@ -36941,8 +36642,8 @@ 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 "" -"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IP" -"によるフィルタ例:
25.46.157.214,160.253.135.249" +"カンマ区切りの発信元 IP 一覧です。何も入力しない場合は全てのIPを表示します。IPに" +"よるフィルタ例:
25.46.157.214,160.253.135.249" #: ../../godmode/netflow/nf_edit_form.php:310 #: ../../operation/netflow/nf_live_view.php:313 @@ -36950,8 +36651,8 @@ 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 "" -"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。" -"ポート 80 および 22 のフィルタ例:
80,22" +"宛先ポートをカンマで区切った一覧。何も入力しないと全てのポートを表示します。ポー" +"ト 80 および 22 のフィルタ例:
80,22" #: ../../godmode/netflow/nf_edit_form.php:322 #: ../../operation/netflow/nf_live_view.php:321 @@ -37109,7 +36810,7 @@ msgstr "SNMPアラートID" #: ../../godmode/snmpconsole/snmp_alert.php:2225 msgid "Do you want delete this alert?" -msgstr "このエージェントを削除しますか?" +msgstr "このアラートを削除しますか?" #: ../../godmode/snmpconsole/snmp_alert.php:2240 msgid "Do you want delete the selected alerts?" @@ -37598,15 +37299,15 @@ msgid "" "No changes have been made because they exceed the maximum allowed (%d). Make " "fewer changes or contact the administrator." msgstr "" -"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理" -"者に連絡してください。" +"最大値(%d)を超えているため、変更は加えられていません。 変更を少なくするか、管理者" +"に連絡してください。" #: ../../godmode/massive/massive_operations.php:440 #, php-format msgid "This node is configured with centralized mode. To delete agents go to %s" msgstr "" -"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s " -"に移動します" +"このノードは中央管理モードで設定されています。 エージェントを削除するには、%s に" +"移動します" #: ../../godmode/massive/massive_operations.php:448 msgid "The blank fields will not be updated" @@ -37739,11 +37440,11 @@ msgstr "エージェントを先に選択してください" #: ../../godmode/massive/massive_add_profiles.php:52 #, php-format msgid "" -"This node is configured with centralized mode. All profiles user information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All profiles user information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報" -"は読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのプロファイルのユーザ情報は" +"読み取り専用です。管理するには %s に移動します。" #: ../../godmode/massive/massive_edit_users.php:153 #, php-format @@ -37791,8 +37492,8 @@ msgid "" "There was an error deleting the agent, the operation has been cancelled Could " "not delete agent %s" msgstr "" -"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェ" -"ント %s は削除できません。" +"エージェントの削除でエラーが発生しました。操作はキャンセルされました。エージェン" +"ト %s は削除できません。" #: ../../godmode/massive/massive_delete_agents.php:132 #, php-format @@ -38019,8 +37720,8 @@ msgid "" "config.php in each individual console and wait for cron to run in order to be " "registered." msgstr "" -"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを" -"定義し、登録のための cron が実行されるまで待つ必要があります。" +"コンソールを登録したい場合は、各コンソールで config.php を編集してコンソールを定" +"義し、登録のための cron が実行されるまで待つ必要があります。" #: ../../godmode/alerts/configure_alert_command.php:67 msgid "Configure alert command" @@ -38030,11 +37731,11 @@ msgstr "コマンドの作成" #: ../../godmode/alerts/alert_commands.php:737 #, php-format msgid "" -"This node is configured with centralized mode. All alert commands information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert commands information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読" -"み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートコマンド情報は読み" +"取り専用です。管理するには %s に移動します。" #: ../../godmode/alerts/configure_alert_command.php:304 #, php-format @@ -38063,11 +37764,11 @@ msgstr "アクション" #: ../../godmode/alerts/configure_alert_action.php:132 #, php-format msgid "" -"This node is configured with centralized mode. All alert actions information " -"is read only. Go to %s to manage it." +"This node is configured with centralized mode. All alert actions information is " +"read only. Go to %s to manage it." msgstr "" -"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は" -"読み取り専用です。管理するには %s に移動します。" +"このノードは中央管理モードで設定されています。 すべてのアラートアクション情報は読" +"み取り専用です。管理するには %s に移動します。" #: ../../godmode/alerts/alert_actions.php:421 msgid "" @@ -38077,11 +37778,11 @@ msgstr "" #: ../../godmode/alerts/alert_actions.php:432 msgid "" -"The action and the command associated with it do not have the same group. " -"Please contact an administrator to fix it." +"The action and the command associated with it do not have the same group. Please " +"contact an administrator to fix it." msgstr "" -"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連" -"絡して修正してください。" +"アクションとそれに関連付けられたコマンドに同じグループがありません。 管理者に連絡" +"して修正してください。" #: ../../godmode/alerts/alert_actions.php:496 msgid "No alert actions configured" @@ -38131,8 +37832,8 @@ msgid "" "For sending emails, text must be HTML format, if you want to use plain text, " "type it between the following labels:
"
 msgstr ""
-"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキ"
-"ストを使いたい場合は、ラベル 
 の間に入力してください。"
+"メール送信には、テキストが HTML フォーマットである必要があります。プレーンテキス"
+"トを使いたい場合は、ラベル 
 の間に入力してください。"
 
 #: ../../godmode/alerts/alert_commands.php:221
 #: ../../godmode/alerts/alert_commands.php:252
@@ -38158,8 +37859,8 @@ msgid ""
 "Command management is limited to administrator users or user profiles with "
 "permissions PM"
 msgstr ""
-"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられた"
-"ユーザに制限されています"
+"コマンド管理は、管理者ユーザまたは PM 権限を持つプロファイルを割り当てられたユー"
+"ザに制限されています"
 
 #: ../../godmode/alerts/alert_commands.php:590
 msgid "Alert commands"
@@ -38189,16 +37890,16 @@ msgid ""
 "This node is configured with centralized mode. All alert templates information "
 "is read only. Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
-"は読み取り専用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は"
+"読み取り専用です。管理するには %s に移動します。"
 
 #: ../../godmode/alerts/alert_templates.php:438
 msgid ""
 "You cannot edit this alert template, You don't have the permission to edit All "
 "group."
 msgstr ""
-"このアラートテンプレートを編集することはできません。'全て' グループを編集する権"
-"限がありません。"
+"このアラートテンプレートを編集することはできません。'全て' グループを編集する権限"
+"がありません。"
 
 #: ../../godmode/alerts/alert_templates.php:505
 msgid "No alert templates defined"
@@ -38226,8 +37927,8 @@ msgid "Recovery"
 msgstr "復旧通知"
 
 #: ../../godmode/alerts/configure_alert_action.php:330
-#: ../../godmode/alerts/alert_view.php:533
-#: ../../godmode/alerts/alert_view.php:660 ../../godmode/servers/plugin.php:513
+#: ../../godmode/alerts/alert_view.php:533 ../../godmode/alerts/alert_view.php:660
+#: ../../godmode/servers/plugin.php:513
 msgid "Command preview"
 msgstr "実行されるコマンドのプレビュー"
 
@@ -38240,8 +37941,8 @@ msgid ""
 "If closed status is set on recovery, a workunit will be added to the ticket in "
 "Integria IMS rather that closing the ticket."
 msgstr ""
-"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットを"
-"クローズするのではなく、Integria IMS のチケットに追加されます。"
+"リカバリ時にクローズステータスが設定されている場合、ワークユニットはチケットをク"
+"ローズするのではなく、Integria IMS のチケットに追加されます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:104
 #: ../../godmode/alerts/configure_alert_template.php:135
@@ -38263,11 +37964,11 @@ msgstr "拡張フィールド"
 #: ../../godmode/alerts/configure_alert_template.php:436
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All alerts templates "
-"information is read only. Go to Go to %s to manage it."
+"This node is configured with centralized mode. All alerts templates information "
+"is read only. Go to Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報"
-"は読み取り専用です。 管理するには、%s に移動します。"
+"このノードは中央管理モードで設定されています。 すべてのアラートテンプレート情報は"
+"読み取り専用です。 管理するには、%s に移動します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:548
 msgid "No template name specified"
@@ -38275,11 +37976,11 @@ msgstr "テンプレート名が指定されていません"
 
 #: ../../godmode/alerts/configure_alert_template.php:722
 msgid ""
-"Unless they're left blank, the fields from the action will override those set "
-"on the template."
+"Unless they're left blank, the fields from the action will override those set on "
+"the template."
 msgstr ""
-"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が"
-"優先されます。"
+"空白のままにしない限り、テンプレートにおける設定よりもアクションにおける設定が優"
+"先されます。"
 
 #: ../../godmode/alerts/configure_alert_template.php:767
 msgid "Reset counter for non-sustained alerts"
@@ -38290,8 +37991,8 @@ msgid ""
 "Enable this option if you want the counter to be reset when the alert is not "
 "being fired consecutively, even if it's within the time threshold"
 msgstr ""
-"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタ"
-"をリセットしたい場合にこのオプションを有効化します。"
+"再通知間隔内であっても、アラートが継続していない場合は最小アラート数のカウンタを"
+"リセットしたい場合にこのオプションを有効化します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:818
 msgid "Condition type"
@@ -38354,8 +38055,8 @@ msgid ""
 "The alert would fire when the value is not between  and "
 ""
 msgstr ""
-"値が  の間にない場合、アラートが発"
-"生します。"
+"値が  の間にない場合、アラートが発生"
+"します。"
 
 #: ../../godmode/alerts/configure_alert_template.php:1272
 #: ../../godmode/alerts/alert_view.php:206
@@ -38406,8 +38107,8 @@ msgid ""
 "The alert would fire when the module is in unknown status. Warning: "
 "unknown_updates of pandora_server.conf must be equal to 1"
 msgstr ""
-"モジュールのステータスが不明の場合、アラートが発生します。 警告: "
-"pandora_server.conf の unknown_updates を 1 にする必要があります"
+"モジュールのステータスが不明の場合、アラートが発生します。 警告: pandora_server."
+"conf の unknown_updates を 1 にする必要があります"
 
 #: ../../godmode/alerts/alert_view.php:89 ../../godmode/alerts/alert_view.php:90
 #: ../../godmode/alerts/alert_list.php:487
@@ -38424,13 +38125,13 @@ msgstr "スタンバイ"
 msgid ""
 "The alert would fire when the value doesn't match "
 msgstr ""
-"取得した値が  にマッチしない場合、アラートを発生させ"
-"ます。"
+"取得した値が  にマッチしない場合、アラートを発生させま"
+"す。"
 
 #: ../../godmode/alerts/alert_view.php:197 ../../include/functions_ui.php:1519
 msgid ""
-"The alert would fire when the value is not between  "
-"and "
+"The alert would fire when the value is not between  and "
+""
 msgstr ""
 "取得した値が  の間を外れた"
 "ら、アラートを発生させます。"
@@ -38439,8 +38140,7 @@ msgstr ""
 msgid "Firing conditions"
 msgstr "発報条件"
 
-#: ../../godmode/alerts/alert_view.php:311
-#: ../../godmode/alerts/alert_view.php:345
+#: ../../godmode/alerts/alert_view.php:311 ../../godmode/alerts/alert_view.php:345
 msgid "Every time that the alert is fired"
 msgstr "アラート発生のたび"
 
@@ -38449,8 +38149,8 @@ msgid ""
 "Select the desired action and mode to see the Firing/Recovery fields for this "
 "action"
 msgstr ""
-"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを"
-"選択してください。"
+"このアクションの発報・リカバリフィールドを見るには、目的のアクションとモードを選"
+"択してください。"
 
 #: ../../godmode/alerts/alert_view.php:452
 msgid "Template fields"
@@ -38470,8 +38170,7 @@ msgstr "復旧フィールド"
 
 #: ../../godmode/alerts/alert_view.php:566
 msgid ""
-"Fields passed to the command executed by this action when the alert is "
-"recovered"
+"Fields passed to the command executed by this action when the alert is recovered"
 msgstr ""
 "アラートが復旧したときに、このアクションによって実行されるコマンドに渡される"
 "フィールド"
@@ -38605,8 +38304,8 @@ msgid ""
 "This key is used to encrypt your Pandora FMS license when it is shared with "
 "other Pandora FMS components"
 msgstr ""
-"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセン"
-"スを暗号化するために使用されます。"
+"このキーは、他の Pandora FMS コンポーネントと共有する際に Pandora FMS ライセンス"
+"を暗号化するために使用されます。"
 
 #: ../../godmode/setup/license.php:317 ../../godmode/setup/license.php:345
 msgid "Request new license"
@@ -38628,8 +38327,7 @@ msgstr "auth key と次の  request key を入力してくださ
 
 #: ../../godmode/setup/license.php:361
 msgid "Enter your name (or a company name) and a contact email address."
-msgstr ""
-"あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
+msgstr "あなたの名前(もしくは会社名)および連絡先メールアドレスを入力してください。"
 
 #: ../../godmode/setup/license.php:364
 msgid "Click on Generate."
@@ -38640,8 +38338,8 @@ msgid ""
 "Click here, enter the "
 "generated license key and click on Validate."
 msgstr ""
-"ここをクリックし、生成"
-"されたライセンスキーを入力し有効化をクリックします。"
+"ここをクリックし、生成さ"
+"れたライセンスキーを入力し有効化をクリックします。"
 
 #: ../../godmode/setup/news.php:30
 msgid "Site news management"
@@ -38724,8 +38422,7 @@ msgstr "パスワードポリシー"
 msgid "Correct update the setup options"
 msgstr "設定オプションを更新しました"
 
-#: ../../godmode/setup/setup_ehorus.php:67
-#: ../../include/functions_config.php:1812
+#: ../../godmode/setup/setup_ehorus.php:67 ../../include/functions_config.php:1812
 msgid "Enable eHorus"
 msgstr "eHorus の有効化"
 
@@ -38764,8 +38461,7 @@ msgstr "eHorus には独自のエージェント識別があります"
 
 #: ../../godmode/setup/setup_ehorus.php:188
 msgid "To store them, it will be necessary to use an agent custom field"
-msgstr ""
-"それを保存するために、エージェントのカスタムフィールドを使う必要があります"
+msgstr "それを保存するために、エージェントのカスタムフィールドを使う必要があります"
 
 #: ../../godmode/setup/setup_ehorus.php:189
 msgid "Possibly the eHorus id will have to be filled in by hand for every agent"
@@ -38808,43 +38504,32 @@ msgstr "ユーザが見つかりません"
 msgid "Invalid password"
 msgstr "パスワードが正しくありません"
 
-#: ../../godmode/setup/setup_sflow.php:45
-#: ../../godmode/setup/setup_netflow.php:45
+#: ../../godmode/setup/setup_sflow.php:45 ../../godmode/setup/setup_netflow.php:45
 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
+#: ../../godmode/setup/setup_sflow.php:50 ../../godmode/setup/setup_netflow.php:50
+#: ../../include/functions_config.php:1540 ../../include/functions_config.php:1583
 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_sflow.php:55 ../../godmode/setup/setup_netflow.php:55
+#: ../../include/functions_config.php:1544 ../../include/functions_config.php:1587
 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_sflow.php:60 ../../godmode/setup/setup_netflow.php:60
+#: ../../include/functions_config.php:1548 ../../include/functions_config.php:1591
 msgid "Nfdump binary path"
 msgstr "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_sflow.php:65 ../../godmode/setup/setup_netflow.php:65
+#: ../../include/functions_config.php:1552 ../../include/functions_config.php:1595
 msgid "Nfexpire binary path"
 msgstr "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_sflow.php:70 ../../godmode/setup/setup_netflow.php:70
+#: ../../include/functions_config.php:1556 ../../include/functions_config.php:1599
 msgid "Maximum chart resolution"
 msgstr "最大グラフ解像度"
 
@@ -38852,16 +38537,13 @@ msgstr "最大グラフ解像度"
 msgid "Sflow max lifetime"
 msgstr "Sflow 最大保持期間"
 
-#: ../../godmode/setup/setup_sflow.php:84
-#: ../../godmode/setup/setup_netflow.php:84
+#: ../../godmode/setup/setup_sflow.php:84 ../../godmode/setup/setup_netflow.php:84
 #: ../../operation/netflow/nf_live_view.php:339
 msgid "IP address resolution can take a lot of time"
 msgstr "IP アドレスの解決には多くの時間がかかります"
 
-#: ../../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_sflow.php:86 ../../godmode/setup/setup_netflow.php:86
+#: ../../include/functions_config.php:1568 ../../include/functions_config.php:1611
 msgid "Name resolution for IP address"
 msgstr "IP アドレスの名前解決"
 
@@ -38885,8 +38567,8 @@ msgstr "Websocket プロキシ URL"
 #: ../../godmode/setup/os.list.php:56
 #, php-format
 msgid ""
-"This node is configured with centralized mode. All OS definitions are read "
-"only. Go to %s to manage them."
+"This node is configured with centralized mode. All OS definitions are read only. "
+"Go to %s to manage them."
 msgstr ""
 "このノードは中央管理モードで設定されています。 すべての OS 定義は読み取り専用で"
 "す。 それらを管理するには、%s に移動します。"
@@ -39084,18 +38766,15 @@ msgstr "GIS データが無い場合のエージェントのデフォルト位
 msgid "Change in the map"
 msgstr "マップ内での変更"
 
-#: ../../godmode/setup/gis_step_2.php:486
-#: ../../operation/agentes/gis_view.php:218
+#: ../../godmode/setup/gis_step_2.php:486 ../../operation/agentes/gis_view.php:218
 msgid "Latitude"
 msgstr "緯度"
 
-#: ../../godmode/setup/gis_step_2.php:504
-#: ../../operation/agentes/gis_view.php:217
+#: ../../godmode/setup/gis_step_2.php:504 ../../operation/agentes/gis_view.php:217
 msgid "Longitude"
 msgstr "経度"
 
-#: ../../godmode/setup/gis_step_2.php:522
-#: ../../operation/agentes/gis_view.php:219
+#: ../../godmode/setup/gis_step_2.php:522 ../../operation/agentes/gis_view.php:219
 msgid "Altitude"
 msgstr "高度"
 
@@ -39158,11 +38837,11 @@ msgstr "Integria IMS セットアップ URL"
 
 #: ../../godmode/setup/setup_integria.php:322
 msgid ""
-"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, "
-"https://support.mycompany.com)."
+"Full URL to your Integria IMS setup (e.g., http://192.168.1.20/integria, https://"
+"support.mycompany.com)."
 msgstr ""
-"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, "
-"https://support.mycompany.com)"
+"完全な Integria IMS セットアップ URL (例: http://192.168.1.20/integria, https://"
+"support.mycompany.com)"
 
 #: ../../godmode/setup/setup_integria.php:336
 msgid "API Password"
@@ -39217,8 +38896,7 @@ msgstr "SNMP翻訳の保存に失敗しました"
 msgid "Unsucessful save the snmp translation."
 msgstr "SNMP翻訳の保存に失敗しました。"
 
-#: ../../godmode/setup/setup_netflow.php:80
-#: ../../include/functions_config.php:1564
+#: ../../godmode/setup/setup_netflow.php:80 ../../include/functions_config.php:1564
 msgid "Netflow max lifetime"
 msgstr "Netflow 最大保持期間"
 
@@ -39272,8 +38950,7 @@ msgid "Custom support logo"
 msgstr "カスタムサポートロゴ"
 
 #: ../../godmode/setup/setup_visuals.php:680
-#: ../../include/functions_config.php:1102
-#: ../../include/functions_config.php:1106
+#: ../../include/functions_config.php:1102 ../../include/functions_config.php:1106
 msgid "Custom networkmap center logo"
 msgstr "カスタムネットワークマップセンターロゴ"
 
@@ -39321,8 +38998,7 @@ 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
+#: ../../include/functions_config.php:1226 ../../include/functions_config.php:1230
 msgid "Agent size text"
 msgstr "エージェント名の表示長さ"
 
@@ -39337,8 +39013,7 @@ msgid "Module size text"
 msgstr "モジュール名の表示長さ"
 
 #: ../../godmode/setup/setup_visuals.php:1046
-#: ../../include/functions_config.php:1238
-#: ../../include/functions_config.php:1242
+#: ../../include/functions_config.php:1238 ../../include/functions_config.php:1242
 msgid "Description size text"
 msgstr "説明の表示長さ"
 
@@ -39395,8 +39070,8 @@ msgstr "メニューに表示するお気に入りのサービスの数"
 
 #: ../../godmode/setup/setup_visuals.php:1535
 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."
+"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 ""
 "カスタムロゴのディレクトリは、ウェブコンソールの 'images/custom_logo' にありま"
 "す。 コンソールのアップロードツールで、追加のファイル(JPEG と PNG のみ)をアップ"
@@ -39504,8 +39179,7 @@ msgstr " コンソール"
 
 #: ../../godmode/setup/setup_general.php:115
 msgid "If public URL is not properly configured you will lose access to "
-msgstr ""
-"公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: "
+msgstr "公開 URL が正しく設定されていない場合、こちらにアクセスできなくなります: "
 
 #: ../../godmode/setup/setup_general.php:181
 msgid "Out of black list"
@@ -39536,8 +39210,7 @@ msgstr "上級者"
 msgid "Language code"
 msgstr "言語"
 
-#: ../../godmode/setup/setup_general.php:320
-#: ../../include/functions_config.php:204
+#: ../../godmode/setup/setup_general.php:320 ../../include/functions_config.php:204
 msgid "Automatic check for updates"
 msgstr "更新の自動チェック"
 
@@ -39549,38 +39222,31 @@ msgstr "SSL証明書の利用"
 msgid "Path of SSL Cert."
 msgstr "SSL証明書のパス"
 
-#: ../../godmode/setup/setup_general.php:384
-#: ../../include/functions_config.php:244
+#: ../../godmode/setup/setup_general.php:384 ../../include/functions_config.php:244
 msgid "Enable GIS features"
 msgstr "GIS 機能の有効化"
 
-#: ../../godmode/setup/setup_general.php:394
-#: ../../include/functions_config.php:260
+#: ../../godmode/setup/setup_general.php:394 ../../include/functions_config.php:260
 msgid "Enable Netflow"
 msgstr "Netflow を利用する"
 
-#: ../../godmode/setup/setup_general.php:408
-#: ../../include/functions_config.php:264
+#: ../../godmode/setup/setup_general.php:408 ../../include/functions_config.php:264
 msgid "Enable Sflow"
 msgstr "Sflow を利用する"
 
-#: ../../godmode/setup/setup_general.php:421
-#: ../../include/functions_config.php:268
+#: ../../godmode/setup/setup_general.php:421 ../../include/functions_config.php:268
 msgid "General network path"
 msgstr "一般ネットワークパス"
 
-#: ../../godmode/setup/setup_general.php:515
-#: ../../include/functions_config.php:423
+#: ../../godmode/setup/setup_general.php:515 ../../include/functions_config.php:423
 msgid "Inventory changes blacklist"
 msgstr "インベントリブラックリスト変更"
 
-#: ../../godmode/setup/setup_general.php:520
-#: ../../include/functions_config.php:342
+#: ../../godmode/setup/setup_general.php:520 ../../include/functions_config.php:342
 msgid "Server logs directory"
 msgstr "サーバログディレクトリ"
 
-#: ../../godmode/setup/setup_general.php:532
-#: ../../include/functions_config.php:330
+#: ../../godmode/setup/setup_general.php:532 ../../include/functions_config.php:330
 msgid "Event storm protection"
 msgstr "イベントストーム保護"
 
@@ -39588,23 +39254,19 @@ msgstr "イベントストーム保護"
 msgid "Change remote config encoding"
 msgstr "リモートコンフィグのエンコーディング自動調整"
 
-#: ../../godmode/setup/setup_general.php:561
-#: ../../include/functions_config.php:326
+#: ../../godmode/setup/setup_general.php:561 ../../include/functions_config.php:326
 msgid "Referer security"
 msgstr "リファラーセキュリティ"
 
-#: ../../godmode/setup/setup_general.php:571
-#: ../../include/functions_config.php:346
+#: ../../godmode/setup/setup_general.php:571 ../../include/functions_config.php:346
 msgid "Log size limit in system logs viewer extension"
 msgstr "システムログビューワ拡張でのログサイズ制限"
 
-#: ../../godmode/setup/setup_general.php:592
-#: ../../include/functions_config.php:350
+#: ../../godmode/setup/setup_general.php:592 ../../include/functions_config.php:350
 msgid "Tutorial mode"
 msgstr "チュートリアルモード"
 
-#: ../../godmode/setup/setup_general.php:605
-#: ../../include/functions_config.php:354
+#: ../../godmode/setup/setup_general.php:605 ../../include/functions_config.php:354
 msgid "Allow create scheduled downtimes in the past"
 msgstr "過去の計画停止の作成を許可する"
 
@@ -39646,9 +39308,9 @@ msgid ""
 "    If you have manual settings in your pandora_server.conf, please note these "
 "settings will ignore this console setup."
 msgstr ""
-"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有"
-"効化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してく"
-"ださい。"
+"Gmail や Office365 などの一部のプロバイダは、SMTP による外部接続を手動で設定/有効"
+"化する必要があり、ポート 587 で STARTTLS を使用する必要があることに注意してくださ"
+"い。"
 
 #: ../../godmode/setup/setup_general.php:744
 msgid "From address"
@@ -39688,8 +39350,8 @@ msgstr "未実行"
 msgid "Max. days before delete traps"
 msgstr "トラップデータ保持日数"
 
-#: ../../godmode/setup/performance.php:308
-#: ../../godmode/setup/performance.php:518 ../../include/functions_config.php:838
+#: ../../godmode/setup/performance.php:308 ../../godmode/setup/performance.php:518
+#: ../../include/functions_config.php:838
 msgid "Max. days before delete string data"
 msgstr "文字列データ保持日数"
 
@@ -39697,8 +39359,8 @@ msgstr "文字列データ保持日数"
 msgid "Max. days before delete GIS data"
 msgstr "GIS データ保持日数"
 
-#: ../../godmode/setup/performance.php:353
-#: ../../godmode/setup/performance.php:482 ../../include/functions_config.php:862
+#: ../../godmode/setup/performance.php:353 ../../godmode/setup/performance.php:482
+#: ../../include/functions_config.php:862
 msgid "Max. days before compact data"
 msgstr "データ保持日数(丸め込みなし)"
 
@@ -39718,8 +39380,8 @@ msgstr "自動無効化エージェントを削除せず保持する日数"
 msgid "Retention period of past special days"
 msgstr "過去の特別日の保存期間"
 
-#: ../../godmode/setup/performance.php:494
-#: ../../godmode/setup/performance.php:615 ../../include/functions_config.php:878
+#: ../../godmode/setup/performance.php:494 ../../godmode/setup/performance.php:615
+#: ../../include/functions_config.php:878
 msgid "Compact interpolation in hours (1 Fine-20 bad)"
 msgstr "データ縮小時の丸め込み単位時間 (1〜20)"
 
@@ -39785,11 +39447,11 @@ msgstr "snmpwalk バイナリ"
 
 #: ../../godmode/setup/performance.php:788
 msgid ""
-"SNMP bulk walk is not able to request V1 SNMP, this option will be used "
-"instead (by default snmpwalk, slower)."
+"SNMP bulk walk is not able to request V1 SNMP, this option will be used instead "
+"(by default snmpwalk, slower)."
 msgstr ""
-"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されま"
-"す。(デフォルトで snmpwalk で遅くなります)"
+"snmpbulkwork は、SNMP v1 を利用できません。このオプションが代わりに利用されます。"
+"(デフォルトで snmpwalk で遅くなります)"
 
 #: ../../godmode/setup/performance.php:793
 msgid "SNMP walk binary (fallback)"
@@ -39801,8 +39463,8 @@ msgid ""
 "%s web2image cache system cleanup. It is always cleaned up after perform an "
 "upgrade"
 msgstr ""
-"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は"
-"常にクリーンアップされます"
+"%s web2image キャッシュシステムのクリーンアップ。 アップグレードを実行した後は常"
+"にクリーンアップされます"
 
 #: ../../godmode/setup/performance.php:813
 msgid "WMI binary"
@@ -40091,8 +39753,8 @@ msgid ""
 "This is the interval or period of time with which the graph data will be "
 "obtained. For example, a week means data from a week ago from now. "
 msgstr ""
-"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味し"
-"ます。 "
+"グラフデータを取得する時間間隔です。たとえば、一週間は、今から一週間前を意味しま"
+"す。 "
 
 #: ../../godmode/reporting/create_container.php:498
 #: ../../godmode/reporting/create_container.php:686
@@ -40223,14 +39885,13 @@ msgstr "レポート名または説明で検索したリスト。"
 msgid "Show Option"
 msgstr "オプション表示"
 
-#: ../../godmode/reporting/graphs.php:362
-#: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30
+#: ../../godmode/reporting/graphs.php:362 ../../include/functions_container.php:146
+#: ../../operation/search_graphs.php:30
 #: ../../operation/reporting/graph_viewer.php:567
 msgid "Graph name"
 msgstr "グラフ名"
 
-#: ../../godmode/reporting/graphs.php:364
-#: ../../include/functions_container.php:148
+#: ../../godmode/reporting/graphs.php:364 ../../include/functions_container.php:148
 msgid "Number of Graphs"
 msgstr "グラフ数"
 
@@ -40248,8 +39909,8 @@ msgid ""
 "The maximum number of items in a chart is %d. You have %d elements, only first "
 "%d will be displayed."
 msgstr ""
-"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムの"
-"み表示されます。"
+"グラフ内のアイテム最大数は %d です。現在 %d アイテムあり、最初の %d アイテムのみ"
+"表示されます。"
 
 #: ../../godmode/reporting/graph_builder.graph_editor.php:315
 msgid "Sort selected items"
@@ -40288,19 +39949,18 @@ msgstr "警告: このパラメータはログの内容を制限しパフォー
 #: ../../godmode/reporting/reporting_builder.item_editor.php:1396
 msgid ""
 "This is the range, or period of time over which the report renders the "
-"information for this report type. For example, a week means data from a week "
-"ago from now. "
+"information for this report type. For example, a week means data from a week ago "
+"from now. "
 msgstr ""
-"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間で"
-"す。 たとえば、1週間は、今から1週間前のデータを意味します。 "
+"これは、レポートがこのレポートタイプの情報をレンダリングする範囲または期間です。 "
+"たとえば、1週間は、今から1週間前のデータを意味します。 "
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:1919
 msgid "Show modules"
 msgstr "モジュール表示"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2221
-#: ../../include/functions_ui.php:2494
-#: ../../operation/inventory/inventory.php:687
+#: ../../include/functions_ui.php:2494 ../../operation/inventory/inventory.php:687
 msgid "Last"
 msgstr "最新"
 
@@ -40319,8 +39979,8 @@ msgstr "描画定義"
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2630
 msgid "Please note that not all CSS styles are supported by PDF reports."
 msgstr ""
-"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意して"
-"ください。"
+"すべての CSS スタイルが PDF レポートでサポートされるわけではないことに注意してく"
+"ださい。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2728
 msgid "Greater or equal (>=)"
@@ -40351,8 +40011,8 @@ 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
 msgid "Checks in Warning status"
@@ -40388,11 +40048,11 @@ msgstr "承諾済 / 未承諾 "
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3162
 msgid ""
-"With the token enabled the query will affect the Historical Database, which "
-"may mean a small drop in performance."
+"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
 msgid "Include filter"
@@ -40409,11 +40069,11 @@ msgstr "除外フィルタ"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3464
 msgid ""
-"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise "
-"full value will be displayed (example: 20.742 bytes/sec)"
+"Use prefix notation for numeric values (example: 20,8Kbytes/sec), otherwise full "
+"value will be displayed (example: 20.742 bytes/sec)"
 msgstr ""
-"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完"
-"全な値が表示されます (例: 20.742 bytes/sec)。"
+"数値にプレフィックス表記を使用します (例: 20,8Kbytes/sec)。それ以外の場合は、完全"
+"な値が表示されます (例: 20.742 bytes/sec)。"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3502
 #: ../../include/functions_reporting.php:5163
@@ -40500,8 +40160,8 @@ 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
 msgid "Please save the report to start adding items into the list."
@@ -40667,11 +40327,11 @@ msgstr "書き込みアクセス"
 
 #: ../../godmode/reporting/reporting_builder.main.php:163
 msgid ""
-"For example, you want a report that the people of \"All\" groups can see but "
-"you want to edit only for you or your group."
+"For example, you want a report that the people of \"All\" groups can see but you "
+"want to edit only for you or your group."
 msgstr ""
-"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分"
-"のグループのみが編集できるようにしたい場合等に利用します。"
+"例えば、\"全て\"のグループに属するユーザが参照できるようにしたいが、自分や自分の"
+"グループのみが編集できるようにしたい場合等に利用します。"
 
 #: ../../godmode/reporting/reporting_builder.main.php:207
 msgid "Non interactive report"
@@ -40680,8 +40340,7 @@ msgstr "非対話型レポート"
 #: ../../godmode/reporting/reporting_builder.php:190
 #: ../../operation/reporting/reporting_viewer.php:100
 msgid "Your report has been planned, and the system will email you a "
-msgstr ""
-"レポート処理が計画されており、システムはあなたに次の電子メールを送ります: "
+msgstr "レポート処理が計画されており、システムはあなたに次の電子メールを送ります: "
 
 #: ../../godmode/reporting/reporting_builder.php:191
 #: ../../operation/reporting/reporting_viewer.php:101
@@ -40696,8 +40355,8 @@ msgid "Reports list"
 msgstr "レポート一覧"
 
 #: ../../godmode/reporting/reporting_builder.php:531
-#: ../../godmode/reporting/reporting_builder.php:3571
-#: ../../operation/menu.php:457 ../../operation/reporting/custom_reporting.php:23
+#: ../../godmode/reporting/reporting_builder.php:3571 ../../operation/menu.php:457
+#: ../../operation/reporting/custom_reporting.php:23
 msgid "Custom reporting"
 msgstr "カスタムレポート"
 
@@ -40923,36 +40582,35 @@ msgid ""
 "elements. Please update your license or disable enterprise section by moving "
 "enterprise directory to another location and try again."
 msgstr ""
-"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライ"
-"センスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の"
-"機能を無効にして、再試行してください。"
+"アップデートマネージャ %s は使用できません。%s 件監視制限を超えています。 ライセ"
+"ンスを更新するか、enterprise ディレクトリを別の場所に移動して Enterprise 版の機能"
+"を無効にして、再試行してください。"
 
 #: ../../godmode/um_client/index.php:107
 #, php-format
 msgid ""
 "You cannot use update manager %s. This license has expired %d days ago. Please "
-"update your license or disable enterprise section by moving enterprise "
-"directory to another location and try again."
+"update your license or disable enterprise section by moving enterprise directory "
+"to another location and try again."
 msgstr ""
-"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れ"
-"になりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動"
-"して Enterprise 版の機能を無効にして、再試行してください。"
+"アップデートマネージャ %s は使用できません。 このライセンスは %d 日前に期限切れに"
+"なりました。 ライセンスを更新するか、enterprise ディレクトリを別の場所に移動して "
+"Enterprise 版の機能を無効にして、再試行してください。"
 
 #: ../../godmode/um_client/index.php:120
 #, php-format
 msgid ""
-"You cannot use update manager %s. This license is a trial license to test all "
-"%s features. Please update your license to unlock all %s features."
+"You cannot use update manager %s. This license is a trial license to test all %s "
+"features. Please update your license to unlock all %s features."
 msgstr ""
-"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能"
-"をテストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能の"
-"ロックを解除してください。"
+"アップデートマネージャ %s は使用できません。 このライセンスは、すべての %s 機能を"
+"テストするための試用ライセンスです。 ライセンスを更新して、すべての %s 機能のロッ"
+"クを解除してください。"
 
 #: ../../godmode/um_client/index.php:216
 #, php-format
 msgid "Master server version %s does not match console version %s."
-msgstr ""
-"マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。"
+msgstr "マスターサーバのバージョン %s がコンソールのバージョン %s と一致しません。"
 
 #: ../../godmode/um_client/index.php:229
 #, php-format
@@ -40960,8 +40618,8 @@ msgid ""
 "'%s' recommended value is %s or greater. Please, change it on your PHP "
 "configuration file (php.ini) or contact with administrator"
 msgstr ""
-"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連"
-"絡してください 。"
+"'%s' の推奨値は %s 以上です。 PHP 設定ファイル(php.ini)で変更するか、管理者に連絡"
+"してください 。"
 
 #: ../../godmode/um_client/index.php:318
 msgid "Update online requires registration."
@@ -40972,8 +40630,8 @@ msgid ""
 "Applying offline patches may make your console unusable, we recommend to "
 "completely backup your files before applying any patch."
 msgstr ""
-"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。"
-"パッチを適用する前に、ファイルを完全にバックアップすることをお勧めします。"
+"オフラインパッチを適用すると、コンソールが使用できなくなる可能性があります。パッ"
+"チを適用する前に、ファイルを完全にバックアップすることをお勧めします。"
 
 #: ../../godmode/events/event_responses.editor.php:156
 msgid "Modal window"
@@ -41008,19 +40666,17 @@ msgstr "表示コマンド"
 
 #: ../../godmode/events/event_responses.editor.php:315
 msgid ""
-"If enabled the command will be displayed to any user that can execute this "
-"event response"
+"If enabled the command will be displayed to any user that can execute this event "
+"response"
 msgstr ""
-"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されま"
-"す"
+"有効にすると、このイベント応答を実行できるすべてのユーザにコマンドが表示されます"
 
 #: ../../godmode/events/event_edit_filter.php:304
 msgid "Save in group"
 msgstr "保存グループ"
 
 #: ../../godmode/events/event_edit_filter.php:304
-msgid ""
-"This group will be use to restrict the visibility of this filter with ACLs"
+msgid "This group will be use to restrict the visibility of this filter with ACLs"
 msgstr "このグループは、ACL でフィルタの表示を制限するのに利用されます"
 
 #: ../../godmode/events/event_edit_filter.php:502
@@ -41117,13 +40773,12 @@ msgstr "前のイベントからフィールドをロード"
 msgid "Event fields will be loaded. Do you want to continue?"
 msgstr "イベントフィールドが読み込まれます。続けますか?"
 
-#: ../../godmode/events/custom_events.php:92
-#: ../../include/functions_events.php:238
+#: ../../godmode/events/custom_events.php:92 ../../include/functions_events.php:238
 msgid "Event Id"
 msgstr "イベント ID"
 
-#: ../../godmode/events/custom_events.php:93
-#: ../../mobile/operation/events.php:237 ../../include/functions_events.php:241
+#: ../../godmode/events/custom_events.php:93 ../../mobile/operation/events.php:237
+#: ../../include/functions_events.php:241
 msgid "Event Name"
 msgstr "イベント名"
 
@@ -41132,8 +40787,7 @@ msgstr "イベント名"
 msgid "Agent Name"
 msgstr "エージェント名"
 
-#: ../../godmode/events/custom_events.php:96
-#: ../../include/functions_events.php:320
+#: ../../godmode/events/custom_events.php:96 ../../include/functions_events.php:320
 msgid "Agent IP"
 msgstr "エージェント IP"
 
@@ -41226,11 +40880,11 @@ msgstr "CSV ファイルから読み込んだ内容が不正です: %s"
 
 #: ../../godmode/wizards/HostDevices.class.php:391
 msgid ""
-"This network scan task has been already defined. Please edit it or create a "
-"new one."
+"This network scan task has been already defined. Please edit it or create a new "
+"one."
 msgstr ""
-"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに"
-"作成してください。"
+"このネットワークスキャンタスクはすでに定義済です。既存のものを編集するか新たに作"
+"成してください。"
 
 #: ../../godmode/wizards/HostDevices.class.php:433
 msgid "You must provide a valid network."
@@ -41279,8 +40933,8 @@ 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 ""
-"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含ま"
-"れている必要があります。例: 192.168.1.1/32"
+"CSV ファイルをアップロードできます。各行には、IP/MASK 形式のネットワークが含まれ"
+"ている必要があります。例: 192.168.1.1/32"
 
 #: ../../godmode/wizards/HostDevices.class.php:901
 msgid "Networks (current)"
@@ -41308,8 +40962,8 @@ msgid ""
 "Targets will be scanned if at least one of defined ports (comma separated) is "
 "open."
 msgstr ""
-"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャン"
-"されます。"
+"定義されたポート(カンマ区切り)の少なくとも 1つが開いている場合、対象がスキャンさ"
+"れます。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1083
 msgid "Auto discover known hardware"
@@ -41320,14 +40974,13 @@ msgid ""
 "Targets will be monitorized based on its Private Enterprise Number. "
 "Requires SNMP."
 msgstr ""
-"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP "
-"が必要です。"
+"対象は、プライベートエンタープライズ番号 に基づいて監視されます。 SNMP が"
+"必要です。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1100
 msgid "Module Host Alive will be added to discovered agents by default."
 msgstr ""
-"モジュール Host Alive が検出されたエージェントにデフォルトで追加されま"
-"す。"
+"モジュール Host Alive が検出されたエージェントにデフォルトで追加されます。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1148
 #, php-format
@@ -41335,8 +40988,8 @@ msgid ""
 "Configured networks could generate %d agents, your license only allows %d, "
 "'review results' is mandatory."
 msgstr ""
-"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセン"
-"スは %d までです。'結果の確認' は必須です。"
+"設定されたネットワークは %d エージェントを生成する可能性がありますが、ライセンス"
+"は %d までです。'結果の確認' は必須です。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1156
 #: ../../godmode/wizards/DiscoveryTaskList.class.php:917
@@ -41356,8 +41009,8 @@ msgid ""
 "System is able to auto configure detected host & devices by applying your "
 "defined configuration rules."
 msgstr ""
-"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイ"
-"スを自動設定できます。"
+"システムは、定義された設定ルールを適用することにより、検出されたホストとデバイス"
+"を自動設定できます。"
 
 #: ../../godmode/wizards/HostDevices.class.php:1202
 msgid "SNMP enabled"
@@ -41646,8 +41299,8 @@ msgid ""
 "Please ensure instances or regions are being monitorized and 'scan and general "
 "monitoring' is enabled."
 msgstr ""
-"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有"
-"効になっていることを確認してください。"
+"インスタンスまたはリージョンが監視されており、'スキャンおよび一般的な監視' が有効"
+"になっていることを確認してください。"
 
 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1550
 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1692
@@ -41831,11 +41484,11 @@ msgstr "プラグインの登録"
 #: ../../godmode/servers/plugin_registration.php:86
 #, php-format
 msgid ""
-"This console is not manager of this environment, please manage this feature "
-"from feature from %s."
+"This console is not manager of this environment, please manage this feature from "
+"feature from %s."
 msgstr ""
-"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理"
-"してください。"
+"このコンソールはこの環境のマネージャではありません。%s の機能からこの機能を管理し"
+"てください。"
 
 #: ../../godmode/servers/plugin_registration.php:105
 msgid "Plugin Registration"
@@ -41932,8 +41585,7 @@ msgstr "プラグインタイプ"
 msgid ""
 "This value only will be applied if is minor than the server general "
 "configuration plugin timeout"
-msgstr ""
-"全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。"
+msgstr "全体のサーバプラグインタイムアウトよりも小さい場合にこの値が適用されます。"
 
 #: ../../godmode/servers/plugin.php:433
 msgid "If you set a 0 seconds timeout, the server plugin timeout will be used"
@@ -42034,8 +41686,8 @@ 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
 msgid "Are you sure you want to perform this action?"
@@ -42043,11 +41695,11 @@ msgstr "この処理を実行してもよろしいですか。"
 
 #: ../../godmode/servers/plugin.php:1233
 msgid ""
-"The plugin macros cannot be updated because some modules or components are "
-"using the plugin"
+"The plugin macros cannot be updated because some modules or components are using "
+"the plugin"
 msgstr ""
-"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ"
-"インマクロは更新できません。"
+"いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグイ"
+"ンマクロは更新できません。"
 
 #: ../../godmode/servers/discovery.php:190
 msgid "You must create a task first"
@@ -42168,8 +41820,8 @@ msgid ""
 "This node is configured with centralized mode. All categories information is "
 "read only. Go to %s to manage it."
 msgstr ""
-"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専"
-"用です。管理するには %s に移動します。"
+"このノードは中央管理モードで設定されています。すべてのカテゴリ情報は読み取り専用"
+"です。管理するには %s に移動します。"
 
 #: ../../godmode/category/category.php:118
 msgid "Error deleting category"
@@ -42263,17 +41915,17 @@ msgstr "Pandora FMS %s - ビルド %s"
 
 #: ../../mobile/include/system.class.php:156
 msgid ""
-"Access to this page is restricted to authorized users only, please contact "
-"your system administrator if you should need help."
+"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
 #, php-format
 msgid ""
-"Please remember that any attempts to access this page will be recorded on the "
-"%s System Database."
+"Please remember that any attempts to access this page will be recorded on the %s "
+"System Database."
 msgstr "このページへのアクセスは、%s システムデータベースに記録されます。"
 
 #: ../../mobile/include/ui.class.php:120
@@ -42323,8 +41975,7 @@ msgstr "折り返しが不正です"
 msgid "User cannot log in into this console, please contact administrator"
 msgstr "ユーザはこのコンソールにログインできません。管理者に連絡してください。"
 
-#: ../../mobile/include/user.class.php:287
-#: ../../mobile/include/user.class.php:302
+#: ../../mobile/include/user.class.php:287 ../../mobile/include/user.class.php:302
 #: ../../mobile/include/user.class.php:309
 msgid "Double authentication failed"
 msgstr "二段階認証に失敗しました"
@@ -42361,8 +42012,7 @@ msgstr "ユーザ"
 msgid "password"
 msgstr "パスワード"
 
-#: ../../mobile/include/user.class.php:488
-#: ../../mobile/include/user.class.php:489
+#: ../../mobile/include/user.class.php:488 ../../mobile/include/user.class.php:489
 msgid "Authenticator code"
 msgstr "認証コード"
 
@@ -42534,8 +42184,8 @@ msgstr "グラフ生成エラー"
 #: ../../include/functions_reporting_html.php:1095
 #: ../../include/functions_reporting_html.php:1337
 #: ../../include/functions_reporting_html.php:2658
-#: ../../include/functions_events.php:2571
-#: ../../include/functions_events.php:4742 ../../operation/events/events.php:779
+#: ../../include/functions_events.php:2571 ../../include/functions_events.php:4742
+#: ../../operation/events/events.php:779
 msgid "New event"
 msgstr "新規イベント"
 
@@ -42543,8 +42193,8 @@ msgstr "新規イベント"
 #: ../../include/functions_reporting_html.php:1084
 #: ../../include/functions_reporting_html.php:1342
 #: ../../include/functions_reporting_html.php:2663
-#: ../../include/functions_events.php:2576
-#: ../../include/functions_events.php:4748 ../../operation/events/events.php:792
+#: ../../include/functions_events.php:2576 ../../include/functions_events.php:4748
+#: ../../operation/events/events.php:792
 msgid "Event validated"
 msgstr "承諾済"
 
@@ -42552,8 +42202,8 @@ msgstr "承諾済"
 #: ../../include/functions_reporting_html.php:1089
 #: ../../include/functions_reporting_html.php:1347
 #: ../../include/functions_reporting_html.php:2668
-#: ../../include/functions_events.php:2581
-#: ../../include/functions_events.php:4754 ../../operation/events/events.php:804
+#: ../../include/functions_events.php:2581 ../../include/functions_events.php:4754
+#: ../../operation/events/events.php:804
 msgid "Event in process"
 msgstr "処理中イベント"
 
@@ -42599,8 +42249,7 @@ msgstr "定義済フィルタ"
 #: ../../include/functions_reporting_html.php:6335
 #: ../../include/functions_reporting.php:2189
 #: ../../include/functions_reporting.php:2564
-#: ../../include/functions_events.php:2497
-#: ../../include/functions_events.php:2500
+#: ../../include/functions_events.php:2497 ../../include/functions_events.php:2500
 msgid "No events"
 msgstr "イベントがありません。"
 
@@ -42648,8 +42297,7 @@ msgid ""
 "printed at the end."
 msgstr ""
 "'ラベル' フィールドを利用するには、'(_VALUE_)'を\n"
-"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されま"
-"す。"
+"\t\t\t\t\t置き換えるテキストを書きます。最終的にはモジュールの値が表示されます。"
 
 #: ../../include/functions_visual_map_editor.php:107
 #: ../../include/functions_visual_map_editor.php:133
@@ -42668,8 +42316,7 @@ msgid "Fill color"
 msgstr "塗りつぶしの色"
 
 #: ../../include/functions_visual_map_editor.php:239
-msgid ""
-"Scroll the mouse wheel over the label editor to change the background color"
+msgid "Scroll the mouse wheel over the label editor to change the background color"
 msgstr ""
 "背景色を変更するには、ラベルエディタの上でマウスのウィールをスクロースします"
 
@@ -42818,12 +42465,12 @@ msgstr "デフォルト色"
 
 #: ../../include/functions_visual_map_editor.php:810
 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)"
+"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
 msgid "Ranges"
@@ -42911,13 +42558,12 @@ msgstr "グループへの制限アクセス"
 
 #: ../../include/functions_visual_map_editor.php:1215
 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."
+"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
@@ -43051,8 +42697,7 @@ msgstr "変更を保存しました。"
 msgid "Could not be save."
 msgstr "保存できません。"
 
-#: ../../include/graphs/export_data.php:91
-#: ../../include/graphs/export_data.php:157
+#: ../../include/graphs/export_data.php:91 ../../include/graphs/export_data.php:157
 msgid "An error occured exporting the data"
 msgstr "データエクスポートエラー"
 
@@ -43061,8 +42706,8 @@ 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:466 ../../include/functions_graph.php:2774
+#: ../../include/functions_graph.php:2822
 msgid "Out of limits"
 msgstr "範囲外"
 
@@ -43094,13 +42739,11 @@ msgstr "SNMPトラップサーバ"
 msgid "Correlation server"
 msgstr "相関サーバ"
 
-#: ../../include/functions_servers.php:712
-#: ../../include/functions_servers.php:1230
+#: ../../include/functions_servers.php:712 ../../include/functions_servers.php:1230
 msgid "Enterprise ICMP server"
 msgstr "エンタープライズ ICMP サーバ"
 
-#: ../../include/functions_servers.php:725
-#: ../../include/functions_servers.php:1233
+#: ../../include/functions_servers.php:725 ../../include/functions_servers.php:1233
 msgid "Enterprise SNMP server"
 msgstr "エンタープライズSNMPサーバ"
 
@@ -43125,8 +42768,7 @@ msgstr "同期サーバ"
 msgid "Wux server"
 msgstr "Wux サーバ"
 
-#: ../../include/functions_servers.php:803
-#: ../../include/functions_servers.php:1260
+#: ../../include/functions_servers.php:803 ../../include/functions_servers.php:1260
 msgid "Log server"
 msgstr "ログサーバ"
 
@@ -43398,8 +43040,8 @@ msgstr "このSLAは、次の計画停止の影響を受けています"
 
 #: ../../include/functions_reporting_html.php:6366
 msgid ""
-"If the duration of the scheduled downtime is less than 5 minutes it will not "
-"be represented in the graph"
+"If the duration of the scheduled downtime is less than 5 minutes it will not be "
+"represented in the graph"
 msgstr "計画停止の期間が 5分未満の場合、グラフには表示されません。"
 
 #: ../../include/functions_reporting_html.php:6373
@@ -43526,9 +43168,8 @@ msgid "ALERT FIRED"
 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
+#: ../../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
 msgid "NO DATA"
 msgstr "データがありません"
@@ -43678,11 +43319,10 @@ msgid ""
 "This is an email test sent from Pandora FMS. If you can read this, your "
 "configuration works."
 msgstr ""
-"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は"
-"機能しています。"
+"これは、Pandora FMS から送信されたメールテストです。 これを読めているなら設定は機"
+"能しています。"
 
-#: ../../include/functions.php:6311
-#: ../../include/class/ConsoleSupervisor.php:1645
+#: ../../include/functions.php:6311 ../../include/class/ConsoleSupervisor.php:1645
 #: ../../include/class/ConsoleSupervisor.php:1669
 #: ../../include/class/ConsoleSupervisor.php:1698
 #: ../../include/class/ConsoleSupervisor.php:1779
@@ -43694,8 +43334,7 @@ msgstr "PHP 設定における値 '%s' はおすすめしません"
 msgid "Recommended value is: -1"
 msgstr "推奨値は -1 です"
 
-#: ../../include/functions.php:6313
-#: ../../include/class/ConsoleSupervisor.php:1704
+#: ../../include/functions.php:6313 ../../include/class/ConsoleSupervisor.php:1704
 #: ../../include/class/ConsoleSupervisor.php:1785
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
@@ -43736,8 +43375,8 @@ msgid ""
 "This console is not the environment administrator. Please, manage this feature "
 "from centralized manager console (Metaconsole)."
 msgstr ""
-"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタ"
-"コンソール)から管理してください。"
+"このコンソールは環境管理者ではありません。 この機能は、中央管理コンソール(メタコ"
+"ンソール)から管理してください。"
 
 #: ../../include/functions_api.php:196
 msgid "Auth error"
@@ -43749,11 +43388,10 @@ msgstr "現在のライセンスではこの操作はできません。"
 
 #: ../../include/functions_api.php:1534
 msgid ""
-"The agent could not be modified. For security reasons, use a group other than "
-"0."
+"The agent could not be modified. For security reasons, use a group other than 0."
 msgstr ""
-"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループ"
-"を利用してください。"
+"エージェントを編集できませんでした。セキュリティ上の理由により 0 以外のグループを"
+"利用してください。"
 
 #: ../../include/functions_api.php:1889
 #, php-format
@@ -43884,8 +43522,8 @@ msgid ""
 "Error stopping downtime. Periodical and running scheduled downtime cannot be "
 "stopped."
 msgstr ""
-"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止する"
-"ことはできません。"
+"計画停止の停止中にエラーが発生しました。 定期実行かつ実行中の計画停止を停止するこ"
+"とはできません。"
 
 #: ../../include/functions_api.php:7071
 msgid "Downtime stopped."
@@ -44077,8 +43715,7 @@ msgstr "自動検出タスクの有効化/無効化エラー。id_user は空に
 #: ../../include/functions_api.php:17367
 msgid ""
 "Error enable/disable discovery task. Enable/disable value cannot be left blank."
-msgstr ""
-"自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
+msgstr "自動検出タスクの有効化/無効化エラー。有効化/無効化の設定は空にできません。"
 
 #: ../../include/functions_api.php:17392
 msgid "Error in discovery task enabling/disabling."
@@ -44096,8 +43733,7 @@ msgstr "自動検出タスクを無効化しました。"
 msgid "Radial dynamic"
 msgstr "放射状で動的"
 
-#: ../../include/functions_networkmap.php:1311
-#: ../../include/functions_maps.php:38
+#: ../../include/functions_networkmap.php:1311 ../../include/functions_maps.php:38
 msgid "Topology"
 msgstr "トポロジ"
 
@@ -44117,8 +43753,7 @@ msgstr "新たな動的マップの作成"
 msgid "Create a new radial dynamic map"
 msgstr "放射状の動的マップを新規作成"
 
-#: ../../include/functions_networkmap.php:2073
-#: ../../include/functions_maps.php:73
+#: ../../include/functions_networkmap.php:2073 ../../include/functions_maps.php:73
 #: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr "コピー: "
@@ -44149,8 +43784,7 @@ msgstr "二段階認証を有効化しようとしています"
 #: ../../include/ajax/double_auth.ajax.php:210
 msgid ""
 "With this option enabled, your account access will be more secure, \n"
-"\t\tcause a code generated by other application will be required after the "
-"login"
+"\t\tcause a code generated by other application will be required after the login"
 msgstr ""
 "このオプションを有効化すると、あなたのアカウントはよりセキュアになります。\n"
 "\t\tログイン後、他のアプリケーションで生成したコードが必要になります。"
@@ -44313,9 +43947,9 @@ msgid ""
 "charts or CSV exported data won't match, because is interpreted at runtime. "
 "Please check 'Pandora FMS Engineering' chapter from documentation."
 msgstr ""
-"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラ"
-"フ、または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ド"
-"キュメントの 'Pandora FMS の技術情報' の章を確認してください。"
+"Pandora FMS では、データは圧縮されて保存されます。 データベースの可視化、グラフ、"
+"または CSV エクスポートデータは、実行時に解釈されるため一致しません。 ドキュメン"
+"トの 'Pandora FMS の技術情報' の章を確認してください。"
 
 #: ../../include/ajax/module.php:586
 msgid "No available data to showaaaa"
@@ -44326,14 +43960,10 @@ msgid "T"
 msgstr "T"
 
 #: ../../include/ajax/module.php:1007 ../../include/functions_reports.php:650
-#: ../../include/functions_reports.php:654
-#: ../../include/functions_reports.php:659
-#: ../../include/functions_reports.php:665
-#: ../../include/functions_reports.php:672
-#: ../../include/functions_reports.php:676
-#: ../../include/functions_reports.php:680
-#: ../../include/functions_reports.php:687
-#: ../../include/functions_reports.php:693
+#: ../../include/functions_reports.php:654 ../../include/functions_reports.php:659
+#: ../../include/functions_reports.php:665 ../../include/functions_reports.php:672
+#: ../../include/functions_reports.php:676 ../../include/functions_reports.php:680
+#: ../../include/functions_reports.php:687 ../../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
@@ -44566,35 +44196,30 @@ msgid ""
 "There was an error copying the agent configuration, the copy has been cancelled"
 msgstr "エージェントの設定コピーに失敗しました。コピーを中止します。"
 
-#: ../../include/functions_agents.php:3022
-#: ../../include/functions_agents.php:3061
+#: ../../include/functions_agents.php:3022 ../../include/functions_agents.php:3061
 #: ../../include/functions_agents.php:3150
 msgid "No Monitors"
 msgstr "モニタ項目なし"
 
-#: ../../include/functions_agents.php:3030
-#: ../../include/functions_agents.php:3091
+#: ../../include/functions_agents.php:3030 ../../include/functions_agents.php:3091
 #: ../../include/functions_agents.php:3158
 #: ../../include/functions_reporting.php:13111
 msgid "At least one module in CRITICAL status"
 msgstr "一つ以上のモジュールが致命的な状態です。"
 
-#: ../../include/functions_agents.php:3036
-#: ../../include/functions_agents.php:3104
+#: ../../include/functions_agents.php:3036 ../../include/functions_agents.php:3104
 #: ../../include/functions_agents.php:3166
 #: ../../include/functions_reporting.php:13118
 msgid "At least one module in WARNING status"
 msgstr "一つ以上のモジュールが警告状態です。"
 
-#: ../../include/functions_agents.php:3042
-#: ../../include/functions_agents.php:3117
+#: ../../include/functions_agents.php:3042 ../../include/functions_agents.php:3117
 #: ../../include/functions_agents.php:3174
 #: ../../include/functions_reporting.php:13125
 msgid "At least one module is in UKNOWN status"
 msgstr "一つ以上のモジュールが不明な状態です。"
 
-#: ../../include/functions_agents.php:3048
-#: ../../include/functions_agents.php:3130
+#: ../../include/functions_agents.php:3048 ../../include/functions_agents.php:3130
 #: ../../include/functions_agents.php:3182
 #: ../../include/functions_reporting.php:13132
 msgid "All Monitors OK"
@@ -44652,8 +44277,8 @@ msgid ""
 "API request failed. Please check Integria IMS' access credentials in Pandora "
 "setup."
 msgstr ""
-"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認"
-"証情報を確認してください。"
+"API リクエストが失敗しました。 Pandora セットアップで Integria IMS のアクセス認証"
+"情報を確認してください。"
 
 #: ../../include/functions_integriaims.php:557
 msgid "File successfully added"
@@ -44704,8 +44329,7 @@ msgid "Create a new web Server module"
 msgstr "ウェブサーバモジュールの新規作成"
 
 #: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
-msgid ""
-"Problems with configuration permissions. Please contact with Administrator"
+msgid "Problems with configuration permissions. Please contact with Administrator"
 msgstr "パーミッション設定に問題があります。管理者に連絡してください。"
 
 #: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
@@ -45071,12 +44695,12 @@ msgstr "トポロジグループ"
 
 #: ../../include/help/clippy/topology_group.php:35
 msgid ""
-"Please note that group topology maps do not show the parent relationship "
-"between nodes, it only shows the group parentship and the agent distribution "
-"inside them. "
+"Please note that group topology maps do not show the parent relationship between "
+"nodes, it only shows the group parentship and the agent distribution inside "
+"them. "
 msgstr ""
-"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。"
-"グループの親子関係とその中にあるエージェントのみを表示します。 "
+"グループトポロジマップはノード間の親子関係を表示しないことに注意してください。グ"
+"ループの親子関係とその中にあるエージェントのみを表示します。 "
 
 #: ../../include/help/clippy/homepage.php:75
 msgid "Hi, can I help you?"
@@ -45089,9 +44713,9 @@ msgid ""
 "follow my steps to do basic tasks in %s or you can close me and never see me "
 "again."
 msgstr ""
-"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私"
-"の手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わない"
-"ようにすることができます。"
+"私の自己紹介をさせてください。私は %s の迷惑なアシスタント、パンドリンです。 私の"
+"手順に従って %s で基本的なタスクを実行するか、私を閉じて次からは私に会わないよう"
+"にすることができます。"
 
 #: ../../include/help/clippy/homepage.php:75
 msgid "Close this wizard and don't open it again."
@@ -45131,20 +44755,20 @@ msgstr "このエージェントには不明モジュールがあります。"
 #: ../../include/help/clippy/module_unknow.php:35
 msgid ""
 "Unknown modules are modules which receive data normally at least in one "
-"occassion, but at this time are not receving data. Please check our "
-"troubleshoot help page to help you determine why you have unknown modules."
+"occassion, but at this time are not receving data. Please check our troubleshoot "
+"help page to help you determine why you have unknown modules."
 msgstr ""
-"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデー"
-"タを受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定するに"
-"は、トラブルシュートのためのヘルプページを確認してください。"
+"不明モジュールとは、少なくとも一回は正常にデータを受信していたが現時点ではデータ"
+"を受信していないモジュールです。なぜ不明モジュールがあるのか原因を特定するには、"
+"トラブルシュートのためのヘルプページを確認してください。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
-"Please note that you have your agent setup to do not add new modules coming "
-"from the data XML."
+"Please note that you have your agent setup to do not add new modules coming from "
+"the data XML."
 msgstr ""
-"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになっ"
-"ていることに注意してください。"
+"エージェント設定で、XML で送られてくる新たなモジュールが追加されないようになって"
+"いることに注意してください。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
@@ -45153,54 +44777,51 @@ msgid ""
 "manually in the interface (with the exact name and type as coming in the XML "
 "file)."
 msgstr ""
-"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加し"
-"た場合は、インタフェースで手動作成するまでエージェントに反映されないということ"
-"を意味します(正しい名前とタイプは XML で送られます)。"
+"ローカルプラグインがあるかまたは、手動で新たなモジュールを設定ファイルに追加した"
+"場合は、インタフェースで手動作成するまでエージェントに反映されないということを意"
+"味します(正しい名前とタイプは XML で送られます)。"
 
 #: ../../include/help/clippy/modules_not_learning_mode.php:46
 msgid ""
-"You should use the \"normal\" mode (non learn) only when you don't intend to "
-"add more modules to the agent."
+"You should use the \"normal\" mode (non learn) only when you don't intend to add "
+"more modules to the agent."
 msgstr ""
-"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使"
-"います。"
+"エージェントにモジュールを追加したくない時のみ、\"通常\"モード(学習しない)を使い"
+"ます。"
 
 #: ../../include/help/clippy/operation_agentes_ver_agente.php:35
 msgid ""
 "The last step is to check the alert created. Click on the round icon to force "
-"the action execution and after a few minutes you will receive the alert in "
-"your email."
+"the action execution and after a few minutes you will receive the alert in your "
+"email."
 msgstr ""
-"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイ"
-"コンをクリックします。数分のうちにアラートをメールで受信するでしょう。"
+"最後のステップは、作成したアラートの確認です。アクションの強制実行には丸いアイコ"
+"ンをクリックします。数分のうちにアラートをメールで受信するでしょう。"
 
 #: ../../include/help/clippy/operation_agentes_ver_agente.php:35
-msgid ""
-"And restart your pandora server to read again general configuration tokens."
-msgstr ""
-"そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
+msgid "And restart your pandora server to read again general configuration tokens."
+msgstr "そして、設定ファイルを再読み込みするために pandora サーバを再起動します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:35
 msgid ""
 "Let me show you how to create an email action: Click on Create button and fill "
 "the form showed in the following screen."
 msgstr ""
-"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示"
-"されるフォームに入力します。"
+"email アクションの作成方法をお見せします。作成ボタンをクリックし次の画面に表示さ"
+"れるフォームに入力します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:49
 msgid ""
-"Now, you have to go to the monitors list and look for a critical module to "
-"apply the alert."
+"Now, you have to go to the monitors list and look for a critical module to apply "
+"the alert."
 msgstr "ここで、監視一覧へ行き、アラートを適用する障害モジュールを探します。"
 
 #: ../../include/help/clippy/godmode_alerts_alert_actions.php:54
 msgid ""
-"Click on the arrow to drop down the Monitoring submenu and select Monitor "
-"Detail."
+"Click on the arrow to drop down the Monitoring submenu and select Monitor Detail."
 msgstr ""
-"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細"
-"を選択します。"
+"モニタリングサブメニューをドロップダウンするために矢印をクリックしてモニタ詳細を"
+"選択します。"
 
 #: ../../include/help/clippy/agent_out_of_limits.php:35
 msgid "Agent contact date passed it's ETA!."
@@ -45212,9 +44833,8 @@ msgid ""
 "(too load or just down). Check also connectivity between the agent and the "
 "server."
 msgstr ""
-"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)し"
-"ているときにこれが起こります。エージェントとサーバの間の通信も確認してくださ"
-"い。"
+"エージェントからの通信が止まったりサーバで何らかの問題が発生(高負荷やダウン)して"
+"いるときにこれが起こります。エージェントとサーバの間の通信も確認してください。"
 
 #: ../../include/help/clippy/godmode_agentes_modificar_agente.php:34
 msgid "I'm going to show you how to monitor a server."
@@ -45243,17 +44863,17 @@ msgstr "未初期化モジュールがあります。"
 #: ../../include/help/clippy/modules_not_init.php:35
 msgid ""
 "This happen when you have just created a module and it's not executed at first "
-"time. Usually in a few seconds should be initialized and you will be able to "
-"see in main view. If you keep non-init modules for more than 24hr (due a "
-"problem in it's execution or configuration) they will be automatically deleted "
-"by the system. Non-init are not visible in the “main view”, you can see/edit "
-"them in the module administration section, in the agent administrator."
+"time. Usually in a few seconds should be initialized and you will be able to see "
+"in main view. If you keep non-init modules for more than 24hr (due a problem in "
+"it's execution or configuration) they will be automatically deleted by the "
+"system. Non-init are not visible in the “main view”, you can see/edit them in "
+"the module administration section, in the agent administrator."
 msgstr ""
-"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で"
-"初期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題があ"
-"る等で)未初期化モジュールが放置された場合は、システムにより自動的に削除されま"
-"す。未初期化モジュールは、メインがメインに表示されません。エージェント管理のモ"
-"ジュール管理画面でのみ参照や編集ができます。"
+"モジュール作成後、最初の実行がされていない場合にこれが発生します。通常は数秒で初"
+"期化されメイン画面で参照できるようになります。24時間以上(実行や設定に問題がある等"
+"で)未初期化モジュールが放置された場合は、システムにより自動的に削除されます。未初"
+"期化モジュールは、メインがメインに表示されません。エージェント管理のモジュール管"
+"理画面でのみ参照や編集ができます。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:34
 msgid "Fill the name of your action."
@@ -45275,8 +44895,8 @@ msgstr "コマンドフィールドで \"email\" を選択します。"
 msgid ""
 "In the threshold field enter the seconds. The help icon show more information."
 msgstr ""
-"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示し"
-"ます。"
+"閾値フィールドで秒を入力します。ヘルプアイコンをクリックするとより詳細を表示しま"
+"す。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:51
 msgid ""
@@ -45291,16 +44911,16 @@ msgid ""
 "In the \"Subject\"  field  you can use the macros _agent_ or _module_ for each "
 "name."
 msgstr ""
-"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロ"
-"が利用できます。"
+"\"Subject\" フィールドでは、それぞれの名前を表す _agent_ または _module_ マクロが"
+"利用できます。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:61
 msgid ""
 "In the text field, you can also use macros. Get more information about the "
 "macros by clicking on the help icon."
 msgstr ""
-"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイ"
-"コンをクリックしてください。"
+"テキストフィールドではマクロも利用できます。マクロに関するより詳細はヘルプアイコ"
+"ンをクリックしてください。"
 
 #: ../../include/help/clippy/godmode_alerts_configure_alert_action.php:66
 msgid "Click on Create button to create the action."
@@ -45315,14 +44935,14 @@ msgid ""
 "Please note that information provided here affects how the agent collect "
 "information and generate the data XML. Any data/configuration reported by the "
 "agent, different from data or description is discarded, and the configuration "
-"shown in the console prevails over any configuration coming from the agent, "
-"this applies for example for crit/warn thresholds, interval, module group, min/"
-"max value, tags, etc."
+"shown in the console prevails over any configuration coming from the agent, this "
+"applies for example for crit/warn thresholds, interval, module group, min/max "
+"value, tags, etc."
 msgstr ""
-"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で"
-"影響があるということに注意してください。エージェントから送られてくるデータや設"
-"定のうち、データおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、"
-"最小・最大の値、タグなどは、コンソールに設定されているものが優先されます。"
+"ここに表示される情報は、エージェントが情報を収集し送ってくる XML データとの間で影"
+"響があるということに注意してください。エージェントから送られてくるデータや設定の"
+"うち、データおよび説明以外、たとえば障害や警告の閾値、モジュールグループ、最小・"
+"最大の値、タグなどは、コンソールに設定されているものが優先されます。"
 
 #: ../../include/help/clippy/data_configuration_module.php:35
 msgid ""
@@ -45330,9 +44950,9 @@ msgid ""
 "see in the console, but after the first import, system will ignore any update "
 "coming from the XML/Agent."
 msgstr ""
-"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができ"
-"ますが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無"
-"視します。"
+"最初に XML で送られてくるデータはすべて取り込まれコンソールで参照することができま"
+"すが、初回の取り込み後は、システムはエージェントから送られてくる設定情報は無視し"
+"ます。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:34
 msgid "Now you must go to Modules. Don't worry I'll lead you."
@@ -45358,8 +44978,7 @@ msgstr "そしてボタンをクリックします。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:75
 msgid "Now you must create the module. Don't worry, i'll teach you ."
-msgstr ""
-"ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
+msgstr "ここでモジュールを作成する必要があります。心配はいりません。お教えします。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:79
 msgid "Now we are going to fill the form."
@@ -45387,15 +45006,14 @@ msgstr "そしてこのボタンをクリックするだけで終了です。"
 
 #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:114
 msgid ""
-"Congrats! Your module has been created. 
and the status color is blue." -"
That color means that the module hasn't been executed for the first " +"Congrats! Your module has been created.
and the status color is blue.
That color means that the module hasn't been executed for the first " "time. In the next seconds, if there is no problem, the status color will turn " "into red or green." msgstr "" -"おめでとうございます! モジュールが作成されました。
そして、状態の色は " -"青です。
この色は、モジュールの初回実行が完了していないことを意味して" -"います。問題がなければ数秒のうちに状態の色がまたはに変わりま" -"す。" +"おめでとうございます! モジュールが作成されました。
そして、状態の色は 青" +"です。
この色は、モジュールの初回実行が完了していないことを意味していま" +"す。問題がなければ数秒のうちに状態の色がまたはに変わります。" #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:129 msgid "Click on alerts tab and then fill the form to add an alert." @@ -45419,22 +45037,22 @@ msgstr "アラートを作成するために、アラートの追加ボタンを #: ../../include/help/clippy/godmode_agentes_configurar_agente.php:171 msgid "" -"To test the alert you've just created go to the main view by clicking on the " -"eye tab." +"To test the alert you've just created go to the main view by clicking on the eye " +"tab." msgstr "" "作成したアラートのテストをするには、メイン画面へ行き目のタブをクリックします。" #: ../../include/help/clippy/server_queued_modules.php:35 msgid "" -"You have too much items in the processing queue. This can happen if your " -"server is too loaded and/or not properly configured. This could be something " -"temporal, or a bottleneck. One possible solution is increase number of server " -"threads, but you should consider getting support about this." +"You have too much items in the processing queue. This can happen if your server " +"is too loaded and/or not properly configured. This could be something temporal, " +"or a bottleneck. One possible solution is increase number of server threads, but " +"you should consider getting support about this." msgstr "" -"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎている" -"か、またはサーバが正しく設定されていません。これは一時的なものかもしれません" -"が、ボトルネックになります。一つの解決策としてはサーバのスレッド数を増やすこと" -"です。しかし、これについては支援を得ることを考慮した方がよいでしょう。" +"キューにたくさんの処理が溜まっています。サーバに多くの処理を定義しすぎているか、" +"またはサーバが正しく設定されていません。これは一時的なものかもしれませんが、ボト" +"ルネックになります。一つの解決策としてはサーバのスレッド数を増やすことです。しか" +"し、これについては支援を得ることを考慮した方がよいでしょう。" #: ../../include/help/clippy/servers_down.php:35 msgid "All servers down" @@ -45446,8 +45064,8 @@ msgid "" "command: \"sudo /etc/init.d/pandora_server restart\". It's possible need " "introduce root pass." msgstr "" -"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/" -"pandora_server restart\" を実行します。root のパスワードが必要です。" +"サーバを起動してください。コマンドラインから、\"sudo /etc/init.d/pandora_server " +"restart\" を実行します。root のパスワードが必要です。" #: ../../include/help/clippy/interval_agent_min.php:35 msgid "Interval Agent." @@ -45457,16 +45075,16 @@ msgstr "エージェントの間隔" msgid "" "Please note that having agents with a monitoring interval below 300 seconds is " "not recommended. This will impact seriously in the performance of the server. " -"For example, having 200 agents with one minute interval, is the same than " -"having 1000 agents with a 5 minute interval. The probability of getting " -"unknown modules is higher, and the impact on the server is higher because it " -"requires a shorter response time." +"For example, having 200 agents with one minute interval, is the same than having " +"1000 agents with a 5 minute interval. The probability of getting unknown modules " +"is higher, and the impact on the server is higher because it requires a shorter " +"response time." msgstr "" -"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意して" -"ください。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間" -"隔で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じで" -"す。おそらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのイ" -"ンパクトは大きくなるでしょう。" +"エージェントの監視間隔を 300秒未満にすることはお勧めしないということに注意してく" +"ださい。これは、サーバのパフォーマンスに重大な影響を及ぼします。例えば、1分間隔" +"で 200エージェントがある場合は、5分間隔で 1000エージェントがあるのと同じです。お" +"そらく短時間の応答が必要になるため、不明モジュールが多くなりサーバへのインパクト" +"は大きくなるでしょう。" #: ../../include/help/clippy/operation_agentes_status_monitor.php:34 msgid "" @@ -45478,13 +45096,13 @@ msgstr "" #: ../../include/help/clippy/operation_agentes_status_monitor.php:38 msgid "" -"If you know the name of the agent or the name of the module in critical " -"status, type it in this field to make the module list shorter. You can write " -"the entire name or just a part of it." +"If you know the name of the agent or the name of the module in critical status, " +"type it in this field to make the module list shorter. You can write the entire " +"name or just a part of it." msgstr "" -"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧" -"を短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力" -"ができます。" +"障害状態のエージェント名またはモジュール名がわかっている場合は、モジュール一覧を" +"短くするためにこのフィールドにそれを入力します。名前全体もしくは一部分の入力がで" +"きます。" #: ../../include/help/clippy/operation_agentes_status_monitor.php:43 msgid "Click on Show button to get the modules list filtered." @@ -45505,8 +45123,7 @@ msgstr "タスクメールの設定は、Enterprise 設定にあります:" msgid "Please check if the email configuration is correct." msgstr "メール設定が正しいか確認してください。" -#: ../../include/functions_profile.php:188 -#: ../../operation/users/user_edit.php:972 +#: ../../include/functions_profile.php:188 ../../operation/users/user_edit.php:972 #: ../../operation/users/user_edit.php:981 msgid "Profiles/Groups assigned to this user" msgstr "このユーザに割り当てるプロファイル/グループの組み合わせ" @@ -45625,8 +45242,7 @@ msgstr "メジャー" #: ../../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:2647 ../../include/functions_groups.php:2661 #: ../../include/functions_groups.php:2711 msgid "Enterprise version not installed" msgstr "Enterprise 版がインストールされていません" @@ -45646,8 +45262,8 @@ msgstr "処理できないエラーが発生しました" #: ../../include/functions_ui.php:6775 #, 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." +"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 "" "これらのコントロールは、システムのタイムゾーン(%s)を利用します。ユーザのタイム" "ゾーン(%s)ではありません。ユーザのタイムゾーンとの違いは %s です。" @@ -46087,8 +45703,7 @@ msgstr "要素削除" msgid "Click here to get more information" msgstr "詳細についてはこちらをクリックしてください" -#: ../../include/functions_reports.php:651 -#: ../../include/functions_reports.php:1102 +#: ../../include/functions_reports.php:651 ../../include/functions_reports.php:1102 #: ../../include/functions_reporting.php:10729 #: ../../include/functions_reporting.php:10889 msgid "Simple graph" @@ -46110,8 +45725,7 @@ msgstr "モジュールヒストグラムグラフ" msgid "IPAM networks" msgstr "IPAM ネットワーク" -#: ../../include/functions_reports.php:736 -#: ../../include/functions_reports.php:740 +#: ../../include/functions_reports.php:736 ../../include/functions_reports.php:740 msgid "Forecasting" msgstr "予測" @@ -46143,16 +45757,11 @@ msgstr "データの並び" msgid "Historical Data" msgstr "保存データ" -#: ../../include/functions_reports.php:782 -#: ../../include/functions_reports.php:788 -#: ../../include/functions_reports.php:794 -#: ../../include/functions_reports.php:800 -#: ../../include/functions_reports.php:806 -#: ../../include/functions_reports.php:813 -#: ../../include/functions_reports.php:820 -#: ../../include/functions_reports.php:826 -#: ../../include/functions_reports.php:830 -#: ../../include/functions_reports.php:835 +#: ../../include/functions_reports.php:782 ../../include/functions_reports.php:788 +#: ../../include/functions_reports.php:794 ../../include/functions_reports.php:800 +#: ../../include/functions_reports.php:806 ../../include/functions_reports.php:813 +#: ../../include/functions_reports.php:820 ../../include/functions_reports.php:826 +#: ../../include/functions_reports.php:830 ../../include/functions_reports.php:835 #: ../../include/functions_reports.php:841 msgid "Grouped" msgstr "グループ化" @@ -46169,8 +45778,7 @@ msgstr "ネットワークインタフェース" msgid "Custom Render" msgstr "カスタムレンダリング" -#: ../../include/functions_reports.php:846 -#: ../../include/functions_reports.php:850 +#: ../../include/functions_reports.php:846 ../../include/functions_reports.php:850 msgid "Text/HTML " msgstr "テキスト/HTML " @@ -46317,8 +45925,8 @@ msgid "" "Must have the same time zone as the system or database to avoid mismatches of " "time." msgstr "" -"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする" -"必要があります。" +"時間の不整合を避けるために、システムまたはデータベースと同じタイムゾーンにする必" +"要があります。" #: ../../include/functions_register.php:171 msgid "E-mail for receiving alerts" @@ -46337,8 +45945,7 @@ msgid "" "You could change this options later in \"alert actions\" and setting your " "account." msgstr "" -"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できま" -"す。" +"このオプションは、後で \"アラートアクション\" とアカウントの設定で変更できます。" #: ../../include/functions_config.php:150 msgid "Failed updated: User did not login." @@ -46575,13 +46182,11 @@ msgstr "カスタムサブタイトルヘッダ" msgid "Login background" msgstr "ログイン背景" -#: ../../include/functions_config.php:1138 -#: ../../include/functions_config.php:1186 +#: ../../include/functions_config.php:1138 ../../include/functions_config.php:1186 msgid "Custom Docs url" msgstr "カスタムドキュメントURL" -#: ../../include/functions_config.php:1142 -#: ../../include/functions_config.php:1190 +#: ../../include/functions_config.php:1142 ../../include/functions_config.php:1190 msgid "Custom support url" msgstr "カスタムサポートURL" @@ -47224,8 +46829,7 @@ msgstr "[pandorafms wiki] 新規レポート" #: ../../include/class/HelpFeedBack.class.php:262 msgid "Please provide your email address, we promise not to bother you" -msgstr "" -"あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" +msgstr "あなたのメールアドレスを入力してください。お邪魔しないことをお約束します。" #: ../../include/class/HelpFeedBack.class.php:310 msgid "Something went wrong while sending the report." @@ -47471,8 +47075,7 @@ msgstr "InnoDB buffer pool size" #: ../../include/class/Diagnostics.class.php:809 #, no-php-format -msgid "" -"It has to be 40% of the server memory not recommended to be greater or less" +msgid "It has to be 40% of the server memory not recommended to be greater or less" msgstr "" "サーバメモリの40%である必要があり、これを超えたり下回ることは推奨されません。" @@ -47582,8 +47185,8 @@ msgstr "Thread stack" msgid "" "Table fragmentation is higher than recommended. They should be defragmented." msgstr "" -"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要が" -"あります。" +"テーブルのフラグメンテーションが推奨値よりも高くなっています。 最適化する必要があ" +"ります。" #: ../../include/class/Diagnostics.class.php:995 msgid "Table fragmentation is correct." @@ -47638,8 +47241,8 @@ msgid "" "The average of modules per agent is more than 40. You can have performance " "problems" msgstr "" -"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題" -"が発生する可能性があります。" +"1エージェントあたりの平均モジュール数が 40を超えています。パフォーマンスの問題が" +"発生する可能性があります。" #: ../../include/class/Diagnostics.class.php:1121 msgid "The average of modules per agent is less than 40" @@ -47687,8 +47290,8 @@ msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." msgstr "" -"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお" -"勧めします。" +"tagente_datos テーブルに大量のデータがあります。ヒストリデータベースの利用をお勧" +"めします。" #: ../../include/class/Diagnostics.class.php:1310 msgid "The tagente_datos table contains an acceptable amount of data." @@ -47719,24 +47322,24 @@ msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." msgstr "" -"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していま" -"せんか?" +"設定以上の pandora_server スレッドがあります。複数のサーバを同時に実行していませ" +"んか?" #: ../../include/class/Diagnostics.class.php:1514 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." msgstr "" -"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作して" -"いるか確認してください。" +"Pandora サーバセットアップを確認し、データベースメンテナンスデーモンが動作してい" +"るか確認してください。" #: ../../include/class/Diagnostics.class.php:1518 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" msgstr "" -"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこ" -"とが非常に重要です。" +"Pandoraで最高のパフォーマンスと結果を得るには、データベースを最新の状態に保つこと" +"が非常に重要です。" #: ../../include/class/Diagnostics.class.php:1780 msgid "You have more than 10 MB of logs" @@ -47781,8 +47384,8 @@ msgid "" "If you think this report must be escalated, feel free to forward this mail to " "\"%s\"" msgstr "" -"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" " -"へ転送してください。" +"この報告をエスカレーションする必要があると思われる場合は、このメールを \"%s\" へ" +"転送してください。" #: ../../include/class/Diagnostics.class.php:2025 msgid "LEGAL WARNING" @@ -47793,8 +47396,8 @@ 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 msgid "" @@ -47802,8 +47405,8 @@ msgid "" "notified that any dissemination, distribution or copying of this communication " "is strictly prohibited" msgstr "" -"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピー" -"を固く禁止します" +"このメッセージの読者が意図した受信者ではない場合、この内容の配布、またはコピーを" +"固く禁止します" #: ../../include/class/Diagnostics.class.php:2035 msgid "If you have received this transmission in error, do not read it" @@ -47811,8 +47414,8 @@ msgstr "もし、間違えてこの情報を受け取った場合は、読まな #: ../../include/class/Diagnostics.class.php:2039 msgid "" -"Please immediately reply to the sender that you have received this " -"communication in error and then delete it" +"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 @@ -47892,11 +47495,11 @@ msgstr "実行" #: ../../include/class/NetworkMap.class.php:2948 msgid "" -"Resetting the map will delete all customizations you have done, including " -"manual relationships between elements, new items, etc." +"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 msgid "Restart map" @@ -48283,12 +47886,9 @@ msgstr "未承諾" #: ../../include/functions_reporting.php:2365 #: ../../include/functions_reporting.php:4596 #: ../../include/functions_reporting.php:11389 -#: ../../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: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 msgid "Validated" msgstr "承諾済み" @@ -48355,8 +47955,8 @@ msgstr "システム監査ログ" #: ../../include/class/AuditLog.class.php:197 msgid "Search filter by User, Action, Date, Source IP or Comments fields content" msgstr "" -"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索" -"フィルタ" +"ユーザ、アクション、日付、ソース IP、またはコメントフィールドの内容による検索フィ" +"ルタ" #: ../../include/class/AuditLog.class.php:212 msgid "7 days" @@ -48641,8 +48241,7 @@ msgstr "添付ファイルディレクトリ書き込み不可" #: ../../include/class/ConsoleSupervisor.php:1111 #, php-format -msgid "" -"Directory %s is not writable. Please, configure corresponding permissions." +msgid "Directory %s is not writable. Please, configure corresponding permissions." msgstr "" "%s ディレクトリに書き込めません。対応するパーミッションの設定をしてください。" @@ -48656,8 +48255,8 @@ msgid "" "There are more than %d files in attachment, consider cleaning up attachment " "directory manually." msgstr "" -"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリ" -"を手動で整理することを検討してください。" +"attachment ディレクトリに %d 以上のファイルがあります。attachment ディレクトリを" +"手動で整理することを検討してください。" #: ../../include/class/ConsoleSupervisor.php:1165 msgid "Remote configuration directory is not readable" @@ -48666,8 +48265,7 @@ msgstr "リモート設定ディレクトリが読めません" #: ../../include/class/ConsoleSupervisor.php:1167 #, php-format msgid "" -"Remote configuration directory %s is not readable. Please, adjust " -"configuration." +"Remote configuration directory %s is not readable. Please, adjust configuration." msgstr "リモート設定ディレクトリ %s が読めません。設定を調整してください。" #: ../../include/class/ConsoleSupervisor.php:1184 @@ -48677,8 +48275,7 @@ msgstr "リモート設定ディレクトリに書けません" #: ../../include/class/ConsoleSupervisor.php:1186 #, php-format msgid "" -"Remote configuration directory %s is not writable. Please, adjust " -"configuration." +"Remote configuration directory %s is not writable. Please, adjust configuration." msgstr "リモート設定ディレクトリ %s に書き込めません。設定を調整してください。" #: ../../include/class/ConsoleSupervisor.php:1202 @@ -48708,8 +48305,8 @@ msgstr "スプールに多くのファイルがあります" msgid "" "There are more than %d files in %s. Consider checking DataServer performance" msgstr "" -"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してく" -"ださい。" +"%d 以上のファイルが %s にあります。データサーバパフォーマンスの確認を検討してくだ" +"さい。" #: ../../include/class/ConsoleSupervisor.php:1273 msgid "There are too many BADXML files in spool" @@ -48719,8 +48316,8 @@ msgstr "スプールに BADXML ファイルが大量にあります" #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "" -"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくだ" -"さい。" +"%d 以上のファイルが %s にあります。ソフトウエアエージェントの確認を検討してくださ" +"い。" #: ../../include/class/ConsoleSupervisor.php:1362 #, php-format @@ -48736,8 +48333,7 @@ msgid "" "There are no servers registered in this console. Please, check installation " "guide." msgstr "" -"コンソールに登録されたサーバがありません。インストールガイドを確認してくださ" -"い。" +"コンソールに登録されたサーバがありません。インストールガイドを確認してください。" #: ../../include/class/ConsoleSupervisor.php:1476 #, php-format @@ -48760,8 +48356,8 @@ msgid "" "%s (%s) is not running. Please, check configuration file or remove this server " "from server list." msgstr "" -"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から" -"削除してください。" +"%s (%s) が動作していません。設定ファイルを確認するかこのサーバをサーバ一覧から削" +"除してください。" #: ../../include/class/ConsoleSupervisor.php:1546 msgid "No master servers found." @@ -48784,8 +48380,8 @@ msgid "" "To disable it, go to your PHP configuration file (php.ini) and put safe_mode = " "Off (Do not forget to restart apache process after changes)" msgstr "" -"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してく" -"ださい。(変更後は apache プロセスの再起動を忘れないようにしてください)" +"無効化するには、PHP の設定ファイル(php.ini)で put safe_mode = Off を設定してくだ" +"さい。(変更後は apache プロセスの再起動を忘れないようにしてください)" #: ../../include/class/ConsoleSupervisor.php:1621 #, php-format @@ -48843,8 +48439,8 @@ msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" msgstr "" -"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() " -"を含んでいます。" +"PHP 設定ファイル(php.ini)内の変数 disable_functions に system() または exec() を" +"含んでいます。" #: ../../include/class/ConsoleSupervisor.php:1738 msgid "chromium is not installed" @@ -48852,42 +48448,37 @@ msgstr "chromium がインストールされていません" #: ../../include/class/ConsoleSupervisor.php:1739 msgid "" -"To be able to create images of the graphs for PDFs, please install the " -"chromium extension. For that, it is necessary to follow these steps:" +"To be able to create images of the graphs for PDFs, please install the chromium " +"extension. For that, it is necessary to follow these steps:" msgstr "" -"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールして" -"ください。それには、以下のステップを行う必要があります。" +"PDF でグラフイメージを作成できるようにするには、chromium 拡張をインストールしてく" +"ださい。それには、以下のステップを行う必要があります。" #: ../../include/class/ConsoleSupervisor.php:1760 msgid "PHP UPDATE REQUIRED" msgstr "PHP のアップデートが必要です" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:30 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:30 msgid "" "For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " "higher." msgstr "" -"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があ" -"ります。" +"Pandora FMS を正しく動作させるには、PHP をバージョン 8.0 以降に更新する必要があり" +"ます。" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:31 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "そうしないと、機能が動作しません。" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:33 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "PDF フォーマットでのレポートダウンロード" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:34 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:34 msgid "Emails Sending" msgstr "メール送信" -#: ../../include/class/ConsoleSupervisor.php:1761 -#: ../../general/php_message.php:35 +#: ../../include/class/ConsoleSupervisor.php:1761 ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "メタコンソールコレクション" @@ -48909,12 +48500,12 @@ msgstr "データベースメンテナンスにおける問題" #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " -"documentation on how to perform this maintenance process on %s and enable it " -"as soon as possible." +"documentation on how to perform this maintenance process on %s and enable it as " +"soon as possible." msgstr "" -"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセス" -"を実行する方法はドキュメントを確認してください。また、なるべく早く有効化してく" -"ださい。" +"データベースが 48時間メンテナンスされていません。%s でこのメンテナンスプロセスを" +"実行する方法はドキュメントを確認してください。また、なるべく早く有効化してくださ" +"い。" #: ../../include/class/ConsoleSupervisor.php:1933 msgid "Historical database maintenance problem." @@ -48924,12 +48515,12 @@ msgstr "ヒストリデータベースにおける問題" #, php-format msgid "" "Your historical database hasn't been through maintenance for 48hrs. Please, " -"check documentation on how to perform this maintenance process on %s and " -"enable it as soon as possible." +"check documentation on how to perform this maintenance process on %s and enable " +"it as soon as possible." msgstr "" -"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンス" -"プロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効" -"化してください。" +"ヒストリデータベースが 48時間メンテナンスされていません。%s でこのメンテナンスプ" +"ロセスを実行する方法はドキュメントを確認してください。また、なるべく早く有効化し" +"てください。" #: ../../include/class/ConsoleSupervisor.php:1973 msgid "Historical database MR mismatch" @@ -48937,8 +48528,8 @@ msgstr "ヒストリデータベースの MR が一致していません" #: ../../include/class/ConsoleSupervisor.php:1974 msgid "" -"Your historical database is not using the same schema as the main DB. This " -"could produce anomalies while storing historical data." +"Your historical database is not using the same schema as the main DB. This could " +"produce anomalies while storing historical data." msgstr "" "ヒストリデータベースで、メインの DB と異なるスキーマを利用しています。これによ" "り、ヒストリデータの保存中に異常が発生する可能性があります。" @@ -48968,8 +48559,8 @@ msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." msgstr "" -"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用でき" -"ません。" +"計画停止が動作中です。計画停止が行われている間のいくつかの監視データは利用できま" +"せん。" #: ../../include/class/ConsoleSupervisor.php:2270 msgid "Downtime scheduled soon." @@ -48978,11 +48569,11 @@ msgstr "まもなく計画停止" #: ../../include/class/ConsoleSupervisor.php:2272 #, php-format msgid "" -"A scheduled downtime is going to be executed from %s to %s. Some monitoring " -"data won't be available while downtime is taking place." +"A scheduled downtime is going to be executed from %s to %s. Some monitoring data " +"won't be available while downtime is taking place." msgstr "" -"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監" -"視データは利用できません。" +"計画停止は %s から %s まで実行されます。計画停止が行われている間のいくつかの監視" +"データは利用できません。" #: ../../include/class/ConsoleSupervisor.php:2302 msgid "This instance is not registered in the Update manager section" @@ -49008,8 +48599,8 @@ msgstr "デフォルトのフォントがありません" #: ../../include/class/ConsoleSupervisor.php:2372 msgid "" -"Your defined font doesn't exist or is not defined. Please, check font " -"parameters in your config" +"Your defined font doesn't exist or is not defined. Please, check font parameters " +"in your config" msgstr "" "定義したフォントが存在しないかフォントが定義されていません。設定でフォントパラ" "メータを確認してください。" @@ -49025,8 +48616,8 @@ msgid "" "should be disabled in a production environment. This value is located in the " "main index.php file" msgstr "" -"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境で" -"は無効化してください。この定義は、メインの index.php ファイル内にあります。" +"%s の \"develop_bypass\" モードが有効です。これは開発者モードであり、本番環境では" +"無効化してください。この定義は、メインの index.php ファイル内にあります。" #: ../../include/class/ConsoleSupervisor.php:2423 msgid "Event storm protection is enabled." @@ -49037,8 +48628,8 @@ msgid "" "Some events may get lost while this mode is enabled. The server must be " "restarted after altering this setting." msgstr "" -"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変" -"更した後はサーバを再起動する必要があります。" +"このモードを有効にすると一部のイベントが失われる可能性があります。 この設定を変更" +"した後はサーバを再起動する必要があります。" #: ../../include/class/ConsoleSupervisor.php:2450 msgid "Failed to retrieve updates, please configure utility" @@ -49063,8 +48654,8 @@ msgid "" "There is one or more minor releases available. .About minor release update." msgstr "" -"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" +"一つ以上のマイナーリリースがあります。.マイナーリリースアップデートについて。" #: ../../include/class/ConsoleSupervisor.php:2535 msgid "Discovery relies on an appropriate cron setup." @@ -49089,8 +48680,8 @@ msgid "" "Server %s and this console have different versions. This might cause several " "malfunctions. Please, update this server." msgstr "" -"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作" -"が発生する場合があります。 サーバを更新してください。" +"%s サーバとこのコンソールのバージョンが異なります。これにより、いくつかの誤動作が" +"発生する場合があります。 サーバを更新してください。" #: ../../include/class/ConsoleSupervisor.php:2720 msgid "AllowOverride is disabled" @@ -49111,8 +48702,8 @@ msgid "" "you have an outdated and inoperative version of this file at %s. Please, " "consider deleting it." msgstr "" -"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いロ" -"グファイルがあります。 削除を検討してください。" +"Pandora FMS コンソールログは、新たな場所 %s/log に移りました。現在、%s に古いログ" +"ファイルがあります。 削除を検討してください。" #: ../../include/class/ConsoleSupervisor.php:2828 msgid "Pandora FMS audit log file changed location" @@ -49121,12 +48712,12 @@ msgstr "Pandora FMS 監査ログの場所が変わりました" #: ../../include/class/ConsoleSupervisor.php:2832 #, php-format msgid "" -"Pandora FMS audit log file has been moved to new location %s/log. Currently " -"you have an outdated and inoperative version of this file at %s. Please, " -"consider deleting it." +"Pandora FMS audit log file has been moved to new location %s/log. Currently you " +"have an outdated and inoperative version of this file at %s. Please, consider " +"deleting it." msgstr "" -"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファ" -"イルがあります。 削除を検討してください。" +"Pandora FMS 監査ログは、新たな場所 %s/log に移りました。現在、%s に古いログファイ" +"ルがあります。 削除を検討してください。" #: ../../include/class/ConsoleSupervisor.php:2890 #, php-format @@ -49136,11 +48727,11 @@ msgstr "ノード %s の同期キューの長さを超えました。" #: ../../include/class/ConsoleSupervisor.php:2892 #, php-format msgid "" -"Synchronization queue lenght for node %s is %d items, this value should be 0 " -"or lower than %d, please check the queue status." +"Synchronization queue lenght for node %s is %d items, this value should be 0 or " +"lower than %d, please check the queue status." msgstr "" -"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下であ" -"る必要があります。キューの状態を確認してください。" +"ノード %s の同期キューの長さは %d アイテムです。この値は、0 または %d 以下である" +"必要があります。キューの状態を確認してください。" #: ../../include/class/ConsoleSupervisor.php:2945 #, php-format @@ -49153,8 +48744,8 @@ msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " "status." msgstr "" -"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくだ" -"さい。" +"ノード %s は %s が原因で同期キューを処理できません。キューの状態を確認してくださ" +"い。" #: ../../include/class/ConsoleSupervisor.php:2978 msgid "Agent dependency error" @@ -49531,8 +49122,7 @@ msgstr "コマンドが失敗し、戻り値が返りました:" #: ../../include/class/ExternalTools.class.php:806 msgid "" -"Something went wrong while perform the execution. Please check the " -"configuration." +"Something went wrong while perform the execution. Please check the configuration." msgstr "実行中に何らかの問題が発生しました。設定を確認してください。" #: ../../include/class/ExternalTools.class.php:845 @@ -49797,8 +49387,8 @@ msgstr "このクエリは安全ではなく、スキーマに不要な変更を #: ../../include/functions_reporting.php:5658 msgid "The group has no agents or none of the agents has any network interface" msgstr "" -"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントが" -"ありません" +"グループにエージェントが無いか、ネットワークインタフェースのあるエージェントがあ" +"りません" #: ../../include/functions_reporting.php:5683 msgid "bytes/s" @@ -49841,9 +49431,8 @@ 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 "" -"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, " -"password, pass, insert, update といったいくつかのトークンや単語は利用できませ" -"ん。" +"不正なクエリ: セキュリティ制限により、*, delete, drop, alter, modify, password, " +"pass, insert, update といったいくつかのトークンや単語は利用できません。" #: ../../include/functions_reporting.php:9118 #: ../../include/functions_reporting.php:9836 @@ -50184,8 +49773,8 @@ msgstr "ディレクトリの作成" #: ../../include/functions_filemanager.php:880 msgid "The zip upload in this dir, easy to upload multiple files." msgstr "" -"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロー" -"ドも簡単です。" +"このディレクトリに zip ファイルもアップロードできます。複数ファイルのアップロード" +"も簡単です。" #: ../../include/functions_filemanager.php:882 msgid "Decompress" @@ -50432,25 +50021,22 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/example.php:250 msgid "" -"To add more elements, click on \"Add widgets\" on the top of this " -"page." +"To add more elements, click on \"Add widgets\" on the top of this page." msgstr "" -"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をク" -"リックします。" +"要素を追加するには、このページの先頭で \"ウィジェットの追加\" をクリッ" +"クします。" #: ../../include/lib/Dashboard/Widgets/example.php:251 #: ../../include/lib/Dashboard/Widgets/example.php:253 msgid "" "To delete this message, click on the delete button on top right corner of this " "element." -msgstr "" -"このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" +msgstr "このメッセージを削除するには、この要素の右上の削除ボタンをクリックします。" #: ../../include/lib/Dashboard/Widgets/example.php:252 msgid "" "To do so, just click on the title and drag and drop it to the desired place." -msgstr "" -"そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" +msgstr "そうするには、タイトルをクリックし置きたい場所へドラッグ&ドロップします。" #: ../../include/lib/Dashboard/Widgets/example.php:254 #, php-format @@ -50485,8 +50071,7 @@ msgstr "制限" #, php-format msgid "" "The maximum number of modules to display is %d, please reconfigure the widget." -msgstr "" -"表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。" +msgstr "表示できるモジュールの最大数は %d です。ウィジェットを再設定してください。" #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:674 msgid "Data Matrix" @@ -50570,16 +50155,14 @@ 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:3261 ../../include/functions_events.php:3267 #: ../../include/functions_events.php:3289 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:3263 ../../include/functions_events.php:3297 msgid "Only validated" msgstr "承諾済み" @@ -50720,8 +50303,8 @@ msgid "" "ZOOM functionality is only available when there is only one such widget in the " "dashboard" msgstr "" -"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使" -"用できます。" +"ズーム機能は、ダッシュボードにそのようなウィジェットが 1つしかない場合にのみ使用" +"できます。" #: ../../include/lib/Dashboard/Widgets/service_map.php:390 msgid "Missing Service id" @@ -50856,8 +50439,8 @@ msgid "" "Case insensitive regular expression or string for module name. For example: ." "*usage.* will match: cpu_usage, vram usage." msgstr "" -"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage." -"* は cpu_usage、vram usage にマッチします。" +"モジュール名の大文字と小文字を区別しない正規表現または文字列。例えば、.*usage.* " +"は cpu_usage、vram usage にマッチします。" #: ../../include/lib/Dashboard/Widgets/top_n.php:280 msgid "Avg." @@ -50934,8 +50517,7 @@ msgstr "クラスタ名" msgid "" "An agent with the same name of the cluster will be created, as well a special " "service with the same name" -msgstr "" -"クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" +msgstr "クラスタと同じ名前のエージェントと、同じ名前の特別なサービスが作成されます" #: ../../include/lib/ClusterViewer/ClusterWizard.php:797 msgid "Cluster type" @@ -50943,11 +50525,11 @@ msgstr "クラスタタイプ" #: ../../include/lib/ClusterViewer/ClusterWizard.php:798 msgid "" -"AA is a cluster where all members are working. In AP cluster only master " -"member is working" +"AA is a cluster where all members are working. In AP cluster only master member " +"is working" msgstr "" -"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-" -"スタンバイクラスタでは、マスターのみが稼働しています" +"アクティブ-アクティブは、すべてのメンバが稼働しているクラスタです。 アクティブ-ス" +"タンバイクラスタでは、マスターのみが稼働しています" #: ../../include/lib/ClusterViewer/ClusterWizard.php:806 msgid "Active - Active" @@ -50964,8 +50546,7 @@ msgstr "対象のクラスタエージェントはこのグループに保存さ #: ../../include/lib/ClusterViewer/ClusterWizard.php:844 msgid "" "You must select a Prediction Server to perform all cluster status calculations" -msgstr "" -"すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" +msgstr "すべてのクラスタ状態計算を実行するには、予測サーバを選択する必要があります" #: ../../include/lib/ClusterViewer/ClusterWizard.php:1041 msgid "critical if" @@ -50992,8 +50573,8 @@ msgstr "" #: ../../include/lib/ClusterViewer/ClusterWizard.php:1207 msgid "" -"If a critical balanced module is going to critical status, then cluster will " -"be critical." +"If a critical balanced module is going to critical status, then cluster will be " +"critical." msgstr "" "クリティカルバランスモジュールが障害状態なる場合、クラスタは障害になります。" @@ -51021,8 +50602,7 @@ msgstr "モジュール名に不正な文字が含まれています" #: ../../include/lib/Module.php:1086 msgid "Module already exists please select another name or agent." -msgstr "" -"モジュールが既に存在します。他の名前またはエージェントを選択してください。" +msgstr "モジュールが既に存在します。他の名前またはエージェントを選択してください。" #: ../../include/lib/Module.php:1092 msgid "Insufficent permissions to perform this action" @@ -51228,8 +50808,7 @@ msgstr "モジュールカスタム ID" msgid "Could not connect: %s" msgstr "接続できませんでした: %s" -#: ../../include/functions_events.php:2510 -#: ../../operation/agentes/tactical.php:248 +#: ../../include/functions_events.php:2510 ../../operation/agentes/tactical.php:248 msgid "Latest events" msgstr "最新のイベント" @@ -51269,23 +50848,19 @@ msgstr "新しいエージェントが作成されました。" msgid "Unknown type:" msgstr "不明なタイプ" -#: ../../include/functions_events.php:3262 -#: ../../include/functions_events.php:3293 +#: ../../include/functions_events.php:3262 ../../include/functions_events.php:3293 msgid "Only new" msgstr "新規のみ" -#: ../../include/functions_events.php:3264 -#: ../../include/functions_events.php:3301 +#: ../../include/functions_events.php:3264 ../../include/functions_events.php:3301 msgid "Only in process" msgstr "処理中のみ" -#: ../../include/functions_events.php:3265 -#: ../../include/functions_events.php:3305 +#: ../../include/functions_events.php:3265 ../../include/functions_events.php:3305 msgid "Only not validated" msgstr "未承諾のみ" -#: ../../include/functions_events.php:3270 -#: ../../include/functions_events.php:3543 +#: ../../include/functions_events.php:3270 ../../include/functions_events.php:3543 #: ../../include/functions_events.php:3552 msgid "In process" msgstr "処理中" @@ -51302,14 +50877,13 @@ msgstr "所有者変更" msgid "Change status" msgstr "ステータス変更" -#: ../../include/functions_events.php:3625 -#: ../../include/functions_events.php:5361 +#: ../../include/functions_events.php:3625 ../../include/functions_events.php:5361 #: ../../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:3648 ../../include/functions_events.php:3652 +#: ../../operation/events/events.php:978 msgid "Delete event" msgstr "削除" @@ -51345,8 +50919,7 @@ msgstr "モジュール詳細" msgid "No assigned" msgstr "未割当" -#: ../../include/functions_events.php:4562 -#: ../../include/functions_events.php:4571 +#: ../../include/functions_events.php:4562 ../../include/functions_events.php:4571 msgid "Go to data overview" msgstr "データ概要表示" @@ -51404,8 +50977,7 @@ msgstr "計画停止から %s 件の要素が有効になりました" #: ../../include/functions_planned_downtimes.php:793 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "" -"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかで" -"す。" +"計画停止は、静観、エージェント無効化、エージェントアラート無効化のいずれかです。" #: ../../include/functions_planned_downtimes.php:798 msgid "The execution must be once or periodically" @@ -51553,13 +51125,11 @@ msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "パスワードが一致しない、または他の原因でパスワードの更新に失敗しました。" -#: ../../operation/users/user_edit.php:201 -#: ../../operation/users/user_edit.php:220 +#: ../../operation/users/user_edit.php:201 ../../operation/users/user_edit.php:220 msgid "Password successfully updated" msgstr "パスワードを更新しました。" -#: ../../operation/users/user_edit.php:211 -#: ../../operation/users/user_edit.php:263 +#: ../../operation/users/user_edit.php:211 ../../operation/users/user_edit.php:263 msgid "Error updating user info" msgstr "ユーザ情報の更新に失敗しました。" @@ -51593,8 +51163,8 @@ msgstr "API トークンの表示" #: ../../operation/users/user_edit.php:356 msgid "" -"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf." -"d/php.conf" +"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf.d/" +"php.conf" msgstr "" "ディレクティブ HTTP_AUTHORIZATION=$1 が設定されていません。 /etc/httpd/conf.d/" "php.conf に追加してください。" @@ -51607,8 +51177,7 @@ 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:519 ../../operation/users/user_edit.php:528 msgid "Theme" msgstr "テーマ" @@ -51657,8 +51226,8 @@ msgstr "見つかりませんでした。" #, php-format msgid "You can find more help in the wiki" msgstr "" -"追加のヘルプは wiki で見つけることができ" -"ます" +"追加のヘルプは wiki で見つけることができま" +"す" #: ../../operation/search_helps.php:32 msgid "Matches" @@ -51724,13 +51293,11 @@ msgstr "グラフの場所に問題があります。" msgid "Refresh time" msgstr "更新時間" -#: ../../operation/agentes/stat_win.php:278 -#: ../../operation/agentes/graphs.php:237 +#: ../../operation/agentes/stat_win.php:278 ../../operation/agentes/graphs.php:237 msgid "Show events" msgstr "イベント表示" -#: ../../operation/agentes/stat_win.php:299 -#: ../../operation/agentes/graphs.php:239 +#: ../../operation/agentes/stat_win.php:299 ../../operation/agentes/graphs.php:239 msgid "Show alerts" msgstr "アラート表示" @@ -51951,30 +51518,30 @@ msgstr "マップ作成中..." #: ../../operation/agentes/pandora_networkmap.editor.php:281 msgid "" "To create a network map that visually recreates link-level (L2) relationships, " -"you must first discover these relationships with Discovery Server. Network " -"maps only reflect relationships that have already been discovered." +"you must first discover these relationships with Discovery Server. Network maps " +"only reflect relationships that have already been discovered." msgstr "" -"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、ま" -"ず自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク " -"マップには、すでに検出されている関係のみが反映されます。" +"リンクレベル (L2) の関係を視覚的に表現するネットワーク マップを作成するには、まず" +"自動検出サーバを使用してこれらの関係を検出する必要があります。 ネットワーク マッ" +"プには、すでに検出されている関係のみが反映されます。" #: ../../operation/agentes/pandora_networkmap.editor.php:283 msgid "" "Discovery Server discovers relationships between interfaces (L2) through SNMP " "and relationships between hosts (L3) through route discovery." msgstr "" -"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティ" -"ング検出を通じてホスト間の関係 (L3) を検出します。" +"自動検出サーバは、SNMP を通じてインターフェイス間の関係 (L2) を検出し、ルーティン" +"グ検出を通じてホスト間の関係 (L3) を検出します。" #: ../../operation/agentes/pandora_networkmap.editor.php:284 msgid "" -"You can also create these relationships manually by editing nodes or re-" -"passing a discovery task after adding new information (for example by adding " -"new SNMP communities)." +"You can also create these relationships manually by editing nodes or re-passing " +"a discovery task after adding new information (for example by adding new SNMP " +"communities)." msgstr "" -"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 " -"(新しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行するこ" -"とによって作成することもできます。" +"これらの関係は、ノードを編集することにより手動で作成したり、新たな情報を追加 (新" +"しい SNMP コミュニティを追加するなど) したあとに自動検出タスクを再実行することに" +"よって作成することもできます。" #: ../../operation/agentes/pandora_networkmap.editor.php:285 msgid "See our documentation for more information." @@ -51997,8 +51564,7 @@ msgstr "拡大スケール" #: ../../operation/agentes/pandora_networkmap.editor.php:394 #: ../../operation/agentes/pandora_networkmap.view.php:171 -msgid "" -"Introduce zoom level. 1 = Highest resolution. Figures may include decimals" +msgid "Introduce zoom level. 1 = Highest resolution. Figures may include decimals" msgstr "拡大率を設定します。1=高解像度。数字には小数点を含めることができます。" #: ../../operation/agentes/pandora_networkmap.editor.php:430 @@ -52012,8 +51578,7 @@ msgstr "複製元グループ" #: ../../operation/agentes/pandora_networkmap.editor.php:459 msgid "Source id group changed. All elements in networkmap will be lost." -msgstr "" -"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" #: ../../operation/agentes/pandora_networkmap.editor.php:470 #: ../../operation/agentes/pandora_networkmap.view.php:260 @@ -52031,8 +51596,8 @@ msgid "" "It is setted any recon task, the nodes get from the recontask IP mask instead " "from the group." msgstr "" -"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マ" -"スクから取得します。" +"自動検出タスクで設定されます。ノードは、グループではなく自動検出タスクの IP マス" +"クから取得します。" #: ../../operation/agentes/pandora_networkmap.editor.php:502 #: ../../operation/agentes/pandora_networkmap.view.php:239 @@ -52057,8 +51622,8 @@ msgstr "ランク分け" #: ../../operation/agentes/pandora_networkmap.editor.php:539 #: ../../operation/agentes/pandora_networkmap.view.php:313 msgid "" -"Only flat and radial. Separation between arrows. By default 0.5 in flat and " -"1.0 in radial" +"Only flat and radial. Separation between arrows. By default 0.5 in flat and 1.0 " +"in radial" msgstr "" "フラットおよびラジアルのみ。 矢印の間の分離です。 デフォルトでは、フラットが " "0.5、ラジアルが 1.0 です。" @@ -52082,13 +51647,11 @@ msgstr "デフォルトノード間距離" #: ../../operation/agentes/pandora_networkmap.view.php:319 msgid "Only fdp. Default ideal node separation in the layout. By default 0.3" msgstr "" -"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 で" -"す。" +"fdp のみ。レイアウトにおけるデフォルトのノード関距離です。デフォルトは 0.3 です。" #: ../../operation/agentes/pandora_networkmap.editor.php:744 msgid "Source id group changed. All elements in Networkmap will be lost" -msgstr "" -"ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" +msgstr "ソースグループ ID が変わりました。ネットワークマップの全要素は失われます。" #: ../../operation/agentes/pandora_networkmap.php:139 #: ../../operation/agentes/pandora_networkmap.php:377 @@ -52215,11 +51778,10 @@ msgstr "メインデータベース" #: ../../operation/agentes/datos_agente.php:181 msgid "" -"Switch between the main database and the history database to retrieve module " -"data" +"Switch between the main database and the history database to retrieve module data" msgstr "" -"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータ" -"ベース間で切り替えます。" +"モジュールデータを検索するデータベースをメインデータベースとヒストリーデータベー" +"ス間で切り替えます。" #: ../../operation/agentes/datos_agente.php:211 #: ../../operation/agentes/alerts_status.functions.php:151 @@ -52386,8 +51948,8 @@ msgid "" "To see the list of modules paginated, enable this option in the Styles " "Configuration." msgstr "" -"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化" -"します。" +"モジュール一覧をページ区切り表示するには、スタイル設定でこのオプションを有効化し" +"ます。" #: ../../operation/agentes/estado_monitores.php:519 msgid "Not Normal" @@ -52457,8 +52019,8 @@ msgstr "エージェントメイン表示" #: ../../operation/agentes/estado_generalagente.php:57 msgid "The agent has not assigned server. Maybe agent does not run fine." msgstr "" -"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可" -"能性があります。" +"エージェントがサーバに割り当てられていません。エージェントが正しく動作しない可能" +"性があります。" #: ../../operation/agentes/estado_generalagente.php:98 msgid "In scheduled downtime" @@ -52830,12 +52392,12 @@ msgstr "MIB アップローダ" #: ../../operation/snmpconsole/snmp_mib_uploader.php:86 msgid "" -"MIB files will be installed on the system. Please note that a MIB may depend " -"on other MIB. To customize trap definitions use the SNMP trap editor." +"MIB files will be installed on the system. Please note that a MIB may depend on " +"other MIB. To customize trap definitions use the SNMP trap editor." msgstr "" -"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性が" -"あることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップ" -"エディタを使ってください。" +"MIB ファイルがシステムにインストールされます。MIB は他の MIB に依存する可能性があ" +"ることに注意してください。トラップの定義をカスタマイズするには、SNMP トラップエ" +"ディタを使ってください。" #: ../../operation/menu.php:222 msgid "Netflow Live View" @@ -53028,8 +52590,8 @@ msgstr "Integria IMS で更新できませんでした" msgid "" "This field corresponds to the Integria IMS user specified in Integria IMS setup" msgstr "" -"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対" -"応します" +"このフィールドは、Integria IMS セットアップで指定された Integria IMS ユーザに対応" +"します" #: ../../operation/incidents/configure_integriaims_incident.php:383 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:222 @@ -53234,8 +52796,8 @@ msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" msgstr "" -"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値" -"が含まれます。" +"オプションを選択すると、最大閾値として、すべてのグラフに全モジュールの最大の値が" +"含まれます。" #: ../../operation/reporting/graph_viewer.php:387 msgid "Zoom x1" @@ -53469,30 +53031,30 @@ msgstr "インシデント作成" #, php-format msgid "" "Besides receiving and processing data to monitor systems or applications,\n" -"\t\t\tyou're also required to monitor possible incidents which might take " -"place on these subsystems within the system's monitoring process.\n" +"\t\t\tyou're also required to monitor possible incidents which might take place " +"on these subsystems within the system's monitoring process.\n" "\t\t\tFor it, the %s team has designed an incident manager from which any user " "is able to open incidents,\n" -"\t\t\tthat explain what's happened on the network, and update them with " -"comments and files, at any time, in case there is a need to do so.\n" -"\t\t\tThis system allows users to work as a team, along with different roles " -"and work-flow systems which allow an incident to be\n" +"\t\t\tthat explain what's happened on the network, and update them with comments " +"and files, at any time, in case there is a need to do so.\n" +"\t\t\tThis system allows users to work as a team, along with different roles and " +"work-flow systems which allow an incident to be\n" "\t\t\tmoved from one group to another, and members from different groups and " "different people could work on the same incident, sharing information and " "files.\n" "\t\t" msgstr "" "システムまたはアプリケーションを監視するためのデータの受信と処理に加えて、\n" -"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデント" -"を監視する必要があります。\n" -"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるイン" -"シデントマネージャを設計しました。\n" +"\t\t\tシステムの監視処理においてサブシステムで発生する可能性のあるインシデントを" +"監視する必要があります。\n" +"\t\t\tそのため、%s チームは、すべてのユーザがインシデントを開くことができるインシ" +"デントマネージャを設計しました。\n" "\t\t\tネットワークで何が起こっているかを説明し、必要に応じていつでもコメントや" "ファイルを更新します。\n" -"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役" -"割やワークフローシステム\n" -"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なる" -"グループのメンバーが一つの\n" +"\t\t\tこのシステムにより、ユーザはチームとして動くことができます。さまざまな役割" +"やワークフローシステム\n" +"\t\t\tにより、インシデントをあるグループから他のグループへ移動させたり、異なるグ" +"ループのメンバーが一つの\n" "\t\t\tインシデントに対して対応するなど、情報とファイルを共有します。\n" "\t\t" @@ -53507,21 +53069,21 @@ msgstr "自動検出タスクの作成" #: ../../general/first_task/recon_view.php:28 msgid "" "Discovery Task are used to find new elements in the network. \n" -"\t\tIf it detects any item, it will add that item to the monitoring, and if " -"that item it is already being monitored, then it will \n" -"\t\tignore it or will update its information.There are three types of " -"detection: Based on ICMP (pings), \n" -"\t\tSNMP (detecting the topology of networks " -"and their interfaces), and other customized \n" +"\t\tIf it detects any item, it will add that item to the monitoring, and if that " +"item it is already being monitored, then it will \n" +"\t\tignore it or will update its information.There are three types of detection: " +"Based on ICMP (pings), \n" +"\t\tSNMP (detecting the topology of networks and " +"their interfaces), and other customized \n" "\t\ttype. You can define your own customized recon script." msgstr "" "自動検出タスクは、ネットワーク内の新たな要素を検出するのに使います。\n" -"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視さ" -"れている場合は、\n" +"\t\tアイテムを検出すると、そのアイテムを監視に追加し、そのアイテムが既に監視され" +"ている場合は、\n" "\t\tそれを無視するか、その情報を更新します。検出には 3つのタイプがあります。" " ICMP (ping)、\n" -"\t\t SNMP (ネットワークとそのインターフェース" -"のトポロジの検出)、その他 カスタマイズタイプで" +"\t\t SNMP (ネットワークとそのインターフェースの" +"トポロジの検出)、その他 カスタマイズタイプで" "す。\n" "\t\t独自の自動検出スクリプトを定義することができます。" @@ -53547,11 +53109,10 @@ msgstr "" #: ../../general/first_task/HA_cluster_builder.php:50 msgid "" -"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster " -"into a Pandora FMS DB Cluster." +"Click on \"add new node\" to start transforming your Pandora FMS DB Cluster into " +"a Pandora FMS DB Cluster." msgstr "" -"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始しま" -"す。" +"\"新規ノード追加\" をクリックして、Pandora FMS DB クラスタへの登録を開始します。" #: ../../general/first_task/HA_cluster_builder.php:59 msgid "Add new node" @@ -53565,24 +53126,22 @@ msgstr "ビジュアルコンソール" #, php-format msgid "" "%s allows users to create visual maps on which each user is able to create his " -"or her own monitoring map. The new visual console editor is much more " -"practical, although the prior visual console editor had its advantages. On the " -"new visual console, we've been successful in imitating the sensation and touch " -"of a drawing application like GIMP. We've also simplified the editor by " -"dividing it into several subject-divided tabs named 'Data', 'Preview', " -"'Wizard', 'List of Elements' and 'Editor'. The items the %s Visual Map was " -"designed to handle are 'static images', 'percentage bars', 'module graphs' and " -"'simple values'." +"or her own monitoring map. The new visual console editor is much more practical, " +"although the prior visual console editor had its advantages. On the new visual " +"console, we've been successful in imitating the sensation and touch of a drawing " +"application like GIMP. We've also simplified the editor by dividing it into " +"several subject-divided tabs named 'Data', 'Preview', 'Wizard', 'List of " +"Elements' and 'Editor'. The items the %s Visual Map was designed to handle are " +"'static images', 'percentage bars', 'module graphs' and 'simple values'." msgstr "" -"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユー" -"ザーは独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも" -"良い点はありましたが、新しいビジュアルコンソールエディターははるかに実用的で" -"す。新しいビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚と" -"タッチを模倣することに成功しています。また、'データ'、'プレビュー'、'ウィザー" -"ド'、'要素のリスト'、'エディタ' という名前の複数の要素に分割したタブにすること" -"で、エディターを簡素化しました。%s ビジュアルマップが処理するように設計したアイ" -"テムは、’静的画像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' で" -"す。" +"%s を使用すると、ユーザは視覚的なマップを作成できます。このマップ上で、各ユーザー" +"は独自の監視マップを作成できます。以前のビジュアルコンソールエディターにも良い点" +"はありましたが、新しいビジュアルコンソールエディターははるかに実用的です。新しい" +"ビジュアルコンソールでは、GIMP のような描画アプリケーションの感覚とタッチを模倣す" +"ることに成功しています。また、'データ'、'プレビュー'、'ウィザード'、'要素のリス" +"ト'、'エディタ' という名前の複数の要素に分割したタブにすることで、エディターを簡" +"素化しました。%s ビジュアルマップが処理するように設計したアイテムは、’静的画" +"像'、'パーセントバー'、'モジュールグラフ'、および '単純な値' です。" #: ../../general/first_task/map_builder.php:58 msgid "Create a Visual Console" @@ -53611,30 +53170,30 @@ msgstr "どのようにサービス提供であるかに依存し、次の 2つ msgid "" "Clusters to balance the service load: these are active - active (A/A) " "mode clusters. It means that all the nodes (or machines that compose it) are " -"working. They must be working because if one stops working, it will overload " -"the others." +"working. They must be working because if one stops working, it will overload the " +"others." msgstr "" -"
サービス負荷分散クラスタ
:これらは、アクティブ-アクティブ(A/A)モードクラ" -"スタです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停" -"止しても動作を継続しますが負荷は増えます。" +"
サービス負荷分散クラスタ
:これらは、アクティブ-アクティブ(A/A)モードクラス" +"タです。すべてのノード(構成するマシン)が動作していることを意味します。1台が停止し" +"ても動作を継続しますが負荷は増えます。" #: ../../general/first_task/cluster_builder.php:63 msgid "" "Clusters to guarantee service: these are active - passive (A/P) mode " -"clusters. It means that one of the nodes (or machines that make up the " -"cluster) will be running (primary) and another won't (secondary). When the " -"primary goes down, the secondary must take over and give the service instead. " -"Although many of the elements of this cluster are active-passive, it will also " -"have active elements in both of them that indicate that the passive node is " -"\"online\", so that in the case of a service failure in the master, the active " -"node collects this information." +"clusters. It means that one of the nodes (or machines that make up the cluster) " +"will be running (primary) and another won't (secondary). When the primary goes " +"down, the secondary must take over and give the service instead. Although many " +"of the elements of this cluster are active-passive, it will also have active " +"elements in both of them that indicate that the passive node is \"online\", so " +"that in the case of a service failure in the master, the active node collects " +"this information." msgstr "" -"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。" -"一つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動" -"作していません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを" -"代わりに引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、ス" -"タンバイノードが「オンライン」であることを示すアクティブな要素もあります。した" -"がって、マスタのサービス障害の場合、アクティブノードはこの情報を収集します。" +"サービス保証クラスタ:これらは、アクティブ-スタンバイモードクラスタです。一" +"つのノード(クラスタを構成するマシン)が動作しており(プライマリ)、もう一方は動作し" +"ていません(セカンダリ)。プライマリがダウンした場合、セカンダリがサービスを代わり" +"に引き継ぎます。このクラスタの要素の多くはアクティブ-スタンバイですが、スタンバイ" +"ノードが「オンライン」であることを示すアクティブな要素もあります。したがって、マ" +"スタのサービス障害の場合、アクティブノードはこの情報を収集します。" #: ../../general/first_task/network_map.php:19 msgid "There are no network map defined yet." @@ -53658,8 +53217,8 @@ msgid "" "\t\t\t" msgstr "" "オープンソース版のネットワークマップもあります。\n" -"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよび" -"グループをユーザにグラフィカルに表示できます。\n" +"\t\t\t\t\t\t\t\tこの機能では、ノードとその関係、エージェント、モジュールおよびグ" +"ループをユーザにグラフィカルに表示できます。\n" "\t\t\t\t\t\t\t\tネットワークマップには 3つのタイプがあります。\n" "\t\t\t" @@ -53694,16 +53253,16 @@ msgstr "タグ作成" #: ../../general/first_task/tags.php:28 msgid "" "Access to modules can be configured by a tagging system.\n" -"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the " -"chosen modules.\n" +"\t\t\t\t\t\t\t\tTags are configured on the system and are assigned to the chosen " +"modules.\n" "\t\t\t\t\t\t\t\tA user's access can therefore be restricted to modules with " "certain tags." msgstr "" "モジュールへのアクセスは、タグシステムによって設定できます。\n" "\t\t\t\t\t\t\t\tタグはシステム上で構成され、選択したモジュールに割り当てられま" "す。\n" -"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限" -"できます。" +"\t\t\t\t\t\t\t\tこれによりユーザのアクセスは、特定のタグを持つモジュールに制限で" +"きます。" #: ../../general/first_task/omnishell.php:27 msgid "There is no command defined yet." @@ -53716,16 +53275,16 @@ msgid "" "command along any agent in your %s. The only requirement is to have remote " "configuration enabled in your agent." msgstr "" -"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise " -"版の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。" +"Omnishell は、%s 内のエージェントに対して構造化コマンドを実行できる Enterprise 版" +"の機能です。唯一の要件は、エージェントでリモート設定を有効にすることです。" #: ../../general/first_task/omnishell.php:42 msgid "" -"You can execute any command on as many agents you need, and check the " -"execution on all of them using the Omnishell Command View" +"You can execute any command on as many agents you need, and check the execution " +"on all of them using the Omnishell Command View" msgstr "" -"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を" -"使用してすべてのエージェントでの実行を確認できます。" +"必要な数のエージェントでコマンドを実行できます。また、Omnishell コマンド表示を使" +"用してすべてのエージェントでの実行を確認できます。" #: ../../general/first_task/omnishell.php:50 msgid "Define a command" @@ -53749,8 +53308,8 @@ msgid "" "'Manage monitoring' -> 'Manage custom fields'. " msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールド" -"を作成できます。 " +"\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィールドを" +"作成できます。 " #: ../../general/first_task/fields_manager.php:22 msgid "Fields Manager" @@ -53767,8 +53326,8 @@ msgid "" "'Manage monitoring' -> 'Manage custom fields'. " msgstr "" "カスタムフィールドは、エージェントの独自情報を記載できます。\n" -"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィー" -"ルドを作成できます。 " +"\t\t\t\t’管理' → 'モニタリング管理' → 'カスタムフィールド管理' でカスタムフィール" +"ドを作成できます。 " #: ../../general/first_task/fields_manager.php:34 msgid "Create Fields " @@ -53832,8 +53391,8 @@ msgid "" "the ones for the server are going to get ruled out automatically. " msgstr "" "いくつかのシステムで大量のトラップが発生しています。\n" -"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必" -"要な負荷をかけないように\n" +"\t\t\t\t監視にはそれらの一部のみあれば十分です。Pandora FMS 3.2 以降では、不必要" +"な負荷をかけないように\n" "\t\t\t\tトラップをフィルタすることができます。異なるフィルタを定義するには、’管" "理' -> 'SNMP管理コンソール' および \n" "\t\t\t\t\"SNMP フィルタ' へ行ってください。複数トラップがサーバで自動的に除外さ" @@ -53841,30 +53400,28 @@ msgstr "" #: ../../general/first_task/service_list.php:45 msgid "" -"A service is a way to group your IT resources based on their " -"functionalities. \n" -"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, " -"your support application, or even your printers.\n" +"A service is a way to group your IT resources based on their functionalities. \n" +"\t\t\t\t\t\tA service could be e.g. your official website, your CRM system, your " +"support application, or even your printers.\n" "\t\t\t\t\t\t Services are logical groups which can include hosts, routers, " "switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" "\t\t\t\t\t\t By the following example, you're able to see more clearly what a " "service is:\n" -"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -"the world. \n" -"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an " -"on-line shop and support." +"\t\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +"world. \n" +"\t\t\t\t\t\t\tHis company consists of three big departments: A management, an on-" +"line shop and support." msgstr "" "サービスは、機能に基づき IT リソースをグループ化する手法です。\n" -"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポート" -"アプリケーション、プリンタなどです。\n" -"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、" -"ERP、ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループ" -"です。\n" -"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" -"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っていま" +"\t\t\t\t\t\t例えば、サービスは、あなたの公式ウェブサイト、CRMシステム、サポートア" +"プリケーション、プリンタなどです。\n" +"\t\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、" +"ウェブサイトやその他さまざまなサービスを含めることができる論理的なグループで" "す。\n" -"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門" -"からなっています。" +"\t\t\t\t\t\t以下の例で、サービスがどのようなものかをより理解できるでしょう。\n" +"\t\t\t\t\t\t\tchip会社はウェブサイト経由で世界中にコンピュータを売っています。\n" +"\t\t\t\t\t\t\tこの会社は、管理、オンラインショップ、サポートの 3つの大きな部門か" +"らなっています。" #: ../../general/first_task/service_list.php:58 msgid "Create a service" @@ -53889,12 +53446,12 @@ msgid "" "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " "graphs the user customizes by using one or more modules to do so." msgstr "" -"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示す" -"るように設計されています。\n" -"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とする" -"タイミングで生成され、最新の状態を表示します。\n" -"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフ" -"と、ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。" +"グラフは、%s によって収集されたデータをユーザが定義した一時的なスケールで表示する" +"ように設計されています。\n" +"\t\t\t\t%s グラフはリアルタイムでデータを表示します。 オペレーターが必要とするタ" +"イミングで生成され、最新の状態を表示します。\n" +"\t\t\t\tグラフには 2つのタイプがあります。エージェントの自動生成されるグラフと、" +"ユーザが 1つ以上のモジュールを使用してカスタマイズするグラフです。" #: ../../general/first_task/collections.php:25 #: ../../general/first_task/collections.php:39 @@ -53903,32 +53460,30 @@ msgstr "コレクション作成" #: ../../general/first_task/collections.php:28 msgid "" -"A file collection is a group of files (e.g. scripts or executables) which " -"are \n" -"\t\tautomatically copied to a specific directory of the agent (under Windows " -"or UNIX). The file collections allow to be propagated\n" +"A file collection is a group of files (e.g. scripts or executables) which are \n" +"\t\tautomatically copied to a specific directory of the agent (under Windows or " +"UNIX). The file collections allow to be propagated\n" "\t\t along with the policies in order to be used by a group of agents, using a " "'package' of scripts and modules which use them.\n" "\t\tFirst we learn how to use the file collections in the agent's view, how to " "conduct it manually, agent by agent, without using collections,\n" -"\t\t and how to do the same thing by using policies.Our first task is to " -"arrange a compilation of files. In order to do this, please go to the " -"agent's \n" +"\t\t and how to do the same thing by using policies.Our first task is to arrange " +"a compilation of files. In order to do this, please go to the agent's \n" "\t\t administrator. Subsequently, we're going to see a 'sub option' called " -"'Collections'. Please click on it in order to create a new collection as we " -"can see on \n" +"'Collections'. Please click on it in order to create a new collection as we can " +"see on \n" "\t\t the picture below. " msgstr "" "ファイルコレクションは、次のような(スクリプトや実行形式の)ファイルのグループで" "す。\n" "\t\t(WindowsまたはUNIXの)エージェントの特定のディレクトリに自動的にコピーされま" "す。ファイルコレクションは、\n" -"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使え" -"るようにするためにポリシーでまとめることができます。\n" +"\t\tスクリプトとそれを使うモジュールのパッケージをエージェントのグループで使える" +"ようにするためにポリシーでまとめることができます。\n" "\t\t最初にエージェント表示画面でファイルコレクションの使い方を学びます。コレク" "ションを利用せずにエージェントごとに手動で\n" -"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うこと" -"は、編集ファイルの配置です。これを行うには、\n" +"\t\t行う方法と、同じことをポリシーを使って行う方法があります。最初に行うことは、" +"編集ファイルの配置です。これを行うには、\n" "\t\tエージェント管理画面へ行ってください。次に、\"コレクション\" というサブオプ" "ションへ行きます。以下の画像で示すように、\n" "\t\t新たなコレクションを作成するにはそれをクリックします。 " @@ -53991,12 +53546,12 @@ msgid "" " Download the official documentation" msgstr "" -"これは %sコンソールのオンラインヘルプです。 このヘルプは、簡単なコンテキストヘ" -"ルプであり、%s の使用方法のすべてを示すことを目的としたものではありません。 %s " -"の公式ドキュメントは約900ページであり、おそらくすべてを読む必要はありませんが、" -"ダウンロードして確認する必要があります。

\n" -" 公" -"式ドキュメントのダウンロード" +"これは %sコンソールのオンラインヘルプです。 このヘルプは、簡単なコンテキストヘル" +"プであり、%s の使用方法のすべてを示すことを目的としたものではありません。 %s の公" +"式ドキュメントは約900ページであり、おそらくすべてを読む必要はありませんが、ダウン" +"ロードして確認する必要があります。

\n" +" 公式" +"ドキュメントのダウンロード" #: ../../general/alert_enterprise.php:120 #, php-format @@ -54006,10 +53561,10 @@ msgid "" " Please know that all attempts to access this page are recorded in security " "logs of %s System Database." msgstr "" -"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要" -"な場合はシステム管理者に連絡してください。

\n" -" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティ" -"ログに記録されます。" +"このページへのアクセスは承認されたユーザのみに制限されています。サポートが必要な" +"場合はシステム管理者に連絡してください。

\n" +" このページへのアクセス試行は、すべて %s システムデータベースのセキュリティロ" +"グに記録されます。" #: ../../general/alert_enterprise.php:130 #, php-format @@ -54019,39 +53574,37 @@ msgid "" "new plugins and new features (even full migrations tools for future versions) " "automatically." msgstr "" -"アップデートマネージャクライアントは、%s に含まれています。アップデートマネー" -"ジャは、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全" -"な移行ツールも含む)を自動的に取得するため、システム管理者が %s を自動的に更新" -"するのに役立ちます。" +"アップデートマネージャクライアントは、%s に含まれています。アップデートマネージャ" +"は、新しいモジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行" +"ツールも含む)を自動的に取得するため、システム管理者が %s を自動的に更新するのに" +"役立ちます。" #: ../../general/alert_enterprise.php:130 msgid "" -"OpenSource version updates are automated packages generated each week. " -"These updates come WITHOUT ANY warranty or support. If your system is " -"corrupted or a feature stops working properly, you will need to recover a " -"backup by yourself." +"OpenSource version updates are automated packages generated each week. These " +"updates come WITHOUT ANY warranty or support. If your system is corrupted or a " +"feature stops working properly, you will need to recover a backup by yourself." msgstr "" -"オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証" -"やサポートはありません。システムが壊れたり一部の機能が正しく動作しなかった場合" -"は、ご自身でバックアップから戻す必要があります。" +"オープンソース版は毎週生成されるパッケージで更新されます。これらの更新は保証や" +"サポートはありません。システムが壊れたり一部の機能が正しく動作しなかった場合は、" +"ご自身でバックアップから戻す必要があります。" #: ../../general/alert_enterprise.php:130 #, php-format msgid "" -"The Enterprise version comes with a different update system, with fully " -"tested, professionally-supported packages, and our support team is there to " -"help you in case of problems or queries. Update Manager is another feature " -"present in the Enterprise version and not included in the OpenSource version. " -"There are lots of advanced business-oriented features contained in %s " -"Enterprise Edition. For more information visit pandorafms.com" +"The Enterprise version comes with a different update system, with fully tested, " +"professionally-supported packages, and our support team is there to help you in " +"case of problems or queries. Update Manager is another feature present in the " +"Enterprise version and not included in the OpenSource version. There are lots of " +"advanced business-oriented features contained in %s Enterprise Edition. For more " +"information visit pandorafms.com" msgstr "" -"Enterprise 版には、完全にテストされ専門的にサポートされたパッケージの更新システ" -"ムが付属しており、問題や問い合わせにはサポートチームが対応します。アップデート" -"マネージャは、Enterprise 版に存在する機能であり、オープンソース版には含まれてい" -"ません。%s Enterprise 版には、ビジネス向けの高度な機能が数多く含まれています。" -"より詳細は、pandorafms.comを参照してく" -"ださい。" +"Enterprise 版には、完全にテストされ専門的にサポートされたパッケージの更新システム" +"が付属しており、問題や問い合わせにはサポートチームが対応します。アップデートマ" +"ネージャは、Enterprise 版に存在する機能であり、オープンソース版には含まれていませ" +"ん。%s Enterprise 版には、ビジネス向けの高度な機能が数多く含まれています。より詳" +"細は、pandorafms.comを参照してください。" #: ../../general/alert_enterprise.php:132 #, php-format @@ -54061,11 +53614,10 @@ msgid "" "automatically, since the Update Manager retrieves new modules, new plugins and " "new features (even full migrations tools for future versions) automatically." msgstr "" -"新たな アップデートマネージャ" -"クライアントは、%s に含まれています。アップデートマネージャは、新しいモ" -"ジュール、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含" -"む)を自動的に取得するため、システム管理者が %s を自動的に更新するのに役立ちま" -"す。" +"新たな アップデートマネージャクライアントは、%s に含まれています。アップデートマネージャは、新しいモジュー" +"ル、新しいプラグイン、新しい機能(将来のバージョンの完全な移行ツールも含む)を自" +"動的に取得するため、システム管理者が %s を自動的に更新するのに役立ちます。" #: ../../general/alert_enterprise.php:132 #, php-format @@ -54075,85 +53627,84 @@ msgid "" "pandorafms.com." msgstr "" "アップデートマネージャは、%s Enterprise 版の最も高度な機能の一つです。より詳細" -"は、http://pandorafms.comを参照してく" -"ださい。" +"は、http://pandorafms.comを参照してくだ" +"さい。" #: ../../general/alert_enterprise.php:132 #, php-format msgid "" -"Update Manager sends anonymous information about %s usage (number of agents " -"and modules running). To disable it, please remove the remote server address " -"from the Update Manager plugin setup." +"Update Manager sends anonymous information about %s usage (number of agents and " +"modules running). To disable it, please remove the remote server address from " +"the Update Manager plugin setup." msgstr "" -"アップデートマネージャは、%s の使用状況(実行中のエージェントとモジュールの数)に" -"関する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの" -"設定からリモートサーバのアドレスを削除してください。" +"アップデートマネージャは、%s の使用状況(実行中のエージェントとモジュールの数)に関" +"する匿名情報を送信します。無効にするには、アップデートマネージャプラグインの設定" +"からリモートサーバのアドレスを削除してください。" #: ../../general/alert_enterprise.php:138 msgid "" "The community version doesn't have the ability to define your own library of " -"local modules, or distribute it to remote agents. You need to make those " -"changes individually on each agent which is possible by using external tools " -"and time and effort. Nor can it distribute local plugins, or have access to " -"the library of enterprise plugins to monitor applications such as VMWare, RHEV " -"or Informix between others. The Enterprise version will have all this, plus " -"the ability to distribute and manage your own local modules on your systems, " -"individually or through policies.\n" +"local modules, or distribute it to remote agents. You need to make those changes " +"individually on each agent which is possible by using external tools and time " +"and effort. Nor can it distribute local plugins, or have access to the library " +"of enterprise plugins to monitor applications such as VMWare, RHEV or Informix " +"between others. The Enterprise version will have all this, plus the ability to " +"distribute and manage your own local modules on your systems, individually or " +"through policies.\n" "

pandorafms." -"com" +"Do you want to consolidate all your system monitoring? Do you have many systems, " +"making it difficult to manage them in a comprehensive manner? Would you like to " +"deploy monitoring, alerts and even local plugins with a single click? %s " +"Enterprise Policies are exactly what you need; you'll save time, effort and " +"annoyances. More information pandorafms.com" msgstr "" -"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な" -"方法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらには" -"ローカルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必" -"要とするものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。" +"すべてのシステム監視を統合したいですか? 多くのシステムがあり、それらを包括的な方" +"法で管理することが難しくありませんか? ワンクリックで監視、アラート、さらにはロー" +"カルプラグインを展開したいですか? %s Enterprise ポリシーはまさにあなたが必要とす" +"るものです。 時間、労力、煩わしさを削減できます。 詳細は、 pandorafms.com を参照してください。" #: ../../general/alert_enterprise.php:148 #, php-format msgid "" "%s Enterprise also features event correlation. Through correlation you can " -"generate realtime alerts and / or new events based on logical rules. This " -"allows you to automate troubleshooting. If you know the value of working with " -"events, event correlation will take you to a new level." +"generate realtime alerts and / or new events based on logical rules. This allows " +"you to automate troubleshooting. If you know the value of working with events, " +"event correlation will take you to a new level." msgstr "" -"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づ" -"いてリアルタイムのアラートや新しいイベントを生成できます。 これにより、トラブル" -"シューティングを自動化できます。 イベントに応じた対応の受容性がわかっているので" -"あれば、イベント相関が新しい領域を提供します。" +"%s Enterprise は、イベント相関も備えています。 相関により、論理的なルールに基づい" +"てリアルタイムのアラートや新しいイベントを生成できます。 これにより、トラブル" +"シューティングを自動化できます。 イベントに応じた対応の受容性がわかっているのであ" +"れば、イベント相関が新しい領域を提供します。" #: ../../general/alert_enterprise.php:152 #, php-format msgid "" "Report generating on the Enterprise version is also more powerful: it has " -"wizards, you can schedule emails in PDF to be sent according to the schedule " -"you decide, and it has a template system to create personalized reports " -"quickly for each of your customers. It will even allow your customers to " -"generate their own reports from templates created by you. If reports are key " -"to your business, %s Enterprise version is for you." +"wizards, you can schedule emails in PDF to be sent according to the schedule you " +"decide, and it has a template system to create personalized reports quickly for " +"each of your customers. It will even allow your customers to generate their own " +"reports from templates created by you. If reports are key to your business, %s " +"Enterprise version is for you." msgstr "" -"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送" -"信するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレ" -"ポートをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテ" -"ンプレートから独自のレポートを生成することもできます。 レポートがビジネスにとっ" -"て重要であるならば、%s Enterprise 版が最適です。" +"Enterprise 版でのレポート生成もより強力です。ウィザードがあり、PDF でメールを送信" +"するようにスケジュールを設定できます。また、顧客ごとにパーソナライズされたレポー" +"トをすばやく作成するためのテンプレートシステムがあります。 顧客が作成したテンプ" +"レートから独自のレポートを生成することもできます。 レポートがビジネスにとって重要" +"であるならば、%s Enterprise 版が最適です。" #: ../../general/alert_enterprise.php:156 msgid "These options are only effective on the Enterprise version." @@ -54163,25 +53714,24 @@ msgstr "これらのオプションは、Enterprise版でのみ有効です。" msgid "" "WARNING: You are just one click away from an automated update. This may result " "in a damaged system, including loss of data and operativity. Check you have a " -"recent backup. OpenSource updates are automatically created packages, and " -"there is no WARRANTY or SUPPORT. If you need professional support and " -"warranty, please upgrade to Enterprise Version." +"recent backup. OpenSource updates are automatically created packages, and there " +"is no WARRANTY or SUPPORT. If you need professional support and warranty, please " +"upgrade to Enterprise Version." msgstr "" -"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題" -"が発生している可能性があります。最新のバックアップを確認してください。オープン" -"ソース版はパッケージを使って自動更新されます。保障やサポートはありません。プロ" -"フェッショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてくだ" -"さい。" +"警告: 自動更新後に操作が行われました。データの消失や操作性を含むシステムの問題が" +"発生している可能性があります。最新のバックアップを確認してください。オープンソー" +"ス版はパッケージを使って自動更新されます。保障やサポートはありません。プロフェッ" +"ショナルサポートや保証が必要な場合は、Enterprise版にアップデートしてください。" #: ../../general/alert_enterprise.php:164 msgid "" "This system is heavily loaded. OpenSource version could get a lot more agents " -"but fine tuning requires knowledge and time. Checkout the Enterprise Version " -"for a professional supported system." +"but fine tuning requires knowledge and time. Checkout the Enterprise Version for " +"a professional supported system." msgstr "" -"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応" -"できますが、最適なチューニングのための知識と時間が必要です。プロフェッショナル" -"サポートは、Enterprise版を確認してください。" +"このシステムは高負荷になっています。オープンソース版は多くのエージェントに対応で" +"きますが、最適なチューニングのための知識と時間が必要です。プロフェッショナルサ" +"ポートは、Enterprise版を確認してください。" #: ../../general/alert_enterprise.php:173 #, php-format @@ -54191,22 +53741,21 @@ msgid "" "agent. This configuration has %d modules per agent. Checkout the Enterprise " "Version for a professional supported system." msgstr "" -"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数" -"千のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用" -"することはお勧めしません。 この設定では、エージェントごとに %d個のモジュールが" -"あります。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してく" -"ださい。" +"このシステムは、エージェントごとのモジュールが多すぎます。 オープンソース版は数千" +"のモジュールを管理できますが、エージェントあたり 100を超えるモジュールを使用する" +"ことはお勧めしません。 この設定では、エージェントごとに %d個のモジュールがありま" +"す。 プロフェッショナルのサポートを受けられる、Enterprise 版を確認してください。" #: ../../general/alert_enterprise.php:177 msgid "" "Too much remote modules has been detected on this system. OpenSource version " -"could manage thousands of modules, but performance is limited on high amount " -"of SNMP or ICMP request. Checkout the Enterprise Version for a professional " +"could manage thousands of modules, but performance is limited on high amount of " +"SNMP or ICMP request. Checkout the Enterprise Version for a professional " "supported system with improved capacity on network monitoring, including " "distributed servers." msgstr "" -"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数" -"千のモジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパ" +"このシステムで多くのリモートモジュールが検出されました。オープンソース版では数千" +"のモジュールを管理できますが、大量の SNMP や ICMP リクエストがある環境でのパ" "フォーマンスは限られています。プロフェッショナルサポートがあり、容量を改善した" "ネットワーク監視や分散監視ができる Enterprise版を確認してください。" @@ -54215,20 +53764,20 @@ msgid "" "This system has too much events in the database. Checkout database purge " "options. Checkout the Enterprise Version for a professional supported system." msgstr "" -"このシステムはデータベースに多くのイベントがあります。データベースの削除オプ" -"ションを確認してください。プロフェッショナルサポートは、Enterprise版を確認して" -"ください。" +"このシステムはデータベースに多くのイベントがあります。データベースの削除オプショ" +"ンを確認してください。プロフェッショナルサポートは、Enterprise版を確認してくださ" +"い。" #: ../../general/alert_enterprise.php:185 msgid "" "You have defined a high number of alerts, this may cause you performance " -"problems in the future. In the Enterprise version, you can use event " -"correlation alerts to simplify the alerting system and have easier " -"administration and increased performance." +"problems in the future. In the Enterprise version, you can use event correlation " +"alerts to simplify the alerting system and have easier administration and " +"increased performance." msgstr "" -"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性が" -"あります。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が" -"簡単になりパフォーマンスが向上します。" +"アラートの定義数が多くあるため、将来的にパフォーマンスの問題が発生する可能性があ" +"ります。Enterprise版では、イベント相関でアラートシステムを単純化でき、管理が簡単" +"になりパフォーマンスが向上します。" #: ../../general/login_help_dialog.php:43 #, php-format @@ -54237,9 +53786,9 @@ msgid "" "learn more about the software. Monitoring can be overwhelming, but take your " "time to learn how to harness the power of %s!" msgstr "" -"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつ" -"かお勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方" -"法を学んでください!" +"%s を初めて使用するのであれば、ソフトウェアの詳細を知るのに役立つリンクをいくつか" +"お勧めします。 さまざまな監視ができますが、時間をかけて %s の機能を活用する方法を" +"学んでください!" #: ../../general/login_help_dialog.php:57 ../../general/login_help_dialog.php:62 msgid "Online help" @@ -54289,10 +53838,9 @@ msgid "" "failed login attempts are logged in Pandora FMS System logs, and these can be " "reviewed by each user, please report to admin any incident or malfunction." msgstr "" -"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、" -"CAPS LOCKキーを確認してください。

ログインの失敗は Pandora FMS システム" -"ログに記録され他のユーザから確認されます。問題があれば管理者へ連絡してくださ" -"い。" +"パスワードまたはユーザ名が正しくありません。大文字・小文字を区別しますので、CAPS " +"LOCKキーを確認してください。

ログインの失敗は Pandora FMS システムログに記" +"録され他のユーザから確認されます。問題があれば管理者へ連絡してください。" #: ../../general/node_deactivated.php:36 msgid "You cannot use this node until system is unified" @@ -54311,11 +53859,11 @@ msgstr "このページへのアクセスは制限されています" msgid "" "Access to this page is restricted to authorized users only, please contact " "system administrator if you need assistance.

\n" -"\t\t\tPlease know that all attempts to access this page are recorded in " -"security logs of Pandora System Database" +"\t\t\tPlease know that all attempts to access this page are recorded in security " +"logs of Pandora System Database" msgstr "" -"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合" -"はシステム管理者へ連絡してください。

\n" +"このページへのアクセスは認証されたユーザに限定されています。手助けが必要な場合は" +"システム管理者へ連絡してください。

\n" "\t\t\tこのページへの全てのアクセスは、Pandora のシステムデータベースのセキュリ" "ティログに記録されます。" @@ -54328,16 +53876,16 @@ msgid "" "Failure to connect to historical database, please check the configuration or " "contact system administrator if you need assistance." msgstr "" -"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合" -"はシステム管理者に連絡してください。" +"ヒストリデータベースへの接続に失敗しました。構成を確認するか、支援が必要な場合は" +"システム管理者に連絡してください。" #: ../../general/mysqlerr.php:9 msgid "" "Failure to connect to Database server, please check the configuration file " "config.php or contact system administrator if you need assistance." msgstr "" -"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認する" -"か、支援が必要な場合はシステム管理者に連絡してください。" +"データベースサーバへの接続に失敗しました。設定ファイル config.php を確認するか、" +"支援が必要な場合はシステム管理者に連絡してください。" #: ../../general/mysqlerr.php:31 msgid "Mysql error" @@ -54377,8 +53925,8 @@ msgid "" "This node is configured with centralized mode. Go to metaconsole to reset the " "password" msgstr "" -"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソール" -"で行います。" +"このノードは集中モードで設定されています。 パスワードのリセットはメタコンソールで" +"行います。" #: ../../general/login_page.php:569 msgid "Forbidden" @@ -54401,8 +53949,8 @@ msgid "" "This user does not have access on node, please enable node access on this user " "from metaconsole." msgstr "" -"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードア" -"クセスを有効にしてください。" +"このユーザはノードにアクセスできません。メタコンソールからこのユーザのノードアク" +"セスを有効にしてください。" #: ../../general/login_page.php:718 ../../general/login_page.php:720 #, php-format @@ -54413,12 +53961,11 @@ msgstr "%s データベースに問題があります" msgid "" "Cannot connect to the database, please check your database setup in the " "include/config.php file.

\n" -"\t\tProbably your database, hostname, user or password values are incorrect " -"or\n" +"\t\tProbably your database, hostname, user or password values are incorrect or\n" "\t\tthe database server is not running." msgstr "" -"データベースに接続できません。include/config.phpファイル内のデータベース" -"設定を確認してください。

\n" +"データベースに接続できません。include/config.phpファイル内のデータベース設" +"定を確認してください。

\n" "\t\tおそらく、データベース名、ホスト名、ユーザ名、パスワードの値が不正か\n" "\t\tデータベースサーバが動作していません。" @@ -54430,13 +53977,13 @@ msgstr "DB エラー" #, php-format msgid "" "If you have modified the auth system, the origin of this problem could be that " -"%s cannot override the authorization variables from the config database. " -"Please remove them from your database by executing:
DELETE FROM "
-"tconfig WHERE token = \"auth\";
" +"%s cannot override the authorization variables from the config database. Please " +"remove them from your database by executing:
DELETE FROM tconfig WHERE "
+"token = \"auth\";
" msgstr "" -"認証システムを変更した場合、この問題の原因は、%s が設定データベースの認証設定を" -"上書きできないことです。以下を実行することにより、データベースよりそれらを削除" -"してください。
DELETE FROM tconfig WHERE token = \"auth\";
" +"認証システムを変更した場合、この問題の原因は、%s が設定データベースの認証設定を上" +"書きできないことです。以下を実行することにより、データベースよりそれらを削除して" +"ください。
DELETE FROM tconfig WHERE token = \"auth\";
" #: ../../general/login_page.php:740 msgid "Empty configuration table" @@ -54448,22 +53995,22 @@ msgid "" "Cannot load configuration variables from database. Please check your database " "setup in the\n" "\t\t\tinclude/config.php file.

\n" -"\t\t\tMost likely your database schema has been created but there are is no " -"data in it, you have a problem with the database access credentials or your " -"schema is out of date.\n" -"\t\t\t

%s Console cannot find include/config.php or this file " -"has invalid\n" +"\t\t\tMost likely your database schema has been created but there are is no data " +"in it, you have a problem with the database access credentials or your schema is " +"out of date.\n" +"\t\t\t

%s Console cannot find include/config.php or this file has " +"invalid\n" "\t\t\tpermissions and HTTP server cannot read it. Please read documentation to " "fix this problem.
" msgstr "" "データベースから設定を読み込めません。include/config.phpファイルのデータ" "ベース設定を確認してください。

\n" -"\t\t\tほとんどの場合、データベーススキーマは作成されていますが、データがありま" -"せん。データベースアクセス権限に問題があるか、スキーマが古くなっています。\n" -"\t\t\t

%s コンソールが include/config.php を見つけられないか、" -"ファイルのパーミッションが\n" -"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメント" -"を確認してください。" +"\t\t\tほとんどの場合、データベーススキーマは作成されていますが、データがありませ" +"ん。データベースアクセス権限に問題があるか、スキーマが古くなっています。\n" +"\t\t\t

%s コンソールが include/config.php を見つけられないか、ファ" +"イルのパーミッションが\n" +"\t\t\t不正で HTTP サーバがそれを読めません。この問題を修正するにはドキュメントを" +"確認してください。" #: ../../general/login_page.php:752 msgid "No configuration file found" @@ -54473,13 +54020,13 @@ msgstr "設定ファイルがありません" #, php-format msgid "" "%s Console cannot find include/config.php or this file has invalid\n" -"\t\tpermissions and HTTP server cannot read it. Please read documentation to " -"fix this problem." +"\t\tpermissions and HTTP server cannot read it. Please read documentation to fix " +"this problem." msgstr "" -"%s コンソールが include/config.php を見つけられないか、このファイルの" -"パーミッションが不正で\n" -"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照して" -"ください。" +"%s コンソールが include/config.php を見つけられないか、このファイルのパー" +"ミッションが不正で\n" +"\t\tHTTP サーバがそれを読めません。この問題を修正するにはドキュメントを参照してく" +"ださい。" #: ../../general/login_page.php:766 #, php-format @@ -54497,8 +54044,8 @@ msgid "" "installer file.\n" "\t\tPlease delete the ./install.php file before running %s Console." msgstr "" -"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はでき" -"ません。\n" +"セキュリティ上の理由により、インストーラファイルを削除するまで通常の操作はできま" +"せん。\n" "\t\t%s コンソールを実行する前に、./install.php ファイルを削除してくださ" "い。" @@ -54513,15 +54060,15 @@ msgid "" "\t\tshould not read it or write to it. It should be written only for owner\n" "\t\t(usually www-data or http daemon user), normal operation is not possible " "until you change\n" -"\t\tpermissions for include/config.php file. Please do it, it is for " -"your security." +"\t\tpermissions for include/config.php file. Please do it, it is for your " +"security." msgstr "" -"セキュリティ上の理由により、config.php は制限したパーミッションでなけれ" -"ばいけません。\n" -"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または " -"http デーモンのユーザ)\n" -"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変" -"更するまで\n" +"セキュリティ上の理由により、config.php は制限したパーミッションでなければ" +"いけません。\n" +"\t\t\"other\"ユーザが読み書きできなようにし、所有者(通常は www-data または http " +"デーモンのユーザ)\n" +"\t\tのみが書けるようにする必要があります。config.phpのパーミッションを変更" +"するまで\n" "\t\t通常の操作はできません。セキュリティのために対応してください。" #: ../../general/login_page.php:789 @@ -54533,8 +54080,7 @@ msgid "" "In the config.php file in the variable $config[\"homedir\"] = add the correct " "path" msgstr "" -"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してくださ" -"い。" +"config.php ファイル内で、$config[\"homedir\"] = に正しいパスを設定してください。" #: ../../general/login_page.php:794 msgid "Bad defined homeurl or homeurl_static" @@ -54545,8 +54091,8 @@ msgid "" "In the config.php file in the variable $config[\"homeurl\"] or " "$config[\"homeurl_static\"] = add the correct path" msgstr "" -"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] " -"に正しいパスを設定してください。" +"config.php ファイルで $config[\"homeurl\"] または $config[\"homeurl_static\"] に" +"正しいパスを設定してください。" #: ../../general/pandora_help.php:23 #, php-format @@ -54560,11 +54106,11 @@ msgstr "ヘルプシステムエラー" #: ../../general/pandora_help.php:77 #, php-format msgid "" -"%s help system has been called with a help reference that currently don't " -"exist. There is no help content to show." +"%s help system has been called with a help reference that currently don't exist. " +"There is no help content to show." msgstr "" -"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘル" -"プコンテンツはありません。" +"%s ヘルプシステムは、現在存在しないヘルプ参照で呼び出されました。 表示するヘルプ" +"コンテンツはありません。" #~ msgid "Calendars" #~ msgstr "カレンダー" @@ -54653,8 +54199,8 @@ msgstr "" #~ "The templates shown are only for correlative alerts, event alert (legacy) " #~ "will be deprecated in the future" #~ msgstr "" -#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガ" -#~ "シー)は将来非推奨になります" +#~ "表示されているテンプレートは相関アラート専用であり、イベントアラート(レガシー)" +#~ "は将来非推奨になります" #~ msgid "Confirm: " #~ msgstr "確認: " @@ -54774,11 +54320,11 @@ msgstr "" #~ msgstr "公開 URL 利用に関する情報" #~ msgid "" -#~ "Use [ or ( as first character, for example '[*] Map name', to render this " -#~ "map name in main menu" +#~ "Use [ or ( as first character, for example '[*] Map name', to render this map " +#~ "name in main menu" #~ msgstr "" -#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニュー" -#~ "に表示するには、'[*] Map name' です。" +#~ "最初の文字には [ または ( を使ってください。例えば、マップ名をメインメニューに" +#~ "表示するには、'[*] Map name' です。" #~ msgid "Edit event responses" #~ msgstr "イベント応答の編集" @@ -54844,15 +54390,15 @@ msgstr "" #~ msgstr "参照" #~ msgid "" -#~ "If event replication is ongoing, it won't be possible to enter comments " -#~ "here. This option is only to allow local pandora users to see comments, but " -#~ "not to operate with them. The operation, when event replication is enabled, " -#~ "must be done only in the Metaconsole." +#~ "If event replication is ongoing, it won't be possible to enter comments here. " +#~ "This option is only to allow local pandora users to see comments, but not to " +#~ "operate with them. The operation, when event replication is enabled, must be " +#~ "done only in the Metaconsole." #~ msgstr "" #~ "イベントの複製実行中は、ここにコメントを入力することはできません。 このオプ" -#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、" -#~ "コメントを操作することはできません。 イベント複製が有効な場合は、操作はメタ" -#~ "コンソールでのみ実行する必要があります。" +#~ "ションでは、ローカルの pandora ユーザはコメントを表示することのみが可能で、コ" +#~ "メントを操作することはできません。 イベント複製が有効な場合は、操作はメタコン" +#~ "ソールでのみ実行する必要があります。" #~ msgid "No log sources found" #~ msgstr "ログソースが見つかりません" @@ -54956,8 +54502,8 @@ msgstr "" #~ "Enable/disable token (this will comment out the corresponding line in the " #~ "configuration file)" #~ msgstr "" -#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントア" -#~ "ウトされます)" +#~ "トークンの有効化/無効化 (これにより、設定ファイル内の対応する行がコメントアウ" +#~ "トされます)" #~ msgid "Enable (1) or disable (0) remote configuration" #~ msgstr "リモート設定の有効化(1)または無効化(0)" @@ -55092,8 +54638,8 @@ msgstr "" #~ "The plugin command cannot be updated because some modules or components are " #~ "using the plugin." #~ msgstr "" -#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラ" -#~ "グインコマンドを更新できません。" +#~ "いくつかのモジュールまたはコンポーネントでプラグインを利用しているため、プラグ" +#~ "インコマンドを更新できません。" #~ msgid "Circular porgress bar" #~ msgstr "円進捗バー" @@ -55124,8 +54670,7 @@ msgstr "" #~ "\t\tREMEMBER trap sources need to be searched by IP Address" #~ msgstr "" #~ "トラップの英数字フィールドで検索。\n" -#~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してくださ" -#~ "い。" +#~ "\t\tトラップの発信元は IPアドレスで検索する必要があることに注意してください。" #~ msgid "There are no SNMP traps in database that contains this filter" #~ msgstr "このフィルタを含む SNMP トラップがデータベース内にありません。" @@ -55153,12 +54698,12 @@ msgstr "" #~ "Transaction graphs represent the different processes within our " #~ "infrastructure that we use to deliver our service." #~ msgstr "" -#~ "新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行が" -#~ "できます。指定した時間に対象を確認するために、いくつかの処理の実行ができるこ" -#~ "とを意味します。\n" +#~ "新たなトランザクションサーバは、ユーザ定義に従って他に依存したタスクの実行がで" +#~ "きます。指定した時間に対象を確認するために、いくつかの処理の実行ができることを" +#~ "意味します。\n" #~ "\n" -#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる" -#~ "処理を表現します。" +#~ "トランザクショングラフは、サービスを提供するために利用するインフラ内の異なる処" +#~ "理を表現します。" #~ msgid "Mode Cell" #~ msgstr "モードセル" @@ -55185,11 +54730,11 @@ msgstr "" #~ msgstr "処理中イベントは削除できません" #~ msgid "" -#~ "Event viewer is disabled due event replication. For more information, " -#~ "please contact with the administrator" +#~ "Event viewer is disabled due event replication. For more information, please " +#~ "contact with the administrator" #~ msgstr "" -#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡" -#~ "してください。" +#~ "イベントの複製のためイベント表示は無効化されています。より詳細は管理者に連絡し" +#~ "てください。" #~ msgid "No filter loaded" #~ msgstr "フィルタが読み込まれていません" @@ -55222,8 +54767,8 @@ msgstr "" #~ msgid "" #~ "'Show events' is disabled because this %s node is set to event replication." #~ msgstr "" -#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' " -#~ "は無効です。" +#~ "この %s ノードはイベントを複製するように設定されているため、’イベント表示' は" +#~ "無効です。" #~ msgid "Treshold" #~ msgstr "閾値" @@ -55409,17 +54954,16 @@ msgstr "" #~ "This user has permissions to manage all. An admin user should not requiere " #~ "additional group permissions, except for using Enterprise ACL." #~ msgstr "" -#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、" -#~ "管理者ユーザは追加のグループパーミッション設定をすべきではありません。" +#~ "このユーザはすべてを管理する権限があります。Enterprise ACL の利用を除いて、管" +#~ "理者ユーザは追加のグループパーミッション設定をすべきではありません。" #~ msgid "" -#~ "This user has separated permissions to view data in his group agents, " -#~ "create incidents belong to his groups, add notes in another incidents, " -#~ "create personal assignments or reviews and other tasks, on different " -#~ "profiles" +#~ "This user has separated permissions to view data in his group agents, create " +#~ "incidents belong to his groups, add notes in another incidents, create " +#~ "personal assignments or reviews and other tasks, on different profiles" #~ msgstr "" -#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限" -#~ "られた権限を所有します。" +#~ "このユーザは、以下のプロファイル名およびグループ名の組み合わせで定義した、限ら" +#~ "れた権限を所有します。" #~ msgid "Assigned node" #~ msgstr "割り当てノード" @@ -55434,8 +54978,7 @@ msgstr "" #~ msgstr "移動を再実行するか管理者に連絡してください。" #~ msgid "Agents cannot be updated (maybe there was no field to update)" -#~ msgstr "" -#~ "エージェントが更新できません (更新するフィールドがない可能性があります)" +#~ msgstr "エージェントが更新できません (更新するフィールドがない可能性があります)" #~ msgid "Days of week" #~ msgstr "曜日" @@ -55480,8 +55023,8 @@ msgstr "" #~ msgid "" #~ "Exceeded max. number (%d) of agents added to policy concurrently (%d added)" #~ msgstr "" -#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されま" -#~ "した)" +#~ "同時にポリシーに追加するエージェント最大数(%d)を超過しました (%d 追加されまし" +#~ "た)" #~ msgid "Successfully deleted from delete pending agents" #~ msgstr "削除待ちエージェントから削除しました" @@ -55535,11 +55078,11 @@ msgstr "" #~ msgstr "マイナーリリースは拒否されました。変更は適用されません。" #~ msgid "" -#~ "Minor release rejected. The database will not be updated and the package " -#~ "will apply." +#~ "Minor release rejected. The database will not be updated and the package will " +#~ "apply." #~ msgstr "" -#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用" -#~ "されます。" +#~ "マイナーリリースは拒否されました。データベースは更新されず、パッケージが適用さ" +#~ "れます。" #~ msgid "Database successfully updated" #~ msgstr "データベースを更新しました" @@ -55635,8 +55178,8 @@ msgstr "" #, php-format #~ msgid "" -#~ "This policy exist in node %s with other name (%s). Change the name to '%s' " -#~ "to apply the policy." +#~ "This policy exist in node %s with other name (%s). Change the name to '%s' to " +#~ "apply the policy." #~ msgstr "" #~ "このポリシーは、ノード %s に他の名前(%s)で存在します。 ポリシーを適用するに" #~ "は、名前を '%s' に変更します。" @@ -55701,12 +55244,12 @@ msgstr "" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

Please know that all " -#~ "attempts to access this page are recorded in security logs of Pandora " -#~ "System Database" +#~ "attempts to access this page are recorded in security logs of Pandora System " +#~ "Database" #~ msgstr "" -#~ "このページへのアクセスは認証されたユーザのみに制限されています。必要であれば" -#~ "システム管理者へ連絡してください。

このページへのアクセスは、Pandora" -#~ "システムデータベースのセキュリティログに記録されますので注意してください。" +#~ "このページへのアクセスは認証されたユーザのみに制限されています。必要であればシ" +#~ "ステム管理者へ連絡してください。

このページへのアクセスは、Pandoraシス" +#~ "テムデータベースのセキュリティログに記録されますので注意してください。" #~ msgid "Welcome to Pandora FMS" #~ msgstr "ようこそ Pandora FMS へ" @@ -55715,11 +55258,10 @@ msgstr "" #~ msgstr "Pandora FMS ヘルプシステム" #~ msgid "" -#~ "Pandora FMS help system has been called with a help reference that " -#~ "currently don't exist. There is no help content to show." +#~ "Pandora FMS help system has been called with a help reference that currently " +#~ "don't exist. There is no help content to show." #~ msgstr "" -#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しませ" -#~ "ん。" +#~ "Pandora FMS ヘルプシステムが呼び出されましたが、表示するヘルプが存在しません。" #~ msgid "Message overview" #~ msgstr "メッセージ概要" @@ -55736,8 +55278,8 @@ msgstr "" #~ msgstr "警告が %d 件あります。" #~ msgid "" -#~ "Your session is over. Please close your browser window to close this " -#~ "Pandora session." +#~ "Your session is over. Please close your browser window to close this Pandora " +#~ "session." #~ msgstr "セッションを終了しました。ブラウザのウインドウを閉じてください。" #~ msgid "Pandora FMS Diagnostic tool" @@ -56018,8 +55560,7 @@ msgstr "" #~ msgid "File was partially uploaded. Please try again" #~ msgstr "" -#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてくださ" -#~ "い。" +#~ "ファイルが一部しかアップロードされませんでした。再度アップロードしてください。" #~ msgid "Generic upload error" #~ msgstr "一般アップロードエラー" @@ -56091,8 +55632,8 @@ msgstr "" #~ "You must select a Recon Server for the Task, otherwise the Recon Task will " #~ "never run" #~ msgstr "" -#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出" -#~ "は実行されません。" +#~ "タスクを実行する自動検出サーバを指定する必要があります。指定しないと自動検出は" +#~ "実行されません。" #~ msgid "Network sweep" #~ msgstr "ネットワーク探査" @@ -56104,9 +55645,9 @@ msgstr "" #~ "Ports defined like: 80 or 80,443,512 or even 0-1024 (Like Nmap command line " #~ "format). If dont want to do a sweep using portscan, left it in blank" #~ msgstr "" -#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 " -#~ "(nmapコマンドのフォーマット)のように記載します。ポートスキャンをしたくない場" -#~ "合は、空白にしてください。" +#~ "ポート番号の指定は、一つの場合は 80、複数の場合は、80,443,512 や 0-1024 (nmap" +#~ "コマンドのフォーマット)のように記載します。ポートスキャンをしたくない場合は、" +#~ "空白にしてください。" #~ msgid "Choose if the discovery of a new system creates an incident or not." #~ msgstr "新システム検出時のインシデント作成有無の選択" @@ -56115,10 +55656,9 @@ msgstr "" #~ msgstr "SNMP デフォルトコミュニティ" #~ msgid "" -#~ "The current authentication scheme doesn't support creating users from " -#~ "Pandora FMS" -#~ msgstr "" -#~ "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" +#~ "The current authentication scheme doesn't support creating users from Pandora " +#~ "FMS" +#~ msgstr "現在の認証設定では、Pandora FMS 上でユーザを作成することはできません。" #~ msgid "Profiles defined in Pandora" #~ msgstr "Pandora 内プロファイル" @@ -56160,8 +55700,8 @@ msgstr "" #~ msgstr "Pandora に定義されているモジュールグループ" #~ msgid "" -#~ "If realtime statistics are disabled, statistics interval resfresh will be " -#~ "set here." +#~ "If realtime statistics are disabled, statistics interval resfresh will be set " +#~ "here." #~ msgstr "リアルタイム統計が無効の場合、ここで統計処理間隔を設定します。" #~ msgid "Success updatng OS" @@ -56195,8 +55735,8 @@ msgstr "" #~ "If SSL is not properly configured you will lose access to Pandora FMS " #~ "Console. Do you want to continue?" #~ msgstr "" -#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなりま" -#~ "す。設定を行いますか?" +#~ "SSL の設定ができていないと、Pandora FMS コンソールへアクセスできなくなります。" +#~ "設定を行いますか?" #~ msgid "Enable GIS features in Pandora Console" #~ msgstr "コンソールで GIS 機能を利用する" @@ -56212,8 +55752,7 @@ msgstr "" #~ "Pandora FMS Console (even admin). Do you want to continue?" #~ msgstr "" #~ "ルール設定が無い状態でエンタープライズACLシステムが有効になっている場合は、" -#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けます" -#~ "か。" +#~ "(adminでさえも)Pandora FMS コンソールへアクセスできなくなります。続けますか。" #~ msgid "There are no SNMP filters" #~ msgstr "SNMP フィルタがありません。" @@ -56222,8 +55761,8 @@ msgstr "" #~ "In case you fill any Field 1, Field 2 or Field 3 above, those will replace " #~ "the corresponding fields of this associated \"Default action\"." #~ msgstr "" -#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィール" -#~ "ドの設定が \"デフォルトアクション\" になります。" +#~ "フィールド1、フィールド2 またはフィールド 3 を入力した場合、対応するフィールド" +#~ "の設定が \"デフォルトアクション\" になります。" #~ msgid "Query SQL" #~ msgstr "SQL クエリ" @@ -56311,11 +55850,11 @@ msgstr "" #~ msgstr "処理エラー" #~ msgid "" -#~ "In case you use an Export server you can link this module and export data " -#~ "to one these." +#~ "In case you use an Export server you can link this module and export data to " +#~ "one these." #~ msgstr "" -#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポート" -#~ "できます。" +#~ "エクスポートサーバを利用している場合は、このモジュールをリンクしエクスポートで" +#~ "きます。" #~ msgid "The agent's name must be the same as the one defined at the console" #~ msgstr "" @@ -56400,13 +55939,13 @@ msgstr "" #~ msgstr "複数モジュールコピー" #~ msgid "" -#~ "Please check your Pandora Server setup and be sure that database " -#~ "maintenance daemon is running. It's very important to keep up-to-date " -#~ "database to get the best performance and results in Pandora" +#~ "Please check your Pandora Server setup and be sure that database maintenance " +#~ "daemon is running. It's very important to keep up-to-date database to get the " +#~ "best performance and results in Pandora" #~ msgstr "" -#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくだ" -#~ "さい。パフォーマンスを維持するためには、データベースを日々整理することが重要" -#~ "です。" +#~ "Pandoraサーバの設定とデータベースメンテナンスデーモンの動作に注意をしてくださ" +#~ "い。パフォーマンスを維持するためには、データベースを日々整理することが重要で" +#~ "す。" #~ msgid "Get data from agent" #~ msgstr "エージェントから収集したデータ" @@ -56415,8 +55954,8 @@ msgstr "" #~ "Please be patient. This operation can take a long time depending on the " #~ "amount of modules." #~ msgstr "" -#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかるこ" -#~ "とがあります。" +#~ "しばらくお待ちください。この操作は、モジュール数によりしばらく時間がかかること" +#~ "があります。" #~ msgid "Deleting records for all agents" #~ msgstr "全エージェントのレコードの削除中" @@ -56435,8 +55974,7 @@ msgstr "" #~ msgid "Click here to get the data from the agent specified in the select box" #~ msgstr "" -#~ "選択したエージェントからデータを取得するためには、ここをクリックしてくださ" -#~ "い。" +#~ "選択したエージェントからデータを取得するためには、ここをクリックしてください。" #, php-format #~ msgid "Information on agent %s in the database" @@ -56587,8 +56125,8 @@ msgstr "" #~ "At least one map connection must be defined, it will be possible to change " #~ "between the connections in the map" #~ msgstr "" -#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は" -#~ "可能です。" +#~ "少なくとも、1つの利用マップが定義されていなければいけません。マップの変更は可" +#~ "能です。" #~ msgid "Group that owns the map" #~ msgstr "マップを利用するグループ" @@ -56600,8 +56138,8 @@ msgstr "" #~ "Each layer can show agents from one group or the agents added to that layer " #~ "or both." #~ msgstr "" -#~ "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加さ" -#~ "れたエージェントを表示できます。" +#~ "それぞれのレイヤは、グループに所属するエージェントまたはレイヤに個別に追加され" +#~ "たエージェントを表示できます。" #~ msgid "It is possible to edit, delete and reorder the layers." #~ msgstr "編集、削除、レイヤの順番の変更ができます。" @@ -56616,20 +56154,20 @@ msgstr "" #~ msgstr "ファイルを読み込めません" #~ msgid "" -#~ "This extension can run as PHP script in a shell for extract more " -#~ "information, but it must be run as root or across sudo. For example: " -#~ "sudo php /var/www/pandora_console/extensions/system_info.php -d -s -c" +#~ "This extension can run as PHP script in a shell for extract more information, " +#~ "but it must be run as root or across sudo. For example: sudo php /var/www/" +#~ "pandora_console/extensions/system_info.php -d -s -c" #~ msgstr "" #~ "この拡張は、シェル上で情報を表示するための PHP スクリプトとしても実行できま" -#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/" -#~ "pandora_console/extensions/system_info.php -d -s -c" +#~ "す。ただし、root 権限が必要です。
例: sudo php /var/www/pandora_console/" +#~ "extensions/system_info.php -d -s -c" #~ msgid "" -#~ "This tool is used just to view your Pandora FMS system logfiles directly " -#~ "from console" +#~ "This tool is used just to view your Pandora FMS system logfiles directly from " +#~ "console" #~ msgstr "" -#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照す" -#~ "るのに利用します。" +#~ "このツールは、コンソールから Pandora FMS のシステムログファイルを直接参照する" +#~ "のに利用します。" #~ msgid "Pandora Diagnostic info" #~ msgstr "Pandora 診断情報" @@ -56647,11 +56185,11 @@ msgstr "" #~ msgstr "ファイル生成" #~ msgid "" -#~ "This extension makes exportation of resource template more easy. Here you " -#~ "can export as a resource template in Pandora FMS 3.x format (.ptr). " +#~ "This extension makes exportation of resource template more easy. Here you can " +#~ "export as a resource template in Pandora FMS 3.x format (.ptr). " #~ msgstr "" -#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS " -#~ "3.x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " +#~ "この拡張で、リソーステンプレートのエクスポートを簡単にできます。Pandora FMS 3." +#~ "x フォーマット(.ptr)で、リソーステンプレートをエクスポートできます。 " #~ msgid "VNC view" #~ msgstr "VNCビュー" @@ -56659,16 +56197,16 @@ msgstr "" #, 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" +#~ "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 "" -#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録するこ" -#~ "とができます。アップロードは、Pandora FMS 3.x の圧縮フォーマット(.pspz)で" -#~ "行ってください。Pandora FMS サーバプラグインの入手方法についてはドキュメント" -#~ "を参照してください。

プラグインは、
パブリックリソースラ" -#~ "イブラリから入手できます。" +#~ "この拡張インタフェースを使うことによって、サーバプラグインを簡単に登録すること" +#~ "ができます。アップロードは、Pandora FMS 3.x の圧縮フォーマット(.pspz)で行って" +#~ "ください。Pandora FMS サーバプラグインの入手方法についてはドキュメントを参照し" +#~ "てください。

プラグインは、パブリックリソースライブラリから入手できます。" #~ msgid "Traceroute to " #~ msgstr "以下へのtraceroute " @@ -56688,16 +56226,15 @@ msgstr "" #, php-format #~ msgid "" #~ "This extension makes registration of resource template more easy. Here you " -#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please " -#~ "refer to documentation on how to obtain and use Pandora FMS resources. " -#~ "

You can get more resurces in our
Public Resource " -#~ "Library" +#~ "can upload a resource template in Pandora FMS 3.x format (.ptr). Please refer " +#~ "to documentation on how to obtain and use Pandora FMS resources.

You " +#~ "can get more resurces in our Public Resource Library" #~ msgstr "" -#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、" -#~ "Pandora FMS 3.x フォーマット (.ptr) でリソーステンプレートをアップロードでき" -#~ "ます。Pandora FMS リソースの取得および利用方法については、ドキュメントを参照" -#~ "してください。

リソースは、我々のPublic Resource " -#~ "Libraryから取得できます。" +#~ "この拡張を使うと、リソーステンプレートの登録が簡単にできます。ここに、Pandora " +#~ "FMS 3.x フォーマット (.ptr) でリソーステンプレートをアップロードできます。" +#~ "Pandora FMS リソースの取得および利用方法については、ドキュメントを参照してくだ" +#~ "さい。

リソースは、我々のPublic Resource Libraryから取" +#~ "得できます。" #~ msgid "No agent selected or the agent does not exist" #~ msgstr "エージェントが選択されてないか、存在しません。" @@ -56709,13 +56246,13 @@ msgstr "" #~ msgstr "サーバの接続に失敗しました。" #~ msgid "" -#~ "Update Manager is one of the most advanced features of Pandora FMS " -#~ "Enterprise version, for more information visit http://pandorafms.com." +#~ "Update Manager is one of the most advanced features of Pandora FMS Enterprise " +#~ "version, for more information visit http://" +#~ "pandorafms.com." #~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細" -#~ "は、http://pandorafms.com を参照してく" -#~ "ださい。" +#~ "アップデートマネージャは、Pandora FMS Enterprise版の拡張機能です。より詳細は、" +#~ "http://pandorafms.com を参照してくださ" +#~ "い。" #~ msgid "Week" #~ msgstr "週" @@ -56763,16 +56300,15 @@ msgstr "" #~ msgstr "\"Admin\" ユーザのデフォルトパスワードが変更されていません。" #~ msgid "" -#~ "Please change the default password because is a common vulnerability " -#~ "reported." +#~ "Please change the default password because is a common vulnerability reported." #~ msgstr "脆弱性となるため、デフォルトのパスワードは変更してください。" #~ msgid "" -#~ "Please check that the web server has write rights on the {HOMEDIR}/" -#~ "attachment directory" +#~ "Please check that the web server has write rights on the {HOMEDIR}/attachment " +#~ "directory" #~ msgstr "" -#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認" -#~ "してください。" +#~ "{HOMEDIR}/attachment ディレクトリに、ウェブサーバの書き込み権限があるか確認し" +#~ "てください。" #~ msgid "Remote configuration directory is not writtable for the console" #~ msgstr "コンソールから、リモート設定ディレクトリに書き込めません。" @@ -56781,11 +56317,11 @@ msgstr "" #~ msgstr "attachmentディレクトリにあるファイルが多すぎます。" #~ msgid "" -#~ "There are too much files in attachment directory. This is not fatal, but " -#~ "you should consider cleaning up your attachment directory manually" +#~ "There are too much files in attachment directory. This is not fatal, but you " +#~ "should consider cleaning up your attachment directory manually" #~ msgstr "" -#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレ" -#~ "クトリの手動での整理をお勧めします。" +#~ "添付ディレクトリに大量のファイルがあります。障害ではありませんが、添付ディレク" +#~ "トリの手動での整理をお勧めします。" #~ msgid "files" #~ msgstr "ファイル" @@ -56795,14 +56331,14 @@ msgstr "" #~ msgid "" #~ "Your database is not well maintained. Seems that it have more than 48hr " -#~ "without a proper maintance. Please review Pandora FMS documentation about " -#~ "how to execute this maintance process (pandora_db.pl) and enable it as soon " -#~ "as possible" +#~ "without a proper maintance. Please review Pandora FMS documentation about how " +#~ "to execute this maintance process (pandora_db.pl) and enable it as soon as " +#~ "possible" #~ msgstr "" -#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンス" -#~ "がされていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実" -#~ "行に関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効" -#~ "にしてください。" +#~ "データベースがあまりメンテナンスされていません。48時間以上適切なメンテナンスが" +#~ "されていないように見受けられます。メンテナンスプロセス(pandora_db.pl)の実行に" +#~ "関しては Pandora FMS ドキュメントを参照し、メンテナンス処理を早急に有効にして" +#~ "ください。" #~ msgid "Default font doesnt exist" #~ msgstr "デフォルトのフォントがありません" @@ -56811,17 +56347,17 @@ msgstr "" #~ "Your defined font doesnt exist or is not defined. Please check font " #~ "parameters in your config" #~ msgstr "" -#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメー" -#~ "タの設定を確認してください。" +#~ "定義したフォントが存在しないかフォントが定義されていません。フォントパラメータ" +#~ "の設定を確認してください。" #~ msgid "" -#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a " -#~ "developer mode and should be disabled in a production system. This value is " -#~ "written in the main index.php file" +#~ "Your Pandora FMS has the \"develop_bypass\" mode enabled. This is a developer " +#~ "mode and should be disabled in a production system. This value is written in " +#~ "the main index.php file" #~ msgstr "" -#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、" -#~ "これは開発用のモードであるため本番システムでは無効にしてください。この設定" -#~ "は、メインの index.php ファイルに書かれています。" +#~ "この Pandora FMS は、\"develop_bypass\" モードが有効になっています。これは、こ" +#~ "れは開発用のモードであるため本番システムでは無効にしてください。この設定は、メ" +#~ "インの index.php ファイルに書かれています。" #~ msgid "Alerts not fired" #~ msgstr "未通知アラート" @@ -56909,8 +56445,8 @@ msgstr "" #~ "Error in creation network module. Id_module_type is not correct for network " #~ "modules." #~ msgstr "" -#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が" -#~ "不正です。" +#~ "ネットワークモジュール作成エラー。ネットワークモジュールの id_module_type が不" +#~ "正です。" #~ msgid "Error in creation network module. Agent name doesn't exists." #~ msgstr "ネットワークモジュール作成エラー。エージェント名が存在しません。" @@ -56938,8 +56474,8 @@ msgstr "" #~ "Error in creation SNMP module. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または " -#~ "'SHA' を設定してください。 " +#~ "SNMPモジュール作成エラー。snmp3_auth_method がありません。'MD5' または 'SHA' " +#~ "を設定してください。 " #~ msgid "Error in creation SNMP module." #~ msgstr "SNMPモジュール作成エラー。" @@ -56947,10 +56483,8 @@ msgstr "" #~ msgid "Error updating SNMP module. Id_module doesn't exists." #~ msgstr "SNMPモジュール更新エラー。id_module が存在しません。" -#~ msgid "" -#~ "Error in creation SNMP module. Invalid id_module_type for a SNMP module." -#~ msgstr "" -#~ "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" +#~ msgid "Error in creation SNMP module. Invalid id_module_type for a SNMP module." +#~ msgstr "SNMPモジュール作成エラー。SNMPモジュールの id_module_type が不正です。" #~ msgid "Error in creation SNMP module. Agent name doesn't exists." #~ msgstr "SNMPモジュール作成エラー。エージェント名が存在しません。" @@ -56959,8 +56493,8 @@ msgstr "" #~ "Error in creation SNMP module. snmp3_priv_method doesn't exists. Set it to " #~ "'AES' or 'DES'. " #~ msgstr "" -#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または " -#~ "'DES' を設定してください。 " +#~ "SNMPモジュール作成エラー。snmp3_priv_method がありません。'AES' または 'DES' " +#~ "を設定してください。 " #~ msgid "" #~ "Error in creation SNMP module. snmp3_sec_level doesn't exists. Set it to " @@ -56970,11 +56504,10 @@ msgstr "" #~ "'authNoPriv'、'authPriv'、noAuthNoPriv' のいずれかを設定してください。 " #~ msgid "" -#~ "Error creating network component. Network component name cannot be left " -#~ "blank." +#~ "Error creating network component. Network component name cannot be left blank." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定され" -#~ "ていません。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネント名が指定されて" +#~ "いません。" #~ msgid "Error updating SNMP module. Id_module exists in the new agent." #~ msgstr "SNMPモジュール更新エラー。id_moduleが新規エージェントにあります。" @@ -56986,8 +56519,8 @@ msgstr "" #~ "Error creating network component. Network component group cannot be left " #~ "blank." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指" -#~ "定されていません。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントグループが指定" +#~ "されていません。" #~ msgid "Error updating plugin module. Id_module cannot be left blank." #~ msgstr "プラグインモジュール更新エラー。id_module が指定されていません。" @@ -57007,8 +56540,8 @@ msgstr "" #~ msgid "" #~ "Error creating plugin component. Plugin component name cannot be left blank." #~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されてい" -#~ "ません。" +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネント名が指定されていま" +#~ "せん。" #~ msgid "Error updating SNMP module. Id_module cannot be left blank." #~ msgstr "SNMPモジュール更新エラー。id_module が指定されていません。" @@ -57017,17 +56550,16 @@ msgstr "" #~ msgstr "接続しました... 直近24時間のメッセージを取得します..." #~ msgid "" -#~ "Error creating network component. Incorrect value for Network component " -#~ "type field." +#~ "Error creating network component. Incorrect value for Network component type " +#~ "field." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正" -#~ "です。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントタイプが不正で" +#~ "す。" -#~ msgid "" -#~ "Error creating network component. This network component already exists." +#~ msgid "Error creating network component. This network component already exists." #~ msgstr "" -#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在" -#~ "します。" +#~ "ネットワークコンポーネント作成エラー。ネットワークコンポーネントがすでに存在し" +#~ "ます。" #~ msgid "Error creating plugin component. Incorrect value for Id plugin." #~ msgstr "プラグインコンポーネント作成エラー。プラグイン ID が不正です。" @@ -57038,19 +56570,16 @@ msgstr "" #~ "す。" #~ msgid "" -#~ "Error creating plugin component. Plugin component group cannot be left " -#~ "blank." +#~ "Error creating plugin component. Plugin component group cannot be left blank." #~ msgstr "" -#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定さ" -#~ "れていません。" +#~ "プラグインコンポーネント作成エラー。プラグインコンポーネントグループが指定され" +#~ "ていません。" #~ msgid "" -#~ "Error creating SNMP component. Incorrect value for Snmp component type " -#~ "field." +#~ "Error creating SNMP component. Incorrect value for Snmp component type field." #~ msgstr "SNMPコンポーネント作成エラー。SNMPコンポーネントタイプが不正です。" -#~ msgid "" -#~ "Error creating SNMP component. SNMP component name cannot be left blank." +#~ msgid "Error creating SNMP component. SNMP component name cannot be left blank." #~ msgstr "" #~ "SNMPコンポーネント作成エラー。SNMPコンポーネント名が指定されていません。" @@ -57058,8 +56587,8 @@ msgstr "" #~ "Error creating SNMP component. snmp3_auth_method doesn't exists. Set it to " #~ "'MD5' or 'SHA'. " #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' また" -#~ "は 'SHA' を設定してください。 " +#~ "SNMPコンポーネント作成エラー。snmp3_auth_method が存在しません。'MD5' または " +#~ "'SHA' を設定してください。 " #~ msgid "" #~ "Error creating SNMP component. snmp3_sec_level doesn't exists. Set it to " @@ -57071,8 +56600,7 @@ msgstr "" #~ msgid "" #~ "Error creating SNMP component. Snmp component group cannot be left blank." #~ msgstr "" -#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていませ" -#~ "ん。" +#~ "SNMPコンポーネント作成エラー。SNMPコンポーネントグループが指定されていません。" #~ msgid "" #~ "Error creating SNMP component. snmp3_priv_method doesn't exists. Set it to " @@ -57084,8 +56612,8 @@ msgstr "" #~ msgid "" #~ "Error creating local component. Local component group cannot be left blank." #~ msgstr "" -#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されて" -#~ "いません。" +#~ "ローカルコンポーネント作成エラー。ローカルコンポーネントグループが指定されてい" +#~ "ません。" #~ msgid "Error updating alert template. Id_template cannot be left blank." #~ msgstr "アラートテンプレート更新エラー。id_templateが指定されていません。" @@ -57093,8 +56621,7 @@ msgstr "" #~ msgid "Error creating alert template." #~ msgstr "アラートテンプレート作成エラー。" -#~ msgid "" -#~ "Error getting module value from all agents. Module name doesn't exists." +#~ msgid "Error getting module value from all agents. Module name doesn't exists." #~ msgstr "" #~ "全エージェントからのモジュール値取得エラー。モジュール名が存在しません。" @@ -57102,11 +56629,9 @@ msgstr "" #~ msgstr "アラートテンプレート作成エラー。テンプレート名が指定されていません。" #~ msgid "" -#~ "Error getting module value from all agents. Module name cannot be left " -#~ "blank." +#~ "Error getting module value from all agents. Module name cannot be left blank." #~ msgstr "" -#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていませ" -#~ "ん。" +#~ "全エージェントからのモジュール値取得エラー。モジュール名が指定されていません。" #~ msgid "Error creating local component." #~ msgstr "ローカルコンポーネント作成エラー。" @@ -57158,8 +56683,7 @@ msgstr "" #~ msgstr "プラグイン取得エラー。" #~ msgid "Error assigning module to template. Id_template cannot be left blank." -#~ msgstr "" -#~ "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" +#~ msgstr "テンプレートへのモジュール割当エラー。id_templateが指定されていません。" #~ msgid "Error assigning module to template. Id_module cannot be left blank." #~ msgstr "テンプレートへのモジュール割当エラー。id_moduleが指定されていません。" @@ -57170,8 +56694,7 @@ msgstr "" #~ msgid "Error assigning module to template." #~ msgstr "テンプレートへのモジュール割当エラー。" -#~ msgid "" -#~ "Error deleting module template. Id_module_template cannot be left blank." +#~ msgid "Error deleting module template. Id_module_template cannot be left blank." #~ msgstr "" #~ "モジュールテンプレート削除エラー。id_module_templateが指定されていません。" @@ -57193,11 +56716,10 @@ msgstr "" #~ msgid "Error validating all alert policies." #~ msgstr "全アラートポリシーの承諾エラー。" -#~ msgid "" -#~ "Error adding data module to policy. The module is already in the policy." +#~ msgid "Error adding data module to policy. The module is already in the policy." #~ msgstr "" -#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内に" -#~ "あります。" +#~ "ポリシーへのデータモジュール追加エラー。指定のモジュールがすでにポリシー内にあ" +#~ "ります。" #~ msgid "Error adding data module to policy." #~ msgstr "ポリシーへのデータモジュール追加エラー。" @@ -57207,8 +56729,8 @@ msgstr "" #~ msgid "Error adding agent to policy. The agent is already in the policy." #~ msgstr "" -#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあ" -#~ "ります。" +#~ "ポリシーへのエージェント追加エラー。指定のエージェントはすでにポリシー内にあり" +#~ "ます。" #~ msgid "Error adding agent to policy. Id_agent cannot be left blank." #~ msgstr "ポリシーへのエージェント追加エラー。id_agentが指定されていません。" @@ -57217,8 +56739,7 @@ msgstr "" #~ msgstr "ポリシーへのエージェント追加エラー。id_agentが存在しません。" #~ msgid "Error adding data module to policy. Id_policy cannot be left blank." -#~ msgstr "" -#~ "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" +#~ msgstr "ポリシーへのデータモジュール追加エラー。id_policyが指定されていません。" #~ msgid "Error adding data module to policy. Module_name cannot be left blank." #~ msgstr "" @@ -57230,19 +56751,17 @@ msgstr "" #~ msgid "" #~ "Error updating network module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークの" -#~ "タイプではありません。" +#~ "ポリシーのネットワークモジュール更新エラー。モジュールタイプがネットワークのタ" +#~ "イプではありません。" -#~ msgid "" -#~ "Error adding network module to policy. Module_name cannot be left blank." +#~ msgid "Error adding network module to policy. Module_name cannot be left blank." #~ msgstr "" #~ "ポリシーへのネットワークモジュール追加エラー。module_nameが指定されていませ" #~ "ん。" #~ msgid "Error adding network module to policy. Id_policy cannot be left blank." #~ msgstr "" -#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていませ" -#~ "ん。" +#~ "ポリシーへのネットワークモジュール追加エラー。id_policyが指定されていません。" #~ msgid "Error updating data module in policy. Module doesn't exists." #~ msgstr "ポリシーのデータモジュール更新エラー。モジュールが存在しません。" @@ -57268,14 +56787,12 @@ msgstr "" #~ "ポリシーへのネットワークモジュール追加エラー。指定したモジュールはすでにポリ" #~ "シー内にあります。" -#~ msgid "" -#~ "Error updating network module in policy. Id_policy cannot be left blank." +#~ msgid "Error updating network module in policy. Id_policy cannot be left blank." #~ msgstr "" #~ "ポリシーのネットワークモジュール更新エラー。id_policyが指定されていません。" #~ msgid "" -#~ "Error updating plugin module in policy. Id_policy_module cannot be left " -#~ "blank." +#~ "Error updating plugin module in policy. Id_policy_module cannot be left blank." #~ msgstr "" #~ "ポリシーのプラグインモジュール更新エラー。id_policy_moduleが指定されていませ" #~ "ん。" @@ -57283,11 +56800,10 @@ msgstr "" #~ msgid "" #~ "Error adding plugin module to policy. The module is already in the policy." #~ msgstr "" -#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー" -#~ "内にあります。" +#~ "ポリシーへのプラグインモジュール追加エラー。指定のモジュールはすでにポリシー内" +#~ "にあります。" -#~ msgid "" -#~ "Error updating plugin module in policy. Id_policy cannot be left blank." +#~ msgid "Error updating plugin module in policy. Id_policy cannot be left blank." #~ msgstr "" #~ "ポリシーのプラグインモジュール更新エラー。id_policyが指定されていません。" @@ -57303,27 +56819,23 @@ msgstr "" #~ msgstr "ポリシーへのプラグインモジュール追加エラー。" #~ msgid "Error updating network module in policy. Module doesn't exists." -#~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" +#~ msgstr "ポリシーのネットワークモジュール更新エラー。モジュールが存在しません。" -#~ msgid "" -#~ "Error adding plugin module to policy. Module_name cannot be left blank." +#~ msgid "Error adding plugin module to policy. Module_name cannot be left blank." #~ msgstr "" -#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていませ" -#~ "ん。" +#~ "ポリシーへのプラグインモジュール追加エラー。module_nameが指定されていません。" #~ msgid "" #~ "Error updating network module in policy. Id_policy_module cannot be left " #~ "blank." #~ msgstr "" -#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていま" -#~ "せん。" +#~ "ポリシーのネットワークモジュール更新エラー。id_policy_moduleが指定されていませ" +#~ "ん。" -#~ msgid "" -#~ "Error updating plugin module in policy. Module type is not network type." +#~ msgid "Error updating plugin module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタ" -#~ "イプではありません。" +#~ "ポリシーのプラグインモジュール更新エラー。モジュールタイプがネットワークのタイ" +#~ "プではありません。" #~ msgid "Error updating plugin module in policy. Module doesn't exists." #~ msgstr "ポリシーのプラグインモジュール更新エラー。モジュールが存在しません。" @@ -57335,21 +56847,21 @@ msgstr "" #~ "Are you sure to sort the items into the report?\\nThis action change the " #~ "sorting of items into data base." #~ msgstr "" -#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの" -#~ "並びを変更します。" +#~ "レポートのアイテムを並び替えますか。\\nこの操作はデータベース内のアイテムの並" +#~ "びを変更します。" #~ msgid "" #~ "The new Update Manager " #~ "client is shipped with Pandora FMS It helps system administrators to update " #~ "their Pandora FMS automatically, since the Update Manager does the task of " -#~ "getting new modules, new plugins and new features (even full migrations " -#~ "tools for future versions) automatically." +#~ "getting new modules, new plugins and new features (even full migrations tools " +#~ "for future versions) automatically." #~ msgstr "" -#~ "新しいアップデートマネー" -#~ "ジャクライアントは、Pandora FMSと一緒にリリースされています。アップデー" -#~ "トマネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するも" -#~ "の(フルマイグレーションツールは将来対応予定)であり、これによりシステム管理者" -#~ "がPandora FMSを自動的に更新するのに役に立つでしょう。" +#~ "新しいアップデートマネージャ" +#~ "クライアントは、Pandora FMSと一緒にリリースされています。アップデートマ" +#~ "ネージャは、新規モジュール、新規プラグイン、新規機能を自動的に取得するもの(フ" +#~ "ルマイグレーションツールは将来対応予定)であり、これによりシステム管理者が" +#~ "Pandora FMSを自動的に更新するのに役に立つでしょう。" #~ msgid "Correct updating of alert template" #~ msgstr "アラートテンプレートの更新内容を修正してください" @@ -57364,8 +56876,7 @@ msgstr "" #~ msgstr "全ポリシーアラートの承諾内容を修正してください。" #~ msgid "Error adding SNMP module to policy. Id_policy cannot be left blank." -#~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" +#~ msgstr "SNMPモジュールのポリシーへの追加エラー。id_policyが指定されていません。" #~ msgid "Error adding SNMP module to policy. Module_name cannot be left blank." #~ msgstr "" @@ -57378,14 +56889,13 @@ msgstr "" #~ "Error adding SNMP module to policy. Id_module_type is not correct for SNMP " #~ "modules." #~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用" -#~ "になっていません。" +#~ "SNMPモジュールのポリシーへの追加エラー。id_module_type が SNMP モジュール用に" +#~ "なっていません。" -#~ msgid "" -#~ "Error adding SNMP module to policy. The module is already in the policy." +#~ msgid "Error adding SNMP module to policy. The module is already in the policy." #~ msgstr "" -#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在し" -#~ "ます。" +#~ "SNMPモジュールのポリシーへの追加エラー。モジュールはすでにポリシー内に存在しま" +#~ "す。" #~ msgid "Error updating SNMP module in policy. Id_policy cannot be left blank." #~ msgstr "ポリシー内のSNMPモジュール更新エラー。id_policyが指定されていません。" @@ -57400,15 +56910,14 @@ msgstr "" #~ msgid "Error updating SNMP module in policy. Module type is not SNMP type." #~ msgstr "" -#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありませ" -#~ "ん。" +#~ "ポリシー内のSNMPモジュール更新エラー。モジュールタイプが SNMP ではありません。" #~ msgid "" -#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to " -#~ "'AES' or 'DES'. " +#~ "Error updating SNMP module. snmp3_priv_method doesn't exists. Set it to 'AES' " +#~ "or 'DES'. " #~ msgstr "" -#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' " -#~ "を指定してください。 " +#~ "SNMPモジュール更新エラー。snmp3_priv_methodがありません。'AES' または 'DES' を" +#~ "指定してください。 " #~ msgid "" #~ "Error updating SNMP module. snmp3_sec_level doesn't exists. Set it to " @@ -57418,11 +56927,11 @@ msgstr "" #~ "ん。'authNoPriv'、'authPriv'、'noAuthNoPriv' のいずれかを指定してください。 " #~ msgid "" -#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to " -#~ "'MD5' or 'SHA'. " +#~ "Error updating SNMP module. snmp3_auth_method doesn't exists. Set it to 'MD5' " +#~ "or 'SHA'. " #~ msgstr "" -#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または " -#~ "'SHA' を指定してください。 " +#~ "SNMPモジュール更新エラー。snmp3_auth_method がありません。'MD5' または 'SHA' " +#~ "を指定してください。 " #~ msgid "Error applying policy. Id_policy cannot be left blank." #~ msgstr "ポリシー適用エラー。id_policy が指定されていません。" @@ -57487,13 +56996,13 @@ msgstr "" #~ "Error creating module from network component. Network component doesn't " #~ "exists." #~ msgstr "" -#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネ" -#~ "ントが存在しません。" +#~ "ネットワークコンポーネントからのモジュール作成エラー。ネットワークコンポーネン" +#~ "トが存在しません。" #~ msgid "Error creating module from network component. Agent doesn't exists." #~ msgstr "" -#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しま" -#~ "せん。" +#~ "ネットワークコンポーネントからのモジュール作成エラー。エージェントが存在しませ" +#~ "ん。" #~ msgid "Error creating module from network component. Error creating module." #~ msgstr "" @@ -57503,29 +57012,29 @@ msgstr "" #~ "When the agent name have a lot of characters, in some places in Pandora " #~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで" -#~ "切る必要があります。" +#~ "エージェント名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切" +#~ "る必要があります。" #~ msgid "" #~ "When the module name have a lot of characters, in some places in Pandora " #~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切" -#~ "る必要があります。" +#~ "モジュール名が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る" +#~ "必要があります。" #~ msgid "" -#~ "When the description name have a lot of characters, in some places in " -#~ "Pandora Console it is necesary truncate to N characters." +#~ "When the description name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要が" -#~ "あります。" +#~ "説明が長い場合、Pandora コンソールのいくつかの表示は N 文字までで切る必要があ" +#~ "ります。" #~ msgid "" -#~ "When the item title name have a lot of characters, in some places in " -#~ "Pandora Console it is necesary truncate to N characters." +#~ "When the item title name have a lot of characters, in some places in Pandora " +#~ "Console it is necesary truncate to N characters." #~ msgstr "" -#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字" -#~ "までで切る必要があります。" +#~ "アイテムのタイトル名が長い場合、Pandora コンソールのいくつかの表示は N 文字ま" +#~ "でで切る必要があります。" #~ msgid "Blank characters are used as AND conditions" #~ msgstr "スペースは、AND 条件です。" @@ -57551,8 +57060,8 @@ msgstr "" #~ "There was a problem updating the incident, please check if any field was " #~ "modified and the values are correct." #~ msgstr "" -#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認" -#~ "してください。" +#~ "インシデント更新にて問題が発生しました。修正したフィールドの値が正しいか確認し" +#~ "てください。" #~ msgid "Incident created" #~ msgstr "インシデントを作成しました" @@ -57576,21 +57085,20 @@ msgstr "" #~ "When it is set as \"yes\" in some important sections check if the user have " #~ "gone from url Pandora." #~ msgstr "" -#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移" -#~ "してきたかどうかをチェックします。" +#~ "\"はい\" に設定すると、いくつかの重要なセクションで Pandora の URL から遷移し" +#~ "てきたかどうかをチェックします。" #~ msgid "Agent icon for GIS Maps. If set to \"none\", group icon will be used" #~ msgstr "" -#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコ" -#~ "ンが利用されます。" +#~ "GISマップでのエージェントアイコンです。\"なし\" に設定するとグループのアイコン" +#~ "が利用されます。" #~ msgid "" -#~ "This enabling this, you get a label with agent name in GIS maps. If you " -#~ "have lots of agents in the map, will be unreadable. Disabled by default." +#~ "This enabling this, you get a label with agent name in GIS maps. If you have " +#~ "lots of agents in the map, will be unreadable. Disabled by default." #~ msgstr "" -#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ" -#~ "内に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効で" -#~ "す。" +#~ "これを有効にすると、GISマップ内でエージェント名をラベルに付与します。マップ内" +#~ "に大量のエージェントがある場合は読みにくくなります。デフォルトでは無効です。" #~ msgid "All Modules deleted succesfully" #~ msgstr "すべてのモジュールを削除しました" @@ -57623,8 +57131,7 @@ msgstr "" #, php-format #~ msgid "There was a problem deleting %s modules, none deleted." #~ msgstr "" -#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていませ" -#~ "ん。" +#~ "%s 個のモジュール削除に失敗しました。いずれのモジュールも削除されていません。" #~ msgid "No Validated" #~ msgstr "未承諾" @@ -57637,8 +57144,8 @@ msgstr "" #~ "number is reached then a warning message will appear in the header " #~ "notification space." #~ msgstr "" -#~ "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、" -#~ "コンソールのヘッダ部分に警告メッセージが現れます。" +#~ "添付ディレクトリにおくファイルの上限数です。ファイル数がこの値に達した場合、コ" +#~ "ンソールのヘッダ部分に警告メッセージが現れます。" #~ msgid "Events by criticity" #~ msgstr "重要度で分類したイベント" @@ -57698,18 +57205,18 @@ msgstr "" #~ "estado_agente to show agent detail view" #~ msgstr "" #~ "ユーザはホームページをカスタマイズできます。デフォルトでは、'エージェント詳" -#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/" -#~ "agentes/estado_agente を入力すると、エージェント詳細が表示されます。" +#~ "細' が表示されます。例: 'その他' を選択し、sec=estado&sec2=operation/agentes/" +#~ "estado_agente を入力すると、エージェント詳細が表示されます。" #~ msgid "Error in agent enabling/disabling." #~ msgstr "エージェント有効化/無効化エラー" #~ msgid "" -#~ "By default, in Windows, Pandora FMS only support Standard network sweep, " -#~ "not custom scripts" +#~ "By default, in Windows, Pandora FMS only support Standard network sweep, not " +#~ "custom scripts" #~ msgstr "" -#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみ" -#~ "の対応で、カスタムスクリプトは使えません。" +#~ "デフォルトでは、Windows においては Pandora FMS は標準のネットワーク探索のみの" +#~ "対応で、カスタムスクリプトは使えません。" #~ msgid "Output format" #~ msgstr "出力フォーマット" @@ -57735,8 +57242,7 @@ msgstr "" #~ msgid "" #~ "WARNING: If you edit this planned downtime, the data of future SLA reports " #~ "may be altered" -#~ msgstr "" -#~ "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" +#~ msgstr "警告: この計画停止を編集すると、今後の SLA レポートのデータが変わります" #~ msgid "Only it is show when
the agent is saved." #~ msgstr "エージェントが保存されたときのみ
表示されます。" @@ -57815,18 +57321,18 @@ msgstr "" #~ msgstr "DEBUG: %s:%s に不正なモジュールタイプが指定されています" #~ msgid "" -#~ "Most likely you have recently upgraded from an earlier version of Pandora " -#~ "and either
\n" +#~ "Most likely you have recently upgraded from an earlier version of Pandora and " +#~ "either
\n" #~ "\t\t\t\t1) forgot to use the database converter
\n" #~ "\t\t\t\t2) used a bad version of the database converter (see Bugreport " #~ "#2124706 for the solution)
\n" #~ "\t\t\t\t3) found a new bug - please report a way to duplicate this error" #~ msgstr "" -#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれか" -#~ "が考えられます。
\n" +#~ "Pandora の初期のバージョンからのアップグレードを実施しておlり、次のいずれかが" +#~ "考えられます。
\n" #~ "\t\t\t\t1) データベース変換の実行し忘れ
\n" -#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレ" -#~ "ポート #2124706 を参照)
\n" +#~ "\t\t\t\t2) 正しくないバージョンのデータベース変換の利用 (解決方法はバグレポー" +#~ "ト #2124706 を参照)
\n" #~ "\t\t\t\t3) 新たなバグ - このエラーを再現する方法をレポートしてください" #~ msgid "Module macros" @@ -57845,8 +57351,8 @@ msgstr "" #~ "If cron is set the module interval is ignored and the module runs on the " #~ "specified date and time" #~ msgstr "" -#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定" -#~ "された日時に実行されます。" +#~ "cron が設定されている場合、モジュールの実行間隔は無視され、モジュールは指定さ" +#~ "れた日時に実行されます。" #~ msgid "Activate this to prevent the relation from being updated or deleted" #~ msgstr "更新や削除に対しても関係を維持するには、これを有効にしてください" @@ -57953,30 +57459,30 @@ msgstr "" #~ msgstr "お待ちください..." #~ msgid "" -#~ "Set this value when your PandoraFMS across inverse proxy or for example " -#~ "with mod_proxy of Apache." +#~ "Set this value when your PandoraFMS across inverse proxy or for example with " +#~ "mod_proxy of Apache." #~ msgstr "" -#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利" -#~ "用している場合などに、この値を設定してください。" +#~ "Pandora FMS がリバースプロキシ配下にある場合や Apache の mod_proxy などを利用" +#~ "している場合などに、この値を設定してください。" #~ msgid "" -#~ "If set to yes no events or alerts will be generated, but agents will " -#~ "continue receiving data." +#~ "If set to yes no events or alerts will be generated, but agents will continue " +#~ "receiving data." #~ msgstr "" -#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデー" -#~ "タの受信を継続します。" +#~ "「はい」に設定すると、イベントやアラートは生成されませんがエージェントはデータ" +#~ "の受信を継続します。" #~ msgid "Directory where the server logs are stored." #~ msgstr "サーバのログを保存するディレクトリ。" #~ msgid "" -#~ "Configuration of our clippy, 'full mode' show the icon in the header and " -#~ "the contextual helps and it is noise, 'on demand' it is equal to full but " -#~ "it is not noise and 'expert' the icons in the header and the context is not." +#~ "Configuration of our clippy, 'full mode' show the icon in the header and the " +#~ "contextual helps and it is noise, 'on demand' it is equal to full but it is " +#~ "not noise and 'expert' the icons in the header and the context is not." #~ msgstr "" -#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示され" -#~ "うるさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはあり" -#~ "ません。'上級者' はヘッダーにアイコンとヘルプが表示されません。" +#~ "アシスタントの設定です。'フルモード' はヘッダーにアイコンとヘルプが表示されう" +#~ "るさい感じになます。'オンデマンド' はフルモードと同じですがうるさくはありませ" +#~ "ん。'上級者' はヘッダーにアイコンとヘルプが表示されません。" #~ msgid "Allow create planned downtimes in the past" #~ msgstr "終了した計画停止の作成を許可する" @@ -57985,8 +57491,7 @@ msgstr "" #~ msgstr "終了した計画停止の作成は SLA レポートに影響します" #~ msgid "" -#~ "This interval will affect to the lines between elements on the Visual " -#~ "Console" +#~ "This interval will affect to the lines between elements on the Visual Console" #~ msgstr "これは、ビジュアルコンソール上の要素間の線に影響します。" #~ msgid "" @@ -57995,8 +57500,8 @@ msgstr "" #~ "console." #~ msgstr "" #~ "カスタムロゴのディレクトリは、Pandora コンソールの \"images/custom_logo\" で" -#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードでき" -#~ "ます。" +#~ "す。コンソールのアップロードツールを使って、ファイル(JPEG)をアップロードできま" +#~ "す。" #~ msgid "Paginate module view" #~ msgstr "モジュール表示をページ分割" @@ -58040,12 +57545,11 @@ msgstr "" #~ "If the compaction or purge of the data is more frequent than the events " #~ "deletion, anomalies in module graphs could appear" #~ msgstr "" -#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしく" -#~ "なる可能性があります" +#~ "イベントの削除よりもデータの削除が短い場合、モジュールグラフの表示がおかしくな" +#~ "る可能性があります" #~ msgid "" -#~ "Configure a purge period more frequent than a compact data period has no " -#~ "sense" +#~ "Configure a purge period more frequent than a compact data period has no sense" #~ msgstr "データの圧縮よりも削除を短くすることには意味がありません" #~ msgid "To get your Pandora FMS Enterprise License:" @@ -58060,17 +57564,17 @@ msgstr "" #~ "Your PHP has set memory limit in %s. For avoid problems with big updates " #~ "please set to 500M" #~ msgstr "" -#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるため" -#~ "には、500M に設定してください。" +#~ "PHP のメモリ制限が %s に設定されています。大きな更新における問題を避けるために" +#~ "は、500M に設定してください。" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, remove remote server address " -#~ "from Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, remove remote server address from " +#~ "Update Manager plugin setup." #~ msgstr "" -#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェン" -#~ "トおよびモジュール数) を送信します。これを無効にするには、アップデートマネー" -#~ "ジャプラグインの設定で、リモートサーバアドレスを削除します。" +#~ "アップデートマネージャは、匿名で Pandora FMS の利用状況 (動作中のエージェント" +#~ "およびモジュール数) を送信します。これを無効にするには、アップデートマネージャ" +#~ "プラグインの設定で、リモートサーバアドレスを削除します。" #~ msgid "Checking for the newest package." #~ msgstr "最新パッケージの確認中。" @@ -58082,8 +57586,8 @@ msgstr "" #~ msgstr "ブラウズしてください" #~ msgid "" -#~ "Remember that this package will override the actual Pandora FMS files and " -#~ "it is recommended to do a backup before continue with the update." +#~ "Remember that this package will override the actual Pandora FMS files and it " +#~ "is recommended to do a backup before continue with the update." #~ msgstr "" #~ "このパッケージは既存の Pandora FMS ファイルを上書きすることに注意してくださ" #~ "い。アップデートを実行する前にバックアップを取得してください。" @@ -58094,8 +57598,7 @@ msgstr "" #~ msgid "Package updated successfully." #~ msgstr "パッケージを更新しました。" -#~ msgid "" -#~ "If there are any database change, it will be applied on the next login." +#~ msgid "If there are any database change, it will be applied on the next login." #~ msgstr "データベース変更がある場合は、次回のログイン時に適用されます。" #~ msgid "Package not updated." @@ -58114,15 +57617,15 @@ msgstr "" #~ msgstr "サービスの更新エラー" #~ msgid "" -#~ "In manual mode you should set the weights manually. In auto mode the " -#~ "weights have default values.\n" +#~ "In manual mode you should set the weights manually. In auto mode the weights " +#~ "have default values.\n" #~ "\t\tIn simple mode only the elements configured as \"critical element\" are " #~ "used to calculate the service status." #~ msgstr "" -#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウ" -#~ "エイトはデフォルトの値があります。\n" -#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計" -#~ "算に利用されます。" +#~ "マニュアルモードではウエイトを手動で設定する必要があります。自動モードではウエ" +#~ "イトはデフォルトの値があります。\n" +#~ "\t\tシンプルモードでは、\"障害要素\"として設定したもののみがサービスの状態計算" +#~ "に利用されます。" #~ msgid "This values are by default because the service is auto calculate mode." #~ msgstr "サービスが自動計算モードのため、デフォルト値です。" @@ -58172,16 +57675,15 @@ msgstr "" #~ msgid "Ok weight" #~ msgstr "正常ウエイト" -#~ msgid "" -#~ "Only the critical elements are relevant to calculate the service status" +#~ msgid "Only the critical elements are relevant to calculate the service status" #~ msgstr "障害状態のもののみがサービス状態の計算に使われます" #~ msgid "" #~ "Maybe delete the extended data or the audit data is previous to table " #~ "tsession_extended." #~ msgstr "" -#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにあり" -#~ "ません。" +#~ "拡張データが削除されているか、監査データが tsession_extended テーブルにありま" +#~ "せん。" #~ msgid "Update all" #~ msgstr "全て更新" @@ -58259,8 +57761,8 @@ msgstr "" #~ "Since the alert can have multiple actions. You can edit them from the alert " #~ "list of events." #~ msgstr "" -#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集すること" -#~ "ができます。" +#~ "アラートは複数のアクションを持てます。イベントのアラート一覧から編集することが" +#~ "できます。" #~ msgid "Event rules" #~ msgstr "イベントルール" @@ -58332,8 +57834,7 @@ msgstr "" #~ msgid "Number of days before data is transfered to history database." #~ msgstr "ヒストリデータベースへのデータ転送を行わない日数" -#~ msgid "" -#~ "Data size of mechanism used to transfer data (similar to a data buffer.)" +#~ msgid "Data size of mechanism used to transfer data (similar to a data buffer.)" #~ msgstr "データ転送に利用するデータサイズ (データバッファのようなもの)" #~ msgid "Time interval between data transfer." @@ -58343,22 +57844,22 @@ msgstr "" #~ "Before activating this option check your ACL Setup. You may lose access to " #~ "the console." #~ msgstr "" -#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのア" -#~ "クセスができなくなる可能性があります。" +#~ "このオプションを有効化する前に ACL 設定を確認してください。コンソールへのアク" +#~ "セスができなくなる可能性があります。" #~ msgid "" #~ "The inventory modules included in the changes blacklist will not generate " #~ "events when change." #~ msgstr "" -#~ "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを" -#~ "生成しません。" +#~ "ブラックリストに含まれるインベントリモジュールは、変更が発生してもイベントを生" +#~ "成しません。" #~ msgid "" #~ "Rules applied to the management of passwords. This policy applies to all " #~ "users except the administrator." #~ msgstr "" -#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適" -#~ "用されます。" +#~ "パスワード管理に適用するルールです。このポリシーは、管理者以外の全ユーザに適用" +#~ "されます。" #~ msgid "Remote Pandora FMS" #~ msgstr "リモートの Pandora FMS" @@ -58381,21 +57882,20 @@ msgstr "" #~ "This license allows %d agents and you have %d agents configured." #~ msgstr "" #~ "ライセンスの上限を超えています " -#~ "

このライセンスは %d エージェントまでですが、%d エージェントが設定さ" -#~ "れています。" +#~ "

このライセンスは %d エージェントまでですが、%d エージェントが設定され" +#~ "ています。" #~ msgid "" #~ "To continue using Pandora FMS, please disable enterprise by renaming the " -#~ "Enterprise directory in the console.

Or contact Artica at " -#~ "info@artica.es for a valid license:" +#~ "Enterprise directory in the console.

Or contact Artica at info@artica." +#~ "es for a valid license:" #~ msgstr "" -#~ "Pandora FMS の利用を継続するには、コンソールの enterprise ディレクトリをリ" -#~ "ネームして Enterprise 版を無効化するか、

Artica (info@artica.es) まで" -#~ "ライセンスに関してお問い合わせください:" +#~ "Pandora FMS の利用を継続するには、コンソールの enterprise ディレクトリをリネー" +#~ "ムして Enterprise 版を無効化するか、

Artica (info@artica.es) までライセ" +#~ "ンスに関してお問い合わせください:" #~ msgid "Please contact Artica at info@artica.es to renew the license." -#~ msgstr "" -#~ "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" +#~ msgstr "ライセンスの更新は、Artica (info@artica.es) までお問い合わせください。" #~ msgid "Top N Events by agent." #~ msgstr "エージェントごとのトップ N イベント" @@ -58630,8 +58130,8 @@ msgstr "" #, php-format #~ msgid "" -#~ "Error creating/updating the followings elements groups/profiles/user " -#~ "profiles (%d/%d/%d)" +#~ "Error creating/updating the followings elements groups/profiles/user profiles " +#~ "(%d/%d/%d)" #~ msgstr "グループ/プロファイル/ユーザの要素の作成・更新エラー (%d/%d/%d)" #, php-format @@ -58676,8 +58176,7 @@ msgstr "" #~ msgid "Visual" #~ msgstr "表示" -#~ msgid "" -#~ "Complete path to Pandora console without last \"/\" character. Example " +#~ msgid "Complete path to Pandora console without last \"/\" character. Example " #~ msgstr "最後の \"/\" を除いた Pandora コンソールの完全パス。例 " #~ msgid "There aren't server added to metaconsole" @@ -58748,8 +58247,8 @@ msgstr "" #~ "Not set metaconsole IP in the \"IP list with API access\" guess Pandora " #~ "Console." #~ msgstr "" -#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコン" -#~ "ソールの IP が設定されていない可能性があります。" +#~ "Pandora コンソールで \"APIアクセスを許可するIPアドレスリスト\" にメタコンソー" +#~ "ルの IP が設定されていない可能性があります。" #~ msgid "Successfully moved" #~ msgstr "移動しました" @@ -58762,9 +58261,9 @@ msgstr "" #~ "any group with that name, will be created if check box is selected. " #~ "Destination group filter is just used to check agents in that group" #~ msgstr "" -#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場" -#~ "合、チェックボックスがチェックされていると作成されます。移行先のグループフィ" -#~ "ルタは、エージェントがグループにあるかどうかのみのチェックに利用されます。" +#~ "移行先のグループは移行元サーバと同じになります。同じ名前のグループが無い場合、" +#~ "チェックボックスがチェックされていると作成されます。移行先のグループフィルタ" +#~ "は、エージェントがグループにあるかどうかのみのチェックに利用されます。" #~ msgid "Based on name" #~ msgstr "名前ベース" @@ -58778,8 +58277,8 @@ msgstr "" #~ msgstr "Pandora FMS の利用には、以下を使うことを強くお勧めします" #~ msgid "" -#~ "Mozilla Firefox or " -#~ "Google Chrome browsers." +#~ "Mozilla Firefox or Google Chrome browsers." #~ msgstr "" #~ "Mozilla Firefox または Google Chrome ブラウザ。" @@ -58924,8 +58423,8 @@ msgstr "" #~ "Maybe the first run is not exactly equal to this value because the cron " #~ "configuration is diferent." #~ msgstr "" -#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可" -#~ "能性があります。" +#~ "cron の設置と異なることにより、初回の実行は正確にこのタイミングにならない可能" +#~ "性があります。" #~ msgid "First execution" #~ msgstr "初回実行" @@ -58995,8 +58494,7 @@ msgstr "" #~ msgstr "モジュールがありません。" #~ msgid "Restoring a Pandora database backup must be done manually" -#~ msgstr "" -#~ "Pandora データベースバックアップのリストは、手動実行する必要があります" +#~ msgstr "Pandora データベースバックアップのリストは、手動実行する必要があります" #~ msgid "Run import command using the following command" #~ msgstr "次のコマンドを使って、インポートコマンドを実行します" @@ -59030,15 +58528,15 @@ msgstr "" #~ "\"Translate string\" extension is missed in the server. This extension is " #~ "mandatory to be configured on metaconsole." #~ msgstr "" -#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が" -#~ "必須です。" +#~ "\"文字列翻訳\" 拡張がサーバにありません。この拡張はメタコンソールでの設定が必" +#~ "須です。" #~ msgid "" #~ "Server name doesnt match. Check the node server name and configure the same " #~ "one on metasetup" #~ msgstr "" -#~ "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか" -#~ "確認してください" +#~ "サーバ名が一致しません。ノードのサーバ名とメタセットアップの設定内容が同じか確" +#~ "認してください" #~ msgid "Module store the service does not exist." #~ msgstr "サービスを保存するモジュールがありません。" @@ -59081,9 +58579,9 @@ msgstr "" #~ "learn more about Pandora FMS. Monitoring could be overwhelm, but take your " #~ "time to learn how to use the power of Pandora FMS!" #~ msgstr "" -#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリ" -#~ "ンクを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには" -#~ "時間が必要です。" +#~ "初めての Pandora FMS の利用であれば、Pandora FMS に関して学べるいくつかのリン" +#~ "クを紹介します。強力な監視ができますが、Pandora FMS の能力を使いこなすには時間" +#~ "が必要です。" #~ msgid "Go to Pandora FMS Website" #~ msgstr "Pandora FMS のウェブサイトへ" @@ -59092,27 +58590,27 @@ msgstr "" #~ "Pandora FMS frontend is built on advanced, modern technologies and does not " #~ "support old browsers." #~ msgstr "" -#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザは" -#~ "サポートしていません。" +#~ "Pandora FMS のフロントエンドには新しい技術が使われているため、古いブラウザはサ" +#~ "ポートしていません。" #~ msgid "" -#~ "It is highly recommended that you choose and install a modern browser. It " -#~ "is free of charge and only takes a couple of minutes." +#~ "It is highly recommended that you choose and install a modern browser. It is " +#~ "free of charge and only takes a couple of minutes." #~ msgstr "" -#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了" -#~ "します。" +#~ "新しいブラウザをインストールすることを強くお勧めします。無料ですし数分で完了し" +#~ "ます。" #~ msgid "Why is it recommended to upgrade the web browser?" #~ msgstr "なぜブラウザのアップグレードを推奨するのでしょうか?" #~ msgid "" #~ "New browsers usually come with support for new technologies, increasing web " -#~ "page speed, better privacy settings and so on. They also resolve security " -#~ "and functional issues." +#~ "page speed, better privacy settings and so on. They also resolve security and " +#~ "functional issues." #~ msgstr "" -#~ "新しいブラウザでは通常、新たな技術のサポート、表示速度の高速化、プライバシー" -#~ "設定の強化等が行われています。また、セキュリティホールや不具合の解消も行われ" -#~ "ています。" +#~ "新しいブラウザでは通常、新たな技術のサポート、表示速度の高速化、プライバシー設" +#~ "定の強化等が行われています。また、セキュリティホールや不具合の解消も行われてい" +#~ "ます。" #~ msgid "Continue despite this warning" #~ msgstr "警告を無視して続ける" @@ -59145,8 +58643,7 @@ msgstr "" #~ "Agent statuses are re-calculated by the server, they are not shown in real " #~ "time." #~ msgstr "" -#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されませ" -#~ "ん。" +#~ "サーバにてエージェント状態が再計算されました。リアルタイムでは表示されません。" #~ msgid "one combined graph" #~ msgstr "一つの組み合わせグラフ" @@ -59170,8 +58667,8 @@ msgstr "" #~ "Show events is disabled because this Pandora node is set the event " #~ "replication." #~ msgstr "" -#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効" -#~ "です。" +#~ "この Pandora ノードは、イベントの複製が設定されているためイベント表示は無効で" +#~ "す。" #~ msgid "Show event graph" #~ msgstr "イベントグラフ表示" @@ -59195,8 +58692,7 @@ msgstr "" #~ msgstr "ショートカットバー" #~ msgid "" -#~ "This will activate a shortcut bar with alerts, events, messages... " -#~ "information" +#~ "This will activate a shortcut bar with alerts, events, messages... information" #~ msgstr "" #~ "アラート、イベント、メッセージ等の情報でショートカットバーを有効にします。" @@ -59212,8 +58708,7 @@ msgstr "" #~ "wikiを参照してください" #~ msgid "" -#~ "There is a error in the message from your Integria or there is not " -#~ "connection." +#~ "There is a error in the message from your Integria or there is not connection." #~ msgstr "Integria からのメッセージにエラーがあるか、接続できません。" #~ msgid "Opened tickets" @@ -59229,8 +58724,8 @@ msgstr "" #~ "You can set the command path in the menu Administration -> Extensions -" #~ "> Config Network Tools" #~ msgstr "" -#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設" -#~ "定できます。" +#~ "コマンドのパスは、システム管理 -> 拡張 -> ネットワークツール設定 で設定" +#~ "できます。" #~ msgid "Config Network Tools" #~ msgstr "ネットワークツール設定" @@ -59315,8 +58810,8 @@ msgstr "" #~ "close me and never see me again." #~ msgstr "" #~ "自己紹介をさせてください。私は Pandora FMS のおせっかいなアシスタント " -#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示し" -#~ "ないようにもできます。" +#~ "Pandorin です。Pandora FMS の基本的な操作をお教えします。私を閉じて再表示しな" +#~ "いようにもできます。" #~ msgid "Ping to a Linux or Windows server with a Pandora FMS agent" #~ msgstr "" @@ -59329,8 +58824,8 @@ msgstr "" #~ msgid "Error updating data module in policy. Module type is not network type." #~ msgstr "" -#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイ" -#~ "プではありません。" +#~ "ポリシー内のデータモジュールの更新エラー。モジュールタイプがネットワークタイプ" +#~ "ではありません。" #~ msgid "Error in netflow filter creation. Filter name cannot be left blank." #~ msgstr "Netflow フィルタ作成エラー。フィルタ名が空です。" @@ -59401,30 +58896,30 @@ msgstr "" #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or \n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect " +#~ "or \n" #~ "\t\t\tthe database server is not running." #~ msgstr "" -#~ "データベースに接続できません。include/config.phpファイルで、データ" -#~ "ベースの設定を確認してください。

\n" -#~ "\t\t\t おそらく、データベース、ホスト名、ユーザ、パスワードの値が正しくない" -#~ "かまたは、\n" +#~ "データベースに接続できません。include/config.phpファイルで、データベー" +#~ "スの設定を確認してください。

\n" +#~ "\t\t\t おそらく、データベース、ホスト名、ユーザ、パスワードの値が正しくないか" +#~ "または、\n" #~ "\t\t\t データベースサーバが動作していません。" #~ msgid "" #~ "If you have modified auth system, this problem could be because Pandora " -#~ "cannot override authorization variables from the config database. Remove " -#~ "them from your database by executing:
DELETE FROM tconfig WHERE "
-#~ "token = \"auth\";
" +#~ "cannot override authorization variables from the config database. Remove them " +#~ "from your database by executing:
DELETE FROM tconfig WHERE token = "
+#~ "\"auth\";
" #~ msgstr "" -#~ "認証システムを変更した場合この問題が発生します。Pandora は、データベース設定" -#~ "では認証方法を上書きできないためです。次のクエリを実行することにより、それら" -#~ "をデータベースから削除してください。:
DELETE FROM tconfig WHERE "
-#~ "token = \"auth\";
" +#~ "認証システムを変更した場合この問題が発生します。Pandora は、データベース設定で" +#~ "は認証方法を上書きできないためです。次のクエリを実行することにより、それらを" +#~ "データベースから削除してください。:
DELETE FROM tconfig WHERE token "
+#~ "= \"auth\";
" #~ msgid "" -#~ "Cannot load configuration variables from database. Please check your " -#~ "database setup in the\n" +#~ "Cannot load configuration variables from database. Please check your database " +#~ "setup in the\n" #~ "\t\t\tinclude/config.php file.

\n" #~ "\t\t\tMost likely your database schema has been created but there are is no " #~ "data in it, you have a problem with the database access credentials or your " @@ -59434,15 +58929,14 @@ msgstr "" #~ "\t\t\tpermissions and HTTP server cannot read it. Please read documentation " #~ "to fix this problem.
" #~ msgstr "" -#~ "データベースから設定を読み込めません。include/config.phpファイルの" -#~ "データベース設定を確認してください。

\n" -#~ "\t\t\t データベーススキーマは作成されているがデータが入っていない、データ" -#~ "ベースへのアクセス権限が無い、またはスキーマが古いといったことが考えられま" -#~ "す。\n" -#~ "\t\t\t

または、Pandora FMS コンソールが include/config.php " -#~ "ファイルを見つけられないか、このファイルが不正な\n" -#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に" -#~ "はドキュメントを参照してください。
" +#~ "データベースから設定を読み込めません。include/config.phpファイルのデー" +#~ "タベース設定を確認してください。

\n" +#~ "\t\t\t データベーススキーマは作成されているがデータが入っていない、データベー" +#~ "スへのアクセス権限が無い、またはスキーマが古いといったことが考えられます。\n" +#~ "\t\t\t

または、Pandora FMS コンソールが include/config.php ファ" +#~ "イルを見つけられないか、このファイルが不正な\n" +#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決には" +#~ "ドキュメントを参照してください。
" #~ msgid "" #~ "Pandora FMS Console cannot find include/config.php or this file has " @@ -59452,19 +58946,19 @@ msgstr "" #~ msgstr "" #~ "Pandora FMS コンソールが include/config.php ファイルを見つけられない" #~ "か、このファイルが不正な\n" -#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決に" -#~ "はドキュメントを参照してください。
" +#~ "\t\t\t パーミッションで HTTP サーバが読むことができません。この問題の解決には" +#~ "ドキュメントを参照してください。
" #~ msgid "" #~ "For security reasons, normal operation is not possible until you delete " #~ "installer file.\n" -#~ "\t\t\tPlease delete the ./install.php file before running Pandora " -#~ "FMS Console." +#~ "\t\t\tPlease delete the ./install.php file before running Pandora FMS " +#~ "Console." #~ msgstr "" -#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはな" -#~ "りません。\n" -#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削" -#~ "除してください。" +#~ "セキュリティ上の理由から、インストーラファイルを削除するまで通常の動作にはなり" +#~ "ません。\n" +#~ "\t\t\t Pandora FMS コンソールを実行する前に ./install.phpファイルを削除" +#~ "してください。" #~ msgid "" #~ "For security reasons, config.php must have restrictive permissions, " @@ -59473,15 +58967,15 @@ msgstr "" #~ "owner \n" #~ "\t\t\t(usually www-data or http daemon user), normal operation is not " #~ "possible until you change \n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for " +#~ "your security." #~ msgstr "" -#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要" -#~ "があります。\"other\" ユーザは\n" -#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモン" -#~ "ユーザ)でのみ書き込み\n" -#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッション" -#~ "を変更しないと、通常の動作\n" +#~ "セキュリティ上の理由から、 config.php はパーミッションを制限する必要が" +#~ "あります。\"other\" ユーザは\n" +#~ "\t\t\t 読み書きできてはいけません。owner (通常は www-data や http デーモンユー" +#~ "ザ)でのみ書き込み\n" +#~ "\t\t\t 可能にする必要があります。include/config.php のパーミッションを" +#~ "変更しないと、通常の動作\n" #~ "\t\t\t にはなりません。セキュリティのために調整を実施してください。" #~ msgid "Auto Save" @@ -59491,11 +58985,11 @@ msgstr "" #~ msgstr "保存できませんでした" #~ msgid "" -#~ "You can not delete the last group in Pandora. A common installation must " -#~ "has almost one group." +#~ "You can not delete the last group in Pandora. A common installation must has " +#~ "almost one group." #~ msgstr "" -#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければな" -#~ "りません。" +#~ "最後のグループは削除できません。通常、1つはグループが設定されていなければなり" +#~ "ません。" #~ msgid "There is a unknown error." #~ msgstr "不明なエラーがあります。" @@ -59579,8 +59073,8 @@ msgstr "" #~ "To disable, change it on your PHP configuration file (php.ini) and put " #~ "safe_mode = Off (Dont forget restart apache process after changes)" #~ msgstr "" -#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定" -#~ "します。 (変更後、apache プロセスの再起動を忘れずに行ってください)" +#~ "無効化するには、PHP 設定ファイル (php.ini) を変更し、safe_mode = Off を設定し" +#~ "ます。 (変更後、apache プロセスの再起動を忘れずに行ってください)" #~ msgid "For to view the list modules paginated, set in setup visuals." #~ msgstr "ページ分割されたモジュール一覧表示は、画面設定で設定してください。" @@ -59589,8 +59083,8 @@ msgstr "" #~ msgstr "イベント情報 (1時間)" #~ msgid "" -#~ "Event storm protection is activated. No events will be generated during " -#~ "this mode." +#~ "Event storm protection is activated. No events will be generated during this " +#~ "mode." #~ msgstr "" #~ "イベントストーム保護が有効です。このモードではイベントが生成されません。" @@ -59620,16 +59114,16 @@ msgstr "" #~ "Your PHP has set maximum allowed size for uploaded files limit in %s. For " #~ "avoid problems with big updates please set to 100M" #~ msgstr "" -#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな" -#~ "更新時に問題にならないよう、100M に設定してください。" +#~ "PHP の設定で、最大アップロードファイルサイズが %s に制限されています。大きな更" +#~ "新時に問題にならないよう、100M に設定してください。" #, php-format #~ msgid "" -#~ "Your PHP has set post parameter max size limit in %s. For avoid problems " -#~ "with big updates please set to 100M" +#~ "Your PHP has set post parameter max size limit in %s. For avoid problems with " +#~ "big updates please set to 100M" #~ msgstr "" -#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時" -#~ "に問題にならないよう、100M に設定してください。" +#~ "PHP の設定で、ポストデータの最大サイズが %s に制限されています。大きな更新時に" +#~ "問題にならないよう、100M に設定してください。" #~ msgid "Module data received" #~ msgstr "データ受信モジュール" @@ -59637,8 +59131,8 @@ msgstr "" #~ msgid "" #~ "Unsucessful delete profile. Because the profile is used by some admin users." #~ msgstr "" -#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われ" -#~ "います。" +#~ "プロファイル削除に失敗しました。プロファイルがいくつかの管理者ユーザで使われい" +#~ "ます。" #~ msgid "Unsuccessfull multiple delete." #~ msgstr "複数削除に失敗しました。" @@ -59676,8 +59170,8 @@ msgstr "" #~ "The user doesn't have permission to read agents. Please contact with your " #~ "pandora administrator." #~ msgstr "" -#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくだ" -#~ "さい。" +#~ "ユーザにエージェントを参照する権限がありません。pandora管理者に連絡してくださ" +#~ "い。" #~ msgid "Please choose other server." #~ msgstr "他のサーバを選択してください。" @@ -59726,18 +59220,18 @@ msgstr "" #, php-format #~ msgid "" -#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not " -#~ "set this value with upper values." +#~ "Your PHP environment is setted with %d max_input_vars. Maybe you must not set " +#~ "this value with upper values." #~ msgstr "" -#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけ" -#~ "ません。" +#~ "PHP の max_input_vars が %d に設定されています。この値は大きく設定してはいけま" +#~ "せん。" #~ msgid "" -#~ "If this option is enabled, the users can use double authentication with " -#~ "their accounts" +#~ "If this option is enabled, the users can use double authentication with their " +#~ "accounts" #~ msgstr "" -#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができ" -#~ "ます。" +#~ "このオプションを有効にすると、ユーザはアカウントの二段階認証を使うことができま" +#~ "す。" #~ msgid "This is defined in minutes" #~ msgstr "分単位で設定します" @@ -59767,8 +59261,8 @@ msgstr "" #~ "With this option enabled, the user will can access to accurate information. " #~ "It is not recommended for admin users because performance could be affected" #~ msgstr "" -#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすること" -#~ "ができます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" +#~ "このオプションを有効にすると、ユーザは指定の範囲の情報にのみアクセスすることが" +#~ "できます。パフォーマンスに影響するため、管理者ユーザではお勧めしません。" #~ msgid "No tag selected" #~ msgstr "タグが選択されていません" @@ -59792,8 +59286,7 @@ msgstr "" #~ msgstr "DB Pandora にはすべてのテーブルが揃っています" #, php-format -#~ msgid "" -#~ "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" +#~ msgid "Unsuccessful the DB Pandora has not all tables. The tables lost are (%s)" #~ msgstr "" #~ "DB Pandora にはすべてのテーブルが揃っていません。不足テーブルは (%s) です。" @@ -59801,13 +59294,12 @@ msgstr "" #~ msgid "" #~ "Unsuccessful the field %s in the table %s must be setted the type with %s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要がありま" -#~ "す。" +#~ "フィールド %s (テーブル %s 内)は、%s のタイプに設定されている必要があります。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the null values " -#~ "with %s." +#~ "Unsuccessful the field %s in the table %s must be setted the null values with " +#~ "%s." #~ msgstr "" #~ "フィールド %s (テーブル %s 内)は、%s の null 値に設定されている必要がありま" #~ "す。" @@ -59817,22 +59309,21 @@ msgstr "" #~ "Unsuccessful the field %s in the table %s must be setted the key as defined " #~ "in the SQL file." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが" -#~ "設定されている必要があります。" +#~ "フィールド %s (テーブル %s 内)は、SQL ファイル内で定義されている通りのキーが設" +#~ "定されている必要があります。" #~ msgid "Please check the SQL file for to know the kind of key needed." #~ msgstr "必要なキーを特定するには、SQL ファイルを確認してください。" #, php-format #~ msgid "" -#~ "Unsuccessful the field %s in the table %s must be setted the default value " -#~ "as %s." +#~ "Unsuccessful the field %s in the table %s must be setted the default value as " +#~ "%s." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があ" -#~ "ります。" +#~ "フィールド %s (テーブル %s 内)は、デフォルト値が %s に設定されている必要があり" +#~ "ます。" -#~ msgid "" -#~ "Please check the SQL file for to know the kind of default value needed." +#~ msgid "Please check the SQL file for to know the kind of default value needed." #~ msgstr "必要なデフォルト値を特定するには、SQL ファイルを確認してください。" #, php-format @@ -59840,8 +59331,8 @@ msgstr "" #~ "Unsuccessful the field %s in the table %s must be setted as defined in the " #~ "SQL file." #~ msgstr "" -#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定され" -#~ "ている必要があります。" +#~ "フィールド %s (テーブル %s 内)は、SQL ファイルに定義されている通りに設定されて" +#~ "いる必要があります。" #~ msgid "Units. Value" #~ msgstr "単位" @@ -59880,16 +59371,16 @@ msgstr "" #~ "This item is affected by a malformed planned downtime. Go to the planned " #~ "downtimes section to solve this." #~ msgstr "" -#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだい" -#~ "さい。" +#~ "この要素は不正な計画停止の景況を受けます。計画停止の設定画面で調整してくだいさ" +#~ "い。" #~ msgid "Netflow Statistics" #~ msgstr "Netflow 統計" #~ msgid "" -#~ "Illegal query: Due security restrictions, there are some tokens or words " -#~ "you cannot use: *, delete, drop, alter, modify, union, password, pass, " -#~ "insert or update." +#~ "Illegal query: Due security restrictions, there are some tokens or words you " +#~ "cannot use: *, delete, drop, alter, modify, union, password, pass, insert or " +#~ "update." #~ msgstr "" #~ "不正なクエリ。セキュリティ上の制約により次のトークンやワードは利用でません: " #~ "*, delete, drop, alter, modify, union, password, pass, insert または update" @@ -59900,9 +59391,9 @@ msgstr "" #~ "update_manager&tab=online\"> go to Administration:Setup:Update Manager " #~ "for more details." #~ msgstr "" -#~ "新たな更新があります。詳細は、管理" -#~ "メニューのアップデートマネージャを参照してください。" +#~ "新たな更新があります。詳細は、管理メ" +#~ "ニューのアップデートマネージャを参照してください。" #~ msgid "Netflow Pie" #~ msgstr "NetFlow円グラフ" @@ -59992,15 +59483,14 @@ msgstr "" #~ msgstr "エージェント有効化/無効化エラー。エージェントが存在しません。" #~ msgid "" -#~ "There is a new update please go to menu Administration and into extensions " -#~ "go to Update Manager for " -#~ "more details." -#~ msgstr "" -#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照" -#~ "してください。" +#~ "update_manager/update_manager&tab=online\">go to Update Manager for more " +#~ "details." +#~ msgstr "" +#~ "新たなアップデートがあります。詳細は、管理メニューの拡張の中のアップデートマネージャを参照してください。" #~ msgid "Error enable/disable agent. Id_agent cannot be left blank." #~ msgstr "エージェント有効化/無効化エラー。id_agent は空にできません。" @@ -60018,12 +59508,12 @@ msgstr "" #~ "pandorafms.com/Library/Library/'>Public Resource Library " #~ msgstr "" #~ "この拡張は、サーバプラグインの登録を簡単にします。\n" -#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインを" -#~ "アップロードできます。\n" -#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照し" -#~ "てください。\n" -#~ "\t\t\t\t\t\t

多くのプラグインを、我々のリソースライブラリから取得できます。 " +#~ "\t\t\t\t\t\tPandora FMS 3.x の zip フォーマット(.pspz)でサーバプラグインをアッ" +#~ "プロードできます。\n" +#~ "\t\t\t\t\t\tPandora FMS サーバプラグインの取得と使い方はドキュメントを参照して" +#~ "ください。\n" +#~ "\t\t\t\t\t\t

多くのプラグインを、我々のリソースライブラリから取得できます。 " #~ msgid "Masive tags module policy edition" #~ msgstr "一括タグモジュールポリシー編集" @@ -60050,26 +59540,25 @@ msgstr "" #~ msgstr "proc モジュールを二値(OK/FAIL)表示する" #~ msgid "" -#~ "The Recon Task definition of Pandora FMS is used to find new elements in " -#~ "the network. \n" +#~ "The Recon Task definition of Pandora FMS is used to find new elements in the " +#~ "network. \n" #~ "\t\tIf it detects any item, it will add that item to the monitoring, and if " #~ "that item it is already being monitored, then it will \n" #~ "\t\tignore it or will update its information.There are three types of " #~ "detection: Based on ICMP (pings), \n" #~ "\t\tSNMP (detecting the topology of networks " -#~ "and their interfaces), and other customized \n" +#~ "and their interfaces), and other customized \n" #~ "\t\ttype. You can define your own customized recon script." #~ msgstr "" -#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利" -#~ "用します。\n" -#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情" -#~ "報を更新します。\n" +#~ "Pandora FMS の自動検出タスクは、ネットワーク上の新たな対象を検出するために利用" +#~ "します。\n" +#~ "\t\t検出すると、監視対象として追加します。すでに監視対象の場合は無視するか情報" +#~ "を更新します。\n" #~ "\t\t検出には 3つの種類があります。 ICMP (ping)、SNMP(ネットワークとインタ" -#~ "フェースのトポロジ検出)、\n" -#~ "\t\tおよび カスタムタイプです。独自の検出スク" -#~ "リプトを定義することもできます。" +#~ "strong>(ping)、SNMP(ネットワークとインタフェー" +#~ "スのトポロジ検出)、\n" +#~ "\t\tおよび カスタムタイプです。独自の検出スクリ" +#~ "プトを定義することもできます。" #~ msgid "" #~ "A service is a way to group your IT resources based on their " @@ -60080,53 +59569,53 @@ msgstr "" #~ "switches, firewalls, CRMs, ERPs, websites and numerous other services. \n" #~ "\t\t\t\t\t By the following example, you're able to see more clearly what a " #~ "service is:\n" -#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around " -#~ "the world. \n" +#~ "\t\t\t\t\t\tA chip manufacturer sells computers by its website all around the " +#~ "world. \n" #~ "\t\t\t\t\t\tHis company consists of three big departments: A management, an " #~ "on-line shop and support." #~ msgstr "" #~ "サービスは、機能に基づく IT リソースをグループ化するものです。\n" -#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリ" -#~ "ケーション、プリンタなどです。\n" -#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、" -#~ "ERP、ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n" +#~ "\t\t\t\t\t例えばサービスは、公式ウェブサイト、CRMシステム、サポートアプリケー" +#~ "ション、プリンタなどです。\n" +#~ "\t\t\t\t\tサービスは、ホスト、ルータ、スイッチ、ファイアーウォール、CRM、ERP、" +#~ "ウェブサイトおよびその他さまざまな機能を含んだ論理的なグループです。\n" #~ "\t\t\t\t\t次の例で、サービスが何かがよりわかるでしょう。\n" -#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを" -#~ "販売しています。\n" -#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門" -#~ "から成っています。" +#~ "\t\t\t\t\t\tあるチップメーカーは、ウェブサイトを通して世界中にコンピュータを販" +#~ "売しています。\n" +#~ "\t\t\t\t\t\tその会社は、管理、オンラインショップ、サポートの 3つの大きな部門か" +#~ "ら成っています。" #~ msgid "" #~ "Pandora FMS contains a scheduled downtime management system. \n" #~ "\t\t\t\t\t\tThis system was designed to deactivate the alerts in the " #~ "intervals whenever there is down time by deactivating the agent.\n" -#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In " -#~ "a down time, the down-time intervals aren't taken into \n" -#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because " -#~ "the agents don't contain any data within those intervals. " +#~ "\t\t\t\t\t\tIf an agent is deactivated, it doesn't collect information. In a " +#~ "down time, the down-time intervals aren't taken into \n" +#~ "\t\t\t\t\t\taccount for most of the metrics or types of reports, because the " +#~ "agents don't contain any data within those intervals. " #~ msgstr "" #~ "Pandora FMS には、計画停止を管理するシステムがあります。\n" -#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラー" -#~ "トを無効化するように設計されています。\n" +#~ "\t\t\t\t\t\tこのシステムは、エージェントの停止がある場合に、指定の期間アラート" +#~ "を無効化するように設計されています。\n" #~ "\t\t\t\t\t\tエージェントが無効化されると情報収集が行われません。停止期間中の" #~ "データは、多くのレポートの計算に\n" -#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いた" -#~ "めです。 " +#~ "\t\t\t\t\t\t含まれません。なぜなら、停止期間中はエージェントにデータが無いため" +#~ "です。 " #~ msgid "" #~ "From Pandora FMS versions 5 and above, the access to modules can be " #~ "configured by a tags system.\n" #~ "\t\t\t\t\t\t\t\tTags are configured on the system and be assigned to the " #~ "chosen modules. \n" -#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain " -#~ "tags in this way. " +#~ "\t\t\t\t\t\t\t\tThe user's access can be limited to modules with certain tags " +#~ "in this way. " #~ msgstr "" -#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセス" -#~ "を設定できます。\n" +#~ "Pandora FMS バージョン 5 以降では、タグの機能によってモジュールへのアクセスを" +#~ "設定できます。\n" #~ "\t\t\t\t\t\t\t\tタグは、システム上で設定し、選択したモジュールに割り当てま" #~ "す。\n" -#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限" -#~ "定することができます。 " +#~ "\t\t\t\t\t\t\t\tこれにより、ユーザアクセスを特定のタグがついたモジュールに限定" +#~ "することができます。 " #~ msgid "Free text:" #~ msgstr "検索文字列:" @@ -60153,9 +59642,9 @@ msgstr "" #~ "comments and files any time in case there is a need to do so.\n" #~ "\t\t\tThis system allows the users to work as a team, along with different " #~ "roles and work-flow systems which allows an incident to be \n" -#~ "\t\t\tmoved from one group to another, and that members from different " -#~ "groups and different people could work on the same incident, sharing " -#~ "information and files.\n" +#~ "\t\t\tmoved from one group to another, and that members from different groups " +#~ "and different people could work on the same incident, sharing information and " +#~ "files.\n" #~ "\t\t" #~ msgstr "" #~ "システムやアプリケーションを監視するためにデータを受信し処理するほかに、\n" @@ -60163,12 +59652,12 @@ msgstr "" #~ "す。\n" #~ "\t\t\tそのために、Pandora FMS チームではインシデント管理機能を用意しました。" #~ "ユーザはいつでもインシデントをオープンし、\n" -#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシ" -#~ "ステムにより、ユーザがチームとして動くことが\n" -#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグ" -#~ "ループから他のグループへ移したり、異なる\n" -#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報や" -#~ "ファイルを共有したりできます。\n" +#~ "\t\t\tネットワークで何が発生したかを説明しコメントすることができます。このシス" +#~ "テムにより、ユーザがチームとして動くことが\n" +#~ "\t\t\tでき、異なる権限を持たせたり、ワークフローとしてインシデントをあるグルー" +#~ "プから他のグループへ移したり、異なる\n" +#~ "\t\t\tグループの異なるメンバーが同じインシデントに対して対処したり、情報やファ" +#~ "イルを共有したりできます。\n" #~ "\t\t" #~ msgid "An error occurred stopping the planned downtime" @@ -60190,15 +59679,15 @@ msgstr "" #~ msgstr "この計画停止は実行中です" #~ msgid "" -#~ "WARNING: You\\'re trying to create a group in a node member of a " -#~ "metaconsole.\\n\\nThis group and all of this contents will not be visible " -#~ "in the metaconsole.\\n\\nIf you want to create a visible group, you must do " -#~ "it from the metaconsole and propagate to the node. " +#~ "WARNING: You\\'re trying to create a group in a node member of a metaconsole." +#~ "\\n\\nThis group and all of this contents will not be visible in the " +#~ "metaconsole.\\n\\nIf you want to create a visible group, you must do it from " +#~ "the metaconsole and propagate to the node. " #~ msgstr "" #~ "警告: メタコンソールのノードメンバーにグループを作成しようとしていま" -#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示さ" -#~ "れません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実" -#~ "行し、ノードに伝播させる必要があります。 " +#~ "す。\\n\\n このグループとそこに含まれるコンテンツはメタコンソールでは表示され" +#~ "ません。\\n\\n 表示されるグループを作成したい場合は、メタコンソールから実行" +#~ "し、ノードに伝播させる必要があります。 " #~ msgid "Advance Config AD" #~ msgstr "AD 拡張設定" @@ -60216,8 +59705,8 @@ msgstr "" #~ msgid "" #~ "Pandora FMS allows you to create visual maps in which each user is able to " #~ "create his own monitoring map.\n" -#~ "\t\t\tThe new visual console editor is much more practical, although the " -#~ "old visual console editor had its advantages. \n" +#~ "\t\t\tThe new visual console editor is much more practical, although the old " +#~ "visual console editor had its advantages. \n" #~ "\t\t\tWithin the new visual console, we've been successful in imitating the " #~ "sensation and touch of a drawing application like GIMP. \n" #~ "\t\t\tWe've also simplified the editor by dividing it into several subject-" @@ -60226,10 +59715,10 @@ msgstr "" #~ "\t\t\tThe elements the Pandora FMS Visual Map was designed to handle are " #~ "'static image', 'percentage bar', 'module graph' and 'simple value'. " #~ msgstr "" -#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監" -#~ "視マップを作成することができます。\n" -#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的で" -#~ "す。新たなビジュアルコンソールでは、\n" +#~ "Pandora FMS ではビジュアルマップを作成でき、そこでそれぞれのユーザが各自の監視" +#~ "マップを作成することができます。\n" +#~ "\t\t\t新たなビジュアルコンソールエディタは、古いエディタよりもより実用的です。" +#~ "新たなビジュアルコンソールでは、\n" #~ "\t\t\t絵を書くツールの GIMP のような感覚とタッチを模倣することに成功しまし" #~ "た。\n" #~ "\t\t\tまた、'データ'、'プレビュー'、'ウィザード'、'要素一覧' および 'エディ" @@ -60246,18 +59735,18 @@ msgstr "" #~ msgstr "%dパーセント" #~ msgid "" -#~ "Graphs are designed to show the data collected by Pandora FMS in a " -#~ "temporary scale defined by the user.\n" +#~ "Graphs are designed to show the data collected by Pandora FMS in a temporary " +#~ "scale defined by the user.\n" #~ "\t\t\t\tPandora FMS Graphs display data in real time. They are generated " #~ "every time the operator requires any of them and display the up-to-date " #~ "state.\n" #~ "\t\t\t\tThere are two types of graphs: The agent's automated graphs and the " #~ "graphs the user customizes by using one or more modules to do so." #~ msgstr "" -#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表" -#~ "示します。\n" -#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作" -#~ "したタイミングで生成され、最新の状態を表示します。\n" +#~ "グラフ表示は、Pandora FMS で収集しているデータをユーザが定義したスケールで表示" +#~ "します。\n" +#~ "\t\t\t\tPandora FMS のグラフはリアルタイムでデータを表示します。ユーザが操作し" +#~ "たタイミングで生成され、最新の状態を表示します。\n" #~ "\t\t\t\tグラフには 2つのタイプがあります。エージェントで自動生成されるグラフ" #~ "と、1つ以上のモジュールを使ってユーザがカスタマイズしたグラフです。" @@ -60289,11 +59778,11 @@ msgstr "" #~ msgstr "最小エージェント" #~ msgid "" -#~ "Error, you are trying to add a widget in a empty cell. Please save the " -#~ "layout before to add any widget in this cell." +#~ "Error, you are trying to add a widget in a empty cell. Please save the layout " +#~ "before to add any widget in this cell." #~ msgstr "" -#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェッ" -#~ "トを追加するには、先にレイアウトを保存してください。" +#~ "エラー、空のセルにウィジェットを追加しようとしています。このセルにウィジェット" +#~ "を追加するには、先にレイアウトを保存してください。" #~ msgid "Config widget" #~ msgstr "ウィジェット設定" @@ -60310,24 +59799,22 @@ msgstr "" #~ msgid "Different parent" #~ msgstr "異なる親" -#~ msgid "" -#~ "The target user profiles will be replaced with the source user profiles" +#~ msgid "The target user profiles will be replaced with the source user profiles" #~ msgstr "対象のユーザプロファイルは、元ユーザのプロファイルで置き換えられます" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance. \n" -#~ "\t\t\t\t\t
Please know that all attempts to access this page are " -#~ "recorded in security logs of Pandora System Database" +#~ "\t\t\t\t\t
Please know that all attempts to access this page are recorded " +#~ "in security logs of Pandora System Database" #~ msgstr "" -#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシス" -#~ "テム管理者へ連絡してください。\n" -#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセ" -#~ "キュリティログに記録されます。" +#~ "このページは認証されたユーザのみがアクセスできます。手助けが必要であればシステ" +#~ "ム管理者へ連絡してください。\n" +#~ "\t\t\t\t\t
このページへの全アクセスは Pandora システムデータベースのセキュ" +#~ "リティログに記録されます。" #~ msgid "" -#~ "The selected user profile will be added to the selected users into the " -#~ "target" +#~ "The selected user profile will be added to the selected users into the target" #~ msgstr "選択されたユーザプロファイルは、対象の選択ユーザに追加されます" #~ msgid "Login off" @@ -60367,15 +59854,14 @@ msgstr "" #~ msgstr "ウエイトはデフォルト値です" #~ msgid "" -#~ "Only the elements configured as 'critical element' are used to calculate " -#~ "the service status" +#~ "Only the elements configured as 'critical element' are used to calculate the " +#~ "service status" #~ msgstr "'障害' として設定されているもののみサービスの状態計算に利用されます。" #~ msgid "No name and description specified for the service" #~ msgstr "サービスに名前と説明がありません" -#~ msgid "" -#~ "All the items are not available in CSV, only the previous versions ones." +#~ msgid "All the items are not available in CSV, only the previous versions ones." #~ msgstr "CSV内に全アイテムがありません。以前のバージョンのみです。" #~ msgid "Delete remote conf server files in Pandora" @@ -60385,8 +59871,7 @@ msgstr "" #~ "Delete this conf file implies that Pandora will send back local config to " #~ "console" #~ msgstr "" -#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送しま" -#~ "す" +#~ "コンフィグファイルを削除すると、ローカルの設定ファイルをコンソールに再送します" #~ msgid "" #~ "Limit the number of events that are replicated metaconsole each specified " @@ -60394,11 +59879,11 @@ msgstr "" #~ msgstr "指定した範囲でメタコンソールへ複製するイベントの数を制限します。" #~ msgid "" -#~ "Enable this option will be synchronice the groups and tags each new user " -#~ "when he/she will login." +#~ "Enable this option will be synchronice the groups and tags each new user when " +#~ "he/she will login." #~ msgstr "" -#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが" -#~ "同期されます。" +#~ "このオプションを有効化すると、新規ユーザがログインしたときにグループとタグが同" +#~ "期されます。" #~ msgid "Generate a dynamic report\"" #~ msgstr "ダイナミックレポートの生成" @@ -60432,40 +59917,39 @@ msgstr "" #~ msgid "" #~ "In the same fashion, when subscribed to the newsletter you accept that your " -#~ "email will pass on to a database property of Artica TS. This data will " -#~ "solely be used to provide you with information about Pandora FMS and will " -#~ "not be conceded to third parties. You'll be able to unregister from said " -#~ "database at any time from the newsletter subscription options" +#~ "email will pass on to a database property of Artica TS. This data will solely " +#~ "be used to provide you with information about Pandora FMS and will not be " +#~ "conceded to third parties. You'll be able to unregister from said database at " +#~ "any time from the newsletter subscription options" #~ msgstr "" #~ "同様に、ニュースレターの購読をすると、あなたのメールアドレスが Artica TS の" -#~ "データベースに登録されることに合意いただくことになります。これは Pandora " -#~ "FMS に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありませ" -#~ "ん。ニュースレターの購読オプションでいつでも登録解除を行うことができます。" +#~ "データベースに登録されることに合意いただくことになります。これは Pandora FMS " +#~ "に関する情報を提供する目的にのみ利用し、第三者へ提供されることはありません。" +#~ "ニュースレターの購読オプションでいつでも登録解除を行うことができます。" #~ msgid "Subscribe to our newsletter" #~ msgstr "ニュースレターを購読する" #~ msgid "" -#~ "When you subscribe to the Pandora FMS Update Manager service, you accept " -#~ "that we register your Pandora instance as an identifier on the database " -#~ "owned by Artica TS. This data will solely be used to provide you with " -#~ "information about Pandora FMS and will not be conceded to third parties. " -#~ "You'll be able to unregister from said database at any time from the Update " -#~ "Manager options" +#~ "When you subscribe to the Pandora FMS Update Manager service, you accept that " +#~ "we register your Pandora instance as an identifier on the database owned by " +#~ "Artica TS. This data will solely be used to provide you with information " +#~ "about Pandora FMS and will not be conceded to third parties. You'll be able " +#~ "to unregister from said database at any time from the Update Manager options" #~ msgstr "" -#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータ" -#~ "ベースにあなたの Pandora インスタンスを識別する情報を登録することに合意いた" -#~ "だくことになります。これは Pandora FMS に関する情報を提供する目的にのみ利用" -#~ "し、第三者へ提供されることはありません。アップデートマネージャオプションから" -#~ "いつでもデータベースの登録解除を行うことができます。" +#~ "Pandora FMS アップデートマネージャサービスに登録すると、Artica TS のデータベー" +#~ "スにあなたの Pandora インスタンスを識別する情報を登録することに合意いただくこ" +#~ "とになります。これは Pandora FMS に関する情報を提供する目的にのみ利用し、第三" +#~ "者へ提供されることはありません。アップデートマネージャオプションからいつでも" +#~ "データベースの登録解除を行うことができます。" #~ msgid "Stay up to date with the Pandora FMS community" #~ msgstr "Pandora FMS コミュニティで最新情報を確認してください" #~ msgid "This field allows url insertion using the BBCode's url tag" #~ msgstr "" -#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することが" -#~ "できます" +#~ "このフィールドには、BBコードの url タグを使うことにより URL を挿入することがで" +#~ "きます" #~ msgid "The format is: [url='url to navigate']'text to show'[/url]" #~ msgstr "フォーマット: [url='url to navigate']'表示するテキスト'[/url]" @@ -60474,8 +59958,8 @@ msgstr "" #~ msgstr "例: [url=pandorafms.org]Pandora FMS コミュニティ[/url]" #~ msgid "" -#~ "Please fill the following information in order to configure your Pandora " -#~ "FMS instance successfully" +#~ "Please fill the following information in order to configure your Pandora FMS " +#~ "instance successfully" #~ msgstr "" #~ "Pandora FMS インスタンスを正しく設定するために、以下の情報を入力してください" @@ -60502,18 +59986,18 @@ msgstr "" #~ msgstr "例: switch.ehorus.com" #~ msgid "" -#~ "Set a value too high cause a slowdown on console and a performance penalty " -#~ "in the system." +#~ "Set a value too high cause a slowdown on console and a performance penalty in " +#~ "the system." #~ msgstr "" -#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が" -#~ "発生します。" +#~ "大きすぎる値にすると、コンソールが遅くなったりシステムのパフォーマンス低下が発" +#~ "生します。" #~ msgid "" #~ "If you check this option, the lateral menus display with left click. " #~ "Otherwise it will show by placing the mouse over" #~ msgstr "" -#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうで" -#~ "なければ、マウスオーバーで表示されます。" +#~ "このオプションをチェックするとサイドメニューはクリックで表示されます。そうでな" +#~ "ければ、マウスオーバーで表示されます。" #~ msgid "Display lateral menus with click" #~ msgstr "クリックで横のメニューを表示" @@ -60560,8 +60044,8 @@ msgstr "" #~ "newsletter subscription process" #~ msgstr "" #~ "ニュースレターの購読を開始するには こちら" -#~ " をクリックしてください" +#~ "decoration:underline\" href=\"javascript: force_run_newsletter();\"> こちら をクリックしてください" #~ msgid "" #~ "Click こちら をクリッ" -#~ "クしてください" +#~ "underline\" href=\"javascript: force_run_register();\"> こちら をクリック" +#~ "してください" #~ msgid "This instance is not registered in the Update manager" #~ msgstr "このインスタンスはアップデートマネージャに登録されていません" @@ -60595,8 +60079,8 @@ msgstr "" #~ "Path where you put your cert and name of this cert. Remember your cert only " #~ "in .pem extension." #~ msgstr "" -#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意" -#~ "してください。" +#~ "証明書を置いたパスとその名前です。証明書の拡張子は .pem のみであることに注意し" +#~ "てください。" #~ msgid "Module Groups synchronization" #~ msgstr "モジュールグループ同期" @@ -60641,82 +60125,79 @@ msgstr "" #~ msgid "Empty for a transparent background color or CSS compatible value" #~ msgstr "透明な背景色またはCSSに合う値が空です" -#~ msgid "" -#~ "If propagate acl is activated, this group will include its child groups" +#~ msgid "If propagate acl is activated, this group will include its child groups" #~ msgstr "ACLの伝播を有効にすると、このグループは子グループを含みます" #~ msgid "Synchronizing Module Groups" #~ msgstr "モジュールグループの同期中" #~ msgid "" -#~ "Update Manager sends anonymous information about Pandora FMS usage (number " -#~ "of agents and modules running). To disable it, please remove the remote " -#~ "server address from the Update Manager plugin setup." +#~ "Update Manager sends anonymous information about Pandora FMS usage (number of " +#~ "agents and modules running). To disable it, please remove the remote server " +#~ "address from the Update Manager plugin setup." #~ msgstr "" -#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェ" -#~ "ントとモジュール数)を送信します。無効化するには、アップデートマネージャプラ" -#~ "グインの設定からリモートサーバのアドレスを削除します。" +#~ "アップデートマネージャは、Pandora FMS の利用状況の情報(実行しているエージェン" +#~ "トとモジュール数)を送信します。無効化するには、アップデートマネージャプラグイ" +#~ "ンの設定からリモートサーバのアドレスを削除します。" #~ msgid "" -#~ "The community version doesn't have the ability to define your own library " -#~ "of local modules, or distribute it to remote agents. You need to make those " -#~ "changes individually on each agent which is possible by using external " -#~ "tools and time and effort. Nor can it distribute local plugins, or have " -#~ "access to the library of enterprise plugins to monitor applications such as " -#~ "VMWare, RHEV or Informix between others. The Enterprise version will have " -#~ "all this, plus the ability to distribute and manage your own local modules " -#~ "on your systems, individually or through policies.\n" +#~ "The community version doesn't have the ability to define your own library of " +#~ "local modules, or distribute it to remote agents. You need to make those " +#~ "changes individually on each agent which is possible by using external tools " +#~ "and time and effort. Nor can it distribute local plugins, or have access to " +#~ "the library of enterprise plugins to monitor applications such as VMWare, " +#~ "RHEV or Informix between others. The Enterprise version will have all this, " +#~ "plus the ability to distribute and manage your own local modules on your " +#~ "systems, individually or through policies.\n" #~ "

pandorafms.com" +#~ "systems, making it difficult to manage them in a comprehensive manner? Would " +#~ "you like to deploy monitoring, alerts and even local plugins with a single " +#~ "click? Pandora FMS Enterprise Policies are exactly what you need; you'll save " +#~ "time, effort and annoyances. More information pandorafms.com" #~ msgstr "" -#~ "すべての監視を集約したいですか。多くのシステムがあり、包括的なルールでそれら" -#~ "を管理するのは難しくはないでしょうか。監視、アラート設定、ローカルプラグイン" -#~ "でさえ、一回のクリックで展開したくありませんか。Pandora FMS Enterprise ポリ" -#~ "シーは、まさにそういったニーズに答えるものです。時間の浪費と頭痛の種を軽減し" -#~ "ます。より詳細は、 pandorafms.comを参照してくだ" -#~ "さい。" +#~ "すべての監視を集約したいですか。多くのシステムがあり、包括的なルールでそれらを" +#~ "管理するのは難しくはないでしょうか。監視、アラート設定、ローカルプラグインでさ" +#~ "え、一回のクリックで展開したくありませんか。Pandora FMS Enterprise ポリシー" +#~ "は、まさにそういったニーズに答えるものです。時間の浪費と頭痛の種を軽減します。" +#~ "より詳細は、 pandorafms.comを参照してください。" #~ msgid "" #~ "Pandora FMS Enterprise also features event correlation. Through correlation " -#~ "you can generate realtime alerts and / or new events based on logical " -#~ "rules. This allows you to automate troubleshooting. If you know the value " -#~ "of working with events, event correlation will take you to a new level." +#~ "you can generate realtime alerts and / or new events based on logical rules. " +#~ "This allows you to automate troubleshooting. If you know the value of working " +#~ "with events, event correlation will take you to a new level." #~ msgstr "" -#~ "Pandora FMS Enterprise は、イベント集約の相関も持っています。これを通して、" -#~ "論理的なルールに基づくリアルタイムアラートや新たなイベントを生成することがで" -#~ "きます。これは、自動的なトラブルシューティングを可能にします。イベント発生時" -#~ "の値を知れば、イベント送還が次のステップを教えてくれます。" +#~ "Pandora FMS Enterprise は、イベント集約の相関も持っています。これを通して、論" +#~ "理的なルールに基づくリアルタイムアラートや新たなイベントを生成することができま" +#~ "す。これは、自動的なトラブルシューティングを可能にします。イベント発生時の値を" +#~ "知れば、イベント送還が次のステップを教えてくれます。" #~ msgid "" #~ "The Enterprise version comes with a different update system, with fully " #~ "tested, professionally-supported packages, and our support team is there to " #~ "help you in case of problems or queries. Update Manager is another feature " -#~ "present in the Enterprise version and not included in the OpenSource " -#~ "version. There are lots of advanced business-oriented features contained in " -#~ "Pandora FMS Enterprise Edition. For more information visit pandorafms.com" #~ msgstr "" -#~ "Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新シ" -#~ "ステムです。我々のサポートチームが問題や問い合わせに対して対応します。" -#~ "Enterprise版のアップデートマネージャには、オープンソース版には無い異なる機能" -#~ "があります。Pandora FMS Enterpriseには、多くのビジネス向けの機能が含まれてい" -#~ "ます。より詳細は、pandorafms.comを参照" -#~ "してください。" +#~ "Enterprise版では、完全にテストされ、サポートされたパッケージでの異なる更新シス" +#~ "テムです。我々のサポートチームが問題や問い合わせに対して対応します。Enterprise" +#~ "版のアップデートマネージャには、オープンソース版には無い異なる機能があります。" +#~ "Pandora FMS Enterpriseには、多くのビジネス向けの機能が含まれています。より詳細" +#~ "は、pandorafms.comを参照してください。" #~ msgid "" #~ "The Update Manager client is included on Pandora FMS. It helps system " @@ -60724,46 +60205,46 @@ msgstr "" #~ "Manager retrieves new modules, new plugins and new features (even full " #~ "migrations tools for future versions) automatically." #~ msgstr "" -#~ "アップデートマネージャクライアントは、Pandora FMS に含まれています。" -#~ "Pandorra FMS を自動的に更新する処理をサポートします。アップデートマネージャ" -#~ "は、新たなモジュール、新たなプラグインおよび新たな機能(将来のバージョンへの" -#~ "マイグレーションツールを含む)を自動的に取り込みます。" +#~ "アップデートマネージャクライアントは、Pandora FMS に含まれています。Pandorra " +#~ "FMS を自動的に更新する処理をサポートします。アップデートマネージャは、新たなモ" +#~ "ジュール、新たなプラグインおよび新たな機能(将来のバージョンへのマイグレーショ" +#~ "ンツールを含む)を自動的に取り込みます。" #~ msgid "" #~ "Access to this page is restricted to authorized users only, please contact " #~ "system administrator if you need assistance.

\n" -#~ "\tPlease know that all attempts to access this page are recorded in " -#~ "security logs of Pandora System Database" +#~ "\tPlease know that all attempts to access this page are recorded in security " +#~ "logs of Pandora System Database" #~ msgstr "" -#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシ" -#~ "ステム管理者へ連絡してください。

\n" -#~ "\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログ" -#~ "に記録されます。" +#~ "このページへのアクセスは許可されたユーザのみ可能です。手助けが必要であればシス" +#~ "テム管理者へ連絡してください。

\n" +#~ "\tこのページへのアクセスは、Pandora のシステムデータベースのセキュリティログに" +#~ "記録されます。" #~ msgid "" #~ "Report generating on the Enterprise version is also more powerful: it has " -#~ "wizards, you can schedule emails in PDF to be sent according to the " -#~ "schedule you decide, and it has a template system to create personalized " -#~ "reports quickly for each of your customers. It will even allow your " -#~ "customers to generate their own reports from templates created by you. If " -#~ "reports are key to your business, Pandora FMS Enterprise version is for you." +#~ "wizards, you can schedule emails in PDF to be sent according to the schedule " +#~ "you decide, and it has a template system to create personalized reports " +#~ "quickly for each of your customers. It will even allow your customers to " +#~ "generate their own reports from templates created by you. If reports are key " +#~ "to your business, Pandora FMS Enterprise version is for you." #~ msgstr "" -#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュール" -#~ "で PDF を送信することができます。また、あなたの顧客ごとに個別のレポートを素" -#~ "早く作成できるテンプレートシステムがあります。作成したテンプレートから、顧客" -#~ "自身が独自のレポートを生成することもできます。レポートがビジネスにとって重要" -#~ "であるならば、Pandora FMS Enteprise はあなたの要望にマッチします。" +#~ "Enterprise版のレポートはより強力です。ウィザードがあり、決めたスケジュールで " +#~ "PDF を送信することができます。また、あなたの顧客ごとに個別のレポートを素早く作" +#~ "成できるテンプレートシステムがあります。作成したテンプレートから、顧客自身が独" +#~ "自のレポートを生成することもできます。レポートがビジネスにとって重要であるなら" +#~ "ば、Pandora FMS Enteprise はあなたの要望にマッチします。" #~ msgid "" #~ "This system has too many modules per agent. OpenSource version could manage " -#~ "thousands of modules, but is not recommended to have more than 40 modules " -#~ "per agent. This configuration has B/A modules per agent. Checkout the " -#~ "Enterprise Version for a professional supported system." +#~ "thousands of modules, but is not recommended to have more than 40 modules per " +#~ "agent. This configuration has B/A modules per agent. Checkout the Enterprise " +#~ "Version for a professional supported system." #~ msgstr "" #~ "このシステムは、一つのエージェントあたりのモジュール数が多すぎです。オープン" -#~ "ソース版では数千のモジュールを管理することができますが、一つのエージェント" -#~ "で 40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認" -#~ "してください。" +#~ "ソース版では数千のモジュールを管理することができますが、一つのエージェントで " +#~ "40以上はお勧めしません。プロフェッショナルサポートは、Enterprise版を確認してく" +#~ "ださい。" #~ msgid "Status of module" #~ msgstr "モジュールの状態" @@ -60795,13 +60276,12 @@ msgstr "" #~ msgid "No Dashboards" #~ msgstr "ダッシュボードがありません" -#~ msgid "" -#~ "Select the path where SimpleSAML has been installed (by default '/opt/')" +#~ msgid "Select the path where SimpleSAML has been installed (by default '/opt/')" #~ msgstr "SimpleSAML がインストールされているパスを選択 (デフォルトは '/opt/')" #~ msgid "" -#~ "The alert would fire when the value is not between and " +#~ "The alert would fire when the value is not between " +#~ "and " #~ msgstr "" #~ "値がの間に無い場合" #~ "に、アラートを発報します。" @@ -60815,8 +60295,8 @@ msgstr "" #~ msgid "" #~ "Cannot connect to the database, please check your database setup in the " #~ "include/config.php file.

\n" -#~ "\t\t\tProbably your database, hostname, user or password values are " -#~ "incorrect or\n" +#~ "\t\t\tProbably your database, hostname, user or password values are incorrect " +#~ "or\n" #~ "\t\t\tthe database server is not running." #~ msgstr "" #~ "データベースに接続できません。 include/config.php ファイル内のデータ" @@ -60831,21 +60311,20 @@ msgstr "" #~ msgid "" #~ "For security reasons, config.php must have restrictive permissions, " #~ "and \"other\" users\n" -#~ "\t\t\tshould not read it or write to it. It should be written only for " -#~ "owner\n" +#~ "\t\t\tshould not read it or write to it. It should be written only for owner\n" #~ "\t\t\t(usually www-data or http daemon user), normal operation is not " #~ "possible until you change\n" -#~ "\t\t\tpermissions for include/config.php file. Please do it, it is " -#~ "for your security." +#~ "\t\t\tpermissions for include/config.php file. Please do it, it is for " +#~ "your security." #~ msgstr "" -#~ "セキュリティ上の理由により、 config.php は制限されたパーミッションで" -#~ "ある必要があります。\n" +#~ "セキュリティ上の理由により、 config.php は制限されたパーミッションであ" +#~ "る必要があります。\n" #~ "\t\t\t\"other\"ユーザは読み書きできないようにし、所有者(通常は www-data や " #~ "http デーモンの\n" -#~ "\t\t\tユーザ)のみが書き込みできるようにします。include/config.php " -#~ "ファイルの\n" -#~ "\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために" -#~ "調整をしてください。" +#~ "\t\t\tユーザ)のみが書き込みできるようにします。include/config.php ファ" +#~ "イルの\n" +#~ "\t\t\tパーミッションを修正するまで通常の動作をしません。セキュリティのために調" +#~ "整をしてください。" #~ msgid "Percentil 95" #~ msgstr "95パーセント" @@ -60857,11 +60336,11 @@ msgstr "" #~ msgstr " のモジュール " #~ msgid "" -#~ "Event history is ONLY used for event reports, is not used in graphs or " -#~ "event viewer." +#~ "Event history is ONLY used for event reports, is not used in graphs or event " +#~ "viewer." #~ msgstr "" -#~ "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には" -#~ "利用されません。" +#~ "イベントヒストリはイベントレポートにのみ利用されます。グラフやグラフ表示には利" +#~ "用されません。" #~ msgid "Time Not init" #~ msgstr "未初期化時間" @@ -60886,9 +60365,9 @@ msgstr "" #~ "problems and you lost data. Recommended that event days purge will more " #~ "taller than event days to history DB" #~ msgstr "" -#~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く" -#~ "設定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒス" -#~ "トリデータベースへイベントを移す日よりも後に設定してください。" +#~ "イベントの削除タイミングを、ヒストリデータベースへイベントを移す日よりも短く設" +#~ "定していると、問題が発生しデータを失ってしまいます。イベントの削除は、ヒストリ" +#~ "データベースへイベントを移す日よりも後に設定してください。" #~ msgid "Time Uknown" #~ msgstr "不明時間" @@ -60909,18 +60388,18 @@ msgstr "" #~ msgstr "メインヘルプ" #~ msgid "" -#~ "This is the online help for Pandora FMS console. This help is -in best " -#~ "cases- just a brief contextual help, not intented to teach you how to use " -#~ "Pandora FMS. Official documentation of Pandora FMS is about 900 pages, and " -#~ "you probably don't need to read it entirely, but sure, you should download " -#~ "it and take a look.

\n" +#~ "This is the online help for Pandora FMS console. This help is -in best cases- " +#~ "just a brief contextual help, not intented to teach you how to use Pandora " +#~ "FMS. Official documentation of Pandora FMS is about 900 pages, and you " +#~ "probably don't need to read it entirely, but sure, you should download it and " +#~ "take a look.

\n" #~ "\tDownload the official documentation" #~ msgstr "" -#~ "Pandora FMS コンソールのオンラインヘルプです。これは、その場で最適な手助けを" -#~ "するのもであり、Pandora FMS の使い方を教えるものではありません。Pandora FMS " -#~ "の公式ドキュメントは約 900ページあり全体を読む必要はありません。しかしダウン" -#~ "ロードして確認すると良いでしょう。

\n" +#~ "Pandora FMS コンソールのオンラインヘルプです。これは、その場で最適な手助けをす" +#~ "るのもであり、Pandora FMS の使い方を教えるものではありません。Pandora FMS の公" +#~ "式ドキュメントは約 900ページあり全体を読む必要はありません。しかしダウンロード" +#~ "して確認すると良いでしょう。

\n" #~ "\t公式ドキュメントをダウンロード" @@ -61003,16 +60482,16 @@ msgstr "" #~ msgstr "画面サイズ制限のため、ビジュアルコンソールは表示されません" #~ msgid "" -#~ "To enable the plugin execution, this extension needs the Cron jobs " -#~ "extension installed.\n" +#~ "To enable the plugin execution, this extension needs the Cron jobs extension " +#~ "installed.\n" #~ "\tKeep in mind that the Cron jobs execution period will be the less real " #~ "execution period, so if you want to run the plugin every\n" #~ "\t5 minutes, for example, the Cron jobs script should be configured in the " #~ "cron to run every 5 minutes or less" #~ msgstr "" -#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストー" -#~ "ルされている必要があります。\n" -#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してくださ" -#~ "い。たとえば、プラグインを 5分間隔で\n" -#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行す" -#~ "るよう cron を設定する必要があります。" +#~ "プラグインの実行を有効化するために、この拡張では Cron ジョブ拡張がインストール" +#~ "されている必要があります。\n" +#~ "\tCron ジョブ実行間隔は、実際の実行間隔よりも短くすることに注意してください。" +#~ "たとえば、プラグインを 5分間隔で\n" +#~ "\t実行したい場合は、Cron ジョブスクリプトは 5分またはそれ未満の間隔で実行する" +#~ "よう cron を設定する必要があります。" From 8c35fdbce8dcdd4953b112992579e58d0df64e36 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 24 May 2023 09:32:29 +0200 Subject: [PATCH 223/533] #11330 fixed pagination in network map --- pandora_console/operation/agentes/pandora_networkmap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/agentes/pandora_networkmap.php b/pandora_console/operation/agentes/pandora_networkmap.php index c3f7786a2e..57573bca44 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.php +++ b/pandora_console/operation/agentes/pandora_networkmap.php @@ -842,7 +842,7 @@ switch ($tab) { } html_print_table($table); - $tablePagination = ui_pagination($count_maps, false, 0, 0, true, 'offset', false); + $tablePagination = ui_pagination($count_maps, false, $offset, $limit, true, 'offset', false); } else { ui_print_info_message(['no_close' => true, 'message' => __('There are no maps defined.') ]); } From 2952b1244b5ac8fa5bee83e589a7ca46dc59582c Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 24 May 2023 11:52:59 +0200 Subject: [PATCH 224/533] #11294 Fixed general search for policies --- pandora_console/operation/search_policies.getdata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/search_policies.getdata.php b/pandora_console/operation/search_policies.getdata.php index 4a8b656f09..00233d2936 100644 --- a/pandora_console/operation/search_policies.getdata.php +++ b/pandora_console/operation/search_policies.getdata.php @@ -201,7 +201,7 @@ if ($searchpolicies === true) { and which the user have permission on this groups */ - $user_groups = users_get_groups($config['id_user'], 'AR', false); + $user_groups = users_get_groups($config['id_user'], 'AR', true); $id_user_groups = array_keys($user_groups); $id_user_groups_str = implode(',', $id_user_groups); From b422bf75b29fb9bcae3318e0aad721e033877706 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 24 May 2023 13:03:31 +0200 Subject: [PATCH 225/533] Fixed scrolling of the database tab --- pandora_console/include/functions_menu.php | 6 +++--- pandora_console/include/styles/pandora.css | 6 ++++++ pandora_console/include/styles/pandora_black.css | 6 ++++++ 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 6d60af2bf1..14ca2c87f6 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -1070,7 +1070,7 @@ if (is_ajax()) {

'.$db_info->data->dbSize->name.'

-

'.$db_info->data->dbSize->value.'

+

'.$db_info->data->dbSize->value.'

@@ -1084,7 +1084,7 @@ if (is_ajax()) {

'.$db_fragmentation->data->tablesFragmentationMax->name.'

-

'.$db_fragmentation->data->tablesFragmentationMax->value.'

+

'.$db_fragmentation->data->tablesFragmentationMax->value.'

@@ -1092,7 +1092,7 @@ if (is_ajax()) {

'.$db_fragmentation->data->tablesFragmentationValue->name.'

-

'.$db_fragmentation->data->tablesFragmentationValue->value.'

+

'.$db_fragmentation->data->tablesFragmentationValue->value.'

diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 43cc9106e7..f2c9e5b8c2 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -11557,6 +11557,12 @@ p.trademark-copyright { overflow: hidden; } +#tab-database { + height: 80%; + overflow: auto; + width: 96%; +} + .item_status_tree_view { position: absolute; top: 7px; diff --git a/pandora_console/include/styles/pandora_black.css b/pandora_console/include/styles/pandora_black.css index 1b95063c7c..45430ed69e 100644 --- a/pandora_console/include/styles/pandora_black.css +++ b/pandora_console/include/styles/pandora_black.css @@ -1389,6 +1389,12 @@ p.trademark-copyright { overflow: hidden; } +#tab-database { + height: 80%; + overflow: auto; + width: 96%; +} + button.buttonButton, button.submitButton { box-shadow: 0px 3px 6px #111; From 68c86b31566ffc2ad8a0a73288555dce441b7ab4 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 25 May 2023 01:00:18 +0200 Subject: [PATCH 226/533] 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 2203291695..4ab4bf48f0 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-230524 +Version: 7.0NG.771-230525 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 f9160c0f5c..0393f7b5ce 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-230524" +pandora_version="7.0NG.771-230525" 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 3fd3989614..284f275e4e 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 => '230524'; +use constant AGENT_BUILD => '230525'; # 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 d52585d984..c35fbfa5e0 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 230524 +%define release 230525 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 486dc69d55..7629af6018 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 230524 +%define release 230525 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 0c889f78bc..1826580069 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="230524" +PI_BUILD="230525" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 381e0cd72d..fc9481110a 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230524} +{230525} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 3db581ee83..cba140b48a 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 230524") +#define PANDORA_VERSION ("7.0NG.771 Build 230525") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index e1abd5469d..731ed864f2 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 230524))" + VALUE "ProductVersion", "(7.0NG.771(Build 230525))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 9d471d88c9..94e5f5b41c 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230524 +Version: 7.0NG.771-230525 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 b1c8e42812..ebca9ba770 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-230524" +pandora_version="7.0NG.771-230525" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 7a795464ff..84ea583681 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 = 'PC230524'; +$build_version = 'PC230525'; $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 6d195db5a8..f771b62a7f 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 b5bd488eeb..75396e8380 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 230524 +%define release 230525 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index f916f1d67b..851f6ec605 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 230524 +%define release 230525 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 17cc585f51..ed36f3e41c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230524" +PI_BUILD="230525" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 91c5570925..8a10f085da 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 230524"; +my $version = "7.0NG.771 Build 230525"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 80a13f578d..f6404997ba 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 230524"; +my $version = "7.0NG.771 Build 230525"; # save program name for logging my $progname = basename($0); From 651894953a3e68c338d3b07302dbf5ecefdb41ea Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 25 May 2023 09:36:58 +0200 Subject: [PATCH 227/533] #11340 fixed Dynamic report in metaconsole --- pandora_console/include/functions_graph.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index d1702ef9d6..355315223d 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -1600,9 +1600,15 @@ function graphic_combined_module( if (is_metaconsole()) { metaconsole_restore_db(); - $server = metaconsole_get_connection_by_id( - isset($agent_module_id['server']) ? $agent_module_id['server'] : $source['id_server'] - ); + if (isset($agent_module_id['server'])) { + $id_server = $agent_module_id['server']; + } else if (isset($agent_module_id['id_server'])) { + $id_server = $agent_module_id['id_server']; + } else { + $id_server = $source['id_server']; + } + + $server = metaconsole_get_connection_by_id($id_server); if (metaconsole_connect($server) != NOERR) { continue; } From 8a62bcf28318243e109105419782fcc951655224 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 25 May 2023 09:51:20 +0200 Subject: [PATCH 228/533] #11277 Fixed public_dashboard with saml --- pandora_console/ajax.php | 2 +- pandora_console/operation/dashboard/public_dashboard.php | 6 ------ 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/pandora_console/ajax.php b/pandora_console/ajax.php index bea9dfc771..67ce4e382b 100644 --- a/pandora_console/ajax.php +++ b/pandora_console/ajax.php @@ -185,7 +185,7 @@ if (isset($config['force_instant_logout']) === true header_remove('Set-Cookie'); setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); - if ($config['auth'] === 'saml') { + if ($config['auth'] === 'saml' && empty($public_hash) === true) { include_once $config['saml_path'].'simplesamlphp/lib/_autoload.php'; $as = new SimpleSAML_Auth_Simple('PandoraFMS'); $as->logout(); diff --git a/pandora_console/operation/dashboard/public_dashboard.php b/pandora_console/operation/dashboard/public_dashboard.php index 33d6ffd199..9af12f7581 100644 --- a/pandora_console/operation/dashboard/public_dashboard.php +++ b/pandora_console/operation/dashboard/public_dashboard.php @@ -52,12 +52,6 @@ if ($config['force_instant_logout'] === true) { session_destroy(); header_remove('Set-Cookie'); setcookie(session_name(), $_COOKIE[session_name()], (time() - 4800), '/'); - - if ($config['auth'] == 'saml') { - include_once $config['saml_path'].'simplesamlphp/lib/_autoload.php'; - $as = new SimpleSAML_Auth_Simple('PandoraFMS'); - $as->logout(); - } } while (ob_get_length() > 0) { From cccb03010c5469deeb4cab2f68f27d1c1addc515 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 25 May 2023 10:30:34 +0200 Subject: [PATCH 229/533] #10851 change date order to asc and fix sql query --- pandora_console/include/functions_inventory.php | 12 ++++++++---- .../operation/agentes/agent_inventory.php | 5 ++--- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 9bda1f17a1..2430b69163 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -750,14 +750,16 @@ function inventory_get_datatable( tagent_module_inventory.*, tagente.alias as name_agent, tagente_datos_inventory.utimestamp as last_update, - tagente_datos_inventory.timestamp as last_update_timestamp + tagente_datos_inventory.timestamp as last_update_timestamp, + tagente_datos_inventory.data as data_inventory FROM tmodule_inventory INNER JOIN tagent_module_inventory ON tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + INNER JOIN tagente_datos_inventory + ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory LEFT JOIN tagente ON tagente.id_agente = tagent_module_inventory.id_agente - LEFT JOIN tagente_datos_inventory - ON tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory + WHERE %s ORDER BY tmodule_inventory.id_module_inventory LIMIT %d, %d', @@ -766,6 +768,8 @@ function inventory_get_datatable( $config['block_size'] ); + hd($sql, true); + $rows = db_get_all_rows_sql($sql); if ($order_by_agent === false) { @@ -775,7 +779,7 @@ function inventory_get_datatable( $row['timestamp'] = $row['last_update_timestamp']; } - $data_rows = explode(PHP_EOL, $row['data']); + $data_rows = explode(PHP_EOL, $row['data_inventory']); foreach ($data_rows as $data_key => $data_value) { if (empty($data_value) === false) { $row['data'] = $data_value; diff --git a/pandora_console/operation/agentes/agent_inventory.php b/pandora_console/operation/agentes/agent_inventory.php index 9ae081186b..b378f0f810 100644 --- a/pandora_console/operation/agentes/agent_inventory.php +++ b/pandora_console/operation/agentes/agent_inventory.php @@ -90,13 +90,12 @@ $utimestamps = db_get_all_rows_sql( FROM tmodule_inventory, tagent_module_inventory, tagente_datos_inventory WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory - AND tagent_module_inventory.%s', + AND tagent_module_inventory.%s ORDER BY tagente_datos_inventory.utimestamp DESC', ($module !== 0) ? 'id_module_inventory = '.$module : 'id_agente = '.$id_agente ) ); $utimestamps = (empty($utimestamps) === true) ? [] : extract_column($utimestamps, 'utimestamp'); - $utimestampSelectValues = array_reduce( $utimestamps, function ($acc, $utimestamp) use ($config) { @@ -143,7 +142,7 @@ $table->data[0][1] = html_print_label_input_block( 0, true, false, - true, + false, '', false, 'width:100%;' From ec334f252e884aa56251dc4eb55e70b1e61f4d41 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Thu, 25 May 2023 11:38:01 +0200 Subject: [PATCH 230/533] #11267 fix inverse critical switch template load --- pandora_console/include/javascript/pandora_modules.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 220459bacd..a5e55809fb 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -492,7 +492,7 @@ function configure_modules_form() { data["unit"] == "" ? "" : data["unit"] ); - $("#checkbox-critical_inverse").prop( + $("#checkbox-critical_inverse_string").prop( "checked", data["critical_inverse"] ); From 0e28ed2cb519dd1e6eb777243aa1477d6871ca98 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 25 May 2023 12:40:32 +0200 Subject: [PATCH 231/533] #11345 removed console.log --- pandora_console/include/javascript/pandora_modules.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 220459bacd..ea110c37f3 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -1544,10 +1544,7 @@ function changePlugin() { var pluginDescription = pluginAllData.description; var pluginMacros = pluginAllData.macros; - console.log(pluginAllData.macrosElement); var pluginMacrosElement = JSON.parse(atob(pluginAllData.macrosElement)); - console.log(pluginMacrosElement); - var displayShow = "none"; if (executionType == EXECUTION_TYPE_NETWORK) { displayShow = "none"; From 662329793a5594f0237c82f3bfe98f73a3bb968c Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 25 May 2023 14:25:18 +0200 Subject: [PATCH 232/533] fixed bug for different types of SQL reports --- .../godmode/reporting/reporting_builder.item_editor.php | 2 +- pandora_console/godmode/reporting/reporting_builder.php | 9 ++++++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 64f2c4659c..38ac32b635 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -1219,7 +1219,7 @@ $class = 'databox filters'; Date: Thu, 25 May 2023 14:58:33 +0200 Subject: [PATCH 233/533] #11153 Fixed the size of the steps so that it doesn't take up 100% --- pandora_console/include/styles/pandora.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index ef19fbdb13..9f08a3c281 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -12071,8 +12071,9 @@ div.parent_graph > p.legend_background > table > tbody > tr { .steps { display: flex; + justify-content: space-between; align-items: center; - width: 100%; + width: 70%; } .step { From 5d8293df1d8199fc3e0bf0d9461d5660cdae2914 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 25 May 2023 17:14:23 +0200 Subject: [PATCH 234/533] #11250 removed blank space --- pandora_console/include/class/AgentWizard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 4e65b3f551..6737cf5a34 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -325,7 +325,7 @@ class AgentWizard extends HTML $this->wizardSection = get_parameter('wizard_section', 'snmp_explorer'); $this->idAgent = get_parameter('id_agente', ''); $this->idPolicy = get_parameter('id', ''); - $this->targetIp = get_parameter('targetIp', ''); + $this->targetIp = trim(get_parameter('targetIp', ''), ' '); $this->wmiBinary = $config['wmiBinary']; $this->defaultSNMPValues = (array) json_decode(io_safe_output($config['agent_wizard_defaults'])); From b921e61882a36baefc1656ca5a4b93aeaf0c8761 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 26 May 2023 01:00:18 +0200 Subject: [PATCH 235/533] 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 4ab4bf48f0..738d82859a 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-230525 +Version: 7.0NG.771-230526 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 0393f7b5ce..0f2a8b9a64 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-230525" +pandora_version="7.0NG.771-230526" 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 284f275e4e..41faa4189c 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 => '230525'; +use constant AGENT_BUILD => '230526'; # 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 c35fbfa5e0..e65a057a1f 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 230525 +%define release 230526 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 7629af6018..9384ca50d8 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 230525 +%define release 230526 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 1826580069..40246f249e 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="230525" +PI_BUILD="230526" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index fc9481110a..85cf1478e9 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230525} +{230526} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index cba140b48a..76e4a97a68 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 230525") +#define PANDORA_VERSION ("7.0NG.771 Build 230526") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 731ed864f2..4a9570c10f 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 230525))" + VALUE "ProductVersion", "(7.0NG.771(Build 230526))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 94e5f5b41c..fdb6f97015 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230525 +Version: 7.0NG.771-230526 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 ebca9ba770..1a4058f752 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-230525" +pandora_version="7.0NG.771-230526" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 84ea583681..5c69e24da3 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 = 'PC230525'; +$build_version = 'PC230526'; $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 f771b62a7f..b0948156d4 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 75396e8380..39068c81ff 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 230525 +%define release 230526 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 851f6ec605..378e3ceeeb 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 230525 +%define release 230526 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index ed36f3e41c..2d9c7b6fdb 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230525" +PI_BUILD="230526" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 8a10f085da..bf57f5573f 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 230525"; +my $version = "7.0NG.771 Build 230526"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index f6404997ba..43ccece3d3 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 230525"; +my $version = "7.0NG.771 Build 230526"; # save program name for logging my $progname = basename($0); From bd453ea1deec1f10e6e0a370b0dc6919fb2553e7 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 26 May 2023 08:36:56 +0200 Subject: [PATCH 236/533] #10851 Fix inventory date filter and last update query --- .../include/functions_inventory.php | 26 ++++++++++++++----- .../operation/inventory/inventory.php | 2 +- 2 files changed, 20 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 2430b69163..c91a375225 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -707,6 +707,17 @@ function inventory_get_datatable( ) { global $config; + if ($utimestamp === 0) { + $data_last = db_get_row_sql( + sprintf( + 'SELECT `utimestamp`, `timestamp` + FROM tagente_datos_inventory + ORDER BY utimestamp DESC' + ) + ); + $utimestamp = $data_last['utimestamp']; + } + $offset = (int) get_parameter('offset'); $where = []; @@ -742,7 +753,7 @@ function inventory_get_datatable( } if ($utimestamp > 0) { - array_push($where, 'tagente_datos_inventory.utimestamp <= '.$utimestamp.' '); + array_push($where, 'tagente_datos_inventory.utimestamp = '.$utimestamp.' '); } $sql = sprintf( @@ -768,8 +779,6 @@ function inventory_get_datatable( $config['block_size'] ); - hd($sql, true); - $rows = db_get_all_rows_sql($sql); if ($order_by_agent === false) { @@ -797,16 +806,17 @@ function inventory_get_datatable( $agent_data[$row['id_agente']][] = $row; } - foreach ($agent_data as $id_agent => $rows) { + foreach ($agent_data as $id_agent => $data_rows) { $rows_tmp['agent'] = $row['name_agent']; - foreach ($rows as $row) { + foreach ($data_rows as $row) { if ($utimestamp > 0) { $data_row = db_get_row_sql( sprintf( 'SELECT `data`, - `timestamp` + `timestamp`, + `utimestamp` FROM tagente_datos_inventory - WHERE utimestamp <= "%s" + WHERE utimestamp = "%s" AND id_agent_module_inventory = %d ORDER BY utimestamp DESC', $utimestamp, @@ -817,12 +827,14 @@ function inventory_get_datatable( if ($data_row !== false) { $row['data'] = $data_row['data']; $row['timestamp'] = $data_row['timestamp']; + $row['utimestamp'] = $data_row['utimestamp']; } else { continue; } } } + $rows[0]['timestamp'] = $row['timestamp']; $rows_tmp['row'] = $rows; array_push($agents_rows, $rows_tmp); } diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index ba45efe85a..fd30943e8d 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -690,7 +690,7 @@ if (is_metaconsole() === false) { 0, true, false, - true, + false, '', false, 'width:100%;' From 913775c0d33a3324b5fb4e9491d527c9f1da685c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 08:57:45 +0200 Subject: [PATCH 237/533] #11262 added new token in modules by status for filter disabled modules --- pandora_console/include/ajax/module.php | 7 +++++- .../lib/Dashboard/Widgets/ModulesByStatus.php | 23 +++++++++++++++++++ 2 files changed, 29 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index b20bad2a18..4e6dbbea60 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1713,6 +1713,7 @@ if (check_login()) { $length = ($length != '-1') ? $length : '18446744073709551615'; $order = get_datatable_order(true); $nodes = get_parameter('nodes', 0); + $disabled_modules = (bool) get_parameter('disabled_modules', false); $where = ''; $recordsTotal = 0; @@ -1737,9 +1738,13 @@ if (check_login()) { $where .= sprintf( 'tagente_estado.estado IN (%s) AND tagente_modulo.delete_pending = 0', - $status + $status, ); + if ($disabled_modules === false) { + $where .= ' AND tagente_modulo.disabled = 0'; + } + if (is_metaconsole() === false) { $order_by = ''; switch ($order['field']) { diff --git a/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php b/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php index 01a8781606..a48ae20724 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php @@ -216,6 +216,10 @@ class ModulesByStatus extends Widget $values['nodes'] = $decoder['nodes']; } + if (isset($decoder['disabled_modules']) === true) { + $values['disabled_modules'] = $decoder['disabled_modules']; + } + return $values; } @@ -248,6 +252,23 @@ class ModulesByStatus extends Widget ], ]; + $inputs[] = [ + 'label' => html_print_div( + [ + 'class' => 'flex', + 'content' => __('Disabled modules').ui_print_help_tip(__('Include disabled modules'), true), + ], + true + ), + 'arguments' => [ + 'id' => 'disabled_modules', + 'name' => 'disabled_modules', + 'type' => 'switch', + 'value' => ($values['disabled_modules'] === null) ? true : $values['disabled_modules'], + 'return' => true, + ], + ]; + // Status fields. $status_fields = []; $status_fields[AGENT_MODULE_STATUS_NORMAL] = __('Normal'); @@ -356,6 +377,7 @@ class ModulesByStatus extends Widget $values['status'] = \get_parameter('status', ''); $values['limit'] = \get_parameter('limit', ''); $values['nodes'] = \get_parameter('nodes', ''); + $values['disabled_modules'] = \get_parameter_switch('disabled_modules'); return $values; } @@ -426,6 +448,7 @@ class ModulesByStatus extends Widget 'search' => $this->values['search'], 'status' => $this->values['status'], 'nodes' => $this->values['nodes'], + 'disabled_modules' => $this->values['disabled_modules'], ], 'default_pagination' => $this->values['limit'], 'order' => [ From 0c180f7ed3c9ee9c0190ef6656f2514659f2908b Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 26 May 2023 09:59:08 +0200 Subject: [PATCH 238/533] #11371 Fix inner join error and fix data array --- pandora_console/include/functions_inventory.php | 14 ++++++++------ pandora_console/operation/inventory/inventory.php | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 2beed2f0dc..78aca29867 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -818,9 +818,16 @@ function inventory_get_datatable( function get_data_basic_info_sql($params, $count=false) { + $table = 'tagente'; + if (is_metaconsole() === true) { + $table = 'tmetaconsole_agent'; + } + $where = 'WHERE 1=1 '; - if ($params['id_agent'] > 0) { + if ($params['id_agent'] > 0 && $count === true) { $where .= sprintf(' AND id_agente = %d', $params['id_agent']); + } else if ($params['id_agent'] > 0 && $count === false) { + $where .= sprintf(' AND %s.id_agente = %d', $table, $params['id_agent']); } if ($params['id_group'] > 0) { @@ -897,11 +904,6 @@ function get_data_basic_info_sql($params, $count=false) $innerjoin = ''; $groupby = ''; - $table = 'tagente'; - if (is_metaconsole() === true) { - $table = 'tmetaconsole_agent'; - } - if ($count !== true) { $fields = '*'; $innerjoin = 'LEFT JOIN tagente_estado ON '.$table.'.id_agente = tagente_estado.id_agente '; diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index a402444fff..d706221db2 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -1041,9 +1041,9 @@ if ($inventory_module !== 'basic') { $row) { + $data = []; $columns = explode(';', io_safe_output($row['data_format'])); array_push($columns, 'Timestamp'); From 68c9328b4e43f3bbe4cdf4d8ed8e2bc7c8b944e3 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 26 May 2023 10:51:26 +0200 Subject: [PATCH 239/533] #11250 removed blank space 2 --- pandora_console/include/class/AgentWizard.class.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 6737cf5a34..2278cae9d4 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -325,7 +325,7 @@ class AgentWizard extends HTML $this->wizardSection = get_parameter('wizard_section', 'snmp_explorer'); $this->idAgent = get_parameter('id_agente', ''); $this->idPolicy = get_parameter('id', ''); - $this->targetIp = trim(get_parameter('targetIp', ''), ' '); + $this->targetIp = io_safe_input(trim(io_safe_output(get_parameter('targetIp', '')))); $this->wmiBinary = $config['wmiBinary']; $this->defaultSNMPValues = (array) json_decode(io_safe_output($config['agent_wizard_defaults'])); From 526168e0eb6b77cd4ae444fdcaa4dbd1b2745050 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 26 May 2023 11:57:51 +0200 Subject: [PATCH 240/533] #11361 SLA Grpah correction PDF Metaconsole --- pandora_console/include/chart_generator.php | 5 ++++ pandora_console/include/functions.php | 23 +++++++++++++++++++ .../include/graphs/functions_flot.php | 5 ++-- 3 files changed, 31 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/chart_generator.php b/pandora_console/include/chart_generator.php index 62701365e5..2695b89c22 100644 --- a/pandora_console/include/chart_generator.php +++ b/pandora_console/include/chart_generator.php @@ -46,6 +46,8 @@ if (json_last_error() === JSON_ERROR_NONE) { $session_id = $data_decoded['session_id']; $type_graph_pdf = $data_decoded['type_graph_pdf']; $id_user = $data_decoded['id_user']; + $slicebar = $data_decoded['slicebar']; + $slicebar_value = $data_decoded['slicebar_value']; $data_combined = []; if (isset($data_decoded['data_combined']) === true) { @@ -64,6 +66,9 @@ global $config; // Care whit this!!! check_login not working if you remove this. $config['id_user'] = $id_user; $_SESSION['id_usuario'] = $id_user; +if (!isset($config[$slicebar])) { + $config[$slicebar] = $slicebar_value; +} // Try to initialize session using existing php session id. $user = new PandoraFMS\User(['phpsessionid' => $session_id]); diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 81799a549d..7f59f6e598 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -3548,6 +3548,25 @@ function update_config_token($cfgtoken, $cfgvalue) } +function update_check_config_token($cfgtoken, $cfgvalue) +{ + global $config; + db_process_sql('START TRANSACTION'); + if (isset($config[$cfgtoken])) { + delete_config_token($cfgtoken); + } + + $insert = db_process_sql(sprintf("INSERT INTO tconfig (token, value) VALUES ('%s', '%s')", $cfgtoken, $cfgvalue)); + db_process_sql('COMMIT'); + if ($insert) { + $config[$cfgtoken] = $cfgvalue; + return true; + } else { + return false; + } +} + + function delete_config_token($cfgtoken) { $delete = db_process_sql(sprintf('DELETE FROM tconfig WHERE token = "%s"', $cfgtoken)); @@ -4284,6 +4303,8 @@ function generator_chart_to_pdf( 'data_module_list' => $module_list, 'data_combined' => $params_combined, 'id_user' => $config['id_user'], + 'slicebar' => $_SESSION['slicebar'], + 'slicebar_value' => $config[$_SESSION['slicebar']], ]; } else { $data = [ @@ -4291,6 +4312,8 @@ function generator_chart_to_pdf( 'session_id' => $session_id, 'type_graph_pdf' => $type_graph_pdf, 'id_user' => $config['id_user'], + 'slicebar' => $_SESSION['slicebar'], + 'slicebar_value' => $config[$_SESSION['slicebar']], ]; } diff --git a/pandora_console/include/graphs/functions_flot.php b/pandora_console/include/graphs/functions_flot.php index 1ee377f290..d1856b7b4c 100644 --- a/pandora_console/include/graphs/functions_flot.php +++ b/pandora_console/include/graphs/functions_flot.php @@ -756,8 +756,9 @@ function flot_slicesbar_graph( 'server_id' => $server_id, ]; // TO-DO Cambiar esto para que se pase por POST, NO SE PUEDE PASAR POR GET. - update_config_token($tokem_config, json_encode($graph_data)); - + update_check_config_token($tokem_config, json_encode($graph_data)); + $_SESSION['slicebar'] = $tokem_config; + $_SESSION['slicebar_value'] = json_encode($graph_data); $graph = ''; From 4984e2608a6fc1db53a93a004ffafa4a9f7a4c35 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Fri, 26 May 2023 12:30:36 +0200 Subject: [PATCH 241/533] #11314 Collapses the boxes for modules, alerts and events when the agent does not have this information related --- pandora_console/operation/agentes/alerts_status.php | 3 ++- pandora_console/operation/agentes/estado_monitores.php | 2 +- pandora_console/operation/agentes/status_events.php | 3 ++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 8c251903af..6590131020 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -475,6 +475,7 @@ $html_content = ob_get_clean(); if ($agent_view_page === true) { // Create controlled toggle content. + $alerts_count = alerts_get_alerts(0, '', 'all', -1, $true, true, $agent['id_agente']); html_print_div( [ 'class' => 'agent_details_line', @@ -483,7 +484,7 @@ if ($agent_view_page === true) { ''.__('Full list of alerts').'', 'status_monitor_agent', !$alerts_defined, - false, + ($alerts_count > 0) ? false : true, true, '', '', diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php index 52a93fde85..5003068354 100755 --- a/pandora_console/operation/agentes/estado_monitores.php +++ b/pandora_console/operation/agentes/estado_monitores.php @@ -196,7 +196,7 @@ html_print_div( ).'', 'status_monitor_agent', false, - false, + ($agent['total_count'] > 0) ? false : true, true, '', 'white-box-content', diff --git a/pandora_console/operation/agentes/status_events.php b/pandora_console/operation/agentes/status_events.php index 478b0771c2..8f14d2e730 100755 --- a/pandora_console/operation/agentes/status_events.php +++ b/pandora_console/operation/agentes/status_events.php @@ -22,6 +22,7 @@ if (!isset($id_agente)) { require_once 'include/functions_events.php'; ui_require_css_file('events'); +$event_count = db_get_row('tevento', 'id_agente', $id_agente); html_print_div( [ 'class' => 'agent_details_line', @@ -30,7 +31,7 @@ html_print_div( ''.__('Latest events for this agent').'', __('Latest events for this agent'), 'latest_events_agent', - false, + ($event_count) ? false : true, true, '', 'box-flat white-box-content no_border', From 0e64721ca50e25071e1a723bba0a574d2d190a2c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 12:37:37 +0200 Subject: [PATCH 242/533] #11374 fixed bulk operation user --- pandora_console/godmode/massive/massive_add_profiles.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/massive/massive_add_profiles.php b/pandora_console/godmode/massive/massive_add_profiles.php index 38657bdf1c..6fa11d357f 100644 --- a/pandora_console/godmode/massive/massive_add_profiles.php +++ b/pandora_console/godmode/massive/massive_add_profiles.php @@ -109,7 +109,7 @@ if ($create_profiles) { } else { foreach ($profiles_id as $profile) { // Check profiles permissions for non admin user. - if (is_user_admin($config['user_id']) === false) { + if (is_user_admin($config['id_user']) === false) { $user_profiles = profile_get_profiles( [ 'pandora_management' => '<> 1', @@ -122,7 +122,7 @@ if ($create_profiles) { AUDIT_LOG_ACL_VIOLATION, 'Trying to add administrator profile whith standar user for user '.io_safe_input($user) ); - exit; + continue; } } @@ -132,7 +132,7 @@ if ($create_profiles) { AUDIT_LOG_ACL_VIOLATION, 'Trying to add profile group without permission for user '.io_safe_input($user) ); - exit; + continue; } foreach ($users_id as $user) { @@ -141,7 +141,7 @@ if ($create_profiles) { AUDIT_LOG_ACL_VIOLATION, 'Trying to edit user without permission for user '.io_safe_input($user) ); - exit; + continue; } $profile_data = db_get_row_filter('tusuario_perfil', ['id_usuario' => $user, 'id_perfil' => $profile, 'id_grupo' => $group]); From 6fc9b71a043318cb158101212bd78cb190c43579 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 26 May 2023 13:17:40 +0200 Subject: [PATCH 243/533] Os detection fix --- pandora_server/lib/PandoraFMS/Core.pm | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..b49139a60f 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -6689,40 +6689,40 @@ sub pandora_get_os ($$) { return 10; } - if ($os =~ m/Windows.*?(?=\(\d+%\))/i) { + if ($os =~ m/Windows/i) { return 9; } - if ($os =~ m/Cisco.*?(?=\(\d+%\))/i) { + if ($os =~ m/Cisco/i) { return 7; } - if ($os =~ m/SunOS.*?(?=\(\d+%\))/i || $os =~ m/Solaris.*?(?=\(\d+%\))/i) { + if ($os =~ m/SunOS/i || $os =~ m/Solaris/i) { return 2; } - if ($os =~ m/AIX.*?(?=\(\d+%\))/i) { + if ($os =~ m/AIX/i) { return 3; } - if ($os =~ m/HP\-UX.*?(?=\(\d+%\))/i) { + if ($os =~ m/HP\-UX/i) { return 5; } - if ($os =~ m/Apple.*?(?=\(\d+%\))/i || $os =~ m/Darwin.*?(?=\(\d+%\))/i) { + if ($os =~ m/Apple/i || $os =~ m/Darwin/i) { return 8; } - if ($os =~ m/Linux.*?(?=\(\d+%\))/i) { + if ($os =~ m/Linux/i) { return 1; } - if ($os =~ m/Enterasys.*?(?=\(\d+%\))/i || $os =~ m/3com.*?(?=\(\d+%\))/i) { + if ($os =~ m/Enterasys/i || $os =~ m/3com/i) { return 11; } - if ($os =~ m/Octopods.*?(?=\(\d+%\))/i) { + if ($os =~ m/Octopods/i) { return 13; } - if ($os =~ m/embedded.*?(?=\(\d+%\))/i) { + if ($os =~ m/embedded/i) { return 14; } - if ($os =~ m/android.*?(?=\(\d+%\))/i) { + if ($os =~ m/android/i) { return 15; } - if ($os =~ m/BSD.*?(?=\(\d+%\))/i) { + if ($os =~ m/BSD/i) { return 4; } From aa610c0c643b418bf2d53b7c7b2e0dbf38bdad5c Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 26 May 2023 13:35:21 +0200 Subject: [PATCH 244/533] Fix os detetcion --- pandora_server/lib/PandoraFMS/Core.pm | 40 +++++++++---------- .../lib/PandoraFMS/DiscoveryServer.pm | 2 +- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..305c116d4b 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -6689,40 +6689,40 @@ sub pandora_get_os ($$) { return 10; } - if ($os =~ m/Windows.*?(?=\(\d+%\))/i) { + if ($os =~ m/Windows/i) { return 9; } - if ($os =~ m/Cisco.*?(?=\(\d+%\))/i) { + if ($os =~ m/Cisco/i) { return 7; } - if ($os =~ m/SunOS.*?(?=\(\d+%\))/i || $os =~ m/Solaris.*?(?=\(\d+%\))/i) { + if ($os =~ m/SunOS/i || $os =~ m/Solaris/i) { return 2; } - if ($os =~ m/AIX.*?(?=\(\d+%\))/i) { + if ($os =~ m/AIX/i) { return 3; } - if ($os =~ m/HP\-UX.*?(?=\(\d+%\))/i) { + if ($os =~ m/HP\-UX/i) { return 5; } - if ($os =~ m/Apple.*?(?=\(\d+%\))/i || $os =~ m/Darwin.*?(?=\(\d+%\))/i) { + if ($os =~ m/Apple/i || $os =~ m/Darwin/i) { return 8; } - if ($os =~ m/Linux.*?(?=\(\d+%\))/i) { - return 1; - } - if ($os =~ m/Enterasys.*?(?=\(\d+%\))/i || $os =~ m/3com.*?(?=\(\d+%\))/i) { - return 11; - } - if ($os =~ m/Octopods.*?(?=\(\d+%\))/i) { - return 13; - } - if ($os =~ m/embedded.*?(?=\(\d+%\))/i) { - return 14; - } - if ($os =~ m/android.*?(?=\(\d+%\))/i) { + if ($os =~ m/android/i) { return 15; } - if ($os =~ m/BSD.*?(?=\(\d+%\))/i) { + if ($os =~ m/Linux/i) { + return 1; + } + if ($os =~ m/Enterasys/i || $os =~ m/3com/i) { + return 11; + } + if ($os =~ m/Octopods/i) { + return 13; + } + if ($os =~ m/embedded/i) { + return 14; + } + if ($os =~ m/BSD/i) { return 4; } diff --git a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm index a556334ee0..835ae1b82a 100644 --- a/pandora_server/lib/PandoraFMS/DiscoveryServer.pm +++ b/pandora_server/lib/PandoraFMS/DiscoveryServer.pm @@ -432,7 +432,7 @@ sub PandoraFMS::Recon::Base::guess_os($$;$) { my $return = `"$self->{pa_config}->{nmap}" -sSU -T5 -F -O --osscan-limit $device 2>$DEVNULL`; return OS_OTHER if ($? != 0); my $str_os; - if ($return =~ /Aggressive OS guesses:\s*(.*)|OS details:\s(.*)/) { + if ($return =~ /Aggressive OS guesses:(.*?)(?>\(\d+%\),)|^OS details:(.*?)\(.*\)*$/mi) { if(defined($1) && $1 ne "") { $str_os = $1; } else { From 7a03a5bac9c60388e5f3f0c747728fedb18b1c90 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 13:37:15 +0200 Subject: [PATCH 245/533] #11381 fixed ip address name in availability report --- pandora_console/include/functions_reporting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 8c8a7870e9..4596ba64aa 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -9123,7 +9123,7 @@ function reporting_availability($report, $content, $date=false, $time=false) modules_get_agentmodule_agent($item['id_agent_module']) ); - if (empty($text)) { + if (empty($row['data']['availability_item'])) { $row['data']['availability_item'] = __('No Address'); } } else { From c21e26ee1f08e95a03687cf60b06dc3952576855 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 26 May 2023 13:54:11 +0200 Subject: [PATCH 246/533] #11370 Fix default value selected --- .../godmode/agentes/module_manager_editor_network.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 9c6142ee8d..9d08fe7ed0 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -245,7 +245,7 @@ $snmp_versions['3'] = 'v. 3'; $snmpVersionsInput = html_print_select( $snmp_versions, 'snmp_version', - ($id_module_type >= 15 && $id_module_type <= 18) ? $snmp_version : 0, + ($id_module_type >= 15 && $id_module_type <= 18) ? $snmp_version : '2c', '', '', '', From 572c6d673426d38f3cb1e0e7fce46898313c54b8 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 26 May 2023 14:29:36 +0200 Subject: [PATCH 247/533] Fix alertserver queue for action exec --- pandora_server/lib/PandoraFMS/Core.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..02c02f612f 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -850,7 +850,7 @@ sub pandora_process_alert ($$$$$$$$;$$) { last_fired = ?, internal_counter = ? ' . $new_interval . ' WHERE id = ?', $alert->{'times_fired'}, $utimestamp, $alert->{'internal_counter'}, $id); - if ($pa_config->{'alertserver'} == 1) { + if ($pa_config->{'alertserver'} == 1 || $pa_config->{'alertserver_queue'} == 1) { pandora_queue_alert($pa_config, $dbh, [$data, $agent, $module, $alert, 1, $timestamp, 0, $extra_macros, $is_correlated_alert]); } else { From f97832f3f2612ff28b6c4a0c389ab228574497d2 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 26 May 2023 14:36:29 +0200 Subject: [PATCH 248/533] #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 34ae571fa01300864527203e44c9e7d7921f5fd1 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Thu, 25 May 2023 20:56:21 +0200 Subject: [PATCH 249/533] Encode log data to base64 to prevent it from breaking XML data files. --- pandora_agents/unix/plugins/grep_log | 44 ++++++++++++++-- pandora_agents/unix/plugins/grep_log_module | 42 ++++++++++++++-- .../win32/modules/pandora_module.cc | 14 ++---- pandora_agents/win32/pandora_strutils.cc | 50 +++++++++++++++++++ pandora_agents/win32/pandora_strutils.h | 1 + 5 files changed, 134 insertions(+), 17 deletions(-) diff --git a/pandora_agents/unix/plugins/grep_log b/pandora_agents/unix/plugins/grep_log index 2143464b48..1ecba6266a 100755 --- a/pandora_agents/unix/plugins/grep_log +++ b/pandora_agents/unix/plugins/grep_log @@ -22,6 +22,11 @@ use strict; use File::Basename; use Scalar::Util qw(looks_like_number); +BEGIN { + eval { + require MIME::Base64; + }; +} # Output format (module or log_module). my $Output = 'module'; @@ -65,6 +70,37 @@ if ( (defined ($ENV{GREP_LOG_TMP})) && (-d $ENV{GREP_LOG_TMP}) ) { $Idx_dir=$ENV{GREP_LOG_TMP}; } +# Define encode_base64 if it is not available via MIME::Base64. +my $encode_sub = defined(&MIME::Base64::encode_base64) ? \&MIME::Base64::encode_base64 : sub { + my ($str, $endl) = @_; + + my @ALPHABET = ('A'..'Z', 'a'..'z', 0..9, '+', '/'); + my $str_len = length($str); + my $str_base64 = ''; + + for (my $i = 0; $i < $str_len; $i += 3) { + my $chunk = substr($str, $i, 3); + my $chunk_len = length($chunk); + + my $num = 0; + $num |= ord(substr($chunk, 0, 1)) << 16 if ($chunk_len >= 1); + $num |= ord(substr($chunk, 1, 1)) << 8 if ($chunk_len >= 2); + $num |= ord(substr($chunk, 2, 1)) if ($chunk_len == 3); + + my $enc_1 = ($num & 0xfc0000) >> 18; + my $enc_2 = ($num & 0x03f000) >> 12; + my $enc_3 = ($num & 0x000fc0) >> 6; + my $enc_4 = ($num & 0x00003f); + + $str_base64 .= $ALPHABET[$enc_1]; + $str_base64 .= $ALPHABET[$enc_2]; + $str_base64 .= $chunk_len >= 2 ? $ALPHABET[$enc_3] : '='; + $str_base64 .= $chunk_len == 3 ? $ALPHABET[$enc_4] : '='; + } + + return $str_base64; +}; + ######################################################################################## # Erase blank spaces before and after the string ######################################################################################## @@ -335,11 +371,13 @@ sub print_log ($) { my $output = "\n"; $output .= "\n"; $output .= "{$line}}) { + $tmp .= $content; + } } + $output .= &$encode_sub($tmp, ''); $output .= "]]>"; $output .= "\n"; diff --git a/pandora_agents/unix/plugins/grep_log_module b/pandora_agents/unix/plugins/grep_log_module index 6fc1cff239..d15a6f7c08 100755 --- a/pandora_agents/unix/plugins/grep_log_module +++ b/pandora_agents/unix/plugins/grep_log_module @@ -22,6 +22,11 @@ use strict; use File::Basename; +BEGIN { + eval { + require MIME::Base64; + }; +} # Output format (module or log_module). my $Output = 'log_module'; @@ -53,6 +58,37 @@ my $Idx_size = 0; # Regular expression to be matched my $Reg_exp = ''; +# Define encode_base64 if it is not available via MIME::Base64. +my $encode_sub = defined(&MIME::Base64::encode_base64) ? \&MIME::Base64::encode_base64 : sub { + my ($str, $endl) = @_; + + my @ALPHABET = ('A'..'Z', 'a'..'z', 0..9, '+', '/'); + my $str_len = length($str); + my $str_base64 = ''; + + for (my $i = 0; $i < $str_len; $i += 3) { + my $chunk = substr($str, $i, 3); + my $chunk_len = length($chunk); + + my $num = 0; + $num |= ord(substr($chunk, 0, 1)) << 16 if ($chunk_len >= 1); + $num |= ord(substr($chunk, 1, 1)) << 8 if ($chunk_len >= 2); + $num |= ord(substr($chunk, 2, 1)) if ($chunk_len == 3); + + my $enc_1 = ($num & 0xfc0000) >> 18; + my $enc_2 = ($num & 0x03f000) >> 12; + my $enc_3 = ($num & 0x000fc0) >> 6; + my $enc_4 = ($num & 0x00003f); + + $str_base64 .= $ALPHABET[$enc_1]; + $str_base64 .= $ALPHABET[$enc_2]; + $str_base64 .= $chunk_len >= 2 ? $ALPHABET[$enc_3] : '='; + $str_base64 .= $chunk_len == 3 ? $ALPHABET[$enc_4] : '='; + } + + return $str_base64; +}; + ############################################################################### # SUB error_msg # Print an error message and exit. @@ -213,11 +249,9 @@ sub print_log (@) { if ($Output eq 'log_module') { my $output = "\n"; $output .= "\n"; + $output .= "base64\n"; $output .= ""; $output .= "\n"; diff --git a/pandora_agents/win32/modules/pandora_module.cc b/pandora_agents/win32/modules/pandora_module.cc index d5bd1fc21d..4a6382acf6 100644 --- a/pandora_agents/win32/modules/pandora_module.cc +++ b/pandora_agents/win32/modules/pandora_module.cc @@ -520,7 +520,7 @@ Pandora_Module::getXml () { if (this->module_type == TYPE_LOG) { module_xml = "\n\tmodule_name; - module_xml += "]]>\n\t\n\tbase64\n\tdata_list && this->data_list->size () > 1) { list::iterator iter; @@ -532,25 +532,19 @@ Pandora_Module::getXml () { data = *iter; try { - data_clean = strreplace (this->getDataOutput (data), - "%", "%%" ); - data_clean = strreplace (data_clean, "]]>", "]]>getDataOutput(data); } catch (Module_Exception e) { continue; } - - module_xml += data_clean; } } else { data = data_list->front (); try { - data_clean = strreplace (this->getDataOutput (data), "%", "%%" ); - data_clean = strreplace (data_clean, "]]>", "]]>getDataOutput (data); } catch (Module_Exception e) { } } + module_xml += base64Encode(data_clean); module_xml += "]]>"; /* Clean up */ diff --git a/pandora_agents/win32/pandora_strutils.cc b/pandora_agents/win32/pandora_strutils.cc index ea3bbf51f0..83f1019d08 100644 --- a/pandora_agents/win32/pandora_strutils.cc +++ b/pandora_agents/win32/pandora_strutils.cc @@ -24,6 +24,8 @@ #include #include #include // for strchr +#include +#include using namespace Pandora; @@ -56,6 +58,54 @@ Pandora_Strutils::trim (const string str) { return result; } +/** + * Encode the given string to base64. + * Based on: https://en.wikibooks.org/wiki/Algorithm_Implementation/Miscellaneous/Base64 + * + * @param str String to be encoded. + * + * @return The base64 encoded string. + */ +string +Pandora_Strutils::base64Encode(string str) { + string base64_str; + std::uint32_t temp; + const static char alphabet[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; + + std::vector buffer(begin(str), end(str)); + base64_str.reserve(((buffer.size() / 3) + (buffer.size() % 3 > 0)) * 4); + + std::vector::iterator cursor = buffer.begin(); + for(size_t idx = 0; idx < buffer.size() / 3; idx++) { + temp = (*cursor++) << 16; + temp += (*cursor++) << 8; + temp += (*cursor++); + base64_str.append(1, alphabet[(temp & 0x00FC0000) >> 18]); + base64_str.append(1, alphabet[(temp & 0x0003F000) >> 12]); + base64_str.append(1, alphabet[(temp & 0x00000FC0) >> 6]); + base64_str.append(1, alphabet[(temp & 0x0000003F)]); + } + + switch(buffer.size() % 3){ + case 1: + temp = (*cursor++) << 16; + base64_str.append(1, alphabet[(temp & 0x00FC0000) >> 18]); + base64_str.append(1, alphabet[(temp & 0x0003F000) >> 12]); + base64_str.append(2, '='); + break; + case 2: + temp = (*cursor++) << 16; + temp += (*cursor++) << 8; + base64_str.append(1, alphabet[(temp & 0x00FC0000) >> 18]); + base64_str.append(1, alphabet[(temp & 0x0003F000) >> 12]); + base64_str.append(1, alphabet[(temp & 0x00000FC0) >> 6]); + base64_str.append(1, '='); + break; + } + + return base64_str; +} + /** * Convert an unicode string to a ANSI string. * diff --git a/pandora_agents/win32/pandora_strutils.h b/pandora_agents/win32/pandora_strutils.h index c105c9c3a9..fb7562d64d 100644 --- a/pandora_agents/win32/pandora_strutils.h +++ b/pandora_agents/win32/pandora_strutils.h @@ -44,6 +44,7 @@ namespace Pandora_Strutils { string trim (const string str); + string base64Encode(string str); string strUnicodeToAnsi (LPCWSTR s); wstring strAnsiToUnicode (LPCSTR s); string inttostr (const int i); From bb1f67c960e1fc4472fe13b398527f60d5efd64e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Fri, 26 May 2023 15:18:21 -0600 Subject: [PATCH 250/533] Add "defined" validations to get_module_status if --- pandora_server/lib/PandoraFMS/Core.pm | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index ea9fb091b1..630b8ea0ce 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5199,7 +5199,7 @@ sub get_module_status ($$$$) { $warning_str = (defined ($warning_str) && valid_regex ($warning_str) == 1) ? safe_output($warning_str) : ''; # Adjust percentage max/min values. - if ($module->{'percentage_critical'} == 1) { + if (defined($module->{'percentage_critical'}) && $module->{'percentage_critical'} == 1) { if ($critical_max != 0 && $critical_min != 0) { $critical_max = $last_data_value * (1 + $critical_max / 100.0); $critical_min = $last_data_value * (1 - $critical_min / 100.0); @@ -5216,7 +5216,7 @@ sub get_module_status ($$$$) { $module->{'critical_inverse'} = 0; } } - if ($module->{'percentage_warning'} == 1) { + if (defined($module->{'percentage_warning'}) && $module->{'percentage_warning'} == 1) { if ($warning_max != 0 && $warning_min != 0) { $warning_max = $last_data_value * (1 + $warning_max / 100.0); $warning_min = $last_data_value * (1 - $warning_min / 100.0); @@ -5255,7 +5255,7 @@ sub get_module_status ($$$$) { # Critical if ($critical_min ne $critical_max) { # [critical_min, critical_max) - if ($module->{'critical_inverse'} == 0) { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { return 1 if ($data >= $critical_min && $data < $critical_max); return 1 if ($data >= $critical_min && $critical_max < $critical_min); } @@ -5272,7 +5272,7 @@ sub get_module_status ($$$$) { # Warning if ($warning_min ne $warning_max) { # [warning_min, warning_max) - if ($module->{'warning_inverse'} == 0) { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { return 2 if ($data >= $warning_min && $data < $warning_max); return 2 if ($data >= $warning_min && $warning_max < $warning_min); } @@ -5291,7 +5291,7 @@ sub get_module_status ($$$$) { # Critical $eval_result = eval { - if ($module->{'critical_inverse'} == 0) { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { $critical_str ne '' && $data =~ /$critical_str/ ; } else { $critical_str ne '' && $data !~ /$critical_str/ ; @@ -5301,7 +5301,7 @@ sub get_module_status ($$$$) { # Warning $eval_result = eval { - if ($module->{'warning_inverse'} == 0) { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { $warning_str ne '' && $data =~ /$warning_str/ ; } else { $warning_str ne '' && $data !~ /$warning_str/ ; From 20425562c9144c14844911c645c182f37f36cb78 Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 27 May 2023 01:00:18 +0200 Subject: [PATCH 251/533] 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 738d82859a..0adb3f4c21 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-230526 +Version: 7.0NG.771-230527 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 0f2a8b9a64..bafb50cf1c 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-230526" +pandora_version="7.0NG.771-230527" 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 41faa4189c..21a7411482 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 => '230526'; +use constant AGENT_BUILD => '230527'; # 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 e65a057a1f..3d032242f5 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 230526 +%define release 230527 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 9384ca50d8..366c89c922 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 230526 +%define release 230527 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 40246f249e..b9de6d9635 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="230526" +PI_BUILD="230527" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 85cf1478e9..b297542102 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230526} +{230527} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 76e4a97a68..c6e917bf4d 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 230526") +#define PANDORA_VERSION ("7.0NG.771 Build 230527") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 4a9570c10f..a346532db9 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 230526))" + VALUE "ProductVersion", "(7.0NG.771(Build 230527))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fdb6f97015..c807f9084a 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230526 +Version: 7.0NG.771-230527 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 1a4058f752..f80e363a00 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-230526" +pandora_version="7.0NG.771-230527" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 5c69e24da3..048e28c8c9 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 = 'PC230526'; +$build_version = 'PC230527'; $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 b0948156d4..a5ff62a68c 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 39068c81ff..2caceecfaf 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 230526 +%define release 230527 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 378e3ceeeb..bc516405c1 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 230526 +%define release 230527 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 2d9c7b6fdb..56c11ad66c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230526" +PI_BUILD="230527" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index bf57f5573f..f9f555190f 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 230526"; +my $version = "7.0NG.771 Build 230527"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 43ccece3d3..71814e30f6 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 230526"; +my $version = "7.0NG.771 Build 230527"; # save program name for logging my $progname = basename($0); From d58c7fe2a8950aaa63ef9aa6654eac747dc06ab2 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 28 May 2023 01:00:16 +0200 Subject: [PATCH 252/533] 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 0adb3f4c21..a334c82472 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-230527 +Version: 7.0NG.771-230528 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 bafb50cf1c..cf9c9b60eb 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-230527" +pandora_version="7.0NG.771-230528" 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 21a7411482..7b580bfe7b 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 => '230527'; +use constant AGENT_BUILD => '230528'; # 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 3d032242f5..f90eff4f4a 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 230527 +%define release 230528 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 366c89c922..e6e460abf2 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 230527 +%define release 230528 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 b9de6d9635..1e10362396 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="230527" +PI_BUILD="230528" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index b297542102..a2e61911a0 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230527} +{230528} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index c6e917bf4d..0773696a44 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 230527") +#define PANDORA_VERSION ("7.0NG.771 Build 230528") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index a346532db9..440d08598b 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 230527))" + VALUE "ProductVersion", "(7.0NG.771(Build 230528))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index c807f9084a..e5cdd0a3cd 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230527 +Version: 7.0NG.771-230528 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 f80e363a00..12697b89ee 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-230527" +pandora_version="7.0NG.771-230528" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 048e28c8c9..d69baed988 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 = 'PC230527'; +$build_version = 'PC230528'; $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 a5ff62a68c..d2575f0bce 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 2caceecfaf..1c3d55189b 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 230527 +%define release 230528 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index bc516405c1..d1009fdc9c 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 230527 +%define release 230528 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 56c11ad66c..b02759b352 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230527" +PI_BUILD="230528" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index f9f555190f..c350562981 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 230527"; +my $version = "7.0NG.771 Build 230528"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 71814e30f6..47884bf7ad 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 230527"; +my $version = "7.0NG.771 Build 230528"; # save program name for logging my $progname = basename($0); From 6a634a37c5e30f26cf3718ea4bceb980dc0e3f8c Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 29 May 2023 01:00:17 +0200 Subject: [PATCH 253/533] 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 a334c82472..ce90075db2 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-230528 +Version: 7.0NG.771-230529 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 cf9c9b60eb..b0e8ff0370 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-230528" +pandora_version="7.0NG.771-230529" 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 7b580bfe7b..7cc3f0d495 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 => '230528'; +use constant AGENT_BUILD => '230529'; # 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 f90eff4f4a..d8e7930d53 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 230528 +%define release 230529 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 e6e460abf2..ddb80a0d94 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 230528 +%define release 230529 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 1e10362396..be8a4dbf4c 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="230528" +PI_BUILD="230529" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index a2e61911a0..00d6766a84 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230528} +{230529} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 0773696a44..de919713b7 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 230528") +#define PANDORA_VERSION ("7.0NG.771 Build 230529") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 440d08598b..3d1d149693 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 230528))" + VALUE "ProductVersion", "(7.0NG.771(Build 230529))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index e5cdd0a3cd..5bef9036e4 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230528 +Version: 7.0NG.771-230529 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 12697b89ee..8ca9f85525 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-230528" +pandora_version="7.0NG.771-230529" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d69baed988..dd9f772d5a 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 = 'PC230528'; +$build_version = 'PC230529'; $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 d2575f0bce..682abb43ef 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 1c3d55189b..f0f899aabc 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 230528 +%define release 230529 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d1009fdc9c..d918958f02 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 230528 +%define release 230529 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index b02759b352..9e28020733 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230528" +PI_BUILD="230529" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index c350562981..e5759af9f2 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 230528"; +my $version = "7.0NG.771 Build 230529"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 47884bf7ad..b05bedaed4 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 230528"; +my $version = "7.0NG.771 Build 230529"; # save program name for logging my $progname = basename($0); From a59a6ff750857cd00ffc4cd78fe5a4c65cdd6c48 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 29 May 2023 10:01:15 +0200 Subject: [PATCH 254/533] #11297 fix interval reverse on critical/warning --- pandora_console/godmode/agentes/configurar_agente.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index 4f51d8d7c0..d717bce983 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1523,7 +1523,7 @@ if ($update_module === true || $create_module === true) { $warning_threshold_check_type = get_parameter('warning_thresholds_checks'); if ($warning_threshold_check_type === 'normal_warning') { $percentage_warning = 0; - $warning_inverse = 0; + $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); } else if ($warning_threshold_check_type === 'warning_inverse') { $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); $percentage_warning = 0; @@ -1536,10 +1536,10 @@ if ($update_module === true || $create_module === true) { $critical_threshold_check_type = get_parameter('critical_thresholds_checks'); if ($critical_threshold_check_type === 'normal_critical') { $percentage_critical = 0; - $critical_inverse = 0; + $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); } else if ($critical_threshold_check_type === 'critical_inverse') { - $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); - $percentage_critical = 0; + $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); + $percentage_critical = 0; } else { $percentage_critical = (int) get_parameter('critical_inverse_string_sent'); $critical_inverse = 0; From 6b869f8ca816c4d172e4980a93d447093c666406 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 29 May 2023 10:32:43 +0200 Subject: [PATCH 255/533] #11380 fixed arrow in metaconsole table and filter status in monitors view --- pandora_console/include/functions_ui.php | 10 +++++----- .../operation/agentes/status_monitor.php | 19 +++++++++++-------- 2 files changed, 16 insertions(+), 13 deletions(-) diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 24fb0ca360..a511d591c4 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -7002,6 +7002,11 @@ function ui_get_sorting_arrows($url_up, $url_down, $selectUp, $selectDown) $arrow_up = 'images/sort_up_black.png'; $arrow_down = 'images/sort_down_black.png'; + if (is_metaconsole()) { + $arrow_up = 'images/sort_up_black.png'; + $arrow_down = 'images/sort_down_black.png'; + } + // Green arrows for the selected. if ($selectUp === true) { $arrow_up = 'images/sort_up_green.png'; @@ -7011,11 +7016,6 @@ function ui_get_sorting_arrows($url_up, $url_down, $selectUp, $selectDown) $arrow_down = 'images/sort_down_green.png'; } - if (is_metaconsole()) { - $arrow_up = 'images/sort_up.png'; - $arrow_down = 'images/sort_down.png'; - } - return ' '.html_print_image($arrow_up, true, ['alt' => 'up']).' '.html_print_image($arrow_down, true, ['alt' => 'down']).' diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index 6201ac691c..ae56280411 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -1107,6 +1107,8 @@ $selectIntervalUp = false; $selectIntervalDown = false; $selectStatusUp = false; $selectStatusDown = false; +$selectStatusChangeUp = false; +$selectStatusChangeDown = false; $selectDataUp = false; $selectDataDown = false; $selectTimestampUp = false; @@ -1244,7 +1246,7 @@ switch ($sortField) { $fieldForSorting = 'last_status_change'; switch ($sort) { case 'up': - $selectStatusUp = $selected; + $selectStatusChangeUp = $selected; $order = [ 'field' => 'tagente_estado.last_status_change', 'order' => 'ASC', @@ -1252,7 +1254,7 @@ switch ($sortField) { break; case 'down': - $selectStatusDown = $selected; + $selectStatusChangeDown = $selected; $order = [ 'field' => 'tagente_estado.last_status_change', 'order' => 'DESC', @@ -1317,6 +1319,8 @@ switch ($sortField) { $selectIntervalDown = false; $selectStatusUp = false; $selectStatusDown = false; + $selectStatusChangeUp = false; + $selectStatusChangeDown = false; $selectDataUp = false; $selectDataDown = false; $selectTimestampUp = false; @@ -1374,7 +1378,6 @@ $sql = 'SELECT ORDER BY '.$order['field'].' '.$order['order'].' LIMIT '.$offset.','.$limit_sql; - // We do not show the modules until the user searches with the filter. if ($autosearch) { if (is_metaconsole() === false) { @@ -1464,7 +1467,7 @@ $url_module_name = 'index.php?sec='.$section.'&sec2=operation/agentes/status_mon $url_server_type = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; $url_interval = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; $url_status = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; -$url_status = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; +$url_status_change = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; $url_data = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; $url_timestamp_up = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; $url_timestamp_down = 'index.php?sec='.$section.'&sec2=operation/agentes/status_monitor'; @@ -1475,7 +1478,7 @@ $url_module_name .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$ $url_server_type .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; $url_interval .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; $url_status .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; -$url_status .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; +$url_status_change .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; $url_data .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; $url_timestamp_up .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; $url_timestamp_down .= '&datatype='.$datatype.'&moduletype='.$moduletype.'&refr='.$refr.'&modulegroup='.$modulegroup.'&offset='.$offset.'&ag_group='.$ag_group.'&ag_freestring='.$ag_freestring.'&ag_modulename='.$ag_modulename.'&status='.$status.$ag_custom_fields_params; @@ -1487,7 +1490,7 @@ $url_module_name .= '&recursion='.$recursion; $url_server_type .= '&recursion='.$recursion; $url_interval .= '&recursion='.$recursion; $url_status .= '&recursion='.$recursion; -$url_status .= '&recursion='.$recursion; +$url_status_change .= '&recursion='.$recursion; $url_data .= '&recursion='.$recursion; $url_timestamp_up .= '&recursion='.$recursion; $url_timestamp_down .= '&recursion='.$recursion; @@ -1498,7 +1501,7 @@ $url_module_name .= '&sort_field=module_name&sort='; $url_server_type .= '&sort_field=moduletype&sort='; $url_interval .= '&sort_field=interval&sort='; $url_status .= '&sort_field=status&sort='; -$url_status .= '&sort_field=last_status_change&sort='; +$url_status_change .= '&sort_field=last_status_change&sort='; $url_data .= '&sort_field=data&sort='; $url_timestamp_up .= '&sort_field=timestamp&sort=up'; $url_timestamp_down .= '&sort_field=timestamp&sort=down'; @@ -1572,7 +1575,7 @@ if (empty($result) === false) { if (in_array('last_status_change', $show_fields)) { $table->head[7] = ''.__('Last status change').''; - $table->head[7] .= ui_get_sorting_arrows($url_status.'up', $url_status.'down', $selectStatusUp, $selectStatusDown); + $table->head[7] .= ui_get_sorting_arrows($url_status_change.'up', $url_status_change.'down', $selectStatusChangeUp, $selectStatusChangeDown); $table->headstyle[7] = 'text-align: center'; $table->align[7] = 'center'; } From 6650bfdc03218020c425bea82a7659b9362eabac Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 29 May 2023 10:43:12 +0200 Subject: [PATCH 256/533] #11358 evaluate if field value is a object --- pandora_console/include/db/mysql.php | 46 +++++++++++++++------------- 1 file changed, 24 insertions(+), 22 deletions(-) diff --git a/pandora_console/include/db/mysql.php b/pandora_console/include/db/mysql.php index 564e566247..97880fdcbf 100644 --- a/pandora_console/include/db/mysql.php +++ b/pandora_console/include/db/mysql.php @@ -1190,30 +1190,32 @@ function mysql_db_format_array_to_update_sql($values) $fields = []; foreach ($values as $field => $value) { - if (is_numeric($field)) { - array_push($fields, $value); - continue; - } else if ($field[0] == '`') { - $field = str_replace('`', '', $field); - } - - if ($value === null) { - $sql = sprintf('`%s` = NULL', $field); - } else if (is_int($value) || is_bool($value)) { - $sql = sprintf('`%s` = %d', $field, $value); - } else if (is_float($value) || is_double($value)) { - $sql = sprintf('`%s` = %f', $field, $value); - } else { - // String - if (isset($value[0]) && $value[0] == '`') { - // Don't round with quotes if it references a field - $sql = sprintf('`%s` = %s', $field, $value); - } else { - $sql = sprintf("`%s` = '%s'", $field, $value); + if (is_object($value) === false) { + if (is_numeric($field)) { + array_push($fields, $value); + continue; + } else if ($field[0] == '`') { + $field = str_replace('`', '', $field); } - } - array_push($fields, $sql); + if ($value === null) { + $sql = sprintf('`%s` = NULL', $field); + } else if (is_int($value) || is_bool($value)) { + $sql = sprintf('`%s` = %d', $field, $value); + } else if (is_float($value) || is_double($value)) { + $sql = sprintf('`%s` = %f', $field, $value); + } else { + // String + if (isset($value[0]) && $value[0] == '`') { + // Don't round with quotes if it references a field + $sql = sprintf('`%s` = %s', $field, $value); + } else { + $sql = sprintf("`%s` = '%s'", $field, $value); + } + } + + array_push($fields, $sql); + } } return implode(', ', $fields); From 206daabbd758224ab150fb976a6612b6b0e6578c Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 29 May 2023 10:59:12 +0200 Subject: [PATCH 257/533] #11379 fixed filter in agent list when use action --- pandora_console/godmode/agentes/modificar_agente.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index 0b27809299..dfd691bd1a 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -929,7 +929,7 @@ if ($agents !== false) { [ 'href' => ui_get_full_url( sprintf( - 'index.php?sec=gagente&sec2=godmode/agentes/modificar_agente&%s_agent=%s&group_id=%s&recursion=%s&search=%s&offset=%s&sort_field=%s&sort=%s&disabled=%s', + 'index.php?sec=gagente&sec2=godmode/agentes/modificar_agente&%s_agent=%s&group_id=%s&recursion=%s&search=%s&offset=%s&sort_field=%s&sort=%s&disabled=%s&os=%s', $agentDisableEnableAction, $agent['id_agente'], $ag_group, @@ -938,7 +938,8 @@ if ($agents !== false) { '', $sortField, $sort, - $disabled + $disabled, + $os ) ), 'onClick' => ($agent['id_os'] === CLUSTER_OS_ID) ? sprintf('if (!confirm(\'%s\')) return false', $agentDisableEnableCaption) : 'return true;', From 0cf433779a6190245b40e874caf402430ca937cd Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 29 May 2023 11:47:25 +0200 Subject: [PATCH 258/533] #11392 add new mibs --- .../attachment/mibs/APPLICATION-MIB | 498 + pandora_console/attachment/mibs/ARUBA-MIB | 446 + pandora_console/attachment/mibs/ARUBA-TC | 1075 + pandora_console/attachment/mibs/ATM-MIB | 2623 ++ pandora_console/attachment/mibs/BGP4-MIB | 828 + pandora_console/attachment/mibs/BRIDGE-MIB | 1085 + pandora_console/attachment/mibs/CHARACTER-MIB | 667 + .../attachment/mibs/CISCO-C2900-MIB.mib | 2081 ++ pandora_console/attachment/mibs/CISCO-CDP-MIB | 828 + .../attachment/mibs/CISCO-CONFIG-COPY-MIB | 524 + .../attachment/mibs/CISCO-ENVMON-MIB | 933 + .../attachment/mibs/CISCO-MEMORY-POOL-MIB | 227 + pandora_console/attachment/mibs/CISCO-MIB | 4381 +++ .../attachment/mibs/CISCO-PING-MIB.my.txt | 451 + .../attachment/mibs/CISCO-RTTMON-MIB | 8909 +++++ .../attachment/mibs/CISCO-RTTMON-TC-MIB.my | 730 + pandora_console/attachment/mibs/CISCO-SMI | 326 + pandora_console/attachment/mibs/CISCO-SMI.my | 326 + .../attachment/mibs/CISCO-STACK-MIB.my | 12611 +++++++ pandora_console/attachment/mibs/CISCO-TC | 770 + pandora_console/attachment/mibs/CISCO-VTP-MIB | 2811 ++ pandora_console/attachment/mibs/CLNS-MIB | 1309 + pandora_console/attachment/mibs/CPQHLTH-MIB | 5781 ++++ pandora_console/attachment/mibs/CPQHOST-MIB | 2413 ++ pandora_console/attachment/mibs/CPQSINFO-MIB | 3867 +++ pandora_console/attachment/mibs/CPQSTDEQ-MIB | 4980 +++ pandora_console/attachment/mibs/CPQSTSYS-MIB | 4058 +++ .../attachment/mibs/DECNET-PHIV-MIB | 3041 ++ pandora_console/attachment/mibs/DELL-RAC-MIB | 1235 + pandora_console/attachment/mibs/DHCP-MIB.mib | 169 + pandora_console/attachment/mibs/DSA-MIB | 660 + .../attachment/mibs/ENTITY-MIB.mib | 2691 +- pandora_console/attachment/mibs/EtherLike-MIB | 1160 + .../attachment/mibs/FDDI-SMT73-MIB | 2125 ++ .../attachment/mibs/HOST-RESOURCES-MIB | 1356 + .../attachment/mibs/IANAifType-MIB | 119 + .../attachment/mibs/IANAifType-MIB.txt | 388 + .../attachment/mibs/IDRAC-MIB-SMIv2 | 13303 ++++++++ pandora_console/attachment/mibs/IF-MIB | 1594 + pandora_console/attachment/mibs/IF-MIB.txt | 1828 + pandora_console/attachment/mibs/IMM-MIB | 11715 +++++++ .../attachment/mibs/INET-ADDRESS-MIB.mib | 827 +- pandora_console/attachment/mibs/IPV6-ICMP-MIB | 529 + pandora_console/attachment/mibs/IPV6-MIB | 1443 + pandora_console/attachment/mibs/IPV6-TC | 67 + pandora_console/attachment/mibs/JUNIPER-MIB | 2022 ++ pandora_console/attachment/mibs/JUNIPER-SMI | 266 + .../attachment/mibs/MIB-Dell-10892 | 14508 ++++++++ pandora_console/attachment/mibs/MIOX25-MIB | 707 + pandora_console/attachment/mibs/MSFT-MIB | 18 + pandora_console/attachment/mibs/MSSQL-MIB | 837 + pandora_console/attachment/mibs/MTA-MIB | 659 + pandora_console/attachment/mibs/NETAPP-MIB | 27966 ++++++++++++++++ .../attachment/mibs/NETWORK-APPLIANCE-MIB.mib | 26053 ++++++++++++++ .../attachment/mibs/OLD-CISCO-CHASSIS-MIB | 1659 + .../attachment/mibs/OLD-CISCO-CPU-MIB | 70 + .../attachment/mibs/OLD-CISCO-FLASH-MIB | 278 + .../attachment/mibs/OLD-CISCO-INTERFACES-MIB | 1405 + .../attachment/mibs/OLD-CISCO-SYS-MIB | 1043 + pandora_console/attachment/mibs/OPMANAGER-MIB | 367 + pandora_console/attachment/mibs/ORADB-MIB | 1179 + pandora_console/attachment/mibs/OSPF-MIB | 2738 ++ pandora_console/attachment/mibs/P-BRIDGE-MIB | 963 + pandora_console/attachment/mibs/PARALLEL-MIB | 298 + pandora_console/attachment/mibs/PPP-LCP-MIB | 765 + pandora_console/attachment/mibs/Printer-MIB | 3664 ++ pandora_console/attachment/mibs/Q-BRIDGE-MIB | 1876 ++ .../attachment/mibs/RAPID-CITY.mib | 4649 +++ .../attachment/mibs/RC-VLAN-MIB.mib | 1477 + pandora_console/attachment/mibs/RDBMS-MIB | 1305 + pandora_console/attachment/mibs/RFC1155-SMI | 27 + pandora_console/attachment/mibs/RFC1158-MIB | 1521 + pandora_console/attachment/mibs/RFC1213-MIB | 2640 ++ pandora_console/attachment/mibs/RFC1215-TRAP | 77 + pandora_console/attachment/mibs/RFC1229-MIB | 473 + pandora_console/attachment/mibs/RFC1231-MIB | 869 + pandora_console/attachment/mibs/RFC1232-MIB | 890 + pandora_console/attachment/mibs/RFC1233-MIB | 729 + pandora_console/attachment/mibs/RFC1253-MIB | 1608 + pandora_console/attachment/mibs/RFC1304-MIB | 913 + pandora_console/attachment/mibs/RFC1315-FRAME | 634 + pandora_console/attachment/mibs/RFC1315-MIB | 634 + pandora_console/attachment/mibs/RFC1316-MIB | 519 + pandora_console/attachment/mibs/RFC1317-MIB | 548 + pandora_console/attachment/mibs/RFC1318-MIB | 253 + pandora_console/attachment/mibs/RFC1381-MIB | 1005 + pandora_console/attachment/mibs/RFC1382-MIB | 2625 ++ pandora_console/attachment/mibs/RFC1389-MIB | 398 + pandora_console/attachment/mibs/RFC1398-MIB | 495 + pandora_console/attachment/mibs/RFC1406-MIB | 1547 + pandora_console/attachment/mibs/RFC1407-MIB | 1398 + pandora_console/attachment/mibs/RFC1414-MIB | 134 + pandora_console/attachment/mibs/RS-232-MIB | 801 + pandora_console/attachment/mibs/SIP-MIB | 1132 + pandora_console/attachment/mibs/SMUX-MIB | 168 + pandora_console/attachment/mibs/SNA-NAU-MIB | 2783 ++ .../attachment/mibs/SNMP-FRAMEWORK-MIB | 493 + .../attachment/mibs/SNMP-FRAMEWORK-MIB.my | 543 + .../attachment/mibs/SNMP-USER-BASED-SM-MIB | 890 + .../attachment/mibs/SNMP-VIEW-BASED-ACM-MIB | 804 + .../attachment/mibs/SNMPv2-CONF.my.txt | 0 pandora_console/attachment/mibs/SNMPv2-MIB | 773 + .../attachment/mibs/SNMPv2-MIB.txt | 780 + pandora_console/attachment/mibs/SNMPv2-SMI | 119 + pandora_console/attachment/mibs/SNMPv2-TC | 955 + pandora_console/attachment/mibs/SNMPv2-TM | 131 + .../attachment/mibs/StorageManagement-MIB | 5912 ++++ pandora_console/attachment/mibs/TCPIPX-MIB | 350 + pandora_console/attachment/mibs/TOKENRING-MIB | 858 + pandora_console/attachment/mibs/UPS-MIB | 1917 ++ pandora_console/attachment/mibs/WINS-MIB | 802 + pandora_console/attachment/mibs/WLSX-MON-MIB | 2958 ++ .../attachment/mibs/WLSX-SYSTEMEXT-MIB | 1132 + pandora_console/attachment/mibs/WLSX-WLAN-MIB | 5938 ++++ .../attachment/mibs/oracle-database.mib | 1305 + 115 files changed, 256150 insertions(+), 1891 deletions(-) create mode 100644 pandora_console/attachment/mibs/APPLICATION-MIB create mode 100644 pandora_console/attachment/mibs/ARUBA-MIB create mode 100644 pandora_console/attachment/mibs/ARUBA-TC create mode 100644 pandora_console/attachment/mibs/ATM-MIB create mode 100644 pandora_console/attachment/mibs/BGP4-MIB create mode 100644 pandora_console/attachment/mibs/BRIDGE-MIB create mode 100644 pandora_console/attachment/mibs/CHARACTER-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-C2900-MIB.mib create mode 100644 pandora_console/attachment/mibs/CISCO-CDP-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-CONFIG-COPY-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-ENVMON-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-MEMORY-POOL-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-PING-MIB.my.txt create mode 100644 pandora_console/attachment/mibs/CISCO-RTTMON-MIB create mode 100644 pandora_console/attachment/mibs/CISCO-RTTMON-TC-MIB.my create mode 100644 pandora_console/attachment/mibs/CISCO-SMI create mode 100644 pandora_console/attachment/mibs/CISCO-SMI.my create mode 100644 pandora_console/attachment/mibs/CISCO-STACK-MIB.my create mode 100644 pandora_console/attachment/mibs/CISCO-TC create mode 100644 pandora_console/attachment/mibs/CISCO-VTP-MIB create mode 100644 pandora_console/attachment/mibs/CLNS-MIB create mode 100644 pandora_console/attachment/mibs/CPQHLTH-MIB create mode 100644 pandora_console/attachment/mibs/CPQHOST-MIB create mode 100644 pandora_console/attachment/mibs/CPQSINFO-MIB create mode 100644 pandora_console/attachment/mibs/CPQSTDEQ-MIB create mode 100644 pandora_console/attachment/mibs/CPQSTSYS-MIB create mode 100644 pandora_console/attachment/mibs/DECNET-PHIV-MIB create mode 100644 pandora_console/attachment/mibs/DELL-RAC-MIB create mode 100644 pandora_console/attachment/mibs/DHCP-MIB.mib create mode 100644 pandora_console/attachment/mibs/DSA-MIB create mode 100644 pandora_console/attachment/mibs/EtherLike-MIB create mode 100644 pandora_console/attachment/mibs/FDDI-SMT73-MIB create mode 100644 pandora_console/attachment/mibs/HOST-RESOURCES-MIB create mode 100644 pandora_console/attachment/mibs/IANAifType-MIB create mode 100644 pandora_console/attachment/mibs/IANAifType-MIB.txt create mode 100644 pandora_console/attachment/mibs/IDRAC-MIB-SMIv2 create mode 100644 pandora_console/attachment/mibs/IF-MIB create mode 100644 pandora_console/attachment/mibs/IF-MIB.txt create mode 100644 pandora_console/attachment/mibs/IMM-MIB create mode 100644 pandora_console/attachment/mibs/IPV6-ICMP-MIB create mode 100644 pandora_console/attachment/mibs/IPV6-MIB create mode 100644 pandora_console/attachment/mibs/IPV6-TC create mode 100644 pandora_console/attachment/mibs/JUNIPER-MIB create mode 100644 pandora_console/attachment/mibs/JUNIPER-SMI create mode 100644 pandora_console/attachment/mibs/MIB-Dell-10892 create mode 100644 pandora_console/attachment/mibs/MIOX25-MIB create mode 100644 pandora_console/attachment/mibs/MSFT-MIB create mode 100644 pandora_console/attachment/mibs/MSSQL-MIB create mode 100644 pandora_console/attachment/mibs/MTA-MIB create mode 100644 pandora_console/attachment/mibs/NETAPP-MIB create mode 100644 pandora_console/attachment/mibs/NETWORK-APPLIANCE-MIB.mib create mode 100644 pandora_console/attachment/mibs/OLD-CISCO-CHASSIS-MIB create mode 100644 pandora_console/attachment/mibs/OLD-CISCO-CPU-MIB create mode 100644 pandora_console/attachment/mibs/OLD-CISCO-FLASH-MIB create mode 100644 pandora_console/attachment/mibs/OLD-CISCO-INTERFACES-MIB create mode 100644 pandora_console/attachment/mibs/OLD-CISCO-SYS-MIB create mode 100644 pandora_console/attachment/mibs/OPMANAGER-MIB create mode 100644 pandora_console/attachment/mibs/ORADB-MIB create mode 100644 pandora_console/attachment/mibs/OSPF-MIB create mode 100644 pandora_console/attachment/mibs/P-BRIDGE-MIB create mode 100644 pandora_console/attachment/mibs/PARALLEL-MIB create mode 100644 pandora_console/attachment/mibs/PPP-LCP-MIB create mode 100644 pandora_console/attachment/mibs/Printer-MIB create mode 100644 pandora_console/attachment/mibs/Q-BRIDGE-MIB create mode 100644 pandora_console/attachment/mibs/RAPID-CITY.mib create mode 100644 pandora_console/attachment/mibs/RC-VLAN-MIB.mib create mode 100644 pandora_console/attachment/mibs/RDBMS-MIB create mode 100644 pandora_console/attachment/mibs/RFC1155-SMI create mode 100644 pandora_console/attachment/mibs/RFC1158-MIB create mode 100644 pandora_console/attachment/mibs/RFC1213-MIB create mode 100644 pandora_console/attachment/mibs/RFC1215-TRAP create mode 100644 pandora_console/attachment/mibs/RFC1229-MIB create mode 100644 pandora_console/attachment/mibs/RFC1231-MIB create mode 100644 pandora_console/attachment/mibs/RFC1232-MIB create mode 100644 pandora_console/attachment/mibs/RFC1233-MIB create mode 100644 pandora_console/attachment/mibs/RFC1253-MIB create mode 100644 pandora_console/attachment/mibs/RFC1304-MIB create mode 100644 pandora_console/attachment/mibs/RFC1315-FRAME create mode 100644 pandora_console/attachment/mibs/RFC1315-MIB create mode 100644 pandora_console/attachment/mibs/RFC1316-MIB create mode 100644 pandora_console/attachment/mibs/RFC1317-MIB create mode 100644 pandora_console/attachment/mibs/RFC1318-MIB create mode 100644 pandora_console/attachment/mibs/RFC1381-MIB create mode 100644 pandora_console/attachment/mibs/RFC1382-MIB create mode 100644 pandora_console/attachment/mibs/RFC1389-MIB create mode 100644 pandora_console/attachment/mibs/RFC1398-MIB create mode 100644 pandora_console/attachment/mibs/RFC1406-MIB create mode 100644 pandora_console/attachment/mibs/RFC1407-MIB create mode 100644 pandora_console/attachment/mibs/RFC1414-MIB create mode 100644 pandora_console/attachment/mibs/RS-232-MIB create mode 100644 pandora_console/attachment/mibs/SIP-MIB create mode 100644 pandora_console/attachment/mibs/SMUX-MIB create mode 100644 pandora_console/attachment/mibs/SNA-NAU-MIB create mode 100644 pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB create mode 100644 pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB.my create mode 100644 pandora_console/attachment/mibs/SNMP-USER-BASED-SM-MIB create mode 100644 pandora_console/attachment/mibs/SNMP-VIEW-BASED-ACM-MIB create mode 100644 pandora_console/attachment/mibs/SNMPv2-CONF.my.txt create mode 100644 pandora_console/attachment/mibs/SNMPv2-MIB create mode 100644 pandora_console/attachment/mibs/SNMPv2-MIB.txt create mode 100644 pandora_console/attachment/mibs/SNMPv2-SMI create mode 100644 pandora_console/attachment/mibs/SNMPv2-TC create mode 100644 pandora_console/attachment/mibs/SNMPv2-TM create mode 100644 pandora_console/attachment/mibs/StorageManagement-MIB create mode 100644 pandora_console/attachment/mibs/TCPIPX-MIB create mode 100644 pandora_console/attachment/mibs/TOKENRING-MIB create mode 100644 pandora_console/attachment/mibs/UPS-MIB create mode 100644 pandora_console/attachment/mibs/WINS-MIB create mode 100644 pandora_console/attachment/mibs/WLSX-MON-MIB create mode 100644 pandora_console/attachment/mibs/WLSX-SYSTEMEXT-MIB create mode 100644 pandora_console/attachment/mibs/WLSX-WLAN-MIB create mode 100644 pandora_console/attachment/mibs/oracle-database.mib diff --git a/pandora_console/attachment/mibs/APPLICATION-MIB b/pandora_console/attachment/mibs/APPLICATION-MIB new file mode 100644 index 0000000000..e19b8f64bf --- /dev/null +++ b/pandora_console/attachment/mibs/APPLICATION-MIB @@ -0,0 +1,498 @@ + APPLICATION-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE, Counter32, Gauge32 + FROM SNMPv2-SMI + mib-2 + FROM RFC1213-MIB + DisplayString, TimeStamp + FROM SNMPv2-TC; + + + -- Textual conventions + + -- DistinguishedName [5] is used to refer to objects in the + -- directory. + + DistinguishedName ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A Distinguished Name represented in accordance with + RFC1485." + SYNTAX DisplayString + + application MODULE-IDENTITY + LAST-UPDATED "9311280000Z" + ORGANIZATION "IETF Mail and Directory Management Working Group" + CONTACT-INFO + " Ned Freed + + Postal: Innosoft International, Inc. + 250 West First Street, Suite 240 + Claremont, CA 91711 + US + + Tel: +1 909 624 7907 + Fax: +1 909 621 5319 + + E-Mail: ned@innosoft.com" + DESCRIPTION + "The MIB module describing network service applications" + ::= { mib-2 27 } + + -- The basic applTable contains a list of the application + -- entities. + + + + + + applTable OBJECT-TYPE + SYNTAX SEQUENCE OF ApplEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table holding objects which apply to all different + kinds of applications providing network services." + ::= {application 1} + + applEntry OBJECT-TYPE + SYNTAX ApplEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry associated with a network service application." + INDEX {applIndex} + ::= {applTable 1} + + ApplEntry ::= SEQUENCE { + applIndex + INTEGER, + applName + DisplayString, + applDirectoryName + DistinguishedName, + applVersion + DisplayString, + applUptime + TimeStamp, + applOperStatus + INTEGER, + applLastChange + TimeStamp, + applInboundAssociations + Gauge32, + applOutboundAssociations + Gauge32, + applAccumulatedInboundAssociations + Counter32, + applAccumulatedOutboundAssociations + Counter32, + applLastInboundActivity + TimeStamp, + applLastOutboundActivity + TimeStamp, + applRejectedInboundAssociations + Counter32, + applFailedOutboundAssociations + + + + + Counter32 + } + + applIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index to uniquely identify the network service + application." + ::= {applEntry 1} + + applName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name the network service application chooses to be + known by." + ::= {applEntry 2} + + applDirectoryName OBJECT-TYPE + SYNTAX DistinguishedName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Distinguished Name of the directory entry where + static information about this application is stored. + An empty string indicates that no information about + the application is available in the directory." + ::= {applEntry 3} + + applVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of network service application software." + ::= {applEntry 4} + + + + + + + + + + + + + applUptime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the network service + application was last initialized. If the application was + last initialized prior to the last initialization of the + network management subsystem, then this object contains + a zero value." + ::= {applEntry 5} + + applOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + halted(3), + congested(4), + restarting(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the operational status of the network service + application. 'down' indicates that the network service is + not available. 'running' indicates that the network service + is operational and available. 'halted' indicates that the + service is operational but not available. 'congested' + indicates that the service is operational but no additional + inbound associations can be accomodated. 'restarting' + indicates that the service is currently unavailable but is + in the process of restarting and will be available soon." + ::= {applEntry 6} + + applLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the network service + application entered its current operational state. If + the current state was entered prior to the last + initialization of the local network management subsystem, + then this object contains a zero value." + ::= {applEntry 7} + + + + + + + + applInboundAssociations OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current associations to the network service + application, where it is the responder. For dynamic single + threaded processes, this will be the number of application + instances." + ::= {applEntry 8} + + applOutboundAssociations OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current associations to the network service + application, where it is the initiator. For dynamic single + threaded processes, this will be the number of application + instances." + ::= {applEntry 9} + + applAccumulatedInboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of associations to the application entity + since application initialization, where it was the responder. + For dynamic single threaded processes, this will be the + number of application instances." + ::= {applEntry 10} + + applAccumulatedOutboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of associations to the application entity + since application initialization, where it was the initiator. + For dynamic single threaded processes, this will be the + number of application instances." + ::= {applEntry 11} + + + + + + + + + + applLastInboundActivity OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time this application last + had an inbound association. If the last association + occurred prior to the last initialization of the network + subsystem, then this object contains a zero value." + ::= {applEntry 12} + + applLastOutboundActivity OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time this application last + had an outbound association. If the last association + occurred prior to the last initialization of the network + subsystem, then this object contains a zero value." + ::= {applEntry 13} + + applRejectedInboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of inbound associations the application + entity has rejected, since application initialization." + ::= {applEntry 14} + + applFailedOutboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number associations where the application entity + is initiator and association establishment has failed, + since application initialization." + ::= {applEntry 15} + + + -- The assocTable augments the information in the applTable + -- with information about associations. Note that two levels + -- of compliance are specified below, depending on whether + -- association monitoring is mandated. + + + + + + assocTable OBJECT-TYPE + SYNTAX SEQUENCE OF AssocEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table holding a set of all active application + associations." + ::= {application 2} + + assocEntry OBJECT-TYPE + SYNTAX AssocEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry associated with an association for a network + service application." + INDEX {applIndex, assocIndex} + ::= {assocTable 1} + + AssocEntry ::= SEQUENCE { + assocIndex + INTEGER, + assocRemoteApplication + DisplayString, + assocApplicationProtocol + OBJECT IDENTIFIER, + assocApplicationType + INTEGER, + assocDuration + TimeStamp + } + + assocIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index to uniquely identify each association for a network + service application." + ::= {assocEntry 1} + + + + + + + + + + + assocRemoteApplication OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the system running remote network service + application. For an IP-based application this should be + either a domain name or IP address. For an OSI application + it should be the string encoded distinguished name of the + managed object. For X.400(84) MTAs which do not have a + Distinguished Name, the RFC1327 [6] syntax + 'mta in globalid' should be used." + ::= {assocEntry 2} + + assocApplicationProtocol OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An identification of the protocol being used for the + application. For an OSI Application, this will be the + Application Context. For Internet applications, the IANA + maintains a registry of the OIDs which correspond to + well-known applications. If the application protocol is + not listed in the registry, an OID value of the form + {applTCPProtoID port} or {applUDProtoID port} are used for + TCP-based and UDP-based protocols, respectively. In either + case 'port' corresponds to the primary port number being + used by the protocol." + ::= {assocEntry 3} + + assocApplicationType OBJECT-TYPE + SYNTAX INTEGER { + ua-initiator(1), + ua-responder(2), + peer-initiator(3), + peer-responder(4)} + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates whether the remote application is some type of + client making use of this network service (e.g. a User Agent) + or a server acting as a peer. Also indicated is whether the + remote end initiated an incoming connection to the network + service or responded to an outgoing connection made by the + local application." + ::= {assocEntry 4} + + + + + assocDuration OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time this association was + started. If this association started prior to the last + initialization of the network subsystem, then this + object contains a zero value." + ::= {assocEntry 5} + + + -- Conformance information + + applConformance OBJECT IDENTIFIER ::= {application 3} + + applGroups OBJECT IDENTIFIER ::= {applConformance 1} + applCompliances OBJECT IDENTIFIER ::= {applConformance 2} + + + -- Compliance statements + + applCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which implement the Network Services Monitoring MIB + for basic monitoring of network service applications." + MODULE -- this module + MANDATORY-GROUPS {applGroup} + ::= {applCompliances 1} + + assocCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement the Network Services Monitoring MIB for basic + monitoring of network service applications and their + associations." + MODULE -- this module + MANDATORY-GROUPS {applGroup, assocGroup} + ::= {applCompliances 2} + + + + + + + + + -- Units of conformance + + applGroup OBJECT-GROUP + OBJECTS { + applName, applVersion, applUptime, applOperStatus, + applLastChange, applInboundAssociations, + applOutboundAssociations, applAccumulatedInboundAssociations, + applAccumulatedOutboundAssociations, applLastInboundActivity, + applLastOutboundActivity, applRejectedInboundAssociations, + applFailedOutboundAssociations} + STATUS current + DESCRIPTION + "A collection of objects providing basic monitoring of + network service applications." + ::= {applGroups 1} + + assocGroup OBJECT-GROUP + OBJECTS { + assocRemoteApplication, assocApplicationProtocol, + assocApplicationType, assocDuration} + STATUS current + DESCRIPTION + "A collection of objects providing basic monitoring of + network service applications' associations." + ::= {applGroups 2} + + + -- OIDs of the form {applTCPProtoID port} are intended to be used + -- for TCP-based protocols that don't have OIDs assigned by other + -- means. {applUDPProtoID port} serves the same purpose for + -- UDP-based protocols. In either case 'port' corresponds to + -- the primary port number being used by the protocol. For example, + -- assuming no other OID is assigned for SMTP, an OID of + -- {applTCPProtoID 25} could be used, since SMTP is a TCP-based + -- protocol that uses port 25 as its primary port. + + applTCPProtoID OBJECT IDENTIFIER ::= {application 4} + applUDPProtoID OBJECT IDENTIFIER ::= {application 5} + + END diff --git a/pandora_console/attachment/mibs/ARUBA-MIB b/pandora_console/attachment/mibs/ARUBA-MIB new file mode 100644 index 0000000000..d14c14c8c2 --- /dev/null +++ b/pandora_console/attachment/mibs/ARUBA-MIB @@ -0,0 +1,446 @@ +-- ArubaOS 6.4.2.3-4.1.1.2_48114 +ARUBA-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + OBJECT-IDENTITY, + enterprises, + snmpModules FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF; + + +-- The top node + +aruba OBJECT IDENTIFIER ::= { enterprises 14823 } + +-- Node Product will contain all the products from Aruba Networks. + +products OBJECT IDENTIFIER ::= { aruba 1} + +-- Node arubaEnterpriseMibModules contains all the Enterprise +-- specific MIBS supported by Aruba Networks products. + +arubaEnterpriseMibModules OBJECT IDENTIFIER ::= { aruba 2} + +-- Node arubaMgmtGroup defines the objects related to the Aruba Management +-- Extensions. + +arubaMgmt OBJECT IDENTIFIER ::= { aruba 3} + +-- List of all the products. + +-- Switch Products +switchProducts OBJECT IDENTIFIER ::= { products 1} + +-- a5000 product , this object is the SYSOID + +a5000 OBJECT IDENTIFIER ::= { switchProducts 1} + +-- a2400 product , this object is the SYSOID + +a2400 OBJECT IDENTIFIER ::= { switchProducts 2} + +-- a800 product , this object is the SYSOID + +a800 OBJECT IDENTIFIER ::= { switchProducts 3} + +-- a6000 product , this object is the SYSOID + +a6000 OBJECT IDENTIFIER ::= { switchProducts 4} + +-- a2400E product , this object is the SYSOID + +a2400E OBJECT IDENTIFIER ::= { switchProducts 7} + +-- a800-E product , this object is the SYSOID + +a800E OBJECT IDENTIFIER ::= { switchProducts 8} + +-- a800-4 product , this object is the SYSOID + +a804 OBJECT IDENTIFIER ::= { switchProducts 9} + +-- a200 product , this object is the SYSOID + +a200 OBJECT IDENTIFIER ::= { switchProducts 10} + +-- a2400-24 product , this object is the SYSOID + +a2424 OBJECT IDENTIFIER ::= { switchProducts 11} + +-- a6000-SC3 (nebbiolo) product , this object is the SYSOID + +a6000-SC3 OBJECT IDENTIFIER ::= { switchProducts 12} + +a3200 OBJECT IDENTIFIER ::= { switchProducts 13} +a3200-8 OBJECT IDENTIFIER ::= { switchProducts 14} + +a3400 OBJECT IDENTIFIER ::= { switchProducts 15} +a3400-32 OBJECT IDENTIFIER ::= { switchProducts 16} + +a3600 OBJECT IDENTIFIER ::= { switchProducts 17} + +a3600-64 OBJECT IDENTIFIER ::= { switchProducts 18} + +a650 OBJECT IDENTIFIER ::= { switchProducts 19} +a651 OBJECT IDENTIFIER ::= { switchProducts 20} +reserved1 OBJECT IDENTIFIER ::= { switchProducts 21} +reserved2 OBJECT IDENTIFIER ::= { switchProducts 22} +a620 OBJECT IDENTIFIER ::= { switchProducts 23} + +s3500-24P OBJECT IDENTIFIER ::= { switchProducts 24 } +s3500-24T OBJECT IDENTIFIER ::= { switchProducts 25 } +s3500-48P OBJECT IDENTIFIER ::= { switchProducts 26 } +s3500-48T OBJECT IDENTIFIER ::= { switchProducts 27 } + +s2500-24P OBJECT IDENTIFIER ::= { switchProducts 28 } +s2500-24T OBJECT IDENTIFIER ::= { switchProducts 29 } +s2500-48P OBJECT IDENTIFIER ::= { switchProducts 30 } +s2500-48T OBJECT IDENTIFIER ::= { switchProducts 31 } + +a7210 OBJECT IDENTIFIER ::= { switchProducts 32 } +a7220 OBJECT IDENTIFIER ::= { switchProducts 33 } +a7240 OBJECT IDENTIFIER ::= { switchProducts 34 } + +s3500-24F OBJECT IDENTIFIER ::= { switchProducts 35 } + +s1500-48P OBJECT IDENTIFIER ::= { switchProducts 36 } +s1500-24P OBJECT IDENTIFIER ::= { switchProducts 37 } +s1500-12P OBJECT IDENTIFIER ::= { switchProducts 38 } + +a7005 OBJECT IDENTIFIER ::= { switchProducts 39 } +a7010 OBJECT IDENTIFIER ::= { switchProducts 40 } +a7030 OBJECT IDENTIFIER ::= { switchProducts 41 } +a7110 OBJECT IDENTIFIER ::= { switchProducts 42 } +a7024 OBJECT IDENTIFIER ::= { switchProducts 43 } +a7105 OBJECT IDENTIFIER ::= { switchProducts 44 } +a9900 OBJECT IDENTIFIER ::= { switchProducts 45 } +a9980 OBJECT IDENTIFIER ::= { switchProducts 46 } + +--Undefined switch. +aUndefined OBJECT IDENTIFIER ::= { switchProducts 9999} + +-- Access Point Products +apProducts OBJECT IDENTIFIER ::= { products 2} + +-- a50 , this object is the SYSOID + +a50 OBJECT IDENTIFIER ::= {apProducts 1} + +-- a52 , this object is the SYSOID + +a52 OBJECT IDENTIFIER ::= {apProducts 2} + +-- a60 , this object is the SYSOID + +ap60 OBJECT IDENTIFIER ::= {apProducts 3} + +-- a61 , this object is the SYSOID + +ap61 OBJECT IDENTIFIER ::= {apProducts 4} + +-- a70 , this object is the SYSOID + +ap70 OBJECT IDENTIFIER ::= {apProducts 5} + +-- walljackAp61, this object is the SYSOID + +walljackAp61 OBJECT IDENTIFIER ::= {apProducts 6} + +-- a2E, this object is the SYSOID + +a2E OBJECT IDENTIFIER ::= {apProducts 7} + +-- ap1200, this object is the SYSOID + +ap1200 OBJECT IDENTIFIER ::= {apProducts 8} + +-- ap80s, this object is the SYSOID + +ap80s OBJECT IDENTIFIER ::= {apProducts 9} + +-- ap80m, this object is the SYSOID + +ap80m OBJECT IDENTIFIER ::= {apProducts 10} + +-- wg102, this object is the SYSOID + +wg102 OBJECT IDENTIFIER ::= {apProducts 11} + +-- ap40, this object is the SYSOID + +ap40 OBJECT IDENTIFIER ::= {apProducts 12} + +-- ap41, this object is the SYSOID + +ap41 OBJECT IDENTIFIER ::= {apProducts 13} + +-- ap65, this object is the SYSOID + +ap65 OBJECT IDENTIFIER ::= {apProducts 14} + +-- NesotMW1700 +apMw1700 OBJECT IDENTIFIER ::= {apProducts 15} + +-- ortronics Wi Jack Duo +apDuowj OBJECT IDENTIFIER ::= {apProducts 16} + +-- ortronics Duo +apDuo OBJECT IDENTIFIER ::= {apProducts 17} + +--ap80MB, this object is the SYSOID + +ap80MB OBJECT IDENTIFIER ::= {apProducts 18} + +--ap80SB, this object is the SYSOID + +ap80SB OBJECT IDENTIFIER ::= {apProducts 19} + +--ap85, this object is the SYSOID + +ap85 OBJECT IDENTIFIER ::= {apProducts 20} + +--ap124, this object is the SYSOID + +ap124 OBJECT IDENTIFIER ::= {apProducts 21} + +--ap125, this object is the SYSOID + +ap125 OBJECT IDENTIFIER ::= {apProducts 22} + +--ap120, this object is the SYSOID + +ap120 OBJECT IDENTIFIER ::= {apProducts 23} + +--ap121, this object is the SYSOID + +ap121 OBJECT IDENTIFIER ::= {apProducts 24} + +--ap1250, this object is the SYSOID + +ap1250 OBJECT IDENTIFIER ::= {apProducts 25} + +--ap120abg, this object is the SYSOID + +ap120abg OBJECT IDENTIFIER ::= {apProducts 26} + +--ap121abg, this object is the SYSOID + +ap121abg OBJECT IDENTIFIER ::= {apProducts 27} + +--ap124abg, this object is the SYSOID + +ap124abg OBJECT IDENTIFIER ::= {apProducts 28} + +--ap125abg, this object is the SYSOID + +ap125abg OBJECT IDENTIFIER ::= {apProducts 29} + +-- rap5wn, this object is the SYSOID + +rap5wn OBJECT IDENTIFIER ::= {apProducts 30} + +-- rap5, this object is the SYSOID + +rap5 OBJECT IDENTIFIER ::= {apProducts 31} + +-- rap2wg, this object is the SYSOID + +rap2wg OBJECT IDENTIFIER ::= {apProducts 32} + +--reserved-4, this object is the SYSOID + +reserved4 OBJECT IDENTIFIER ::= {apProducts 33} + +--ap105, this object is the SYSOID + +ap105 OBJECT IDENTIFIER ::= {apProducts 34} + +--ap65wb, this object is the SYSOID + +ap65wb OBJECT IDENTIFIER ::= {apProducts 35} + +--ap651, this object is the SYSOID + +ap651 OBJECT IDENTIFIER ::= {apProducts 36} + +--reserved-6, this object is the SYSOID + +reserved6 OBJECT IDENTIFIER ::= {apProducts 37} + +--ap60p, this object is the SYSOID + +ap60p OBJECT IDENTIFIER ::= {apProducts 38} + +--reserved-7, this object is the SYSOID + +reserved7 OBJECT IDENTIFIER ::= {apProducts 39} + +--ap92, this object is the SYSOID + +ap92 OBJECT IDENTIFIER ::= {apProducts 40} + +--ap93, this object is the SYSOID + +ap93 OBJECT IDENTIFIER ::= {apProducts 41} + +--ap68, this object is the SYSOID + +ap68 OBJECT IDENTIFIER ::= {apProducts 42} + +--ap68p, this object is the SYSOID + +ap68p OBJECT IDENTIFIER ::= {apProducts 43} + +--ap175p, this object is the SYSOID + +ap175p OBJECT IDENTIFIER ::= {apProducts 44} + +--ap175ac, this object is the SYSOID + +ap175ac OBJECT IDENTIFIER ::= {apProducts 45} + +--ap175dc, this object is the SYSOID + +ap175dc OBJECT IDENTIFIER ::= {apProducts 46} + +--ap134, this object is the SYSOID + +ap134 OBJECT IDENTIFIER ::= {apProducts 47} + +--ap135, this object is the SYSOID + +ap135 OBJECT IDENTIFIER ::= {apProducts 48} + +--reserved-8, this object is the SYSOID + +reserved8 OBJECT IDENTIFIER ::= {apProducts 49} + +--ap93h, this object is the SYSOID + +ap93h OBJECT IDENTIFIER ::= {apProducts 50} + +--rap3wn, this object is the SYSOID + +rap3wn OBJECT IDENTIFIER ::= {apProducts 51} + +--rap3wnp, this object is the SYSOID + +rap3wnp OBJECT IDENTIFIER ::= {apProducts 52} + +--ap104, this object is the SYSOID + +ap104 OBJECT IDENTIFIER ::= {apProducts 53} + +--rap155, this object is the SYSOID +rap155 OBJECT IDENTIFIER ::= {apProducts 54} + +--rap155p, this object is the SYSOID +rap155p OBJECT IDENTIFIER ::= {apProducts 55} + +--rap108, this object is the SYSOID +rap108 OBJECT IDENTIFIER ::= {apProducts 56} + +--rap109, this object is the SYSOID +rap109 OBJECT IDENTIFIER ::= {apProducts 57} + +--ap224, this object is the SYSOID +ap224 OBJECT IDENTIFIER ::= {apProducts 58} + +--ap225, this object is the SYSOID +ap225 OBJECT IDENTIFIER ::= {apProducts 59} + +--ap114, this object is the SYSOID +ap114 OBJECT IDENTIFIER ::= {apProducts 60} + +--ap115, this object is the SYSOID +ap115 OBJECT IDENTIFIER ::= {apProducts 61} + +--rap109L, this object is the SYSOID +rap109L OBJECT IDENTIFIER ::= {apProducts 62} + +--ap274, this object is the SYSOID +ap274 OBJECT IDENTIFIER ::= {apProducts 63} + +--ap275, this object is the SYSOID +ap275 OBJECT IDENTIFIER ::= {apProducts 64} + +--ap214a, this object is the SYSOID +ap214a OBJECT IDENTIFIER ::= {apProducts 65} + +--ap215a, this object is the SYSOID +ap215a OBJECT IDENTIFIER ::= {apProducts 66} + +--ap204, this object is the SYSOID +ap204 OBJECT IDENTIFIER ::= {apProducts 67} + +--ap205, this object is the SYSOID +ap205 OBJECT IDENTIFIER ::= {apProducts 68} + +--ap103, this object is the SYSOID +ap103 OBJECT IDENTIFIER ::= {apProducts 69} + +--ap103H, this object is the SYSOID +ap103H OBJECT IDENTIFIER ::= {apProducts 70} + +--iapvc, this object is the SYSOID +iapvc OBJECT IDENTIFIER ::= {apProducts 71} + +--ap214, this object is the SYSOID +ap214 OBJECT IDENTIFIER ::= {apProducts 73} + +--ap215, this object is the SYSOID +ap215 OBJECT IDENTIFIER ::= {apProducts 74} + +--Undefined ap. +apUndefined OBJECT IDENTIFIER ::= { apProducts 9999} + +-- EMS Products +emsProducts OBJECT IDENTIFIER ::= { products 3} + + +--Partner Products +partnerProducts OBJECT IDENTIFIER ::= {products 4} + +ecsE50 OBJECT IDENTIFIER ::= {partnerProducts 1} +ecsE100C OBJECT IDENTIFIER ::= {partnerProducts 2} +ecsE100A OBJECT IDENTIFIER ::= {partnerProducts 3} +ecsENSM OBJECT IDENTIFIER ::= {partnerProducts 4} + +--Amigopod +amigopodProducts OBJECT IDENTIFIER ::= { products 5 } + +-- List of all the Enterprise MIB Modules. + +-- common node will contain all the objects which can be shared between +-- Aruba products. + +common OBJECT IDENTIFIER ::= { arubaEnterpriseMibModules 1 } + +-- switch node will contain all the objects for the switch products + +switch OBJECT IDENTIFIER ::= { arubaEnterpriseMibModules 2 } + +-- Aruba AP will contain all the objects for the Aruba AP. +arubaAp OBJECT IDENTIFIER ::= { arubaEnterpriseMibModules 3 } + +arubaEcs OBJECT IDENTIFIER ::= {arubaEnterpriseMibModules 4} + +-- Common MIB Modules shared across Aruba products. +arubaMIBModules OBJECT IDENTIFIER ::= { common 1 } + +-- Switch Mib Modules. +wlsxEnterpriseMibModules OBJECT IDENTIFIER ::= { switch 1 } + +-- Access Point Mib Modules. +wlsrEnterpriseMibModules OBJECT IDENTIFIER ::= { arubaAp 1 } + +-- Outdoor AP Mib definition. +wlsrOutDoorApMibModules OBJECT IDENTIFIER ::= { arubaAp 2 } + +-- Instant Mib definition. +aiEnterpriseMibModules OBJECT IDENTIFIER ::= { arubaAp 3 } + + +END diff --git a/pandora_console/attachment/mibs/ARUBA-TC b/pandora_console/attachment/mibs/ARUBA-TC new file mode 100644 index 0000000000..dc01826641 --- /dev/null +++ b/pandora_console/attachment/mibs/ARUBA-TC @@ -0,0 +1,1075 @@ +--- ArubaOS 6.5.2.0_59123 +-- vim:set ts=4 sw=4: +ARUBA-TC DEFINITIONS ::= BEGIN + +IMPORTS + ObjectSyntax, TimeTicks, Integer32 + FROM SNMPv2-SMI; + + +-- definition of textual conventions + +ArubaEnableValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents a Flag which is either Enabled or Disabled." + SYNTAX INTEGER { enabled(1), disabled(2) } + + +ArubaFrameType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the Frame type." + SYNTAX INTEGER { + associateRequest(0), + associateResponse(1), + reassociateRequest(2), + reassociateResponse(3), + probeRequest(4), + probeResponse(5), + beacon(8), + atim(9), + disassociate(10), + auth(11), + deauth(12) + } + +ArubaPhyType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the PHY-type of the access point or client. Wired clients will + show 'wired' in user MIB entries. + " + SYNTAX INTEGER { + dot11a(1), + dot11b(2), + dot11g(3), + dot11ag(4), + wired(5) + } + +ArubaHTMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the HT status of the access point or client. + " + SYNTAX INTEGER { + none(1), + ht20(2), + ht40(3), + vht20(4), + vht40(5), + vht80(6), + vht160(7), + vht80plus80(8) + } + +ArubaHTExtChannel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the extension channel offset relative to the current channel." + SYNTAX INTEGER { + none(1), + above(2), + below(3), + eighty(4) + } + +ArubaMonEncryptionType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the encryption type supported by the access point." + SYNTAX INTEGER { + open(0), + wep(1), + wpa(2), + wpa2(3) + } + +ArubaMonEncryptionCipher ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the WPA encryption cipher supported by the access point." + SYNTAX INTEGER { + none(0), + wep40(1), + wep104(2), + tkip(3), + aesccmp(4), + other(5) + } + +ArubaMonAuthAlgorithm ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the WPA authentication algorithm supported by the access point." + SYNTAX INTEGER { + none(0), + psk(1), + dot1x(2), + other(3) + } + +ArubaSwitchRole ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the role of the controller" + SYNTAX INTEGER { + master(1), + local(2), + backupmaster(3) + } + +ArubaSupportStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents if a feature is supported or unsupported." + SYNTAX INTEGER { + unsupported(1), + supported(2) + } + +ArubaActiveState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents if a feature is active or inactive." + SYNTAX INTEGER { + active(1), + inactive(2) + } + +ArubaACLDomain ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents both the source and destination to which an ACL rule will + be applied. + " + SYNTAX INTEGER { + alias(1), + any(2), + user(3), + host(4), + network(5) + } + +ArubaACLNetworkServiceType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the network service in an ACL Rule." + SYNTAX INTEGER { + alias(1), + any(2), + tcp(3), + udp(4), + protocol(5) + } + +ArubaACLAction ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX INTEGER { + deny(1), + permit(2), + srcNAT(3), + dstNAT(4), + redirect(5) + } + +ArubaDaysOfWeek ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX INTEGER { + sun(1), + mon(2), + tue(3), + wed(4), + thu(5), + fri(6), + sat(7) + } + +ArubaAuthenticationMethods ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Authentication Method." + SYNTAX INTEGER { + none(0), + web(1), + mac(2), + vpn(3), + dot1x(4), + kerberos(5), + secureId(7), + pubcookie(15), + xSec(16), + xSecMachine(17), + via-vpn(28), + other(255) + } + +ArubaSubAuthenticationMethods ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Sub Authentication Method (e.g. EAP type)." + SYNTAX INTEGER { + authPAP(1), + authCHAP(2), + authMSCHAP(3), + authMSCHAPv2(4), + eapTLS(5), + eapTTLS(6), + eapLEAP(7), + eapMD5(8), + eapPEAP(9) + } + +ArubaEncryptionType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Encryption Method." + SYNTAX INTEGER { + none(0), + static-wep(1), + dynamic-wep(2), + wpa-psk-tkip(3), + wpa-tkip(4), + wpa-psk-aes(5), + wpa-aes(6), + wpa2-psk-tkip(7), + wpa2-tkip(8), + wpa2-psk-aes(9), + wpa2-aes(10), + xSec(11), + bSec-128(12), + bSec-256(13), + aes-128-cmac(14), + unknown(15) + } + +ArubaUserForwardMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " User Forwarding Mode." + SYNTAX INTEGER { + tunnel-encrypted(0), + bridge(1), + tunnel-decrypted(2), + split-tunnel(3) + } + +ArubaRogueApType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the Rogue AP Type. " + SYNTAX INTEGER { + valid(1), + interfering(2), + unsecure(3), + dos(4), + unknown(5), + knownInterfering(6), + suspectedUnsecure(7) + } + +ArubaAPMatchType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the match type of a suspected rogue AP. " + SYNTAX INTEGER { + unknown(0), + configuredWiredMac(1), + ethernetWiredMac(2), + apWiredMac(3), + externalWiredMac(4), + manual(5), + baseBSSIDOverride(6), + mms(7), + ethernetGatewayWiredMac(8), + classificationDisabled(9), + apBSSID(10), + propagatedEthernetWiredMac(11), + apRule(12), + systemWiredMac(13), + systemGatewayMac(14) + } + +ArubaAPMatchMethod ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the match method of a suspected rogue AP. " + SYNTAX INTEGER { + notApplicable(0), + exactMatch(1), + plusOneMatch(2), + minusOneMatch(3), + ouiMatch(4) + } + +ArubaStationType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the station type. " + SYNTAX INTEGER { + unknown(0), + valid(1), + interfering(2), + dos(3) + } + +ArubaEncryptionMethods ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX BITS{ + disabled(0), + static-wep(1), + dynamic-wep(2), + static-wpa(3), + dynamic-wpa(4), + wpa2-psk-aes(5), + wpa2-8021x-aes(6), + wpa2PreAuth(7), + xsec(8), + wpa-psk-aes(9), + wpa-aes(10), + wpa2-psk-tkip(11), + wpa2-8021x-tkip(12) + } + + ArubaHashAlgorithms ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the Actions in an ACL rule." + SYNTAX INTEGER { + md5(1), + sha(2) + } + +ArubaVlanValidRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the Valid Vlan Id Range." + SYNTAX INTEGER(1..4095) + +ArubaPortMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the controller port mode." + SYNTAX INTEGER { + access(1), + dot1q(2) + } + +ArubaDot1dState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the controller port spanning tree state." + SYNTAX INTEGER { + disabled(1), + blocked(2), + listening(3), + learning(4), + forwarding(5) + } + +ArubaAPDot1dState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the AP port spanning tree state." + SYNTAX INTEGER { + notAvailable(1), + off(2), + disabled(3), + listening(4), + learning(5), + forwarding(6), + blocking(7) + } + +ArubaPoeState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the POE mode." + SYNTAX INTEGER { + disabled(1), + enabled(2), + enabledCisco(3), + notAvailable(4) + } + +ArubaCardType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Type of the hardware module. + " + SYNTAX INTEGER { + lc1(1), + lc2(2), + sc1(3), + sc2(4), + sw2400(5), + sw800(6), + sw200(7), + m3mk1(8), + sw3200(9), + sw3400(10), + sw3600(11), + sw650(12), + sw651(13), + reserved1(14), + reserved2(15), + sw620(16), + sw7210(17), + sw7220(18), + sw7240(19), + sw3500(20), + sw2500(21), + sw1500(22), + sw7010(23), + sw7005(24), + sw7030(25), + sw7110(26) + } + +ArubaESIServerMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The mode of the ESI server. + " + SYNTAX INTEGER { + bridged(1), + routed(2), + nat(3) + } + +ArubaESIServerStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The status of the ESI server. + " + SYNTAX INTEGER { + up(1), + down(2) + } + +ArubaIfType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The type of interface referred to by the value of ifIndex. + " + SYNTAX INTEGER { + port(1), + vlan(2), + tunnel(3), + loopback(4) + } + +ArubaVoipProtocolType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The type of VoIP protocols supported. + " + SYNTAX INTEGER{ + sccp(1), + svp(2), + vocera(3), + sip(9), + ua(11), + h323(13), + unknown(15) + } + +ArubaAccessPointMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The mode of the access point. + " + SYNTAX INTEGER{ + airMonitor(1), + accessPoint(2), + accessPointAndMonitor(3), + meshPortal(4), + meshPoint(5), + rfprotectSensor(6), + spectrumSensor(7) + } + +ArubaAuthServerType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The type of the auth server. + " + SYNTAX INTEGER{ + internaldb(1), + radius(2), + ldap(3), + kerberos(4), + tacacs(5) + } + +ArubaAddressType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Address Type. + " + SYNTAX INTEGER{ + srcAddress(1), + dstAddress(2), + bssid(3) + } + +ArubaBlackListReason ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Black List Reason. + " + SYNTAX INTEGER { + userDefined(1), + mitmAttack(2), + authFailure(3), + pingFlood(4), + sessionFlood(5), + synFlood(6), + sessionBlacklist(7), + ipSpoofing(8), + esiBlacklist(9), + other(100) + } + +ArubaDBType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + DataBase Type. + " + SYNTAX INTEGER { + mssql(1), + mysql(2) + } + + +ArubaVrrpState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + DataBase Type. + " + SYNTAX INTEGER { + initialize(1), + backup(2), + master(3) + } + + +ArubaOperStateValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents Operational state of an interface." + SYNTAX INTEGER { up(1), down(2), testing(3) } + + + +ArubaAntennaSetting ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the status of the external antenna." + SYNTAX INTEGER { notPresent(1), enabled(2), disabled(3) } + +ArubaAPStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The status of the access point. + " + SYNTAX INTEGER { up(1), down(2) } + +ArubaPortSpeed ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Port Speed. + " + SYNTAX INTEGER { speed10Mbps(1), + speed100Mbps(2), + speed1000Mbps(3), + speedAuto(4), + speed10Gbps(5) + } + +ArubaPortDuplex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Port Duplexity. + " + SYNTAX INTEGER { half(1), + full(2), + auto(3) + } + +ArubaPortType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Port Type. + " + SYNTAX INTEGER { fastethernet(1), + gigabitethernet(2), + xgigabitethernet(3) + } + +ArubaEnet1Mode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the Mode of the Ethernet port on the Access Point" + SYNTAX INTEGER { + activeStandby(1), + tunnel(2), + bridge(3), + notApplicable(4), + split(5) + } + +ArubaUnprovisionedStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents whether the AP is provisioned or not." + SYNTAX INTEGER { + yes(1), + no(2) + } + +ArubaMonitorMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents whether the AP has any radios dedicated to monitoring." + SYNTAX INTEGER { + unknown(0), + all(1), + none(2), + mixed(3) + } + +ArubaConfigurationState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Configuration Transfer Types." + SYNTAX INTEGER { + success(1), + error(2) + } + +ArubaConfigurationChangeType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Configuration Change Types." + SYNTAX INTEGER { + create(1), + delete(2), + modify(3) + } + +ArubaCallStates ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The Call state. + " + SYNTAX INTEGER { + idle(0), + initiated(1), + connecting(2), + delivered(3), + connected(4), + offered(5), + alerting(6), + releasing(7), + cancelling(8), + challenging(9), + transient(10), + blockwait(11), + succ(12), + fail(13), + aborted(14), + blocked(15) + } + +ArubaVoipProtocol ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + VoIP protocol used + " + SYNTAX INTEGER { + sccp(1), + svp(2), + vocera(3), + sip(9), + ua(11), + h323(13) + } + +ArubaVoipRegState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + VoIP registered state + " + SYNTAX INTEGER { + unknown(0), + registering(1), + unregistering(2), + challenge(3), + registered(4), + unregistered(5) + } + +ArubaVoiceCdrDirection ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + VoIP CDR direction + " + SYNTAX INTEGER { + og(0), + ic(1) + } + +ArubaVoiceCacBit ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Voice CAC bit flags + " + SYNTAX BITS { + cacActiveLoadBalancing(0), + cacHighCapThresholdReached(1), + cacHandRsrvThresholdReached(2), + cacPeakCapacityReached(3) + } + +ArubaMeshRole ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Mesh role + " + SYNTAX INTEGER { + nonmesh(0), + point(1), + portal(2) + } + +ArubaHTRate ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents HT rate" + SYNTAX INTEGER { + unknown(0), + ht6dot5(1), + ht13(2), + ht13dot5(3), + ht15(4), + ht19dot5(5), + ht26(6), + ht27(7), + ht30(8), + ht39(9), + ht40dot5(10), + ht45(11), + ht52(12), + ht54(13), + ht58dot5(14), + ht60(15), + ht65(16), + ht78(17), + ht81(18), + ht90(19), + ht104(20), + ht108(21), + ht117(22), + ht120(23), + ht121dot5(24), + ht130(25), + ht135(26), + ht150(27), + ht162(28), + ht180(29), + ht216(30), + ht240(31), + ht243(32), + ht270(33), + ht300(34) + } + + +ArubaARMChangeReason ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + The reason for ARM based change. + " + SYNTAX INTEGER { + radarDetected(1), + radarCleared(2), + txHang(3), + txHangClear(4), + fortyMhzIntol(5), + cancel40mhzIntol(6), + fortyMhzAlign(7), + armInterference(8), + armInvalidCh(9), + armErrorThresh(10), + armNoiseThresh(11), + armEmptyCh(12), + armRogueCont(13), + armDecreasePower(14), + armIncreasePower(15), + armTurnOffRadio(16), + armTurnOnRadio(17), + armChannelQualityThresh(18) + } + +ArubaAPMasterStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + AP status as seen by the master controller + (used to indicate a status change). + " + SYNTAX INTEGER { + up(1), + down(2), + move(3) + } + +ArubaDot3azStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the state of Energy Efficient Ethernet (802.3az)." + SYNTAX BITS { + disabled(0), + unsupported(1), + eee100BaseTX(2), + eee1000BaseT(3), + eee10GBaseT(4), + eee1000BaseKX(5), + eee10GBaseKX4(6), + eee10GBaseKR(7) + } + +ArubaThresholdResourceType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the Threshold Resource Types" + SYNTAX INTEGER { + dataPathCpu(0), + controlPathCpu(1), + controlPathMemory(2), + totalTunnelCapacity(3), + userCapacity(4), + noofAps(5) , + noofLocals(6) + } + +ArubaStackState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The state of the stack element in the stack. + + primary - the stack element is in primary state. + secondary - the stack element is in secondary state. + linecard - the stack element is in linecard state. + away - the stack element is in inactive state. + + primary, secondary and linecard implies active state of the stack + element." + SYNTAX INTEGER { + primary(1), + secondary(2), + linecard(3), + away(4) + } + +ArubaStackChangeEvent ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Used to specify the event which caused change in topology in stack." + SYNTAX INTEGER { + other(1), + primarySlotChanged(2), + secondarySlotChanged(3), + lineCardSlotChanged(4), + roleChanged(5), + priorityChanged(6), + versionMismatch(7), + slotExceeded(8) + } + +ArubaStackIfTopoJoined ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Used to specify whether an interface has joined the stacking + topology or left the topology." + SYNTAX INTEGER { + connected(1), -- An interface has joined stacking topology. + disconnected(2) -- An interface has left stacking topology. + } + +InterfaceIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each interface or + interface sub-layer in the managed system. It is + recommended that values are assigned contiguously starting + from 1. The value for each interface sub-layer must remain + constant at least from one re-initialization of the entity's + network management system to the next re-initialization." + SYNTAX Integer32 (1..2147483647) + +ArubaIfState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Used to specify the state of an interface. + + linkUp - Operational state of this interface is up. + linkDown - Operational state of this interface is down." + SYNTAX INTEGER { + linkUp(1), + linkDown(2) + } + +ArubaIfStateChangeReason ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Used to specify the reason for interface state change. + + admin - User has explicitly issued 'shutdown' or 'no shutdown' + configuration from CLI on this interface. + loopProtect - If ifState of an interface changes to linkDown, then + it is used to specify that a loop has been detected on + this interface by loop protect mechanism. + If ifState of an interface changes to linkUp, then + it is used to specify that loop-protect error has been + cleared out on this interface through port auto-recovery + mechanism or through explicit clear error-recovery + command. + macLimit - If ifState of an interface changes to linkDown, then + it is used to specify that number of learnt MACs on this + interface exceeds the limit configured. + If ifState of an interface changes to linkUp, then it is + used to specify that mac-limit error has been cleared out + on this interface through port auto-recovery mechanism or + through explicit clear error-recovery command. + raGuard - If ifState of an interface changes to linkDown, then it + is used to specify that invalid router advertisement has + been identified on this interface, resulting shutting + down of this interface. + If ifState of an interface changes to linkUp, then it is + used to specify that raGuard error has been cleared out on + this interface through port auto-recovery mechanism or + through explicit clear error-recovery command. + bpduGuard - If ifState of an interface changes to linkDown, then it + is used to specify that BPDU is received on this interface + resulting shutting down of this interface. + If ifState of an interface changes to linkUp, then it is + used to specify that BPDU Guard error has been cleared out + on this interface through port auto-recovery mechanism or + through explicit clear error-recovery command." + SYNTAX INTEGER { + admin(1), + loopProtect(2), + macLimit(3), + raGuard(4), + bpduGuard(5) + } + +ArubaAPUplinkType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + AP uplink type + " + SYNTAX INTEGER { + ethernet(1), + usb(2), + pppoe(3), + wifi(4) + } + +ArubaAPUplinkChangeReason ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Used to specify the reason for AP uplink change. + + linkFailure - The uplink went down + vpnFailure - VPN tunnel could not be sustained using the uplink + preemption - The uplink was pre-empted by a higher-priority uplink" + SYNTAX INTEGER { + linkFailure(1), + vpnFailure(2), + preemption(3) + } + +ArubaPortalServerDownReason ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Used to specify the reason for Portal server down. + + connectFail - Connect Portal server fail" + SYNTAX INTEGER { + connectFail(1) + } + +ArubaHaRole ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the HA role of the Aruba controller" + SYNTAX INTEGER { + dual(0), + active(1), + standby(2), + disabled(3) + } + +ArubaHaConnectivityStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " Represents the HA standby connectivity status of the Access Point" + SYNTAX INTEGER { + haSuccess(0), + haNetUnreach(1), + haCpUnreach(2), + haImageMissMatch(3), + haApDenied(4), + haHbtFailure(5), + haInvalidHelloResponse(6), + haStandbyTunnelDown(7) + } + +ArubaFlexRadioMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + " + Flex Radio Operating Mode + " + SYNTAX INTEGER { + single2GHzBand(0), + single5GHzBand(1), + dual2GHzplus5GHzBand(2), + unknown(3), + notApplicable(4) + } + +END diff --git a/pandora_console/attachment/mibs/ATM-MIB b/pandora_console/attachment/mibs/ATM-MIB new file mode 100644 index 0000000000..b4bc797acd --- /dev/null +++ b/pandora_console/attachment/mibs/ATM-MIB @@ -0,0 +1,2623 @@ +-- Changes to RFC1694 - ATM-MIB +-- The following items need to removed from the MODULE-COMPLIANCE +-- atmMIBCompliance since they are not in any group: +-- atmVplVpi +-- atmVpCrossConnectLowVpi +-- atmVpCrossConnectHighVpi +-- atmVclVpi +-- atmVcCrossConnectLowVpi +-- atmVcCrossConnectHighVpi +-- aal5VccVpi +-- dperkins@scruznet.com + + + ATM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, + Counter32, Integer32, IpAddress + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, + TimeStamp, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + ifIndex, mib-2 + FROM RFC1213-MIB; + + + atmMIB MODULE-IDENTITY + LAST-UPDATED "9406072245Z" + ORGANIZATION "IETF AToM MIB Working Group" + CONTACT-INFO + " Masuma Ahmed + Postal: Bellcore + 331 Newman Springs Road + Red Bank, NJ 07701 + US + Tel: +1 908 758 2515 + Fax: +1 908 758 4131 + E-mail: mxa@mail.bellcore.com + + Kaj Tesink + Postal: Bellcore + 331 Newman Springs Road + Red Bank, NJ 07701 + US + Tel: +1 908 758 5254 + Fax: +1 908 758 4196 + E-mail: kaj@cc.bellcore.com" + DESCRIPTION + "This is the MIB Module for ATM and AAL5-related + objects for managing ATM interfaces, ATM virtual + links, ATM cross-connects, AAL5 entities, and + and AAL5 connections." + ::= { mib-2 37 } + + atmMIBObjects OBJECT IDENTIFIER ::= {atmMIB 1} + + -- This ATM MIB Module consists of the following groups: + -- (1) ATM Interface configuration group + -- (2) ATM Interface DS3 PLCP group + -- (3) ATM Interface TC Sublayer group + -- (4) ATM Interface VPL configuration group + -- (5) ATM Interface VCL configuration group + -- (6) ATM VP Cross Connect group + -- (7) ATM VC Cross Connect group + -- (8) ATM Interface AAL5 VCC performance statistics + -- group + + + IfIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of this object identifies the interface + for which the entry contains management + information. The value of this object for a + particular interface has the same value as the + ifIndex object, defined in RFC 1213, for the same + interface." + SYNTAX Integer32 + + + AtmTrafficDescrParamIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of this object identifies the row + in the atmTrafficDescrParamTable." + SYNTAX Integer32 + + atmTrafficDescriptorTypes OBJECT IDENTIFIER ::= + {atmMIBObjects 1} + + -- The following values are defined for use as + -- possible values of the ATM traffic descriptor type. + -- ATM Forum specified seven types of ATM traffic + -- descriptors. + + atmNoTrafficDescriptor OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This identifies the no ATM traffic descriptor + type. Parameters 1, 2, 3, 4, and 5 are not used. + This traffic descriptor type can be used for + best effort traffic." + ::= { atmTrafficDescriptorTypes 1} + + atmNoClpNoScr OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This traffic descriptor is for no CLP and + no Sustained Cell Rate. The use of the + parameter vector for this type: + Parameter 1: CLP=0+1 peak cell rate in + cells per second + Parameter 2: not used + Parameter 3: not used + Parameter 4: not used + Parameter 5: not used. + This traffic descriptor type can be used + for best effort traffic." + ::= { atmTrafficDescriptorTypes 2} + + atmClpNoTaggingNoScr OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This traffic descriptor is for no CLP without + tagging and no Sustained Cell Rate. The use + of the parameter vector for this type: + Parameter 1: CLP=0+1 peak cell rate in + cells per second + Parameter 2: CLP=0 peak cell rate in + cells per second + Parameter 3: not used + Parameter 4: not used + Parameter 5: not used." + ::= { atmTrafficDescriptorTypes 3} + + atmClpTaggingNoScr OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This traffic descriptor is for CLP with + tagging and no Sustained Cell Rate. The + use of the parameter vector for this type: + Parameter 1: CLP=0+1 peak cell rate in + cells per second + Parameter 2: CLP=0 peak cell rate in + cells per second with excess + traffic tagged as CLP=1 + Parameter 3: not used + Parameter 4: not used + Parameter 5: not used." + ::= { atmTrafficDescriptorTypes 4} + + atmNoClpScr OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This traffic descriptor is for no CLP + with Sustained Cell Rate. The + use of the parameter vector for this type: + Parameter 1: CLP=0+1 peak cell rate in + cells per second + Parameter 2: CLP=0+1 sustained cell rate in + cells per second + Parameter 3: CLP=0+1 maximum burst size + in cells + Parameter 4: not used + Parameter 5: not used." + ::= { atmTrafficDescriptorTypes 5} + + atmClpNoTaggingScr OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This traffic descriptor is for CLP + with Sustained Cell Rate and no tagging. + The use of the parameter vector for this type: + Parameter 1: CLP=0+1 peak cell rate in + cells per second + Parameter 2: CLP=0 sustained cell rate in + cells per second + Parameter 3: CLP=0 maximum burst size in cells + Parameter 4: not used + Parameter 5: not used." + ::= { atmTrafficDescriptorTypes 6} + + atmClpTaggingScr OBJECT-IDENTITY + STATUS current + DESCRIPTION + "This traffic descriptor is for CLP + with tagging and Sustained Cell Rate. + The use of the parameter vector for this type: + Parameter 1: CLP=0+1 peak cell rate in + cells per second + Parameter 2: CLP=0 sustained cell rate in + cells per second with excess + traffic tagged as CLP=1 + Parameter 3: CLP=0 maximum burst size in cells + Parameter 4: not used + Parameter 5: not used." + ::= { atmTrafficDescriptorTypes 7} + + + -- ATM Interface Configuration Parameters Group + -- This group contains ATM specific + -- configuration information associated with + -- an ATM interface beyond those + -- supported using the ifTable. + + + atmInterfaceConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmInterfaceConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains ATM local interface + configuration parameters, one entry per ATM + interface port." + ::= { atmMIBObjects 2 } + + atmInterfaceConfEntry OBJECT-TYPE + SYNTAX AtmInterfaceConfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains ATM interface configuration + parameters and state variables." + INDEX { ifIndex } + ::= { atmInterfaceConfTable 1} + + AtmInterfaceConfEntry ::= SEQUENCE { + atmInterfaceMaxVpcs INTEGER, + atmInterfaceMaxVccs INTEGER, + atmInterfaceConfVpcs INTEGER, + atmInterfaceConfVccs INTEGER, + atmInterfaceMaxActiveVpiBits INTEGER, + atmInterfaceMaxActiveVciBits INTEGER, + atmInterfaceIlmiVpi INTEGER, + atmInterfaceIlmiVci INTEGER, + atmInterfaceAddressType INTEGER, + atmInterfaceAdminAddress OCTET STRING, + atmInterfaceMyNeighborIpAddress IpAddress, + atmInterfaceMyNeighborIfName DisplayString + } + + atmInterfaceMaxVpcs OBJECT-TYPE + SYNTAX INTEGER (0..4096) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of VPCs (PVCs and SVCs) + supported at this ATM interface. At the ATM UNI, + the maximum number of VPCs (PVCs and SVCs) + ranges from 0 to 256 only." + ::= { atmInterfaceConfEntry 1} + + atmInterfaceMaxVccs OBJECT-TYPE + SYNTAX INTEGER (0..65536) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of VCCs (PVCs and SVCs) + supported at this ATM interface." + ::= { atmInterfaceConfEntry 2} + + atmInterfaceConfVpcs OBJECT-TYPE + SYNTAX INTEGER (0..4096) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VPCs (PVCs and SVCs) + configured for use at this ATM interface. + At the ATM UNI, the configured number of + VPCs (PVCs and SVCs) can range from + 0 to 256 only." + ::= { atmInterfaceConfEntry 3} + + atmInterfaceConfVccs OBJECT-TYPE + SYNTAX INTEGER (0..65536) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VCCs (PVCs and SVCs) + configured for use at the ATM interface." + ::= { atmInterfaceConfEntry 4} + + atmInterfaceMaxActiveVpiBits OBJECT-TYPE + SYNTAX INTEGER (0..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of active VPI bits + configured for use at the ATM interface. + At the ATM UNI, the maximum number of active + VPI bits configured for use ranges from + 0 to 8 only." + ::= { atmInterfaceConfEntry 5} + + atmInterfaceMaxActiveVciBits OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of active VCI bits + configured for use at this ATM interface." + ::= { atmInterfaceConfEntry 6} + + atmInterfaceIlmiVpi OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VPI value of the VCC supporting + the ILMI at this ATM interface. If the values of + atmInterfaceIlmiVpi and atmInterfaceIlmiVci are + both equal to zero then the ILMI is not + supported at this ATM interface." + DEFVAL { 0 } + ::= { atmInterfaceConfEntry 7} + + atmInterfaceIlmiVci OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The VCI value of the VCC supporting + the ILMI at this ATM interface. If the values of + atmInterfaceIlmiVpi and atmInterfaceIlmiVci are + both equal to zero then the ILMI is not + supported at this ATM interface." + DEFVAL { 16 } + ::= { atmInterfaceConfEntry 8} + + atmInterfaceAddressType OBJECT-TYPE + SYNTAX INTEGER { + private(1), + nsapE164(2), + nativeE164(3), + other(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of primary ATM address configured + for use at this ATM interface." + ::= { atmInterfaceConfEntry 9 } + + atmInterfaceAdminAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An address assigned for administrative purposes, + for example, an address associated with the + service provider side of a public network UNI. + If this interface has no assigned administrative + address, or when the address used for + administrative purposes is the same as that used + for ifPhysAddress, then this is an octet string of + zero length." + ::= { atmInterfaceConfEntry 10 } + + atmInterfaceMyNeighborIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The IP address of the neighbor system connected to + the far end of this interface, to which a Network + Management Station can send SNMP messages, as IP + datagrams sent to UDP port 161, in order to access + network management information concerning the + operation of that system. Note that the value + of this object may be obtained in different ways, + e.g., by manual configuration, or through ILMI + interaction with the neighbor system." + ::= { atmInterfaceConfEntry 11 } + + atmInterfaceMyNeighborIfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The textual name of the interface on the neighbor + system on the far end of this interface, and to + which this interface connects. If the neighbor + system is manageable through SNMP and supports + the object ifName, the value of this object must + be identical with that of ifName for the ifEntry + of the lowest level physical interface + for this port. If this interface does not have a + textual name, the value of this object is a zero + length string. Note that the value of this object + may be obtained in different ways, e.g., by manual + configuration, or through ILMI interaction with + the neighbor system." + ::= { atmInterfaceConfEntry 12 } + + + -- The ATM Interface DS3 PLCP Group + + -- This group contains the DS3 PLCP configuration and + -- state parameters of those ATM interfaces + -- which use DS3 PLCP for carrying ATM cells over DS3. + + atmInterfaceDs3PlcpTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmInterfaceDs3PlcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains ATM interface DS3 PLCP + parameters and state variables, one entry per + ATM interface port." + ::= { atmMIBObjects 3} + + atmInterfaceDs3PlcpEntry OBJECT-TYPE + SYNTAX AtmInterfaceDs3PlcpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains DS3 PLCP parameters and + state variables at the ATM interface." + INDEX {ifIndex } + ::= { atmInterfaceDs3PlcpTable 1} + + AtmInterfaceDs3PlcpEntry ::= SEQUENCE { + atmInterfaceDs3PlcpSEFSs Counter32, + atmInterfaceDs3PlcpAlarmState INTEGER, + atmInterfaceDs3PlcpUASs Counter32 + } + + + atmInterfaceDs3PlcpSEFSs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of DS3 PLCP Severely Errored Framing + Second (SEFS). Each SEFS represents a + one-second interval which contains + one or more SEF event." + ::= { atmInterfaceDs3PlcpEntry 1} + + atmInterfaceDs3PlcpAlarmState OBJECT-TYPE + SYNTAX INTEGER { + noAlarm(1), + receivedFarEndAlarm(2), + incomingLOF(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates if there is an + alarm present for the DS3 PLCP. The value + receivedFarEndAlarm means that the DS3 PLCP + has received an incoming Yellow + Signal, the value incomingLOF means that + the DS3 PLCP has declared a loss of frame (LOF) + failure condition, and the value noAlarm + means that there are no alarms present. + Transition from the failure to the no alarm state + occurs when no defects (e.g., LOF) are received + for more than 10 seconds." + ::= { atmInterfaceDs3PlcpEntry 2} + + atmInterfaceDs3PlcpUASs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds encountered by the PLCP." + ::= { atmInterfaceDs3PlcpEntry 3} + + + -- The ATM Interface TC Sublayer Group + + -- This group contains TC sublayer configuration and + -- state parameters of those ATM interfaces + -- which use TC sublayer for carrying ATM cells over + -- SONET or DS3. + + + atmInterfaceTCTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmInterfaceTCEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains ATM interface TC + Sublayer parameters and state variables, + one entry per ATM interface port." + ::= { atmMIBObjects 4} + + atmInterfaceTCEntry OBJECT-TYPE + SYNTAX AtmInterfaceTCEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains TC Sublayer parameters + and state variables at the ATM interface." + INDEX {ifIndex } + ::= { atmInterfaceTCTable 1} + + AtmInterfaceTCEntry ::= SEQUENCE { + atmInterfaceOCDEvents Counter32, + atmInterfaceTCAlarmState INTEGER + } + + atmInterfaceOCDEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the Out of Cell + Delineation (OCD) events occur. If seven + consecutive ATM cells have Header Error + Control (HEC) violations, an OCD event occurs. + A high number of OCD events may indicate a + problem with the TC Sublayer." + ::= { atmInterfaceTCEntry 1} + + atmInterfaceTCAlarmState OBJECT-TYPE + SYNTAX INTEGER { + noAlarm(1), + lcdFailure(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates if there is an + alarm present for the TC Sublayer. The value + lcdFailure indicates that a Loss of + Cell Delineation (LCD) failure state has been + declared for the TC Sublayer. Transition from + failure to the no alarm state occurs + when 6 consecutive ATM cells + are received with valid HEC, followed by + about 10 seconds of acceptable working signal." + ::= { atmInterfaceTCEntry 2} + + + -- ATM Traffic Descriptor Parameter Group + + -- This group contains a set of self-consistent + -- ATM traffic parameters including the + -- ATM traffic QoS Class. + + -- The ATM virtual link tables (i.e., VPL and VCL tables) + -- will use this ATM Traffic Descriptor table + -- to assign traffic parameters and QoS Class + -- to the receive and transmit directions of + -- the ATM virtual links (i.e., VPLs and VCLs). + -- The ATM VPL or VCL table will indicate a row + -- in the atmTrafficDescrParamTable + -- using its atmTrafficDescrParamIndex value. + -- The management application can then compare a set of + -- ATM traffic parameters with a single value. + + -- If no suitable row(s) in the atmTrafficDescrParamTable + -- exists, the manager must create a new row(s) in this + -- table. If such a row is created, agent checks the + -- sanity of that set of ATM traffic parameter values. + + -- When creating a new row, the parameter values + -- will be checked for self-consistency. + -- Predefined/template rows may be supported. + + -- A row in the atmTrafficDescrParamTable is deleted + -- by setting the atmTrafficDescrRowStatus to destroy(6). + -- The agent will check whether this row is still in use + -- by any entry of the atmVplTable or atmVclTable. + -- The agent denies the request if the row is still in + -- use. + + -- The ATM Traffic Descriptor Parameter Table + + + atmTrafficDescrParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmTrafficDescrParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information on ATM traffic + descriptor type and the associated parameters." + ::= { atmMIBObjects 5} + + atmTrafficDescrParamEntry OBJECT-TYPE + SYNTAX AtmTrafficDescrParamEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains ATM traffic descriptor + type and the associated parameters." + INDEX {atmTrafficDescrParamIndex} + ::= { atmTrafficDescrParamTable 1} + + AtmTrafficDescrParamEntry ::= SEQUENCE { + atmTrafficDescrParamIndex AtmTrafficDescrParamIndex, + atmTrafficDescrType OBJECT IDENTIFIER, + atmTrafficDescrParam1 Integer32, + atmTrafficDescrParam2 Integer32, + atmTrafficDescrParam3 Integer32, + atmTrafficDescrParam4 Integer32, + atmTrafficDescrParam5 Integer32, + atmTrafficQoSClass INTEGER, + atmTrafficDescrRowStatus RowStatus + } + + atmTrafficDescrParamIndex OBJECT-TYPE + SYNTAX AtmTrafficDescrParamIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object is used by the virtual link + table (i.e., VPL or VCL table) + to identify the row of this table." + ::= { atmTrafficDescrParamEntry 1} + + atmTrafficDescrType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the type + of ATM traffic descriptor. + The type may indicate no traffic descriptor or + traffic descriptor with one or more parameters. + These parameters are specified as a parameter + vector, in the corresponding instances of the + objects: + atmTrafficDescrParam1 + atmTrafficDescrParam2 + atmTrafficDescrParam3 + atmTrafficDescrParam4 + atmTrafficDescrParam5." + DEFVAL { atmNoTrafficDescriptor } + ::= { atmTrafficDescrParamEntry 2} + + atmTrafficDescrParam1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The first parameter of the ATM traffic descriptor + used according to the value of + atmTrafficDescrType." + DEFVAL { 0 } + ::= { atmTrafficDescrParamEntry 3} + + atmTrafficDescrParam2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The second parameter of the ATM traffic descriptor + used according to the value of + atmTrafficDescrType." + DEFVAL { 0 } + ::= { atmTrafficDescrParamEntry 4} + + atmTrafficDescrParam3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The third parameter of the ATM traffic descriptor + used according to the value of + atmTrafficDescrType." + DEFVAL { 0 } + ::= { atmTrafficDescrParamEntry 5} + + atmTrafficDescrParam4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fourth parameter of the ATM traffic descriptor + used according to the value of + atmTrafficDescrType." + DEFVAL { 0 } + ::= { atmTrafficDescrParamEntry 6} + + atmTrafficDescrParam5 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The fifth parameter of the ATM traffic descriptor + used according to the value of + atmTrafficDescrType." + DEFVAL { 0 } + ::= { atmTrafficDescrParamEntry 7} + + atmTrafficQoSClass OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the QoS Class. + Four Service classes have been + specified in the ATM Forum UNI Specification: + Service Class A: Constant bit rate video and + Circuit emulation + Service Class B: Variable bit rate video/audio + Service Class C: Connection-oriented data + Service Class D: Connectionless data + Four QoS classes numbered 1, 2, 3, and 4 have + been specified with the aim to support service + classes A, B, C, and D respectively. + An unspecified QoS Class numbered `0' is used + for best effort traffic." + DEFVAL { 0 } + ::= { atmTrafficDescrParamEntry 8} + + + atmTrafficDescrRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create + a new row or modify or delete an + existing row in this table." + DEFVAL { active } + ::= {atmTrafficDescrParamEntry 9} + + + -- ATM Interface Virtual Path Link (VPL) Group + + -- This group contains configuration and state + -- information of a bi-directional Virtual Path Link + -- (VPL) + + -- This table can be used to create, delete or modify + -- a VPL that is terminated in an ATM host or switch. + -- This table can also be used to create, delete or + -- modify a VPL which is cross-connected to another + -- VPL. + + -- In the example below, the traffic flows on the receive + -- and transmit directions of the VPLs are characterized + -- by atmVplReceiveTrafficDescrIndex and + -- atmVplTransmitTrafficDescrIndex respectively. + -- The cross-connected VPLs are identified by + -- atmVplCrossConnectIdentifier. + + + + -- ________________________________ + -- | | + -- VPL | ATM Host, Switch, or Network | VPL + -- receive | | receive + -- ========> X X <======= + -- <======== X X ========> + -- transmit | | transmit + -- |______________________________| + + + + -- The ATM Interface VPL Table + + + atmVplTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmVplEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Virtual Path Link (VPL) table. A + bi-directional VPL is modeled as one entry + in this table." + ::= { atmMIBObjects 6} + + atmVplEntry OBJECT-TYPE + SYNTAX AtmVplEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the VPL table. This entry is + used to model a bi-directional VPL. + To create a VPL at an ATM interface, + either of the following procedures are used: + Negotiated VPL establishment + + (1) The management application creates + a VPL entry in the atmVplTable + by setting atmVplRowStatus to createAndWait(5). + This may fail for the following reasons: + - The selected VPI value is unavailable, + - The selected VPI value is in use. + Otherwise, the agent creates a row and + reserves the VPI value on that port. + + (2) The manager selects an existing row(s) in the + atmTrafficDescrParamTable, + thereby, selecting a set of self-consistent + ATM traffic parameters and the QoS Class + for receive and transmit directions of the VPL. + + (2a) If no suitable row(s) in the + atmTrafficDescrParamTable exists, + the manager must create a new row(s) + in that table. + + (2b) The manager characterizes the VPL's traffic + parameters through setting the + atmVplReceiveTrafficDescrIndex and the + atmVplTransmitTrafficDescrIndex values + in the VPL table, which point to the rows + containing desired ATM traffic parameter values + in the atmTrafficDescrParamTable. The agent + will check the availability of resources and + may refuse the request. + + (3) The manager activates the VPL by setting the + the atmVplRowStatus to active(1). + If this set is successful, the agent has + reserved the resources to satisfy the requested + traffic parameter values and the QoS Class + for that VPL. + (4) If the VPL terminates a VPC in the ATM host + or switch, the manager turns on the + atmVplAdminStatus to up(1) to turn the VPL + traffic flow on. Otherwise, the + atmVpCrossConnectTable must be used + to cross-connect the VPL to another VPL(s) + in an ATM switch or network. + + One-Shot VPL Establishment + + A VPL may also be established in one step by a + set-request with all necessary VPL parameter + values and atmVplRowStatus set to createAndGo(4). + + In contrast to the negotiated VPL establishment + which allows for detailed error checking + (i.e., set errors are explicitly linked to + particular resource acquisition failures), + the one-shot VPL establishment + performs the setup on one operation but + does not have the advantage of step-wise + error checking. + + VPL Retirement + + A VPL is released by setting atmVplRowStatus to + destroy(6), and the agent may release all + associated resources." + INDEX {ifIndex, atmVplVpi } + ::= { atmVplTable 1} + + AtmVplEntry ::= SEQUENCE { + atmVplVpi INTEGER, + atmVplAdminStatus INTEGER, + atmVplOperStatus INTEGER, + atmVplLastChange TimeStamp, + atmVplReceiveTrafficDescrIndex + AtmTrafficDescrParamIndex, + atmVplTransmitTrafficDescrIndex + AtmTrafficDescrParamIndex, + atmVplCrossConnectIdentifier INTEGER, + atmVplRowStatus RowStatus + } + + + atmVplVpi OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VPI value of the VPL. + Note that the VPI=0 is not used + for a VPL not associated with a VCL. + The maximum VPI value cannot + exceed the value allowable by the + atmInterfaceMaxVpiBits." + ::= { atmVplEntry 1} + + atmVplAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is implemented only for a VPL which + terminates a VPC (i.e., + one which is NOT cross-connected to other VPLs). + Its value specifies the desired administrative + state of the VPL. The up and down states indicate + that the traffic flow is enabled and disabled + respectively for this VPL." + DEFVAL { down } + ::= { atmVplEntry 2} + + + atmVplOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the current operational + status of the VPL. The up and down states + indicate that the VPL is currently + operational, or not operational, respectively. + The unknown state indicates that the status of + this VPL cannot be determined." + ::= { atmVplEntry 3} + + atmVplLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB II's sysUpTime object + at the time this VPL entered its current + operational state. If the current state was + entered prior to the last re-initialization of the + agent, then this object contains a zero value." + ::= { atmVplEntry 4 } + + atmVplReceiveTrafficDescrIndex OBJECT-TYPE + SYNTAX AtmTrafficDescrParamIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row + in the atmTrafficDescrParamTable which + applies to the receive direction of the VPL." + ::= { atmVplEntry 5} + + atmVplTransmitTrafficDescrIndex OBJECT-TYPE + SYNTAX AtmTrafficDescrParamIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row + in the atmTrafficDescrParamTable which + applies to the transmit direction of the VPL." + ::= { atmVplEntry 6} + + atmVplCrossConnectIdentifier OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is implemented only for a VPL + which is cross-connected to other VPLs + that belong to the same VPC. All such + associated VPLs have the same value of this + object, and all their cross-connections are + identified by entries in the + atmVpCrossConnectTable for which + atmVpCrossConnectIndex has the same value. + The value of this object is initialized by the + agent after the associated entries in the + atmVpCrossConnectTable have been created." + ::= {atmVplEntry 7} + + atmVplRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create, delete + or modify a row in this table. + To create a new VCL, this object is + initially set to 'createAndWait' or + 'createAndGo'. This object must not be + set to 'active' unless the following columnar + objects exist in this row: + atmVplReceiveTrafficDescrIndex and + atmVplTransmitTrafficDescrIndex." + DEFVAL { active } + ::= {atmVplEntry 8} + + + -- ATM Interface Virtual Channel Link (VCL) Group + + -- This group contains configuration and state + -- information of a bi-directional Virtual Channel + -- Link (VCL) at an ATM interface. + + -- This table can be used to create, delete or modify + -- a VCL that is terminated in an ATM host or switch. + -- This table can also be + -- used to create, delete or modify a VCL that is + -- cross-connected to another VCL. + + + -- The ATM Interface VCL Table + + + atmVclTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmVclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Virtual Channel Link (VCL) table. A + bi-directional VCL is modeled as one entry + in this table." + ::= { atmMIBObjects 7} + + atmVclEntry OBJECT-TYPE + SYNTAX AtmVclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the VCL table. This entry is + used to model a bi-directional VCL. + To create a VCL at an ATM interface, + either of the following procedures are used: + + Negotiated VCL establishment + + (1) The management application creates + a VCL entry in the atmVclTable + by setting atmVclRowStatus to createAndWait(5). + This may fail for the following reasons: + - The selected VPI/VCI values are unavailable, + - The selected VPI/VCI values are in use. + Otherwise, the agent creates a row and + reserves the VPI/VCI values on that port. + + (2) The manager selects an existing row(s) in the + atmTrafficDescrParamTable, + thereby, selecting a set of self-consistent + ATM traffic parameters and the QoS Class + for receive and transmit directions of the VCL. + + (2a) If no suitable row(s) in the + atmTrafficDescrParamTable exists, + the manager must create a new row(s) + in that table. + + (2b) The manager characterizes the VCL's traffic + parameters through setting the + atmVclReceiveTrafficDescrIndex and the + atmVclTransmitTrafficDescrIndex values + in the VCL table, which point to the rows + containing desired ATM traffic parameter values + in the atmTrafficDescrParamTable. The agent + will check the availability of resources and + may refuse the request. + + (3) The manager activates the VCL by setting the + the atmVclRowStatus to active(1). + If this set is successful, the agent has + reserved the resources to satisfy the requested + traffic parameter values and the QoS Class + for that VCL. + (4) If the VCL terminates a VCC in the ATM host + or switch, the manager turns on the + atmVclAdminStatus to up(1) to turn the VCL + traffic flow on. Otherwise, the + atmVcCrossConnectTable must be used + to cross-connect the VCL to another VCL(s) + in an ATM switch or network. + + One-Shot VCL Establishment + + A VCL may also be established in one step by a + set-request with all necessary VCL parameter + values and atmVclRowStatus set to createAndGo(4). + In contrast to the negotiated VCL establishment + which allows for detailed error checking + (i.e., set errors are explicitly linked to + particular resource acquisition failures), + the one-shot VCL establishment + performs the setup on one operation but + does not have the advantage of step-wise + error checking. + + VCL Retirement + + A VCL is released by setting atmVclRowStatus to + destroy(6), and the agent may release all + associated resources." + INDEX {ifIndex, atmVclVpi, atmVclVci } + ::= { atmVclTable 1} + + AtmVclEntry ::= SEQUENCE { + atmVclVpi INTEGER, + atmVclVci INTEGER, + atmVclAdminStatus INTEGER, + atmVclOperStatus INTEGER, + atmVclLastChange TimeStamp, + atmVclReceiveTrafficDescrIndex + AtmTrafficDescrParamIndex, + atmVclTransmitTrafficDescrIndex + AtmTrafficDescrParamIndex, + atmVccAalType INTEGER, + atmVccAal5CpcsTransmitSduSize INTEGER, + atmVccAal5CpcsReceiveSduSize INTEGER, + atmVccAal5EncapsType INTEGER, + atmVclCrossConnectIdentifier INTEGER, + atmVclRowStatus RowStatus + } + + atmVclVpi OBJECT-TYPE + SYNTAX INTEGER (0..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VPI value of the VCL. + The maximum VPI value cannot + exceed the value allowable by the + atmInterfaceMaxVpiBits." + ::= { atmVclEntry 1} + + atmVclVci OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VCI value of the VCL. + The maximum VCI value cannot + exceed the value allowable by the + atmInterfaceMaxVciBits." + ::= { atmVclEntry 2} + + atmVclAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is implemented only for a VCL which + terminates a VCC (i.e., + one which is NOT cross-connected to other VCLs). + Its value specifies the desired administrative + state of the VCL. The up and down states indicate + that the traffic flow is enabled and disabled + respectively for this VCL." + ::= { atmVclEntry 3} + + atmVclOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the current operational + status of the VCL. The up and down states + indicate that the VCL is currently + operational, or not operational, respectively. + The unknown state indicates that the status of + this VCL cannot be determined." + ::= { atmVclEntry 4} + + atmVclLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB II's sysUpTime object + at the time this VCL entered its current + operational state. If the current state was + entered prior to the last re-initialization of the + agent, then this object contains a zero value." + ::= { atmVclEntry 5 } + + atmVclReceiveTrafficDescrIndex OBJECT-TYPE + SYNTAX AtmTrafficDescrParamIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row + in the ATM Traffic Descriptor Table which + applies to the receive direction of this VCL." + ::= { atmVclEntry 6} + + atmVclTransmitTrafficDescrIndex OBJECT-TYPE + SYNTAX AtmTrafficDescrParamIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the row + of the ATM Traffic Descriptor Table which applies + to the transmit direction of this VCL." + ::= { atmVclEntry 7} + + atmVccAalType OBJECT-TYPE + SYNTAX INTEGER { + aal1(1), + aal34(2), + aal5(3), + other(4), + unknown(5) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An instance of this object only exists when the + local VCL end-point is also the VCC end-point, + and AAL is in use. + The type of AAL used on this VCC. + The AAL type includes AAL1, AAL3/4, + and AAL5. The other(4) may be user-defined + AAL type. The unknown type indicates that + the AAL type cannot be determined." + ::= { atmVclEntry 8 } + + atmVccAal5CpcsTransmitSduSize OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An instance of this object only exists when the + local VCL end-point is also the VCC end-point, + and AAL5 is in use. + The maximum AAL5 CPCS SDU size in octets that is + supported on the transmit direction of this VCC." + DEFVAL { 9188 } + ::= { atmVclEntry 9 } + + atmVccAal5CpcsReceiveSduSize OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An instance of this object only exists when the + local VCL end-point is also the VCC end-point, + and AAL5 is in use. + The maximum AAL5 CPCS SDU size in octets that is + supported on the receive direction of this VCC." + DEFVAL { 9188 } + ::= { atmVclEntry 10 } + + atmVccAal5EncapsType OBJECT-TYPE + SYNTAX INTEGER { + vcMultiplexRoutedProtocol(1), + vcMultiplexBridgedProtocol8023(2), + vcMultiplexBridgedProtocol8025(3), + vcMultiplexBridgedProtocol8026(4), + vcMultiplexLANemulation8023(5), + vcMultiplexLANemulation8025(6), + llcEncapsulation(7), + multiprotocolFrameRelaySscs(8), + other(9), + unknown(10) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An instance of this object only exists when the + local VCL end-point is also the VCC end-point, + and AAL5 is in use. + The type of data encapsulation used over + the AAL5 SSCS layer. The definitions reference + RFC 1483 Multiprotocol Encapsulation + over ATM AAL5 and to the ATM Forum + LAN Emulation specification." + DEFVAL { llcEncapsulation } + ::= { atmVclEntry 11 } + + atmVclCrossConnectIdentifier OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is implemented only for a VCL + which is cross-connected to other VCLs + that belong to the same VCC. All such + associated VCLs have the same value of this + object, and all their cross-connections are + identified by entries in the + atmVcCrossConnectTable for which + atmVcCrossConnectIndex has the same value. + The value of this object is initialized by the + agent after the associated entries in the + atmVcCrossConnectTable have been created." + ::= {atmVclEntry 12} + + atmVclRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create, delete or + modify a row in this table. To create + a new VCL, this object is initially set + to 'createAndWait' or 'createAndGo'. + This object must not be set to 'active' + unless the following columnar objects exist + in this row: + atmVclReceiveTrafficDescrIndex, + atmVclTransmitTrafficDescrIndex. + In addition, if the local VCL end-point + is also the VCC end-point: + atmVccAalType. + In addition, for AAL5 connections only: + atmVccAal5CpcsTransmitSduSize, + atmVccAal5CpcsReceiveSduSize, and + atmVccAal5EncapsType." + DEFVAL { active } + ::= {atmVclEntry 13} + + + -- ATM Virtual Path (VP) Cross Connect Group + + -- This group contains configuration and state + -- information of all point-to-point, + -- point-to-multipoint, or multipoint-to-multipoint + -- VP cross-connects. + + -- This table has read-create access and can be used + -- to cross-connect the VPLs together in an ATM switch + -- or network. The atmVpCrossConnectIndex + -- is used to associate the related + -- VPLs that are cross-connected together. + + -- The ATM VP Cross Connect Group + -- models each bi-directional VPC + -- cross-connect as a set of entries in + -- the atmVpCrossConnectTable. A + -- point-to-point VPC cross-connect is modeled + -- as one entry; a point-to-multipoint (N leafs) VPC + -- cross-connect as N entries in this table; and + -- a multipoint-to-multipoint (N parties) VPC cross- + -- connect as N(N-1)/2 entries in this table. + -- In the latter cases, all the N (or N(N-1)/2) entries + -- are associated with a single VPC cross-connect by + -- having the same value of atmVpCrossConnectIndex. + + + -- _________________________________________ + -- | | + -- Low | ATM Switch or Network | High + -- port| | port + -- _____|>> from low to high VPC traffic flow >>|______ + -- |<< from high to low VPC traffic flow <<| + -- | | + -- |_______________________________________| + -- + + -- The terms low and high are chosen to represent + -- numerical ordering of the two interfaces associated + -- with a VPC cross-connect. That is, the ATM interface + -- with the lower value of ifIndex is termed 'low', + -- while the other ATM interface associated with the + -- VPC cross-connect is termed 'high'. This terminology + -- is used to provide directional information; for + -- example, the atmVpCrossConnectL2HOperStatus applies + -- to the low->high direction, and + -- atmVpCrossConnectH2LOperStatus applies to the + -- high->low direction, as illustrated above. + + atmVpCrossConnectIndexNext OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to + be used for atmVpCrossConnectIndex when creating + entries in the atmVpCrossConnectTable. The value + 0 indicates that no unassigned entries are + available. To obtain the atmVpCrossConnectIndex + value for a new entry, the manager issues a + management protocol retrieval operation to obtain + the current value of this object. After each + retrieval, the agent should modify the value to + the next unassigned index." + ::= { atmMIBObjects 8 } + + + -- The ATM VP Cross Connect Table + + + atmVpCrossConnectTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmVpCrossConnectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ATM VP Cross Connect table. A bi- + directional VP cross-connect which + cross-connects two VPLs is modeled + as one entry in this table." + ::= { atmMIBObjects 9 } + + + atmVpCrossConnectEntry OBJECT-TYPE + SYNTAX AtmVpCrossConnectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the ATM VP Cross Connect table. + This entry is used to model a bi-directional + ATM VP cross-connect which cross-connects + two VPLs. + + Step-wise Procedures to set up a VP Cross-connect + + Once the entries in the atmVplTable are created, + the following procedures are used + to cross-connect the VPLs together. + + (1) The manager obtains a unique + atmVpCrossConnectIndex by reading the + atmVpCrossConnectIndexNext object. + + (2) Next, the manager creates a set of one + or more rows in the ATM VP Cross Connect + Table, one for each cross-connection between + two VPLs. Each row is indexed by the ATM + interface port numbers and VPI values of the + two ends of that cross-connection. + This set of rows specifies the topology of the + VPC cross-connect and is identified by a single + value of atmVpCrossConnectIndex. + + Negotiated VP Cross-Connect Establishment + + (2a) The manager creates a row in this table by + setting atmVpCrossConnectRowStatus to + createAndWait(5). The agent checks the + requested topology and the mutual sanity of + the ATM traffic parameters and + QoS Classes, i.e., the row creation fails if: + - the requested topology is not supported + by the agent, + - the traffic/QoS parameter values + associated with the requested row are + incompatible with those of already existing + rows for this VP cross-connect. + [For example, for setting up + a point-to-point VP cross-connect, the + ATM traffic parameters in the receive direction + of a VPL at the low end of the cross-connect + must equal to the traffic parameters in the + transmit direction of the other VPL at the + high end of the cross-connect, + otherwise, the row creation fails.] + The agent also checks for internal errors + in building the cross-connect. + + The atmVpCrossConnectIndex values in the + corresponding atmVplTable rows are filled + in by the agent at this point. + + (2b) The manager promotes the row in the + atmVpCrossConnectTable by setting + atmVpCrossConnectRowStatus to active(1). If + this set is successful, the agent has reserved + the resources specified by the ATM traffic + parameter and QoS Class values + for each direction of the VP cross-connect + in an ATM switch or network. + + (3) The manager sets the + atmVpCrossConnectAdminStatus to up(1) in all + rows of this VP cross-connect to turn the + traffic flow on. + + + One-Shot VP Cross-Connect Establishment + + A VP cross-connect may also be established in + one step by a set-request with all necessary + parameter values and atmVpCrossConnectRowStatus + set to createAndGo(4). + + In contrast to the negotiated VP cross-connect + establishment which allows for detailed error + checking (i.e., set errors are explicitly linked + to particular resource acquisition failures), + the one-shot VP cross-connect establishment + performs the setup on one operation but does not + have the advantage of step-wise error checking. + + VP Cross-Connect Retirement + + A VP cross-connect identified by a particular + value of atmVpCrossConnectIndex is released by: + + (1) Setting atmVpCrossConnectRowStatus of all + rows identified by this value of + atmVpCrossConnectIndex to destroy(6). + The agent may release all + associated resources, and the + atmVpCrossConnectIndex values in the + corresponding atmVplTable row are removed. + Note that a situation when only a subset of + the associated rows are deleted corresponds + to a VP topology change. + + (2) After deletion of the appropriate + atmVpCrossConnectEntries, the manager may + set atmVplRowStatus to destroy(6) the + associated VPLs. The agent releases + the resources and removes the associated + rows in the atmVplTable. + + VP Cross-connect Reconfiguration + + At the discretion of the agent, a VP + cross-connect may be reconfigured by + adding and/or deleting leafs to/from + the VP topology as per the VP cross-connect + establishment/retirement procedures. + Reconfiguration of traffic/QoS parameter + values requires release of the VP cross-connect + before those parameter values may by changed + for individual VPLs." + INDEX { atmVpCrossConnectIndex, + atmVpCrossConnectLowIfIndex, + atmVpCrossConnectLowVpi, + atmVpCrossConnectHighIfIndex, + atmVpCrossConnectHighVpi } + ::= { atmVpCrossConnectTable 1 } + + AtmVpCrossConnectEntry ::= SEQUENCE { + atmVpCrossConnectIndex INTEGER, + atmVpCrossConnectLowIfIndex IfIndex, + atmVpCrossConnectLowVpi INTEGER, + atmVpCrossConnectHighIfIndex IfIndex, + atmVpCrossConnectHighVpi INTEGER, + atmVpCrossConnectAdminStatus INTEGER, + atmVpCrossConnectL2HOperStatus INTEGER, + atmVpCrossConnectH2LOperStatus INTEGER, + atmVpCrossConnectL2HLastChange TimeStamp, + atmVpCrossConnectH2LLastChange TimeStamp, + atmVpCrossConnectRowStatus RowStatus + } + + atmVpCrossConnectIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value to identify this VP cross-connect." + ::= { atmVpCrossConnectEntry 1 } + + atmVpCrossConnectLowIfIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to MIB II's + ifIndex value of the ATM interface port for this + VP cross-connect. The term low implies + that this ATM interface has the numerically lower + ifIndex value than the other ATM interface + identified in the same atmVpCrossConnectEntry." + ::= { atmVpCrossConnectEntry 2 } + + atmVpCrossConnectLowVpi OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to the VPI + value at the ATM interface + associated with the VP cross-connect that is + identified by atmVpCrossConnectLowIfIndex. + The VPI value cannot exceed the number + supported by the atmInterfaceMaxVpiBits + at the low ATM interface port." + ::= { atmVpCrossConnectEntry 3 } + + atmVpCrossConnectHighIfIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to MIB II's + ifIndex value of the ATM interface port for + this VP cross-connect. The term high + implies that this ATM interface has the + numerically higher ifIndex value than the + other ATM interface identified in the same + atmVpCrossConnectEntry." + ::= { atmVpCrossConnectEntry 4 } + + atmVpCrossConnectHighVpi OBJECT-TYPE + SYNTAX INTEGER (1..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to the VPI + value at the ATM interface associated with + the VP cross-connect that is identified + by atmVpCrossConnectHighIfIndex. + The VPI value cannot exceed the number + supported by the atmInterfaceMaxVpiBits + at the high ATM interface port." + ::= { atmVpCrossConnectEntry 5 } + + atmVpCrossConnectAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the desired + administrative status of this bi-directional + VP cross-connect. The up and down states + indicate that the traffic flow is enabled + and disabled respectively on this VP + cross-connect." + DEFVAL { down } + ::= { atmVpCrossConnectEntry 6 } + + atmVpCrossConnectL2HOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the current + operational status of the VP cross-connect + in one direction; (i.e., from the low to + high direction). The up and down states indicate + that this ATM VP cross-connect from low + to high direction is operational or not + operational respectively. + The unknown state indicates that + the state of it cannot be determined." + ::= { atmVpCrossConnectEntry 7 } + + atmVpCrossConnectH2LOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the current + operational status of the VP cross-connect + in one direction; (i.e., from the high to + low direction). The up and down states indicate + that this ATM VP cross-connect from high + to low direction is operational or not + operational respectively. The + unknown state indicates that the state + of it cannot be determined." + ::= { atmVpCrossConnectEntry 8 } + + atmVpCrossConnectL2HLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB II's sysUpTime object + at the time this VP cross-connect entered + its current operational state in the low to + high direction. If the current state was + entered prior to the last re-initialization of the + agent, then this object contains a zero value." + ::= { atmVpCrossConnectEntry 9 } + + atmVpCrossConnectH2LLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB II's sysUpTime object at the + time this VP cross-connect entered its current + operational state in the high to low direction. + If the current state was entered prior to the + last re-initialization of the agent, + then this object contains a zero value." + ::= { atmVpCrossConnectEntry 10 } + + atmVpCrossConnectRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this entry in the + atmVpCrossConnectTable. This object is used to + create a cross-connect for cross-connecting + VPLs which are created using the atmVplTable + or to change or delete an existing cross-connect. + This object must be initially set + to `createAndWait' or 'createAndGo'. + This object cannot be set to `active' + unless the following columnar object exists + in this row: atmVpCrossConnectAdminStatus. + To turn on a VP cross-connect, + the atmVpCrossConnectAdminStatus + is set to `up'." + DEFVAL { active } + ::= { atmVpCrossConnectEntry 11 } + + + -- ATM Virtual Channel (VC) Cross Connect Group + + -- This group contains configuration and state + -- information of a bi-directional VC cross-connect. + + -- This group is used to model a bi-directional + -- point-to-point, point-to-multipoint or + -- multipoint-to-multipoint VC cross-connects. + + -- This table has read-create access and is used + -- to cross-connect the VCLs together in an ATM switch + -- or network that belong to a VC connection. + -- The atmVcCrossConnectIndex is used to associate + -- the related VCLs that are cross-connected together. + + + -- The step-wise procedures described for setting + -- up a VP cross-connect are also used for setting up + -- a VC cross-connect. + + + atmVcCrossConnectIndexNext OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains an appropriate value to + be used for atmVcCrossConnectIndex when creating + entries in the atmVcCrossConnectTable. The value + 0 indicates that no unassigned entries are + available. To obtain the atmVpCrossConnectIndex + value for a new entry, the manager issues a + management protocol retrieval operation to obtain + the current value of this object. After each + retrieval, the agent should modify the value to + the next unassigned index." + ::= { atmMIBObjects 10 } + + + -- The ATM VC Cross Connect Table + + atmVcCrossConnectTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtmVcCrossConnectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ATM VC Cross Connect table. A bi- + directional VC cross-connect which + cross-connects two end points (i.e., VCLs) + is modeled as one entry in this table." + ::= { atmMIBObjects 11 } + + + atmVcCrossConnectEntry OBJECT-TYPE + SYNTAX AtmVcCrossConnectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the ATM VC Cross Connect table. + This entry is used to model a bi-directional ATM + VC cross-connect cross-connecting two end points. + + Step-wise Procedures to set up a VC Cross-connect + + Once the entries in the atmVclTable are created, + the following procedures are used + to cross-connect the VCLs together to + form a VCC segment. + + (1) The manager obtains a unique + atmVcCrossConnectIndex by reading the + atmVcCrossConnectIndexNext object. + + (2) Next, the manager creates a set of one + or more rows in the ATM VC Cross Connect + Table, one for each cross-connection between + two VCLs. Each row is indexed by the ATM + interface port numbers and VPI/VCI values of + the two ends of that cross-connection. + This set of rows specifies the topology of the + VCC cross-connect and is identified by a single + value of atmVcCrossConnectIndex. + + Negotiated VC Cross-Connect Establishment + + (2a) The manager creates a row in this table by + setting atmVcCrossConnectRowStatus to + createAndWait(5). The agent checks the + requested topology and the mutual sanity of + the ATM traffic parameters and + QoS Classes, i.e., the row creation fails if: + - the requested topology is not supported + by the agent, + - the traffic/QoS parameter values + associated with the requested row are + incompatible with those of already existing + rows for this VC cross-connect. + [For example, for setting up + a point-to-point VC cross-connect, the + ATM traffic parameters in the receive direction + of a VCL at the low end of the cross-connect + must equal to the traffic parameters in the + transmit direction of the other VCL at the + high end of the cross-connect, + otherwise, the row creation fails.] + The agent also checks for internal errors + in building the cross-connect. + + The atmVcCrossConnectIndex values in the + corresponding atmVclTable rows are filled + in by the agent at this point. + + (2b) The manager promotes the row in the + atmVcCrossConnectTable by setting + atmVcCrossConnectRowStatus to active(1). If + this set is successful, the agent has reserved + the resources specified by the ATM traffic + parameter and QoS Class values + for each direction of the VC cross-connect + in an ATM switch or network. + + (3) The manager sets the + atmVcCrossConnectAdminStatus to up(1) + in all rows of this VC cross-connect to + turn the traffic flow on. + + + One-Shot VC Cross-Connect Establishment + + A VC cross-connect may also be established in + one step by a set-request with all necessary + parameter values and atmVcCrossConnectRowStatus + set to createAndGo(4). + + In contrast to the negotiated VC cross-connect + establishment which allows for detailed error + checking i.e., set errors are explicitly linked to + particular resource acquisition failures), the + one-shot VC cross-connect establishment + performs the setup on one operation but does + not have the advantage of step-wise error + checking. + + VC Cross-Connect Retirement + + A VC cross-connect identified by a particular + value of atmVcCrossConnectIndex is released by: + + (1) Setting atmVcCrossConnectRowStatus of all rows + identified by this value of + atmVcCrossConnectIndex to destroy(6). + The agent may release all + associated resources, and the + atmVcCrossConnectIndex values in the + corresponding atmVclTable row are removed. + Note that a situation when only a subset of + the associated rows are deleted corresponds + to a VC topology change. + + (2) After deletion of the appropriate + atmVcCrossConnectEntries, the manager may + set atmVclRowStatus to destroy(6) the + associated VCLs. The agent releases + the resources and removes the associated + rows in the atmVclTable. + + VC Cross-Connect Reconfiguration + + At the discretion of the agent, a VC + cross-connect may be reconfigured by + adding and/or deleting leafs to/from + the VC topology as per the VC cross-connect + establishment/retirement procedures. + Reconfiguration of traffic/QoS parameter + values requires release of the VC cross-connect + before those parameter values may by changed + for individual VCLs." + INDEX { atmVcCrossConnectIndex, + atmVcCrossConnectLowIfIndex, + atmVcCrossConnectLowVpi, + atmVcCrossConnectLowVci, + atmVcCrossConnectHighIfIndex, + atmVcCrossConnectHighVpi, + atmVcCrossConnectHighVci } + ::= { atmVcCrossConnectTable 1 } + + AtmVcCrossConnectEntry ::= SEQUENCE { + atmVcCrossConnectIndex INTEGER, + atmVcCrossConnectLowIfIndex IfIndex, + atmVcCrossConnectLowVpi INTEGER, + atmVcCrossConnectLowVci INTEGER, + atmVcCrossConnectHighIfIndex IfIndex, + atmVcCrossConnectHighVpi INTEGER, + atmVcCrossConnectHighVci INTEGER, + atmVcCrossConnectAdminStatus INTEGER, + atmVcCrossConnectL2HOperStatus INTEGER, + atmVcCrossConnectH2LOperStatus INTEGER, + atmVcCrossConnectL2HLastChange TimeStamp, + atmVcCrossConnectH2LLastChange TimeStamp, + atmVcCrossConnectRowStatus RowStatus + } + + atmVcCrossConnectIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value to identify this VC cross-connect." + ::= { atmVcCrossConnectEntry 1 } + + atmVcCrossConnectLowIfIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to MIB II's + ifIndex value of the ATM interface port for this + VC cross-connect. The term low implies + that this ATM interface has the numerically lower + ifIndex value than the other ATM interface + identified in the same atmVcCrossConnectEntry." + ::= { atmVcCrossConnectEntry 2 } + + atmVcCrossConnectLowVpi OBJECT-TYPE + SYNTAX INTEGER (0..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to the VPI + value at the ATM interface + associated with the VC cross-connect that is + identified by atmVcCrossConnectLowIfIndex. + The VPI value cannot exceed the number + supported by the atmInterfaceMaxVpiBits + at the low ATM interface port." + ::= { atmVcCrossConnectEntry 3 } + + atmVcCrossConnectLowVci OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to the VCI + value at the ATM interface + associated with this VC cross-connect that is + identified by atmVcCrossConnectLowIfIndex. + The VCI value cannot exceed the number + supported by the atmInterfaceMaxVciBits + at the low ATM interface port." + ::= { atmVcCrossConnectEntry 4 } + + atmVcCrossConnectHighIfIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to MIB II's + ifIndex value for the ATM interface port for + this VC cross-connect. The term high + implies that this VC cross-connect + that this ATM interface has the numerically higher + ifIndex value than the other ATM interface + identified in the same atmVcCrossConnectEntry." + ::= { atmVcCrossConnectEntry 5 } + + atmVcCrossConnectHighVpi OBJECT-TYPE + SYNTAX INTEGER (0..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to the VPI + value at the ATM interface + associated with the VC cross-connect that is + identified by atmVcCrossConnectHighIfIndex. + The VPI value cannot exceed + the number supported by the atmInterfaceMaxVpiBits + at the high ATM interface port." + ::= { atmVcCrossConnectEntry 6 } + + atmVcCrossConnectHighVci OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of this object is equal to the VCI + value at the ATM interface + associated with the VC cross-connect that is + identified by atmVcCrossConnectHighIfIndex. + The VCI value cannot exceed + the number supported by the atmInterfaceMaxVciBits + at the high ATM interface port." + ::= { atmVcCrossConnectEntry 7 } + + atmVcCrossConnectAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the desired + administrative status of this bi-directional + VC cross-connect. The up and down states + indicate that the traffic flow is enabled or + disabled respectively on this VC cross-connect." + DEFVAL { down } + ::= { atmVcCrossConnectEntry 8 } + + atmVcCrossConnectL2HOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the current + operational status of the VC cross-connect + in one direction; (i.e., from the low to + high direction). The up and down states indicate + that this ATM VC cross-connect from low + to high direction is operational or not + operational respectively. The unknown state + indicates that the state of it cannot be + determined." + ::= { atmVcCrossConnectEntry 9 } + + atmVcCrossConnectH2LOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the current + operational status of the VC cross-connect + in one direction; (i.e., from the high to + low direction). The up and down states indicate + that this ATM VC cross-connect from high + to low direction is operational or not + operational respectively. The unknown state + indicates that the state of it cannot be + determined." + ::= { atmVcCrossConnectEntry 10 } + + atmVcCrossConnectL2HLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB II's sysUpTime object + at the time this VC cross-connect entered + its current operational state in low to high + direction. If the current state was + entered prior to the last re-initialization of the + agent, then this object contains a zero value." + ::= { atmVcCrossConnectEntry 11 } + + atmVcCrossConnectH2LLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB II's sysUpTime object + at the time this VC cross-connect entered + its current operational state in high to low + direction. If the current state was + entered prior to the last re-initialization of the + agent, then this object contains a zero value." + ::= { atmVcCrossConnectEntry 12 } + + atmVcCrossConnectRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this entry in the + atmVcCrossConnectTable. This object is used to + create a new cross-connect for cross-connecting + VCLs which are created using the atmVclTable + or to change or delete existing cross-connect. + This object must be initially set to + `createAndWait' or 'createAndGo'. This object + cannot be set to `active' unless the following + columnar object exists in this row: + atmVcCrossConnectAdminStatus. + To turn on a VC cross-connect, + the atmVcCrossConnectAdminStatus + is set to `up'." + ::= { atmVcCrossConnectEntry 13 } + + + -- AAL5 Virtual Channel Connection Performance Statistics + -- Group + + -- This group contains the AAL5 + -- performance statistics of a VCC at the + -- interface associated with an AAL5 entity in an ATM + -- host or ATM switch. + + + aal5VccTable OBJECT-TYPE + SYNTAX SEQUENCE OF Aal5VccEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains AAL5 VCC performance + parameters." + ::= { atmMIBObjects 12 } + + aal5VccEntry OBJECT-TYPE + SYNTAX Aal5VccEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains the AAL5 VCC + performance parameters." + INDEX { ifIndex, aal5VccVpi, aal5VccVci } + ::= { aal5VccTable 1 } + + Aal5VccEntry ::= SEQUENCE { + aal5VccVpi INTEGER, + aal5VccVci INTEGER, + aal5VccCrcErrors Counter32, + aal5VccSarTimeOuts Counter32, + aal5VccOverSizedSDUs Counter32 + } + + + aal5VccVpi OBJECT-TYPE + SYNTAX INTEGER (0..4095) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VPI value of the AAL5 VCC at the + interface identified by the ifIndex." + ::= { aal5VccEntry 1 } + + aal5VccVci OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VCI value of the AAL5 VCC at the + interface identified by the ifIndex." + ::= { aal5VccEntry 2 } + + aal5VccCrcErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of AAL5 CPCS PDUs received with + CRC-32 errors on this AAL5 VCC at the + interface associated with an AAL5 entity." + ::= { aal5VccEntry 3 } + + aal5VccSarTimeOuts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of partially re-assembled AAL5 + CPCS PDUs which were discarded + on this AAL5 VCC at the interface associated + with an AAL5 entity because they + were not fully re-assembled within the + required time period. If the re-assembly + timer is not supported, then this object + contains a zero value." + ::= { aal5VccEntry 4 } + + aal5VccOverSizedSDUs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of AAL5 CPCS PDUs discarded + on this AAL5 VCC at the interface + associated with an AAL5 entity because the + AAL5 SDUs were too large." + ::= { aal5VccEntry 5 } + + + -- Conformance Information + + atmMIBConformance OBJECT IDENTIFIER ::= { atmMIB 2 } + + atmMIBGroups OBJECT IDENTIFIER + ::= { atmMIBConformance 1 } + atmMIBCompliances OBJECT IDENTIFIER + ::= { atmMIBConformance 2 } + + + -- Compliance Statements + + atmMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMP entities + including networks which have ATM and + AAL5 interfaces." + + MODULE -- this module + MANDATORY-GROUPS {atmInterfaceConfGroup, + atmTrafficDescrGroup} + + OBJECT atmInterfaceMaxVpcs + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmInterfaceMaxVccs + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + OBJECT atmInterfaceMaxActiveVpiBits + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmInterfaceMaxActiveVciBits + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmInterfaceIlmiVpi + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmInterfaceIlmiVci + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmInterfaceMyNeighborIpAddress + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmInterfaceMyNeighborIfName + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrParam1 + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrParam2 + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrParam3 + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrParam4 + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrParam5 + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficQoSClass + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmTrafficDescrRowStatus + SYNTAX INTEGER {active(1)} + -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + GROUP atmInterfaceDs3PlcpGroup + DESCRIPTION + "This group is mandatory only for those + ATM interfaces which implement the + DS3 PLCP layer." + + GROUP atmInterfaceTCGroup + DESCRIPTION + "This group is mandatory only for those + ATM interfaces which implement the + TC Sublayer." + + GROUP atmVpcTerminationGroup + DESCRIPTION + "This group is mandatory only for those + ATM interfaces which implement ATM + VPLs that terminate VPCs (i.e., ones which + are NOT cross-connected to other VPLs)." + + GROUP atmVpCrossConnectGroup + DESCRIPTION + "This group is mandatory only for those + ATM interfaces which implement ATM + VPLs that are not associated with VCLs + and are cross-connected to other VPLs." + +-- OBJECT atmVplVpi +-- SYNTAX INTEGER (1..255) +-- DESCRIPTION +-- "For ATM UNIs supporting VPCs, the VPI value +-- ranges from 1 to 255." + + OBJECT atmVplAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVplReceiveTrafficDescrIndex + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVplTransmitTrafficDescrIndex + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVplRowStatus + SYNTAX INTEGER {active(1)} + -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + +-- OBJECT atmVpCrossConnectLowVpi +-- SYNTAX INTEGER (1..255) +-- DESCRIPTION +-- "For ATM UNIs supporting VPCs, the VPI value +-- at the numerically lower ATM interface port +-- index number ranges from 1 to 255." + +-- OBJECT atmVpCrossConnectHighVpi +-- SYNTAX INTEGER (1..255) +-- DESCRIPTION +-- "For ATM UNIs supporting VPCs, the VPI value +-- at the numerically higher ATM interface port +-- index number ranges from 1 to 255." + + OBJECT atmVpCrossConnectAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVpCrossConnectRowStatus + SYNTAX INTEGER {active(1)} + -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + GROUP atmVccTerminationGroup + DESCRIPTION + "This group is mandatory only for those + ATM interfaces which implement ATM + VCLs that terminate VCCs (i.e., ones which + are NOT cross-connected to other VCLs)." + + GROUP atmVcCrossConnectGroup + DESCRIPTION + "This group is mandatory only for those + ATM interfaces which implement ATM + VCLs that are cross-connected to + other VCLs." + +-- OBJECT atmVclVpi +-- SYNTAX INTEGER (0..255) +-- DESCRIPTION +-- "For ATM UNIs supporting VCCs, the VPI value +-- ranges from 0 to 255." + + OBJECT atmVclAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVclReceiveTrafficDescrIndex + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVclTransmitTrafficDescrIndex + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVccAalType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVclRowStatus + SYNTAX INTEGER {active(1)} + -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + +-- OBJECT atmVcCrossConnectLowVpi +-- SYNTAX INTEGER (0..255) +-- DESCRIPTION +-- "For ATM UNIs supporting VCCs, the VPI value +-- at the numerically lower ATM interface port +-- index number ranges from 0 to 255." + +-- OBJECT atmVcCrossConnectHighVpi +-- SYNTAX INTEGER (0..255) +-- DESCRIPTION +-- "For ATM UNIs supporting VCCs, the VPI value +-- at the numerically higher ATM interface port +-- index number ranges from 0 to 255." + + OBJECT atmVcCrossConnectAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVcCrossConnectRowStatus + SYNTAX INTEGER { active(1)} + -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + GROUP aal5VccGroup + DESCRIPTION + "This group is mandatory for the + AAL5 virtual connections only." + +-- OBJECT aal5VccVpi +-- SYNTAX INTEGER (0..255) +-- DESCRIPTION +-- "For ATM UNIs supporting AAL5 VCCs, +-- the VPI value ranges from 0 to 255." + + OBJECT atmVccAal5CpcsTransmitSduSize + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVccAal5CpcsReceiveSduSize + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT atmVccAal5EncapsType + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + ::= { atmMIBCompliances 1 } + + + -- Units of Conformance + + atmInterfaceConfGroup OBJECT-GROUP + OBJECTS { + atmInterfaceMaxVpcs, atmInterfaceMaxVccs, + atmInterfaceConfVpcs, atmInterfaceConfVccs, + atmInterfaceMaxActiveVpiBits, + atmInterfaceMaxActiveVciBits, + atmInterfaceIlmiVpi, + atmInterfaceIlmiVci, + atmInterfaceAddressType, + atmInterfaceAdminAddress, + atmInterfaceMyNeighborIpAddress, + atmInterfaceMyNeighborIfName} + STATUS current + DESCRIPTION + "A collection of objects providing configuration + information about an ATM interface." + ::= { atmMIBGroups 1 } + + atmTrafficDescrGroup OBJECT-GROUP + OBJECTS { + atmTrafficDescrType, atmTrafficDescrParam1, + atmTrafficDescrParam2, atmTrafficDescrParam3, + atmTrafficDescrParam4, atmTrafficDescrParam5, + atmTrafficQoSClass, atmTrafficDescrRowStatus} + STATUS current + DESCRIPTION + "A collection of objects providing information + about ATM traffic descriptor type and + the associated parameters." + ::= { atmMIBGroups 2 } + + atmInterfaceDs3PlcpGroup OBJECT-GROUP + OBJECTS {atmInterfaceDs3PlcpSEFSs, + atmInterfaceDs3PlcpAlarmState, + atmInterfaceDs3PlcpUASs} + STATUS current + DESCRIPTION + "A collection of objects providing information + about DS3 PLCP layer at an ATM interface." + ::= { atmMIBGroups 3 } + + atmInterfaceTCGroup OBJECT-GROUP + OBJECTS { atmInterfaceOCDEvents, + atmInterfaceTCAlarmState } + STATUS current + DESCRIPTION + "A collection of objects providing information + about TC sublayer at an ATM interface." + ::= { atmMIBGroups 4 } + + atmVpcTerminationGroup OBJECT-GROUP + OBJECTS {atmVplOperStatus, atmVplAdminStatus, + atmVplLastChange, + atmVplReceiveTrafficDescrIndex, + atmVplTransmitTrafficDescrIndex, + atmVplRowStatus } + STATUS current + DESCRIPTION + "A collection of objects providing + information about a VPL at an ATM interface + which terminates a VPC + (i.e., one which is NOT cross-connected + to other VPLs)." + ::= { atmMIBGroups 5 } + + atmVccTerminationGroup OBJECT-GROUP + OBJECTS {atmVclOperStatus, atmVclAdminStatus, + atmVclLastChange, + atmVclReceiveTrafficDescrIndex, + atmVclTransmitTrafficDescrIndex, + atmVccAalType, atmVclRowStatus } + STATUS current + DESCRIPTION + "A collection of objects providing information + about a VCL at an ATM interface + which terminates a VCC (i.e., one which is + NOT cross-connected to other VCLs)." + ::= { atmMIBGroups 6 } + + atmVpCrossConnectGroup OBJECT-GROUP + OBJECTS { atmVplReceiveTrafficDescrIndex, + atmVplTransmitTrafficDescrIndex, + atmVplOperStatus, atmVplRowStatus, + atmVpCrossConnectAdminStatus, + atmVpCrossConnectL2HOperStatus, + atmVpCrossConnectH2LOperStatus, + atmVpCrossConnectL2HLastChange, + atmVpCrossConnectH2LLastChange, + atmVpCrossConnectRowStatus, + atmVplCrossConnectIdentifier, + atmVpCrossConnectIndexNext } + STATUS current + DESCRIPTION + "A collection of objects providing + information about a VP cross-connect + and the associated VPLs that are + cross-connected together." + ::= { atmMIBGroups 7 } + + atmVcCrossConnectGroup OBJECT-GROUP + OBJECTS { atmVclReceiveTrafficDescrIndex, + atmVclTransmitTrafficDescrIndex, + atmVclOperStatus, atmVclRowStatus, + atmVcCrossConnectAdminStatus, + atmVcCrossConnectL2HOperStatus, + atmVcCrossConnectH2LOperStatus, + atmVcCrossConnectL2HLastChange, + atmVcCrossConnectH2LLastChange, + atmVcCrossConnectRowStatus, + atmVclCrossConnectIdentifier, + atmVcCrossConnectIndexNext } + STATUS current + DESCRIPTION + "A collection of objects providing + information about a VC cross-connect + and the associated VCLs that are + cross-connected together." + ::= { atmMIBGroups 8 } + + aal5VccGroup OBJECT-GROUP + OBJECTS {atmVccAal5CpcsTransmitSduSize, + atmVccAal5CpcsReceiveSduSize, + atmVccAal5EncapsType, + aal5VccCrcErrors, aal5VccSarTimeOuts, + aal5VccOverSizedSDUs } + STATUS current + DESCRIPTION + "A collection of objects providing + AAL5 configuration and performance statistics + of a VCC." + ::= { atmMIBGroups 9 } + + END diff --git a/pandora_console/attachment/mibs/BGP4-MIB b/pandora_console/attachment/mibs/BGP4-MIB new file mode 100644 index 0000000000..0128f48e21 --- /dev/null +++ b/pandora_console/attachment/mibs/BGP4-MIB @@ -0,0 +1,828 @@ +-- Changes for rfc1657 - (BGP4-MIB) +-- Renamed bgpRcvdPathAttrTable to bgpPathAttrTable so it +-- a consistent name. +-- dperkins@scruznet.com + + +BGP4-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + IpAddress, Integer32, Counter32, Gauge32 + FROM SNMPv2-SMI + mib-2 + FROM RFC1213-MIB; + + bgp MODULE-IDENTITY + LAST-UPDATED "9405050000Z" + ORGANIZATION "IETF BGP Working Group" + CONTACT-INFO + " John Chu (Editor) + Postal: IBM Corp. + P.O.Box 218 + Yorktown Heights, NY 10598 + US + + Tel: +1 914 945 3156 + Fax: +1 914 945 2141 + E-mail: jychu@watson.ibm.com" + DESCRIPTION + "The MIB module for BGP-4." + ::= { mib-2 15 } + + bgpVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Vector of supported BGP protocol version + numbers. Each peer negotiates the version + from this vector. Versions are identified + via the string of bits contained within this + object. The first octet contains bits 0 to + 7, the second octet contains bits 8 to 15, + and so on, with the most significant bit + referring to the lowest bit number in the + octet (e.g., the MSB of the first octet + refers to bit 0). If a bit, i, is present + and set, then the version (i+1) of the BGP + is supported." + ::= { bgp 1 } + + bgpLocalAs OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local autonomous system number." + ::= { bgp 2 } + + + + -- BGP Peer table. This table contains, one entry per + -- BGP peer, information about the BGP peer. + + bgpPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF BgpPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "BGP peer table. This table contains, + one entry per BGP peer, information about + the connections with BGP peers." + ::= { bgp 3 } + + bgpPeerEntry OBJECT-TYPE + SYNTAX BgpPeerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry containing information about the + connection with a BGP peer." + INDEX { bgpPeerRemoteAddr } + ::= { bgpPeerTable 1 } + + BgpPeerEntry ::= SEQUENCE { + bgpPeerIdentifier + IpAddress, + bgpPeerState + INTEGER, + bgpPeerAdminStatus + INTEGER, + bgpPeerNegotiatedVersion + Integer32, + bgpPeerLocalAddr + IpAddress, + bgpPeerLocalPort + INTEGER, + bgpPeerRemoteAddr + IpAddress, + bgpPeerRemotePort + INTEGER, + bgpPeerRemoteAs + INTEGER, + bgpPeerInUpdates + Counter32, + bgpPeerOutUpdates + Counter32, + bgpPeerInTotalMessages + Counter32, + bgpPeerOutTotalMessages + Counter32, + bgpPeerLastError + OCTET STRING, + bgpPeerFsmEstablishedTransitions + Counter32, + bgpPeerFsmEstablishedTime + Gauge32, + bgpPeerConnectRetryInterval + INTEGER, + bgpPeerHoldTime + INTEGER, + bgpPeerKeepAlive + INTEGER, + bgpPeerHoldTimeConfigured + INTEGER, + bgpPeerKeepAliveConfigured + INTEGER, + bgpPeerMinASOriginationInterval + INTEGER, + bgpPeerMinRouteAdvertisementInterval + INTEGER, + bgpPeerInUpdateElapsedTime + Gauge32 + } + + bgpPeerIdentifier OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The BGP Identifier of this entry's BGP + peer." + ::= { bgpPeerEntry 1 } + + bgpPeerState OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + connect(2), + active(3), + opensent(4), + openconfirm(5), + established(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The BGP peer connection state." + ::= { bgpPeerEntry 2 } + + bgpPeerAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + stop(1), + start(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired state of the BGP connection. + A transition from 'stop' to 'start' will + cause the BGP Start Event to be generated. + A transition from 'start' to 'stop' will + cause the BGP Stop Event to be generated. + This parameter can be used to restart BGP + peer connections. Care should be used in + providing write access to this object + without adequate authentication." + ::= { bgpPeerEntry 3 } + + bgpPeerNegotiatedVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The negotiated version of BGP running + between the two peers." + ::= { bgpPeerEntry 4 } + + bgpPeerLocalAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local IP address of this entry's BGP + connection." + ::= { bgpPeerEntry 5 } + + bgpPeerLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local port for the TCP connection + between the BGP peers." + ::= { bgpPeerEntry 6 } + + bgpPeerRemoteAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote IP address of this entry's BGP + peer." + ::= { bgpPeerEntry 7 } + + bgpPeerRemotePort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote port for the TCP connection + between the BGP peers. Note that the + objects bgpPeerLocalAddr, + bgpPeerLocalPort, bgpPeerRemoteAddr and + bgpPeerRemotePort provide the appropriate + reference to the standard MIB TCP + connection table." + ::= { bgpPeerEntry 8 } + + bgpPeerRemoteAs OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote autonomous system number." + ::= { bgpPeerEntry 9 } + + bgpPeerInUpdates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of BGP UPDATE messages + received on this connection. This object + should be initialized to zero (0) when the + connection is established." + ::= { bgpPeerEntry 10 } + + bgpPeerOutUpdates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of BGP UPDATE messages + transmitted on this connection. This + object should be initialized to zero (0) + when the connection is established." + ::= { bgpPeerEntry 11 } + + bgpPeerInTotalMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages received + from the remote peer on this connection. + This object should be initialized to zero + when the connection is established." + ::= { bgpPeerEntry 12 } + + bgpPeerOutTotalMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages transmitted to + the remote peer on this connection. This + object should be initialized to zero when + the connection is established." + ::= { bgpPeerEntry 13 } + + bgpPeerLastError OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last error code and subcode seen by this + peer on this connection. If no error has + occurred, this field is zero. Otherwise, the + first byte of this two byte OCTET STRING + contains the error code, and the second byte + contains the subcode." + ::= { bgpPeerEntry 14 } + + bgpPeerFsmEstablishedTransitions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of times the BGP FSM + transitioned into the established state." + ::= { bgpPeerEntry 15 } + + bgpPeerFsmEstablishedTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This timer indicates how long (in + seconds) this peer has been in the + Established state or how long + since this peer was last in the + Established state. It is set to zero when + a new peer is configured or the router is + booted." + ::= { bgpPeerEntry 16 } + + bgpPeerConnectRetryInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + ConnectRetry timer. The suggested value + for this timer is 120 seconds." + ::= { bgpPeerEntry 17 } + + bgpPeerHoldTime OBJECT-TYPE + SYNTAX INTEGER ( 0 | 3..65535 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time interval in seconds for the Hold + Timer established with the peer. The + value of this object is calculated by this + BGP speaker by using the smaller of the + value in bgpPeerHoldTimeConfigured and the + Hold Time received in the OPEN message. + This value must be at lease three seconds + if it is not zero (0) in which case the + Hold Timer has not been established with + the peer, or, the value of + bgpPeerHoldTimeConfigured is zero (0)." + ::= { bgpPeerEntry 18 } + + bgpPeerKeepAlive OBJECT-TYPE + SYNTAX INTEGER ( 0 | 1..21845 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time interval in seconds for the KeepAlive + timer established with the peer. The value + of this object is calculated by this BGP + speaker such that, when compared with + bgpPeerHoldTime, it has the same + proportion as what + bgpPeerKeepAliveConfigured has when + compared with bgpPeerHoldTimeConfigured. + If the value of this object is zero (0), + it indicates that the KeepAlive timer has + not been established with the peer, or, + the value of bgpPeerKeepAliveConfigured is + zero (0)." + ::= { bgpPeerEntry 19 } + + bgpPeerHoldTimeConfigured OBJECT-TYPE + SYNTAX INTEGER ( 0 | 3..65535 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the Hold Time + configured for this BGP speaker with this + peer. This value is placed in an OPEN + message sent to this peer by this BGP + speaker, and is compared with the Hold + Time field in an OPEN message received + from the peer when determining the Hold + Time (bgpPeerHoldTime) with the peer. + This value must not be less than three + seconds if it is not zero (0) in which + case the Hold Time is NOT to be + established with the peer. The suggested + value for this timer is 90 seconds." + ::= { bgpPeerEntry 20 } + + bgpPeerKeepAliveConfigured OBJECT-TYPE + SYNTAX INTEGER ( 0 | 1..21845 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + KeepAlive timer configured for this BGP + speaker with this peer. The value of this + object will only determine the + KEEPALIVE messages' frequency relative to + the value specified in + bgpPeerHoldTimeConfigured; the actual + time interval for the KEEPALIVE messages + is indicated by bgpPeerKeepAlive. A + reasonable maximum value for this timer + would be configured to be one + third of that of + bgpPeerHoldTimeConfigured. + If the value of this object is zero (0), + no periodical KEEPALIVE messages are sent + to the peer after the BGP connection has + been established. The suggested value for + this timer is 30 seconds." + ::= { bgpPeerEntry 21 } + + bgpPeerMinASOriginationInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + MinASOriginationInterval timer. + The suggested value for this timer is 15 + seconds." + ::= { bgpPeerEntry 22 } + + bgpPeerMinRouteAdvertisementInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Time interval in seconds for the + MinRouteAdvertisementInterval timer. + The suggested value for this timer is 30 + seconds." + ::= { bgpPeerEntry 23 } + + bgpPeerInUpdateElapsedTime OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Elapsed time in seconds since the last BGP + UPDATE message was received from the peer. + Each time bgpPeerInUpdates is incremented, + the value of this object is set to zero + (0)." + ::= { bgpPeerEntry 24 } + + + + bgpIdentifier OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The BGP Identifier of local system." + ::= { bgp 4 } + + + -- Received Path Attribute Table. This table contains, + -- one entry per path to a network, path attributes + -- received from all peers running BGP version 3 or + -- less. This table is deprecated. + +-- bgpRcvdPathAttrTable OBJECT-TYPE + bgpPathAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF BgpPathAttrEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "The BGP Received Path Attribute Table + contains information about paths to + destination networks received from all + peers running BGP version 3 or less." + ::= { bgp 5 } + + bgpPathAttrEntry OBJECT-TYPE + SYNTAX BgpPathAttrEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "Information about a path to a network." + INDEX { bgpPathAttrDestNetwork, + bgpPathAttrPeer } +-- ::= { bgpRcvdPathAttrTable 1 } + ::= { bgpPathAttrTable 1 } + + BgpPathAttrEntry ::= SEQUENCE { + bgpPathAttrPeer + IpAddress, + bgpPathAttrDestNetwork + IpAddress, + bgpPathAttrOrigin + INTEGER, + bgpPathAttrASPath + OCTET STRING, + bgpPathAttrNextHop + IpAddress, + bgpPathAttrInterASMetric + Integer32 + } + + bgpPathAttrPeer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The IP address of the peer where the path + information was learned." + ::= { bgpPathAttrEntry 1 } + + bgpPathAttrDestNetwork OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The address of the destination network." + ::= { bgpPathAttrEntry 2 } + + bgpPathAttrOrigin OBJECT-TYPE + SYNTAX INTEGER { + igp(1),-- networks are interior + egp(2),-- networks learned via EGP + incomplete(3) -- undetermined + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The ultimate origin of the path information." + ::= { bgpPathAttrEntry 3 } + + bgpPathAttrASPath OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..255)) + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The set of ASs that must be traversed to + reach the network. This object is + probably best represented as SEQUENCE OF + INTEGER. For SMI compatibility, though, + it is represented as OCTET STRING. Each + AS is represented as a pair of octets + according to the following algorithm: + + first-byte-of-pair = ASNumber / 256; + second-byte-of-pair = ASNumber & 255;" + ::= { bgpPathAttrEntry 4 } + + bgpPathAttrNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The address of the border router that + should be used for the destination + network." + ::= { bgpPathAttrEntry 5 } + + bgpPathAttrInterASMetric OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The optional inter-AS metric. If this + attribute has not been provided for this + route, the value for this object is 0." + ::= { bgpPathAttrEntry 6 } + + + + -- BGP-4 Received Path Attribute Table. This table + -- contains, one entry per path to a network, path + -- attributes received from all peers running BGP-4. + + bgp4PathAttrTable OBJECT-TYPE + SYNTAX SEQUENCE OF Bgp4PathAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The BGP-4 Received Path Attribute Table + contains information about paths to + destination networks received from all + BGP4 peers." + ::= { bgp 6 } + + bgp4PathAttrEntry OBJECT-TYPE + SYNTAX Bgp4PathAttrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a path to a network." + INDEX { bgp4PathAttrIpAddrPrefix, + bgp4PathAttrIpAddrPrefixLen, + bgp4PathAttrPeer } + ::= { bgp4PathAttrTable 1 } + + Bgp4PathAttrEntry ::= SEQUENCE { + bgp4PathAttrPeer + IpAddress, + bgp4PathAttrIpAddrPrefixLen + INTEGER, + bgp4PathAttrIpAddrPrefix + IpAddress, + bgp4PathAttrOrigin + INTEGER, + bgp4PathAttrASPathSegment + OCTET STRING, + bgp4PathAttrNextHop + IpAddress, + bgp4PathAttrMultiExitDisc + INTEGER, + bgp4PathAttrLocalPref + INTEGER, + bgp4PathAttrAtomicAggregate + INTEGER, + bgp4PathAttrAggregatorAS + INTEGER, + bgp4PathAttrAggregatorAddr + IpAddress, + bgp4PathAttrCalcLocalPref + INTEGER, + bgp4PathAttrBest + INTEGER, + bgp4PathAttrUnknown + OCTET STRING + + } + + bgp4PathAttrPeer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the peer where the path + information was learned." + ::= { bgp4PathAttrEntry 1 } + + bgp4PathAttrIpAddrPrefixLen OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Length in bits of the IP address prefix + in the Network Layer Reachability + Information field." + ::= { bgp4PathAttrEntry 2 } + + bgp4PathAttrIpAddrPrefix OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An IP address prefix in the Network Layer + Reachability Information field. This object + is an IP address containing the prefix with + length specified by + bgp4PathAttrIpAddrPrefixLen. + Any bits beyond the length specified by + bgp4PathAttrIpAddrPrefixLen are zeroed." + ::= { bgp4PathAttrEntry 3 } + + bgp4PathAttrOrigin OBJECT-TYPE + SYNTAX INTEGER { + igp(1),-- networks are interior + egp(2),-- networks learned + -- via EGP + incomplete(3) -- undetermined + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ultimate origin of the path + information." + ::= { bgp4PathAttrEntry 4 } + + bgp4PathAttrASPathSegment OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence of AS path segments. Each AS + path segment is represented by a triple + . + + The type is a 1-octet field which has two + possible values: + 1 AS_SET: unordered set of ASs a + route in the UPDATE + message has traversed + 2 AS_SEQUENCE: ordered set of ASs + a route in the UPDATE + message has traversed. + + The length is a 1-octet field containing the + number of ASs in the value field. + + The value field contains one or more AS + numbers, each AS is represented in the octet + string as a pair of octets according to the + following algorithm: + first-byte-of-pair = ASNumber / 256; + second-byte-of-pair = ASNumber & 255;" + ::= { bgp4PathAttrEntry 5 } + + bgp4PathAttrNextHop OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The address of the border router that + should be used for the destination + network." + ::= { bgp4PathAttrEntry 6 } + + bgp4PathAttrMultiExitDisc OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This metric is used to discriminate + between multiple exit points to an + adjacent autonomous system. A value of -1 + indicates the absence of this attribute." + ::= { bgp4PathAttrEntry 7 } + + bgp4PathAttrLocalPref OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The originating BGP4 speaker's degree of + preference for an advertised route. A + value of -1 indicates the absence of this + attribute." + ::= { bgp4PathAttrEntry 8 } + + bgp4PathAttrAtomicAggregate OBJECT-TYPE + SYNTAX INTEGER { + lessSpecificRrouteNotSelected(1), + lessSpecificRouteSelected(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether or not the local system has + selected a less specific route without + selecting a more specific route." + ::= { bgp4PathAttrEntry 9 } + + bgp4PathAttrAggregatorAS OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The AS number of the last BGP4 speaker that + performed route aggregation. A value of + zero (0) indicates the absence of this + attribute." + ::= { bgp4PathAttrEntry 10 } + + bgp4PathAttrAggregatorAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the last BGP4 speaker + that performed route aggregation. A value + of 0.0.0.0 indicates the absence of this + attribute." + ::= { bgp4PathAttrEntry 11 } + + bgp4PathAttrCalcLocalPref OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The degree of preference calculated by the + receiving BGP4 speaker for an advertised + route. A value of -1 indicates the + absence of this attribute." + ::= { bgp4PathAttrEntry 12 } + + bgp4PathAttrBest OBJECT-TYPE + SYNTAX INTEGER { + false(1),-- not chosen as best route + true(2) -- chosen as best route + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of whether or not this route + was chosen as the best BGP4 route." + ::= { bgp4PathAttrEntry 13 } + + bgp4PathAttrUnknown OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "One or more path attributes not understood + by this BGP4 speaker. Size zero (0) + indicates the absence of such + attribute(s). Octets beyond the maximum + size, if any, are not recorded by this + object." + ::= { bgp4PathAttrEntry 14 } + + + -- Traps. + + bgpTraps OBJECT IDENTIFIER ::= { bgp 7 } + + bgpEstablished NOTIFICATION-TYPE + OBJECTS { bgpPeerLastError, + bgpPeerState } + STATUS current + DESCRIPTION + "The BGP Established event is generated when + the BGP FSM enters the ESTABLISHED state." + ::= { bgpTraps 1 } + + bgpBackwardTransition NOTIFICATION-TYPE + OBJECTS { bgpPeerLastError, + bgpPeerState } + STATUS current + DESCRIPTION + "The BGPBackwardTransition Event is generated + when the BGP FSM moves from a higher numbered + state to a lower numbered state." + ::= { bgpTraps 2 } + +END + diff --git a/pandora_console/attachment/mibs/BRIDGE-MIB b/pandora_console/attachment/mibs/BRIDGE-MIB new file mode 100644 index 0000000000..cd1abfe770 --- /dev/null +++ b/pandora_console/attachment/mibs/BRIDGE-MIB @@ -0,0 +1,1085 @@ +-- Changes to rfc1493 (Bridge MIB): +-- No changes needed. +-- dperkins@scruznet.com + + +BRIDGE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter, TimeTicks + FROM RFC1155-SMI + mib-2 + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215; + + -- All representations of MAC addresses in this MIB Module + -- use, as a textual convention (i.e. this convention does + -- not affect their encoding), the data type: + + MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet address + -- in the + -- "canonical" + -- order + -- defined by IEEE 802.1a, i.e., as if it were transmitted + -- least significant bit first, even though 802.5 (in + -- contrast to other n802.x protocols) requires MAC + -- addresses to be transmitted most significant bit first. + -- + -- 16-bit addresses, if needed, are represented by setting + -- their upper 4 octets to all 0's, i.e., AAFF would be + -- represented as 00000000AAFF. + + -- Similarly, all representations of Bridge-Id in this MIB + -- Module use, as a textual convention (i.e. this + -- convention does not affect their encoding), the data + -- type: + + BridgeId ::= OCTET STRING (SIZE (8)) -- the + -- Bridge-Identifier + -- as used in the + -- Spanning Tree + + -- Protocol to uniquely identify a bridge. Its first two + -- octets (in network byte order) contain a priority + -- value and its last 6 octets contain the MAC address + -- used to refer to a bridge in a unique fashion + -- (typically, the numerically smallest MAC address + -- of all ports on the bridge). + + + -- Several objects in this MIB module represent values of + -- timers used by the Spanning Tree Protocol. In this + -- MIB, these timers have values in units of hundreths of + -- a second (i.e. 1/100 secs). + -- These timers, when stored in a Spanning Tree Protocol's + -- BPDU, are in units of 1/256 seconds. Note, however, + -- that 802.1D-1990 specifies a settable granularity of + -- no more than 1 second for these timers. To avoid + -- ambiguity, a data type is defined here as a textual + -- convention and all representation of these timers + -- in this MIB module are defined using this data type. An + -- algorithm is also defined for converting between the + -- different units, to ensure a timer's value is not + -- distorted by multiple conversions. + -- The data type is: + + Timeout ::= INTEGER -- a STP timer in units of 1/100 seconds + + -- To convert a Timeout value into a value in units of + -- 1/256 seconds, the following algorithm should be used: + -- + -- b = floor( (n * 256) / 100) + -- + -- where: + -- floor = quotient [ignore remainder] + -- n is the value in 1/100 second units + -- b is the value in 1/256 second units + -- + -- To convert the value from 1/256 second units back to + -- 1/100 seconds, the following algorithm should be used: + -- + -- n = ceiling( (b * 100) / 256) + -- + -- where: + -- ceiling = quotient [if remainder is 0], or + -- quotient + 1 [if remainder is non-zero] + -- n is the value in 1/100 second units + -- b is the value in 1/256 second units + -- + -- Note: it is important that the arithmetic operations are + -- done in the order specified (i.e., multiply first, divide + -- second). + + dot1dBridge OBJECT IDENTIFIER ::= { mib-2 17 } + + + -- groups in the Bridge MIB + + dot1dBase OBJECT IDENTIFIER ::= { dot1dBridge 1 } + + dot1dStp OBJECT IDENTIFIER ::= { dot1dBridge 2 } + + dot1dSr OBJECT IDENTIFIER ::= { dot1dBridge 3 } + -- separately documented + + dot1dTp OBJECT IDENTIFIER ::= { dot1dBridge 4 } + + dot1dStatic OBJECT IDENTIFIER ::= { dot1dBridge 5 } + + -- the dot1dBase group + + -- Implementation of the dot1dBase group is mandatory for all + -- bridges. + + dot1dBaseBridgeAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAC address used by this bridge when it must + be referred to in a unique fashion. It is + recommended that this be the numerically smallest + MAC address of all ports that belong to this + bridge. However it is only required to be unique. + When concatenated with dot1dStpPriority a unique + BridgeIdentifier is formed which is used in the + Spanning Tree Protocol." + REFERENCE + "IEEE 802.1D-1990: Sections 6.4.1.1.3 and 3.12.5" + ::= { dot1dBase 1 } + + dot1dBaseNumPorts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ports controlled by this bridging + entity." + REFERENCE + "IEEE 802.1D-1990: Section 6.4.1.1.3" + ::= { dot1dBase 2 } + + dot1dBaseType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + transparent-only(2), + sourceroute-only(3), + srt(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates what type of bridging this bridge can + perform. If a bridge is actually performing a + certain type of bridging this will be indicated by + entries in the port table for the given type." + ::= { dot1dBase 3 } + + -- The Generic Bridge Port Table + + dot1dBasePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1dBasePortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains generic information about + every port that is associated with this bridge. + Transparent, source-route, and srt ports are + included." + ::= { dot1dBase 4 } + + dot1dBasePortEntry OBJECT-TYPE + SYNTAX Dot1dBasePortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of information for each port of the + bridge." + REFERENCE + "IEEE 802.1D-1990: Section 6.4.2, 6.6.1" + INDEX { dot1dBasePort } + ::= { dot1dBasePortTable 1 } + + Dot1dBasePortEntry ::= + SEQUENCE { + dot1dBasePort + INTEGER, + dot1dBasePortIfIndex + INTEGER, + dot1dBasePortCircuit + OBJECT IDENTIFIER, + dot1dBasePortDelayExceededDiscards + Counter, + dot1dBasePortMtuExceededDiscards + Counter + } + + dot1dBasePort OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port number of the port for which this entry + contains bridge management information." + ::= { dot1dBasePortEntry 1 } + + dot1dBasePortIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the instance of the ifIndex object, + defined in MIB-II, for the interface corresponding + to this port." + ::= { dot1dBasePortEntry 2 } + + dot1dBasePortCircuit OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For a port which (potentially) has the same value + of dot1dBasePortIfIndex as another port on the + same bridge, this object contains the name of an + object instance unique to this port. For example, + in the case where multiple ports correspond one- + to-one with multiple X.25 virtual circuits, this + value might identify an (e.g., the first) object + instance associated with the X.25 virtual circuit + corresponding to this port. + + For a port which has a unique value of + dot1dBasePortIfIndex, this object can have the + value { 0 0 }." + ::= { dot1dBasePortEntry 3 } + + dot1dBasePortDelayExceededDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames discarded by this port due + to excessive transit delay through the bridge. It + is incremented by both transparent and source + route bridges." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { dot1dBasePortEntry 4 } + + dot1dBasePortMtuExceededDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames discarded by this port due + to an excessive size. It is incremented by both + transparent and source route bridges." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { dot1dBasePortEntry 5 } + + -- the dot1dStp group + + -- Implementation of the dot1dStp group is optional. It is + -- implemented by those bridges that support the Spanning Tree + -- Protocol. + + dot1dStpProtocolSpecification OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + decLb100(2), + ieee8021d(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of what version of the Spanning + Tree Protocol is being run. The value + 'decLb100(2)' indicates the DEC LANbridge 100 + Spanning Tree protocol. IEEE 802.1d + implementations will return 'ieee8021d(3)'. If + future versions of the IEEE Spanning Tree Protocol + are released that are incompatible with the + current version a new value will be defined." + ::= { dot1dStp 1 } + + dot1dStpPriority OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the write-able portion of the Bridge + ID, i.e., the first two octets of the (8 octet + long) Bridge ID. The other (last) 6 octets of the + Bridge ID are given by the value of + dot1dBaseBridgeAddress." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.7" + ::= { dot1dStp 2 } + + dot1dStpTimeSinceTopologyChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time (in hundredths of a second) since the + last time a topology change was detected by the + bridge entity." + REFERENCE + "IEEE 802.1D-1990: Section 6.8.1.1.3" + ::= { dot1dStp 3 } + + dot1dStpTopChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of topology changes detected by + this bridge since the management entity was last + reset or initialized." + REFERENCE + "IEEE 802.1D-1990: Section 6.8.1.1.3" + ::= { dot1dStp 4 } + + dot1dStpDesignatedRoot OBJECT-TYPE + SYNTAX BridgeId + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bridge identifier of the root of the spanning + tree as determined by the Spanning Tree Protocol + as executed by this node. This value is used as + the Root Identifier parameter in all Configuration + Bridge PDUs originated by this node." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.1" + ::= { dot1dStp 5 } + + dot1dStpRootCost OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The cost of the path to the root as seen from + this bridge." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.2" + ::= { dot1dStp 6 } + + dot1dStpRootPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port number of the port which offers the + lowest cost path from this bridge to the root + bridge." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.3" + ::= { dot1dStp 7 } + + dot1dStpMaxAge OBJECT-TYPE + SYNTAX Timeout + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum age of Spanning Tree Protocol + information learned from the network on any port + before it is discarded, in units of hundredths of + a second. This is the actual value that this + bridge is currently using." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.4" + ::= { dot1dStp 8 } + + dot1dStpHelloTime OBJECT-TYPE + SYNTAX Timeout + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of time between the transmission of + Configuration bridge PDUs by this node on any port + when it is the root of the spanning tree or trying + to become so, in units of hundredths of a second. + This is the actual value that this bridge is + currently using." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.5" + ::= { dot1dStp 9 } + + dot1dStpHoldTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This time value determines the interval length + during which no more than two Configuration bridge + PDUs shall be transmitted by this node, in units + of hundredths of a second." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.14" + ::= { dot1dStp 10 } + + dot1dStpForwardDelay OBJECT-TYPE + SYNTAX Timeout + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This time value, measured in units of hundredths + of a second, controls how fast a port changes its + spanning state when moving towards the Forwarding + state. The value determines how long the port + stays in each of the Listening and Learning + states, which precede the Forwarding state. This + value is also used, when a topology change has + been detected and is underway, to age all dynamic + entries in the Forwarding Database. [Note that + this value is the one that this bridge is + currently using, in contrast to + dot1dStpBridgeForwardDelay which is the value that + this bridge and all others would start using + if/when this bridge were to become the root.]" + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.6" + ::= { dot1dStp 11 } + + dot1dStpBridgeMaxAge OBJECT-TYPE + SYNTAX Timeout (600..4000) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value that all bridges use for MaxAge when + this bridge is acting as the root. Note that + 802.1D-1990 specifies that the range for this + parameter is related to the value of + dot1dStpBridgeHelloTime. The granularity of this + timer is specified by 802.1D-1990 to be 1 second. + An agent may return a badValue error if a set is + attempted to a value which is not a whole number + of seconds." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.8" + ::= { dot1dStp 12 } + + dot1dStpBridgeHelloTime OBJECT-TYPE + SYNTAX Timeout (100..1000) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value that all bridges use for HelloTime when + this bridge is acting as the root. The + granularity of this timer is specified by 802.1D- + 1990 to be 1 second. An agent may return a + badValue error if a set is attempted to a value + which is not a whole number of seconds." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.9" + ::= { dot1dStp 13 } + + dot1dStpBridgeForwardDelay OBJECT-TYPE + SYNTAX Timeout (400..3000) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value that all bridges use for ForwardDelay + when this bridge is acting as the root. Note that + 802.1D-1990 specifies that the range for this + parameter is related to the value of + dot1dStpBridgeMaxAge. The granularity of this + timer is specified by 802.1D-1990 to be 1 second. + An agent may return a badValue error if a set is + attempted to a value which is not a whole number + of seconds." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.3.10" + ::= { dot1dStp 14 } + + + -- The Spanning Tree Port Table + + dot1dStpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1dStpPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains port-specific information + for the Spanning Tree Protocol." + ::= { dot1dStp 15 } + + dot1dStpPortEntry OBJECT-TYPE + SYNTAX Dot1dStpPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of information maintained by every port + about the Spanning Tree Protocol state for that + port." + INDEX { dot1dStpPort } + ::= { dot1dStpPortTable 1 } + + Dot1dStpPortEntry ::= + SEQUENCE { + dot1dStpPort + INTEGER, + dot1dStpPortPriority + INTEGER, + dot1dStpPortState + INTEGER, + dot1dStpPortEnable + INTEGER, + dot1dStpPortPathCost + INTEGER, + dot1dStpPortDesignatedRoot + BridgeId, + dot1dStpPortDesignatedCost + INTEGER, + dot1dStpPortDesignatedBridge + BridgeId, + dot1dStpPortDesignatedPort + OCTET STRING, + dot1dStpPortForwardTransitions + Counter + } + + dot1dStpPort OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port number of the port for which this entry + contains Spanning Tree Protocol management + information." + REFERENCE + "IEEE 802.1D-1990: Section 6.8.2.1.2" + ::= { dot1dStpPortEntry 1 } + + dot1dStpPortPriority OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the priority field which is + contained in the first (in network byte order) + octet of the (2 octet long) Port ID. The other + octet of the Port ID is given by the value of + dot1dStpPort." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.1" + ::= { dot1dStpPortEntry 2 } + + dot1dStpPortState OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + blocking(2), + listening(3), + learning(4), + forwarding(5), + broken(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port's current state as defined by + application of the Spanning Tree Protocol. This + state controls what action a port takes on + reception of a frame. If the bridge has detected + a port that is malfunctioning it will place that + port into the broken(6) state. For ports which + are disabled (see dot1dStpPortEnable), this object + will have a value of disabled(1)." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.2" + ::= { dot1dStpPortEntry 3 } + + dot1dStpPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The enabled/disabled status of the port." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.2" + ::= { dot1dStpPortEntry 4 } + + dot1dStpPortPathCost OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The contribution of this port to the path cost of + paths towards the spanning tree root which include + this port. 802.1D-1990 recommends that the + default value of this parameter be in inverse + proportion to the speed of the attached LAN." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.3" + ::= { dot1dStpPortEntry 5 } + + dot1dStpPortDesignatedRoot OBJECT-TYPE + SYNTAX BridgeId + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique Bridge Identifier of the Bridge + recorded as the Root in the Configuration BPDUs + transmitted by the Designated Bridge for the + segment to which the port is attached." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.4" + ::= { dot1dStpPortEntry 6 } + + dot1dStpPortDesignatedCost OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The path cost of the Designated Port of the + segment connected to this port. This value is + compared to the Root Path Cost field in received + bridge PDUs." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.5" + ::= { dot1dStpPortEntry 7 } + + dot1dStpPortDesignatedBridge OBJECT-TYPE + SYNTAX BridgeId + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Bridge Identifier of the bridge which this + port considers to be the Designated Bridge for + this port's segment." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.6" + ::= { dot1dStpPortEntry 8 } + + dot1dStpPortDesignatedPort OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Port Identifier of the port on the Designated + Bridge for this port's segment." + REFERENCE + "IEEE 802.1D-1990: Section 4.5.5.7" + ::= { dot1dStpPortEntry 9 } + + dot1dStpPortForwardTransitions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this port has transitioned + from the Learning state to the Forwarding state." + ::= { dot1dStpPortEntry 10 } + + -- the dot1dTp group + + -- Implementation of the dot1dTp group is optional. It is + -- implemented by those bridges that support the transparent + -- bridging mode. A transparent or SRT bridge will implement + -- this group. + + dot1dTpLearnedEntryDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of Forwarding Database entries, + which have been or would have been learnt, but + have been discarded due to a lack of space to + store them in the Forwarding Database. If this + counter is increasing, it indicates that the + Forwarding Database is regularly becoming full (a + condition which has unpleasant performance effects + on the subnetwork). If this counter has a + significant value but is not presently increasing, + it indicates that the problem has been occurring + but is not persistent." + REFERENCE + "IEEE 802.1D-1990: Section 6.7.1.1.3" + ::= { dot1dTp 1 } + + dot1dTpAgingTime OBJECT-TYPE + SYNTAX INTEGER (10..1000000) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The timeout period in seconds for aging out + dynamically learned forwarding information. + 802.1D-1990 recommends a default of 300 seconds." + REFERENCE + "IEEE 802.1D-1990: Section 6.7.1.1.3" + ::= { dot1dTp 2 } + + -- The Forwarding Database for Transparent Bridges + + dot1dTpFdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1dTpFdbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains information about unicast + entries for which the bridge has forwarding and/or + filtering information. This information is used + by the transparent bridging function in + determining how to propagate a received frame." + ::= { dot1dTp 3 } + + dot1dTpFdbEntry OBJECT-TYPE + SYNTAX Dot1dTpFdbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a specific unicast MAC address + for which the bridge has some forwarding and/or + filtering information." + INDEX { dot1dTpFdbAddress } + ::= { dot1dTpFdbTable 1 } + + Dot1dTpFdbEntry ::= + SEQUENCE { + dot1dTpFdbAddress + MacAddress, + dot1dTpFdbPort + INTEGER, + dot1dTpFdbStatus + INTEGER + } + + dot1dTpFdbAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unicast MAC address for which the bridge has + forwarding and/or filtering information." + REFERENCE + "IEEE 802.1D-1990: Section 3.9.1, 3.9.2" + ::= { dot1dTpFdbEntry 1 } + + dot1dTpFdbPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Either the value '0', or the port number of the + port on which a frame having a source address + equal to the value of the corresponding instance + of dot1dTpFdbAddress has been seen. A value of + '0' indicates that the port number has not been + learned but that the bridge does have some + forwarding/filtering information about this + address (e.g. in the dot1dStaticTable). + Implementors are encouraged to assign the port + value to this object whenever it is learned even + for addresses for which the corresponding value of + dot1dTpFdbStatus is not learned(3)." + ::= { dot1dTpFdbEntry 2 } + + dot1dTpFdbStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + learned(3), + self(4), + mgmt(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of this entry. The meanings of the + values are: + + other(1) : none of the following. This would + include the case where some other + MIB object (not the corresponding + instance of dot1dTpFdbPort, nor an + entry in the dot1dStaticTable) is + being used to determine if and how + frames addressed to the value of + the corresponding instance of + dot1dTpFdbAddress are being + forwarded. + + invalid(2) : this entry is not longer valid + (e.g., it was learned but has since + aged-out), but has not yet been + flushed from the table. + + learned(3) : the value of the corresponding + instance of dot1dTpFdbPort was + learned, and is being used. + + self(4) : the value of the corresponding + instance of dot1dTpFdbAddress + represents one of the bridge's + addresses. The corresponding + instance of dot1dTpFdbPort + indicates which of the bridge's + ports has this address. + + mgmt(5) : the value of the corresponding + instance of dot1dTpFdbAddress is + also the value of an existing + instance of dot1dStaticAddress." + ::= { dot1dTpFdbEntry 3 } + + + -- Port Table for Transparent Bridges + + dot1dTpPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1dTpPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains information about every + port that is associated with this transparent + bridge." + ::= { dot1dTp 4 } + + dot1dTpPortEntry OBJECT-TYPE + SYNTAX Dot1dTpPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of information for each port of a + transparent bridge." + INDEX { dot1dTpPort } + ::= { dot1dTpPortTable 1 } + + Dot1dTpPortEntry ::= + SEQUENCE { + dot1dTpPort + INTEGER, + dot1dTpPortMaxInfo + INTEGER, + dot1dTpPortInFrames + Counter, + dot1dTpPortOutFrames + Counter, + dot1dTpPortInDiscards + Counter + } + + dot1dTpPort OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port number of the port for which this entry + contains Transparent bridging management + information." + ::= { dot1dTpPortEntry 1 } + + -- It would be nice if we could use ifMtu as the size of the + -- largest INFO field, but we can't because ifMtu is defined + -- to be the size that the (inter-)network layer can use which + -- can differ from the MAC layer (especially if several layers + -- of encapsulation are used). + + dot1dTpPortMaxInfo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum size of the INFO (non-MAC) field that + this port will receive or transmit." + ::= { dot1dTpPortEntry 2 } + + dot1dTpPortInFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames that have been received by + this port from its segment. Note that a frame + received on the interface corresponding to this + port is only counted by this object if and only if + it is for a protocol being processed by the local + bridging function, including bridge management + frames." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { dot1dTpPortEntry 3 } + + dot1dTpPortOutFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames that have been transmitted + by this port to its segment. Note that a frame + transmitted on the interface corresponding to this + port is only counted by this object if and only if + it is for a protocol being processed by the local + bridging function, including bridge management + frames." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { dot1dTpPortEntry 4 } + + dot1dTpPortInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of valid frames received which were + discarded (i.e., filtered) by the Forwarding + Process." + REFERENCE + "IEEE 802.1D-1990: Section 6.6.1.1.3" + ::= { dot1dTpPortEntry 5 } + + -- The Static (Destination-Address Filtering) Database + + -- Implementation of this group is optional. + + dot1dStaticTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot1dStaticEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing filtering information + configured into the bridge by (local or network) + management specifying the set of ports to which + frames received from specific ports and containing + specific destination addresses are allowed to be + forwarded. The value of zero in this table as the + port number from which frames with a specific + destination address are received, is used to + specify all ports for which there is no specific + entry in this table for that particular + destination address. Entries are valid for + unicast and for group/broadcast addresses." + REFERENCE + "IEEE 802.1D-1990: Section 6.7.2" + ::= { dot1dStatic 1 } + + dot1dStaticEntry OBJECT-TYPE + SYNTAX Dot1dStaticEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Filtering information configured into the bridge + by (local or network) management specifying the + set of ports to which frames received from a + specific port and containing a specific + destination address are allowed to be forwarded." + REFERENCE + "IEEE 802.1D-1990: Section 6.7.2" + + + INDEX { dot1dStaticAddress, dot1dStaticReceivePort } + ::= { dot1dStaticTable 1 } + + Dot1dStaticEntry ::= + SEQUENCE { + dot1dStaticAddress + MacAddress, + dot1dStaticReceivePort + INTEGER, + dot1dStaticAllowedToGoTo + OCTET STRING, + dot1dStaticStatus + INTEGER + } + + dot1dStaticAddress OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The destination MAC address in a frame to which + this entry's filtering information applies. This + object can take the value of a unicast address, a + group address or the broadcast address." + REFERENCE + "IEEE 802.1D-1990: Section 3.9.1, 3.9.2" + ::= { dot1dStaticEntry 1 } + + dot1dStaticReceivePort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Either the value '0', or the port number of the + port from which a frame must be received in order + for this entry's filtering information to apply. + A value of zero indicates that this entry applies + on all ports of the bridge for which there is no + other applicable entry." + ::= { dot1dStaticEntry 2 } + + dot1dStaticAllowedToGoTo OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The set of ports to which frames received from a + specific port and destined for a specific MAC + address, are allowed to be forwarded. Each octet + within the value of this object specifies a set of + eight ports, with the first octet specifying ports + 1 through 8, the second octet specifying ports 9 + through 16, etc. Within each octet, the most + significant bit represents the lowest numbered + port, and the least significant bit represents the + highest numbered port. Thus, each port of the + bridge is represented by a single bit within the + value of this object. If that bit has a value of + '1' then that port is included in the set of + ports; the port is not included if its bit has a + value of '0'. (Note that the setting of the bit + corresponding to the port from which a frame is + received is irrelevant.) The default value of + this object is a string of ones of appropriate + length." + ::= { dot1dStaticEntry 3 } + + dot1dStaticStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + permanent(3), + deleteOnReset(4), + deleteOnTimeout(5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object indicates the status of this entry. + The default value is permanent(3). + + other(1) - this entry is currently in use but + the conditions under which it will + remain so are different from each of the + following values. + invalid(2) - writing this value to the object + removes the corresponding entry. + permanent(3) - this entry is currently in use + and will remain so after the next reset + of the bridge. + deleteOnReset(4) - this entry is currently in + use and will remain so until the next + reset of the bridge. + deleteOnTimeout(5) - this entry is currently + in use and will remain so until it is + aged out." + ::= { dot1dStaticEntry 4 } + + -- Traps for use by Bridges + + -- Traps for the Spanning Tree Protocol + + newRoot TRAP-TYPE + ENTERPRISE dot1dBridge + DESCRIPTION + "The newRoot trap indicates that the sending agent + has become the new root of the Spanning Tree; the + trap is sent by a bridge soon after its election + as the new root, e.g., upon expiration of the + Topology Change Timer immediately subsequent to + its election. Implementation of this trap is + optional." + ::= 1 + + topologyChange TRAP-TYPE + ENTERPRISE dot1dBridge + DESCRIPTION + "A topologyChange trap is sent by a bridge when + any of its configured ports transitions from the + Learning state to the Forwarding state, or from + the Forwarding state to the Blocking state. The + trap is not sent if a newRoot trap is sent for the + same transition. Implementation of this trap is + optional." + ::= 2 + +END diff --git a/pandora_console/attachment/mibs/CHARACTER-MIB b/pandora_console/attachment/mibs/CHARACTER-MIB new file mode 100644 index 0000000000..3d26ba7239 --- /dev/null +++ b/pandora_console/attachment/mibs/CHARACTER-MIB @@ -0,0 +1,667 @@ +-- Changes to RFC1658 - CHARACTER-MIB +-- Added IMPORT of TEXTUAL-CONVENTION macro. +-- Added IMPORT of DisplayString. +-- Removed unused IMPORT of NOTIFICATION-TYPE. +-- Removed unused IMPORT of transmission. +-- Need to add the following object-types to an object-group: +-- charPortInFlowType & charPortOutFlowType. +-- Syntax of object charSessConnectionId changed from +-- InstancePointer to OBJECT IDENTIFIER and import +-- of InstancePointer removed. +-- dperkins@scruznet.com + + CHARACTER-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Integer32, Gauge32, TimeTicks + FROM SNMPv2-SMI + AutonomousType, +-- InstancePointer, + DisplayString, TEXTUAL-CONVENTION + FROM SNMPv2-TC + InterfaceIndex + FROM IF-MIB + mib-2 + FROM RFC1213-MIB + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + + + char MODULE-IDENTITY + LAST-UPDATED "9405261700Z" + ORGANIZATION "IETF Character MIB Working Group" + CONTACT-INFO + " Bob Stewart + Postal: Xyplex, Inc. + 295 Foster Street + Littleton, MA 01460 + + Tel: 508-952-4816 + Fax: 508-952-4887 + + E-mail: rlstewart@eng.xyplex.com" + DESCRIPTION + "The MIB module for character stream devices." + ::= { mib-2 19 } + + PortIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each + character port in the managed system. It is + recommended that values are assigned contiguously + starting from 1. The value for each interface sub- + layer must remain constant at least from one re- + initialization of the entity's network management + system to the next re-initialization. + + In a system where the character ports are attached + to hardware represented by an ifIndex, it is + conventional, but not required, to make the + character port index equal to the corresponding + ifIndex." + SYNTAX Integer32 + + + -- Generic Character information + + charNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of entries in charPortTable, regardless + of their current state." + ::= { char 1 } + + + -- the Character Port table + + charPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CharPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port entries. The number of entries is + given by the value of charNumber." + ::= { char 2 } + + charPortEntry OBJECT-TYPE + SYNTAX CharPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status and parameter values for a character port." + INDEX { charPortIndex } + ::= { charPortTable 1 } + + CharPortEntry ::= + SEQUENCE { + charPortIndex + PortIndex, + charPortName + DisplayString, + charPortType + INTEGER, + charPortHardware + AutonomousType, + charPortReset + INTEGER, + charPortAdminStatus + INTEGER, + charPortOperStatus + INTEGER, + charPortLastChange + TimeTicks, + charPortInFlowType + INTEGER, + charPortOutFlowType + INTEGER, + charPortInFlowState + INTEGER, + charPortOutFlowState + INTEGER, + charPortInCharacters + Counter32, + charPortOutCharacters + Counter32, + charPortAdminOrigin + INTEGER, + charPortSessionMaximum + INTEGER, + charPortSessionNumber + Gauge32, + charPortSessionIndex + INTEGER, + charPortInFlowTypes + OCTET STRING, + charPortOutFlowTypes + OCTET STRING, + charPortLowerIfIndex + InterfaceIndex + } + + charPortIndex OBJECT-TYPE + SYNTAX PortIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each character port, perhaps + corresponding to the same value of ifIndex when the + character port is associated with a hardware port + represented by an ifIndex." + ::= { charPortEntry 1 } + + charPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An administratively assigned name for the port, + typically with some local significance." + ::= { charPortEntry 2 } + + charPortType OBJECT-TYPE + SYNTAX INTEGER { physical(1), virtual(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port's type, 'physical' if the port represents + an external hardware connector, 'virtual' if it does + not." + ::= { charPortEntry 3 } + + charPortHardware OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A reference to hardware MIB definitions specific to + a physical port's external connector. For example, + if the connector is RS-232, then the value of this + object refers to a MIB sub-tree defining objects + specific to RS-232. If an agent is not configured + to have such values, the agent returns the object + identifier: + + nullHardware OBJECT IDENTIFIER ::= { 0 0 } + " + ::= { charPortEntry 4 } + + charPortReset OBJECT-TYPE + SYNTAX INTEGER { ready(1), execute(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A control to force the port into a clean, initial + state, both hardware and software, disconnecting all + the port's existing sessions. In response to a + get-request or get-next-request, the agent always + returns 'ready' as the value. Setting the value to + 'execute' causes a reset." + ::= { charPortEntry 5 } + + charPortAdminStatus OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2), off(3), + maintenance(4) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's desired state, independent of flow + control. 'enabled' indicates that the port is + allowed to pass characters and form new sessions. + 'disabled' indicates that the port is allowed to + pass characters but not form new sessions. 'off' + indicates that the port is not allowed to pass + characters or have any sessions. 'maintenance' + indicates a maintenance mode, exclusive of normal + operation, such as running a test. + + 'enabled' corresponds to ifAdminStatus 'up'. + 'disabled' and 'off' correspond to ifAdminStatus + 'down'. 'maintenance' corresponds to ifAdminStatus + 'test'." + ::= { charPortEntry 6 } + + charPortOperStatus OBJECT-TYPE + SYNTAX INTEGER { up(1), down(2), + maintenance(3), absent(4), active(5) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port's actual, operational state, independent + of flow control. 'up' indicates able to function + normally. 'down' indicates inability to function + for administrative or operational reasons. + 'maintenance' indicates a maintenance mode, + exclusive of normal operation, such as running a + test. 'absent' indicates that port hardware is not + present. 'active' indicates up with a user present + (e.g. logged in). + + 'up' and 'active' correspond to ifOperStatus 'up'. + 'down' and 'absent' correspond to ifOperStatus + 'down'. 'maintenance' corresponds to ifOperStatus + 'test'." + ::= { charPortEntry 7 } + + charPortLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the port entered + its current operational state. If the current state + was entered prior to the last reinitialization of + the local network management subsystem, then this + object contains a zero value." + ::= { charPortEntry 8 } + + -- charPortInFlowType is deprecated in favor of + -- charPortInFlowTypes + + charPortInFlowType OBJECT-TYPE + SYNTAX INTEGER { none(1), xonXoff(2), hardware(3), + ctsRts(4), dsrDtr(5) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "The port's type of input flow control. 'none' + indicates no flow control at this level or below. + 'xonXoff' indicates software flow control by + recognizing XON and XOFF characters. 'hardware' + indicates flow control delegated to the lower level, + for example a parallel port. + + 'ctsRts' and 'dsrDtr' are specific to RS-232-like + ports. Although not architecturally pure, they are + included here for simplicity's sake." + ::= { charPortEntry 9 } + + + -- charPortOutFlowType is deprecated in favor of + -- charPortOutFlowTypes + + charPortOutFlowType OBJECT-TYPE + SYNTAX INTEGER { none(1), xonXoff(2), hardware(3), + ctsRts(4), dsrDtr(5) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "The port's type of output flow control. 'none' + indicates no flow control at this level or below. + 'xonXoff' indicates software flow control by + recognizing XON and XOFF characters. 'hardware' + indicates flow control delegated to the lower level, + for example a parallel port. + + 'ctsRts' and 'dsrDtr' are specific to RS-232-like + ports. Although not architecturally pure, they are + included here for simplicy's sake." + ::= { charPortEntry 10 } + + charPortInFlowState OBJECT-TYPE + SYNTAX INTEGER { none(1), unknown(2), stop(3), go(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of input flow control + on the port. 'none' indicates not applicable. + 'unknown' indicates this level does not know. + 'stop' indicates flow not allowed. 'go' indicates + flow allowed." + ::= { charPortEntry 11 } + + charPortOutFlowState OBJECT-TYPE + SYNTAX INTEGER { none(1), unknown(2), stop(3), go(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of output flow + control on the port. 'none' indicates not + applicable. 'unknown' indicates this level does not + know. 'stop' indicates flow not allowed. 'go' + indicates flow allowed." + ::= { charPortEntry 12 } + + charPortInCharacters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of characters detected as input from + the port since system re-initialization and while + the port operational state was 'up', 'active', or + 'maintenance', including, for example, framing, flow + control (i.e. XON and XOFF), each occurrence of a + BREAK condition, locally-processed input, and input + sent to all sessions." + ::= { charPortEntry 13 } + + charPortOutCharacters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of characters detected as output to + the port since system re-initialization and while + the port operational state was 'up', 'active', or + 'maintenance', including, for example, framing, flow + control (i.e. XON and XOFF), each occurrence of a + BREAK condition, locally-created output, and output + received from all sessions." + ::= { charPortEntry 14 } + + charPortAdminOrigin OBJECT-TYPE + SYNTAX INTEGER { dynamic(1), network(2), local(3), + none(4) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The administratively allowed origin for + establishing session on the port. 'dynamic' allows + 'network' or 'local' session establishment. 'none' + disallows session establishment." + ::= { charPortEntry 15 } + + charPortSessionMaximum OBJECT-TYPE + SYNTAX INTEGER (-1..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of concurrent sessions allowed + on the port. A value of -1 indicates no maximum. + Setting the maximum to less than the current number + of sessions has unspecified results." + ::= { charPortEntry 16 } + + charPortSessionNumber OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open sessions on the port that are in + the connecting, connected, or disconnecting state." + ::= { charPortEntry 17 } + + charPortSessionIndex OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of charSessIndex for the port's first or + only active session. If the port has no active + session, the agent returns the value zero." + ::= { charPortEntry 18 } + + charPortInFlowTypes OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's types of input flow control at the + software level. Hardware-level flow control is + independently controlled by the appropriate + hardware-level MIB. + + A value of zero indicates no flow control. + Depending on the specific implementation, any or + all combinations of flow control may be chosen by + adding the values: + + 128 xonXoff, recognizing XON and XOFF characters + 64 enqHost, ENQ/ACK to allow input to host + 32 enqTerm, ACK to allow output to port + " + ::= { charPortEntry 19 } + + charPortOutFlowTypes OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's types of output flow control at the + software level. Hardware-level flow control is + independently controlled by the appropriate + hardware-level MIB. + + A value of zero indicates no flow control. + Depending on the specific implementation, any or + all combinations of flow control may be chosen by + adding the values: + + 128 xonXoff, recognizing XON and XOFF characters + 64 enqHost, ENQ/ACK to allow input to host + 32 enqTerm, ACK to allow output to port + " + ::= { charPortEntry 20 } + + charPortLowerIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ifIndex value of the lower level hardware supporting + this character port, zero if none." + ::= { charPortEntry 21 } + + + -- the Character Session table + + charSessTable OBJECT-TYPE + SYNTAX SEQUENCE OF CharSessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port session entries." + ::= { char 3 } + + charSessEntry OBJECT-TYPE + SYNTAX CharSessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status and parameter values for a character port + session." + INDEX { charSessPortIndex, charSessIndex } + ::= { charSessTable 1 } + + CharSessEntry ::= + SEQUENCE { + charSessPortIndex + PortIndex, + charSessIndex + INTEGER, + charSessKill + INTEGER, + charSessState + INTEGER, + charSessProtocol + AutonomousType, + charSessOperOrigin + INTEGER, + charSessInCharacters + Counter32, + charSessOutCharacters + Counter32, + charSessConnectionId +-- InstancePointer, + OBJECT IDENTIFIER, + charSessStartTime + TimeTicks + } + + charSessPortIndex OBJECT-TYPE + SYNTAX PortIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of charPortIndex for the port to which + this session belongs." + ::= { charSessEntry 1 } + + charSessIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The session index in the context of the port, a + non-zero positive integer. Session indexes within a + port need not be sequential. Session indexes may be + reused for different ports. For example, port 1 and + port 3 may both have a session 2 at the same time. + Session indexes may have any valid integer value, + with any meaning convenient to the agent + implementation." + ::= { charSessEntry 2 } + + charSessKill OBJECT-TYPE + SYNTAX INTEGER { ready(1), execute(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A control to terminate the session. In response to + a get-request or get-next-request, the agent always + returns 'ready' as the value. Setting the value to + 'execute' causes termination." + ::= { charSessEntry 3 } + + charSessState OBJECT-TYPE + SYNTAX INTEGER { connecting(1), connected(2), + disconnecting(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the session, + disregarding flow control. 'connected' indicates + that character data could flow on the network side + of session. 'connecting' indicates moving from + nonexistent toward 'connected'. 'disconnecting' + indicates moving from 'connected' or 'connecting' to + nonexistent." + ::= { charSessEntry 4 } + + charSessProtocol OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The network protocol over which the session is + running. Other OBJECT IDENTIFIER values may be + defined elsewhere, in association with specific + protocols. However, this document assigns those of + known interest as of this writing." + ::= { charSessEntry 5 } + + wellKnownProtocols OBJECT IDENTIFIER ::= { char 4 } + + protocolOther OBJECT IDENTIFIER ::= { wellKnownProtocols 1 } + protocolTelnet OBJECT IDENTIFIER ::= { wellKnownProtocols 2 } + protocolRlogin OBJECT IDENTIFIER ::= { wellKnownProtocols 3 } + protocolLat OBJECT IDENTIFIER ::= { wellKnownProtocols 4 } + protocolX29 OBJECT IDENTIFIER ::= { wellKnownProtocols 5 } + protocolVtp OBJECT IDENTIFIER ::= { wellKnownProtocols 6 } + + + charSessOperOrigin OBJECT-TYPE + SYNTAX INTEGER { unknown(1), network(2), local(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The session's source of establishment." + ::= { charSessEntry 6 } + + charSessInCharacters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This session's subset of charPortInCharacters." + ::= { charSessEntry 7 } + + charSessOutCharacters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This session's subset of charPortOutCharacters." + ::= { charSessEntry 8 } + + charSessConnectionId OBJECT-TYPE +-- SYNTAX InstancePointer + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A reference to additional local MIB information. + This should be the highest available related MIB, + corresponding to charSessProtocol, such as Telnet. + For example, the value for a TCP connection (in the + absence of a Telnet MIB) is the object identifier of + tcpConnState. If an agent is not configured to have + such values, the agent returns the object + identifier: + + nullConnectionId OBJECT IDENTIFIER ::= { 0 0 } + " + ::= { charSessEntry 9 } + + charSessStartTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime in MIB-2 when the session + entered connecting state." + ::= { charSessEntry 10 } + + + -- conformance information + + charConformance OBJECT IDENTIFIER ::= { char 5 } + + charGroups OBJECT IDENTIFIER ::= { charConformance 1 } + charCompliances OBJECT IDENTIFIER ::= { charConformance 2 } + + + -- compliance statements + + charCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which have Character hardware interfaces." + + MODULE -- this module + MANDATORY-GROUPS { charGroup } + ::= { charCompliances 1 } + + + -- units of conformance + + charGroup OBJECT-GROUP + OBJECTS { charNumber, charPortIndex, charPortName, + charPortType, charPortHardware, charPortReset, + charPortAdminStatus, charPortOperStatus, + charPortLastChange, + charPortInFlowState, charPortOutFlowState, + charPortAdminOrigin, charPortSessionMaximum, + charPortInFlowTypes, charPortOutFlowTypes, + charPortInCharacters, charPortOutCharacters, + charPortSessionNumber, charPortSessionIndex, + charPortLowerIfIndex, + charSessPortIndex, charSessIndex, + charSessKill, charSessState, + charSessProtocol, charSessOperOrigin, + charSessInCharacters, charSessOutCharacters, + charSessConnectionId, charSessStartTime } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to all Character interfaces." + ::= { charGroups 1 } + + END + diff --git a/pandora_console/attachment/mibs/CISCO-C2900-MIB.mib b/pandora_console/attachment/mibs/CISCO-C2900-MIB.mib new file mode 100644 index 0000000000..ce0e4fafca --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-C2900-MIB.mib @@ -0,0 +1,2081 @@ +-- ***************************************************************** +-- Cisco C2900 MIB +-- +-- September, 1997 Tricia Shueh +-- +-- Copyright (c) 1996-1999, 2000, 2001, 2002 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** +-- + +CISCO-C2900-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Counter32, Gauge32, Integer32 + FROM SNMPv2-SMI + DateAndTime, TruthValue + FROM SNMPv2-TC + InterfaceIndex + FROM IF-MIB + ciscoMgmt + FROM CISCO-SMI + DisplayString, sysName + FROM RFC1213-MIB + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF; + +ciscoC2900MIB MODULE-IDENTITY + LAST-UPDATED "200205300000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + "Postal: Cisco Systems, Inc. + 170 West Tasman Drive + San Jose, CA 95134-1706 + USA + + Tel: +1 800 553-NETS + + E-mail: switchsnmp@cisco.com" + DESCRIPTION + "The MIB module for Catalyst 2900 enterprise specific information" + + REVISION "200205300000Z" + DESCRIPTION + "Added the c2900PortAddrSecureAgingTime, + c2900PortAddrSecureAgingType and + c2900PortAddrSecureAgingStatic + MIB objects to port entry and port group; + Also added c2900NotificationsGroup and + c2900PortStatsGroupRev1 object." + + REVISION "200107251345Z" + DESCRIPTION + "Added the c2900PortVoiceVlanId + MIB object to port group." + + REVISION "9909240000Z" + DESCRIPTION + "Modified the description for the c2900InfoSelfTestFailed object + so that the bits of the self-test bit array are explained." + + REVISION "9908240000Z" + DESCRIPTION + "Modified the description for the c2900InfoSelfTestFailed object + so that the bits of the self-test bit array are explained." + + REVISION "9905200000Z" + DESCRIPTION + "Added enumerated values to c2900ModuleType for: + ATM modules + VLAN-trunking 10/100 Ethernet modules + Gigabit Ethernet module + + Added one enumerated value to c2900PortAdminSpeed + to describe ATM 155.52 Mbps speed." + + REVISION "9806080000Z" + DESCRIPTION + "Added the c2900PortSpantreeFast MIB object to port group." + + + REVISION "9804300000Z" + DESCRIPTION + "Added the c2900PortNoMonitorDestinationPort MIB object + to remove a port from the monitored list. + + Added c2900Portdot1dBasePort to C2900PortEntry. + + Removed enumerated value securityDynamic(3) from the + MIB object c2900PortUsageApplication" + + ::= { ciscoMgmt 87 } + +c2900MIBObjects OBJECT IDENTIFIER ::= { ciscoC2900MIB 1 } + +-- MIB groups + +c2900SysInfo OBJECT IDENTIFIER ::= { c2900MIBObjects 1 } +c2900SysConfig OBJECT IDENTIFIER ::= { c2900MIBObjects 2 } +c2900Port OBJECT IDENTIFIER ::= { c2900MIBObjects 4 } +c2900BandwidthUsage OBJECT IDENTIFIER ::= { c2900MIBObjects 5 } + +-- +-- General System Information +-- + +c2900InfoBoardRevision OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Returns the revision number of the main board + on which the FastSwitch firmware resides." + ::= { c2900SysInfo 1 } + +c2900InfoPeakBuffersUsed OBJECT-TYPE + SYNTAX Gauge32 + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of 64-byte buffers used in the + main switch buffer pool." + ::= { c2900SysInfo 2} + +c2900InfoTotalBufferDepth OBJECT-TYPE + SYNTAX Gauge32 + UNITS "buffers" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It represents the total number of 64-byte buffers + in the Ethernet Controller." + ::= { c2900SysInfo 3} + +c2900InfoAddrCapacity OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system-wide maximum number of MAC addresses + supported in the address table, a primary + resource when forwarding frames through a bridge. + The address table is dynamically updated with new + learned addresses inserted and aged addresses removed. + The address capacity represented by this object includes + dynamic, secure, and static address types. + + To ensure optimal performance, the number of MAC addresses + in the bridged local area network to which this bridge is + connected should be less than the value of this object. + + The system administrator can refer to this object + for the number of MAC addresses suppored by this box." + ::= { c2900SysInfo 4 } + +c2900InfoRestrictedStaticAddrCapacity OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system-wide maximum number of static addresses + supported. A static address is one that has explicit + source port filtering information assigned. + + This number limits the static table's entries configured by user." + REFERENCE "IEEE 802.1D-1990: Section 6.7.2" + ::= { c2900SysInfo 5 } + +c2900InfoSelfTestFailed OBJECT-TYPE +-- +-- +-- SYNTAX BITS { +-- systemBoard(0), +-- cpuBuffer(1), +-- ram(2), +-- helpEngineAsic(3), +-- dataBuffer(4), +-- bufferTable(5), +-- switchEngineAsic(6), +-- ethernetFrontEnd(7) +-- } + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A bit array where the presence of a particular bit + indicates a failure of a specific Power On Self Test. + Bit 0 - System Board Failure + Bit 1 - CPU Buffer Failure + Bit 2 - Notify RAM Failure + Bit 3 - Supervisor ASIC Failure + Bit 4 - Data Buffer Failure + Bit 5 - Buffer Table Failure + Bit 6 - Satellite ASIC Failure + Bit 7 - Front End Failure" + ::= { c2900SysInfo 6 } + +c2900InfoUtilDisplay OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of utilization meter LEDs currently + lit on the front panel, if the value of + c2900InfoVisualIndicatorMode is selected as + utilization(4). More LEDs are lit + as more total bandwidth through the switch + is being utilized. + + The percentage of the utilization is calculated as follows: + the number of LEDs lit/the total number of LEDs. + + The total number of the LEDs is twenty four for c2900 switch. + + c2900InfoVisualIndicatorMode is utilization(4). If the value of + c2900InfoVisualIndicatorMode is not utilization(4), the value of + the object will be zero." + ::= { c2900SysInfo 7 } + +c2900InfoVisualIndicatorMode OBJECT-TYPE + SYNTAX INTEGER { + portStatus(1), + fullDuplex(2), + linkRate(3), + utilization(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object reflects what is currently selected + as the visual indication mode, selected by the + mode button. + + The portStatus(1) mode uses the visual LEDS + to indicate port link status. + + The fullDuplex(2) mode uses the visual LEDS + to indicate that a port is running with full + duplex or half duplex or no link status. + + The linkRate(3) mode uses the visual LEDS to + indicate the rate of operation on a port: + 100 MBPS or 10 MBPS or no link. + + The utilization(4) mode uses the visual LEDS to + indicate the utiliztion of the system as more total + bandwidth through the switch is being utilized, + more LED's are lit." + ::= { c2900SysInfo 8} + +c2900InfoRedunantPowerSupplyInfo OBJECT-TYPE + SYNTAX INTEGER { + absent(1), + connectedFunctional(2), + connectedNotFunctional(3), + functionalPrimaryFailed(4) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The switch allows a redundant power supply in addition + to its local power supply. Only one power source can be + supplying power to a unit. + + absent(1) :the redundant power supply is not connected + to the switch. + + connectedFunctional(2) : the redundant power supply is + connected to the switch and operational. + + connectedNotFunctional(3): the redundant power supply + is connected to the switch, but cannot supply + power to the system. + + functionalPrimaryFailed(4): the redundant power supply + is installed, powered on, and operational, + but a failure exists in the local power + supply system." + ::= { c2900SysInfo 9 } + +c2900InfoBoardIdentifier OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Returns the identifier of the main board + on which the FastSwitch firmware resides." + ::= { c2900SysInfo 10 } + +-- +-- General System Configurations +-- + +c2900ConfigAddressViolationAction OBJECT-TYPE + SYNTAX INTEGER { + doNothing(1), + disablePort(2), + sendNotify(3), + disablePortAndNotify(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "Indicates what action to take when an address violation + (an address mismatch or duplication) occurs on a + secure port. The default action is to do nothing. + + doNothing(1) : do nothing + disablePort(2) : disable port; the port can only be reenabled + by an explicit management action. + sendNotify(3) : generate address violation notification. + disablePortAndNotify(4): disable port and send notification. + + Default value: doNothing(1). + + This object is deprecated. A separate object + c2900PortAddressViolationAction is defined for each port." + ::= { c2900SysConfig 1 } + +c2900ConfigBroadcastStormAlarm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "When set to true(1), the switch will generate + a broadcastStorm notification upon detecting a port is + receiving broadcast packets at a rate higher than + or equal to the specified broadcast threshold. + When set to false(2), no such trap will be issued. + Default value: false(2). + + This object is deprecated. A separate object + c2900PortBroadcastStormAlarm is defined for each port." + ::= { c2900SysConfig 2 } + +-- +-- Module Information of c2900 switch. +-- + +c2900ModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF C2900ModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of module entries." + ::= { c2900MIBObjects 3 } + +c2900ModuleEntry OBJECT-TYPE + SYNTAX C2900ModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing status information about one module in + the c2900 chassis." + INDEX { c2900ModuleIndex } + ::= { c2900ModuleTable 1 } + +C2900ModuleEntry ::= + SEQUENCE { + c2900ModuleIndex + Integer32, + c2900ModuleStatus + INTEGER, + c2900ModuleType + INTEGER, + c2900ModuleHwVersion + DisplayString, + c2900ModuleSwVersion + DisplayString + } + +c2900ModuleIndex OBJECT-TYPE + SYNTAX Integer32(1..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Module index into c2900ModuleTable ." + ::= { c2900ModuleEntry 1 } + +c2900ModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + moduleNotInstalled(1), + moduleInTest(2), + moduleHealthy(3), + moduleFaulty(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The overall status of of the module." + ::= { c2900ModuleEntry 2 } + +c2900ModuleType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + empty(2), -- nothing installed + + -- the following modules are for WS-C2900 + wsx2914xl(3), -- 4 port 10/100 TX + wsx2922xl(4), -- 2 port 10/100 FX + atm155SMLRFiber (5), -- single mode long reach + atm155SMMRFiber (6), -- single mode medium reach + atm155MMFiber (7), -- multi mode fiber + atm155UTP (8), -- unshielded twisted pair + wsx2914xlv (9), -- VLAN-trunking 4 port 10/100 TX + wsx2922xlv (10), -- VLAN-trunking 2 port 10/100 FX + wsx2924xlv (11), -- VLAN-trunking 4 port 10/100 FX + wsx2931xl (12), -- 1 port Gigabit Ethernet + wsx2932xl (13) -- 1 port Gigabit Ethernet(Copper) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of module installed in malibu switch." + ::= { c2900ModuleEntry 3 } + +c2900ModuleHwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hardware version of the module. The format + of the version string x.y.z where x,y, and z + are hardware register field values." + ::= { c2900ModuleEntry 4 } + +c2900ModuleSwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The software version of the module." + ::= { c2900ModuleEntry 5 } + +-- +-- switch Port Table +-- + +c2900PortTable OBJECT-TYPE + SYNTAX SEQUENCE OF C2900PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port entries. The number of entries is + determined by the number of modules in the chassis + and the number of ports on each module." + ::= { c2900Port 1 } + +c2900PortEntry OBJECT-TYPE + SYNTAX C2900PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry containing information for a particular + switched port on a module installed. The entries + are not created or deleted by management commands." + INDEX { c2900PortModuleIndex, c2900PortIndex } + ::= { c2900PortTable 1 } + +C2900PortEntry ::= SEQUENCE { + c2900PortModuleIndex Integer32, + c2900PortIndex Integer32, + c2900PortUsageApplication INTEGER, + c2900PortGroupIndex Integer32, + c2900PortMayLearnAddress TruthValue, -- DEPRECATED OBJECT + c2900PortMayForwardFrames TruthValue, + c2900PortBufferCongestionControl TruthValue, -- DEPRECATED OBJECT + c2900PortBufferCongestionThreshholdPercent Integer32, + c2900PortFrameAge Integer32, + c2900PortAddrSecureMaxAddresses Integer32, + c2900PortAddrSecureCurrentAddresses Gauge32, + c2900PortAddrSecureAddrViolations Counter32, + c2900PortNumberOfLearnedAddresses Counter32, + c2900PortNumberOfDroppedAddresses Counter32, + c2900PortClearAddresses TruthValue, + c2900PortFloodUnknownMulticasts TruthValue, + c2900PortFloodUnknownUnicasts TruthValue, + c2900PortLinkbeatStatus INTEGER, + c2900PortBroadcastStormAction INTEGER, + c2900PortBroadcastRisingThreshold Gauge32, + c2900PortBroadcastFallingThreshold Gauge32, + c2900PortStatus INTEGER, + c2900PortTestResult TruthValue, + c2900PortVisualIndicator INTEGER, + c2900PortIfIndex InterfaceIndex, + c2900PortAddressViolationAction INTEGER, + c2900PortBroadcastStormAlarm TruthValue, + c2900PortMonitorDestinationPort Integer32, + c2900PortSwitchPortIndex Integer32, + c2900PortMonitoredPortMap OCTET STRING, + c2900PortDuplexState INTEGER, + c2900PortDuplexStatus INTEGER, + c2900PortAdminSpeed INTEGER, + c2900PortNoMonitorDestinationPort Integer32, + c2900Portdot1dBasePort Integer32, + c2900PortSpantreeFastStart INTEGER, + c2900PortVoiceVlanId INTEGER, + c2900PortAddrSecureAgingTime Integer32, + c2900PortAddrSecureAgingType INTEGER, + c2900PortAddrSecureAgingStatic TruthValue + } + +c2900PortModuleIndex OBJECT-TYPE + SYNTAX Integer32 (0..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index value that uniquely identifies the module + where this port is located. The value is determined + by the chassis slot number into which the module is + plugged." + ::= { c2900PortEntry 1 } + +c2900PortIndex OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An index value that uniquely identifies this port + within a module." + ::= { c2900PortEntry 2 } + +c2900PortUsageApplication OBJECT-TYPE + SYNTAX INTEGER { + standard(1), -- standard port usage + security(2), -- secured port usage + monitor(3), -- monitor usage + portGrouping(4), -- fast EtherChannel usage + network(5), -- network port usage + networkGroup(6), -- network port group usage + portGroupDest(7), -- destination addr FEC + protected(8) -- protected port usage + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates how the port is to be used. + The variable usage applications are shown above. + These applications are defined such that they + are mutually exclusive. In other words, a port + using the security(2) application cannot also + use the monitor(3) application at the same time. + + The default usage is standard(1), or no special + behavior (the port behaves as normal + switched port). + + The security(2) usage adds addressing security + to the port, whereby all learned addresses are + secure address. + + The monitor(3) usage provides network diagnosis + by reflecting traffic on other ports to this port. + + The portGrouping(4) application treats this and other ports in + the same group as one(inter-switch) connection for more + bandwidth potential. When the c2900PortUsageApplication is + portGrouping, the c2900PortGroupIndex is set to the index + value of the port group. The source address of a received frame + is used to determine on which port within the group the frame + should be transmitted. + + The network(5) usage saves address table space when the port + is used as the link to a large network with many MAC addresses + by disabling address learning on the port and allowing + unknown unicasts packets received on other ports of the vlan + the port associated with to be forwarded only to the port. + + The networkGroup(6) usage treates this and other + ports in the same group as a network port group. All ports in + port are network ports in the sense that address learning is + disabled on them and unknown unicast packets received on other + ports of the vlan are forwarded to the group. + + The portGroupDest(7) application treats this and other ports in + the same group as one(inter-switch) connection for more + bandwidth potential. When the c2900PortUsageApplication is + portGroupDest, the c2900PortGroupIndex is set to the index + value of the port group. The destination address of a received + frame is used to determine on which port within the group the + frame should be transmitted. + + The protected(8) application does not forward any traffic to other + protected ports. It does not forward all kinds of unicast, multicast + and broadcast traffic to any other protected port. The protected + ports, however, forward traffic normally to non-protected ports and + vice versa." + DEFVAL { standard } + ::= { c2900PortEntry 3} + +c2900PortGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is meaningful only when the + corresponding c2900PortUsageApplication is portGrouping. + Ports assigned with the same value of c2900PortGroupIndex + belong to the same connection channel." + ::= { c2900PortEntry 4} + +c2900PortMayLearnAddress OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object reflects an internal state of the port + with regard to its ability to learn new addresses. + Certain port configurations such as learning time + limit, security usage, etc., and some Spanning + Tree Protocol states can temporarily prohibit the + port from learning. This object is true(1) if the + port is allowed to learn. It is false(2) otherwise. + + Setting this object to true(1) will fail, + if the port is not in normal state. + + This object is deprecated." + DEFVAL { true } + ::= { c2900PortEntry 5} + +c2900PortMayForwardFrames OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object reflects an internal state of the port + with regard to its ability to forward frames. + A port sometimes stops forwarding frames when it + is blocked by the Spanning Tree Protocol, or + while it is undergoing temporary load balancing + as part of the port grouping usage. + This object is true(1) if the port is allowed to + forward frames. It is false(2) otherwise. + + Setting this object to true(1) will fail, + if the port is in the middle of being blocked by the Spanning Tree + Protocol, or while it is undergoing temporary load balancing + as part of the port grouping usage. + + This object is only supported for static VLAN access ports." + DEFVAL { true } + ::= { c2900PortEntry 6} + +c2900PortBufferCongestionControl OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Seting this object to true(1) allows the switch + to run its buffer congestion control algorithm on the + port. Setting the object to false(2) disallows + such control. The buffer congestion control algorithm + is summarized in the description of + the c2900PortBufferCongestionThresholdPercent below. + + This object is deprecated" + ::= { c2900PortEntry 7} + +c2900PortBufferCongestionThreshholdPercent OBJECT-TYPE + SYNTAX Integer32 (1..99) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port buffer congestion threshold provides an early + warning to the switch that the port is about to + exhaust all its guaranteed buffers, leading to congestion. + This threshold is expressed as a percentage of the port's + total guaranteed buffer depth. Once this threshold has + been crossed, the switch begins colliding with frames + received on the port for a fixed period of time. + After this time has expired, the switch determines + whether the port's buffer congestion has been alleviated. + If this situation has not changed, the switch resumes + this congestion control algorithm on the port." + ::= { c2900PortEntry 8} + +c2900PortFrameAge OBJECT-TYPE + SYNTAX Integer32 (50..4000) + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The aging interval in milliseconds after + which old frames queued for transmission on this + port are discarded." + REFERENCE "Section 4.2 IEEE802.1D-1993" + DEFVAL { 1000 } + ::= { c2900PortEntry 9} + +c2900PortAddrSecureMaxAddresses OBJECT-TYPE + SYNTAX Integer32 (1..132) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of secure addresses that can + be learned on this port when it is a secure port. + This number should be always higher than + c2900PortAddrSecureCurrentAddresses" + ::= { c2900PortEntry 10} + +c2900PortAddrSecureCurrentAddresses OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of statically assigned + unicast addresses on the port." + ::= { c2900PortEntry 11} + +c2900PortAddrSecureAddrViolations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times a source address was + seen on this port which duplicates a secured + address configured on another port, + plus the number of times a source address was + seen on this port which does not match any + addresses secured for the port." + ::= { c2900PortEntry 12} + +c2900PortNumberOfLearnedAddresses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of dynamically learned + addresses on the port." + ::= { c2900PortEntry 13} + +c2900PortNumberOfDroppedAddresses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an address could not be learned + or assigned for the port because its address table + was full at one time." + ::= { c2900PortEntry 14} + +c2900PortClearAddresses OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set to true(1) to delete all learned and assigned + dynamic, static and secure unicast addresses the + port currently has. Setting the object to false(2) + has no effect. This object always returns false(2) + when read." + ::= { c2900PortEntry 15} + +c2900PortFloodUnknownMulticasts OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set to true(1) to allow forwarding to this + port frames addressed to multicast addresses + that have not been configured for the port. + Set to false(2) to filter and discard such frames." + DEFVAL { true } + ::= { c2900PortEntry 16} + +c2900PortFloodUnknownUnicasts OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object controls the forwarding of unknown + unicast frames to this port. When set to true(1), + the switch will, upon receiving a frame with an + unknown unicast destination address from + another port, transmit the frame to this port. + When set to false(2), switch will filter + and not transmit said frames to this port. + Default value: false(2) for ports using + the security or monitor application; + true(1) for all other usage applications." + ::= { c2900PortEntry 17} + +c2900PortLinkbeatStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + linkbeat(2), + nolinkbeat(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object depends on the physical layer in use + and indicates the current port linkbeat status: + if the physical link between two devices is + properly connected or not. + If the value is linkbeat(1), there is linkbeat. + If the value is nolinkbeat(2), there is no linkbeat. + If the value is unknown(3), the information is not + available." + ::= { c2900PortEntry 18} + +c2900PortBroadcastStormAction OBJECT-TYPE + SYNTAX INTEGER { stopBroadcastForwarding(1), + forwardBroadcast(2), + disablePort(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates what action to take when the broadcast + rising threshold for a port is reached. + The default action is to forwardBroadcast(2) as usual + for all broadcast frames received from the port. The + other action is to stopBroadcastForwarding(1) frames + until the broadcast reception rate falls to + or below the falling threshold. + The port can also be shutdown in the event of a + broadcast storm with the action disablePort(3)." + + DEFVAL { forwardBroadcast } + ::= { c2900PortEntry 19} + +c2900PortBroadcastRisingThreshold OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The broadcast rising threshold is measured in the number + of broadcast frames received on a port in a second. + + When the number of broadcast frames received per + second on this port crosses this threshold, + the appropriate action as specified by the object + c2900PortBroadcastStormAction will take place. + See the description of c2900PortBroadcastStormAction." + DEFVAL { 500 } + ::= { c2900PortEntry 20} + +c2900PortBroadcastFallingThreshold OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The broadcast falling threshold is measured in number of + broadcast frames received on a port in a second. + + When the falling threshold is crossed and the + c2900PortBroadcastStormAction was stopBroadcastForwarding(1) + then broadcast forwarding will be re-enabled on the port. + For the other values of c2900PortBroadcastStormAction, + crossing the falling threshold has no affect." + DEFVAL { 250 } + ::= { c2900PortEntry 21} + +c2900PortStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + blocking(3), + listening(4), + learning(5), + preforwarding(6), + forwarding(7), + secureforwarding(8), + suspended(9), + broken(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port's current state as defined by application + of the Spanning Tree Protocol. This state controls + what action a port takes on reception of a frame. + If the switch has detected a port that is + malfunctioning it will place that port into the + broken(10) state. For ports which are + disabled(see dot1dStpPortEnable), this object will + have a value of disabled(2). + Since the switch implements three + additional states which are not part of IEEE Standard, + these additional states are possible values for + c2900PortStaus. The additional states are preforwarding(6), + secureforwarding(8), and suspended(9). Note: except + for these additional states, this object is the same + as the dot1dStpPortState object. + Default value: blocking(2). + + This object is only supported for static VLAN access ports." + REFERENCE "Section 4.5.5.2 IEEE802.1D-1990" + DEFVAL { blocking } + ::= {c2900PortEntry 22} + +c2900PortTestResult OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates if the port passed power on self test or not. + If the value of this object is true(1), the port passed test. + If the value of this object is false(2), the port failed test." + ::= { c2900PortEntry 23 } + +c2900PortVisualIndicator OBJECT-TYPE + SYNTAX INTEGER { + notused(1), + black(2), + amber(3), + green(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is used to indicate the current color of + a LED. If a LED is flashing, the value of this object will + represent the color of the LED at that instant in time. + The following conventions indicate port status: + Link healthy returns green(4) + Link activity usually green(4), but may return black(2). + Link faulty alternating green(4)/amber(3) + Port disabled returns amber(3)" + ::= { c2900PortEntry 24 } + +c2900PortIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the instance of the ifIndex object, + defined in MIB-II, for the interface corresponding + to this port." + ::= { c2900PortEntry 25 } + +c2900PortAddressViolationAction OBJECT-TYPE + SYNTAX INTEGER { + doNothing(1), + disablePort(2), + sendNotify(3), + disablePortAndNotify(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates what action to take when an address violation + (an address mismatch or duplication) occurs on a + secure port. The default action is to do nothing. + + doNothing(1) : do nothing + disablePort(2) : disable port; the port can only be reenabled + by an explicit management action. + sendNotify(3) : generate address violation notification. + disablePortAndNotify(4): disable port and send notification." + DEFVAL { doNothing } + ::= { c2900PortEntry 26 } + +c2900PortBroadcastStormAlarm OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When set to true(1), the switch will generate + a broadcastStorm notification upon detecting a port is + receiving broadcast packets at a rate higher than + or equal to the threshold specified by + c2900PortBroadcastRisingThreshold. + When set to false(2), no such trap will be issued. + Default value: false(2). + c2900PortBroadcastStormAlarm is defined for each port." + DEFVAL { false } + ::= { c2900PortEntry 27 } + +c2900PortMonitorDestinationPort OBJECT-TYPE + SYNTAX Integer32 (0..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch Port (c2900PortSwitchPortIndex) index value of the port + that is to be monitored by this port. A value of zero can't be + used to do set, it is used to return when this object is read. + + To remove a port from the monitored list use the object + c2900PortNoMonitorDestinationPort." + ::= { c2900PortEntry 28 } + +c2900PortSwitchPortIndex OBJECT-TYPE + SYNTAX Integer32 (1..64) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Switch port index of a port is a value that uniquely + identifies the port within a switch. This is obtained + from the port index (c2900PortIndex) and the module + index (c2900PortModuleIndex)." + ::= { c2900PortEntry 29 } + +c2900PortMonitoredPortMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates which ports are actually being monitored. + The octet string contains one bit per port. Each bit + within the octet string represents one port of the device. + The ordering of ports represented within the octet string + is in the same order as in the RFC 1493 dot1dStaticAllowedToGoTo + in the dot1dStaticTable. + + The bit value interpretation is as follows: + 1 = being monitored + 0 = not being monitored" + ::= { c2900PortEntry 30 } + +c2900PortDuplexState OBJECT-TYPE + SYNTAX INTEGER { + fullduplex(1), + halfduplex(2), + autoNegotiate(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set to fullduplex(1) to operate in full duplex mode, port + will allow simultaneous transmit and receive which can + double its bandwidth. + + Set to halfduplex(2) to operate in half duplex mode. + + Set to autoNegotiate(3) to allow the switch to negoti- + ate with the other end of the connection. + + The status of duplex mode on a port is available with + c2900PortDuplexStatus object." + DEFVAL { autoNegotiate } + ::= { c2900PortEntry 31 } + +c2900PortDuplexStatus OBJECT-TYPE + SYNTAX INTEGER { + fullduplex(1), + halfduplex(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of duplex mode on this port. + + When linkbeat is not present, halfduplex is always + reported. + + When linkbeat is present, the result of full duplex + auto-negotiation is reported if c2900PortDuplexState is + set to auto-negotiate, otherwise it reports fullduplex + if c2900PortDuplexState is set to fullduplex or + halfduplex if c2900PortDuplexState is set to + halfduplex." + ::= { c2900PortEntry 32 } + +c2900PortAdminSpeed OBJECT-TYPE + SYNTAX INTEGER { + autoDetect(1), + s10000000(10000000), -- 10 Mbps + s100000000(100000000), -- 100 Mbps + s155520000(155520000) -- ATM 155.52 Mbps + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The object controls the speed of the port. + The current operational speed of the port can be + determined from ifSpeed." + DEFVAL { autoDetect } + ::= { c2900PortEntry 33 } + +c2900PortNoMonitorDestinationPort OBJECT-TYPE + SYNTAX Integer32 (0..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Switch Port (c2900PortSwitchPortIndex) index value of the port + that is to be removed from the monitored list. A value of zero + can't be used to do set, it is used to return when this object + is read. + + To add a port to the monitored list use the object + c2900PortMonitorDestinationPort." + ::= { c2900PortEntry 34 } + +c2900Portdot1dBasePort OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the dot1dBasePort associated with this port." + ::= { c2900PortEntry 35} + + c2900PortSpantreeFastStart OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether the port is operating in spantree + fast start mode. A port with fast start enabled is + immediately put in spanning tree forwarding state on + link up, rather than starting in blocking state which + is the normal operation. This is useful when the port + is known to be connected to a single station which + has problems waiting for the normal spanning tree + operation to put the port in forwarding state." + DEFVAL { disabled } + ::= { c2900PortEntry 36 } + +c2900PortVoiceVlanId OBJECT-TYPE + SYNTAX INTEGER ( 0|1..1000|4095|4096 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Voice Virtual Vlan ID (VVID) to which this + port belongs to. + If the VVID is not supported on the port, this MIB + object will not be configurable and will return + 4096. + + Setting this MIB object to 4096, the CDP packets + transmitting through this port would not include + Appliance VLAN-ID TLV. + + Setting this MIB object to 4095, the CDP packets + transmitting through this port would contain + Appliance VLAN-ID TLV with value of 4095 - VoIP + and related packets are expected to be sent and + received untagged without an 802.1p priority. + + Setting this MIB object to 0, the CDP packets + transmitting through this port would contain + Appliance VLAN-ID TLV with value of 0 - VoIP + and related packets are expected to be sent and + received with VLAN-id=0 and an 802.1p priority. + + Setting this MIB object to N (1..1000), the CDP + packets transmitting through this port would + contain Appliance VLAN-ID TLV with N - VoIP and + related packets are expected to be sent and received + with VLAN-id=N and an 802.1p priority." + ::= { c2900PortEntry 37 } + +c2900PortAddrSecureAgingTime OBJECT-TYPE + SYNTAX Integer32 (0..1440) + UNITS "minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The aging interval in minutes for each secure address + entry on a given port. Depending on the type of aging + the secure address will age out after the expiration + of the aging time and will be removed from the + secure address list. + + Any change in the value of this object will restart + the aging for all the secure addresses on this port. + + If the value of this object is 0 for a given + port, the aging mechanism is disabled for this + port." + DEFVAL { 0 } + ::= { c2900PortEntry 38 } + +c2900PortAddrSecureAgingType OBJECT-TYPE + SYNTAX INTEGER { absolute(1), inactivity(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If the value of this object on a given port is + + absolute - all the secure addresses on this + port will age out exactly after the aging + time configured for this port. + + inactivity - the secure addresses on this port + will age out only if there is no data traffic + from the given secure source address for a + time period specified by aging time. + + Any change in the value of this object will restart + the aging for all the secure addresses on this port. + + The value of this object is not effective when the + value of c2900PortAddrSecureAgingTime is 0." + DEFVAL { absolute } + ::= { c2900PortEntry 39 } + +c2900PortAddrSecureAgingStatic OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set to true(1) to enable aging for statically + configured secure addresses on one port. Disable + the aging for statically configured secure + addresses if set to false(2). + + Any change in the value of this object will restart + the aging for all the configured secure addresses on + this port. + + The value of this object is not effective when the + value of c2900PortAddrSecureAgingTime is 0." + DEFVAL { false } + ::= { c2900PortEntry 40 } + +-- +-- The switch Port Statistics Table +-- + +c2900PortStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF C2900PortStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port entries. The number of entries is + determined by the number of modules in the chassis + and the number of ports on each module." + ::= { c2900Port 2 } + +c2900PortStatsEntry OBJECT-TYPE + SYNTAX C2900PortStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry containing information for a particular + switched port on a module installed. The entry + cannot be created or deleted." + INDEX { c2900PortModuleIndex, c2900PortIndex } + ::= { c2900PortStatsTable 1 } + +C2900PortStatsEntry ::= SEQUENCE { + c2900PortRxNoBwFrames Counter32, + c2900PortRxNoBufferFrames Counter32, + c2900PortRxNoDestUniFrames Counter32, + c2900PortRxNoDestMultiFrames Counter32, + c2900PortRxSuppressBcastFrames Counter32, -- DEPRECATED OBJECT + c2900PortRxFcsErrFrames Counter32, + c2900PortCollFragFrames Counter32, + c2900PortTxMulticastFrames Counter32, + c2900PortTxBroadcastFrames Counter32 +} + +c2900PortRxNoBwFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received on this port that were discarded + due to a lack of bandwidth resources in the Catalyst Switch + forwarding engine." + ::= { c2900PortStatsEntry 1 } + +c2900PortRxNoBufferFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames received that were discarded due + to a lack of frame buffer resources in the Catalyst Switch + forwarding engine." + ::= { c2900PortStatsEntry 2 } + +c2900PortRxNoDestUniFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of unicast frames received that were discarded, + because the forwarding rules stipulate that they are + not be forwarded." + ::= { c2900PortStatsEntry 3 } + +c2900PortRxNoDestMultiFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of multicast frames received that were discarded, + because they have not been configured for the port." + ::= { c2900PortStatsEntry 4 } + +c2900PortRxSuppressBcastFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A count of broadcast frames received that were discarded + because of the threshold-based broadcast suppression. + + This object is deprecated, because there is no way that the + Malibu system to give the brodcast_supress frames" + ::= { c2900PortStatsEntry 5 } + +c2900PortRxFcsErrFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of frames received with FCS errors. + This total includes all frames received with an FCS + error and an integral number of bytes. + Unlike RFC1650's dot3StatsFCSErrors, + this object does not include frames which are less + than the minimum packet size (such as collision fragments)." + ::= { c2900PortStatsEntry 6 } + +c2900PortCollFragFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of frames whose lengths are less than + 64 and have bad FCS values. + The preamble and sfd fields are excluded from the byte + count of a frame while the FCS field is included." + ::= { c2900PortStatsEntry 7 } + +c2900PortTxMulticastFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames that are successfully transmitted and + are directed to a multicast address. + Unlike RFC1573's ifOutMulticastPkts, this object does not + include those that were discarded or not sent." + ::= { c2900PortStatsEntry 8 } + +c2900PortTxBroadcastFrames OBJECT-TYPE + SYNTAX Counter32 + UNITS "frames" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of frames that are successfully transmitted and + are directed to the broadcast address. + Unlike RFC1573's ifOutBroadcastPkts, this object does + not include those that were discarded or not sent." + ::= { c2900PortStatsEntry 9 } + +-- +-- Bandwidth Usage Information +-- + +c2900BandwidthUsageCurrent OBJECT-TYPE + SYNTAX Gauge32 + UNITS "megabits per second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current bandwidth consumed. The measurement unit is + in megabits per second (1,000,000 bits/second). + This value gives a reasonable estimate of the amount of + traffic currently flowing through the switch. + + It is calculated as follows: + + Octets*8 + Frames*(96 + 64) + --------------------------- + Measurement Interval * 1,000,000 * 2 + + Where: + Measurement Interval is the amount of time over which + the Octets and Frames were collected, in seconds. + + Measurement Interval is always one second in current + implementation. + + Octets is the total number of octets transmitted + or received by all network interfaces, excluding + framing data but including FCS. This includes octets + in frames which were partially transmitted or + received (due to collisions, for example). + + Frames is the total number of frames transmitted + or received by all network interfaces, including + frames with errors. + + The number of frames is multiplied by 96 plus 64 in + order to estimate the delay between each frame for + Ethernet's IPG and preamble/SFD. + + The '2' in the divisor makes this a forwarding bandwidth + counter. A frame received on one interface is typically + forwarded out another interface. In order to avoid double- + counting this frame's bandwidth, once on the receiving + interface and once on the transmitting interface, the + total bandwidth is divided by two. + Since multicast and broadcast frames can be sent to multiple + ports, the above is at best a lower bound." + ::= { c2900BandwidthUsage 1 } + +c2900BandwidthUsageMaxPeakEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of entries c2900BandwidthUsagePeakTable + can have." + ::= { c2900BandwidthUsage 2 } + +c2900BandwidthUsagePeakInterval OBJECT-TYPE + SYNTAX INTEGER { onehour(1),threehours(3),sixhours(6), + twelvehours(12),oneday(24),twodays(48), + threedays(72),fourdays(96),fivedays(120), + sixdays(144),oneweek(168) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object specifies the length of time + which forms a peak bandwidth measurement interval. + + A write to this object with any new value + restarts the peak bandwidth recording interval used + by bandwidthUsagePeakTable. + + In other words, the bandwidthUsagePeakTable + will be cleared and entry number one will record + the peak with a new measurement interval." + DEFVAL { oneday } + ::= { c2900BandwidthUsage 3 } + +c2900BandwidthUsagePeakRestart OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Set to true(1) to clear the c2900BandwidthUsagePeakTable + and restart the peak bandwidth recording. + No action will be taken if this object is set + to false(2). This object returns false(2) + when read." + ::= { c2900BandwidthUsage 4 } + +c2900BandwidthUsageCurrentPeakEntry OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value identifying an instance of the + c2900BandwidthUsagePeakIndex where the + peak bandwidth estimation is most recent." + ::= { c2900BandwidthUsage 5 } + +c2900BandwidthUsagePeakTable OBJECT-TYPE + SYNTAX SEQUENCE OF C2900BandwidthUsagePeakEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of entries containing peak bandwidth usages in + a number of recording interval. + + After being cleared, entries are added to the + bandwidthUsagePeakTable with ascending values of + c2900BandwidthUsagePeakIndex starting at 1. When the number of + entries reaches c2900BandwidthUsageMaxPeakEntries, + each new recording interval is assigned the value of + c2900BandwidthUsagePeakIndex corresponding to the oldest entry, + overwriting the previous contents of that entry." + ::= { c2900BandwidthUsage 6 } + +c2900BandwidthUsagePeakEntry OBJECT-TYPE + SYNTAX C2900BandwidthUsagePeakEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about peak bandwidth usage in a recording interval." + INDEX { c2900BandwidthUsagePeakIndex } + ::= { c2900BandwidthUsagePeakTable 1 } + +C2900BandwidthUsagePeakEntry ::= + SEQUENCE { + c2900BandwidthUsagePeakIndex + Integer32, + c2900BandwidthUsageStartTime + DateAndTime, + c2900BandwidthUsagePeak + Gauge32, + c2900BandwidthUsagePeakTime + DateAndTime + } + +c2900BandwidthUsagePeakIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number from one to c2900BandwidthUsageMaxPeakEntries + identifying a particular c2900BandwithUsagePeakEntry." + ::= { c2900BandwidthUsagePeakEntry 1 } + +c2900BandwidthUsageStartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time that marks the start of this recording interval." + ::= { c2900BandwidthUsagePeakEntry 2 } + +c2900BandwidthUsagePeak OBJECT-TYPE + SYNTAX Gauge32 + UNITS "megabits per second" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum bandwidth usage of any measurement interval + within this recording interval. + + This value is an estimate of the highest amount of + traffic flowing through the switch during this + recording interval. + + It is calculated as follows: + + Octets*8 + Frames*(96 + 64) + --------------------------- + Measurement Interval * 1,000,000 * 2 + + Where: + Measurement Interval is the amount of time over which + the Octets and Frames were collected, in seconds. + + Measurement Interval is always one second in c2900's + implementation. + + Octets is the total number of octets transmitted + or received by all network interfaces, excluding + framing data but including FCS. This includes octets + in frames which were partially transmitted or + received (due to collisions, for example). + + Frames is the total number of frames transmitted + or received by all network interfaces, including + frames with errors. + + The number of frames is multiplied by 96 plus 64 in + order to estimate the delay between each frame for + Ethernet's IPG and preamble/SFD. + + The '2' in the divisor makes this a forwarding bandwidth + counter. A frame received on one interface is typically + forwarded out another interface. In order to avoid double- + counting this frame's bandwidth, once on the receiving + interface and once on the transmitting interface, the + total bandwidth is divided by two. + Since multicast and broadcast frames can be sent to multiple + ports, the above is at best a lower bound." + ::= { c2900BandwidthUsagePeakEntry 3 } + +c2900BandwidthUsagePeakTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start time of the measurement interval." + ::= { c2900BandwidthUsagePeakEntry 4 } + +-- +-- C a t a l y s t N O T I F I C A T I O N S +-- + +c2900MibNotifications OBJECT IDENTIFIER ::= { ciscoC2900MIB 2 } +c2900MibNotificationsPrefix + OBJECT IDENTIFIER ::= { c2900MibNotifications 0 } + +c2900AddressViolation NOTIFICATION-TYPE + OBJECTS {c2900PortIfIndex} + STATUS current + DESCRIPTION + "The addressViolation notification is generated + when an address violation is detected + on a secured port. The generation of the + addressViolation notification can be enabled + or suppressed using the object + c2900ConfigAddressViolationAction. + The particular secured port is indicated by + the value of c2900PortIfIndex." + ::= { c2900MibNotificationsPrefix 1 } + +c2900BroadcastStorm NOTIFICATION-TYPE + OBJECTS {c2900PortBroadcastRisingThreshold} + STATUS current + DESCRIPTION + "The broadcastStorm notification is generated + upon detecting a port is receiving + broadcast packets at a rate crossing + the specified broadcast threshold. + This trap is only for the rising threshold. + The particular port is indicated by the values of + c2900PortModuleIndex and c2900PortIndex, and the + value of the threshold is given by + c2900PortBroadcastRisingThreshold." + ::= { c2900MibNotificationsPrefix 2 } + +c2900RpsFailed NOTIFICATION-TYPE + OBJECTS {sysName} + STATUS current + DESCRIPTION + "A redundant power system (RPS) is connected to the + switch. The RpsFailed notification is generated + upon detecting RPS failure." + ::= { c2900MibNotificationsPrefix 3 } + +-- +-- C o n f o r m a n c e +-- + +-- conformance information + +c2900MIBConformance OBJECT IDENTIFIER ::= { ciscoC2900MIB 3 } +c2900MIBCompliances OBJECT IDENTIFIER ::= { c2900MIBConformance 1 } +c2900MIBGroups OBJECT IDENTIFIER ::= { c2900MIBConformance 2 } + +-- compliance statements + +c2900MIBCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for all c2900 switch." + MODULE -- this module + MANDATORY-GROUPS { c2900SysInfoGroup, + c2900SysConfigGroup, + c2900PortGroup, + c2900BandwidthUsageGroup + } + ::= { c2900MIBCompliances 1 } + +c2900MIBComplianceSA3 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for all c2900 switch." + MODULE -- this module + MANDATORY-GROUPS { c2900SysInfoGroup, + c2900ModuleGroup, + c2900BandwidthUsageGroup, + c2900PortGroupSA3, + c2900PortStatsGroupSA3 + } + ::= { c2900MIBCompliances 3 } + +c2900MIBComplianceSA5 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for all c2900 switch." + MODULE -- this module + MANDATORY-GROUPS { c2900SysInfoGroup, + c2900ModuleGroup, + c2900BandwidthUsageGroup, + c2900PortGroupSA5 + } + ::= { c2900MIBCompliances 2 } + +c2900MIBComplianceSA7 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for all c2900 switch." + MODULE -- this module + MANDATORY-GROUPS { c2900SysInfoGroup, + c2900ModuleGroup, + c2900BandwidthUsageGroup, + c2900PortGroupSA7 + } + ::= { c2900MIBCompliances 4 } + + +c2900MIBComplianceWC2 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for all c2900 switch." + MODULE -- this module + MANDATORY-GROUPS { c2900SysInfoGroup, + c2900ModuleGroup, + c2900BandwidthUsageGroup, + c2900PortGroupWC2 + } + ::= { c2900MIBCompliances 5 } + +c2900MIBComplianceWC4 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for all c2900 switch." + MODULE -- this module + MANDATORY-GROUPS { c2900SysInfoGroup, + c2900ModuleGroup, + c2900BandwidthUsageGroup, + c2900PortGroupWC4, + c2900NotificationsGroup + } + GROUP c2900PortStatsGroupRev1 + DESCRIPTION + "This group is optional." + + ::= { c2900MIBCompliances 6 } + +-- Units of Conformance + +c2900SysInfoGroup OBJECT-GROUP + OBJECTS { + c2900InfoBoardRevision, + c2900InfoPeakBuffersUsed, + c2900InfoTotalBufferDepth, + c2900InfoAddrCapacity, + c2900InfoRestrictedStaticAddrCapacity, + c2900InfoSelfTestFailed, + c2900InfoUtilDisplay, + c2900InfoVisualIndicatorMode, + c2900InfoRedunantPowerSupplyInfo, + c2900InfoBoardIdentifier + } + STATUS current + DESCRIPTION + "The collection of objects which are used to provide + the general switch information." + ::= { c2900MIBGroups 1 } + +c2900SysConfigGroup OBJECT-GROUP + OBJECTS { + c2900ConfigAddressViolationAction, -- DEPRECATED OBJECT + c2900ConfigBroadcastStormAlarm -- DEPRECATED OBJECT + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to configure + the switch." + ::= { c2900MIBGroups 2 } + +c2900ModuleGroup OBJECT-GROUP + OBJECTS { + c2900ModuleStatus, + c2900ModuleType, + c2900ModuleHwVersion, + c2900ModuleSwVersion + } + STATUS current + DESCRIPTION + "The object is used to provide the module status." + ::= { c2900MIBGroups 3 } + +c2900PortGroup OBJECT-GROUP + OBJECTS { + c2900PortUsageApplication, + c2900PortGroupIndex, + c2900PortMayLearnAddress, -- DEPRECATED OBJECT + c2900PortMayForwardFrames, + c2900PortBufferCongestionControl, -- DEPRECATED OBJECT + c2900PortBufferCongestionThreshholdPercent, + c2900PortFrameAge, + c2900PortAddrSecureMaxAddresses, + c2900PortAddrSecureCurrentAddresses, + c2900PortAddrSecureAddrViolations, + c2900PortNumberOfLearnedAddresses, + c2900PortNumberOfDroppedAddresses, + c2900PortClearAddresses, + c2900PortFloodUnknownMulticasts, + c2900PortFloodUnknownUnicasts, + c2900PortLinkbeatStatus, + c2900PortBroadcastStormAction, + c2900PortBroadcastRisingThreshold, + c2900PortBroadcastFallingThreshold, + c2900PortStatus, + c2900PortTestResult, + c2900PortVisualIndicator, + c2900PortIfIndex, + c2900PortAddressViolationAction, + c2900PortBroadcastStormAlarm, + c2900PortMonitorDestinationPort, + c2900PortSwitchPortIndex, + c2900PortMonitoredPortMap, + c2900PortDuplexState, + c2900PortDuplexStatus, + c2900PortAdminSpeed, + c2900PortNoMonitorDestinationPort + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port status and configuration." + ::= { c2900MIBGroups 4 } + +c2900PortStatsGroup OBJECT-GROUP + OBJECTS { + c2900PortRxNoBwFrames, + c2900PortRxNoBufferFrames, + c2900PortRxNoDestUniFrames, + c2900PortRxNoDestMultiFrames, + c2900PortRxSuppressBcastFrames, -- DEPRECATED OBJECT + c2900PortRxFcsErrFrames, + c2900PortCollFragFrames, + c2900PortTxMulticastFrames, + c2900PortTxBroadcastFrames + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port stats." + ::= { c2900MIBGroups 5 } + +c2900BandwidthUsageGroup OBJECT-GROUP + OBJECTS { + c2900BandwidthUsageCurrent, + c2900BandwidthUsageMaxPeakEntries, + c2900BandwidthUsagePeakInterval, + c2900BandwidthUsagePeakRestart, + c2900BandwidthUsagePeakIndex, + c2900BandwidthUsageStartTime, + c2900BandwidthUsagePeak, + c2900BandwidthUsagePeakTime, + c2900BandwidthUsageCurrentPeakEntry + } + STATUS current + DESCRIPTION + "The collection of objects which are used to + provide the bandwidth information." + ::= { c2900MIBGroups 6 } + +c2900PortGroupSA3 OBJECT-GROUP + OBJECTS { + c2900PortUsageApplication, + c2900PortGroupIndex, + c2900PortMayLearnAddress, + c2900PortMayForwardFrames, + c2900PortBufferCongestionThreshholdPercent, + c2900PortFrameAge, + c2900PortAddrSecureMaxAddresses, + c2900PortAddrSecureCurrentAddresses, + c2900PortAddrSecureAddrViolations, + c2900PortNumberOfLearnedAddresses, + c2900PortNumberOfDroppedAddresses, + c2900PortClearAddresses, + c2900PortFloodUnknownMulticasts, + c2900PortFloodUnknownUnicasts, + c2900PortLinkbeatStatus, + c2900PortBroadcastStormAction, + c2900PortBroadcastRisingThreshold, + c2900PortBroadcastFallingThreshold, + c2900PortStatus, + c2900PortTestResult, + c2900PortVisualIndicator, + c2900PortIfIndex, + c2900PortAddressViolationAction, + c2900PortBroadcastStormAlarm, + c2900PortMonitorDestinationPort, + c2900PortSwitchPortIndex, + c2900PortMonitoredPortMap, + c2900PortDuplexState, + c2900PortDuplexStatus, + c2900PortAdminSpeed, + c2900PortNoMonitorDestinationPort + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port status and configuration." + ::= { c2900MIBGroups 7 } + +c2900PortStatsGroupSA3 OBJECT-GROUP + OBJECTS { + c2900PortRxNoBwFrames, + c2900PortRxNoBufferFrames, + c2900PortRxNoDestUniFrames, + c2900PortRxNoDestMultiFrames, + c2900PortRxFcsErrFrames, + c2900PortCollFragFrames, + c2900PortTxMulticastFrames, + c2900PortTxBroadcastFrames + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port stats." + ::= { c2900MIBGroups 8 } + +c2900PortGroupSA5 OBJECT-GROUP + OBJECTS { + c2900PortUsageApplication, + c2900PortGroupIndex, + c2900PortMayForwardFrames, + c2900PortBufferCongestionThreshholdPercent, + c2900PortFrameAge, + c2900PortAddrSecureMaxAddresses, + c2900PortAddrSecureCurrentAddresses, + c2900PortAddrSecureAddrViolations, + c2900PortNumberOfLearnedAddresses, + c2900PortNumberOfDroppedAddresses, + c2900PortClearAddresses, + c2900PortFloodUnknownMulticasts, + c2900PortFloodUnknownUnicasts, + c2900PortLinkbeatStatus, + c2900PortBroadcastStormAction, + c2900PortBroadcastRisingThreshold, + c2900PortBroadcastFallingThreshold, + c2900PortStatus, + c2900PortTestResult, + c2900PortVisualIndicator, + c2900PortIfIndex, + c2900PortAddressViolationAction, + c2900PortBroadcastStormAlarm, + c2900PortMonitorDestinationPort, + c2900PortSwitchPortIndex, + c2900PortMonitoredPortMap, + c2900PortDuplexState, + c2900PortDuplexStatus, + c2900PortAdminSpeed, + c2900PortNoMonitorDestinationPort, + c2900Portdot1dBasePort + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port status and configuration." + ::= { c2900MIBGroups 9 } + +c2900PortGroupSA7 OBJECT-GROUP + OBJECTS { + c2900PortUsageApplication, + c2900PortGroupIndex, + c2900PortMayForwardFrames, + c2900PortBufferCongestionThreshholdPercent, + c2900PortFrameAge, + c2900PortAddrSecureMaxAddresses, + c2900PortAddrSecureCurrentAddresses, + c2900PortAddrSecureAddrViolations, + c2900PortNumberOfLearnedAddresses, + c2900PortNumberOfDroppedAddresses, + c2900PortClearAddresses, + c2900PortFloodUnknownMulticasts, + c2900PortFloodUnknownUnicasts, + c2900PortLinkbeatStatus, + c2900PortBroadcastStormAction, + c2900PortBroadcastRisingThreshold, + c2900PortBroadcastFallingThreshold, + c2900PortStatus, + c2900PortTestResult, + c2900PortVisualIndicator, + c2900PortIfIndex, + c2900PortAddressViolationAction, + c2900PortBroadcastStormAlarm, + c2900PortMonitorDestinationPort, + c2900PortSwitchPortIndex, + c2900PortMonitoredPortMap, + c2900PortDuplexState, + c2900PortDuplexStatus, + c2900PortAdminSpeed, + c2900PortNoMonitorDestinationPort, + c2900Portdot1dBasePort, + c2900PortSpantreeFastStart + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port status and configuration." + ::= { c2900MIBGroups 10 } + +c2900PortGroupWC2 OBJECT-GROUP + OBJECTS { + c2900PortUsageApplication, + c2900PortGroupIndex, + c2900PortMayForwardFrames, + c2900PortBufferCongestionThreshholdPercent, + c2900PortFrameAge, + c2900PortAddrSecureMaxAddresses, + c2900PortAddrSecureCurrentAddresses, + c2900PortAddrSecureAddrViolations, + c2900PortNumberOfLearnedAddresses, + c2900PortNumberOfDroppedAddresses, + c2900PortClearAddresses, + c2900PortFloodUnknownMulticasts, + c2900PortFloodUnknownUnicasts, + c2900PortLinkbeatStatus, + c2900PortBroadcastStormAction, + c2900PortBroadcastRisingThreshold, + c2900PortBroadcastFallingThreshold, + c2900PortStatus, + c2900PortTestResult, + c2900PortVisualIndicator, + c2900PortIfIndex, + c2900PortAddressViolationAction, + c2900PortBroadcastStormAlarm, + c2900PortMonitorDestinationPort, + c2900PortSwitchPortIndex, + c2900PortMonitoredPortMap, + c2900PortDuplexState, + c2900PortDuplexStatus, + c2900PortAdminSpeed, + c2900PortNoMonitorDestinationPort, + c2900Portdot1dBasePort, + c2900PortSpantreeFastStart, + c2900PortVoiceVlanId + } + STATUS deprecated + DESCRIPTION + "The collection of objects which are used to + provide port status and configuration, includes + voice vlan id." + ::= { c2900MIBGroups 11 } + +c2900PortGroupWC4 OBJECT-GROUP + OBJECTS { + c2900PortUsageApplication, + c2900PortGroupIndex, + c2900PortMayForwardFrames, + c2900PortBufferCongestionThreshholdPercent, + c2900PortFrameAge, + c2900PortAddrSecureMaxAddresses, + c2900PortAddrSecureCurrentAddresses, + c2900PortAddrSecureAddrViolations, + c2900PortNumberOfLearnedAddresses, + c2900PortNumberOfDroppedAddresses, + c2900PortClearAddresses, + c2900PortFloodUnknownMulticasts, + c2900PortFloodUnknownUnicasts, + c2900PortLinkbeatStatus, + c2900PortBroadcastStormAction, + c2900PortBroadcastRisingThreshold, + c2900PortBroadcastFallingThreshold, + c2900PortStatus, + c2900PortTestResult, + c2900PortVisualIndicator, + c2900PortIfIndex, + c2900PortAddressViolationAction, + c2900PortBroadcastStormAlarm, + c2900PortMonitorDestinationPort, + c2900PortSwitchPortIndex, + c2900PortMonitoredPortMap, + c2900PortDuplexState, + c2900PortDuplexStatus, + c2900PortAdminSpeed, + c2900PortNoMonitorDestinationPort, + c2900Portdot1dBasePort, + c2900PortSpantreeFastStart, + c2900PortVoiceVlanId, + c2900PortAddrSecureAgingTime, + c2900PortAddrSecureAgingType, + c2900PortAddrSecureAgingStatic + } + STATUS current + DESCRIPTION + "The collection of objects which are used to + provide port status and configuration, includes + voice vlan id and port-security aging." + ::= { c2900MIBGroups 12 } + +c2900NotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { + c2900AddressViolation, + c2900BroadcastStorm, + c2900RpsFailed + } + STATUS current + DESCRIPTION + "The set of notifications provided by c2900 device." + ::= { c2900MIBGroups 13 } + +c2900PortStatsGroupRev1 OBJECT-GROUP + OBJECTS { + c2900PortRxNoBwFrames, + c2900PortRxNoBufferFrames, + c2900PortRxNoDestUniFrames, + c2900PortRxNoDestMultiFrames, + c2900PortRxFcsErrFrames, + c2900PortCollFragFrames, + c2900PortTxMulticastFrames, + c2900PortTxBroadcastFrames + } + STATUS current + DESCRIPTION + "The collection of objects which are used to + provide port stats." + ::= { c2900MIBGroups 14 } + +END + diff --git a/pandora_console/attachment/mibs/CISCO-CDP-MIB b/pandora_console/attachment/mibs/CISCO-CDP-MIB new file mode 100644 index 0000000000..27bdba1342 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-CDP-MIB @@ -0,0 +1,828 @@ +-- ***************************************************************** +-- CISCO-CDP-MIB.my: CDP MIB file +-- +-- Oct 1994, Arun Sastry +-- November 2001, Edward Pham +-- +-- Copyright (c) 1994-1998, 1999, 2001 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** +-- +CISCO-CDP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Integer32 + FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + TruthValue, DisplayString, TimeStamp + FROM SNMPv2-TC + ciscoMgmt + FROM CISCO-SMI + CiscoNetworkProtocol, CiscoNetworkAddress, Unsigned32 + FROM CISCO-TC + VlanIndex + FROM CISCO-VTP-MIB + ifIndex + FROM IF-MIB + ; + +ciscoCdpMIB MODULE-IDENTITY + LAST-UPDATED "200111230000Z" + ORGANIZATION "Cisco System Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 West Tasman Drive, + San Jose CA 95134-1706. + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "The MIB module for management of the Cisco Discovery + Protocol in Cisco devices." + REVISION "200111230000Z" + DESCRIPTION + "Added cdpInterfaceExtTable which contains the following + objects: + cdpInterfaceExtendedTrust, + cdpInterfaceCosForUntrustedPort." + REVISION "200104230000Z" + DESCRIPTION + "Added the following objects: + cdpGlobalDeviceIdFormatCpb, + cdpGlobalDeviceIdFormat." + REVISION "200011220000Z" + DESCRIPTION + "Added the following objects: + cdpCacheApplianceID, + cdpCacheVlanID, + cdpCachePowerConsumption, + cdpCacheMTU, + cdpCachePrimaryMgmtAddrType, + cdpCachePrimaryMgmtAddr, + cdpCacheSecondaryMgmtAddrType, + cdpCacheSecondaryMgmtAddr, + cdpCacheLastChange, + cdpCachePhysLocation, + cdpCacheSysName, + cdpCacheSysObjectID, + cdpGlobalLastChange" + REVISION "9812100000Z" + DESCRIPTION + "Added cdpGlobalDeviceId object." + REVISION "9809160000Z" + DESCRIPTION + "added these objects to cdpCacheTable: + cdpCacheVTPMgmtDomain, + cdpCacheNativeVLAN, + cdpCacheDuplex. + " + REVISION "9607080000Z" + DESCRIPTION + "Obsolete cdpInterfaceMessageInterval and newly + define cdpGlobal object." + REVISION "9508150000Z" + DESCRIPTION + "Specify a correct (non-negative) range for several + index objects." + REVISION "9507270000Z" + DESCRIPTION + "Correct range of cdpInterfaceMessageInterval." + REVISION "9501250000Z" + DESCRIPTION + "Move from ciscoExperiment to ciscoMgmt oid subtree." + ::= { ciscoMgmt 23 } + + +ciscoCdpMIBObjects OBJECT IDENTIFIER ::= { ciscoCdpMIB 1 } + +cdpInterface OBJECT IDENTIFIER ::= { ciscoCdpMIBObjects 1 } +cdpCache OBJECT IDENTIFIER ::= { ciscoCdpMIBObjects 2 } +cdpGlobal OBJECT IDENTIFIER ::= { ciscoCdpMIBObjects 3 } + +-- +-- The CDP Interface Group +-- +cdpInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CdpInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table containing the status of CDP on + the device's interfaces." + ::= { cdpInterface 1 } + +cdpInterfaceEntry OBJECT-TYPE + SYNTAX CdpInterfaceEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the cdpInterfaceTable, + containing the status of CDP on an interface." + INDEX { cdpInterfaceIfIndex } + ::= { cdpInterfaceTable 1 } + +CdpInterfaceEntry ::= SEQUENCE { + cdpInterfaceIfIndex Integer32, + cdpInterfaceEnable TruthValue, + cdpInterfaceMessageInterval INTEGER, + cdpInterfaceGroup Integer32, + cdpInterfacePort Integer32 +} + +cdpInterfaceIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The ifIndex value of the local interface. + + For 802.3 Repeaters on which the repeater ports do not + have ifIndex values assigned, this value is a unique + value for the port, and greater than any ifIndex value + supported by the repeater; in this case, the specific + port is indicated by corresponding values of + cdpInterfaceGroup and cdpInterfacePort, where these + values correspond to the group number and port number + values of RFC 1516." + ::= { cdpInterfaceEntry 1 } + +cdpInterfaceEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the Cisco Discovery Protocol + is currently running on this interface. This variable + has no effect when CDP is disabled (cdpGlobalRun = FALSE)." + ::= { cdpInterfaceEntry 2 } + +cdpInterfaceMessageInterval OBJECT-TYPE + SYNTAX INTEGER (5..254) + UNITS "seconds" + MAX-ACCESS read-write + STATUS obsolete -- replaced by cdpGlobalMessageInterval + -- this object should be applied to the + -- whole system instead of per interface + DESCRIPTION + "The interval at which CDP messages are to be generated + on this interface. The default value is 60 seconds." + ::= { cdpInterfaceEntry 3 } + +cdpInterfaceGroup OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is only relevant to interfaces which are + repeater ports on 802.3 repeaters. In this situation, + it indicates the RFC1516 group number of the repeater + port which corresponds to this interface." + ::= { cdpInterfaceEntry 4 } + +cdpInterfacePort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is only relevant to interfaces which are + repeater ports on 802.3 repeaters. In this situation, + it indicates the RFC1516 port number of the repeater + port which corresponds to this interface." + ::= { cdpInterfaceEntry 5 } + +cdpInterfaceExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF CdpInterfaceExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the additional CDP configuration on + the device's interfaces." + ::= { cdpInterface 2 } + +cdpInterfaceExtEntry OBJECT-TYPE + SYNTAX CdpInterfaceExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the cdpInterfaceExtTable contains the values + configured for Extented Trust TLV and COS (Class of Service) + for Untrusted Ports TLV on an interface which supports the + sending of these TLVs." + INDEX { ifIndex } + ::= { cdpInterfaceExtTable 1 } + +CdpInterfaceExtEntry ::= SEQUENCE { + cdpInterfaceExtendedTrust INTEGER, + cdpInterfaceCosForUntrustedPort Unsigned32 +} + +cdpInterfaceExtendedTrust OBJECT-TYPE + SYNTAX INTEGER { + trusted(1), + noTrust(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the value to be sent by Extended Trust TLV. + + If trusted(1) is configured, the value of Extended Trust TLV + is one byte in length with its least significant bit equal to + 1 to indicate extended trust. All other bits are 0. + + If noTrust(2) is configured, the value of Extended Trust TLV + is one byte in length with its least significant bit equal to + 0 to indicate no extended trust. All other bits are 0." + ::= { cdpInterfaceExtEntry 1 } + +cdpInterfaceCosForUntrustedPort OBJECT-TYPE + SYNTAX Unsigned32 (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates the value to be sent by COS for Untrusted Ports TLV." + ::= { cdpInterfaceExtEntry 2 } + +-- +-- The CDP Address Cache Group +-- + +cdpCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF CdpCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table containing the cached + information obtained via receiving CDP messages." + ::= { cdpCache 1 } + +cdpCacheEntry OBJECT-TYPE + SYNTAX CdpCacheEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the cdpCacheTable, + containing the information received via CDP on one + interface from one device. Entries appear when + a CDP advertisement is received from a neighbor + device. Entries disappear when CDP is disabled + on the interface, or globally." + INDEX { cdpCacheIfIndex, cdpCacheDeviceIndex } + ::= { cdpCacheTable 1 } + +CdpCacheEntry ::= SEQUENCE { + cdpCacheIfIndex Integer32, + cdpCacheDeviceIndex Integer32, + cdpCacheAddressType CiscoNetworkProtocol, + cdpCacheAddress CiscoNetworkAddress, + cdpCacheVersion DisplayString, + cdpCacheDeviceId DisplayString, + cdpCacheDevicePort DisplayString, + cdpCachePlatform DisplayString, + cdpCacheCapabilities OCTET STRING, + cdpCacheVTPMgmtDomain DisplayString, + cdpCacheNativeVLAN VlanIndex, + cdpCacheDuplex INTEGER, + cdpCacheApplianceID Unsigned32, + cdpCacheVlanID Unsigned32, + cdpCachePowerConsumption Unsigned32, + cdpCacheMTU Unsigned32, + cdpCacheSysName DisplayString, + cdpCacheSysObjectID OBJECT IDENTIFIER, + cdpCachePrimaryMgmtAddrType CiscoNetworkProtocol, + cdpCachePrimaryMgmtAddr CiscoNetworkAddress, + cdpCacheSecondaryMgmtAddrType CiscoNetworkProtocol, + cdpCacheSecondaryMgmtAddr CiscoNetworkAddress, + cdpCachePhysLocation DisplayString, + cdpCacheLastChange TimeStamp +} + +cdpCacheIfIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Normally, the ifIndex value of the local interface. + For 802.3 Repeaters for which the repeater ports do not + have ifIndex values assigned, this value is a unique + value for the port, and greater than any ifIndex value + supported by the repeater; the specific port number in + this case, is given by the corresponding value of + cdpInterfacePort." + ::= { cdpCacheEntry 1 } + +cdpCacheDeviceIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each device from which CDP messages + are being received." + ::= { cdpCacheEntry 2 } + +cdpCacheAddressType OBJECT-TYPE + SYNTAX CiscoNetworkProtocol + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the type of address contained in the + corresponding instance of cdpCacheAddress." + ::= { cdpCacheEntry 3 } + +cdpCacheAddress OBJECT-TYPE + SYNTAX CiscoNetworkAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The (first) network-layer address of the device's + SNMP-agent as reported in the Address TLV of the most recently + received CDP message. For example, if the corresponding + instance of cacheAddressType had the value 'ip(1)', then + this object would be an IP-address." + ::= { cdpCacheEntry 4 } + +cdpCacheVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Version string as reported in the most recent CDP + message. The zero-length string indicates no Version + field (TLV) was reported in the most recent CDP + message." + ::= { cdpCacheEntry 5 } + +cdpCacheDeviceId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device-ID string as reported in the most recent CDP + message. The zero-length string indicates no Device-ID + field (TLV) was reported in the most recent CDP + message." + ::= { cdpCacheEntry 6 } + +cdpCacheDevicePort OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Port-ID string as reported in the most recent CDP + message. This will typically be the value of the ifName + object (e.g., 'Ethernet0'). The zero-length string + indicates no Port-ID field (TLV) was reported in the + most recent CDP message." + ::= { cdpCacheEntry 7 } + +cdpCachePlatform OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device's Hardware Platform as reported in the most + recent CDP message. The zero-length string indicates + that no Platform field (TLV) was reported in the most + recent CDP message." + ::= { cdpCacheEntry 8 } + +cdpCacheCapabilities OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Device's Functional Capabilities as reported in the + most recent CDP message. For latest set of specific + values, see the latest version of the CDP specification. + The zero-length string indicates no Capabilities field + (TLV) was reported in the most recent CDP message." + REFERENCE "Cisco Discovery Protocol Specification, 10/19/94." + + ::= { cdpCacheEntry 9 } + +cdpCacheVTPMgmtDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VTP Management Domain for the remote device's interface, + as reported in the most recently received CDP message. + This object is not instantiated if no VTP Management Domain field + (TLV) was reported in the most recently received CDP message." + REFERENCE "managementDomainName in CISCO-VTP-MIB" + ::= { cdpCacheEntry 10 } + +cdpCacheNativeVLAN OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote device's interface's native VLAN, as reported in the + most recent CDP message. The value 0 indicates + no native VLAN field (TLV) was reported in the most + recent CDP message." + ::= { cdpCacheEntry 11 } + +cdpCacheDuplex OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + halfduplex(2), + fullduplex(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote device's interface's duplex mode, as reported in the + most recent CDP message. The value unknown(1) indicates + no duplex mode field (TLV) was reported in the most + recent CDP message." + ::= { cdpCacheEntry 12 } + +cdpCacheApplianceID OBJECT-TYPE + SYNTAX Unsigned32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote device's Appliance ID, as reported in the + most recent CDP message. This object is not instantiated if + no Appliance VLAN-ID field (TLV) was reported in the most + recently received CDP message." + ::= { cdpCacheEntry 13 } + +cdpCacheVlanID OBJECT-TYPE + SYNTAX Unsigned32 (0..4095) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote device's VoIP VLAN ID, as reported in the + most recent CDP message. This object is not instantiated if + no Appliance VLAN-ID field (TLV) was reported in the most + recently received CDP message." + ::= { cdpCacheEntry 14 } + +cdpCachePowerConsumption OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "milliwatts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of power consumed by remote device, as reported + in the most recent CDP message. This object is not instantiated + if no Power Consumption field (TLV) was reported in the most + recently received CDP message." + ::= { cdpCacheEntry 15 } + +cdpCacheMTU OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the size of the largest datagram that can be + sent/received by remote device, as reported in the most recent + CDP message. This object is not instantiated if no MTU field + (TLV) was reported in the most recently received CDP message." + ::= { cdpCacheEntry 16 } + +cdpCacheSysName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the value of the remote device's sysName MIB object. + By convention, it is the device's fully qualified domain name. + This object is not instantiated if no sysName field (TLV) was + reported in the most recently received CDP message." + ::= { cdpCacheEntry 17 } + +cdpCacheSysObjectID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the value of the remote device's sysObjectID MIB + object. This object is not instantiated if no sysObjectID field + (TLV) was reported in the most recently received CDP message." + ::= { cdpCacheEntry 18 } + +cdpCachePrimaryMgmtAddrType OBJECT-TYPE + SYNTAX CiscoNetworkProtocol + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the type of address contained in the + corresponding instance of cdpCachePrimaryMgmtAddress." + ::= { cdpCacheEntry 19 } + +cdpCachePrimaryMgmtAddr OBJECT-TYPE + SYNTAX CiscoNetworkAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the (first) network layer address at + which the device will accept SNMP messages as reported in the + most recently received CDP message. If the corresponding + instance of cdpCachePrimaryMgmtAddrType has the value 'ip(1)', + then this object would be an IP-address. If the remote device + is not currently manageable via any network protocol, this + object has the special value of the IPv4 address 0.0.0.0. + If the most recently received CDP message did not contain any + primary address at which the device prefers to receive + SNMP messages, then this object is not instanstiated." + ::= { cdpCacheEntry 20 } + +cdpCacheSecondaryMgmtAddrType OBJECT-TYPE + SYNTAX CiscoNetworkProtocol + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the type of address contained in the + corresponding instance of cdpCacheSecondaryMgmtAddress." + ::= { cdpCacheEntry 21 } + +cdpCacheSecondaryMgmtAddr OBJECT-TYPE + SYNTAX CiscoNetworkAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the alternate network layer address + (other than the one indicated by cdpCachePrimaryMgmtAddr) at + which the device will accept SNMP messages as reported in the + most recently received CDP message. If the corresponding + instance of cdpCacheSecondaryMgmtAddrType has the value 'ip(1)', + then this object would be an IP-address. If the most recently + received CDP message did not contain such an alternate network + layer address, then this object is not instanstiated." + ::= { cdpCacheEntry 22 } + +cdpCachePhysLocation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the physical location, as reported by the most recent + CDP message, of a connector which is on, or physically connected + to, the remote device's interface over which the CDP packet is + sent. This object is not instantiated if no Physical Location + field (TLV) was reported by the most recently received CDP + message." + ::= { cdpCacheEntry 23 } + +cdpCacheLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when this cache entry was last changed. + This object is initialised to the current time when the entry + gets created and updated to the current time whenever the value + of any (other) object instance in the corresponding row is + modified." + ::= { cdpCacheEntry 24 } + +-- +-- The CDP Global Group +-- + +cdpGlobalRun OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the Cisco Discovery Protocol + is currently running. Entries in cdpCacheTable are + deleted when CDP is disabled." + DEFVAL { true } + ::= { cdpGlobal 1 } + +cdpGlobalMessageInterval OBJECT-TYPE + SYNTAX INTEGER (5..254) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval at which CDP messages are to be generated. + The default value is 60 seconds." + DEFVAL { 60 } + ::= { cdpGlobal 2 } + +cdpGlobalHoldTime OBJECT-TYPE + SYNTAX INTEGER (10..255) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The time for the receiving device holds CDP message. + The default value is 180 seconds." + DEFVAL { 180 } + ::= { cdpGlobal 3 } + +cdpGlobalDeviceId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The device ID advertised by this device. The format of this + device id is characterized by the value of + cdpGlobalDeviceIdFormat object." + ::= { cdpGlobal 4 } + +cdpGlobalLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the time when the cache table was last changed. It + is the most recent time at which any row was last created, + modified or deleted." + ::= { cdpGlobal 5 } + +cdpGlobalDeviceIdFormatCpb OBJECT-TYPE + SYNTAX BITS { + serialNumber(0), + macAddress(1), + other (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the Device-Id format capability of the device. + + serialNumber(0) indicates that the device supports using + serial number as the format for its DeviceId. + + macAddress(1) indicates that the device supports using + layer 2 MAC address as the format for its DeviceId. + + other(2) indicates that the device supports using its + platform specific format as the format for its DeviceId." + ::= { cdpGlobal 6 } + +cdpGlobalDeviceIdFormat OBJECT-TYPE + SYNTAX INTEGER { + serialNumber(1), + macAddress(2), + other(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of the format of Device-Id contained in the + corresponding instance of cdpGlobalDeviceId. User can only + specify the formats that the device is capable of as + denoted in cdpGlobalDeviceIdFormatCpb object. + + serialNumber(1) indicates that the value of cdpGlobalDeviceId + object is in the form of an ASCII string contain the device + serial number. + + macAddress(2) indicates that the value of cdpGlobalDeviceId + object is in the form of Layer 2 MAC address. + + other(3) indicates that the value of cdpGlobalDeviceId object + is in the form of a platform specific ASCII string contain + info that identifies the device. For example: ASCII string + contains serialNumber appended/prepened with system name." + ::= { cdpGlobal 7 } + +-- conformance information + +ciscoCdpMIBConformance + OBJECT IDENTIFIER ::= { ciscoCdpMIB 2 } +ciscoCdpMIBCompliances + OBJECT IDENTIFIER ::= { ciscoCdpMIBConformance 1 } +ciscoCdpMIBGroups + OBJECT IDENTIFIER ::= { ciscoCdpMIBConformance 2 } + + +-- compliance statements + +ciscoCdpMIBCompliance MODULE-COMPLIANCE + STATUS obsolete -- superseded by ciscoCdpMIBComplianceV11R01 + DESCRIPTION + "The compliance statement for the CDP MIB." + MODULE -- this module + MANDATORY-GROUPS { ciscoCdpMIBGroup } + + ::= { ciscoCdpMIBCompliances 1 } + +ciscoCdpMIBComplianceV11R01 MODULE-COMPLIANCE + STATUS obsolete -- superseded by ciscoCdpMIBComplianceV11R02 + DESCRIPTION + "The compliance statement for the CDP MIB." + MODULE -- this module + MANDATORY-GROUPS { ciscoCdpMIBGroupV11R01 } + + ::= { ciscoCdpMIBCompliances 2 } + +ciscoCdpMIBComplianceV11R02 MODULE-COMPLIANCE + STATUS obsolete -- superseded by ciscoCdpMIBComplianceV12R02 + DESCRIPTION + "The compliance statement for the CDP MIB." + MODULE -- this module + MANDATORY-GROUPS { ciscoCdpMIBGroupV11R02 } + + ::= { ciscoCdpMIBCompliances 3 } + +ciscoCdpMIBComplianceV12R02 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the CDP MIB." + MODULE -- this module + MANDATORY-GROUPS { ciscoCdpMIBGroupV12R02 } + + ::= { ciscoCdpMIBCompliances 4 } + +-- units of conformance + +ciscoCdpMIBGroup OBJECT-GROUP + OBJECTS { cdpInterfaceEnable, cdpInterfaceMessageInterval, + cdpCacheAddressType, cdpCacheAddress, cdpCacheVersion, + cdpCacheDeviceId, cdpCacheDevicePort, + cdpCacheCapabilities, cdpCachePlatform + } + STATUS obsolete -- superseded by ciscoCdpMIBGroupV11R01 + DESCRIPTION + "A collection of objects for use with the Cisco + Discovery Protocol." + ::= { ciscoCdpMIBGroups 1 } + +ciscoCdpMIBGroupV11R01 OBJECT-GROUP + OBJECTS { cdpInterfaceEnable, cdpInterfaceMessageInterval, + cdpInterfaceGroup, cdpInterfacePort, + cdpCacheAddressType, cdpCacheAddress, cdpCacheVersion, + cdpCacheDeviceId, cdpCacheDevicePort, + cdpCacheCapabilities, cdpCachePlatform + } + STATUS obsolete -- superseded by ciscoCdpMIBGroupV11R02 + DESCRIPTION + "A collection of objects for use with the Cisco + Discovery Protocol." + ::= { ciscoCdpMIBGroups 2 } + +ciscoCdpMIBGroupV11R02 OBJECT-GROUP + OBJECTS { cdpInterfaceEnable, + cdpInterfaceGroup, cdpInterfacePort, + cdpCacheAddressType, cdpCacheAddress, cdpCacheVersion, + cdpCacheDeviceId, cdpCacheDevicePort, + cdpCacheCapabilities, cdpCachePlatform, + cdpGlobalRun, cdpGlobalMessageInterval, cdpGlobalHoldTime + } + STATUS obsolete -- superseded by ciscoCdpMIBGroupV12R02 + DESCRIPTION + "A collection of objects for use with the Cisco + Discovery Protocol." + ::= { ciscoCdpMIBGroups 3 } + +ciscoCdpMIBGroupV12R02 OBJECT-GROUP + OBJECTS { cdpInterfaceEnable, + cdpInterfaceGroup, cdpInterfacePort, + cdpCacheAddressType, cdpCacheAddress, cdpCacheVersion, + cdpCacheDeviceId, cdpCacheDevicePort, + cdpCacheCapabilities, cdpCachePlatform, + cdpCacheVTPMgmtDomain, cdpCacheNativeVLAN, cdpCacheDuplex, + cdpGlobalRun, cdpGlobalMessageInterval, cdpGlobalHoldTime, + cdpGlobalDeviceId + } + STATUS current + DESCRIPTION + "A collection of objects for use with the Cisco + Discovery Protocol." + ::= { ciscoCdpMIBGroups 5 } + +ciscoCdpV2MIBGroup OBJECT-GROUP + OBJECTS { + cdpCacheApplianceID, cdpCacheVlanID, + cdpCachePowerConsumption, cdpCacheMTU, + cdpCacheSysName, cdpCacheSysObjectID, + cdpCacheLastChange, cdpCachePhysLocation, + cdpCachePrimaryMgmtAddrType, + cdpCachePrimaryMgmtAddr, + cdpCacheSecondaryMgmtAddrType, + cdpCacheSecondaryMgmtAddr, + cdpGlobalLastChange, cdpGlobalDeviceIdFormatCpb, + cdpGlobalDeviceIdFormat + } + STATUS current + DESCRIPTION + "A collection of objects for use with the Cisco + Discovery Protocol version 2." + ::= { ciscoCdpMIBGroups 6 } + +ciscoCdpV2IfExtGroup OBJECT-GROUP + OBJECTS { + cdpInterfaceExtendedTrust, + cdpInterfaceCosForUntrustedPort + } + STATUS current + DESCRIPTION + "A collection of objects for use with the Cisco + Discovery Protocol version 2 to configure the value + for Extended Trust TLV and COS for Untrusted Port TLV." + ::= { ciscoCdpMIBGroups 7 } +END diff --git a/pandora_console/attachment/mibs/CISCO-CONFIG-COPY-MIB b/pandora_console/attachment/mibs/CISCO-CONFIG-COPY-MIB new file mode 100644 index 0000000000..3be979f756 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-CONFIG-COPY-MIB @@ -0,0 +1,524 @@ +-- ***************************************************************** +-- CISCO-CONFIG-COPY-MIB.my: MIB for copying a Cisco router's config +-- +-- December 1997, Ramanathan R. Kavasseri +-- +-- Copyright (c) 1998 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** +-- + + +CISCO-CONFIG-COPY-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + IpAddress, Unsigned32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, TimeStamp, RowStatus, + TruthValue + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + ciscoMgmt + FROM CISCO-SMI; + +ciscoConfigCopyMIB MODULE-IDENTITY + LAST-UPDATED "200212170000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 W. Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "This MIB facilitates writing of configuration files + of an SNMP Agent running Cisco's IOS in the following + ways: to and from the net, copying running + configurations to startup configurations and + vice-versa, and copying a configuration + (running or startup) to and from the local + IOS file system." + REVISION "200212170000Z" + DESCRIPTION + "Added a new enumeration value someConfigApplyFailed(7) + to ConfigCopyFailCause TC." + REVISION "200205300000Z" + DESCRIPTION + "Added sftp protocol as an option for + ConfigCopyProtocol." + REVISION "200205070000Z" + DESCRIPTION + "Added scp protocol as an option for ConfigCopyProtocol. + Added unsupportedProtocol(6) as an option for the + ConfigCopyFailCause TC." + + REVISION "200203280000Z" + DESCRIPTION + "Imported Unsigned32 from SNMPv2-SMI instead of + CISCO-TC" + ::= { ciscoMgmt 96 } + +-- A config-copy operation is a request to copy a configuration +-- file of an SNMP Agent running Cisco's IOS in the following ways: +-- 1. to or from the net (via a protocol like tftp, ftp, rcp, +-- scp or sftp). +-- 2. copying running configurations to startup +-- configurations and vice-versa. +-- 3. copy a running or startup config to a file +-- to the local IOS file system and vice versa." +-- +-- The term "agent-config" will be used in this MIB to refer to +-- either the running config or the startup config. It will be +-- used as a short way of saying "either running config or the +-- startup config". + + +ConfigCopyProtocol ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The protocol file transfer protocol that should be used + to copy the configuration file over the network. If the + config file transfer is to occur locally on the SNMP + agent, the method of transfer is left upto the + implementation, and is not restricted to the + protocols below." + SYNTAX INTEGER { + tftp(1), + ftp(2), + rcp(3), + scp(4), + sftp(5) + } + +ConfigCopyState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The state of a tftp config-copy operation. + The description of each state is given below: + + waiting: only one config-copy request can run + at any time. A newly activated + config-copy request is placed in this + state if another request has already + been activated. + + running: this state signifies that the config-copy + request is running. + + successsful: the state when a config-copy request is + successfully completed. + + failed: the config-copy request was unsuccesful. + " + SYNTAX INTEGER { + waiting(1), + running(2), + successful(3), + failed(4) + } + +ConfigCopyFailCause ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The reason a config-copy request failed." + SYNTAX INTEGER { + unknown(1), -- very descriptive + badFileName(2), -- check your file name/path/permissions + timeout(3), -- the network may be overloaded, or the + -- remote file server may not be + -- responding. + noMem(4), -- the Agent wasn't able to allocate + -- memory for the config-copy operation + noConfig(5), -- the agent-config selected as the + -- source was non-existant. + unsupportedProtocol(6),-- The protocol is not supported + -- by the agent. + someConfigApplyFailed(7) -- applying of some of the + -- configuration commands + -- failed. + } + +ConfigFileType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The various types of files on which a config-copy + operation can be performed." + SYNTAX INTEGER { + networkFile(1), -- file on another network device, e.g. + -- a file-server on the net + iosFile(2), -- a file on the local agent, other than + -- startup or running config + startupConfig(3), + runningConfig(4), + terminal(5) -- a terminal (e.g. the console window) + -- on which the config is to be + -- displayed. + } + +ciscoConfigCopyMIBObjects OBJECT IDENTIFIER ::= { ciscoConfigCopyMIB 1 } + +ccCopy OBJECT IDENTIFIER ::= { ciscoConfigCopyMIBObjects 1 } + +ccCopyTable OBJECT-TYPE + SYNTAX SEQUENCE OF CcCopyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of config-copy requests." + ::= { ccCopy 1 } + +ccCopyEntry OBJECT-TYPE + SYNTAX CcCopyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A config-copy request. + + A management station wishing to create an entry should + first generate a random serial number to be used + as the index to this sparse table. The station should + then create the associated instance of the row status + and row index objects. It must also, either in the same + or in successive PDUs, create an instance of + ccCopySourceFileType and ccCopyDestFileType. + At least one of the FileTypes must be an agent-config + file type (i.e. startupConfig or runningConfig). + If one of the file types is a networkFile, a valid + ccCopyServerAddress and ccCopyFileName must be + created as well. For a file type of iosFile, only + a valid fileName needs to be created as an extra + parameter. + + It should also modify the default values for the other + configuration objects if the defaults are not + appropriate. + + Once the appropriate instance of all the configuration + objects have been created, either by an explicit SNMP + set request or by default, the row status should be set + to active to initiate the request. Note that this entire + procedure may be initiated via a single set request + which specifies a row status of createAndGo as well as + specifies valid values for the non-defaulted + configuration objects. + + Once the config-copy request has been created (i.e. the + ccCopyEntryRowStatus has been made active), the entry + cannot be modified - the only operation possible + after this is to delete the row. + + Once the request completes, the management station + should retrieve the values of the status objects of + interest, and should then delete the entry. In order + to prevent old entries from clogging the table, + entries will be aged out, but an entry will never be + deleted within 5 minutes of completing." + INDEX { ccCopyIndex } + ::= { ccCopyTable 1 } + +CcCopyEntry ::= + SEQUENCE { + ccCopyIndex Unsigned32, + -- configuration items + ccCopyProtocol ConfigCopyProtocol, + ccCopySourceFileType ConfigFileType, + ccCopyDestFileType ConfigFileType, + ccCopyServerAddress IpAddress, + ccCopyFileName DisplayString, + ccCopyUserName DisplayString, + ccCopyUserPassword DisplayString, + ccCopyNotificationOnCompletion TruthValue, + -- status items + ccCopyState ConfigCopyState, + ccCopyTimeStarted TimeStamp, + ccCopyTimeCompleted TimeStamp, + ccCopyFailCause ConfigCopyFailCause, + ccCopyEntryRowStatus RowStatus + } + +ccCopyIndex OBJECT-TYPE + SYNTAX Unsigned32(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Object which specifies a unique entry in the + ccCopyTable. A management station wishing + to initiate a config-copy operation should use a + random value for this object when creating + or modifying an instance of a ccCopyEntry. + The RowStatus semantics of the ccCopyEntryRowStatus + object will prevent access conflicts." + ::= { ccCopyEntry 1 } + +ccCopyProtocol OBJECT-TYPE + SYNTAX ConfigCopyProtocol + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The protocol to be used for any copy. + Will default to tftp if not specified. + + If the copy operation occurs locally on the SNMP agent + (e.g. runningCOnfigToStartupConfig), this object may + be ignored by the implementation." + DEFVAL { tftp } + ::= { ccCopyEntry 2 } + +ccCopySourceFileType OBJECT-TYPE + SYNTAX ConfigFileType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "specifies the type of file to copy from. Either the + ccCopySourceFileType or the ccCopyDestFileType (or both) + must be of type runningConfig or startupConfig. Also, + the ccCopySourceFileType must be different from the + ccCopyDestFileType. + + If the ccCopySourceFileType has the value of + networkFile, the ccCopyServerAddress and + ccCopyFileName must also be created, and these 3 + objects together (ccCopySourceFileType, + ccCopyServerAddress, ccCopyFileName) will uniquely + identify the source file. + + If the ccCopySourceFileType is iosFile, the + ccCopyFileName must also be created, and the + 2 objects together (ccCopySourceFileType, + ccCopyFileName) will uniquely identify the source + file. + " + ::= { ccCopyEntry 3 } + +ccCopyDestFileType OBJECT-TYPE + SYNTAX ConfigFileType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "specifies the type of file to copy to. Either the + ccCopySourceFileType or the ccCopyDestFileType (or both) + must be of type runningConfig or startupConfig. Also, + the ccCopySourceFileType must be different from the + ccCopyDestFileType. + + If the ccCopyDestFileType has the value of + networkFile, the ccCopyServerAddress and + ccCopyFileName must also be created, and these + 3 objects together + (ccCopyDestFileType, ccCopyServerAddress, + ccCopyFileName) will uniquely identify the + destination file. + + If the ccCopyDestFileType is iosFile, the ccCopyFileName + must also be created, and the 2 objects together + (ccCopyDestFileType, ccCopyFileName) will uniquely + identify the destination file." + ::= { ccCopyEntry 4 } + +ccCopyServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ip address of the tftp server from (or to) + which to copy the configuration file. This object must + be created when either the ccCopySourceFileType + or ccCopyDestFileType has the value networkFile. + Values of 0.0.0.0 or FF.FF.FF.FF for + ccCopyServerAddress are not allowed." + ::= { ccCopyEntry 5 } + +ccCopyFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The file name (including the path, if applicable) of + the file. This object must be created when either the + ccCopySourceFileType or ccCopyDestFileType has the value + networkFile or iosFile." + ::= { ccCopyEntry 6 } + +ccCopyUserName OBJECT-TYPE + SYNTAX DisplayString(SIZE (1..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Remote user name for copy via ftp, rcp, sftp or + scp protocol. + This object must be created when the ccCopyProtocol + is rcp, scp, ftp or sftp. + If the protocol is rcp, it will override the remote + user-name configured through the + rcmd remote-username + configuration command. + The remote user-name is sent as the server user-name + in an rcp command request sent by the system to a + remote rcp server." + ::= { ccCopyEntry 7 } + +ccCopyUserPassword OBJECT-TYPE + SYNTAX DisplayString(SIZE (1..40)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Password used by ftp, sftp or scp for copying a + file to/from an ftp/sftp/scp server. This object must + be created when the ccCopyProtocol is ftp or scp. + Reading it returns a zero-length string for security + reasons." + ::= { ccCopyEntry 8 } + +ccCopyNotificationOnCompletion OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies whether or not a ccCopyCompletion + notification should be issued on completion of the tftp + transfer. If such a notification is desired, it is the + responsibility of the management entity to ensure + that the SNMP administrative model is configured in + such a way as to allow the notification to be + delivered." + DEFVAL { false } + ::= { ccCopyEntry 9 } + +ccCopyState OBJECT-TYPE + SYNTAX ConfigCopyState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the state of this config-copy request. + This value of this object is instantiated only after + the row has been instantiated, i.e. after the + ccCopyEntryRowStatus has been made active." + ::= { ccCopyEntry 10 } + +ccCopyTimeStarted OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the time the ccCopyState last transitioned + to running, or 0 if the state has never transitioned to + running (for e.g., stuck in waiting state). + This object is instantiated only after the row has been + instantiated." + ::= { ccCopyEntry 11 } + +ccCopyTimeCompleted OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Specifies the time the ccCopyState last transitioned + from running to successful or failed states. This + object is instantiated only after the row has been + instantiated. + Its value will remain 0 until he request has completed." + ::= { ccCopyEntry 12 } + +ccCopyFailCause OBJECT-TYPE + SYNTAX ConfigCopyFailCause + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason why the config-copy operation failed. + This object is instantiated only when the ccCopyState + for this entry is in the failed state." + ::= { ccCopyEntry 13 } + +ccCopyEntryRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this table entry. Once the entry + status is set to active, the associated entry cannot + be modified until the request completes (ccCopyState + transitions to successful or failed state)." + ::= { ccCopyEntry 14 } + +ciscoConfigCopyMIBTrapPrefix OBJECT IDENTIFIER + ::= { ciscoConfigCopyMIB 2 } +ccCopyMIBTraps OBJECT IDENTIFIER + ::= { ciscoConfigCopyMIBTrapPrefix 1 } + +ccCopyCompletion NOTIFICATION-TYPE + OBJECTS { ccCopyServerAddress, + ccCopyFileName, + ccCopyState, + ccCopyTimeStarted, + ccCopyTimeCompleted, + ccCopyFailCause + } + STATUS current + DESCRIPTION + "A ccCopyCompletion trap is sent at the completion + of a config-copy request. The ccCopyFailCause is not + instantiated, and hence not included in a trap, when + the ccCopyState is success." + ::= { ccCopyMIBTraps 1 } + +ciscoConfigCopyMIBConformance + OBJECT IDENTIFIER ::= { ciscoConfigCopyMIB 3 } +ccCopyMIBCompliances + OBJECT IDENTIFIER ::= { ciscoConfigCopyMIBConformance 1 } +ccCopyMIBGroups + OBJECT IDENTIFIER ::= { ciscoConfigCopyMIBConformance 2 } + +ccCopyMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for Cisco agents which + implement the Cisco ConfigCopy MIB. This MIB should + be implemented on all Cisco agents that support + copying of configs via the CLI." + MODULE + MANDATORY-GROUPS { ccCopyGroup, + ccCopyNotificationsGroup + } + ::= {ccCopyMIBCompliances 1 } + +-- units of conformance + +ccCopyGroup OBJECT-GROUP + OBJECTS { + ccCopyProtocol, + ccCopySourceFileType, + ccCopyDestFileType, + ccCopyServerAddress, + ccCopyFileName, + ccCopyUserName, + ccCopyUserPassword, + ccCopyNotificationOnCompletion, + ccCopyState, + ccCopyTimeStarted, + ccCopyTimeCompleted, + ccCopyFailCause, + ccCopyEntryRowStatus + } + STATUS current + DESCRIPTION + "A collection of objects providing the ability to + copy an agent-configuration file." + ::= { ccCopyMIBGroups 1 } + +ccCopyNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { ccCopyCompletion + } + STATUS current + DESCRIPTION + "The notification used to indicate that a config-copy + operation to or from the agent has been completed." + ::= { ccCopyMIBGroups 2 } + +END diff --git a/pandora_console/attachment/mibs/CISCO-ENVMON-MIB b/pandora_console/attachment/mibs/CISCO-ENVMON-MIB new file mode 100644 index 0000000000..160ea145ec --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-ENVMON-MIB @@ -0,0 +1,933 @@ +-- ***************************************************************** +-- CISCO-ENVMON-MIB.my: CISCO Environmental Monitor MIB file +-- +-- November 1994 Sandra C. Durham/Jeffrey T. Johnson +-- +-- Copyright (c) 1994-2001, 2002 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- +CISCO-ENVMON-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-TYPE, + NOTIFICATION-TYPE, + Gauge32, + Integer32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, + DisplayString, + TruthValue + FROM SNMPv2-TC + MODULE-COMPLIANCE, + OBJECT-GROUP, + NOTIFICATION-GROUP + FROM SNMPv2-CONF + ciscoMgmt + FROM CISCO-SMI; + + +ciscoEnvMonMIB MODULE-IDENTITY + LAST-UPDATED "200311250000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "The MIB module to describe the status of the Environmental + Monitor on those devices which support one." + REVISION "200311250000Z" + DESCRIPTION + "Added ciscoEnvMonMIBMiscNotifGroup." + REVISION "200210150000Z" + DESCRIPTION + "Added c7600(12) as values for ciscoEnvMonPresent" + REVISION "200207170000Z" + DESCRIPTION + "Added optional groups ciscoEnvMonEnableStatChangeGroup + and ciscoEnvMonStatChangeNotifGroup." + REVISION "200202040000Z" + DESCRIPTION + "Added osr7600(11) as values + for ciscoEnvMonPresent" + REVISION "200108300000Z" + DESCRIPTION + "Added c10000(10) as values for ciscoEnvMonPresent" + REVISION "200108160000Z" + DESCRIPTION + "Added cat4000(9) as values for ciscoEnvMonPresent" + REVISION "200105070000Z" + DESCRIPTION + "Added cat6000(7),ubr7200(8) + as values for ciscoEnvMonPresent" + REVISION "200001310000Z" + DESCRIPTION + "Add notFunctioning to CiscoEnvMonState. + " + REVISION "9810220000Z" + DESCRIPTION + "Renamed enumerated value internalRPS(5) as + internalRedundant(5) and added description for + ciscoEnvMonSupplySource enumerated values. + " + REVISION "9808050000Z" + DESCRIPTION + "Add enumerated value internalRPS(5) to + ciscoEnvMonSupplySource. + " + REVISION "9611120000Z" + DESCRIPTION + "Add monitoring support for c3600 series router" + REVISION "9508150000Z" + DESCRIPTION + "Specify a correct (non-negative) range for several + index objects." + REVISION "9503130000Z" + DESCRIPTION + "Miscellaneous changes including monitoring support + for c7000 series redundant power supplies." + + ::= { ciscoMgmt 13 } + + +CiscoEnvMonState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the state of a device being monitored. + Valid values are: + + normal(1): the environment is good, such as low + temperature. + + warning(2): the environment is bad, such as temperature + above normal operation range but not too + high. + + critical(3): the environment is very bad, such as + temperature much higher than normal + operation limit. + + shutdown(4): the environment is the worst, the system + should be shutdown immediately. + + notPresent(5): the environmental monitor is not present, + such as temperature sensors do not exist. + + notFunctioning(6): the environmental monitor does not + function properly, such as a temperature + sensor generates a abnormal data like + 1000 C. + " + SYNTAX INTEGER { + normal(1), + warning(2), + critical(3), + shutdown(4), + notPresent(5), + notFunctioning(6) + } + +CiscoSignedGauge ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the current value of an entity, as a signed + integer." + SYNTAX Integer32 + +ciscoEnvMonObjects OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 1 } + +ciscoEnvMonPresent OBJECT-TYPE + SYNTAX INTEGER { + oldAgs (1), + ags (2), + c7000 (3), + ci (4), + cAccessMon (6), + cat6000 (7), + ubr7200 (8), + cat4000 (9), + c10000 (10), + osr7600(11), + c7600 (12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of environmental monitor located in the chassis. + An oldAgs environmental monitor card is identical to an ags + environmental card except that it is not capable of supplying + data, and hence no instance of the remaining objects in this + MIB will be returned in response to an SNMP query. Note that + only a firmware upgrade is required to convert an oldAgs into + an ags card." + ::= { ciscoEnvMonObjects 1 } + + +ciscoEnvMonVoltageStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CiscoEnvMonVoltageStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of voltage status maintained by the environmental + monitor." + ::= { ciscoEnvMonObjects 2 } + +ciscoEnvMonVoltageStatusEntry OBJECT-TYPE + SYNTAX CiscoEnvMonVoltageStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the voltage status table, representing the status + of the associated testpoint maintained by the environmental + monitor." + INDEX { ciscoEnvMonVoltageStatusIndex } + ::= { ciscoEnvMonVoltageStatusTable 1 } + +CiscoEnvMonVoltageStatusEntry ::= + SEQUENCE { + ciscoEnvMonVoltageStatusIndex Integer32 (0..2147483647), + ciscoEnvMonVoltageStatusDescr DisplayString, + ciscoEnvMonVoltageStatusValue CiscoSignedGauge, + ciscoEnvMonVoltageThresholdLow Integer32, + ciscoEnvMonVoltageThresholdHigh Integer32, + ciscoEnvMonVoltageLastShutdown Integer32, + ciscoEnvMonVoltageState CiscoEnvMonState + } + +ciscoEnvMonVoltageStatusIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index for the testpoint being instrumented. + This index is for SNMP purposes only, and has no + intrinsic meaning." + ::= { ciscoEnvMonVoltageStatusEntry 1 } + +ciscoEnvMonVoltageStatusDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Textual description of the testpoint being instrumented. + This description is a short textual label, suitable as a + human-sensible identification for the rest of the + information in the entry." + ::= { ciscoEnvMonVoltageStatusEntry 2 } + +ciscoEnvMonVoltageStatusValue OBJECT-TYPE + SYNTAX CiscoSignedGauge + UNITS "millivolts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current measurement of the testpoint being instrumented." + ::= { ciscoEnvMonVoltageStatusEntry 3 } + +ciscoEnvMonVoltageThresholdLow OBJECT-TYPE + SYNTAX Integer32 + UNITS "millivolts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The lowest value that the associated instance of the object + ciscoEnvMonVoltageStatusValue may obtain before an emergency + shutdown of the managed device is initiated." + ::= { ciscoEnvMonVoltageStatusEntry 4 } + +ciscoEnvMonVoltageThresholdHigh OBJECT-TYPE + SYNTAX Integer32 + UNITS "millivolts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The highest value that the associated instance of the object + ciscoEnvMonVoltageStatusValue may obtain before an emergency + shutdown of the managed device is initiated." + ::= { ciscoEnvMonVoltageStatusEntry 5 } + +ciscoEnvMonVoltageLastShutdown OBJECT-TYPE + SYNTAX Integer32 + UNITS "millivolts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the associated instance of the object + ciscoEnvMonVoltageStatusValue at the time an emergency + shutdown of the managed device was last initiated. This + value is stored in non-volatile RAM and hence is able to + survive the shutdown." + ::= { ciscoEnvMonVoltageStatusEntry 6 } + +ciscoEnvMonVoltageState OBJECT-TYPE + SYNTAX CiscoEnvMonState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the testpoint being instrumented." + ::= { ciscoEnvMonVoltageStatusEntry 7 } + + + +ciscoEnvMonTemperatureStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CiscoEnvMonTemperatureStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of ambient temperature status maintained by the + environmental monitor." + ::= { ciscoEnvMonObjects 3 } + +ciscoEnvMonTemperatureStatusEntry OBJECT-TYPE + SYNTAX CiscoEnvMonTemperatureStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the ambient temperature status table, representing + the status of the associated testpoint maintained by the + environmental monitor." + INDEX { ciscoEnvMonTemperatureStatusIndex } + ::= { ciscoEnvMonTemperatureStatusTable 1 } + +CiscoEnvMonTemperatureStatusEntry ::= + SEQUENCE { + ciscoEnvMonTemperatureStatusIndex Integer32 (0..2147483647), + ciscoEnvMonTemperatureStatusDescr DisplayString, + ciscoEnvMonTemperatureStatusValue Gauge32, + ciscoEnvMonTemperatureThreshold Integer32, + ciscoEnvMonTemperatureLastShutdown Integer32, + ciscoEnvMonTemperatureState CiscoEnvMonState + } + + +ciscoEnvMonTemperatureStatusIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index for the testpoint being instrumented. + This index is for SNMP purposes only, and has no + intrinsic meaning." + ::= { ciscoEnvMonTemperatureStatusEntry 1 } + +ciscoEnvMonTemperatureStatusDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Textual description of the testpoint being instrumented. + This description is a short textual label, suitable as a + human-sensible identification for the rest of the + information in the entry." + ::= { ciscoEnvMonTemperatureStatusEntry 2 } + +ciscoEnvMonTemperatureStatusValue OBJECT-TYPE + SYNTAX Gauge32 + UNITS "degrees Celsius" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current measurement of the testpoint being instrumented." + ::= { ciscoEnvMonTemperatureStatusEntry 3 } + +ciscoEnvMonTemperatureThreshold OBJECT-TYPE + SYNTAX Integer32 + UNITS "degrees Celsius" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The highest value that the associated instance of the + object ciscoEnvMonTemperatureStatusValue may obtain + before an emergency shutdown of the managed device is + initiated." + ::= { ciscoEnvMonTemperatureStatusEntry 4 } + +ciscoEnvMonTemperatureLastShutdown OBJECT-TYPE + SYNTAX Integer32 + UNITS "degrees Celsius" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the associated instance of the object + ciscoEnvMonTemperatureStatusValue at the time an emergency + shutdown of the managed device was last initiated. This + value is stored in non-volatile RAM and hence is able to + survive the shutdown." + ::= { ciscoEnvMonTemperatureStatusEntry 5 } + +ciscoEnvMonTemperatureState OBJECT-TYPE + SYNTAX CiscoEnvMonState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the testpoint being instrumented." + ::= { ciscoEnvMonTemperatureStatusEntry 6 } + + + +ciscoEnvMonFanStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CiscoEnvMonFanStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of fan status maintained by the environmental + monitor." + ::= { ciscoEnvMonObjects 4 } + +ciscoEnvMonFanStatusEntry OBJECT-TYPE + SYNTAX CiscoEnvMonFanStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the fan status table, representing the status of + the associated fan maintained by the environmental monitor." + INDEX { ciscoEnvMonFanStatusIndex } + ::= { ciscoEnvMonFanStatusTable 1 } + +CiscoEnvMonFanStatusEntry ::= + SEQUENCE { + ciscoEnvMonFanStatusIndex Integer32 (0..2147483647), + ciscoEnvMonFanStatusDescr DisplayString, + ciscoEnvMonFanState CiscoEnvMonState + } + +ciscoEnvMonFanStatusIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index for the fan being instrumented. + This index is for SNMP purposes only, and has no + intrinsic meaning." + ::= { ciscoEnvMonFanStatusEntry 1 } + +ciscoEnvMonFanStatusDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Textual description of the fan being instrumented. + This description is a short textual label, suitable as a + human-sensible identification for the rest of the + information in the entry." + ::= { ciscoEnvMonFanStatusEntry 2 } + +ciscoEnvMonFanState OBJECT-TYPE + SYNTAX CiscoEnvMonState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the fan being instrumented." + ::= { ciscoEnvMonFanStatusEntry 3 } + + + +ciscoEnvMonSupplyStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CiscoEnvMonSupplyStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of power supply status maintained by the + environmental monitor card." + ::= { ciscoEnvMonObjects 5 } + +ciscoEnvMonSupplyStatusEntry OBJECT-TYPE + SYNTAX CiscoEnvMonSupplyStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the power supply status table, representing the + status of the associated power supply maintained by the + environmental monitor card." + INDEX { ciscoEnvMonSupplyStatusIndex } + ::= { ciscoEnvMonSupplyStatusTable 1 } + +CiscoEnvMonSupplyStatusEntry ::= + SEQUENCE { + ciscoEnvMonSupplyStatusIndex Integer32 (0..2147483647), + ciscoEnvMonSupplyStatusDescr DisplayString, + ciscoEnvMonSupplyState CiscoEnvMonState, + ciscoEnvMonSupplySource INTEGER + } + +ciscoEnvMonSupplyStatusIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Unique index for the power supply being instrumented. + This index is for SNMP purposes only, and has no + intrinsic meaning." + ::= { ciscoEnvMonSupplyStatusEntry 1 } + +ciscoEnvMonSupplyStatusDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Textual description of the power supply being instrumented. + This description is a short textual label, suitable as a + human-sensible identification for the rest of the + information in the entry." + ::= { ciscoEnvMonSupplyStatusEntry 2 } + +ciscoEnvMonSupplyState OBJECT-TYPE + SYNTAX CiscoEnvMonState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the power supply being instrumented." + ::= { ciscoEnvMonSupplyStatusEntry 3 } + +ciscoEnvMonSupplySource OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ac(2), + dc(3), + externalPowerSupply(4), + internalRedundant(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply source. + unknown - Power supply source unknown + ac - AC power supply + dc - DC power supply + externalPowerSupply - External power supply + internalRedundant - Internal redundant power supply + " + ::= { ciscoEnvMonSupplyStatusEntry 4 } + +ciscoEnvMonAlarmContacts OBJECT-TYPE + SYNTAX BITS { + minorVisual(0), + majorVisual(1), + criticalVisual(2), + minorAudible(3), + majorAudible(4), + criticalAudible(5), + input(6) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Each bit is set to reflect the respective + alarm being set. The bit will be cleared + when the respective alarm is cleared." + ::= { ciscoEnvMonObjects 6 } + +ciscoEnvMonMIBNotificationEnables OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 2 } + +ciscoEnvMonEnableShutdownNotification OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This variable indicates whether the system + produces the ciscoEnvMonShutdownNotification. A false + value will prevent shutdown notifications + from being generated by this system." + DEFVAL { false } + ::= { ciscoEnvMonMIBNotificationEnables 1 } + +ciscoEnvMonEnableVoltageNotification OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This variable indicates whether the system + produces the ciscoEnvMonVoltageNotification. A false + value will prevent voltage notifications from being + generated by this system. This object is deprecated + in favour of ciscoEnvMonEnableStatChangeNotif." + DEFVAL { false } + ::= { ciscoEnvMonMIBNotificationEnables 2 } + +ciscoEnvMonEnableTemperatureNotification OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This variable indicates whether the system + produces the ciscoEnvMonTemperatureNotification. + A false value prevents temperature notifications + from being sent by this entity. This object is + deprecated in favour of + ciscoEnvMonEnableStatChangeNotif." + DEFVAL { false } + ::= { ciscoEnvMonMIBNotificationEnables 3 } + +ciscoEnvMonEnableFanNotification OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This variable indicates whether the system + produces the ciscoEnvMonFanNotification. + A false value prevents fan notifications + from being sent by this entity. This object is + deprecated in favour of + ciscoEnvMonEnableStatChangeNotif." + DEFVAL { false } + ::= { ciscoEnvMonMIBNotificationEnables 4 } + +ciscoEnvMonEnableRedundantSupplyNotification OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This variable indicates whether the system + produces the ciscoEnvMonRedundantSupplyNotification. + A false value prevents redundant supply notifications + from being generated by this system. This object is + deprecated in favour of + ciscoEnvMonEnableStatChangeNotif." + DEFVAL { false } + ::= { ciscoEnvMonMIBNotificationEnables 5 } + +ciscoEnvMonEnableStatChangeNotif OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This variable indicates whether the system + produces the ciscoEnvMonVoltStatusChangeNotif, + ciscoEnvMonTempStatusChangeNotif, + ciscoEnvMonFanStatusChangeNotif and + ciscoEnvMonSuppStatusChangeNotif. A false value will + prevent these notifications from being generated by + this system." + DEFVAL { false } + ::= { ciscoEnvMonMIBNotificationEnables 6 } + +-- the following two OBJECT IDENTIFIERS are used to define SNMPv2 Notifications +-- that are backward compatible with SNMPv1 Traps. +ciscoEnvMonMIBNotificationPrefix OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 3 } +ciscoEnvMonMIBNotifications OBJECT IDENTIFIER ::= { ciscoEnvMonMIBNotificationPrefix 0 } + +ciscoEnvMonShutdownNotification NOTIFICATION-TYPE + -- no OBJECTS + STATUS current + DESCRIPTION + "A ciscoEnvMonShutdownNotification is sent if the environmental + monitor detects a testpoint reaching a critical state + and is about to initiate a shutdown. This notification + contains no objects so that it may be encoded and sent in the + shortest amount of time possible. Even so, management + applications should not rely on receiving such a notification + as it may not be sent before the shutdown completes." + ::= { ciscoEnvMonMIBNotifications 1 } + + +ciscoEnvMonVoltageNotification NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonVoltageStatusDescr, + ciscoEnvMonVoltageStatusValue, + ciscoEnvMonVoltageState + } + STATUS deprecated + DESCRIPTION + "A ciscoEnvMonVoltageNotification is sent if the voltage + measured at a given testpoint is outside the normal range + for the testpoint (i.e. is at the warning, critical, or + shutdown stage). Since such a notification is usually + generated before the shutdown state is reached, it can + convey more data and has a better chance of being sent + than does the ciscoEnvMonShutdownNotification. + This notification is deprecated in favour of + ciscoEnvMonVoltStatusChangeNotif." + ::= { ciscoEnvMonMIBNotifications 2 } + + +ciscoEnvMonTemperatureNotification NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonTemperatureStatusDescr, + ciscoEnvMonTemperatureStatusValue, + ciscoEnvMonTemperatureState + } + STATUS deprecated + DESCRIPTION + "A ciscoEnvMonTemperatureNotification is sent if the + temperature measured at a given testpoint is outside + the normal range for the testpoint (i.e. is at the warning, + critical, or shutdown stage). Since such a Notification + is usually generated before the shutdown state is reached, + it can convey more data and has a better chance of being + sent than does the ciscoEnvMonShutdownNotification. + This notification is deprecated in favour of + ciscoEnvMonTempStatusChangeNotif." + ::= { ciscoEnvMonMIBNotifications 3 } + + + +ciscoEnvMonFanNotification NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonFanStatusDescr, + ciscoEnvMonFanState + } + STATUS deprecated + DESCRIPTION + "A ciscoEnvMonFanNotification is sent if any one of + the fans in the fan array (where extant) fails. + Since such a notification is usually generated before + the shutdown state is reached, it can convey more + data and has a better chance of being sent + than does the ciscoEnvMonShutdownNotification. + This notification is deprecated in favour of + ciscoEnvMonFanStatusChangeNotif." + ::= { ciscoEnvMonMIBNotifications 4 } + +ciscoEnvMonRedundantSupplyNotification NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonSupplyStatusDescr, + ciscoEnvMonSupplyState + } + STATUS deprecated + DESCRIPTION + "A ciscoEnvMonRedundantSupplyNotification is sent if + the redundant power supply (where extant) fails. + Since such a notification is usually generated before + the shutdown state is reached, it can convey more + data and has a better chance of being sent + than does the ciscoEnvMonShutdownNotification. + This notification is deprecated in favour of + ciscoEnvMonSuppStatusChangeNotif." + ::= { ciscoEnvMonMIBNotifications 5 } + +ciscoEnvMonVoltStatusChangeNotif NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonVoltageStatusDescr, + ciscoEnvMonVoltageStatusValue, + ciscoEnvMonVoltageState + } + STATUS current + DESCRIPTION + "A ciscoEnvMonVoltStatusChangeNotif is sent if there is + change in the state of a device being monitored + by ciscoEnvMonVoltageState." + ::= { ciscoEnvMonMIBNotifications 6 } + +ciscoEnvMonTempStatusChangeNotif NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonTemperatureStatusDescr, + ciscoEnvMonTemperatureStatusValue, + ciscoEnvMonTemperatureState + } + STATUS current + DESCRIPTION + "A ciscoEnvMonTempStatusChangeNotif is sent if there + is change in the state of a device being monitored + by ciscoEnvMonTemperatureState." + ::= { ciscoEnvMonMIBNotifications 7 } + +ciscoEnvMonFanStatusChangeNotif NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonFanStatusDescr, + ciscoEnvMonFanState + } + STATUS current + DESCRIPTION + "A ciscoEnvMonFanStatusChangeNotif is sent if there + is change in the state of a device being monitored + by ciscoEnvMonFanState." + ::= { ciscoEnvMonMIBNotifications 8 } + +ciscoEnvMonSuppStatusChangeNotif NOTIFICATION-TYPE + OBJECTS { + ciscoEnvMonSupplyStatusDescr, + ciscoEnvMonSupplyState + } + STATUS current + DESCRIPTION + "A ciscoEnvMonSupplyStatChangeNotif is sent if there + is change in the state of a device being monitored + by ciscoEnvMonSupplyState." + ::= { ciscoEnvMonMIBNotifications 9 } + +-- conformance information + +ciscoEnvMonMIBConformance OBJECT IDENTIFIER ::= { ciscoEnvMonMIB 4 } +ciscoEnvMonMIBCompliances OBJECT IDENTIFIER ::= { ciscoEnvMonMIBConformance 1 } +ciscoEnvMonMIBGroups OBJECT IDENTIFIER ::= { ciscoEnvMonMIBConformance 2 } + + +-- compliance statements + +ciscoEnvMonMIBCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for entities which implement + the Cisco Environmental Monitor MIB. This is + deprecated and new compliance + ciscoEnvMonMIBComplianceRev1 is added." + MODULE -- this module + MANDATORY-GROUPS { ciscoEnvMonMIBGroup } + ::= { ciscoEnvMonMIBCompliances 1 } + +ciscoEnvMonMIBComplianceRev1 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for entities which implement + the Cisco Environmental Monitor MIB." + MODULE -- this module + MANDATORY-GROUPS { ciscoEnvMonMIBGroupRev, + ciscoEnvMonMIBNotifGroup } + + GROUP ciscoEnvMonEnableStatChangeGroup + DESCRIPTION + "The ciscoEnvMonEnableStatChangeGroup is optional. + This group is applicable for implementations which + need status change notifications for environmental + monitoring." + + GROUP ciscoEnvMonStatChangeNotifGroup + DESCRIPTION + "The ciscoEnvMonStatChangeNotifGroup is optional. + This group is applicable for implementations which + need status change notifications for environmental + monitoring." + + ::= { ciscoEnvMonMIBCompliances 2 } + +-- units of conformance + +ciscoEnvMonMIBGroup OBJECT-GROUP + OBJECTS { + ciscoEnvMonPresent, + + ciscoEnvMonVoltageStatusDescr, + ciscoEnvMonVoltageStatusValue, + ciscoEnvMonVoltageThresholdLow, + ciscoEnvMonVoltageThresholdHigh, + ciscoEnvMonVoltageLastShutdown, + ciscoEnvMonVoltageState, + + ciscoEnvMonTemperatureStatusDescr, + ciscoEnvMonTemperatureStatusValue, + ciscoEnvMonTemperatureThreshold, + ciscoEnvMonTemperatureLastShutdown, + ciscoEnvMonTemperatureState, + + ciscoEnvMonFanStatusDescr, + ciscoEnvMonFanState, + + ciscoEnvMonSupplyStatusDescr, + ciscoEnvMonSupplyState, + ciscoEnvMonSupplySource, + + ciscoEnvMonAlarmContacts, + + ciscoEnvMonEnableShutdownNotification, + ciscoEnvMonEnableVoltageNotification, + ciscoEnvMonEnableTemperatureNotification, + ciscoEnvMonEnableFanNotification, + ciscoEnvMonEnableRedundantSupplyNotification + + } + STATUS deprecated + DESCRIPTION + "A collection of objects providing environmental + monitoring capability to a cisco chassis. This group + is deprecated in favour of ciscoEnvMonMIBGroupRev." + ::= { ciscoEnvMonMIBGroups 1 } + +ciscoEnvMonMIBGroupRev OBJECT-GROUP + OBJECTS { + ciscoEnvMonPresent, + + ciscoEnvMonVoltageStatusDescr, + ciscoEnvMonVoltageStatusValue, + ciscoEnvMonVoltageThresholdLow, + ciscoEnvMonVoltageThresholdHigh, + ciscoEnvMonVoltageLastShutdown, + ciscoEnvMonVoltageState, + + ciscoEnvMonTemperatureStatusDescr, + ciscoEnvMonTemperatureStatusValue, + ciscoEnvMonTemperatureThreshold, + ciscoEnvMonTemperatureLastShutdown, + ciscoEnvMonTemperatureState, + + ciscoEnvMonFanStatusDescr, + ciscoEnvMonFanState, + + ciscoEnvMonSupplyStatusDescr, + ciscoEnvMonSupplyState, + ciscoEnvMonSupplySource, + + ciscoEnvMonAlarmContacts, + + ciscoEnvMonEnableShutdownNotification + + } + STATUS current + DESCRIPTION + "A collection of objects providing environmental + monitoring capability to a cisco chassis." + ::= { ciscoEnvMonMIBGroups 2 } + +ciscoEnvMonEnableStatChangeGroup OBJECT-GROUP + OBJECTS { + ciscoEnvMonEnableStatChangeNotif + } + STATUS current + DESCRIPTION + "A collection of objects providing enabling/disabling + of the status change notifications for environmental + monitoring." + ::= { ciscoEnvMonMIBGroups 3 } + +ciscoEnvMonMIBNotifGroup NOTIFICATION-GROUP + NOTIFICATIONS { + ciscoEnvMonShutdownNotification + } + STATUS current + DESCRIPTION + "A notification group providing shutdown notification + for environmental monitoring. " + ::= { ciscoEnvMonMIBGroups 4 } + +ciscoEnvMonStatChangeNotifGroup NOTIFICATION-GROUP + NOTIFICATIONS { + ciscoEnvMonVoltStatusChangeNotif, + ciscoEnvMonTempStatusChangeNotif, + ciscoEnvMonFanStatusChangeNotif, + ciscoEnvMonSuppStatusChangeNotif + } + STATUS current + DESCRIPTION + "A collection of notifications providing the status + change for environmental monitoring." + ::= { ciscoEnvMonMIBGroups 5 } + +ciscoEnvMonMIBMiscNotifGroup NOTIFICATION-GROUP + NOTIFICATIONS { + ciscoEnvMonVoltageNotification, + ciscoEnvMonTemperatureNotification, + ciscoEnvMonFanNotification, + ciscoEnvMonRedundantSupplyNotification + } + STATUS deprecated + DESCRIPTION + "A collection of various notifications for the + enviromental monitoring mib module. The notifications + the group and the group are both in deprecated state. + The notifications in the group were deprecated in + favour of notifications in + ciscoEnvMonStatChangeNotifGroup." + ::= { ciscoEnvMonMIBGroups 6 } + +END + diff --git a/pandora_console/attachment/mibs/CISCO-MEMORY-POOL-MIB b/pandora_console/attachment/mibs/CISCO-MEMORY-POOL-MIB new file mode 100644 index 0000000000..be4db4c710 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-MEMORY-POOL-MIB @@ -0,0 +1,227 @@ +-- ***************************************************************** +-- CISCO-MEMORY-POOL-MIB +-- +-- February 1996, Jeffrey T. Johnson +-- +-- Copyright (c) 1996 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** + +CISCO-MEMORY-POOL-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-TYPE, + Integer32, + Gauge32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, + DisplayString, + TruthValue + FROM SNMPv2-TC + MODULE-COMPLIANCE, + OBJECT-GROUP + FROM SNMPv2-CONF + ciscoMgmt + FROM CISCO-SMI; + +ciscoMemoryPoolMIB MODULE-IDENTITY + LAST-UPDATED "9602120000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "MIB module for monitoring memory pools" + ::= { ciscoMgmt 48 } + +CiscoMemoryPoolTypes ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the different types of memory pools that + may be present in a managed device. Memory pools can + be roughly categorized into two groups, predefined + pools and dynamic pools. The following pool types + are currently predefined: + 1: processor memory + 2: i/o memory + 3: pci memory + 4: fast memory + 5: multibus memory + + Dynamic pools will have a pool type value greater than + any of the predefined types listed above. + + Note that only the processor pool is required to be + supported by all devices. Support for other pool types + is dependent on the device being managed." + SYNTAX Integer32 (1..65535) + +ciscoMemoryPoolObjects OBJECT IDENTIFIER ::= { ciscoMemoryPoolMIB 1 } + +ciscoMemoryPoolTable OBJECT-TYPE + SYNTAX SEQUENCE OF CiscoMemoryPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of memory pool monitoring entries." + ::= { ciscoMemoryPoolObjects 1 } + +ciscoMemoryPoolEntry OBJECT-TYPE + SYNTAX CiscoMemoryPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the memory pool monitoring table." + INDEX { ciscoMemoryPoolType } + ::= { ciscoMemoryPoolTable 1 } + +CiscoMemoryPoolEntry ::= + SEQUENCE { + ciscoMemoryPoolType CiscoMemoryPoolTypes, + ciscoMemoryPoolName DisplayString, + ciscoMemoryPoolAlternate Integer32, + ciscoMemoryPoolValid TruthValue, + ciscoMemoryPoolUsed Gauge32, + ciscoMemoryPoolFree Gauge32, + ciscoMemoryPoolLargestFree Gauge32 + } + +ciscoMemoryPoolType OBJECT-TYPE + SYNTAX CiscoMemoryPoolTypes + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The type of memory pool for which this entry + contains information." + ::= { ciscoMemoryPoolEntry 1 } + +ciscoMemoryPoolName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name assigned to the memory pool. This + object is suitable for output to a human operator, + and may also be used to distinguish among the various + pool types, especially among dynamic pools." + ::= { ciscoMemoryPoolEntry 2 } + +ciscoMemoryPoolAlternate OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether or not this memory pool has an + alternate pool configured. Alternate pools are + used for fallback when the current pool runs out + of memory. + + If an instance of this object has a value of zero, + then this pool does not have an alternate. Otherwise + the value of this object is the same as the value of + ciscoMemoryPoolType of the alternate pool." + ::= { ciscoMemoryPoolEntry 3 } + +ciscoMemoryPoolValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether or not the remaining objects in + this entry contain accurate data. If an instance + of this object has the value false (which in and of + itself indicates an internal error condition), the + values of the remaining objects in the conceptual row + may contain inaccurate information (specifically, the + reported values may be less than the actual values)." + ::= { ciscoMemoryPoolEntry 4 } + +ciscoMemoryPoolUsed OBJECT-TYPE + SYNTAX Gauge32 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of bytes from the memory pool + that are currently in use by applications on the + managed device." + ::= { ciscoMemoryPoolEntry 5 } + +ciscoMemoryPoolFree OBJECT-TYPE + SYNTAX Gauge32 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of bytes from the memory pool + that are currently unused on the managed device. + + Note that the sum of ciscoMemoryPoolUsed and + ciscoMemoryPoolFree is the total amount of memory + in the pool" + ::= { ciscoMemoryPoolEntry 6 } + +ciscoMemoryPoolLargestFree OBJECT-TYPE + SYNTAX Gauge32 + UNITS "bytes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the largest number of contiguous bytes + from the memory pool that are currently unused on + the managed device." + ::= { ciscoMemoryPoolEntry 7 } + +-- notifications + +ciscoMemoryPoolNotifications OBJECT IDENTIFIER ::= { ciscoMemoryPoolMIB 2 } + +-- (no notifications are currently defined) + + +-- conformance information + +ciscoMemoryPoolConformance OBJECT IDENTIFIER ::= { ciscoMemoryPoolMIB 3 } +ciscoMemoryPoolCompliances OBJECT IDENTIFIER ::= { ciscoMemoryPoolConformance 1 } +ciscoMemoryPoolGroups OBJECT IDENTIFIER ::= { ciscoMemoryPoolConformance 2 } + + +-- compliance statements + +ciscoMemoryPoolCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for entities which implement + the Cisco Memory Pool MIB" + MODULE -- this module + MANDATORY-GROUPS { ciscoMemoryPoolGroup } + ::= { ciscoMemoryPoolCompliances 1 } + + +-- units of conformance + +ciscoMemoryPoolGroup OBJECT-GROUP + OBJECTS { + ciscoMemoryPoolName, + ciscoMemoryPoolAlternate, + ciscoMemoryPoolValid, + ciscoMemoryPoolUsed, + ciscoMemoryPoolFree, + ciscoMemoryPoolLargestFree + } + STATUS current + DESCRIPTION + "A collection of objects providing memory pool monitoring." + ::= { ciscoMemoryPoolGroups 1 } + + +END diff --git a/pandora_console/attachment/mibs/CISCO-MIB b/pandora_console/attachment/mibs/CISCO-MIB new file mode 100644 index 0000000000..3bcf5a5287 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-MIB @@ -0,0 +1,4381 @@ + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- cisco MIB* + + -- Wed Apr 8 14:37:15 1992 + + + -- cisco Systems, Inc. + -- 1525 O'Brien + -- Menlo Park, CA 94025 + + -- customer-service@cisco.com + + + + -- 1. Introduction + + -- This memo describes the variables that are implemented for + -- the cisco Systems, Inc. set of products including the + -- Gateway Server, Terminal Server, Trouter, and Protocol + -- Translator. The document relies upon the Structure of + -- Management Information (SMI), RFC1155. It is presented in + -- a format described in RFC1212, the Concise MIB document. + + -- This document describes the cisco local Management + -- Information Base (MIB) variables for + -- version 8.3 of the system software. + + + -- 2. Object Definitions + + CISCO-MIB { iso org(3) dod(6) internet(1) private(4) + enterprises(1) 9 } + + DEFINITIONS ::= BEGIN + + IMPORTS + enterprises, OBJECT-TYPE, NetworkAddress, IpAddress, + Counter, Gauge, TimeTicks + FROM RFC1155-SMI + ifIndex, ipAdEntAddr, ipRouteDest, tcpConnLocalAddress, + tcpConnLocalPort, tcpConnRemAddress, tcpConnRemPort + FROM RFC1213-MIB; + + + -- *This file is machine generated. Do not edit. + + + + + + + -- cisco MIB [Page 1] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + cisco OBJECT IDENTIFIER ::= { enterprises 9 } + + products OBJECT IDENTIFIER ::= { cisco 1 } + local OBJECT IDENTIFIER ::= { cisco 2 } + temporary OBJECT IDENTIFIER ::= { cisco 3 } + + gateway-server OBJECT IDENTIFIER ::= { products 1 } + terminal-server OBJECT IDENTIFIER ::= { products 2 } + trouter OBJECT IDENTIFIER ::= { products 3 } + protocol-translator OBJECT IDENTIFIER ::= { products 4 } + igs OBJECT IDENTIFIER ::= { products 5 } + + lsystem OBJECT IDENTIFIER ::= { local 1 } + linterfaces OBJECT IDENTIFIER ::= { local 2 } + lat OBJECT IDENTIFIER ::= { local 3 } + lip OBJECT IDENTIFIER ::= { local 4 } + licmp OBJECT IDENTIFIER ::= { local 5 } + ltcp OBJECT IDENTIFIER ::= { local 6 } + ludp OBJECT IDENTIFIER ::= { local 7 } + legp OBJECT IDENTIFIER ::= { local 8 } + lts OBJECT IDENTIFIER ::= { local 9 } + + decnet OBJECT IDENTIFIER ::= { temporary 1 } + xns OBJECT IDENTIFIER ::= { temporary 2 } + appletalk OBJECT IDENTIFIER ::= { temporary 3 } + novell OBJECT IDENTIFIER ::= { temporary 4 } + vines OBJECT IDENTIFIER ::= { temporary 5 } + + + + -- Product Section + + -- The product section contains the different product's + -- object identifiers. Each product has a unique object + -- identifier allocated from this section which is referenced + -- by the sysObjectID variable from RFC1156. + + -- gateway-server OBJECT IDENTIFIER ::= { products 1 } + -- terminal-server OBJECT IDENTIFIER ::= { products 2 } + -- trouter OBJECT IDENTIFIER ::= { products 3 } + -- protocol-translator OBJECT IDENTIFIER ::= { products 4 } + -- igs OBJECT IDENTIFIER ::= { products 5 } + + -- New products will be added at the end of this list. + + + + + + + -- cisco MIB [Page 2] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- Local Variable Section + + -- This section describes the local variables within the cisco + -- product line. Groups may or may not be present depending + -- on the software options present in the managed device. + + + -- Local System Group + + -- This group is present in all products. + + romId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains a printable octet + string which contains the System Bootstrap + description and version identification." + ::= { lsystem 1 } + + whyReload OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains a printable octet + string which contains the reason why the + system was last restarted." + ::= { lsystem 2 } + + hostName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable represents the name of the + host." + ::= { lsystem 3 } + + domainName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + + + + + + -- cisco MIB [Page 3] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + "This variable is the domain portion of the + domain name of the host." + ::= { lsystem 4 } + + authAddr OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains the last SNMP + authorization failure IP address." + ::= { lsystem 5 } + + bootHost OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the IP address of the host that + supplied the currently running software." + ::= { lsystem 6 } + + ping OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Supplies a way to ping a host from this + entity. The ping variable takes the following + instance identifiers: 1 - IP protocol ping. + IP - address to ping. integer - count of + packets to send. integer - size of ping + packet. integer - timeout delay between + packets." + ::= { lsystem 7 } + + freeMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Return the amount of free memory in bytes." + ::= { lsystem 8 } + + bufferElFree OBJECT-TYPE + + + + + + -- cisco MIB [Page 4] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free buffer + elements." + ::= { lsystem 9 } + + bufferElMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of buffer + elements." + ::= { lsystem 10 } + + bufferElHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of buffer element hits." + ::= { lsystem 11 } + + bufferElMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of buffer element + misses." + ::= { lsystem 12 } + + bufferElCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of buffer element + creates." + ::= { lsystem 13 } + + bufferSmSize OBJECT-TYPE + SYNTAX INTEGER + + + + + + -- cisco MIB [Page 5] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of small buffers." + ::= { lsystem 14 } + + bufferSmTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of small buffers." + ::= { lsystem 15 } + + bufferSmFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free small buffers." + ::= { lsystem 16 } + + bufferSmMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of small + buffers." + ::= { lsystem 17 } + + bufferSmHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer hits." + ::= { lsystem 18 } + + bufferSmMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer misses." + + + + + + -- cisco MIB [Page 6] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ::= { lsystem 19 } + + bufferSmTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer trims." + ::= { lsystem 20 } + + bufferSmCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer + creates." + ::= { lsystem 21 } + + bufferMdSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of medium buffers." + ::= { lsystem 22 } + + bufferMdTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of medium + buffers." + ::= { lsystem 23 } + + bufferMdFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free medium buffers." + ::= { lsystem 24 } + + bufferMdMax OBJECT-TYPE + + + + + + -- cisco MIB [Page 7] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of medium + buffers." + ::= { lsystem 25 } + + bufferMdHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer hits." + ::= { lsystem 26 } + + bufferMdMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer + misses." + ::= { lsystem 27 } + + bufferMdTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer trims." + ::= { lsystem 28 } + + bufferMdCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer + creates." + ::= { lsystem 29 } + + bufferBgSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + + + + + + -- cisco MIB [Page 8] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "Contains the size of big buffers." + ::= { lsystem 30 } + + bufferBgTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of big buffers." + ::= { lsystem 31 } + + bufferBgFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free big buffers." + ::= { lsystem 32 } + + bufferBgMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of big buffers." + ::= { lsystem 33 } + + bufferBgHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer hits." + ::= { lsystem 34 } + + bufferBgMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer misses." + ::= { lsystem 35 } + + + + + + + -- cisco MIB [Page 9] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + bufferBgTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer trims." + ::= { lsystem 36 } + + bufferBgCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer creates." + ::= { lsystem 37 } + + bufferLgSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of large buffers." + ::= { lsystem 38 } + + bufferLgTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of large buffers." + ::= { lsystem 39 } + + bufferLgFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free large buffers." + ::= { lsystem 40 } + + bufferLgMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + + + + + -- cisco MIB [Page 10] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + "Contains the maximum number of large + buffers." + ::= { lsystem 41 } + + bufferLgHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer hits." + ::= { lsystem 42 } + + bufferLgMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer misses." + ::= { lsystem 43 } + + bufferLgTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer trims." + ::= { lsystem 44 } + + bufferLgCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer + creates." + ::= { lsystem 45 } + + bufferFail OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of the number of buffer allocation + failures." + ::= { lsystem 46 } + + + + + + -- cisco MIB [Page 11] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + bufferNoMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of the number of buffer create + failures due to no free memory." + ::= { lsystem 47 } + + netConfigIP OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the IP address of the host that + supplied the network-confg file." + ::= { lsystem 48 } + + netConfigName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the name of the network configuration + file." + ::= { lsystem 49 } + + netConfigSet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Permit the loading of a new network-confg + file using TFTP." + ::= { lsystem 50 } + + hostConfigIP OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the IP address of the host that + provided the host-config file." + ::= { lsystem 51 } + + + + + + + -- cisco MIB [Page 12] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + hostConfigName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the name of the last configured + host-confg file." + ::= { lsystem 52 } + + hostConfigSet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Permit the loading of a new host-confg file + using TFTP." + ::= { lsystem 53 } + + writeMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Write configuration into non-volatile memory + / erase config memory if 0" + ::= { lsystem 54 } + + writeNet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Write configuration to host using TFTP." + ::= { lsystem 55 } + + busyPer OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CPU busy percentage in the last 5 second + period. Not the last 5 realtime seconds but + the last 5 second period in the scheduler." + ::= { lsystem 56 } + + + + + + + -- cisco MIB [Page 13] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + avgBusy1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1 minute exponentially-decayed moving + average of the CPU busy percentage." + ::= { lsystem 57 } + + avgBusy5 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5 minute exponentially-decayed moving + average of the CPU busy percentage." + ::= { lsystem 58 } + + idleCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "cisco internal variable. not to be used" + ::= { lsystem 59 } + + idleWired OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "cisco internal variable. not to be used" + ::= { lsystem 60 } + + ciscoContactInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "cisco's name and address" + ::= { lsystem 61 } + + bufferHgSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + + + + + + -- cisco MIB [Page 14] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "Contains the size of huge buffers." + ::= { lsystem 62 } + + bufferHgTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of huge buffers." + ::= { lsystem 63 } + + bufferHgFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free huge buffers." + ::= { lsystem 64 } + + bufferHgMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of huge + buffers." + ::= { lsystem 65 } + + bufferHgHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer hits." + ::= { lsystem 66 } + + bufferHgMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer misses." + ::= { lsystem 67 } + + + + + + -- cisco MIB [Page 15] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + bufferHgTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer trims." + ::= { lsystem 68 } + + bufferHgCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer creates." + ::= { lsystem 69 } + + + -- Local Interface Group + + -- This group is present in all products. + + + -- Local Interface Table + + -- This group provides additional objects to the table + -- defined by RFC1156. + + lifTable OBJECT-TYPE + SYNTAX SEQUENCE OF LIfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries." + ::= { linterfaces 1 } + + lifEntry OBJECT-TYPE + SYNTAX LIfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of additional objects in the + cisco interface." + INDEX { ifIndex } + ::= { lifTable 1 } + + + + + + + -- cisco MIB [Page 16] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + LIfEntry ::= + SEQUENCE { + locIfHardType + DisplayString, + locIfLineProt + INTEGER, + locIfLastIn + INTEGER, + locIfLastOut + INTEGER, + locIfLastOutHang + INTEGER, + locIfInBitsSec + INTEGER, + locIfInPktsSec + INTEGER, + locIfOutBitsSec + INTEGER, + locIfOutPktsSec + INTEGER, + locIfInRunts + INTEGER, + locIfInGiants + INTEGER, + locIfInCRC + INTEGER, + locIfInFrame + INTEGER, + locIfInOverrun + INTEGER, + locIfInIgnored + INTEGER, + locIfInAbort + INTEGER, + locIfResets + INTEGER, + locIfRestarts + INTEGER, + locIfKeep + INTEGER, + locIfReason + DisplayString, + locIfCarTrans + INTEGER, + locIfReliab + + + + + + -- cisco MIB [Page 17] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + INTEGER, + locIfDelay + INTEGER, + locIfLoad + INTEGER, + locIfCollisions + INTEGER, + locIfInputQueueDrops + INTEGER, + locIfOutputQueueDrops + INTEGER + } + + + -- The following section describes the components of the + -- table. + + locIfHardType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Returns the type of interface." + ::= { lifEntry 1 } + + locIfLineProt OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether interface line protocol is + up or not." + ::= { lifEntry 2 } + + locIfLastIn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Elapsed time in milliseconds since last + successful line protocol input packet was + received." + ::= { lifEntry 3 } + + locIfLastOut OBJECT-TYPE + + + + + + -- cisco MIB [Page 18] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Elapsed time in milliseconds since last + successful line protocol output packet was + transmitted." + ::= { lifEntry 4 } + + locIfLastOutHang OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Elapsed time in milliseconds since last line + protocol output packet could not be + successfully transmitted." + ::= { lifEntry 5 } + + locIfInBitsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute average of input bits per + second." + ::= { lifEntry 6 } + + locIfInPktsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute average of input packets per + second." + ::= { lifEntry 7 } + + locIfOutBitsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute average of output bits per + second." + ::= { lifEntry 8 } + + + + + + -- cisco MIB [Page 19] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + locIfOutPktsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute average of output packets per + second." + ::= { lifEntry 9 } + + locIfInRunts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of packets input which were smaller + then the allowable physical media permitted." + ::= { lifEntry 10 } + + locIfInGiants OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which were larger + then the physical media permitted." + ::= { lifEntry 11 } + + locIfInCRC OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which had cyclic + redundancy checksum errors." + ::= { lifEntry 12 } + + locIfInFrame OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packet which were + misaligned." + ::= { lifEntry 13 } + + + + + + + -- cisco MIB [Page 20] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + locIfInOverrun OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of input which arrived too quickly for + the to hardware receive." + ::= { lifEntry 14 } + + locIfInIgnored OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which were simply + ignored by this interface." + ::= { lifEntry 15 } + + locIfInAbort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which were aborted." + ::= { lifEntry 16 } + + locIfResets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the interface internally + reset." + ::= { lifEntry 17 } + + locIfRestarts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times interface needed to be + completely restarted." + ::= { lifEntry 18 } + + locIfKeep OBJECT-TYPE + + + + + + -- cisco MIB [Page 21] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether keepalives are enabled on + this interface." + ::= { lifEntry 19 } + + locIfReason OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Reason for interface last status change." + ::= { lifEntry 20 } + + locIfCarTrans OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times interface saw the carrier + signal transition." + ::= { lifEntry 21 } + + locIfReliab OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The reliability of the interface. Used by + IGRP." + ::= { lifEntry 22 } + + locIfDelay OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of delay in microseconds of the + interface. Used by IGRP." + ::= { lifEntry 23 } + + locIfLoad OBJECT-TYPE + SYNTAX INTEGER + + + + + + -- cisco MIB [Page 22] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The loading factor of the interface. Used by + IGRP." + ::= { lifEntry 24 } + + locIfCollisions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of output collisions detected on + this interface." + ::= { lifEntry 25 } + + locIfInputQueueDrops OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets dropped because the + input queue was full." + ::= { lifEntry 26 } + + locIfOutputQueueDrops OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets dropped because the + output queue was full." + ::= { lifEntry 27 } + + -- End of table + + + + -- Local IP Group + + -- This group is present in all products which are using the + -- IP protocol. + + + -- Local IP Address Table + + + + + + -- cisco MIB [Page 23] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- This group provides additional objects to the table + -- defined by RFC1156. + + lipAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF LIpAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of IP address entries." + ::= { lip 1 } + + lipAddrEntry OBJECT-TYPE + SYNTAX LIpAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of additional objects in the + cisco IP implementation." + INDEX { ipAdEntAddr } + ::= { lipAddrTable 1 } + + LIpAddrEntry ::= + SEQUENCE { + locIPHow + DisplayString, + locIPWho + NetworkAddress, + locIPHelper + NetworkAddress, + locIPSecurity + INTEGER, + locIPRedirects + INTEGER, + locIPUnreach + INTEGER + } + + + -- The following section describes the components of the + -- table. + + locIPHow OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 24] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "Method of how this interface obtained its IP + address." + ::= { lipAddrEntry 1 } + + locIPWho OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP address of who supplied this interface + its IP address." + ::= { lipAddrEntry 2 } + + locIPHelper OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP helper address for broadcast forwarding + support." + ::= { lipAddrEntry 3 } + + locIPSecurity OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP security level. See RFC 1038." + ::= { lipAddrEntry 4 } + + locIPRedirects OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether ICMP redirects will be sent + or not." + ::= { lipAddrEntry 5 } + + locIPUnreach OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + + + + + -- cisco MIB [Page 25] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + "Boolean whether ICMP unreachables will be + sent or not." + ::= { lipAddrEntry 6 } + + -- End of table + + + + -- Local IP Routing Table + + -- This group provides additional objects to the table + -- defined by RFC1156. + + lipRoutingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LIpRouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of IP routing entries." + ::= { lip 2 } + + lipRouteEntry OBJECT-TYPE + SYNTAX LIpRouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of additional objects in the + cisco IP routing implementation." + INDEX { ipRouteDest } + ::= { lipRoutingTable 1 } + + LIpRouteEntry ::= + SEQUENCE { + locRtMask + NetworkAddress, + locRtCount + INTEGER, + locRtUses + INTEGER + } + + + -- The following section describes the components of the + -- table. + + + + + + + -- cisco MIB [Page 26] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + locRtMask OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Routing table network mask." + ::= { lipRouteEntry 1 } + + locRtCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of parallel routes within routing + table." + ::= { lipRouteEntry 2 } + + locRtUses OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times this route was used in a + forward operation." + ::= { lipRouteEntry 3 } + + -- End of table + + + actThresh OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Threshold of IP accounting records in use + before IP traffic will be discarded." + ::= { lip 4 } + + actLostPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Lost IP packets due to memory limitations." + ::= { lip 5 } + + + + + + -- cisco MIB [Page 27] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + actLostByts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total bytes of lost IP packets." + ::= { lip 6 } + + + -- Local IP Accounting Table + + -- This group provides access to the cisco IP accounting + -- support. + + lipAccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LIpAccountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of IP accounting entries." + ::= { lip 7 } + + lipAccountEntry OBJECT-TYPE + SYNTAX LIpAccountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of objects necessary for IP + accounting." + INDEX { actSrc, actDst } + ::= { lipAccountingTable 1 } + + LIpAccountEntry ::= + SEQUENCE { + actSrc + NetworkAddress, + actDst + NetworkAddress, + actPkts + INTEGER, + actByts + INTEGER + } + + + + + + + + -- cisco MIB [Page 28] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- The following section describes the components of the + -- table. + + actSrc OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP Source address for host traffic matrix." + ::= { lipAccountEntry 1 } + + actDst OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP Destination address for host traffic + matrix." + ::= { lipAccountEntry 2 } + + actPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of IP packets sent from source to + destination." + ::= { lipAccountEntry 3 } + + actByts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of bytes in IP packets from + source to destination." + ::= { lipAccountEntry 4 } + + -- End of table + + + actAge OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 29] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "The age of the data in the current data + matrix." + ::= { lip 8 } + + + -- Local IP Checkpoint Accounting Table + + -- This group provides access to the cisco + -- IP checkpoint accounting support. + + lipCkAccountingTable OBJECT-TYPE + SYNTAX SEQUENCE OF LIpCkAccountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of IP checkpoint accounting + entries." + ::= { lip 9 } + + lipCkAccountEntry OBJECT-TYPE + SYNTAX LIpCkAccountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of objects necessary for IP + checkpoint accounting." + INDEX { ckactSrc, ckactDst } + ::= { lipCkAccountingTable 1 } + + LIpCkAccountEntry ::= + SEQUENCE { + ckactSrc + NetworkAddress, + ckactDst + NetworkAddress, + ckactPkts + INTEGER, + ckactByts + INTEGER + } + + + -- The following section describes the components of the + -- table. + + + + + + -- cisco MIB [Page 30] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ckactSrc OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP Source address for host in checkpoint + traffic matrix." + ::= { lipCkAccountEntry 1 } + + ckactDst OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IP Destination address for host in + checkpoint traffic matrix." + ::= { lipCkAccountEntry 2 } + + ckactPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of IP packets sent from source to + destination in checkpoint matrix." + ::= { lipCkAccountEntry 3 } + + ckactByts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of bytes in IP packets from + source to destination in checkpoint matrix." + ::= { lipCkAccountEntry 4 } + + -- End of table + + + ckactAge OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Age of data in the checkpoint matrix." + + + + + + -- cisco MIB [Page 31] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ::= { lip 10 } + + actCheckPoint OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Check points the accounting database. This + mib variable must be read and then set with + the same value for the check point to + succeed. The value read and then set will be + incremented after a successful set request" + ::= { lip 11 } + + ipNoaccess OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of packets dropped due to + access control failure." + ::= { lip 12 } + + + -- Local TCP Group + + -- This group is present in all products which are using the + -- TCP protocol. + + + -- Local TCP Connection Table + + -- This group provides additional objects to the table defined + -- by RFC1156. + + ltcpConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF LTcpConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of TCP connection entries." + ::= { ltcp 1 } + + ltcpConnEntry OBJECT-TYPE + SYNTAX LTcpConnEntry + + + + + + -- cisco MIB [Page 32] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of additional objects in the + cisco TCP implementation." + INDEX { tcpConnLocalAddress, tcpConnLocalPort, + tcpConnRemAddress, tcpConnRemPort} + ::= { ltcpConnTable 1 } + + LTcpConnEntry ::= + SEQUENCE { + loctcpConnInBytes + INTEGER, + loctcpConnOutBytes + INTEGER, + loctcpConnInPkts + INTEGER, + loctcpConnOutPkts + INTEGER, + loctcpConnElapsed + TimeTicks + } + + + -- The following section describes the components of the + -- table. + + loctcpConnInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bytes input for this TCP connection." + ::= { ltcpConnEntry 1 } + + loctcpConnOutBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bytes output for this TCP connection." + ::= { ltcpConnEntry 2 } + + loctcpConnInPkts OBJECT-TYPE + SYNTAX INTEGER + + + + + + -- cisco MIB [Page 33] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Packets input for this TCP connection." + ::= { ltcpConnEntry 3 } + + loctcpConnOutPkts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Packets output for this TCP connection." + ::= { ltcpConnEntry 4 } + + loctcpConnElapsed OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "How long this TCP connection has been + established." + ::= { ltcpConnEntry 5 } + + -- End of table + + + + -- Local cisco Terminal Server Group + + -- This group is present in all products which contain + -- asynchronous terminal lines. + + tsLines OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical lines on this device." + ::= { lts 1 } + + + -- Local Terminal Server Line Table + + -- This group contains terminal server specific + -- information on a per line basis. + + + + + + -- cisco MIB [Page 34] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ltsLineTable OBJECT-TYPE + SYNTAX SEQUENCE OF LTsLineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of terminal server line entries." + ::= { lts 2 } + + ltsLineEntry OBJECT-TYPE + SYNTAX LTsLineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of per TTY objects in the + cisco Terminal Server implementation." + INDEX { INTEGER } + ::= { ltsLineTable 1 } + + LTsLineEntry ::= + SEQUENCE { + tsLineActive + INTEGER, + tsLineType + INTEGER, + tsLineAutobaud + INTEGER, + tsLineSpeedin + INTEGER, + tsLineSpeedout + INTEGER, + tsLineFlow + INTEGER, + tsLineModem + INTEGER, + tsLineLoc + DisplayString, + tsLineTerm + DisplayString, + tsLineScrlen + INTEGER, + tsLineScrwid + INTEGER, + tsLineEsc + OCTET STRING, + tsLineTmo + + + + + + -- cisco MIB [Page 35] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + INTEGER, + tsLineSestmo + INTEGER, + tsLineRotary + INTEGER, + tsLineUses + INTEGER, + tsLineNses + INTEGER, + tsLineUser + DisplayString, + tsLineNoise + INTEGER + } + + + -- The following section describes the components of the + -- table. + + tsLineActive OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether this line is active or not." + ::= { ltsLineEntry 1 } + + tsLineType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + console(2), + terminal(3), + line-printer(4), + virtual-terminal(5), + auxiliary(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Type of line." + ::= { ltsLineEntry 2 } + + tsLineAutobaud OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + + + + + + -- cisco MIB [Page 36] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "Boolean whether line will autobaud or not." + ::= { ltsLineEntry 3 } + + tsLineSpeedin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "What input speed the line is running at." + ::= { ltsLineEntry 4 } + + tsLineSpeedout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "What output speed the line is running at." + ::= { ltsLineEntry 5 } + + tsLineFlow OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + none(2), + software-input(3), + software-output(4), + software-both(5), + hardware-input(6), + hardware-output(7), + hardware-both(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "What kind of flow control the line is + using." + ::= { ltsLineEntry 6 } + + tsLineModem OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + none(2), + call-in(3), + call-out(4), + + + + + + -- cisco MIB [Page 37] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + cts-required(5), + rs-is-cd(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "What kind of modem control the line is + using." + ::= { ltsLineEntry 7 } + + tsLineLoc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Describes the line's physical location." + ::= { ltsLineEntry 8 } + + tsLineTerm OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Describes the line's terminal type." + ::= { ltsLineEntry 9 } + + tsLineScrlen OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Length in lines of the screen of terminal + attached to this line." + ::= { ltsLineEntry 10 } + + tsLineScrwid OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Width in characters of the screen of + terminal attached to this line." + ::= { ltsLineEntry 11 } + + tsLineEsc OBJECT-TYPE + + + + + + -- cisco MIB [Page 38] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Escape character used to break out of active + sessions." + ::= { ltsLineEntry 12 } + + tsLineTmo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Line idleness timeout in seconds." + ::= { ltsLineEntry 13 } + + tsLineSestmo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Session idleness timeout in seconds." + ::= { ltsLineEntry 14 } + + tsLineRotary OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Rotary group number the line belongs in." + ::= { ltsLineEntry 15 } + + tsLineUses OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times a connection has been made + to or from this line." + ::= { ltsLineEntry 16 } + + tsLineNses OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 39] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "Current number of sessions in use on this + line." + ::= { ltsLineEntry 17 } + + tsLineUser OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "TACACS user name, if TACACS enabled, of user + on this line." + ::= { ltsLineEntry 18 } + + tsLineNoise OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of garbage characters received when + line inactive." + ::= { ltsLineEntry 19 } + + -- End of table + + + + -- Local Terminal Server Line Session Table + + -- This group contains terminal server specific + -- information on a per line and per session basis. + + ltsLineSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF LTsLineSessionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of terminal server line and session + entries." + ::= { lts 3 } + + ltsLineSessionEntry OBJECT-TYPE + SYNTAX LTsLineSessionEntry + ACCESS not-accessible + STATUS mandatory + + + + + + -- cisco MIB [Page 40] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "A collection of per session and per TTY + objects in the cisco Terminal Server + implementation." + INDEX { INTEGER, INTEGER } + ::= { ltsLineSessionTable 1 } + + LTsLineSessionEntry ::= + SEQUENCE { + tslineSesType + INTEGER, + tslineSesDir + INTEGER, + tslineSesAddr + NetworkAddress, + tslineSesName + DisplayString, + tslineSesCur + INTEGER, + tslineSesIdle + INTEGER + } + + + -- The following section describes the components of the + -- table. + + tslineSesType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + pad(2), + stream(3), + rlogin(4), + telnet(5), + tcp(6), + lat(7), + mop(8), + slip(9), + xremote(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Type of session." + ::= { ltsLineSessionEntry 1 } + + + + + + -- cisco MIB [Page 41] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + tslineSesDir OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + incoming(2), + outgoing(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Direction of session." + ::= { ltsLineSessionEntry 2 } + + tslineSesAddr OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Remote host address of session. [What about + PAD connections?]" + ::= { ltsLineSessionEntry 3 } + + tslineSesName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Remote host name of session." + ::= { ltsLineSessionEntry 4 } + + tslineSesCur OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether session is the currently + active one." + ::= { ltsLineSessionEntry 5 } + + tslineSesIdle OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Time in seconds session has been idle." + ::= { ltsLineSessionEntry 6 } + + + + + + -- cisco MIB [Page 42] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- End of table + + + tsMsgTtyLine OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "tty line to send the message to. -1 will + send it to all tty lines" + ::= { lts 4 } + + tsMsgIntervaltim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Interval between reissuing message in + milliseconds. Minimum non-zero setting is + 10000. 0 will cause the routine to choose its + own intervals becoming more frequent as + MessageDuration gets close to expiring. + 2hr, 1hr, 30min, 5min, 1min" + ::= { lts 5 } + + tsMsgDuration OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Length of time to reissue message in + milliseconds. Minimum non-zero setting is + 10000. A setting of 0 will not repeat the + message." + ::= { lts 6 } + + tsMsgText OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Up to 256 characters that will make up the + message" + ::= { lts 7 } + + tsMsgTmpBanner OBJECT-TYPE + + + + + + -- cisco MIB [Page 43] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER { + no(1), + additive(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Should the message be used as a temporary + banner. 1 - No. 2 - In addition to the normal + banner" + ::= { lts 8 } + + tsMsgSend OBJECT-TYPE + SYNTAX INTEGER { + nothing(1), + reload(2), + messagedone(3), + abort(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Sends the message. The value determines what + to do after the message has completed." + ::= { lts 9 } + + + -- Temporary Variable Section + + -- This section is equivalent to the experimental + -- space defined by the SMI. It contains variables + -- that are useful to have but are beyond cisco's + -- ability to control and maintain. This section can + -- change from release to release without warning. + -- This document controls what is contained here for + -- this version. + + + -- Temporary DECNET Section + + -- This group is present in all router based products. + + dnForward OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + + + + + + -- cisco MIB [Page 44] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "Total count of DECNET packets forwarded." + ::= { decnet 1 } + + dnReceived OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of total DECNET packets received." + ::= { decnet 2 } + + dnFormaterr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of DECNET packets received with + header errors." + ::= { decnet 3 } + + dnNotgateway OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of packets received while not + routing." + ::= { decnet 4 } + + dnNotimp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of unknown control packets + received." + ::= { decnet 5 } + + dnHellos OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + + + + + -- cisco MIB [Page 45] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + "Total number of Hellos received." + ::= { decnet 6 } + + dnBadhello OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of received bad Hellos." + ::= { decnet 7 } + + dnNotlong OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of received packets not in long + format." + ::= { decnet 8 } + + dnDatas OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of received data packets." + ::= { decnet 9 } + + dnBigaddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of too large addresses." + ::= { decnet 10 } + + dnNoroute OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of packets dropped due to no + route present." + ::= { decnet 11 } + + + + + + + -- cisco MIB [Page 46] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + dnNoencap OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of packets dropped due to + output encapsulation failure." + ::= { decnet 12 } + + dnLevel1s OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Level 1 routing packets + received." + ::= { decnet 13 } + + dnBadlevel1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of bad Level 1 routing packets + received." + ::= { decnet 14 } + + dnToomanyhops OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of packets received which + visited too many nodes." + ::= { decnet 15 } + + dnHellosent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Hellos output." + ::= { decnet 16 } + + dnLevel1sent OBJECT-TYPE + + + + + + -- cisco MIB [Page 47] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Level 1 routing packets + sent." + ::= { decnet 17 } + + dnNomemory OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of memory requests denied." + ::= { decnet 18 } + + dnOtherhello OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Hellos received from another + area." + ::= { decnet 19 } + + dnOtherlevel1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Level 1 routing packets + received from another area." + ::= { decnet 20 } + + dnLevel2s OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Level 2 routing packets + received." + ::= { decnet 21 } + + dnLevel2sent OBJECT-TYPE + SYNTAX INTEGER + + + + + + -- cisco MIB [Page 48] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of Level 2 routing packets + sent." + ::= { decnet 22 } + + dnNovector OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of missing routing vectors." + ::= { decnet 23 } + + dnOtherlevel2 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of received Level 2 routing + packets from another area." + ::= { decnet 24 } + + dnNoaccess OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of packets dropped due to + access control failure." + ::= { decnet 25 } + + dnAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnAreaTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "DECNET area routing table" + ::= { decnet 26 } + + dnAreaTableEntry OBJECT-TYPE + SYNTAX DnAreaTableEntry + ACCESS not-accessible + STATUS mandatory + + + + + + -- cisco MIB [Page 49] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "DECNET area routing table" + INDEX { dnArea } + ::= { dnAreaTable 1 } + + DnAreaTableEntry ::= + SEQUENCE { + dnArea + INTEGER, + dnACost + INTEGER, + dnAHop + INTEGER, + dnAIfIndex + INTEGER, + dnANextHop + OCTET STRING, + dnAAge + INTEGER, + dnAPrio + INTEGER + } + + + -- The following section describes the components of the + -- table. + + dnArea OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "DECNet area from the area table." + ::= { dnAreaTableEntry 1 } + + dnACost OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cost of area in the area table." + ::= { dnAreaTableEntry 2 } + + dnAHop OBJECT-TYPE + SYNTAX INTEGER + + + + + + -- cisco MIB [Page 50] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of hops to area in the area table." + ::= { dnAreaTableEntry 3 } + + dnAIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index of interface to the next hop address + to the area. 0 denotes self." + ::= { dnAreaTableEntry 4 } + + dnANextHop OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Next hop DECNet address." + ::= { dnAreaTableEntry 5 } + + dnAAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Age in seconds of area route." + ::= { dnAreaTableEntry 6 } + + dnAPrio OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Priority of next hop router for area route." + ::= { dnAreaTableEntry 7 } + + -- End of table + + + dnHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnHostTableEntry + ACCESS not-accessible + + + + + + -- cisco MIB [Page 51] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "DECNET routing table" + ::= { decnet 27 } + + dnHostTableEntry OBJECT-TYPE + SYNTAX DnHostTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "DECNET routing table" + INDEX { INTEGER, INTEGER } + ::= { dnHostTable 1 } + + DnHostTableEntry ::= + SEQUENCE { + dnHost + INTEGER, + dnHCost + INTEGER, + dnHHop + INTEGER, + dnHIfIndex + INTEGER, + dnHNextHop + OCTET STRING, + dnHAge + INTEGER, + dnHPrio + INTEGER + } + + + -- The following section describes the components of the + -- table. + + dnHost OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "DECNet node address from the routing table." + ::= { dnHostTableEntry 1 } + + dnHCost OBJECT-TYPE + + + + + + -- cisco MIB [Page 52] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cost of path to node in the routing table." + ::= { dnHostTableEntry 2 } + + dnHHop OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of hops to node in the routing + table." + ::= { dnHostTableEntry 3 } + + dnHIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index of interface to the next hop address + to the node. 0 denotes self." + ::= { dnHostTableEntry 4 } + + dnHNextHop OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Next hop DECNet address." + ::= { dnHostTableEntry 5 } + + dnHAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Age in seconds of route to node." + ::= { dnHostTableEntry 6 } + + dnHPrio OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 53] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "Priority of next hop router for node." + ::= { dnHostTableEntry 7 } + + -- End of table + + + dnIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnIfTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "DECNET interface table" + ::= { decnet 28 } + + dnIfTableEntry OBJECT-TYPE + SYNTAX DnIfTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "DECNET interface table" + INDEX { ifIndex } + ::= { dnIfTable 1 } + + DnIfTableEntry ::= + SEQUENCE { + dnIfCost + INTEGER + } + + + -- The following section describes the components of the + -- table. + + dnIfCost OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cost of this interface." + ::= { dnIfTableEntry 1 } + + -- End of table + + + + + + + + -- cisco MIB [Page 54] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- Temporary XNS Section + + -- This group is present in all router based products. + + xnsInput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total input count of number of XNS packets." + ::= { xns 1 } + + xnsLocal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of XNS input packets for this + host." + ::= { xns 2 } + + xnsBcastin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS input broadcast + packets." + ::= { xns 3 } + + xnsForward OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS packets + forwarded." + ::= { xns 4 } + + xnsBcastout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS output + + + + + + -- cisco MIB [Page 55] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + broadcast packets." + ::= { xns 5 } + + xnsErrin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS Error input + packets." + ::= { xns 6 } + + xnsErrout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS Error output + packets." + ::= { xns 7 } + + xnsFormerr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS input packets + with header errors." + ::= { xns 8 } + + xnsChksum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS input packets + with checksum errors." + ::= { xns 9 } + + xnsNotgate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS input packets + + + + + + -- cisco MIB [Page 56] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + received while not routing." + ::= { xns 10 } + + xnsHopcnt OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS input packets + that have exceeded the maximum hop count." + ::= { xns 11 } + + xnsNoroute OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS packets dropped + due to no route." + ::= { xns 12 } + + xnsNoencap OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS packets dropped + due to output encapsulation failure." + ::= { xns 13 } + + xnsOutput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS output + packets." + ::= { xns 14 } + + xnsInmult OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS input multicast + + + + + + -- cisco MIB [Page 57] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + packets." + ::= { xns 15 } + + xnsUnknown OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of unknown XNS input + packets." + ::= { xns 16 } + + xnsFwdbrd OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS broadcast + packets forwarded." + ::= { xns 17 } + + xnsEchoreqin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS Echo request + packets received." + ::= { xns 18 } + + xnsEchoreqout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS Echo request + packets sent." + ::= { xns 19 } + + xnsEchorepin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS Echo reply + + + + + + -- cisco MIB [Page 58] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + packets received." + ::= { xns 20 } + + xnsEchorepout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of XNS Echo reply + packets sent." + ::= { xns 21 } + + + -- Temporary AppleTalk Section + + -- This group is present in all router based products. + + atInput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total input count of number of AppleTalk + packets." + ::= { appletalk 1 } + + atLocal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of AppleTalk input packets for + this host." + ::= { appletalk 2 } + + atBcastin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk input + broadcast packets." + ::= { appletalk 3 } + + atForward OBJECT-TYPE + + + + + + -- cisco MIB [Page 59] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk packets + forwarded." + ::= { appletalk 4 } + + atBcastout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk output + broadcast packets." + ::= { appletalk 5 } + + atChksum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk input + packets with checksum erors." + ::= { appletalk 7 } + + atNotgate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of AppleTalk input packets + received while not routing." + ::= { appletalk 8 } + + atHopcnt OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk input + packets that have exceeded the maximum hop + count." + ::= { appletalk 9 } + + + + + + + -- cisco MIB [Page 60] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + atNoaccess OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of AppleTalk packets dropped + due to access control." + ::= { appletalk 10 } + + atNoroute OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk packets + dropped due to no route." + ::= { appletalk 11 } + + atNoencap OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk packets + dropped due to output encapsulation failure." + ::= { appletalk 12 } + + atOutput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk output + packets." + ::= { appletalk 13 } + + atInmult OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk input + multicast packets." + ::= { appletalk 14 } + + + + + + + -- cisco MIB [Page 61] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + atRtmpin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk RTMP + packets received." + ::= { appletalk 15 } + + atRtmpout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk RTMP + packets sent." + ::= { appletalk 16 } + + atNbpin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk NBP + packets received." + ::= { appletalk 17 } + + atNbpout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk NBP + packets sent." + ::= { appletalk 18 } + + atAtp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk ATP + packets received." + ::= { appletalk 19 } + + + + + + + -- cisco MIB [Page 62] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + atZipin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk ZIP + packets received." + ::= { appletalk 20 } + + atZipout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk ZIP + packets sent." + ::= { appletalk 21 } + + atEcho OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk Echo + packets received." + ::= { appletalk 22 } + + atEchoill OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of illegal AppleTalk + Echo packets received." + ::= { appletalk 23 } + + atDdpshort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of short AppleTalk DDP + packets received." + ::= { appletalk 24 } + + + + + + + -- cisco MIB [Page 63] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + atDdplong OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of long AppleTalk DDP + packets received." + ::= { appletalk 25 } + + atDdpbad OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of illegal sized + AppleTalk DDP packets received." + ::= { appletalk 26 } + + atNobuffer OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk packets + lost due to no memory." + ::= { appletalk 27 } + + atArpreq OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of input AppleTalk ARP + request packets." + ::= { appletalk 28 } + + atArpreply OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of AppleTalk ARP reply + packets output." + ::= { appletalk 29 } + + + + + + + -- cisco MIB [Page 64] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + atArpprobe OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of input AppleTalk ARP + probe packets." + ::= { appletalk 30 } + + atUnknown OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of unknown AppleTalk + input packets." + ::= { appletalk 31 } + + + -- Temporary Novell Section + + -- This group is present in all router based products. + + novellInput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total input count of number of NOVELL + packets." + ::= { novell 1 } + + novellBcastin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL input + broadcast packets." + ::= { novell 2 } + + novellForward OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 65] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "Total count of number of NOVELL packets + forwarded." + ::= { novell 3 } + + novellBcastout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL output + broadcast packets." + ::= { novell 4 } + + novellFormerr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL input + packets with header errors." + ::= { novell 5 } + + novellChksum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL input + packets with checksum erors." + ::= { novell 6 } + + novellHopcnt OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL input + packets that have exceeded the maximum hop + count." + ::= { novell 7 } + + novellNoroute OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + + + + + + -- cisco MIB [Page 66] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL packets + dropped due to no route." + ::= { novell 8 } + + novellNoencap OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL packets + dropped due to output encapsulation failure." + ::= { novell 9 } + + novellOutput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL output + packets." + ::= { novell 10 } + + novellInmult OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL input + multicast packets." + ::= { novell 11 } + + novellLocal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of NOVELL input packets for this + host." + ::= { novell 12 } + + novellUnknown OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + + + + + + -- cisco MIB [Page 67] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + STATUS mandatory + DESCRIPTION + "Total count of number of unknown NOVELL + input packets." + ::= { novell 13 } + + novellSapreqin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL SAP request + packets received." + ::= { novell 14 } + + novellSapresin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL SAP response + packets received." + ::= { novell 15 } + + novellSapout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL SAP request + packets sent." + ::= { novell 16 } + + novellSapreply OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of NOVELL SAP reply + packets sent." + ::= { novell 17 } + + + -- Temporary Vines Section + + + + + + + -- cisco MIB [Page 68] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + -- This group is present in all router based products. + + vinesInput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total input count of number of Vines + packets." + ::= { vines 1 } + + vinesOutput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines output + packets." + ::= { vines 2 } + + vinesLocaldest OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of Vines input packets for this + host." + ::= { vines 3 } + + vinesForwarded OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines packets + forwarded." + ::= { vines 4 } + + vinesBcastin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines input + broadcast packets." + + + + + + -- cisco MIB [Page 69] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + ::= { vines 5 } + + vinesBcastout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines output + broadcast packets." + ::= { vines 6 } + + vinesBcastfwd OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines broadcast + packets forwarded." + ::= { vines 7 } + + vinesNotlan OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines broadcast + packets not forwarded to all interfaces + because the LAN ONLY bit was set." + ::= { vines 8 } + + vinesNotgt4800 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines broadcast + packets not forwarded to all interfaces + because the OVER 4800 BPS bit was set." + ::= { vines 9 } + + vinesNocharges OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + + + + + + -- cisco MIB [Page 70] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + "Total count of number of Vines broadcast + packets not forwarded to all interfaces + because the NO CHARGES only bit was set." + ::= { vines 10 } + + vinesFormaterror OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines input packets + with header errors." + ::= { vines 11 } + + vinesCksumerr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines input packets + with checksum erors." + ::= { vines 12 } + + vinesHopcount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines input packets + that have exceeded the maximum hop count." + ::= { vines 13 } + + vinesNoroute OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines packets + dropped due to no route." + ::= { vines 14 } + + vinesEncapsfailed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 71] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "Total count of number of Vines packets + dropped due to output encapsulation failed." + ::= { vines 15 } + + vinesUnknown OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of unknown Vines input + packets." + ::= { vines 16 } + + vinesIcpIn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines ICP packets + received." + ::= { vines 17 } + + vinesIcpOut OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines ICP packets + generaed." + ::= { vines 18 } + + vinesMetricOut OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines ICP Metric + Notification packets generated." + ::= { vines 19 } + + vinesMacEchoIn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + + + + + + -- cisco MIB [Page 72] +-- + + + + + + -- Request for Comments: Draft cisco Systems, Inc. + + + DESCRIPTION + "Total count of number of Vines MAC level + Echo packets received." + ::= { vines 20 } + + vinesMacEchoOut OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines MAC level + Echo packets generated." + ::= { vines 21 } + + vinesEchoIn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines Echo packets + received." + ::= { vines 22 } + + vinesEchoOut OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total count of number of Vines Echo packets + generated." + ::= { vines 23 } + END + + + + + + + + + + + + + + + + + + + -- cisco MIB [Page 73] +-- + diff --git a/pandora_console/attachment/mibs/CISCO-PING-MIB.my.txt b/pandora_console/attachment/mibs/CISCO-PING-MIB.my.txt new file mode 100644 index 0000000000..e776c419d6 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-PING-MIB.my.txt @@ -0,0 +1,451 @@ +-- ***************************************************************** +-- CISCO-PING-MIB.my: Cisco Ping MIB file +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-2000, 2001 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** + +CISCO-PING-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-TYPE, + NOTIFICATION-TYPE, + Integer32, + Counter32 + FROM SNMPv2-SMI + TruthValue, + RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, + OBJECT-GROUP, + NOTIFICATION-GROUP + FROM SNMPv2-CONF + OwnerString + FROM IF-MIB + ciscoMgmt + FROM CISCO-SMI + CiscoNetworkProtocol, + CiscoNetworkAddress + FROM CISCO-TC; + +ciscoPingMIB MODULE-IDENTITY + LAST-UPDATED "200108280000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "Modified description of ciscoPingAddress object." + REVISION "200108280000Z" + DESCRIPTION + "Added VPN name to notifications" + REVISION "200105140000Z" + DESCRIPTION + "Add VrfName attribute to support VPN ping" + REVISION "9910080000Z" + DESCRIPTION + "" + REVISION "9411110000Z" + DESCRIPTION + "Redefined Ping completion trap." + REVISION "9407220000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { ciscoMgmt 16 } + + +ciscoPingMIBObjects OBJECT IDENTIFIER ::= { ciscoPingMIB 1 } + +ciscoPingTable OBJECT-TYPE + SYNTAX SEQUENCE OF CiscoPingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of ping request entries." + ::= { ciscoPingMIBObjects 1 } + +ciscoPingEntry OBJECT-TYPE + SYNTAX CiscoPingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A ping request entry. + + A management station wishing to create an entry should + first generate a pseudo-random serial number to be used + as the index to this sparse table. The station should + then create the associated instance of the row status + and row owner objects. It must also, either in the same + or in successive PDUs, create the associated instance of + the protocol and address objects. It should also modify + the default values for the other configuration objects + if the defaults are not appropriate. + + Once the appropriate instance of all the configuration + objects have been created, either by an explicit SNMP + set request or by default, the row status should be set + to active to initiate the request. Note that this entire + procedure may be initiated via a single set request which + specifies a row status of createAndGo as well as specifies + valid values for the non-defaulted configuration objects. + + Once the ping sequence has been activated, it cannot be + stopped -- it will run until the configured number of + packets have been sent. + + Once the sequence completes, the management station should + retrieve the values of the status objects of interest, and + should then delete the entry. In order to prevent old + entries from clogging the table, entries will be aged out, + but an entry will never be deleted within 5 minutes of + completing." + INDEX { ciscoPingSerialNumber } + ::= { ciscoPingTable 1 } + + +CiscoPingEntry ::= + SEQUENCE { + -- index + ciscoPingSerialNumber Integer32, + -- configuration items + ciscoPingProtocol CiscoNetworkProtocol, + ciscoPingAddress CiscoNetworkAddress, + ciscoPingPacketCount Integer32, + ciscoPingPacketSize Integer32, + ciscoPingPacketTimeout Integer32, + ciscoPingDelay Integer32, + ciscoPingTrapOnCompletion TruthValue, + -- status items + ciscoPingSentPackets Counter32, + ciscoPingReceivedPackets Counter32, + ciscoPingMinRtt Integer32, + ciscoPingAvgRtt Integer32, + ciscoPingMaxRtt Integer32, + ciscoPingCompleted TruthValue, + ciscoPingEntryOwner OwnerString, + ciscoPingEntryStatus RowStatus, + ciscoPingVrfName OCTET STRING + } + + +ciscoPingSerialNumber OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Object which specifies a unique entry in the + ciscoPingTable. A management station wishing + to initiate a ping operation should use a + pseudo-random value for this object when creating + or modifying an instance of a ciscoPingEntry. + The RowStatus semantics of the ciscoPingEntryStatus + object will prevent access conflicts." + ::= { ciscoPingEntry 1 } + +ciscoPingProtocol OBJECT-TYPE + SYNTAX CiscoNetworkProtocol + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The protocol to use. + Once an instance of this object is created, its + value can not be changed." + ::= { ciscoPingEntry 2 } + +ciscoPingAddress OBJECT-TYPE + SYNTAX CiscoNetworkAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The address of the device to be pinged. + An instance of this object cannot be created until the + associated instance of ciscoPingProtocol is created." + ::= { ciscoPingEntry 3 } + +ciscoPingPacketCount OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the number of ping packets to send to the target + in this sequence." + DEFVAL { 5 } + ::= { ciscoPingEntry 4 } + +ciscoPingPacketSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the size of ping packets to send to the target + in this sequence. The lower and upper boundaries of this + object are protocol-dependent. + An instance of this object cannot be modified unless the + associated instance of ciscoPingProtocol has been created + (so as to allow protocol-specific range checking on the + new value)." + DEFVAL { 100 } + ::= { ciscoPingEntry 5 } + +ciscoPingPacketTimeout OBJECT-TYPE + SYNTAX Integer32 (0..3600000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the amount of time to wait for a response to a + transmitted packet before declaring the packet 'dropped.'" + DEFVAL { 2000 } + ::= { ciscoPingEntry 6 } + +ciscoPingDelay OBJECT-TYPE + SYNTAX Integer32 (0..3600000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the minimum amount of time to wait before sending + the next packet in a sequence after receiving a response or + declaring a timeout for a previous packet. The actual delay + may be greater due to internal task scheduling." + DEFVAL { 0 } + ::= { ciscoPingEntry 7 } + +ciscoPingTrapOnCompletion OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies whether or not a ciscoPingCompletion trap should + be issued on completion of the sequence of pings. If such a + trap is desired, it is the responsibility of the management + entity to ensure that the SNMP administrative model is + configured in such a way as to allow the trap to be delivered." + DEFVAL { false } + ::= { ciscoPingEntry 8 } + +ciscoPingSentPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ping packets that have been sent to the target + in this sequence." + ::= { ciscoPingEntry 9 } + +ciscoPingReceivedPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ping packets that have been received from the + target in this sequence." + ::= { ciscoPingEntry 10 } + +ciscoPingMinRtt OBJECT-TYPE + SYNTAX Integer32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum round trip time of all the packets that have + been sent in this sequence. + + This object will not be created until the first ping + response in a sequence is received." + ::= { ciscoPingEntry 11 } + +ciscoPingAvgRtt OBJECT-TYPE + SYNTAX Integer32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average round trip time of all the packets that have + been sent in this sequence. + + This object will not be created until the first ping + response in a sequence is received." + ::= { ciscoPingEntry 12 } + +ciscoPingMaxRtt OBJECT-TYPE + SYNTAX Integer32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum round trip time of all the packets that have + been sent in this sequence. + + This object will not be created until the first ping + response in a sequence is received." + ::= { ciscoPingEntry 13 } + +ciscoPingCompleted OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Set to true when all the packets in this sequence have been + either responded to or timed out." + ::= { ciscoPingEntry 14 } + +ciscoPingEntryOwner OBJECT-TYPE + SYNTAX OwnerString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The entity that configured this entry." + ::= { ciscoPingEntry 15 } + +ciscoPingEntryStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this table entry. Once the entry status is + set to active, the associate entry cannot be modified until + the sequence completes (ciscoPingCompleted is true)." + ::= { ciscoPingEntry 16 } + + +ciscoPingVrfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This field is used to specify the VPN name in + which the ping will be used. For regular ping this + field should not be configured. The agent will use + this field to identify the VPN routing Table for + this ping. This is the same ascii string used in + the CLI to refer to this VPN. " + DEFVAL { "" } + ::= { ciscoPingEntry 17 } + + +ciscoPingMIBTrapPrefix OBJECT IDENTIFIER ::= { ciscoPingMIB 2 } +ciscoPingMIBTraps OBJECT IDENTIFIER ::= { ciscoPingMIBTrapPrefix 0 } + +ciscoPingCompletion NOTIFICATION-TYPE + OBJECTS { ciscoPingCompleted, + ciscoPingSentPackets, + ciscoPingReceivedPackets + } + STATUS current + DESCRIPTION + "A ciscoPingCompleted trap is sent at the completion + of a sequence of pings if such a trap was requested + when the sequence was initiated. In addition to the + above listed objects (which are always present), + the message will contain the following objects if + any responses were received: + ciscoPingMinRtt + ciscoPingAvgRtt + ciscoPingMaxRtt + It will also contain the following object if the ping + is to a VPN address: + ciscoPingVrfName" + ::= { ciscoPingMIBTraps 1 } + + +-- conformance information + +ciscoPingMIBConformance OBJECT IDENTIFIER ::= { ciscoPingMIB 3 } +ciscoPingMIBCompliances OBJECT IDENTIFIER ::= { ciscoPingMIBConformance 1 } +ciscoPingMIBGroups OBJECT IDENTIFIER ::= { ciscoPingMIBConformance 2 } + + +-- compliance statements + +ciscoPingMIBCompliance MODULE-COMPLIANCE + STATUS obsolete + DESCRIPTION + "The compliance statement for entities which implement + the Cisco Ping MIB" + MODULE -- this module + MANDATORY-GROUPS { ciscoPingMIBGroup } + ::= { ciscoPingMIBCompliances 1 } + +ciscoPingMIBComplianceVpn MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for entities which implement + the Cisco Ping MIB" + MODULE -- this module + MANDATORY-GROUPS { ciscoPingMIBGroupVpn } + ::= { ciscoPingMIBCompliances 2 } + +-- units of conformance + +ciscoPingMIBGroup OBJECT-GROUP + OBJECTS { + ciscoPingProtocol, + ciscoPingAddress, + ciscoPingPacketCount, + ciscoPingPacketSize, + ciscoPingPacketTimeout, + ciscoPingDelay, + ciscoPingTrapOnCompletion, + ciscoPingSentPackets, + ciscoPingReceivedPackets, + ciscoPingMinRtt, + ciscoPingAvgRtt, + ciscoPingMaxRtt, + ciscoPingCompleted, + ciscoPingEntryOwner, + ciscoPingEntryStatus + } + STATUS obsolete + DESCRIPTION + "A collection of objects providing ping (echo) ability to a + Cisco agent." + ::= { ciscoPingMIBGroups 1 } + +ciscoPingMIBGroupVpn OBJECT-GROUP + OBJECTS { + ciscoPingProtocol, + ciscoPingAddress, + ciscoPingPacketCount, + ciscoPingPacketSize, + ciscoPingPacketTimeout, + ciscoPingDelay, + ciscoPingTrapOnCompletion, + ciscoPingSentPackets, + ciscoPingReceivedPackets, + ciscoPingMinRtt, + ciscoPingAvgRtt, + ciscoPingMaxRtt, + ciscoPingCompleted, + ciscoPingEntryOwner, + ciscoPingEntryStatus, + ciscoPingVrfName + } + STATUS current + DESCRIPTION + "A collection of objects providing ping (echo) ability to a + Cisco agent." + ::= { ciscoPingMIBGroups 2 } + +ciscoPingMIBNotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { ciscoPingCompletion + + } + STATUS current + DESCRIPTION + "Set of notifications implemented in this module." + ::= { ciscoPingMIBGroups 3 } + +END diff --git a/pandora_console/attachment/mibs/CISCO-RTTMON-MIB b/pandora_console/attachment/mibs/CISCO-RTTMON-MIB new file mode 100644 index 0000000000..30043db002 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-RTTMON-MIB @@ -0,0 +1,8909 @@ +-- ***************************************************************** +-- Response Time Monitor Mib. +-- +-- March 1996, Larry Metzger +-- +-- Copyright (c) 1995-2005 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** +-- + + +CISCO-RTTMON-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-TYPE, + NOTIFICATION-TYPE, + Integer32, + Counter32, + Gauge32, + TimeTicks + FROM SNMPv2-SMI + + NOTIFICATION-GROUP, + MODULE-COMPLIANCE, + OBJECT-GROUP + FROM SNMPv2-CONF + + StorageType, + DisplayString, + TruthValue, + RowStatus, + TimeInterval, + TimeStamp + FROM SNMPv2-TC + + ciscoMgmt + FROM CISCO-SMI + + OwnerString + FROM IF-MIB + + SnmpAdminString + FROM SNMP-FRAMEWORK-MIB + + RttReset, + RttMonOperation, + RttResponseSense, + RttMonRttType, + RttMplsVpnMonRttType, + RttMplsVpnMonLpdFailureSense, + RttMplsVpnMonLpdGrpStatus, + RttMonProtocol, + RttMonCodecType, + RttMonLSPPingReplyMode, + RttMonTargetAddress, + RttMonReactVar + FROM CISCO-RTTMON-TC-MIB +; + +ciscoRttMonMIB MODULE-IDENTITY + LAST-UPDATED "200508110000Z" + ORGANIZATION "Cisco IOS" + CONTACT-INFO + "Cisco Systems, Inc. + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + + Tel: +1 800 553 NETS + + cs-ipsla@cisco.com" + DESCRIPTION + "This module defines a MIB for Round Trip Time + (RTT) monitoring of a list of targets, using a + variety of protocols. + + The table structure overview is a follows (t: + indicates a table, at: indicates an augmented + table, and it: indicates table with the same + indices/control as parent table): + + RTTMON MIB + |--- Application Group + | |--- Application Identity + | |--- Application Capabilities + | |--- Application Reset + | |t-- Supported RTT Types + | |--- Truth Value + | |t-- Supported Protocols + | |--- Truth Value + | |t-- Application Preconfigured + | |--- Script Names + | |--- File Paths + | |--- Responder control + | |t-- Control Protocol Authentication + | + |--- Overall Control Group + | |t-- Master Definitions Table + | | |--- Global Configuration Definitions + | | |--- Config for a single RTT Life + | | |it- Echo Specific Configuration + | | |it- Echo Path Hop Address Configuration + | | |it- File I/O Specific Configuration + | | |it- Script Specific Configuration + | | |at- Schedule Configuration + | | |at- Reaction Specific Config + | | |at- Statistics Capture Configuration + | | |at- History Collection Configuration + | | |at- Monitoring Operational State + | | |at- Last RTT operation + | | + | |t-- Reaction Trigger Table + | |at- Reaction Trigger Operational State + | + |--- Statistics Collection Group + | |t-- Statistics Capture Table + | |--- Captured Statistics + | |--- Path Information + | |--- Distribution Capture + | |--- Mean and Deviation Capture + | |it- Statistics Collection Table + | |it- Statistics Totals Table + | |t-- HTTP Stats Table + | |t-- Jitter Stats Table + | + |--- History Collection Group + | |t-- History Collection Table + | |-- Path Information + | |-- Completion Information per operation + | + |--- Latest Operation Group + | |t-- Latest HTTP Oper Table + | |t-- Latest Jitter Oper Table + + DEFINITIONS: + conceptual RTT control row - + This is a row in the 'Overall Control + Group'. This row is indexed via the + rttMonCtrlAdminIndex object. This row + is spread across multiple real tables + in the 'Overall Control Group'. + probe - + This is the entity that executes via a + conceptual RTT control row and populates + a conceptual statistics row and a + conceptual history row. + Rtt operation - + This is a single operation performed by + a probe. This operation can be a single + Rtt attempt/completion or a group of Rtt + attempts/completions that produce one + operation table entry. + + ARR Protocol Definition: + + The format of the RTT Asymmetric Request/Responses + (ARR) protocol is as follows: + + The ARR Header (total of 12 octets): + + 4 octet -> eyecatcher: 'WxYz' + 1 octet -> version : 0x01 - protocol version + 1 octet -> command : 0x01 - logoff request + 0x02 - echo request + 0x03 - echo response + 0x04 - software version request + 0x05 - software version response + 2 octet -> sequence number (Network Byte Order) + 4 octet -> response data size (Network Byte Order) + + The ARR Data: + + n octets -> request/response data + : 'AB..ZAB..ZAB..' + + For software version request/response the + protocol version octet will contain the version + number of the responder. Thus the sequence + number, etc will not be included. + + For snaLU0EchoAppl and snaLU2EchoAppl all character + fields will be in EBCDIC. + + The response data should be appended to the + origin request data. This allows data + verification to check the data that flows in + both directions. If the response data size is + smaller than the request data size the original + request data will be truncated. + + An example would be: + Request: / Response: + 'WxYz' / 'WxYz' + 0x01 / 0x01 + 0x02 / 0x03 + 0x0001 / 0x0001 + 0x00000008 / 0x00000008 + 'ABCDEF' / 'ABCDEFGH' + + NOTE: We requested 8 bytes in the response and + the response had 8 bytes. The size of the + request data has no correlation to the + size of the response data. + + NOTE: For native RTT request/response (i.e. + ipIcmpecho) operations both the 'Header' + and 'Data' will be included. Only the + 'sequence number' in the Header will be + valid. + + NOTE: For non-connection oriented protocol the + initial RTT request/response operation will + be preceded with an RTT request/response + operation to the target address to force + path exploration and to prove + connectivity. The History collection table + will contain these responses, but the + Statistics capture table will omit them to + prevent skewed results." + + REVISION "200508110000Z" + DESCRIPTION + "- TEXTUAL Conventions previously defined in the MIB are defined + in CISCO-RTTMON-TC-MIB." + + REVISION "200504210000Z" + DESCRIPTION + "- Added new objects given in ciscoCtrlGroupRev4 to + rttMonGrpScheduleAdminTable. + - Changed description of object rttMonHTTPStatsRTTMax." + + REVISION "200501040000Z" + DESCRIPTION + "Added two new rttMonRttType's rtp and lspGroup. Added a new + object rttMonApplLpdGrpStatsReset to reset the LPD Group Stats. + Added rttMonLpdGrpStatsTable for supporting LSP Path Discovery. + Added two new notifications rttMonLpdDiscoveryNotification + and rttMonLpdGrpStatusNotification. + Added and modified descriptions of some objects in + rttMplsVpnMonCtrlTable, rttMplsVpnMonTypeTable and + rttMplsVpnMonReactTable for LSP Path Discovery. + Added 6 options in the rttMonReactVar. + Added rttMonEchoAdminSourceVoicePort and + rttMonEchoAdminCallDuration in rttMonEchoAdminTable." + + REVISION "200408260000Z" + DESCRIPTION + "Added a table rttMonReactTable, which defines the + the reaction configurations for the probes. + Deprecated the old reaction table rttMonReactAdminTable. + This is replaced by the new table (rttMonReactTable). + Depreacted the notification types + rttMonConnectionChangeNotification + rttMonTimeoutNotification + rttMonThresholdNotification + rttMonVerifyErrorNotification + Added new notification type rttMonNotification. + Added two objects, rttMonGrpScheduleAdminFreqMax + and rttMonGrpScheduleAdminFreqMin to table + rttMonGrpScheduleAdminTable." + + REVISION "200405180000Z" + DESCRIPTION + "- Add the following fields for VoIP GK registration delay: + RttMonEchoAdminEntry: + rttMonEchoAdminGKRegistration + - Add the following fields for VoIP Post dial delay: + RttMonOperation: + voipDTAlertRinging(6), + voipDTConnectOK(7) + RttMonRttType: + voip(13) + RttMonProtocol: + voipAppl(31) + RttMonEchoAdminEntry: + rttMonEchoAdminCalledNumber + rttMonEchoAdminDetectPoint + - Add HTTP code 301, 302 as non-error scenario. + - Modify description for rttMonEchoAdminNameServer: + it is applicable for DNS and HTTP probe. + - Modify rttMonCtrlAdminFrequency range + from Integer32 (0..604800) to (1..604800) + - Added following new objects for jitter probe precision + and other improvements: + rttMonEchoAdminPrecision, rttMonEchoAdminProbePakPriority, + rttMonJitterStatsIAJOut, rttMonJitterStatsIAJIn, + rttMonJitterStatsAvgJitter, rttMonJitterStatsAvgJitterSD, + rttMonJitterStatsAvgJitterDS, rttMonJitterStatsUnSyncRTs, + rttMonLatestJitterOperIAJIn, rttMonLatestJitterOperAvgJitter, + rttMonLatestJitterOperAvgSDJ, rttMonLatestJitterOperAvgDSJ, + rttMonLatestJitterOperOWAvgSD, rttMonLatestJitterOperOWAvgDS, + rttMonLatestJitterOperIAJOut, rttMonLatestJitterOperNTPState, + rttMonEchoAdminOWNTPSyncTolAbs, + rttMonEchoAdminOWNTPSyncTolPct, + rttMonEchoAdminOWNTPSyncTolType, + rttMonLatestJitterOperUNSyncRTs" + + REVISION "200401200000Z" + DESCRIPTION + "Created new tables for Auto SAA L3 MPLS VPN. + rttMplsVpnMonCtrlTable + rttMplsVpnMonTypeTable + rttMplsVpnMonScheduleTable + rttMplsVpnMonReactTable. + Modified MIB for creation of echo and pathecho operations based + on MPLS LSP Ping." + + REVISION "200308110000Z" + DESCRIPTION + "Added 1 object rttMonScheduleAdminRttRecurring to the + rttMonScheduleAdminTable. Added a new table + rttMonGrpScheduleAdminTable for group scheduling. This table + contains the following objects + rttMonGrpScheduleAdminIndex + rttMonGrpScheduleAdminProbes + rttMonGrpScheduleAdminPeriod + rttMonGrpScheduleAdminFrequency + rttMonGrpScheduleAdminLife + rttMonGrpScheduleAdminAgeout + rttMonGrpScheduleAdminStatus. + Modified the default value of rttMonReactTriggerAdminStatus + from createAndGo to no default value. Corrected the Revision + clause specified for the existing and all the earlier + submissions." + + REVISION "200305210000Z" + DESCRIPTION + "Range for rttMonLatestJitterOperMOS, rttMonJitterStatsMinOfMOS + and rttMonJitterStatsMaxOfMOS to be changed to 100..500 + instead of 1..5. Modifying the range of rttMonApplProbeCapacity + and rttMonApplNumCtrlAdminEntry to 1..10000.Added value other(0) + for RttResponseSense and changed the range of objects + rttMonLatestRttOperApplSpecificSense and + rttMonHistoryCollectionApplSpecificSense to 0..2147483647. + Added range for rttMonApplAuthIndex. " + + REVISION "200304150000Z" + DESCRIPTION + "Removed default values from + rttMonEchoAdminCodecInterval + rttMonEchoAdminCodecPayload + rttMonEchoAdminCodecNumPackets. + Corrected some typos in the earliar revision." + + REVISION "200303120000Z" + DESCRIPTION + "Added 5 objects in the rttMonEchoAdminTable to support + codec configuration. + Added few objects in rttMonLatestJitterOperTable and + rttMonJitterStatsTable for ICPIF (Calculated Planning + Impairment Factor) and MOS (Mean Opinion Score) scores." + + REVISION "200011030000Z" + DESCRIPTION + "deprecated 4 objects in the rttMonJitterStatsTable + and added the same objects with a SYNTAX of Gauge32. + Also added the capability to specify a VrfName." + + REVISION "9906150000Z" + DESCRIPTION "created rttMonAuthTable." + ::= { ciscoMgmt 42 } + +-- +-- Round Trip Time (RTT) Monitor MIB Objects +-- + +ciscoRttMonObjects OBJECT IDENTIFIER ::= { ciscoRttMonMIB 1 } + +-- +-- Round Trip Time Monitoring Object Groups +-- + +rttMonAppl OBJECT IDENTIFIER ::= { ciscoRttMonObjects 1 } +rttMonCtrl OBJECT IDENTIFIER ::= { ciscoRttMonObjects 2 } +rttMonStats OBJECT IDENTIFIER ::= { ciscoRttMonObjects 3 } +rttMonHistory OBJECT IDENTIFIER ::= { ciscoRttMonObjects 4 } +rttMonLatestOper OBJECT IDENTIFIER ::= { ciscoRttMonObjects 5 } + +-- +-- GLOBAL RTT MONITORING VARIABLES +-- + +rttMonApplVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Round Trip Time monitoring application version + string. + + The format will be: + + 'Version.Release.Patch-Level: Textual-Description' + + For example: '1.0.0: Initial RTT Application'" + ::= { rttMonAppl 1 } + + +rttMonApplMaxPacketDataSize OBJECT-TYPE + SYNTAX INTEGER (0..16384) + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum size of the data portion an echo + packet supported by this RTT application. This is + the maximum value that can be specified by + (rttMonEchoAdminPktDataRequestSize + ARR Header) + or + (rttMonEchoAdminPktDataResponseSize + ARR Header) + in the rttMonCtrlAdminTable. + + This object is undefined for conceptual RTT + control rows when the RttMonRttType object is set + to 'fileIO' or 'script'." + ::= { rttMonAppl 2 } + + +rttMonApplTimeOfLastSet OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The last time at which a set operation occurred + on any of the objects in this MIB. The managing + application can inspect this value in order to + determine whether changes have been made without + retrieving the entire Administration portion of + this MIB. + + This object applies to all settable objects in this + MIB, including the 'Reset' objects that could clear + saved history/statistics." + ::= { rttMonAppl 3 } + + +rttMonApplNumCtrlAdminEntry OBJECT-TYPE + SYNTAX Integer32 ( 1..10000 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object defines the maximum number of entries + that can be added to the rttMonCtrlAdminTable. It + is calculated at the system init time. The value + is impacted when rttMonApplFreeMemLowWaterMark is changed." + ::= { rttMonAppl 4 } + + +rttMonApplReset OBJECT-TYPE + SYNTAX RttReset + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When set to 'reset' the entire RTT application + goes through a reset sequence, making a best + effort to revert to its startup condition. Any + and all rows in the Overall Control Group will be + immediately deleted, together with any associated + rows in the Statistics Collection Group, and + History Collection Group. All open connections + will also be closed. Finally the + rttMonApplPreConfigedTable will reset (see + rttMonApplPreConfigedReset)." + ::= { rttMonAppl 5 } + + +rttMonApplPreConfigedReset OBJECT-TYPE + SYNTAX RttReset + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION + "When set to 'reset' the RTT application will + reset the Application Preconfigured MIB section. + + This will force the RTT application to delete all + entries in the rttMonApplPreConfigedTable and then + to repopulate the table with the current configuration. + + This provides a mechanism to load and unload user + scripts and file paths." + ::= { rttMonAppl 6 } + + +-- +-- Supported RTT Types. +-- + +rttMonApplSupportedRttTypesTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonApplSupportedRttTypesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of which contains the supported Rtt + Monitor Types. + + See the RttMonRttType textual convention for + the definition of each type." + ::= { rttMonAppl 7 } + + +rttMonApplSupportedRttTypesEntry OBJECT-TYPE + SYNTAX RttMonApplSupportedRttTypesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list that presents the valid Rtt Monitor + Types." + INDEX { rttMonApplSupportedRttTypes } + ::= { rttMonApplSupportedRttTypesTable 1 } + + +RttMonApplSupportedRttTypesEntry ::= SEQUENCE +{ + rttMonApplSupportedRttTypes RttMonRttType, + rttMonApplSupportedRttTypesValid TruthValue +} + + +rttMonApplSupportedRttTypes OBJECT-TYPE + SYNTAX RttMonRttType + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indexes the supported + 'RttMonRttType' types." + ::= { rttMonApplSupportedRttTypesEntry 1 } + + +rttMonApplSupportedRttTypesValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object defines the supported + 'RttMonRttType' types." + ::= { rttMonApplSupportedRttTypesEntry 2 } + + +-- +-- Supported Protocols. +-- + +rttMonApplSupportedProtocolsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonApplSupportedProtocolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of which contains the supported Rtt + Monitor Protocols. + + See the RttMonProtocol textual convention + for the definition of each protocol." + ::= { rttMonAppl 8 } + + +rttMonApplSupportedProtocolsEntry OBJECT-TYPE + SYNTAX RttMonApplSupportedProtocolsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list that presents the valid Rtt Monitor + Protocols." + INDEX { rttMonApplSupportedProtocols } + ::= { rttMonApplSupportedProtocolsTable 1 } + + +RttMonApplSupportedProtocolsEntry ::= SEQUENCE +{ + rttMonApplSupportedProtocols RttMonProtocol, + rttMonApplSupportedProtocolsValid TruthValue +} + + +rttMonApplSupportedProtocols OBJECT-TYPE + SYNTAX RttMonProtocol + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object indexes the supported + 'RttMonProtocol' protocols." + ::= { rttMonApplSupportedProtocolsEntry 1 } + + +rttMonApplSupportedProtocolsValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object defines the supported + 'RttMonProtocol' protocols." + ::= { rttMonApplSupportedProtocolsEntry 2 } + + +-- +-- Preconfigured Script Names and File IO targets. +-- + +rttMonApplPreConfigedTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonApplPreConfigedEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A table of which contains the previously + configured Script Names and File IO targets. + + These Script Names and File IO targets are installed + via a different mechanism than this application, and + are specific to each platform." + ::= { rttMonAppl 9 } + + +rttMonApplPreConfigedEntry OBJECT-TYPE + SYNTAX RttMonApplPreConfigedEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A list of objects that describe the previously + configured Script Names and File IO targets." + INDEX { rttMonApplPreConfigedType, + rttMonApplPreConfigedName + } + ::= { rttMonApplPreConfigedTable 1 } + + +RttMonApplPreConfigedEntry ::= SEQUENCE +{ + rttMonApplPreConfigedType INTEGER, + rttMonApplPreConfigedName DisplayString, + rttMonApplPreConfigedValid TruthValue +} + + +rttMonApplPreConfigedType OBJECT-TYPE + SYNTAX INTEGER + { + filePath(1), + scriptName(2) + } + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "This is the type of value being stored in the + rttMonApplPreConfigedName object." + ::= { rttMonApplPreConfigedEntry 2 } + + +rttMonApplPreConfigedName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "This is either one of the following depending on the + value of the rttMonApplPreConfigedType object: + + - The file path to a server. One of these file paths + must be used when defining an entry in the + rttMonFileIOAdminTable table with 'fileIO' as the + value of the rttMonCtrlAdminRttType object. + + - The script name to be used when generating RTT + operations. One of these script names must be used + when defining an entry in the rttMonScriptAdminTable + table with 'script' as the value of the + rttMonCtrlAdminRttType object. + + NOTE: For script names, command line parameters + can follow these names in the + rttMonScriptAdminTable table." + ::= { rttMonApplPreConfigedEntry 3 } + +rttMonApplPreConfigedValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "When this row exists, this value will be 'true'. + This object exists only to create a valid row in this + table." + ::= { rttMonApplPreConfigedEntry 4 } + +rttMonApplProbeCapacity OBJECT-TYPE + SYNTAX Integer32 ( 1..10000 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object defines the number of new probes that can be + configured on a router. The number depends on the value + of rttMonApplFreeMemLowWaterMark, free bytes + available on the router and the system configured + rttMonCtrlAdminEntry number. + Equation: + rttMonApplProbeCapacity = + MIN(((Free_Bytes_on_the_Router - rttMonApplFreeMemLowWaterMark)/ + Memory_required_by_each_probe), + rttMonApplNumCtrlAdminEntry - Num_of_Probes_already_configured)) + " + ::= { rttMonAppl 10 } + +rttMonApplFreeMemLowWaterMark OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object defines the amount of free memory a router must + have in order to configure RTR. If RTR found out that the + memory is falling below this mark, it will not allow new + probes to be configured. + + This value should not be set higher (or very close to) than + the free bytes available on the router." + ::= { rttMonAppl 11 } + +rttMonApplLatestSetError OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An error description for the last error message caused + by set. + + Currently, it includes set error caused due to setting + rttMonApplFreeMemLowWaterMark greater than the available + free memory on the router or not enough memory left to + create new probes." + ::= { rttMonAppl 12 } + +rttMonApplResponder OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Enable or disable RTR responder on the router." + ::= { rttMonAppl 13 } + +-- +-- MD5 Authentication for RTR Control Protocol +-- + +rttMonApplAuthTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonApplAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table which contains the definitions for key-strings + that will be used in authenticating RTR Control Protocol." + ::= { rttMonAppl 14 } + + +rttMonApplAuthEntry OBJECT-TYPE + SYNTAX RttMonApplAuthEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list that presents the valid parameters for Authenticating + RTR Control Protocol." + INDEX { rttMonApplAuthIndex } + ::= { rttMonApplAuthTable 1 } + + +RttMonApplAuthEntry ::= SEQUENCE +{ + rttMonApplAuthIndex Integer32, + rttMonApplAuthKeyChain DisplayString, + rttMonApplAuthKeyString1 DisplayString, + rttMonApplAuthKeyString2 DisplayString, + rttMonApplAuthKeyString3 DisplayString, + rttMonApplAuthKeyString4 DisplayString, + rttMonApplAuthKeyString5 DisplayString, + rttMonApplAuthStatus RowStatus +} + +rttMonApplAuthIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Uniquely identifies a row in the rttMonApplAuthTable. + This is a pseudo-random number selected by the management + station when creating a row via the rttMonApplAuthStatus + object. If the pseudo-random number is already in use, an + 'inconsistentValue' is returned. Currently, only one row + can be created." + ::= { rttMonApplAuthEntry 1 } + +rttMonApplAuthKeyChain OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents the key-chain name. If multiple + key-strings are specified, then the authenticator will + alternate between the specified strings." + ::= { rttMonApplAuthEntry 2 } + +rttMonApplAuthKeyString1 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents a key-string name whose id is 1." + ::= { rttMonApplAuthEntry 3 } + +rttMonApplAuthKeyString2 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents a key-string name whose id is 2." + ::= { rttMonApplAuthEntry 4 } + +rttMonApplAuthKeyString3 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents a key-string name whose id is 3." + ::= { rttMonApplAuthEntry 5 } + +rttMonApplAuthKeyString4 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents a key-string name whose id is 4." + ::= { rttMonApplAuthEntry 6 } + +rttMonApplAuthKeyString5 OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents a key-string name whose id is 5." + ::= { rttMonApplAuthEntry 7 } + +rttMonApplAuthStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the Authentication row." + ::= { rttMonApplAuthEntry 8 } + +rttMonApplLpdGrpStatsReset OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is used to reset certain objects within the + rttMonLpdGrpStatsTable. When the object is set to value of + an active LPD Group identifier the associated objects will be + reset. The reset objects will be set to a value as specified + in the object's description. + + The following objects will not be reset. + - rttMonLpdGrpStatsTargetPE + - rttMonLpdGrpStatsGroupProbeIndex + - rttMonLpdGrpStatsGroupIndex + - rttMonLpdGrpStatsStartTimeIndex." + ::= { rttMonAppl 15 } + +-- +-- RTT Configuration Definitions +-- + +rttMonCtrlAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonCtrlAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring definitions. + + The RTT administration control is in multiple tables. + This first table, is used to create a conceptual RTT + control row. The following tables contain objects which + configure scheduling, information gathering, and + notification/trigger generation. All of these tables + will create the same conceptual RTT control row as this + table using this tables' index as their own index. + + This table is limited in size by the agent + implementation. The object rttMonApplNumCtrlAdminEntry + will reflect this tables maximum number of entries." + ::= { rttMonCtrl 1 } + + +rttMonCtrlAdminEntry OBJECT-TYPE + SYNTAX RttMonCtrlAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A base list of objects that define a conceptual RTT + control row." + INDEX { rttMonCtrlAdminIndex } + ::= { rttMonCtrlAdminTable 1 } + + +RttMonCtrlAdminEntry ::= SEQUENCE +{ + rttMonCtrlAdminIndex Integer32, + rttMonCtrlAdminOwner OwnerString, + rttMonCtrlAdminTag DisplayString, + rttMonCtrlAdminRttType RttMonRttType, + rttMonCtrlAdminThreshold Integer32, + rttMonCtrlAdminFrequency Integer32, + rttMonCtrlAdminTimeout Integer32, + rttMonCtrlAdminVerifyData TruthValue, + rttMonCtrlAdminStatus RowStatus, + rttMonCtrlAdminNvgen TruthValue +} + + +rttMonCtrlAdminIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Uniquely identifies a row in the rttMonCtrlAdminTable. + + This is a pseudo-random number selected by the management + station when creating a row via the rttMonCtrlAdminStatus + object. If the pseudo-random number is already in use an + 'inconsistentValue' return code will be returned when + set operation is attempted." + ::= { rttMonCtrlAdminEntry 1 } + + +rttMonCtrlAdminOwner OBJECT-TYPE + SYNTAX OwnerString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Identifies the entity that created this table row." + DEFVAL { "" } + ::= { rttMonCtrlAdminEntry 2 } + + +rttMonCtrlAdminTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which is used by a managing application to + identify the RTT target. This string is inserted into trap + notifications, but has no other significance to the + agent." + DEFVAL { "" } + ::= { rttMonCtrlAdminEntry 3 } + + +rttMonCtrlAdminRttType OBJECT-TYPE + SYNTAX RttMonRttType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of RTT operation to be performed. This value + must be set in the same PDU or before setting any type + specific configuration. + + Note: The RTT operation 'lspGroup' cannot be created via this + control row. It will be created automatically by Auto SAA L3 + MPLS VPN when rttMplsVpnMonCtrlLpd is 'true'." + DEFVAL { echo } + ::= { rttMonCtrlAdminEntry 4 } + + +rttMonCtrlAdminThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object defines an administrative threshold limit. + If the RTT operation time exceeds this limit and if the + conditions specified in rttMonReactAdminThresholdType or + rttMonHistoryAdminFilter are satisfied, a + threshold is generated." + DEFVAL { 5000 } + ::= { rttMonCtrlAdminEntry 5 } + + +rttMonCtrlAdminFrequency OBJECT-TYPE + SYNTAX Integer32 (0..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the duration between initiating each RTT + operation. + + This object cannot be set to a value which would be a + shorter duration than rttMonCtrlAdminTimeout. + + When the RttMonRttType specifies an operation that is + synchronous in nature, it may happen that the next RTT + operation is blocked by a RTT operation which has not + yet completed. In this case, the value of a counter + (rttMonStatsCollectBusies) in rttMonStatsCaptureTable is + incremented in lieu of initiating a RTT operation, and + the next attempt will occur at the next + rttMonCtrlAdminFrequency expiration. + + NOTE: When the rttMonCtrlAdminRttType object is defined + to be 'pathEcho', setting this value to a small + value for your network size may cause an operation + attempt (or multiple attempts) to be started + before the previous operation has finished. In + this situation the rttMonStatsCollectBusies object + will be incremented in lieu of initiating a new + RTT operation, and the next attempt will occur at + the next rttMonCtrlAdminFrequency expiration. + + When the rttMonCtrlAdminRttType object is defined + to be 'pathEcho', the suggested value for this object + is greater than rttMonCtrlAdminTimeout times the + maximum number of expected hops to the target. + + NOTE: When the rttMonCtrlAdminRttType object is defined + to be 'dhcp', the minimum allowed value for this + object is 10 seconds. This restriction is due to + protocol limitations described in RFC 2131." + DEFVAL { 60 } + ::= { rttMonCtrlAdminEntry 6 } + + +rttMonCtrlAdminTimeout OBJECT-TYPE + SYNTAX Integer32 (0..604800000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the duration to wait for a RTT operation + completion. The value of this object cannot be set to + a value which would specify a duration exceeding + rttMonCtrlAdminFrequency. + + For connection oriented protocols, this may cause the + connection to be closed by the probe. Once closed, it + will be assumed that the connection reestablishment + will be performed. To prevent unwanted closure of + connections, be sure to set this value to a realistic + connection timeout." + DEFVAL { 5000 } + ::= { rttMonCtrlAdminEntry 7 } + + +rttMonCtrlAdminVerifyData OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When set to true, the resulting data in each RTT + operation is compared with the expected data. This + includes checking header information (if possible) and + exact packet size. Any mismatch will be recorded in the + rttMonStatsCollectVerifyErrors object. + + Some RttMonRttTypes may not support this option. When + a type does not support this option, the agent will + transition this object to false. It is the management + applications responsibility to check for this + transition. This object is only applicable to SNA protocols." + DEFVAL { false } + ::= { rttMonCtrlAdminEntry 8 } + + +rttMonCtrlAdminStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual RTT control row. + + In order for this object to become active, the following + row objects must be defined: + - rttMonCtrlAdminRttType + Additionally: + - for echo, pathEcho based on 'ipIcmpEcho' and dlsw probes + rttMonEchoAdminProtocol and + rttMonEchoAdminTargetAddress; + - for echo, pathEcho based on 'mplsLspPingAppl' + rttMonEchoAdminProtocol, rttMonEchoAdminTargetAddress + and rttMonEchoAdminLSPFECType + - for udpEcho, tcpConnect and jitter probes + rttMonEchoAdminTargetAddress and + rttMonEchoAdminTargetPort + - for http and ftp probe + rttMonEchoAdminURL + - for dns probe + rttMonEchoAdminTargetAddressString + rttMonEchoAdminNameServer + - dhcp probe doesn't require any additional objects + + All other objects can assume default values. The + conceptual Rtt control row will be placed into a + 'pending' state (via the rttMonCtrlOperState object) + if rttMonScheduleAdminRttStartTime is not specified. + + Most conceptual Rtt control row objects cannot be + modified once this conceptual Rtt control row has been + created. The objects that can change are the following: + + - Objects in the rttMonReactAdminTable can be modified + as needed without setting this object to + 'notInService'. + - Objects in the rttMonScheduleAdminTable can be + modified only when this object has the value of + 'notInService'. + - The rttMonCtrlOperState can be modified to control + the state of the probe. + + Once this object is in 'active' status, it cannot be + set to 'notInService' while the rttMonCtrlOperState + is in 'active' state. Thus the rttMonCtrlOperState + object must be transitioned first. + + This object can be set to 'destroy' from any value + at any time." + ::= { rttMonCtrlAdminEntry 9 } + +rttMonCtrlAdminNvgen OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When set to true, this entry will be shown in + 'show running' command and can be saved into + Non-volatile memory." + DEFVAL { false } + ::= { rttMonCtrlAdminEntry 10 } + + + +-- +-- Echo Administration Table +-- + +rttMonEchoAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonEchoAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains Round Trip Time (RTT) specific + definitions. + + This table is controlled via the + rttMonCtrlAdminTable. Entries in this table are + created via the rttMonCtrlAdminStatus object." + ::= { rttMonCtrl 2 } + + +rttMonEchoAdminEntry OBJECT-TYPE + SYNTAX RttMonEchoAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define specific configuration for + RttMonRttType conceptual Rtt control rows." + INDEX { rttMonCtrlAdminIndex } + ::= { rttMonEchoAdminTable 1 } + + +RttMonEchoAdminEntry ::= SEQUENCE +{ + rttMonEchoAdminProtocol RttMonProtocol, + rttMonEchoAdminTargetAddress RttMonTargetAddress, + rttMonEchoAdminPktDataRequestSize Integer32, + rttMonEchoAdminPktDataResponseSize Integer32, + rttMonEchoAdminTargetPort Integer32, + rttMonEchoAdminSourceAddress RttMonTargetAddress, + rttMonEchoAdminSourcePort Integer32, + rttMonEchoAdminControlEnable TruthValue, + rttMonEchoAdminTOS Integer32, + rttMonEchoAdminLSREnable TruthValue, + rttMonEchoAdminTargetAddressString DisplayString, + rttMonEchoAdminNameServer RttMonTargetAddress, + rttMonEchoAdminOperation RttMonOperation, + rttMonEchoAdminHTTPVersion DisplayString, + rttMonEchoAdminURL DisplayString, + rttMonEchoAdminCache TruthValue, + rttMonEchoAdminInterval Integer32, + rttMonEchoAdminNumPackets Integer32, + rttMonEchoAdminProxy DisplayString, + rttMonEchoAdminString1 DisplayString, + rttMonEchoAdminString2 DisplayString, + rttMonEchoAdminString3 DisplayString, + rttMonEchoAdminString4 DisplayString, + rttMonEchoAdminString5 DisplayString, + rttMonEchoAdminMode RttMonOperation, + rttMonEchoAdminVrfName OCTET STRING, + rttMonEchoAdminCodecType RttMonCodecType, + rttMonEchoAdminCodecInterval Integer32, + rttMonEchoAdminCodecPayload Integer32, + rttMonEchoAdminCodecNumPackets Integer32, + rttMonEchoAdminICPIFAdvFactor Integer32, + rttMonEchoAdminLSPFECType INTEGER, + rttMonEchoAdminLSPSelector RttMonTargetAddress, + rttMonEchoAdminLSPReplyMode RttMonLSPPingReplyMode, + rttMonEchoAdminLSPTTL Integer32, + rttMonEchoAdminLSPExp Integer32, + rttMonEchoAdminPrecision INTEGER, + rttMonEchoAdminProbePakPriority INTEGER, + rttMonEchoAdminOWNTPSyncTolAbs Integer32, + rttMonEchoAdminOWNTPSyncTolPct Integer32, + rttMonEchoAdminOWNTPSyncTolType INTEGER, + rttMonEchoAdminCalledNumber SnmpAdminString, + rttMonEchoAdminDetectPoint RttMonOperation, + rttMonEchoAdminGKRegistration TruthValue, + rttMonEchoAdminSourceVoicePort DisplayString, + rttMonEchoAdminCallDuration Integer32, + rttMonEchoAdminLSPReplyDscp Integer32, + rttMonEchoAdminLSPNullShim TruthValue +} + +rttMonEchoAdminProtocol OBJECT-TYPE + SYNTAX RttMonProtocol + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the protocol to be used to perform the RTT + operation. The following list defines what protocol + should be used for each probe type: + + echo, pathEcho - ipIcmpEcho / mplsLspPingAppl + udpEcho - ipUdpEchoAppl + tcpConnect - ipTcpConn + http - httpAppl + jitter - jitterAppl + dlsw - dlswAppl + dhcp - dhcpAppl + ftp - ftpAppl + mplsLspPing - mplsLspPingAppl + voip - voipAppl + + When this protocol does not support the type, a 'badValue' + error will be returned." + DEFVAL { notApplicable } + ::= { rttMonEchoAdminEntry 1 } + + +rttMonEchoAdminTargetAddress OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the address of the target." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 2 } + + +rttMonEchoAdminPktDataRequestSize OBJECT-TYPE + SYNTAX Integer32 (0..16384) + UNITS "octets" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the number of octets to be + placed into the ARR Data portion of the request + message, when using SNA protocols. + + For non-ARR protocols' RTT request/responses, + this value represents the native payload size. + + REMEMBER: The ARR Header overhead is not included + in this value. + + For echo probes the total packet size = (IP header(20) + + ICMP header(8) + 8 (internal timestamps) + request size). + + For echo and pathEcho default request size is 28. + For udp probe, default request size is 16 and for jitter + probe it is 32. For dlsw probes default request size is 0. + + The minimum request size for echo and pathEcho is 28 bytes, + for udp it is 4 and for jitter it is 16. + For udp and jitter probes the maximum request size is 1500." + DEFVAL { 1 } + ::= { rttMonEchoAdminEntry 3 } + + +rttMonEchoAdminPktDataResponseSize OBJECT-TYPE + SYNTAX Integer32 (0..16384) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the number of octets to be + placed into the ARR Data portion of the response message. + This value is passed to the RTT Echo Server via a + field in the ARR Header. + + For non-ARR RTT request/response (i.e. ipIcmpecho) + this value will be set by the agent to match the + size of rttMonEchoAdminPktDataRequestSize, when + native payloads are supported. + + REMEMBER: The ARR Header overhead is not included + in this value. + + This object is only supported by SNA protocols." + DEFVAL { 0 } + ::= { rttMonEchoAdminEntry 4 } + +rttMonEchoAdminTargetPort OBJECT-TYPE + SYNTAX Integer32 (0..65536) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the target's port number. This + object is applicable to udpEcho, tcpConnect and jitter probes." + DEFVAL { 0 } + ::= { rttMonEchoAdminEntry 5 } + +rttMonEchoAdminSourceAddress OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the IP address of the source. + This object is applicable to all probes except dns, dlsw + and sna." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 6 } + +rttMonEchoAdminSourcePort OBJECT-TYPE + SYNTAX Integer32 (0..65536) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the source's port number. If this + object is not specified, the application will get a + port allocated by the system. This object is applicable + to all probes except dns, dlsw and sna." + DEFVAL { 0 } + ::= { rttMonEchoAdminEntry 7 } + +rttMonEchoAdminControlEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If this object is enabled, then the RTR application + will send control messages to a responder, residing on the + target router to respond to the data request packets being + sent by the source router. This object is not applicable to + echo, pathEcho, dns and http probes." + DEFVAL { true } + ::= { rttMonEchoAdminEntry 8 } + +rttMonEchoAdminTOS OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the type of service octet in an + IP header. This object is not applicable to dhcp and dns." + REFERENCE + "Refer to the following documents for TOS definition. + RFC791/1349 for IPv4, IPv6, draft-ietf-diffserv-header-02.txt" + DEFVAL { 0 } + ::= { rttMonEchoAdminEntry 9 } + +rttMonEchoAdminLSREnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this object is enabled then it means that the application + calculates response time for a specific path, defined in + rttMonEchoPathAdminEntry. This object is applicable to echo + probe only." + DEFVAL { false } + ::= { rttMonEchoAdminEntry 10 } + +rttMonEchoAdminTargetAddressString OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the address of the target. This string + can be in IP address format or a hostname. This object + is applicable to dns probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 11 } + +rttMonEchoAdminNameServer OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the ip address of the name-server. + This object is applicable to dns probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 12 } + +rttMonEchoAdminOperation OBJECT-TYPE + SYNTAX RttMonOperation + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A code that represents the specific type of RTT operation. + This object is applicable to http and ftp probe only." + ::= { rttMonEchoAdminEntry 13 } + +rttMonEchoAdminHTTPVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (3..10)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the version number of the HTTP + Server. The syntax for the version string is + . An example would be 1.0, + 1.1 etc.,. This object is applicable to http probe only." + DEFVAL { "1.0" } + ::= { rttMonEchoAdminEntry 14 } + +rttMonEchoAdminURL OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which represents the URL to which a HTTP probe should + communicate with. This object is applicable to http probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 15 } + +rttMonEchoAdminCache OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If this object is false then it means that HTTP request should + not download cached pages. This means that the request should + be forwarded to the origin server. This object is applicable + to http probe only." + DEFVAL { true } + ::= { rttMonEchoAdminEntry 16 } + +rttMonEchoAdminInterval OBJECT-TYPE + SYNTAX Integer32 (0..60000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value represents the inter-packet delay between packets + and is in milliseconds. This value is currently used for + Jitter probe. This object is applicable to jitter probe only." + DEFVAL { 20 } + ::= { rttMonEchoAdminEntry 17 } + +rttMonEchoAdminNumPackets OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value represents the number of packets that need to be + transmitted. This value is currently used for Jitter probe. + This object is applicable to jitter probe only." + DEFVAL { 10 } + ::= { rttMonEchoAdminEntry 18 } + +rttMonEchoAdminProxy OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string represents the proxy server information. + This object is applicable to http probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 19 } + +rttMonEchoAdminString1 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string stores the content of HTTP raw request. + If the request cannot fit into String1 then it should + be split and put in Strings 1 through 5. + + This string stores the content of the DHCP raw option + data. The raw DHCP option data must be in HEX. + If an odd number of characters are specified, a 0 + will be appended to the end of the string. Only + DHCP option 82 (decimal) is allowed. + Here is an example of a valid string: + 5208010610005A6F1234 + Only rttMonEchoAdminString1 is used for dhcp, Strings + 1 through 5 are not used. + + This object is applicable to http and dhcp probe + types only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 20 } + +rttMonEchoAdminString2 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string stores the content of HTTP raw request. + rttMonEchoAdminString1-5 are concatenated to + form the HTTP raw request used in the RTT operation. + This object is applicable to http probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 21 } + +rttMonEchoAdminString3 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string stores the content of HTTP raw request. + rttMonEchoAdminString1-5 are concatenated to + form the HTTP raw request used in the RTT operation. + This object is applicable to http probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 22 } + +rttMonEchoAdminString4 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string stores the content of HTTP raw request. + rttMonEchoAdminString1-5 are concatenated to + form the HTTP raw request used in the RTT operation. + This object is applicable to http probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 23 } + +rttMonEchoAdminString5 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string stores the content of HTTP raw request. + rttMonEchoAdminString1-5 are concatenated to + form the HTTP raw request used in the RTT operation. + This object is applicable to http probe only." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 24 } + +rttMonEchoAdminMode OBJECT-TYPE + SYNTAX RttMonOperation + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A code that represents the specific type of RTT operation. + This object is applicable to ftp probe only." + DEFVAL { ftpPassive } + ::= { rttMonEchoAdminEntry 25 } + +rttMonEchoAdminVrfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This field is used to specify the VPN name in + which the RTT operation will be used. For regular RTT + operation this field should not be configured. The agent + will use this field to identify the VPN routing Table for + this operation." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 26 } + +rttMonEchoAdminCodecType OBJECT-TYPE + SYNTAX RttMonCodecType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the codec type to be used with jitter probe. This is + applicable only for the jitter probe. + + If codec-type is configured the following parameters cannot be + configured. + rttMonEchoAdminPktDataRequestSize + rttMonEchoAdminInterval + rttMonEchoAdminNumPackets" + ::= { rttMonEchoAdminEntry 27 } + +rttMonEchoAdminCodecInterval OBJECT-TYPE + SYNTAX Integer32 (0..60000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This field represents the inter-packet delay between + packets and is in milliseconds. This object is applicable + only to jitter probe which uses codec type." + ::= { rttMonEchoAdminEntry 28 } + +rttMonEchoAdminCodecPayload OBJECT-TYPE + SYNTAX Integer32 (0..16384) + UNITS "octets" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the number of octets that needs to be + placed into the Data portion of the message. This value is + used only for jitter probe which uses codec type." + ::= { rttMonEchoAdminEntry 29 } + + +rttMonEchoAdminCodecNumPackets OBJECT-TYPE + SYNTAX Integer32 (0..60000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value represents the number of packets that need to be + transmitted. This value is used only for jitter probe which + uses codec type." + ::= { rttMonEchoAdminEntry 30 } + +rttMonEchoAdminICPIFAdvFactor OBJECT-TYPE + SYNTAX Integer32 (0..20) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The advantage factor is dependant on the type of access and + how the service is to be used. + Conventional Wire-line 0 + Mobility within Building 5 + Mobility within geographic area 10 + Access to hard-to-reach location 20 + + This will be used while calculating the ICPIF values + This valid only for Jitter while calculating the ICPIF value" + DEFVAL {0} + ::= { rttMonEchoAdminEntry 31 } + +rttMonEchoAdminLSPFECType OBJECT-TYPE + SYNTAX INTEGER + { + ldpIpv4Prefix(1) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of the target FEC for the RTT 'echo' and 'pathEcho' + operations based on 'mplsLspPingAppl' RttMonProtocol. + + ldpIpv4Prefix - LDP IPv4 prefix." + ::= { rttMonEchoAdminEntry 32 } + +rttMonEchoAdminLSPSelector OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies a valid 127/8 address. This address + is of the form 127.x.y.z. + This address is not used to route the MPLS echo packet to the + destination but is used for load balancing in cases where the + IP payload's destination address is used for load balancing." + DEFVAL { "7F 00 00 01" } + ::= { rttMonEchoAdminEntry 33 } + +rttMonEchoAdminLSPReplyMode OBJECT-TYPE + SYNTAX RttMonLSPPingReplyMode + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the reply mode for the LSP Echo + requests." + DEFVAL { replyIpv4Udp } + ::= { rttMonEchoAdminEntry 34 } + +rttMonEchoAdminLSPTTL OBJECT-TYPE + SYNTAX Integer32 ( 0..255 ) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the TTL setting for MPLS echo request + packets. For ping operation this represents the TTL value to + be set in the echo request packet. For trace operation it + represent the maximum ttl value that can be set in the echo + request packets starting with TTL=1. + + For 'echo' based on mplsLspPingAppl the default TTL will be + set to 255, and for 'pathEcho' based on mplsLspPingAppl the + default will be set to 30. + + Note: This object cannot be set to the value of 0. The + default value of 0 signifies the default TTL values to be + used for 'echo' and 'pathEcho' based on 'mplsLspPingAppl'." + DEFVAL { 0 } + ::= { rttMonEchoAdminEntry 35 } + +rttMonEchoAdminLSPExp OBJECT-TYPE + SYNTAX Integer32 ( 0..7 ) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the EXP value that needs to be + put as precedence bit in the MPLS echo request IP header." + DEFVAL { 0 } + ::= { rttMonEchoAdminEntry 36 } + + +rttMonEchoAdminPrecision OBJECT-TYPE + SYNTAX INTEGER + { + milliseconds(1), + microseconds(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the accuracy of statistics that + needs to be calculated + milliseconds - The accuracy of stats will be of milliseconds + microseconds - The accuracy of stats will be in microseconds. + This value can be set only for jitter operation" + DEFVAL { milliseconds } + ::= { rttMonEchoAdminEntry 37 } + +rttMonEchoAdminProbePakPriority OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + high(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the priority that will be assigned + to probe packet. This value can be set only for jitter + operation" + DEFVAL { normal } + ::= { rttMonEchoAdminEntry 38 } + +rttMonEchoAdminOWNTPSyncTolAbs OBJECT-TYPE + SYNTAX Integer32 + UNITS "microseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the total clock synchronization error + on source and responder that is considered acceptable for + oneway measurement when NTP is used as clock synchronization + mechanism. The total clock synchronization error is sum of + NTP offsets on source and responder. The value specified is + microseconds. This value can be set only for jitter operation + with precision of microsecond." + DEFVAL {0} + ::= { rttMonEchoAdminEntry 39 } + +rttMonEchoAdminOWNTPSyncTolPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the total clock synchronization error + on source and responder that is considered acceptable for + oneway measurement when NTP is used as clock synchronization + mechanism. The total clock synchronization error is sum of + NTP offsets on source and responder. The value is expressed + as the percentage of actual oneway latency that is measured. + This value can be set only for jitter operation with precision + of microsecond." + DEFVAL {0} + ::= { rttMonEchoAdminEntry 40 } + +rttMonEchoAdminOWNTPSyncTolType OBJECT-TYPE + SYNTAX INTEGER + { + percent(1), + absolute(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies whether the value in specified for oneway + NTP sync tolerance is absolute value or percent value" + DEFVAL { percent } + ::= { rttMonEchoAdminEntry 41 } + + +rttMonEchoAdminCalledNumber OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(0..24)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This string stores the called number of post dial delay. + This object is applicable to voip post dial delay probe only. + The number will be like the one actualy the user could dial. + It has the number required by the local country dial plan, plus + E.164 number. The maximum length is 24 digits. Only digit (0-9) + is allowed." + DEFVAL { "" } + ::= { rttMonEchoAdminEntry 42 } + +rttMonEchoAdminDetectPoint OBJECT-TYPE + SYNTAX RttMonOperation + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A code that represents the detect point of post dial delay. + This object is applicable to SAA post dial delay probe only." + DEFVAL { voipDTAlertRinging } + ::= { rttMonEchoAdminEntry 43 } + +rttMonEchoAdminGKRegistration OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A boolean that represents VoIP GK registration delay. + This object is applicable to SAA GK registration delay + probe only." + DEFVAL { false } + ::= { rttMonEchoAdminEntry 44 } + +rttMonEchoAdminSourceVoicePort OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the voice-port on the source gateway. + This object is applicable to RTP probe only." + DEFVAL { "" } +::= { rttMonEchoAdminEntry 45 } + +rttMonEchoAdminCallDuration OBJECT-TYPE + SYNTAX Integer32 (10..300) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Duration of RTP session. + This object is applicable to RTP probe only." + DEFVAL { 60 } +::= { rttMonEchoAdminEntry 46 } + +rttMonEchoAdminLSPReplyDscp OBJECT-TYPE + SYNTAX Integer32 ( 0..63 | 255 ) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the DSCP value to be set in the IP header + of the LSP echo reply packet. + The value of this object will be in range of DiffServ codepoint + values between 0 to 63. + + Note: This object cannot be set to value of 255. This default + value specifies that DSCP is not set for this row." + DEFVAL { 255 } + ::= { rttMonEchoAdminEntry 47 } + +rttMonEchoAdminLSPNullShim OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies if the explicit-null label is to be added + to LSP echo requests which are sent while performing RTT + operation." + DEFVAL { false } + ::= { rttMonEchoAdminEntry 48 } + +-- +-- FileIO Administration Table +-- + +rttMonFileIOAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonFileIOAdminEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring 'fileIO' + specific definitions. + + When the RttMonRttType is not 'fileIO' this table is + not valid. + + This table is controlled via the + rttMonCtrlAdminTable. Entries in this table are + created via the rttMonCtrlAdminStatus object." + ::= { rttMonCtrl 3 } + + +rttMonFileIOAdminEntry OBJECT-TYPE + SYNTAX RttMonFileIOAdminEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A list of objects that define specific configuration for + 'fileIO' RttMonRttType conceptual Rtt control rows." + INDEX { rttMonCtrlAdminIndex } + ::= { rttMonFileIOAdminTable 1 } + + +RttMonFileIOAdminEntry ::= SEQUENCE +{ + rttMonFileIOAdminFilePath DisplayString, + rttMonFileIOAdminSize INTEGER, + rttMonFileIOAdminAction INTEGER +} + + +rttMonFileIOAdminFilePath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The fully qualified file path that will be the target + of the RTT operation. + + This value must match one of the rttMonApplPreConfigedName + entries." + DEFVAL { "" } + ::= { rttMonFileIOAdminEntry 1 } + + +rttMonFileIOAdminSize OBJECT-TYPE + SYNTAX INTEGER + { + n256(1), + n1k(2), + n64k(3), + n128k(4), + n256k(5) + } + UNITS "bytes" + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The size of the file to write/read from the File + Server." + DEFVAL { n256 } + ::= { rttMonFileIOAdminEntry 2 } + + +rttMonFileIOAdminAction OBJECT-TYPE + SYNTAX INTEGER + { + write(1), + read(2), + writeRead(3) + } + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The File I/O action to be performed." + DEFVAL { read } + ::= { rttMonFileIOAdminEntry 3 } + + +-- +-- Script Administration Table +-- + +rttMonScriptAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonScriptAdminEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring 'script' + specific definitions. + + When the RttMonRttType is not 'script' this table is + not valid. + + This table is controlled via the + rttMonCtrlAdminTable. Entries in this table are + created via the rttMonCtrlAdminStatus object." + ::= { rttMonCtrl 4 } + + +rttMonScriptAdminEntry OBJECT-TYPE + SYNTAX RttMonScriptAdminEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A list of objects that define specific configuration for + 'script' RttMonRttType conceptual Rtt control rows." + INDEX { rttMonCtrlAdminIndex } + ::= { rttMonScriptAdminTable 1 } + + +RttMonScriptAdminEntry ::= SEQUENCE +{ + rttMonScriptAdminName DisplayString, + rttMonScriptAdminCmdLineParams DisplayString +} + + +rttMonScriptAdminName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "This will be the Name of the Script that will be used to + generate RTT operations. + + This object must match one of the + rttMonApplPreConfigedName entries." + DEFVAL { "" } + ::= { rttMonScriptAdminEntry 1 } + + +rttMonScriptAdminCmdLineParams OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "This will be the actual command line parameters + passed to the rttMonScriptAdminName when being + executed." + DEFVAL { "" } + ::= { rttMonScriptAdminEntry 2 } + + +-- +-- Schedule Administration Table +-- + +rttMonScheduleAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonScheduleAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring scheduling + specific definitions. + + This table is controlled via the + rttMonCtrlAdminTable. Entries in this table are + created via the rttMonCtrlAdminStatus object." + ::= { rttMonCtrl 5 } + + +rttMonScheduleAdminEntry OBJECT-TYPE + SYNTAX RttMonScheduleAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define specific configuration for + the scheduling of RTT operations." + AUGMENTS { rttMonCtrlAdminEntry } + ::= { rttMonScheduleAdminTable 1 } + + +RttMonScheduleAdminEntry ::= SEQUENCE +{ + rttMonScheduleAdminRttLife Integer32, + rttMonScheduleAdminRttStartTime TimeTicks, + rttMonScheduleAdminConceptRowAgeout Integer32, + rttMonScheduleAdminRttRecurring TruthValue +} + +rttMonScheduleAdminRttLife OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object value will be placed into the + rttMonCtrlOperRttLife object when the rttMonCtrlOperState + object transitions to 'active' or 'pending'. + + The value 2147483647 has a special meaning. When + this object is set to 2147483647, the + rttMonCtrlOperRttLife object will not decrement. + And thus the life time will never end." + DEFVAL { 3600 } + ::= { rttMonScheduleAdminEntry 1 } + + +rttMonScheduleAdminRttStartTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is the time when this conceptional row will + activate. + + This is the value of MIB-II's sysUpTime in the future. + When sysUpTime equals this value this object will + cause the activation of a conceptual Rtt row. + + When an agent has the capability to determine date and + time, the agent should store this object as DateAndTime. + This allows the agent to completely reset (restart) and + still be able to start conceptual Rtt rows at the + intended time. If the agent cannot keep date and time + and the agent resets, all entries should take on one of + the special value defined below. + + The first special value allows this conceptual Rtt + control row to immediately transition the + rttMonCtrlOperState object into 'active' state when the + rttMonCtrlAdminStatus object transitions to active. + This special value is defined to be a value of this + object that, when initially set, is 1. + + The second special value allows this conceptual Rtt + control row to immediately transition the + rttMonCtrlOperState object into 'pending' state when + the rttMonCtrlAdminStatus object transitions to active. + Also, when the rttMonCtrlOperRttLife counts down to zero + (and not when set to zero), this special value causes + this conceptual Rtt control row to retransition the + rttMonCtrlOperState object into 'pending' state. This + special value is defined to be a value of this object + that, when initially set, is smaller than the current + sysUpTime. (With the exception of one, as defined in + the previous paragraph)" + DEFVAL { 0 } + ::= { rttMonScheduleAdminEntry 2 } + + +rttMonScheduleAdminConceptRowAgeout OBJECT-TYPE + SYNTAX Integer32 (0..2073600) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The amount of time this conceptual Rtt control row will + exist when not in an 'active' rttMonCtrlOperState. + + When this conceptual Rtt control row enters an 'active' + state, this timer will be reset and suspended. When + this conceptual RTT control row enters a state other + than 'active', the timer will be restarted. + + NOTE: When a conceptual Rtt control row ages out, the + agent needs to remove the associated entries in + the rttMonReactTriggerAdminTable and + rttMonReactTriggerOperTable. + + When this value is set to zero, this entry will + never be aged out." + DEFVAL { 3600 } + ::= { rttMonScheduleAdminEntry 3 } + + +rttMonScheduleAdminRttRecurring OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When set to true, this entry will be scheduled to + run automatically for the specified duration equal + to the life configured, at the same time daily. + + This value cannot be set to true + (a) if rttMonScheduleAdminRttLife object has value greater or + equal to 86400 seconds. + (b) if sum of values of rttMonScheduleAdminRttLife and + rttMonScheduleAdminConceptRowAgeout is less or equal to + 86400 seconds." + DEFVAL { false } + ::= { rttMonScheduleAdminEntry 4 } + +-- +-- Reaction Administration Table +-- + +rttMonReactAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonReactAdminEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring Notification + and Trigger definitions. + + All Notification/Reactions are applied to all RTT + End-to-End operations. Thus, they do not apply to hops + along a path to the target, when RttMonRttType is + 'pathEcho'. + + The format and content of SNA NMVT's are not defined + within this module. + + It can be noted, however, that there are Alert NMVT's, + and traps which are sent when an abnormal + condition occurs, i.e. when one of + rttMonCtrlOperConnectionLostOccurred, + rttMonCtrlOperTimeoutOccurred or + rttMonCtrlOperOverThresholdOccurred are changed to true, + and Resolution NMVT's, and Resolution traps which are + sent when that condition clears, i.e. when one of + rttMonCtrlOperConnectionLostOccurred, + rttMonCtrlOperTimeoutOccurred or + rttMonCtrlOperOverThresholdOccurred is changed back to + false. + + When rttMonReactAdminActionType is set to one of the + following: + - triggerOnly + - trapAndTrigger + - nmvtAndTrigger + - trapNmvtAndTrigger + The corresponding rows in the + rttMonReactTriggerAdminTable defined via the + rttMonCtrlAdminIndex will become active. + + This table augments the rttMonCtrlAdminTable." + ::= { rttMonCtrl 6 } + + +rttMonReactAdminEntry OBJECT-TYPE + SYNTAX RttMonReactAdminEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A list of objects that define RTT reaction operations." + AUGMENTS { rttMonCtrlAdminEntry } + ::= { rttMonReactAdminTable 1 } + + +RttMonReactAdminEntry ::= SEQUENCE +{ + rttMonReactAdminConnectionEnable TruthValue, + rttMonReactAdminTimeoutEnable TruthValue, + rttMonReactAdminThresholdType INTEGER, + rttMonReactAdminThresholdFalling Integer32, + rttMonReactAdminThresholdCount Integer32, + rttMonReactAdminThresholdCount2 Integer32, + rttMonReactAdminActionType INTEGER, + rttMonReactAdminVerifyErrorEnable TruthValue +} + + +rttMonReactAdminConnectionEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "If true, a reaction is generated when a RTT + operation to a rttMonEchoAdminTargetAddress + (echo type) causes + rttMonCtrlOperConnectionLostOccurred to change its + value. Thus connections to intermediate hops will + not cause this value to change." + DEFVAL { false } + ::= { rttMonReactAdminEntry 1 } + + +rttMonReactAdminTimeoutEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "If true, a reaction is generated when a RTT + operation causes rttMonCtrlOperTimeoutOccurred + to change its value. + + When the RttMonRttType is 'pathEcho' timeouts to + intermediate hops will not cause + rttMonCtrlOperTimeoutOccurred to change its value." + DEFVAL { false } + ::= { rttMonReactAdminEntry 2 } + + +rttMonReactAdminThresholdType OBJECT-TYPE + SYNTAX INTEGER + { + never(1), + immediate(2), + consecutive(3), + xOfy(4), + average(5) + } + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "This object specifies the conditions under which + rttMonCtrlOperOverThresholdOccurred is changed: + + NOTE: When the RttMonRttType is 'pathEcho' this + objects' value and all associated + object values are only valid when RTT + 'echo' operations are to the + rttMonEchoAdminTargetAddress object address. Thus + 'pathEcho' operations to intermediate + hops will not cause this object to change. + + never - rttMonCtrlOperOverThresholdOccurred is + never set + immediate - rttMonCtrlOperOverThresholdOccurred is set + to true when an operation completion time + exceeds rttMonCtrlAdminThreshold; + conversely + rttMonCtrlOperOverThresholdOccurred is set + to false when an operation completion time + falls below + rttMonReactAdminThresholdFalling + consecutive - rttMonCtrlOperOverThresholdOccurred is set + to true when an operation completion time + exceeds rttMonCtrlAdminThreshold on + rttMonReactAdminThresholdCount consecutive + RTT operations; conversely, + rttMonCtrlOperOverThresholdOccurred is set + to false when an operation completion time + falls under the + rttMonReactAdminThresholdFalling + for the same number of consecutive + operations + xOfy - rttMonCtrlOperOverThresholdOccurred is set + to true when x (as specified by + rttMonReactAdminThresholdCount) out of the + last y (as specified by + rttMonReactAdminThresholdCount2) + operation completion time exceeds + rttMonCtrlAdminThreshold; + conversely, it is set to false when x, + out of the last y operation completion + time fall below + rttMonReactAdminThresholdFalling + NOTE: When x > y, the probe will never + generate a reaction. + average - rttMonCtrlOperOverThresholdOccurred is set + to true when the running average of the + previous rttMonReactAdminThresholdCount + operation completion times exceed + rttMonCtrlAdminThreshold; conversely, it + is set to false when the running average + falls below the + rttMonReactAdminThresholdFalling + + If this value is changed by a management station, + rttMonCtrlOperOverThresholdOccurred is set to false, but + no reaction is generated if the prior value of + rttMonCtrlOperOverThresholdOccurred was true." + DEFVAL { never } + ::= { rttMonReactAdminEntry 3 } + + +rttMonReactAdminThresholdFalling OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "This object defines a threshold limit. If the RTT + operation time falls below this limit and if the conditions + specified in rttMonReactAdminThresholdType are satisfied, an + threshold is generated." + DEFVAL { 3000 } + ::= { rttMonReactAdminEntry 4 } + + +rttMonReactAdminThresholdCount OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "This object defines the 'x' value of the xOfy condition + specified in rttMonReactAdminThresholdType." + DEFVAL { 5 } + ::= { rttMonReactAdminEntry 5 } + + +rttMonReactAdminThresholdCount2 OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "This object defines the 'y' value of the xOfy condition + specified in rttMonReactAdminThresholdType." + DEFVAL { 5 } + ::= { rttMonReactAdminEntry 6 } + + +rttMonReactAdminActionType OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + trapOnly(2), + nmvtOnly(3), + triggerOnly(4), + trapAndNmvt(5), + trapAndTrigger(6), + nmvtAndTrigger(7), + trapNmvtAndTrigger(8) + } + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "Specifies what type(s), if any, of reaction(s) to + generate if an operation violates one of the watched + conditions: + + none - no reaction is generated + trapOnly - a trap is generated + nmvtOnly - an SNA NMVT is generated + triggerOnly - all trigger actions defined for this + entry are initiated + trapAndNmvt - both a trap and an SNA NMVT are + generated + trapAndTrigger - both a trap and all trigger actions + are initiated + nmvtAndTrigger - both a NMVT and all trigger actions + are initiated + trapNmvtAndTrigger - a NMVT, trap, and all trigger actions + are initiated + + A trigger action is defined via the + rttMonReactTriggerAdminTable." + DEFVAL { none } + ::= { rttMonReactAdminEntry 7 } + +rttMonReactAdminVerifyErrorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION + "If true, a reaction is generated when a RTT + operation causes rttMonCtrlOperVerifyErrorOccurred + to change its value." + DEFVAL { false } + ::= { rttMonReactAdminEntry 8 } + + +-- +-- Statistics Administration Table +-- + +rttMonStatisticsAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonStatisticsAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring statistics + definitions. + + The definitions in this table control what and how many + entries will be placed into the rttMonStatsCaptureTable. + + The statistics capture table is a rollover table. When + the rttMonStatisticsAdminNumHourGroups index value + exceeds its value defined in this table, the oldest + corresponding group will be deleted and will be replaced + with the new group. All other indices will only fill to + there maximum size. + + NOTE: The maximum size of this table is defined to be + the product of the rttMonCtrlAdminIndex times + rttMonStatisticsAdminNumHourGroups times + rttMonStatisticsAdminNumPaths times + rttMonStatisticsAdminNumHops times + rttMonStatisticsAdminNumDistBuckets. + + NOTE WELL: Each of the 'Num' objects values in this + have a special behavior. When one of the + objects is set to a value larger than the + Rtt application can support the set will + succeed, but the resultant value will + be set to the applications maximum value. + The setting management station must reread + this object to verify the actual value. + + This table augments the rttMonCtrlAdminTable." + ::= { rttMonCtrl 7 } + + +rttMonStatisticsAdminEntry OBJECT-TYPE + SYNTAX RttMonStatisticsAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define RTT statistics + capture operations." + AUGMENTS { rttMonCtrlAdminEntry } + ::= { rttMonStatisticsAdminTable 1 } + + +RttMonStatisticsAdminEntry ::= SEQUENCE +{ + rttMonStatisticsAdminNumHourGroups Integer32, + rttMonStatisticsAdminNumPaths Integer32, + rttMonStatisticsAdminNumHops Integer32, + rttMonStatisticsAdminNumDistBuckets Integer32, + rttMonStatisticsAdminDistInterval Integer32 +} + + +rttMonStatisticsAdminNumHourGroups OBJECT-TYPE + SYNTAX Integer32 (0..25) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of groups of paths to record. + Specifically this is the number of hourly groups + to keep before rolling over. + + The value of one is not advisable because the + group will close and immediately be deleted before + the network management station will have the + opportunity to retrieve the statistics. + + The value used in the rttMonStatsCaptureTable to + uniquely identify this group is the + rttMonStatsCaptureStartTimeIndex. + + HTTP and Jitter probes store only two hours of data. + + When this object is set to the value of zero all + rttMonStatsCaptureTable data capturing will be shut off." + DEFVAL { 2 } + ::= { rttMonStatisticsAdminEntry 1 } + + +rttMonStatisticsAdminNumPaths OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When RttMonRttType is 'pathEcho' this is the maximum + number of statistics paths to record per hourly group. + This value directly represents the path to a target. + For all other RttMonRttTypes this value will be + forced to one by the agent. + + NOTE: For 'pathEcho' a source to target path will be + created to to hold all errors that occur when a + specific path or connection has not be found/setup. + Thus, it is advised to set this value greater + than one. + + Since this index does not rollover, only the first + rttMonStatisticsAdminNumPaths will be kept." + DEFVAL { 5 } + ::= { rttMonStatisticsAdminEntry 2 } + + +rttMonStatisticsAdminNumHops OBJECT-TYPE + SYNTAX Integer32 (1..30) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When RttMonRttType is 'pathEcho' this is the maximum + number of statistics hops to record per path group. + This value directly represents the number of hops along + a path to a target, thus we can only support 30 hops. + For all other RttMonRttTypes this value will be + forced to one by the agent. + + Since this index does not rollover, only the first + rttMonStatisticsAdminNumHops will be kept. This object + is applicable to pathEcho probes only." + DEFVAL { 16 } + ::= { rttMonStatisticsAdminEntry 3 } + + +rttMonStatisticsAdminNumDistBuckets OBJECT-TYPE + SYNTAX Integer32 (1..20) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of statistical distribution + Buckets to accumulate. + + Since this index does not rollover, only the first + rttMonStatisticsAdminNumDistBuckets will be kept. + + The last rttMonStatisticsAdminNumDistBucket will + contain all entries from its distribution interval + start point to infinity. This object is not applicable + to http and jitter probes." + DEFVAL { 1 } + ::= { rttMonStatisticsAdminEntry 4 } + + +rttMonStatisticsAdminDistInterval OBJECT-TYPE + SYNTAX Integer32 (1..100) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The statistical distribution buckets interval. + + Distribution Bucket Example: + + rttMonStatisticsAdminNumDistBuckets = 5 buckets + rttMonStatisticsAdminDistInterval = 10 milliseconds + + | Bucket 1 | Bucket 2 | Bucket 3 | Bucket 4 | Bucket 5 | + | 0-9 ms | 10-19 ms | 20-29 ms | 30-39 ms | 40-Inf ms | + + Odd Example: + + rttMonStatisticsAdminNumDistBuckets = 1 buckets + rttMonStatisticsAdminDistInterval = 10 milliseconds + + | Bucket 1 | + | 0-Inf ms | + + Thus, this odd example shows that the value of + rttMonStatisticsAdminDistInterval does not apply when + rttMonStatisticsAdminNumDistBuckets is one. + This object is not applicable to http and jitter probes." + DEFVAL { 20 } + ::= { rttMonStatisticsAdminEntry 5 } + + +-- +-- History Administration Table +-- + +rttMonHistoryAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonHistoryAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring history + definitions. + + The definitions in this table control what and how many + entries will be placed into the + rttMonHistoryCollectionTable. + + The history collection table is a rollover table. When + the rttMonHistoryAdminNumLives index value exceeds its + value defined in this table, the oldest corresponding + 'lives' group will be deleted and will be replaced with + the new 'lives' group. All other indices will only fill + to their maximum size. + + NOTE: The maximum size of this table is defined to be + the product of the rttMonCtrlAdminIndex times + rttMonHistoryAdminNumLives times + rttMonHistoryAdminNumBuckets times + rttMonHistoryAdminNumSamples. + + NOTE WELL: Each of the 'Num' objects values in this + have a special behavior. When one of the + objects is set to a value larger than the + Rtt application can support the set will + succeed, but the resultant value will + be set to the applications maximum value. + The setting management station must reread + this object to verify the actual value. + + NOTE: this table is not applicable to http and jitter + probes" + ::= { rttMonCtrl 8 } + + +rttMonHistoryAdminEntry OBJECT-TYPE + SYNTAX RttMonHistoryAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define RTT history collection + operations." + AUGMENTS { rttMonCtrlAdminEntry } + ::= { rttMonHistoryAdminTable 1 } + + +RttMonHistoryAdminEntry ::= SEQUENCE +{ + rttMonHistoryAdminNumLives Integer32, + rttMonHistoryAdminNumBuckets Integer32, + rttMonHistoryAdminNumSamples Integer32, + rttMonHistoryAdminFilter INTEGER +} + + +rttMonHistoryAdminNumLives OBJECT-TYPE + SYNTAX Integer32 (0..2) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of history lives to record. A life + is defined by the countdown (or transition) to zero + by the rttMonCtrlOperRttLife object. A new life is + created when the same conceptual RTT control row is + restarted via the transition of the + rttMonCtrlOperRttLife object and its subsequent + countdown. + + The value of zero will shut off all + rttMonHistoryAdminTable data collection." + DEFVAL { 0 } + ::= { rttMonHistoryAdminEntry 1 } + + +rttMonHistoryAdminNumBuckets OBJECT-TYPE + SYNTAX Integer32 (1..60) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of history buckets to record. When + the RttMonRttType is 'pathEcho' this value directly + represents a path to a target. For all other + RttMonRttTypes this value should be set to the number + of operations to keep per lifetime. + + After rttMonHistoryAdminNumBuckets are filled, the + and the oldest entries are deleted and the most recent + rttMonHistoryAdminNumBuckets buckets are retained." + DEFVAL { 15 } + ::= { rttMonHistoryAdminEntry 2 } + + +rttMonHistoryAdminNumSamples OBJECT-TYPE + SYNTAX Integer32 (1..30) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of history samples to record per + bucket. When the RttMonRttType is 'pathEcho' this + value directly represents the number of hops along a + path to a target, thus we can only support 30 hops. + For all other RttMonRttTypes this value will be + forced to one by the agent." + DEFVAL { 16 } + ::= { rttMonHistoryAdminEntry 3 } + + +rttMonHistoryAdminFilter OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + all(2), + overThreshold(3), + failures(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Defines a filter for adding RTT results to the history + buffer: + + none - no history is recorded + all - the results of all completion times + and failed completions are recorded + overThreshold - the results of completion times + over rttMonCtrlAdminThreshold are + recorded. + failures - the results of failed operations (only) + are recorded." + DEFVAL { none } + ::= { rttMonHistoryAdminEntry 4 } + + +-- +-- Overall Operational values +-- + +rttMonCtrlOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonCtrlOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of which contains the Operational values for the + probe, and the conceptual RTT control row. + + This table augments the rttMonCtrlAdminTable." + ::= { rttMonCtrl 9 } + + +rttMonCtrlOperEntry OBJECT-TYPE + SYNTAX RttMonCtrlOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that describe the current state + of probe, and the conceptual RTT control row. " + AUGMENTS { rttMonCtrlAdminEntry } + ::= { rttMonCtrlOperTable 1 } + + +RttMonCtrlOperEntry ::= SEQUENCE +{ + rttMonCtrlOperModificationTime TimeStamp, + rttMonCtrlOperDiagText DisplayString, + rttMonCtrlOperResetTime TimeStamp, + rttMonCtrlOperOctetsInUse Gauge32, + rttMonCtrlOperConnectionLostOccurred TruthValue, + rttMonCtrlOperTimeoutOccurred TruthValue, + rttMonCtrlOperOverThresholdOccurred TruthValue, + rttMonCtrlOperNumRtts Integer32, + rttMonCtrlOperRttLife Integer32, + rttMonCtrlOperState INTEGER, + rttMonCtrlOperVerifyErrorOccurred TruthValue +} + + +rttMonCtrlOperModificationTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is updated whenever an object in + the conceptual RTT control row is changed or + updated." + ::= { rttMonCtrlOperEntry 1 } + + +rttMonCtrlOperDiagText OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..51)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string which can be used as an aid in tracing problems. + The content of this field will depend on the type of + target (rttMonEchoAdminProtocol). + + When rttMonEchoAdminProtocol is one of snaLU0EchoAppl, or + snaLU2EchoAppl this object contains the name of the + Logical Unit (LU) being used for this RTT session (from + the HOST's point of view), once the session has been + established; this can then be used to correlate this + name to the connection information stored in the + Mainframe Host. + + When rttMonEchoAdminProtocol is snaLU62EchoAppl, this + object contains the Logical Unit (LU) name being used for + this RTT session, once the session has been established. + This name can be used by the management application to + correlate this objects value to the connection + information stored at this SNMP Agent via the APPC or + APPN mib. + + When rttMonEchoAdminProtocol is not one of the + previously mentioned values, this value will be null. + + It is primarily intended that this object contains + information which has significance to a human operator." + DEFVAL { "" } + ::= { rttMonCtrlOperEntry 2 } + + +rttMonCtrlOperResetTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is set when the rttMonCtrlOperState is set + to reset." + ::= { rttMonCtrlOperEntry 3 } + +rttMonCtrlOperOctetsInUse OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is the number of octets currently in use + by this composite conceptual RTT row. A composite + conceptual row include the control, statistics, and + history conceptual rows combined. (All octets that + are addressed via the rttMonCtrlAdminIndex in this + mib.)" + ::= { rttMonCtrlOperEntry 4 } + +rttMonCtrlOperConnectionLostOccurred OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object will only change its value when the + RttMonRttType is 'echo' or 'pathEcho'. + + This object is set to true when the RTT connection fails + to be established or is lost, and set to false when a + connection is reestablished. When the RttMonRttType + is 'pathEcho', connection loss applies only to the + rttMonEchoAdminTargetAddress and not to intermediate + hops to the Target. + + When this value changes and + rttMonReactAdminConnectionEnable is true, a reaction + will occur. + + If a trap is sent it is a + rttMonConnectionChangeNotification. + + When this value changes and any one of the rttMonReactTable row + has rttMonReactVar object value as 'connectionLoss(8)', + a reaction may occur. + + If a trap is sent it is rttMonNotification with rttMonReactVar + value of 'connectionLoss'." + DEFVAL { false } + ::= { rttMonCtrlOperEntry 5 } + + +rttMonCtrlOperTimeoutOccurred OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object will change its value for all + RttMonRttTypes. + + This object is set to true when an operation times out, + and set to false when an operation completes under + rttMonCtrlAdminTimeout. When this value changes, a + reaction may occur, as defined by + rttMonReactAdminTimeoutEnable. + + When the RttMonRttType is 'pathEcho', this timeout + applies only to the rttMonEchoAdminTargetAddress and + not to intermediate hops to the Target. + + If a trap is sent it is a rttMonTimeoutNotification. + + When this value changes and any one of the rttMonReactTable + row has rttMonReactVar object value as 'timeout(7)', a reaction + may occur. + + If a trap is sent it is rttMonNotification with rttMonReactVar + value of 'timeout'." + DEFVAL { false } + ::= { rttMonCtrlOperEntry 6 } + + +rttMonCtrlOperOverThresholdOccurred OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object will change its value for all + RttMonRttTypes. + + This object is changed by operation completion times over + threshold, as defined by rttMonReactAdminThresholdType. + When this value changes, a reaction may occur, as defined + by rttMonReactAdminThresholdType. + + If a trap is sent it is a rttMonThresholdNotification. + + This object is set to true if the operation completion time + exceeds the rttMonCtrlAdminThreshold and set to false when an + operation completes under rttMonCtrlAdminThreshold. When this + value changes, a reaction may occur, as defined by + rttMonReactThresholdType. + + If a trap is sent it is rttMonNotification with rttMonReactVar + value of 'rtt'." + DEFVAL { false } + ::= { rttMonCtrlOperEntry 7 } + + +rttMonCtrlOperNumRtts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the total number of probe operations that have + been attempted. + + This value is incremented for each start of an RTT + operation. Thus when rttMonCtrlAdminRttType is set to + 'pathEcho' this value will be incremented by one and + not for very every hop along the path. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object. + + This value is not effected by the rollover of a statistics + hourly group." + ::= { rttMonCtrlOperEntry 8 } + + +rttMonCtrlOperRttLife OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is decremented every second, until it + reaches zero. When the value of this object is zero + RTT operations for this row are suspended. This + object will either reach zero by a countdown or + it will transition to zero via setting the + rttMonCtrlOperState. + + When this object reaches zero the agent needs to + transition the rttMonCtrlOperState to 'inactive'. + + REMEMBER: The value 2147483647 has a special + meaning. When this object has the + value 2147483647, this object will + not decrement. And thus the life + time will never. + + When the rttMonCtrlOperState object is 'active' and + the rttMonReactTriggerOperState object transitions to + 'active' this object will not be updated with the + current value of rttMonCrtlAdminRttLife object." + ::= { rttMonCtrlOperEntry 9 } + + +rttMonCtrlOperState OBJECT-TYPE + SYNTAX INTEGER + { + reset(1), + orderlyStop(2), + immediateStop(3), + pending(4), + inactive(5), + active(6), + restart(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The RttMonOperStatus object is used to + manage the 'state' of the probe that is implementing + conceptual RTT control row. + + This status object has six defined values: + + reset(1) - reset this entry, transition + to 'pending' + orderlyStop(2) - shutdown this entry at the end + of the next RTT operation attempt, + transition to 'inactive' + immediateStop(3) - shutdown this entry immediately + (if possible), transition to + 'inactive' + pending(4) - this value is not settable and + this conceptual RTT control row is + waiting for further control either + via the rttMonScheduleAdminTable + or the rttMonReactAdminTable/ + rttMonReactTriggerAdminTable; + This object can transition to this + value via two mechanisms, first by + reseting this object, and second + by creating a conceptual Rtt control + row with the + rttMonScheduleAdminRttStartTime + object with the its special value + inactive(5) - this value is not settable and + this conceptual RTT control row is + waiting for further control via + the rttMonScheduleAdminTable; + This object can transition to this + value via two mechanisms, first by + setting this object to 'orderlyStop' + or 'immediateStop', second by + the rttMonCtrlOperRttLife object + reaching zero + active(6) - this value is not settable and + this conceptual RTT control row is + currently active + restart(7) - this value is only settable when the + state is active. It clears the data + of this entry and remain on active state. + + The probes action when this object is set to 'reset': + - all rows in rttMonStatsCaptureTable that relate to + this conceptual RTT control row are destroyed and + the indices are set to 1 + - if rttMonStatisticsAdminNumHourGroups is not zero, a + single new rttMonStatsCaptureTable row is created + - all rows in rttMonHistoryCaptureTable that relate + to this RTT definition are destroyed and the indices + are set to 1 + - implied history used for timeout or threshold + notification (see rttMonReactAdminThresholdType or + rttMonReactThresholdType) + is purged + - rttMonCtrlOperRttLife is set to + rttMonScheduleAdminRttLife + - rttMonCtrlOperNumRtts is set to zero + - rttMonCtrlOperTimeoutOccurred, + rttMonCtrlOperOverThresholdOccurred, and + rttMonCtrlOperConnectionLostOccurred are set to + false; if this causes a change in the value of + either of these objects, resolution notifications + will not occur + - the next RTT operation is controlled by the objects + in the rttMonScheduleAdminTable or the + rttMonReactAdminTable/rttMonReactTriggerAdminTable + - if the rttMonReactTriggerOperState is 'active', it + will transition to 'pending' + - all rttMonReactTriggerAdminEntries pointing to + this conceptual entry with their + rttMonReactTriggerOperState object 'active', + will transition their OperState to 'pending' + - all open connections must be maintained + + This can be used to synchronize various RTT + definitions, so that the RTT requests occur + simultaneously, or as simultaneously as possible. + + The probes action when this object transitions to + 'inactive' (via setting this object to 'orderlyStop' + or 'immediateStop' or by rttMonCtrlOperRttLife + reaching zero): + - all statistics and history collection information + table entries will be closed and kept + - implied history used for timeout or threshold + notification (see rttMonReactAdminThresholdType or + rttMonReactThresholdType) + is purged + - rttMonCtrlOperTimeoutOccurred, + rttMonCtrlOperOverThresholdOccurred, and + rttMonCtrlOperConnectionLostOccurred are set to + false; if this causes a change in the value of + either of these objects, resolution notifications + will not occur. + - the next RTT request is controlled by the objects + in the rttMonScheduleAdminTable + - if the rttMonReactTriggerOperState is 'active', it + will transition to 'pending' (this denotes that + the Trigger will be ready the next time this + object goes active) + - all rttMonReactTriggerAdminEntries pointing to + this conceptual entry with their + rttMonReactTriggerOperState object 'active', + will transition their OperState to 'pending' + - all open connections are to be closed and cleanup. + + rttMonCtrlOperState + STATE + +-------------------------------------------+ + | A | B | C | + ACTION | 'pending' | 'inactive' | 'active' | ++----------------+--------------+--------------+-------------+ +| OperState set | noError |inconsistent- | noError | +| to 'reset' | | Value | | +| | -> A | | -> A | ++----------------+--------------+--------------+-------------+ +| OperState set | noError | noError | noError | +|to 'orderlyStop'| -> B | -> B | -> B | +| or to | | | | +|'immediateStop' | | | | ++----------------+--------------+--------------+-------------+ +| Event causes | -> C | -> B | -> C | +| Trigger State | | | see (3) | +| to transition | | | | +| to 'active' | | | | ++----------------+--------------+--------------+-------------+ +| AdminStatus | -> C | -> C | see (1) | +| transitions to | | | | +| 'active' & | | | | +| RttStartTime is| | | | +| special value | | | | +| of one. | | | | ++----------------+--------------+--------------+-------------+ +| AdminStatus | -> A | -> A | see (1) | +| transitions to | | | | +| 'active' & | | | | +| RttStartTime is| | | | +| special value | | | | +| of less than | | | | +| current time, | | | | +| excluding one. | | | | ++----------------+--------------+--------------+-------------+ +| AdminStatus | -> A | -> B | see (2) | +| transitions to | | | | +| 'notInService' | | | | ++----------------+--------------+--------------+-------------+ +| AdminStatus | -> B | -> B | -> B | +| transitions to | | | | +| 'delete' | | | | ++----------------+--------------+--------------+-------------+ +| AdminStatus is | -> C | -> C | -> C | +| 'active' & the | | | see (3) | +| RttStartTime | | | | +| arrives | | | | ++----------------+--------------+--------------+-------------+ +| RowAgeout | -> B | -> B | -> B | +| expires | | | | ++----------------+--------------+--------------+-------------+ +| OperRttLife | N/A | N/A | -> B | +| counts down to | | | | +| zero | | | | ++----------------+--------------+--------------+-------------+ + +(1) - rttMonCtrlOperState must have transitioned to 'inactive' + or 'pending' before the rttMonCtrlAdminStatus can + transition to 'active'. See (2). +(2) - rttMonCtrlAdminStatus cannot transition to 'notInService' + unless rttMonCtrlOperState has been previously forced + to 'inactive' or 'pending'. +(3) - when this happens the rttMonCtrlOperRttLife will not + be updated with the rttMonCtrlAdminRttLife. + + NOTE: In order for all objects in a PDU to be set + at the same time, this object can not be + part of a multi-bound PDU." + ::= { rttMonCtrlOperEntry 10 } + +rttMonCtrlOperVerifyErrorOccurred OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is true if rttMonCtrlAdminVerifyData is + set to true and data corruption occurs." + DEFVAL { false } + ::= { rttMonCtrlOperEntry 11 } + + +-- +-- Latest RTT operation values +-- + +rttMonLatestRttOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonLatestRttOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of which contains the status of latest RTT + operation. + + When the RttMonRttType is 'pathEcho', operations + performed to the hops along the path will be recorded + in this table. + + This table augments the RTT definition table, + rttMonCtrlAdminTable." + ::= { rttMonCtrl 10 } + + + +rttMonLatestRttOperEntry OBJECT-TYPE + SYNTAX RttMonLatestRttOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that record the latest RTT operation. " + AUGMENTS { rttMonCtrlAdminEntry } + ::= { rttMonLatestRttOperTable 1 } + + +RttMonLatestRttOperEntry ::= SEQUENCE +{ + rttMonLatestRttOperCompletionTime Gauge32, + rttMonLatestRttOperSense RttResponseSense, + rttMonLatestRttOperApplSpecificSense Integer32, + rttMonLatestRttOperSenseDescription DisplayString, + rttMonLatestRttOperTime TimeStamp, + rttMonLatestRttOperAddress RttMonTargetAddress +} + +rttMonLatestRttOperCompletionTime OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The completion time of the latest RTT operation + successfully completed." + ::= { rttMonLatestRttOperEntry 1 } + + +rttMonLatestRttOperSense OBJECT-TYPE + SYNTAX RttResponseSense + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A sense code for the completion status of the latest + RTT operation." + ::= { rttMonLatestRttOperEntry 2 } + + +rttMonLatestRttOperApplSpecificSense OBJECT-TYPE + SYNTAX Integer32 ( 0..2147483647 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An application specific sense code for the + completion status of the latest RTT operation. This + object will only be valid when the + rttMonLatestRttOperSense object is set to + 'applicationSpecific'. Otherwise, this object's + value is not valid." + ::= { rttMonLatestRttOperEntry 3 } + + +rttMonLatestRttOperSenseDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A sense description for the completion status of + the latest RTT operation when the + rttMonLatestRttOperSense object is set to + 'applicationSpecific'." + ::= { rttMonLatestRttOperEntry 4 } + + +rttMonLatestRttOperTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the agent system time at the time of the + latest RTT operation." + ::= { rttMonLatestRttOperEntry 5 } + +rttMonLatestRttOperAddress OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the RttMonRttType is 'echo', 'pathEcho', 'udpEcho', + 'tcpConnect', 'dns' and 'dlsw' this is a string which specifies + the address of the target for this RTT operation. When the + RttMonRttType is not one of these types this object will + be null. + + This address will be the address of the hop along the + path to the rttMonEchoAdminTargetAddress address, + including rttMonEchoAdminTargetAddress address, or just + the rttMonEchoAdminTargetAddress address, when the + path information is not collected. This behavior is + defined by the rttMonCtrlAdminRttType object. + + The interpretation of this string depends on the type + of RTT operation selected, as specified by the + rttMonEchoAdminProtocol object. + + See rttMonEchoAdminTargetAddress for a complete + description." + ::= { rttMonLatestRttOperEntry 6 } + + +-- +-- LatestHTTPOper Table +-- + +rttMonLatestHTTPOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonLatestHTTPOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table which contains the status of latest HTTP RTT + operation." + ::= { rttMonLatestOper 1 } + +rttMonLatestHTTPOperEntry OBJECT-TYPE + SYNTAX RttMonLatestHTTPOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that record the latest HTTP RTT + operation. This entry is created automatically after the + rttMonCtrlAdminEntry is created. Also the entry is + automatically deleted when rttMonCtrlAdminEntry is deleted." + INDEX { rttMonCtrlAdminIndex + } + ::= { rttMonLatestHTTPOperTable 1 } + +RttMonLatestHTTPOperEntry ::= SEQUENCE +{ + rttMonLatestHTTPOperRTT Gauge32, + rttMonLatestHTTPOperDNSRTT Gauge32, + rttMonLatestHTTPOperTCPConnectRTT Gauge32, + rttMonLatestHTTPOperTransactionRTT Gauge32, + rttMonLatestHTTPOperMessageBodyOctets Gauge32, + rttMonLatestHTTPOperSense RttResponseSense, + rttMonLatestHTTPErrorSenseDescription DisplayString +} + +rttMonLatestHTTPOperRTT OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Round Trip Time taken to perform HTTP operation. This value + is the sum of DNSRTT, TCPConnectRTT and TransactionRTT." + ::= { rttMonLatestHTTPOperEntry 1 } + +rttMonLatestHTTPOperDNSRTT OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Round Trip Time taken to perform DNS query within the + HTTP operation. If an IP Address is specified in the URL, + then DNSRTT is 0." + ::= { rttMonLatestHTTPOperEntry 2 } + +rttMonLatestHTTPOperTCPConnectRTT OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Round Trip Time taken to connect to the HTTP server." + ::= { rttMonLatestHTTPOperEntry 3 } + +rttMonLatestHTTPOperTransactionRTT OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Round Trip Time taken to download the object specified by + the URL." + ::= { rttMonLatestHTTPOperEntry 4 } + +rttMonLatestHTTPOperMessageBodyOctets OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the message body received as a response to + the HTTP request." + ::= { rttMonLatestHTTPOperEntry 5 } + + +rttMonLatestHTTPOperSense OBJECT-TYPE + SYNTAX RttResponseSense + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An application specific sense code for the completion status + of the latest RTT operation." + ::= { rttMonLatestHTTPOperEntry 6 } + +rttMonLatestHTTPErrorSenseDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An sense description for the completion status + of the latest RTT operation." + ::= { rttMonLatestHTTPOperEntry 7 } + +-- +-- LatestJitterOper Table +-- + +rttMonLatestJitterOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonLatestJitterOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table which contains the status of latest Jitter + operation." + ::= { rttMonLatestOper 2 } + +rttMonLatestJitterOperEntry OBJECT-TYPE + SYNTAX RttMonLatestJitterOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that record the latest Jitter + operation." + INDEX { rttMonCtrlAdminIndex + } + ::= { rttMonLatestJitterOperTable 1 } + +RttMonLatestJitterOperEntry ::= SEQUENCE +{ + rttMonLatestJitterOperNumOfRTT Gauge32, + rttMonLatestJitterOperRTTSum Gauge32, + rttMonLatestJitterOperRTTSum2 Gauge32, + rttMonLatestJitterOperRTTMin Gauge32, + rttMonLatestJitterOperRTTMax Gauge32, + rttMonLatestJitterOperMinOfPositivesSD Gauge32, + rttMonLatestJitterOperMaxOfPositivesSD Gauge32, + rttMonLatestJitterOperNumOfPositivesSD Gauge32, + rttMonLatestJitterOperSumOfPositivesSD Gauge32, + rttMonLatestJitterOperSum2PositivesSD Gauge32, + rttMonLatestJitterOperMinOfNegativesSD Gauge32, + rttMonLatestJitterOperMaxOfNegativesSD Gauge32, + rttMonLatestJitterOperNumOfNegativesSD Gauge32, + rttMonLatestJitterOperSumOfNegativesSD Gauge32, + rttMonLatestJitterOperSum2NegativesSD Gauge32, + rttMonLatestJitterOperMinOfPositivesDS Gauge32, + rttMonLatestJitterOperMaxOfPositivesDS Gauge32, + rttMonLatestJitterOperNumOfPositivesDS Gauge32, + rttMonLatestJitterOperSumOfPositivesDS Gauge32, + rttMonLatestJitterOperSum2PositivesDS Gauge32, + rttMonLatestJitterOperMinOfNegativesDS Gauge32, + rttMonLatestJitterOperMaxOfNegativesDS Gauge32, + rttMonLatestJitterOperNumOfNegativesDS Gauge32, + rttMonLatestJitterOperSumOfNegativesDS Gauge32, + rttMonLatestJitterOperSum2NegativesDS Gauge32, + rttMonLatestJitterOperPacketLossSD Gauge32, + rttMonLatestJitterOperPacketLossDS Gauge32, + rttMonLatestJitterOperPacketOutOfSequence Gauge32, + rttMonLatestJitterOperPacketMIA Gauge32, + rttMonLatestJitterOperPacketLateArrival Gauge32, + rttMonLatestJitterOperSense RttResponseSense, + rttMonLatestJitterErrorSenseDescription DisplayString, + rttMonLatestJitterOperOWSumSD Gauge32, + rttMonLatestJitterOperOWSum2SD Gauge32, + rttMonLatestJitterOperOWMinSD Gauge32, + rttMonLatestJitterOperOWMaxSD Gauge32, + rttMonLatestJitterOperOWSumDS Gauge32, + rttMonLatestJitterOperOWSum2DS Gauge32, + rttMonLatestJitterOperOWMinDS Gauge32, + rttMonLatestJitterOperOWMaxDS Gauge32, + rttMonLatestJitterOperNumOfOW Gauge32, + rttMonLatestJitterOperMOS Gauge32, + rttMonLatestJitterOperICPIF Gauge32, + rttMonLatestJitterOperIAJOut Gauge32, + rttMonLatestJitterOperIAJIn Gauge32, + rttMonLatestJitterOperAvgJitter Gauge32, + rttMonLatestJitterOperAvgSDJ Gauge32, + rttMonLatestJitterOperAvgDSJ Gauge32, + rttMonLatestJitterOperOWAvgSD Gauge32, + rttMonLatestJitterOperOWAvgDS Gauge32, + rttMonLatestJitterOperNTPState INTEGER, + rttMonLatestJitterOperUnSyncRTs Counter32 +} + +rttMonLatestJitterOperNumOfRTT OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT's that were successfully measured." + ::= { rttMonLatestJitterOperEntry 1 } + +rttMonLatestJitterOperRTTSum OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of Jitter RTT's that are successfully measured." + ::= { rttMonLatestJitterOperEntry 2 } + +rttMonLatestJitterOperRTTSum2 OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's that are successfully measured." + ::= { rttMonLatestJitterOperEntry 3 } + +rttMonLatestJitterOperRTTMin OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of RTT's that were successfully measured." + ::= { rttMonLatestJitterOperEntry 4 } + +rttMonLatestJitterOperRTTMax OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of RTT's that were successfully measured." + ::= { rttMonLatestJitterOperEntry 5 } + +rttMonLatestJitterOperMinOfPositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all positive jitter values from packets sent + from source to destination." + ::= { rttMonLatestJitterOperEntry 6 } + +rttMonLatestJitterOperMaxOfPositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all positive jitter values from packets sent + from source to destination." + ::= { rttMonLatestJitterOperEntry 7 } + +rttMonLatestJitterOperNumOfPositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of all positive jitter values from packets + sent from source to destination." + ::= { rttMonLatestJitterOperEntry 8 } + +rttMonLatestJitterOperSumOfPositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's of all positive jitter values from packets + sent from source to destination." + ::= { rttMonLatestJitterOperEntry 9 } + +rttMonLatestJitterOperSum2PositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of square of RTT's of all positive jitter values from + packets sent from source to destination." + ::= { rttMonLatestJitterOperEntry 10 } + +rttMonLatestJitterOperMinOfNegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of absolute values of all negative jitter values + from packets sent from source to destination." + ::= { rttMonLatestJitterOperEntry 11 } + +rttMonLatestJitterOperMaxOfNegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of absolute values of all negative jitter values + from packets sent from source to destination." + ::= { rttMonLatestJitterOperEntry 12 } + +rttMonLatestJitterOperNumOfNegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all negative jitter values from packets + sent from source to destination." + ::= { rttMonLatestJitterOperEntry 13 } + +rttMonLatestJitterOperSumOfNegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of all negative jitter values from packets + sent from source to destination." + ::= { rttMonLatestJitterOperEntry 14 } + +rttMonLatestJitterOperSum2NegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of square of RTT's of all negative jitter values from + packets sent from source to destination." + ::= { rttMonLatestJitterOperEntry 15 } + +rttMonLatestJitterOperMinOfPositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all positive jitter values from packets sent + from destination to source." + ::= { rttMonLatestJitterOperEntry 16 } + +rttMonLatestJitterOperMaxOfPositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all positive jitter values from packets sent + from destination to source." + ::= { rttMonLatestJitterOperEntry 17 } + +rttMonLatestJitterOperNumOfPositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all positive jitter values from packets + sent from destination to source." + ::= { rttMonLatestJitterOperEntry 18 } + +rttMonLatestJitterOperSumOfPositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's of all positive jitter values from packets + sent from destination to source." + ::= { rttMonLatestJitterOperEntry 19 } + +rttMonLatestJitterOperSum2PositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's of all positive jitter values from + packets sent from destination to source." + ::= { rttMonLatestJitterOperEntry 20 } + +rttMonLatestJitterOperMinOfNegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all negative jitter values from packets sent + from destination to source." + ::= { rttMonLatestJitterOperEntry 21 } + +rttMonLatestJitterOperMaxOfNegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all negative jitter values from packets sent + from destination to source." + ::= { rttMonLatestJitterOperEntry 22 } + +rttMonLatestJitterOperNumOfNegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all negative jitter values from packets + sent from destination to source." + ::= { rttMonLatestJitterOperEntry 23 } + +rttMonLatestJitterOperSumOfNegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's of all negative jitter values from packets + sent from destination to source." + ::= { rttMonLatestJitterOperEntry 24 } + +rttMonLatestJitterOperSum2NegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's of all negative jitter values from + packets sent from destination to source." + ::= { rttMonLatestJitterOperEntry 25 } + +rttMonLatestJitterOperPacketLossSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets lost when sent from source to destination." + ::= { rttMonLatestJitterOperEntry 26 } + +rttMonLatestJitterOperPacketLossDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets lost when sent from destination to source." + ::= { rttMonLatestJitterOperEntry 27 } + +rttMonLatestJitterOperPacketOutOfSequence OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets arrived out of sequence." + ::= { rttMonLatestJitterOperEntry 28 } + +rttMonLatestJitterOperPacketMIA OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets that are lost for which we cannot determine + the direction." + ::= { rttMonLatestJitterOperEntry 29 } + +rttMonLatestJitterOperPacketLateArrival OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets that arrived after the timeout." + ::= { rttMonLatestJitterOperEntry 30 } + +rttMonLatestJitterOperSense OBJECT-TYPE + SYNTAX RttResponseSense + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An application specific sense code for the completion status + of the latest Jitter RTT operation." + ::= { rttMonLatestJitterOperEntry 31 } + +rttMonLatestJitterErrorSenseDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An sense description for the completion status + of the latest Jitter RTT operation." + ::= { rttMonLatestJitterOperEntry 32 } + +rttMonLatestJitterOperOWSumSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of one way latency from source to destination." + ::= { rttMonLatestJitterOperEntry 33 } + +rttMonLatestJitterOperOWSum2SD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of one way latency from source to + destination." + ::= { rttMonLatestJitterOperEntry 34 } + +rttMonLatestJitterOperOWMinSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all one way latency from source to destination." + ::= { rttMonLatestJitterOperEntry 35 } + +rttMonLatestJitterOperOWMaxSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all one way latency from source to destination." + ::= { rttMonLatestJitterOperEntry 36 } + +rttMonLatestJitterOperOWSumDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of one way latency from destination to source." + ::= { rttMonLatestJitterOperEntry 37 } + +rttMonLatestJitterOperOWSum2DS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of one way latency from destination to + source." + ::= { rttMonLatestJitterOperEntry 38 } + +rttMonLatestJitterOperOWMinDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all one way latency from destination to + source." + ::= { rttMonLatestJitterOperEntry 39 } + +rttMonLatestJitterOperOWMaxDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all one way latency from destination to source." + ::= { rttMonLatestJitterOperEntry 40 } + +rttMonLatestJitterOperNumOfOW OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of successful one way latency measurements." + ::= { rttMonLatestJitterOperEntry 41 } + +rttMonLatestJitterOperMOS OBJECT-TYPE + SYNTAX Gauge32 ( 100..500 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MOS value for the latest jitter operation in hundreds. " + ::= { rttMonLatestJitterOperEntry 42 } + +rttMonLatestJitterOperICPIF OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Represents ICPIF value for the latest jitter operation" + ::= { rttMonLatestJitterOperEntry 43 } + +rttMonLatestJitterOperIAJOut OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interarrival Jitter (RC1889) at responder." + REFERENCE + "Refer to the following documents for the definition: RFC 1889" + ::= { rttMonLatestJitterOperEntry 44 } + +rttMonLatestJitterOperIAJIn OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interarrival Jitter (RFC1889) at source." + REFERENCE + "Refer to the following documents for the definition: RFC 1889" + ::= { rttMonLatestJitterOperEntry 45 } + +rttMonLatestJitterOperAvgJitter OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average of positive and negative jitter + values in SD and DS direction for latest operation." + ::= { rttMonLatestJitterOperEntry 46 } + +rttMonLatestJitterOperAvgSDJ OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average of positive and negative jitter values + from source to destination for latest operation." + ::= { rttMonLatestJitterOperEntry 47 } + +rttMonLatestJitterOperAvgDSJ OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average of positive and negative jitter values + from destination to source for latest operation." + ::= { rttMonLatestJitterOperEntry 48 } + +rttMonLatestJitterOperOWAvgSD OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average latency value from source to destination." + ::= { rttMonLatestJitterOperEntry 49 } + +rttMonLatestJitterOperOWAvgDS OBJECT-TYPE + SYNTAX Gauge32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average latency value from destination to source." + ::= { rttMonLatestJitterOperEntry 50 } + +rttMonLatestJitterOperNTPState OBJECT-TYPE + SYNTAX INTEGER + { + sync(1), + outOfSync(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value of sync(1) means sender and responder was in sync + with NTP. The NTP sync means the total of NTP offset + on sender and responder is within configured tolerance level." + ::= { rttMonLatestJitterOperEntry 51 } + +rttMonLatestJitterOperUnSyncRTs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT operations that have completed with + sender and responder out of sync with NTP. The NTP sync means + the total of NTP offset on sender and responder is within + configured tolerance level." + ::= { rttMonLatestJitterOperEntry 52 } + +-- +-- Reaction Trigger Administration Table +-- + + +rttMonReactTriggerAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonReactTriggerAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of which contains the list of conceptual RTT + control rows that will start to collect data when a + reaction condition is violated and when + rttMonReactAdminActionType is set to one of the + following: + - triggerOnly + - trapAndTrigger + - nmvtAndTrigger + - trapNmvtAndTrigger + or when a reaction condition is violated and when any of the + row in rttMonReactTable has rttMonReactActionType as one of + the following: + - triggerOnly + - trapAndTrigger + + The goal of this table is to define one or more + additional conceptual RTT control rows that will become + active and start to collect additional history and + statistics (depending on the rows configuration values), + when a problem has been detected. + + If the conceptual RTT control row is undefined, and a + trigger occurs, no action will take place. + + If the conceptual RTT control row is scheduled to start + at a later time, triggering that row will have no effect. + + If the conceptual RTT control row is currently active, + triggering that row will have no effect on that row, but + the rttMonReactTriggerOperState object will transition to + 'active'. + + An entry in this table can only be triggered when + it is not currently in a triggered state. The + object rttMonReactTriggerOperState will + reflect the state of each entry in this table." + ::= { rttMonCtrl 11 } + + +rttMonReactTriggerAdminEntry OBJECT-TYPE + SYNTAX RttMonReactTriggerAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that will be triggered when + a reaction condition is violated." + INDEX { rttMonCtrlAdminIndex, + rttMonReactTriggerAdminRttMonCtrlAdminIndex } + ::= { rttMonReactTriggerAdminTable 1 } + + +RttMonReactTriggerAdminEntry ::= SEQUENCE +{ + rttMonReactTriggerAdminRttMonCtrlAdminIndex Integer32, + rttMonReactTriggerAdminStatus RowStatus +} + +rttMonReactTriggerAdminRttMonCtrlAdminIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object points to a single conceptual Rtt control + row. If this row does not exist and this value is + triggered no action will result. + + The conceptual Rtt control row will be triggered for the + rttMonCtrlOperRttLife length. If this conceptual Rtt + control row is already active, rttMonCtrlOperRttLife will + not be updated, and its life will continue as previously + defined." + ::= { rttMonReactTriggerAdminEntry 1 } + +rttMonReactTriggerAdminStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create Trigger entries." + ::= { rttMonReactTriggerAdminEntry 2 } + + +-- +-- Reaction Violation Trigger Operational State Table +-- + + +rttMonReactTriggerOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonReactTriggerOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of which contains the operational state + of each entry in the + rttMonReactTriggerAdminTable. + + This table augments the RTT trigger + definition table, rttMonReactTriggerAdminTable." + ::= { rttMonCtrl 12 } + + +rttMonReactTriggerOperEntry OBJECT-TYPE + SYNTAX RttMonReactTriggerOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of state objects for the + rttMonReactTriggerAdminTable." + AUGMENTS { rttMonReactTriggerAdminEntry } + ::= { rttMonReactTriggerOperTable 1 } + + +RttMonReactTriggerOperEntry ::= SEQUENCE +{ + rttMonReactTriggerOperState INTEGER +} + +rttMonReactTriggerOperState OBJECT-TYPE + SYNTAX INTEGER + { + active(1), + pending(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object takes on the value active + when its associated entry in the + rttMonReactTriggerAdminTable has been + triggered. + + When the associated entry in the + rttMonReactTriggerAdminTable is not under + a trigger state, this object will be + pending. + + When this object is in the active state + this entry can not be retriggered." + ::= { rttMonReactTriggerOperEntry 1 } + + +-- +-- EchoPath Admin Table +-- + +rttMonEchoPathAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonEchoPathAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table to store the hop addresses in a Loose Source Routing + path. Response times are computed along the specified path using + ping. + + This maximum table size is limited by the size of the + maximum number of hop addresses that can fit in an IP header, + which is 8. The object rttMonEchoPathAdminEntry will reflect + this tables maximum number of entries. + + This table is coupled with rttMonCtrlAdminStatus." + ::= { rttMonCtrl 13 } + +rttMonEchoPathAdminEntry OBJECT-TYPE + SYNTAX RttMonEchoPathAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define intermediate hop's IP Address. + + This entry can be added only if the rttMonCtrlAdminRttType is + 'echo'. The entry gets deleted when the corresponding RTR entry, + which has an index of rttMonCtrlAdminIndex, is deleted." + INDEX { rttMonCtrlAdminIndex, + rttMonEchoPathAdminHopIndex + } + ::= { rttMonEchoPathAdminTable 1 } + +RttMonEchoPathAdminEntry ::= SEQUENCE +{ + rttMonEchoPathAdminHopIndex Integer32, + rttMonEchoPathAdminHopAddress RttMonTargetAddress +} + +rttMonEchoPathAdminHopIndex OBJECT-TYPE + SYNTAX Integer32 (1..8) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Uniquely identifies a row in the rttMonEchoPathAdminTable. + This number represents the hop address number in a specific + ping path. All the indicies should start from 1 and must be + contiguous ie., entries should be (say rttMonCtrlAdminIndex = 1) + 1.1, 1.2, 1.3, they cannot be 1.1, 1.2, 1.4" + ::= { rttMonEchoPathAdminEntry 1 } + +rttMonEchoPathAdminHopAddress OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the address of an intermediate hop's + IP Address for a RTT 'echo' operation" + ::= { rttMonEchoPathAdminEntry 2 } + + +rttMonGrpScheduleAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonGrpScheduleAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Round Trip Time (RTT) monitoring group scheduling + specific definitions. + This table is used to create a conceptual group scheduling + control row. The entries in this control row contain objects + used to define group schedule configuration parameters. + + The objects of this table will be used to schedule a group of + probes identified by the conceptual rows of the + rttMonCtrlAdminTable." + ::= { rttMonCtrl 14 } + + +rttMonGrpScheduleAdminEntry OBJECT-TYPE + SYNTAX RttMonGrpScheduleAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define a conceptual group scheduling + control row." + INDEX { rttMonGrpScheduleAdminIndex } + ::= { rttMonGrpScheduleAdminTable 1 } + + +RttMonGrpScheduleAdminEntry ::= SEQUENCE +{ + rttMonGrpScheduleAdminIndex Integer32, + rttMonGrpScheduleAdminProbes DisplayString, + rttMonGrpScheduleAdminPeriod Integer32, + rttMonGrpScheduleAdminFrequency Integer32, + rttMonGrpScheduleAdminLife Integer32, + rttMonGrpScheduleAdminAgeout Integer32, + rttMonGrpScheduleAdminStatus RowStatus, + rttMonGrpScheduleAdminFreqMax Integer32, + rttMonGrpScheduleAdminFreqMin Integer32, + rttMonGrpScheduleAdminStartTime Integer32, + rttMonGrpScheduleAdminAdd TruthValue, + rttMonGrpScheduleAdminDelete TruthValue, + rttMonGrpScheduleAdminReset TruthValue +} + + +rttMonGrpScheduleAdminIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Uniquely identifies a row in the + rttMonGrpScheduleAdminTable. + + This is a pseudo-random number selected by the management + station when creating a row via the + rttMonGrpScheduleAdminStatus object. If the pseudo-random + number is already in use an 'inconsistentValue' return code + will be returned when set operation is attempted." + ::= { rttMonGrpScheduleAdminEntry 1 } + + +rttMonGrpScheduleAdminProbes OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..200)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which holds the different probes which are to be + group scheduled. The probes can be specified in the following + forms. + (a) Individual ID's with comma separated as 23,45,34. + (b) Range form including hyphens with multiple ranges being + separated by a comma as 1-10,12-34. + (c) Mix of the above two forms as 1,2,4-10,12,15,19-25. + + Any whitespace in the string is considered an error. Duplicates + and overlapping ranges as an example 1,2,3,2-10 are considered + fine. For a single range like 1-20 the upper value (in this + example 20) must be greater than lower value (1), otherwise it's + treated as an error. The agent will not normalize the list e.g., + it will not change 1,2,1-10 or even 1,2,3,4,5,6.. to 1-10." + DEFVAL { "" } + ::= { rttMonGrpScheduleAdminEntry 2 } + + +rttMonGrpScheduleAdminPeriod OBJECT-TYPE + SYNTAX Integer32 (0..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the time duration over which all the probes have to + be scheduled." + DEFVAL { 0 } + ::= { rttMonGrpScheduleAdminEntry 3 } + + +rttMonGrpScheduleAdminFrequency OBJECT-TYPE + SYNTAX Integer32 (0..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the duration between initiating each RTT + operation for all the probes specified in the group. + + The value of this object is only effective when both + rttMonGrpScheduleAdminFreqMax and rttMonGrpScheduleAdminFreqMin + have zero values." + DEFVAL { 0 } + ::= { rttMonGrpScheduleAdminEntry 4 } + + +rttMonGrpScheduleAdminLife OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the life of all the probes included in + the object rttMonGrpScheduleAdminProbes, that are getting group + scheduled. This value will be placed into + rttMonScheduleAdminRttLife object for each of the probes listed + in rttMonGrpScheduleAdminProbes when this conceptual control + row becomes 'active'. + + The value 2147483647 has a special meaning. When this object is + set to 2147483647, the rttMonCtrlOperRttLife object for all the + probes listed in rttMonGrpScheduleAdminProbes, will not + decrement. And thus the life time of the probes will never end." + DEFVAL { 3600 } + ::= { rttMonGrpScheduleAdminEntry 5 } + + +rttMonGrpScheduleAdminAgeout OBJECT-TYPE + SYNTAX Integer32 (0..2073600) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the ageout value of all the probes + included in the object rttMonGrpScheduleAdminProbes, that are + getting group scheduled. This value will be placed into + rttMonScheduleAdminConceptRowAgeout object for each of the + probes listed in rttMonGrpScheduleAdminProbes when this + conceptual control row becomes 'active'. + + When this value is set to zero, the probes listed in + rttMonGrpScheduleAdminProbes, will never ageout." + DEFVAL { 3600 } + ::= { rttMonGrpScheduleAdminEntry 6 } + + +rttMonGrpScheduleAdminStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual RTT group schedule control row. + + In order for this object to become active, the following + row objects must be defined: + - rttMonGrpScheduleAdminProbes + - rttMonGrpScheduleAdminPeriod + All other objects can assume default values. + + The conceptual RTT group schedule control row objects cannot be + modified once this conceptual RTT group schedule control row + has been created. + Once this object is in 'active' status, it cannot be set to + 'notInService'. + When this object moves to 'active' state it will schedule the + probes of the rttMonCtrlAdminTable which had been created using + 'createAndWait'. + + This object can be set to 'destroy' from any value at any time. + When this object is set to 'destroy' it will stop all the probes + of the rttMonCtrlAdminTable, which had been group scheduled + by it earlier, before destroying the RTT group schedule + control row." + ::= { rttMonGrpScheduleAdminEntry 7 } + +rttMonGrpScheduleAdminFreqMax OBJECT-TYPE + SYNTAX Integer32 (0..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the max duration between initiating each RTT + operation for all the probes specified in the group. + + If this is 0 and rttMonGrpScheduleAdminFreqMin is also 0 + then rttMonGrpScheduleAdminFrequency becomes the fixed + frequency." + DEFVAL { 0 } + ::= { rttMonGrpScheduleAdminEntry 8 } + +rttMonGrpScheduleAdminFreqMin OBJECT-TYPE + SYNTAX Integer32 (0..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the min duration between initiating each RTT + operation for all the probes specified in the group. + + The value of this object cannot be greater than the value of + rttMonGrpScheduleAdminFreqMax. + + If this is 0 and rttMonGrpScheduleAdminFreqMax is 0 then + rttMonGrpScheduleAdminFrequency becomes the fixed frequency." + DEFVAL { 0 } + ::= { rttMonGrpScheduleAdminEntry 9 } + +rttMonGrpScheduleAdminStartTime OBJECT-TYPE + SYNTAX Integer32 (0..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is the time in seconds after which the member probes of + this group specified in rttMonGrpScheduleAdminProbes will + transition to active state" + DEFVAL { 0 } + ::= { rttMonGrpScheduleAdminEntry 10 } + +rttMonGrpScheduleAdminAdd OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Addition of members to an existing group will be allowed + if this object is set to TRUE (1). The members, IDs of + which are mentioned in rttMonGrpScheduleAdminProbes object + are added to the existing group" + ::= { rttMonGrpScheduleAdminEntry 11 } + +rttMonGrpScheduleAdminDelete OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Removal of members from an existing group will be allowed + if this object is set to TRUE (1). The members, IDs of + which are mentioned in rttMonGrpScheduleAdminProbes object + are removed from the existing group" + + ::= { rttMonGrpScheduleAdminEntry 12 } + +rttMonGrpScheduleAdminReset OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When this is set to true then all members + of this group will be stopped and rescheduled using the + previously set values of this group." + + ::= { rttMonGrpScheduleAdminEntry 13 } + + +-- +-- Auto SAA L3 MPLS VPN Configuration Definitions +-- + +rttMplsVpnMonCtrlTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMplsVpnMonCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Auto SAA L3 MPLS VPN definitions. + + The Auto SAA L3 MPLS VPN administration control is in multiple + tables. + + This first table, is used to create a conceptual Auto SAA L3 + MPLS VPN control row. The following tables contain objects + which used in type specific configurations, scheduling and + reaction configurations. All of these tables will create the + same conceptual control row as this table using this table's + index as their own index. + + In order to a row in this table to become active the following + objects must be defined. + rttMplsVpnMonCtrlRttType, + rttMplsVpnMonCtrlVrfName and + rttMplsVpnMonSchedulePeriod." + ::= { rttMonCtrl 15 } + +rttMplsVpnMonCtrlEntry OBJECT-TYPE + SYNTAX RttMplsVpnMonCtrlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A base list of objects that define a conceptual Auto SAA L3 + MPLS VPN control row." + INDEX { rttMplsVpnMonCtrlIndex } + ::= { rttMplsVpnMonCtrlTable 1 } + + +RttMplsVpnMonCtrlEntry ::= SEQUENCE +{ + rttMplsVpnMonCtrlIndex Integer32, + rttMplsVpnMonCtrlRttType RttMplsVpnMonRttType, + rttMplsVpnMonCtrlVrfName OCTET STRING, + rttMplsVpnMonCtrlTag DisplayString, + rttMplsVpnMonCtrlThreshold Integer32, + rttMplsVpnMonCtrlTimeout Integer32, + rttMplsVpnMonCtrlScanInterval Integer32, + rttMplsVpnMonCtrlDelScanFactor Integer32, + rttMplsVpnMonCtrlEXP Integer32, + rttMplsVpnMonCtrlRequestSize Integer32, + rttMplsVpnMonCtrlVerifyData TruthValue, + rttMplsVpnMonCtrlStorageType StorageType, + rttMplsVpnMonCtrlProbeList DisplayString, + rttMplsVpnMonCtrlStatus RowStatus, + rttMplsVpnMonCtrlLpd TruthValue, + rttMplsVpnMonCtrlLpdGrpList DisplayString, + rttMplsVpnMonCtrlLpdCompTime Integer32 +} + +rttMplsVpnMonCtrlIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Uniquely identifies a row in the rttMplsVpnMonCtrlTable. + + This is a pseudo-random number selected by the management + station when creating a row via the + rttMplsVpnMonCtrlStatus object. + + If the pseudo-random number is already in use an + 'inconsistentValue' return code will be returned when set + operation is attempted." + ::= { rttMplsVpnMonCtrlEntry 1 } + +rttMplsVpnMonCtrlRttType OBJECT-TYPE + SYNTAX RttMplsVpnMonRttType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of RTT operation to be performed for Auto SAA L3 + MPLS VPN. + + This value must be set in the same PDU of + rttMplsVpnMonCtrlStatus. + + This value must be set before setting + any other parameter configuration of an Auto SAA L3 MPLS VPN." + ::= { rttMplsVpnMonCtrlEntry 2 } + +rttMplsVpnMonCtrlVrfName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This field is used to specify the VPN name for which + the Auto SAA L3 MPLS VPN RTT operation will be used. + + This value must be set in the same PDU of + rttMplsVpnMonCtrlStatus. + + The Auto SAA L3 MPLS VPN will find the PEs participating in + this VPN and configure RTT operation corresponding to value + specified in rttMplsVpnMonCtrlRttType. + + If the VPN corresponds to the value configured for this object + doesn't exist 'inconsistentValue' error will be returned. + + The value 'saa-vrf-all' has a special meaning. When this + object is set to 'saa-vrf-all', all the VPNs in the PE will be + discovered and Auto SAA L3 MPLS VPN will configure RTT + operations corresponding to all these PEs with the value + specified in rttMplsVpnMonCtrlRttType as type for those + operations. + + So, the user should avoid using this string for a particular + VPN name when using this feature in order to avoid ambiguity." + ::= { rttMplsVpnMonCtrlEntry 3 } + +rttMplsVpnMonCtrlTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which is used by a managing application to + identify the RTT target. + + This string will be configured as rttMonCtrlAdminTag for all + the operations configured by this Auto SAA L3 MPLS VPN. + + The usage of this value in Auto SAA L3 MPLS VPN is same as + rttMonCtrlAdminTag in RTT operation." + DEFVAL { "" } + ::= { rttMplsVpnMonCtrlEntry 4 } + +rttMplsVpnMonCtrlThreshold OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object defines an administrative threshold limit. + + This value will be configured as rttMonCtrlAdminThreshold for + all the operations that will be configured by the current + Auto SAA L3 MPLS VPN. + + The usage of this value in Auto SAA L3 MPLS VPN is same as + rttMonCtrlAdminThreshold." + DEFVAL { 5000 } + ::= { rttMplsVpnMonCtrlEntry 5 } + +rttMplsVpnMonCtrlTimeout OBJECT-TYPE + SYNTAX Integer32 (0..604800000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the duration to wait for a RTT operation configured + automatically by the Auto SAA L3 MPLS VPN to complete. + + The value of this object cannot be set to a value which would + specify a duration exceeding rttMplsVpnMonScheduleFrequency. + + The usage of this value in Auto SAA L3 MPLS VPN is similar to + rttMonCtrlAdminTimeout." + DEFVAL { 5000 } + ::= { rttMplsVpnMonCtrlEntry 6 } + +rttMplsVpnMonCtrlScanInterval OBJECT-TYPE + SYNTAX Integer32 (1..70560) + UNITS "minutes" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the frequency at which the automatic PE addition + should take place if there is any for an Auto SAA L3 MPLS VPN. + + New RTT operations corresponding to the new PEs discovered will + be created and scheduled. + + The default value for this object is 4 hours. The maximum value + supported is 49 days." + DEFVAL { 240 } + ::= { rttMplsVpnMonCtrlEntry 7 } + +rttMplsVpnMonCtrlDelScanFactor OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the frequency at which the automatic PE deletion + should take place. + + This object specifies the number of times of + rttMonMplslmCtrlScanInterval (rttMplsVpnMonCtrlDelScanFactor * + rttMplsVpnMonCtrlScanInterval) to wait before removing the PEs. + This object doesn't directly specify the explicit value to + wait before removing the PEs that were down. + + If this object set 0 the entries will never removed." + DEFVAL { 1 } + ::= { rttMplsVpnMonCtrlEntry 8 } + +rttMplsVpnMonCtrlEXP OBJECT-TYPE + SYNTAX Integer32 (0..7) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the EXP value that needs to be + put as precedence bit of an IP header." + DEFVAL { 0 } + ::= { rttMplsVpnMonCtrlEntry 9 } + +rttMplsVpnMonCtrlRequestSize OBJECT-TYPE + SYNTAX Integer32 (0..16384) + UNITS "octets" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the native payload size that needs to + be put on the packet. + + This value will be configured as + rttMonEchoAdminPktDataRequestSize for all the RTT operations + configured by the current Auto SAA L3 MPLS VPN. + + The minimum request size for jitter probe is 16. The maximum + for jitter probe is 1500. The default request size is 32 for + jitter probe. + + For echo and pathEcho default request size is 28. + The minimum request size for echo and pathEcho is 28 bytes." + DEFVAL { 1 } + ::= { rttMplsVpnMonCtrlEntry 10 } + +rttMplsVpnMonCtrlVerifyData OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When set to true, the resulting data in each RTT operation + created by the current Auto SAA L3 MPLS VPN is compared with + the expected data. This includes checking header information + (if possible) and exact packet size. Any mismatch will be + recorded in the rttMonStatsCollectVerifyErrors object of each + RTT operation created by the current Auto SAA L3 MPLS VPN." + DEFVAL { false } + ::= { rttMplsVpnMonCtrlEntry 11 } + +rttMplsVpnMonCtrlStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The storage type of this conceptual row. When set to + 'nonVolatile', this entry will be shown in 'show running' + command and can be saved into Non-volatile memory. + + By Default the entry will not be saved into Non-volatile + memory. + + This object can be set to either 'volatile' or 'nonVolatile'. + Other values are not applicable for this conceptual row and + are not supported." + DEFVAL { volatile } + ::= { rttMplsVpnMonCtrlEntry 12 } + +rttMplsVpnMonCtrlProbeList OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object holds the list of probes ID's that are created by + the Auto SAA L3 MPLS VPN. + + The probes will be specified in the following form. + (a) Individual ID's with comma separated as 1,5,3. + (b) Range form including hyphens with multiple ranges being + separated by comma as 1-10,12-34. + (c) Mix of the above two forms as 1,2,4-10,12,15,19-25." + ::= { rttMplsVpnMonCtrlEntry 13 } + +rttMplsVpnMonCtrlStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the conceptual Auto SAA L3 MPLS VPN control row. + + In order for this object to become active + rttMplsVpnMonCtrlRttType, rttMplsVpnMonCtrlVrfName and + rttMplsVpnMonSchedulePeriod objects must be defined. + All other objects can assume default values. + + If the object is set to 'createAndGo' rttMplsVpnMonCtrlRttType, + rttMplsVpnMonCtrlVrfName and rttMplsVpnMonSchedulePeriod needs + to be set along with rttMplsVpnMonCtrlStatus. + + If the object is set to 'createAndWait' rttMplsVpnMonCtrlRttType + and rttMplsVpnMonCtrlVrfName needs to be set along with + rttMplsVpnMonCtrlStatus. rttMplsVpnMonSchedulePeriod needs to be + specified before setting rttMplsVpnMonCtrlStatus to 'active'. + + The following objects cannot be modified after creating the + Auto SAA L3 MPLS VPN conceptual row. + + - rttMplsVpnMonCtrlRttType + - rttMplsVpnMonCtrlVrfName + + The following objects can be modified even after creating the + Auto SAA L3 MPLS VPN conceptual row by setting this object to + 'notInService' + + - All other writable objects in rttMplsVpnMonCtrlTable except + rttMplsVpnMonCtrlRttType and rttMplsVpnMonCtrlVrfName. + - Objects in the rttMplsVpnMonTypeTable. + - Objects in the rttMplsVpnMonScheduleTable. + + The following objects can be modified as needed without setting + this object to 'notInService' even after creating the + Auto SAA L3 MPLS VPN conceptual row. + + - Objects in rttMplsVpnMonReactTable. + + This object can be set to 'destroy' from any value + at any time. When this object is set to 'destroy' it will stop + and destroy all the probes created by this Auto SAA L3 MPLS VPN + before destroying Auto SAA L3 MPLS VPN control row." + ::= { rttMplsVpnMonCtrlEntry 14 } + +rttMplsVpnMonCtrlLpd OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "When set to true, this implies that LPD (LSP Path Discovery) + is enabled for this row. + + The Auto SAA L3 MPLS VPN will find all the paths to each of the + PE's and configure RTT operation with rttMonCtrlAdminRttType + value as 'lspGroup'. The 'lspGroup' probe will walk through + the list of set of information that uniquely identifies a path + and send the LSP echo requests across them. All these LSP echo + requests sent for 1st path, 2nd path etc. can be thought of as + 'single probes' sent as a part of 'lspGroup'. These single + probes will of type 'rttMplsVpnMonCtrlRttType'. + + 'lspGroup' probe is a superset of individual probes that will + test multiple paths. For example Suppose there are 10 paths to + the target. One 'lspGroup' probe will be created which will + store all the information related to uniquely identify the 10 + paths. When the 'lspGroup' probe will run it will sweep through + the set of information for 1st path, 2nd path, 3rd path and so + on till it has tested all the paths." + DEFVAL { false } + ::= { rttMplsVpnMonCtrlEntry 15 } + +rttMplsVpnMonCtrlLpdGrpList OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object holds the list of LPD Group IDs that are created + for this Auto SAA L3 MPLS VPN row. + + This object will be applicable only when LSP Path Discovery is + enabled for this row. + + The LPD Groups will be specified in the following form. + (a) Individual ID's with comma separated as 1,5,3. + (b) Range form including hyphens with multiple ranges being + separated by comma as 1-10,12-34. + (c) Mix of the above two forms as 1,2,4-10,12,15,19-25." + ::= { rttMplsVpnMonCtrlEntry 16 } + +rttMplsVpnMonCtrlLpdCompTime OBJECT-TYPE + SYNTAX Integer32 (1..65535) + UNITS "minutes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The completion time of the LSP Path Discovery for the entire + set of PEs which are discovered for this Auto SAA. + + This object will be applicable only when LSP Path Discovery is + enabled for this row." + ::= { rttMplsVpnMonCtrlEntry 17 } + +-- +-- Auto SAA L3 MPLS VPN Type Specific Configuration +-- + +rttMplsVpnMonTypeTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMplsVpnMonTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains Auto SAA L3 MPLS VPN configured RTT + operation specific definitions. + + This table is controlled via the rttMplsVpnMonCtrlTable. + Entries in this table are created via the + rttMplsVpnMonCtrlStatus object." + ::= { rttMonCtrl 16 } + +rttMplsVpnMonTypeEntry OBJECT-TYPE + SYNTAX RttMplsVpnMonTypeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define RTT operation specific + configuration for an Auto SAA L3 MPLS VPN." + AUGMENTS { rttMplsVpnMonCtrlEntry } + ::= { rttMplsVpnMonTypeTable 1 } + +RttMplsVpnMonTypeEntry ::= SEQUENCE +{ + rttMplsVpnMonTypeInterval Integer32, + rttMplsVpnMonTypeNumPackets Integer32, + rttMplsVpnMonTypeDestPort Integer32, + rttMplsVpnMonTypeSecFreqType INTEGER, + rttMplsVpnMonTypeSecFreqValue Integer32, + rttMplsVpnMonTypeLspSelector OCTET STRING, + rttMplsVpnMonTypeLSPReplyMode RttMonLSPPingReplyMode, + rttMplsVpnMonTypeLSPTTL Integer32, + rttMplsVpnMonTypeLSPReplyDscp Integer32, + rttMplsVpnMonTypeLpdMaxSessions Integer32, + rttMplsVpnMonTypeLpdSessTimeout Integer32, + rttMplsVpnMonTypeLpdEchoTimeout Integer32, + rttMplsVpnMonTypeLpdEchoInterval Integer32, + rttMplsVpnMonTypeLpdEchoNullShim TruthValue, + rttMplsVpnMonTypeLpdScanPeriod Integer32, + rttMplsVpnMonTypeLpdStatHours Integer32 +} + +rttMplsVpnMonTypeInterval OBJECT-TYPE + SYNTAX Integer32 (1..60000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value represents the inter-packet delay between packets + and is in milliseconds. This value is currently used for + Jitter probe. This object is applicable to jitter probe only. + + The usage of this value in RTT operation is same as + rttMonEchoAdminInterval." + DEFVAL { 20 } + ::= { rttMplsVpnMonTypeEntry 1 } + +rttMplsVpnMonTypeNumPackets OBJECT-TYPE + SYNTAX Integer32 (1..60000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value represents the number of packets that need to be + transmitted. This value is currently used for Jitter probe. + This object is applicable to jitter probe only. + + The usage of this value in RTT operation is same as + rttMonEchoAdminNumPackets." + DEFVAL { 10 } + ::= { rttMplsVpnMonTypeEntry 2 } + +rttMplsVpnMonTypeDestPort OBJECT-TYPE + SYNTAX Integer32 (1..65536) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the target's port number to which the + packets need to be sent. + + This value will be configured as target port for all the + operations that is going to be configured + + The usage of this value is same as rttMonEchoAdminTargetPort + in RTT operation. This object is applicable to jitter type. + + If this object is not being set random port will be used as + destination port." + ::= { rttMplsVpnMonTypeEntry 3 } + +rttMplsVpnMonTypeSecFreqType OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + timeout(2), + connectionLoss(3), + both(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the reaction type for which the + rttMplsVpnMonTypeSecFreqValue should be applied. + + The Value 'timeout' will cause secondary frequency to be set + for frequency on timeout condition. + + The Value 'connectionLoss' will cause secondary frequency to + be set for frequency on connectionloss condition. + + The Value 'both' will cause secondary frequency to be set for + frequency on either of timeout/connectionloss condition. + + Notifications must be configured on corresponding reaction type + in order to rttMplsVpnMonTypeSecFreqValue get effect. + + When LSP Path Discovery is enabled for this row the following + rttMplsVpnMonReactLpdNotifyType notifications must be + configured in order to rttMplsVpnMonTypeSecFreqValue get effect. + - 'lpdGroupStatus' or 'lpdAll'. + + Since the Frequency of the operation changes the stats will be + collected in new bucket. + + If any of the reaction type (timeout/connectionLoss) occurred + for an operation configured by this Auto SAA L3 MPLS VPN and + the following conditions are satisfied, the frequency of the + operation will be changed to rttMplsVpnMonTypeSecFreqValue. + + 1) rttMplsVpnMonTypeSecFreqType is set for a reaction type + (timeout/connectionLoss). + 2) A notification is configured for the same reaction type + (timeout/connectionLoss). + + When LSP Path Discovery is enabled for this row, if any of the + reaction type (timeout/connectionLoss) occurred for 'single + probes' configured by this Auto SAA L3 MPLS VPN and the + following conditions are satisfied, the secondary frequency + rttMplsVpnMonTypeSecFreqValue will be applied to the + 'lspGroup' probe. + + 1) rttMplsVpnMonTypeSecFreqType is set for a reaction type + (timeout/connectionLoss/both). + 2) rttMplsVpnMonReactLpdNotifyType object must be set to + value of 'lpdGroupStatus' or 'lpdAll'. + + The frequency of the individual operations will be restored to + original frequency once the trap is sent." + DEFVAL { none } + ::= { rttMplsVpnMonTypeEntry 4 } + +rttMplsVpnMonTypeSecFreqValue OBJECT-TYPE + SYNTAX Integer32 (1..604800) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the value that needs to be applied to + secondary frequency of individual RTT operations configured by + Auto SAA L3 MPLS VPN. + + Setting rttMplsVpnMonTypeSecFreqValue without setting + rttMplsVpnMonTypeSecFreqType will not have any effect." + DEFVAL { 60 } + ::= { rttMplsVpnMonTypeEntry 5 } + +rttMplsVpnMonTypeLspSelector OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string which specifies the address of the local host + (127.X.X.X). + + This object will be used as lsp-selector in MPLS RTT + operations configured by the Auto SAA L3 MPLS VPN. + + When LSP Path Discovery is enabled for the row, this object will + be used to indicate the base LSP selector value to be used in + the LSP Path Discovery. + + This value of this object is significant in MPLS load + balancing scenario. This value will be used as one of the + parameter in that load balancing." + DEFVAL { "7F 00 00 01" } + ::= { rttMplsVpnMonTypeEntry 6 } + +rttMplsVpnMonTypeLSPReplyMode OBJECT-TYPE + SYNTAX RttMonLSPPingReplyMode + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the reply mode for the LSP Echo + requests originated by the operations configured by the + Auto SAA L3 MPLS VPN. + + This object is currently used by echo and pathEcho." + DEFVAL { replyIpv4Udp } + ::= { rttMplsVpnMonTypeEntry 7 } + +rttMplsVpnMonTypeLSPTTL OBJECT-TYPE + SYNTAX Integer32 ( 0..255 ) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the TTL setting for MPLS echo request + packets originated by the operations configured by the + Auto SAA L3 MPLS VPN. + + This object is currently used by echo and pathEcho. + + For 'echo' the default TTL will be set to 255. + For 'pathEcho' the default will be set to 30. + + Note: This object cannot be set to the value of 0. The + default value of 0 signifies the default TTL values will be + used for 'echo' and 'pathEcho'." + DEFVAL { 0 } + ::= { rttMplsVpnMonTypeEntry 8 } + +rttMplsVpnMonTypeLSPReplyDscp OBJECT-TYPE + SYNTAX Integer32 ( 0..63 | 255 ) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the DSCP value to be set in the IP header + of the LSP echo reply packet. + The value of this object will be in range of DiffServ codepoint + values between 0 to 63. + + Note: This object cannot be set to value of 255. This default + value specifies that DSCP is not set for this row." + DEFVAL { 255 } + ::= { rttMplsVpnMonTypeEntry 9 } + +rttMplsVpnMonTypeLpdMaxSessions OBJECT-TYPE + SYNTAX Integer32 (1..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object represents the number of concurrent path discovery + requests that will be active at one time per MPLS VPN control + row. This object is meant for reducing the time for discovery + of all the paths to the target in a large customer network. + However its value should be chosen such that it does not cause + any performance impact. + + Note: If the customer network has low end routers in the Core + it is recommended to keep this value low." + DEFVAL { 1 } + ::= { rttMplsVpnMonTypeEntry 10 } + +rttMplsVpnMonTypeLpdSessTimeout OBJECT-TYPE + SYNTAX Integer32 (1..900) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the maximum allowed duration of a + particular tree trace request. + + If no response is received in configured time the request will + be considered a failure." + DEFVAL { 120 } + ::= { rttMplsVpnMonTypeEntry 11 } + +rttMplsVpnMonTypeLpdEchoTimeout OBJECT-TYPE + SYNTAX Integer32 (0..604800000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the timeout value for the LSP echo + requests which are sent while performing the LSP Path Discovery." + DEFVAL { 5000 } + ::= { rttMplsVpnMonTypeEntry 12 } + +rttMplsVpnMonTypeLpdEchoInterval OBJECT-TYPE + SYNTAX Integer32 (0..3600000) + UNITS "milliseconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the send interval between LSP echo + requests which are sent while performing the LSP Path Discovery." + DEFVAL { 0 } + ::= { rttMplsVpnMonTypeEntry 13 } + +rttMplsVpnMonTypeLpdEchoNullShim OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies if the explicit-null label is added to + LSP echo requests which are sent while performing the LSP Path + Discovery. + + If set to TRUE all the probes configured as part of this control + row will send the LSP echo requests with the explicit-null + label added." + DEFVAL { false } + ::= { rttMplsVpnMonTypeEntry 14 } + +rttMplsVpnMonTypeLpdScanPeriod OBJECT-TYPE + SYNTAX Integer32 (0..7200) + UNITS "minutes" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the scan time for the completion of LSP + Path Discovery for all the PEs discovered for this control row. + If the scan period is exceeded on completion of the LSP Path + Discovery for all the PEs, the next discovery will start + immediately else it will wait till expiry of scan period. + + For example: If the value is set to 30 minutes then on start of + the LSP Path Discovery a timestamp will be taken say T1. At the + end of the tree trace discovery one more timestamp will be taken + again say T2. If (T2-T1) is greater than 30, the next discovery + will start immediately else next discovery will wait for + [30 - (T2-T1)]. + + Note: If the object is set to a special value of '0', it will + force immediate start of the next discovery on all neighbours + without any delay." + DEFVAL { 0 } + ::= { rttMplsVpnMonTypeEntry 15 } + +rttMplsVpnMonTypeLpdStatHours OBJECT-TYPE + SYNTAX Integer32 (0..2) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of hours of data to be kept per LPD + group. The LPD group statistics will be kept in an hourly + bucket. At the maximum there can be two buckets. + The value of 'one' is not advisable because the group will close + and immediately be deleted before the network management station + will have the opportunity to retrieve the statistics. + + The value used in the rttMplsVpnLpdGroupStatsTable to + uniquely identify this group is the + rttMonStatsCaptureStartTimeIndex. + + Note: When this object is set to the value of '0' all + rttMplsVpnLpdGroupStatsTable data capturing will be shut off." + DEFVAL { 2 } + ::= { rttMplsVpnMonTypeEntry 16 } +-- +-- Auto SAA L3 MPLS VPN Schedule Table +-- + +rttMplsVpnMonScheduleTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMplsVpnMonScheduleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of Auto SAA L3 MPLS VPN monitoring scheduling + specific definitions. + + This table is controlled via the rttMplsVpnMonCtrlTable. + Entries in this table are created via the + rttMplsVpnMonCtrlStatus object." + ::= { rttMonCtrl 17 } + +rttMplsVpnMonScheduleEntry OBJECT-TYPE + SYNTAX RttMplsVpnMonScheduleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define specific configuration for + the scheduling of RTT operations." + AUGMENTS { rttMplsVpnMonCtrlEntry } + ::= { rttMplsVpnMonScheduleTable 1 } + +RttMplsVpnMonScheduleEntry ::= SEQUENCE +{ + rttMplsVpnMonScheduleRttStartTime TimeTicks, + rttMplsVpnMonSchedulePeriod Integer32, + rttMplsVpnMonScheduleFrequency Integer32 +} + +rttMplsVpnMonScheduleRttStartTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This is the time when this conceptual row will + activate. rttMplsVpnMonSchedulePeriod object must be specified + before setting this object. + + This is the value of MIB-II's sysUpTime in the future. + When sysUpTime equals this value this object will + cause the activation of a conceptual Auto SAA L3 MPLS VPN row. + + When an agent has the capability to determine date and + time, the agent should store this object as DateAndTime. + This allows the agent to be able to activate conceptual + Auto SAA L3 MPLS VPN row at the intended time. + + If this object has value as 1, this means start the operation + now itself. Value of 0 puts the operation in pending state." + DEFVAL { 0 } + ::= { rttMplsVpnMonScheduleEntry 1 } + +rttMplsVpnMonSchedulePeriod OBJECT-TYPE + SYNTAX Integer32 (1..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the time duration over which all the probes created + by the current Auto SAA L3 MPLS VPN have to be scheduled. + + This object must be set first before setting + rttMplsVpnMonScheduleRttStartTime." + ::= { rttMplsVpnMonScheduleEntry 2 } + +rttMplsVpnMonScheduleFrequency OBJECT-TYPE + SYNTAX Integer32 (1..604800) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies the duration between initiating each RTT + operation configured by the Auto SAA L3 MPLS VPN. + + This object cannot be set to a value which would be a + shorter duration than rttMplsVpnMonCtrlTimeout. + + The usage of this value in RTT operation is same as + rttMonCtrlAdminFrequency." + DEFVAL { 60 } + ::= { rttMplsVpnMonScheduleEntry 3 } + +-- +-- Auto SAA L3 MPLS VPN Reaction Table +-- + +rttMplsVpnMonReactTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMplsVpnMonReactEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A Table of Auto SAA L3 MPLS VPN Notification definitions. + + This table augments the rttMplsVpnMonCtrlTable." + ::= { rttMonCtrl 18 } + +rttMplsVpnMonReactEntry OBJECT-TYPE + SYNTAX RttMplsVpnMonReactEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects that define Auto SAA L3 MPLS VPN reaction + configuration." + AUGMENTS { rttMplsVpnMonCtrlEntry } + ::= { rttMplsVpnMonReactTable 1 } + +RttMplsVpnMonReactEntry::= SEQUENCE +{ + rttMplsVpnMonReactConnectionEnable TruthValue, + rttMplsVpnMonReactTimeoutEnable TruthValue, + rttMplsVpnMonReactThresholdType INTEGER, + rttMplsVpnMonReactThresholdCount Integer32, + rttMplsVpnMonReactActionType INTEGER, + rttMplsVpnMonReactLpdNotifyType INTEGER, + rttMplsVpnMonReactLpdRetryCount Integer32 +} + +rttMplsVpnMonReactConnectionEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value set for this will be applied as + rttMonReactAdminConnectionEnable for individual probes created + by the Auto SAA L3 MPLS VPN. + + When this object is set to true, rttMonReactVar for individual + probes created by the Auto SAA L3 MPLS VPN will be set to + 'connectionLoss(8)'." + DEFVAL { false } + ::= { rttMplsVpnMonReactEntry 1 } + +rttMplsVpnMonReactTimeoutEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value set for this will be applied as + rttMonReactAdminTimeoutEnable for individual probes created + by the Auto SAA L3 MPLS VPN. + + When this object is set to true, rttMonReactVar for individual + probes created by the Auto SAA L3 MPLS VPN will be set to + 'timeout(7)'." + DEFVAL { false } + ::= { rttMplsVpnMonReactEntry 2 } + +rttMplsVpnMonReactThresholdType OBJECT-TYPE + SYNTAX INTEGER + { + never(1), + immediate(2), + consecutive(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value corresponding to this object will be applied as + rttMonReactAdminThresholdType for individual probes created by + the Auto SAA L3 MPLS VPN. + + The value corresponding to this object will be applied as + rttMonReactThresholdType for individual probes created by + the Auto SAA L3 MPLS VPN." + DEFVAL { never } + ::= { rttMplsVpnMonReactEntry 3 } + +rttMplsVpnMonReactThresholdCount OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object value will be applied as + rttMonReactAdminThresholdCount for individual probes created by + the Auto SAA L3 MPLS VPN. + + This object value will be applied as rttMonReactThresholdCountX + for individual probes created by the Auto SAA L3 MPLS VPN." + DEFVAL { 5 } + ::= { rttMplsVpnMonReactEntry 4 } + +rttMplsVpnMonReactActionType OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + trapOnly(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value corresponding to this object will be applied as + rttMonReactAdminActionType of individual probes created by + this Auto SAA L3 MPLS VPN. + + The value corresponding to this object will be applied as + rttMonReactActionType of individual probes created by + this Auto SAA L3 MPLS VPN." + DEFVAL { none } + ::= { rttMplsVpnMonReactEntry 5 } + +rttMplsVpnMonReactLpdNotifyType OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + lpdPathDiscovery(2), + lpdGroupStatus(3), + lpdAll(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the type of LPD notifications to be + generated for the current Auto SAA L3 MPLS VPN control row. + + This object will be applicable only when LSP Path Discovery is + enabled for this row. + + There are two types of notifications supported for the LPD - + (a) rttMonLpdDiscoveryNotification - This notification will + be sent on the failure of LSP Path Discovery to the + particular PE. Reversal of the failure will also result in + sending the notification. + (b) rttMonLpdGrpStatusNotification - Individual probes in an LPD + group will not generate notifications independently but will + be generating dependent on the state of the group. Any + individual probe can initiate the generation of a + notification, dependent on the state of the group. + Notifications are only generated if the failure/restoration + of an individual probe causes the state of the group to + change. + + The Value 'none' will not cause any notifications to be sent. + + The Value 'lpdPathDiscovery' will cause (a) to be sent. + + The Value 'lpdGroupStatus' will cause (b) to be sent. + + The Value 'lpdAll' will cause both (a) and (b) to sent + depending on the failure conditions." + DEFVAL { none } + ::= { rttMplsVpnMonReactEntry 6 } + +rttMplsVpnMonReactLpdRetryCount OBJECT-TYPE + SYNTAX Integer32 (1..16) + UNITS "attempts" + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object value specifies the number of attempts to be + performed before declaring the path as 'down'. Each 'single + probe' which is part of 'lspGroup' probe will be retried these + many times before marking it as 'down'. + + This object will be applicable only when LSP Path Discovery is + enabled for this row. + + - When rttMplsVpnMonTypeSecFreqType is not configured, the + failure count will be incremented at the next cycle of + 'lspGroup' probe at interval's of + rttMplsVpnMonScheduleFrequency value. + + For example: Assume there are 10 paths discovered and on + the first run of the 'lspGroup' probe first two paths failed + and rest passed. On the second run all the probes will be run + again. The probes 1 and 2 will be retried till the + rttMplsVpnMonReactLpdRetryCount value, and + then marked as 'down' and rttMonLpdGrpStatusNotification + will be sent if configured. + + - When rttMplsVpnMonTypeSecFreqType value is anything other + than 'none', the retry will happen for the failed probes at + the rttMplsVpnMonTypeSecFreqValue and only the failed + probes will be retried. + + For example: Assume there are 10 paths discovered and on the + first run of the 'lspGroup' probe first two paths failed and + rest passed. The secondary frequency will be applied to the + failed probes. At secondary frequency interval the first two + probes will be run again. The probes 1 and 2 will be retried + till the rttMplsVpnMonReactLpdRetryCount value, and + then marked as 'down' and rttMonLpdGrpStatusNotification + will be sent if configured." + DEFVAL { 1 } + ::= { rttMplsVpnMonReactEntry 7 } + +-- +-- A new Reaction Table for the probes. +-- + +rttMonReactTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonReactEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the reaction configurations. Each + conceptual row in rttMonReactTable corresponds to a reaction + configured for the probe defined in rttMonCtrlAdminTable. + + For each reaction configured for a probe there is an entry in + the table. + + Each Probe can have multiple reactions and hence there can be + multiple rows for a particular probe. + + This table is coupled with rttMonCtrlAdminTable." + ::= { rttMonCtrl 19 } + +rttMonReactEntry OBJECT-TYPE + SYNTAX RttMonReactEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A base list of objects that define a conceptual reaction + configuration control row." + INDEX { rttMonCtrlAdminIndex, + rttMonReactConfigIndex } + ::= { rttMonReactTable 1 } + +RttMonReactEntry ::= SEQUENCE +{ + rttMonReactConfigIndex Integer32, + rttMonReactVar RttMonReactVar, + rttMonReactThresholdType INTEGER, + rttMonReactActionType INTEGER, + rttMonReactThresholdRising Integer32, + rttMonReactThresholdFalling Integer32, + rttMonReactThresholdCountX Integer32, + rttMonReactThresholdCountY Integer32, + rttMonReactValue Integer32, + rttMonReactOccurred TruthValue, + rttMonReactStatus RowStatus +} + +rttMonReactConfigIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object along with rttMonCtrlAdminIndex identifies + a particular reaction-configuration for a particular probe. + This is a pseudo-random number selected by the management + station when creating a row via the rttMonReactStatus. + If the pseudo-random number is already in use an + 'inconsistentValue' return code will be returned when + set operation is attempted." + ::= { rttMonReactEntry 1 } + +rttMonReactVar OBJECT-TYPE + SYNTAX RttMonReactVar + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the type of reaction configured for a + probe. + + The reaction types 'rtt', 'timeout', and 'connectionLoss' + can be configured for all probe types. + + The reaction type 'verifyError' can be configured for all + probe types except RTP probe type. + + The reaction types 'jitterSDAvg', 'jitterDSAvg', 'jitterAvg', + 'packetLateArrival', 'packetOutOfSequence', + 'maxOfPositiveSD', 'maxOfNegativeSD', 'maxOfPositiveDS' + and 'maxOfNegativeDS' can be configured for UDP jitter + and ICMP jitter probe types only. + + The reaction types 'mos' and 'icpif' can be configured + for UDP jitter and ICMP jitter probe types only. + + The reaction types 'packetLossDS', 'packetLossSD' and + 'packetMIA' can be configured for UDP jitter, and + RTP probe types only. + + The reaction types 'iaJitterDS', 'frameLossDS', 'mosLQDS', + 'mosCQDS', 'rFactorDS', 'iaJitterSD', 'rFactorSD', 'mosCQSD' + can be configured for RTP probe type only. + + The reaction types 'successivePacketLoss', 'maxOfLatencyDS', + 'maxOfLatencySD', 'latencyDSAvg', 'latencySDAvg' and + 'packetLoss' can be configured for ICMP jitter probe + type only." + ::= { rttMonReactEntry 2 } + +rttMonReactThresholdType OBJECT-TYPE + SYNTAX INTEGER + { + never(1), + immediate(2), + consecutive(3), + xOfy(4), + average(5) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object specifies the conditions under which + the notification ( trap ) is sent. + + never - rttMonReactOccurred is never set + + immediate - rttMonReactOccurred is set to 'true' when the + value of parameter for which reaction is + configured ( e.g rtt, jitterAvg, packetLossSD, + mos etc ) violates the threshold. + Conversely, rttMonReactOccurred is set to 'false' + when the parameter ( e.g rtt, jitterAvg, + packetLossSD, mos etc ) is below the threshold + limits. + + consecutive - rttMonReactOccurred is set to true when the value + of parameter for which reaction is configured + ( e.g rtt, jitterAvg, packetLossSD, mos etc ) + violates the threshold for configured consecutive + times. + Conversely, rttMonReactOccurred is set to false + when the value of parameter ( e.g rtt, jitterAvg + packetLossSD, mos etc ) is below the threshold + limits for the same number of consecutive + operations. + + xOfy - rttMonReactOccurred is set to true when x + ( as specified by rttMonReactThresholdCountX ) + out of the last y ( as specified by + rttMonReacthresholdCountY ) times the value of + parameter for which the reaction is configured + ( e.g rtt, jitterAvg, packetLossSD, mos etc ) + violates the threshold. + Conversely, it is set to false when x, out of the + last y times the value of parameter + ( e.g rtt, jitterAvg, packetLossSD, mos ) is + below the threshold limits. + NOTE: When x > y, the probe will never + generate a reaction. + + average - rttMonReactOccurred is set to true when the + average ( rttMonReactThresholdCountX times ) + value of parameter for which reaction is + configured ( e.g rtt, jitterAvg, packetLossSD, + mos etc ) violates the threshold condition. + Conversely, it is set to false when the + average value of parameter ( e.g rtt, jitterAvg, + packetLossSD, mos etc ) is below the threshold + limits. + + If this value is changed by a management station, + rttMonReactOccurred is set to false, but + no reaction is generated if the prior value of + rttMonReactOccurred was true." + DEFVAL { never } +::= { rttMonReactEntry 3 } + +rttMonReactActionType OBJECT-TYPE + SYNTAX INTEGER + { + none(1), + trapOnly(2), + triggerOnly(3), + trapAndTrigger(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Specifies what type(s), if any, of reaction(s) to + generate if an operation violates one of the watched + ( reaction-configuration ) conditions: + + none - no reaction is generated + trapOnly - a trap is generated + triggerOnly - all trigger actions defined for this + entry are initiated + trapAndTrigger - both a trap and all trigger actions + are initiated + A trigger action is defined via the + rttMonReactTriggerAdminTable." + DEFVAL { none } + ::= { rttMonReactEntry 4 } + +rttMonReactThresholdRising OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object defines the higher threshold limit. + If the value ( e.g rtt, jitterAvg, packetLossSD etc ) rises + above this limit and if the condition specified in + rttMonReactThresholdType are satisfied, a trap is generated. + + Default value of rttMonReactThresholdRising for + 'rtt' is 5000 + 'jitterAvg' is 100. + 'jitterSDAvg' is 100. + 'jitterDSAvg' 100. + 'packetLossSD' is 10000. + 'packetLossDS' is 10000. + 'mos' is 500. + 'icpif' is 93. + 'packetMIA' is 10000. + 'packetLateArrival' is 10000. + 'packetOutOfSequence' is 10000. + 'maxOfPositiveSD' is 10000. + 'maxOfNegativeSD' is 10000. + 'maxOfPositiveDS' is 10000. + 'maxOfNegativeDS' is 10000. + 'iaJitterDS' is 20. + 'frameLossDS' is 10000. + 'mosLQDS' is 400. + 'mosCQDS' is 400. + 'rFactorDS' is 80. + 'successivePacketLoss' is 1000. + 'maxOfLatencyDS' is 5000. + 'maxOfLatencySD' is 5000. + 'latencyDSAvg' is 5000. + 'latencySDAvg' is 5000. + 'packetLoss' is 10000. + + This object is not applicable if the rttMonReactVar is + 'timeout', 'connectionLoss' or 'verifyError'. For 'timeout', + 'connectionLoss' and 'verifyError' default value of + rttMonReactThresholdRising will be 0." + ::= { rttMonReactEntry 5 } + +rttMonReactThresholdFalling OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object defines a lower threshold limit. If the + value ( e.g rtt, jitterAvg, packetLossSD etc ) falls + below this limit and if the conditions specified in + rttMonReactThresholdType are satisfied, a trap is generated. + + Default value of rttMonReactThresholdFalling + 'rtt' is 3000 + 'jitterAvg' is 100. + 'jitterSDAvg' is 100. + 'jitterDSAvg' 100. + 'packetLossSD' is 10000. + 'packetLossDS' is 10000. + 'mos' is 500. + 'icpif' is 93. + 'packetMIA' is 10000. + 'packetLateArrival' is 10000. + 'packetOutOfSequence' is 10000. + 'maxOfPositiveSD' is 10000. + 'maxOfNegativeSD' is 10000. + 'maxOfPositiveDS' is 10000. + 'maxOfNegativeDS' is 10000. + 'iaJitterDS' is 20. + 'frameLossDS' is 10000. + 'mosLQDS' is 310. + 'mosCQDS' is 310. + 'rFactorDS' is 60. + 'successivePacketLoss' is 1000. + 'maxOfLatencyDS' is 3000. + 'maxOfLatencySD' is 3000. + 'latencyDSAvg' is 3000. + 'latencySDAvg' is 3000. + 'packetLoss' is 10000. + 'iaJitterSD' is 20. + 'mosCQSD' is 310. + 'rFactorSD' is 60. + + This object is not applicable if the rttMonReactVar is + 'timeout', 'connectionLoss' or 'verifyError'. For 'timeout', + 'connectionLoss' and 'verifyError' default value of + rttMonReactThresholdFalling will be 0." + ::= {rttMonReactEntry 6 } + +rttMonReactThresholdCountX OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If rttMonReactThresholdType value is 'xOfy', this object + defines the 'x' value. + + If rttMonReactThresholdType value is 'consecutive' + this object defines the number of consecutive occurrences + that needs threshold violation before setting + rttMonReactOccurred as true. + + If rttMonReactThresholdType value is 'average' this object + defines the number of samples that needs be considered for + calculating average. + + This object has no meaning if rttMonReactThresholdType has + value of 'never' and 'immediate'." + DEFVAL { 5 } + ::= { rttMonReactEntry 7 } + +rttMonReactThresholdCountY OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object defines the 'y' value of the xOfy condition + if rttMonReactThresholdType is 'xOfy'. + + For other values of rttMonReactThresholdType, this object + is not applicable." + DEFVAL { 5 } + ::= { rttMonReactEntry 8 } + +rttMonReactValue OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object will be set when the configured threshold condition + is violated as defined by rttMonReactThresholdType and holds the + actual value that violated the configured threshold values. + + This object is not valid for the following values of + rttMonReactVar and It will be always 0: + - timeout + - connectionLoss + - verifyError." + DEFVAL { 0 } + ::= { rttMonReactEntry 9 } + +rttMonReactOccurred OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is set to true when the configured threshold + condition is violated as defined by rttMonReactThresholdType. + It will be again set to 'false' if the condition reverses. + + This object is set to true in the following conditions: + - rttMonReactVar is set to timeout and + rttMonCtrlOperTimeoutOccurred set to true. + - rttMonReactVar is set to connectionLoss and + rttMonCtrlOperConnectionLostOccurred set to true. + - rttMonReactVar is set to verifyError and + rttMonCtrlOperVerifyErrorOccurred is set to true. + - For all other values of rttMonReactVar, if the + corresponding value exceeds the configured + rttMonReactThresholdRising. + + This object is set to false in the following conditions: + - rttMonReactVar is set to timeout and + rttMonCtrlOperTimeoutOccurred set to false. + - rttMonReactVar is set to connectionLoss and + rttMonCtrlOperConnectionLostOccurred set to false. + - rttMonReactVar is set to verifyError and + rttMonCtrlOperVerifyErrorOccurred is set to false. + - For all other values of rttMonReactVar, if the + corresponding value fall below the configured + rttMonReactThresholdFalling. + + When the RttMonRttType is 'pathEcho' or 'pathJitter', + this object is applied only to the + rttMonEchoAdminTargetAddress and not to intermediate + hops to the Target." + DEFVAL { false } + ::= { rttMonReactEntry 10 } + +rttMonReactStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This objects indicates the status of the conceptual RTT + Reaction Control Row.Only CreateAndGo and destroy + operations are permitted on the row. + + When this object moves to active state, the conceptual row + having the Reaction configuration for the probe is monitored + and the notifications are generated when the threshold violation + takes place. + + In order for this object to become active rttMonReactVar must + be defined. All other objects assume the default value. + + This object can be set to 'destroy' from any value at any time. + When this object is set to 'destroy' no reaction configuration + for the probes would exist. The reaction configuration for the + probe is removed." + ::= { rttMonReactEntry 11 } + +-- +-- Statistics Capture Table +-- + + +rttMonStatsCaptureTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonStatsCaptureEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The statistics capture database. + + The statistics capture table contains summarized + information of the results for a conceptual RTT control + row. A rolling accumulated history of this information + is maintained in a series of hourly 'group(s)'. Each + 'group' contains a series of 'path(s)', each 'path' + contains a series of 'hop(s)', each 'hop' contains a + series of 'statistics distribution bucket(s)'. + + Each conceptual statistics row has a current hourly + group, into which RTT results are accumulated. At the + end of each hour a new hourly group is created which + then becomes current. The counters and accumulators in + the new group are initialized to zero. The previous + group(s) is kept in the table until the table contains + rttMonStatisticsAdminNumHourGroups groups for the + conceptual statistics row; at this point, the oldest + group is discarded and is replaced by the newly created + one. The hourly group is uniquely identified by the + rttMonStatsCaptureStartTimeIndex object. + + If the activity for a conceptual RTT control row ceases + because the rttMonCtrlOperState object transitions to + 'inactive', the corresponding current hourly group in + this table is 'frozen', and a new hourly group is + created when activity is resumed. + + If the activity for a conceptual RTT control row ceases + because the rttMonCtrlOperState object transitions to + 'pending' this whole table will be cleared and reset to + its initial state. + + When the RttMonRttType is 'pathEcho', the path + exploration RTT requests' statistics will not be + accumulated in this table. + + NOTE: When the RttMonRttType is 'pathEcho', a source to + target rttMonStatsCapturePathIndex path will be + created for each rttMonStatsCaptureStartTimeIndex + to hold all errors that occur when a specific path + had not been found or connection has not be setup. + + Using this rttMonStatsCaptureTable, a managing + application can retrieve summarized data from accurately + measured periods, which is synchronized across multiple + conceptual RTT control rows. With the new hourly group + creation being performed on a 60 minute period, the + managing station has plenty of time to collect the data, + and need not be concerned with the vagaries of network + delays and lost PDU's when trying to get matching data. + Also, the managing station can spread the data gathering + over a longer period, which removes the need for a flood + of get requests in a short period which otherwise would + occur." + ::= { rttMonStats 1 } + + +rttMonStatsCaptureEntry OBJECT-TYPE + SYNTAX RttMonStatsCaptureEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects which accumulate the results of a + series of RTT operations over a 60 minute time period. + + The statistics capture table is a rollover table. When + rttMonStatsCaptureStartTimeIndex groups exceeds the + rttMonStatisticsAdminNumHourGroups value, the oldest + corresponding hourly group will be deleted and will be + replaced with the new rttMonStatsCaptureStartTimeIndex + hourly group. + + All other indices will fill to there maximum size. + + The statistics capture table has five indices. Each + described as follows: + + - The first index correlates its entries to a + conceptual RTT control row via the + rttMonCtrlAdminIndex object. + - The second index is a rollover group and it + uniquely identifies a 60 minute group. (The + rttMonStatsCaptureStartTimeIndex object + is used to make this value unique.) + - When the RttMonRttType is 'pathEcho', the third + index uniquely identifies the paths in a + statistics period. (The period is 60 + minutes.) A path will be created for each + unique path through the network. Note: A + path that does not contain the target is + considered a different path than one which + uses the exact same path, but does contain the + target. For all other values of RttMonRttType + this index will be one. + - When the RttMonRttType is 'pathEcho', the fourth + index uniquely identifies the hops in each path, + as grouped by the third index. This index does + imply the order of the hops along the path to a + target. For all other values of RttMonRttType + this index will be one. + - The fifth index uniquely creates a statistical + distribution bucket." + INDEX { rttMonCtrlAdminIndex, + rttMonStatsCaptureStartTimeIndex, + rttMonStatsCapturePathIndex, + rttMonStatsCaptureHopIndex, + rttMonStatsCaptureDistIndex + } + ::= { rttMonStatsCaptureTable 1 } + + +RttMonStatsCaptureEntry ::= SEQUENCE +{ + rttMonStatsCaptureStartTimeIndex TimeStamp, + rttMonStatsCapturePathIndex Integer32, + rttMonStatsCaptureHopIndex Integer32, + rttMonStatsCaptureDistIndex Integer32, + rttMonStatsCaptureCompletions Integer32, + rttMonStatsCaptureOverThresholds Integer32, + rttMonStatsCaptureSumCompletionTime Gauge32, + rttMonStatsCaptureSumCompletionTime2Low Gauge32, + rttMonStatsCaptureSumCompletionTime2High Gauge32, + rttMonStatsCaptureCompletionTimeMax Gauge32, + rttMonStatsCaptureCompletionTimeMin Gauge32 +} + + +rttMonStatsCaptureStartTimeIndex OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The time when this row was created. + + This object is the second index of the + rttMonStatsCaptureTable Table. + + The the number of rttMonStatsCaptureStartTimeIndex + groups exceeds the rttMonStatisticsAdminNumHourGroups + value, the oldest rttMonStatsCaptureStartTimeIndex + group will be removed and replaced with the new entry. + + When the RttMonRttType is 'pathEcho', this object also + uniquely defines a group of paths. See the + rttMonStatsCaptureEntry object." + ::= { rttMonStatsCaptureEntry 1 } + + +rttMonStatsCapturePathIndex OBJECT-TYPE + SYNTAX Integer32 (1..128) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "When the RttMonRttType is 'pathEcho', this object + uniquely defines a path for a given value of + rttMonStatsCaptureStartTimeIndex. For all other values + of RttMonRttType, this object will be one. + + For a particular value of + rttMonStatsCaptureStartTimeIndex, the agent assigns the + first instance of a path a value of 1, then second + instance a value of 2, and so on. The sequence keeps + incrementing until the number of paths equals + rttMonStatisticsAdminNumPaths value, then no new paths + are kept for the current rttMonStatsCaptureStartTimeIndex + group. + + NOTE: A source to target rttMonStatsCapturePathIndex + path will be created for each + rttMonStatsCaptureStartTimeIndex to hold all + errors that occur when a specific path or + connection has not be setup. + + This value directly represents the path to + a target. We can only support 128 paths." + ::= { rttMonStatsCaptureEntry 2 } + + +rttMonStatsCaptureHopIndex OBJECT-TYPE + SYNTAX Integer32 (1..30) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "When the RttMonRttType is 'pathEcho', this object + uniquely defines a hop for a given value of + rttMonStatsCapturePathIndex. For all other values of + RttMonRttType, this object will be one. + + For a particular value of rttMonStatsCapturePathIndex, + the agent assigns the first instance of a hop + a value of 1, then second instance a value of 2, and so + on. The sequence keeps incrementing until the number of + hops equals rttMonStatisticsAdminNumHops value, then + no new hops are kept for the current + rttMonStatsCapturePathIndex. + + This value directly represents a hop along the path to + a target, thus we can only support 30 hops. + + This value shows the order along the path to a target." + ::= { rttMonStatsCaptureEntry 3 } + + +rttMonStatsCaptureDistIndex OBJECT-TYPE + SYNTAX Integer32 (1..20) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This object uniquely defines a statistical distribution + bucket for a given value of rttMonStatsCaptureHopIndex. + + For a particular value of rttMonStatsCaptureHopIndex, + the agent assigns the first instance of a distribution + a value of 1, then second instance a value of 2, and so + on. The sequence keeps incrementing until the number of + statistics distribution intervals equals + rttMonStatisticsAdminNumDistBuckets value, then + all values that fall above the last interval will + be placed into the last interval. + + Each of these Statistics Distribution Buckets contain + the results of each completion as defined by + rttMonStatisticsAdminDistInterval object." + ::= { rttMonStatsCaptureEntry 4 } + + +rttMonStatsCaptureCompletions OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT operations that have completed without + an error and without timing out. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCaptureEntry 5 } + + +rttMonStatsCaptureOverThresholds OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT operations successfully completed, but + in excess of rttMonCtrlAdminThreshold. This number is a + subset of the accumulation of all + rttMonStatsCaptureCompletions. The operation time + of these completed operations will be accumulated. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCaptureEntry 6 } + + +rttMonStatsCaptureSumCompletionTime OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The accumulated completion time of RTT operations which + complete successfully." + ::= { rttMonStatsCaptureEntry 7 } + + +rttMonStatsCaptureSumCompletionTime2Low OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The low order 32 bits of the accumulated squares + of completion times (in milliseconds) of RTT + operations which complete successfully. + + Low/High order is defined where the binary number + will look as follows: + ------------------------------------------------- + | High order 32 bits | Low order 32 bits | + ------------------------------------------------- + For example the number 4294967296 would have all + Low order bits as '0' and the rightmost High + order bit will be 1 (zeros,1)." + ::= { rttMonStatsCaptureEntry 8 } + + +rttMonStatsCaptureSumCompletionTime2High OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The high order 32 bits of the accumulated squares + of completion times (in milliseconds) of RTT + operations which complete successfully. + + See the rttMonStatsCaptureSumCompletionTime2Low object + for a definition of Low/High Order." + ::= { rttMonStatsCaptureEntry 9 } + + +rttMonStatsCaptureCompletionTimeMax OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum completion time of any RTT operation which + completes successfully." + ::= { rttMonStatsCaptureEntry 10 } + + +rttMonStatsCaptureCompletionTimeMin OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum completion time of any RTT operation which + completes successfully." + ::= { rttMonStatsCaptureEntry 11 } + + +-- +-- Statistics Collection Table +-- + +rttMonStatsCollectTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonStatsCollectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The statistics collection database. + + This table has the exact same behavior as the + rttMonStatsCaptureTable, except it does not keep + statistical distribution information. + + For a complete table description see + the rttMonStatsCaptureTable object." + ::= { rttMonStats 2 } + + +rttMonStatsCollectEntry OBJECT-TYPE + SYNTAX RttMonStatsCollectEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects which accumulate the results of a + series of RTT operations over a 60 minute time period. + + This entry has the exact same behavior as the + rttMonStatsCaptureEntry, except it does not keep + statistical distribution information. + + For a complete entry description see + the rttMonStatsCaptureEntry object." + INDEX { rttMonCtrlAdminIndex, + rttMonStatsCaptureStartTimeIndex, + rttMonStatsCapturePathIndex, + rttMonStatsCaptureHopIndex + } + ::= { rttMonStatsCollectTable 1 } + + +RttMonStatsCollectEntry ::= SEQUENCE +{ + rttMonStatsCollectNumDisconnects Integer32, + rttMonStatsCollectTimeouts Integer32, + rttMonStatsCollectBusies Integer32, + rttMonStatsCollectNoConnections Integer32, + rttMonStatsCollectDrops Integer32, + rttMonStatsCollectSequenceErrors Integer32, + rttMonStatsCollectVerifyErrors Integer32, + rttMonStatsCollectAddress RttMonTargetAddress +} + + +rttMonStatsCollectNumDisconnects OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the RttMonRttType is 'echo' or pathEcho', this + object represents the number of times that the target or + hop along the path to a target became disconnected. For + all other values of RttMonRttType, this object will + remain zero. + + For connectionless protocols this has no meaning, + and will consequently remain 0. When + rttMonEchoAdminProtocol is one of snaRUEcho, this is + the number of times that an LU-SSCP session was lost, + for snaLU0EchoAppl, snaLU2EchoAppl, snaLu62Echo, and for + snaLU62EchoAppl, this is the number of times that LU-LU + session was lost. + + Since this error does not indicate any information about + the failure of an RTT operation, no response time + information for this instance will be recorded in the + appropriate objects. + + If this error occurs and the rttMonStatsCapturePathIndex + cannot be determined, this error will be accumulated in + the source to target path, that will always exist. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 1 } + + +rttMonStatsCollectTimeouts OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when a RTT operation was not + completed before a timeout occurred, i.e. + rttMonCtrlAdminTimeout was exceeded. + + Since the RTT operation was never completed, the + completion time of these operations are not accumulated, + nor do they increment rttMonStatsCaptureCompletions (in + any of the statistics distribution buckets). + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 2 } + + +rttMonStatsCollectBusies OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when a RTT operation could not + be initiated because a previous RTT operation has not + been completed. + + When the RttMonRttType is 'pathEcho' this can occur for + both connection oriented protocols and connectionless + protocols. + + When the RttMonRttType is 'echo' this can only occur for + connection oriented protocols such as SNA. + + When the initiation of a new operation cannot be started, + this object will be incremented and the operation will be + omitted. (The next operation will start at the next + Frequency). Since, a RTT operation was never initiated, + the completion time of these operations is not + accumulated, nor do they increment + rttMonStatsCaptureCompletions. + + When the RttMonRttType is 'pathEcho', and this error + occurs and the rttMonStatsCapturePathIndex cannot be + determined, this error will be accumulated in the source + to target path, that will always exist. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 3 } + + +rttMonStatsCollectNoConnections OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the RttMonRttType is 'echo' or 'pathEcho' this is + the number of occasions when a RTT operation could not be + initiated because the connection to the target has not + been established. For all other RttMonRttTypes this + object will remain zero. + + This cannot occur for connectionless protocols, but may + occur for connection oriented protocols, such as SNA. + + Since a RTT operation was never initiated, the completion + time of these operations are not accumulated, nor do they + increment rttMonStatsCaptureCompletions. + + If this error occurs and the rttMonStatsCapturePathIndex + cannot be determined, this error will be accumulated + in the source to target path, that will always exist. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 4 } + + +rttMonStatsCollectDrops OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when a RTT operation could not + be initiated because some necessary internal resource + (for example memory, or SNA subsystem) was not available, + or the operation completion could not be recognized. + + Since a RTT operation was never initiated or was not + recognized, the completion time of these operations + are not accumulated, nor do they increment + rttMonStatsCaptureCompletions (in the expected + Distribution Bucket). + + When the RttMonRttType is 'pathEcho', and this error + occurs and the rttMonStatsCapturePathIndex cannot be + determined, this error will be accumulated in the + source to target path, that will always exist. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 5 } + + +rttMonStatsCollectSequenceErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the RttMonRttType is 'echo' of 'pathEcho' this is + the number of RTT operation completions received with + an unexpected sequence identifier. For all other values + of RttMonRttType this object will remain zero. + + When this has occurred some of the possible reasons may + be: + - a duplicate packet was received + - a response was received after it had timed-out + - a corrupted packet was received and was not detected + + The completion time of these operations are not + accumulated, nor do they increment + rttMonStatsCaptureCompletions (in the expected + Distribution Bucket). + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 6 } + + +rttMonStatsCollectVerifyErrors OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT operation completions received with + data that does not compare with the expected data. The + completion time of these operations are not accumulated, + nor do they increment rttMonStatsCaptureCompletions (in + the expected Distribution Bucket). + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsCollectEntry 7 } + + +rttMonStatsCollectAddress OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object only applies when the RttMonRttType is + 'echo', 'pathEcho', 'dlsw', 'udpEcho', 'tcpConnect'. + For all other values of the RttMonRttType, this will be + null. + + The object is a string which specifies the address of + the target for the this RTT operation. + + This address will be the address of the hop along the + path to the rttMonEchoAdminTargetAddress address, + including rttMonEchoAdminTargetAddress address, or just + the rttMonEchoAdminTargetAddress address, when the + path information is not collected. This behavior is + defined by the rttMonCtrlAdminRttType object. + + The interpretation of this string depends on the type + of RTT operation selected, as specified by the + rttMonEchoAdminProtocol object." + ::= { rttMonStatsCollectEntry 8 } + + +-- +-- Statistics Totals Table +-- + +rttMonStatsTotalsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonStatsTotalsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The statistics totals database. + + This table has the exact same behavior as the + rttMonStatsCaptureTable, except it only keeps + 60 minute group values. + + For a complete table description see + the rttMonStatsCaptureTable object." + ::= { rttMonStats 3 } + + +rttMonStatsTotalsEntry OBJECT-TYPE + SYNTAX RttMonStatsTotalsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects which accumulate the results of a + series of RTT operations over a 60 minute time period. + + This entry has the exact same behavior as the + rttMonStatsCaptureEntry, except it only keeps + 60 minute group values. + + For a complete entry description see + the rttMonStatsCaptureEntry object." + INDEX { rttMonCtrlAdminIndex, + rttMonStatsCaptureStartTimeIndex + } + ::= { rttMonStatsTotalsTable 1 } + + +RttMonStatsTotalsEntry ::= SEQUENCE +{ + rttMonStatsTotalsElapsedTime TimeInterval, + rttMonStatsTotalsInitiations Integer32 +} + +rttMonStatsTotalsElapsedTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The length of time since this conceptual statistics row + was created." + ::= { rttMonStatsTotalsEntry 1 } + + +rttMonStatsTotalsInitiations OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT operations that have been initiated. + + This number includes all RTT operations which succeed + or fail for whatever reason. + + This object has the special behavior as defined by the + ROLLOVER NOTE in the DESCRIPTION of the ciscoRttMonMIB + object." + ::= { rttMonStatsTotalsEntry 2 } + + +-- +-- HTTP Statistics Table +-- + +rttMonHTTPStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonHTTPStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The HTTP statistics collection database. + + The HTTP statistics table contains summarized information of + the results for a conceptual RTT control row. A rolling + accumulated history of this information is maintained in a + series of hourly 'group(s)'. + + The operation of this table is same as that of + rttMonStatsCaptureTable, except that this table can only + store a maximum of 2 hours of data." + ::= { rttMonStats 4 } + +rttMonHTTPStatsEntry OBJECT-TYPE + SYNTAX RttMonHTTPStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects which accumulate the results of a + series of RTT operations over a 60 minute time period. + + This entry is created only if the rttMonCtrlAdminRttType + is http. The operation of this table is same as that of + rttMonStatsCaptureTable." + INDEX { rttMonCtrlAdminIndex, + rttMonHTTPStatsStartTimeIndex + } + ::= { rttMonHTTPStatsTable 1 } + +RttMonHTTPStatsEntry ::= SEQUENCE +{ + rttMonHTTPStatsStartTimeIndex TimeStamp, + rttMonHTTPStatsCompletions Counter32, + rttMonHTTPStatsOverThresholds Counter32, + rttMonHTTPStatsRTTSum Counter32, + rttMonHTTPStatsRTTSum2Low Counter32, + rttMonHTTPStatsRTTSum2High Counter32, + rttMonHTTPStatsRTTMin Gauge32, + rttMonHTTPStatsRTTMax Gauge32, + rttMonHTTPStatsDNSRTTSum Counter32, + rttMonHTTPStatsTCPConnectRTTSum Counter32, + rttMonHTTPStatsTransactionRTTSum Counter32, + rttMonHTTPStatsMessageBodyOctetsSum Counter32, + rttMonHTTPStatsDNSServerTimeout Counter32, + rttMonHTTPStatsTCPConnectTimeout Counter32, + rttMonHTTPStatsTransactionTimeout Counter32, + rttMonHTTPStatsDNSQueryError Counter32, + rttMonHTTPStatsHTTPError Counter32, + rttMonHTTPStatsError Counter32, + rttMonHTTPStatsBusies Counter32 +} + +rttMonHTTPStatsStartTimeIndex OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is the time when this row was created. This index + uniquely identifies a HTTP Stats row in the + rttMonHTTPStatsTable." + ::= { rttMonHTTPStatsEntry 1 } + +rttMonHTTPStatsCompletions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of HTTP operations that have completed + successfully." + ::= { rttMonHTTPStatsEntry 2 } + +rttMonHTTPStatsOverThresholds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of HTTP operations that violate threshold." + ::= { rttMonHTTPStatsEntry 3 } + +rttMonHTTPStatsRTTSum OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of HTTP operations that are successfully measured." + ::= { rttMonHTTPStatsEntry 4 } + +rttMonHTTPStatsRTTSum2Low OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of the RTT's that are successfully + measured (low order 32 bits)." + ::= { rttMonHTTPStatsEntry 5 } + +rttMonHTTPStatsRTTSum2High OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of the RTT's that are successfully + measured (high order 32 bits)." + ::= { rttMonHTTPStatsEntry 6 } + +rttMonHTTPStatsRTTMin OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum RTT taken to perform HTTP operation." + ::= { rttMonHTTPStatsEntry 7 } + +rttMonHTTPStatsRTTMax OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum RTT taken to perform HTTP operation." + ::= { rttMonHTTPStatsEntry 8 } + +rttMonHTTPStatsDNSRTTSum OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT taken to perform DNS query within the + HTTP operation." + ::= { rttMonHTTPStatsEntry 9 } + +rttMonHTTPStatsTCPConnectRTTSum OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT taken to connect to the HTTP server." + ::= { rttMonHTTPStatsEntry 10 } + +rttMonHTTPStatsTransactionRTTSum OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT taken to download the object specified by URL." + ::= { rttMonHTTPStatsEntry 11 } + +rttMonHTTPStatsMessageBodyOctetsSum OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of the size of the message body received as a + response to the HTTP request." + ::= { rttMonHTTPStatsEntry 12 } + +rttMonHTTPStatsDNSServerTimeout OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of requests that could not connect to the + DNS Server." + ::= { rttMonHTTPStatsEntry 13 } + +rttMonHTTPStatsTCPConnectTimeout OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of requests that could not connect to the + the HTTP Server." + ::= { rttMonHTTPStatsEntry 14 } + +rttMonHTTPStatsTransactionTimeout OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of requests that timed out during HTTP + transaction." + ::= { rttMonHTTPStatsEntry 15 } + +rttMonHTTPStatsDNSQueryError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of requests that had DNS Query errors." + ::= { rttMonHTTPStatsEntry 16 } + +rttMonHTTPStatsHTTPError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of requests that had HTTP errors while + downloading the base page." + ::= { rttMonHTTPStatsEntry 17 } + +rttMonHTTPStatsError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when a HTTP operation could not + be initiated because an internal error" + ::= { rttMonHTTPStatsEntry 18 } + +rttMonHTTPStatsBusies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when an HTTP operation could not + be initiated because a previous HTTP operation has not + been completed." + ::= { rttMonHTTPStatsEntry 19 } + +-- +-- Jitter Statistics Table +-- + +rttMonJitterStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonJitterStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Jitter statistics collection database. + + The Jitter statistics table contains summarized information of + the results for a conceptual RTT control row. A rolling + accumulated history of this information is maintained in a + series of hourly 'group(s)'. + + The operation of this table is same as that of + rttMonStatsCaptureTable, except that this table will store + 2 hours of data." + ::= { rttMonStats 5 } + +rttMonJitterStatsEntry OBJECT-TYPE + SYNTAX RttMonJitterStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects which accumulate the results of a + series of RTT operations over a 60 minute time period. + + This entry is created only if the rttMonCtrlAdminRttType + is jitter. The operation of this table is same as that of + rttMonStatsCaptureTable." + INDEX { rttMonCtrlAdminIndex, + rttMonJitterStatsStartTimeIndex + } + ::= { rttMonJitterStatsTable 1 } + +RttMonJitterStatsEntry ::= SEQUENCE +{ + rttMonJitterStatsStartTimeIndex TimeStamp, + rttMonJitterStatsCompletions Counter32, + rttMonJitterStatsOverThresholds Counter32, + rttMonJitterStatsNumOfRTT Counter32, + rttMonJitterStatsRTTSum Counter32, + rttMonJitterStatsRTTSum2Low Counter32, + rttMonJitterStatsRTTSum2High Counter32, + rttMonJitterStatsRTTMin Gauge32, + rttMonJitterStatsRTTMax Gauge32, + rttMonJitterStatsMinOfPositivesSD Gauge32, + rttMonJitterStatsMaxOfPositivesSD Gauge32, + rttMonJitterStatsNumOfPositivesSD Counter32, + rttMonJitterStatsSumOfPositivesSD Counter32, + rttMonJitterStatsSum2PositivesSDLow Counter32, + rttMonJitterStatsSum2PositivesSDHigh Counter32, + rttMonJitterStatsMinOfNegativesSD Gauge32, + rttMonJitterStatsMaxOfNegativesSD Gauge32, + rttMonJitterStatsNumOfNegativesSD Counter32, + rttMonJitterStatsSumOfNegativesSD Counter32, + rttMonJitterStatsSum2NegativesSDLow Counter32, + rttMonJitterStatsSum2NegativesSDHigh Counter32, + rttMonJitterStatsMinOfPositivesDS Gauge32, + rttMonJitterStatsMaxOfPositivesDS Gauge32, + rttMonJitterStatsNumOfPositivesDS Counter32, + rttMonJitterStatsSumOfPositivesDS Counter32, + rttMonJitterStatsSum2PositivesDSLow Counter32, + rttMonJitterStatsSum2PositivesDSHigh Counter32, + rttMonJitterStatsMinOfNegativesDS Gauge32, + rttMonJitterStatsMaxOfNegativesDS Gauge32, + rttMonJitterStatsNumOfNegativesDS Counter32, + rttMonJitterStatsSumOfNegativesDS Counter32, + rttMonJitterStatsSum2NegativesDSLow Counter32, + rttMonJitterStatsSum2NegativesDSHigh Counter32, + rttMonJitterStatsPacketLossSD Counter32, + rttMonJitterStatsPacketLossDS Counter32, + rttMonJitterStatsPacketOutOfSequence Counter32, + rttMonJitterStatsPacketMIA Counter32, + rttMonJitterStatsPacketLateArrival Counter32, + rttMonJitterStatsError Counter32, + rttMonJitterStatsBusies Counter32, + rttMonJitterStatsOWSumSD Counter32, + rttMonJitterStatsOWSum2SDLow Counter32, + rttMonJitterStatsOWSum2SDHigh Counter32, + rttMonJitterStatsOWMinSD Counter32, + rttMonJitterStatsOWMaxSD Counter32, + rttMonJitterStatsOWSumDS Counter32, + rttMonJitterStatsOWSum2DSLow Counter32, + rttMonJitterStatsOWSum2DSHigh Counter32, + rttMonJitterStatsOWMinDS Counter32, + rttMonJitterStatsOWMaxDS Counter32, + rttMonJitterStatsNumOfOW Counter32, + rttMonJitterStatsOWMinSDNew Gauge32, + rttMonJitterStatsOWMaxSDNew Gauge32, + rttMonJitterStatsOWMinDSNew Gauge32, + rttMonJitterStatsOWMaxDSNew Gauge32, + rttMonJitterStatsMinOfMOS Gauge32, + rttMonJitterStatsMaxOfMOS Gauge32, + rttMonJitterStatsMinOfICPIF Gauge32, + rttMonJitterStatsMaxOfICPIF Gauge32, + rttMonJitterStatsIAJOut Gauge32, + rttMonJitterStatsIAJIn Gauge32, + rttMonJitterStatsAvgJitter Gauge32, + rttMonJitterStatsAvgJitterSD Gauge32, + rttMonJitterStatsAvgJitterDS Gauge32, + rttMonJitterStatsUnSyncRTs Counter32 +} + +rttMonJitterStatsStartTimeIndex OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The time when this row was created." + ::= { rttMonJitterStatsEntry 1 } + +rttMonJitterStatsCompletions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of jitter operation that have completed + successfully." + ::= { rttMonJitterStatsEntry 2 } + +rttMonJitterStatsOverThresholds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of jitter operations that violate threshold." + ::= { rttMonJitterStatsEntry 3 } + +rttMonJitterStatsNumOfRTT OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT's that are successfully measured." + ::= { rttMonJitterStatsEntry 4 } + +rttMonJitterStatsRTTSum OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's that are successfully measured." + ::= { rttMonJitterStatsEntry 5 } + +rttMonJitterStatsRTTSum2Low OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's that are successfully measured + (low order 32 bits)." + ::= { rttMonJitterStatsEntry 6 } + +rttMonJitterStatsRTTSum2High OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's that are successfully measured + (high order 32 bits)." + ::= { rttMonJitterStatsEntry 7 } + +rttMonJitterStatsRTTMin OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of RTT's that were successfully measured" + ::= { rttMonJitterStatsEntry 8 } + +rttMonJitterStatsRTTMax OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of RTT's that were successfully measured" + ::= { rttMonJitterStatsEntry 9 } + +rttMonJitterStatsMinOfPositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of absolute values of all positive jitter values + from packets sent from source to destination." + ::= { rttMonJitterStatsEntry 10 } + +rttMonJitterStatsMaxOfPositivesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of absolute values of all positive jitter values + from packets sent from source to destination." + ::= { rttMonJitterStatsEntry 11 } + +rttMonJitterStatsNumOfPositivesSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all positive jitter values from packets + sent from source to destination." + ::= { rttMonJitterStatsEntry 12 } + +rttMonJitterStatsSumOfPositivesSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of all positive jitter values from packets + sent from source to destination." + ::= { rttMonJitterStatsEntry 13 } + +rttMonJitterStatsSum2PositivesSDLow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of square of RTT's of all positive jitter values from + packets sent from source to destination (low order 32 bits)." + ::= { rttMonJitterStatsEntry 14 } + +rttMonJitterStatsSum2PositivesSDHigh OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of square of RTT's of all positive jitter values from + packets sent from source to destination (high order 32 bits)." + ::= { rttMonJitterStatsEntry 15 } + +rttMonJitterStatsMinOfNegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all negative jitter values from packets sent + from source to destination." + ::= { rttMonJitterStatsEntry 16 } + +rttMonJitterStatsMaxOfNegativesSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all negative jitter values from packets sent + from source to destination." + ::= { rttMonJitterStatsEntry 17 } + +rttMonJitterStatsNumOfNegativesSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all negative jitter values from packets + sent from source to destination." + ::= { rttMonJitterStatsEntry 18 } + +rttMonJitterStatsSumOfNegativesSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's of all negative jitter values from packets + sent from source to destination." + ::= { rttMonJitterStatsEntry 19 } + +rttMonJitterStatsSum2NegativesSDLow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of square of RTT's of all negative jitter values from + packets sent from source to destination (low order 32 bits)." + ::= { rttMonJitterStatsEntry 20 } + +rttMonJitterStatsSum2NegativesSDHigh OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of square of RTT's of all negative jitter values from + packets sent from source to destination (high order 32 bits)." + ::= { rttMonJitterStatsEntry 21 } + +rttMonJitterStatsMinOfPositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all positive jitter values from packets sent + from destination to source." + ::= { rttMonJitterStatsEntry 22 } + +rttMonJitterStatsMaxOfPositivesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all positive jitter values from packets sent + from destination to source." + ::= { rttMonJitterStatsEntry 23 } + +rttMonJitterStatsNumOfPositivesDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all positive jitter values from packets + sent from destination to source." + ::= { rttMonJitterStatsEntry 24 } + +rttMonJitterStatsSumOfPositivesDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's of all positive jitter values from packets + sent from destination to source." + ::= { rttMonJitterStatsEntry 25 } + +rttMonJitterStatsSum2PositivesDSLow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's of all positive jitter values from + packets sent from destination to source (low order 32 bits)." + ::= { rttMonJitterStatsEntry 26 } + +rttMonJitterStatsSum2PositivesDSHigh OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's of all positive jitter values from + packets sent from destination to source (high order 32 bits)." + ::= { rttMonJitterStatsEntry 27 } + +rttMonJitterStatsMinOfNegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all negative jitter values from packets sent + from destination to source." + ::= { rttMonJitterStatsEntry 28 } + +rttMonJitterStatsMaxOfNegativesDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all negative jitter values from packets sent + from destination to source." + ::= { rttMonJitterStatsEntry 29 } + +rttMonJitterStatsNumOfNegativesDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of number of all negative jitter values from packets + sent from destination to source." + ::= { rttMonJitterStatsEntry 30 } + +rttMonJitterStatsSumOfNegativesDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of RTT's of all negative jitter values from packets + sent from destination to source." + ::= { rttMonJitterStatsEntry 31 } + +rttMonJitterStatsSum2NegativesDSLow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's of all negative jitter values from + packets sent from destination to source (low order 32 bits)." + ::= { rttMonJitterStatsEntry 32 } + +rttMonJitterStatsSum2NegativesDSHigh OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of RTT's of all negative jitter values from + packets sent from destination to source (high order 32 bits)." + ::= { rttMonJitterStatsEntry 33 } + +rttMonJitterStatsPacketLossSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets lost when sent from source to destination." + ::= { rttMonJitterStatsEntry 34 } + +rttMonJitterStatsPacketLossDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets lost when sent from destination to source." + ::= { rttMonJitterStatsEntry 35 } + +rttMonJitterStatsPacketOutOfSequence OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets arrived out of sequence." + ::= { rttMonJitterStatsEntry 36 } + +rttMonJitterStatsPacketMIA OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets that are lost for which we cannot determine + the direction." + ::= { rttMonJitterStatsEntry 37 } + +rttMonJitterStatsPacketLateArrival OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets that arrived after the timeout." + ::= { rttMonJitterStatsEntry 38 } + +rttMonJitterStatsError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when a jitter operation could not + be initiated because an internal error" + ::= { rttMonJitterStatsEntry 39 } + +rttMonJitterStatsBusies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occasions when a jitter operation could not + be initiated because a previous jitter operation has not + been completed." + ::= { rttMonJitterStatsEntry 40 } + +rttMonJitterStatsOWSumSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of one way times from source to destination." + ::= { rttMonJitterStatsEntry 41 } + +rttMonJitterStatsOWSum2SDLow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of one way times from source to destination + (low order 32 bits)." + ::= { rttMonJitterStatsEntry 42 } + +rttMonJitterStatsOWSum2SDHigh OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of one way times from source to destination + (high order 32 bits)." + ::= { rttMonJitterStatsEntry 43 } + +rttMonJitterStatsOWMinSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The minimum of all one way times from source to destination." + ::= { rttMonJitterStatsEntry 44 } + +rttMonJitterStatsOWMaxSD OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum of all one way times from source to destination." + ::= { rttMonJitterStatsEntry 45 } + +rttMonJitterStatsOWSumDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of one way times from destination to source." + ::= { rttMonJitterStatsEntry 46 } + +rttMonJitterStatsOWSum2DSLow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of one way times from destination to source + (low order 32 bits)." + ::= { rttMonJitterStatsEntry 47 } + +rttMonJitterStatsOWSum2DSHigh OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sum of squares of one way times from destination to source + (high order 32 bits)." + ::= { rttMonJitterStatsEntry 48 } + +rttMonJitterStatsOWMinDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The minimum of all one way times from destination to source." + ::= { rttMonJitterStatsEntry 49 } + +rttMonJitterStatsOWMaxDS OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum of all one way times from destination to source." + ::= { rttMonJitterStatsEntry 50 } + +rttMonJitterStatsNumOfOW OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of one way times that are successfully measured." + ::= { rttMonJitterStatsEntry 51 } + +rttMonJitterStatsOWMinSDNew OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all one way times from source to destination. + Replaces deprecated rttMonJitterStatsOWMinSD." + ::= { rttMonJitterStatsEntry 52 } + +rttMonJitterStatsOWMaxSDNew OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all one way times from source to destination. + Replaces deprecated rttMonJitterStatsOWMaxSD." + ::= { rttMonJitterStatsEntry 53 } + +rttMonJitterStatsOWMinDSNew OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all one way times from destination to source. + Replaces deprecated rttMonJitterStatsOWMinDS." + ::= { rttMonJitterStatsEntry 54 } + +rttMonJitterStatsOWMaxDSNew OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all one way times from destination to source. + Replaces deprecated rttMonJitterStatsOWMaxDS" + ::= { rttMonJitterStatsEntry 55 } + +rttMonJitterStatsMinOfMOS OBJECT-TYPE + SYNTAX Gauge32 ( 100..500 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all MOS values for the jitter operations + in hundreds. " + ::= { rttMonJitterStatsEntry 56 } + +rttMonJitterStatsMaxOfMOS OBJECT-TYPE + SYNTAX Gauge32 ( 100..500 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all MOS values for the jitter operations + in hunderds. " + ::= { rttMonJitterStatsEntry 57 } + +rttMonJitterStatsMinOfICPIF OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of all ICPIF values for the jitter operations" + ::= { rttMonJitterStatsEntry 58 } + +rttMonJitterStatsMaxOfICPIF OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of all ICPIF values for the jitter operations" + ::= { rttMonJitterStatsEntry 59 } + +rttMonJitterStatsIAJOut OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interarrival Jitter (RFC 1889) at responder" + REFERENCE + "Refer to the following documents for the definition: RFC 1889" + ::= { rttMonJitterStatsEntry 60 } + +rttMonJitterStatsIAJIn OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interarrival Jitter (RFC 1889) at sender" + REFERENCE + "Refer to the following documents for the definition: RFC 1889" + ::= { rttMonJitterStatsEntry 61 } + +rttMonJitterStatsAvgJitter OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average of positive and negative jitter + values for SD and DS direction." + ::= { rttMonJitterStatsEntry 62 } + +rttMonJitterStatsAvgJitterSD OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average of positive and negative jitter + values in SD direction." + ::= { rttMonJitterStatsEntry 63 } + +rttMonJitterStatsAvgJitterDS OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average of positive and negative jitter + values in DS direction." + ::= { rttMonJitterStatsEntry 64 } + +rttMonJitterStatsUnSyncRTs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RTT operations that have completed with + sender and responder out of sync with NTP. The NTP sync means + the total of NTP offset on sender and responder is within + configured tolerance level." + ::= { rttMonJitterStatsEntry 65 } + +-- +-- Auto SAA L3 MPLS VPN LPD Group Stats Collection Table +-- + +rttMonLpdGrpStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonLpdGrpStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The Auto SAA L3 MPLS VPN LPD Group Database. + + The LPD Group statistics table contains summarized performance + statistics for the LPD group. + + LPD Group - The set of 'single probes' which are subset of the + 'lspGroup' probe traversing set of paths between two PE end + points are grouped together and called as the LPD group. The + LPD group will be uniquely referenced by the LPD Group ID. + + A rolling accumulated history of this information is maintained + in a series of hourly 'group(s)'. + + Each conceptual statistics row has a current hourly group, into + which RTT results are accumulated. At the end of each hour a new + hourly group is created which then becomes current. The + counters and accumulators in the new group are initialized to + zero. The previous group(s) is kept in the table until the table + contains rttMplsVpnMonTypeLpdStatHours groups for the + conceptual statistics row; at this point, the oldest group is + discarded and is replaced by the newly created one. The hourly + group is uniquely identified by the + rttMonLpdGrpStatsStartTimeIndex object." + ::= { rttMonStats 7 } + +rttMonLpdGrpStatsEntry OBJECT-TYPE + SYNTAX RttMonLpdGrpStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects which accumulate the results of a set of RTT + operations over a 60 minute time period. + + The LPD group statistics table is a rollover table. When + rttMonLpdGrpStatsStartTimeIndex groups exceeds the + rttMplsVpnMonTypeLpdStatHours value, the oldest corresponding + hourly group will be deleted and will be replaced with the new + rttMonLpdGrpStatsStartTimeIndex hourly group. + + The LPD group statistics table has two indices. Each described + as follows: + + - The first index correlates its entries to a LPD group via the + rttMonLpdGrpStatsGroupIndex object. + - The second index is a rollover group and it uniquely identifies + a 60 minute group. (The rttMonLpdGrpStatsStartTimeIndex is + used to make this value unique.)" + INDEX { rttMonLpdGrpStatsGroupIndex, + rttMonLpdGrpStatsStartTimeIndex + } + ::= { rttMonLpdGrpStatsTable 1 } + +RttMonLpdGrpStatsEntry ::= SEQUENCE +{ + rttMonLpdGrpStatsGroupIndex Integer32, + rttMonLpdGrpStatsStartTimeIndex TimeStamp, + rttMonLpdGrpStatsTargetPE RttMonTargetAddress, + rttMonLpdGrpStatsNumOfPass Integer32, + rttMonLpdGrpStatsNumOfFail Integer32, + rttMonLpdGrpStatsNumOfTimeout Integer32, + rttMonLpdGrpStatsAvgRTT Integer32, + rttMonLpdGrpStatsMinRTT Integer32, + rttMonLpdGrpStatsMaxRTT Integer32, + rttMonLpdGrpStatsMinNumPaths Integer32, + rttMonLpdGrpStatsMaxNumPaths Integer32, + rttMonLpdGrpStatsLPDStartTime TimeStamp, + rttMonLpdGrpStatsLPDFailOccurred TruthValue, + rttMonLpdGrpStatsLPDFailCause RttMplsVpnMonLpdFailureSense, + rttMonLpdGrpStatsLPDCompTime Integer32, + rttMonLpdGrpStatsGroupStatus RttMplsVpnMonLpdGrpStatus, + rttMonLpdGrpStatsGroupProbeIndex Integer32, + rttMonLpdGrpStatsProbeStatus DisplayString, + rttMonLpdGrpStatsPathIds DisplayString, + rttMonLpdGrpStatsResetTime TimeStamp +} + +rttMonLpdGrpStatsGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Uniquely identifies a row in rttMonLpdGrpStatsTable. + + This is a pseudo-random number which identifies a particular + LPD group." + ::= { rttMonLpdGrpStatsEntry 1 } + +rttMonLpdGrpStatsStartTimeIndex OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The time when this row was created. + + This object is the second index of the rttMonLpdGrpStatsTable. + When the number of rttMonLpdGrpStatsStartTimeIndex groups + exceeds the rttMplsVpnMonTypeLpdStatHours value, the oldest + rttMonLpdGrpStatsStartTimeIndex group will be removed and + replaced with the new entry." + ::= { rttMonLpdGrpStatsEntry 2 } + +rttMonLpdGrpStatsTargetPE OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The object is a string that specifies the address of the + target PE for this LPD group." + ::= { rttMonLpdGrpStatsEntry 3 } + +rttMonLpdGrpStatsNumOfPass OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "passes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the number of successfull completions + of 'single probes' for all the set of paths in the LPD group. + + Whenever the rttMonLatestRttOperSense value is 'ok' for a + particular probe in the LPD Group this object will be + incremented. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 4 } + +rttMonLpdGrpStatsNumOfFail OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "failures" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the number of failed operations of + 'single probes' for all the set of paths in the LPD group. + + Whenever the rttMonLatestRttOperSense has a value other than + 'ok' or 'timeout' for a particular probe in the LPD Group this + object will be incremented. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 5 } + +rttMonLpdGrpStatsNumOfTimeout OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "timeouts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object represents the number of timed out operations of + 'single probes' for all the set of paths in the LPD group. + + Whenever the rttMonLatestRttOperSense has a value of 'timeout' + for a particular probe in the LPD Group this object will be + incremented. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 6 } + +rttMonLpdGrpStatsAvgRTT OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The average RTT across all set of probes in the LPD group. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 7 } + +rttMonLpdGrpStatsMinRTT OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum of RTT's for all set of probes in the LPD group + that were successfully measured. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 8 } + +rttMonLpdGrpStatsMaxRTT OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum of RTT's for all set of probes in the LPD group + that were successfully measured. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 9 } + +rttMonLpdGrpStatsMinNumPaths OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "paths" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum number of active paths discovered to the + rttMonLpdGrpStatsTargetPE target. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 10 } + +rttMonLpdGrpStatsMaxNumPaths OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + UNITS "paths" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of active paths discovered to the + rttMonLpdGrpStatsTargetPE target. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 11 } + +rttMonLpdGrpStatsLPDStartTime OBJECT-TYPE + SYNTAX TimeStamp + UNITS "tenths of milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time when the last LSP Path Discovery to the group was + attempted. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 12 } + +rttMonLpdGrpStatsLPDFailOccurred OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is set to true when the LSP Path Discovery + to the target PE i.e. rttMonLpdGrpStatsTargetPE fails, and + set to false when the LSP Path Discovery succeeds. + + When this value changes and rttMplsVpnMonReactLpdNotifyType is + set to 'lpdPathDiscovery' or 'lpdAll' a + rttMonLpdDiscoveryNotification will be generated. + + This object will be set to 'FALSE' on reset." + ::= { rttMonLpdGrpStatsEntry 13 } + +rttMonLpdGrpStatsLPDFailCause OBJECT-TYPE + SYNTAX RttMplsVpnMonLpdFailureSense + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the cause of failure for the LSP Path + Discovery last attempted. It will be only valid if + rttMonLpdGrpStatsLPDFailOccurred is set to true. + + This object will be set to 'unknown' on reset." + ::= { rttMonLpdGrpStatsEntry 14 } + +rttMonLpdGrpStatsLPDCompTime OBJECT-TYPE + SYNTAX Integer32 (0..65535) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The completion time of the last successfull LSP Path Discovery + to the target PE. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 15 } + +rttMonLpdGrpStatsGroupStatus OBJECT-TYPE + SYNTAX RttMplsVpnMonLpdGrpStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the LPD Group status. + + When the LPD Group status changes and + rttMplsVpnMonReactLpdNotifyType is set to 'lpdGroupStatus' or + 'lpdAll' a rttMonLpdGrpStatusNotification will be generated. + + When the LPD Group status value is 'unknown' or changes to + 'unknown' this notification will not be generated. + + When LSP Path Discovery is enabled for a particular row in + rttMplsVpnMonCtrlTable, 'single probes' in the 'lspGroup' probe + cannot generate notifications independently but will be + generating depending on the state of the group. Notifications + are only generated if the failure/restoration of an individual + probe causes the state of the LPD Group to change. + + This object will be set to 'unknown' on reset." + ::= { rttMonLpdGrpStatsEntry 16 } + +rttMonLpdGrpStatsGroupProbeIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + UNITS "identifier" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies 'lspGroup' probe uniquely created for + this particular LPD Group." + ::= { rttMonLpdGrpStatsEntry 17 } + +rttMonLpdGrpStatsPathIds OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string which holds the list of information to uniquely + identify the paths to the target PE. This information is used + by the 'single probes' when testing the paths. + + Following three parameters are needed to uniquely identify a path + - lsp-selector (127.x.x.x) + - outgoing-interface (i/f) + - label-stack (s), if mutiple labels they will be colon (:) + separated. + + These parameters will be hyphen (-) separated for a particular + path. This set of information will be comma (,) separated for + all the paths discovered as part of this LPD Group. + + For example: If there are 5 paths in the LPD group then this + object will return all the identifier's to uniquely identify + the path. + + The output will look like '127.0.0.1-Se3/0.1-20:18, + 127.0.0.2-Se3/0.1-20,127.0.0.3-Se3/0.1-20,127.0.0.4-Se3/0.1-20, + 127.0.0.5-Se3/0.1-20'. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 18 } + +rttMonLpdGrpStatsProbeStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string which holds the latest operation return code for + all the set of 'single probes' which are part of the LPD group. + The return codes will be comma separated and will follow the + same sequence of probes as followed in + 'rttMonLpdGrpStatsPathIds'. The latest operation return code + will be mapped to 'up','down' or 'unkwown'. + + 'up' - Probe state is up when the rttMonLatestRttOperSense + value is 'ok'. + 'down' - Probe state is down when the rttMonLatestRttOperSense + has value other then 'ok' and 'other'. + 'unknown' - Probe state is unkown when the + rttMonLatestRttOperSense value is 'other'. + + For example: If there are 5 paths in the LPD group then this + object output will look like 'ok,ok,ok,down,down'. + + This object will be set to '0' on reset." + ::= { rttMonLpdGrpStatsEntry 19 } + +rttMonLpdGrpStatsResetTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object specifies the time when this statistics row was + last reset using the rttMonApplLpdGrpStatsReset object." + ::= { rttMonLpdGrpStatsEntry 20 } + +-- +-- History Collection Table +-- + +rttMonHistoryCollectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF RttMonHistoryCollectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The history collection database. + + The history table contains a point by point rolling + history of the most recent RTT operations for each + conceptual RTT control row. The rolling history of this + information is maintained in a series of 'live(s)', each + containing a series of 'bucket(s)', each 'bucket' + contains a series of 'sample(s)'. + + Each conceptual history row can have lives. A life is + defined by the rttMonCtrlOperRttLife object. A new life + will be created when rttMonCtrlOperState transitions + 'active'. When the number of lives become greater + than rttMonHistoryAdminNumLives the oldest life will be + discarded and a new life will be created by incrementing + the index. + + The path exploration RTT operation will be kept as an + entry in this table." + ::= { rttMonHistory 1 } + + +rttMonHistoryCollectionEntry OBJECT-TYPE + SYNTAX RttMonHistoryCollectionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of history objects that are recorded for each + RTT operation. + + The history collection table has four indices. Each + described as follows: + - The first index correlates its entries to a + conceptual RTT control row via the + rttMonCtrlAdminIndex object. + - The second index uniquely identifies the results + of each 'life' as defined by the + rttMonCtrlOperRttLife object. + - The third index uniquely identifies the number of + buckets in a life. A bucket will contain one + sample per bucket if the rttMonCtrlAdminRttType + object is set to any value + other than 'pathEcho'. If the + rttMonCtrlAdminRttType object is set to + 'pathEcho', a bucket will contain one sample per + hop along a path to the target (including the + target). + - The fourth index uniquely identifies the number of + samples in a bucket. Again, if the + rttMonCtrlAdminRttType object is set to + 'pathEcho', this value is associated with each + hop in an ascending order, thus for the + first hop on a path, this index will be 1, the + second will be 2 and so on. For all other values + of rttMonCtrlAdminRttType this will be 1." + INDEX { rttMonCtrlAdminIndex, + rttMonHistoryCollectionLifeIndex, + rttMonHistoryCollectionBucketIndex, + rttMonHistoryCollectionSampleIndex + } + ::= { rttMonHistoryCollectionTable 1 } + + +RttMonHistoryCollectionEntry ::= SEQUENCE +{ + rttMonHistoryCollectionLifeIndex Integer32, + rttMonHistoryCollectionBucketIndex Integer32, + rttMonHistoryCollectionSampleIndex Integer32, + rttMonHistoryCollectionSampleTime TimeStamp, + rttMonHistoryCollectionAddress RttMonTargetAddress, + rttMonHistoryCollectionCompletionTime Gauge32, + rttMonHistoryCollectionSense RttResponseSense, + rttMonHistoryCollectionApplSpecificSense Integer32, + rttMonHistoryCollectionSenseDescription DisplayString +} + + +rttMonHistoryCollectionLifeIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This uniquely defines a life for a conceptual history + row. + + For a particular value of rttMonHistoryCollectionLifeIndex, + the agent assigns the first value of 1, the second value + of 2, and so on. The sequence keeps incrementing, + despite older (lower) values being removed from the + table." + ::= { rttMonHistoryCollectionEntry 1 } + + +rttMonHistoryCollectionBucketIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "When the RttMonRttType is 'pathEcho', this uniquely + defines a bucket for a given value of + rttMonHistoryCollectionLifeIndex. For all other + RttMonRttType this value will be the number of + operations per a lifetime. Thus, this object + increments on each operation attempt. + + For a particular value of + rttMonHistoryCollectionLifeIndex, the agent assigns + the first value of 1, the second value of 2, and so + on. The sequence keeps incrementing until the number + of buckets equals rttMonHistoryAdminNumBuckets, after + which the most recent rttMonHistoryAdminNumBuckets + buckets are retained (the index is incremented though)." + ::= { rttMonHistoryCollectionEntry 2 } + + +rttMonHistoryCollectionSampleIndex OBJECT-TYPE + SYNTAX Integer32 (1..512) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This uniquely defines a row for a given value of + rttMonHistoryCollectionBucketIndex. This object + represents a hop along a path to the Target. + + For a particular value of + rttMonHistoryCollectionBucketIndex, the agent assigns + the first value of 1, the second value of 2, and so on. + The sequence keeps incrementing until the number of + samples equals rttMonHistoryAdminNumSamples, then no + new samples are created for the current + rttMonHistoryCollectionBucketIndex. + + When the RttMonRttType is 'pathEcho', this value + directly represents the number of hops along a + path to a target, thus we can only support 512 hops. + For all other values of RttMonRttType this object + will be one." + ::= { rttMonHistoryCollectionEntry 3 } + + +rttMonHistoryCollectionSampleTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time that the RTT operation was initiated." + ::= { rttMonHistoryCollectionEntry 4 } + + +rttMonHistoryCollectionAddress OBJECT-TYPE + SYNTAX RttMonTargetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the RttMonRttType is 'echo' or 'pathEcho' this + is a string which specifies the address of the target for + the this RTT operation. For all other values of + RttMonRttType this string will be null. + + This address will be the address of the hop along the + path to the rttMonEchoAdminTargetAddress address, + including rttMonEchoAdminTargetAddress address, or just + the rttMonEchoAdminTargetAddress address, when the + path information is not collected. This behavior is + defined by the rttMonCtrlAdminRttType object. + + The interpretation of this string depends on the type + of RTT operation selected, as specified by the + rttMonEchoAdminProtocol object. + + See rttMonEchoAdminTargetAddress for a complete + description." + ::= { rttMonHistoryCollectionEntry 5 } + + +rttMonHistoryCollectionCompletionTime OBJECT-TYPE + SYNTAX Gauge32 + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the operation completion time of the RTT + operation. If the RTT operation fails + (rttMonHistoryCollectionSense is any + value other than ok), this has a value of 0." + ::= { rttMonHistoryCollectionEntry 6 } + + +rttMonHistoryCollectionSense OBJECT-TYPE + SYNTAX RttResponseSense + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A sense code for the completion status of the RTT + operation." + ::= { rttMonHistoryCollectionEntry 7 } + + +rttMonHistoryCollectionApplSpecificSense OBJECT-TYPE + SYNTAX Integer32 ( 0..2147483647 ) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An application specific sense code for the + completion status of the last RTT operation. This + object will only be valid when the + rttMonHistoryCollectionSense object is set to + 'applicationSpecific'. Otherwise, this object's + value is not valid." + ::= { rttMonHistoryCollectionEntry 8 } + + +rttMonHistoryCollectionSenseDescription OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A sense description for the completion status of + the last RTT operation when the + rttMonHistoryCollectionSense object is set to + 'applicationSpecific'." + ::= { rttMonHistoryCollectionEntry 9 } + +-- +-- NOTIFICATION DEFINITIONS +-- +-- This section defines the traps that +-- can be generated by the agent. +-- +-- + +rttMonNotificationsPrefix OBJECT IDENTIFIER + ::= { ciscoRttMonMIB 2 } +rttMonNotifications OBJECT IDENTIFIER + ::= { rttMonNotificationsPrefix 0 } + +rttMonConnectionChangeNotification NOTIFICATION-TYPE + OBJECTS { rttMonCtrlAdminTag, + rttMonHistoryCollectionAddress, + rttMonCtrlOperConnectionLostOccurred + } + STATUS deprecated + DESCRIPTION + "This notification is only valid when the RttMonRttType + is 'echo' or 'pathEcho'. + + A rttMonConnectionChangeNotification indicates that a + connection to a target (not to a hop along the path + to a target) has either failed on establishment or + been lost and when reestablished. Precisely, this + has resulted in rttMonCtrlOperConnectionLostOccurred + changing value. + + If History is not being collected, the instance values + for the rttMonHistoryCollectionAddress object will not + be valid. When RttMonRttType is not 'echo' or 'pathEcho' + the rttMonHistoryCollectionAddress object will be null." + ::= { rttMonNotifications 1 } + + +rttMonTimeoutNotification NOTIFICATION-TYPE + OBJECTS { rttMonCtrlAdminTag, + rttMonHistoryCollectionAddress, + rttMonCtrlOperTimeoutOccurred + } + STATUS deprecated + DESCRIPTION + "A rttMonTimeoutNotification indicates the occurrence of + a timeout for a RTT operation, and it indicates the + clearing of such a condition by a subsequent RTT + operation. Precisely, this has resulted in + rttMonCtrlOperTimeoutOccurred changing value. + + When the RttMonRttType is 'pathEcho', this + notification will only be sent when the timeout + occurs during an operation to the target and not to + a hop along the path to the target. This also + applies to the clearing of the timeout. + + If History is not being collected, the instance values + for the rttMonHistoryCollectionAddress object will not + be valid. When RttMonRttType is not 'echo' or 'pathEcho' + the rttMonHistoryCollectionAddress object will be null." + ::= { rttMonNotifications 2 } + + +rttMonThresholdNotification NOTIFICATION-TYPE + OBJECTS { rttMonCtrlAdminTag, + rttMonHistoryCollectionAddress, + rttMonCtrlOperOverThresholdOccurred + } + STATUS deprecated + DESCRIPTION + "A rttMonThresholdNotification indicates the + occurrence of a threshold violation for a RTT operation, + and it indicates the previous violation has subsided for + a subsequent RTT operation. Precisely, this has resulted + in rttMonCtrlOperOverThresholdOccurred changing value. + + When the RttMonRttType is 'pathEcho', this + notification will only be sent when the threshold + violation occurs during an operation to the target and + not to a hop along the path to the target. This also + applies to the subsiding of a threshold condition. + + If History is not being collected, the instance values + for the rttMonHistoryCollectionAddress object will not + be valid. When RttMonRttType is not 'echo' or 'pathEcho' + the rttMonHistoryCollectionAddress object will be null." + ::= { rttMonNotifications 3 } + + +rttMonVerifyErrorNotification NOTIFICATION-TYPE + OBJECTS { rttMonCtrlAdminTag, + rttMonHistoryCollectionAddress, + rttMonCtrlOperVerifyErrorOccurred + } + STATUS deprecated + DESCRIPTION + "A rttMonVerifyErrorNotification indicates the + occurrence of a data corruption in an RTT operation." + ::= { rttMonNotifications 4 } + + + +rttMonNotification NOTIFICATION-TYPE + OBJECTS { rttMonCtrlAdminTag, + rttMonHistoryCollectionAddress, + rttMonReactVar, + rttMonReactOccurred, + rttMonReactValue, + rttMonReactThresholdRising, + rttMonReactThresholdFalling, + rttMonEchoAdminLSPSelector + } + STATUS current + DESCRIPTION + "A rttMonNotification indicates the occurrence of a + threshold violation, and it indicates the previous + violation has subsided for a subsequent operation. + + When the RttMonRttType is 'pathEcho', this + notification will only be sent when the threshold + violation occurs during an operation to the target and + not to a hop along the path to the target. This also + applies to the subsiding of a threshold condition. + + If History is not being collected, the instance values + for the rttMonHistoryCollectionAddress object will not + be valid. When RttMonRttType is not 'echo' or 'pathEcho' + the rttMonHistoryCollectionAddress object will be null. + + rttMonReactVar defines the type of reaction that is + configured for the probe ( e.g jitterAvg, rtt etc ). + In the rttMonReactTable there are trap definitions + for the probes and each probe may have more than + one trap definitions for various types ( e.g rtt, + jitterAvg, packetLoossSD etc ). So the object rttMonReactVar + indicates the type ( e.g. rtt, packetLossSD, timeout etc ) + for which threshold violation traps has been generated. + + The object rttMonEchoAdminLSPSelector will be valid only + for the probes based on 'mplsLspPingAppl' RttMonProtocol. For + all other probes it will be null." + ::= { rttMonNotifications 5 } + +rttMonLpdDiscoveryNotification NOTIFICATION-TYPE + OBJECTS { rttMplsVpnMonCtrlTag, + rttMonLpdGrpStatsTargetPE, + rttMonLpdGrpStatsLPDFailCause, + rttMonLpdGrpStatsLPDFailOccurred + } + STATUS current + DESCRIPTION + "A rttMonLpdDiscoveryNotification indicates that the LSP Path + Discovery to the target PE has failed, and it also indicates + the clearing of such condition. Precisely this has resulted in + rttMonLpdGrpStatsLPDFailOccurred changing value. + + When the rttMonLpdGrpStatsLPDFailOccurred is 'false', the + instance value for rttMonLpdGrpStatsLPDFailCause is not valid." + ::= { rttMonNotifications 6 } + +rttMonLpdGrpStatusNotification NOTIFICATION-TYPE + OBJECTS { rttMplsVpnMonCtrlTag, + rttMonLpdGrpStatsTargetPE, + rttMonLpdGrpStatsGroupStatus + } + STATUS current + DESCRIPTION + "A rttMonLpdGrpStatusNotification indicates that the LPD + Group status rttMonLpdGrpStatsGroupStatus has changed indicating + some connectivity change to the target PE. + This has resulted in rttMonLpdGrpStatsGroupStatus changing + value." + ::= { rttMonNotifications 7 } + +-- +-- Conformance Information +-- + +ciscoRttMonMibConformance OBJECT IDENTIFIER + ::= { ciscoRttMonMIB 3 } +ciscoRttMonMibCompliances OBJECT IDENTIFIER + ::= { ciscoRttMonMibConformance 1 } +ciscoRttMonMibGroups OBJECT IDENTIFIER + ::= { ciscoRttMonMibConformance 2 } + +-- The following OIDs which were previously used to define +-- MODULE-COMPLIANCE statements are now obsolete: +-- ciscoRttMonMibCompliance ... ::= { ciscoRttMonMibCompliances 1 } +-- ciscoRttMonMibComplianceRev1 ... ::= { ciscoRttMonMibCompliances 2 } +-- ciscoRttMonMibComplianceRev2 ... ::= { ciscoRttMonMibCompliances 3 } +-- ciscoRttMonMibComplianceRev3 ... ::= { ciscoRttMonMibCompliances 4 } +-- ciscoRttMonMibComplianceRev4 ... ::= { ciscoRttMonMibCompliances 5 } +-- ciscoRttMonMibComplianceRev5 ... ::= { ciscoRttMonMibCompliances 6 } +-- ciscoRttMonMibComplianceRev6 ... ::= { ciscoRttMonMibCompliances 7 } +-- ciscoRttMonMibComplianceRev7 ... ::= { ciscoRttMonMibCompliances 8 } +-- ciscoRttMonMibComplianceRev8 ... ::= { ciscoRttMonMibCompliances 9 } +-- ciscoRttMonMibComplianceRev9 ... ::= { ciscoRttMonMibCompliances 10} +-- ciscoRttMonMibComplianceRev10 ... ::= { ciscoRttMonMibCompliances 11} +-- ciscoRttMonMibComplianceRev11 ... ::= { ciscoRttMonMibCompliances 12} + + +-- The following OIDs which were previously used to define +-- OBJECT-GROUPs are now obsolete: +-- ciscoCtrlGroup ... ::= { ciscoRttMonMibGroups 2 } +-- ciscoApplGroup ... ::= { ciscoRttMonMibGroups 1 } +-- ciscoApplGroupRev1 ... ::= { ciscoRttMonMibGroups 9 } +-- ciscoCtrlGroupRev3 ... ::= { ciscoRttMonMibGroups 10} +-- ciscoCtrlGroupRev5 ... ::= { ciscoRttMonMibGroups 15} +-- ciscoStatsGroupRev2 ... ::= { ciscoRttMonMibGroups 13} +-- ciscoNotificationGroup ... ::= { ciscoRttMonMibGroups 18 } + + +ciscoRttMonMibComplianceRev12 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for new MIB extensions for + (1) supporting LSP Path Discovery for Auto SAA L3 MPLS VPN. + (2) Group Scheduler Enhancement." + MODULE + MANDATORY-GROUPS { + ciscoStatsGroup, + ciscoHistoryGroup, + ciscoCtrlGroupRev1, + ciscoCtrlGroupRev2, + ciscoLatestOperGroupRev1, + ciscoStatsGroupRev1, + ciscoStatsGroupRev3, + ciscoStatsGroupRev4, + ciscoStatsGroupRev5, + ciscoApplGroupRev2, + ciscoApplGroupRev3, + ciscoCtrlGroupRev4, + ciscoCtrlGroupRev6, + ciscoCtrlGroupRev7, + ciscoCtrlGroupRev9, + ciscoCtrlGroupRev10, + ciscoCtrlGroupRev11, + ciscoCtrlGroupRev14, + ciscoNotificationGroupRev1 + } + GROUP ciscoCtrlGroupRev8 + DESCRIPTION + "ciscoCtrlGroupRev8 is only mandatory for the devices + that support MPLS." + GROUP ciscoStatsGroupRev7 + DESCRIPTION + "ciscoStatsGroupRev7 is only mandatory for the devices + that support MPLS." + GROUP ciscoCtrlGroupRev13 + DESCRIPTION + "ciscoCtrlGroupRev13 is only mandatory for the devices + that support MPLS." + GROUP ciscoNotificationGroupRev2 + DESCRIPTION + "ciscoNotificationGroupRev2 is only mandatory for the devices + that support MPLS." + GROUP ciscoApplGroupRev4 + DESCRIPTION + "ciscoApplGroupRev4 is only mandatory for the devices + that support MPLS." + GROUP ciscoCtrlGroupRev12 + DESCRIPTION + "ciscoCtrlGroupRev12 is only mandatory for the devices + that support voice." + ::= { ciscoRttMonMibCompliances 12 } + +ciscoStatsGroup OBJECT-GROUP + OBJECTS { + rttMonStatsCaptureCompletions, + rttMonStatsCaptureOverThresholds, + rttMonStatsCaptureSumCompletionTime, + rttMonStatsCaptureSumCompletionTime2Low, + rttMonStatsCaptureSumCompletionTime2High, + rttMonStatsCaptureCompletionTimeMax, + rttMonStatsCaptureCompletionTimeMin, + rttMonStatsCollectNumDisconnects, + rttMonStatsCollectTimeouts, + rttMonStatsCollectBusies, + rttMonStatsCollectNoConnections, + rttMonStatsCollectDrops, + rttMonStatsCollectSequenceErrors, + rttMonStatsCollectVerifyErrors, + rttMonStatsCollectAddress, + rttMonStatsTotalsElapsedTime, + rttMonStatsTotalsInitiations + } + STATUS current + DESCRIPTION + "A collection of objects providing accumulated statistical + history." + ::= { ciscoRttMonMibGroups 3 } + + +ciscoHistoryGroup OBJECT-GROUP + OBJECTS { + rttMonHistoryCollectionSampleTime, + rttMonHistoryCollectionAddress, + rttMonHistoryCollectionCompletionTime, + rttMonHistoryCollectionSense, + rttMonHistoryCollectionApplSpecificSense, + rttMonHistoryCollectionSenseDescription + } + STATUS current + DESCRIPTION + "A collection of objects providing point by point + history of each RTT operation." + ::= { ciscoRttMonMibGroups 4 } + + +ciscoCtrlGroupRev1 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminTargetPort, + rttMonEchoAdminSourceAddress, + rttMonEchoAdminSourcePort, + rttMonEchoAdminControlEnable, + rttMonEchoAdminTOS, + rttMonEchoAdminLSREnable, + rttMonEchoPathAdminHopAddress + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application." + ::= { ciscoRttMonMibGroups 5 } + +ciscoCtrlGroupRev2 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminTargetAddressString, + rttMonEchoAdminNameServer, + rttMonEchoAdminOperation, + rttMonEchoAdminHTTPVersion, + rttMonEchoAdminURL, + rttMonEchoAdminCache, + rttMonEchoAdminInterval, + rttMonEchoAdminNumPackets, + rttMonEchoAdminProxy, + rttMonEchoAdminString1, + rttMonEchoAdminString2, + rttMonEchoAdminString3, + rttMonEchoAdminString4, + rttMonEchoAdminString5, + rttMonEchoAdminMode + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application to configure HTTP, DNS and + Jitter probes." + ::= { ciscoRttMonMibGroups 6 } + +ciscoLatestOperGroupRev1 OBJECT-GROUP + OBJECTS { + rttMonLatestHTTPOperRTT, + rttMonLatestHTTPOperDNSRTT, + rttMonLatestHTTPOperTCPConnectRTT, + rttMonLatestHTTPOperTransactionRTT, + rttMonLatestHTTPOperMessageBodyOctets, + rttMonLatestHTTPOperSense, + rttMonLatestHTTPErrorSenseDescription, + rttMonLatestJitterOperNumOfRTT, + rttMonLatestJitterOperRTTSum, + rttMonLatestJitterOperRTTSum2, + rttMonLatestJitterOperRTTMin, + rttMonLatestJitterOperRTTMax, + rttMonLatestJitterOperMinOfPositivesSD, + rttMonLatestJitterOperMaxOfPositivesSD, + rttMonLatestJitterOperNumOfPositivesSD, + rttMonLatestJitterOperSumOfPositivesSD, + rttMonLatestJitterOperSum2PositivesSD, + rttMonLatestJitterOperMinOfNegativesSD, + rttMonLatestJitterOperMaxOfNegativesSD, + rttMonLatestJitterOperNumOfNegativesSD, + rttMonLatestJitterOperSumOfNegativesSD, + rttMonLatestJitterOperSum2NegativesSD, + rttMonLatestJitterOperMinOfPositivesDS, + rttMonLatestJitterOperMaxOfPositivesDS, + rttMonLatestJitterOperNumOfPositivesDS, + rttMonLatestJitterOperSumOfPositivesDS, + rttMonLatestJitterOperSum2PositivesDS, + rttMonLatestJitterOperMinOfNegativesDS, + rttMonLatestJitterOperMaxOfNegativesDS, + rttMonLatestJitterOperNumOfNegativesDS, + rttMonLatestJitterOperSumOfNegativesDS, + rttMonLatestJitterOperSum2NegativesDS, + rttMonLatestJitterOperPacketLossSD, + rttMonLatestJitterOperPacketLossDS, + rttMonLatestJitterOperPacketOutOfSequence, + rttMonLatestJitterOperPacketMIA, + rttMonLatestJitterOperPacketLateArrival, + rttMonLatestJitterOperSense, + rttMonLatestJitterErrorSenseDescription + } + STATUS current + DESCRIPTION + "A collection of objects that were added to store the latest + operational results for HTTP, DNS and Jitter probes." + ::= { ciscoRttMonMibGroups 7 } + +ciscoStatsGroupRev1 OBJECT-GROUP + OBJECTS { + rttMonHTTPStatsCompletions, + rttMonHTTPStatsOverThresholds, + rttMonHTTPStatsRTTSum, + rttMonHTTPStatsRTTSum2Low, + rttMonHTTPStatsRTTSum2High, + rttMonHTTPStatsRTTMin, + rttMonHTTPStatsRTTMax, + rttMonHTTPStatsDNSRTTSum, + rttMonHTTPStatsTCPConnectRTTSum, + rttMonHTTPStatsTransactionRTTSum, + rttMonHTTPStatsMessageBodyOctetsSum, + rttMonHTTPStatsDNSServerTimeout, + rttMonHTTPStatsTCPConnectTimeout, + rttMonHTTPStatsTransactionTimeout, + rttMonHTTPStatsDNSQueryError, + rttMonHTTPStatsHTTPError, + rttMonHTTPStatsError, + rttMonHTTPStatsBusies, + rttMonJitterStatsCompletions, + rttMonJitterStatsOverThresholds, + rttMonJitterStatsNumOfRTT, + rttMonJitterStatsRTTSum, + rttMonJitterStatsRTTSum2Low, + rttMonJitterStatsRTTSum2High, + rttMonJitterStatsRTTMin, + rttMonJitterStatsRTTMax, + rttMonJitterStatsMinOfPositivesSD, + rttMonJitterStatsMaxOfPositivesSD, + rttMonJitterStatsNumOfPositivesSD, + rttMonJitterStatsSumOfPositivesSD, + rttMonJitterStatsSum2PositivesSDLow, + rttMonJitterStatsSum2PositivesSDHigh, + rttMonJitterStatsMinOfNegativesSD, + rttMonJitterStatsMaxOfNegativesSD, + rttMonJitterStatsNumOfNegativesSD, + rttMonJitterStatsSumOfNegativesSD, + rttMonJitterStatsSum2NegativesSDLow, + rttMonJitterStatsSum2NegativesSDHigh, + rttMonJitterStatsMinOfPositivesDS, + rttMonJitterStatsMaxOfPositivesDS, + rttMonJitterStatsNumOfPositivesDS, + rttMonJitterStatsSumOfPositivesDS, + rttMonJitterStatsSum2PositivesDSLow, + rttMonJitterStatsSum2PositivesDSHigh, + rttMonJitterStatsMinOfNegativesDS, + rttMonJitterStatsMaxOfNegativesDS, + rttMonJitterStatsNumOfNegativesDS, + rttMonJitterStatsSumOfNegativesDS, + rttMonJitterStatsSum2NegativesDSLow, + rttMonJitterStatsSum2NegativesDSHigh, + rttMonJitterStatsPacketLossSD, + rttMonJitterStatsPacketLossDS, + rttMonJitterStatsPacketOutOfSequence, + rttMonJitterStatsPacketMIA, + rttMonJitterStatsPacketLateArrival, + rttMonJitterStatsError, + rttMonJitterStatsBusies + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application to store 'HTTP' and + 'Jitter' probes statistics." + ::= { ciscoRttMonMibGroups 8 } + + +ciscoApplGroupRev2 OBJECT-GROUP + OBJECTS { + rttMonApplResponder, + rttMonApplAuthKeyChain, + rttMonApplAuthKeyString1, + rttMonApplAuthKeyString2, + rttMonApplAuthKeyString3, + rttMonApplAuthKeyString4, + rttMonApplAuthKeyString5, + rttMonApplAuthStatus + } + STATUS current + DESCRIPTION + "These objects provide support for configuring responder + on a router and also configure authentication information." + ::= { ciscoRttMonMibGroups 11 } + +ciscoCtrlGroupRev4 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminVrfName + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application." + ::= { ciscoRttMonMibGroups 12 } + + +ciscoStatsGroupRev3 OBJECT-GROUP + OBJECTS { + rttMonLatestJitterOperOWSumSD, + rttMonLatestJitterOperOWSum2SD, + rttMonLatestJitterOperOWMinSD, + rttMonLatestJitterOperOWMaxSD, + rttMonLatestJitterOperOWSumDS, + rttMonLatestJitterOperOWSum2DS, + rttMonLatestJitterOperOWMinDS, + rttMonLatestJitterOperOWMaxDS, + rttMonLatestJitterOperNumOfOW, + rttMonJitterStatsOWSumSD, + rttMonJitterStatsOWSum2SDLow, + rttMonJitterStatsOWSum2SDHigh, + rttMonJitterStatsOWSumDS, + rttMonJitterStatsOWSum2DSLow, + rttMonJitterStatsOWSum2DSHigh, + rttMonJitterStatsNumOfOW, + rttMonJitterStatsOWMinSDNew, + rttMonJitterStatsOWMaxSDNew, + rttMonJitterStatsOWMinDSNew, + rttMonJitterStatsOWMaxDSNew + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application to store one way + 'Jitter' probes statistics." + ::= { ciscoRttMonMibGroups 14 } + + +ciscoCtrlGroupRev6 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminCodecType, + rttMonEchoAdminCodecInterval, + rttMonEchoAdminCodecPayload, + rttMonEchoAdminCodecNumPackets, + rttMonEchoAdminICPIFAdvFactor + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application." + ::= { ciscoRttMonMibGroups 16 } + +ciscoStatsGroupRev4 OBJECT-GROUP + OBJECTS { + rttMonLatestJitterOperMOS, + rttMonLatestJitterOperICPIF, + rttMonJitterStatsMinOfMOS, + rttMonJitterStatsMaxOfMOS, + rttMonJitterStatsMinOfICPIF, + rttMonJitterStatsMaxOfICPIF + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + functionality of the RTT application to store MOS and + ICPIF for 'Jitter' probe statistics." + ::= { ciscoRttMonMibGroups 17 } + + +ciscoApplGroupRev3 OBJECT-GROUP + OBJECTS { + rttMonApplVersion, + rttMonApplMaxPacketDataSize, + rttMonApplTimeOfLastSet, + rttMonApplSupportedRttTypesValid, + rttMonApplSupportedProtocolsValid, + rttMonApplNumCtrlAdminEntry, + rttMonApplReset, + rttMonApplProbeCapacity, + rttMonApplFreeMemLowWaterMark, + rttMonApplLatestSetError + } + STATUS current + DESCRIPTION + "A collection of objects providing the RTT Monitoring + Application defaults. + + This group of information is provided to the agent when + the Application starts." + ::= { ciscoRttMonMibGroups 19 } + +ciscoCtrlGroupRev7 OBJECT-GROUP + OBJECTS { + rttMonScheduleAdminRttRecurring, + rttMonGrpScheduleAdminProbes, + rttMonGrpScheduleAdminPeriod, + rttMonGrpScheduleAdminFrequency, + rttMonGrpScheduleAdminLife, + rttMonGrpScheduleAdminAgeout, + rttMonGrpScheduleAdminStatus + } + STATUS current + DESCRIPTION + "A collection of objects that were added to enhance the + scheduling functionality of the RTT application." + ::= { ciscoRttMonMibGroups 20 } + +ciscoCtrlGroupRev8 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminLSPFECType, + rttMonEchoAdminLSPSelector, + rttMonEchoAdminLSPReplyMode, + rttMonEchoAdminLSPTTL, + rttMonEchoAdminLSPExp, + rttMplsVpnMonCtrlRttType, + rttMplsVpnMonCtrlVrfName, + rttMplsVpnMonCtrlTag, + rttMplsVpnMonCtrlThreshold, + rttMplsVpnMonCtrlTimeout, + rttMplsVpnMonCtrlScanInterval, + rttMplsVpnMonCtrlDelScanFactor, + rttMplsVpnMonCtrlEXP, + rttMplsVpnMonCtrlRequestSize, + rttMplsVpnMonCtrlVerifyData, + rttMplsVpnMonCtrlStorageType, + rttMplsVpnMonCtrlProbeList, + rttMplsVpnMonCtrlStatus, + rttMplsVpnMonTypeInterval, + rttMplsVpnMonTypeNumPackets, + rttMplsVpnMonTypeDestPort, + rttMplsVpnMonTypeSecFreqType, + rttMplsVpnMonTypeSecFreqValue, + rttMplsVpnMonTypeLspSelector, + rttMplsVpnMonTypeLSPReplyMode, + rttMplsVpnMonTypeLSPTTL, + rttMplsVpnMonScheduleRttStartTime, + rttMplsVpnMonSchedulePeriod, + rttMplsVpnMonScheduleFrequency, + rttMplsVpnMonReactConnectionEnable, + rttMplsVpnMonReactTimeoutEnable, + rttMplsVpnMonReactThresholdType, + rttMplsVpnMonReactThresholdCount, + rttMplsVpnMonReactActionType + } + STATUS current + DESCRIPTION + "A collection of objects that were added to support + (1) echo operations support based on MPLS LSP Ping, + (2) pathEcho operations support based on MPLS LSP Ping and + (3) Auto SAA L3 MPLS VPN enhancement." + ::= { ciscoRttMonMibGroups 21 } + +ciscoStatsGroupRev5 OBJECT-GROUP + OBJECTS{ + rttMonJitterStatsIAJOut, + rttMonJitterStatsIAJIn, + rttMonJitterStatsAvgJitter, + rttMonJitterStatsAvgJitterSD, + rttMonJitterStatsAvgJitterDS, + rttMonJitterStatsUnSyncRTs, + rttMonLatestJitterOperIAJIn, + rttMonLatestJitterOperIAJOut, + rttMonLatestJitterOperAvgJitter, + rttMonLatestJitterOperAvgSDJ, + rttMonLatestJitterOperAvgDSJ, + rttMonLatestJitterOperOWAvgSD, + rttMonLatestJitterOperOWAvgDS, + rttMonLatestJitterOperNTPState, + rttMonLatestJitterOperUnSyncRTs + } + STATUS current + DESCRIPTION + "A collection of objects that are added to report + intera-rrival Jitter, average jitter and improve accuracy." + ::= {ciscoRttMonMibGroups 22 } + +ciscoCtrlGroupRev9 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminPrecision, + rttMonEchoAdminProbePakPriority, + rttMonEchoAdminOWNTPSyncTolAbs, + rttMonEchoAdminOWNTPSyncTolPct, + rttMonEchoAdminOWNTPSyncTolType, + rttMonEchoAdminCalledNumber, + rttMonEchoAdminDetectPoint, + rttMonEchoAdminGKRegistration + } + STATUS current + DESCRIPTION + "A collection of objects that are added to enhance the + jitter probe accuracy." + ::= { ciscoRttMonMibGroups 23 } + +ciscoCtrlGroupRev10 OBJECT-GROUP + OBJECTS { + rttMonCtrlAdminOwner, + rttMonCtrlAdminTag, + rttMonCtrlAdminRttType, + rttMonCtrlAdminThreshold, + rttMonCtrlAdminFrequency, + rttMonCtrlAdminTimeout, + rttMonCtrlAdminVerifyData, + rttMonCtrlAdminStatus, + rttMonCtrlAdminNvgen, + rttMonEchoAdminProtocol, + rttMonEchoAdminTargetAddress, + rttMonEchoAdminPktDataRequestSize, + rttMonEchoAdminPktDataResponseSize, + rttMonScheduleAdminRttLife, + rttMonScheduleAdminRttStartTime, + rttMonScheduleAdminConceptRowAgeout, + rttMonStatisticsAdminNumHourGroups, + rttMonStatisticsAdminNumPaths, + rttMonStatisticsAdminNumHops, + rttMonStatisticsAdminNumDistBuckets, + rttMonStatisticsAdminDistInterval, + rttMonHistoryAdminNumLives, + rttMonHistoryAdminNumBuckets, + rttMonHistoryAdminNumSamples, + rttMonHistoryAdminFilter, + rttMonCtrlOperModificationTime, + rttMonCtrlOperDiagText, + rttMonCtrlOperResetTime, + rttMonCtrlOperOctetsInUse, + rttMonCtrlOperConnectionLostOccurred, + rttMonCtrlOperTimeoutOccurred, + rttMonCtrlOperVerifyErrorOccurred, + rttMonCtrlOperOverThresholdOccurred, + rttMonCtrlOperNumRtts, + rttMonCtrlOperRttLife, + rttMonCtrlOperState, + rttMonLatestRttOperCompletionTime, + rttMonLatestRttOperSense, + rttMonLatestRttOperApplSpecificSense, + rttMonLatestRttOperSenseDescription, + rttMonLatestRttOperTime, + rttMonLatestRttOperAddress, + rttMonReactTriggerAdminStatus, + rttMonReactTriggerOperState + } + STATUS current + DESCRIPTION + "A collection of objects providing the Administration, + Operational, Last Statistical values for the RTT + Monitoring Application." + ::= { ciscoRttMonMibGroups 24 } + +ciscoCtrlGroupRev11 OBJECT-GROUP + OBJECTS { + rttMonReactVar, + rttMonReactThresholdType, + rttMonReactActionType, + rttMonReactThresholdRising, + rttMonReactThresholdFalling, + rttMonReactThresholdCountX, + rttMonReactThresholdCountY, + rttMonReactValue, + rttMonReactOccurred, + rttMonReactStatus, + rttMonGrpScheduleAdminFreqMax, + rttMonGrpScheduleAdminFreqMin + } + STATUS current + DESCRIPTION + "A collection of objects that were added + for the reaction configuration of probe." + ::= { ciscoRttMonMibGroups 25 } + +ciscoNotificationGroupRev1 NOTIFICATION-GROUP + NOTIFICATIONS { + rttMonNotification + } + STATUS current + DESCRIPTION + "A collection of notifications." + ::= { ciscoRttMonMibGroups 26 } + +ciscoCtrlGroupRev12 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminSourceVoicePort, + rttMonEchoAdminCallDuration + } + STATUS current + DESCRIPTION + "A collection of objects that were added + for the configuration of rtp operation." + ::= { ciscoRttMonMibGroups 27 } + +ciscoCtrlGroupRev13 OBJECT-GROUP + OBJECTS { + rttMonEchoAdminLSPReplyDscp, + rttMonEchoAdminLSPNullShim, + rttMplsVpnMonCtrlLpd, + rttMplsVpnMonCtrlLpdGrpList, + rttMplsVpnMonCtrlLpdCompTime, + rttMplsVpnMonTypeLSPReplyDscp, + rttMplsVpnMonTypeLpdMaxSessions, + rttMplsVpnMonTypeLpdSessTimeout, + rttMplsVpnMonTypeLpdEchoTimeout, + rttMplsVpnMonTypeLpdEchoInterval, + rttMplsVpnMonTypeLpdEchoNullShim, + rttMplsVpnMonTypeLpdScanPeriod, + rttMplsVpnMonTypeLpdStatHours, + rttMplsVpnMonReactLpdNotifyType, + rttMplsVpnMonReactLpdRetryCount + } + STATUS current + DESCRIPTION + "A collection of objects that were added + for the parameters configuration of mpls based operations." + ::= { ciscoRttMonMibGroups 29 } + +ciscoStatsGroupRev7 OBJECT-GROUP + OBJECTS { + rttMonLpdGrpStatsTargetPE, + rttMonLpdGrpStatsNumOfPass, + rttMonLpdGrpStatsNumOfFail, + rttMonLpdGrpStatsNumOfTimeout, + rttMonLpdGrpStatsAvgRTT, + rttMonLpdGrpStatsMinRTT, + rttMonLpdGrpStatsMaxRTT, + rttMonLpdGrpStatsMinNumPaths, + rttMonLpdGrpStatsMaxNumPaths, + rttMonLpdGrpStatsLPDStartTime, + rttMonLpdGrpStatsLPDFailOccurred, + rttMonLpdGrpStatsLPDFailCause, + rttMonLpdGrpStatsLPDCompTime, + rttMonLpdGrpStatsGroupStatus, + rttMonLpdGrpStatsGroupProbeIndex, + rttMonLpdGrpStatsProbeStatus, + rttMonLpdGrpStatsPathIds, + rttMonLpdGrpStatsResetTime + } + STATUS current + DESCRIPTION + "A collection of objects that are added for + collecting the statistics for LSP Path Discovery Group." + ::= {ciscoRttMonMibGroups 30 } + +ciscoNotificationGroupRev2 NOTIFICATION-GROUP + NOTIFICATIONS { + rttMonLpdDiscoveryNotification, + rttMonLpdGrpStatusNotification + } + STATUS current + DESCRIPTION + "A collection of notifications added for supporting LSP + Path Discovery." + ::= { ciscoRttMonMibGroups 31 } + +ciscoApplGroupRev4 OBJECT-GROUP + OBJECTS { + rttMonApplLpdGrpStatsReset + } + STATUS current + DESCRIPTION + "This object is added to reset the LSP Path Discovery Stats." + ::= { ciscoRttMonMibGroups 32 } + +ciscoCtrlGroupRev14 OBJECT-GROUP + OBJECTS { + rttMonGrpScheduleAdminStartTime, + rttMonGrpScheduleAdminAdd, + rttMonGrpScheduleAdminDelete, + rttMonGrpScheduleAdminReset + } + STATUS current + DESCRIPTION + "This object is added for group scheduler enhancement" + ::= { ciscoRttMonMibGroups 33 } + +END + diff --git a/pandora_console/attachment/mibs/CISCO-RTTMON-TC-MIB.my b/pandora_console/attachment/mibs/CISCO-RTTMON-TC-MIB.my new file mode 100644 index 0000000000..0cb204666f --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-RTTMON-TC-MIB.my @@ -0,0 +1,730 @@ +-- ***************************************************************** +-- CISCO-RTTMON-TC-MIB.my: IP SLA Textual Conventions MIB file +-- +-- August 2005, Katherine Yang +-- +-- Copyright (c) 2005 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** + +CISCO-RTTMON-TC-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY + FROM SNMPv2-SMI + + TEXTUAL-CONVENTION + FROM SNMPv2-TC + + ciscoMgmt + FROM CISCO-SMI; + +ciscoRttMonTCMIB MODULE-IDENTITY + LAST-UPDATED "200508090000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + "Cisco Systems, Inc. + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + + Tel: +1 800 553 NETS + Email: cs-ipsla@cisco.com" + + DESCRIPTION + "This MIB contains textual conventions used by + CISCO-RTTMON-MIB, CISCO-RTTMON-RTP-MIB and + CISCO-RTTMON-ICMP-MIB, but they are not limited + to only these MIBs. + These textual conventions were originally defined in + CISCO-RTTMON-MIB. + + Acronyms: + FEC: Forward Equivalence Class + LPD: Label Path Discovery + LSP: Label Switched Path + MPLS: Multi Protocol Label Switching + RTT: Round Trip Time + SAA: Service Assurance Agent + VPN: Virtual Private Network" + + REVISION "200508090000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { ciscoMgmt 485 } + + + +-- Textual Conventions +-- + +RttReset ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "When the value set to 'reset', the entire RTT application + goes through a reset sequence, making a best + effort to revert to its startup condition. At other times, + the value is 'ready'." + + SYNTAX INTEGER + { + ready(1), + reset(2) + } + + +RttMonOperation ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The following are specific RTT operations for a + particular probe type: + notApplicable(0) - This object is not applicable for the + probe type. + httpGet(1) - HTTP get request + httpRaw(2) - HTTP request with user defined payload + ftpGet(3) - FTP get request + ftpPassive(4) - FTP passive mode + ftpActive(5) - FTP active mode + voipDTAlertRinging(6) - Voip post dial delay detect point: + Alerting / Ringing + voipDTConnectOK(7) - Voip post dial delay detect point: + Connect /OK" + SYNTAX INTEGER + { + notApplicable(0), + httpGet(1), + httpRaw(2), + ftpGet(3), + ftpPassive(4), + ftpActive(5), + voipDTAlertRinging(6), + voipDTConnectOK(7) + } + +-- +-- Operation completion sense code textual convention +-- +-- + +RttResponseSense ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "These are the defined values for a completion status + of a RTT operation. + + other(0) - the operation is not started or completed + or this object is not applicable for + the probe type. + ok(1) - a valid completion occurred and + timed successfully + disconnected(2) - the operation did not occur because + the connection to the target + was lost + overThreshold(3) - a valid completion was received but + the completion time exceeded a + threshold value + timeout(4) - an operation timed out; no completion + time recorded + busy(5) - the operation did not occur because a + previous operation is still + outstanding + notConnected(6) - the operation did not occur because no + connection (session) exists with the + target + dropped(7) - the operation did not occur due to lack + of internal resource + sequenceError(8) - a completed operation did not contain + the correct sequence id; no completion + time recorded + verifyError(9) - a completed operation was received, but + the data it contained did not match + the expected data; no completion time + recorded + applicationSpecific(10) + - the application generating the operation + had a specific error + dnsServerTimeout(11) + - DNS Server Timeout + tcpConnectTimeout(12) + - TCP Connect Timeout + httpTransactionTimeout(13) + - HTTP Transaction Timeout + dnsQueryError(14) + - DNS Query error (because of unknown address + etc.,) + httpError(15) + - HTTP Response StatusCode is not OK (200), + or permenent redirect(301), temporary redirect + (302) then HTTP error is set. + error(16) + - if there are socket failures or some other + errors not relavant to the actual probe, they + are recorded under this error + mplsLspEchoTxError(17) + - MPLS echo request transmission failure. + mplsLspUnreachable(18) + - MPLS Target FEC not reachable or unsupported + mpls echo reply code. + mplsLspMalformedReq(19) + - MPLS echo request was malformalformed, pointed + out by the reply router. + mplsLspReachButNotFEC(20) + - MPLS echo request processed by the downstream + router but not the target." + SYNTAX INTEGER + { + other(0), + ok(1), + disconnected(2), + overThreshold(3), + timeout(4), + busy(5), + notConnected(6), + dropped(7), + sequenceError(8), + verifyError(9), + applicationSpecific(10), + dnsServerTimeout(11), + tcpConnectTimeout(12), + httpTransactionTimeout(13), + dnsQueryError(14), + httpError(15), + error(16), + mplsLspEchoTxError(17), + mplsLspUnreachable(18), + mplsLspMalformedReq(19), + mplsLspReachButNotFEC(20) + } + +-- +-- Operation type textual convention +-- + +RttMonRttType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specifies the type of RTT operation to be performed. + + The value 'echo' will cause the RTT application to + perform a timed echo request/response operation directed + at the 'RttMonTargetAddress'. + + The value 'pathEcho' will cause the RTT application + to perform path discovery to the 'RttMonTargetAddress', + then it will perform a timed echo request/response + operation directed at the each hop along the path. + This operation will provide two types of information, + first the path and second the time delay along the path. + + NOTE: The 'pathEcho' time delay operation is a heuristic + measurement because an intermediate hop may forward + the different echo request/response at different + rates. Thus the time delay difference between two + hops along a path may contain very little 'true' + statistical meaning. + + The value 'fileIO' will cause the RTT application to + write, read, or write/read a file to a preconfigured + file server. + + The value 'script' will cause the RTT application to + execute a preconfigured script. + + The value 'udpEcho' will cause the RTT application + to perform a timed udp packet send/receive operation + directed at the 'RttMonTargetAddress'. + + The value 'tcpConnect' will cause the RTT application + to perform a timed tcp connect operation directed at the + 'RttMonTargetAddress'. + + The value 'http' will cause the RTT application + to perform a download of the object specified in the URL. + + The value 'dns' will cause the RTT application + to perform a name lookup of an IP Address or a hostname. + + The value 'jitter' will cause the RTT application + to perform delay variance analysis. + + The value 'dlsw' will cause the RTT application + to perform a keepalive operation to measure the response + time of a DLSw peer. + + The value 'dhcp' will cause the RTT application + to perform an IP Address lease request/teardown operation. + + The value 'voip' will cause the RTT application + to perform call set up operation to measure the response. + + The value 'rtp' will cause the RTT application to perform + delay variance analysis for RTP packet. + + The value 'lspGroup' will cause the RTT application to logically + group Label Switched Paths discovered as part of LSP Path + Discovery to the target and perform an RTT operation end to end + over each path in the Group. The type of operation configured + is determined by rttMplsVpnMonCtrlRttType. + + The value 'icmpjitter' will cause the RTT application + to perform delay variance analysis using ICMP timestamp packets. + + The value of 'lspPing' will cause the RTT application to + perform ping over LSP path. + + The value of 'lspTrace' will cause the RTT application to + perform trace over LSP path." + SYNTAX INTEGER + { + echo(1), + pathEcho(2), + fileIO(3), + script(4), + udpEcho(5), + tcpConnect(6), + http(7), + dns(8), + jitter(9), + dlsw(10), + dhcp(11), + ftp(12), + voip(13), + rtp(14), + lspGroup(15), + icmpjitter(16), + lspPing(17), + lspTrace(18) + } + +-- +-- Operation type for Auto SAA L3 MPLS VPN textual convention +-- +-- + +RttMplsVpnMonRttType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specifies the type of RTT operation to be performed for + Auto SAA L3 MPLS VPN. + + The value 'jitter' will cause the Auto SAA L3 MPLS VPN to + automatically configure jitter operations. + + The value 'echo' will cause the Auto SAA L3 MPLS VPN to + automatically configure jitter operations. + + The value 'pathEcho' will cause the Auto SAA L3 MPLS VPN to + automatically configure jitter operations." + SYNTAX INTEGER + { + jitter(1), + echo(2), + pathEcho(3) + } + +---- +-- Auto SAA L3 MPLS VPN LSP Path Discovery +-- Failure Cause textual convention +-- + +RttMplsVpnMonLpdFailureSense ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "These are the defined values for the causes of failure in + LSP Path Discovery. + + unknown(1) - The cause of failure for the + LSP Path Discovery cannot be + determined. The discovery for + the target PE may not have + started. + noPath(2) - No paths were found to the + target FEC while doing the + LSP Path Discovery. + allPathsBroken(3) - All paths to the target FEC + are broken. This means an + untagged interface on the LSP + to the target. + allPathsUnexplorable(4) - All paths to the target FEC are + unexplorable. This identifies + a case where there is some + problem in reaching the next + hop while doing Discovery. + allPathsBrokenOrUnexplorable(5) - All paths to the target FEC are + are either broken or + unexplorable. + timeout(6) - The LSP Path Discovery could + not be completed for the + target FEC within the + configured time. + error(7) - Error occurred while + performing LSP Path Discovery. + It might be also due to some + reasons unrelated to LSP Path + Discovery." + SYNTAX INTEGER + { + unknown(1), + noPath(2), + allPathsBroken(3), + allPathsUnexplorable(4), + allPathsBrokenOrUnexplorable(5), + timeout(6), + error(7) + } + +-- +-- textual convention +-- +-- + +RttMplsVpnMonLpdGrpStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "These are the defined values for the status of the LPD Group. + + unknown(1) - This indicates that some/all of the probes which are + part of the LPD group have not completed even + a single operation, so the group status cannot be + identified. + up(2) - This state indicates that all the probes which are + part of the LPD group are up with latest return + code as 'ok'. + partial(3) - This state indicates that some probes are up and + running fine and some are not 'ok'. + down(4) - This state indicates that all the probes to the + target are not running fine. This state indicates + that there is connectivity problem to the target + PE." + SYNTAX INTEGER + { + unknown(1), + up(2), + partial(3), + down(4) + } + + + +RttMonProtocol ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specifies the protocol to be used to perform the timed + echo request/response. The following protocols are + defined: + + NOTE: All protocols that end in 'Appl' will support + the asymetric request/response (ARR) protocol. + See the DESCRIPTION for ciscoRttMonMIB for a + complete description of the asymetric + request/response protocol. + + notApplicable - no protocol is defined + ipIcmpEcho - uses Echo Request/Reply as defined + in RFC792 for Internet Protocol + networks + ipUdpEchoAppl - uses the UDP based echo server + snaRUEcho - uses the REQECHO and ECHOTEST RU's + to an SSCP over an SNA LU-SSCP + session + snaLU0EchoAppl - uses test RU's sent to the Echo + Server over an SNA LU0-LU0 session + snaLU2EchoAppl - uses test RU's sent to the Echo + Server over an SNA LU2-LU2 session + snaLU62Echo - uses the native appn ping ie. aping + snaLU62EchoAppl - uses test RU's sent to the ARR + Echo Server over an SNA LU6.2-LU6.2 + session + appleTalkEcho - uses Echo Request/Reply as defined + for appleTalk networks + appleTalkEchoAppl - uses the appleTalk based echo + server + decNetEcho - uses Echo Request/Reply as defined + for DECNet networks + decNetEchoAppl - uses the DECnet based echo server + ipxEcho - uses Echo Request/Reply as defined + for Novell IPX networks + ipxEchoAppl - uses the Novel IPX based echo + server + isoClnsEcho - uses Echo Request/Reply as defined + for ISO CLNS networks + isoClnsEchoAppl - uses the ISO CLNS based echo + server + vinesEcho - uses Echo Request/Reply as defined + for VINES networks + vinesEchoAppl - uses the VINES based echo server + xnsEcho - uses Echo Request/Reply as defined + for XNS networks + xnsEchoAppl - uses the XNS based echo server + apolloEcho - uses Echo Request/Reply as defined + for APOLLO networks + apolloEchoAppl - uses the APOLLO based echo + server + netbiosEchoAppl - uses the netbios based echo + server + ipTcpConn - uses the tcp's connect mechanism + httpAppl - uses udp for name resolution, + tcp connect and tcp data transfer + mechanisms for HTTP data download + from a particular HTTP Server + dnsAppl - uses udp for name resolution + jitterAppl - uses udp for packet transfers + dlswAppl - uses tcp for sending keepalives + dhcpAppl - uses udp for sending dhcp requests + ftpAppl - uses tcp for connect & data transfer + mplsLspPingAppl - uses MPLS Echo Request/Response as per + draft-ietf-mpls-lsp-ping-04 ietf + standard + voipAppl - uses Symphony infrastructure to measure + H.323/SIP call set up time + rtpAppl - uses Symphony infrastructure to measure + rtp packets delay variance. + icmpJitterAppl - uses ICMP Timestamp for packet transfer + to measure jitter." + SYNTAX INTEGER + { + notApplicable(1), + ipIcmpEcho(2), + ipUdpEchoAppl(3), + snaRUEcho(4), + snaLU0EchoAppl(5), + snaLU2EchoAppl(6), + snaLU62Echo(7), + snaLU62EchoAppl(8), + appleTalkEcho(9), + appleTalkEchoAppl(10), + decNetEcho(11), + decNetEchoAppl(12), + ipxEcho(13), + ipxEchoAppl(14), + isoClnsEcho(15), + isoClnsEchoAppl(16), + vinesEcho(17), + vinesEchoAppl(18), + xnsEcho(19), + xnsEchoAppl(20), + apolloEcho(21), + apolloEchoAppl(22), + netbiosEchoAppl(23), + ipTcpConn(24), + httpAppl(25), + dnsAppl(26), + jitterAppl(27), + dlswAppl(28), + dhcpAppl(29), + ftpAppl(30), + mplsLspPingAppl(31), + voipAppl(32), + rtpAppl(33), + icmpJitterAppl(34) + } + +RttMonCodecType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specifies the codec type to be used with the jitter probe. + The following codec types are defined: + + notApplicable - no CodecType is defined + g711ulaw - uses G.711 U Law 64000 bps + g711alaw - uses G.711 A Law 64000 bps + g729a - uses G.729 8000 bps" + SYNTAX INTEGER + { + notApplicable(0), + g711ulaw(1), + g711alaw(2), + g729a(3) + } + +RttMonLSPPingReplyMode ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Specifies the Reply mode for the MPLS LSP Echo request + packets. The following reply modes are supported: + + replyIpv4Udp(1) - an mpls echo request will normally + have reply via IPv4 UDP packets. + replyIpv4UdpRA(2) - reply via IPv4 UDP Router Alert. Used + when IPv4 return path is deemed + unreliable." + SYNTAX INTEGER + { + replyIpv4Udp(1), + replyIpv4UdpRA(2) + } + + +RttMonTargetAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A string which specifies the address of the target for + the RTT operation; a value of RttMonTargetAddress + which corresponds to a 'broadcast' address is disallowed. + + The interpretation of this string depends on the type of + RTT operation selected, as specified by RttMonProtocol; + consequently, this object cannot be created until + RttMonProtocol has been created (or must be in the same + PDU). + + SNA addresses will be provided in ASCII, but will be + converted to EBCDIC + + It is interpreted as follows, for the specified values of + RttMonProtocol: + + ipIcmpEcho, ipUdpEchoAppl, ipTcpConn, jitterAppl, dlswAppl, + dnsAppl, httpAppl, and dhcpAppl + - 4 octets + + snaRUEcho + - N octets, containing the value of the sna + HOSTNAME of which the SSCP LU will be used + for the operation. For many systems this value + can be empty, and the system will use the + implied SSCP LU. For example 'NSPECHO'. + + snaLU0EchoAppl and snaLU2EchoAppl + - N octets, the first x octets are the HOSTNAME + (Alternatively, this could be a PU name defined + to transport to the desired HOST), the second + y octets are the APPLID, and the last z octets + are the MODENAME of the Echo Server (blank + for a MODENAME default). The address will be + encoded with a size byte preceding each of + the x y and z called s. For example sxsysz + as in '0x06CWBC060x07NSPECHO0x00' where + HOSTNAME = CWBC06, APPLID = NSPECHO, and + MODENAME is defaulted to 8 blanks. + NOTE: MODENAME is either size 0 or 8. + + snaLU62Echo and snaLU62EchoAppl + - N octets, the first x octets are the LU-NAME, + the second y octets are the TP-NAME, and the + last z octets are the MODENAME of the Echo + Server. The address will be encoded with a size + byte preceding each of the x y and z called s. + For example sxsysz (zero size before z for a + MODENAME default). The LU-NAME is composed of + 8 bytes '.' 8 bytes. The Transaction Program + name (TP-NAME) is 1-64 bytes. The MODENAME + is 8 bytes. + + appleTalkEcho, appleTalkEchoAppl + + decNetEcho, decNetEchoAppl + + ipxEcho, ipxEchoAppl + + isoClnsEcho, isoClnsEchoAppl + + vinesEcho, vinesEchoAppl + + xnsEcho, xnsEchoAppl + apolloEcho, apolloEchoAppl + + netbiosEchoAppl, voipAppl + - unsupported protocols. + + mplsLspPingAppl + - 8 octets, the first 4 octets are the FEC address + and the next 4 octets are the FEC address mask." + SYNTAX OCTET STRING + + + +RttMonReactVar ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The following are specific Reaction variables for a + particular probe type: + rtt(1) - Round Trip Time + jitterSDAvg(2) - Jitter average from source to Destination + jitterDSAvg(3) - Jitter average from destination to source + packetLossSD(4) - Packet loss from source to destination + packetLossDS(5) - Packet loss from destination to source + mos(6) - Mean Opinion Score + timeout(7) - Timeout of the Operation + connectionLoss(8) - Connection Failed to the destination + verifyError(9) - Data corruption occurs + jitterAvg(10) - Jitter Average in both the directions + icpif(11) - Calculated Planning Impairment Factor + packetMIA(12) - Missing In Action + packetLateArrival(13) - Packets arriving Late + packetOutOfSequence(14) - Packets arriving out of sequence + maxOfPositiveSD(15) - Maximum positive jitter from + Source to Destination + maxOfNegativeSD(16) - Maximum negative jitter from + Source to Destination + maxOfPositiveDS(17) - Maximum positive jitter from + Destination to Source + maxOfNegativeDS(18) - Maximum negative jitter from + Destination to Source. + iaJitterDS(19) - Inter arrival jitter from + Destination to Source + frameLossDS(20) - Number of frame loss recorded + at source DSP + mosLQDS(21) - Listener quality MOS at Source + mosCQDS(22) - Conversational quality MOS at source + rFactorDS(23) - R-Factor value at Destination. + successivePacketLoss(24)- Successive Dropped Packet + maxOfLatencyDS(25) - Maximum Latency from Destination + to Source + maxOfLatencySD(26) - Maximum Latency from Source + to Destination + latencyDSAvg(27) - Latency average from Destination + to Source + latencySDAvg(28) - Latency average from Source + to Destination + packetLoss(29) - Packets loss in both directions + iaJitterSD(30) - Inter arrival jitter from + Source to Destination + mosCQSD(31) - Conversational quality MOS at + Destination + rFactorSD(32) - R-Factor value at Destination." + + SYNTAX INTEGER + { + rtt(1), + jitterSDAvg(2), + jitterDSAvg(3), + packetLossSD(4), + packetLossDS(5), + mos(6), + timeout(7), + connectionLoss(8), + verifyError(9), + jitterAvg(10), + icpif(11), + packetMIA(12), + packetLateArrival(13), + packetOutOfSequence(14), + maxOfPositiveSD(15), + maxOfNegativeSD(16), + maxOfPositiveDS(17), + maxOfNegativeDS(18), + iaJitterDS(19), + frameLossDS(20), + mosLQDS(21), + mosCQDS(22), + rFactorDS(23), + successivePacketLoss(24), + maxOfLatencyDS(25), + maxOfLatencySD(26), + latencyDSAvg(27), + latencySDAvg(28), + packetLoss(29), + iaJitterSD(30), + mosCQSD(31), + rFactorSD(32) + } + +END + + + + + diff --git a/pandora_console/attachment/mibs/CISCO-SMI b/pandora_console/attachment/mibs/CISCO-SMI new file mode 100644 index 0000000000..7ee7f71fb0 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-SMI @@ -0,0 +1,326 @@ +-- ***************************************************************** +-- CISCO-SMI.my: Cisco Enterprise Structure of Management Information +-- +-- April 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-1997 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- + +CISCO-SMI DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-IDENTITY, + enterprises + FROM SNMPv2-SMI; + +cisco MODULE-IDENTITY + LAST-UPDATED "200001110000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 West Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "The Structure of Management Information for the + Cisco enterprise." + REVISION "200001110000Z" + DESCRIPTION + "Added ciscoPolicy, ciscoPolicyAuto, ciscoPIB, and + ciscoPibToMib." + REVISION "9704090000Z" + DESCRIPTION + "Added ciscoPartnerProducts to generate sysObjectID + for partner platforms" + REVISION "9505160000Z" + DESCRIPTION + "New oid assignments for Cisco REPEATER MIB and others." + REVISION "9404262000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { enterprises 9 } -- assigned by IANA + + +ciscoProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoProducts is the root OBJECT IDENTIFIER from + which sysObjectID values are assigned. Actual + values are defined in CISCO-PRODUCTS-MIB." + ::= { cisco 1 } + +local OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Subtree beneath which pre-10.2 MIBS were built." + ::= { cisco 2 } + +temporary OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Subtree beneath which pre-10.2 experiments were + placed." + ::= { cisco 3 } + +pakmon OBJECT-IDENTITY + STATUS current + DESCRIPTION + "reserved for pakmon" + ::= { cisco 4 } + +workgroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "subtree reserved for use by the Workgroup Business Unit" + ::= { cisco 5 } + +otherEnterprises OBJECT-IDENTITY + STATUS current + DESCRIPTION + "otherEnterprises provides a root object identifier + from which mibs produced by other companies may be + placed. mibs produced by other enterprises are + typicially implemented with the object identifiers + as defined in the mib, but if the mib is deemed to + be uncontrolled, we may reroot the mib at this + subtree in order to have a controlled version." + ::= { cisco 6 } + +ciscoAgentCapability OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoAgentCapability provides a root object identifier + from which AGENT-CAPABILITIES values may be assigned." + ::= { cisco 7 } + +ciscoConfig OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoConfig is the main subtree for configuration mibs." + ::= { cisco 8 } + +ciscoMgmt OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoMgmt is the main subtree for new mib development." + ::= { cisco 9 } + +ciscoExperiment OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoExperiment provides a root object identifier + from which experimental mibs may be temporarily + based. mibs are typicially based here if they + fall in one of two categories + 1) are IETF work-in-process mibs which have not + been assigned a permanent object identifier by + the IANA. + 2) are cisco work-in-process which has not been + assigned a permanent object identifier by the + cisco assigned number authority, typicially because + the mib is not ready for deployment. + + NOTE WELL: support for mibs in the ciscoExperiment + subtree will be deleted when a permanent object + identifier assignment is made." + ::= { cisco 10 } + +ciscoAdmin OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoAdmin is reserved for administratively assigned + OBJECT IDENTIFIERS, i.e. those not associated with MIB + objects" + ::= { cisco 11 } + +ciscoModules OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoModules provides a root object identifier + from which MODULE-IDENTITY values may be assigned." + ::= { cisco 12 } + +lightstream OBJECT-IDENTITY + STATUS current + DESCRIPTION + "subtree reserved for use by Lightstream" + ::= { cisco 13 } + +ciscoworks OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoworks provides a root object identifier beneath + which mibs applicable to the CiscoWorks family of network + management products are defined." + ::= { cisco 14 } + +newport OBJECT-IDENTITY + STATUS current + DESCRIPTION + "subtree reserved for use by the former Newport Systems + Solutions, now a portion of the Access Business Unit." + ::= { cisco 15 } + +ciscoPartnerProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPartnerProducts is the root OBJECT IDENTIFIER from + which partner sysObjectID values may be assigned. Such + sysObjectID values are composed of the ciscoPartnerProducts + prefix, followed by a single identifier that is unique for + each partner, followed by the value of sysObjectID of the + Cisco product from which partner product is derived. Note + that the chassisPartner MIB object defines the value of the + identifier assigned to each partner." + ::= { cisco 16 } + +ciscoPolicy OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPolicy is the root of the Cisco-assigned OID + subtree for use with Policy Management." + ::= { cisco 17 } + +-- Note that 1.3.6.1.4.1.9.17.1 is currently unassigned + +ciscoPIB OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPIB is the root of the Cisco-assigned OID + subtree for assignment to PIB (Policy Information + Base) modules." + ::= { ciscoPolicy 2 } + +ciscoPolicyAuto OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPolicyAuto is the root of the Cisco-assigned + OID subtree for OIDs which are automatically assigned + for use in Policy Management." + ::= { cisco 18 } + +-- Note that 1.3.6.1.4.1.9.18.1 is currently unassigned + +ciscoPibToMib OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPibToMib is the root of the Cisco-assigned + OID subtree for MIBs which are algorithmically + generated/translated from Cisco PIBs with OIDs + assigned under the ciscoPIB subtree. + These generated MIBs allow management + entities (other the current Policy Server) to + read the downloaded policy. By convention, for PIB + 'ciscoPIB.x', the generated MIB shall have the + name 'ciscoPibToMib.x'." + ::= { ciscoPolicyAuto 2 } + +-- ciscoAdmin assignments follow + +ciscoProxy OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoProxy OBJECT IDENTIFIERS are used to uniquely name + party mib records created to proxy for SNMPv1." + ::= { ciscoAdmin 1 } +ciscoPartyProxy OBJECT IDENTIFIER ::= { ciscoProxy 1 } +ciscoContextProxy OBJECT IDENTIFIER ::= { ciscoProxy 2 } + +-- +-- Administrative assignments for repeaters +-- + +ciscoRptrGroupObjectID OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoRptrGroupObjectID OBJECT IDENTIFIERS are used to + uniquely identify groups of repeater ports for use by the + SNMP-REPEATER-MIB (RFC 1516) rptrGroupObjectID object." + ::= { ciscoAdmin 2 } + +ciscoUnknownRptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of an unknown repeater port group." + ::= { ciscoRptrGroupObjectID 1 } + +cisco2505RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the Cisco 2505 repeater + port group." + ::= { ciscoRptrGroupObjectID 2 } + +cisco2507RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the Cisco 2507 repeater + port group." + ::= { ciscoRptrGroupObjectID 3 } + +cisco2516RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the Cisco 2516 repeater + port group." + ::= { ciscoRptrGroupObjectID 4 } + +ciscoWsx5020RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the wsx5020 repeater + port group." + ::= { ciscoRptrGroupObjectID 5 } + +-- +-- Administrative assignments for chip sets +-- + +ciscoChipSets OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Numerous media-specific MIBS have an object, defined as + an OBJECT IDENTIFIER, which is the identity of the chipset + realizing the interface. Cisco-specific chipsets have their + OBJECT IDENTIFIERS assigned under this subtree." + ::= { ciscoAdmin 3 } + +ciscoChipSetSaint1 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 1 SAINT ethernet chipset + manufactured for cisco by LSI Logic." + ::= { ciscoChipSets 1 } + +ciscoChipSetSaint2 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 2 SAINT ethernet chipset + manufactured for cisco by LSI Logic." + ::= { ciscoChipSets 2 } + +ciscoChipSetSaint3 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 3 SAINT ethernet chipset + manufactured for cisco by Plessey." + ::= { ciscoChipSets 3 } + +ciscoChipSetSaint4 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 4 SAINT ethernet chipset + manufactured for cisco by Mitsubishi." + ::= { ciscoChipSets 4 } + +END diff --git a/pandora_console/attachment/mibs/CISCO-SMI.my b/pandora_console/attachment/mibs/CISCO-SMI.my new file mode 100644 index 0000000000..7ee7f71fb0 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-SMI.my @@ -0,0 +1,326 @@ +-- ***************************************************************** +-- CISCO-SMI.my: Cisco Enterprise Structure of Management Information +-- +-- April 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-1997 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- + +CISCO-SMI DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + OBJECT-IDENTITY, + enterprises + FROM SNMPv2-SMI; + +cisco MODULE-IDENTITY + LAST-UPDATED "200001110000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 West Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "The Structure of Management Information for the + Cisco enterprise." + REVISION "200001110000Z" + DESCRIPTION + "Added ciscoPolicy, ciscoPolicyAuto, ciscoPIB, and + ciscoPibToMib." + REVISION "9704090000Z" + DESCRIPTION + "Added ciscoPartnerProducts to generate sysObjectID + for partner platforms" + REVISION "9505160000Z" + DESCRIPTION + "New oid assignments for Cisco REPEATER MIB and others." + REVISION "9404262000Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { enterprises 9 } -- assigned by IANA + + +ciscoProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoProducts is the root OBJECT IDENTIFIER from + which sysObjectID values are assigned. Actual + values are defined in CISCO-PRODUCTS-MIB." + ::= { cisco 1 } + +local OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Subtree beneath which pre-10.2 MIBS were built." + ::= { cisco 2 } + +temporary OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Subtree beneath which pre-10.2 experiments were + placed." + ::= { cisco 3 } + +pakmon OBJECT-IDENTITY + STATUS current + DESCRIPTION + "reserved for pakmon" + ::= { cisco 4 } + +workgroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "subtree reserved for use by the Workgroup Business Unit" + ::= { cisco 5 } + +otherEnterprises OBJECT-IDENTITY + STATUS current + DESCRIPTION + "otherEnterprises provides a root object identifier + from which mibs produced by other companies may be + placed. mibs produced by other enterprises are + typicially implemented with the object identifiers + as defined in the mib, but if the mib is deemed to + be uncontrolled, we may reroot the mib at this + subtree in order to have a controlled version." + ::= { cisco 6 } + +ciscoAgentCapability OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoAgentCapability provides a root object identifier + from which AGENT-CAPABILITIES values may be assigned." + ::= { cisco 7 } + +ciscoConfig OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoConfig is the main subtree for configuration mibs." + ::= { cisco 8 } + +ciscoMgmt OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoMgmt is the main subtree for new mib development." + ::= { cisco 9 } + +ciscoExperiment OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoExperiment provides a root object identifier + from which experimental mibs may be temporarily + based. mibs are typicially based here if they + fall in one of two categories + 1) are IETF work-in-process mibs which have not + been assigned a permanent object identifier by + the IANA. + 2) are cisco work-in-process which has not been + assigned a permanent object identifier by the + cisco assigned number authority, typicially because + the mib is not ready for deployment. + + NOTE WELL: support for mibs in the ciscoExperiment + subtree will be deleted when a permanent object + identifier assignment is made." + ::= { cisco 10 } + +ciscoAdmin OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoAdmin is reserved for administratively assigned + OBJECT IDENTIFIERS, i.e. those not associated with MIB + objects" + ::= { cisco 11 } + +ciscoModules OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoModules provides a root object identifier + from which MODULE-IDENTITY values may be assigned." + ::= { cisco 12 } + +lightstream OBJECT-IDENTITY + STATUS current + DESCRIPTION + "subtree reserved for use by Lightstream" + ::= { cisco 13 } + +ciscoworks OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoworks provides a root object identifier beneath + which mibs applicable to the CiscoWorks family of network + management products are defined." + ::= { cisco 14 } + +newport OBJECT-IDENTITY + STATUS current + DESCRIPTION + "subtree reserved for use by the former Newport Systems + Solutions, now a portion of the Access Business Unit." + ::= { cisco 15 } + +ciscoPartnerProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPartnerProducts is the root OBJECT IDENTIFIER from + which partner sysObjectID values may be assigned. Such + sysObjectID values are composed of the ciscoPartnerProducts + prefix, followed by a single identifier that is unique for + each partner, followed by the value of sysObjectID of the + Cisco product from which partner product is derived. Note + that the chassisPartner MIB object defines the value of the + identifier assigned to each partner." + ::= { cisco 16 } + +ciscoPolicy OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPolicy is the root of the Cisco-assigned OID + subtree for use with Policy Management." + ::= { cisco 17 } + +-- Note that 1.3.6.1.4.1.9.17.1 is currently unassigned + +ciscoPIB OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPIB is the root of the Cisco-assigned OID + subtree for assignment to PIB (Policy Information + Base) modules." + ::= { ciscoPolicy 2 } + +ciscoPolicyAuto OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPolicyAuto is the root of the Cisco-assigned + OID subtree for OIDs which are automatically assigned + for use in Policy Management." + ::= { cisco 18 } + +-- Note that 1.3.6.1.4.1.9.18.1 is currently unassigned + +ciscoPibToMib OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoPibToMib is the root of the Cisco-assigned + OID subtree for MIBs which are algorithmically + generated/translated from Cisco PIBs with OIDs + assigned under the ciscoPIB subtree. + These generated MIBs allow management + entities (other the current Policy Server) to + read the downloaded policy. By convention, for PIB + 'ciscoPIB.x', the generated MIB shall have the + name 'ciscoPibToMib.x'." + ::= { ciscoPolicyAuto 2 } + +-- ciscoAdmin assignments follow + +ciscoProxy OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoProxy OBJECT IDENTIFIERS are used to uniquely name + party mib records created to proxy for SNMPv1." + ::= { ciscoAdmin 1 } +ciscoPartyProxy OBJECT IDENTIFIER ::= { ciscoProxy 1 } +ciscoContextProxy OBJECT IDENTIFIER ::= { ciscoProxy 2 } + +-- +-- Administrative assignments for repeaters +-- + +ciscoRptrGroupObjectID OBJECT-IDENTITY + STATUS current + DESCRIPTION + "ciscoRptrGroupObjectID OBJECT IDENTIFIERS are used to + uniquely identify groups of repeater ports for use by the + SNMP-REPEATER-MIB (RFC 1516) rptrGroupObjectID object." + ::= { ciscoAdmin 2 } + +ciscoUnknownRptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of an unknown repeater port group." + ::= { ciscoRptrGroupObjectID 1 } + +cisco2505RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the Cisco 2505 repeater + port group." + ::= { ciscoRptrGroupObjectID 2 } + +cisco2507RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the Cisco 2507 repeater + port group." + ::= { ciscoRptrGroupObjectID 3 } + +cisco2516RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the Cisco 2516 repeater + port group." + ::= { ciscoRptrGroupObjectID 4 } + +ciscoWsx5020RptrGroup OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The authoritative identity of the wsx5020 repeater + port group." + ::= { ciscoRptrGroupObjectID 5 } + +-- +-- Administrative assignments for chip sets +-- + +ciscoChipSets OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Numerous media-specific MIBS have an object, defined as + an OBJECT IDENTIFIER, which is the identity of the chipset + realizing the interface. Cisco-specific chipsets have their + OBJECT IDENTIFIERS assigned under this subtree." + ::= { ciscoAdmin 3 } + +ciscoChipSetSaint1 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 1 SAINT ethernet chipset + manufactured for cisco by LSI Logic." + ::= { ciscoChipSets 1 } + +ciscoChipSetSaint2 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 2 SAINT ethernet chipset + manufactured for cisco by LSI Logic." + ::= { ciscoChipSets 2 } + +ciscoChipSetSaint3 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 3 SAINT ethernet chipset + manufactured for cisco by Plessey." + ::= { ciscoChipSets 3 } + +ciscoChipSetSaint4 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The identity of the Rev 4 SAINT ethernet chipset + manufactured for cisco by Mitsubishi." + ::= { ciscoChipSets 4 } + +END diff --git a/pandora_console/attachment/mibs/CISCO-STACK-MIB.my b/pandora_console/attachment/mibs/CISCO-STACK-MIB.my new file mode 100644 index 0000000000..63ce9f2e73 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-STACK-MIB.my @@ -0,0 +1,12611 @@ +-- ***************************************************************** +-- CISCO-STACK-MIB.my +-- +-- June 1995, Fei Xu +-- +-- Copyright (c) 1995-2005 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** +-- +CISCO-STACK-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, IpAddress, TimeTicks, + Counter32, Counter64, Unsigned32, NOTIFICATION-TYPE + FROM SNMPv2-SMI + DisplayString, RowStatus, TruthValue, MacAddress, + TEXTUAL-CONVENTION + FROM SNMPv2-TC + fddimibPORTSMTIndex, fddimibPORTIndex + FROM FDDI-SMT73-MIB + OwnerString, ifName, ifIndex + FROM IF-MIB + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF + workgroup + FROM CISCO-SMI + ringStationMacAddress + FROM TOKEN-RING-RMON-MIB + PhysicalIndex + FROM ENTITY-MIB + VlanIndex + FROM CISCO-VTP-MIB; + +ciscoStackMIB MODULE-IDENTITY + LAST-UPDATED "200703300000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-wbu@cisco.com, + cs-lan-switch-snmp@cisco.com" + + DESCRIPTION + "This MIB provides configuration and runtime status for + chassis, modules, ports, etc. on the Catalyst systems." + + REVISION "200703300000Z" + DESCRIPTION + "Modified chassisSysType to include: + 'mec6524gs8s', 'mec6524gt8s', 'cisco7603s'. + + Updated chassisPs1Type and chassisPs2Type to include: + 'pwr400dc', 'pwr400ac'. + + Updated chassisComponentType for new hardwares: + 'fan6524', 'fanMod6Shs', 'fanMod9Shs', 'fanMod9St', + 'fanMod3Hs'. + + Modified moduleType to include: + 'mec6524gs8s', 'mec6524gt8s', 'me6524msfc2a', + 'wsx670810ge'. + + Updated moduleSubType to include new hardwares: + 'mec6524pfc3c', 'wsf6700dfc3c', 'wsf6700dfc3cxl'. + + Modified VendorIdType to compliance with SNMP v2 + format" + + REVISION "200510280000Z" + DESCRIPTION + "Modified chassisComponentType to include: + 'fanMod4Hs'. + + Modified syslogMessageFacility to include: + 'eou', 'backup', 'eoam', 'webauth'. + + Modified sysErrDisableTimeoutEnable to include: + 'ethernetOam', 'gl2ptEoamThresholdExceed'. + + Updated chassisPs1Type and chassisPs2Type to include: + 'pwr2700dc', 'pwr2700ac4', 'pwr2700dc4', and + 'wscac8700we'. + + Modified moduleType to include: + 'osm4oc3PosMM', 'wsx6196rj21', + 'wssup32ge3b', 'wsSvcIpSec1', + 'wsx6148arj45', 'wsSvcWebVpnk9', + 'ace106500k9', 'ace046500k9', + 'wsSvcAdm1k9', 'wsSvcAgm1k9', + 'wssup3210ge3b', 'osm2choc12T3SI', + 'wsf6700cfc', 'osm8choc3DS0SI'. + + Updated portType to include: + 'e10GBaseEdc1310', 'e10GBaseSW', + 'sslVpn', 'adsm', + 'agsm', 'aces', + 'e10GBaseZR', 'e100BaseEX', + 'e100BaseZX'." + + REVISION "200504270000Z" + DESCRIPTION + "Added support of the following objects: + cisco7604sysID, wsc6504esysID + + Modified sysEnableStpxTrap to include: + 'enabledForInconOnly', 'enabledForRootOnly', + 'enabledForLoopOnly', 'enabledForInconRootOnly', + 'enabledForInconLoopOnly', 'enabledForRootLoopOnly' + + Modified sysErrDisableTimeoutEnable to include: + 'camMonitor', 'gl2ptCdpThresholdExceed', + 'gl2ptStpThresholdExceed', 'gl2ptVtpThresholdExceed', + 'linkRxCrc', 'linkTxCrc', + 'linkInErrors', 'packetBufferError' + + Updated chassisSysType for new hardwares: + cisco7604 and wsc6504e + + Updated chassisPs1Type and chassisPs2Type for new + hardwares: + wscac6000w and pwr2700ac + + Updated chassisComponentType for new hardwares: + wsc6506eFan, wsc6509eFan, wsc6503eFan, wsc6000vtte. + + Updated moduleType for hardware: + osm2oc48OneDptSSDual, osm2oc48OneDptSIDual, + osm2oc48OneDptSLDual, osm4choc12T3MM, + osm4choc12T3SI, osm8choc12T3MM, + osm8choc12T3SI, osm2choc48T3SS, + osm1choc48T3SI, osm2choc48T3SI, + osm4choc3DS0SI, osm1choc12T1SI, + osm12ct3T1, osm24t3e3, + osm2oc12AtmMMPlus, osm2oc12AtmSIPlus, + osm8oc3PosSLPlus, wsx6516aGbic, + wsx6148getx, wsSvcWlan1k9, + wsSvcAon1k9, wsx6148FeSfp, + wsx65822pa + + Updated moduleType for name changed: + wsx61821pa changed to wsx61822pa + + Updated moduleSubType to include new hardwares: + wsf6700dfc3a, wsf6kdfc3bxl, + wsf6kpfc3bxl, wsf6700dfc3bxl, + wsf6700dfc3b, wsf6kdfc3b + + Updated moduleSubType to include new hardwares: + wssvccmm6e1, wssvccmm6t1, + wssvccmm24fxs, wssvccmmact + + Updated portType to include: + e10GBaseWdm1550, e10GBaseLW, + e10GBaseEW, lwa, + aons, e100BaseEmpty, + e100BaseUnknown, e100BaseUnapproved, + e100BaseSX, e100BaseBX10D, + e100BaseBX10U, e1000BaseBX10D, + e1000BaseBX10U, e10GBaseBad + + Updated portType for name changed: + posOc48mm changed to posOc48sms + + Modified ipPermitAccessType, ipPermitDeniedAccess, + ipPermitAccessTypeEnable to include: + http + + Modified syslogMessageFacility to include: + diags + + Modified portCpbInlinePower to include: + static + + Deprecated sysEnableStpxTrap, replaced by + stpxNotificationEnable in + CISCO-STP-EXTENSIONS-MIB.my + + Deprecated radiusServerTable, replaced by + crRadiusServerTable in CISCO-RADIUS-MIB.my + + Added new conformance Groups: + optionalSystemTrapGroup1, + authenticationGroup2, + systemTrapGroup2, + notificationGroup." + + REVISION "200405140000Z" + DESCRIPTION + "Modified sysEnableBridgeTraps to include: + 'enabledForNewRootOnly' and 'enabledForTopoChangeOnly' + + Updated moduleType for new hardwares: + wsx2948ggetx, wsx2948ggetxgbrj and wsx6748sfp + + Updated moduleSubType for the new harware: + wsf6kpfc3b + + Updated moduleSubType2 for the new harware: + wsf6kVpwrGe + + Updated portType to include: + e10GBaseSR, e10GBaseCX4, + e1000BaseUnknown and e10GBaseUnknown, + e10GBaseUnapproved, e1000BaseWdmRxOnly, + e1000BaseDwdm3033,e1000BaseDwdm3112, + e1000BaseDwdm3190,e1000BaseDwdm3268, + e1000BaseDwdm3425,e1000BaseDwdm3504, + e1000BaseDwdm3582,e1000BaseDwdm3661, + e1000BaseDwdm3819,e1000BaseDwdm3898, + e1000BaseDwdm3977,e1000BaseDwdm4056, + e1000BaseDwdm4214,e1000BaseDwdm4294, + e1000BaseDwdm4373,e1000BaseDwdm4453, + e1000BaseDwdm4612,e1000BaseDwdm4692, + e1000BaseDwdm4772,e1000BaseDwdm4851, + e1000BaseDwdm5012,e1000BaseDwdm5092, + e1000BaseDwdm5172,e1000BaseDwdm5252, + e1000BaseDwdm5413,e1000BaseDwdm5494, + e1000BaseDwdm5575,e1000BaseDwdm5655, + e1000BaseDwdm5817,e1000BaseDwdm5898, + e1000BaseDwdm5979,e1000BaseDwdm6061, + e10GBaseWdmRxOnly, e10GBaseDwdm3033, + e10GBaseDwdm3112, e10GBaseDwdm3190 + e10GBaseDwdm3268, e10GBaseDwdm3425, + e10GBaseDwdm3504, e10GBaseDwdm3582, + e10GBaseDwdm3661, e10GBaseDwdm3819, + e10GBaseDwdm3898, e10GBaseDwdm3977, + e10GBaseDwdm4056, e10GBaseDwdm4214, + e10GBaseDwdm4294, e10GBaseDwdm4373, + e10GBaseDwdm4453, e10GBaseDwdm4612, + e10GBaseDwdm4692, e10GBaseDwdm4772, + e10GBaseDwdm4851, e10GBaseDwdm5012, + e10GBaseDwdm5092, e10GBaseDwdm5172, + e10GBaseDwdm5252, e10GBaseDwdm5413, + e10GBaseDwdm5494, e10GBaseDwdm5575, + e10GBaseDwdm5655, e10GBaseDwdm5817, + e10GBaseDwdm5898, e10GBaseDwdm5979 and + e10GBaseDwdm6061 + + Modified portAdminSpeed to include: + 'autoDetect10100' + + Modified syslogMessageFacility to include: + 'dhcpsnooping'." + + REVISION "200401150000Z" + DESCRIPTION + "Updated workgroup for new hardware: + wsc2948ggetxsysID + + Updated chassisSysType for new hardware: + wsc2948ggetx + + Updated chassisPs1Type for new hardware: + w156 + + Updated moduleType for new hardwares: + wsx4148lxmt, wsx4548gbrj45, wsx4548gbrj45v + wsx4248rj21v, wsx4302gb, wsx4248rj45v, wsx6748getx, + wsx670410ge, wsx6724sfp and wsx6148x2rj45 + + Updated moduleSubType2 for new hardwares: + wsf6kmsfc, wsf6kmsfc2, wsf6kmsfc2a, + wsf6kFe48af, wsf6kGe48af and wsf6kFe48x2af, + + Updated moduleType for new hardwares: + e1000BaseUnknown and e10GBaseUnknown. + + Modified syslogMessageFacility to include 'callhome'. + + Modified sysErrDisableTimeoutEnable to include + 'arpInspectionRate' and 'noStaticInlinePwr'. + + Modified Description clause for deprecated objects: + sysIpAddr, sysNetMask, sysBroadcast, sysReset, + sysConsolePrimaryLoginAuthentication, + sysConsolePrimaryEnableAuthentication, + sysTelnetPrimaryLoginAuthentication, + sysTelnetPrimaryEnableAuthentication, + sysPortFastBpduGuard, chassisSerialNumber, + chassisComponentTable, moduleSerialNumber, + moduleHwHiVersion, moduleHwLoVersion, + moduleFwHiVersion, moduleFwLoVersion, + moduleSwHiVersion, moduleSwLoVersion, + portSpantreeFastStart, monitorGrp and + vlanSpantreeEnable. + + Added new conformance Groups: + systemMiscGroup1, + systemTrapGroup1, + optionalSystemMiscGroup6, + optionalChassisGroup1, + portGroup4, + vlanGroup2, + ipPermitGroup2 and + optionalPortGroup1." + + REVISION "200305290000Z" + DESCRIPTION + "Change the ORGANIZATION clause. Deprecated + sysClearMacTime object." + REVISION + "200305050000Z" + DESCRIPTION + "Add support of the following objects: cisco7613sysID, + wsc6509nebasysID. ChassisType: wsc4507, wsc6509NEBA, + wsc65509, cisco7613. chassisPs1Type: pwr950dc, + pwr1900ac, pwr1900dc, wscac3000w, + pwrc451400dcp, wscdc3000w, pwr1400ac. + chassisPs2Type: pwr950dc, pwr1900ac, pwr1900dc, + wscac3000w, wscdc3000w, pwr1400ac. + moduleTable: wsSvcIdsm2, wsSvcFwm1, wsSvcCe1, + wssvcSsl1, osm2oc12PosMMPlus, osm2oc12PosSIPlus, + osm16oc3PosSIPlus, osm1oc48PosSSPlus,osm1oc48PosSIPlus, + osm1oc48PosSLPlus, osm4oc3PosSIPlus, osm8oc3PosSIPlus, + osm4oc12PosSIPlus, wsx6548getx, wssup720, wssup720base. + moduleSubType: wsf6kpfc2a, wsf6kdfca, vsp300dfc, + wsf6kpfc3a, wsf6kdfc3a. moduleSubType2: wsg6489, + wsg6485, wsu4502gb, wssvcidsupg, wssup720. + portType: e100BaseLX. + + Deprecate the following objects: sysIpAddr, sysNetMask, + sysBroadcast, sysTrapReceiverTable, sysReset, + sysClearPortTime, sysClearMacTime, + sysPortFastBpduGuard, chassisComponentTable, + portSpantreeFastStart, vlanTable, portChannelTable. + + Remove the TC MacAddressType, and replaced other uses + by MacAddress." + + REVISION + "200209240000Z" + DESCRIPTION + "Added more HW models." + REVISION + "200106110000Z" + DESCRIPTION + "Added cat6000 new HW chassis & modules." + REVISION + "200104110000Z" + DESCRIPTION + "Added more HW modules; + Added the following MIB objects under systemGrp: + sysMaxRmonMemory + sysMacReductionAdminEnable + sysMacReductionOperEnable + Added the following MIB object under fileCopyGrp: + fileCopyRuntimeConfigPart + Added the following MIB object under filterPortTable: + filterPortSuppressionOption + Added the following MIB object under syslogGrp: + syslogTelnetEnable" + + REVISION + "200010100000Z" + DESCRIPTION + "Added more HW modules; + Added the following objects in systemGrp + sshPublicKeySize + Added the vlanTrunkMappingTable in vlanGrp + Added portJumboFrameGrp + Added the following objects in portCpbTable: + portCpbCosRewrite + portCpbTosRewrite + portCpbCopsGrouping + Added copyTechReportFromRuntimeToHost in fileCopyAction + Added ssh(2) in ipPermitAccessType & + ipPermitDeniedAccess." + + REVISION + "200005160000Z" + DESCRIPTION + "Added more HW models; + Added the following objects: + portInlinePowerDetect + vlanPortAuxiliaryVlan + portCpbInlinePower + portCpbAuxiliaryVlan + moduleAdditionalStatus + sysExtendedRmonNetflowModuleMask + Added the voiceGrp + Added the switchAccelerationGrp" + + REVISION + "200002020000Z" + DESCRIPTION + "Added the following objects: + sysPortFastBpduGuard + sysErrDisableTimeoutEnable + sysErrDisableTimeoutInterval + sysTrafficMonitorHighWaterMark + chassisPs3Type + chassisPs3Status + chassisPs3TestResult + chassisPEMInstalled + moduleEntPhysicalIndex + portAdditionalOperStatus + portEntPhysicalIndex + filterPortBroadcastThresholdFraction + mcastEnableRgmp + portCpbSpan. + modified ipPermitGrp for supporting IP Permit + Enhancement. Added more HW models." + + REVISION + "9909300000Z" + DESCRIPTION + "Added more HW models." + + REVISION + "9903260000Z" + DESCRIPTION + "Added traceRouteGrp." + + REVISION + "9902120000Z" + DESCRIPTION + "Initial v2 version of this MIB module." + ::= { workgroup 1 } + +adapterCard OBJECT IDENTIFIER ::= { workgroup 2 } +wsc1000sysID OBJECT IDENTIFIER ::= { workgroup 3 } +wsc1100sysID OBJECT IDENTIFIER ::= { workgroup 4 } +wsc1200sysID OBJECT IDENTIFIER ::= { workgroup 5 } +wsc1400sysID OBJECT IDENTIFIER ::= { workgroup 6 } +wsc5000sysID OBJECT IDENTIFIER ::= { workgroup 7 } +wsc1600sysID OBJECT IDENTIFIER ::= { workgroup 8 } +cpw1600sysID OBJECT IDENTIFIER ::= { workgroup 9 } +wsc3000sysID OBJECT IDENTIFIER ::= { workgroup 10 } +-- rhino OBJECT IDENTIFIER ::= { workgroup 11 } +wsc2900sysID OBJECT IDENTIFIER ::= { workgroup 12 } +cpw2200sysID OBJECT IDENTIFIER ::= { workgroup 13 } +esStack OBJECT IDENTIFIER ::= { workgroup 14 } +wsc3200sysID OBJECT IDENTIFIER ::= { workgroup 15 } +cpw1900sysID OBJECT IDENTIFIER ::= { workgroup 16 } +wsc5500sysID OBJECT IDENTIFIER ::= { workgroup 17 } +wsc1900sysID OBJECT IDENTIFIER ::= { workgroup 18 } +cpw1220sysID OBJECT IDENTIFIER ::= { workgroup 19 } +wsc2820sysID OBJECT IDENTIFIER ::= { workgroup 20 } +cpw1420sysID OBJECT IDENTIFIER ::= { workgroup 21 } +dcd OBJECT IDENTIFIER ::= { workgroup 22 } +wsc3100sysID OBJECT IDENTIFIER ::= { workgroup 23 } +cpw1800sysID OBJECT IDENTIFIER ::= { workgroup 24 } +cpw1601sysID OBJECT IDENTIFIER ::= { workgroup 25 } +wsc3001sysID OBJECT IDENTIFIER ::= { workgroup 26 } +cpw1220csysID OBJECT IDENTIFIER ::= { workgroup 27 } +wsc1900csysID OBJECT IDENTIFIER ::= { workgroup 28 } +wsc5002sysID OBJECT IDENTIFIER ::= { workgroup 29 } +cpw1220isysID OBJECT IDENTIFIER ::= { workgroup 30 } +wsc1900isysID OBJECT IDENTIFIER ::= { workgroup 31 } +tsStack OBJECT IDENTIFIER ::= { workgroup 32 } +wsc3900sysID OBJECT IDENTIFIER ::= { workgroup 33 } +wsc5505sysID OBJECT IDENTIFIER ::= { workgroup 34 } +wsc2926sysID OBJECT IDENTIFIER ::= { workgroup 35 } +wsc5509sysID OBJECT IDENTIFIER ::= { workgroup 36 } +wsc3920sysID OBJECT IDENTIFIER ::= { workgroup 37 } +wsc6006sysID OBJECT IDENTIFIER ::= { workgroup 38 } +wsc6009sysID OBJECT IDENTIFIER ::= { workgroup 39 } +wsc4003sysID OBJECT IDENTIFIER ::= { workgroup 40 } +wsc4912gsysID OBJECT IDENTIFIER ::= { workgroup 41 } +wsc2948gsysID OBJECT IDENTIFIER ::= { workgroup 42 } +wsc6509sysID OBJECT IDENTIFIER ::= { workgroup 44 } +wsc6506sysID OBJECT IDENTIFIER ::= { workgroup 45 } +wsc4006sysID OBJECT IDENTIFIER ::= { workgroup 46 } +wsc6509nebsysID OBJECT IDENTIFIER ::= { workgroup 47 } +wsc6knamsysID OBJECT IDENTIFIER ::= { workgroup 48 } +wsc2980gsysID OBJECT IDENTIFIER ::= { workgroup 49 } +wsc6513sysID OBJECT IDENTIFIER ::= { workgroup 50 } +wsc2980gasysID OBJECT IDENTIFIER ::= { workgroup 51 } +cisco7603sysID OBJECT IDENTIFIER ::= { workgroup 53 } +cisco7606sysID OBJECT IDENTIFIER ::= { workgroup 54 } +cisco7609sysID OBJECT IDENTIFIER ::= { workgroup 55 } +wsc6503sysID OBJECT IDENTIFIER ::= { workgroup 56 } +wsc4503sysID OBJECT IDENTIFIER ::= { workgroup 58 } +wsc4506sysID OBJECT IDENTIFIER ::= { workgroup 59 } +cisco7613sysID OBJECT IDENTIFIER ::= { workgroup 60 } +wsc6509nebasysID OBJECT IDENTIFIER ::= { workgroup 61 } +wsc2948ggetxsysID OBJECT IDENTIFIER ::= { workgroup 62 } +cisco7604sysID OBJECT IDENTIFIER ::= { workgroup 63 } +wsc6504esysID OBJECT IDENTIFIER ::= { workgroup 64 } +wsc1900LiteFxsysID OBJECT IDENTIFIER ::= { workgroup 175 } + +-- stackMIBobjects +systemGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 1 } +chassisGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 2 } +moduleGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 3 } +portGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 4 } +tftpGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 5 } +brouterGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 6 } +filterGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 7 } +monitorGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 8 } +vlanGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 9 } +securityGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 10 } +tokenRingGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 11 } +multicastGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 12 } +dnsGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 13 } +syslogGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 14 } +ntpGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 15 } +tacacsGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 16 } +ipPermitListGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 17 } +portChannelGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 18 } +portCpbGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 19 } +portTopNGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 20 } +mdgGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 21 } +radiusGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 22 } +traceRouteGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 24 } +fileCopyGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 25 } +voiceGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 26 } +portJumboFrameGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 27 } +switchAccelerationGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 28 } +configGrp OBJECT IDENTIFIER ::= { ciscoStackMIB 29 } + +-- textual conventions + +-- The vendor ID portion of a MacAddress (first 3 octets +-- of the 6-octet MAC address) +VendorIdType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Vendor ID Type" + SYNTAX OCTET STRING (SIZE (3)) + +-- the system group + +-- Implementation of the system group is current for all Cisco Workgroup +-- Stack products. + +sysMgmtType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + snmpV1(2), -- Simple Network Management Protocol + smux(3), -- SNMP MUX sub-agent + snmpV2V1(4), -- Bi-lingual SNMP, Ver 2 and 1 + snmpV2cV1(5),-- Bi-lingual SNMP, V2c and V1 + snmpV3V2cV1(6) -- SNMPv3, SNMPv2c and SNMPv1 + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Type of network management running on this + entity." + ::= { systemGrp 1 } + +sysIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "This entity's IP address. + + This object is deprecated and replaced by + ciiIPAddressType and ciiIPAddress in + CISCO-IP-IF-MIB." + ::= { systemGrp 2 } + +sysNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "This entity's subnet mask. + + This object is deprecated and replaced by + ciiIPAddressPrefixLength in CISCO-IP-IF-MIB." + ::= { systemGrp 3 } + +sysBroadcast OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "This entity's broadcast address. + + This object is deprecated and replaced by + ciiIPAddressBroadcast in CISCO-IP-IF-MIB." + ::= { systemGrp 4 } + +-- the trap receiver table + +sysTrapReceiverTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysTrapReceiverEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "The trap receiver table (0 to 20 entries). This + table lists the addresses of Network Management + Stations that should receive trap messages from + this entity when an exception condition occurs. + + This table is deprecated and replaced by + trapDestTable and other tables in SNMP-TARGET- + MIB and SNMP-NOTIFICATION-MIB." + ::= { systemGrp 5 } + +sysTrapReceiverEntry OBJECT-TYPE + SYNTAX SysTrapReceiverEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A trap receiver table entry." + INDEX { sysTrapReceiverAddr } + ::= { sysTrapReceiverTable 1 } + +SysTrapReceiverEntry ::= + SEQUENCE { + sysTrapReceiverType + INTEGER, + sysTrapReceiverAddr + IpAddress, + sysTrapReceiverComm + DisplayString + } + +sysTrapReceiverType OBJECT-TYPE + SYNTAX INTEGER { + valid(1), -- add this entry + invalid(2) -- remove this entry + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Setting this object to invalid(2) removes the + corresponding entry from the sysTrapReceiverTable. + To add a new entry to the sysTrapReceiverTable, + set this object to valid(1) for an IpAddress which + is not already in the table." + ::= { sysTrapReceiverEntry 1 } + +sysTrapReceiverAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "IP address for trap receiver." + ::= { sysTrapReceiverEntry 2 } + +sysTrapReceiverComm OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Community string used for trap messages to this + trap receiver." + ::= { sysTrapReceiverEntry 3 } + +-- the community table + +-- This table is deprecated and replaced by the sysCommunityRo, +-- sysCommunityRw, and sysCommunityRwa objects. New workgroup products +-- will not support this table. Older products will continue to support +-- this table for some time in order to be backwards compatible with +-- existing network management applications. When this table does exist, +-- sysCommunityString.2 is the same value as sysCommunityRo, +-- sysCommunityString.3 is the same value as sysCommunityRw, and +-- sysCommunityString.4 is the same as sysCommunityRwa. + +sysCommunityTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysCommunityEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "The community table (4 entries). This table lists + community strings and their access levels. When an + SNMP message is received by this entity, the + community string in the message is compared with + this table to determine access rights of the + sender. + + Note that this item is only accessible when using + the community string defined in sysCommunityRwa." + ::= { systemGrp 6 } + +sysCommunityEntry OBJECT-TYPE + SYNTAX SysCommunityEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A community table entry." + INDEX { sysCommunityAccess } + ::= { sysCommunityTable 1 } + +SysCommunityEntry ::= + SEQUENCE { + sysCommunityAccess + INTEGER, + sysCommunityString + DisplayString + } + +sysCommunityAccess OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + readOnly(2), -- read but not write all + -- but restricted items + readWrite(3), -- read and write all but + -- restricted items + readWriteAll(4) -- read and write all + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "A value of readWriteAll(4) allows the community + to read and write all objects in the MIB. A + value of readWrite(3) allows the community to + read and write all objects except restricted + items such as community strings, which cannot + be accessed at all. A value of readOnly(2) allows + the community to read all objects except + restricted items. A value of other(1) allows no + access." + ::= { sysCommunityEntry 1 } + +sysCommunityString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Configurable community string with access rights + defined by the value of sysCommunityAccess." + ::= { sysCommunityEntry 2 } + +-- additional system group objects + +sysAttachType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + dualAttach(2), -- port 1 is A and port 2 is B + singleAttach(3),-- port 1 is S and port 2 is M + nullAttach(4), -- port 1 is M and port 2 is M + dualPrio(5) -- dual attach priority mode + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The requested concentrator attachment type. For a + dual attachment concentrator which can be + connected to the trunk ring, the first FDDI port + is configured as A and the second FDDI port is + configured as B. + For a single attachment concentrator which can be + connected beneath another concentrator, the first + FDDI port is configured as M and the second FDDI + port is configured as S. For a null attachment + concentrator which can be located at the root of + the tree, the first two FDDI ports are configured + as M. + This object does not take effect until the + concentrator is reset. The current attachment + type can be determined from snmpFddiPORTPCType + for ports 1 and 2." + DEFVAL { dualAttach } + ::= { systemGrp 7 } + +sysTraffic OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Traffic meter value, i.e. the percentage of + bandwidth utilization for the previous polling + interval." + ::= { systemGrp 8 } + +sysReset OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + reset(2), -- resetting the system + resetMinDown(3) -- reset in minimal down time + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Writing reset(2) to this object resets the + control logic of all modules in the system. + Writing resetMinDown(3) to this object resets the + system with the minimal system down time. The + resetMinDown(3) is only supported in systems with + redundant supervisors. + + This object is deprecated and replaced by + csyScheduledReset in CISCO-SYSTEM-MIB." + ::= { systemGrp 9 } + +sysBaudRate OBJECT-TYPE + SYNTAX INTEGER { + b600(600), + b1200(1200), + b2400(2400), + b4800(4800), + b9600(9600), + b19200(19200), + b38400(38400) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The baud rate in bits per second of the RS-232 + port." + DEFVAL { b9600 } + ::= { systemGrp 10 } + +sysInsertMode OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + standard(2), -- standard insertion + scheduled(3), -- scheduled insertion + graceful(4) -- graceful insertion + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The mode for inserting M-ports into the + concentrator ring." + ::= { systemGrp 11 } + +sysClearMacTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The time (in hundredths of a second) since mac + counters were last cleared. Writing a 0 to this + object causes the mac counters to be cleared." + ::= { systemGrp 12 } + +sysClearPortTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The time (in hundredths of a second) since port + counters were last cleared. Writing a 0 to this + object causes the port counters to be cleared." + ::= { systemGrp 13 } + +-- the FDDI ring map table + +sysFddiRingTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysFddiRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The fddi ring map table. This table lists the + nodes in the FDDI ring(s) to which the system + belongs." + ::= { systemGrp 14 } + +sysFddiRingEntry OBJECT-TYPE + SYNTAX SysFddiRingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A FDDI Ring table entry." + INDEX { sysFddiRingSMTIndex, sysFddiRingAddress } + ::= { sysFddiRingTable 1 } + +SysFddiRingEntry ::= + SEQUENCE { + sysFddiRingSMTIndex + INTEGER, + sysFddiRingAddress + MacAddress, + sysFddiRingNext + MacAddress + } + +sysFddiRingSMTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of the SMT index associated with this + ring." + ::= { sysFddiRingEntry 1 } + +sysFddiRingAddress OBJECT-TYPE + SYNTAX MacAddress -- OCTET STRING (SIZE (6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The MAC address of this node in the FDDI ring." + ::= { sysFddiRingEntry 2 } + +sysFddiRingNext OBJECT-TYPE + SYNTAX MacAddress -- OCTET STRING (SIZE (6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The MAC address of the next node in the FDDI + ring." + ::= { sysFddiRingEntry 3 } + +-- additional system group objects + +sysEnableModem OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the RS-232 port modem control + lines are enabled." + DEFVAL { disabled } + ::= { systemGrp 15 } + +sysEnableRedirects OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether ICMP redirect messages are sent + or received by the system." + DEFVAL { enabled } + ::= { systemGrp 16 } + +sysEnableRmon OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the SNMP agent supports the + RMON MIB." + DEFVAL { enabled } + ::= { systemGrp 17 } + +sysArpAgingTime OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The aging time for the ARP table." + DEFVAL { 1200 } + ::= { systemGrp 18 } + +sysTrafficPeak OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Peak traffic meter value since the last time port + counters were cleared or the system started (see + sysClearPortTime)." + ::= { systemGrp 19 } + +sysTrafficPeakTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The time (in hundredths of a second) since the + peak traffic meter value occurred." + ::= { systemGrp 20 } + +sysCommunityRwa OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, + the community string in the message is compared + with this string first. If it matches, read-write + access is granted to all items in the MIB. If it + doesn't match, the sysCommunityRw string is + compared next. + + Note that this item is only accessible when using + the community string defined in sysCommunityRwa." + ::= { systemGrp 21 } + +sysCommunityRw OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, + the community string in the message is compared + with this string second. If it matches, read-write + access is granted to all items in the MIB except + restricted items such as community strings. + (Restricted items appear empty when read and + return a no such name error when an attempt is + made to write them.) If it doesn't match, the + sysCommunityRo string is compared next. + + Note that this item is only accessible when using + the community string defined in sysCommunityRwa." + ::= { systemGrp 22 } + +sysCommunityRo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, + the community string in the message is compared + with this string third. If it matches, read-only + access is granted to all items in the MIB except + restricted items such as community strings. + (Restricted items appear empty when read.) If it + doesn't match, no access is granted, no response + is sent back to the SNMP requester, and an SNMP + is sent to the SNMP trap receivers if configured. + + Note that this item is only accessible when using + the community string defined in sysCommunityRwa." + ::= { systemGrp 23 } + +sysEnableChassisTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether chassisAlarmOn and + chassisAlarmOff traps in this MIB should be + generated." + DEFVAL { disabled } + ::= { systemGrp 24 } + +sysEnableModuleTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether moduleUp and moduleDown traps + in this MIB should be generated." + DEFVAL { disabled } + ::= { systemGrp 25 } + +sysEnableBridgeTraps OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForNewRootOnly(3), -- read-only + enabledForTopoChangeOnly(4) -- read-only + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether newRoot and topologyChange + traps in the BRIDGE-MIB (RFC 1493) should be + generated. + + enabled -- both newRoot and topologyChange + traps are enabled. + + disabled -- both of the newRoot and + topologyChange traps are disabled. + + enabledForNewRootOnly -- only the newRoot trap is + enabled. This value is read-only. + + enabledForTopoChangeOnly -- only the + topologyChange trap is enabled. This + value is read-only. + + This object is deprecated and replaced by + stpxNotificationEnable in + CISCO-STP-EXTENSIONS-MIB." + DEFVAL { disabled } + ::= { systemGrp 26 } + +sysIpVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This entity's IP address Virtual LAN + association." + DEFVAL { 1 } + ::= { systemGrp 27 } + +sysConfigChangeTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The time (in hundredths of a second) since the + configuration of the system was last changed." + ::= { systemGrp 28 } + +sysEnableRepeaterTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the traps in the REPEATER-MIB + (RFC1516) should be generated." + DEFVAL { disabled } + ::= { systemGrp 29 } + +sysBannerMotd OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Message of the day banner which is displayed on + the Command Line Interface before log in." + ::= { systemGrp 30 } + +sysEnableIpPermitTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the IP permit traps in this MIB + should be generated." + DEFVAL { disabled } + ::= { systemGrp 31 } + +-- the system traffic meter table + +sysTrafficMeterTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysTrafficMeterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The system traffic meter table. This table + lists the traffic meters available in the + system." + ::= { systemGrp 32 } + +sysTrafficMeterEntry OBJECT-TYPE + SYNTAX SysTrafficMeterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A traffic meter table entry." + INDEX { sysTrafficMeterType} + ::= { sysTrafficMeterTable 1 } + +SysTrafficMeterEntry ::= + SEQUENCE { + sysTrafficMeterType + INTEGER, + sysTrafficMeter + INTEGER, + sysTrafficMeterPeak + INTEGER, + sysTrafficMeterPeakTime + TimeTicks + } + +sysTrafficMeterType OBJECT-TYPE + SYNTAX INTEGER { + systemSwitchingBus(1), -- system switching bus + -- for WS-X5530 supervisor module + switchingBusA(2), -- switching bus A + switchingBusB(3), -- switching bus B + switchingBusC(4) -- switching bus C + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of traffic meter." + ::= { sysTrafficMeterEntry 1 } + +sysTrafficMeter OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Traffic meter value, i.e. the percentage of + bandwidth utilization for the previous polling + interval." + ::= { sysTrafficMeterEntry 2 } + +sysTrafficMeterPeak OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Peak traffic meter value since the system + started." + ::= { sysTrafficMeterEntry 3 } + +sysTrafficMeterPeakTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The time (in hundredths of a second) since the + peak traffic meter value occurred." + ::= { sysTrafficMeterEntry 4 } + +sysEnableVmpsTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the vmVmpsChange trap defined + in CISCO-VLAN-MEMBERSHIP-MIB should be generated." + DEFVAL { disabled } + ::= { systemGrp 33} + +sysConfigChangeInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates which NVRAM block is changed by whom." + ::= { systemGrp 34 } + +sysEnableConfigTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether sysConfigChange trap in this + MIB should be generated." + DEFVAL { disabled } + ::= { systemGrp 35 } + +sysConfigRegister OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (2)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The value of configuration register that will be + used by the supervisor module when the system is + restarted. + This MIB object is only supported in systems with + supervisor modules having ROMMON support. + + The lowest four bits of the configuration register + (bits 3,2,1, and 0) form the boot field and the + boot field determines whether the system boots + from as the following: + 0000 -- stay in ROM monitor + 0001 -- boot from the first bootable system + images on the bootflash + 0010 to 1111 + -- boot from the first bootable system + images specified in the sysBootVariable + + The bit 5(0x0020) indicates whether the + configuration file specified in + sysStartupConfigSourceFile will beused recurringly + or not whenever the system resets. If this bit is + not set, the configuration file(s) specified in + sysStartupConfigSourceFile will only be used once + and the value of sysStartupConfigSourceFile will + be reset to empty string automatically during the + next system reset. + + If the bit 6(0x0040) is set, the system will start + with default configuration. + + The bits 11,12 (0x0800, 0x1000) are used to + specify the console line speed in ROM monitor mode + as the following: + 00 -- 9600 + 01 -- 1200 + 10 -- 4800 + 11 -- 2400 + + The unspecified bits are not used." + DEFVAL { '010f'h } -- "01 0F" + ::= { systemGrp 36 } + +sysBootVariable OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A list of the system boot images in the BOOT + environment variable on supervisor modules with + ROMMON. The format of sysBootVariable should be: + :[],1;{:[],1;...} + If the [fileName] is not specified, the first file + on the will be used. + + This MIB object is only supported in systems + having supervisor modules with ROMMON." +-- DEFVAL { "bootflash:" } + ::= { systemGrp 37 } + +sysBootedImage OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The name of the system boot image which the + system booted from. + This MIB object is only supported in the system + with Supervisor module 3 present." + ::= { systemGrp 38 } + +sysEnableEntityTrap OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether entConfigChange trap in the + ENTITY-MIB should be generated." + DEFVAL { disabled } + ::= { systemGrp 39 } + +sysEnableStpxTrap OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForInconOnly(3), -- read-only + enabledForRootOnly(4), -- read-only + enabledForLoopOnly(5), -- read-only + enabledForInconRootOnly(6), -- read-only + enabledForInconLoopOnly(7), -- read-only + enabledForRootLoopOnly(8) -- read-only + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether stpxInconsistencyUpdate, + stpxRootInconsistencyUpdate and + stpxLoopInconsistencyUpdate notifications in + CISCO-STP-EXTENSIONS-MIB should be generated. + + enabled -- the stpxInconsistencyUpdate, + stpxRootInconsistencyUpdate and + stpxLoopInconsistencyUpdate traps are + all enabled. + + disabled -- the stpxInconsistencyUpdate, + stpxRootInconsistencyUpdate and + stpxLoopInconsistencyUpdate traps + are all disabled. + + enabledForInconOnly -- only the + stpxInconsistencyUpdate trap is + enabled. This value is read-only. + + enabledForRootOnly -- only the + stpxRootInconsistencyUpdate trap is + enabled. This value is read-only. + + enabledForLoopOnly -- only the + stpxLoopInconsistencyUpdate trap is + enabled. This value is read-only. + + enabledForInconRootOnly -- only the + stpxInconsistencyUpdate and + stpxRootInconsistencyUpdate traps are + enabled. This value is read-only. + + enabledForInconLoopOnly -- only the + stpxInconsistencyUpdate and + stpxLoopInconsistencyUpdate traps are + enabled. This value is read-only. + + enabledForRootLoopOnly -- only the + stpxRootInconsistencyUpdate and + stpxLoopInconsistencyUpdate traps are + enabled. This value is read-only. + + This object is deprecated and replaced by + stpxNotificationEnable in + CISCO-STP-EXTENSIONS-MIB." + DEFVAL { disabled } + ::= { systemGrp 40 } + +sysExtendedRmonVlanModeEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the Extended RMON VlanMode + feature is enabled or not. If it is set to + enabled(1), hostTable (rmon 4) will provide the + information of a list of VLANs instead of a list + of MAC addresses for a monitored trunking port." + DEFVAL { disabled } + ::= { systemGrp 41 } + +sysExtendedRmonNetflowPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The password for enabling the Extended RMON + Netflow feature and this object has to be set + before setting sysExtendedRmonNetflowEnable to + enabled(1). When reading this object, it will + return empty string. + + If the platform supports + sysExtendedRmonNetflowModuleMask object, this + object will be not be supported." + ::= { systemGrp 42 } + +sysExtendedRmonNetflowEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the Extended RMON Netflow + feature is enabled or not. Setting this object to + disabled(2), will clear + sysExtendedRmonNetflowPassword automatically. + Setting this object to enabled(1) will be rejected + if sysExtendedRmonNetflowPassword does not contain + a valid password. + + If the platform supports + sysExtendedRmonNetflowModuleMask object, this + object will not be supported." + DEFVAL { disabled } + ::= { systemGrp 43 } + +sysExtendedRmonVlanAgentEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the Extended RMON VlanAgent + feature is enabled or not. If it is set to + enabled(1), the extended RMON will also provide + the information on VLAN based interface in + addition to the port based interface for the + monitored traffic. + Setting this object to enabled(1), it will consume + more CPU for processing each monitored frame and + affect Extended RMON performance." + DEFVAL { disabled } + ::= { systemGrp 44 } + +sysExtendedRmonEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + noNAMPresent(3) -- No Network Analysis Module + -- present + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the SNMP agent supports the + extended RMON feature. noNAMPresent(3) is a + read-only value and the agent will return this + value when the sysEnableExtendedRmon is set to + enabled(1), but Network Analysis module is not + present in the system." + DEFVAL { enabled } + ::= { systemGrp 45 } + +sysConsolePrimaryLoginAuthentication OBJECT-TYPE + SYNTAX INTEGER{ tacacs(1), + radius(2), + local(3) -- read-only + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether TACACS+ or RADIUS is the + primary login authentication, i.e which method + will be tried first for a console session. If + tacacsLoginAuthentication and + radiusLoginAuthentication are set to disabled + then sysConsolePrimaryLoginAuthentication will + have a value of local(3). + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + ::= { systemGrp 46 } + +sysConsolePrimaryEnableAuthentication OBJECT-TYPE + SYNTAX INTEGER{ tacacs(1), + radius(2), + local(3) -- read-only + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether TACACS+ or RADIUS is the + primary enable authentication, i.e which method + will be tried first for a console session. If + tacacsEnableAuthentication and + radiusEnableAuthentication are set to disabled + then sysConsolePrimaryEnableAuthentication will + have a value of local(3). + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + ::= { systemGrp 47 } + +sysTelnetPrimaryLoginAuthentication OBJECT-TYPE + SYNTAX INTEGER{ tacacs(1), + radius(2), + local(3) -- read-only + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether TACACS+ or RADIUS is the + primary login authentication, i.e which method + will be tried first for a telnet session. If + tacacsLoginAuthentication and + radiusLoginAuthentication are set to disabled then + sysTelnetPrimaryLoginAuthentication will have a + value of local(3). + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + ::= { systemGrp 48 } + +sysTelnetPrimaryEnableAuthentication OBJECT-TYPE + SYNTAX INTEGER{ tacacs(1), + radius(2), + local(3) -- read-only + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether TACACS+ or RADIUS is the + primary enable authentication, i.e which method + will be tried first for a telnet session. If + tacacsEnableAuthentication and + radiusEnableAuthentication are set to disabled + then sysTelnetPrimaryEnableAuthentication will + have a value of local(3). + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + ::= { systemGrp 49 } + +sysStartupConfigSource OBJECT-TYPE + SYNTAX INTEGER{ flashFileRecurring(1), + flashFileNonRecurring(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the configuration file(s) + specified in sysStartupConfigSourceFile will be + used recurringly or not whenever the system + resets. + Setting this object to flashFileNonRecurring(2), + the configuration file(s) specified in + sysStartupConfigSourceFile will only be used once + and the value of sysStartupConfigSourceFile will + be reset to empty string automatically during the + next system reset. + + This MIB object is only supported in systems with + SupG supervisor models or supervisor models that + have flash file system support." + ::= { systemGrp 50 } + +sysStartupConfigSourceFile OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates which configuration file(s) on the + flash device will be used during the next system + startup. + If the value of this MIB object contains one or + multiple valid configuration file(s), then the + valid configuration file(s) will reconfigure the + system during the next system startup one by one + in the order specified. If the value of this MIB + object does not contain the valid configuration + file(s) on the device, the NVRAM configuration + will be used instead. + + For supervisor models wsx5540 and wsx5550, only + 'cfg1' and 'cfg2' are valid file names. + + For supervisor models with the flash file system + support, the valid file name has the format of + '[;...]'. + + This MIB object is only supported in systems with + supervisor models wsx5540 and wsx5550 or + supervisor models with the flash file system + support." + ::= { systemGrp 51 } + +sysConfigSupervisorModuleNo OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the supervisor module (active or + standby, if applicable) that the MIB objects + sysConfigRegister, sysBootVariable, + sysStartupConfigSource, and + sysStartupConfigSourceFile are specified for. + + This MIB object is only supported by the + supervisor modules with the flash file system + feature support. The default value for this MIB + object is set to the active supervisor module + number." + ::= { systemGrp 52 } + +sysStandbyPortEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the standby port feature is + enabled or not. If this object is set to + enabled(1), the uplink ports on the standby + supervisor module are activated; otherwise, the + uplink ports on the standby supervisor remain + inactive." + DEFVAL {disabled } + ::= { systemGrp 53 } + +sysPortFastBpduGuard OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether BPDU Guard for Spanning Tree + Port Fast Start feature is enabled or not. If the + value of this object is set to enabled(1), then + when the switch receives a BPDU from a port with + the value of portSpantreeFastStart object set to + enabled(1), that port is immediately disabled. + + This object is deprecated and replaced by + stpxFastStartBpduGuardEnable in + CISCO-STP-EXTENSIONS-MIB." + DEFVAL { disabled } + ::= { systemGrp 54 } + +sysErrDisableTimeoutEnable OBJECT-TYPE + SYNTAX BITS { + other(0), + udld(1), + duplexMismatch(2), + bpduPortGuard(3), + channelMisconfig(4), + crossBarFallBack(5), + gl2ptIngressLoop(6), + gl2ptThresholdExceed(7), + bcastSuppression(8), + arpInspectionRate(9), + noStaticInlinePwr(10), + camMonitor(11), + gl2ptCdpThresholdExceed(12), + gl2ptStpThresholdExceed(13), + gl2ptVtpThresholdExceed(14), + linkRxCrc(15), + linkTxCrc(16), + linkInErrors(17), + packetBufferError(18), + ethernetOam(19), + gl2ptEoamThresholdExceed(20) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether errdisable timeout feature is + enabled for each of the causes or not. The + other(0) is for all causes other than: + udld(1), + duplexMismatch(2), + bpduPortGuard(3), + channelMisconfig(4), + crossBarFallBack(5), (only supported on platforms + that support this errdisable + reason.) + gl2ptIngressLoop(6), (only supported on platforms + that support this errdisable + reason.) + gl2ptThresholdExceed(7), (only supported on + platforms that support this + errdisable reason.) + bcastSuppression(8), (only supported on platforms + that support this errdisable + reason.) + arpInspectionRate(9), (only supported on platforms + that support this errdisable + reason.) + noStaticInlinePwr(10), (only supported on + platforms that support this + errdisable reason.) + camMonitor(11), (only supported on + platforms that support this + errdisable reason.) + gl2ptCdpThresholdExceed(12), (only supported on + platforms that support this + errdisable reason.) + gl2ptStpThresholdExceed(13), (only supported on + platforms that support this + errdisable reason.) + gl2ptVtpThresholdExceed(14), (only supported on + platforms that support this + errdisable reason.) + linkRxCrc(15), (only supported on + platforms that support this + errdisable reason.) + linkTxCrc(16), (only supported on + platforms that support this + errdisable reason.) + linkInErrors(17), (only supported on + platforms that support this + errdisable reason.) + packetBufferError(18), (only supported on + platforms that support this + errdisable reason.) + ethernetOam(19), (only supported on + platforms that support this + errdisable reason.) + gl2ptEoamThresholdExceed(20), (only supported on + platforms that support this + errdisable reason.) + + A port is in errdisable state if ifAdminStatus of + the port in the ifTable is up(1) while the port is + shutdown during runtime by the system due to error + detection. If the value of object + portAdditionalOperStatus for the port is + errdisable(11) then that port is in errdisable + state. + + By setting the bit corresponding to a cause to + '1', this errdisable timeout feature is enabled + on the system for the ports that are put into + errdisable state by that cause, then those ports + can be re-enabled automatically during the timeout + interval as specified by + sysErrDisableTimeoutInterval object after they + are put into errdisable state by that cause; + otherwise, by setting the bit corresponding to a + cause to '0', this errdisable timeout feature is + disabled on the system for the ports that are put + into errdisable state by that cause, then those + ports will remain shutdown until the user + re-enable it manually." + DEFVAL { { } } + ::= { systemGrp 55 } + +sysErrDisableTimeoutInterval OBJECT-TYPE + SYNTAX INTEGER (30..86400) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the timeout interval in seconds for + errdisable timeout feature." + DEFVAL { 300 } + ::= { systemGrp 56 } + +sysTrafficMonitorHighWaterMark OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the high watermark for the switching + bus traffic in percentage. Syslog messages will be + generated if the switching bus traffic goes over + this object value during the polling interval. + Setting this object value to 100 would mean no + syslog message would be generated. For systems + with 3 switching buses, high watermark and syslog + will be for each switching bus." + DEFVAL { 100 } + ::= { systemGrp 57 } + +sysHighAvailabilityEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether High System Availability + feature is enabled or not. If this feature is + enabled, the active supervisor's layer-2 protocol + state will be synched to the standby supervisor + module, thus maintaining an up-to-date protocol + data on the standby supervisor whenever possible. + + This object is supported in systems with High + System Availability feature support." + DEFVAL { false } + ::= { systemGrp 58 } + +sysHighAvailabilityVersioningEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether support for supervisor software + image versioning (i.e., the capability to run + different images on the active and standby + supervisors) for the High System Availability + feature is enabled or not. + + This object is supported in systems with High + System Availability feature support." + DEFVAL { false } + ::= { systemGrp 59 } + +sysHighAvailabilityOperStatus OBJECT-TYPE + SYNTAX INTEGER { + running(1), + notRunning(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the operational status of High System + Availability feature. If the value of this object + is notRunning(2), then the reason why this feature + is actually not running is specified by the object + sysHighAvailabilityNotRunningReason. If the value + of this object is running(1), then the value of + object sysHighAvailabilityOperReason is empty + string. + + This object is supported in systems with High + System Availability feature support." + ::= { systemGrp 60 } + +sysHighAvailabilityNotRunningReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the reason why High System Availability + feature is not running when the value of + sysHighAvailabilityOperStatus is notRunning(2). + The value of this object is empty string when + the value of sysHighAvailabilityOperStatus is + running(1). + + This object is supported in systems with High + System Availability feature support." + ::= { systemGrp 61 } + +sysExtendedRmonNetflowModuleMask OBJECT-TYPE + SYNTAX BITS { + module1(0), + module2(1), + module3(2), + module4(3), + module5(4), + module6(5), + module7(6), + module8(7), + module9(8), + module10(9), + module11(10), + module12(11), + module13(12), + module14(13), + module15(14), + module16(15) + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates Netflow Export Data (NDE) to be sent to + which Network Analysis Modules (NAM) in the same + chassis. + + If users set a bit from off to on, the system will + check the corresponding module is a NAM or not. + If it is not, the system should return error. + + This mib object will only be supported by the + system that can support the multiple NAM modules." + ::= { systemGrp 62 } + +sshPublicKeySize OBJECT-TYPE + SYNTAX INTEGER (0 | 512..2048) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates public key size in bits. In write, if + a key does not exist, a value between 512 and 2048 + will generate a RSA public key with the value as + its key size for secured shell access. If a key + exists a value other than 0 is valid, indicating a + clear key operation. In read, the current key size + is returned if a key exists. If not,a 0 is + returned." + ::= { systemGrp 63 } + +sysMaxRmonMemory OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the maximum percentage of the memory + usage for RMON." + ::= { systemGrp 64 } + +sysMacReductionAdminEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether Mac Reduction feature (to + reduce the number of MAC addresses used in + bridge identifier) is administratively enabled + on the device or not." + ::= { systemGrp 65 } + +sysMacReductionOperEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether Mac Reduction feature (to + reduce the number of MAC addresses used in + bridge identifier) is operationaly enabled + on the device or not. + + If the value of this object is true(1), then + the accepted values for dot1dStpPriority + in BRIDGE-MIB should be multiples of 4096 plus + bridge instance ID, such as VlanIndex. Changing + this object value might cause the values of + dot1dBaseBridgeAddress and dot1dStpPriority + in BRIDGE-MIB to be changed also." + ::= { systemGrp 66 } + +sysStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The operational status of the system." + ::= { systemGrp 67 } + +-- the chassis group + +-- Implementation of the chassis group is current for all Cisco +-- Workgroup Stack products. + +chassisSysType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + wsc1000(3), -- 2+8 Port CDDI Concentrator + wsc1001(4), -- 2+8 Port FDDI Concentrator + wsc1100(5), -- 2+16 Port FDDI/CDDI Concentrator + wsc5000(6), -- 5 slot Switch + wsc2900(7), -- closed 2 slot Switch + wsc5500(8), -- 13 slot Switch + wsc5002(9), -- 2 slot Switch + wsc5505(10), -- 5 slot Switch + wsc1200(11), -- 2+8 Port FDDI/Ethernet Switch + wsc1400(12), -- 2 slot FDDI/CDDI Concentrator + wsc2926(13), -- closed 2 slot Switch + wsc5509(14), -- 9 slot Switch + wsc6006(15), -- 6 slot Switch + wsc6009(16), -- 9 slot Switch + wsc4003(17), -- 3 slot Switch + wsc5500e(18),-- 13 slot Switch + wsc4912g(19), -- closed 2 slot Switch + wsc2948g(20), -- closed 2 slot Switch + wsc6509(22), -- 9 slot Switch + wsc6506(23), -- 6 slot Switch + wsc4006(24), -- 6 slot Switch + wsc6509NEB(25),-- 9 slot Verticle Chassis Switch + wsc2980g(26), -- closed 3 slot Switch + wsc6513(27), -- 13 slot Switch + wsc2980ga(28), -- closed 3 slot Switch + cisco7603(30), -- 3 slot Chassis (Nebula-SP) + cisco7606(31), -- 6 slot Chassis (Seaquest-SP) + cisco7609(32), -- 9 slot chassis + wsc6503(33), -- 3 slot Chassis + wsc6509NEBA(34), -- 9 slot Chassis + wsc4507(35), -- 7 slot Chassis (Galaxy3) + wsc4503(36), -- 3 slot Chassis (Galaxy5) + wsc4506(37), -- 6 slot Chassis (Galaxy6) + wsc65509(38), -- 9 slot Chassis + cisco7613(40), -- 13 slot Chassis + wsc2948ggetx(41), -- closed 2 slot Switch + cisco7604(42), -- 4 slot Chassis + wsc6504e(43), -- 4 slot Chassis + mec6524gs8s(45), -- closed 1 slot switch + mec6524gt8s(48), -- closed 1 slot switch + cisco7603s(52) -- 3 slot Chassis + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The chassis system type." + ::= { chassisGrp 1 } + +chassisBkplType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + fddi(2), -- FDDI + fddiEthernet(3),-- FDDI and Ethernet + giga(4), -- 1.2 Gigabit switch + giga3(5), -- 3.6 Gigabit switch + giga3E(6), -- 3.6 Gigabit switch + -- enhanced + giga12(7), -- 12 Gigabit switch + giga16(8), -- 16 Gigabit switch + giga40(9) -- 40 Gigabit switch + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The chassis backplane type." + ::= { chassisGrp 2 } + +chassisPs1Type OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + none(2), -- no power supply + w50(3), -- 50 watt supply + w200(4), -- 200 watt supply + w600(5), -- 600 watt supply + w80(6), -- 80 watt supply + w130(7), -- 130 watt supply + wsc5008(8), -- 376 watt supply + wsc5008a(9), -- 376 watt supply w/PFC + w175(10), -- 175 watt supply + wsc5068(11), -- 376 watt supply DC + wsc5508(12), -- 1100 watt supply + wsc5568(13), -- 1200 watt supply DC + wsc5508a(14), -- 1200 watt supply + w155(15), -- 155 watt supply + w175pfc(16), -- 175 watt supply w/PFC + w175dc(17), -- 175 watt supply DC + wsc5008b(18), -- 376 watt supply + -- w/PFC, OCP + wsc5008c(19), -- 436 watt supply w/PFC + wsc5068b(20), -- 376 watt supply DC + -- w/OCP + wscac1000(21), -- 1000 watt supply AC + wscac1300(22), -- 1300 watt supply AC + wscdc1000(23), -- 1000 watt supply DC + wscdc1360(24), -- 1360 watt supply DC + wsx4008(25), -- 400 watt supply + wsc5518(26), -- 805 watt supply AC + wsc5598(27), -- 805 watt supply DC + w120(28), -- 120 watt + externalPS(29), -- external power supply + wscac2500w(30), -- 2500 watt supply AC + wscdc2500w(31), -- 2500 watt supply DC + wsx4008dc(32), -- 400 watt supply DC + wscac4000w(33), -- 4000 watt supply AC + pwr4000dc(34), -- 4000 watt supply DC + pwr950ac(35), -- 950 watt supply AC + pwr950dc(36), -- 950 watt supply DC + pwr1900ac(37), -- 1900 watt supply AC + pwr1900dc(38), -- 1900 watt supply DC + pwr1900ac6(39), -- 1900 watt supply + -- AC/6 slots + wsx4008ac650w(42), -- 650 watt supply AC + wsx4008dc650w(43), -- 650 watt supply DC + wscac3000w(44), -- 3000 watt supply AC + pwrc451000ac(46), -- 1000 watt supply AC + pwrc452800acv(47),-- 2800 watt supply AC + pwrc451300acv(48),-- 1300 watt supply AC + pwrc451400dcp(49),-- 1400 watt supply DC + wscdc3000w(50), -- 3000 watt supply DC + pwr1400ac(51), -- 1400 watt supply AC + w156(52), -- 156 watt supply AC + wscac6000w(53), -- 6000 watt supply AC + pwr2700ac(54), -- 2700 watt supply AC + pwr2700dc(55), -- 2700 watt supply DC + wscac8700we(58), -- 8700 watt supply AC + pwr2700ac4(59), -- 2700 watt supply AC + pwr2700dc4(60), -- 2700 watt supply DC + pwr400dc(63), -- 400 watt supply DC + pwr400ac(64) -- 400 watt supply AC + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Type of power supply number 1." + ::= { chassisGrp 3 } + +chassisPs1Status OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of power supply number 1. If the status is + not ok, the value of chassisPs1TestResult gives + more detailed information about the power supply's + failure condition(s)." + ::= { chassisGrp 4 } + +chassisPs1TestResult OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Test result for power supply number 1. A zero + indicates that the supply passed all tests. Bits + set in the result indicate error conditions." + ::= { chassisGrp 5 } + +chassisPs2Type OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + none(2), -- no power supply + w50(3), -- 50 watt supply + w200(4), -- 200 watt supply + w600(5), -- 600 watt supply + w80(6), -- 80 watt supply + w130(7), -- 130 watt supply + wsc5008(8), -- 376 watt supply + wsc5008a(9), -- 376 watt supply w/PFC + w175(10), -- 175 watt supply + wsc5068(11), -- 376 watt supply DC + wsc5508(12), -- 1100 watt supply + wsc5568(13), -- 1200 watt supply DC + wsc5508a(14), -- 1200 watt supply + w155(15), -- 155 watt supply + w175pfc(16), -- 175 watt supply w/PFC + w175dc(17), -- 175 watt supply DC + wsc5008b(18), -- 376 watt supply + -- w/PFC, OCP + wsc5008c(19), -- 436 watt supply w/PFC + wsc5068b(20), -- 376 watt supply DC + -- w/OCP + wscac1000(21), -- 1000 watt supply AC + wscac1300(22), -- 1300 watt supply AC + wscdc1000(23), -- 1000 watt supply DC + wscdc1360(24), -- 1360 watt supply DC + wsx4008(25), -- 400 watt supply + wsc5518(26), -- 805 watt supply AC + wsc5598(27), -- 805 watt supply DC + w120(28), -- 120 watt + externalPS(29), -- external power supply + wscac2500w(30), -- 2500 watt supply AC + wscdc2500w(31), -- 2500 watt supply DC + wsx4008dc(32), -- 400 watt supply DC + wscac4000w(33), -- 4000 watt supply AC + pwr4000dc(34), -- 4000 watt supply DC + pwr950ac(35), -- 950 watt supply AC + pwr950dc(36), -- 950 watt supply DC + pwr1900ac(37), -- 1900 watt supply AC + pwr1900dc(38), -- 1900 watt supply DC + pwr1900ac6(39), -- 1900 watt supply + -- AC/6 slots + wsx4008ac650w(42), -- 650 watt supply AC + wsx4008dc650w(43), -- 650 watt supply DC + wscac3000w(44), -- 3000 watt supply AC + pwrc451000ac(46), -- 1000 watt supply AC + pwrc452800acv(47),-- 2800 watt supply AC + pwrc451300acv(48),-- 1300 watt supply AC + pwrc451400dcp(49),-- 1400 watt supply DC + wscdc3000w(50), -- 3000 watt supply DC + pwr1400ac(51), -- 1400 watt supply AC + w156(52), -- 156 watt supply AC + wscac6000w(53), -- 6000 watt supply AC + pwr2700ac(54), -- 2700 watt supply AC + pwr2700dc(55), -- 2700 watt supply DC + wscac8700we(58), -- 8700 watt supply AC + pwr2700ac4(59), -- 2700 watt supply AC + pwr2700dc4(60), -- 2700 watt supply DC + pwr400dc(63), -- 400 watt supply DC + pwr400ac(64) -- 400 watt supply AC + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Type of power supply number 2." + ::= { chassisGrp 6 } + +chassisPs2Status OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of power supply number 2. If the status is + not ok, the value of chassisPs2TestResult gives + more detailed information about the power supply's + failure condition(s)." + ::= { chassisGrp 7 } + +chassisPs2TestResult OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Test result for power supply number 2. A zero + indicates that the supply passed all tests. Bits + set in the result indicate error conditions." + ::= { chassisGrp 8 } + +chassisFanStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of the chassis fan. If the status is not + ok, the value of chassisFanTestResult gives more + detailed information about the fan's failure + condition(s)." + ::= { chassisGrp 9 } + +chassisFanTestResult OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Test result for the chassis fan. A zero indicates + that the fan passed all tests. Bits set in the + result indicate error conditions." + ::= { chassisGrp 10 } + +chassisMinorAlarm OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The chassis minor alarm status." + ::= { chassisGrp 11 } + +chassisMajorAlarm OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The chassis major alarm status." + ::= { chassisGrp 12 } + +chassisTempAlarm OBJECT-TYPE + SYNTAX INTEGER { + off(1), -- temperature within normal + -- range + on(2), -- temperature too high + critical(3) -- critical temperature, + -- system shut down imminent + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The chassis temperature alarm status." + ::= { chassisGrp 13 } + +chassisNumSlots OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of slots in the chassis available for + plug-in modules." + ::= { chassisGrp 14 } + +chassisSlotConfig OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An indication of which slots in the chassis have + modules inserted. This is an integer value with + bits set to indicate configured modules. It can be + interpreted as a sum of f(x) as x goes from 1 to + the number of slots, where f(x) = 0 for no module + inserted and f(x) = exp(2, x-1) for a module + inserted." + ::= { chassisGrp 15 } + +chassisModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The manufacturer's model number for the chassis." + ::= { chassisGrp 16 } + +chassisSerialNumber OBJECT-TYPE + SYNTAX INTEGER (0..999999999) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The serial number of the chassis in a numeric + format. If the chassis uses an alphanumeric + serial number, this MIB object will return 0. + + This object is deprecated and replaced by + entPhysicalSerialNum in ENTITY-MIB." + ::= { chassisGrp 17 } + +-- chassis component table + +chassisComponentTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisComponentEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A list of the chassis related components in the + chassis. + + This table is deprecated and replaced by + entPhysicalTable in ENTITY-MIB." + ::= { chassisGrp 18 } + +chassisComponentEntry OBJECT-TYPE + SYNTAX ChassisComponentEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "Entry containing information about one component + in the chassis." + INDEX { chassisComponentIndex } + ::= { chassisComponentTable 1 } + +ChassisComponentEntry ::= + SEQUENCE { + chassisComponentIndex + INTEGER, + chassisComponentType + INTEGER, + chassisComponentSerialNumber + DisplayString, + chassisComponentHwVersion + DisplayString, + chassisComponentModel + DisplayString + } + +chassisComponentIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "A unique value for each chassis related component + within the chassis." + ::= { chassisComponentEntry 1 } + +chassisComponentType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), -- unknown chassis component + wsc6000cl(2), -- clock module for cat6000 + wsc6000vtt(3), -- VTT module for cat6000 + wsc6000tempSensor(4), -- Temp Sensor for cat6000 + wsc6513Clock(5), -- clock for WS-C6513 + clk7600(6), -- clock module for cisco7600 + ws9SlotFan(7), -- Catalyst 6000 Fan Tray for + -- 9-Slot Systems + fanMod9(8), -- Cisco 7609 and Catalyst + -- 6509-NEB-A Fan Tray + wsc6506eFan(10), -- Catalyst 6506 E FAN Tray + wsc6509eFan(11), -- Catalyst 6509 E FAN Tray + wsc6503eFan(13), -- Catalyst 6503 E FAN Tray + wsc6000vtte(14), -- VTT module for cat6000 E + fanMod4Hs(15), -- Fan module for cisco7604 + -- and WS-C6504 + fan6524(16), -- Catalyst 6524 Series FAN Tray + fanMod6Shs(17), -- 6-slot FAN for CISCO7606-S + fanMod9Shs(18), -- 9-slot FAN for CISCO7609-S + fanMod9St(19), -- 9-slot FAN for CISCO7609-S + fanMod3Hs(21) -- Fan Tray for CISCO7603-S + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The type of the chassis component." + ::= { chassisComponentEntry 2 } + +chassisComponentSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0 .. 20)) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The serial number of the chassis component." + ::= { chassisComponentEntry 3 } + +chassisComponentHwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0 .. 20)) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The hardware version of the chassis component." + ::= { chassisComponentEntry 4 } + +chassisComponentModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0 .. 20)) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The manufacturer's model number for the chassis + component." + ::= { chassisComponentEntry 5 } + +chassisSerialNumberString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The serial number of the chassis. This MIB object + will return the chassis serial number for any + chassis that either a numeric or an alphanumeric + serial number is being used." + ::= { chassisGrp 19 } + +chassisPs3Type OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + none(2), -- no power supply + wsx4008(25), -- 400 watt supply + wsx4008dc(32), -- 400 watt supply DC + wsx4008ac650w(42), -- 650 watt supply AC + wsx4008dc650w(43) -- 650 watt supply DC + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Type of power supply number 3. This object is + only supported by systems that can have 3 or more + power supplies." + ::= { chassisGrp 20 } + +chassisPs3Status OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of power supply number 3. If the status is + not ok, the value of chassisPs3TestResult gives + more detailed information about the power supply's + failure condition(s). This object is only + supported by systems that can have 3 or more + power supplies." + ::= { chassisGrp 21 } + +chassisPs3TestResult OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Test result for power supply number 3. A zero + indicates that the supply passed all tests. Bits + set in the result indicate error conditions. This + object is only supported by systems that can + have 3 or more power supplies." + ::= { chassisGrp 22 } + +chassisPEMInstalled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether Power Entry Module is installed + into the Chassis or not. Power Entry Module is a + connection into the system for an external + power supply of -48 Volts. This object is only + supported by systems that can have 3 or more power + supplies." + ::= { chassisGrp 23 } + + + +-- the module group + +moduleTable OBJECT-TYPE + SYNTAX SEQUENCE OF ModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of module entries. The number of entries + is the number of modules in the chassis." + ::= { moduleGrp 1 } + +moduleEntry OBJECT-TYPE + SYNTAX ModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing information about one module in + the chassis." + INDEX { moduleIndex } + ::= { moduleTable 1 } + +ModuleEntry ::= + SEQUENCE { + moduleIndex + INTEGER, + moduleType + INTEGER, + moduleSerialNumber + INTEGER, + moduleHwHiVersion + INTEGER, + moduleHwLoVersion + INTEGER, + moduleFwHiVersion + INTEGER, + moduleFwLoVersion + INTEGER, + moduleSwHiVersion + INTEGER, + moduleSwLoVersion + INTEGER, + moduleStatus + INTEGER, + moduleTestResult + INTEGER, + moduleAction + INTEGER, + moduleName + DisplayString, + moduleNumPorts + INTEGER, + modulePortStatus + OCTET STRING, + moduleSubType + INTEGER, + moduleModel + DisplayString, + moduleHwVersion + DisplayString, + moduleFwVersion + DisplayString, + moduleSwVersion + DisplayString, + moduleStandbyStatus + INTEGER, + moduleIPAddress + IpAddress, + moduleIPAddressVlan + VlanIndex, + moduleSubType2 + INTEGER, + moduleSlotNum + INTEGER, + moduleSerialNumberString + DisplayString, + moduleEntPhysicalIndex + PhysicalIndex, + moduleAdditionalStatus + BITS + } + +moduleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A unique value for each module within the + chassis." + ::= { moduleEntry 1 } + +moduleType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + empty(2), -- nothing installed + wsc1000(3), -- 2+8 Port CDDI Concentrator + wsc1001(4), -- 2+8 Port FDDI Concentrator + wsc1100(5), -- 2+16 Port FDDI/CDDI Concentrator + wsc1200(11), -- 2+8 Port FDDI/Ethernet Switch + wsc1400(12), -- 2 slot FDDI/CDDI Concentrator + + -- the following modules are for the WS-C1400 + wsx1441(13), -- 8 port Multi Mode FDDI (MIC connector) + wsx1444(14), -- 8 port Single Mode FDDI (ST connector) + wsx1450(15), -- 2 port MM FDDI (MIC), 12 port + -- CDDI(RJ-45) + wsx1483(16), -- 16 port CDDI (RJ-45 connector) + wsx1454(17), -- 2 port SM FDDI (ST), 12 port CDDI + -- (RJ-45) + wsx1455(18), -- 10 port MM FDDI (SC connector) + wsx1431(19), -- 4 port Multi Mode FDDI (MIC connector) + wsx1465(20), -- 2 port MM FDDI (SC), 12 port CDDI + -- (RJ-45) + wsx1436(21), -- 4 port SM FDDI (ST), 4 port MM FDDI + -- (MIC) + wsx1434(22), -- 4 port Single Mode FDDI (ST connector) + + -- the following modules are for the WSC-5000 series + wsx5009(23), -- Supervisor Module 1, 2 100 BaseTX + -- (RJ-45/MII) + wsx5013(24), -- 24 port 10BaseT (RJ-45 connector) + wsx5011(25), -- 12 port 10BaseFL MultiMode (ST + -- connector) + wsx5010(26), -- 24 port 10BaseT (Telco connector) + wsx5113(27), -- 12 port 100BaseTX (RJ-45 connector) + wsx5101(28), -- 1 dual attach Multi Mode FDDI + -- (MIC connector) + wsx5103(29), -- 1 dual attach CDDI (RJ-45 connector) + wsx5104(30), -- 1 dual attach Single Mode FDDI (ST + -- connector) + wsx5155(32), -- 1 port Multi Mode OC-3 ATM (SC + -- connector) + wsx5154(33), -- 1 port Single Mode OC-3 ATM (SC + -- connector) + wsx5153(34), -- 1 port UTP OC-3 ATM (RJ-45 connector) + wsx5111(35), -- 12 port 100BaseFX Multi Mode (SC + -- connector) + wsx5213(36), -- 12 port 10/100BaseTX (RJ-45 connector) + wsx5020(37), -- 48 port 4 segment 10BaseT (Telco + -- connector) + wsx5006(38), -- Supervisor Mod 1, 2 100BaseFX Multi Mode + -- (SC) + wsx5005(39), -- Supervisor Mod 1, 2 100BaseFX Single + -- Mode (SC) + wsx5509(40), -- Supervisor Mod 2, 2 100BaseTX + -- (RJ-45/MII) + wsx5506(41), -- Supervisor Mod 2, 2 100BaseFX Multi Mode + -- (SC) + wsx5505(42), -- Supervisor Mod 2, 2 100BaseFX Single + -- Mode (SC) + wsx5156(43), -- 1 dual phy UTP OC-3 ATM (RJ-45 + -- connector) + wsx5157(44), -- 1 dual phy Single Mode OC-3 ATM (SC + -- connector) + wsx5158(45), -- 1 dual phy Multi Mode OC-3 ATM (SC + -- connector) + wsx5030(46), -- 16 port Token Ring (RJ-45 connector) + wsx5114(47), -- 6 port SM, 6 port MM 100BaseFX (SC + -- connector) + wsx5223(48), -- 24 port 3 segment 100BaseTX (RJ-45 + -- connector) + wsx5224(49), -- 24 port 10/100BaseTX (RJ-45 connector) + wsx5012(50), -- 48 port 10BaseT (Telco connector) + wsx5302(52), -- Vlan router + wsx5213a(53), -- 12 port 10/100BaseTX (RJ-45 connector) + wsx5380(54), -- Network Analysis Module + wsx5201(55), -- 12 port 100BaseFX Multi Mode (SC + -- connector) + wsx5203(56), -- 12 port 10/100BaseTX (RJ-45 connector) + wsx5530(57), -- Supervisor Module 3 + wsx5161(61), -- 1 dual phy Multi Mode OC-12 ATM (SC + -- connector) + wsx5162(62), -- 1 dual phy Single Mode OC-12 ATM (SC + -- connector) + wsx5165(65), -- ATM bridge + wsx5166(66), -- 1 dual phy DS3 ATM (BNC connector) + wsx5031(67), -- 16 port Multi Mode Token Ring (ST + -- connector) + wsx5410(68), -- 9 port 1000BaseX (GBIC connector) + wsx5403(69), -- 3 port 1000BaseX (GBIC connector) + wsx5201r(73), -- 12 port 100BaseFX Multi Mode (SC + --connector) + wsx5225r(74), -- 24 port 10/100BaseTX (RJ-45 connector) + wsx5014(75), -- 48 port 10BaseT (RJ-45 connector) + wsx5015(76), -- 24 port 10BaseFL (MT-RJ connector) + wsx5236(77), -- 24 port 100BaseFX Multi Mode (MT-RJ + -- connector) + wsx5540(78), -- Supervisor Module 2 GS + wsx5234(79), -- 24 port 10/100BaseTX (RJ-45 connector) + wsx5012a(81), -- 48 port 10BaseT (Telco connector) + wsx5167(82), -- 1 dual phy Multi Mode OC-3 ATM (SC + -- connector) + wsx5239(83), -- 36 port 10/100BaseTX (Telco connector) + wsx5168(84), -- 1 dual phy Single Mode OC-3 ATM (SC + -- connector) + wsx5305(85), -- 8 port 100BaseFX MM (SC)/Ethernet bridge + wsx5550(87), -- Supervisor Module 3 GS, 2 port GBIC + wsf5541(88), -- RSFC for wsx5540, wsx5550 + wsx5534(91), -- Supervisor Module 3 FSX + wsx5536(92), -- Supervisor Module 3 FLX + wsx5237(96), -- 24 port 100BaseFX Single Mode (MT-RJ + -- connector) + + -- the following modules are for the WSC-6000 series + wsx6ksup12ge(200), -- 2 port 1000BaseX Supervisor Mod + -- (GBIC) + wsx6408gbic(201), -- 8 port 1000BaseX (GBIC) + wsx6224mmmt(202), -- 24 port 100BaseFX MM (MT-RJ) + wsx6248rj45(203), -- 48 port 10/100BaseTX (RJ-45) + wsx6248tel(204), -- 48 port 10/100BaseTX (Telco) + wsx6302msm(206), -- Multilayer switch module + wsf6kmsfc(207), -- Multilayer switch feature card + wsx6024flmt(208), -- 24 port 10BaseFL (MT-RJ) + wsx6101oc12mmf(209),-- 1 port Multi Mode OC-12 ATM (SC) + wsx6101oc12smf(210),-- 1 port Single Mode OC-12 ATM (SC) + wsx6416gemt(211), -- 16 port 1000BaseSX (MT-RJ) + wsx61822pa(212), -- 2 port adapter FlexWAN Module + osm2oc12AtmMM(213),-- 2-port OC-12 ATM MM + osm2oc12AtmSI(214),-- 2-port OC-12 ATM SI + osm4oc12PosMM(216),-- 4-port OC-12c POS MM + osm4oc12PosSI(217),-- 4-port OC-12c POS SI + osm4oc12PosSL(218),-- 4-port OC-12c POS SL + wsx6ksup1a2ge(219),-- 2 port 1000BaseX Supervisor Mod + -- (GBIC) + wsx6302amsm(220), -- Multilayer switch module (Rev. A) + wsx6416gbic(221), -- 16 port 1000BaseX (GBIC) + wsx6224ammmt(222), -- 24 port 100BaseFX MM (MT-RJ), + -- Enhanced QoS + wsx6380nam(223), -- Network Analysis Module + wsx6248arj45(224), -- 48 port 10/100BaseTX (RJ-45) + -- Enhanced QoS + wsx6248atel(225), -- 48 port 10/100BaseTX (Telco) + -- Enhanced QoS + wsx6408agbic(226), -- 8 port 1000BaseX (GBIC),Enhanced + -- QoS + wsx6608t1(229), -- 8 port T1 (1.544 Mps) + wsx6608e1(230), -- 8 port E1 (2.048 Mps) + wsx6624fxs(231), -- 24 port FXS Analog station module + wsx6316getx(233), -- 16 port 1000BaseT (RJ-45) + wsf6kmsfc2(234), -- Multilayer switch feature card II + wsx6324mmmt(235), -- 24 port 100BaseFX MM (MT-RJ) + wsx6348rj45(236), -- 48 port 10/100BaseTX (RJ-45) + wsx6ksup22ge(237), -- 2 port 1000BaseX Supervisor Mod 2 + -- (GBIC) + wsx6324sm(238), -- 24 port 100BaseFX SM (MT-RJ) + wsx6516gbic(239), -- 16 port 1000BaseX (GBIC) + osm4geWanGbic(240), -- 4 port 1000BaseX (GBIC) + osm1oc48PosSS(241), -- 1 port OC-48 POS SS + osm1oc48PosSI(242), -- 1 port OC-48 POS SI + osm1oc48PosSL(243), -- 1 port OC-48 POS SL + wsx6381ids(244), -- Intrusion Detection module + wsc6500sfm(245), -- Switch Fabric Module + osm16oc3PosMM(246), -- 16 port OC3 POS MM + osm16oc3PosSI(247), -- 16 port OC3 POS SI + osm16oc3PosSL(248), -- 16 port OC3 POS SL + osm2oc12PosMM(249), -- 2 port OC12 POS MM + osm2oc12PosSI(250), -- 2 port OC12 POS SI + osm2oc12PosSL(251), -- 2 port OC12 POS SL + wsx650210ge(252), -- 1 port 10 Gigabit Ethernet + osm8oc3PosMM(253), -- 8 port OC3 POS MM + osm8oc3PosSI(254), -- 8 port OC3 POS SI + osm8oc3PosSL(255), -- 8 port OC3 POS SL + wsx6548rj45(258), -- 48 port 10/100BaseTX (RJ-45) + wsx6524mmmt(259), -- 24 port 100BaseFX MM (MT-RJ) + wsx6066SlbApc(260), -- SLB Application Processor Complex + wsx6516getx(261), -- 16 port 10/100/1000BaseT (RJ-45) + osm2oc48OneDptSS(265), -- 2 port OC48 1 DPT SS + osm2oc48OneDptSI(266), -- 2 port OC48 1 DPT SI + osm2oc48OneDptSL(267), -- 2 port OC48 1 DPT SL + osm2oc48OneDptSSDual(268), -- 2 port OC48 DPT SS + -- dual-natured + osm2oc48OneDptSIDual(269), -- 2 port OC48 DPT SI + -- dual-natured + osm2oc48OneDptSLDual(270), -- 2 port OC48 DPT SL + -- dual-natured + wsx6816gbic(271), -- 16 port 1000BaseX (Layer 3) + osm4choc12T3MM(272), -- 4 port OC-12 Multimode + osm4choc12T3SI(273), -- 4 port OC-12 Singlemode + -- Intermediate + osm8choc12T3MM(274), -- 8 port OC-12 Multimode + osm8choc12T3SI(275), -- 8 port OC-12 Singlemode + -- Intermediate + osm1choc48T3SS(276), -- 1 port OC-48 Singlemode Short + osm2choc48T3SS(277), -- 2 port OC-48 Singlemode Short + wsx6500sfm2(278), -- Switch Fabric Module 136 + osm1choc48T3SI(279), -- 1 port OC-48 Singlemode + -- Intermediate + osm2choc48T3SI(280), -- 2 port OC-48 Singlemode + -- Intermediate + wsx6348rj21(281), -- 48 port 10/100BaseTX (RJ-21) + wsx6548rj21(282), -- 48 port 10/100BaseTX (RJ-21) + wsSvcCmm(284), -- AVVID Services Module + wsx650110gex4(285), -- 1 port 10 Gigabit Ethernet (EX4) + osm4oc3PosSI(286), -- 4 port OC3 POS SI + osm4oc3PosMM(289), -- 4 port OC3 POS MM + wsSvcIdsm2(290), -- Intrusion Detection module + wsSvcNam2(291), -- Network Analysis Module + wsSvcFwm1(292), -- Firewall Module + wsSvcCe1(293), -- Web Cache/Content Engine Module + wsSvcSsl1(294), -- SSL Module + osm8choc3DS0SI(295), -- 8 port OC3 DS0 SI + osm4choc3DS0SI(296), -- 4 port OC3 DS0 SI + osm1choc12T1SI(297), -- 1 port OC3 T1 SI + + -- the following modules are for the WSC-4000 series + wsx4012(300), -- Supervisor Module + wsx4148rj(301), -- 48 port 10/100BaseTX (RJ-45) + wsx4232gbrj(302), -- 2 1000X (GBIC), 32 10/100BaseTX + -- (RJ-45) + wsx4306gb(303), -- 6 port 1000BaseX (GBIC) + wsx4418gb(304), -- 18 port 1000BaseX (GBIC) + wsx44162gbtx(305), -- 2 1000BaseX (GBIC), 16 1000BaseT + -- (RJ-45) + wsx4912gb(306), -- 12 port 1000BaseX (GBIC) + wsx2948gbrj(307), -- 2 1000X (GBIC), 48 10/100BaseTX + -- (RJ-45) + wsx2948(309), -- Supervisor Module + wsx4912(310), -- Supervisor Module + wsx4424sxmt(311), -- 24 port 1000BaseSX (MT-RJ) + wsx4232rjxx(312), -- 32 port 10/100 (RJ-45) + uplink + -- submodule + wsx4148rj21(313), -- 48 port 10/100BaseTX (RJ-21) + wsx4124fxmt(317), -- 24 port 100BaseFX MM (MT-RJ) + wsx4013(318), -- Supervisor Module 2, 2 port + -- 1000X(GBIC) + wsx4232l3(319), -- 32 10/100TX(RJ-45), 2 1000X + -- Routed port + wsx4604gwy(320), -- 1 port 1000 Mb routed + 1 daughter + -- card + wsx44122Gbtx(321), -- 2 1000BaseX(GBIC), 12 1000BaseT + -- (RJ-45) + wsx2980(322), -- Supervisor module for wsc2980g + wsx2980rj(323), -- 48 port 10/100BaseTX + wsx2980gbrj(324), -- 32 port 10/100BaseTX + 2 port + -- 1000X + wsx4019(325), -- Switch Fabric Module + wsx4148rj45v(326), -- 48 port 10/100BaseT Voice Power + -- module + wsx4424gbrj45(330),-- 24 10/100/1000BaseTX (RJ-45) + wsx4148fxmt(331), -- 48 port 100BaseFX MM (MT-RJ) + wsx4448gblx(332), -- 48 port 1000BaseX (SFP GBIC) + wsx4448gbrj45(334), -- 48 port 10/100/1000Base TX + -- (RJ-45) + wsx4148lxmt(337), -- 48 port 100BaseLX + wsx4548gbrj45(339), -- 48 port 10/100/1000Base TX + -- (RJ-45) + wsx4548gbrj45v(340), -- 48 port 10/100/1000T Voice + -- module + wsx4248rj21v(341), -- 48 port 10/100 (RJ-21) Voice + -- module + wsx4302gb(342), -- 2 port 1000BaseX (GBIC) + wsx4248rj45v(343), -- 48 port 10/100BaseT Voice Power + -- module + wsx2948ggetx(345), -- Supervisor Module for + -- wsc2948ggetx + wsx2948ggetxgbrj(346), -- 4 1000Base FX(SFP), 48 + -- 10/100/1000 BaseTX (RJ-45) + -- the following modules are for the WSC-6000 series + wsx6516aGbic(502), -- 16 port 1000BaseX (GBIC) + wsx6148getx(503), -- 48 port 10/100/1000BaseT(RJ-45) + wsx6148x2rj45(506), -- 96 port 10/100BaseTX (RJ-45) + wsx6196rj21(507), -- 96 port 10/100BaseTX (RJ-21) + wssup32ge3b(509), -- 8 port 1000BaseX Supervisor + -- module + wssup3210ge3b(510), -- 2 port 10GBaseX Supervisor + -- module + mec6524gs8s(511), -- 24 port SFP with 8 SFP uplinks + mec6524gt8s(512), -- 24 port 10/100/1000BaseT with + -- 8 SFP uplinks + me6524msfc2a(598), -- Multilayer switch feature card + -- II A + + -- WAN module for c6k and 76xx + osm12ct3T1(600), -- 12 port CT3 T1 + osm24t3e3(602), -- 24 port T3 E3 + osm1choc12T3SI(604), -- 1 port OC-12 Singlemode + -- Intermediate + osm2choc12T3SI(605), -- 2 port OC-12 Singlemode + -- Intermediate + osm2oc12AtmMMPlus(606), -- 2-port OC-12 ATM MM + osm2oc12AtmSIPlus(607), -- 2-port OC-12 ATM SI + osm2oc12PosMMPlus(608), -- 2 port OC12 POS MM + osm2oc12PosSIPlus(609), -- 2 port OC12 POS SI + osm16oc3PosSIPlus(610), -- 16 port OC3 POS SI + osm1oc48PosSSPlus(611), -- 1 port OC-48 POS SS + osm1oc48PosSIPlus(612), -- 1 port OC-48 POS SI + osm1oc48PosSLPlus(613), -- 1 port OC-48 POS SL + osm4oc3PosSIPlus(614), -- 4 port OC3 POS SI + osm8oc3PosSLPlus(615), -- 8 port OC3 POS SL + osm8oc3PosSIPlus(616), -- 8 port OC3 POS SI + osm4oc12PosSIPlus(617), -- 4 port OC12 POS SI + + wsSvcIpSec1(903), -- VPN security blade module + wsSvcCsg1(911), -- Content Services Gateway Module + wsx6148rj45v(912), -- 48 port 10/100BaseTX (RJ-45) + wsx6148rj21v(913), -- 48 port 10/100BaseTX (RJ-21) + wsSvcNam1(914), -- Network Analysis Module + wsx6548getx(915), -- 48 port 10/100/1000BaseT(RJ-45) + wsx6148agetx(921), -- 48 port + -- 10/100/1000BaseTX (RJ-45) + wsx6148arj45(923), -- 48 port 10/100BaseTX (RJ-45) + wsSvcWlan1k9(924), -- Wireless LAN Application Module + wsSvcAon1k9(925), -- Application Oriented Network + -- Switching + ace106500k9(926), -- Application Control Engine + -- 10G Service Module + wsSvcWebVpnk9(927), -- Web VPN Module + wsx6148FeSfp(928), -- 48 port 100Base-X SFP Module + wsSvcAdm1k9(929), -- Anomaly Detection Module + wsSvcAgm1k9(930), -- Anomaly Guard Module + ace046500k9(936), -- Application Control Engine + -- 4G Service Module + wssup720(1001), -- Supervisor Mod 720 CPU board + -- (moduleSubType2) + wssup720base(1002), -- Supervisor Mod 720 base board + wsx6748getx(1007), -- 48 port 10/100/1000 (RJ-45) + wsx670410ge(1008), -- 4 port 10 GE + wsx6748sfp(1009), -- 48 port 1000Base FX (SFP GBIC) + wsx6724sfp(1010), -- 24 port 1000Base FX (SFP GBIC) + wsx670810ge(1016), -- 8 port X2 10 GE with DFC + -- constellation 2 WAN module + wsx65822pa(1101) -- Enhanced FlexWAN Module + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of module." + ::= { moduleEntry 2 } + +moduleSerialNumber OBJECT-TYPE + SYNTAX INTEGER (0..999999999) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The serial number of the module in a numeric + format. If the module uses an alphanumeric serial + number, this MIB object will return 0. + + This object is deprecated and replaced by + entPhysicalSerialNum in ENTITY-MIB." + ::= { moduleEntry 3 } + +moduleHwHiVersion OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The high part of the hardware version of the + module. + For example, if the hardware version is 3.1, the + value of moduleHwHiVersion is 3. + + This object is deprecated and replaced by + entPhysicalHardwareRev in ENTITY-MIB." + ::= { moduleEntry 4 } + +moduleHwLoVersion OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The low part of the hardware version of the + module. + For example, if the hardware version is 3.1, the + value of moduleHwLoVersion is 1. + + This object is deprecated and replaced by + entPhysicalHardwareRev in ENTITY-MIB." + ::= { moduleEntry 5 } + +moduleFwHiVersion OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The high part of the firmware version number. For + example, if the firmware version is 3.1, the value + of moduleFwHiVersion is 3. + + This object is deprecated and replaced by + entPhysicalFirmwareRev in ENTITY-MIB." + ::= { moduleEntry 6 } + +moduleFwLoVersion OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The low part of the firmware version number. For + example, if the firmware version is 3.1, the value + of moduleFwLoVersion is 1. + + This object is deprecated and replaced by + entPhysicalFirmwareRev in ENTITY-MIB." + ::= { moduleEntry 7 } + +moduleSwHiVersion OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The high part of the software version number. For + example, if the software version is 3.1, the value + of moduleSwHiVersion is 3. + + This object is deprecated and replaced by + entPhysicalSoftwareRev in ENTITY-MIB." + ::= { moduleEntry 8 } + +moduleSwLoVersion OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The low part of the software version number. For + example, if the software version is 3.1, the value + of moduleSwLoVersion is 1. + + This object is deprecated and replaced by + entPhysicalSoftwareRev in ENTITY-MIB." + ::= { moduleEntry 9 } + +moduleStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The operational status of the module. If the + status is not ok, the value of moduleTestResult + gives more detailed information about the + module's failure condition(s)." + ::= { moduleEntry 10 } + +moduleTestResult OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The result of the module's self test. A zero + indicates that the module passed all tests. Bits + set in the result indicate error conditions." + ::= { moduleEntry 11 } + +moduleAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), + reset(2), + enable(3), + disable(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object, when read, returns one of the + following results: + other(1): module permanently enabled + enable(3): module currently enabled + disable(4): module currently disabled + Setting this object to one of the acceptable + values gives the following results: + other(1): gives an error + reset(2): resets the module's control logic + enable(3): if the module status is configurable, + enables the module, else gives error + disable(4): if the module status is + configurable, disables the module, + else gives error. + Setting this object to any other values results in + an error." + ::= { moduleEntry 12 } + +moduleName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A descriptive string used by the network + administrator to name the module." + ::= { moduleEntry 13 } + +moduleNumPorts OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of ports supported by the module." + ::= { moduleEntry 14 } + +modulePortStatus OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A series of bytes containing status information + about the module and each of the ports on the + module. + The first byte contains the status for the module + (same value as moduleStatus), and subsequent bytes + contain status for the first through the last + ports on the module (same value as + portOperStatus)." + ::= { moduleEntry 15 } + +moduleSubType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + empty(2), -- nothing installed + + -- sub modules for the WS-X5505,5506,5509 + wsf5510(3), -- EARL 1 + wsf5511(4), -- EARL 1+ + + -- sub modules for the WS-X5302 + wsx5304(6), -- VIP II carrier + + -- sub modules for the WS-X5530,5540 + wsf5520(7), -- EARL 1+ + wsf5521(8), -- NFFC + wsf5531(9), -- NFFC II + + -- sub modules for the WS-X6K-SUP-2GE + wsf6020(100), -- L2 switching card + wsf6020a(101),-- L2 switching card II + wsf6kpfc(102),-- L3 switching engine + wsf6kpfc2(103),-- L3 switching engine II + + wsf6kvpwr(104), -- inline power card + + wsf6kdfc(105), -- distributed switching + -- engine + wsf6kpfc2a(106),-- L3 switching engine + -- IIA + wsf6kdfca(107), -- distributed switching + -- engine + + -- sub module for SPA Carrier Basecard + vsp300dfc(200), -- VSP 300 Earl7 + -- Daughtercard + wsf6kpfc3a(201), + -- Policy feature card 3A + wsf6kdfc3a(202), + -- Distributed forwarding card 3A + wsf6700dfc3a(203), + -- Distributed forwarding card 3A + wsf6kdfc3bxl(205), + -- Distributed forwarding card 3B + -- XL + wsf6kpfc3bxl(206), + -- Policy feature card 3B XL + wsf6700dfc3bxl(207), + -- Distributed forwarding card 3B + -- XL + wsf6700cfc(208), + -- Centralized forwarding card + wsf6kpfc3b(216), + -- Policy feature card 3B + wsf6700dfc3b(217), + -- Distributed forwarding card 3B + wsf6700dfc3c(218), + -- Distributed forwarding card + wsf6700dfc3cxl(221), + -- Distributed forwarding card + wsf6kdfc3b(223), + -- Distributed forwarding card 3B + mec6524pfc3c(224) + -- Policy feature card 3C + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of daughterboard attached to this + module." + ::= { moduleEntry 16 } + +moduleModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The manufacturer's model number for the module." + ::= { moduleEntry 17 } + +moduleHwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..12)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The hardware version of the module." + ::= { moduleEntry 18 } + +moduleFwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The firmware version of the module." + ::= { moduleEntry 19 } + +moduleSwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..40)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The software version of the module." + ::= { moduleEntry 20 } + +moduleStandbyStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + active(2), + standby(3), + error(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Redundant status of a module that supports + redundancy." + ::= { moduleEntry 21 } + +moduleIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "If the module has a separate IP address to + reach it by, then it is reported here. + Otherwise, this object has a value of + '00000000H'." + ::= { moduleEntry 22 } + +moduleIPAddressVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "If the moduleIPAddress is valid then this + object reports the VLAN to access that IP + address on. Otherwise this object has a value + of zero." + ::= { moduleEntry 23 } + +moduleSubType2 OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + empty(2), -- nothing installed + + -- sub module 2 type for the WS-X5530,5540 + wsu5531(3), -- 2 port 10/100BaseTX (RJ-45) + wsu5533(5), -- 2 port 100BaseFX MM (SC) + wsu5534(6), -- 2 port 1000BaseSX (SC) + wsu5535(7), -- 2 port 100BaseFX SM (SC) + wsu5536(8), -- 2 port 1000BaseLX (SC) + wsu5537(9), -- 4 port 10/100BaseTX (RJ-45) + wsu5538(10), -- 4 port 100BaseFX MM (SC) + wsu5539(11), -- 4 port 100BaseFX SM (SC) + + wsg6488(102), -- 10GE-LR Serial 1310nm long haul + wsg6489(103), -- 10GE-SX4 850nm WWDM short reach + wsg6483(104), -- 10GE-ER Serial 1550nm extended reach + wsg6485(105), -- 10GE-LX4 Campus 1310nm WWDM long + -- haul/short reach. + + wsf6kFe48af(106), -- inline power card + wsf6kGe48af(107), -- inline power card + wsf6kVpwrGe(108), -- inline power card + wsf6kFe48x2af(109), -- inline power card + + -- sub module 2 type for cat6k IOS Software + wsf6kmsfc(207), -- Multilayer switch feature card + wsf6kmsfc2(234), -- Multilayer switch feature card II + + -- sub module 2 type for WS-X4232,4224,4416 + wsu4504fxmt(314), -- 4 port 100BaseFX (MT-RJ) + wsu4502gb(315), -- 2 port 1000BaseX (GBIC) + + -- sub module 2 type for Cat6k modules + wssvcidsupg(402), -- IDS 2 accelerator board + wssvccmm6e1(403), -- 6 E1 port adapter + wssvccmm6t1(404), -- 6 T1 port adapter + wssvccmm24fxs(405), -- 24 FXS port adapter + wssvccmmact(406), -- ad-hoc conferencing and + -- transcoding port adapter + + wsf6kmsfc2a(599), -- Multilayer switch feature card II A + + -- sub module 2 type for sup 720 + wssup720(1001) -- Supervisor Mod 720 CPU board + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of daughterboard attached to this + module." + ::= { moduleEntry 24 } + +moduleSlotNum OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This value is determined by the chassis slot + number where the module is located. Valid entries + are 1 to the value of chassisNumSlots" + ::= { moduleEntry 25 } + +moduleSerialNumberString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The serial number of the module. This MIB object + will return the module serial number for any + module that either a numeric or an alphanumeric + serial number is being used." + ::= { moduleEntry 26 } + +moduleEntPhysicalIndex OBJECT-TYPE + SYNTAX PhysicalIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of the instance of the entPhysicalIndex + object, defined in ENTITY-MIB, for the entity + physical index corresponding to this module." + ::= { moduleEntry 27 } + +moduleAdditionalStatus OBJECT-TYPE + SYNTAX BITS { + fruInstalled(0), + powerDenied(1), + faulty(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The additional status of the module. + + fruInstalled(0) indicates that whether or not + FRU is installed on the module. + + powerDenied(1) indicates that whether phones + connected to the ports of this module are + denied of power. + + faulty(2) indicates hardware faulty." + ::= { moduleEntry 28} + + + +-- the port group + +-- Implementation of the port group is current for all Cisco Workgroup +-- Stack products. + +portTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of port entries. The number of entries is + determined by the number of modules in the chassis + and the number of ports on each module." + ::= { portGrp 1 } + +portEntry OBJECT-TYPE + SYNTAX PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing information for a particular + port on a module." + INDEX { portModuleIndex, portIndex } + ::= { portTable 1 } + +PortEntry ::= + SEQUENCE { + portModuleIndex + INTEGER, + portIndex + INTEGER, + portCrossIndex + INTEGER, + portName + DisplayString, + portType + INTEGER, + portOperStatus + INTEGER, + portCrossGroupIndex + INTEGER, + portAdditionalStatus + INTEGER, + portAdminSpeed + INTEGER, + portDuplex + INTEGER, + portIfIndex + INTEGER, + portSpantreeFastStart + INTEGER, + portAdminRxFlowControl + INTEGER, + portOperRxFlowControl + INTEGER, + portAdminTxFlowControl + INTEGER, + portOperTxFlowControl + INTEGER, + portMacControlTransmitFrames + Counter32, + portMacControlReceiveFrames + Counter32, + portMacControlPauseTransmitFrames + Counter32, + portMacControlPauseReceiveFrames + Counter32, + portMacControlUnknownProtocolFrames + Counter32, + portLinkFaultStatus + INTEGER, + portAdditionalOperStatus + BITS, + portInlinePowerDetect + TruthValue, + portEntPhysicalIndex + PhysicalIndex, + portErrDisableTimeOutEnable + INTEGER + } + +portModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located." + ::= { portEntry 1 } + +portIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module. The value is determined by the + location of the port on the module. Valid entries + are 1 to the value of moduleNumPorts for this + module." + ::= { portEntry 2 } + +portCrossIndex OBJECT-TYPE + SYNTAX INTEGER (1..4080) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A cross-reference to the port's index within + another mib group. The value is dependent on the + type of port. For an FDDI port, this corresponds + to the snmpFddiPORTIndex." + ::= { portEntry 3 } + +portName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A descriptive string used by the network + administrator to name the port." + ::= { portEntry 4 } + +portType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + cddi(2), -- CDDI (UTP FDDI) + fddi(3), -- Multi Mode fiber FDDI + tppmd(4), -- ANSI standard UTP FDDI + mlt3(5), -- MLT-3 UTP FDDI + sddi(6), -- STP FDDI + smf(7), -- Single Mode fiber FDDI + e10BaseT(8), -- UTP Ethernet + e10BaseF(9), -- Multi Mode fiber Ethernet + scf(10), -- small-connector fiber FDDI + e100BaseTX(11),-- UTP Fast Ethernet (Cat 5) + e100BaseT4(12),-- UTP Fast Ethernet (Cat 3) + e100BaseF(13), -- Multi Mode fiber Fast + -- Ethernet + atmOc3mmf(14), -- Multi Mode fiber OC-3 ATM + atmOc3smf(15), -- Single Mode fiber OC-3 ATM + atmOc3utp(16), -- UTP OC-3 ATM + e100BaseFsm(17), -- Single Mode fiber Fast + -- Ethernet + e10a100BaseTX(18), -- 10/100 UTP Ethernet + -- (Cat 3/5) + mii(19), -- MII Ethernet + vlanRouter(20), -- vlan router connection + remoteRouter(21), -- + tokenring(22), -- Token Ring + atmOc12mmf(23),-- Multi Mode fiber OC-12 ATM + atmOc12smf(24),-- Single Mode fiber OC-12 + -- ATM + atmDs3(25), -- DS-3 ATM + tokenringMmf(26), -- Multi Mode fiber Token + -- Ring + e1000BaseLX(27), -- Long Wave fiber Giga + -- Ethernet + e1000BaseSX(28), -- Short Wave fiber Giga + -- Ethernet + e1000BaseCX(29), -- Copper Gigabit Ethernet + networkAnalysis(30), -- Network Analysis + -- connection + e1000Empty(31), -- GBIC not installed + e1000BaseLH(32), -- Long Haul fiber Giga + -- Ethernet + e1000BaseT(33), -- Twisted Pair Giga + -- Ethernet + e1000UnsupportedGbic(34), + -- Unsupported Gbic Giga + -- Ethernet + e1000BaseZX(35), -- Extended Reach Giga + -- Ethernet + depi2(36), -- Digital Ethernet Phone + -- Interface 2 Mbps + t1(37), -- T1 + e1(38), -- E1 + fxs(39), -- FXS + fxo(40), -- FXO + transcoding(41), -- transcoding DSP + conferencing(42),-- conferencing DSP + atmOc12mm(43), -- OC-12 ATM MMF + atmOc12smi(44), -- OC-12 ATM SMIR + atmOc12sml(45), -- OC-12 ATM SML + posOc12mm(46), -- OC-12 POS MM + posOc12smi(47), -- OC-12 POS SMIR + posOc12sml(48), -- OC-12 POS SMLR + posOc48sms(49), -- OC-48 POS SMS + posOc48smi(50), -- OC-48 POS SMIR + posOc48sml(51), -- OC-48 POS SMLR + posOc3mm(52), -- OC-3 POS MM + posOc3smi(53), -- OC-3 POS SMIR + posOc3sml(54), -- OC-3 POS SMLR + intrusionDetect(55), -- intrusion detection + e10GBaseCPX(56), --10GE Parallel 860nm Laser + e10GBaseLX4(57), -- 10GE Wide-WDM 1310nm + -- Laser + e10GBaseEX4(59), -- 10GE Wide-WDM 1550 Laser + e10GEmpty(60), -- 10GE not installed + e10a100a1000BaseT(61), -- 10/100/1000 BaseT + dptOc48mm(62), -- OC-48 DPT MM + dptOc48smi(63), -- OC-48 DPT SMIR + dptOc48sml(64), -- OC-48 DPT SMLR + e10GBaseLR(65), -- 10GE Serial 1310nm Laser + chOc12smi(66), -- OC-12 channelized SMIR + chOc12mm(67), -- OC-12 channelized MM + chOc48ss(68), -- OC-48 channelized SS + chOc48smi(69), -- OC-48 channelized SMIR + e10GBaseSX4(70), -- 10GE Wide-WDM 850nm + -- Laser + e10GBaseER(71), -- 10GE Serial 1550nm Laser + contentEngine(72),-- content engine + -- connection + ssl(73), -- SSL connection + firewall(74), -- Firewall connection + vpnIpSec(75), -- VPN IP Sec connection + ct3(76), -- DS3 Channelized + e1000BaseCwdm1470(77), + -- CWDM 1470 Giga Ethernet + e1000BaseCwdm1490(78), + -- CWDM 1490 Giga Ethernet + e1000BaseCwdm1510(79), + -- CWDM 1510 Giga Ethernet + e1000BaseCwdm1530(80), + -- CWDM 1530 Giga Ethernet + e1000BaseCwdm1550(81), + -- CWDM 1550 Giga Ethernet + e1000BaseCwdm1570(82), + -- CWDM 1570 Giga Ethernet + e1000BaseCwdm1590(83), + -- CWDM 1590 Giga Ethernet + e1000BaseCwdm1610(84), + -- CWDM 1610 Giga Ethernet + e1000BaseBT(85), -- BT Giga Ethernet + e1000BaseUnapproved(86), + -- Unappeoved Giga Ethernet + chOc3smi(87), -- OC-3 channelized SMIR + mcr(88), -- Mobile Context Registry + -- connection + coe(89), -- Content Optimization Engine + -- connection + mwa(90), -- Mobile Wireless Application + -- connection + psd(91), -- Persistent Store Device + -- connection + e100BaseLX(92), -- Long Wave fiber Fast + -- Ethernet + e10GBaseSR(93), -- 10GE Serial 850nm Laser + e10GBaseCX4(94), -- 10GE XAUI Copper + e10GBaseWdm1550(95), + -- 10GE Serial 1550nm Laser + e10GBaseEdc1310(96), + -- 10GE Serial 1310nm EDC Laser + e10GBaseSW(97), -- 10GE Laser + e10GBaseLW(98), -- 10GE Laser + e10GBaseEW(99), -- 10GE Laser + lwa(100), -- Lan Wireless Application + -- connection + aons(101), -- Application Oriented Network + -- Switching + sslVpn(102), -- Web/VPN + e100BaseEmpty(103), -- Fiber Fast Ethernet + -- not installed + adsm(104), -- Distributed Denial of Service + -- Detector + agsm(105), -- Distributed Denial of Service + -- Guard + aces(106), -- Application Control Engine + -- Service + e1000BaseUnknown(1000), + -- Unknown Giga Ethernet + e10GBaseUnknown(1001), -- Unknown 10G + e10GBaseUnapproved(1002), -- Unapproved 10G + + e1000BaseWdmRxOnly(1003), + -- WDM Rx ONLY Giga Ether + e1000BaseDwdm3033(1004), + -- DWDM 3033 Giga Ethernet + e1000BaseDwdm3112(1005), + -- DWDM 3112 Giga Ethernet + e1000BaseDwdm3190(1006), + -- DWDM 3190 Giga Ethernet + e1000BaseDwdm3268(1007), + -- DWDM 3268 Giga Ethernet + e1000BaseDwdm3425(1008), + -- DWDM 3425 Giga Ethernet + e1000BaseDwdm3504(1009), + -- DWDM 3504 Giga Ethernet + e1000BaseDwdm3582(1010), + -- DWDM 3582 Giga Ethernet + e1000BaseDwdm3661(1011), + -- DWDM 3661 Giga Ethernet + e1000BaseDwdm3819(1012), + -- DWDM 3819 Giga Ethernet + e1000BaseDwdm3898(1013), + -- DWDM 3898 Giga Ethernet + e1000BaseDwdm3977(1014), + -- DWDM 3977 Giga Ethernet + e1000BaseDwdm4056(1015), + -- DWDM 4056 Giga Ethernet + e1000BaseDwdm4214(1016), + -- DWDM 4214 Giga Ethernet + e1000BaseDwdm4294(1017), + -- DWDM 4294 Giga Ethernet + e1000BaseDwdm4373(1018), + -- DWDM 4373 Giga Ethernet + e1000BaseDwdm4453(1019), + -- DWDM 4453 Giga Ethernet + e1000BaseDwdm4612(1020), + -- DWDM 4612 Giga Ethernet + e1000BaseDwdm4692(1021), + -- DWDM 4692 Giga Ethernet + e1000BaseDwdm4772(1022), + -- DWDM 4772 Giga Ethernet + e1000BaseDwdm4851(1023), + -- DWDM 4851 Giga Ethernet + e1000BaseDwdm5012(1024), + -- DWDM 5012 Giga Ethernet + e1000BaseDwdm5092(1025), + -- DWDM 5092 Giga Ethernet + e1000BaseDwdm5172(1026), + -- DWDM 5172 Giga Ethernet + e1000BaseDwdm5252(1027), + -- DWDM 5252 Giga Ethernet + e1000BaseDwdm5413(1028), + -- DWDM 5413 Giga Ethernet + e1000BaseDwdm5494(1029), + -- DWDM 5494 Giga Ethernet + e1000BaseDwdm5575(1030), + -- DWDM 5575 Giga Ethernet + e1000BaseDwdm5655(1031), + -- DWDM 5655 Giga Ethernet + e1000BaseDwdm5817(1032), + -- DWDM 5817 Giga Ethernet + e1000BaseDwdm5898(1033), + -- DWDM 5898 Giga Ethernet + e1000BaseDwdm5979(1034), + -- DWDM 5979 Giga Ethernet + e1000BaseDwdm6061(1035), + -- DWDM 6061 Giga Ethernet + + e10GBaseWdmRxOnly(1036), + -- DWDM 10G WDM Rx ONLY + e10GBaseDwdm3033(1037), + -- DWDM 10G 3033 Laser + e10GBaseDwdm3112(1038), + -- DWDM 10G 3112 Laser + e10GBaseDwdm3190(1039), + -- DWDM 10G 3190 Laser + e10GBaseDwdm3268(1040), + -- DWDM 10G 3268 Laser + e10GBaseDwdm3425(1041), + -- DWDM 10G 3425 Laser + e10GBaseDwdm3504(1042), + -- DWDM 10G 3504 Laser + e10GBaseDwdm3582(1043), + -- DWDM 10G 3582 Laser + e10GBaseDwdm3661(1044), + -- DWDM 10G 3661 Laser + e10GBaseDwdm3819(1045), + -- DWDM 10G 3819 Laser + e10GBaseDwdm3898(1046), + -- DWDM 10G 3898 Laser + e10GBaseDwdm3977(1047), + -- DWDM 10G 3977 Laser + e10GBaseDwdm4056(1048), + -- DWDM 10G 4056 Laser + e10GBaseDwdm4214(1049), + -- DWDM 10G 4214 Laser + e10GBaseDwdm4294(1050), + -- DWDM 10G 4294 Laser + e10GBaseDwdm4373(1051), + -- DWDM 10G 4373 Laser + e10GBaseDwdm4453(1052), + -- DWDM 10G 4453 Laser + e10GBaseDwdm4612(1053), + -- DWDM 10G 4612 Laser + e10GBaseDwdm4692(1054), + -- DWDM 10G 4692 Laser + e10GBaseDwdm4772(1055), + -- DWDM 10G 4772 Laser + e10GBaseDwdm4851(1056), + -- DWDM 10G 4851 Laser + e10GBaseDwdm5012(1057), + -- DWDM 10G 5012 Laser + e10GBaseDwdm5092(1058), + -- DWDM 10G 5092 Laser + e10GBaseDwdm5172(1059), + -- DWDM 10G 5172 Laser + e10GBaseDwdm5252(1060), + -- DWDM 10G 5252 Laser + e10GBaseDwdm5413(1061), + -- DWDM 10G 5413 Laser + e10GBaseDwdm5494(1062), + -- DWDM 10G 5494 Laser + e10GBaseDwdm5575(1063), + -- DWDM 10G 5575 Laser + e10GBaseDwdm5655(1064), + -- DWDM 10G 5655 Laser + e10GBaseDwdm5817(1065), + -- DWDM 10G 5817 Laser + e10GBaseDwdm5898(1066), + -- DWDM 10G 5898 Laser + e10GBaseDwdm5979(1067), + -- DWDM 10G 5979 Laser + e10GBaseDwdm6061(1068), + -- DWDM 10G 6061 Laser + e1000BaseBX10D(1069), + -- Giga Ethernet bi-directional 10km + -- Downlink over SMF + e1000BaseBX10U(1070), + -- Giga Ethernet bi-directional 10km + -- Uplink over SMF + e100BaseUnknown(1071), + -- Unknown Fiber Fast Ethernet + e100BaseUnapproved(1072), + -- Unapproved Fiber Fast Ethernet + e100BaseSX(1073), + -- Short Wave Fiber Fast Ethernet + e100BaseBX10D(1074), + -- Fiber Fast Ethernet bi-directional + -- 10km Downlink over SMF + e100BaseBX10U(1075), + -- Fiber Fast Ethernet bi-directional + -- 10km Uplink over SMF + e10GBaseBad(1076), -- Bad 10G + e10GBaseZR(1077), -- 10GE Laser + e100BaseEX(1078), + -- Fiber Fast Ethernet + e100BaseZX(1079) + -- Extended Reach Fiber Fast Ethernet + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of physical layer medium dependent + interface on the port." + ::= { portEntry 5 } + +portOperStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + ok(2), -- status ok + minorFault(3), -- minor problem + majorFault(4) -- major problem + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The current operational status of the port." + ::= { portEntry 6 } + +portCrossGroupIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A cross-reference to another mib group for this + port. The value is dependent on the type of port. + For an FDDI port this corresponds to the + snmpFddiPORTSMTIndex." + ::= { portEntry 7 } + +portAdditionalStatus OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Additional status information for the port. The + value is a sum. It initially takes the value zero, + then for each state that is true, 2 raised to a + power is added to the sum. The powers are + according to the following table: + State Power + Transmit 0 + Receive 1 + Collision 2 + Transmit state indicates that at least one packet + was transmitted by the port in the last polling + period. Receive state indicates that at least one + packet was received by the port in the last + polling period. Collision state indicates that + at least one collision was detected on the port + in the last polling period. + Note that if a state is not applicable to a + particular port or additional status is not + supported on a particular port, its value is + always false for that port." + ::= { portEntry 8 } + +portAdminSpeed OBJECT-TYPE + SYNTAX INTEGER { + autoDetect(1), + autoDetect10100(2), + -- Auto Detect with, + -- only allowed values: 10 & 100 + s4000000(4000000), -- 4 Mbps + s10000000(10000000), -- 10 Mbps + s16000000(16000000), -- 16 Mbps + s45000000(45000000), -- 45 Mbps + s64000000(64000000), -- 64 Mbps + s100000000(100000000), -- 100 Mbps + s155000000(155000000), -- 155 Mbps + s400000000(400000000), -- 400 Mbps + s622000000(622000000), -- 622 Mbps + s1000000000(1000000000), -- 1 Gbps + s1544000(1544000), -- 1.544 Mbps + s2000000(2000000), -- 2 Mbps + s2048000(2048000), -- 2.048 Mbps + s64000(64000), -- 64 kps + s10G(10) -- 10 Gps + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The desired speed of the port. + The current operational speed of the port can be + determined from ifSpeed." + ::= { portEntry 9 } + +portDuplex OBJECT-TYPE + SYNTAX INTEGER { + half(1), + full(2), + disagree(3), -- read-only + auto(4) -- read-only + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the port is operating in half- + duplex, full-duplex, disagree or auto negotiation + mode. If the port could not agree with the far end + on port duplex, the port will be in disagree(3) + mode." + ::= { portEntry 10 } + +portIfIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of the instance of the ifIndex object, + defined in MIB-II, for the interface corresponding + to this port." + ::= { portEntry 11 } + +portSpantreeFastStart OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the port is operating in + spantree fast start mode. A port with fast start + enabled is immediately put in spanning tree + forwarding state on link up, rather than starting + in blocking state which is the normal operation. + This is useful when the port is known to be + connected to a single station which has problems + waiting for the normal spanning tree operation to + put the port in forwarding state. + + This object is deprecated and replaced by + stpxFastStartPortTable in + CISCO-STP-EXTENSIONS-MIB." + DEFVAL { disabled } + ::= { portEntry 12 } + +portAdminRxFlowControl OBJECT-TYPE + SYNTAX INTEGER { on(1), off(2), desired(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the receive flow control administrative + status set on the port. If the status is set to + on(1), the port will require the far end to send + flow control. If the status is set to off(2), the + port will not allow far end to send flow control. + If the status is set to desired(3), the port will + allow the far end to send the flow control." + DEFVAL { off } + ::= { portEntry 13} + +portOperRxFlowControl OBJECT-TYPE + SYNTAX INTEGER { on(1), off(2), disagree(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the receive flow control operational + status of the port. If the port could not agree + with the far end on a link protocol, its + operational status will be disagree(3)." + ::= { portEntry 14} + +portAdminTxFlowControl OBJECT-TYPE + SYNTAX INTEGER { on(1), off(2), desired(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the transmit flow control + administrative status set on the port. + If the status is set to on(1), the port will send + flow control to the far end. + If the status is set to off(2), the port will not + send flow control to the far end. If the status is + set to desired(3), the port will send flow control + to the far end if the far end supports it." + ::= { portEntry 15} + +portOperTxFlowControl OBJECT-TYPE + SYNTAX INTEGER { on(1), off(2), disagree(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the transmit flow control operational + status of the port. If the port could not agree + with the far end on a link protocol, its + operational status will be disagree(3)." + ::= { portEntry 16} + +portMacControlTransmitFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of MAC control frames passed to + the MAC sublayer for transmission." + ::= { portEntry 17} + +portMacControlReceiveFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of MAC control frames passed by + the MAC sublayer to the MAC Control sublayer on + receive." + ::= { portEntry 18} + +portMacControlPauseTransmitFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of PAUSE frames passed to + the MAC sublayer for transmission." + ::= { portEntry 19} + +portMacControlPauseReceiveFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of PAUSE frames passed by + the MAC sublayer to the MAC Control sublayer + on receive." + ::= { portEntry 20} + +portMacControlUnknownProtocolFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of MAC Control frames received + with an opcode that is not supported by the + device." + ::= { portEntry 21} + +portLinkFaultStatus OBJECT-TYPE + SYNTAX INTEGER { + noFault(1), + nearEndFault(2), + nearEndConfigFail(3), + farEndDisable(4), + farEndFault(5), + farEndConfigFail(6), + notApplicable(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Specifies additional link fault status on a + gigabit link. + + noFault: + Link is up and operational. + nearEndFault: + The port is enabled but there is no GBIC + present or the local port cannot + synchronize with the remote end. + nearEndConfigFail: + The local port has detected a + configuration mismatch with the remote + end. + farEndDisable: + The far end is in the disabled state. + farEndFault: + The remote port is cannot synchronize. + farEndConfigFail: + The remote port has detected a + configuration mismatch with the local end. + notApplicable: + Link fault status is not applicable on + this port." + ::= { portEntry 22 } + +portAdditionalOperStatus OBJECT-TYPE + SYNTAX BITS { + other(0), -- none of the following + connected(1), + standby(2), + faulty(3), + notConnected(4), + inactive(5), + shutdown(6), + dripDis(7), + disabled(8), + monitor(9), + errdisable(10), + linkFaulty(11), + onHook(12), + offHook(13), + reflector(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The current operational status of the port which + is showing additional detailed information of the + port." + ::= { portEntry 23 } + +portInlinePowerDetect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate if the port detects an inline power capable + device connected to it." + ::= { portEntry 24 } + +portEntPhysicalIndex OBJECT-TYPE + SYNTAX PhysicalIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of the instance of the entPhysicalIndex + object, defined in ENTITY-MIB, for the + entity physical index corresponding to this port." + ::= { portEntry 25 } + +portErrDisableTimeOutEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether a port that is put into + errdisable state by a cause as specified by + sysErrDisableTimeoutEnable will be re-enabled + automatically during the timeout interval as + specified by sysErrDisableTimeoutInterval." + DEFVAL { enabled } + ::= { portEntry 26 } + + +-- the tftp group + +-- Implementation of the tftp group is current for all Cisco Workgroup +-- Stack products which implement tftp upload/download functions. + +tftpHost OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Name of source/destination host for the TFTP + transfer or storage device transfer. If the name + is for the TFTP transfer, it can be the IP + address or the host name. If the name for the + storage device transfer, it will be in the format + of deviceName: (e.g. slot0:, slot1:)." + ::= { tftpGrp 1 } + +tftpFile OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Name of file for the TFTP transfer or for storage + device transfer." + ::= { tftpGrp 2 } + +tftpModule OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Which module's code/configuration is being + transferred." + ::= { tftpGrp 3 } + +tftpAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + downloadConfig(2), + uploadConfig(3), + downloadSw(4), + uploadSw(5), + downloadFw(6), + uploadFw(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Setting this object to one of the acceptable + values initiates the requested action using the + information given in tftpHost, tftpFile, + tftpModule. + + downloadConfig(2): receive configuration from + host/file + uploadConfig(3) : send configuration to + host/file + downloadSw(4) : receive software image from + host/file + uploadSw(5) : send software image to + host/file + downloadFw(6) : receive firmware image from + host/file + uploadFw(7) : send firmware image to + host/file + Setting this object to any other value results in + an error." + ::= { tftpGrp 4 } + +tftpResult OBJECT-TYPE + SYNTAX INTEGER { + inProgress(1), + success(2), + noResponse(3), + tooManyRetries(4), + noBuffers(5), + noProcesses(6), + badChecksum(7), + badLength(8), + badFlash(9), + serverError(10), + userCanceled(11), + wrongCode(12), + fileNotFound(13), + invalidTftpHost(14), + invalidTftpModule(15), + accessViolation(16), + unknownStatus(17), + invalidStorageDevice(18), + insufficientSpaceOnStorageDevice(19), + insufficientDramSize(20), + incompatibleImage(21) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Contains result of the last tftp action request." + ::= { tftpGrp 5 } + + + +-- the brouter group + +--Implementation of the brouter group is current for all Cisco Workgroup +--Stack products which implement combined bridging/routing functions. + +brouterEnableRip OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the RIP protocol is enabled." + DEFVAL { enabled } + ::= { brouterGrp 1 } + +brouterEnableSpantree OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates if Spanning Tree protocol is enabled." + DEFVAL { disabled } + ::= { brouterGrp 2 } + +brouterEnableGiantCheck OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether special handling of giant + packets is enabled." + DEFVAL { disabled } + ::= { brouterGrp 3 } + +brouterEnableIpFragmentation OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether IP fragmentation is enabled." + DEFVAL { enabled } + ::= { brouterGrp 4 } + +brouterEnableUnreachables OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether ICMP unreachable messages are + sent by the system." + DEFVAL { enabled } + ::= { brouterGrp 5 } + +brouterCamAgingTime OBJECT-TYPE + SYNTAX INTEGER (0..1000000) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The aging time for the CAM table. This duplicate + item is the same value as dot1dTpAgingTime." + DEFVAL { 300 } + ::= { brouterGrp 6 } + +brouterCamMode OBJECT-TYPE + SYNTAX INTEGER { filtering(1), forwarding(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Mode in which the CAM module is operating." + DEFVAL { filtering } + ::= { brouterGrp 7 } + +brouterIpxSnapToEther OBJECT-TYPE + SYNTAX INTEGER { + snap(1), + ethernetII(2), + iso8023(3), + raw8023(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The default translation for IPX packets when + bridging from FDDI SNAP to Ethernet." + DEFVAL { raw8023 } + ::= { brouterGrp 8 } + +brouterIpx8023RawToFddi OBJECT-TYPE + SYNTAX INTEGER { + snap(1), + iso8022(5), + fddiRaw(6) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The default translation for IPX packets when + bridging from Ethernet 802.3 Raw to FDDI." + DEFVAL { snap } + ::= { brouterGrp 9 } + +brouterEthernetReceiveMax OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Maximum number of Ethernet receive buffers + processed at one time per port." + DEFVAL { 64 } + ::= { brouterGrp 10 } + +brouterEthernetTransmitMax OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Maximum number of Ethernet transmit buffers + processed at one time per port." + DEFVAL { 64 } + ::= { brouterGrp 11 } + +brouterFddiReceiveMax OBJECT-TYPE + SYNTAX INTEGER (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Maximum number of FDDI receive buffers processed + at one time per port." + DEFVAL { 256 } + ::= { brouterGrp 12 } + +brouterFddiTransmitMax OBJECT-TYPE + SYNTAX INTEGER (1..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Maximum number of FDDI transmit buffers processed + at one time per port." + DEFVAL { 256 } + ::= { brouterGrp 13 } + +-- the brouter port table + +brouterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF BrouterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of brouter port entries. The number of + entries is determined by the number of modules in + the chassis and the number of ports on each + module." + ::= { brouterGrp 14 } + +brouterPortEntry OBJECT-TYPE + SYNTAX BrouterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing bridge/router information for a + particular port on a module." + INDEX { brouterPortModule, brouterPort } + ::= { brouterPortTable 1 } + +BrouterPortEntry ::= + SEQUENCE { + brouterPortModule + INTEGER, + brouterPort + INTEGER, + brouterPortIpVlan + VlanIndex, + brouterPortIpAddr + IpAddress, + brouterPortNetMask + IpAddress, + brouterPortBroadcast + IpAddress, + brouterPortBridgeVlan + INTEGER, + brouterPortIpHelpers + OCTET STRING + } + +brouterPortModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module index where this port is located." + ::= { brouterPortEntry 1 } + +brouterPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { brouterPortEntry 2 } + +brouterPortIpVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The IP Virtual LAN to which this port belongs." + ::= { brouterPortEntry 3 } + +brouterPortIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's IP address." + ::= { brouterPortEntry 4 } + +brouterPortNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's subnet mask." + ::= { brouterPortEntry 5 } + +brouterPortBroadcast OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's broadcast address." + ::= { brouterPortEntry 6 } + +brouterPortBridgeVlan OBJECT-TYPE + SYNTAX INTEGER (0..1023) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The bridge Virtual LAN to which this port + belongs." + ::= { brouterPortEntry 7 } + +brouterPortIpHelpers OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An indication of which other Virtual LANs UDP/IP + broadcasts received on this port will be forwarded + to. The normal situation is broadcasts NOT + forwarded beyond the originating VLAN, but it can + be useful in certain circumstances. This is an + octet string value with bits set to indicate + forwarded to VLANs. It can be interpreted as a sum + of f(x) as x goes from 0 to 1023, where f(x) = 0 + for no forwarding to VLAN x and f(x) = exp(2, x) + for VLAN x forwarded to. If all bits are 0 or the + octet string is zero length, then UDP/IP + broadcasts are not being forwarded to other + VLANs." + ::= { brouterPortEntry 8 } + +-- additional brouter group objects + +brouterIpx8022ToEther OBJECT-TYPE + SYNTAX INTEGER { + snap(1), + ethernetII(2), + iso8023(3), + raw8023(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The default translation for IPX packets when + bridging from FDDI 802.2 to Ethernet." + DEFVAL { iso8023 } + ::= { brouterGrp 15 } + +brouterEnableTransitEncapsulation OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether Ethernet packets are + encapsulated on FDDI via transit encapsulation + protocol. Normally this option would be disabled + to allow translational bridging between Ethernet + and FDDI to take place." + DEFVAL { disabled } + ::= { brouterGrp 16 } + +brouterEnableFddiCheck OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether MAC addresses learned one side + of a translational bridge should not be allowed to + be learned on the other side of the bridge. The + presence certain misbehaving devices on the + network may require this option to be enabled." + DEFVAL { disabled } + ::= { brouterGrp 17 } + +brouterEnableAPaRT OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the Automatic Packet + Recognition and Translation feature is enabled on + translational bridge(s) in the box. If APaRT is + disabled, the default translations as defined by + the objects brouterIpx8022ToEther, + brouterIpx8023RawToFddi, brouterIpxSnapToEther, + etc, are used on all packets and no automatic + learning of translation information is performed." + DEFVAL { enabled } + ::= { brouterGrp 18 } + + + +-- the filter group + +-- Implementation of the filter group is current for all Cisco Workgroup +-- Stack products which implement custom packet filtering functions. + +-- the filter mac table + +filterMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF FilterMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of filter mac entries." + ::= { filterGrp 1 } + +filterMacEntry OBJECT-TYPE + SYNTAX FilterMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing MAC address filter information." + INDEX { filterMacModule, filterMacPort, + filterMacAddress } + ::= { filterMacTable 1 } + +FilterMacEntry ::= + SEQUENCE { + filterMacModule + INTEGER, + filterMacPort + INTEGER, + filterMacAddress + MacAddress, + filterMacType + INTEGER + } + +filterMacModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { filterMacEntry 1 } + +filterMacPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { filterMacEntry 2 } + +filterMacAddress OBJECT-TYPE + SYNTAX MacAddress -- OCTET STRING (SIZE (6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A MAC address. If the source or destination MAC + address equals this value, a match occurs. The + packet is dropped if a match occurs and deny(1) + was specified. The packet is dropped if a match + doesn't occur and at least one MAC address filter + was specified with permit(3)." + ::= { filterMacEntry 3 } + +filterMacType OBJECT-TYPE + SYNTAX INTEGER { + deny(1), -- add deny entry + invalid(2), -- remove this entry + permit(3), -- add permit entry + permitSrc(4), -- add permit source entry + permitDst(5), -- add permit dest entry + denySrc(6), -- add deny source entry + denyDst(7), -- add deny dest entry + denySrcLearn(8) -- add deny source learn entry + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Setting this object to invalid(2) removes the + corresponding entry from the filterMacTable. + To add a new entry to the filterMacTable, set this + object to deny(1) or any value from permit(3) to + denySrcLearn(8) for a module, port, and MAC + address not already in the table." + ::= { filterMacEntry 4 } + +-- the filter vendor table + +filterVendorTable OBJECT-TYPE + SYNTAX SEQUENCE OF FilterVendorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of filter vendor ID entries." + ::= { filterGrp 2 } + +filterVendorEntry OBJECT-TYPE + SYNTAX FilterVendorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing vendor ID filter information." + INDEX { filterVendorModule, filterVendorPort, + filterVendorId } + ::= { filterVendorTable 1 } + +FilterVendorEntry ::= + SEQUENCE { + filterVendorModule + INTEGER, + filterVendorPort + INTEGER, + filterVendorId + VendorIdType, + filterVendorType + INTEGER + } + +filterVendorModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { filterVendorEntry 1 } + +filterVendorPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { filterVendorEntry 2 } + +filterVendorId OBJECT-TYPE + SYNTAX VendorIdType -- OCTET STRING (SIZE (3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The vendor ID portion of a MAC address. If the + source or destination MAC address has the same + vendor ID, a match occurs. The packet is dropped + if a match occurs and deny(1) was specified. The + packet is dropped if a match doesn't occur and at + least one Vendor ID filter was specified with + permit(3)." + ::= { filterVendorEntry 3 } + +filterVendorType OBJECT-TYPE + SYNTAX INTEGER { + deny(1), -- add deny entry + invalid(2), -- remove this entry + permit(3) -- add permit entry + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Setting this object to invalid(2) removes the + corresponding entry from the filterVendorTable. + To add a new entry to the filterVendorTable, set + this object to deny(1) or permit(3) for a module, + port, and vendor ID not already in the table." + ::= { filterVendorEntry 4 } + +-- the filter protocol table + +filterProtocolTable OBJECT-TYPE + SYNTAX SEQUENCE OF FilterProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of filter protocol entries." + ::= { filterGrp 3 } + +filterProtocolEntry OBJECT-TYPE + SYNTAX FilterProtocolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing PROTOCOL address filter + information." + INDEX { filterProtocolModule, filterProtocolPort, + filterProtocolValue } + ::= { filterProtocolTable 1 } + +FilterProtocolEntry ::= + SEQUENCE { + filterProtocolModule + INTEGER, + filterProtocolPort + INTEGER, + filterProtocolValue + INTEGER, + filterProtocolType + INTEGER + } + +filterProtocolModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { filterProtocolEntry 1 } + +filterProtocolPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { filterProtocolEntry 2 } + +filterProtocolValue OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A 16-bit protocol value. If the packet's type + field or the packet's DSAP/SSAP field is equal to + this value, a match occurs. The packet is dropped + if a match occurs and deny(1) was specified. The + packet is dropped if a match doesn't occur and at + least one protocol type filter was specified with + permit(3)." + ::= { filterProtocolEntry 3 } + +filterProtocolType OBJECT-TYPE + SYNTAX INTEGER { + deny(1), -- add deny entry + invalid(2), -- remove this entry + permit(3) -- add permit entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Setting this object to invalid(2) removes the + corresponding entry from the filterProtocolTable. + To add a new entry to the filterProtocolTable, set + this object to deny(1) or permit(3) for a module, + port, and protocol value not already in the + table." + ::= { filterProtocolEntry 4 } + +-- the filter test table + +filterTestTable OBJECT-TYPE + SYNTAX SEQUENCE OF FilterTestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of filter test entries." + ::= { filterGrp 4 } + +filterTestEntry OBJECT-TYPE + SYNTAX FilterTestEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing test filter information." + INDEX { filterTestModule, filterTestPort, + filterTestIndex } + ::= { filterTestTable 1 } + +FilterTestEntry ::= + SEQUENCE { + filterTestModule + INTEGER, + filterTestPort + INTEGER, + filterTestIndex + INTEGER, + filterTestType + INTEGER, + filterTestOffset + INTEGER, + filterTestValue + INTEGER, + filterTestMask + INTEGER + } + +filterTestModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { filterTestEntry 1 } + +filterTestPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { filterTestEntry 2 } + +filterTestIndex OBJECT-TYPE + SYNTAX INTEGER (1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies a test + for a particular module/port." + ::= { filterTestEntry 3 } + +filterTestType OBJECT-TYPE + SYNTAX INTEGER { + valid(1), -- add this entry + invalid(2) -- remove this entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Setting this object to invalid(2) removes the + corresponding entry from the filterTestTable. To + add a new entry to the filterTestTable, set this + object to valid(1) for a module, port, and test + index not already in the table." + ::= { filterTestEntry 4 } + +filterTestOffset OBJECT-TYPE + SYNTAX INTEGER (0..4500) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "A byte offset into packet. Must be a 32-bit word + aligned offset, i.e. 0, 4, 8, etc." + ::= { filterTestEntry 5 } + +filterTestValue OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "A 32-bit value to be compared against the packet + location specified by filterTestOffset." + ::= { filterTestEntry 6 } + +filterTestMask OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "A 32-bit value to be bitwise ANDed with the + packet location specified by filterTestOffset + before being compared to filterTestValue." + ::= { filterTestEntry 7 } + +-- the filter port table + +filterPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF FilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of filter port entries. The number of + entries is determined by the number of modules in + the chassis and the number of ports on each + module." + ::= { filterGrp 5 } + +filterPortEntry OBJECT-TYPE + SYNTAX FilterPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing filter information for a + particular port on a module." + INDEX { filterPortModule, filterPort } + ::= { filterPortTable 1 } + +FilterPortEntry ::= + SEQUENCE { + filterPortModule + INTEGER, + filterPort + INTEGER, + filterPortComplex + DisplayString, + filterPortBroadcastThrottle + INTEGER, + filterPortBroadcastThreshold + INTEGER, + filterPortBroadcastDiscards + Counter32, + filterPortBroadcastThresholdFraction + INTEGER, + filterPortSuppressionOption + BITS, + filterPortSuppressionViolation + INTEGER + } + +filterPortModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { filterPortEntry 1 } + +filterPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { filterPortEntry 2 } + +filterPortComplex OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..50)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A complex expression made up of the numbers 1 + through 8 indicating test results from + filterTestIndex and using logical operators '&' + (and), '|' (or), '!' (not), and parenthesis. For + example: ((1 & 2) | !3). If this complex filter + matches a packet, it is dropped." + ::= { filterPortEntry 3 } + +filterPortBroadcastThrottle OBJECT-TYPE + SYNTAX INTEGER (0..150000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The maximum number of broadcast packets per + second allowed on this port. If the number of + incoming broadcast packets in a one second + interval exceeds this amount, packets are + dropped for the rest of the interval. If the + capability exists, only broadcast packets should + be dropped. Otherwise, all packets are dropped + during the suppression interval. + + A value of 0 indicates broadcast packets should + not be limited. + + The ability to suppress broadcast packets in this + manner exists only on certain ports. If it does + not exist on this port, attempts to write a value + other than 0 are rejected. + + This object also applies to multicast (and/or) + unicast suppression when + filterPortSuppressionOption is enabled." + DEFVAL { 0 } + ::= { filterPortEntry 4 } + +filterPortBroadcastThreshold OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the integer part of the maximum + percentage of available bandwidth allowed for + incoming traffic of the specific traffic types on + this port. The associated object + filterPortBroadcastThresholdFraction indicates the + fraction part of the maximum percentage of + available bandwidth allowed for incoming traffic + of the specific traffic types on this port. Either + packets of the specific traffic types are dropped + of the port is put into errdisable state depending + on the value of filterPortSuppressionViolation on + this port if the percentage of incoming traffic of + the specific traffic types would exceed this + limit. The traffic types that are enabled for + this traffic suppression feature is indicated by + filterPortBroadcastOption. + + The maximum percentage for the combination of this + object value and the object value of + filterPortBroadcastThresholdFraction is 100.00 + which indicates traffic of all traffic types + should not be limited. + + The ability to suppress traffic in this manner + exists only on certain ports. If it does not + exist on this port, attempts to write a value of + this object other than 100 are rejected. + + On platforms where filterPortSuppressionOption + object is not supported, this object only applies + to broadcast suppression." + DEFVAL { 100 } + ::= { filterPortEntry 5 } + +filterPortBroadcastDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of packets discarded due to traffic + suppression on this port." + ::= { filterPortEntry 6 } + +filterPortBroadcastThresholdFraction OBJECT-TYPE + SYNTAX INTEGER (0..99) + UNITS "one-hundredths" + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the fraction part of the maximum + percentage of available bandwidth allowed for + incoming traffic of the specific traffic types on + this port. The associated object + filterPortBroadcastThreshold indicates the integer + part of the maximum percentage of available + bandwidth allowed for incoming traffic of the + specific traffic types on this port. Either + packets of the specific traffic types are dropped + or the port is put into errdisable state + depending on the value of + filterPortSuppressionViolation on this port if the + percentage of incoming traffic of the specific + traffic type would exceed this limit. The + traffic types that are enabled for this traffic + suppression feature is indicated by + filterPortBroadcastOption. + + The maximum percentage for the combination + of this object value and the object value of + filterPortBroadcastThreshold is 100.00 which + indicates traffic of all traffic types should not + be limited. + + The ability to suppress traffic in this manner + exists only on certain ports. If it does not exist + on this port, attempts to write a value of this + object other than 100 are rejected. + + On platforms where filterPortSuppressionOption + object is not supported, this object only applies + to broadcast suppression." + DEFVAL { 0 } + ::= { filterPortEntry 7 } + +filterPortSuppressionOption OBJECT-TYPE +-- SYNTAX OCTET STRING + SYNTAX BITS { + multicast(0), + unicast(1), + broadcast(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the traffic types that traffic + suppression feature is enabled for. + + multicast(0) is set when multicast suppression is + enabled. unicast(1) is set when unicast + suppression is enabled. broadcast(2) is set when + broadcast suppression is enabled." + ::= { filterPortEntry 8 } + +filterPortSuppressionViolation OBJECT-TYPE + SYNTAX INTEGER { + dropPackets(1), + errdisable(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the action that will be taken on this + port when the percentage of either broadcast, + multicast or unicast traffic exceeds the limit as + indicated by filterPortBroadcastThreshold and + filterPortBroadcastThresholdFraction. + + + dropPackets - the excessive packets will be + - dropped on this port. + + errdisable - the port will be put into errdisable + - state. + + The object is only supported on platforms that + support this suppression violation action + feature." + ::= { filterPortEntry 9 } + + +-- the monitor group + +-- Implementation of the monitor group is current for all Cisco +-- Workgroup Stack products which implement port monitoring functions. +-- +-- The monitorGrp is deprecated and replaced by +-- portCopyTable defined in SMON-MIB. + +monitorSourceModule OBJECT-TYPE + SYNTAX INTEGER (0..16) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies the + module where the monitoring source port is + located. A value of 0 indicates that the + monitorSourcePort is really a source Virtual LAN + number. To monitor multiple source ports, this + object should be set to 0 and + monitorAdminSourcePorts should be configured." + ::= { monitorGrp 1 } + +monitorSourcePort OBJECT-TYPE + SYNTAX INTEGER (0..1023) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies the + monitoring source port within a module or the + monitoring source Virtual LAN. To monitor multiple + source ports, this object should be set to 0 and + monitorAdminSourcePorts should be configured" + ::= { monitorGrp 2 } + +monitorDestinationModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies the + module where the monitoring destination port is + located." + ::= { monitorGrp 3 } + +monitorDestinationPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies the + monitoring destination port within a module." + ::= { monitorGrp 4 } + +monitorDirection OBJECT-TYPE + SYNTAX INTEGER { + transmit(1), + receive(2), + transmitAndReceive(3) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The type of packets to be monitored at the source + port." + DEFVAL { transmitAndReceive } + ::= { monitorGrp 5 } + +monitorEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether port monitoring is in + progress." + DEFVAL { disabled } + ::= { monitorGrp 6 } + +monitorAdminSourcePorts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates the administrative status of which + ports are monitored. All the monitored ports have + to be non-trunking port and belong to the same + Virtual LAN. The octet string contains one bit + per port. Each bit within the octet string + represents one port of the device. The ordering + of ports represented within the octet string is + in the same order as in the RFC 1493 + dot1dStpPortTable. + + The bit value interpretation is as follows: + 1 = being monitored + 0 = not being monitored" + ::= { monitorGrp 7 } + + +monitorOperSourcePorts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Indicates which ports are actually being + monitored. All the monitored ports have to be + non-trunking port and belong to the same Virtual + LAN. The octet string contains one bit per port. + Each bit within the octet string represents one + port of the device. The ordering of ports + represented within the octet string is in the same + order as in the RFC 1493 dot1dStpPortTable. + + The bit value interpretation is as follows: + 1 = being monitored + 0 = not being monitored" + ::= { monitorGrp 8 } + + + +-- the VLAN group + +-- the vlan table + +vlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A list of Virtual LAN entries. The number of + entries is determined by the number of VLANs + supported by the system." + ::= { vlanGrp 2 } + +vlanEntry OBJECT-TYPE + SYNTAX VlanEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "Entry containing information for a particular + Virtual LAN." + INDEX { vlanIndex } + ::= { vlanTable 1 } + +VlanEntry ::= + SEQUENCE { + vlanIndex + VlanIndex, + vlanSpantreeEnable + INTEGER, + vlanIfIndex + INTEGER + } + +vlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies the + Virtual LAN associated with this information." + ::= { vlanEntry 1 } + +vlanSpantreeEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2), + notApplicable(3) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether Spanning Tree protocol is + enabled for this Virtual LAN. + + If the device only supports a single global + Spanning Tree PVST+ Protocol enable/disable + for all the existing VLANs, then the object + value assigned to this VLAN will be applied + to the object values of all the instances + in this table which do not have the value + of notApplicable(3). + + This object is deprecated and replaced by + stpxPVSTVlanEnable in + CISCO-STP-EXTENSIONS-MIB." + DEFVAL { enabled } + ::= { vlanEntry 2 } + +vlanIfIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The value of the ifIndex object defined in + MIB-II, for the interface corresponding to this + VLAN. + + This object is deprecated and replaced by + vtpVlanIfIndex in CISCO-VTP-MIB." + ::= { vlanEntry 3 } + +-- the vlan port table + +vlanPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of Virtual LAN port entries. The number of + entries is determined by the number of modules in + the chassis and the number of ports on each + module." + ::= { vlanGrp 3 } + +vlanPortEntry OBJECT-TYPE + SYNTAX VlanPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing Virtual LAN information for a + particular port on a module." + INDEX { vlanPortModule, vlanPort } + ::= { vlanPortTable 1 } + +VlanPortEntry ::= + SEQUENCE { + vlanPortModule + INTEGER, + vlanPort + INTEGER, + vlanPortVlan + VlanIndex, + vlanPortIslVlansAllowed + OCTET STRING, + vlanPortSwitchLevel + INTEGER, + vlanPortIslAdminStatus + INTEGER, + vlanPortIslOperStatus + INTEGER, + vlanPortIslPriorityVlans + OCTET STRING, + vlanPortAdminStatus + INTEGER, + vlanPortOperStatus + INTEGER, + vlanPortAuxiliaryVlan + INTEGER + } + +vlanPortModule OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { vlanPortEntry 1 } + +vlanPort OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { vlanPortEntry 2 } + +vlanPortVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The Virtual LAN to which this port belongs." + ::= { vlanPortEntry 3 } + +-- vlanPortEntry 4 is not used + +vlanPortIslVlansAllowed OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An indication of which Virtual LANs are allowed + on this Inter-Switch Link. This is an octet string + value with bits set to indicate allowed VLANs. It + can be interpreted as a sum of f(x) as x goes from + 0 to 1023, where f(x) = 0 for VLAN x not allowed + and f(x) = exp(2, x) for VLAN x allowed." + ::= { vlanPortEntry 5 } + +vlanPortSwitchLevel OBJECT-TYPE + SYNTAX INTEGER { normal(1), high(2), notApplicable(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the priority level the port uses to + access the switching media. If vlanPortSwitchLevel + is not applicable to the port, notApplicable(3) + will be returned by the device." + DEFVAL { normal } + ::= { vlanPortEntry 6 } + +vlanPortIslAdminStatus OBJECT-TYPE + SYNTAX INTEGER { on(1), off(2), desirable(3), auto(4), + onNoNegotiate(5) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the administrative status set on the + trunk port while the operational status is the one + that indicates whether the port is actually + trunking or not. If the status is set to off(2), + the port is permanently set to be a non-trunk. If + the status is set to onNoNegotiate(5), the port is + permanently set to be a trunk and no negotiation + takes place with the far end to try to ensure + consistent operation. If the status is set to + on(1), the port initiates a request to become a + trunk and will become a trunk regardless of the + response from the far end. If the status is set to + desirable(3), the port initiates a request to + become a trunk and will become a trunk if the far + end agrees. If the status is set to auto(4), the + port does not initiate a request to become a trunk + but will do so if it receives a request to become + a trunk from the far end." + ::= { vlanPortEntry 7 } + +vlanPortIslOperStatus OBJECT-TYPE + SYNTAX INTEGER { trunking(1), notTrunking(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates if the port is actually trunking or + not. In the case of ISL capable ports, the status + depends on the success or failure of the + negotiation process initiated by the port to + become a trunk or non trunk. + In the case of 802.10 capable ports, it is + directly related to the on/off administrative + status." + ::= { vlanPortEntry 8 } + +vlanPortIslPriorityVlans OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An indication of which Virtual LANs have a better + dot1dStpPortPriority value. This object can be + used to perform load balancing on Inter-Switch + Links via spanning tree. An Inter-Switch Link has + two dot1dStpPortPriority values which are shared + by all the Virtual LANs on the link. The Virtual + LANs indicated by this object have priority + over the other Virtual LANs on the link. + + This is an octet string value with bits set to + indicate priority VLANs. It can be interpreted as + a sum of f(x) as x goes from 0 to 1023, where + f(x) = 0 for a VLAN x which does not have priority + and f(x) = exp(2, x) for a VLAN x which has + priority. + + Setting the dot1dStpPortPriority value for any of + the Virtual LANs indicated by this object causes + the dot1dStpPortPriority value for all the Virtual + LANs indicated by this object to be set to the + same value. + + Setting the dot1dStpPortPriority value for any + other Virtual LAN causes the dot1dStpPortPriority + value for all other Virtual LANs to be set to the + same value." + ::= { vlanPortEntry 9 } + +vlanPortAdminStatus OBJECT-TYPE + SYNTAX INTEGER { static(1), dynamic(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the port will get assigned to a + VLAN statically or dynamically. When it is set to + dynamic, the needed information will be accessed + from one of the Vlan Membership Policy Servers + specified in the vmpsTable. Default value is + static(1). + Note that vlanPortAdminStatus cannot be set to + dynamic(2) for a port which has + portSecurityAdminStatus set to enabled(1) or for a + port which currently has a vlanPortIslOperStatus + of trunking(1)." + DEFVAL { static } + ::= { vlanPortEntry 10 } + +vlanPortOperStatus OBJECT-TYPE + SYNTAX INTEGER { inactive(1), + active(2), + shutdown(3), + vlanActiveFault(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An indication of the current VLAN status of the + port. + A status of inactive(1) indicates that a dynamic + port does not yet have a VLAN assigned or that a + static or dynamic port has been assigned a VLAN + that is not currently active. A status of + active(2) indicates that the currently assigned + VLAN is active. A status of shutdown(3) indicates + that the port has been shutdown as a result of a + VMPS response on a dynamic port. + A status of vlanActiveFault(4) only applies to + tokenring ports and indicates that the port is + operationally disabled because the TR-CRF VLAN of + which the port is a member has active ports on + another device and only ports on that remote + device may participate in that TR-CRF VLAN." + ::= { vlanPortEntry 11 } + +vlanPortAuxiliaryVlan OBJECT-TYPE + SYNTAX INTEGER ( 0|1..1000|1025..4094|4095|4096 ) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The Voice Virtual Vlan ID (VVID) to which this + port belongs to. + If the VVID is not supported on the port, this MIB + object will not be configurable and will return + 4096. + + Setting this MIB object to 4096, the CDP packets + transmitting through this port would not include + Appliance VLAN-ID TLV. + + Setting this MIB object to 4095, the CDP packets + transmitting through this port would contain + Appliance VLAN-ID TLV with value of 4095 - VoIP + and related packets are expected to be sent and + received untagged without an 802.1p priority. + + Setting this MIB object to 0, the CDP packets + transmitting through this port would contain + Appliance VLAN-ID TLV with value of 0 - VoIP + and related packets are expected to be sent and + received with VLAN-id=0 and an 802.1p priority. + + Setting this MIB object to N (1..1000|1025..4094), + the CDP packets transmitting through this port + would contain Appliance VLAN-ID TLV with N - VoIP + and related packets are expected to be sent and + received with VLAN-id=N and an 802.1p priority. + + This object is deprecated and replaced by + vmVoiceVlanId in CISCO-VLAN-MEMBERSHIP-MIB." + ::= { vlanPortEntry 12 } + +-- the Vlan Membership Policy Server table + +vmpsTable OBJECT-TYPE + SYNTAX SEQUENCE OF VmpsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists a maximum of 3 IP addresses of + Vlan Membership Policy Servers." + ::= { vlanGrp 4 } + +vmpsEntry OBJECT-TYPE + SYNTAX VmpsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A VMPS table entry." + INDEX { vmpsAddr } + ::= { vmpsTable 1 } + +VmpsEntry ::= + SEQUENCE { + vmpsAddr + IpAddress, + vmpsType + INTEGER + } + +vmpsAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a Vlan Membership Policy + Server. To configure the internal VMPS, use the + same IP address as specified in sysIpAddr." + ::= { vmpsEntry 1 } + +vmpsType OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), -- remove this entry + primary(2), -- the primary entry + other(3) -- a lower priority entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "To add a new entry to the vmpsTable, set this + object to primary(2) or other(3) for an IP address + which is not already in the table. The primary + entry will be used first, if it is reachable. + Otherwise one of the other entries will be used. + Setting one entry to primary(2) causes any + previous primary entry to change to other(3). + To remove an entry from the table, set this + object to invalid(1)." + ::= { vmpsEntry 2 } + +vmpsAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of following (read-only) + inProgress(2), -- (read-only) + success(3), -- (read-only) + noResponse(4), -- (read-only) + noPrimaryVmps(5), -- No VMPS configured (read-only) + noDynamicPort(6), -- No dynamic ports configured + -- (read-only) + noHostConnected(7), -- No hosts on dynamic ports + -- (read-only) + reconfirm(8) -- (write-only) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object, when read, returns the result of the + last action requested: other(1), inProgress(2), + success(3), noResponse(3), noPrimaryVmps(5), + noDynamicPort(6), or noHostConnected(7). + + Setting this object to reconfirm(8) causes the + switch to contact the Vlan Membership Policy + Server immediately to reconfirm the current VLAN + assignments for all dynamic ports on the switch. + Normally VLAN assignments for dynamic ports are + reconfirmed once an hour." + ::= { vlanGrp 5 } + +vmpsAccessed OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of the last Vlan Membership Policy + Server accessed. If there was no response from the + last VMPS request, the value returned is 0." + ::= { vlanGrp 6 } + +-- trunk VLAN mapping table + +vlanTrunkMappingMax OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + UNITS "entries" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Maximum number of active configurable trunk VLAN + mapping entries allowed. A value of zero indicates + no limitation on the number of active configurable + trunk VLAN mapping." + ::= { vlanGrp 7 } + +vlanTrunkMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanTrunkMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains zero or more rows of trunk + VLAN to VLAN associations. The maximum number of + active entries is determined by + vlanTrunkMappingMax. + + VLAN above 1k can not be created if the value of + corresponding instance of vlanTrunkMappingType is + dot1qToisl(2)." + ::= { vlanGrp 8 } + +vlanTrunkMappingEntry OBJECT-TYPE + SYNTAX VlanTrunkMappingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Information about the VLAN mapping of a + particular trunk VLAN to another VLAN." + INDEX { vlanTrunkMappingFromVlan } + ::= { vlanTrunkMappingTable 1 } + +VlanTrunkMappingEntry ::= + SEQUENCE { + vlanTrunkMappingFromVlan VlanIndex, + vlanTrunkMappingToVlan VlanIndex, + vlanTrunkMappingType INTEGER, + vlanTrunkMappingOper TruthValue, + vlanTrunkMappingStatus RowStatus + } + +vlanTrunkMappingFromVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The VLAN with this VLAN ID will be mapped to the + VLAN in the corresponding instance of + vlanTrunkMappingToVlan in the device. + + Agent returns inconsistentValue if this VLAN + exists in the device. + + Agent returns inconsistentValue if this VLAN is + not a reserved VLAN and the value of corresponding + instance of vlanTrunkMappingType is + reservedToNonReserved(1). + + Agent returns wrongValue if this VLAN is not a + valid 802.1Q VLAN and the value of corresponding + instance of vlanTrunkMappingType is + dot1qToisl(2)." + ::= { vlanTrunkMappingEntry 1 } + +vlanTrunkMappingToVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The VLAN which the corresponding instance of + vlanTrunkMappingFromVlan will be mapped to. + + Agent returns inconsistentValue if this VLAN + exists in the device. + + Agent returns inconsistentValue if this VLAN is a + reserved VLAN and the value of corresponding + instance of vlanTrunkMappingType is + reservedToNonReserved(1). + + Agent returns inconsistentValue if this VLAN is + not a valid ISL VLAN and the value of + corresponding instance of vlanTrunkMappingType + is dot1qToisl(2)." + ::= { vlanTrunkMappingEntry 2 } + +vlanTrunkMappingType OBJECT-TYPE + SYNTAX INTEGER { + reservedToNonReserved(1), + dot1qToisl(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The type of this trunk VLAN mapping. + + reservedToNonReserved(1) + An user defined association which maps a + reserved VLAN to a non-reserved VLAN. + + dot1qToisl(2) + An user defined association which maps a VLAN + in 802.1q trunk to a VLAN in ISL trunk. + + Implementations are allowed to restrict the + available types for this object. + + For devices which support the range of VlanIndex + between 1024 and 4095, the default value is + reservedToNonReserved(1). The default value is + dot1qToisl(2) for devices which do not support the + range of VlanIndex between 1024 and 4095." + ::= { vlanTrunkMappingEntry 3 } + +vlanTrunkMappingOper OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether this VLAN mapping is effective + or not." + ::= { vlanTrunkMappingEntry 4 } + +vlanTrunkMappingStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status of this trunk VLAN mapping. + + Once a row becomes active, value in any other + column within such row cannot be modified except + by setting vlanTrunkMappingStatus to + notInService(2) for such row." + ::= { vlanTrunkMappingEntry 5 } + + + +-- the security group + +-- Implementation of the security group is optional, but within the +-- group all the elements are current. If the Security feature is +-- implemented, the entire group should be implemented. + +-- the port security table + +portSecurityTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of port security entries. The number of + entries is determined by the number of ports in + the system which support the Security feature." + ::= { securityGrp 1 } + +portSecurityEntry OBJECT-TYPE + SYNTAX PortSecurityEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing security information for a + particular port." + INDEX { portSecurityModuleIndex, portSecurityPortIndex } + ::= { portSecurityTable 1 } + +PortSecurityEntry ::= + SEQUENCE { + portSecurityModuleIndex + INTEGER, + portSecurityPortIndex + INTEGER, + portSecurityAdminStatus + INTEGER, + portSecurityOperStatus + INTEGER, + portSecurityLastSrcAddr + OCTET STRING, + portSecuritySecureSrcAddr + OCTET STRING, + portSecurityMaxSrcAddr + INTEGER, + portSecurityAgingTime + INTEGER, + portSecurityShutdownTimeOut + INTEGER, + portSecurityViolationPolicy + INTEGER + } + +portSecurityModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { portSecurityEntry 1 } + +portSecurityPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { portSecurityEntry 2 } + +portSecurityAdminStatus OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When security is enabled, source MAC addresses + are monitored for all packets received on the + port. If an address is detected that does not + match the portSecuritySecureSrcAddr and any + corresponding portSecurityExtSecureSrcAddr, of + which portSecurityExtModuleIndex and + portSecurityExtPortIndex in the + portSecurityExtTable is the same as the + portSecurityModuleIndex and portSecurityPortIndex, + and the number of MAC address learned or + configured for this port is equal to + portSecurityMaxSrcAddr, the port will shutdown or + drop packets. If the + portSecurityViolationPolicy is set to shutdown(2), + the port is shutdown and a linkDown trap is sent; + otherwise the port drops the invalid packets." + DEFVAL { disabled } + ::= { portSecurityEntry 3 } + +portSecurityOperStatus OBJECT-TYPE + SYNTAX INTEGER { notShutdown(1), shutdown(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An indication of whether the port has been shut + down as a result of an insecure address being + detected on a secure port." + ::= { portSecurityEntry 4 } + +portSecurityLastSrcAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The last source MAC address in a receive packet + seen on the port." + ::= { portSecurityEntry 5 } + +portSecuritySecureSrcAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The address to be compared with source MAC + addresses of received packets when the + portSecurityAdminStatus is enabled(1). Setting + this value to 0.0.0.0.0.0 puts the port in + learning mode so that the next source MAC + address received by the port becomes the + portSecuritySecureSrcAddr." + ::= { portSecurityEntry 6 } + +portSecurityMaxSrcAddr OBJECT-TYPE + SYNTAX INTEGER(1..1025) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The maximum number (N) of MAC address to be + secured on the port. The first N MAC addresses + learned or configured are made secured. If the + user wants to make the port secured for more than + one MAC address, the portSecurityExtTable is used + in addition to portSecuritySecureSrcAddr. If + changing the maximum number N of Mac address to M, + which is smaller than N, some MAC addresses are + removed. Setting this value to 1, + the portSecurityExtTable will not be used for this + port and the corresponding entries for this port + will also be removed from portSecurityExtTable." + DEFVAL { 1 } + ::= { portSecurityEntry 7 } + +portSecurityAgingTime OBJECT-TYPE + SYNTAX INTEGER(0|10..1440) + UNITS "minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The interval in which the port is secured. After + the expiration of the time, the corresponding + portSecuritySecureSrcAddr or + portSecurityExtSecureSrcAddr will be removed from + the secure address list. If the value of this + object is 0, the aging mechanism is disabled." + DEFVAL { 0 } + ::= {portSecurityEntry 8} + +portSecurityShutdownTimeOut OBJECT-TYPE + SYNTAX INTEGER(0|10..1440) + UNITS "minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The interval in which the port is shutdown due to + the violation of security. After the expiration + of the time all the security configuration of this + port is re-installed and the port is enabled. If + the value of this object is 0, the port is shut + down permanently." + DEFVAL { 0 } + ::= {portSecurityEntry 9} + +portSecurityViolationPolicy OBJECT-TYPE + SYNTAX INTEGER { restrict(1), shutdown(2)} + MAX-ACCESS read-write + STATUS current + DESCRIPTION "If the value of this object is + restrict(1) - the port drops all packets with + insecured addresses. + shutdown(2) - the port is forced to shut down + if there is a violation of + security." + DEFVAL { shutdown } + ::= {portSecurityEntry 10} + +-- the port security extension table. This table will be used if +-- the portSecurityMaxSrcAddr for any port is set to value that is +-- greater than 1. + +portSecurityExtTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSecurityExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of port security entries. The number of + entries is determined by the number of ports in + the system which support the Security feature and + the number of MAC addresses learned/configured to + be secured per port." + ::= { securityGrp 2 } + +portSecurityExtEntry OBJECT-TYPE + SYNTAX PortSecurityExtEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing security information for a + particular port and a particular MAC address. The + entry can be configured by the user and can be + added by the agent when the device learns a new + secured MAC address." + INDEX { portSecurityExtModuleIndex, + portSecurityExtPortIndex, + portSecurityExtSecureSrcAddr } + ::= { portSecurityExtTable 1 } + +PortSecurityExtEntry ::= + SEQUENCE { + portSecurityExtModuleIndex + INTEGER, + portSecurityExtPortIndex + INTEGER, + portSecurityExtSecureSrcAddr + OCTET STRING, + portSecurityExtControlStatus + INTEGER + } +portSecurityExtModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { portSecurityExtEntry 1 } + +portSecurityExtPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { portSecurityExtEntry 2 } + +portSecurityExtSecureSrcAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the MAC + address, which is to be secured." + ::= { portSecurityExtEntry 3} + +portSecurityExtControlStatus OBJECT-TYPE + SYNTAX INTEGER { valid(1), invalid(2)} + MAX-ACCESS read-create + STATUS current + DESCRIPTION "This object used to add or remove a secured + MAC address of the corresponding port in + the row. If setting this object to valid(1), the + portSecurityExtSecureSrcAddr is made to be secured + for the port. If setting this object to + invalid(2), the portSecurityExtSecureSrcAddr is + no longer to be secured for the current port." + ::= {portSecurityExtEntry 4} + + + +-- the token ring group + +-- Implementation of the token ring group is current for all Cisco +-- Workgroup Stack products which implement token ring functions +-- (wsx5030 and wsx5031). + +-- Token Ring Port Configuration Table + +tokenRingPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF TokenRingPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Table containing token ring configuration + information." + ::= { tokenRingGrp 1 } + +tokenRingPortEntry OBJECT-TYPE + SYNTAX TokenRingPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing token ring configuration + information for a particular port." + INDEX { tokenRingModuleIndex, tokenRingPortIndex } + ::= { tokenRingPortTable 1 } + +TokenRingPortEntry ::= + SEQUENCE { + tokenRingModuleIndex + INTEGER, + tokenRingPortIndex + INTEGER, + tokenRingPortSetACbits + INTEGER, + tokenRingPortMode + INTEGER, + tokenRingPortEarlyTokenRel + INTEGER, + tokenRingPortPriorityThresh + INTEGER, + tokenRingPortPriorityMinXmit + INTEGER, + tokenRingPortCfgLossThresh + INTEGER, + tokenRingPortCfgLossInterval + INTEGER + } + +tokenRingModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { tokenRingPortEntry 1 } + +tokenRingPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { tokenRingPortEntry 2 } + +tokenRingPortSetACbits OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies if the AC bits shall be set + unconditionally when a port forwards certain LLC + frames." + DEFVAL { disabled } + ::= { tokenRingPortEntry 3 } + +tokenRingPortMode OBJECT-TYPE + SYNTAX INTEGER { auto(1), + fdxCport(2), + fdxStation(3), + hdxCport(4), + hdxStation(5), + riro(7) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the port's mode of operation. + + auto: Automatically detect the port mode + upon insertion. + + fdxCport: Transmit Immediate (full-duplex) + Concentrator Port + + fdxStation: Transmit Immediate (full-duplex) + Station emulation + + hdxCport: Token Passing Protocol (half-duplex) + Concentrator Port + + hdxStation: Token Passing Protocol (half-duplex) + Station emulation + + riro: RingIn/RingOut mode. (wsx5031 only)" + DEFVAL { auto } + ::= { tokenRingPortEntry 4 } + +-- tokenRingPortEntry 5 to 8 are not used + +tokenRingPortEarlyTokenRel OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object provides the ability to enable or + disable early token release for a particular port. + + Early token release only applies to ports + operating at 16 Mbps. If ifSpeed reflects 4 Mbps + for a particular port, then the corresponding + instance of this object will have a value of + disabled(2) regardless of attempts to set the + object to enabled(1). + + Whenever a port is opened with a ring speed of + 16 Mbps, by default, early token release will be + enabled." + ::= { tokenRingPortEntry 9 } + +tokenRingPortPriorityThresh OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The highest token ring frame priority that shall + go to the low-priority transmit queue." + DEFVAL { 3 } + ::= { tokenRingPortEntry 10 } + +tokenRingPortPriorityMinXmit OBJECT-TYPE + SYNTAX INTEGER (0..6) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The minimum token priority that will be used for + transmit." + DEFVAL { 4 } + ::= { tokenRingPortEntry 11 } + +tokenRingPortCfgLossThresh OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Number of configuration loss events during the + sample interval which, if exceeded, should cause + the port to be disabled. If the port is disabled + by this function the port must be administratively + re-enabled." + DEFVAL { 8 } + ::= { tokenRingPortEntry 12 } + +tokenRingPortCfgLossInterval OBJECT-TYPE + SYNTAX INTEGER (1..9999) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The sampling interval, in minutes, for which the + port monitors to see if the configuration loss + threshold has been exceeded." + DEFVAL { 10 } + ::= { tokenRingPortEntry 13 } + +-- DRiP related objects. +tokenRingDripDistCrfMode OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object reflects whether TR-CRFs can be + distributed across ISL topologies. Setting + this object to enabled(1) allows TR-CRFs to be + distributed. Setting this object to disabled(2) + prevents TR-CRFs from being distributed across + ISL topologies. When this object is set to + disabled(2), the system will disable ports + involved in the distributed TR-CRF." + DEFVAL { disabled } + ::= { tokenRingGrp 2 } + +tokenRingDripAreReductionMode OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object reflects whether or not All + Routes Explorer (ARE) reduction capabilities are + enabled or disabled on this system. Setting + this object to enabled(1) will permit DRiP to + participate in the configuration of Token Ring + ports ARE reduction capabilities on the system. + Setting this object to disabled(2) will prevent + DRiP from participating in the configuration + of Token Ring port ARE reduction capabilities." + DEFVAL { enabled } + ::= { tokenRingGrp 3 } + +tokenRingDripLocalNodeID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The unique system identifier that will be sent + in all advertisements generated by this system. + It uniquely identifies this system from other + DRiP capable systems." + ::= { tokenRingGrp 4 } + +tokenRingDripLastRevision OBJECT-TYPE + SYNTAX INTEGER (0..9999999) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The revision number transmitted in the most + recent advertisement. That advertisement may + or may not have contained changed data." + ::= { tokenRingGrp 5 } + +tokenRingDripLastChangedRevision OBJECT-TYPE + SYNTAX INTEGER (0..9999999) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The revision number transmitted in the most + recent advertisement containing changed data." + ::= { tokenRingGrp 6 } + +tokenRingDripAdvertsReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of DRiP advertisements received + by this system." + ::= { tokenRingGrp 7 } + +tokenRingDripAdvertsTransmitted OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of DRiP advertisements transmitted + by this system." + ::= { tokenRingGrp 8 } + +tokenRingDripAdvertsProcessed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of DRiP advertisements processed + by this system." + ::= { tokenRingGrp 9 } + +tokenRingDripInputQueueDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of DRiP advertisements dropped + from this system's input queue." + ::= { tokenRingGrp 10 } + +tokenRingDripOutputQueueDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of DRiP advertisements dropped + from this system's output queue." + ::= { tokenRingGrp 11 } + +tokenRingDripLocalVlanStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF TokenRingDripLocalVlanStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table containing DRiP VLAN status information + local to this system. The existence of an + entry indicates that at least one local port + is assigned to the associated TR-CRF VLAN." + ::= { tokenRingGrp 12 } + +tokenRingDripLocalVlanStatusEntry OBJECT-TYPE + SYNTAX TokenRingDripLocalVlanStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing DRiP related information for + a particular TR-CRF VLAN." + INDEX { tokenRingDripVlan } + ::= { tokenRingDripLocalVlanStatusTable 1 } + +TokenRingDripLocalVlanStatusEntry ::= + SEQUENCE { + tokenRingDripVlan + VlanIndex, + tokenRingDripLocalPortStatus + INTEGER, + tokenRingDripRemotePortStatus + INTEGER, + tokenRingDripRemotePortConfigured + INTEGER, + tokenRingDripDistributedCrf + INTEGER, + tokenRingDripBackupCrf + INTEGER, + tokenRingDripOwnerNodeID + OCTET STRING + } + +tokenRingDripVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A TR-CRF VLAN ID." + ::= { tokenRingDripLocalVlanStatusEntry 1 } + +tokenRingDripLocalPortStatus OBJECT-TYPE + SYNTAX INTEGER { active(1), inactive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object reflects DRiP's status regarding + the overall set of local ports assigned to + the TR-CRF VLAN associated with this entry. + A value of active(1) indicates that at least + one local port is inserted/connected (i.e., + active on the Token Ring). A value of inactive(2) + indicates that none of the local ports are + inserted/connected. All local ports are either + disabled or are simply not connected." + ::= { tokenRingDripLocalVlanStatusEntry 2 } + +tokenRingDripRemotePortStatus OBJECT-TYPE + SYNTAX INTEGER { active(1), inactive(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object reflects DRiP's status regarding + any ports on remote systems. A value of + active(1) indicates that at least one remote + port is inserted/connected (i.e., active on + the Token Ring). A value of inactive(2) indicates + that none of the remote ports are + inserted/connected. All remote ports are either + disabled or are simply not connected." + ::= { tokenRingDripLocalVlanStatusEntry 3 } + +tokenRingDripRemotePortConfigured OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object reflects whether or not DRiP has + detected remote ports assigned to the TR-CRF + VLAN associated with this entry. A value of + true(1) indicates there is at least one port + on a remote system assigned to this TR-CRF VLAN. + A value of false(2) indicates no remote ports + are assigned to this TR-CRF VLAN." + ::= { tokenRingDripLocalVlanStatusEntry 4 } + +tokenRingDripDistributedCrf OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object reflects whether DRiP considers the + TR-CRF VLAN associated with this entry to be + distributed across systems. A value of true(1) + indicates the TR-CRF is distributed. A value + of false(2) indicates the TR-CRF is not + distributed." + ::= { tokenRingDripLocalVlanStatusEntry 5 } + +tokenRingDripBackupCrf OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object reflects whether or not the TR-CRF + VLAN associated with this entry is configured + as a backup TR-CRF. A value of true(1) indicates + the TR-CRF is a configured as a backup. A value + of false(2) indicates the TR-CRF is not configured + as a backup." + ::= { tokenRingDripLocalVlanStatusEntry 6 } + +tokenRingDripOwnerNodeID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The unique identifier of the system that has + advertised that it has local ports assigned to the + TR-CRF VLAN associated with this entry." + ::= { tokenRingDripLocalVlanStatusEntry 7 } + +-- Token Ring Port Soft Error Monitoring Configuration Table +tokenRingPortSoftErrTable OBJECT-TYPE + SYNTAX SEQUENCE OF TokenRingPortSoftErrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Table containing token ring soft error monitoring + configuration information." + ::= { tokenRingGrp 14 } +tokenRingPortSoftErrEntry OBJECT-TYPE + SYNTAX TokenRingPortSoftErrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing token ring soft error monitoring + configuration information for a particular port." + AUGMENTS { tokenRingPortEntry } + ::= { tokenRingPortSoftErrTable 1 } + +TokenRingPortSoftErrEntry ::= SEQUENCE { + tokenRingPortSoftErrThresh + INTEGER, + tokenRingPortSoftErrReportInterval + INTEGER, + tokenRingPortSoftErrResetCounters + INTEGER, + tokenRingPortSoftErrLastCounterReset + TimeTicks, + tokenRingPortSoftErrEnable + INTEGER + } +tokenRingPortSoftErrThresh OBJECT-TYPE + SYNTAX INTEGER ( 1..255 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The number of soft errors reported from a station + connected to this port which, if exceeded, should + cause a soft error exceeded trap to be issued. + The error counters being monitored and compared to + this threshold value are all of the error counters + in the ringStationTable (see RFC 1513)." + DEFVAL { 100 } + ::= { tokenRingPortSoftErrEntry 1 } + +tokenRingPortSoftErrReportInterval OBJECT-TYPE + SYNTAX INTEGER ( 0..65535 ) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The sampling period, in seconds, in which each + station connected to this port will be monitored + for excessive soft error reports. If a station + reports more than tokenRingPortSoftErrThreshold + errors within the sampling period a trap will be + issued to the management station(s). Setting a + value of 0 will cause no traps to be sent for + this port." + DEFVAL { 60 } + ::= { tokenRingPortSoftErrEntry 2 } + +tokenRingPortSoftErrResetCounters OBJECT-TYPE + SYNTAX INTEGER { noop(1), reset(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When this object is set to reset(2), all Soft + Error Monitoring related counters on this port + will be set to 0." + ::= { tokenRingPortSoftErrEntry 3 } + +tokenRingPortSoftErrLastCounterReset OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The time (in hundredths of a second) since Soft + Error Monitoring counters for this port were last + cleared." + ::= { tokenRingPortSoftErrEntry 4 } + +tokenRingPortSoftErrEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the Token Ring Soft Error + Monitoring feature is enabled on this port or not. + The detailed soft error statistics are provided + by Token Ring RMON SNMP objects. Thus, if RMON + (sysEnableRmon) is disabled(2) then the soft error + statistics will only be available from the CLI." + DEFVAL { disabled } + ::= { tokenRingPortSoftErrEntry 5 } + + + +-- the multicast group + +-- Implementation of the multicast group is optional, but within the +-- group all the elements are current. If multicast features are +-- supported, the entire group should be implemented. + +-- the multicast router table + +mcastRouterTable OBJECT-TYPE + SYNTAX SEQUENCE OF McastRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of multicast router port entries. The + number of entries is determined by the number of + ports in the system." + ::= { multicastGrp 1 } + +mcastRouterEntry OBJECT-TYPE + SYNTAX McastRouterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing multicast router information for + a particular port." + INDEX { mcastRouterModuleIndex, mcastRouterPortIndex } + ::= { mcastRouterTable 1 } + +McastRouterEntry ::= + SEQUENCE { + mcastRouterModuleIndex + INTEGER, + mcastRouterPortIndex + INTEGER, + mcastRouterAdminStatus + INTEGER, + mcastRouterOperStatus + INTEGER + } + +mcastRouterModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located + (see portModuleIndex)." + ::= { mcastRouterEntry 1 } + +mcastRouterPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { mcastRouterEntry 2 } + +mcastRouterAdminStatus OBJECT-TYPE + SYNTAX INTEGER { routerPresent(1), + dynamic(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "And indication of whether the presence of an IP + multicast router on this port is to be determined + statically or dynamically. The value + routerPresent(1) indicates that the presence of a + router is statically configured to be present. + The value dynamic(3) indicates the presence is to + be learned dynamically." + DEFVAL { dynamic } + ::= { mcastRouterEntry 3 } + +mcastRouterOperStatus OBJECT-TYPE + SYNTAX INTEGER { routerPresent(1), noRouter(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An indication of whether an IP multicast router + is present on this port." + ::= { mcastRouterEntry 4 } + +mcastEnableCgmp OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether Cisco Group Management Protocol + is enabled on the device or not. When CGMP is + enabled in conjunction with Cisco routers running + CGMP, only the required ports will participate in + IP multicast groups." + DEFVAL { disabled } + ::= { multicastGrp 2 } + +mcastEnableIgmp OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether Internet Group Management + Protocol is enabled on the device or not. When + IGMP is enabled in conjunction with Cisco routers + running CGMP, only the required ports will + participate in IP multicast groups." + DEFVAL { disabled } + ::= { multicastGrp 3 } + +mcastEnableRgmp OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether Router Group Management + Protocol is enabled on the device or not. When + RGMP is enabled in conjunction with Cisco routers + running RGMP, multicast data traffic is forwarded + only to those multicast routers that are + interested to receive that data traffic. IGMP + snooping feature must be enabled on the system + to make RGMP feature operational." + DEFVAL { disabled } + ::= { multicastGrp 4 } + + + +-- the DNS group + +-- Implementation of the DNS group is optional, but within the group +-- all the elements are current. If DNS features are supported, +-- the entire group should be implemented. + +dnsEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates if the DNS feature is enabled or + disabled." + DEFVAL { disabled } + ::= { dnsGrp 1} + +dnsServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF DnsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists a maximum of 3 DNS servers." + ::= { dnsGrp 2 } + +dnsServerEntry OBJECT-TYPE + SYNTAX DnsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A DNS server table entry." + INDEX { dnsServerAddr } + ::= { dnsServerTable 1 } + +DnsServerEntry ::= + SEQUENCE { + dnsServerAddr + IpAddress, + dnsServerType + INTEGER + } + +dnsServerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a DNS server." + ::= { dnsServerEntry 1 } + +dnsServerType OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), -- remove this entry + primary(2), -- the primary entry + other(3) -- a lower priority entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "To add a new entry to the dnsServerTable, set + this object to primary(2) or other(3) for an IP + address which is not already in the table. The + primary entry will be used first, if it is + reachable. Otherwise, one of the other entries + will be used. Setting one entry to primary(2) + causes any previous primary entry to change to + other(3). To remove an entry from the table, set + this object to invalid(1)." + ::= { dnsServerEntry 2 } + +dnsDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "DNS domain name." + REFERENCE "RFC1035, section 2.3.1 Preferred name syntax." + ::= { dnsGrp 3 } + + + +-- the syslog (System Log Information) group + +-- Implementation of the syslog group is optional, but within the group +-- all the elements are current. If the syslog feature is supported, +-- the entire group should be implemented. + + +syslogServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists a maximum of 3 system log + servers." + ::= { syslogGrp 1 } + +syslogServerEntry OBJECT-TYPE + SYNTAX SyslogServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A system log server table entry." + INDEX { syslogServerAddr } + ::= { syslogServerTable 1 } + +SyslogServerEntry ::= + SEQUENCE { + syslogServerAddr + IpAddress, + syslogServerType + INTEGER + } + +syslogServerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a system log Server." + ::= { syslogServerEntry 1 } + +syslogServerType OBJECT-TYPE + SYNTAX INTEGER { + valid(1), -- add this entry + invalid(2) -- remove this entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "To add/remove a new entry to the + syslogServerTable, setting to invalid(2) removes + the corresponding entry from the + syslogServerTable. To add a new entry into + syslogServerTable, set this object to valid(1) + for an IP address which is not already in the + table." + ::= { syslogServerEntry 2 } + + +syslogConsoleEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether the system log messages should + be sent to console." + DEFVAL { disabled } + ::= { syslogGrp 2 } + + +syslogHostEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether the system log messages should + be sent to syslog servers." + DEFVAL { disabled } + ::= { syslogGrp 3 } + + +syslogMessageControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF SyslogMessageControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains the information about what + system log messages should be sent to syslog host, + console, login session, and/or logged into the + internal buffer." + ::= { syslogGrp 4 } + +syslogMessageControlEntry OBJECT-TYPE + SYNTAX SyslogMessageControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A system log message control table entry." + INDEX { syslogMessageFacility } + ::= { syslogMessageControlTable 1 } + +SyslogMessageControlEntry ::= + SEQUENCE { + syslogMessageFacility + INTEGER, + syslogMessageSeverity + INTEGER + } + +syslogMessageFacility OBJECT-TYPE + SYNTAX INTEGER { + cdp(1), + mcast(2), + dtp(3), + dvlan(4), + earl(5), + fddi(6), + ip(7), + pruning(8), + snmp(9), + spantree(10), + system(11), + tac(12), + tcp(13), + telnet(14), + tftp(15), + vtp(16), + vmps(17), + kernel(18), + filesys(19), + drip(20), + pagp(21), + mgmt(22), + mls(23), + protfilt(24), + security(25), + radius(26), + udld(27), + gvrp(28), + cops(29), + qos(30), + acl(31), + rsvp(32), + ld(33), + privatevlan(34), + ethc(35), + gl2pt(36), + callhome(37), + dhcpsnooping(38), + diags(40), + eou(42), + backup(43), + eoam(44), + webauth(45) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "System log message facility." + ::= { syslogMessageControlEntry 1 } + + +syslogMessageSeverity OBJECT-TYPE + SYNTAX INTEGER { + emergencies(1), + alerts(2), + critical(3), + errors(4), + warnings(5), + notification(6), + informational(7), + debugging(8) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "System log message severity." + ::= { syslogMessageControlEntry 2 } + +syslogTimeStampOption OBJECT-TYPE + SYNTAX INTEGER{ + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether syslog Time Stamp Option is + enabled or not. If it is set to enabled(1), the + Time Stamp will be in the beginning of each + syslog message." + ::= { syslogGrp 5 } + + +syslogTelnetEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether the system log messages should + be sent to telnet sessions." + DEFVAL { enabled } + ::= { syslogGrp 6 } + + +-- the NTP (Network Time Protocol) group + +-- Implementation of the NTP group is optional, but within the group +-- all the elements are current. If the NTP feature is supported, +-- the entire group should be implemented. + +-- the NTP table + + +ntpBcastClient OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Entry which tells if Cat5000 should act as a + Broadcast client or not." + DEFVAL { disabled } + ::= { ntpGrp 1 } + +ntpBcastDelay OBJECT-TYPE + SYNTAX INTEGER (1..999999) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Estimated Round trip time (in micro seconds) for + NTP broadcasts. The range is from 1 to 999999." + DEFVAL { 3000 } + ::= { ntpGrp 2 } + +ntpClient OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Entry which tells if the device can act as a NTP + client (in a client-server configuration type)." + DEFVAL { disabled } + ::= { ntpGrp 3 } + +ntpServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of NTP Server entries. This table lists a + maximum of 10 Entries." + ::= { ntpGrp 4 } + +ntpServerEntry OBJECT-TYPE + SYNTAX NtpServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing NTP information for a particular + entry." + INDEX { ntpServerAddress } + ::= { ntpServerTable 1 } + +NtpServerEntry ::= SEQUENCE { + ntpServerAddress + IpAddress, + ntpServerType + INTEGER, + ntpServerPublicKey + Unsigned32 + } + +ntpServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Entry containing NTP Server's IP address." + ::= { ntpServerEntry 1 } + +ntpServerType OBJECT-TYPE + SYNTAX INTEGER{ + valid(1), -- add this entry + invalid(2) -- remove this entry + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "To add or remove an entry to ntpServerTable. + Setting to 1 adds the entry and setting to 2 + clears the entry." + ::= { ntpServerEntry 2 } + +ntpServerPublicKey OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The key to be used when communicating with this + server. + A key with a value of zero indicates an invalid + ntpServerPublicKey. When the authentication + feature is enabled the system will not sync with + this server when ntpAuthenticationPublicKey + doesn't match with NTP Packet's public key. + or + If the ntpAuthenticationTrustedMode is trusted but + encrypted message of ntpAuthenticationSecretKey + with NTP packet's data doesn't match with NTP + packet's crypto checksum in the message + authentication mode (MAC). + or + If the ntpAuthenticationTrustedMode is untrusted. + + In client mode NMP will not send request NTP + Packet to the server when ntpServerPublicKey + doesn't match with any of the + ntpAuthenticationPublicKey in + ntpAuthenticationTable. + or + If the ntpAuthenticationTrustedMode is untrusted." + ::= { ntpServerEntry 3 } + +ntpSummertimeStatus OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enabling or Disabling will set the clock ahead or + behind 1 hour respectively.(daylight savings time + in USA). This command gets active only in Summer + time." + DEFVAL { disabled } + ::= { ntpGrp 5 } + +ntpSummerTimezoneName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Summertime time zone name for display purposes." + ::= { ntpGrp 6 } + +ntpTimezoneName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Time zone name for display purposes." + ::= { ntpGrp 7 } + +ntpTimezoneOffsetHour OBJECT-TYPE + SYNTAX INTEGER (-12..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Time offset (Hour) from Greenwich Mean Time." + ::= { ntpGrp 8 } + +ntpTimezoneOffsetMinute OBJECT-TYPE + SYNTAX INTEGER (0..59) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Time offset (Minutes) from Greenwich Mean Time." + ::= { ntpGrp 9 } + + +ntpAuthenticationEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies if authentication feature is enabled or + disabled in the system." + DEFVAL { disabled } + ::= { ntpGrp 10 } + +ntpAuthenticationTable OBJECT-TYPE + SYNTAX SEQUENCE OF NtpAuthenticationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of NTP Authentication Key entries. + This table lists a maximum of 10 Entries" +::= { ntpGrp 11 } + +ntpAuthenticationEntry OBJECT-TYPE + SYNTAX NtpAuthenticationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in the ntpAuthenticationTable, + containing values of an NTP authentication key + pair." + + INDEX { ntpAuthenticationPublicKey } + ::= { ntpAuthenticationTable 1 } + +NtpAuthenticationEntry ::= + SEQUENCE { + ntpAuthenticationPublicKey + Unsigned32, + ntpAuthenticationSecretKey + DisplayString, + ntpAuthenticationTrustedMode + INTEGER, + ntpAuthenticationType + INTEGER + } + +ntpAuthenticationPublicKey OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A unique value to identify the authentication + key. When the authentication feature is enabled + and the ntpAuthenticationPublicKey matches with + the NTP packet's public key then this entry is + used." +::= { ntpAuthenticationEntry 1} + +ntpAuthenticationSecretKey OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An arbitrary string known as the secret key used + for encrypting of the NTP packet. This key is + useful when the ntpAuthenticationTrustedMode is + set to trusted(1). + This key has to be specified when this + ntpAuthenticationEntry is created. When reading + this object, it will return empty string." +::= { ntpAuthenticationEntry 2} + +ntpAuthenticationTrustedMode OBJECT-TYPE + SYNTAX INTEGER { + trusted(1), + untrusted(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A flag indicates whether the + ntpAuthenticationSecretKey is trusted or + untrusted. Setting a ntpAuthenticationSecretKey + to trusted(1) allows authentication on NTP + packets containing this key, and setting a + ntpAuthenticationSecretKey to untrusted(2) drops + all NTP packets containing this key." +::= { ntpAuthenticationEntry 3} + +ntpAuthenticationType OBJECT-TYPE + SYNTAX INTEGER { + valid(1), -- add this entry + invalid(2) -- remove this entry + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "To add or remove an entry to + ntpAuthenticationTable. Setting to 1 adds the + entry and setting to 2 clears the entry." +::= { ntpAuthenticationEntry 4} + + + +-- the TACACS (Terminal Access Controller Access Control System) group + +-- Implementation of the TACACS group is optional, but within the group +-- all the elements are current. If the TACACS+ feature is +-- implemented, the entire group should be implemented. + +tacacsLoginAuthentication OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForConsoleOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the login authentication using + the TACACS+ feature is enabled or disabled for + console sessions and/or telnet sessions. + + Setting this object to enabled(1), the login + authentication using the TACACS+ feature is + enabled for both telnet and console sessions. + + Setting this object to disabled(2), the login + authentication using the TACACS+ feature is + disabled for both telnet and console sessions. + + Setting this object to enabledForTelnetOnly(3), + the login authentication using the TACACS+ + feature is enabled only for telnet sessions, but + disabled for console sessions. + + Setting this object to enabledForConsoleOnly(4), + the login authentication using the TACACS+ + feature is enabled only for console sessions, + but disabled for telnet sessions. + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + DEFVAL { disabled } + ::= { tacacsGrp 1 } + +tacacsEnableAuthentication OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForConsoleOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the enable authentication using + the TACACS+ feature is enabled or disabled for + console sessions and/or telnet sessions based on + the value. + + Setting this object to enabled(1), the enable + authentication using the TACACS+ feature is + enabled for both telnet and console sessions. + + Setting this object to disabled(2), the enable + authentication using the TACACS+ feature is + disabled for both telnet and console sessions. + + Setting this object to enabledForTelnetOnly(3), + the enable authentication using the TACACS+ + feature is enabled only for telnet sessions, but + disabled for console sessions. + + Setting this object to enabledForConsoleOnly(4), + the enable authentication using the TACACS+ + feature is enabled only for console sessions, + but disabled for telnet sessions. + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + DEFVAL { disabled } + ::= { tacacsGrp 2 } + +tacacsLocalLoginAuthentication OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForConsoleOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the login authentication using + local password is enabled or disabled for Console + session and/or Telnet session based on the value. + + Setting this object to enabled(1),the login + authentication using local password is enabled for + both telnet and console sessions. + + Setting this object to disabled(2), the login + authentication using local password is disabled + for both telnet and console sessions. + + Setting this object to enabledForTelnetOnly(3), + the login authentication using local password is + enabled only for telnet sessions, but disabled for + console session. + + Setting this object to enabledForConsoleOnly(4), + the login authentication using local password is + enabled only for console session, but disabled for + telnet sessions. + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + DEFVAL { enabled } + ::= { tacacsGrp 3 } + +tacacsLocalEnableAuthentication OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForConsoleOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the enable authentication using + local password is enabled or disabled for Console + session and/or Telnet sessions. + + Setting this object to enabled(1),the enable + authentication using local password is enabled for + both telnet and console sessions. + + Setting this object to disabled(2), the enable + authentication using local password is disabled + for both telnet and console sessions. + + Setting this object to enabledForTelnetOnly(3), + the enable authentication using local password is + enabled only for telnet sessions, but disabled for + console sessions. + + Setting this object to enabledForConsoleOnly(4), + the enable authentication using local password is + enabled only for console sessions, but disabled + for telnet sessions. + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + DEFVAL { enabled } + ::= { tacacsGrp 4 } + +tacacsNumLoginAttempts OBJECT-TYPE + SYNTAX INTEGER (1..10) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The number of login attempts allowed. + + This object is deprecated and replaced by + cacMaxLoginAttempt in CISCO-AAA-CLIENT-MIB." + DEFVAL { 3 } + ::= { tacacsGrp 5 } + +tacacsDirectedRequest OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether the directed-request feature of + TACACS+ is enabled or disabled." + DEFVAL { disabled } + ::= { tacacsGrp 6 } + +tacacsTimeout OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The duration in seconds to wait for a response + from the TACACS+ server host. + + This object is deprecated and replaced by + cacLockoutPeriodExt in CISCO-AAA-CLIENT-MIB." + DEFVAL { 5 } + ::= { tacacsGrp 7 } + +tacacsAuthKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..100)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The key used in encrypting the packets passed + between the TACACS+ server and the client. This + key must match the one configured on the server. + + Note that this item is only accessible when using + the community string defined in sysCommunityRwa." +-- DEFVAL { NULL } + ::= { tacacsGrp 8 } + +tacacsServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF TacacsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists a maximum of 3 TACACS+ servers." + ::= { tacacsGrp 9 } + +tacacsServerEntry OBJECT-TYPE + SYNTAX TacacsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A TACACS+ server table entry." + INDEX { tacacsServerAddr } + ::= { tacacsServerTable 1 } + +TacacsServerEntry ::= + SEQUENCE { + tacacsServerAddr + IpAddress, + tacacsServerType + INTEGER + } + +tacacsServerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a TACACS+ Server." + ::= { tacacsServerEntry 1 } + +tacacsServerType OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), -- remove this entry + primary(2), -- the primary entry + other(3) -- a lower priority entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "To add a new entry to the tacacsServerTable, set + this object to primary(2) or other(3) for an IP + address which is not already in the table. The + primary entry will be used first, if it is + reachable. Otherwise, one of the other entries + will be used. Setting one entry to primary(2) + causes any previous primary entry to change to + other(3). To remove an entry from the table, set + this object to invalid(1)." + ::= { tacacsServerEntry 2 } + + + +-- the ip permit list group + +-- Implementation of the ip permit list group is optional, but within +-- the group all the elements are current. If the ip permit list +-- feature is supported, the entire group should be implemented. + +ipPermitEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForSnmpOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "This is deprecated and replaced by + ipPermitAccessTypeEnable. + + Indicate whether the IP permit feature is enabled + or disabled for Telnet and/or SNMP. + + Setting this object to enabled(1), the IP permit + feature is enabled for both telnet and SNMP. + + Setting this object to disabled(2), the IP permit + feature is disabled for both telnet and SNMP. + + Setting this object to enabledForTelnetOnly(3), + the IP permit feature is enabled for Telnet, but + disabled for the rest. + + Setting this object to enabledForSnmpOnly(4), the + IP permit feature is enabled for SNMP, but + disabled for the rest." + DEFVAL { disabled } + ::= { ipPermitListGrp 1 } + +-- the ip permit list table + +ipPermitListTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpPermitListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists a maximum of 100 IP Addresses + with net masks of IP permit hosts. If + ipPermitEnable is set to enabled(1), the system + will only accept inbound accesses which come from + the configured hosts with their permit access + types in this table." + ::= { ipPermitListGrp 2 } + +ipPermitListEntry OBJECT-TYPE + SYNTAX IpPermitListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A IP permit list table entry." + INDEX { ipPermitAddress, ipPermitMask } + ::= { ipPermitListTable 1 } + +IpPermitListEntry ::= + SEQUENCE { + ipPermitAddress + IpAddress, + ipPermitMask + IpAddress, + ipPermitType + INTEGER, + ipPermitAccessType + BITS + } + +ipPermitAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a IP permit host." + ::= { ipPermitListEntry 1 } + + +ipPermitMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP net mask of a IP permit host." + ::= { ipPermitListEntry 2 } + +ipPermitType OBJECT-TYPE + SYNTAX INTEGER { + valid(1), --add this entry + invalid(2) --remove this entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Setting this object to invalid(2), removes the + corresponding entry from the ipPermitListTable. To + add a new entry into ipPermitListTable, set this + object to valid(1), for an IP address and IP net + mask which are not already in the table." + ::= { ipPermitListEntry 3 } + +ipPermitAccessType OBJECT-TYPE + SYNTAX BITS { + telnet(0), + snmp(1), + ssh(2), + http(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The IP access type of a IP permit host. + At least one access type has to be set." + DEFVAL {{ telnet, snmp, ssh, http }} + ::= { ipPermitListEntry 4 } + +ipPermitDeniedListTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpPermitDeniedListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists up to 10 the most recently + denied IP addresses with the access type." + ::= { ipPermitListGrp 3 } + +ipPermitDeniedListEntry OBJECT-TYPE + SYNTAX IpPermitDeniedListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A IP permit denied list table entry." + INDEX {ipPermitDeniedAddress} + ::= { ipPermitDeniedListTable 1} + +IpPermitDeniedListEntry ::= + SEQUENCE { + ipPermitDeniedAddress + IpAddress, + ipPermitDeniedAccess + INTEGER, + ipPermitDeniedTime + TimeTicks + } + +ipPermitDeniedAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a IP permit denied access." + ::= { ipPermitDeniedListEntry 1 } + +ipPermitDeniedAccess OBJECT-TYPE + SYNTAX INTEGER { telnet(1), snmp(2), ssh(3), http(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The denied access type." + ::= { ipPermitDeniedListEntry 2 } + +ipPermitDeniedTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The time (in hundredths of a second) since the IP + permit denied access happens." + ::= { ipPermitDeniedListEntry 3 } + + +ipPermitAccessTypeEnable OBJECT-TYPE + SYNTAX BITS { + telnet(0), + snmp(1), + ssh(2), + http(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is to replace ipPermitEnable. + Indicates whether the IP permit feature is + enabled or disabled for Telnet, SNMP, ssh and + http. If a bit is set the coresponding feature is + enabled. If a bit is not set the coresponding + feature is disabled." + DEFVAL { { } } + ::= { ipPermitListGrp 4 } + + + +-- the portChannel group + +-- the port channel table + +portChannelTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortChannelEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A list of port channel entries. The number of + entries is determined by the number of ports in + the system which support the Ethernet Channelling + feature. + + This table is deprecated and replaced by + pagpEtherChannelTable in CISCO-PAGP-MIB and + dot3adAggTable in IEEE8023-LAG-MIB." + ::= { portChannelGrp 1 } + +portChannelEntry OBJECT-TYPE + SYNTAX PortChannelEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "Entry containing information for a particular + port on a module." + INDEX { portChannelModuleIndex, portChannelPortIndex } + ::= { portChannelTable 1 } + +PortChannelEntry ::= + SEQUENCE { + portChannelModuleIndex + INTEGER, + portChannelPortIndex + INTEGER, + portChannelPorts + OCTET STRING, + portChannelAdminStatus + INTEGER, + portChannelOperStatus + INTEGER, + portChannelNeighbourDeviceId + OCTET STRING, + portChannelNeighbourPortId + INTEGER, + portChannelProtInPackets + Counter32, + portChannelProtOutPackets + Counter32, + portChannelIfIndex + INTEGER + } + +portChannelModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies the + module where this port is located." + ::= { portChannelEntry 1 } + +portChannelPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { portChannelEntry 2 } + +portChannelPorts OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The set of ports on a module channelling + together. Each Octet within the value of this + object specifies a set of eight ports, with the + first octet specifying ports 1 through 8, the + second octet specifying ports 9 through 16, etc. + Within each octet, the most significant bit + represents the lowest numbered port, and the + least significant bit rep resents the highest + numbered port. Thus, each port is represented by + a single bit within the value of this object. If + that bit has a value of `1' then that port is + included in the set of channel ports. The default + value of this object is a string which only has a + value of `1' on its own port." + ::= { portChannelEntry 3 } + +portChannelAdminStatus OBJECT-TYPE + SYNTAX INTEGER { on(1), + off(2), + desirable(3), + auto(4), + desirableSilent(5), + autoSilent(6) } + + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates the administrative status set on the + channel ports. If the status is set to on(1), the + channelling is enabled. If the status is set to + off(2), the channelling is disabled. If the status + is set to desirable(3), the port initiates a pagp + negotiation request to become a channel and will + become a channel if the far end agrees. If the + status is set to auto(4), the port does not + initiate a request to become a channel but will do + so if it receives a request to become a channel + from the far end. If the status is set to + desirableSilent(5), the port initiates a pagp + negotiation request to become a channel and will + become a channel if the far end agrees. If the + port doesn't receive any packets from far end, + then after some timeout period the port forms a + channel by itself. If the status is set to + autoSilent(6), the port does not initiate a + request to become a channel, but will do so if it + receives a request to become a channel from the + far end. If the port doesn't receive any request, + then after some timeout period the port forms a + channel by itself." + DEFVAL { auto } + ::= { portChannelEntry 4 } + +portChannelOperStatus OBJECT-TYPE + SYNTAX INTEGER { channelling(1), notChannelling(2) } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Indicates whether the ports current channelling + operational status is channel or not." + ::= { portChannelEntry 5 } + +portChannelNeighbourDeviceId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Indicates the neighbors device id." + ::= { portChannelEntry 6 } + +portChannelNeighbourPortId OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Indicates the neighbor ports' Id." + ::= { portChannelEntry 7 } + +portChannelProtInPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Indicates the number of protocol packets received + on the ports." + ::= { portChannelEntry 8 } + +portChannelProtOutPackets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Indicates the number of protocol packets + transmitted on the ports." + ::= { portChannelEntry 9 } + +portChannelIfIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The value of the instance of the ifIndex object + defined in MIB-II, for the interface corresponding + to the channel which the port belongs to. This + object will have a non zero value if its + portChannelOperStatus is channelling and the link + of this port is up." + ::= { portChannelEntry 10 } + + + +-- the port capability +-- Implementation of the port capability group is optional, but within +-- the group all the elements are current. + +portCpbTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortCpbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of port capability entries. The number of + entries is determined by the number of modules in + the chassis and the number of ports on each + module." + ::= { portCpbGrp 1 } + +portCpbEntry OBJECT-TYPE + SYNTAX PortCpbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing port capability information for + a particular port on a module." + INDEX { portCpbModuleIndex, portCpbPortIndex } + ::= { portCpbTable 1 } + +PortCpbEntry ::= + SEQUENCE { + portCpbModuleIndex + INTEGER, + portCpbPortIndex + INTEGER, + portCpbSpeed + BITS, + portCpbDuplex + BITS, + portCpbTrunkEncapsulationType + BITS, + portCpbTrunkMode + BITS, + portCpbChannel + DisplayString, + portCpbBroadcastSuppression + BITS, + portCpbFlowControl + BITS, + portCpbSecurity + INTEGER, + portCpbVlanMembership + BITS, + portCpbPortfast + INTEGER, + portCpbUdld + INTEGER, + portCpbInlinePower + BITS, + portCpbAuxiliaryVlan + BITS, + portCpbSpan + BITS, + portCpbCosRewrite + INTEGER, + portCpbTosRewrite + BITS, + portCpbCopsGrouping + OCTET STRING, + portCpbDot1x + INTEGER, + portCpbIgmpFilter + INTEGER + } + +portCpbModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located (see + portModuleIndex)." + ::= { portCpbEntry 1 } + +portCpbPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module (see portIndex)." + ::= { portCpbEntry 2 } + +portCpbSpeed OBJECT-TYPE + SYNTAX BITS { auto(0), + mbps4(1), + mbps10(2), + mbps16(3), + mbps45(4), + mbps100(5), + mbps155(6), + mbps400(7), + mbps622(8), + mbps1000(9), + mbps1dot544(10), -- 1.544 mbps + mbps2(11), -- 2 mbps + mbps2dot048(12), -- 2.048 mbps + kps64(13), -- 64 kps + mbps10000(14) } -- 10 Gbps + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the port speed capability of a port." + ::= { portCpbEntry 3 } + +portCpbDuplex OBJECT-TYPE + SYNTAX BITS { half(0), + full(1), + auto(2), + hdx(3), + fdx(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the duplex capability of a port. + The fdx(4) is specially for tokenring full-duplex + and hdx(3) is specially for tokenring + half-duplex." + ::= { portCpbEntry 4 } + +portCpbTrunkEncapsulationType OBJECT-TYPE + SYNTAX BITS { lane(0), + dot10(1), + dot1Q(2), + isl(3), + negotiate(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the VLAN encapsulation capability of a + port, The dot10(1) is for 801.10 and dot1q(2) is + for 801.1Q." + ::= { portCpbEntry 5 } + +portCpbTrunkMode OBJECT-TYPE + SYNTAX BITS { on(0), + off(1), + desirable(2), + auto(3), + onNoNegotiate(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the trunk capability of a port." + ::= { portCpbEntry 6 } + +portCpbChannel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the channelling capability of a port." + ::= { portCpbEntry 7 } + +portCpbBroadcastSuppression OBJECT-TYPE + SYNTAX BITS { pps(0), + percentage(1) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the broadcast suppression capability of + a port. The pps(0) is for ports capable of + specifying suppression in packets per second and + percentage(1) is for ports capable of specifying + suppression in terms of percentage of bandwidth." + ::= { portCpbEntry 8 } + +portCpbFlowControl OBJECT-TYPE + SYNTAX BITS { receiveOff(0), + receiveOn(1), + receiveDesired(2), + sendOff(3), + sendOn(4), + sendDesired(5) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the flow control capability of a port." + ::= { portCpbEntry 9 } + +portCpbSecurity OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether a port supports security." + ::= { portCpbEntry 10 } + +portCpbVlanMembership OBJECT-TYPE + SYNTAX BITS { static(0), + dynamic(1) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the vlan membership capability of a + port." + ::= { portCpbEntry 11 } + +portCpbPortfast OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether a port supports portfast." + ::= { portCpbEntry 12 } + +portCpbUdld OBJECT-TYPE + SYNTAX INTEGER { + yes(1), + no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether the port is capable of UDLD + (UniDirectional Link Detection) or not." + ::= { portCpbEntry 13 } + +portCpbInlinePower OBJECT-TYPE + SYNTAX BITS { + auto(0), + on(1), + off(2), + static(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicate the inline power capability of a port. + 'auto' denotes the ability that the switch + automatically determines whether or not power + should be provided. 'on' denotes the ability to + manually turn on inline power. + 'off' denotes the ability to manually turn off + inline power. 'static' denotes the ability to + preallocate power for a port." + ::= { portCpbEntry 14 } + +portCpbAuxiliaryVlan OBJECT-TYPE + SYNTAX BITS { + vlanNo (0), + untagged (1), + dot1p (2), + none (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicate the voice vlan capability of a port." + ::= { portCpbEntry 15 } + +portCpbSpan OBJECT-TYPE + SYNTAX BITS { + source(0), + destination(1), + reflector(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates port span capabilities. + source(0) denotes the capability of being SPAN + source destination(1) denotes the capability of + being SPAN destination, reflector(2) denotes the + capability of being SPAN reflector." + ::= { portCpbEntry 16 } + +portCpbCosRewrite OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether a port supports CoS rewrite." + ::= { portCpbEntry 17 } + +portCpbTosRewrite OBJECT-TYPE + SYNTAX BITS { dscp(0), + ipPrecedence(1) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates the ToS rewrite capability of a port. + dscp(0) denotes the port capability to classify + packets according to the DSCP. + ipPrecedence(1) denotes the port capability to + classify packets according to the IP Precedence." + ::= { portCpbEntry 18 } + +portCpbCopsGrouping OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The set of ports on a module that are configured + together as far as the Differentiated Services + Cops feature is concerned. Each Octet within the + value of this object specifies a set of eight + ports, with the first octet specifying ports 1 + through 8, the second octet specifying ports 9 + through 16, etc. Within each octet, the most + significant bit represents the lowest numbered + port, and the least significant bit represents + the highest numbered port. Thus, each port is + represented by a single bit within the value of + this object. If that bit has a value of `1' then + that port is included in the set of Cops + grouping." + ::= { portCpbEntry 19 } + +portCpbDot1x OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether a port supports 802.1x." + ::= { portCpbEntry 20 } + +portCpbIgmpFilter OBJECT-TYPE + SYNTAX INTEGER { yes(1), no(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether a port supports IGMP filter." + ::= { portCpbEntry 21 } + +-- The PORT Top "N" Group +-- +-- The Port Top N group is used to prepare reports that +-- describe the ports that top a list ordered by one of +-- their statistics. Therefore, the sampling base is on +-- the ports in this monitored device system. The data +-- source is from all the ports in this monitored device +-- system so it is not necessary to specify the data +-- source in the control table. +-- The available statistics are samples of one of their +-- base statistics, over an interval specified by the +-- management station. Thus, these statistics are rate +-- based. The management station also selects how many such +-- ports are reported. +-- The portTopNControlTable is used to initiate the +-- generation of such a report. The management station +-- may select the parameters of such a report, such as +-- which statistic, how many ports, port types, and the start +-- and stop times of the sampling. + +-- When the report is prepared, entries are created in the +-- portTopNTable associated with the relevant +-- portTopNControlEntry. These entries are static for +-- each report after it has been prepared. + + +portTopNControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortTopNControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of top N port control entries." + ::= { portTopNGrp 1 } + +portTopNControlEntry OBJECT-TYPE + SYNTAX PortTopNControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A set of parameters that control the creation of + a report of the top N ports according to several + metrics. + For example, an instance of the portTopNDuration + object might be named portTopNDuration.3" + INDEX { portTopNControlIndex } + ::= { portTopNControlTable 1 } + +PortTopNControlEntry ::= + SEQUENCE { + portTopNControlIndex + INTEGER, + portTopNRateBase + INTEGER, + portTopNType + INTEGER, + portTopNMode + INTEGER, + portTopNReportStatus + INTEGER, + portTopNDuration + INTEGER, + portTopNTimeRemaining + INTEGER, + portTopNStartTime + TimeTicks, + portTopNRequestedSize + INTEGER, + portTopNGrantedSize + INTEGER, + portTopNOwner + OwnerString, + portTopNStatus + RowStatus + } + +portTopNControlIndex OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index that uniquely identifies an entry + in the portTopNControl table. Each such + entry defines one top N report." + ::= { portTopNControlEntry 1 } + +portTopNRateBase OBJECT-TYPE + SYNTAX INTEGER { + portTopNUtilization(1), + portTopNIOOctets(2), + portTopNIOPkts(3), + portTopNIOBroadcastPkts(4), + portTopNIOMulticastPkts(5), + portTopNInErrors(6), + portTopNBufferOverflow(7) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The variable for all ports in this system + based on which portTopNTable/report is ordered. + + This object may not be modified if the associated + portTopNStatus object is equal to active(1)." + DEFVAL { portTopNUtilization } + ::= { portTopNControlEntry 2 } + +portTopNType OBJECT-TYPE + SYNTAX INTEGER { + portTopNAllPorts(1), + portTopNEthernet(2), + portTopNFastEthernet(3), + portTopNGigaEthernet(4), + portTopNTokenRing(5), + portTopNFDDI(6), + portTopNAllEthernetPorts(7), + portTopN10GigaEthernet(8) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The sampling port type. + + This object may not be modified if the associated + portTopNStatus object is equal to active(1)." + DEFVAL { portTopNAllPorts } + ::= { portTopNControlEntry 3 } + +portTopNMode OBJECT-TYPE + SYNTAX INTEGER { + portTopNForeground(1), + portTopNBackground(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The running mode of this portTopN control entry. + portTopNForeground (1) means when + portTopNTimeRemaining reaches to 0, the report + will show on the CLI at once and it won't be kept + in the portTopNTable. portTopNBackground (2) means + the report will not show on the CLI it will be + kept in the portTopNTable. + + This object may not be modified if the associated + portTopNStatus object is equal to active(1)." + DEFVAL { portTopNBackground } + ::= { portTopNControlEntry 4 } + +portTopNReportStatus OBJECT-TYPE + SYNTAX INTEGER { + progressing(1), + ready(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The report status of this portTopN control entry. + Progressing (1) means that the report of this + portTopN control entry is still in progress. The + management station can poll this mib object to + check the report data is available or not. + Ready (2) means the report is available." + ::= { portTopNControlEntry 5 } + +portTopNDuration OBJECT-TYPE + SYNTAX INTEGER (0|10..999) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The sampling interval in seconds during which + statistics are collected for this report. + + When this is set a value and the corresponding + portTopNControlEntry is valid, the + portTopNTimeRemaining object shall be set to the + same value. + portTopNTimeRemaining starts at the same value as + portTopNDuration and counts down as the collection + goes on. + + If this object is set to be zero, it will do the + collection immediately. And the collecting report + value should be the absolute counter value." + DEFVAL { 30 } + ::= { portTopNControlEntry 6 } + +portTopNTimeRemaining OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of seconds left in the report + currently being collected. When portTopNDuration + object is modified by the management station, a + new collection is started, possibly aborting a + currently running report. The new value is used as + the requested duration of this report, which is + loaded from the associated portTopNDuration + object. + + When this object is a non-zero value, any + associated portTopNEntries shall be made + inaccessible by the monitor. + + While the value of this object is non-zero and the + corresponding portTopNControlENtry is valid, it + decrements by one per second until it reaches + zero. During this time, all associated + portTopNEntries shall remain inaccessible. At + the time that this object decrements to zero, the + report is made accessible in the portTopNTable. + Thus, the portTopN table is to be created only at + the end of the collection interval." + ::= { portTopNControlEntry 7 } + +portTopNStartTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of sysUpTime when this top N report was + last started. In other words, this is the time + that the associated portTopNTimeRemaining object + was modified to start the requested report." + ::= { portTopNControlEntry 8 } + +portTopNRequestedSize OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The maximum number of ports requested for the top + N entry. + + When this object is created or modified, the value + of portTopNGrantedSize is set as closely to this + object as is possible for the particular + implementation and available resources. + Valid value for this object is 1 to maximum number + of physical ports. The default value is 20 ports." + DEFVAL { 20 } + ::= { portTopNControlEntry 9 } + +portTopNGrantedSize OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The maximum number of ports in the top N table. + When the associated portTopNRequestedSize object + is created or modified, the value of this object + should be set as closely to the requested value as + is possible for the particular implementation and + available resources. The value must not be lowered + except as a result of a set to the associated + portTopNRequestedSize object. + Ports with the highest value of portTopNRateBase + shall be placed in this table in decreasing order + of this rate until there is no more room or until + there are no more ports." + ::= { portTopNControlEntry 10 } + +portTopNOwner OBJECT-TYPE + SYNTAX OwnerString + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The entity that configured this entry and is + therefore using the resources assigned to it." + ::= { portTopNControlEntry 11 } + +portTopNStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status of this portTopNControl entry. + The Management station sends the user set values + with a portTopNStatus value of createAndGo(4). + When the agent receives it the collection of the + report starts. + When the portTopNReportStatus is ready(2) the user + can get the reports (portTopNTable). + For the current implementation createAndWait(5) + will not be supported. + There can be only 5 rows in the control table." + ::= { portTopNControlEntry 12 } + +portTopNTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortTopNEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of top N port entries." + ::= { portTopNGrp 2 } + +portTopNEntry OBJECT-TYPE + SYNTAX PortTopNEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A set of statistics for a port that is part of a + top N report. For example, an instance of the + portTopNRateBase object might be named + portTopNUtilization.3.10" + INDEX { portTopNControlIndex, portTopNIndex } + ::= { portTopNTable 1 } + +PortTopNEntry ::= + SEQUENCE { + portTopNIndex + INTEGER, + portTopNModuleNumber + INTEGER, + portTopNPortNumber + INTEGER, + portTopNUtilization + INTEGER, + portTopNIOOctets + Counter64, + portTopNIOPkts + Counter64, + portTopNIOBroadcast + Counter64, + portTopNIOMulticast + Counter64, + portTopNInErrors + Counter32, + portTopNBufferOverFlow + Counter32 + } + +portTopNIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index that uniquely identifies an entry in + the portTopN table among those in the same report. + This index is between 1 and N, where N is the + portTopNGrantedSize of ports with the highest + portTopNRateBase. Increasing values of + portTopNIndex shall be assigned to entries with + decreasing values of portTopNRateBase until index + N is assigned to the entry with the lowest value + of portTopNRateBase or there are no more + portTopNEntries." + ::= { portTopNEntry 1 } + +portTopNModuleNumber OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The module number of the port counter data + entry." + ::= { portTopNEntry 2 } + +portTopNPortNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The port number of the port counter data entry." + ::= { portTopNEntry 3 } + +portTopNUtilization OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The utilization of the port in the system. + The utilization is computed in the following + methods: + + Ethernet Utilization: (If Full Duplex, multiply by 2) + + 10 Mbps I/O-pkts * (9.6 + 6.4) + (0.8 * I/O-Bytes) + Ethernet Util = ----------------------------------------- + Interval * 10,000 + + where 9.6 is interframe gap of Ethernet + 6.4 is preamble of Ethernet + 10,000 is 10Mbps + + 100 Mbps I/O-pkts * (96 + 64) + (8 * I/O-Bytes) + Ethernet Util = -------------------------------------- + Interval * 1,000,000 + + 1000 Mbps I/O-pkts * (96 + 64) + (8 * I/O-Bytes) + Ethernet Util = -------------------------------------- + Interval * 10,000,000 + + All other I/O-pkts * (9.6 + 6.4) + (0.8 * I/O-Bytes) + Ethernet Util = ------------------------------------------ + Interval * N * 1,000 + (where N is N Mbps) + + Token Ring Utilization: + (Assuming that Octets is from AC byte through FCS) + + + 4 Mbps Pkts * 32 + (8 * Octets) + Token Ring Util = 100 * ------------------------ + Interval * 4,000,000 + where 32 is bits in SD, ED, FS and IFG + + 16 Mbps Pkts * 64 + (8 * Octets) + Token Ring Util = 100 * ------------------------ + Interval * 16,000,000 + where 64 is bits in SD, ED, FS and IFG + + FDDI Utilization: + + I/O-Pkts * (64 + 8 + 32 + 16) + (8 * I/O-Bytes) + FDDI Util = ---------------------------------------------- + Interval * 100,000,000 + + where 64 is Preamble of FDDI, + 8 is the Start Delimiter (SD) of FDDI, + 32 is the CRC, and + 16 is the End of Frame Sequence (EFS) of FDDI." + + ::= { portTopNEntry 4 } + +portTopNIOOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Input and Output octets of the port in the + system." + ::= { portTopNEntry 5 } + +portTopNIOPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Input and Output packets of the port in the + system." + ::= { portTopNEntry 6 } + +portTopNIOBroadcast OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Input and Output broadcast packets of the + port in the system." + ::= { portTopNEntry 7 } + +portTopNIOMulticast OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Input and Output multicast packets of the + port in the system." + ::= { portTopNEntry 8 } + +portTopNInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Input error packets of the port in the + system." + ::= { portTopNEntry 9 } + +portTopNBufferOverFlow OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of buffer overflow of the port in + the system." + ::= { portTopNEntry 10 } + + + +-- the multiple default gateway group + +-- Implementation of the multiple default gateway group is optional, +-- but within the group all the elements are current. If the multiple +-- default gateway feature is supported, the entire group should be +-- implemented. + +mdgGatewayTable OBJECT-TYPE + SYNTAX SEQUENCE OF MdgGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table lists a maximum of 3 MDG gateways." + ::= { mdgGrp 1 } + +mdgGatewayEntry OBJECT-TYPE + SYNTAX MdgGatewayEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A MDG gateway table entry." + INDEX { mdgGatewayAddr } + ::= { mdgGatewayTable 1 } + +MdgGatewayEntry ::= + SEQUENCE { + mdgGatewayAddr + IpAddress, + mdgGatewayType + INTEGER + } + +mdgGatewayAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The IP address of a default gateway." + ::= { mdgGatewayEntry 1 } + +mdgGatewayType OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), -- remove this entry + primary(2), -- the primary entry + other(3) -- a lower priority entry + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "To add a new entry to the mdgGatewayTable, set + this object to primary(2) or other(3) for an IP + address which is not already in the table. The + primary entry will be used first, if it is + reachable. Otherwise, one of the other entries + will be used. Setting one entry to primary(2) + causes any previous primary entry to change to + other(3). To remove an entry from the table, set + this object to invalid(1). Changing an existing + entry from primary(2) to other(3) is not allowed. + If the value of this object is updated, the + corresponding entry of the ipRouteTable (mibII) + will be updated and vice versa." + ::= { mdgGatewayEntry 2 } + + + +-- the RADIUS group + +-- Implementation of the RADIUS group is optional, but within the group +-- all the elements are current. If the RADIUS feature is implemented, +-- the entire group should be implemented. + +radiusLoginAuthentication OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForConsoleOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the login authentication using + RADIUS feature is enabled or disabled for console + and/or telnet sessions. + + Setting this object to enabled(1), the login + authentication using RADIUS feature is enabled for + both console and telnet sessions. + + Setting this object to disabled(2), the login + authentication using RADIUS feature is disabled + for both console and telnet sessions. + + Setting this object to enabledForTelnetOnly(3),the + login authentication using RADIUS feature is + enabled only for telnet sessions, but disabled + for console session. + + Setting this object to enabledForConsoleOnly(4), + the login authentication using RADIUS feature is + enabled only for console sessions, but disabled + for telnet sessions. + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + DEFVAL { disabled } + ::= { radiusGrp 1 } + +radiusEnableAuthentication OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2), + enabledForTelnetOnly(3), + enabledForConsoleOnly(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Indicates whether the enable authentication using + the RADIUS feature is enabled or disabled for + Console and telnet sessions. + + Setting this object to enabled(1), the enable + authentication using RADIUS feature is enabled for + both console and telnet sessions. + + Setting this object to disabled(2), the enable + authentication using RADIUS feature is disabled + for both console and telnet sessions. + + Setting this object to enabledForTelnetOnly(3), + the enable authentication using RADIUS feature is + enabled only for telnet sessions, but disabled for + console sessions. + + Setting this object to enabledForConsoleOnly(4), + the enable authentication using RADIUS feature is + enabled only for console sessions, but disabled + for telnet sessions. + + This object is deprecated and replaced by + cacPriorityTable in CISCO-AAA-CLIENT-MIB." + DEFVAL { disabled } + ::= { radiusGrp 2 } + +radiusDeadtime OBJECT-TYPE + SYNTAX INTEGER (0..1440) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the length of time in minutes that + the system will mark the server dead when a RADIUS + server does not respond to an authentication + request. During the interval of the dead time, any + authentication request that comes up would not be + sent to that RADIUS server that was marked as + dead. The default value of 0 means that the + RADIUS servers will not be marked dead if they + do not respond." + DEFVAL { 0 } + ::= { radiusGrp 3 } + +radiusAuthKey OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The key used in encrypting the packets passed + between the RADIUS server and the client. This key + must match the one configured on the server. + + Note that this item is only accessible when using + the community string defined in sysCommunityRwa." +-- DEFVAL { NULL } + ::= { radiusGrp 4 } + +radiusTimeout OBJECT-TYPE + SYNTAX INTEGER (1..1000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is the time in seconds between + retransmissions to the RADIUS server." + DEFVAL { 5 } + ::= { radiusGrp 5 } + + +radiusRetransmits OBJECT-TYPE + SYNTAX INTEGER (1..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates number of times the RADIUS server + should be tried before giving up on the server." + DEFVAL { 2 } + ::= { radiusGrp 6 } + + +radiusServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF RadiusServerEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "This table lists a maximum of 3 RADIUS servers. + + This object is deprecated and replaced by + crRadiusServerTable in CISCO-RADIUS-MIB." + ::= { radiusGrp 7 } + +radiusServerEntry OBJECT-TYPE + SYNTAX RadiusServerEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A RADIUS server table entry." + INDEX { radiusServerAddr } + ::= { radiusServerTable 1 } + +RadiusServerEntry ::= + SEQUENCE { + radiusServerAddr + IpAddress, + radiusServerAuthPort + INTEGER, + radiusServerType + INTEGER + } + +radiusServerAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP address of a RADIUS Server." + ::= { radiusServerEntry 1 } + +radiusServerAuthPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION "This is the destination UDP port number to which + RADIUS messages should be sent. The RADIUS server + will not be used for authentication if this port + number is 0." + REFERENCE "RFC2138, Implementation Note." + DEFVAL { 1812 } + ::= { radiusServerEntry 2 } + +radiusServerType OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), -- remove this entry + primary(2), -- the primary entry + other(3) -- a lower priority entry + } + MAX-ACCESS read-create + STATUS deprecated + DESCRIPTION "To add a new entry to the radiusServerTable, set + this object to primary(2) or other(3) for an IP + address which is not already in the table. The + primary entry will be used first, if it is + reachable. Otherwise, one of the other entries + will be used. Setting one entry to primary(2) + causes any previous primary entry to change to + other(3). To remove an entry from the table, + set this object to invalid(1)." + ::= { radiusServerEntry 3 } + +-- the traceRoute group + +-- Implementation of the traceRoute group is optional, but within the +-- group all the elements are current. If the trace route feature is +-- supported, the entire group should be implemented. + +traceRouteMaxQueries OBJECT-TYPE + SYNTAX INTEGER (1..20) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Maximum number of query entries allowed to be + outstanding at any time, in the + traceRouteQueryTable. + The typical value for this object is 5." + ::= { traceRouteGrp 1} + +traceRouteQueryTable OBJECT-TYPE + SYNTAX SEQUENCE OF TraceRouteQueryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A control table used to query the information + about each gateway along the path to a host by + specifying retrieval criteria for the host. The + resulting data for each instance of a query in + this table is returned in the traceRouteDataTable. + The maximum number of entries (rows) in this table + cannot exceed the value returned by + traceRouteMaxQueries." + ::= { traceRouteGrp 2 } + +traceRouteQueryEntry OBJECT-TYPE + SYNTAX TraceRouteQueryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A conceptual row of the traceRouteQueryTable used + to setup retrieval criteria to search for gateways + belongs to the path to a particular host + identified by its IP address. The actual search + is started by setting the value of + traceRouteQueryStatus to valid(1)." + INDEX { traceRouteQueryIndex } + ::= { traceRouteQueryTable 1 } + +TraceRouteQueryEntry ::= + SEQUENCE { + traceRouteQueryIndex + INTEGER, + traceRouteHost + DisplayString, + traceRouteQueryDNSEnable + INTEGER, + traceRouteQueryWaitingTime + INTEGER, + traceRouteQueryInitTTL + INTEGER, + traceRouteQueryMaxTTL + INTEGER, + traceRouteQueryUDPPort + INTEGER, + traceRouteQueryPacketCount + INTEGER, + traceRouteQueryPacketSize + INTEGER, + traceRouteQueryTOS + INTEGER, + traceRouteQueryResult + INTEGER, + traceRouteQueryTime + TimeTicks, + traceRouteQueryOwner + DisplayString, + traceRouteQueryStatus + INTEGER + } + + +traceRouteQueryIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object which specifies an unique entry in the + traceRouteQueryTable." + ::= { traceRouteQueryEntry 1 } + +traceRouteHost OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..255)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Network(IP) address in dotted decimal format or + the DNS hostname of the host which is tracerouted." + ::= { traceRouteQueryEntry 2 } + +traceRouteQueryDNSEnable OBJECT-TYPE + SYNTAX INTEGER{ enabled(1), + disabled(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "If this value of this object is true, the + traceroute operation will do a DNS lookup for each + hop on the path, so the corresponding instance of + the traceRouteDataTable will contain the host name + and the ip address; otherwise, that instance only + contains the ip address." + DEFVAL { enabled } + ::= { traceRouteQueryEntry 3 } + +traceRouteQueryWaitingTime OBJECT-TYPE + SYNTAX INTEGER (1..300) + UNITS "seconds" + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The trace route waiting time in seconds for an + ICMP response message." + DEFVAL { 5 } + ::= { traceRouteQueryEntry 4 } + +traceRouteQueryInitTTL OBJECT-TYPE + SYNTAX INTEGER(1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "If this value of this object is set, it allows + users skip processing for gateways that are less + than traceRouteQueryInitTTL away by sending + datagram with the value of this object instead of + the default value of one." + DEFVAL { 1 } + ::= { traceRouteQueryEntry 5 } + +traceRouteQueryMaxTTL OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The maximum TTL value used in outgoing packets." + DEFVAL { 30 } + ::= { traceRouteQueryEntry 6} + +traceRouteQueryUDPPort OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The base UDP destination port is used in the + traceroute datagrams. This value of this object is + often larger than 30,000 to make it improbable + that this port is used (this causes the + destination host's UDP module to generate an ICMP + port unreachable so the traceroute operation + knows when the operation is accomplished). + The traceroute operation will increment this value + of this object each time it sends a datagram. This + object should be used in the unlikely event that + the destination port is listening to a port in the + default traceroute port range." + DEFVAL { 33434 } + ::= { traceRouteQueryEntry 7 } + +traceRouteQueryPacketCount OBJECT-TYPE + SYNTAX INTEGER(1..1000) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Specifies the number of traceroute packets to + send to the target host in this sequence." + DEFVAL { 3 } + ::= { traceRouteQueryEntry 8 } + +traceRouteQueryPacketSize OBJECT-TYPE + SYNTAX INTEGER(0..1420) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Specifies the size of traceroute packets to send + to the target host in this sequence. " + DEFVAL { 0 } + ::= { traceRouteQueryEntry 9 } + +traceRouteQueryTOS OBJECT-TYPE + SYNTAX INTEGER(0..255) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The type of service to be set in the IP header of + the outgoing packets.This value can set to see if + different types-of-service result in different + paths. Not all values of TOS are legal or + meaningful (see the IP spec for definitions. + Useful values are probably 16 (low delay) and 8 + (high throughput)." + DEFVAL { 0 } + ::= { traceRouteQueryEntry 10 } + +traceRouteQueryResult OBJECT-TYPE + SYNTAX INTEGER(-1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The result status of the query. Possible values + are: + + -1 -Either the query has not been initiated or the + agent is busy processing this query instance. Time + to completion of the query processing depends on + the complexity of the query and the number of + matches that satisfy this query. + + 0..2147483647 - The search has ended and this is + the number of rows in the traceRouteDataTable, + resulting from this query." + ::= { traceRouteQueryEntry 21} + +traceRouteQueryTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of sysUpTime at the time when the query + is configured." + ::= { traceRouteQueryEntry 22 } + +traceRouteQueryOwner OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..50)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The manager entity that configured this entry and + is therefore using the resources assigned to it." + ::= { traceRouteQueryEntry 23 } + +traceRouteQueryStatus OBJECT-TYPE + SYNTAX INTEGER {valid(1), invalid(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status object used to manage rows in this + table. + When set this object to valid(1), the query is + initiated. Once initiated, all the read-write + objects of this table can't be modified. To remove + an entry from the table, set this object to + invalid(2)." + ::= { traceRouteQueryEntry 24 } + +-- The Trace Route result table. + +traceRouteDataTable OBJECT-TYPE + SYNTAX SEQUENCE OF TraceRouteDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table containing information about the gateway + belongs to the path to the host corresponding to + all the completed queries setup in the + traceRouteQueryTable." + ::= { traceRouteGrp 3 } + +traceRouteDataEntry OBJECT-TYPE + SYNTAX TraceRouteDataEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A conceptual row of the traceRouteDataTable used + to return information about all the gateway + belongs to the host of which search criteria is + corresponding instance of the + traceRouteQueryTable." + INDEX { traceRouteQueryIndex, traceRouteDataIndex } + ::= { traceRouteDataTable 1 } + +TraceRouteDataEntry ::= + SEQUENCE { + traceRouteDataIndex + INTEGER, + traceRouteDataGatewayName + DisplayString, + traceRouteDataGatewayIp + IpAddress, + traceRouteDataRtt + INTEGER, + traceRouteDataHopCount + INTEGER, + traceRouteDataErrors + INTEGER + } + +traceRouteDataIndex OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Object which specifies an unique entry in the + traceRouteDataTable." + ::= { traceRouteDataEntry 1 } + +traceRouteDataGatewayName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The DNS name of the gateway if available." + ::= { traceRouteDataEntry 2 } + +traceRouteDataGatewayIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The ip address of the gateway. If the traceroute + packet was sent and timed-out, the ip address is + set to 0.0.0.0." + ::= { traceRouteDataEntry 3 } + +traceRouteDataRtt OBJECT-TYPE + SYNTAX INTEGER(1..65535) + UNITS "milliseconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The round trip time of the current packet that + have been sent in this sequence." + ::= { traceRouteDataEntry 4 } + +traceRouteDataHopCount OBJECT-TYPE + SYNTAX INTEGER(1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of hop starting from the place where + the traceroute operation is initialized to the + gateway which has the traceRouteDataGatewayIp." + ::= { traceRouteDataEntry 5 } + +traceRouteDataErrors OBJECT-TYPE + SYNTAX INTEGER { + icmpUnreachNet(1), -- bad net + icmpUnreachHost(2), -- bad host + icmpUnreachProtocol(3), -- bad protocol + icmpUnreachPort(4), -- bad port + icmpUnreachNeedFrag(5), -- IP defragment caused + -- drop + icmpUnreachSrcFail(6), -- src route failed + icmpUnreachNoNet(7), -- no such network + icmpUnreachNoHost(8), -- no such host + icmpUnreachHostIsolated(9), -- host isolated + icmpUnreachNetProhib(10), + -- dod net admin prohibited + icmpUnreachProhib(11), + -- dod host admin prohibit + icmpUnreachNetTos(12), + -- net and tos unreachable + icmpUnreachHostTos(13), + -- host and tos unreachable + icmpUnreachAdmin(14), + -- administratively prohibited + icmpUnreachHostPrec(15), -- host precedence + icmpUnreachPrecedence(16), -- precedence cutoff + icmpUnknown(17), -- unknown error + icmpTimeOut(18), -- time out + icmpTTLExpired(19) -- ttl expired + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The error of the traceroute operation." + ::= { traceRouteDataEntry 6 } + + + +-- the fileCopy group + +-- Implementation of the file group is current for all Cisco Workgroup +-- Stack products which implement tftp/rcp upload/download functions +-- or local file copy. + +fileCopyProtocol OBJECT-TYPE + SYNTAX INTEGER { tftp (1), + rcp (2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The protocol to be used for any remote copy. + If the config file transfer is to occur locally on + the SNMP agent, the method of transfer is left up + to the implementation, and is not restricted to + the protocols above. + + The value of this object can not be changed when + the fileCopyResult object has the value of + inProgress(1)." + DEFVAL { tftp } + ::= { fileCopyGrp 1 } + +fileCopyRemoteServer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The IP address or the host name of the tftp/rcp + remote server from (or to) which to copy the file. + If the copy operation is local on the SNMP agent, + this object is not applicable. + + The value of this object can not be changed when + the fileCopyResult object has the value of + inProgress(1)." + ::= { fileCopyGrp 2 } + +fileCopySrcFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The source file name (including the path, if + applicable) of the file. The accepted value of + this object is 'cfg1' or 'cfg2' when the requested + action is one of the following: + + copyConfigFromFlashToRuntime(8), and + copyConfigFileFromFlashToHost(11). + + The value of this object can not be changed when + the fileCopyResult object has the value of + inProgress(1)." + ::= { fileCopyGrp 3 } + +fileCopyDstFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The destination file name (including the path, if + applicable) of the file. The accepted value of + this object is 'cfg1' or 'cfg2' when the requested + action is one of the following: + + copyConfigFromRuntimeToFlash(9), + copyConfigFileFromHostToFlash(10). + + The value of this object can not be changed when + the fileCopyResult object has the value of + inProgress(1)." + ::= { fileCopyGrp 4 } + +fileCopyModuleNumber OBJECT-TYPE + SYNTAX INTEGER(0..16) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The module number specified in the copy + operation. + + If the value of this object is 0 and the + fileCopyAction object has the value of + copyImageFromHostToFlash(4), the switch will do + multiple download to the modules with matching + image type. It is left to the SNMP agent to allow + the individual modules to be reset with the + downloaded images or not. + + The value of this object can not be changed when + the fileCopyResult object has the value of + inProgress(1)." + ::= { fileCopyGrp 5 } + +fileCopyUserName OBJECT-TYPE + SYNTAX DisplayString(SIZE (1..40)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Remote user name for copy via rcp protocol. This + object must be specified when the + fileCopyProtocol is rcp." + ::= { fileCopyGrp 6 } + +fileCopyAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + copyConfigFromHostToRuntime(2), + copyConfigFromRuntimeToHost(3), + copyImageFromHostToFlash(4), + copyImageFromFlashToHost(5), + copyConfigFromFlashToRuntime(8), + copyConfigFromRuntimeToFlash(9), + copyConfigFileFromHostToFlash(10), + copyConfigFileFromFlashToHost(11), + copyTechReportFromRuntimeToHost(12) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Setting this object to one of the acceptable + values will initiate the requested action using + the information provided by fileCopyProtocol, + fileCopyRemoteServer, fileCopySrcFileName, + fileCopyDstFileName,fileCopyModuleNumber and + fileCopyUserName. + + copyConfigFromHostToRuntime(2): + Copy the configuration file from host to + runtime configuration over the network through + tftp/rcp. This action will use + fileCopyProtocol, fileCopyRemoteServer, + fileCopySrcFileName, fileCopyModuleNumber, + and fileCopyUserName (if applicable). + + copyConfigFromRuntimeToHost(3): + Copy the runtime configuration to host over the + network through tftp/rcp. This action will use + fileCopyProtocol, fileCopyRemoteServer, + fileCopyModuleNumber, fileCopyDstFileName, + fileCopyUserName (if applicable), and + fileCopyRuntimeConfigPart. + + copyImageFromHostToFlash(4): + Copy the image from host to the flash over the + network through tftp/rcp. It is up to the + SNMP agent to reset and run the downloaded + image after copying. This action will use + fileCopyProtocol, fileCopyRemoteServer, + fileCopySrcFileName, fileCopyModuleNumber, + and fileCopyUserName (if applicable). + + copyImageFromFlashToHost(5): + Copy the image from flash to host over the + switch through tftp/rcp. This action will use + fileCopyProtocol, fileCopyRemoteServer, + fileCopyDstFileName, fileCopyModuleNumber, + and fileCopyUserName (if applicable). + + copyConfigFromFlashToRuntime(8): + Copy the configuration file to the runtime + configuration locally. This action can perform + only on the SUPG supervisor model and will + use fileCopySrcFileName ('cfg1' or 'cfg2'). + + copyConfigFromRuntimeToFlash(9): + Copy the runtime configuration to a + configuration file on the flash locally. This + action can perform only on the SUPG supervisor + model and will use fileCopyDstFileName ('cfg1' + or 'cfg2'), and fileCopyRuntimeConfigPart. + + copyConfigFileFromHostToFlash(10): + Copy the configuration file from host to the + runtime configuration over the network through + tftp/rcp. This action can perform only on the + SUPG supervisor model and will use + fileCopyProtocol, fileCopyRemoteServer, + fileCopySrcFileName, fileCopyDstFileName, + fileCopyModuleNumber and fileCopyUserName + (if applicable). + + copyConfigFileFromFlashToHost(11): + Copy the configuration file on the flash to + host over the network through tftp/rcp. + This action can perform only on the + SUPG supervisor model and will use + fileCopyProtocol, fileCopyRemoteServer, + fileCopySrcFileName, fileCopyDstFileName, + fileCopyModuleNumber and fileCopyUserName + (if applicable). + + copyTechReportFromRuntimeToHost(12): + Copy the technical report of the system to + host over the network through tftp only. This + action will use fileCopyProtocol, + fileCopyRemoteServer, fileCopyModuleNumber, + and fileCopyDstFileName. + + Setting this object to any other value results in + an error. + + The value of this object can not be changed when + the fileCopyResult object has the value of + inProgress(1)." + ::= { fileCopyGrp 7 } + +fileCopyResult OBJECT-TYPE + SYNTAX INTEGER { + inProgress(1), + success(2), + noResponse(3), + tooManyRetries(4), + noBuffers(5), + noProcesses(6), + badChecksum(7), + badLength(8), + badFlash(9), + serverError(10), + userCanceled(11), + wrongCode(12), + fileNotFound(13), + invalidHost(14), + invalidModule(15), + accessViolation(16), + unknownStatus(17), + invalidStorageDevice(18), + insufficientSpaceOnStorageDevice(19), + insufficientDramSize(20), + incompatibleImage(21), + rcpError(22) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Contains the result of the last copy action + request. + If the value of fileCopyResult is rcpError(22), + then the detailed rcp error messages are contained + in fileCopyResultRcpErrorMessage." + ::= { fileCopyGrp 8 } + +fileCopyResultRcpErrorMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Contains the detailed rcp error messages if the + value of fileCopyResult is rcpError(22) for the + last copy action request; otherwise, this MIB + object contains the empty string." + ::= { fileCopyGrp 9 } + +fileCopyRuntimeConfigPart OBJECT-TYPE + SYNTAX INTEGER { + all(1), + nonDefault(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the part of runtime configuration to be + copied. This object will only take effect when the + object value of fileCopyAction is one of the + following: + + copyConfigFromRuntimeToHost(3), + copyConfigFromRuntimeToFlash(9). + + all -- copy all the runtime configuration. + + nonDefault --copy only the part of the runtime + configuration which is different from + the default configuration." + DEFVAL { all } + ::= { fileCopyGrp 10 } + + +-- The voice Group +-- Voice Port Interface Configuration Table + +voicePortIfConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoicePortIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of port entries. The number of entries is + determined by the number of modules in the chassis + and the number of ports with the voice port + interface configuration capability in the system." + ::= { voiceGrp 1 } + +voicePortIfConfigEntry OBJECT-TYPE + SYNTAX VoicePortIfConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing voice interface configuration + for a particular port." + INDEX { voicePortIfConfigModuleIndex, + voicePortIfConfigPortIndex } + ::= { voicePortIfConfigTable 1 } + +VoicePortIfConfigEntry ::= + SEQUENCE { + voicePortIfConfigModuleIndex INTEGER, + voicePortIfConfigPortIndex INTEGER, + voicePortIfDHCPEnabled TruthValue, + voicePortIfIpAddress IpAddress, + voicePortIfIpNetMask IpAddress, + voicePortIfTftpServerAddress IpAddress, + voicePortIfGatewayAddress IpAddress, + voicePortIfDnsServerAddress IpAddress, + voicePortIfDnsDomain DisplayString, + voicePortIfOperDnsDomain DisplayString + } + +voicePortIfConfigModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located." + ::= { voicePortIfConfigEntry 1 } + +voicePortIfConfigPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module. The value is determined by the + location of the port on the module." + ::= { voicePortIfConfigEntry 2 } + +voicePortIfDHCPEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether DHCP service is enabled." + DEFVAL { true } + ::= { voicePortIfConfigEntry 3 } + +voicePortIfIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's IP address. This object + is configurable only if voicePortIfDHCPEnabled + is false. When the value of voicePortIfDHCPEnabled + is false, this object should be configured." + ::= { voicePortIfConfigEntry 4 } + +voicePortIfIpNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's subnet mask. This object + is configurable only if voicePortIfDHCPEnabled + is false. When the value of voicePortIfDHCPEnabled + is false, this object should be configured." + ::= { voicePortIfConfigEntry 5 } + +voicePortIfTftpServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's TFTP Server address. This object + is configurable only if voicePortIfDHCPEnabled + is false. When the value of voicePortIfDHCPEnabled + is false, this object should be configured." + ::= { voicePortIfConfigEntry 6 } + +voicePortIfGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's router address. This object + is configurable only if voicePortIfDHCPEnabled + is false." + ::= { voicePortIfConfigEntry 7 } + +voicePortIfDnsServerAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's DNS Server address. This object + is configurable only if voicePortIfDHCPEnabled + is false." + ::= { voicePortIfConfigEntry 8 } + +voicePortIfDnsDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This port's DNS domain name. This object + is configurable only if voicePortIfDHCPEnabled + is false." + ::= { voicePortIfConfigEntry 9 } + +voicePortIfOperDnsDomain OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This port's operational DNS domain name. If + voicePortIfDHCPEnabled is true, this object + indicates the domain name taken from the + DHCP server. If voicePortIfDHCPEnabled is false, + this object indicates the domain name configured + by users for this voice port or the domain name + taken from DNS configuration for the system + otherwise." + ::= { voicePortIfConfigEntry 10 } + + +-- Voice Port Call Manager Table +voicePortCallManagerTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoicePortCallManagerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of call manager entries. The number of + entries is determined by the number of modules in + the chassis and the number of ports with the + voice port interface configuration capability + in the system." + ::= { voiceGrp 2 } + +voicePortCallManagerEntry OBJECT-TYPE + SYNTAX VoicePortCallManagerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing voice interface configuration + for a particular port." + INDEX { voicePortModuleIndex, voicePortIndex, + voicePortCallManagerIndex } + ::= { voicePortCallManagerTable 1 } + +VoicePortCallManagerEntry ::= + SEQUENCE { + voicePortModuleIndex + INTEGER, + voicePortIndex + INTEGER, + voicePortCallManagerIndex + INTEGER, + voicePortCallManagerIpAddr + IpAddress + } + +voicePortModuleIndex OBJECT-TYPE + SYNTAX INTEGER(1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located." + ::= { voicePortCallManagerEntry 1 } + +voicePortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module." + ::= { voicePortCallManagerEntry 2 } + +voicePortCallManagerIndex OBJECT-TYPE + SYNTAX INTEGER (1..5) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies this + CallManager within a module/port. A port can + register up to 5 CallManager." + ::= { voicePortCallManagerEntry 3 } + +voicePortCallManagerIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Call Manager IP Address of this port. A port + can register up to 5 call managers." + ::= { voicePortCallManagerEntry 4 } + +-- Voice Port Operational Dns Server Table + +voicePortOperDnsServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoicePortOperDnsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of operational DNS entries used by the + voice ports." + ::= { voiceGrp 3 } + +voicePortOperDnsServerEntry OBJECT-TYPE + SYNTAX VoicePortOperDnsServerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing infomation on DNS servers may be + used for a particular voice port. + + If DHCP is enabled on a port, the DNS server IP + address will come from the DHCP server. If DHCP + is disabled, the DNS server IP address can be + configured by users through the mib object + voicePortIfDnsServerAddress for a port, otherwise + it will be taken from DNS configuration in the + system." + INDEX { voicePortDnsModuleIndex, voicePortDnsPortIndex, + voicePortOperDnsServerIndex } + ::= { voicePortOperDnsServerTable 1 } + +VoicePortOperDnsServerEntry ::= + SEQUENCE { + voicePortDnsModuleIndex + INTEGER, + voicePortDnsPortIndex + INTEGER, + voicePortOperDnsServerIndex + Unsigned32, + voicePortOperDnsServerIpAddr + IpAddress, + voicePortOperDnsServerSource + INTEGER + } + +voicePortDnsModuleIndex OBJECT-TYPE + SYNTAX INTEGER(1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located." + ::= { voicePortOperDnsServerEntry 1 } + +voicePortDnsPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module." + ::= { voicePortOperDnsServerEntry 2 } + +voicePortOperDnsServerIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An index value that uniquely identifies this DNS + server within a module/port. This value indicates + the priority order among these DNS servers." + ::= { voicePortOperDnsServerEntry 3 } + +voicePortOperDnsServerIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The operational DNS Server IP Address of this + port. " + ::= { voicePortOperDnsServerEntry 4 } + +voicePortOperDnsServerSource OBJECT-TYPE + SYNTAX INTEGER { + fromDhcp (1), + fromPortConfig (2), + fromSystemConfig (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The source of the Dns Server IP Address of this + port. + + fromDhcp(1) indicates that the DNS server IP + address comes from the DHCP server. + + fromPortConfig(2) indicates that the DNS server IP + address comes from the object + voicePorfIfDnsServerAdress. + + fromSystemConfig(3) indicates that the DNS server + IP address comes from DNS configuration for the + system." + ::= { voicePortOperDnsServerEntry 5 } + + + +-- the port jumbo frame group +-- If the port jumbo frame feature is supported, this +-- portJumboFrameTable +-- should be implemented. + +portJumboFrameTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortJumboFrameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of port jumbo frame entries. The number of + entries is determined by the number of ports in + the system which support the Jumbo frame feature." + ::= { portJumboFrameGrp 1} + + +portJumboFrameEntry OBJECT-TYPE + SYNTAX PortJumboFrameEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing the jumbo frame configuration + for a particular port." + INDEX { portJumboFrameModuleIndex, + portJumboFramePortIndex } + ::= { portJumboFrameTable 1 } + +PortJumboFrameEntry ::= + SEQUENCE { + portJumboFrameModuleIndex + INTEGER, + portJumboFramePortIndex + INTEGER, + portJumboFrameEnable + INTEGER + } + +portJumboFrameModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies the + module where this port is located." + ::= { portJumboFrameEntry 1 } + +portJumboFramePortIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies this port + within a module. The value is determined by the + location of the port on the module. Valid entries + are 1 to the value of moduleNumPorts for this + module." + ::= { portJumboFrameEntry 2 } + +portJumboFrameEnable OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the jumbo frame status of the port. If + enabled, the port supports frame size greater than + the standard ethernet frame size of 1518 bytes." + ::= { portJumboFrameEntry 3 } + + + +-- the switch acceleration group + +-- If the module switch acceleration feature is supported, the +-- switchAccelerationModuleTable should be implemented. + +switchAccelerationModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwitchAccelerationModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains a list of the modules for + which the switch acceleration capability can be + configured." + ::= { switchAccelerationGrp 1 } + +switchAccelerationModuleEntry OBJECT-TYPE + SYNTAX SwitchAccelerationModuleEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A module for which switch acceleration can be + configured." + INDEX { switchAccelerationModuleIndex } + ::= { switchAccelerationModuleTable 1 } + +SwitchAccelerationModuleEntry ::= + SEQUENCE { + switchAccelerationModuleIndex + INTEGER, + switchAccelerationModuleEnable + TruthValue + } + +switchAccelerationModuleIndex OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The value of moduleIndex for the module where + switch acceleration feature can be configured." + ::= {switchAccelerationModuleEntry 1 } + +switchAccelerationModuleEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates whether switch acceleration is enabled + on this module or not. + + When this feature is enabled, the system will + increase the switching bandwidth, but the + ifAdminStatus of any port on this module can not + be set to 'up'. + + If the ifAdminStatus of any port on this module is + 'up', this feature can not be enabled until + ifAdminStatus of all ports on the module is set + to 'down'." + DEFVAL { false } + ::= {switchAccelerationModuleEntry 2 } + +-- The configuration Group + +configMode OBJECT-TYPE + SYNTAX INTEGER { + binary(1), -- binary mode + text(2) -- text mode + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Configuration mode to store the configuration + information." + DEFVAL { binary } + ::= { configGrp 1 } + +configTextFileLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The location of the text configuration file + which can be either NVRAM or a file in the + FLASH file system. If the location is NVRAM, + this object is a zero length octet string. + Otherwise, the FLASH file should be specified + in : format. This object + is only instantiated when configMode has + the value of of text(2). " + DEFVAL {''H } + ::= { configGrp 2 } + +configWriteMem OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When this object is set to true(1), the current + configuration is saved in text format in the + location specified by configTextFileLocation. + This object is only instantiated when configMode + has the value of text(2). When read, + this object always returns false(2). " + ::= { configGrp 3 } + +configWriteMemStatus OBJECT-TYPE + SYNTAX INTEGER { + inProgress(1), + succeeded(2), + resourceUnavailable(3), + badFileName(4), + someOtherError(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The status of the current or the most recently + completed 'write memory' operation. The possible + values are: + + inProgress - 'write' operation in progress; + + succeeded - the 'write' was successful (this + value is also used when no write has been + invoked since the last time the local system + restarted); + + resourceUnavailable, -the 'write' failed because + insufficeient resource was available. + + badFileName - the 'write' failed because the + specified destination file was not found. + This might be due to invalid FLASH device + name or invalid file name. + + someOtherError - the 'write' failed for some + other reason. + + This object is only instantiated when configMode + has the value of text(2). " + ::= { configGrp 4 } + +-- traps + +ciscoStackNotificationsPrefix OBJECT IDENTIFIER ::= { workgroup 0 } + +lerAlarmOn NOTIFICATION-TYPE + OBJECTS { fddimibPORTSMTIndex, fddimibPORTIndex } + STATUS current + DESCRIPTION "A lerAlarmOn trap signifies that the agent entity + has detected that the fddimibPORTLerFlag object in + the FDDI-SMT73-MIB (RFC 1512) has transitioned to + the true(1) state for one of its ports. + The generation of this trap can be controlled by + the fddimibPORTLerAlarm object in the + FDDI-SMT73-MIB for each port." + ::= { ciscoStackNotificationsPrefix 1} + +lerAlarmOff NOTIFICATION-TYPE + OBJECTS { fddimibPORTSMTIndex, fddimibPORTIndex } + STATUS current + DESCRIPTION "A lerAlarmOff trap signifies that the agent + entity has detected that the fddimibPORTLerFlag + object in the FDDI-SMT73-MIB (RFC 1512) has + transitioned to the false(2) state for one of + its ports. The generation of this trap can be + controlled by the fddimibPORTLerAlarm object in + the FDDI-SMT73-MIB for each port." + ::= { ciscoStackNotificationsPrefix 2} + +moduleUp NOTIFICATION-TYPE + OBJECTS { moduleIndex, moduleType } + STATUS current + DESCRIPTION "A moduleUp trap signifies that the agent entity + has detected that the moduleStatus object in this + MIB has transitioned to the ok(2) state for one of + its modules. + The generation of this trap can be controlled by + the sysEnableModuleTraps object in this MIB." + ::= { ciscoStackNotificationsPrefix 3} + +moduleDown NOTIFICATION-TYPE + OBJECTS { moduleIndex, moduleType } + STATUS current + DESCRIPTION "A moduleDown trap signifies that the agent entity + has detected that the moduleStatus object in this + MIB has transitioned out of the ok(2) state for + one of its modules. + The generation of this trap can be controlled by + the sysEnableModuleTraps object in this MIB." + ::= { ciscoStackNotificationsPrefix 4} + +chassisAlarmOn NOTIFICATION-TYPE + OBJECTS { chassisTempAlarm, chassisMinorAlarm, + chassisMajorAlarm } + STATUS current + DESCRIPTION "A chassisAlarmOn trap signifies that the agent + entity has detected the chassisTempAlarm, + chassisMinorAlarm, or chassisMajorAlarm object in + this MIB has transitioned to the on(2) state. + The generation of this trap can be controlled by + the sysEnableChassisTraps object in this MIB." + ::= { ciscoStackNotificationsPrefix 5} + +chassisAlarmOff NOTIFICATION-TYPE + OBJECTS { chassisTempAlarm, chassisMinorAlarm, + chassisMajorAlarm } + STATUS current + DESCRIPTION "A chassisAlarmOff trap signifies that the agent + entity has detected the chassisTempAlarm, + chassisMinorAlarm, or chassisMajorAlarm object in + this MIB has transitioned to the off(1) state. + The generation of this trap can be controlled by + the sysEnableChassisTraps object in this MIB." + ::= { ciscoStackNotificationsPrefix 6} + +ipPermitDeniedTrap NOTIFICATION-TYPE + OBJECTS { ipPermitDeniedAddress, ipPermitDeniedAccess } + STATUS current + DESCRIPTION "ipPermitDeniedTrap indicates that IP permit + denied access happens. The generation of this + trap can be controlled by the + sysEnableIpPermitTraps object in this MIB." + ::= { ciscoStackNotificationsPrefix 7} + +sysConfigChangeTrap NOTIFICATION-TYPE + OBJECTS { sysConfigChangeTime, sysConfigChangeInfo } + STATUS current + DESCRIPTION "A sysConfigChange trap signifies that the system + configuration in NVRAM is changed. The generation + of this trap can be controlled by the + sysEnableConfigTraps object in this MIB." + ::= { ciscoStackNotificationsPrefix 9 } + +tokenRingSoftErrExceededTrap NOTIFICATION-TYPE + OBJECTS { ringStationMacAddress, ifIndex, ifName } + STATUS current + DESCRIPTION "This trap is generated when a station local to a + token ring port exceeds its Soft Error Threshold + within the configured interval." + ::= { ciscoStackNotificationsPrefix 10 } + + +-- conformance information + +ciscoStackMIBConformance OBJECT IDENTIFIER ::= { ciscoStackMIB 31 } +ciscoStackMIBCompliances OBJECT IDENTIFIER ::= + { ciscoStackMIBConformance 1 } +ciscoStackMIBGroups OBJECT IDENTIFIER ::= + { ciscoStackMIBConformance 2 } + +-- compliance statements + +ciscoStackgMIBCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup, + systemTrapGroup, + chassisGroup, + moduleGroup, + portGroup + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalSystemTrapGroup + DESCRIPTION "The OptionalSystemTrapGroup is an optional group + containing objects providing information about + the SNMP traps feature." + GROUP optionalChassisGroup + DESCRIPTION "The OptionalChassisGroup is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup + DESCRIPTION "The OptionalPortGroup is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about the + traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about the + FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about the + extended RMON feature." + GROUP authenticationGroup + DESCRIPTION "The authenticationGroup is an optional group + containing objects providing information about + the authentication features." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about the + combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP monitorGroup + DESCRIPTION "The monitorGroup is an optional group containing + objects providing information about the port + monitoring feature, also known as the Switched + Port ANalyzer (SPAN) feature." + GROUP vlanGroup + DESCRIPTION "The vlanGroup is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup + DESCRIPTION "The ipPermitGroup is an optional group containing + objects providing information about the ip permit + list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + ::= { ciscoStackMIBCompliances 1 } + +ciscoStackgMIBCompliance2 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup, + systemTrapGroup, + chassisGroup, + moduleGroup, + portGroup + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalSystemTrapGroup + DESCRIPTION "The OptionalSystemTrapGroup is an optional group + containing objects providing information about the + SNMP traps feature." + GROUP optionalChassisGroup + DESCRIPTION "The OptionalChassisGroup is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup + DESCRIPTION "The OptionalPortGroup is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about the + traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about the + FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about + the extended RMON feature." + GROUP authenticationGroup + DESCRIPTION "The authenticationGroup is an optional group + containing objects providing information about + the authentication features." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about + the combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP monitorGroup + DESCRIPTION "The monitorGroup is an optional group containing + objects providing information about the port + monitoring feature, also known as the Switched + Port ANalyzer (SPAN) feature." + GROUP vlanGroup + DESCRIPTION "The vlanGroup is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup + DESCRIPTION "The ipPermitGroup is an optional group containing + objects providing information about the ip permit + list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP ipPermitGroup1 + DESCRIPTION "The ipPermitGroup1 is an optional group + containing objects providing information about + the ip permit list feature." + GROUP optionalSystemMiscGroup2 + DESCRIPTION "The optionalSystemMiscGroup2 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP filterGroup1 + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP mcastGroup1 + DESCRIPTION "The mcastGroup1 is an optional group containing + objects providing information about the + multicast features." + GROUP portGroup1 + DESCRIPTION "The portGroup1 is an optional group containing + objects providing information about the ports on + the device." + GROUP chassisGroup1 + DESCRIPTION "The chassisGroup1 is a group containing objects + providing information about the chassis of the + device. This group must be implemented by systems + that can have 3 or more power supplies." + GROUP moduleGroup1 + DESCRIPTION "The moduleGroup1 is an optional group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup2 + DESCRIPTION "The portCpbGroup2 is an optional group containing + objects providing additional information about the + port capabilities on the device." + ::= { ciscoStackMIBCompliances 2 } + +ciscoStackgMIBCompliance3 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup, + systemTrapGroup, + chassisGroup, + moduleGroup, + portGroup + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalSystemTrapGroup + DESCRIPTION "The OptionalSystemTrapGroup is an optional group + containing objects providing information about the + SNMP traps feature." + GROUP optionalChassisGroup + DESCRIPTION "The OptionalChassisGroup is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup + DESCRIPTION "The OptionalPortGroup is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about + the traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about + the FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about the + extended RMON feature." + GROUP authenticationGroup + DESCRIPTION "The authenticationGroup is an optional group + containing objects providing information about the + authentication features." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about the + combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP monitorGroup + DESCRIPTION "The monitorGroup is an optional group containing + objects providing information about the port + monitoring feature, also known as the Switched + Port ANalyzer (SPAN) feature." + GROUP vlanGroup + DESCRIPTION "The vlanGroup is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup + DESCRIPTION "The ipPermitGroup is an optional group containing + objects providing information about the ip permit + list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP ipPermitGroup1 + DESCRIPTION "The ipPermitGroup1 is an optional group + containing objects providing information about + the ip permit list feature." + GROUP optionalSystemMiscGroup2 + DESCRIPTION "The optionalSystemMiscGroup2 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP filterGroup1 + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP mcastGroup1 + DESCRIPTION "The mcastGroup1 is an optional group containing + objects providing information about the + multicast features." + GROUP portGroup1 + DESCRIPTION "The portGroup1 is an optional group containing + objects providing information about the ports on + the device." + GROUP chassisGroup1 + DESCRIPTION "The chassisGroup1 is a group containing objects + providing information about the chassis of the + device. This group must be implemented by systems + that can have 3 or more power supplies." + GROUP moduleGroup1 + DESCRIPTION "The moduleGroup1 is an optional group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup2 + DESCRIPTION "The portCpbGroup2 is an optional group containing + objects providing additional information about the + port capabilities on the device." + + GROUP voiceGroup + DESCRIPTION "The voiceGroup is an optional group containing + objects providing information about the voice port + on the device." + GROUP moduleGroup2 + DESCRIPTION "The moduleGroup2 is an mandatory group + containing objects providing information about + the modules on the device." + GROUP portCpbGroup3 + DESCRIPTION "The portCpbGroup3 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP vlanGroup1 + DESCRIPTION "The vlanGroup1 is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP portGroup2 + DESCRIPTION "The portGroup2 is an optional group containing + objects providing information about the ports on + the device." + GROUP switchAccelerationModuleGroup + DESCRIPTION "This group is mandatory for implementations of + switch acceleration capability." + GROUP optionalSystemMiscGroup3 + DESCRIPTION "The optionalSystemMiscGroup3 is an optional group + containing objects providing information about the + miscellaneous system features." + ::= { ciscoStackMIBCompliances 3 } + +ciscoStackgMIBCompliance4 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup, + systemTrapGroup, + chassisGroup, + moduleGroup, + portGroup + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalSystemTrapGroup + DESCRIPTION "The OptionalSystemTrapGroup is an optional group + containing objects providing information about the + SNMP traps feature." + GROUP optionalChassisGroup + DESCRIPTION "The OptionalChassisGroup is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup + DESCRIPTION "The OptionalPortGroup is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about the + traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about the + FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about the + extended RMON feature." + GROUP authenticationGroup + DESCRIPTION "The authenticationGroup is an optional group + containing objects providing information about the + authentication features." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about the + combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP monitorGroup + DESCRIPTION "The monitorGroup is an optional group containing + objects providing information about the port + monitoring feature, also known as the Switched + Port ANalyzer (SPAN) feature." + GROUP vlanGroup + DESCRIPTION "The vlanGroup is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup + DESCRIPTION "The ipPermitGroup is an optional group + containing objects providing information about + the ip permit list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP ipPermitGroup1 + DESCRIPTION "The ipPermitGroup1 is an optional group + containing objects providing information about + the ip permit list feature." + GROUP optionalSystemMiscGroup2 + DESCRIPTION "The optionalSystemMiscGroup2 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP filterGroup1 + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP mcastGroup1 + DESCRIPTION "The mcastGroup1 is an optional group containing + objects providing information about the + multicast features." + GROUP portGroup1 + DESCRIPTION "The portGroup1 is an optional group containing + objects providing information about the ports on + the device." + GROUP chassisGroup1 + DESCRIPTION "The chassisGroup1 is a group containing objects + providing information about the chassis of the + device. This group must be implemented by systems + that can have 3 or more power supplies." + GROUP moduleGroup1 + DESCRIPTION "The moduleGroup1 is an optional group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup2 + DESCRIPTION "The portCpbGroup2 is an optional group containing + objects providing additional information about the + port capabilities on the device." + + GROUP voiceGroup + DESCRIPTION "The voiceGroup is an optional group containing + objects providing information about the voice port + on the device." + GROUP moduleGroup2 + DESCRIPTION "The moduleGroup2 is an mandatory group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup3 + DESCRIPTION "The portCpbGroup3 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP vlanGroup1 + DESCRIPTION "The vlanGroup1 is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP portGroup2 + DESCRIPTION "The portGroup2 is an optional group containing + objects providing information about the ports on + the device." + GROUP switchAccelerationModuleGroup + DESCRIPTION "This group is mandatory for implementations of + switch acceleration capability." + GROUP optionalSystemMiscGroup3 + DESCRIPTION "The optionalSystemMiscGroup3 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP optionalSystemMiscGroup4 + DESCRIPTION "This group is an optional group containing + objects providing information about the + miscellaneous system features." + GROUP vlanTrunkMappingGroup + DESCRIPTION "This group is mandatory for implementations of + trunk VLAN to VLAN association feature on the + device." + GROUP portJumboFrameGroup + DESCRIPTION "This group is mandatory for implementations of + port jumbo frame feature on the device." + GROUP portCpbGroup4 + DESCRIPTION "The portCpbGroup4 is an optional group containing + objects providing additional information about the + port capabilities on the device." + + ::= { ciscoStackMIBCompliances 4 } + +ciscoStackgMIBCompliance5 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup, + systemTrapGroup, + chassisGroup, + moduleGroup, + portGroup + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalSystemTrapGroup + DESCRIPTION "The OptionalSystemTrapGroup is an optional group + containing objects providing information about the + SNMP traps feature." + GROUP optionalChassisGroup + DESCRIPTION "The OptionalChassisGroup is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup + DESCRIPTION "The OptionalPortGroup is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about the + traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about the + FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about the + extended RMON feature." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about the + combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP vlanGroup + DESCRIPTION "The vlanGroup is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup + DESCRIPTION "The ipPermitGroup is an optional group containing + objects providing information about the ip permit + list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP ipPermitGroup1 + DESCRIPTION "The ipPermitGroup1 is an optional group + containing objects providing information about + the ip permit list feature." + GROUP optionalSystemMiscGroup2 + DESCRIPTION "The optionalSystemMiscGroup2 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP filterGroup1 + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP mcastGroup1 + DESCRIPTION "The mcastGroup1 is an optional group containing + objects providing information about the + multicast features." + GROUP portGroup1 + DESCRIPTION "The portGroup1 is an optional group containing + objects providing information about the ports on + the device." + GROUP chassisGroup1 + DESCRIPTION "The chassisGroup1 is a group containing objects + providing information about the chassis of the + device. This group must be implemented by systems + that can have 3 or more power supplies." + GROUP moduleGroup1 + DESCRIPTION "The moduleGroup1 is an optional group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup2 + DESCRIPTION "The portCpbGroup2 is an optional group containing + objects providing additional information about the + port capabilities on the device." + + GROUP voiceGroup + DESCRIPTION "The voiceGroup is an optional group containing + objects providing information about the voice port + on the device." + GROUP moduleGroup2 + DESCRIPTION "The moduleGroup2 is an mandatory group + containing objects providing information about + the modules on the device." + GROUP portCpbGroup3 + DESCRIPTION "The portCpbGroup3 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portGroup2 + DESCRIPTION "The portGroup2 is an optional group containing + objects providing information about the ports on + the device." + GROUP switchAccelerationModuleGroup + DESCRIPTION "This group is mandatory for implementations of + switch acceleration capability." + GROUP optionalSystemMiscGroup3 + DESCRIPTION "The optionalSystemMiscGroup3 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP optionalSystemMiscGroup4 + DESCRIPTION "This group is an optional group containing + objects providing information about the + miscellaneous system features." + GROUP vlanTrunkMappingGroup + DESCRIPTION "This group is mandatory for implementations of + trunk VLAN to VLAN association feature on the + device." + GROUP portJumboFrameGroup + DESCRIPTION "This group is mandatory for implementations of + port jumbo frame feature on the device." + GROUP portCpbGroup4 + DESCRIPTION "The portCpbGroup4 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP fileCopyGroup2 + DESCRIPTION "The fileCopyGroup2 is an optional group + containing objects providing additional + information about tftp/rcp or local file + upload/download features." + GROUP systemRmonGroup2 + DESCRIPTION "The systemRmonGroup2 is an optional group + containing objects providing information about + RMON max memory usage control." + GROUP filterGroup2 + DESCRIPTION "The filterGroup2 is an optional group containing + objects providing information about the + unicast/multicast port filtering feature." + GROUP optionalSystemMiscGroup5 + DESCRIPTION "The optionalSystemMiscGroup5 is an optional group + containing objects providing information about + miscellaneous system features." + GROUP syslogGroup2 + DESCRIPTION "The syslogGroup2 is an optional group containing + objects providing information about whether the + syslog messages should be sent to telnet + sessions." + GROUP systemStatusGroup + DESCRIPTION "The systemStatusGroup is an optional group + containing objects providing information about + system LED status." + GROUP configurationGroup + DESCRIPTION "The configurationGroup is an optional group + containing objects providing information about + the configuration mode to store the configuration + information." + GROUP filterGroup3 + DESCRIPTION "The filterGroup3 is an optional group containing + objects providing information about Broadcast + Suppression Violation for port filtering + feature." + GROUP portGroup3 + DESCRIPTION "The portGroup3 is an optional group containing + objects providing information about additional + information about the ports on the device." + GROUP portCpbGroup5 + DESCRIPTION "The portCpbGroup5 is an optional group containing + objects providing additional information about + the port capabilities on the device." + GROUP authenticationGroup1 + DESCRIPTION "The authenticationGroup1 is an optional group + containing objects providing information about the + authentication features." + + ::= { ciscoStackMIBCompliances 5 } + +ciscoStackgMIBCompliance6 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup1, + systemTrapGroup1, + chassisGroup, + moduleGroup, + portGroup4 + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalSystemTrapGroup + DESCRIPTION "The OptionalSystemTrapGroup is an optional group + containing objects providing information about the + SNMP traps feature." + GROUP optionalChassisGroup1 + DESCRIPTION "The OptionalChassisGroup1 is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup1 + DESCRIPTION "The OptionalPortGroup1 is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about the + traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about the + FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about the + extended RMON feature." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about the + combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP vlanGroup2 + DESCRIPTION "The vlanGroup2 is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup2 + DESCRIPTION "The ipPermitGroup2 is an optional group + containing objects providing information + about the ip permit list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP ipPermitGroup1 + DESCRIPTION "The ipPermitGroup1 is an optional group + containing objects providing information about + the ip permit list feature." + GROUP optionalSystemMiscGroup6 + DESCRIPTION "The optionalSystemMiscGroup6 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP filterGroup1 + DESCRIPTION "The filterGroup1 is an optional group containing + objects providing information about the port + filtering feature." + GROUP mcastGroup1 + DESCRIPTION "The mcastGroup1 is an optional group containing + objects providing information about the + multicast features." + GROUP portGroup1 + DESCRIPTION "The portGroup1 is an optional group containing + objects providing information about the ports on + the device." + GROUP chassisGroup1 + DESCRIPTION "The chassisGroup1 is a group containing objects + providing information about the chassis of the + device. This group must be implemented by systems + that can have 3 or more power supplies." + GROUP moduleGroup1 + DESCRIPTION "The moduleGroup1 is an optional group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup2 + DESCRIPTION "The portCpbGroup2 is an optional group containing + objects providing additional information about the + port capabilities on the device." + + GROUP voiceGroup + DESCRIPTION "The voiceGroup is an optional group containing + objects providing information about the voice port + on the device." + GROUP moduleGroup2 + DESCRIPTION "The moduleGroup2 is an mandatory group + containing objects providing information about + the modules on the device." + GROUP portCpbGroup3 + DESCRIPTION "The portCpbGroup3 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portGroup2 + DESCRIPTION "The portGroup2 is an optional group containing + objects providing information about the ports on + the device." + GROUP switchAccelerationModuleGroup + DESCRIPTION "This group is mandatory for implementations of + switch acceleration capability." + GROUP optionalSystemMiscGroup3 + DESCRIPTION "The optionalSystemMiscGroup3 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP optionalSystemMiscGroup4 + DESCRIPTION "This group is an optional group containing + objects providing information about the + miscellaneous system features." + GROUP vlanTrunkMappingGroup + DESCRIPTION "This group is mandatory for implementations of + trunk VLAN to VLAN association feature on the + device." + GROUP portJumboFrameGroup + DESCRIPTION "This group is mandatory for implementations of + port jumbo frame feature on the device." + GROUP portCpbGroup4 + DESCRIPTION "The portCpbGroup4 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP fileCopyGroup2 + DESCRIPTION "The fileCopyGroup2 is an optional group + containing objects providing additional + information about tftp/rcp or local file + upload/download features." + GROUP systemRmonGroup2 + DESCRIPTION "The systemRmonGroup2 is an optional group + containing objects providing information about + RMON max memory usage control." + GROUP filterGroup2 + DESCRIPTION "The filterGroup2 is an optional group containing + objects providing information about the + unicast/multicast port filtering feature." + GROUP optionalSystemMiscGroup5 + DESCRIPTION "The optionalSystemMiscGroup5 is an optional group + containing objects providing information about + miscellaneous system features." + GROUP syslogGroup2 + DESCRIPTION "The syslogGroup2 is an optional group containing + objects providing information about whether the + syslog messages should be sent to telnet + sessions." + GROUP systemStatusGroup + DESCRIPTION "The systemStatusGroup is an optional group + containing objects providing information about + system LED status." + GROUP configurationGroup + DESCRIPTION "The configurationGroup is an optional group + containing objects providing information about + the configuration mode to store the configuration + information." + GROUP filterGroup3 + DESCRIPTION "The filterGroup3 is an optional group containing + objects providing information about Broadcast + Suppression Violation for port filtering + feature." + GROUP portGroup3 + DESCRIPTION "The portGroup3 is an optional group containing + objects providing information about additional + information about the ports on the device." + GROUP portCpbGroup5 + DESCRIPTION "The portCpbGroup5 is an optional group containing + objects providing additional information about + the port capabilities on the device." + GROUP authenticationGroup1 + DESCRIPTION "The authenticationGroup1 is an optional group + containing objects providing information about the + authentication features." + + ::= { ciscoStackMIBCompliances 6 } + +ciscoStackgMIBCompliance7 MODULE-COMPLIANCE + STATUS current + DESCRIPTION "The compliance statement for entities which + implement the Cisco stack MIB." + MODULE -- this module + MANDATORY-GROUPS { + systemMiscGroup1, + systemTrapGroup2, + chassisGroup, + moduleGroup, + portGroup4 + } + GROUP optionalSystemMiscGroup + DESCRIPTION "The OptionalSystemMiscGroup is an optional group + containing objects providing information about + the miscellaneous system features." + GROUP optionalChassisGroup1 + DESCRIPTION "The OptionalChassisGroup1 is an optional group + containing objects providing information about the + chassis of the device." + GROUP optionalModuleGroup + DESCRIPTION "The OptionalMooduleGroup is an optional group + containing objects providing information about the + modules on the device." + GROUP optionalPortGroup1 + DESCRIPTION "The OptionalPortGroup1 is an optional group + containing objects providing information about the + ports on the device." + GROUP systemTrafficGroup + DESCRIPTION "The systemTrafficGroup is an optional group + containing objects providing information about the + traffic meter feature." + GROUP systemFddiGroup + DESCRIPTION "The systemFddiGroup is an optional group + containing objects providing information about the + FDDI ring feature." + GROUP systemRmonGroup + DESCRIPTION "The systemRmonGroup is an optional group + containing objects providing information about the + extended RMON feature." + GROUP tftpGroup + DESCRIPTION "The tftpGroup is an optional group containing + objects providing information about the tftp + upload/download features." + GROUP brouteEnableGroup + DESCRIPTION "The brouteEnableGroup is an optional group + containing objects providing information about the + combined bridging/routing feature." + GROUP filterGroup + DESCRIPTION "The filterGroup is an optional group containing + objects providing information about the port + filtering feature." + GROUP vlanGroup2 + DESCRIPTION "The vlanGroup2 is an optional group containing + objects providing information about the Virtual + LAN features." + GROUP vmpsGroup + DESCRIPTION "The vmps is an optional group containing objects + providing information about the Vlan Membership + Policy Server feature." + GROUP tokenRingGroup + DESCRIPTION "The tokenRingGroup is an optional group + containing objects providing information about + the tokenring features." + GROUP mcastGroup + DESCRIPTION "The mcastGroup is an optional group containing + objects providing information about the multicast + features." + GROUP dnsGroup + DESCRIPTION "The dnsGroup is an optional group containing + objects providing information about the DNS + feature." + GROUP syslogGroup + DESCRIPTION "The syslogGroup is an optional group containing + objects providing information about the system log + feature." + GROUP ntpGroup + DESCRIPTION "The ntpGroup is an optional group containing + objects providing information about the network + time protocol feature." + GROUP ipPermitGroup2 + DESCRIPTION "The ipPermitGroup2 is an optional group + containing objects providing information + about the ip permit list feature." + GROUP mdgGatewayGroup + DESCRIPTION "The mdgGatewayGroup is an optional group + containing objects providing information about + the multiple default gateway feature." + GROUP traceRouteGroup + DESCRIPTION "The traceRouteGroup is an optional group + containing objects providing information about + the trace route feature." + GROUP ntpAuthenticationGroup + DESCRIPTION "The ntpAuthenticationGroup is an optional group + containing objects providing information about the + network time protocol authentication feature." + GROUP tokenRingSoftErrorMonitorGroup + DESCRIPTION "The tokenRingSoftErrorMonitorGroup is an optional + group containing objects providing information + about the token ring port soft error monitoring + feature." + GROUP portCpbGroup1 + DESCRIPTION "The portCpbGroup1 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portSecurityGroup1 + DESCRIPTION "The portSecurityGroup1 is an optional group + containing objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses." + GROUP fileCopyGroup + DESCRIPTION "The fileCopyGroup is an optional group containing + objects providing information about the tftp/rcp + or local file upload/download features." + GROUP optionalSystemMiscGroup1 + DESCRIPTION "The optionalSystemMiscGroup1 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP ipPermitGroup1 + DESCRIPTION "The ipPermitGroup1 is an optional group + containing objects providing information about + the ip permit list feature." + GROUP optionalSystemMiscGroup6 + DESCRIPTION "The optionalSystemMiscGroup6 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP filterGroup1 + DESCRIPTION "The filterGroup1 is an optional group containing + objects providing information about the port + filtering feature." + GROUP mcastGroup1 + DESCRIPTION "The mcastGroup1 is an optional group containing + objects providing information about the + multicast features." + GROUP portGroup1 + DESCRIPTION "The portGroup1 is an optional group containing + objects providing information about the ports on + the device." + GROUP chassisGroup1 + DESCRIPTION "The chassisGroup1 is a group containing objects + providing information about the chassis of the + device. This group must be implemented by systems + that can have 3 or more power supplies." + GROUP moduleGroup1 + DESCRIPTION "The moduleGroup1 is an optional group containing + objects providing information about the modules + on the device." + GROUP portCpbGroup2 + DESCRIPTION "The portCpbGroup2 is an optional group containing + objects providing additional information about the + port capabilities on the device." + + GROUP voiceGroup + DESCRIPTION "The voiceGroup is an optional group containing + objects providing information about the voice port + on the device." + GROUP moduleGroup2 + DESCRIPTION "The moduleGroup2 is an mandatory group + containing objects providing information about + the modules on the device." + GROUP portCpbGroup3 + DESCRIPTION "The portCpbGroup3 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP portGroup2 + DESCRIPTION "The portGroup2 is an optional group containing + objects providing information about the ports on + the device." + GROUP switchAccelerationModuleGroup + DESCRIPTION "This group is mandatory for implementations of + switch acceleration capability." + GROUP optionalSystemMiscGroup3 + DESCRIPTION "The optionalSystemMiscGroup3 is an optional group + containing objects providing information about the + miscellaneous system features." + GROUP optionalSystemMiscGroup4 + DESCRIPTION "This group is an optional group containing + objects providing information about the + miscellaneous system features." + GROUP vlanTrunkMappingGroup + DESCRIPTION "This group is mandatory for implementations of + trunk VLAN to VLAN association feature on the + device." + GROUP portJumboFrameGroup + DESCRIPTION "This group is mandatory for implementations of + port jumbo frame feature on the device." + GROUP portCpbGroup4 + DESCRIPTION "The portCpbGroup4 is an optional group containing + objects providing additional information about the + port capabilities on the device." + GROUP fileCopyGroup2 + DESCRIPTION "The fileCopyGroup2 is an optional group + containing objects providing additional + information about tftp/rcp or local file + upload/download features." + GROUP systemRmonGroup2 + DESCRIPTION "The systemRmonGroup2 is an optional group + containing objects providing information about + RMON max memory usage control." + GROUP filterGroup2 + DESCRIPTION "The filterGroup2 is an optional group containing + objects providing information about the + unicast/multicast port filtering feature." + GROUP optionalSystemMiscGroup5 + DESCRIPTION "The optionalSystemMiscGroup5 is an optional group + containing objects providing information about + miscellaneous system features." + GROUP syslogGroup2 + DESCRIPTION "The syslogGroup2 is an optional group containing + objects providing information about whether the + syslog messages should be sent to telnet + sessions." + GROUP systemStatusGroup + DESCRIPTION "The systemStatusGroup is an optional group + containing objects providing information about + system LED status." + GROUP configurationGroup + DESCRIPTION "The configurationGroup is an optional group + containing objects providing information about + the configuration mode to store the configuration + information." + GROUP filterGroup3 + DESCRIPTION "The filterGroup3 is an optional group containing + objects providing information about Broadcast + Suppression Violation for port filtering + feature." + GROUP portGroup3 + DESCRIPTION "The portGroup3 is an optional group containing + objects providing information about additional + information about the ports on the device." + GROUP portCpbGroup5 + DESCRIPTION "The portCpbGroup5 is an optional group containing + objects providing additional information about + the port capabilities on the device." + GROUP optionalSystemTrapGroup1 + DESCRIPTION "The OptionalSystemTrapGroup1 is an optional group + containing objects providing information about the + SNMP traps feature." + GROUP authenticationGroup2 + DESCRIPTION "The authenticationGroup2 is an optional group + containing objects providing information about the + authentication features." + + GROUP notificationGroup + DESCRIPTION "The notificationGroup is an optional group + containing notifications supported on the device." + + ::= { ciscoStackMIBCompliances 7 } + + +-- units of conformance + +systemMiscGroup OBJECT-GROUP + OBJECTS { + sysMgmtType, + sysIpAddr, -- deprecated + sysNetMask, -- deprecated + sysBroadcast, -- deprecated + sysAttachType, + sysReset, -- deprecated + sysBaudRate, + sysInsertMode, + sysClearMacTime, -- deprecated + sysClearPortTime, -- deprecated + sysEnableModem, + sysEnableRedirects, + sysArpAgingTime, + sysCommunityRwa, + sysCommunityRw, + sysCommunityRo, + sysIpVlan + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features." + ::= { ciscoStackMIBGroups 1 } +systemTrapGroup OBJECT-GROUP + OBJECTS { + sysTrapReceiverAddr, -- deprecated + sysTrapReceiverType, -- deprecated + sysTrapReceiverComm, -- deprecated + sysEnableChassisTraps, + sysEnableModuleTraps, + sysEnableBridgeTraps, + sysEnableRepeaterTraps + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the SNMP traps feature." + ::= { ciscoStackMIBGroups 2 } +chassisGroup OBJECT-GROUP + OBJECTS { + chassisSysType, + chassisBkplType, + chassisPs1Type, + chassisPs1Status, + chassisPs1TestResult, + chassisPs2Type, + chassisPs2Status, + chassisPs2TestResult, + chassisFanStatus, + chassisFanTestResult, + chassisMinorAlarm, + chassisMajorAlarm, + chassisTempAlarm, + chassisNumSlots + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the chassis of the device. + + Implementation of this group is mandatory." + ::= { ciscoStackMIBGroups 3 } + +moduleGroup OBJECT-GROUP + OBJECTS { + moduleIndex, + moduleType, + moduleStatus, + moduleTestResult, + moduleAction, + moduleName, + moduleNumPorts, + modulePortStatus, + moduleSubType, + moduleSerialNumberString + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the modules on the device. + + Implementation of this group is mandatory." + ::= { ciscoStackMIBGroups 4 } +portGroup OBJECT-GROUP + OBJECTS { + portModuleIndex, + portIndex, + portCrossIndex, + portName, + portType, + portOperStatus, + portCrossGroupIndex, + portAdditionalStatus, + portAdminSpeed, + portDuplex, + portIfIndex, + portSpantreeFastStart, -- deprecated + portAdminRxFlowControl, + portOperRxFlowControl, + portAdminTxFlowControl, + portOperTxFlowControl, + portMacControlTransmitFrames, + portMacControlReceiveFrames, + portMacControlPauseTransmitFrames, + portMacControlPauseReceiveFrames, + portMacControlUnknownProtocolFrames, + portLinkFaultStatus + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the ports on the device." + ::= { ciscoStackMIBGroups 5 } +optionalSystemMiscGroup OBJECT-GROUP + OBJECTS { + sysConfigChangeTime, + sysBannerMotd, + sysConfigChangeInfo, + sysConfigRegister, + sysBootVariable, + sysBootedImage + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 6 } +optionalSystemTrapGroup OBJECT-GROUP + OBJECTS { + sysEnableIpPermitTraps, + sysEnableVmpsTraps, + sysEnableConfigTraps, + sysEnableEntityTrap, + sysEnableStpxTrap + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the SNMP traps feature. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 7 } + +optionalChassisGroup OBJECT-GROUP + OBJECTS { + chassisPs1TestResult, + chassisPs2TestResult, + chassisFanTestResult, + chassisSlotConfig, + chassisModel, + chassisComponentIndex, -- deprecated + chassisComponentType, -- deprecated + chassisComponentSerialNumber, -- deprecated + chassisComponentHwVersion, -- deprecated + chassisComponentModel, -- deprecated + chassisSerialNumberString -- deprecated + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the chassis of the device." + ::= { ciscoStackMIBGroups 8 } +optionalModuleGroup OBJECT-GROUP + OBJECTS { + moduleTestResult, + moduleModel, + moduleHwVersion, + moduleFwVersion, + moduleSwVersion, + moduleStandbyStatus, + moduleIPAddress, + moduleIPAddressVlan, + moduleSubType2, + moduleSlotNum + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the modules on the device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 9 } +optionalPortGroup OBJECT-GROUP + OBJECTS { + portSecurityModuleIndex, + portSecurityPortIndex, + portSecurityAdminStatus, + portSecurityOperStatus, + portSecurityLastSrcAddr, + portSecuritySecureSrcAddr, + portChannelModuleIndex, -- deprecated + portChannelPortIndex, -- deprecated + portChannelPorts, -- deprecated + portChannelAdminStatus, -- deprecated + portChannelOperStatus, -- deprecated + portChannelNeighbourDeviceId, -- deprecated + portChannelNeighbourPortId, -- deprecated + portChannelProtInPackets, -- deprecated + portChannelProtOutPackets, -- deprecated + portChannelIfIndex, -- deprecated + portCpbModuleIndex, + portCpbPortIndex, + portCpbSpeed, + portCpbDuplex, + portCpbTrunkEncapsulationType, + portCpbTrunkMode, + portCpbChannel, + portCpbBroadcastSuppression, + portCpbFlowControl, + portCpbSecurity, + portCpbVlanMembership, + portCpbPortfast, + portTopNControlIndex, + portTopNRateBase, + portTopNType, + portTopNMode, + portTopNReportStatus, + portTopNDuration, + portTopNTimeRemaining, + portTopNStartTime, + portTopNRequestedSize, + portTopNGrantedSize, + portTopNOwner, + portTopNStatus, + portTopNIndex, + portTopNModuleNumber, + portTopNPortNumber, + portTopNUtilization, + portTopNIOOctets, + portTopNIOPkts, + portTopNIOBroadcast, + portTopNIOMulticast, + portTopNInErrors, + portTopNBufferOverFlow + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the ports on the device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 10 } +systemTrafficGroup OBJECT-GROUP + OBJECTS { + sysTrafficMeterType, + sysTraffic, + sysTrafficPeak, + sysTrafficPeakTime, + sysTrafficMeter, + sysTrafficMeterPeak, + sysTrafficMeterPeakTime + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the traffic meter feature. + + Implementation of this group is optional. If the + traffic meter feature is supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 11 } +systemFddiGroup OBJECT-GROUP + OBJECTS { + sysFddiRingSMTIndex, + sysFddiRingAddress, + sysFddiRingNext + + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the FDDI ring feature. + + Implementation of this group is optional. If the + FDDI ring feature is supported, the entire group + should be implemented." + ::= { ciscoStackMIBGroups 12 } +systemRmonGroup OBJECT-GROUP + OBJECTS { + sysEnableRmon, + sysExtendedRmonVlanModeEnable, + sysExtendedRmonNetflowPassword, + sysExtendedRmonNetflowEnable, + sysExtendedRmonVlanAgentEnable, + sysExtendedRmonEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the extended RMON feature. + + Implementation of this group is optional. If the + extended RMON feature is supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 13 } +authenticationGroup OBJECT-GROUP + OBJECTS { + sysConsolePrimaryLoginAuthentication, -- deprecated + sysConsolePrimaryEnableAuthentication, -- deprecated + sysTelnetPrimaryLoginAuthentication, -- deprecated + sysTelnetPrimaryEnableAuthentication, -- deprecated + tacacsLoginAuthentication, -- deprecated + tacacsEnableAuthentication, -- deprecated + tacacsLocalLoginAuthentication, -- deprecated + tacacsLocalEnableAuthentication, -- deprecated + tacacsNumLoginAttempts, -- deprecated + tacacsDirectedRequest, + tacacsTimeout, -- deprecated + tacacsAuthKey, + tacacsServerAddr, + tacacsServerType, + radiusLoginAuthentication, -- deprecated + radiusEnableAuthentication, -- deprecated + radiusDeadtime, + radiusAuthKey, + radiusTimeout, + radiusRetransmits, + radiusServerAddr, + radiusServerAuthPort, + radiusServerType + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the authentication features. + + Implementation of this group is optional. If the + authentication features are supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 14 } +tftpGroup OBJECT-GROUP + OBJECTS { + tftpHost, + tftpFile, + tftpModule, + tftpAction, + tftpResult + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the tftp upload/download features. + + Implementation of this group is optional. If the + tftp upload/download features are supported, the + entire group should be implemented." + ::= { ciscoStackMIBGroups 15 } +brouteEnableGroup OBJECT-GROUP + OBJECTS { + brouterPortModule, + brouterPort, + brouterEnableRip, + brouterEnableSpantree, + brouterEnableGiantCheck, + brouterEnableIpFragmentation, + brouterEnableUnreachables, + brouterCamMode, + brouterIpxSnapToEther, + brouterIpx8023RawToFddi, + brouterEthernetReceiveMax, + brouterEthernetTransmitMax, + brouterFddiReceiveMax, + brouterFddiTransmitMax, + brouterPortIpVlan, + brouterPortIpAddr, + brouterPortNetMask, + brouterPortBroadcast, + brouterPortBridgeVlan, + brouterPortIpHelpers, + brouterIpx8022ToEther, + brouterEnableTransitEncapsulation, + brouterEnableFddiCheck, + brouterEnableAPaRT + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the combined bridging/routing feature. + + Implementation of this group is optional. If the + combined bridging/routing feature is supported, + the group should be implemented." + ::= { ciscoStackMIBGroups 16 } +filterGroup OBJECT-GROUP + OBJECTS { + filterMacModule, + filterMacPort, + filterMacAddress, + filterMacType, + filterVendorModule, + filterVendorPort, + filterVendorId, + filterVendorType, + filterProtocolModule, + filterProtocolPort, + filterProtocolValue, + filterProtocolType, + filterTestModule, + filterTestPort, + filterTestIndex, + filterTestType, + filterTestOffset, + filterTestValue, + filterTestMask, + filterPortModule, + filterPort, + filterPortComplex, + filterPortBroadcastThrottle, + filterPortBroadcastThreshold, + filterPortBroadcastDiscards + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the port filtering feature. + + Implementation of this group is optional. If the + port filtering feature is supported, parts or all + of this group should be implemented." + ::= { ciscoStackMIBGroups 17 } +monitorGroup OBJECT-GROUP + OBJECTS { + monitorSourceModule, + monitorSourcePort, + monitorDestinationModule, + monitorDestinationPort, + monitorDirection, + monitorEnable, + monitorAdminSourcePorts, + monitorOperSourcePorts + } + STATUS deprecated + DESCRIPTION "The collection of deprecated objects for + managing the Switched Port Analyzer (SPAN) + features." + ::= { ciscoStackMIBGroups 18 } +vlanGroup OBJECT-GROUP + OBJECTS { + vlanIndex, -- deprecated + vlanSpantreeEnable, -- deprecated + vlanIfIndex, -- deprecated + vlanPortModule, + vlanPort, + vlanPortVlan, + vlanPortIslVlansAllowed, + vlanPortSwitchLevel, + vlanPortIslAdminStatus, + vlanPortIslOperStatus, + vlanPortIslPriorityVlans, + vlanPortAdminStatus, + vlanPortOperStatus + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the Virtual LAN features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 19 } +vmpsGroup OBJECT-GROUP + OBJECTS { + vmpsAddr, + vmpsType, + vmpsAction, + vmpsAccessed + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the Vlan Membership Policy Server feature. + + Implementation of this group is optional. If the + Vlan Membership Policy Server feature is + supported, the entire group should be + implemented." + ::= { ciscoStackMIBGroups 20 } +tokenRingGroup OBJECT-GROUP + OBJECTS { + tokenRingModuleIndex, + tokenRingPortIndex, + tokenRingPortSetACbits , + tokenRingPortMode , + tokenRingPortEarlyTokenRel, + tokenRingPortPriorityThresh, + tokenRingPortPriorityMinXmit, + tokenRingPortCfgLossThresh, + tokenRingPortCfgLossInterval, + tokenRingDripDistCrfMode, + tokenRingDripAreReductionMode, + tokenRingDripLocalNodeID, + tokenRingDripLastRevision, + tokenRingDripLastChangedRevision, + tokenRingDripAdvertsReceived, + tokenRingDripAdvertsTransmitted, + tokenRingDripAdvertsProcessed, + tokenRingDripInputQueueDrops, + tokenRingDripOutputQueueDrops, + tokenRingDripVlan, + tokenRingDripLocalPortStatus, + tokenRingDripRemotePortStatus, + tokenRingDripRemotePortConfigured, + tokenRingDripDistributedCrf, + tokenRingDripBackupCrf, + tokenRingDripOwnerNodeID + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the token ring features. + + Implementation of this group is optional. If the + token ring features are supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 21 } +mcastGroup OBJECT-GROUP + OBJECTS { + mcastRouterModuleIndex, + mcastRouterPortIndex, + mcastRouterAdminStatus, + mcastRouterOperStatus, + mcastEnableCgmp, + mcastEnableIgmp + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the multicast features. + + Implementation of this group is optional. If the + multicast features are supported, the entire group + should be implemented." + ::= { ciscoStackMIBGroups 22 } +dnsGroup OBJECT-GROUP + OBJECTS { + dnsEnable, + dnsServerAddr, + dnsServerType, + dnsDomainName + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the DNS feature. + + Implementation of this group is optional. If the + DNS feature is supported, the entire group + should be implemented." + ::= { ciscoStackMIBGroups 23 } +syslogGroup OBJECT-GROUP + OBJECTS { + syslogServerAddr, + syslogServerType, + syslogConsoleEnable, + syslogHostEnable, + syslogMessageFacility, + syslogMessageSeverity, + syslogTimeStampOption + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the system log feature. + + Implementation of this group is optional. If the + system log feature is supported, the entire group + should be implemented." + ::= { ciscoStackMIBGroups 24 } +ntpGroup OBJECT-GROUP + OBJECTS { + ntpBcastClient, + ntpBcastDelay, + ntpClient, + ntpServerAddress, + ntpServerType, + ntpSummertimeStatus, + ntpSummerTimezoneName, + ntpTimezoneName, + ntpTimezoneOffsetHour, + ntpTimezoneOffsetMinute + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the network time protocol feature. + + Implementation of this group is optional. If the + network time protocol feature is supported, the + entire group should be implemented." + ::= { ciscoStackMIBGroups 25 } +ipPermitGroup OBJECT-GROUP + OBJECTS { + ipPermitAddress, + ipPermitMask, + ipPermitEnable, -- deprecated + ipPermitType, + ipPermitDeniedAddress, + ipPermitDeniedAccess, + ipPermitDeniedTime + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the ip permit list feature. + + Implementation of this group is optional. If the + ip permit list feature is supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 26 } +mdgGatewayGroup OBJECT-GROUP + OBJECTS { + mdgGatewayAddr, + mdgGatewayType + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the multiple default gateway feature. + + Implementation of this group is optional. If the + multiple default gateway feature is supported, + the entire group should be implemented." + ::= { ciscoStackMIBGroups 27 } +traceRouteGroup OBJECT-GROUP + OBJECTS { + traceRouteMaxQueries, + traceRouteQueryIndex, + traceRouteHost, + traceRouteQueryDNSEnable, + traceRouteQueryWaitingTime, + traceRouteQueryInitTTL, + traceRouteQueryMaxTTL, + traceRouteQueryUDPPort, + traceRouteQueryPacketCount, + traceRouteQueryPacketSize, + traceRouteQueryTOS, + traceRouteQueryResult, + traceRouteQueryTime, + traceRouteQueryOwner, + traceRouteQueryStatus, + traceRouteDataIndex, + traceRouteDataGatewayName, + traceRouteDataGatewayIp, + traceRouteDataRtt, + traceRouteDataHopCount, + traceRouteDataErrors + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the trace route feature. + + Implementation of this group is optional. If the + trace route feature is supported, the entire group + should be implemented." + ::= { ciscoStackMIBGroups 28 } +deprecatedObjectGroup OBJECT-GROUP + OBJECTS { + sysCommunityAccess, + sysCommunityString, + moduleHwHiVersion, + moduleHwLoVersion, + moduleFwHiVersion, + moduleFwLoVersion, + moduleSwHiVersion, + moduleSwLoVersion, + brouterCamAgingTime, + chassisSerialNumber, + moduleSerialNumber + } + STATUS deprecated + DESCRIPTION "A collection of objects that have been + deprecated." + ::= { ciscoStackMIBGroups 29 } + +ntpAuthenticationGroup OBJECT-GROUP + OBJECTS { + ntpServerPublicKey, + ntpAuthenticationEnable, + ntpAuthenticationPublicKey, + ntpAuthenticationSecretKey, + ntpAuthenticationTrustedMode, + ntpAuthenticationType + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the network time protocol authentication + feature. + + Implementation of this group is optional. If the + network time protocol authentication feature is + supported, the entire group should be + implemented." + ::= { ciscoStackMIBGroups 30 } + +tokenRingSoftErrorMonitorGroup OBJECT-GROUP + OBJECTS { + tokenRingPortSoftErrThresh, + tokenRingPortSoftErrReportInterval, + tokenRingPortSoftErrResetCounters, + tokenRingPortSoftErrLastCounterReset, + tokenRingPortSoftErrEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the token ring port soft error monitoring + feature. + + Implementation of this group is optional. If the + token ring features are supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 31 } + +portCpbGroup1 OBJECT-GROUP + OBJECTS { + portCpbUdld + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about the port capabilities on the + device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 32 } + +portSecurityGroup1 OBJECT-GROUP + OBJECTS { + portSecurityMaxSrcAddr, + portSecurityAgingTime, + portSecurityShutdownTimeOut, + portSecurityViolationPolicy, + portSecurityExtModuleIndex, + portSecurityExtPortIndex, + portSecurityExtSecureSrcAddr, + portSecurityExtControlStatus + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information for supporting port security feature + with the multiple secured source MAC addresses. + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 33} + +fileCopyGroup OBJECT-GROUP + OBJECTS { + fileCopyProtocol, + fileCopyRemoteServer, + fileCopySrcFileName, + fileCopyDstFileName, + fileCopyModuleNumber, + fileCopyUserName, + fileCopyAction, + fileCopyResult, + fileCopyResultRcpErrorMessage + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the tftp/rcp or local file upload/download + features. + + Implementation of this group is optional. If the + tftp upload/download features are supported, the + entire group should be implemented." + ::= { ciscoStackMIBGroups 34 } + +optionalSystemMiscGroup1 OBJECT-GROUP + OBJECTS { + sysStartupConfigSource, + sysStartupConfigSourceFile, + sysConfigSupervisorModuleNo, + sysStandbyPortEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 35 } + +ipPermitGroup1 OBJECT-GROUP + OBJECTS { + ipPermitAccessType + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information for allowing the ip permit host with + the specified access type. + + Implementation of this group is optional. If the + ip permit list enhancement feature is supported, + this group should be implemented." + ::= { ciscoStackMIBGroups 36 } + +optionalSystemMiscGroup2 OBJECT-GROUP + OBJECTS { + sysPortFastBpduGuard, -- deprecated + sysErrDisableTimeoutEnable, + sysErrDisableTimeoutInterval, + sysTrafficMonitorHighWaterMark, + sysHighAvailabilityEnable, + sysHighAvailabilityVersioningEnable, + sysHighAvailabilityOperStatus, + sysHighAvailabilityNotRunningReason + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 37 } + +filterGroup1 OBJECT-GROUP + OBJECTS { + filterPortBroadcastThresholdFraction + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the port filtering feature. + + Implementation of this group is optional. If the + port filtering feature is supported, parts or all + of this group should be implemented." + ::= { ciscoStackMIBGroups 38 } + + +mcastGroup1 OBJECT-GROUP + OBJECTS { + mcastEnableRgmp + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the multicast features. + + Implementation of this group is optional. If the + multicast features are supported, the entire group + should be implemented." + ::= { ciscoStackMIBGroups 39 } + +portGroup1 OBJECT-GROUP + OBJECTS { + portAdditionalOperStatus, + portEntPhysicalIndex + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the ports on the device. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 40 } + +chassisGroup1 OBJECT-GROUP + OBJECTS { + chassisPs3Type, + chassisPs3Status, + chassisPs3TestResult, + chassisPEMInstalled + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the chassis of the device. + + This group must be implemented by systems that can + have 3 or more power supplies." + ::= { ciscoStackMIBGroups 41 } + +moduleGroup1 OBJECT-GROUP + OBJECTS { + moduleEntPhysicalIndex + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the modules on the device. + + Implementation of this group is mandatory." + ::= { ciscoStackMIBGroups 42 } + +portCpbGroup2 OBJECT-GROUP + OBJECTS { + portCpbSpan + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about the port capabilities on the + device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 43 } + +voiceGroup OBJECT-GROUP + OBJECTS { + voicePortIfDHCPEnabled, + voicePortIfIpAddress, + voicePortIfIpNetMask, + voicePortIfTftpServerAddress, + voicePortIfGatewayAddress, + voicePortIfDnsServerAddress, + voicePortIfDnsDomain, + voicePortIfOperDnsDomain, + voicePortCallManagerIpAddr, + voicePortOperDnsServerIpAddr, + voicePortOperDnsServerSource + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the voice ports on the device. + + Implemetation of this group is Optional" + ::= { ciscoStackMIBGroups 44 } + +portGroup2 OBJECT-GROUP + OBJECTS { + portInlinePowerDetect + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the ports on the device. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 45 } + +vlanGroup1 OBJECT-GROUP + OBJECTS { + vlanPortAuxiliaryVlan + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the Virtual LAN features. + + Implementation of this group is optional. If the + Virtual LAN features are supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 46 } + +portCpbGroup3 OBJECT-GROUP + OBJECTS { + portCpbInlinePower, + portCpbAuxiliaryVlan + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about the port capabilities on the + device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 47 } + +moduleGroup2 OBJECT-GROUP + OBJECTS { + moduleAdditionalStatus + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the modules on the device. + + Implementation of this group is mandatory." + ::= { ciscoStackMIBGroups 48 } + +switchAccelerationModuleGroup OBJECT-GROUP + OBJECTS { + switchAccelerationModuleIndex, + switchAccelerationModuleEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the modules switch acceleration + configuration. + + Implementation of this group is mandatory if the + module switch acceleration feature is supported." + ::= { ciscoStackMIBGroups 49 } + +optionalSystemMiscGroup3 OBJECT-GROUP + OBJECTS { + sysExtendedRmonNetflowModuleMask + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features. + The sysExtendedRmonNetflowModuleMask object is + optional object and it will only be supported in + the platform supporting multiple NAM (Network + Analysis Module) cards. + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 50 } + +optionalSystemMiscGroup4 OBJECT-GROUP + OBJECTS { + sshPublicKeySize + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features." + ::= { ciscoStackMIBGroups 51 } + +vlanTrunkMappingGroup OBJECT-GROUP + OBJECTS { + vlanTrunkMappingMax, + vlanTrunkMappingToVlan, + vlanTrunkMappingType, + vlanTrunkMappingOper, + vlanTrunkMappingStatus + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the trunk VLAN to VLAN associations. + + Implementation of this group is mandatory if the + trunk VLAN to VLAN association feature is + supported on the device." + ::= { ciscoStackMIBGroups 52 } + +portJumboFrameGroup OBJECT-GROUP + OBJECTS { + portJumboFrameModuleIndex, + portJumboFramePortIndex, + portJumboFrameEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the port jumbo frame feature on the device. + + Implementation of this group is mandatory if the + port jumbo frame feature is supported on the + device." + ::= { ciscoStackMIBGroups 53 } + +portCpbGroup4 OBJECT-GROUP + OBJECTS { + portCpbCosRewrite, + portCpbTosRewrite, + portCpbCopsGrouping + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about the port capabilities on the + device. + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 54 } + +fileCopyGroup2 OBJECT-GROUP + OBJECTS { fileCopyRuntimeConfigPart } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about tftp/rcp or local file + upload/download features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 55 } + +systemRmonGroup2 OBJECT-GROUP + OBJECTS { sysMaxRmonMemory } + STATUS current + DESCRIPTION "A collection of object providing RMON max memory + usage control." + ::= { ciscoStackMIBGroups 56 } + +filterGroup2 OBJECT-GROUP + OBJECTS { + filterPortSuppressionOption + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the unicast/multicast port filtering + feature." + ::= { ciscoStackMIBGroups 57 } + +optionalSystemMiscGroup5 OBJECT-GROUP + OBJECTS { sysMacReductionAdminEnable, + sysMacReductionOperEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features." + ::= { ciscoStackMIBGroups 58 } + +syslogGroup2 OBJECT-GROUP + OBJECTS { + syslogTelnetEnable + } + STATUS current + DESCRIPTION "A collection of object providing control about + whether the syslog messages should be sent to + telnet sessions. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 59 } + +systemStatusGroup OBJECT-GROUP + OBJECTS { sysStatus } + STATUS current + DESCRIPTION "A collection of object providing the system + LED status. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 60 } + +configurationGroup OBJECT-GROUP + OBJECTS { configMode, + configTextFileLocation, + configWriteMem, + configWriteMemStatus + } + STATUS current + DESCRIPTION "A collection of object providing the information + about the configuration mode to store the + configuration information. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 61 } + +filterGroup3 OBJECT-GROUP + OBJECTS { + filterPortSuppressionViolation + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about about the Broadcast + Suppression Violation for port filtering feature. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 62 } + +portGroup3 OBJECT-GROUP + OBJECTS { + portErrDisableTimeOutEnable + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about the ports on the device. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 63 } + +portCpbGroup5 OBJECT-GROUP + OBJECTS { + portCpbDot1x, + portCpbIgmpFilter + } + STATUS current + DESCRIPTION "A collection of objects providing additional + information about the port capabilities on the + device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 64 } + +authenticationGroup1 OBJECT-GROUP + OBJECTS { + tacacsDirectedRequest, + tacacsAuthKey, + tacacsServerAddr, + tacacsServerType, + radiusDeadtime, + radiusAuthKey, + radiusTimeout, + radiusRetransmits, + radiusServerAddr, + radiusServerAuthPort, + radiusServerType + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the authentication features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 65 } + +systemMiscGroup1 OBJECT-GROUP + OBJECTS { + sysMgmtType, + sysAttachType, + sysBaudRate, + sysInsertMode, + sysEnableModem, + sysEnableRedirects, + sysArpAgingTime, + sysCommunityRwa, + sysCommunityRw, + sysCommunityRo, + sysIpVlan + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features." + ::= { ciscoStackMIBGroups 66 } + +systemTrapGroup1 OBJECT-GROUP + OBJECTS { + sysEnableChassisTraps, + sysEnableModuleTraps, + sysEnableBridgeTraps, + sysEnableRepeaterTraps + } + STATUS deprecated + DESCRIPTION "A collection of objects providing information + about the SNMP traps feature." + ::= { ciscoStackMIBGroups 67 } + +optionalSystemMiscGroup6 OBJECT-GROUP + OBJECTS { + sysErrDisableTimeoutEnable, + sysErrDisableTimeoutInterval, + sysTrafficMonitorHighWaterMark, + sysHighAvailabilityEnable, + sysHighAvailabilityVersioningEnable, + sysHighAvailabilityOperStatus, + sysHighAvailabilityNotRunningReason + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the miscellaneous system features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 68 } + +optionalChassisGroup1 OBJECT-GROUP + OBJECTS { + chassisPs1TestResult, + chassisPs2TestResult, + chassisFanTestResult, + chassisSlotConfig, + chassisModel + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the chassis of the device." + ::= { ciscoStackMIBGroups 69 } + +portGroup4 OBJECT-GROUP + OBJECTS { + portModuleIndex, + portIndex, + portCrossIndex, + portName, + portType, + portOperStatus, + portCrossGroupIndex, + portAdditionalStatus, + portAdminSpeed, + portDuplex, + portIfIndex, + portAdminRxFlowControl, + portOperRxFlowControl, + portAdminTxFlowControl, + portOperTxFlowControl, + portMacControlTransmitFrames, + portMacControlReceiveFrames, + portMacControlPauseTransmitFrames, + portMacControlPauseReceiveFrames, + portMacControlUnknownProtocolFrames, + portLinkFaultStatus + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the ports on the device." + ::= { ciscoStackMIBGroups 70 } + +vlanGroup2 OBJECT-GROUP + OBJECTS { + vlanPortModule, + vlanPort, + vlanPortVlan, + vlanPortIslVlansAllowed, + vlanPortSwitchLevel, + vlanPortIslAdminStatus, + vlanPortIslOperStatus, + vlanPortIslPriorityVlans, + vlanPortAdminStatus, + vlanPortOperStatus + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the Virtual LAN features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 71 } + +ipPermitGroup2 OBJECT-GROUP + OBJECTS { + ipPermitAddress, + ipPermitMask, + ipPermitType, + ipPermitDeniedAddress, + ipPermitDeniedAccess, + ipPermitDeniedTime, + ipPermitAccessTypeEnable + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the ip permit list feature. + + Implementation of this group is optional. If the + ip permit list feature is supported, the entire + group should be implemented." + ::= { ciscoStackMIBGroups 72 } + +optionalPortGroup1 OBJECT-GROUP + OBJECTS { + portSecurityModuleIndex, + portSecurityPortIndex, + portSecurityAdminStatus, + portSecurityOperStatus, + portSecurityLastSrcAddr, + portSecuritySecureSrcAddr, + portCpbModuleIndex, + portCpbPortIndex, + portCpbSpeed, + portCpbDuplex, + portCpbTrunkEncapsulationType, + portCpbTrunkMode, + portCpbChannel, + portCpbBroadcastSuppression, + portCpbFlowControl, + portCpbSecurity, + portCpbVlanMembership, + portCpbPortfast, + portTopNControlIndex, + portTopNRateBase, + portTopNType, + portTopNMode, + portTopNReportStatus, + portTopNDuration, + portTopNTimeRemaining, + portTopNStartTime, + portTopNRequestedSize, + portTopNGrantedSize, + portTopNOwner, + portTopNStatus, + portTopNIndex, + portTopNModuleNumber, + portTopNPortNumber, + portTopNUtilization, + portTopNIOOctets, + portTopNIOPkts, + portTopNIOBroadcast, + portTopNIOMulticast, + portTopNInErrors, + portTopNBufferOverFlow + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the ports on the device. + + Implementation of this group is Optional." + ::= { ciscoStackMIBGroups 73 } + +optionalSystemTrapGroup1 OBJECT-GROUP + OBJECTS { + sysEnableIpPermitTraps, + sysEnableVmpsTraps, + sysEnableConfigTraps, + sysEnableEntityTrap + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the SNMP traps feature. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 74 } + +authenticationGroup2 OBJECT-GROUP + OBJECTS { + tacacsDirectedRequest, + tacacsAuthKey, + tacacsServerAddr, + tacacsServerType, + radiusDeadtime, + radiusAuthKey, + radiusTimeout, + radiusRetransmits + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the authentication features. + + Implementation of this group is optional." + ::= { ciscoStackMIBGroups 75 } + +systemTrapGroup2 OBJECT-GROUP + OBJECTS { + sysEnableChassisTraps, + sysEnableModuleTraps, + sysEnableRepeaterTraps + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the SNMP traps feature." + ::= { ciscoStackMIBGroups 76 } + +notificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { + lerAlarmOn, + lerAlarmOff, + moduleUp, + moduleDown, + chassisAlarmOn, + chassisAlarmOff, + ipPermitDeniedTrap, + sysConfigChangeTrap, + tokenRingSoftErrExceededTrap + } + STATUS current + DESCRIPTION + "A collection of notifications supported on the device." + ::= { ciscoStackMIBGroups 77 } +END diff --git a/pandora_console/attachment/mibs/CISCO-TC b/pandora_console/attachment/mibs/CISCO-TC new file mode 100644 index 0000000000..d9cc918849 --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-TC @@ -0,0 +1,770 @@ +-- ***************************************************************** +-- CISCO-TC.my: Cisco MIB Textual Conventions +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-2002 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- + +CISCO-TC DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, + Gauge32, + Integer32, + Counter64 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION + FROM SNMPv2-TC + ciscoModules + FROM CISCO-SMI; + + +ciscoTextualConventions MODULE-IDENTITY + LAST-UPDATED "200212180000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + " Cisco Systems + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-snmp@cisco.com" + DESCRIPTION + "This module defines textual conventions used throughout + cisco enterprise mibs." + REVISION "200212180000Z" + DESCRIPTION + "Changed MilliSeconds TC to CiscoMilliSeconds as it was + overlapping with the one in a standard MIB." + REVISION "200212121600Z" + DESCRIPTION + "Added the 'http' enumeration to CiscoNetworkProtocol." + REVISION "200212020000Z" + DESCRIPTION + "Added Unsigned64 textual convention." + REVISION "200209220000Z" + DESCRIPTION + "Added ListIndex, ListIndexOrZero, TimeIntervalSec, + TimeintervalMin, MicroSeconds and MicroSeconds TC from Andiamo's + TC MIB ." + REVISION "200209170000Z" + DESCRIPTION + "Added ConfigIterator & BulkConfigResult textual + convention for bulk provisioning. + Added CountryCodeITU textual convention for ITU-T defined + country codes for non-standard facilities." + REVISION "200204160000Z" + DESCRIPTION + "Added PerfHighIntervalCount TEXTUAL-CONVENTION." + REVISION "200107070000Z" + DESCRIPTION + "Added enumerations to CiscoNetworkProtocol" + REVISION "200101180000Z" + DESCRIPTION + "Added CiscoAlarmSeverity textual convention. + Changed SAPType display hint to d. Changed + INTEGER to Integer32 in CiscoPort and + CiscoIpProtocol TCs. Changed SnmpAdminString + to OCTET STRING in CiscoLocationSpecifier. + Removed IMPORTs for ciscoProducts and + SnmpAdminString." + REVISION "200011210000Z" + DESCRIPTION + "Added CiscoLocationClass, CiscoLocationSpecifier + CiscoInetAddressMask, CiscoAbsZeroBasedCounter32, + CiscoSnapShotAbsCounter32 textual conventions." + REVISION "9810280000Z" + DESCRIPTION + "Added CiscoRowOperStatus, EntPhysicalIndexOrZero, + Port and IpProtocol textual conventions." + REVISION "9703130000Z" + DESCRIPTION + "Added SAPType, CountryCode textual convention." + REVISION "9608140000Z" + DESCRIPTION + "Added InterfaceIndexOrZero textual convention." + REVISION "9607080000Z" + DESCRIPTION + "Added new CiscoNetworkProtocol enumerations." + REVISION "9602220000Z" + DESCRIPTION + "Added Unsigned32 textual conventions." + REVISION "9506070000Z" + DESCRIPTION + "Miscellaneous updates/corrections, including making + CiscoNetworkProtocol enumerations contiguous." + ::= { ciscoModules 1 } + + +CiscoNetworkProtocol ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the different types of network layer protocols." + -- internal note: enumerations must match those in address.h + SYNTAX INTEGER { + ip (1), + decnet (2), + pup (3), + chaos (4), + xns (5), + x121 (6), + appletalk (7), + clns (8), + lat (9), + vines (10), + cons (11), + apollo (12), + stun (13), + novell (14), + qllc (15), + snapshot (16), + atmIlmi (17), + bstun (18), + x25pvc (19), + ipv6 (20), -- IP version 6 + cdm (21), -- Cable Data Modem + nbf (22), -- NetBIOS + bpxIgx (23), -- BGP/IGX + clnsPfx(24), -- ISO 8473 CLNS NSAP + http(25), + unknown (65535) + } + +CiscoNetworkAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1x:" + STATUS current + DESCRIPTION + "Represents a network layer address. The length and format of + the address is protocol dependent as follows: + ip 4 octets + decnet 2 octets + pup obsolete + chaos 2 octets + xns 10 octets + first 4 octets are the net number + last 6 octets are the host number + x121 + appletalk 3 octets + first 2 octets are the net number + last octet is the host number + clns + lat + vines 6 octets + first 4 octets are the net number + last 2 octets are the host number + cons + apollo 10 octets + first 4 octets are the net number + last 6 octets are the host number + stun 8 octets + novell 10 octets + first 4 octets are the net number + last 6 octets are the host number + qllc 6 octets + bstun 1 octet - bi-sync serial tunnel + snapshot 1 octet + atmIlmi 4 octets + x25 pvc 2 octets (12 bits) + ipv6 16 octets + cdm + nbf + bgpIgx + clnsPfx upto 20 octets + http upto 70 octets + first 4 octets are the IPv4 host + address + next 2 octets are the TCP port + number + remaining(1 upto 64) octets are + the URI + " + SYNTAX OCTET STRING + +SMI Unsigned32 +--Unsigned32 ::= TEXTUAL-CONVENTION +-- STATUS current +-- DESCRIPTION +-- "An unsigned 32-bit quantity indistinguishable from Gauge32." +-- SYNTAX Gauge32 + +Unsigned64 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An unsigned 64 bit integer. We use SYNTAX Counter64 for the + encoding rules." + SYNTAX Counter64 + +InterfaceIndexOrZero ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "Either the value 0, or the ifIndex value of an + interface in the ifTable." + SYNTAX Integer32 (0..2147483647) + +SAPType ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "Service Access Point - is a term that denotes the means + by which a user entity in layer n+1 accesses a service + of a provider entity in layer n." + SYNTAX Integer32 (0..254) + +CountryCode ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2a" + STATUS current + DESCRIPTION + "Represents a case-insensitive 2-letter country code taken + from ISO-3166. Unrecognized countries are represented as + empty string." + SYNTAX OCTET STRING (SIZE (0 | 2)) + +CountryCodeITU ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This textual convention represents a country or area code for + non-standard facilities in telematic services." + REFERENCE + "ITU-T T.35 - Section 3.1 Country Code" + SYNTAX Unsigned32 (0..255) + +EntPhysicalIndexOrZero ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention is an extension of entPhysicalIndex. + If non-zero, the object is an entPhysicalIndex. If zero, no + appropriate entPhysicalIndex exists. Any additional semantics + are object specific." + SYNTAX Integer32 (0..2147483647) + +CiscoRowOperStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the operational status of an table entry. + This textual convention allows explicitly representing + the states of rows dependent on rows in other tables. + + active(1) - + Indicates this entry's RowStatus is active + and the RowStatus for each dependency is active. + + activeDependencies(2) - + Indicates that the RowStatus for each dependency + is active, but the entry's RowStatus is not active. + + inactiveDependency(3) - + Indicates that the RowStatus for at least one + dependency is not active. + + missingDependency(4) - + Indicates that at least one dependency does + not exist in it's table. + " + SYNTAX INTEGER { + active(1), + activeDependencies(2), + inactiveDependency(3), + missingDependency(4) + } + +CiscoPort ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The TCP or UDP port number range." + REFERENCE + "Transmission Control Protocol. J. Postel. RFC793, + User Datagram Protocol. J. Postel. RFC768" + SYNTAX Integer32 ( 0..65535 ) + +CiscoIpProtocol ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "IP protocol number range." + REFERENCE + "Internet Protocol. J. Postel. RFC791" + SYNTAX Integer32 ( 0..255 ) + + + +CiscoLocationClass ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An enumerated value which provides an indication of + the general location type of a particular physical and/or + logical interface. + chassis - a system framework for mounting one or more + shelves/slots/cards. + shelf - a cabinet that holds one or more slots. + slot - card or subSlot holder. + subSlot - daughter-card holder. + port - a physical port (e.g., a DS1 or DS3 physical port). + subPort - a logical port on a physical port (e.g., a DS1 + subPort on a DS3 physical port). + channel - a logical interface (e.g., a DS0 channel, signalling + channel, ATM port, other virtual interfaces). + subChannel - a sub-channel on a logical interface. + " + SYNTAX INTEGER { + chassis(1), + shelf(2), + slot(3), + subSlot(4), + port(5), + subPort(6), + channel(7), + subChannel(8) + } + +CiscoLocationSpecifier ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Use this TC to define objects that indicate the + physical entity and/or logical interface location + of a managed entity on a managed device. In SNMP, a + standard mechanism for indicating the physical location + of entities is via the ENTITY-MIB. However, that approach + is not satisfactory in some cases because: + + 1. The entity requiring a location-based naming may be + associated with an entity which can not be represented + as a physical entity in the ENTITY-MIB, + 2. NMS applications may desire a more direct + name/representation of a physical entity than is + available via the ENTITY-MIB, e.g., a physical entity + which is named via a hierarchy of levels in the ENTITY-MIB. + + The value of an object defined using this TC is an ASCII + string consisting of zero or more elements separated by + commas. Each element is of the form = . + + An example of this syntax is 'slot=5,port=3'. + + The syntax of the string is formally specified using + ABNF notation (with one exception, noted below), as + follows: + + location-specifier = elem *(',' elem) + ; subject to + ; size restriction specified in the SYNTAX + ; clause below + + elem = loctype '=' number + + number = %x00-FFFFFFFF / %d0-4294967295 + + loctype = 1*32VCHAR + + It is recommended that loctype use one of the enumerated + labels defined for CiscoLocationClass. + + (NOTE: To conform to ABNF notation as defined in RFC2234, + substitute the single-quote symbol with a double-quote + symbol in the above rules.) + + A zero length of CiscoLocationSpecifier is object-specific + and must be defined as part of the description of any object + which uses this syntax. + " + REFERENCE + "RFC2234, Augmented BNF for syntax specifications: ABNF" + + SYNTAX OCTET STRING (SIZE (0..255)) + +CiscoInetAddressMask ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Denotes a generic Internet subnet address mask. + The Internet subnet address mask is represented as the + number of contiguous 1-bit from MSB (most significant bit) + of the Internet subnet address mask. + A CiscoInetAddressMask value is always interpreted within + the context of an InetAddressType value. The + InetAddressType only object or InetAddressType with + InetAddress objects which define the context must be + registered immediately before the object which uses the + CiscoInetAddressMask textual convention. In other words, + the object identifiers for the InetAddressType object and + the CiscoInetAddressMask object MUST have the same length + and the last sub-identifier of the InetAddressType object + MUST be 1 less than the last sub-identifier of the + CiscoInetAddressMask object and MUST be 2 less than the + last sub-identifier of the CiscoInetAddressMask object if + an InetAddress object is defined between InetAddressType + and CiscoInetAddressMask objects. + The maximum value of the CiscoInetAddressMask TC is 32 for + the value 'ipv4(1)' in InetAddressType object and 128 for + the value 'ipv6(2)' in InetAddressType object. + The value zero is object-specific and must therefore be + defined as part of the description of any object which + uses this syntax. Examples of the usage of zero might + include situations where Internet subnet mask was unknown, + or when none subnet masks need to be referenced." + + REFERENCE + "RFC2851, Textual Conventions for Internet Network Addresses." + + SYNTAX Unsigned32 (0..128) + +CiscoAbsZeroBasedCounter32 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This TC describes an object which counts events with the + following semantics: objects of this type will be set to + zero(0) on creation and will thereafter count appropriate + events, it locks at the maximum value of 4,294,967,295 if + the counter overflows. + This TC may be used only in situations where wrapping is + not possible or extremely unlikely situation." + SYNTAX Gauge32 + +CiscoSnapShotAbsCounter32 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This TC describes an object which stores a snap-shot value + with the following semantics: objects of this type will + take a snap-shot value from their associated + CiscoAbsZeroBasedCounter32 type objects on creation." + SYNTAX Unsigned32 + +CiscoAlarmSeverity ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents the perceived alarm severity associated + with a service or safety affecting condition and/or + event. These are based on ITU severities, except + that info(7) is added. + + cleared(1) - + Indicates a previous alarm condition has been + cleared. It is not required (unless specifically + stated elsewhere on a case by case basis) that an + alarm condition that has been cleared will produce + a notification or other event containing an + alarm severity with this value. + + indeterminate(2) - + Indicates that the severity level cannot be + determined. + + critical(3) - + Indicates that a service or safety affecting + condition has occurred and an immediate + corrective action is required. + + major(4) - + Indicates that a service affecting condition has + occurred and an urgent corrective action is + required. + + minor(5) - + Indicates the existence of a non-service affecting + condition and that corrective action should be + taken in order to prevent a more serious (for + example, service or safety affecting) condition. + + warning(6) - + Indicates the detection of a potential or impending + service or safety affecting condition, before any + significant effects have been felt. + + info(7) - + Indicates an alarm condition that does not + meet any other severity definition. This can + include important, but non-urgent, notices or + informational events. + " + REFERENCE + "ITU-X.733" + SYNTAX INTEGER { + cleared(1), + indeterminate(2), + critical(3), + major(4), + minor(5), + warning(6), + info(7) + } + + +PerfHighIntervalCount ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A 64 bit counter associated with a + performance measurement in a previous + 15 minute measurement interval. In the + case where the agent has no valid data + available for a particular interval the + corresponding object instance is not + available and upon a retrieval request + a corresponding error message shall be + returned to indicate that this instance + does not exist (for example, a noSuchName + error for SNMPv1 and a noSuchInstance for + SNMPv2 GET operation). + In a system supporting + a history of n intervals with + IntervalCount(1) and IntervalCount(n) the + most and least recent intervals + respectively, the following applies at + the end of a 15 minute interval: + - discard the value of IntervalCount(n) + - the value of IntervalCount(i) becomes that + of IntervalCount(i-1) for n >= i > 1 + - the value of IntervalCount(1) becomes that + of CurrentCount + - the TotalCount, if supported, is adjusted. + + This definition is based on CounterBasedGauge64 TEXTUAL + CONVENTION defined in RFC2856. The PerfHighIntervalCount + type represents a non-negative + integer, which may increase or decrease, but shall never + exceed a maximum value, nor fall below a minimum value. The + maximum value can not be greater than 2^64-1 + (18446744073709551615 decimal), and the minimum value can + not be smaller than 0. The value of a PerfHighIntervalCount, + has its maximum value whenever the information being modeled + is greater than or equal to its maximum value, and has its + minimum value whenever the information being modeled is + smaller than or equal to its minimum value. If the + information being modeled subsequently decreases below + (increases above) the maximum (minimum) value, the + PerfHighIntervalCount also decreases (increases). + + Note that this TC is not strictly supported in SMIv2, + because the 'always increasing' and 'counter wrap' semantics + associated with the Counter64 base type are not preserved. + It is possible that management applications which rely + solely upon the (Counter64) ASN.1 tag to determine object + semantics will mistakenly operate upon objects of this type + as they would for Counter64 objects. + + This textual convention represents a limited and short-term + solution, and may be deprecated as a long term solution is + defined and deployed to replace it." + REFERENCE + "RFC 2856(HCNUM-TC MIB). + RFC 2493(PerfHist-TC-MIB)." + SYNTAX Counter64 + +ConfigIterator ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This object type is a control object type which applies to + writable objects in the same SNMP PDU related to the + same table containing those objects. It controls an + operation which repeatedly applies the specified + configuration data to more than one rows in a table. + The operation starts from the row specified by the index + of the instance and repeats for the number of rows as + the value of the object. + + ConfigIterator object needs to be accompanied by one set of + writable objects which are of the same instance to apply to. + + For example, a SNMP PDU contains + { objectA.10 = 1, + objectB.10 = 'E1', + objectC.10 = 44, + objectRepetition.10 = 100 } + + The SYNTAX of objectRepetition is ConfigIterator. + This will apply value 1 to objectA, value 'E1' to objectB, + value 44 to objectC in the table starting from row 10 + repeatedly for 100 rows. + + The iteration is based on the number of rows, not based on + the value of the index. For sparse tables, the index 10, + 20, 30, 110, and 120 counts for 5 rows, the operation will + go beyond index 100 in the previous SNMP PDU example. + + The iteration will stop prematurely when it comes to the + following situations: + (1) When the number of the rows in the table is less than + the designated row indicated by the ConfigIterator + object. + (2) When it encounters the first error in any row, the + operation won't continue to next row. + + The operation of ConfigIterator object applies only to + the writable objects having the same index as the + ConfigIterator object in one SNMP PDU. + + For example, a SNMP PDU contains + { objectD.5 = 38, + objectE.6 = 'T1', + objectF.5 = 'false', + objectIterator.5 = 10 } + + The SYNTAX of objectIterator is ConfigIterator. + This will apply value 38 to objectD, value 'false' to + objectF in the table starting from row 5 repeatedly + for 10 rows. Since the object objectE.6 has different + index (6) from the index of objectIterator, the + repetition won't be applied to it. However the value + of objectE in the row 6 will be set to 'T1' according + to regular SNMP SET orperation. + + If there is row overlapping of the iteration in a SNMP PDU, + it will be operated as they are in two different SNMP PDUs. + + For example, a SNMP PDU contains + { objectD.5 = 38, + objectD.6 = 40, + objectE.6 = 'T1', + objectF.5 = 'false', + objectIterator.5 = 10 + objectIterator.6 = 10 } + + This will apply value 38 to objectD, value 'false' to + objectF starting from row 5 repeatedly for 10 rows, and + apply value 40 to objectD, value 'T1' to objectE starting + from row 6 repeatedly for 10 rows. The final value of + objectD.6 can be 38 or 40, it depends on the SNMP stack of + the system starts SNMP SET for the row 5 before the row 6 + or the other way around. + + The object defined as ConfigIterator will be set to value 1 + after the iteration operation is kick-off regardless the + system has completed the operation to the designated rows + or not. Therefore retrieving the value of this object + is meaningless. It acts as the one time operation for + bulk configuration. + + The object defined as ConfigIterator has no meaning by itself, + it has to be combined with one or more than one writable + objects from the same table and within the same SNMP PDU + for the repetition operation. + + For example, a SNMP PDU contains + { objectG.2 = 49, + objectH.2 = 'AE'h + objectIterator.4 = 20 } + + The SYNTAX of objectIterator is ConfigIterator. Since + there are no objects having the same index as the index + of objectIterator in the PDU, the result of this SNMP + operation will set value 49 to objectG and value 0xAE + to objectH of the row 2 only as regular SNMP SET operation. + + The index of the instance indicates the starting row for the + iteration. + The order of the iteration depends, for instance, on: + (1) physical hardware position, or + (2) logical index. + + It depends on the characters of the table which contains + the ConfigIterator object. + + Iteration can be done through some or all the components + of the index for a table. The description of the iterator + object in that table should describe which part of the + index the iteration is applied to. + + The operation for this object type is based on the best + effort. When the agent receives a SNMP PDU containing this + data type, the return status of the SNMP request reflects + only the result of the SET operation has applied to the + starting row. It may return a SNMP response with SUCCESS + status regardless the number of rows for the data actually + been deployed later on. Therefore it is possible the data + might not be completely deployed to the number of rows + designated by the ConfigIterator and the operation stops + prematurely due to an error it first encounters after + n rows (n < the value of ConfigIterator object). + + Usually the error report mechanism for this type of operation + is accomplished by combining this type of object with the + other two objects in the same table: + + (1) An OwnerString object + (2) An object indicates the result of the operation. + + When issuing this bulk configuration request, the SNMP + manager should provide its identifier in (1) object. + After issuing the request, it should check the value of (1) + object if it is the same with it own name. + If they are the same, then the value of the object presents + in (2) is the result from the previous operation from this + manager. Otherwise, another SNMP manager might issue + the bulk configuration to the same table before the previous + bulk operation has been completed. These two objects will + represent the last bulk operation in the table. + " + SYNTAX Unsigned32 (1..4294967295) + +BulkConfigResult ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This textual convention defines the format of the + displayable textual result from the bulk configuration + operation specified as ConfigIterator type. + + The format should be: + 'COMPLETION=/, + ERROR=/: + ' + + For example: + 'COMPLETION=22/100,ERROR=38/44:Invalid Ds1 line coding + for the line type' + " + SYNTAX OCTET STRING (SIZE(0..255)) + +ListIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value greater than zero, for each of the + list that is defined. The object using this + convention should give all the object specific + details including the list type." + SYNTAX Integer32 (1..2147483647) + +ListIndexOrZero ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This textual convention is an extension of the + ListIndex. In addition to the ListIndex range, + this also includes 0 in its range of values. + This value could be object specific and + should be given the description of that object. + In most cases, a value 0 means that the it does + not represent any lists." + SYNTAX Integer32 (0..2147483647) + +TimeIntervalSec ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A period of time, measured in units of 1 second." + SYNTAX Unsigned32 + +TimeIntervalMin ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A period of time, measured in units of 1 minute." + SYNTAX Unsigned32 + +CiscoMilliSeconds ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents time unit value in milliseconds." + SYNTAX Unsigned32 + +MicroSeconds ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents time unit value in microseconds." + SYNTAX Unsigned32 +END diff --git a/pandora_console/attachment/mibs/CISCO-VTP-MIB b/pandora_console/attachment/mibs/CISCO-VTP-MIB new file mode 100644 index 0000000000..bad246678d --- /dev/null +++ b/pandora_console/attachment/mibs/CISCO-VTP-MIB @@ -0,0 +1,2811 @@ +-- ***************************************************************** +-- Cisco VTP MIB +-- +-- February, 1997 Chris Young +-- +-- Copyright (c) 1996-2001 by cisco Systems, Inc. +-- All rights reserved. +-- ***************************************************************** + + +CISCO-VTP-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Counter32, IpAddress, Gauge32, Integer32 + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, + RowStatus, DisplayString, DateAndTime, TruthValue, TestAndIncr + FROM SNMPv2-TC + InterfaceIndex, ifIndex, InterfaceIndexOrZero + FROM IF-MIB + ciscoMgmt + FROM CISCO-SMI + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF; + +ciscoVtpMIB MODULE-IDENTITY + LAST-UPDATED "200102260000Z" + ORGANIZATION "Cisco Systems, Inc." + CONTACT-INFO + "Cisco Systems + Customer Service + + Postal: 170 W Tasman Drive + San Jose, CA 95134 + USA + + Tel: +1 800 553-NETS + + E-mail: cs-wbu@cisco.com" + DESCRIPTION + "The MIB module for entities implementing the VTP + protocol and Vlan management." + REVISION "200102260000Z" + DESCRIPTION + "Deprecate read-only object vtpVlanEditTypeExt and + add a new read-create object vtpVlanEditTypeExt2. + Enable Notification groups." + REVISION "200102120000Z" + DESCRIPTION + "Added Remote SPAN (RSPAN) VLAN feature, VLAN + management features without supporting VTP protocol + and a new object to handle one-VLAN-editing." + REVISION "200009190000Z" + DESCRIPTION + "Added the mapping from VLAN ID to its corresponding + ifIndex" + REVISION "200004100000Z" + DESCRIPTION + "Added 4k VLAN editing and Dot1qTunnel support" + REVISION "200001060000Z" + DESCRIPTION + "Added 4k VLAN support" + REVISION "9902251130Z" + DESCRIPTION + "Added import of NOTIFICATION-GROUP" + REVISION "9901051130Z" + DESCRIPTION + "Added support for encapsulation type notApplicable" + REVISION "9805191130Z" + DESCRIPTION + "Added support for encapsulation type negotiation" + REVISION "9708081138Z" + DESCRIPTION + "Added Backup CRF object" + REVISION "9705091130Z" + DESCRIPTION + "Added ARE and STE hop counts." + REVISION "9702241115Z" + DESCRIPTION + "Added support for turning on VTP for Trunk cards." + REVISION "9701271730Z" + DESCRIPTION + "Added support for version 2 features." + REVISION "9609161230Z" + DESCRIPTION + "Updated the Token-Ring support." + REVISION "9607171230Z" + DESCRIPTION + "Updated to include objects in support of VTP pruning." + REVISION "9601181820Z" + DESCRIPTION + "Initial version of this MIB module." + ::= { ciscoMgmt 46 } + +vtpMIBObjects OBJECT IDENTIFIER ::= { ciscoVtpMIB 1 } + +-- Textual Conventions + +VlanIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The VLAN-id of a VLAN on ISL trunks. + + Modification of default parameters is allowed. + Implementations are allowed to restrict + the range of VLANs. + + For entities support up to 1024 VLANS. + VLANs above 1000 are reserved for default VLANs and + future use. Modification of default parameters is + allowed. Creation or deletion of VLANs above 1000 is not + allowed." + SYNTAX Integer32 (0..4095) + +ManagementDomainIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An arbitrary integer-value to uniquely identify a + management domain on the local system." + SYNTAX Integer32 (1..255) + +OwnerString ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This data type is used to model an administratively + assigned name of the owner of a resource. This information + is taken from the NVT ASCII character set. It is suggested + that this name contain one or more of the following: IP + address, management station name, network manager's name, + location, or phone number. In some cases the agent itself + will be the owner of an entry. In these cases, this string + shall be set to a string starting with 'monitor'. + + This definition is identical to that contained in RFC 1271." + SYNTAX OCTET STRING + +VlanType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The type of a VLAN. + + Note that the 'ethernet' type, is used for any ethernet or + 802.3 VLAN, including an ATM Ethernet ELAN; and the + 'tokenRing' ('trCrf') type is used for each VLAN + representing a single logical 802.5 ring including an ATM + Token-Ring ELAN. + + The 'trCrf' type is used for token ring VLANs made up of + (at most) one transparently bridged LAN segment. + + The 'trBrf' type is used for VLANs which represent the + scope of many 'trCrf' VLANs all connected together via + source route bridging. The token ring 'trBrf' can be said + to represent the bridged broadcast domain." + SYNTAX INTEGER { + ethernet(1), + fddi(2), + tokenRing(3), -- also known as trCrf + fddiNet(4), + trNet(5), -- also known as trBrf + deprecated(6) + } + +VlanTypeExt ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The additional type information of VLAN. + vtpmanageable(0) An user defined VLAN which is + manageable through VTP protocol. + The value of this bit cannot be + changed. + internal(1) An internal VLAN created by the device. + Internal VLANs cannot be created or + deleted. The value of this bit cannot + be changed. + reserved(2) A VLAN reserved by the device. + Reserved VLANs cannot be created or + deleted. The value of this bit cannot + be changed. + rspan(3) A VLAN created to exclusively carry + the traffic for a Remote Switched + Port Analyzer (RSPAN). This bit can + only be set or cleared during the + VLAN creation. Once the VLAN is + created, the value of this bit cannot + be modified. + " + SYNTAX BITS { + vtpmanageable(0), + internal(1), + reserved(2), + rspan(3) + } + +-- +-- VTP status +-- + +vtpStatus OBJECT IDENTIFIER ::= { vtpMIBObjects 1 } + +vtpVersion OBJECT-TYPE + SYNTAX INTEGER { one(1), two(2), none(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of VTP in use on the local system. A device + will report its version capability and not any particular + version in use on the device. If the device does not support + vtp, the version is none(3)." + ::= { vtpStatus 1 } + +vtpMaxVlanStorage OBJECT-TYPE + SYNTAX Integer32 (-1..1023) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the maximum number of VLANs about which the + local system can recover complete VTP information after a + reboot. If the number of defined VLANs is greater than this + value, then the system can not act as a VTP Server. For a + device which has no means to calculate the estimated number, + this value is -1." + ::= { vtpStatus 2 } + +vtpNotificationsEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the notifications/traps defined by + the vtpConfigNotificationsGroup are enabled." + ::= { vtpStatus 3 } + +-- +-- VTP Management Domains +-- + +vlanManagementDomains OBJECT IDENTIFIER ::= { vtpMIBObjects 2 } + +managementDomainTable OBJECT-TYPE + SYNTAX SEQUENCE OF ManagementDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information on the management domains + in which the local system is participating. Devices which + support only one management domain will support just one row + in this table, and will not let it be deleted nor let other + rows be created. Devices which support multiple management + domains will allow rows to be created and deleted, but will + not allow the last row to be deleted. If the device does + not support VTP, the table is read-only." + ::= { vlanManagementDomains 1 } + +managementDomainEntry OBJECT-TYPE + SYNTAX ManagementDomainEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about the status of one management domain." + INDEX { managementDomainIndex } + ::= { managementDomainTable 1 } + +ManagementDomainEntry ::= SEQUENCE { + managementDomainIndex ManagementDomainIndex, + managementDomainName DisplayString, + managementDomainLocalMode INTEGER, + managementDomainConfigRevNumber Gauge32, + managementDomainLastUpdater IpAddress, + managementDomainLastChange DateAndTime, + managementDomainRowStatus RowStatus, + managementDomainTftpServer IpAddress, + managementDomainTftpPathname DisplayString, + managementDomainPruningState INTEGER, + managementDomainVersionInUse INTEGER +} + +managementDomainIndex OBJECT-TYPE + SYNTAX ManagementDomainIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An arbitrary value to uniquely identify the management + domain on the local system." + ::= { managementDomainEntry 1 } + +managementDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The management name of a domain in which the local system + is participating. The zero-length name corresponds to the + 'no management-domain' state which is the initial value at + installation-time if not configured otherwise. Note that + the zero-length name does not correspond to an operational + management domain, and a device does not send VTP + advertisements while in the 'no management-domain' state. A + device leaves the 'no management-domain' state when it + obtains a management-domain name, either through + configuration or through inheriting the management-domain + name from a received VTP advertisement. + + When the value of an existing instance of this object is + modified by network management, the local system should re- + initialize its VLAN information (for the given management + domain) as if it had just been configured with a management + domain name at installation time." + ::= { managementDomainEntry 2 } + +managementDomainLocalMode OBJECT-TYPE + SYNTAX INTEGER { client(1), server(2), transparent(3) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An indication of whether the local system is acting as a + VTP Client or as a VTP Server in this management domain. + The value 'transparent' is a read-only indication that a + device is not supporting VTP for this VTP management domain, + e.g., because the amount of VLAN information is too large + for it to hold in DRAM." + ::= { managementDomainEntry 3 } + +managementDomainConfigRevNumber OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current Configuration Revision Number as known by the + local device for this management domain. This value is + updated (if necessary) whenever a VTP advertisement is + received or generated. When in the 'no management-domain' + state, this value is 0." + ::= { managementDomainEntry 4 } + +managementDomainLastUpdater OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP-address (or one of them) of the VTP Server which + last updated the Configuration Revision Number, as indicated + in the most recently received VTP advertisement for this + management domain. Before an advertisement has been + received, this value is 0.0.0.0." + ::= { managementDomainEntry 5 } + +managementDomainLastChange OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time at which the Configuration Revision Number was + (last) increased to its current value, as indicated in the + most recently received VTP advertisement for this management + domain. + + The value 0x0000010100000000 indicates that the device which + last increased the Configuration Revision Number had no idea + of the date/time, or that no advertisement has been + received." + ::= { managementDomainEntry 6 } + +managementDomainRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this conceptual row." + ::= { managementDomainEntry 7 } + +managementDomainTftpServer OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The IP address of a TFTP Server in/from which VTP VLAN + information for this management domain is to be + stored/retrieved. If the information is being locally + stored in NVRAM, this object should take the value 0.0.0.0." + ::= { managementDomainEntry 8 } + +managementDomainTftpPathname OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The complete pathname of the file at the TFTP Server + identified by the value of managementDomainTftpServer + in/from which VTP VLAN information for this management + domain is to be stored/retrieved. If the value of + corresponding instance of managementDomainTftpServer is + 0.0.0.0, the value of this object is ignored." + ::= { managementDomainEntry 9 } + +managementDomainPruningState OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "An indication of whether VTP pruning is enabled or disabled + in this managament domain. This value can only be modified + by local/network management when the value of the + corresponding instance of managementDomainLocalMode is + 'server'." + ::= { managementDomainEntry 10 } + +managementDomainVersionInUse OBJECT-TYPE + SYNTAX INTEGER { version1 (1), version2 (2), none(3) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The current version of the VTP that is in use by the + designated management domain. This value can only be + modified by local/network managment when the value of the + corresponding instance of managementDomainLocalMode is + 'server'. If managementDomainLocalMode is 'server', + this object can only be changed to version1(1) or + version(2)." + ::= { managementDomainEntry 11 } + +-- +-- VLAN information +-- + +vlanInfo OBJECT IDENTIFIER ::= { vtpMIBObjects 3 } + +-- Global information on current VLANs +-- +-- This information is maintained by VTP Clients and VTP Servers + +vtpVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF VtpVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains information on the VLANs which + currently exist. The creation, deletion or modification of + entries occurs through: a) the receipt of VTP messages in + VTP Clients and in VTP Servers, or, b) in VTP Servers (or in + VTP transparent mode), through management operations acting + upon entries in the vtpVlanEditTable and then issuing an + 'apply' command via the vtpVlanEditOperation object." + ::= { vlanInfo 1 } + +vtpVlanEntry OBJECT-TYPE + SYNTAX VtpVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about one current VLAN. The + managementDomainIndex value in the INDEX clause indicates + which management domain the VLAN is in." + INDEX { managementDomainIndex, vtpVlanIndex } + ::= { vtpVlanTable 1 } + +VtpVlanEntry ::= SEQUENCE { + vtpVlanIndex VlanIndex, + vtpVlanState INTEGER, + vtpVlanType VlanType, + vtpVlanName DisplayString, + vtpVlanMtu Integer32, + vtpVlanDot10Said OCTET STRING, + vtpVlanRingNumber Integer32, + vtpVlanBridgeNumber Integer32, + vtpVlanStpType INTEGER, + vtpVlanParentVlan VlanIndex, + vtpVlanTranslationalVlan1 VlanIndex, + vtpVlanTranslationalVlan2 VlanIndex, + vtpVlanBridgeType INTEGER, + vtpVlanAreHopCount Integer32, + vtpVlanSteHopCount Integer32, + vtpVlanIsCRFBackup TruthValue, + vtpVlanTypeExt VlanTypeExt, + vtpVlanIfIndex InterfaceIndexOrZero +} + +vtpVlanIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN-id of this VLAN on ISL trunks." + ::= { vtpVlanEntry 1 } + +vtpVlanState OBJECT-TYPE + SYNTAX INTEGER { operational(1), + suspended(2), + mtuTooBigForDevice(3), + mtuTooBigForTrunk(4) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of this VLAN. + + The state 'mtuTooBigForDevice' indicates that this device + cannot participate in this VLAN because the VLAN's MTU is + larger than the device can support. + + The state 'mtuTooBigForTrunk' indicates that while this + VLAN's MTU is supported by this device, it is too large for + one or more of the device's trunk ports." + ::= { vtpVlanEntry 2 } + +vtpVlanType OBJECT-TYPE + SYNTAX VlanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of this VLAN." + ::= { vtpVlanEntry 3 } + +vtpVlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of this VLAN. This name is used as the ELAN-name + for an ATM LAN-Emulation segment of this VLAN." + ::= { vtpVlanEntry 4 } + +vtpVlanMtu OBJECT-TYPE + SYNTAX Integer32 (1500..18190) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MTU size on this VLAN, defined as the size of largest + MAC-layer (information field portion of the) data frame + which can be transmitted on the VLAN." + ::= { vtpVlanEntry 5 } + +vtpVlanDot10Said OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the 802.10 SAID field for this VLAN." + ::= { vtpVlanEntry 6 } + +vtpVlanRingNumber OBJECT-TYPE + SYNTAX Integer32 (0..4095) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ring number of this VLAN. This object is only + instantiated when the value of the corresponding instance of + vtpVlanType has a value of 'fddi' or 'tokenRing' and Source + Routing is in use on this VLAN." + ::= { vtpVlanEntry 7 } + +vtpVlanBridgeNumber OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The bridge number of the VTP-capable switches for this + VLAN. This object is only instantiated for VLANs that are + involved with emulating token ring segments." + ::= { vtpVlanEntry 8 } + +vtpVlanStpType OBJECT-TYPE + SYNTAX INTEGER { ieee(1), ibm(2), hybrid(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The type of the Spanning Tree Protocol (STP) running on + this VLAN. This object is only instanciated when the + value of the corresponding instance of vtpVlanType has a + value of 'fddiNet' or 'trNet'. + + The value returned by this object depends upon the value + of the corresponding instance of vtpVlanEditStpType. + + - 'ieee' indicates IEEE STP is running exclusively. + + - 'ibm' indicates IBM STP is running exclusively. + + - 'hybrid' indicates a STP that allows a combination of + IEEE and IBM is running. + + The 'hybrid' STP type results from tokenRing/fddi VLANs + that are children of this trNet/fddiNet parent VLAN being + configured in a combination of SRT and SRB + vtpVlanBridgeTypes while the instance of + vtpVlanEditStpType that corresponds to this object is set + to 'auto'." + ::= { vtpVlanEntry 9 } + +vtpVlanParentVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The parent VLAN for this VLAN. This object is only + instantiated when the value of the corresponding instance of + vtpVlanType has a value of 'fddi' or 'tokenRing' and Source + Routing is in use on this VLAN. The parent VLAN must have + a vtpVlanType value of fddiNet(4) or trNet(5), + respectively." + ::= { vtpVlanEntry 10 } + +vtpVlanTranslationalVlan1 OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A VLAN to which this VLAN is being translational-bridged. + If this value and the corresponding instance of + vtpVlanTranslationalVlan2 are both zero, then this VLAN is + not being translational-bridged." + ::= { vtpVlanEntry 11 } + +vtpVlanTranslationalVlan2 OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Another VLAN, i.e., other than that indicated by + vtpVlanTranslationalVlan1, to which this VLAN is being + translational-bridged. If this value and the corresponding + instance of vtpVlanTranslationalVlan1 are both zero, then + this VLAN is not being translational-bridged." + ::= { vtpVlanEntry 12 } + +vtpVlanBridgeType OBJECT-TYPE + SYNTAX INTEGER { srt(1), srb(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the Source Route bridging mode in use on this + VLAN. This object is only instantiated when the value of + the corresponding instance of vtpVlanType has a value of + fddi(2) or tokenRing(3) and Source Routing is in use on + this VLAN." + ::= { vtpVlanEntry 13 } + +vtpVlanAreHopCount OBJECT-TYPE + SYNTAX Integer32 (1..13) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of bridge hops allowed in + All Routes Explorer frames on this VLAN. This + object is only instantiated when the value of the + corresponding instance of vtpVlanType has a value of fddi(2) + or tokenRing(3) and Source Routing is in use on this VLAN." + ::= { vtpVlanEntry 14 } + +vtpVlanSteHopCount OBJECT-TYPE + SYNTAX Integer32 (1..13) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of bridge hops allowed in + Spanning Tree Explorer frames on this VLAN. This + object is only instantiated when the value of the + corresponding instance of vtpVlanType has a value of fddi(2) + or tokenRing(3) and Source Routing is in use on this VLAN." + ::= { vtpVlanEntry 15 } + +vtpVlanIsCRFBackup OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " True if this VLAN is of type trCrf and also is acting as + a backup trCrf for the ISL distributed BRF" + ::= { vtpVlanEntry 16 } + +vtpVlanTypeExt OBJECT-TYPE + SYNTAX VlanTypeExt + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The additional type information of this VLAN." + ::= { vtpVlanEntry 17 } + +vtpVlanIfIndex OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the ifIndex corresponding to this VLAN ID. + If the VLAN ID does not have its corresponding interface, + this object has the value of zero." + ::= { vtpVlanEntry 18 } + +-- Modification of Global VLAN Information +-- +-- To change the global information on current VLANs, including +-- creating, modifying or deleting them, +-- . the current VLAN information is copied to the "Edit buffer", +-- . the information in the Edit buffer is modified as appropriate, +-- . an 'apply' is invoked to attempt to instanciate the modified +-- contents of the Edit Buffer as the new global VLAN information. +-- +-- Only one manager can edit the Edit Buffer at a time. So, a +-- request to copy the current VLAN information into the Edit Buffer +-- must fail if the Edit Buffer is already in use (i.e., is not empty). +-- Thus, concurrent attempts by multiple managers to gain use of the +-- Edit Buffer are resolved according to whichever of them succeeds +-- in performing a successful copy. An OwnerString object provides +-- information on which manager currently has access. +-- +-- Ownership of the Edit Buffer terminates when a NMS explicitly +-- releases it, or when a deadman-timer expires. The deadman-timer +-- has a fixed expiry interval of 5 minutes. The deadman-timer is +-- automatically started on a successful copy operation. The +-- restartTimer operation allows an NMS to restart the deadman-timer +-- if it wishes to retain ownership of the Edit Buffer for longer +-- than 5 minutes. The deadman-timer ceases when the apply operation +-- is invoked, and is restarted when the apply operation terminates. +-- Restarting the deadman-timer after termination of the apply +-- operation allows the results of the apply operation to be retained +-- until the requesting manager has retrieved them, but for only a +-- limited amount of time. + +vlanEdit OBJECT IDENTIFIER ::= { vtpMIBObjects 4 } + +vtpEditControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF VtpEditControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table provides the means to control the editing of the + VLANs for a particular management domain. Each and every + entry in this table augments its corresponding entry in the + managementDomainTable; thus, an entry in this table is + created/deleted only as a by-product of creating/deleting an + entry in the managementDomainTable." + ::= { vlanEdit 1 } + +vtpEditControlEntry OBJECT-TYPE + SYNTAX VtpEditControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Control information for editing the VLANs in one management + domain." + AUGMENTS { managementDomainEntry } + ::= { vtpEditControlTable 1 } + +VtpEditControlEntry ::= SEQUENCE { + vtpVlanEditOperation INTEGER, + vtpVlanApplyStatus INTEGER, + vtpVlanEditBufferOwner OwnerString, + vtpVlanEditConfigRevNumber Gauge32, + vtpVlanEditModifiedVlan VlanIndex +} + +vtpVlanEditOperation OBJECT-TYPE + SYNTAX INTEGER { none(1), + copy(2), + apply(3), + release(4), + restartTimer(5) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object always has the value 'none' when read. When + written, each value causes the appropriate action: + + 'copy' - causes the creation of rows in the + vtpVlanEditTable exactly corresponding to the current global + VLAN information for this management domain. If the Edit + Buffer (for this management domain) is not currently empty, + a copy operation fails. A successful copy operation starts + the deadman-timer. + + 'apply' - first performs a consistent check on the the + modified information contained in the Edit Buffer, and if + consistent, then tries to instanciate the modified + information as the new global VLAN information. Note that + an empty Edit Buffer (for the management domain) would + always result in an inconsistency since the default VLANs + are required to be present. + + 'release' - flushes the Edit Buffer (for this management + domain), clears the Owner information, and aborts the + deadman-timer. A release is generated automatically if the + deadman-timer ever expires. + + 'restartTimer' - restarts the deadman-timer. + + 'none' - no operation is performed." + ::= { vtpEditControlEntry 1 } + +vtpVlanApplyStatus OBJECT-TYPE + SYNTAX INTEGER { inProgress(1), + succeeded(2), + configNumberError(3), + inconsistentEdit(4), + tooBig(5), + localNVStoreFail(6), + remoteNVStoreFail(7), + editBufferEmpty(8), + someOtherError(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of an 'apply' operation to instanciate + the Edit Buffer as the new global VLAN information (for this + management domain). If no apply is currently active, the + status represented is that of the most recently completed + apply. The possible values are: + + inProgress - 'apply' operation in progress; + + succeeded - the 'apply' was successful (this value is + also used when no apply has been invoked since the + last time the local system restarted); + + configNumberError - the apply failed because the value of + vtpVlanEditConfigRevNumber was less or equal to + the value of current value of + managementDomainConfigRevNumber; + + inconsistentEdit - the apply failed because the modified + information was not self-consistent; + + tooBig - the apply failed because the modified + information was too large to fit in this VTP + Server's non-volatile storage location; + + localNVStoreFail - the apply failed in trying to store + the new information in a local non-volatile + storage location; + + remoteNVStoreFail - the apply failed in trying to store + the new information in a remote non-volatile + storage location; + + editBufferEmpty - the apply failed because the Edit + Buffer was empty (for this management domain). + + someOtherError - the apply failed for some other reason + (e.g., insufficient memory)." + ::= { vtpEditControlEntry 2 } + +vtpVlanEditBufferOwner OBJECT-TYPE + SYNTAX OwnerString + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The management station which is currently using the Edit + Buffer for this management domain. When the Edit Buffer for + a management domain is not currently in use, the value of + this object is the zero-length string. Note that it is also + the zero-length string if a manager fails to set this object + when invoking a copy operation." + ::= { vtpEditControlEntry 3 } + +vtpVlanEditConfigRevNumber OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Configuration Revision Number to be used for the next + apply operation. This value is initialized (by the agent) + on a copy operation to be one greater than the value of + managementDomainConfigRevNumber. On an apply, if the + number is less or equal to the value of + managementDomainConfigRevNumber, then the apply fails. + The value can be modified (increased) by network management + before an apply to ensure that an apply does not fail for + this reason. + + This object is used to allow management control over whether + a configuration revision received via a VTP advertisement + after a copy operation but before the succeeding apply + operation is lost by being overwritten by the (local) edit + operation. By default, the apply operation will fail in + this situation. By increasing this object's value after the + copy but before the apply, management can control whether + the apply is to succeed (with the update via VTP + advertisement being lost)." + ::= { vtpEditControlEntry 4 } + +vtpVlanEditModifiedVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The VLAN-id of the modified VLAN in the Edit Buffer. + If the object has the value of zero, any VLAN can + be edited. If the value of the object is not zero, + only this VLAN can be edited. + + The object's value is reset to zero after a successful + 'apply' operation or a 'release' operation. + + This object is only supported for devices which allow + only one VLAN editing for each 'apply' operation. For + devices which allow multiple VLAN editing for each + 'apply' operation, this object is not supported." + + ::= { vtpEditControlEntry 5 } + +vtpVlanEditTable OBJECT-TYPE + SYNTAX SEQUENCE OF VtpVlanEditEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table which contains the information in the Edit + Buffers, one Edit Buffer per management domain. The + information for a particular management domain is + initialized, by a 'copy' operation, to be the current global + VLAN information for that management domain. After + initialization, editing can be performed to add VLANs, + delete VLANs, or modify their global parameters. The + information as modified through editing is local to this + Edit Buffer. An apply operation using the + vtpVlanEditOperation object is necessary to instanciate the + modified information as the new global VLAN information for + that management domain. + + To use the Edit Buffer, a manager acts as follows: + + 1. ensures the Edit Buffer for a management domain is empty, + i.e., there are no rows in this table for this management + domain. + + 2. issues a SNMP set operation which sets + vtpVlanEditOperation to 'copy', and vtpVlanEditBufferOwner + to its own identifier (e.g., its own IP address). + + 3. if this set operation is successful, proceeds to edit the + information in the vtpVlanEditTable. + + 4. if and when the edited information is to be instantiated, + issues a SNMP set operation which sets vtpVlanEditOperation + to 'apply'. + + 5. issues retrieval requests to obtain the value of + vtpVlanApplyStatus, until the result of the apply is + determined. + + 6. releases the Edit Buffer by issuing a SNMP set operation + which sets vtpVlanEditOperation to 'release'. + + Note that the information contained in this table is not + saved across agent reboots." + ::= { vlanEdit 2 } + +vtpVlanEditEntry OBJECT-TYPE + SYNTAX VtpVlanEditEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about one VLAN in the Edit Buffer for a + particular management domain." + INDEX { managementDomainIndex, vtpVlanEditIndex } + ::= { vtpVlanEditTable 1 } + +VtpVlanEditEntry ::= SEQUENCE { + vtpVlanEditIndex VlanIndex, + vtpVlanEditState INTEGER, + vtpVlanEditType VlanType, + vtpVlanEditName DisplayString, + vtpVlanEditMtu Integer32, + vtpVlanEditDot10Said OCTET STRING, + vtpVlanEditRingNumber Integer32, + vtpVlanEditBridgeNumber Integer32, + vtpVlanEditStpType INTEGER, + vtpVlanEditParentVlan VlanIndex, + vtpVlanEditRowStatus RowStatus, + vtpVlanEditTranslationalVlan1 VlanIndex, + vtpVlanEditTranslationalVlan2 VlanIndex, + vtpVlanEditBridgeType INTEGER, + vtpVlanEditAreHopCount Integer32, + vtpVlanEditSteHopCount Integer32, + vtpVlanEditIsCRFBackup TruthValue, + vtpVlanEditTypeExt VlanTypeExt, + vtpVlanEditTypeExt2 VlanTypeExt +} + +vtpVlanEditIndex OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The VLAN-id which this VLAN would have on ISL trunks." + ::= { vtpVlanEditEntry 1 } + +vtpVlanEditState OBJECT-TYPE + SYNTAX INTEGER { + operational(1), + suspended(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The state which this VLAN would have." + DEFVAL { operational } + ::= { vtpVlanEditEntry 2 } + +vtpVlanEditType OBJECT-TYPE + SYNTAX VlanType + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type which this VLAN would have. + An implementation may restrict access to this object." + DEFVAL { ethernet } + ::= { vtpVlanEditEntry 3 } + +vtpVlanEditName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The name which this VLAN would have. This name would be + used as the ELAN-name for an ATM LAN-Emulation segment of + this VLAN. + + An implementation may restrict access to this object." + ::= { vtpVlanEditEntry 4 } + +vtpVlanEditMtu OBJECT-TYPE + SYNTAX Integer32 (1500..18190) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The MTU size which this VLAN would have, defined as the + size of largest MAC-layer (information field portion of the) + data frame which can be transmitted on the VLAN. + + An implementation may restrict access to this object." + DEFVAL { 1500 } + ::= { vtpVlanEditEntry 5 } + +vtpVlanEditDot10Said OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of the 802.10 SAID field which would be used for + this VLAN. + + An implementation may restrict access to this object." + ::= { vtpVlanEditEntry 6 } + +vtpVlanEditRingNumber OBJECT-TYPE + SYNTAX Integer32 (0..4095) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The ring number which would be used for this VLAN. This + object is only instantiated when the value of the + corresponding instance of vtpVlanEditType has a value of + 'fddi' or 'tokenRing' and Source Routing is in use on + this VLAN." + ::= { vtpVlanEditEntry 7 } + +vtpVlanEditBridgeNumber OBJECT-TYPE + SYNTAX Integer32 (0..15) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The bridge number of the VTP-capable switches which would + be used for this VLAN. This object is only instantiated + when the value of the corresponding instance of + vtpVlanEditType has a value of fddiNet(4) or trNet(5)." + ::= { vtpVlanEditEntry 8 } + +vtpVlanEditStpType OBJECT-TYPE + SYNTAX INTEGER { ieee(1), ibm(2), auto(3) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of the Spanning Tree Protocol which would be + running on this VLAN. This object is only instantiated when + the value of the corresponding instance of vtpVlanEditType + has a value of fddiNet(4) or trNet(5). + + If 'ieee' is selected, the STP that runs will be IEEE. + + If 'ibm' is selected, the STP that runs will be IBM. + + If 'auto' is selected, the STP that runs will be + dependant on the values of vtpVlanEditBridgeType for all + children tokenRing/fddi type VLANs. This will result in + a 'hybrid' STP (see vtpVlanStpType)." + ::= { vtpVlanEditEntry 9 } + +vtpVlanEditParentVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VLAN index of the VLAN which would be the parent for + this VLAN. This object is only instantiated when the value + of the corresponding instance of vtpVlanEditType has a value + of 'fddi' or 'tokenRing' and Source Routing is in use on + this VLAN. The parent VLAN must have a vtpVlanEditType + value of fddiNet(4) or trNet(5), respectively." + ::= { vtpVlanEditEntry 10 } + +vtpVlanEditRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row. Any and all columnar objects in an + existing row can be modified irrespective of the status of + the row. + + A row is not qualified for activation until instances of at + least its vtpVlanEditType, vtpVlanEditName and + vtpVlanEditDot10Said columns have appropriate values. + + The management station should endeavor to make all rows + consistent in the table before 'apply'ing the buffer. An + inconsistent entry in the table will cause the entire + buffer to be rejected with the vtpVlanApplyStatus object + set to the appropriate error value." + ::= { vtpVlanEditEntry 11 } + +vtpVlanEditTranslationalVlan1 OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A VLAN to which this VLAN would be translational-bridged. + If this value and the corresponding instance of + vtpVlanTranslationalVlan2 are both zero, then this VLAN + would not be translational-bridged. + + An implementation may restrict access to this object." + DEFVAL { 0 } + ::= { vtpVlanEditEntry 12 } + +vtpVlanEditTranslationalVlan2 OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Another VLAN, i.e., other than that indicated by + vtpVlanEditTranslationalVlan1, to which this VLAN would be + translational-bridged. If this value and the corresponding + instance of vtpVlanTranslationalVlan1 are both zero, then + this VLAN would not be translational-bridged. + + An implementation may restrict access to this object." + DEFVAL { 0 } + ::= { vtpVlanEditEntry 13 } + +vtpVlanEditBridgeType OBJECT-TYPE + SYNTAX INTEGER { srt(1), srb(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of Source Route bridging mode which would be in + use on this VLAN. This object is only instantiated when + the value of the corresponding instance of vtpVlanEditType + has a value of fddi(2) or tokenRing(3) and Source Routing + is in use on this VLAN." + ::= { vtpVlanEditEntry 14 } + +vtpVlanEditAreHopCount OBJECT-TYPE + SYNTAX Integer32 (1..13) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of bridge hops allowed in + All Routes Explorer frames on this VLAN. This + object is only instantiated when the value of the + corresponding instance of vtpVlanType has a value of fddi(2) + or tokenRing(3) and Source Routing is in use on this VLAN." + ::= { vtpVlanEditEntry 15 } + +vtpVlanEditSteHopCount OBJECT-TYPE + SYNTAX Integer32 (1..13) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of bridge hops allowed in + Spanning Tree Explorer frames on this VLAN. This + object is only instantiated when the value of the + corresponding instance of vtpVlanType has a value of fddi(2) + or tokenRing(3) and Source Routing is in use on this VLAN." + ::= { vtpVlanEditEntry 16} + +vtpVlanEditIsCRFBackup OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " True if this VLAN is of type trCrf and also is acting as + a backup trCrf for the ISL distributed BRF. This object is + only instantiated when the value of the corresponding + instance of vtpVlanEditType has a value of tokenRing(3)." + ::= { vtpVlanEditEntry 17 } + +vtpVlanEditTypeExt OBJECT-TYPE + SYNTAX VlanTypeExt + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The additional type information of this VLAN." + ::= { vtpVlanEditEntry 18 } + +vtpVlanEditTypeExt2 OBJECT-TYPE + SYNTAX VlanTypeExt + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The additional type information of this VLAN. + The VlanTypeExt TC specifies which bits may + be written by a management application. + The agent should provide a default value." + ::= { vtpVlanEditEntry 19 } + +-- +-- VTP Statistics +-- + +vtpStats OBJECT IDENTIFIER ::= { vtpMIBObjects 5 } + +vtpStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF VtpStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of VTP statistics." + ::= { vtpStats 1 } + +vtpStatsEntry OBJECT-TYPE + SYNTAX VtpStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "VTP statistics for one management domain." + AUGMENTS { managementDomainEntry } + ::= { vtpStatsTable 1 } + +VtpStatsEntry ::= SEQUENCE { + vtpInSummaryAdverts Counter32, + vtpInSubsetAdverts Counter32, + vtpInAdvertRequests Counter32, + vtpOutSummaryAdverts Counter32, + vtpOutSubsetAdverts Counter32, + vtpOutAdvertRequests Counter32, + vtpConfigRevNumberErrors Counter32, + vtpConfigDigestErrors Counter32 +} + +vtpInSummaryAdverts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of VTP Summary Adverts received for this + management domain." + ::= { vtpStatsEntry 1 } + +vtpInSubsetAdverts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of VTP Subset Adverts received for this + management domain." + ::= { vtpStatsEntry 2 } + +vtpInAdvertRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of VTP Advert Requests received for this + management domain." + ::= { vtpStatsEntry 3 } + +vtpOutSummaryAdverts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of VTP Summary Adverts sent for this + management domain." + ::= { vtpStatsEntry 4 } + +vtpOutSubsetAdverts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of VTP Subset Adverts sent for this + management domain." + ::= { vtpStatsEntry 5 } + +vtpOutAdvertRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of VTP Advert Requests sent for this + management domain." + ::= { vtpStatsEntry 6 } + +vtpConfigRevNumberErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occurrences of configuration revision number + errors for this management domain. A configuration revision + number error occurs when a device receives a VTP + advertisement for which: + + - the advertisement's Configuration Revision Number is the + same as the current locally-held value, and + + - the advertisement's digest value is different from the + current locally-held value." + ::= { vtpStatsEntry 7 } + +vtpConfigDigestErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of occurrences of configuration digest errors + for this management domain. A configuration digest error + occurs when a device receives a VTP advertisement for which: + + - the advertisement's Configuration Revision Number is + greater than the current locally-held value, and + + - the advertisement's digest value does not match the VLAN + information assumed by the receiver of the advertisement, + where the infomation assumed is the combination of the + information explicitly contained in the advertisement plus + any omitted information as currently known by the + receiving device." + ::= { vtpStatsEntry 8 } + +-- Trunk Ports + +vlanTrunkPorts OBJECT IDENTIFIER ::= { vtpMIBObjects 6 } + +vlanTrunkPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF VlanTrunkPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information on the local system's VLAN + trunk ports." + ::= { vlanTrunkPorts 1 } + +vlanTrunkPortEntry OBJECT-TYPE + SYNTAX VlanTrunkPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about one trunk port." + INDEX { vlanTrunkPortIfIndex } + ::= { vlanTrunkPortTable 1 } + +VlanTrunkPortEntry ::= SEQUENCE { + vlanTrunkPortIfIndex InterfaceIndex, + vlanTrunkPortManagementDomain ManagementDomainIndex, + vlanTrunkPortEncapsulationType INTEGER, + vlanTrunkPortVlansEnabled OCTET STRING, + vlanTrunkPortNativeVlan VlanIndex, + vlanTrunkPortRowStatus RowStatus, + vlanTrunkPortInJoins Counter32, + vlanTrunkPortOutJoins Counter32, + vlanTrunkPortOldAdverts Counter32, + vlanTrunkPortVlansPruningEligible OCTET STRING, + vlanTrunkPortVlansXmitJoined OCTET STRING, + vlanTrunkPortVlansRcvJoined OCTET STRING, + vlanTrunkPortDynamicState INTEGER, + vlanTrunkPortDynamicStatus INTEGER, + vlanTrunkPortVtpEnabled TruthValue, + vlanTrunkPortEncapsulationOperType INTEGER, + vlanTrunkPortVlansEnabled2k OCTET STRING, + vlanTrunkPortVlansEnabled3k OCTET STRING, + vlanTrunkPortVlansEnabled4k OCTET STRING, + vtpVlansPruningEligible2k OCTET STRING, + vtpVlansPruningEligible3k OCTET STRING, + vtpVlansPruningEligible4k OCTET STRING, + vlanTrunkPortVlansXmitJoined2k OCTET STRING, + vlanTrunkPortVlansXmitJoined3k OCTET STRING, + vlanTrunkPortVlansXmitJoined4k OCTET STRING, + vlanTrunkPortVlansRcvJoined2k OCTET STRING, + vlanTrunkPortVlansRcvJoined3k OCTET STRING, + vlanTrunkPortVlansRcvJoined4k OCTET STRING, + vlanTrunkPortDot1qTunnel INTEGER +} + +vlanTrunkPortIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of ifIndex for the interface corresponding to + this trunk port." + ::= { vlanTrunkPortEntry 1 } + +vlanTrunkPortManagementDomain OBJECT-TYPE + SYNTAX ManagementDomainIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of managementDomainIndex for the management + domain on this trunk port. Devices which support only one + management domain will support this object read-only." + ::= { vlanTrunkPortEntry 2 } + +vlanTrunkPortEncapsulationType OBJECT-TYPE + SYNTAX INTEGER { isl(1), dot10(2), lane(3), dot1Q(4), negotiate(5) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The type of VLAN encapsulation desired to be used on this trunk + port. It is either a particular type, or 'negotiate' meaning + whatever type results from the negotiation. negotiate(5) is not + allowed if the port does not support negotiation or if its + vlanTrunkPortDynamicState is set to on(1) or onNoNegotiate(5). + Whether writing to this object in order to modify the encapsulation + is supported is both device and interface specific." + ::= { vlanTrunkPortEntry 3 } + +vlanTrunkPortVlansEnabled OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN in the + management domain on this trunk port. The first octet + corresponds to VLANs with VlanIndex values of 0 through 7; + the second octet to VLANs 8 through 15; etc. The most + significant bit of each octet corresponds to the lowest + value VlanIndex in that octet. If the bit corresponding to + a VLAN is set to '1', then the local system is enabled for + sending and receiving frames on that VLAN; if the bit is set + to '0', then the system is disabled from sending and + receiving frames on that VLAN. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 4 } + +vlanTrunkPortNativeVlan OBJECT-TYPE + SYNTAX VlanIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The VlanIndex of the VLAN which is represented by native + frames on this trunk port. For trunk ports not supporting + the sending and receiving of native frames, this value + should be set to zero." + ::= { vlanTrunkPortEntry 5 } + +vlanTrunkPortRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of this row. In some circumstances, the + creation of a row in this table is needed to enable the + appropriate trunking/tagging protocol on the port, to enable + the use of VTP on the port, and to assign the port to the + appropriate management domain. In other circumstances, rows + in this table will be created as a by-product of other + operations." + ::= { vlanTrunkPortEntry 6 } + +vlanTrunkPortInJoins OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VTP Join messages received on this trunk + port." + ::= { vlanTrunkPortEntry 7 } + +vlanTrunkPortOutJoins OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VTP Join messages sent on this trunk port." + ::= { vlanTrunkPortEntry 8 } + +vlanTrunkPortOldAdverts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VTP Advertisement messages which indicated + the sender does not support VLAN-pruning received on this + trunk port." + ::= { vlanTrunkPortEntry 9 } + +vlanTrunkPortVlansPruningEligible OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN in the + management domain on this trunk port. The first octet + corresponds to VLANs with VlanIndex values of 0 through 7; + the second octet to VLANs 8 through 15; etc. The most + significant bit of each octet corresponds to the lowest + value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local system is permitted to prune that VLAN on this trunk + port; if the bit is set to '0', then the system must not + prune that VLAN on this trunk port. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 10 } + +vlanTrunkPortVlansXmitJoined OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN in the + management domain on this trunk port. The first octet + corresponds to VLANs with VlanIndex values of 0 through 7; + the second octet to VLANs 8 through 15; etc. The most + significant bit of each octet corresponds to the lowest + value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then this + VLAN is presently being forwarded on this trunk port, i.e., + it is not pruned; if the bit is set to '0', then this VLAN + is presently not being forwarded on this trunk port, either + because it is pruned or for some other reason." + ::= { vlanTrunkPortEntry 11 } + +vlanTrunkPortVlansRcvJoined OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN in the + management domain on this trunk port. The first octet + corresponds to VLANs with VlanIndex values of 0 through 7; + the second octet to VLANs 8 through 15; etc. The most + significant bit of each octet corresponds to the lowest + value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local switch is currently sending joins for this VLAN on + this trunk port, i.e., it is asking to receive frames for + this VLAN; if the bit is set to '0', then the local switch + is not currently sending joins for this VLAN on this trunk + port." + ::= { vlanTrunkPortEntry 12 } + +vlanTrunkPortDynamicState OBJECT-TYPE + SYNTAX INTEGER { on(1), off(2), desirable(3), auto(4), onNoNegotiate(5) +} + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "For devices that allows dynamic determination of whether + a link between two switches should be a trunk or not, this object + allows the operator to mandate the behavior of that dynamic + mechanism. + + on(1) dictates that the interface will always be a + trunk. This is the value for static entries (those that + show no dynamic behavior). If the negotiation is supported on this + port, negotiation will take place with the far end to attempt + to bring the far end into trunking state. + + off(2) allows an operator to specify that the specified + interface is never to be trunk, regardless of any dynamic + mechanisms to the contrary. This value is useful for + overriding the default behavior of some switches. If the + negotiation is supported on this port, negotiation will take place + with the far end to attempt on the link to bring the far end into + non-trunking state. + + desirable(3) is used to indicate that it is desirable for + the interface to become a trunk. The device will initiate + any negotiation necessary to become a trunk but will not + become a trunk unless it receives confirmation from the far + end on the link. + + auto(4) is used to indicate that the interface is capable + and willing to become a trunk but will not initiate + trunking negotiations. The far end on the link are + required to either start negotiations or start sending + encapsulated packets, on which event the specified + interface will become a trunk. + + onNoNegotiate(5) is used to indicate that the interface is permanently + set to be a trunk, and no negotiation takes place with the + far end on the link to ensure consistent operation. This is similar + to on(1) except no negotiation takes place with the far end. + + If the port does not support negotiation or its + vlanTrunkPortEncapsulationType is set to negotiate(5), + onNoNegotiate(5) is not allowed. + + Devices that do no support dynamic determination (for just + a particular interface, encapsulation or for the whole + device) need only support the 'on', and 'off' values." + ::= { vlanTrunkPortEntry 13 } + +vlanTrunkPortDynamicStatus OBJECT-TYPE + SYNTAX INTEGER { trunking(1), notTrunking(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Indicates whether the specified interface is either + acting as a trunk or not. This is a result of the + vlanTrunkPortDynamicState and the ifOperStatus of the + trunk port itself." + ::= { vlanTrunkPortEntry 14 } + +vlanTrunkPortVtpEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " Some trunk interface modules allow VTP to be + enabled/disabled seperately from that of the central + device. In such a case this object provides management a + way to remotely enable VTP on that module. If a module + does not support a seperate VTP enabled state then this + object shall always return 'true' and will accept no other + value during a SET operation." + ::= { vlanTrunkPortEntry 15 } + +vlanTrunkPortEncapsulationOperType OBJECT-TYPE + SYNTAX INTEGER { isl(1), dot10(2), lane(3), dot1Q(4), negotiating(5), + notApplicable(6) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of VLAN encapsulation in use on this trunk port. + For intefaces with vlanTrunkPortDynamicStatus of + notTrunking(2) the vlanTrunkPortEncapsulationOperType shall + be notApplicable(6). " + ::= { vlanTrunkPortEntry 16 } + +vlanTrunkPortVlansEnabled2k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 1024 through 2047 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 1024 through 1031; the second octet to + VLANs 1032 through 1039; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + If the bit corresponding to a VLAN is set to '1', then the + local system is enabled for sending and receiving frames on + that VLAN; if the bit is set to '0', then the system is disabled + from sending and receiving frames on that VLAN. + The default value is zero length string. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 17 } + +vlanTrunkPortVlansEnabled3k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 2048 through 3071 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 2048 through 2055; the second octet to + VLANs 2056 through 2063; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + If the bit corresponding to a VLAN is set to '1', then the + local system is enabled for sending and receiving frames on + that VLAN; if the bit is set to '0', then the system is disabled + from sending and receiving frames on that VLAN. + The default value is zero length string. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 18 } + +vlanTrunkPortVlansEnabled4k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 3072 through 4095 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 3072 through 3079; the second octet to + VLANs 3080 through 3087; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + If the bit corresponding to a VLAN is set to '1', then the + local system is enabled for sending and receiving frames on + that VLAN; if the bit is set to '0', then the system is disabled + from sending and receiving frames on that VLAN. + The default value is zero length string. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 19 } + +vtpVlansPruningEligible2k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 1024 through 2047 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 1024 through 1031; the second octet to + VLANs 1032 through 1039; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local system is permitted to prune that VLAN on this trunk + port; if the bit is set to '0', then the system must not + prune that VLAN on this trunk port. + The default value is zero length string. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 20 } + +vtpVlansPruningEligible3k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 2048 through 3071 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 2048 through 2055; the second octet to + VLANs 2056 through 2063; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local system is permitted to prune that VLAN on this trunk + port; if the bit is set to '0', then the system must not + prune that VLAN on this trunk port. + The default value is zero length string. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 21 } + +vtpVlansPruningEligible4k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 3072 through 4095 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 3072 through 3079; the second octet to + VLANs 3080 through 3087; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local system is permitted to prune that VLAN on this trunk + port; if the bit is set to '0', then the system must not + prune that VLAN on this trunk port. + The default value is zero length string. + + To avoid conflicts between overlapping partial updates by + multiple managers, i.e., updates which modify only a portion + of an instance of this object (e.g., enable/disable a single + VLAN on the trunk port), any SNMP Set operation accessing an + instance of this object should also write the value of + vlanTrunkPortSetSerialNo." + ::= { vlanTrunkPortEntry 22 } + +vlanTrunkPortVlansXmitJoined2k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 1024 through 2047 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 1024 through 1031; the second octet to + VLANs 1032 through 1039; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then this + VLAN is presently being forwarded on this trunk port, i.e., + it is not pruned; if the bit is set to '0', then this VLAN + is presently not being forwarded on this trunk port, either + because it is pruned or for some other reason." + ::= { vlanTrunkPortEntry 23 } + +vlanTrunkPortVlansXmitJoined3k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 2048 through 3071 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 2048 through 2055; the second octet to + VLANs 2056 through 2063; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then this + VLAN is presently being forwarded on this trunk port, i.e., + it is not pruned; if the bit is set to '0', then this VLAN + is presently not being forwarded on this trunk port, either + because it is pruned or for some other reason." + ::= { vlanTrunkPortEntry 24 } + +vlanTrunkPortVlansXmitJoined4k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 3072 through 4095 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 3072 through 3079; the second octet to + VLANs 3080 through 3087; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then this + VLAN is presently being forwarded on this trunk port, i.e., + it is not pruned; if the bit is set to '0', then this VLAN + is presently not being forwarded on this trunk port, either + because it is pruned or for some other reason." + ::= { vlanTrunkPortEntry 25 } + +vlanTrunkPortVlansRcvJoined2k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 1024 through 2047 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 1024 through 1031; the second octet to + VLANs 1032 through 1039; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local switch is currently sending joins for this VLAN on + this trunk port, i.e., it is asking to receive frames for + this VLAN; if the bit is set to '0', then the local switch + is not currently sending joins for this VLAN on this trunk + port." + ::= { vlanTrunkPortEntry 26 } + +vlanTrunkPortVlansRcvJoined3k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 2048 through 3071 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 2048 through 2055; the second octet to + VLANs 2056 through 2063; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local switch is currently sending joins for this VLAN on + this trunk port, i.e., it is asking to receive frames for + this VLAN; if the bit is set to '0', then the local switch + is not currently sending joins for this VLAN on this trunk + port." + ::= { vlanTrunkPortEntry 27 } + +vlanTrunkPortVlansRcvJoined4k OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string of octets containing one bit per VLAN for VLANS + with VlanIndex values of 3072 through 4095 in the management + domain on this trunk port. The first octet corresponds to VLANs + with VlanIndex values of 3072 through 3079; the second octet to + VLANs 3080 through 3087; etc. The most significant bit of + each octet corresponds to the lowest value VlanIndex in that octet. + + If the bit corresponding to a VLAN is set to '1', then the + local switch is currently sending joins for this VLAN on + this trunk port, i.e., it is asking to receive frames for + this VLAN; if the bit is set to '0', then the local switch + is not currently sending joins for this VLAN on this trunk + port." + ::= { vlanTrunkPortEntry 28 } + +vlanTrunkPortDot1qTunnel OBJECT-TYPE + SYNTAX INTEGER { trunk(1), access(2), disabled(3) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates dot1qtunnel mode of the port. + + If the portDot1qTunnel is set to 'trunk' mode, the port's + vlanTrunkPortDynamicState will be changed to 'onNoNegotiate' + and the vlanTrunkPortEncapsulationType will be set to 'dot1Q'. + These values cannot be changed unless dot1q tunnel is + disabled on this port. + + If the portDot1qTunnel mode is set to 'access' mode, the port's + vlanTrunkPortDynamicState will be set to 'off'.And the value of + vlanTrunkPortDynamicState cannot be changed unless dot1q tunnel + is disabled on this port. 1Q packets received on this access + port will remain. + + Setting the port to dot1q tunnel 'disabled' mode causes the + dot1q tunnel feature to be disabled on this port. This object + can't be set to 'trunk' or 'access' mode, when + vlanTrunkPortsDot1qTag object is set to 'false'." + DEFVAL { disabled } + ::= { vlanTrunkPortEntry 29 } + +vlanTrunkPortSetSerialNo OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An advisory lock used to allow several cooperating SNMPv2 + managers to coordinate their use of the SNMPv2 set operation + acting upon any instance of vlanTrunkPortVlansEnabled." + ::= { vlanTrunkPorts 2 } + +vlanTrunkPortsDot1qTag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An indication of whether the tagging on all VLANs including + native VLAN for all 802.1q trunks is enabled. + + If this object has a value of true(1) then all VLANs including + native VLAN are tagged. If the value is false(2) then all VLANs + excluding native VLAN are tagged." + DEFVAL { false } + ::= { vlanTrunkPorts 3 } + +-- VTP notifications + +vtpNotifications OBJECT IDENTIFIER ::= { ciscoVtpMIB 2 } +vtpNotificationsPrefix + OBJECT IDENTIFIER ::= { vtpNotifications 0 } +vtpNotificationsObjects + OBJECT IDENTIFIER ::= { vtpNotifications 1 } + +vtpConfigRevNumberError NOTIFICATION-TYPE + OBJECTS { managementDomainConfigRevNumber } + STATUS current + DESCRIPTION + "A configuration revision number error notification + signifies that a device has incremented its + vtpConfigRevNumberErrors counter. + + Generation of this notification is suppressed if the + vtpNotificationsEnabled has the value 'false'. + + The device must throttle the generation of consecutive + vtpConfigRevNumberError notifications so that there is at + least a five-second gap between notification of this type. + When notification are throttled, they are dropped, not + queued for sending at a future time. (Note that + 'generating' a notification means sending to all configured + recipients.)" + ::= { vtpNotificationsPrefix 1 } + +vtpConfigDigestError NOTIFICATION-TYPE + OBJECTS { managementDomainConfigRevNumber } + STATUS current + DESCRIPTION + "A configuration digest error notification signifies that a + device has incremented its vtpConfigDigestErrors counter. + + Generation of this notification is suppressed if the + vtpNotificationsEnabled has the value 'false'. + + The device must throttle the generation of consecutive + vtpConfigDigestError notifications so that there is at least + a five-second gap between notification of this type. When + notification are throttled, they are dropped, not queued for + sending at a future time. (Note that 'generating' a + notification means sending to all configured recipients.)" + ::= { vtpNotificationsPrefix 2 } + +vtpServerDisabled NOTIFICATION-TYPE + OBJECTS { managementDomainConfigRevNumber, vtpMaxVlanStorage } + STATUS current + DESCRIPTION + "A VTP Server disabled notification is generated when the + local system is no longer able to function as a VTP Server + because the number of defined VLANs is greater than + vtpMaxVlanStorage. + + Generation of this notification is suppressed if the + vtpNotificationsEnabled has the value 'false'." + ::= { vtpNotificationsPrefix 3 } + +vtpMtuTooBig NOTIFICATION-TYPE + OBJECTS { vlanTrunkPortManagementDomain, vtpVlanState } + STATUS current + DESCRIPTION + "A VTP MTU tooBig notification is generated when a VLAN's + MTU size is larger than can be supported either: + + - by one or more of its trunk ports: + the included vtpVlanState has the value + 'mtuTooBigForTrunk' and the included + vlanTrunkPortManagementDomain is for the first (or only) + trunk port, + or + + - by the device itself: + vtpVlanState has the value 'mtuTooBigForDevice' and any + instance of vlanTrunkPortManagementDomain is included. + + Devices which have no trunk ports do not send vtpMtuTooBig + notifications. + + Generation of this notification is suppressed if the + vtpNotificationsEnabled has the value 'false'." + ::= { vtpNotificationsPrefix 4 } + +vtpVlanRingNumberConfigConflict NOTIFICATION-TYPE + OBJECTS { vtpVlanIndex, vtpVlanRingNumber, + ifIndex, vtpVlanPortLocalSegment } + STATUS current + DESCRIPTION + "A VTP ring number configuration conflict notification is + generated if, and only at the time when, a device learns of + a conflict between: + + a) the ring number (vtpVlanPortLocalSegment) being used on a + token ring segment attached to the port identified by + ifIndex, and + + b) the VTP-obtained ring number (vtpVlanRingNumber) for the + VLAN identified by vtpVlanIndex. + + When such a conflict occurs, the bridge port is put into an + administrative down position until the conflict is resolved + through local/network management intervention. + + This notification is only applicable to VLANs of type + 'tokenRing'." + ::= { vtpNotificationsPrefix 5 } + +vtpVersionOneDeviceDetected NOTIFICATION-TYPE + OBJECTS { vlanTrunkPortManagementDomain } + STATUS current + DESCRIPTION + "A VTP version one device detected notification is + generated by a device when: + + a) a management domain has been put into version 2 mode + (as accessed by managementDomainVersionInUse). + b) 15 minutes has passed since a). + c) a version 1 PDU is detected on a trunk on the device + that is in that management domain which has a lower + revision number than the current configuration." + ::= { vtpNotificationsPrefix 6 } + +vlanTrunkPortDynamicStatusChange NOTIFICATION-TYPE + OBJECTS {vlanTrunkPortDynamicStatus} + STATUS current + DESCRIPTION + "A vlanTrunkPortDynamicStatusChange notification is + generated by a device when the value of + vlanTrunkPortDynamicStatus object has been changed." + ::= { vtpNotificationsPrefix 7 } + +vtpVlanPortLocalSegment OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ring (segment) number in use on a 802.5 ring. For + bridges supporting RFC 1525, this value is the same as given + by dot1dSrPortLocalSegment for the bridge port attached to + that ring. When tokenRing VLANs are in use, each 'trNet' + VLAN can/does have a different instance of + dot1dSrPortLocalSegment for each physical port. Note that + access to the particuler instance of dot1dSrPortLocalSegment + requires knowledge of how the agent supports the multiple + 'contexts' required to implement RFC 1525 for multiple + VLANs; also note that the assignment of ifIndex values may + be different in different 'contexts'." + ::= { vtpNotificationsObjects 1 } + +-- Conformance Information + +vtpMIBConformance + OBJECT IDENTIFIER ::= { ciscoVtpMIB 3 } + +vtpMIBCompliances + OBJECT IDENTIFIER ::= { vtpMIBConformance 1 } +vtpMIBGroups OBJECT IDENTIFIER ::= { vtpMIBConformance 2 } + +-- compliance statements + +vtpMIBCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for VTP implementations." + MODULE -- this module + MANDATORY-GROUPS { vtpBasicGroup, + vtpVlanInfoGroup, +-- vtpConfigNotificationsGroup, + vtpStatsGroup, + vtpTrunkPortGroup + } + + OBJECT managementDomainRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortManagementDomain + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortEncapsulationType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortNativeVlan + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpVlanInfoEditGroup + DESCRIPTION + "This group must be implemented by VTP Servers. + VTP Clients need not implement these objects, and + must not allow VLANs to be created, modified, or + destroyed using these objects." + + ::= { vtpMIBCompliances 1 } + +vtpMIBCompliance2 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for VTP implementations." + MODULE -- this module + MANDATORY-GROUPS { vtpBasicGroup, + vtpVlanInfoGroup, +-- vtpConfigNotificationsGroup, + vtpStatsGroup, + vtpTrunkPortGroup + } + + OBJECT managementDomainRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortManagementDomain + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortEncapsulationType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortNativeVlan + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpVlanInfoEditGroup + DESCRIPTION + "This group must be implemented by VTP Servers. + VTP Clients need not implement these objects, and + must not allow VLANs to be created, modified, or + destroyed using these objects." + + GROUP vtp4kVlanGroup + DESCRIPTION + "This group must be implemented by the VTP Servers + which support the range of VlanIndex between 1024 + and 4095." + ::= { vtpMIBCompliances 2 } + +vtpMIBCompliance3 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for VTP implementations." + MODULE -- this module + MANDATORY-GROUPS { vtpBasicGroup, + vtpVlanInfoGroup, +-- vtpConfigNotificationsGroup, + vtpStatsGroup, + vtpTrunkPortGroup + } + + OBJECT managementDomainRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortManagementDomain + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortEncapsulationType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortNativeVlan + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpVlanInfoEditGroup + DESCRIPTION + "This group must be implemented by VTP Servers. + VTP Clients need not implement these objects, and + must not allow VLANs to be created, modified, or + destroyed using these objects." + + GROUP vtp4kVlanGroup + DESCRIPTION + "This group must be implemented by the VTP Servers + which support the range of VlanIndex between 1024 + and 4095." + + GROUP vtpDot1qTunnelGroup + DESCRIPTION + "This group is mandatory for all the ports which + implement dot1qtunnel feature." + + OBJECT vlanTrunkPortDot1qTunnel + MIN-ACCESS read-only + DESCRIPTION + "This object is read-only for interface which doesn't + support dot1q tunnel feature." + + ::= { vtpMIBCompliances 3 } + +vtpMIBCompliance4 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for VTP implementations." + MODULE -- this module + MANDATORY-GROUPS { vtpBasicGroup, + vtpVlanInfoGroup, +-- vtpConfigNotificationsGroup, + vtpStatsGroup, + vtpTrunkPortGroup + } + + OBJECT managementDomainRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortManagementDomain + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortEncapsulationType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortNativeVlan + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpVlanInfoEditGroup + DESCRIPTION + "This group must be implemented by VTP Servers. + VTP Clients need not implement these objects, and + must not allow VLANs to be created, modified, or + destroyed using these objects." + + GROUP vtp4kVlanGroup + DESCRIPTION + "This group must be implemented by the VTP Servers + which support the range of VlanIndex between 1024 + and 4095." + + GROUP vtpDot1qTunnelGroup + DESCRIPTION + "This group is mandatory for all the ports which + implement dot1qtunnel feature." + + OBJECT vlanTrunkPortDot1qTunnel + MIN-ACCESS read-only + DESCRIPTION + "This object is read-only for interface which doesn't + support dot1q tunnel feature." + + GROUP vtpVlanIfIndexGroup + DESCRIPTION + "This group is an optional group containing + objects providing information about the mapping + of VLAN ID to its corresponding IfIndex." + + ::= { vtpMIBCompliances 4 } + +vtpMIBCompliance5 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "The compliance statement for VTP implementations." + MODULE -- this module + MANDATORY-GROUPS { vtpBasicGroup, + vtpVlanInfoGroup, +-- vtpConfigNotificationsGroup, + vtpStatsGroup, + vtpTrunkPortGroup, + vtpVersion2BasicGroup + } + + OBJECT managementDomainRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT managementDomainName + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainLocalMode + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainTftpServer + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainTftpPathname + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainVersionInUse + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT vlanTrunkPortManagementDomain + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortEncapsulationType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortNativeVlan + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpVlanInfoEditGroup + DESCRIPTION + "This group must be implemented by VTP Servers. + VTP Clients need not implement these objects, and + must not allow VLANs to be created, modified, or + destroyed using these objects." + + GROUP vtp4kVlanGroup + DESCRIPTION + "This group must be implemented by the VTP Servers + which support the range of VlanIndex between 1024 + and 4095." + + GROUP vtpDot1qTunnelGroup + DESCRIPTION + "This group is mandatory for all the ports which + implement dot1qtunnel feature." + + OBJECT vlanTrunkPortDot1qTunnel + MIN-ACCESS read-only + DESCRIPTION + "This object is read-only for interface which doesn't + support dot1q tunnel feature." + + GROUP vtpVlanIfIndexGroup + DESCRIPTION + "This group is an optional group containing + objects providing information about the mapping + of VLAN ID to its corresponding IfIndex." + + GROUP vtpVlanInfoEditGroup2 + DESCRIPTION + "This group is mandatory for devices which only support + one VLAN editing for each 'apply' operation." + + ::= { vtpMIBCompliances 5 } + +vtpMIBCompliance6 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for VTP implementations." + MODULE -- this module + MANDATORY-GROUPS { vtpBasicGroup, + vtpVlanInfoGroup, + vtpConfigNotificationsGroup, + vtpStatsGroup, + vtpTrunkPortGroup, + vtpVersion2BasicGroup, + vtpNotificationObjectsGroup + } + + OBJECT managementDomainRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT vlanTrunkPortRowStatus + SYNTAX INTEGER { active(1)} -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one + of the six enumerated values for the + RowStatus textual convention need be + supported, specifically: active(1)." + + OBJECT managementDomainName + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainLocalMode + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainTftpServer + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainTftpPathname + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT managementDomainVersionInUse + MIN-ACCESS read-only + DESCRIPTION "This object is read-only if vtpVersion + is none(3)." + + OBJECT vlanTrunkPortManagementDomain + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortEncapsulationType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vlanTrunkPortNativeVlan + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpVlanInfoEditGroup + DESCRIPTION + "This group must be implemented by VTP Servers. + VTP Clients need not implement these objects, and + must not allow VLANs to be created, modified, or + destroyed using these objects." + + GROUP vtp4kVlanGroupRev1 + DESCRIPTION + "This group must be implemented by the VTP Servers + which support the range of VlanIndex between 1024 + and 4095." + + OBJECT vtpVlanEditTypeExt2 + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + GROUP vtpDot1qTunnelGroup + DESCRIPTION + "This group is mandatory for all the ports which + implement dot1qtunnel feature." + + OBJECT vlanTrunkPortDot1qTunnel + MIN-ACCESS read-only + DESCRIPTION + "This object is read-only for interface which doesn't + support dot1q tunnel feature." + + GROUP vtpVlanIfIndexGroup + DESCRIPTION + "This group is an optional group containing + objects providing information about the mapping + of VLAN ID to its corresponding IfIndex." + + GROUP vtpVlanInfoEditGroup2 + DESCRIPTION + "This group is mandatory for devices which only support + one VLAN editing for each 'apply' operation." + + ::= { vtpMIBCompliances 6 } + +-- units of conformance + +vtpBasicGroup OBJECT-GROUP + OBJECTS { vtpVersion, vtpMaxVlanStorage, + vtpNotificationsEnabled, + managementDomainName, managementDomainLocalMode, + managementDomainConfigRevNumber, + managementDomainLastUpdater, + managementDomainLastChange, + managementDomainTftpServer, + managementDomainTftpPathname, + managementDomainRowStatus } + STATUS current + DESCRIPTION + "A collection of objects providing basic status and control + of a VTP implementation." + ::= { vtpMIBGroups 1 } + +vtpVlanInfoGroup OBJECT-GROUP + OBJECTS { vtpVlanState, vtpVlanType, vtpVlanName, + vtpVlanMtu, vtpVlanDot10Said, + vtpVlanRingNumber, vtpVlanBridgeNumber, + vtpVlanStpType, vtpVlanParentVlan, + vtpVlanTranslationalVlan1, + vtpVlanTranslationalVlan2, + vtpVlanBridgeType, vtpVlanAreHopCount, + vtpVlanSteHopCount, vtpVlanIsCRFBackup } + STATUS current + DESCRIPTION + "A collection of objects for monitoring VLAN information." + ::= { vtpMIBGroups 13 } + +vtpVlanInfoEditGroup OBJECT-GROUP + OBJECTS { vtpVlanEditOperation, vtpVlanApplyStatus, + vtpVlanEditBufferOwner, vtpVlanEditConfigRevNumber, + vtpVlanEditState, vtpVlanEditType, vtpVlanEditName, + vtpVlanEditMtu, vtpVlanEditDot10Said, + vtpVlanEditRingNumber, vtpVlanEditBridgeNumber, + vtpVlanEditStpType, vtpVlanEditParentVlan, + vtpVlanEditRowStatus, + vtpVlanEditTranslationalVlan1, + vtpVlanEditTranslationalVlan2, + vtpVlanEditBridgeType, vtpVlanEditAreHopCount, + vtpVlanEditSteHopCount, vtpVlanEditIsCRFBackup } + STATUS current + DESCRIPTION + "A collection of objects for editing VLAN information in VTP + Servers." + ::= { vtpMIBGroups 14 } + +vtpStatsGroup OBJECT-GROUP + OBJECTS { vtpInSummaryAdverts, vtpInSubsetAdverts, + vtpInAdvertRequests, vtpOutSummaryAdverts, + vtpOutSubsetAdverts, vtpOutAdvertRequests, + vtpConfigRevNumberErrors, vtpConfigDigestErrors } + STATUS current + DESCRIPTION + "A collection of objects providing VTP statistics." + ::= { vtpMIBGroups 4 } + +vtpTrunkPortGroup OBJECT-GROUP + OBJECTS { vlanTrunkPortManagementDomain, + vlanTrunkPortEncapsulationType, + vlanTrunkPortVlansEnabled, + vlanTrunkPortNativeVlan, + vlanTrunkPortRowStatus, + vlanTrunkPortSetSerialNo } + STATUS current + DESCRIPTION + "A collection of objects providing information on trunk + ports." + ::= { vtpMIBGroups 5 } + +vtpTrunkPortGroup2 OBJECT-GROUP + OBJECTS { vlanTrunkPortDynamicState, vlanTrunkPortDynamicStatus, + vlanTrunkPortVtpEnabled } + STATUS current + DESCRIPTION + " Additional functionality added to the + vlanTrunkPortTable. " + ::= { vtpMIBGroups 11 } + +vtpTrunkPortGroup3 OBJECT-GROUP + OBJECTS { vlanTrunkPortEncapsulationOperType } + STATUS current + DESCRIPTION + " Additional functionality added to the + vlanTrunkPortTable. " + ::= { vtpMIBGroups 15 } + +vtpTrunkPruningGroup OBJECT-GROUP + OBJECTS { vlanTrunkPortInJoins, vlanTrunkPortOutJoins, + vlanTrunkPortOldAdverts, + vlanTrunkPortVlansPruningEligible, + vlanTrunkPortVlansXmitJoined, + vlanTrunkPortVlansRcvJoined } + STATUS current + DESCRIPTION + "A collection of objects providing information on VLAN + pruning." + ::= { vtpMIBGroups 7 } + +vtpTrunkPruningGroup2 OBJECT-GROUP + OBJECTS { managementDomainPruningState } + STATUS current + DESCRIPTION + "A collection of object providing information on whether + VLAN pruning is enabled." + ::= { vtpMIBGroups 10 } + +vtpVersion2BasicGroup OBJECT-GROUP + OBJECTS { managementDomainVersionInUse } + STATUS current + DESCRIPTION + " The object required to indicate the version of VTP in + use by a management domain." + ::= { vtpMIBGroups 12 } + + vtpConfigNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { vtpConfigDigestError, + vtpConfigRevNumberError, + vtpServerDisabled, + vtpMtuTooBig, + vtpVlanRingNumberConfigConflict, + vtpVersionOneDeviceDetected, + vlanTrunkPortDynamicStatusChange } + STATUS current + DESCRIPTION + "The notifications which a VTP implementation is + required to implement." + ::= { vtpMIBGroups 6 } + +vtp4kVlanGroup OBJECT-GROUP + OBJECTS { vtpVlanTypeExt, + vtpVlanEditTypeExt, + vlanTrunkPortVlansEnabled2k, + vlanTrunkPortVlansEnabled3k, + vlanTrunkPortVlansEnabled4k, + vtpVlansPruningEligible2k, + vtpVlansPruningEligible3k, + vtpVlansPruningEligible4k, + vlanTrunkPortVlansXmitJoined2k, + vlanTrunkPortVlansXmitJoined3k, + vlanTrunkPortVlansXmitJoined4k, + vlanTrunkPortVlansRcvJoined2k, + vlanTrunkPortVlansRcvJoined3k, + vlanTrunkPortVlansRcvJoined4k } + STATUS deprecated + DESCRIPTION + "A collection of objects providing information + for VLANS with VlanIndex from 1024 to 4095." + ::= { vtpMIBGroups 16 } + +vtpDot1qTunnelGroup OBJECT-GROUP + OBJECTS { vlanTrunkPortsDot1qTag, + vlanTrunkPortDot1qTunnel} + STATUS current + DESCRIPTION + "A collection of objects providing information + for dot1qtunnel feature." + ::= { vtpMIBGroups 17 } + +vtpVlanIfIndexGroup OBJECT-GROUP + OBJECTS { vtpVlanIfIndex } + STATUS current + DESCRIPTION + "A collection of objects providing information + for mapping of VLAN ID to its corresponding + ifIndex." + ::= { vtpMIBGroups 18 } + +vtpVlanInfoEditGroup2 OBJECT-GROUP + OBJECTS { vtpVlanEditModifiedVlan } + STATUS current + DESCRIPTION + "A collection of objects for editing VLAN information when + only one VLAN is allowed to be edited for each 'apply' + operation." + ::= { vtpMIBGroups 19 } + +vtp4kVlanGroupRev1 OBJECT-GROUP + OBJECTS { vtpVlanTypeExt, + vtpVlanEditTypeExt2, + vlanTrunkPortVlansEnabled2k, + vlanTrunkPortVlansEnabled3k, + vlanTrunkPortVlansEnabled4k, + vtpVlansPruningEligible2k, + vtpVlansPruningEligible3k, + vtpVlansPruningEligible4k, + vlanTrunkPortVlansXmitJoined2k, + vlanTrunkPortVlansXmitJoined3k, + vlanTrunkPortVlansXmitJoined4k, + vlanTrunkPortVlansRcvJoined2k, + vlanTrunkPortVlansRcvJoined3k, + vlanTrunkPortVlansRcvJoined4k } + STATUS current + DESCRIPTION + "A collection of objects providing information + for VLANS with VlanIndex from 1024 to 4095." + ::= { vtpMIBGroups 20 } + +vtpNotificationObjectsGroup OBJECT-GROUP + OBJECTS { vtpVlanPortLocalSegment } + STATUS current + DESCRIPTION + "A collection of objects included in VTP notifications." + ::= { vtpMIBGroups 21 } + +END diff --git a/pandora_console/attachment/mibs/CLNS-MIB b/pandora_console/attachment/mibs/CLNS-MIB new file mode 100644 index 0000000000..9b1c686cce --- /dev/null +++ b/pandora_console/attachment/mibs/CLNS-MIB @@ -0,0 +1,1309 @@ +-- Changes to rfc1238 (CLNS MIB): +-- Changed RFC-1213 to RFC1213-MIB +-- Changed clnpMediaToNetNetAddress in definition of sequence +-- ClnpMediaToNetEntry to clnpMediaToNetAddress +-- Changed definitions and references of clnpRoutingTable +-- to clnpRouteTable +-- dperkins@scruznet.com + + CLNS-MIB DEFINITIONS ::= BEGIN + + -- RFC 1238 + -- June 91 + + IMPORTS + experimental, Counter + FROM RFC1155-SMI + PhysAddress + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- This MIB module uses the extended OBJECT-TYPE macro as + -- defined in [9] + + + -- the CLNS MIB module + + clns OBJECT IDENTIFIER ::= { experimental 1 } + + + -- textual conventions + + ClnpAddress ::= + OCTET STRING (SIZE (1..21)) + -- This data type is used to model NSAP addresses. + + + -- groups in the CLNS MIB + + clnp OBJECT IDENTIFIER ::= { clns 1 } + + error OBJECT IDENTIFIER ::= { clns 2 } + + echo OBJECT IDENTIFIER ::= { clns 3 } + + es-is OBJECT IDENTIFIER ::= { clns 4 } + + + -- the CLNP group + + -- Implementation of this group is recommended for all + -- systems which implement the CLNP. + + clnpForwarding OBJECT-TYPE + SYNTAX INTEGER { + is(1), -- entity is an intermediate system + + -- entity is an end system and does + es(2) -- not forward PDUs + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The indication of whether this entity is active + as an intermediate or end system. Only + intermediate systems will forward PDUs onward that + are not addressed to them." + ::= { clnp 1 } + + clnpDefaultLifeTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default value inserted into the Lifetime + field of the CLNP PDU header of PDUs sourced by + this entity." + ::= { clnp 2 } + + clnpInReceives OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of input PDUs received from all + connected network interfaces running CLNP, + including errors." + ::= { clnp 3 } + + clnpInHdrErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input PDUs discarded due to errors + in the CLNP header, including bad checksums, + version mismatch, lifetime exceeded, errors + discovered in processing options, etc." + ::= { clnp 4 } + + clnpInAddrErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input PDUs discarded because the + NSAP address in the CLNP header's destination + field was not a valid NSAP to be received at this + entity. This count includes addresses not + understood. For end systems, this is a count of + PDUs which arrived with a destination NSAP which + was not local." + ::= { clnp 5 } + + clnpForwPDUs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input PDUs for which this entity + was not the final destination and which an attempt + was made to forward them onward." + ::= { clnp 6 } + + clnpInUnknownNLPs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of locally-addressed PDUs successfully + received but discarded because the network layer + protocol was unknown or unsupported (e.g., not + CLNP or ES-IS)." + ::= { clnp 7 } + + clnpInUnknownULPs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of locally-addressed PDUs successfully + received but discarded because the upper layer + protocol was unknown or unsupported (e.g., not + TP4)." + ::= { clnp 8 } + + clnpInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input CLNP PDUs for which no + problems were encountered to prevent their + continued processing, but were discarded (e.g., + for lack of buffer space). Note that this counter + does not include any PDUs discarded while awaiting + re-assembly." + ::= { clnp 9 } + + clnpInDelivers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of input PDUs successfully + delivered to the CLNS transport user." + ::= { clnp 10 } + + clnpOutRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of CLNP PDUs which local CLNS + user protocols supplied to CLNP for transmission + requests. This counter does not include any PDUs + counted in clnpForwPDUs." + ::= { clnp 11 } + + clnpOutDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of output CLNP PDUs for which no other + problem was encountered to prevent their + transmission but were discarded (e.g., for lack of + buffer space). Note this counter includes PDUs + counted in clnpForwPDUs." + ::= { clnp 12 } + + clnpOutNoRoutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDUs discarded because no + route could be found to transmit them to their + destination. This counter includes any PDUs + counted in clnpForwPDUs." + ::= { clnp 13 } + + clnpReasmTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of seconds which received + segments are held while they are awaiting + reassembly at this entity." + ::= { clnp 14 } + + clnpReasmReqds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP segments received which needed + to be reassembled at this entity." + ::= { clnp 15 } + + clnpReasmOKs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDUs successfully re-assembled + at this entity." + ::= { clnp 16 } + + clnpReasmFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of failures detected by the CLNP + reassembly algorithm (for any reason: timed out, + buffer size, etc)." + ::= { clnp 17 } + + clnpSegOKs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDUs that have been + successfully segmented at this entity." + ::= { clnp 18 } + + clnpSegFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDUs that have been discarded + because they needed to be fragmented at this + entity but could not." + ::= { clnp 19 } + + clnpSegCreates OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDU segments that have been + generated as a result of segmentation at this + entity." + ::= { clnp 20 } + + clnpInOpts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDU segments that have been + input with options at this entity." + ::= { clnp 25 } + + clnpOutOpts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP PDU segments that have been + generated with options by this entity." + ::= { clnp 26 } + + clnpRoutingDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of routing entries which were chosen + to be discarded even though they are valid. One + possible reason for discarding such an entry could + be to free-up buffer space for other routing + entries." + ::= { clnp 27 } + + + -- the CLNP Interfaces table + + -- The CLNP interfaces table contains information on the + -- entity's interfaces which are running the CLNP. + + clnpAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF ClnpAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of addressing information relevant to + this entity's CLNP addresses. " + ::= { clnp 21 } + + clnpAddrEntry OBJECT-TYPE + SYNTAX ClnpAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The addressing information for one of this + entity's CLNP addresses." + INDEX { clnpAdEntAddr } + ::= { clnpAddrTable 1 } + + ClnpAddrEntry ::= + SEQUENCE { + clnpAdEntAddr + ClnpAddress, + clnpAdEntIfIndex + INTEGER, + clnpAdEntReasmMaxSize + INTEGER (0..65535) + } + + clnpAdEntAddr OBJECT-TYPE + SYNTAX ClnpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The CLNP address to which this entry's addressing + information pertains." + ::= { clnpAddrEntry 1 } + + clnpAdEntIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + interface to which this entry is applicable. The + interface identified by a particular value of this + index is the same interface as identified by the + same value of ifIndex." + ::= { clnpAddrEntry 2 } + + clnpAdEntReasmMaxSize OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the largest CLNP PDU which this + entity can re-assemble from incoming CLNP + segmented PDUs received on this interface." + ::= { clnpAddrEntry 3 } + + + -- The CLNP Routing table + + -- The CLNP routing table contains an entry for each route + -- known to the entity. + + clnpRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF ClnpRouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This entity's CLNP routing table." + ::= { clnp 22 } + + clnpRouteEntry OBJECT-TYPE + SYNTAX ClnpRouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A route to a particular destination." + INDEX { clnpRouteDest } + ::= { clnpRouteTable 1 } + + ClnpRouteEntry ::= + SEQUENCE { + clnpRouteDest + ClnpAddress, + clnpRouteIfIndex + INTEGER, + clnpRouteMetric1 + INTEGER, + clnpRouteMetric2 + INTEGER, + clnpRouteMetric3 + INTEGER, + clnpRouteMetric4 + INTEGER, + clnpRouteNextHop + ClnpAddress, + clnpRouteType + INTEGER, + clnpRouteProto + INTEGER, + clnpRouteAge + INTEGER, + clnpRouteMetric5 + INTEGER, + clnpRouteInfo + OBJECT IDENTIFIER + } + + clnpRouteDest OBJECT-TYPE + SYNTAX ClnpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The destination CLNP address of this route." + ::= { clnpRouteEntry 1 } + + clnpRouteIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + local interface through which the next hop of this + route should be reached. The interface identified + by a particular value of this index is the same as + identified by the same value of ifIndex." + ::= { clnpRouteEntry 2 } + + clnpRouteMetric1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The primary routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + clnpRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { clnpRouteEntry 3 } + + clnpRouteMetric2 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + clnpRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { clnpRouteEntry 4 } + + clnpRouteMetric3 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + clnpRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { clnpRouteEntry 5 } + + clnpRouteMetric4 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + clnpRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { clnpRouteEntry 6 } + + clnpRouteNextHop OBJECT-TYPE + SYNTAX ClnpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The CLNP address of the next hop of this route." + ::= { clnpRouteEntry 7 } + + clnpRouteType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + invalid(2), -- an invalidated route + + -- route to directly + direct(3), -- connected (sub-)network + + -- route to a non-local + remote(4) -- host/network/sub-network + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of route. + + Setting this object to the value invalid(2) has + the effect of invaliding the corresponding entry + in the clnpRoutingTable. That is, it effectively + dissasociates the destination identified with said + entry from the route identified with said entry. + It is an implementation-specific matter as to + whether the agent removes an invalidated entry + from the table. Accordingly, management stations + must be prepared to receive tabular information + from agents that corresponds to entries not + currently in use. Proper interpretation of such + entries requires examination of the relevant + clnpRouteType object." + ::= { clnpRouteEntry 8 } + + clnpRouteProto OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + -- non-protocol information + -- e.g., manually + local(2), -- configured entries + + -- set via a network + netmgmt(3), -- management protocol + + -- similar to ipRouteProto but + -- omits several IP-specific + -- protocols + + is-is(9), + ciscoIgrp(11), + bbnSpfIgp(12), + ospf(13), + bgp(14) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The routing mechanism via which this route was + learned. Inclusion of values for gateway routing + protocols is not intended to imply that hosts + should support those protocols." + ::= { clnpRouteEntry 9 } + + clnpRouteAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds since this route was last + updated or otherwise determined to be correct. + Note that no semantics of `too old' can be implied + except through knowledge of the routing protocol + by which the route was learned." + ::= { clnpRouteEntry 10 } + + clnpRouteMetric5 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + clnpRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { clnpRouteEntry 11 } + + clnpRouteInfo OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A reference to MIB definitions specific to the + particular routing protocol which is responsible + for this route, as determined by the value + specified in the route's clnpRouteProto value. If + this information is not present, its value should + be set to the OBJECT IDENTIFIER { 0 0 }, which is + a syntatically valid object identifier, and any + conformant implementation of ASN.1 and BER must be + able to generate and recognize this value." + ::= { clnpRouteEntry 12 } + + + -- the CLNP Address Translation table + + -- The Address Translation tables contain the CLNP address + -- to physical address equivalences. Some interfaces do not + -- use translation tables for determining address + -- equivalences; if all interfaces are of this type, then the + -- Address Translation table is empty, i.e., has zero + -- entries. + + clnpNetToMediaTable OBJECT-TYPE + SYNTAX SEQUENCE OF ClnpNetToMediaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The CLNP Address Translation table used for + mapping from CLNP addresses to physical + addresses." + ::= { clnp 23 } + + clnpNetToMediaEntry OBJECT-TYPE + SYNTAX ClnpNetToMediaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry contains one CLNP address to + `physical' address equivalence." + INDEX { clnpNetToMediaIfIndex, clnpNetToMediaNetAddress } + ::= { clnpNetToMediaTable 1 } + + ClnpNetToMediaEntry ::= + SEQUENCE { + clnpNetToMediaIfIndex + INTEGER, + clnpNetToMediaPhysAddress + PhysAddress, + clnpNetToMediaNetAddress + ClnpAddress, + clnpNetToMediaType + INTEGER, + clnpNetToMediaAge + INTEGER, + clnpNetToMediaHoldTime + INTEGER + } + + clnpNetToMediaIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The interface on which this entry's equivalence + is effective. The interface identified by a + particular value of this index is the same + interface as identified by the same value of + ifIndex." + ::= { clnpNetToMediaEntry 1 } + + clnpNetToMediaPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The media-dependent `physical' address." + ::= { clnpNetToMediaEntry 2 } + + clnpNetToMediaNetAddress OBJECT-TYPE + SYNTAX ClnpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The CLNP address corresponding to the media- + dependent `physical' address." + ::= { clnpNetToMediaEntry 3 } + + clnpNetToMediaType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + invalid(2), -- an invalidated mapping + dynamic(3), + static(4) + } + + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of mapping. + + Setting this object to the value invalid(2) has + the effect of invalidating the corresponding entry + in the clnpNetToMediaTable. That is, it + effectively dissassociates the interface + identified with said entry from the mapping + identified with said entry. It is an + implementation-specific matter as to whether the + agent removes an invalidated entry from the table. + Accordingly, management stations must be prepared + to receive tabular information from agents that + corresponds to entries not currently in use. + Proper interpretation of such entries requires + examination of the relevant clnpNetToMediaType + object." + ::= { clnpNetToMediaEntry 4 } + + clnpNetToMediaAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds since this entry was last + updated or otherwise determined to be correct. + Note that no semantics of `too old' can be implied + except through knowledge of the type of entry." + ::= { clnpNetToMediaEntry 5 } + + clnpNetToMediaHoldTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The time in seconds this entry will be valid. + Static entries should always report this field as + -1." + ::= { clnpNetToMediaEntry 6 } + + clnpMediaToNetTable OBJECT-TYPE + SYNTAX SEQUENCE OF ClnpMediaToNetEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The CLNP Address Translation table used for + mapping from physical addresses to CLNP + addresses." + ::= { clnp 24 } + + clnpMediaToNetEntry OBJECT-TYPE + SYNTAX ClnpMediaToNetEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry contains on ClnpAddress to `physical' + address equivalence." + INDEX { clnpMediaToNetIfIndex, clnpMediaToNetPhysAddress } + ::= { clnpMediaToNetTable 1 } + + ClnpMediaToNetEntry ::= + SEQUENCE { + clnpMediaToNetIfIndex + INTEGER, + clnpMediaToNetAddress + ClnpAddress, + clnpMediaToNetPhysAddress + PhysAddress, + clnpMediaToNetType + INTEGER, + clnpMediaToNetAge + INTEGER, + clnpMediaToNetHoldTime + INTEGER + } + + clnpMediaToNetIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The interface on which this entry's equivalence + is effective. The interface identified by a + particular value of this index is the same + interface as identified by the same value of + ifIndex." + ::= { clnpMediaToNetEntry 1 } + + clnpMediaToNetAddress OBJECT-TYPE + SYNTAX ClnpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The ClnpAddress corresponding to the media- + dependent `physical' address." + ::= { clnpMediaToNetEntry 2 } + + clnpMediaToNetPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The media-dependent `physical' address." + ::= { clnpMediaToNetEntry 3 } + + clnpMediaToNetType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + invalid(2), -- an invalidated mapping + dynamic(3), + static(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of mapping. + + Setting this object to the value invalid(2) has + the effect of invalidating the corresponding entry + in the clnpMediaToNetTable. That is, it + effectively dissassociates the interface + identified with said entry from the mapping + identified with said entry. It is an + implementation-specific matter as to whether the + agent removes an invalidated entry from the table. + Accordingly, management stations must be prepared + to receive tabular information from agents that + corresponds to entries not currently in use. + Proper interpretation of such entries requires + examination of the relevant clnpMediaToNetType + object." + ::= { clnpMediaToNetEntry 4 } + + clnpMediaToNetAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds since this entry was last + updated or otherwise determined to be correct. + Note that no semantics of `too old' can be implied + except through knowledge of the type of entry." + ::= { clnpMediaToNetEntry 5 } + + clnpMediaToNetHoldTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The time in seconds this entry will be valid. + Static entries should always report this field as + -1." + ::= { clnpMediaToNetEntry 6 } + + + -- the CLNP Error group + + -- Implementation of this group is recommended for all + -- systems which implement the CLNP Error protocol. + + clnpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP Error PDUs received by this + entity." + ::= { error 1 } + + clnpOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of CLNP Error PDUs sent by this + entity." + ::= { error 2 } + + clnpInErrUnspecs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unspecified CLNP Error PDUs + received by this entity." + ::= { error 3 } + + clnpInErrProcs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of protocol procedure CLNP Error PDUs + received by this entity." + ::= { error 4 } + + clnpInErrCksums OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of checksum CLNP Error PDUs received + by this entity." + ::= { error 5 } + + clnpInErrCongests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of congestion drop CLNP Error PDUs + received by this entity." + ::= { error 6 } + + clnpInErrHdrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of header syntax CLNP Error PDUs + received by this entity." + ::= { error 7 } + + clnpInErrSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of segmentation disallowed CLNP Error + PDUs received by this entity." + ::= { error 8 } + + clnpInErrIncomps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of incomplete PDU CLNP Error PDUs + received by this entity." + ::= { error 9 } + + clnpInErrDups OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of duplicate option CLNP Error PDUs + received by this entity." + ::= { error 10 } + + clnpInErrUnreachDsts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unreachable destination CLNP Error + PDUs received by this entity." + ::= { error 11 } + + clnpInErrUnknownDsts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unknown destination CLNP Error PDUs + received by this entity." + ::= { error 12 } + + clnpInErrSRUnspecs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unspecified source route CLNP Error + PDUs received by this entity." + ::= { error 13 } + + clnpInErrSRSyntaxes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of source route syntax CLNP Error PDUs + received by this entity." + ::= { error 14 } + + clnpInErrSRUnkAddrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of source route unknown address CLNP + Error PDUs received by this entity." + ::= { error 15 } + + clnpInErrSRBadPaths OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of source route bad path CLNP Error + PDUs received by this entity." + ::= { error 16 } + + clnpInErrHops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of hop count exceeded CLNP Error PDUs + received by this entity." + ::= { error 17 } + + clnpInErrHopReassms OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of hop count exceeded while + reassembling CLNP Error PDUs received by this + entity." + ::= { error 18 } + + clnpInErrUnsOptions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported option CLNP Error PDUs + received by this entity." + ::= { error 19 } + + clnpInErrUnsVersions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of version mismatch CLNP Error PDUs + received by this entity." + ::= { error 20 } + + clnpInErrUnsSecurities OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported security option CLNP + Error PDUs received by this entity." + ::= { error 21 } + + clnpInErrUnsSRs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported source route option + CLNP Error PDUs received by this entity." + ::= { error 22 } + + clnpInErrUnsRRs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported record route option + CLNP Error PDUs received by this entity." + ::= { error 23 } + + clnpInErrInterferences OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of reassembly interference CLNP Error + PDUs received by this entity." + ::= { error 24 } + + clnpOutErrUnspecs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unspecified CLNP Error PDUs sent by + this entity." + ::= { error 25 } + + clnpOutErrProcs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of protocol procedure CLNP Error PDUs + sent by this entity." + ::= { error 26 } + + clnpOutErrCksums OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of checksum CLNP Error PDUs sent by + this entity." + ::= { error 27 } + + clnpOutErrCongests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of congestion drop CLNP Error PDUs + sent by this entity." + ::= { error 28 } + + clnpOutErrHdrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of header syntax CLNP Error PDUs sent + by this entity." + ::= { error 29 } + + clnpOutErrSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of segmentation disallowed CLNP Error + PDUs sent by this entity." + ::= { error 30 } + + clnpOutErrIncomps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of incomplete PDU CLNP Error PDUs sent + by this entity." + ::= { error 31 } + + clnpOutErrDups OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of duplicate option CLNP Error PDUs + sent by this entity." + ::= { error 32 } + + clnpOutErrUnreachDsts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unreachable destination CLNP Error + PDUs sent by this entity." + ::= { error 33 } + + clnpOutErrUnknownDsts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unknown destination CLNP Error PDUs + sent by this entity." + ::= { error 34 } + + clnpOutErrSRUnspecs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unspecified source route CLNP Error + PDUs sent by this entity." + ::= { error 35 } + + clnpOutErrSRSyntaxes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of source route syntax CLNP Error PDUs + sent by this entity." + ::= { error 36 } + + clnpOutErrSRUnkAddrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of source route unknown address CLNP + Error PDUs sent by this entity." + ::= { error 37 } + + clnpOutErrSRBadPaths OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of source route bad path CLNP Error + PDUs sent by this entity." + ::= { error 38 } + + clnpOutErrHops OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of hop count exceeded CLNP Error PDUs + sent by this entity." + ::= { error 39 } + + clnpOutErrHopReassms OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of hop count exceeded while + reassembling CLNP Error PDUs sent by this entity." + ::= { error 40 } + + clnpOutErrUnsOptions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported option CLNP Error PDUs + sent by this entity." + ::= { error 41 } + + clnpOutErrUnsVersions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of version mismatch CLNP Error PDUs + sent by this entity." + ::= { error 42 } + + clnpOutErrUnsSecurities OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported security option CLNP + Error PDUs sent by this entity." + ::= { error 43 } + + clnpOutErrUnsSRs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported source route option + CLNP Error PDUs sent by this entity." + ::= { error 44 } + + clnpOutErrUnsRRs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of unsupported record route option + CLNP Error PDUs sent by this entity." + ::= { error 45 } + + clnpOutErrInterferences OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of reassembly interference CLNP Error + PDUs sent by this entity." + ::= { error 46 } + + -- the ES-IS group + + -- Implementation of this group is recommended for all + -- systems which implement the End-System to Intermediate + -- System protocol. + + esisESHins OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ESH PDUs received by this entity." + ::= { es-is 1 } + + esisESHouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ESH PDUs sent by this entity." + ::= { es-is 2 } + + esisISHins OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ISH PDUs received by this entity." + ::= { es-is 3 } + + esisISHouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ISH PDUs sent by this entity." + ::= { es-is 4 } + + esisRDUins OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of RDU PDUs received by this entity." + ::= { es-is 5 } + + esisRDUouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of RDU PDUs sent by this entity." + ::= { es-is 6 } + + END diff --git a/pandora_console/attachment/mibs/CPQHLTH-MIB b/pandora_console/attachment/mibs/CPQHLTH-MIB new file mode 100644 index 0000000000..14e815efa5 --- /dev/null +++ b/pandora_console/attachment/mibs/CPQHLTH-MIB @@ -0,0 +1,5781 @@ +-- **************************************************************************** +-- +-- Server Health Features +-- Management Information Base for SNMP Network Management +-- +-- +-- Copyright 1992,2008 Hewlett-Packard Development Company, L.P. +-- +-- Hewlett-Packard Company shall not be liable for technical or +-- editorial errors or omissions contained herein. The information in +-- this document is provided "as is" without warranty of any kind and +-- is subject to change without notice. The warranties for HP products +-- are set forth in the express limited warranty statements +-- accompanying such products. Nothing herein should be construed as +-- constituting an additional warranty. +-- +-- Confidential computer software. Valid license from HP required for +-- possession, use or copying. Consistent with FAR 12.211 and 12.212, +-- Commercial Computer Software, Computer Software Documentation, and +-- Technical Data for Commercial Items are licensed to the U.S. +-- Government under vendor's standard commercial license. +-- +-- Refer to the READMIB.RDM file for more information about the +-- organization of the information in the Compaq Enterprise. +-- +-- The Compaq Enterprise number is 232. +-- The ASN.1 prefix to, and including the Compaq Enterprise is: +-- 1.3.6.1.4.1.232 +-- +-- **************************************************************************** + +CPQHLTH-MIB DEFINITIONS ::= BEGIN + + IMPORTS + compaq FROM CPQHOST-MIB + enterprises FROM RFC1155-SMI + Counter FROM RFC1155-SMI + DisplayString FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + TRAP-TYPE FROM RFC-1215 + sysName FROM RFC1213-MIB + cpqHoTrapFlags FROM CPQHOST-MIB + cpqSiServerSystemId FROM CPQSINFO-MIB + cpqSiMemModuleSize FROM CPQSINFO-MIB; + +-- compaq OBJECT IDENTIFIER ::= { enterprises 232 } + cpqHealth OBJECT IDENTIFIER ::= { compaq 6 } + cpqHeMibRev OBJECT IDENTIFIER ::= { cpqHealth 1 } + cpqHeComponent OBJECT IDENTIFIER ::= { cpqHealth 2 } + cpqHeTrap OBJECT IDENTIFIER ::= { cpqHealth 3 } + + cpqHeInterface OBJECT IDENTIFIER ::= { cpqHeComponent 1 } + cpqHeCriticalError OBJECT IDENTIFIER ::= { cpqHeComponent 2 } + cpqHeCorrectableMemory OBJECT IDENTIFIER ::= { cpqHeComponent 3 } + cpqHeAsr OBJECT IDENTIFIER ::= { cpqHeComponent 5 } + cpqHeThermal OBJECT IDENTIFIER ::= { cpqHeComponent 6 } + cpqHePostMsg OBJECT IDENTIFIER ::= { cpqHeComponent 7 } + cpqHeSysUtil OBJECT IDENTIFIER ::= { cpqHeComponent 8 } + cpqHeFltTolPwrSupply OBJECT IDENTIFIER ::= { cpqHeComponent 9 } + cpqHeIRC OBJECT IDENTIFIER ::= { cpqHeComponent 10 } + cpqHeEventLog OBJECT IDENTIFIER ::= { cpqHeComponent 11 } + cpqHeMgmtDisplay OBJECT IDENTIFIER ::= { cpqHeComponent 12 } + cpqHePowerConverter OBJECT IDENTIFIER ::= { cpqHeComponent 13 } + cpqHeResilientMemory OBJECT IDENTIFIER ::= { cpqHeComponent 14 } + cpqHePowerMeter OBJECT IDENTIFIER ::= { cpqHeComponent 15 } + + cpqHeOsNetWare3x OBJECT IDENTIFIER ::= { cpqHeInterface 1 } + cpqHeOsCommon OBJECT IDENTIFIER ::= { cpqHeInterface 4 } + +-- **************************************************************************** +-- Health MIB Revision +-- =================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeMibRev Group (1.3.6.1.4.1.232.6.1) +-- +-- An Insight Agent conforming to this document will return a +-- cpqHeMibRevMajor of one (1) and a cpqHeMibRevMinor of twenty-five (25). +-- +-- +-- Implementation of the MibRev group is mandatory for all agents +-- supporting the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeMibRevMajor OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Major Revision level of the MIB. + + A change in the major revision level represents a major change + in the architecture of the MIB. A change in the major revision + level may indicate a significant change in the information + supported and/or the meaning of the supported information, + correct interpretation of data may require a MIB document with + the same major revision level." + ::= { cpqHeMibRev 1 } + + cpqHeMibRevMinor OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minor revision level of the MIB. + + A change in the minor revision level may represent some minor + additional support, no changes to any pre-existing information + has occurred." + ::= { cpqHeMibRev 2 } + + cpqHeMibCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), -- default + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition. + + This object represents the overall status of the server health + system represented by this MIB." + ::= { cpqHeMibRev 3 } + +-- **************************************************************************** +-- Health MIB NetWare OS Group +-- =========================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1) +-- cpqHeOsNetWare3x Group (1.3.6.1.4.1.232.6.2.1.1) +-- +-- Implementation of the cpqHeOsNetWare3x group is mandatory for all +-- agents that support the Server Health MIB in a NetWare host +-- operating environment. +-- +-- **************************************************************************** + + cpqHeNw3xDriverName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Driver Name. + + This value identifies the NetWare Loadable Module providing the + operating system access to the Server Health information." + ::= { cpqHeOsNetWare3x 1 } + + cpqHeNw3xDriverDate OBJECT-TYPE + SYNTAX DisplayString (SIZE (8)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Driver Date. + + The date of the NetWare Loadable Module providing the operating + system access to the Server Health logs. The date is + provided in mm/dd/yy format." + ::= { cpqHeOsNetWare3x 2 } + + cpqHeNw3xDriverVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Driver Version. + + This is the version of the NetWare Loadable Module (NLM) + providing the operating system access to the Server + Health logs." + ::= { cpqHeOsNetWare3x 3 } + +-- **************************************************************************** +-- Health MIB OS Common Group +-- ========================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1) +-- cpqHeOsCommon Group (1.3.6.1.4.1.232.6.2.1.4) +-- +-- The cpqHeOsCommon group describes the interface to the Server +-- health components. This information describes the interface modules +-- and general OS interface architectural information. +-- +-- Implementation of the cpqHeOsCommon group is mandatory for all +-- agents that support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeOsCommonPollFreq OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Insight Agent's polling frequency. + + The frequency, in seconds, at which the Insight Agent requests + information from the device driver. A frequency of zero + indicates that the Insight Agent retrieves the information upon + request of a management station, it does not poll the device + driver at a specific interval. + + If the poll frequency is 0 all attempts to write to this + object will fail. If the poll frequency is non-zero, + setting this value will change the polling frequency of the + Insight Agent. Setting the poll frequency to zero will always + fail, an agent may also choose to fail any request to change + the poll frequency to a value that would severely impact system + performance." + ::= { cpqHeOsCommon 1 } + +-- **************************************************************************** +-- Health MIB OS Common Module Table +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeInterface Group (1.3.6.1.4.1.232.6.2.1) +-- cpqHeOsCommon Group (1.3.6.1.4.1.232.6.2.1.4) +-- cpqHeOsCommonModuleTable (1.3.6.1.4.1.232.6.2.1.4.2) deprecated +-- +-- **************************************************************************** + + cpqHeOsCommonModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Supporting software table. + + This is a table of software modules that provide an interface + to the device this server health MIB describes." + ::= { cpqHeOsCommon 2 } + + cpqHeOsCommonModuleEntry OBJECT-TYPE + SYNTAX CpqHeOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A description of a software modules that provide an interface + to the device this MIB describes." + INDEX { cpqHeOsCommonModuleIndex } + ::= { cpqHeOsCommonModuleTable 1 } + + CpqHeOsCommonModuleEntry ::= SEQUENCE { + cpqHeOsCommonModuleIndex INTEGER, + cpqHeOsCommonModuleName DisplayString, + cpqHeOsCommonModuleVersion DisplayString, + cpqHeOsCommonModuleDate OCTET STRING, + cpqHeOsCommonModulePurpose DisplayString + } + + cpqHeOsCommonModuleIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "A unique index for this module description." + ::= { cpqHeOsCommonModuleEntry 1 } + + cpqHeOsCommonModuleName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module name." + ::= { cpqHeOsCommonModuleEntry 2 } + + cpqHeOsCommonModuleVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module version in XX.YY format. + + Where XX is the major version number and YY is the minor version + number. This field will be null (size 0) string if the agent + cannot provide the module version." + ::= { cpqHeOsCommonModuleEntry 3 } + + cpqHeOsCommonModuleDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module date. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if the agent cannot provide + the module date. The hour, minute, and second field will be set + to zero (0) if they are not relevant. The year field is set + with the most significant octet first." + ::= { cpqHeOsCommonModuleEntry 4 } + + cpqHeOsCommonModulePurpose OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The purpose of the module described in this entry." + ::= { cpqHeOsCommonModuleEntry 5 } + +-- **************************************************************************** +-- Health MIB Critical Error Group +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeCriticalError Group (1.3.6.1.4.1.232.6.2.2) +-- +-- The cpqHeCriticalError group describes the health critical error log. +-- +-- Implementation of the cpqHeCriticalError group is mandatory for all +-- agents that support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeCritLogSupported OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + supported(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies if this system supports the critical + error logging feature." + ::= { cpqHeCriticalError 1 } + + cpqHeCritLogCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the critical + error log feature." + ::= { cpqHeCriticalError 2 } + + cpqHeLastCritErrorAbendMsg OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Last Critical Termination message. + + The message associated with the last critical error of + type criticalException(14) or abend(27)." + ::= { cpqHeCriticalError 3 } + +-- **************************************************************************** +-- Health MIB Critical Error Table +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeCriticalError Group (1.3.6.1.4.1.232.6.2.2) +-- cpqHeCriticalErrorTable (1.3.6.1.4.1.232.6.2.2.4) +-- +-- **************************************************************************** + + cpqHeCriticalErrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeCriticalErrorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of critical error descriptions." + ::= { cpqHeCriticalError 4 } + + cpqHeCriticalErrorEntry OBJECT-TYPE + SYNTAX CpqHeCriticalErrorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A critical error description." + INDEX { cpqHeCriticalErrorIndex } + ::= { cpqHeCriticalErrorTable 1 } + + CpqHeCriticalErrorEntry ::= SEQUENCE { + cpqHeCriticalErrorIndex INTEGER, + cpqHeCriticalErrorStatus INTEGER, + cpqHeCriticalErrorType INTEGER, + cpqHeCriticalErrorTime OCTET STRING, + cpqHeCriticalErrorInfo OCTET STRING, + cpqHeCriticalErrorDesc DisplayString + } + + cpqHeCriticalErrorIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this critical error + description. The entries will be in order of occurrence + with the most recent entry first." + ::= { cpqHeCriticalErrorEntry 1 } + + cpqHeCriticalErrorStatus OBJECT-TYPE + SYNTAX INTEGER { + uncorrected(1), + corrected(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value specifies if the user has marked this error as + corrected. Marking errors as corrected may be performed with + the Diagnostics or by a set operation on this variable. + Attempting to set this variable to uncorrected(1) will fail." + ::= { cpqHeCriticalErrorEntry 2 } + + cpqHeCriticalErrorType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + empty(2), + nonCorrectableMemErr(3), + busMasterTimeoutNmi(4), + commandBusTimeoutNmi(5), + ioCheckNmi(6), + refreshOverflowNmi(7), + cacheParityNmi(8), + processorParityNmi(9), + eisaHostMemReadHit(10), + processorFailure(11), + cautionTemperature(12), + postCriticalError(13), + criticalException(14), + serverManagerIfFail(15), + pentiumIperr(16), + pentiumAperr(17), + pentiumIeerr(18), + pentiumApcheck(19), + cpuLocalError(20), + failsafeTimer(21), + softwareNmi(22), + asrBaseMemoryParity(23), + asrExtendedMemParity(24), + asrResetLimit(25), + asrMemoryParity(26), + abend(27), + asrTestEvent(28), + asrTimeoutNmi(29), + fanFailure(30), + upsDetectedLineFail(31), + asrDetectedAtBoot(32), + redunPowerSupplyFailure(33), + pciBusParityError(34), + diagnosticError(35), + rtcChipBatteryFailure(36), + pentiumBerr(37), + dcConverterFailure(38), + cpuInternalThreshPassed(39) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the type of error." + ::= { cpqHeCriticalErrorEntry 3 } + + cpqHeCriticalErrorTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time of the error: hour (first five bits), day of month + (next 5 bits), month (next 4 bits), year of the current century + (next 7 bits). The last 3 bits are reserved." + ::= { cpqHeCriticalErrorEntry 4 } + + cpqHeCriticalErrorInfo OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Information about the error." + ::= { cpqHeCriticalErrorEntry 5 } + + cpqHeCriticalErrorDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text description of the critical error." + ::= { cpqHeCriticalErrorEntry 6 } + +-- **************************************************************************** +-- Health MIB Correctable Memory Error Group +-- ========================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeCorrectableMemory Group (1.3.6.1.4.1.232.6.2.3) +-- +-- The cpqHeCorrectableMemory group describes the health correctable memory +-- error log. +-- +-- Implementation of the cpqHeCorrectableMemory group is mandatory for all +-- agents that support the Server Health MIB on a system that has the +-- correctable memory feature. +-- +-- **************************************************************************** + + cpqHeCorrMemLogStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + disabled(3), + enabled(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies whether this system is currently tracking + correctable memory errors." + ::= { cpqHeCorrectableMemory 1 } + + cpqHeCorrMemLogCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the correctable + memory error log feature." + ::= { cpqHeCorrectableMemory 2 } + + cpqHeCorrMemTotalErrs OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of correctable memory errors that have occurred." + ::= { cpqHeCorrectableMemory 3 } + +-- **************************************************************************** +-- Health MIB Correctable Memory Error Table +-- ========================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeCorrectableMemory Group (1.3.6.1.4.1.232.6.2.3) +-- cpqHeCorrMemErrTable (1.3.6.1.4.1.232.6.2.3.4) +-- +-- **************************************************************************** + + cpqHeCorrMemErrTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeCorrMemErrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of correctable memory error descriptions." + ::= { cpqHeCorrectableMemory 4 } + + cpqHeCorrMemErrEntry OBJECT-TYPE + SYNTAX CpqHeCorrMemErrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A correctable memory error description." + INDEX { cpqHeCorrMemErrIndex } + ::= { cpqHeCorrMemErrTable 1 } + + CpqHeCorrMemErrEntry ::= SEQUENCE { + cpqHeCorrMemErrIndex INTEGER, + cpqHeCorrMemErrCount INTEGER, + cpqHeCorrMemErrTime OCTET STRING, + cpqHeCorrMemErrDdr OCTET STRING, + cpqHeCorrMemErrSyndrome OCTET STRING, + cpqHeCorrMemErrDesc DisplayString, + cpqHeCorrMemErrHwLocation DisplayString + } + + cpqHeCorrMemErrIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this correctable memory error + description. The entries will be in order of occurrence with the + most recent new entry first." + ::= { cpqHeCorrMemErrEntry 1 } + + cpqHeCorrMemErrCount OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of times this memory location has had a correctable + memory error. The value zero (0) indicates that the user has + marked this error as corrected. Marking errors as corrected may + be performed with the Diagnostics or with a set operation + of 0 on this variable. Any non-zero valued set operation will + fail." + ::= { cpqHeCorrMemErrEntry 2 } + + cpqHeCorrMemErrTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..3)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time of the error: hour (first five bits), day of month + (next 5 bits), month (next 4 bits), year of the current century + (next 7 bits). The last 3 bits are reserved." + ::= { cpqHeCorrMemErrEntry 3 } + + cpqHeCorrMemErrDdr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The data destination register value. + + This contains information about the memory bank in which the + error occurred. The interpretation of this value is dependent + on the machine type." + ::= { cpqHeCorrMemErrEntry 4 } + + cpqHeCorrMemErrSyndrome OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory syndrome value. + + This contains information about the memory module in which the + error occurred. The interpretation of this value is dependant + on the machine type." + ::= { cpqHeCorrMemErrEntry 5 } + + cpqHeCorrMemErrDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text description of the correctable memory error." + ::= { cpqHeCorrMemErrEntry 6 } + + cpqHeCorrMemErrHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the correctable memory error. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeCorrMemErrEntry 7 } + + cpqHeCorrMemErrorCntThresh OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The error threshold for Correctable memory errors. When + cpqHeCorrMemErrCount is greater than or equal to this value + user action is required to replace the failing memory module." + ::= { cpqHeCorrectableMemory 5 } + +-- **************************************************************************** +-- Health MIB Automatic Server Recovery (ASR) Group +-- ================================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeAsr Group (1.3.6.1.4.1.232.6.2.5) +-- +-- The cpqHeAsr group describes the Automatic Server Recovery Health +-- feature. +-- +-- Implementation of the cpqHeAsr group is mandatory for all agents that +-- support the Server Health MIB on a system that supports the ASR feature. +-- +-- **************************************************************************** + + cpqHeAsrStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notAvailable(2), + disabled(3), + enabled(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Automatic Server Recovery feature status. + + If this object is currently other(1) or notAvailable(2) all + set operations will fail. Any attempt to set this object to + other(1) or notAvailable(2) by a management station will fail. + + Setting this object to disabled(3) or enabled(4) will disable + or enable the ASR feature. + + Setting this object to disabled(3) will disable the following + objects: + cpqHeAsrPagerStatus + cpqHeAsrDialInStatus + cpqHeAsrDialOutStatus" + ::= { cpqHeAsr 1 } + + cpqHeAsrMajorVersion OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The major version number of the Automatic Server Recovery + feature hardware." + ::= { cpqHeAsr 2 } + + cpqHeAsrMinorVersion OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minor version number of the Automatic Server Recovery + feature hardware." + ::= { cpqHeAsr 3 } + + cpqHeAsrTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The time-out in minutes for the Automatic Server Recovery + feature hardware. If the variable is not supported, a value + of -1 will be returned." + ::= { cpqHeAsr 4 } + + cpqHeAsrBaseIo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Automatic Server Recovery feature Base I/O address." + ::= { cpqHeAsr 5 } + + cpqHeAsrPost OBJECT-TYPE + SYNTAX INTEGER { + other(1), + failed(2), + ok(3) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Indicates if the Automatic Server Recovery timer passed + the server power-on self test." + ::= { cpqHeAsr 6 } + + cpqHeAsrReset OBJECT-TYPE + SYNTAX INTEGER { + other(1), + manualReset(2), + asrReset(3), + viewed-asrReset(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates if the previous reset was caused by the ASR + timer. An asrReset(3) condition may be changed with a + viewed-asrReset(4) set operation. This is only valid + if this variable's current value is asrReset(3). Setting + this variable to any other value than viewed-asrReset(4) + will fail." + ::= { cpqHeAsr 7 } + + cpqHeAsrReboot OBJECT-TYPE + SYNTAX INTEGER { + other(1), + bootOs(2), + bootUtilities(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates what software should be started when the server is + rebooted by the ASR feature. + + If this object is currently set to other(1), set operations + will fail. This object may not be set to other(1) by a + management station. + + Setting this object to bootOs(2) or bootUtilities(3) + will select the software to be started after an ASR reboot." + ::= { cpqHeAsr 8 } + + cpqHeAsrRebootLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of ASR timer reboots that should cause the server to + boot the firmware console and override the standard reboot + setting (cpqHeAsrReboot). If this value is 0 then no limit is + defined and the standard reboot option will always be used. If + the variable is not supported, a value of -1 will be returned." + ::= { cpqHeAsr 9 } + + cpqHeAsrRebootCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of ASR reboots that have occurred on this server + since the last manual reboot. Reboot count may be reset with + a zero valued set operation on this variable. Setting this + value to a non-zero value will fail. If the variable is not + supported, a value of -1 will be returned." + ::= { cpqHeAsr 10 } + + cpqHeAsrPagerStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of the ASR pager feature. + + If the current value of this object is not other(1), it may + be set to disabled(2) or enabled(3). Attempting a set operation + while the value is other(1) will fail. Attempting to set the + value to other(1) will fail. + + Setting this object to enabled(3) will enable the + cpqHeAsrStatus object." + ::= { cpqHeAsr 11 } + + cpqHeAsrPagerNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..60)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The pager number to be dialed after an ASR reboot." + ::= { cpqHeAsr 12 } + + cpqHeAsrCommPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The communication port to be used by the firmware pager and + console. The value zero (0) indicates this setting is undefined. + + If the current value of this object is zero (0) any + attempt to set this object from a management station + will fail. Any attempt to set this object to zero (0) + by a management station will fail. If the variable is not + supported, a value of -1 will be returned." + ::= { cpqHeAsr 13 } + + cpqHeAsrBaudRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The baud rate to be used by the firmware pager and console. + The value zero (0) indicates this setting is undefined. If the + variable is not supported, a value of -1 will be returned." + ::= { cpqHeAsr 14 } + + cpqHeAsrPagerMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The 8 character pager message entered by the user." + ::= { cpqHeAsr 15 } + + cpqHeAsrBootFail OBJECT-TYPE + SYNTAX INTEGER { + other(1), + interrupt18(2) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The action to be taken if an ASR reboot failure occurs." + ::= { cpqHeAsr 16 } + + cpqHeAsrCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the ASR feature." + ::= { cpqHeAsr 17 } + + cpqHeAsrDialInStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of the ASR dial in feature. + + If the current value of this object is other(1) any attempt to + set this object from a management station will fail. Any + attempt to set this object to other(1) by a management station + will fail. + + Setting this object to enabled(3) will enable the + cpqHeAsrStatus object." + ::= { cpqHeAsr 18 } + + cpqHeAsrDialOutStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of the ASR dial out feature. + + If the current value of this object is other(1) any attempt to + set this object from a management station will fail. Any + attempt to set this object to other(1) by a management station + will fail. + + Setting this object to enabled(3) will enable the + cpqHeAsrStatus and the cpqHeAsrDialInStatus objects." + ::= { cpqHeAsr 19 } + + cpqHeAsrDialOutNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..60)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The phone number to be dialed for remote diagnostics if an ASR + reset occurs." + ::= { cpqHeAsr 20 } + + cpqHeAsrNetworkAccessStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of the ASR network access feature. + + If the current value of this object is other(1) any attempt to + set this object from a management station will fail. Any + attempt to set this object to other(1) by a management station + will fail." + ::= { cpqHeAsr 21 } + + cpqHeAsrPollTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "The poll time in seconds the ASR watchdog timer is being + refreshed periodically." + ::= { cpqHeAsr 22 } + + +-- **************************************************************************** +-- Health MIB Thermal Group +-- ======================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) +-- +-- The cpqHeThermal group describes the status of the temperature and the +-- fans that regulate the temperature. +-- +-- Implementation of the cpqHeThermal group is mandatory for all agents +-- that support the Server Health MIB on a system that supports the thermal +-- sensing features. +-- +-- **************************************************************************** + + cpqHeThermalCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the system's + thermal environment." + ::= { cpqHeThermal 1 } + + cpqHeThermalDegradedAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), + continue(2), + shutdown(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The action to perform when the thermal condition is degraded. + + This value will be one of the following: + other(1) + This feature is not supported by this system or driver. + + continue(2) + The system should be allowed to continue. + + shutdown(3) + The system should be shutdown." + ::= { cpqHeThermal 2 } + + cpqHeThermalTempStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the system's temperature sensors: + + This value will be one of the following: + other(1) + Temp sensing is not supported by this system or driver. + + ok(2) + All temp sensors are within normal operating range. + + degraded(3) + A temp sensor is outside of normal operating range. + + failed(4) + A temp sensor detects a condition that could permanently + damage the system. + + The system will automatically shutdown if the failed(4) condition + results, so it is unlikely that this value will ever be returned + by the agent. If the cpqHeThermalDegradedAction is set to + shutdown(3) the system will be shutdown if the degraded(3) + condition occurs." + ::= { cpqHeThermal 3 } + + cpqHeThermalSystemFanStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the fan(s) in the system. + + This value will be one of the following: + other(1) + Fan status detection is not supported by this system or driver. + + ok(2) + All fans are operating properly. + + degraded(3) + A non-required fan is not operating properly. + + failed(4) + A required fan is not operating properly. + + If the cpqHeThermalDegradedAction is set to shutdown(3) the + system will be shutdown if the failed(4) condition occurs." + ::= { cpqHeThermal 4 } + + cpqHeThermalCpuFanStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the processor fan(s) in the system. + + This value will be one of the following: + other(1) + Fan status detection is not supported by this system or driver. + + ok(2) + All fans are operating properly. + + failed(4) + A fan is not operating properly. + + The system will be shutdown if the failed(4) condition occurs." + ::= { cpqHeThermal 5 } + +-- **************************************************************************** +-- Health MIB Thermal Fan Table +-- ============================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) +-- cpqHeThermalFanTable (1.3.6.1.4.1.232.6.2.6.6) +-- +-- **************************************************************************** + + cpqHeThermalFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeThermalFanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of fan descriptions." + ::= { cpqHeThermal 6 } + + cpqHeThermalFanEntry OBJECT-TYPE + SYNTAX CpqHeThermalFanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A fan description." + INDEX { cpqHeThermalFanIndex } + ::= { cpqHeThermalFanTable 1 } + + CpqHeThermalFanEntry ::= SEQUENCE { + cpqHeThermalFanIndex INTEGER, + cpqHeThermalFanRequired INTEGER, + cpqHeThermalFanPresent INTEGER, + cpqHeThermalFanCpuFan INTEGER, + cpqHeThermalFanStatus INTEGER, + cpqHeThermalFanHwLocation DisplayString, + cpqHeThermalFanCurrentSpeed INTEGER + } + + cpqHeThermalFanIndex OBJECT-TYPE + SYNTAX INTEGER (0..8) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this fan description." + ::= { cpqHeThermalFanEntry 1 } + + cpqHeThermalFanRequired OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonRequired(2), + required(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the fan described is required for proper + operation of the system." + ::= { cpqHeThermalFanEntry 2 } + + cpqHeThermalFanPresent OBJECT-TYPE + SYNTAX INTEGER { + other(1), + absent(2), + present(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the fan described is present in the system." + ::= { cpqHeThermalFanEntry 3 } + + cpqHeThermalFanCpuFan OBJECT-TYPE + SYNTAX INTEGER { + other(1), + systemFan(2), + cpuFan(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the described fan is intended specifically + to cool the CPU(s)." + ::= { cpqHeThermalFanEntry 4 } + + cpqHeThermalFanStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the fan described is operating properly. + + This value will be one of the following: + other(1) + Fan status detection is not supported by this system or driver. + + ok(2) + The fan is operating properly. + + failed(4) + The fan is not operating properly." + ::= { cpqHeThermalFanEntry 5 } + + cpqHeThermalFanHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the fan. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeThermalFanEntry 6 } + + cpqHeThermalFanCurrentSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The current speed of a fan in rpm - revolutions per minute." + ::= { cpqHeThermalFanEntry 7 } + + +-- **************************************************************************** +-- Health MIB Fault Tolerant Fan Table +-- =================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) +-- cpqHeFltTolFanTable (1.3.6.1.4.1.232.6.2.6.7) +-- +-- **************************************************************************** + + cpqHeFltTolFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeFltTolFanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of Fault Tolerant Fan Entries." + ::= { cpqHeThermal 7 } + + cpqHeFltTolFanEntry OBJECT-TYPE + SYNTAX CpqHeFltTolFanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Fault Tolerant Fan Entry." + INDEX { cpqHeFltTolFanChassis, cpqHeFltTolFanIndex } + ::= { cpqHeFltTolFanTable 1 } + + CpqHeFltTolFanEntry ::= SEQUENCE { + cpqHeFltTolFanChassis INTEGER, + cpqHeFltTolFanIndex INTEGER, + cpqHeFltTolFanLocale INTEGER, + cpqHeFltTolFanPresent INTEGER, + cpqHeFltTolFanType INTEGER, + cpqHeFltTolFanSpeed INTEGER, + cpqHeFltTolFanRedundant INTEGER, + cpqHeFltTolFanRedundantPartner INTEGER, + cpqHeFltTolFanCondition INTEGER, + cpqHeFltTolFanHotPlug INTEGER, + cpqHeFltTolFanHwLocation DisplayString, + cpqHeFltTolFanCurrentSpeed INTEGER + } + + cpqHeFltTolFanChassis OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The System Chassis number." + ::= { cpqHeFltTolFanEntry 1 } + + cpqHeFltTolFanIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this fan description." + ::= { cpqHeFltTolFanEntry 2 } + + cpqHeFltTolFanLocale OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + system(3), + systemBoard(4), + ioBoard(5), + cpu(6), + memory(7), + storage(8), + removableMedia(9), + powerSupply(10), + ambient(11), + chassis(12), + bridgeCard(13), + managementBoard(14), + backplane(15), + networkSlot(16), + bladeSlot(17), + virtual(18) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the location of the fan in the system." + ::= { cpqHeFltTolFanEntry 3 } + + cpqHeFltTolFanPresent OBJECT-TYPE + SYNTAX INTEGER { + other(1), + absent(2), + present(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the fan described is present in the system." + ::= { cpqHeFltTolFanEntry 4 } + + cpqHeFltTolFanType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + tachOutput(2), + spinDetect(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the type of fan. + + other(1) + The type of fan could not be determined. + + tachOutput(2) + The fan can increase speed for greater cooling. Implies + spin detect. + + spinDetect(3) + The fan can detect when the fan stops spinning." + ::= { cpqHeFltTolFanEntry 5 } + + cpqHeFltTolFanSpeed OBJECT-TYPE + SYNTAX INTEGER { + other(1), + normal(2), + high(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the speed of the fan. This value will be set + if the fan type is tachOutput." + ::= { cpqHeFltTolFanEntry 6 } + + cpqHeFltTolFanRedundant OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notRedundant(2), + redundant(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the fan is in a redundant configuration." + ::= { cpqHeFltTolFanEntry 7 } + + cpqHeFltTolFanRedundantPartner OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the index of the redundant partner. A value + of zero will be used if there is no redundant partner." + ::= { cpqHeFltTolFanEntry 8 } + + cpqHeFltTolFanCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The condition of the fan. + + This value will be one of the following: + other(1) + Fan status detection is not supported by this system or driver. + + ok(2) + The fan is operating properly. + + degraded(2) + A redundant fan is not operating properly. + + failed(4) + A non-redundant fan is not operating properly." + ::= { cpqHeFltTolFanEntry 9 } + + cpqHeFltTolFanHotPlug OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonHotPluggable(2), + hotPluggable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This indicates if the fan is capable of being removed and/or + inserted while the system is in an operational state. + + If the value is hotPluggable(3), the fan can be safely + removed if and only if the cpqHeFltTolFanRedundant + field is in a redundant(3) state. + + This value will be one of the following: + other(1) + The state could not be determined. + + nonHotPluggable(2) + The fan is not hot plug capable. + + hotPluggable(3) + The fan is hot plug capable and can be removed if + the system is operating in a redundant state. A fan + may be added to an empty fan bay." + ::= { cpqHeFltTolFanEntry 10 } + + cpqHeFltTolFanHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the fan. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeFltTolFanEntry 11 } + + cpqHeFltTolFanCurrentSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The current speed of a fan in rpm - revolutions per minute." + ::= { cpqHeFltTolFanEntry 12 } + + +-- **************************************************************************** +-- Health MIB Temperature Sensor Table +-- =================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeThermal Group (1.3.6.1.4.1.232.6.2.6) +-- cpqHeTemperatureTable (1.3.6.1.4.1.232.6.2.6.8) +-- +-- **************************************************************************** + + cpqHeTemperatureTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeTemperatureEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of Temperature Sensor Entries." + ::= { cpqHeThermal 8 } + + cpqHeTemperatureEntry OBJECT-TYPE + SYNTAX CpqHeTemperatureEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Temperature Sensor Entry." + INDEX { cpqHeTemperatureChassis, cpqHeTemperatureIndex } + ::= { cpqHeTemperatureTable 1 } + + CpqHeTemperatureEntry ::= SEQUENCE { + cpqHeTemperatureChassis INTEGER, + cpqHeTemperatureIndex INTEGER, + cpqHeTemperatureLocale INTEGER, + cpqHeTemperatureCelsius INTEGER, + cpqHeTemperatureThreshold INTEGER, + cpqHeTemperatureCondition INTEGER, + cpqHeTemperatureThresholdType INTEGER, + cpqHeTemperatureHwLocation DisplayString + } + + cpqHeTemperatureChassis OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The System Chassis number." + ::= { cpqHeTemperatureEntry 1 } + + cpqHeTemperatureIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this temperature sensor + description." + ::= { cpqHeTemperatureEntry 2 } + + cpqHeTemperatureLocale OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + system(3), + systemBoard(4), + ioBoard(5), + cpu(6), + memory(7), + storage(8), + removableMedia(9), + powerSupply(10), + ambient(11), + chassis(12), + bridgeCard(13) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the location of the temperature sensor + present in the system." + ::= { cpqHeTemperatureEntry 3 } + + cpqHeTemperatureCelsius OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the current temperature sensor reading in degrees + celsius. + + If this value cannot be determined by software, then a value + of -1 will be returned." + ::= { cpqHeTemperatureEntry 4 } + + cpqHeTemperatureThreshold OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the shutdown threshold temperature sensor setting + in degrees celsius. This is the temperature in which the + sensor will be considered to be in a failed state thus + causing the system to be shutdown. + + If this value cannot be determined by software, then a value + of -1 will be returned. + + Only the Ambient zone type allows setting of the threshold + temperature." + ::= { cpqHeTemperatureEntry 5 } + + cpqHeTemperatureCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Temperature sensor condition. + + This value will be one of the following: + other(1) + Temperature could not be determined. + + ok(2) + The temperature sensor is within normal operating range. + + degraded(3) + The temperature sensor is outside of normal operating range. + + failed(4) + The temperature sensor detects a condition that could + permanently damage the system. + + The system will automatically shutdown if the failed(4) condition + results, so it is unlikely that this value will ever be returned + by the agent. If the cpqHeThermalDegradedAction is set to + shutdown(3) the system will be shutdown if the degraded(3) + condition occurs." + ::= { cpqHeTemperatureEntry 6 } + + cpqHeTemperatureThresholdType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + blowout(5), + caution(9), + critical(15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the type of this instance of temperature + sensor. + + This value will be one of the following: + other(1) + Temperature threshold type could not be determined. + + blowout(5) + If a blowout(5) temperature sensor reaches its threshold, + the fan or fans in the area of the temperature sensor will + increase in speed in an attempt to reduce the temperature + before a caution or critical threshold is reached. + + caution(9) + If a caution(9) temperature sensor reaches its threshold, + the cpqHeTemperatureCondition will be set to degraded(3) + and the system will either continue or shutdown depending + on the setting of cpqHeThermalDegradedAction. + + critical(15) + If a critical(15) temperature sensor reaches its threshold, + the cpqHeTemperatureCondition will be set to failed(4) + and the system will shutdown." + ::= { cpqHeTemperatureEntry 7 } + + cpqHeTemperatureHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the temperature sensor. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeTemperatureEntry 8 } + +-- **************************************************************************** +-- Health MIB Post Message Group +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHePostMsg Group (1.3.6.1.4.1.232.6.2.7) +-- +-- The cpqHePostMsg group contains a table of the non-critical POST +-- errors that occurred during the last reboot. +-- +-- Implementation of the cpqHePostMsg group is mandatory for all agents +-- that support the Server Health MIB on a system that supports the POST +-- error recording feature. +-- +-- **************************************************************************** + + cpqHePostMsgCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the POST + error recording feature." + ::= { cpqHePostMsg 1 } + +-- **************************************************************************** +-- Health MIB Post Message Table +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHePostMsg Group (1.3.6.1.4.1.232.6.2.7) +-- cpqHePostMsgTable (1.3.6.1.4.1.232.6.2.7.2) +-- +-- This table may be empty if no errors occurred during POST. +-- +-- **************************************************************************** + + cpqHePostMsgTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHePostMsgEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of POST error message numbers." + ::= { cpqHePostMsg 2 } + + cpqHePostMsgEntry OBJECT-TYPE + SYNTAX CpqHePostMsgEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A POST error message number." + INDEX { cpqHePostMsgIndex } + ::= { cpqHePostMsgTable 1 } + + CpqHePostMsgEntry ::= SEQUENCE { + cpqHePostMsgIndex INTEGER, + cpqHePostMsgCode INTEGER, + cpqHePostMsgDesc DisplayString + } + + + cpqHePostMsgIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this POST error description." + ::= { cpqHePostMsgEntry 1 } + + cpqHePostMsgCode OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies POST message number for this error." + ::= { cpqHePostMsgEntry 2 } + + cpqHePostMsgDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This contains a text description of the POST error. + A string of length zero (0) will be returned if no description + is available." + ::= { cpqHePostMsgEntry 3 } + + cpqHePostMsgEv OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The EV used to store 8 non-critical POST error codes + for use with Quicktest, Utilities, and CIM. Setting + this variable with a zero length octet string will + clear this variable. All other set operations will + fail." + ::= { cpqHePostMsg 3 } + + +-- **************************************************************************** +-- Health MIB System Utilization Group +-- =================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeSysUtil Group (1.3.6.1.4.1.232.6.2.8) +-- +-- The cpqHeSysUtil group contains measures of system utilization. +-- This group includes long term utilization information like the total +-- server up time since originally configured. This group also contains +-- current operating utilization information such as the current EISA bus +-- utilization. +-- +-- Implementation of the cpqHeSysUtil group is mandatory for all agents +-- that support the Server Health MIB on a system that supports any system +-- utilization features. +-- +-- **************************************************************************** + + cpqHeSysUtilLifeTime OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total time (in minutes) the system has been in full + operation (while the server health supporting software was + running)." + ::= { cpqHeSysUtil 1 } + + cpqHeSysUtilEisaBusMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA bus utilization as a percentage of the theoretical + maximum during the last minute. A value of -1 indicates that + this feature is not supported on this machine or is not + available." + ::= { cpqHeSysUtil 2 } + + cpqHeSysUtilEisaBusFiveMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA bus utilization as a percentage of the theoretical + maximum during the last five minutes. A value of -1 indicates + that this feature is not supported on this machine or is not + available." + ::= { cpqHeSysUtil 3 } + + cpqHeSysUtilEisaBusThirtyMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA bus utilization as a percentage of the theoretical + maximum during the last thirty minutes. A value of -1 + indicates that this feature is not supported on this machine + or is not available." + ::= { cpqHeSysUtil 4 } + + cpqHeSysUtilEisaBusHour OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA bus utilization as a percentage of the theoretical + maximum during the last hour. A value of -1 indicates that + this feature is not supported on this machine or is not + available." + ::= { cpqHeSysUtil 5 } + +-- **************************************************************************** +-- Health MIB PCI Utilization Table +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeSysUtil Group (1.3.6.1.4.1.232.6.2.8) +-- cpqHeSysUtilPciTable (1.3.6.1.4.1.232.6.2.8.6) +-- +-- +-- **************************************************************************** + + cpqHeSysUtilPciTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeSysUtilPciEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of PCI utilization numbers for a whole aggregate + PCI bus or a specific device on that bus." + ::= { cpqHeSysUtil 6 } + + cpqHeSysUtilPciEntry OBJECT-TYPE + SYNTAX CpqHeSysUtilPciEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "PCI utilization entry" + INDEX { cpqHeSysUtilPciIndex } + ::= { cpqHeSysUtilPciTable 1 } + + CpqHeSysUtilPciEntry ::= SEQUENCE { + cpqHeSysUtilPciIndex INTEGER, + cpqHeSysUtilPciBus INTEGER, + cpqHeSysUtilPciDevice INTEGER, + cpqHeSysUtilPciMin INTEGER, + cpqHeSysUtilPciFiveMin INTEGER, + cpqHeSysUtilPciThirtyMin INTEGER, + cpqHeSysUtilPciHour INTEGER, + cpqHeSysUtilPciHwLocation DisplayString + } + + cpqHeSysUtilPciIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index into each PCI utilization table entry. " + ::= { cpqHeSysUtilPciEntry 1 } + + cpqHeSysUtilPciBus OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI bus number for this set of utilization numbers. " + ::= { cpqHeSysUtilPciEntry 2 } + + cpqHeSysUtilPciDevice OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI device number for this set of utilization numbers. + If this value is -1, the utilization reported is for the + aggregate of all devices on this PCI bus. " + ::= { cpqHeSysUtilPciEntry 3 } + + cpqHeSysUtilPciMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The utilization as a percentage of the theoretical + maximum during the last minute. A value of -1 indicates + that the utilization number is not available." + ::= { cpqHeSysUtilPciEntry 4 } + + cpqHeSysUtilPciFiveMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The utilization as a percentage of the theoretical + maximum during the last five minutes. A value of -1 + indicates that the utilization number is not available." + ::= { cpqHeSysUtilPciEntry 5 } + + cpqHeSysUtilPciThirtyMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The utilization as a percentage of the theoretical + maximum during the last thirty minutes. A value of -1 + indicates that the utilization number is not available." + ::= { cpqHeSysUtilPciEntry 6 } + + cpqHeSysUtilPciHour OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The utilization as a percentage of the theoretical + maximum during the last hour. A value of -1 indicates + that the utilization number is not available." + ::= { cpqHeSysUtilPciEntry 7 } + + cpqHeSysUtilPciHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the PCI drawer. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeSysUtilPciEntry 8 } + +-- **************************************************************************** +-- Health MIB Fault Tolerant Power Supply Group +-- ============================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeFltTolPwrSupply Group (1.3.6.1.4.1.232.6.2.9) +-- +-- The cpqHeFltTolPwrSupply group contains management information about fault +-- tolerant power supplies. +-- +-- Implementation of the cpqHeFltTolPwrSupply group is mandatory for all +-- agents that support the Server Health MIB. +-- +-- **************************************************************************** + cpqHeFltTolPwrSupplyCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the fault tolerant + power supply sub-system." + ::= { cpqHeFltTolPwrSupply 1 } + + cpqHeFltTolPwrSupplyStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + notInstalled(3), + installed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the status of the fault tolerant power + supply." + ::= { cpqHeFltTolPwrSupply 2 } + +-- **************************************************************************** +-- Health MIB Fault Tolerant Power Supply Table +-- ============================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeFltTolPowerSupply Group (1.3.6.1.4.1.232.6.2.9) +-- cpqHeFltTolPowerSupplyTable (1.3.6.1.4.1.232.6.2.9.3) +-- +-- **************************************************************************** + + cpqHeFltTolPowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeFltTolPowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of Power Supply Entries." + ::= { cpqHeFltTolPwrSupply 3 } + + cpqHeFltTolPowerSupplyEntry OBJECT-TYPE + SYNTAX CpqHeFltTolPowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Fault Tolerant Power Supply Entry." + INDEX { cpqHeFltTolPowerSupplyChassis, cpqHeFltTolPowerSupplyBay } + ::= { cpqHeFltTolPowerSupplyTable 1 } + + CpqHeFltTolPowerSupplyEntry ::= SEQUENCE { + cpqHeFltTolPowerSupplyChassis INTEGER, + cpqHeFltTolPowerSupplyBay INTEGER, + cpqHeFltTolPowerSupplyPresent INTEGER, + cpqHeFltTolPowerSupplyCondition INTEGER, + cpqHeFltTolPowerSupplyStatus INTEGER, + cpqHeFltTolPowerSupplyMainVoltage INTEGER, + cpqHeFltTolPowerSupplyCapacityUsed INTEGER, + cpqHeFltTolPowerSupplyCapacityMaximum INTEGER, + cpqHeFltTolPowerSupplyRedundant INTEGER, + cpqHeFltTolPowerSupplyModel DisplayString, + cpqHeFltTolPowerSupplySerialNumber DisplayString, + cpqHeFltTolPowerSupplyAutoRev OCTET STRING, + cpqHeFltTolPowerSupplyHotPlug INTEGER, + cpqHeFltTolPowerSupplyFirmwareRev DisplayString, + cpqHeFltTolPowerSupplyHwLocation DisplayString, + cpqHeFltTolPowerSupplySparePartNum DisplayString, + cpqHeFltTolPowerSupplyRedundantPartner INTEGER + } + + cpqHeFltTolPowerSupplyChassis OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The system chassis number." + ::= { cpqHeFltTolPowerSupplyEntry 1 } + + cpqHeFltTolPowerSupplyBay OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bay number to index within this chassis." + ::= { cpqHeFltTolPowerSupplyEntry 2 } + + cpqHeFltTolPowerSupplyPresent OBJECT-TYPE + SYNTAX INTEGER { + other(1), + absent(2), + present(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the power supply is present in the chassis." + ::= { cpqHeFltTolPowerSupplyEntry 3 } + + cpqHeFltTolPowerSupplyCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The condition of the power supply. + + This value will be one of the following: + + other(1) + The status could not be determined or not present. + + ok(2) + The power supply is operating normally. + + degraded(3) + A temperature sensor, fan or other power supply component is + outside of normal operating range. + + failed(4) + A power supply component detects a condition that could + permanently damage the system." + ::= { cpqHeFltTolPowerSupplyEntry 4 } + + cpqHeFltTolPowerSupplyStatus OBJECT-TYPE + SYNTAX INTEGER { + noError(1), + generalFailure(2), + bistFailure(3), + fanFailure(4), + tempFailure(5), + interlockOpen(6), + epromFailed(7), + vrefFailed(8), + dacFailed(9), + ramTestFailed(10), + voltageChannelFailed(11), + orringdiodeFailed(12), + brownOut(13), + giveupOnStartup(14), + nvramInvalid(15), + calibrationTableInvalid(16) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the power supply." + ::= { cpqHeFltTolPowerSupplyEntry 5 } + + cpqHeFltTolPowerSupplyMainVoltage OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The input main voltage of the power supply in volts." + ::= { cpqHeFltTolPowerSupplyEntry 6 } + + cpqHeFltTolPowerSupplyCapacityUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The currently used capacity of the power supply in watts." + ::= { cpqHeFltTolPowerSupplyEntry 7 } + + cpqHeFltTolPowerSupplyCapacityMaximum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum capacity of the power supply in watts." + ::= { cpqHeFltTolPowerSupplyEntry 8 } + + cpqHeFltTolPowerSupplyRedundant OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notRedundant(2), + redundant(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The redundancy state of the power supply. + + This value will be one of the following: + other(1) + The redundancy state could not be determined. + + notRedundant(2) + The power supply is not operating in a redundant state. + + redundant(3) + The power supply is operating in a redundant state." + ::= { cpqHeFltTolPowerSupplyEntry 9 } + + cpqHeFltTolPowerSupplyModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply model name." + ::= { cpqHeFltTolPowerSupplyEntry 10 } + + cpqHeFltTolPowerSupplySerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply serial number." + ::= { cpqHeFltTolPowerSupplyEntry 11 } + + cpqHeFltTolPowerSupplyAutoRev OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply auto revision number." + ::= { cpqHeFltTolPowerSupplyEntry 12 } + + cpqHeFltTolPowerSupplyHotPlug OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonHotPluggable(2), + hotPluggable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This indicates if the power supply is capable of being + removed and/or inserted while the system is in an operational + state. + + If the value is hotPluggable(3), the power supply can be safely + removed if and only if the cpqHeFltTolPowerSupplyRedundant + field is in a redundant(3) state. + + This value will be one of the following: + other(1) + The state could not be determined. + + nonHotPluggable(2) + The power supply is not hot plug capable. + + hotPluggable(3) + The power supply is hot plug capable and can be removed if + the system is operating in a redundant state. A power + supply may be added to an empty power supply bay." + ::= { cpqHeFltTolPowerSupplyEntry 13 } + + cpqHeFltTolPowerSupplyFirmwareRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply firmware revision. This field will be left + blank if the firmware revision is unknown." + ::= { cpqHeFltTolPowerSupplyEntry 14 } + + cpqHeFltTolPowerSupplyHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the power supply. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeFltTolPowerSupplyEntry 15 } + + cpqHeFltTolPowerSupplySparePartNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..80)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The power supply spare part number." + ::= { cpqHeFltTolPowerSupplyEntry 16 } + + cpqHeFltTolPowerSupplyRedundantPartner OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies the index of the redundant partner. A value + of zero will be used if there is no redundant partner." + ::= { cpqHeFltTolPowerSupplyEntry 17 } + + + +-- **************************************************************************** +-- Health MIB Integrated Remote Console (IRC) Group +-- ================================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeIRC Group (1.3.6.1.4.1.232.6.2.10) +-- +-- The cpqHeIRC group contains management information about the Integrated +-- Remote Console ASIC. +-- +-- Implementation of the cpqHeIRC group is mandatory for all agents that +-- support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeIRCStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + notavailable(2), + disabled(3), + enabled(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the Integrated Remote Console. A value of notavailable + will be returned if this system does not contain IRC." + + ::= { cpqHeIRC 1 } + +-- **************************************************************************** +-- Health MIB System Event Log Group +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeEventLog Group (1.3.6.1.4.1.232.6.2.11) +-- +-- The cpqHeEventLog group describes the health system event log. +-- +-- Implementation of the cpqHeEventLog group is mandatory for all +-- agents that support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeEventLogSupported OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + supported(3), + clear(4) -- Settable value to clear the log + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value specifies if this system supports the Integrated + Management Log feature. + + An SNMP set of the value clear(4) will clear the System Event + Log of all entries." + ::= { cpqHeEventLog 1 } + + cpqHeEventLogCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the Integrated + Management Log feature." + ::= { cpqHeEventLog 2 } + +-- **************************************************************************** +-- Health MIB System Event Log Table +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeEventLog Group (1.3.6.1.4.1.232.6.2.11) +-- cpqHeEventLogTable (1.3.6.1.4.1.232.6.2.11.3) +-- +-- **************************************************************************** + + cpqHeEventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeEventLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of System Event Log Entries." + ::= { cpqHeEventLog 3 } + + cpqHeEventLogEntry OBJECT-TYPE + SYNTAX CpqHeEventLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A System Event Log Entry." + INDEX { cpqHeEventLogEntryNumber } + ::= { cpqHeEventLogTable 1 } + + CpqHeEventLogEntry ::= SEQUENCE { + cpqHeEventLogEntryNumber INTEGER, + cpqHeEventLogEntrySeverity INTEGER, + cpqHeEventLogEntryClass INTEGER, + cpqHeEventLogEntryCode INTEGER, + cpqHeEventLogEntryCount INTEGER, + cpqHeEventLogInitialTime OCTET STRING, + cpqHeEventLogUpdateTime OCTET STRING, + cpqHeEventLogErrorDesc DisplayString, + cpqHeEventLogFreeFormData OCTET STRING + } + + cpqHeEventLogEntryNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies this system event log + entry." + ::= { cpqHeEventLogEntry 1 } + + cpqHeEventLogEntrySeverity OBJECT-TYPE + SYNTAX INTEGER { + informational(2), -- informational with no action required + infoWithAlert(3), -- informational but with LCD alert message + repaired(6), -- corrective action taken + caution(9), -- non-fatal error condition + critical(15) -- component failure + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value specifies the severity of the event log entry. + A caution or critical entry can have it's severity + lowered by setting this variable to the repaired state." + ::= { cpqHeEventLogEntry 2 } + + cpqHeEventLogEntryClass OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the event log entry class designation." + ::= { cpqHeEventLogEntry 3 } + + cpqHeEventLogEntryCode OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the event log entry code designation. + The meaning of this changes depending on the class." + ::= { cpqHeEventLogEntry 4 } + + cpqHeEventLogEntryCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the event log entry occurrence count. + This represents the number of times this event has occurred + starting from the initial time until the last modified time." + ::= { cpqHeEventLogEntry 5 } + + cpqHeEventLogInitialTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time stamp when the event log entry was first created. + + field octets contents range + ===== ====== ======== ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + + The year field is set with the most significant octet first. + A value of 0 in the year indicates an unknown time stamp." + ::= { cpqHeEventLogEntry 6 } + + cpqHeEventLogUpdateTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time stamp when the event log entry was last modified. + + field octets contents range + ===== ====== ======== ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + + The year field is set with the most significant octet first. + A value of 0 in the year indicates an unknown time stamp." + ::= { cpqHeEventLogEntry 7 } + + cpqHeEventLogErrorDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text description of the event log entry." + ::= { cpqHeEventLogEntry 8 } + + cpqHeEventLogFreeFormData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the free form data associated with a particular + event." + ::= { cpqHeEventLogEntry 9 } + +-- **************************************************************************** +-- Health MIB Management Display Group +-- =================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeMgmtDisplay Group (1.3.6.1.4.1.232.6.2.12) +-- +-- **************************************************************************** + +-- The cpqHeMgmtDisplay group maintains information about the Management +-- Display device. +-- +-- Implementation of the cpqHeTrap group is mandatory for agents that +-- support the Server Health MIB. + + cpqHeMgmtDisplayType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- Unknown device or could not be determined + none(2), -- No Management display device + imd4x16(3), -- IMD display (4 lines by 16 chars) + ocp1x16(4) -- Digital OCP display (1 line by 16 chars) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the type of Management Display device. + If a display device is available on the server, the type + will be set accordingly. If no device is present, the value + will be set to none(2)." + ::= { cpqHeMgmtDisplay 1 } + + cpqHeMgmtDisplayText OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The text to be written to the Management display device. + + If this item is read, it may not accurately reflect what + is currently displayed." + ::= { cpqHeMgmtDisplay 2 } + + cpqHeMgmtUID OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- Unknown device or could not be determined + none(2), -- No unit identifier device + ledOn(3), -- Unit identifier LED is On + ledOff(4), -- Unit identifier LED is Off + ledBlinking(5) -- Unit identifier LED is Blinking + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Unit Identifier LED. + + This value will be one of the following: + + other(1) + The state of the LED could not be determined. Setting the + LED state is not allowed. + + none(2) + The LED is not present. Setting LED state is not allowed. + + ledOn(3) + The LED is present and ON. The LED can be turned Off or Blinking + by setting the cpqHeMgmtUID to ledOff(4) or ledBlinking(5) respectively. + + ledOff(4) + The LED is present and OFF. The LED can be turned On or Blinking + by setting the cpqHeMgmtUID to ledOn(3) or ledBlinking(5) respectively. + + ledBlinking(5) + The LED is present and is Blinking. The LED can be turned On or Off + by setting the cpqHeMgmtUID to ledOn(3) or ledOff(4) respectively" + ::= { cpqHeMgmtDisplay 3 } + +-- **************************************************************************** +-- Health MIB Power Converter Group +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHePowerConverter Group (1.3.6.1.4.1.232.6.2.13) +-- +-- The cpqHePowerConverter group describes the power converter modules +-- in the system. +-- +-- Implementation of the cpqHePowerConverter group is mandatory for all +-- agents that support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHePowerConverterSupported OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + supported(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies if this system supports reporting + power converter module information." + ::= { cpqHePowerConverter 1 } + + cpqHePowerConverterCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the power + converters modules in the system." + ::= { cpqHePowerConverter 2 } + +-- **************************************************************************** +-- Health MIB Power Converter Table +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHePowerConverter Group (1.3.6.1.4.1.232.6.2.13) +-- cpqHePowerConverterTable (1.3.6.1.4.1.232.6.2.13.3) +-- +-- **************************************************************************** + + cpqHePowerConverterTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHePowerConverterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of Power Converter Module Entries." + ::= { cpqHePowerConverter 3 } + + cpqHePowerConverterEntry OBJECT-TYPE + SYNTAX CpqHePowerConverterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Power Converter Module Entry." + INDEX { cpqHePwrConvChassis, cpqHePwrConvIndex } + ::= { cpqHePowerConverterTable 1 } + + CpqHePowerConverterEntry ::= SEQUENCE { + cpqHePwrConvChassis INTEGER, + cpqHePwrConvIndex INTEGER, + cpqHePwrConvPresent INTEGER, + cpqHePwrConvSlot INTEGER, + cpqHePwrConvSocket INTEGER, + cpqHePwrConvRedundant INTEGER, + cpqHePwrConvRedundantGroupId INTEGER, + cpqHePwrConvCondition INTEGER, + cpqHePwrConvHwLocation DisplayString + } + + cpqHePwrConvChassis OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The system chassis number containing the power converter + modules." + ::= { cpqHePowerConverterEntry 1 } + + cpqHePwrConvIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Power Converter Module number to index within the chassis." + ::= { cpqHePowerConverterEntry 2 } + + cpqHePwrConvPresent OBJECT-TYPE + SYNTAX INTEGER { + other(1), + absent(2), + present(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the Power Converter Module described is + present in the system." + ::= { cpqHePowerConverterEntry 3 } + + cpqHePwrConvSlot OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Power Converter Module slot number within the chassis." + ::= { cpqHePowerConverterEntry 4 } + + cpqHePwrConvSocket OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Power Converter Module socket number within the slot." + ::= { cpqHePowerConverterEntry 5 } + + cpqHePwrConvRedundant OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonRedundant(2), + redundant(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This specifies if the Power Converter Module is redundant." + ::= { cpqHePowerConverterEntry 6 } + + cpqHePwrConvRedundantGroupId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Power Converter Module group id. A redundant set of + power converters will have the same group id." + ::= { cpqHePowerConverterEntry 7 } + + cpqHePwrConvCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Power Converter Module condition." + ::= { cpqHePowerConverterEntry 8 } + + cpqHePwrConvHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the power converter. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHePowerConverterEntry 9 } + +-- **************************************************************************** +-- Health MIB Advanced Memory Protection Group (formerly Resilient Memory) +-- ======================================================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) +-- +-- The cpqHeResilientMemory group describes the Advanced Memory Protection +-- sub-system in the server. +-- +-- Implementation of the cpqHeResilientMemory group is mandatory for all +-- Server Agents that support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeResilientMemTypeActive OBJECT-TYPE + SYNTAX INTEGER { + other(1), + none(2), + onLineSpare(3), + mirrored(4), -- deprecated + advancedEcc(5), + mirroredSingleBoard(6), + mirroredDualBoard(7), + xor(8), + lockStep(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the type of Advanced Memory Protection fault + tolerance currently active on the system. + + The following connection states are supported: + + other(1) + The Advanced Memory Protection fault tolerance cannot be + determined by the Management Agent. You may need to upgrade + your software. + + none(2) + This system is not configured for Advanced Memory Protection + fault tolerance or Advanced Memory Protection is not available + on this system. + + onLineSpare(3) + This system is configured for Online Spare Advanced Memory + Protection. + + mirrored(4) + This system is configured for Mirrored Advanced Memory + Protection. + + advancedECC(5) + This system is configured for the Advanced ECC type of + Advanced Memory Protection. + + mirroredSingleBoard(6) + This system is configured for Mirrored Advanced Memory + Protection within a single memory board. + + mirroredDualBoard(7) + This system is configured for Mirrored Advanced Memory + Protection within a dual memory board configuration. The + mirrored memory may be swapped with memory on the same + memory board or with memory on the second memory board. + + xor(8) + This system is configured for Advanced Memory Protection + using the XOR engine. + + lockStep(9) + This system is configured for LockStep type of + Advanced Memory Protection." + ::= { cpqHeResilientMemory 1 } + + cpqHeResilientMemTypeAvailable OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the type of Advanced Memory Protection + Fault Tolerance available on the system. + + This is a collection of flags used to indicate the fault + Advanced Memory Protection options available. This integer + is a bitmap, with each bit indicating the availability of an + option. If the bit is set to 1, the option is available; + otherwise it is not. Multiple options are allowed. + + NOTE: bit 31 is the most significant bit, bit 0 is the least + significant. + + Bit 31-7: RESERVED (0) + Bit 6: LockStep + Bit 5: XOR + Bit 4: Mirrored Memory with dual memory boards + Bit 3: Mirrored Memory within a single memory board + Bit 2: Advanced ECC + Bit 1: Mirrored (deprecated) + Bit 0: Online Spare" + ::= { cpqHeResilientMemory 2 } + + cpqHeResilientMemStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notProtected(2), + protected(3), + degraded(4), + dimmEcc(5), + mirrorNoFaults(6), + mirrorWithFaults(7), + hotSpareNoFaults(8), + hotSpareWithFaults(9), + xorNoFaults(10), + xorWithFaults(11), + advancedEcc(12), + advancedEccWithFaults(13), + lockStep(14), + lockStepWithFaults(15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the current state of the Advanced + Memory Protection subsystem. + + The following states are supported: + + other(1) + The system does not support Advanced Memory Protection or the + status cannot be determined by the Management Agent. + + notProtected(2) + This system supports Advanced Memory Protection but the + feature is disabled. + + protected(3) + The system is protected by Advanced Memory Protection. + + degraded(4) + The system was protected, but the Advanced Memory + Protection feature has been engaged. + + dimmEcc(5) + The system is protected via DIMM ECC only. + + mirrorNoFaults(6) + The system is protected by Advanced Memory Protection in the + mirrored mode. No DIMM faults have been detected. + + mirrorWithFaults(7) + The system is protected by Advanced Memory Protection in the + mirrored mode. One or more DIMM faults have been detected. + + hotSpareNoFaults(8) + The system is protected by Advanced Memory Protection in the + hot spare mode. No DIMM faults have been detected. + + hotSpareWithFaults(9) + The system is protected by Advanced Memory Protection in the + hot spare mode. One or more DIMM faults have been detected. + + xorNoFaults(10) + The system is protected by Advanced Memory Protection in the + XOR memory mode. No DIMM faults have been detected. + + xorWithFaults(11) + The system is protected by Advanced Memory Protection in the + XOR memory mode. One or more DIMM faults have been detected. + + advancedEcc(12) + The system is protected by Advanced Memory Protection in the + Advanced ECC mode. + + advancedEccWithFaults(13) + The system is protected by Advanced Memory Protection in the + Advanced ECC mode. One or more DIMM faults have been detected. + + lockStep(14) + The system is protected by Advanced Memory Protection in the + Lock Step mode. + + localStepWithFaults(15) + The system is protected by Advanced Memory Protection in the + Lock Step mode. One or more DIMM faults have been detected." + ::= { cpqHeResilientMemory 3 } + + cpqHeResilientMemCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the current condition of the Advanced + Memory Protection subsystem. + + The following states are supported: + + other(1) + The system does not support fault tolerant memory or the + state cannot be determined by the Management Agent. + + ok(2) + This system is operating normally. + + degraded(3) + The system is running in a degraded state because the + Advanced Memory Protection subsystem has been engaged." + ::= { cpqHeResilientMemory 4 } + + cpqHeResilientMemHotPlug OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonHotPluggable(2), + hotPluggable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the current condition of the Advanced + Memory Protection subsystem. + + The following states are supported: + + other(1) + The state could not be determined or the system does not + support Advanced Memory Protection. + + nonHotPluggable(2) + The memory board or cartridge is not hot plug capable. + + hotPluggable(3) + The memory board or cartridge is hot plug capable and can be + removed if the system is operating in a redundant state. A + memory board or cartridge may be added to an empty bay." + ::= { cpqHeResilientMemory 5 } + + cpqHeResilientMemOperatingSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the current operating speed of the Advanced + Memory Protection subsystem in MHz. + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResilientMemory 6 } + + cpqHeResilientMemOsMemSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the size of memory as seen by the Operating + System in MB (1 MB = 1048576 bytes). + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResilientMemory 7 } + + cpqHeResilientMemTotalMemSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the total size of memory including memory seen + by the Operating System and the memory used for spare, mirrored, or + RAID configurations in MB (1 MB = 1048576 bytes). + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResilientMemory 8 } + + cpqHeResilientMemRivState OBJECT-TYPE + SYNTAX INTEGER { + other(1), + inactive(2), + rebuilding(3), + initializing(4), + verifying(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the state of the Rebuild/Initialize/Verify + (RIV) engine of the Advanced Memory Protection sub-system. + + The following states are supported: + + other(1) + The system does not support Advanced Memory Protection or this + value cannot be determined, + + inactive(2) + The RIV engine is idle. + + rebuilding(3) + The RIV engine is rebuilding the XOR data. + + initializing(4) + The RIV engine is initializing memory. + + verifying(5) + The RIV engine is verifying memory integrity." + ::= { cpqHeResilientMemory 9 } + +-- **************************************************************************** +-- Health MIB Advanced Memory Protection Board Group +-- ================================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) +-- cpqHeResMemBoardTable (1.3.6.1.4.1.232.6.2.14.10) +-- cpqHeResMemBoardEntry (1.3.6.1.4.1.232.6.2.14.10.1) +-- +-- **************************************************************************** + + cpqHeResMemBoardTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeResMemBoardEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of memory board or cartridge descriptions in Advanced + Memory Protection systems." + ::= { cpqHeResilientMemory 10 } + + cpqHeResMemBoardEntry OBJECT-TYPE + SYNTAX CpqHeResMemBoardEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A memory board or cartridge description." + INDEX { cpqHeResMemBoardSlotIndex } + ::= { cpqHeResMemBoardTable 1 } + + CpqHeResMemBoardEntry ::= SEQUENCE { + cpqHeResMemBoardSlotIndex INTEGER, + cpqHeResMemBoardOnlineStatus INTEGER, + cpqHeResMemBoardErrorStatus INTEGER, + cpqHeResMemBoardLocked INTEGER, + cpqHeResMemBoardNumSockets INTEGER, + cpqHeResMemBoardOsMemSize INTEGER, + cpqHeResMemBoardTotalMemSize INTEGER, + cpqHeResMemBoardCondition INTEGER, + cpqHeResMemBoardHotPlug INTEGER + } + + cpqHeResMemBoardSlotIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot in which the memory board or cartridge is installed." + ::= { cpqHeResMemBoardEntry 1 } + + cpqHeResMemBoardOnlineStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + present(2), + absent(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The online status of the Advanced Memory Protection board or + cartridge. + + The following status values are supported: + + other(1) + The value is unsupported or could not be determined. + + present(2) + The board or cartridge has memory and is currently online. + + absent(3) + The board or cartridge is missing or offline." + ::= { cpqHeResMemBoardEntry 2 } + + cpqHeResMemBoardErrorStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + noError(2), + dimmEccError(3), + unlockError(4), + configError(5), + busError(6), + powerError(7), + advancedEcc(8), + onlineSpare(9), + mirrored(10), + mirroredDimmError(11), + memoryRaid(12), + raidDimmError(13), + lockstep(14), + lockstepDimmError(15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The error status of the Advanced Memory Protection board or + cartridge. + + The following status values are supported: + + other(1) + The value is unsupported or could not be determined. + + noError(2) + The board or cartridge is configured and operating correctly. + + dimmEccError(3) + The board or cartridge has at least one DIMM ECC error. + + unlockError(4) + The board or cartridge is unlocked when it should not be. + Please insure the board of cartridge is locked. + + configError(5) + The board or cartridge has a bad memory configuration. + Please insure all memory modules are of the correct type, + speed, latency, etc. + + busError(6) + The board or cartridge has a memory bus error. + Please insure all memory modules are of the correct type, + speed, latency, etc. Also insure the cartridge is inserted + properly. + + powerError(7) + The board or cartridge has power error. + Please insure all memory modules are of the correct type, + speed, latency, etc. Also insure the cartridge is inserted + properly. + + advancedEcc(8), + The board or cartridge is configured for advanced Ecc mode. + + onlineSpare(9), + The board or cartridge is configured for Online Spare mode. + + mirrored(10), + The board or cartridge is configured for mirrored mode. + + mirroredDimmError(11), + The board or cartridge has a mirrored Dimm error. + + memoryRaid(12), + The board or cartridge is configured for memory raid mode. + + raidDimmError(13) + The board or cartridge has a raid Dimm error. + + lockstep(14) + The board or cartridge is configured for LockStep. + + lockstepDimmError(15) + The board or cartridge has a lockStep Dimm error." + ::= { cpqHeResMemBoardEntry 3 } + + cpqHeResMemBoardLocked OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unlocked(2), + locked(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The locked state of the Advanced Memory Protection board or + cartridge. + + The following status values are supported: + + other(1) + The value is unsupported or could not be determined. If the + system does not support hot plugging of the board or + cartridge, then this value will be returned. + + unlocked(2) + The board or cartridge is currently unlocked and may be + removed. + + locked(3) + The board or cartridge is currently locked and may not be + removed." + ::= { cpqHeResMemBoardEntry 4 } + + cpqHeResMemBoardNumSockets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of memory sockets for this memory board or + cartridge. + + If this value could not be determined, or if the board or + cartridge has been removed, this value will be -1." + ::= { cpqHeResMemBoardEntry 5 } + + cpqHeResMemBoardOsMemSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the size of memory for this board or + cartridge as seen by the Operating System in MB (1 MB = + 1048576 bytes). + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResMemBoardEntry 6 } + + cpqHeResMemBoardTotalMemSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the size of memory for this board or + cartridge including memory seen by the Operating System and + the memory used for spare, mirrored, or XOR configurations + in MB (1 MB = 1048576 bytes). + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResMemBoardEntry 7 } + + cpqHeResMemBoardCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the Advanced Memory + Protection memory board or cartridge. + + The following status values are supported: + + other(1): + The condition of this memory board or cartridge + could not be determined. + + ok(2): + The memory board or cartridge is operating normally. + + degraded(3): + The memory board or cartridge is in an error state. + Check for correct memory installation and that the + board has been inserted properly." + ::= { cpqHeResMemBoardEntry 8 } + + cpqHeResMemBoardHotPlug OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonHotPluggable(2), + hotPluggable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This indicates if the memory board is capable of being + removed and/or inserted while the system is in an + operational state. + + The following states are supported: + + other(1) + The state could not be determined or the system does not + support Advanced Memory Protection. + + nonHotPluggable(2) + The memory board or cartridge is not hot plug capable. + + hotPluggable(3) + The memory board or cartridge is hot plug capable and can be + removed if the system is operating in a redundant state. A + memory board or cartridge may be added to an empty bay." + ::= { cpqHeResMemBoardEntry 9 } + +-- **************************************************************************** +-- Health MIB Advanced Memory Protection Memory Module Group +-- ========================================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) +-- cpqHeResMemModuleTable (1.3.6.1.4.1.232.6.2.14.11) +-- cpqHeResMemModuleEntry (1.3.6.1.4.1.232.6.2.14.11.1) +-- +-- **************************************************************************** + + cpqHeResMemModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeResMemModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of memory module descriptions." + ::= { cpqHeResilientMemory 11 } + + cpqHeResMemModuleEntry OBJECT-TYPE + SYNTAX CpqHeResMemModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A memory module description." + INDEX { cpqHeResMemBoardIndex, cpqHeResMemModuleIndex } + ::= { cpqHeResMemModuleTable 1 } + + CpqHeResMemModuleEntry ::= SEQUENCE { + cpqHeResMemBoardIndex INTEGER, + cpqHeResMemModuleIndex INTEGER, + cpqHeResMemModuleSparePartNo DisplayString, + cpqHeResMemModuleStatus INTEGER, + cpqHeResMemModuleCondition INTEGER, + cpqHeResMemModuleSpd OCTET STRING + } + + cpqHeResMemBoardIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot in which the memory board or cartridge is installed. + + A value of 0 indicates memory installed directly on the + system board." + ::= { cpqHeResMemModuleEntry 1 } + + cpqHeResMemModuleIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module number." + ::= { cpqHeResMemModuleEntry 2 } + + cpqHeResMemModuleSparePartNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module's manufacturer part number. + + This field will be a null (size 0) string if the manufacturer + part number is not available." + ::= { cpqHeResMemModuleEntry 3 } + + cpqHeResMemModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notPresent(2), + present(3), + good(4), + add(5), + upgrade(6), + missing(7), + doesNotMatch(8), + notSupported(9), + badConfig(10), + degraded(11) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the correctable memory + errors for this memory module. + + The following status values are supported: + + other(1): + The status is unknown or could not be determined. + + notPresent(2): + The memory module is not present or is un-initialized. + + present(3): + The memory module is present but not in use. + + good(4): + The memory module is present and in use. The corrected + error threshold has not been exceeded. + + add(5): + The memory module has been added, but is not yet in use. + + upgraded(6): + The memory module has been upgraded, but the memory is not + yet in use. + + missing(7): + An expected memory module is missing. + + doesNotMatch(8): + The memory module does not match the other memory modules + within the bank. + + notSupported(9): + The memory module is not supported. + + badConfig(10): + The memory module violates the add/upgrade configuration + rules. + + degraded(11): + The memory module's correctable error count has exceeded + threshold." + ::= { cpqHeResMemModuleEntry 4 } + + cpqHeResMemModuleCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the correctable memory + errors for this memory module. + + The following status values are supported: + + other(1): + ECC is not supported on this memory module or the + condition could not be determined. + + ok(2): + The memory module is operating normally. + + degraded(3): + The memory module is correctable error count has exceeded + threshold or a configuration error has been detected." + ::= { cpqHeResMemModuleEntry 5 } + + cpqHeResMemModuleSpd OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the raw Serial Presence Detect information contained + in the memory module. + + If the SPD information is not available, this item will be empty." + ::= { cpqHeResMemModuleEntry 6 } + +-- **************************************************************************** +-- Health MIB Advanced Memory Protection Board Group +-- ================================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) +-- cpqHeResMem2BoardTable (1.3.6.1.4.1.232.6.2.14.12) +-- cpqHeResMem2BoardEntry (1.3.6.1.4.1.232.6.2.14.12.1) +-- +-- **************************************************************************** + + cpqHeResMem2BoardTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeResMem2BoardEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of memory board or cartridge descriptions in Advanced + Memory Protection systems." + ::= { cpqHeResilientMemory 12 } + + cpqHeResMem2BoardEntry OBJECT-TYPE + SYNTAX CpqHeResMem2BoardEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A memory board or cartridge or CPU based Memory Board description." + INDEX { cpqHeResMem2BoardIndex } + ::= { cpqHeResMem2BoardTable 1 } + + CpqHeResMem2BoardEntry ::= SEQUENCE { + cpqHeResMem2BoardIndex INTEGER, + cpqHeResMem2BoardSlotNum INTEGER, + cpqHeResMem2BoardCpuNum INTEGER, + cpqHeResMem2BoardRiserNum INTEGER, + cpqHeResMem2BoardOnlineStatus INTEGER, + cpqHeResMem2BoardErrorStatus INTEGER, + cpqHeResMem2BoardLocked INTEGER, + cpqHeResMem2BoardNumSockets INTEGER, + cpqHeResMem2BoardOsMemSize INTEGER, + cpqHeResMem2BoardTotalMemSize INTEGER, + cpqHeResMem2BoardCondition INTEGER, + cpqHeResMem2BoardHotPlug INTEGER + } + + cpqHeResMem2BoardIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This will represent the unique memory board or cartridge or riser." + ::= { cpqHeResMem2BoardEntry 1 } + + + cpqHeResMem2BoardSlotNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot in which the memory board or cartridge is installed." + ::= { cpqHeResMem2BoardEntry 2 } + + cpqHeResMem2BoardCpuNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Processor Number to which the memory Riser belongs. Value 0 means memory is not CPU based." + ::= { cpqHeResMem2BoardEntry 3 } + + cpqHeResMem2BoardRiserNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Riser Number on the Processor." + ::= { cpqHeResMem2BoardEntry 4 } + + cpqHeResMem2BoardOnlineStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + present(2), + absent(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The online status of the Advanced Memory Protection board or + cartridge or riser. + + The following status values are supported: + + other(1) + The value is unsupported or could not be determined. + + present(2) + The board or cartridge or riser has memory and is currently online. + + absent(3) + The board or cartridge or riser is missing or offline." + ::= { cpqHeResMem2BoardEntry 5 } + + cpqHeResMem2BoardErrorStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + noError(2), + dimmEccError(3), + unlockError(4), + configError(5), + busError(6), + powerError(7), + advancedEcc(8), + onlineSpare(9), + mirrored(10), + mirroredDimmError(11), + memoryRaid(12), + raidDimmError(13), + lockStep(14), + lockStepError(15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The error status of the Advanced Memory Protection board or + Cartridge or riser. + + The following status values are supported: + + other(1) + The value is unsupported or could not be determined. + + noError(2) + The board or cartridge or riser is configured and operating correctly. + + dimmEccError(3) + The board or cartridge or riser has at least one DIMM ECC error. + + unlockError(4) + The board or cartridge or riser is unlocked when it should not be. + Please insure the board of cartridge is locked. + + configError(5) + The board or cartridge or riser has a bad memory configuration. + Please insure all memory modules are of the correct type, + speed, latency, etc. + + busError(6) + The board or cartridge or riser has a memory bus error. + Please insure all memory modules are of the correct type, + speed, latency, etc. Also insure the cartridge is inserted + properly. + + powerError(7) + The board or cartridge or riser has power error. + Please insure all memory modules are of the correct type, + speed, latency, etc. Also insure the cartridge is inserted + properly. + + advancedEcc(8), + The board or cartridge or riser is configured for advanced Ecc mode. + + onlineSpare(9), + The board or cartridge or riser is configured for Online Spare mode. + + mirrored(10), + The board or cartridge or riser is configured for mirrored mode. + + mirroredDimmError(11), + The board or cartridge or riser has a mirrored Dimm error. + + memoryRaid(12), + The board or cartridge or riser is configured for memory raid mode. + + raidDimmError(13) + The board or cartridge or riser has a raid Dimm error. + + lockStep(14), + The board or cartridge or riser is configured for lockStep mode. + + lockStepError(15) + The board or cartridge or riser has a lockStep Dimm error." + ::= { cpqHeResMem2BoardEntry 6 } + + cpqHeResMem2BoardLocked OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unlocked(2), + locked(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The locked state of the Advanced Memory Protection board or + Cartridge or riser. + + The following status values are supported: + + other(1) + The value is unsupported or could not be determined. If the + system does not support hot plugging of the board or + cartridge or riser, then this value will be returned. + + unlocked(2) + The board or cartridge or riser is currently unlocked and may be + removed. + + locked(3) + The board or cartridge or riser is currently locked and may not be + removed." + ::= { cpqHeResMem2BoardEntry 7 } + + cpqHeResMem2BoardNumSockets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of memory sockets for this memory board or + Cartridge or riser. + + If this value could not be determined, or if the board or + Cartridge or riser has been removed, this value will be -1." + ::= { cpqHeResMem2BoardEntry 8 } + + cpqHeResMem2BoardOsMemSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the size of memory for this board or + cartridge or riser as seen by the Operating System in MB (1 MB = + 1048576 bytes). + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResMem2BoardEntry 9 } + + cpqHeResMem2BoardTotalMemSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the size of memory for this board or + Cartridge or riser including memory seen by the Operating System and + the memory used for spare, mirrored, or XOR configurations + in MB (1 MB = 1048576 bytes). + + If this system does not support Advanced Memory Protection or this + value cannot be determined, then a value of 0 will be returned." + ::= { cpqHeResMem2BoardEntry 10 } + + cpqHeResMem2BoardCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the Advanced Memory + Protection memory board or cartridge or riser. + + The following status values are supported: + + other(1): + The condition of this memory board or cartridge or riser + could not be determined. + + ok(2): + The memory board or cartridge or riser is operating normally. + + degraded(3): + The memory board or cartridge or riser is in an error state. + Check for correct memory installation and that the + board has been inserted properly." + ::= { cpqHeResMem2BoardEntry 11 } + + cpqHeResMem2BoardHotPlug OBJECT-TYPE + SYNTAX INTEGER { + other(1), + nonHotPluggable(2), + hotPluggable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This indicates if the memory board is capable of being + removed and/or inserted while the system is in an + operational state. + + The following states are supported: + + other(1) + The state could not be determined or the system does not + support Advanced Memory Protection. + + nonHotPluggable(2) + The memory board or cartridge or riser is not hot plug capable. + + hotPluggable(3) + The memory board or cartridge or riser is hot plug capable and can be + removed if the system is operating in a redundant state. A + memory board or cartridge or riser may be added to an empty bay." + ::= { cpqHeResMem2BoardEntry 12} + +-- **************************************************************************** +-- Health MIB Advanced Memory Protection Memory Module Group +-- ========================================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHeResilientMemory Group (1.3.6.1.4.1.232.6.2.14) +-- cpqHeResMem2ModuleTable (1.3.6.1.4.1.232.6.2.14.13) +-- cpqHeResMem2ModuleEntry (1.3.6.1.4.1.232.6.2.14.13.1) +-- +-- **************************************************************************** + + cpqHeResMem2ModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeResMem2ModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of memory module descriptions." + ::= { cpqHeResilientMemory 13 } + + cpqHeResMem2ModuleEntry OBJECT-TYPE + SYNTAX CpqHeResMem2ModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A memory module description." + INDEX { cpqHeResMem2Module } + ::= { cpqHeResMem2ModuleTable 1 } + + CpqHeResMem2ModuleEntry ::= SEQUENCE { + cpqHeResMem2Module INTEGER, + cpqHeResMem2BoardNum INTEGER, + cpqHeResMem2CpuNum INTEGER, + cpqHeResMem2RiserNum INTEGER, + cpqHeResMem2ModuleNum INTEGER, + cpqHeResMem2ModuleSize INTEGER, + cpqHeResMem2ModuleType INTEGER, + cpqHeResMem2ModuleTechnology INTEGER, + cpqHeResMem2ModuleManufacturer DisplayString, + cpqHeResMem2ModulePartNo DisplayString, + cpqHeResMem2ModuleDate OCTET STRING, + cpqHeResMem2ModuleSerialNo DisplayString, + cpqHeResMem2ModuleHwLocation DisplayString, + cpqHeResMem2ModuleFrequency INTEGER, + cpqHeResMem2ModuleCellTablePtr INTEGER, + cpqHeResMem2ModuleCellStatus INTEGER, + cpqHeResMem2ModulePartNoMfgr DisplayString, + cpqHeResMem2ModuleSerialNoMfgr DisplayString, + cpqHeResMem2ModuleStatus INTEGER, + cpqHeResMem2ModuleCondition INTEGER, + cpqHeResMem2ModuleSpd OCTET STRING + } + + cpqHeResMem2Module OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This will represent the unique memory DIMM on + memory board or cartridge or riser. " + ::= { cpqHeResMem2ModuleEntry 1 } + + cpqHeResMem2BoardNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot in which the memory board or cartridge is installed. + + A value of 0 indicates memory installed directly on the + system board." + ::= { cpqHeResMem2ModuleEntry 2 } + + cpqHeResMem2CpuNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module CPU number. Value 0 means memory is not Processor based." + ::= { cpqHeResMem2ModuleEntry 3 } + + cpqHeResMem2RiserNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module rasier number." + ::= { cpqHeResMem2ModuleEntry 4 } + + cpqHeResMem2ModuleNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module number." + ::= { cpqHeResMem2ModuleEntry 5 } + + cpqHeResMem2ModuleSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Module memory size in kilobytes. A kilobyte of memory is + defined as 1024 bytes. + + A size of 0 indicates the module is not present." + ::= { cpqHeResMem2ModuleEntry 6 } + + cpqHeResMem2ModuleType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + board(2), + cpqSingleWidthModule(3), + cpqDoubleWidthModule(4), + simm(5), + pcmcia(6), + compaq-specific(7), + dimm(8), + smallOutlineDimm(9), + rimm(10), + srimm(11), + fb-dimm(12) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Type of memory module installed. The value other(1) will be + given if the type is not known. The value board(2) will be + given if the memory module is permanently mounted (not modular) + on a system board or memory expansion board." + ::= { cpqHeResMem2ModuleEntry 7 } + + cpqHeResMem2ModuleTechnology OBJECT-TYPE + SYNTAX INTEGER { + other(1), + fastPageMode(2), + edoPageMode(3), + burstEdoPageMode(4), + synchronous(5), + rdram(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Technology type of memory module installed. The value other(1) + will be given if the technology is not known." + ::= { cpqHeResMem2ModuleEntry 8 } + + cpqHeResMem2ModuleManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module's manufacturer name. + + This field will be a null (size 0) string if the manufacturer + name is not available." + ::= { cpqHeResMem2ModuleEntry 9 } + + cpqHeResMem2ModulePartNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module's manufacturer part number. + + This field will be a null (size 0) string if the manufacturer + part number is not available." + ::= { cpqHeResMem2ModuleEntry 10 } + + cpqHeResMem2ModuleDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module date of manufacture. + + field octets contents range + ===== ====== ====================== ======== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + This field will be set to year = 0 if the date of manufacture + is not available. The hour, minute, and second fields will + always be set to 0." + ::= { cpqHeResMem2ModuleEntry 11 } + + cpqHeResMem2ModuleSerialNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The memory module's serial number. + + This field will be a null (size 0) string if the serial number + is not available." + ::= { cpqHeResMem2ModuleEntry 12 } + + cpqHeResMem2ModuleHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the memory module. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHeResMem2ModuleEntry 13 } + + + cpqHeResMem2ModuleFrequency OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module frequency in MHz. The value zero (0) will + be given if the module frequency cannot be determined." + ::= { cpqHeResMem2ModuleEntry 14 } + + cpqHeResMem2ModuleCellTablePtr OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS optional + DESCRIPTION + "Index for the cell in cpqSeCellTable where the memory board is + installed." + ::= { cpqHeResMem2ModuleEntry 15 } + + cpqHeResMem2ModuleCellStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + deconfigured(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This provides the current status for this memory module. + + The following status values are supported: + + other(1): + The memory module status is not available + + ok(2): + The memory module is active + + deconfigured(3): + The memory module is not ready" + ::= { cpqHeResMem2ModuleEntry 16 } + + + cpqHeResMem2ModulePartNoMfgr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The memory module's manufacturer's part number. + + This field will be a null (size 0) string if the manufacturer + part number is not available." + ::= { cpqHeResMem2ModuleEntry 17 } + + cpqHeResMem2ModuleSerialNoMfgr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The memory module's manufacturer's serial number. + + This field will be a null (size 0) string if the manufacturer + serial number is not available." + ::= { cpqHeResMem2ModuleEntry 18 } + + + cpqHeResMem2ModuleStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notPresent(2), + present(3), + good(4), + add(5), + upgrade(6), + missing(7), + doesNotMatch(8), + notSupported(9), + badConfig(10), + degraded(11) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the correctable memory + errors for this memory module. + + The following status values are supported: + + other(1): + The status is unknown or could not be determined. + + notPresent(2): + The memory module is not present or is un-initialized. + + present(3): + The memory module is present but not in use. + + good(4): + The memory module is present and in use. The corrected + error threshold has not been exceeded. + + add(5): + The memory module has been added, but is not yet in use. + + upgraded(6): + The memory module has been upgraded, but the memory is not + yet in use. + + missing(7): + An expected memory module is missing. + + doesNotMatch(8): + The memory module does not match the other memory modules + within the bank. + + notSupported(9): + The memory module is not supported. + + badConfig(10): + The memory module violates the add/upgrade configuration + rules. + + degraded(11): + The memory module's correctable error count has exceeded + threshold." + ::= { cpqHeResMem2ModuleEntry 19 } + + cpqHeResMem2ModuleCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + degradedModuleIndexUnknown(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the correctable memory + errors for this memory module. + + The following status values are supported: + + other(1): + ECC is not supported on this memory module or the + condition could not be determined. + + ok(2): + The memory module is operating normally. + + degraded(3): + The memory module is correctable error count has exceeded + threshold or a configuration error has been detected. + + degradedModuleIndexUnknown(4): + The correctable error count has exceeded threshold. + The module number not available." + ::= { cpqHeResMem2ModuleEntry 20 } + + cpqHeResMem2ModuleSpd OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the raw Serial Presence Detect information contained + in the memory module. + + If the SPD information is not available, this item will be empty." + ::= { cpqHeResMem2ModuleEntry 21 } + + +-- **************************************************************************** +-- Health MIB Power Meter Group +-- ======================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeComponent Group (1.3.6.1.4.1.232.6.2) +-- cpqHePowerMeter Group (1.3.6.1.4.1.232.6.2.15) +-- +-- The cpqHePowerMeter group describes the Server's power consumption read +-- +-- +-- Implementation of the cpqHePowerMeter group is mandatory for all +-- platform that support Power Meter. +-- +-- **************************************************************************** + + cpqHePowerMeterSupport OBJECT-TYPE + SYNTAX INTEGER { + other(1), + supported(2), + unsupported(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies whether Power Meter is supported + by this Server . + + The following values are supported: + + other(1) + Could not read the Power Meter status. + + supported(2) + This system support Power Meter. + + unsupported(3) + This system does not support Power Meter." + ::= { cpqHePowerMeter 1} + + + cpqHePowerMeterStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + present(2), + absent(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies whether Power Meter reading is supported + by this Server . + + The following values are supported: + + other(1) + Could not read the Power Meter status. + + present(2) + The Power Meter data is available. + + absent(3) + The Power Meter data is not available at this time." + ::= { cpqHePowerMeter 2} + + + cpqHePowerMeterCurrReading OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This is the current Power Meter reading in Watts. + This value shows the most recent power reading if available. + On systems without Power Meter support, this value will be -1." + ::= { cpqHePowerMeter 3 } + + cpqHePowerMeterPrevReading OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This is the previous Power Meter reading in Watts. + This value shows previous power reading if available. + On systems without Power Meter support, this value will be -1." + ::= { cpqHePowerMeter 4 } + + + +-- **************************************************************************** +-- HealthMIB Trap Group +-- ===================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeTrap Group (1.3.6.1.4.1.232.6.3) (deprecated) +-- +-- The cpqHeTrap group maintains information about the number of traps +-- issued from the health enterprise. The trap group also maintains a table +-- of the last several traps issued. This table is intended to give a +-- management application some recent status information immediately upon +-- accessing the agent. +-- +-- Implementation of the cpqHeTrap group is optional for agents that +-- support the Server Health MIB. +-- +-- **************************************************************************** + + cpqHeTrapPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of SNMP trap packets issued by the + Server Health agent." + ::= { cpqHeTrap 1 } + + cpqHeTrapLogMaxSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum number of entries that will currently be kept in + the trap log. If the maximum size has been reached and a new + trap occurs the oldest trap will be removed." + ::= { cpqHeTrap 2 } + +-- **************************************************************************** +-- Health MIB Trap Log Table +-- ========================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHealth Group (1.3.6.1.4.1.232.6) +-- cpqHeTrap Group (1.3.6.1.4.1.232.6.3) +-- cpqHeTrapLogTable (1.3.6.1.4.1.232.6.3.3) (deprecated) +-- +-- **************************************************************************** + + cpqHeTrapLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHeTrapLogEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "An ordered list of trap log entries (conceptually a queue). The + trap log entries will be kept in the order in which they were + generated with the most recent trap at index 1 and the oldest + trap entry at index trapLogMaxSize. If the maximum number of + entries has been reached and a new trap occurs the oldest trap + will be removed when the new trap is added so the trapMaxLogSize + is not exceeded." + ::= { cpqHeTrap 3 } + + cpqHeTrapLogEntry OBJECT-TYPE + SYNTAX CpqHeTrapLogEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A description of a trap event." + INDEX { cpqHeTrapLogIndex } + ::= { cpqHeTrapLogTable 1 } + + CpqHeTrapLogEntry ::= SEQUENCE { + cpqHeTrapLogIndex INTEGER, + cpqHeTrapType INTEGER, + cpqHeTrapTime OCTET STRING + } + + cpqHeTrapLogIndex OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The value of this object uniquely identifies this trapLogEntry + at this time. The most recent trap will have an index of 1 and + the oldest trap will have an index of trapLogMaxSize. Because of + the queue-like nature of the trapLog this particular trap event's + index will change as new traps are issued." + ::= { cpqHeTrapLogEntry 1 } + + cpqHeTrapType OBJECT-TYPE + SYNTAX INTEGER { + cpqHeCorrectableMemoryError(1), + cpqHeCorrectableMemoryLogDisabled(2), + cpqHe2CorrectableMemoryError(6001), + cpqHe2CorrectableMemoryLogDisabled(6002), + cpqHeThermalTempFailed(6003), + cpqHeThermalTempDegraded(6004), + cpqHeThermalTempOk(6005), + cpqHeThermalSystemFanFailed(6006), + cpqHeThermalSystemFanDegraded(6007), + cpqHeThermalSystemFanOk(6008), + cpqHeThermalCpuFanFailed(6009), + cpqHeThermalCpuFanOk(6010), + cpqHeAsrConfirmation(6011), + cpqHeThermalConfirmation(6012), + cpqHePostError(6013) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The type of the trap event this entry describes. This + number refers to an entry in a list of traps enumerating the + possible traps the Server Health agent may issue." + ::= { cpqHeTrapLogEntry 2 } + + cpqHeTrapTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..6)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The time of the trap event that this entry describes. The time + is given in year (first octet), month, day of month, hour, + minute, second (last octet) order. The octets are in Binary + Coded Decimal (BCD)." + ::= { cpqHeTrapLogEntry 3 } + +-- **************************************************************************** +-- Health MIB Trap Definitions +-- =========================== +-- +-- The SNMP trap messages must not be bigger than 484 octets (bytes). +-- +-- Trap support in an SNMP agent implementation is optional. An SNMP +-- agent implementation may support all, some, or none of the traps. +-- If traps are supported, The user should be provided with the option of +-- disabling traps. +-- ************************************************************************** + + cpqHeCorrectableMemoryError TRAP-TYPE + ENTERPRISE cpqHealth + VARIABLES { cpqHeCorrMemTotalErrs } + DESCRIPTION + "A correctable memory error occurred. + + The error has been corrected. The current number of correctable + memory errors is reported in the variable cpqHeCorrMemTotalErrs." + + --#TYPE "Correctable Memory Error Occurred (1)" + --#SUMMARY "Total correctable errors = %d." + --#ARGUMENTS {0} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1 + + cpqHeCorrectableMemoryLogDisabled TRAP-TYPE + ENTERPRISE cpqHealth + VARIABLES { cpqHeCorrMemLogStatus } + DESCRIPTION + "Correctable memory error tracking disabled. + + The frequency of errors is so high that the error tracking + logic has been temporarily disabled. The cpqHeCorrMemLogStatus + variable indicated the current tracking status." + + --#TYPE "Memory Error Tracking Disabled (2)" + --#SUMMARY "Too many memory errors - tracking now disabled." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 2 + +-- Trap definitions for Insight Manager version 2.00 and greater +-- use the Compaq Enterprise (232) and have unique trap numbers between all +-- of the MIBs. + + cpqHe2CorrectableMemoryError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqHeCorrMemTotalErrs } + DESCRIPTION + "A correctable memory error occurred. + + The error has been corrected. The current number of correctable + memory errors is reported in the variable cpqHeCorrMemTotalErrs." + + --#TYPE "Correctable Memory Error Occurred (6001)" + --#SUMMARY "Total correctable errors = %d." + --#ARGUMENTS {0} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6001 + + cpqHe2CorrectableMemoryLogDisabled TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqHeCorrMemLogStatus } + DESCRIPTION + "Correctable memory error tracking disabled. + + The frequency of errors is so high that the error tracking + logic has been temporarily disabled. The cpqHeCorrMemLogStatus + variable indicated the current tracking status." + + --#TYPE "Memory Error Tracking Disabled (6002)" + --#SUMMARY "Too many memory errors - tracking now disabled." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6002 + + cpqHeThermalTempFailed TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The temperature status has been set to failed. + + The system will be shutdown due to this thermal condition." + + --#TYPE "Thermal Failure (6003)" + --#SUMMARY "System will be shutdown due to this thermal condition." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6003 + + cpqHeThermalTempDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqHeThermalDegradedAction } + DESCRIPTION + "The temperature status has been set to degraded. + + The server's temperature is outside of the normal operating + range. The server will be shutdown if the + cpqHeThermalDegradedAction variable is set to shutdown(3)." + + --#TYPE "Thermal Status Degraded (6004)" + --#SUMMARY "Temperature out of range. Shutdown may occur." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6004 + + cpqHeThermalTempOk TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The temperature status has been set to ok. + + The server's temperature has returned to the normal operating + range." + + --#TYPE "Temperature OK (6005)" + --#SUMMARY "Temperature has returned to normal range." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6005 + + cpqHeThermalSystemFanFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqHeThermalDegradedAction } + DESCRIPTION + "The system fan status has been set to failed. + + A required system fan is not operating normally. The system + will be shutdown if the cpqHeThermalDegradedAction variable + is set to shutdown(3)." + + --#TYPE "System Fan Failure (6006)" + --#SUMMARY "Required fan not operating normally. Shutdown may occur." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6006 + + cpqHeThermalSystemFanDegraded TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The system fan status has been set to degraded. + + An optional system fan is not operating normally." + + --#TYPE "System Fan Degraded (6007)" + --#SUMMARY "An optional fan is not operating normally." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6007 + + cpqHeThermalSystemFanOk TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The system fan status has been set to ok. + + Any previously non-operational system fans have returned to + normal operation." + + --#TYPE "System Fan OK (6008)" + --#SUMMARY "System fan has returned to normal operation." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6008 + + cpqHeThermalCpuFanFailed TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The CPU fan status has been set to failed. + + A processor fan is not operating normally. The server will be + shutdown." + + --#TYPE "CPU Fan Failure (6009)" + --#SUMMARY "CPU fan has failed. Server will be shutdown." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6009 + + cpqHeThermalCpuFanOk TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The CPU fan status has been set to ok. + + Any previously non-operational processor fans have returned + to normal operation." + + --#TYPE "CPU Fan OK (6010)" + --#SUMMARY "CPU fan is now OK." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6010 + + cpqHeAsrConfirmation TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The server is operational again. + + The server has previously been shutdown by the + Automatic Server Recovery (ASR) feature and has just + become operational again." + + --#TYPE "Server Operational (6011)" + --#SUMMARY "Server is operational again after ASR shutdown." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6011 + + cpqHeThermalConfirmation TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The server is operational again. + + The server has previously been shutdown due to a thermal + anomaly on the server and has just become operational again." + + --#TYPE "Server Operational (6012)" + --#SUMMARY "Server is operational again after thermal shutdown." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6012 + + cpqHePostError TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "One or more POST errors occurred. + + Power On Self-Test (POST) errors occur during the server + restart process. " + + --#TYPE "POST Errors Occurred (6013)" + --#SUMMARY "Errors occurred during server restart." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6013 + + cpqHeFltTolPwrSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "The fault tolerant power supply sub-system condition has been + set to degraded." + + --#TYPE "Server Power Supply Degraded (6014)" + --#SUMMARY "The server power supply status has become degraded." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6014 + + + cpqHe3CorrectableMemoryError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeCorrMemTotalErrs } + DESCRIPTION + "A correctable memory error occurred. + + The error has been corrected. The current number of correctable + memory errors is reported in the variable cpqHeCorrMemTotalErrs." + + --#TYPE "Correctable Memory Error Occurred (6015)" + --#SUMMARY "Total correctable errors = %d." + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + + ::= 6015 + + cpqHe3CorrectableMemoryLogDisabled TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeCorrMemLogStatus } + DESCRIPTION + "Correctable memory error tracking disabled. + + The frequency of errors is so high that the error tracking + logic has been temporarily disabled. The cpqHeCorrMemLogStatus + variable indicated the current tracking status." + + --#TYPE "Memory Error Tracking Disabled (6016)" + --#SUMMARY "Too many memory errors - tracking now disabled." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6016 + + cpqHe3ThermalTempFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The temperature status has been set to failed. + + The system will be shutdown due to this thermal condition." + + --#TYPE "Thermal Failure (6017)" + --#SUMMARY "System will be shutdown due to this thermal condition." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6017 + + cpqHe3ThermalTempDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction } + DESCRIPTION + "The temperature status has been set to degraded. + + The server's temperature is outside of the normal operating + range. The server will be shutdown if the + cpqHeThermalDegradedAction variable is set to shutdown(3)." + + --#TYPE "Thermal Status Degraded (6018)" + --#SUMMARY "Temperature out of range. Shutdown may occur." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6018 + + cpqHe3ThermalTempOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The temperature status has been set to ok. + + The server's temperature has returned to the normal operating + range." + + --#TYPE "Temperature OK (6019)" + --#SUMMARY "Temperature has returned to normal range." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6019 + + cpqHe3ThermalSystemFanFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction } + DESCRIPTION + "The system fan status has been set to failed. + + A required system fan is not operating normally. The system + will be shutdown if the cpqHeThermalDegradedAction variable + is set to shutdown(3)." + + --#TYPE "System Fan Failure (6020)" + --#SUMMARY "Required fan not operating normally. Shutdown may occur." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6020 + + cpqHe3ThermalSystemFanDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The system fan status has been set to degraded. + + An optional system fan is not operating normally." + + --#TYPE "System Fan Degraded (6021)" + --#SUMMARY "An optional fan is not operating normally." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6021 + + cpqHe3ThermalSystemFanOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The system fan status has been set to ok. + + Any previously non-operational system fans have returned to + normal operation." + + --#TYPE "System Fan OK (6022)" + --#SUMMARY "System fan has returned to normal operation." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6022 + + cpqHe3ThermalCpuFanFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The CPU fan status has been set to failed. + + A processor fan is not operating normally. The server will be + shutdown." + + --#TYPE "CPU Fan Failure (6023)" + --#SUMMARY "CPU fan has failed. Server will be shutdown." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6023 + + cpqHe3ThermalCpuFanOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The CPU fan status has been set to ok. + + Any previously non-operational processor fans have returned + to normal operation." + + --#TYPE "CPU Fan OK (6024)" + --#SUMMARY "CPU fan is now OK." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6024 + + cpqHe3AsrConfirmation TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The server is operational again. + + The server has previously been shutdown by the + Automatic Server Recovery (ASR) feature and has just + become operational again." + + --#TYPE "Server Operational (6025)" + --#SUMMARY "Server is operational again after ASR shutdown." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6025 + + cpqHe3ThermalConfirmation TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The server is operational again. + + The server has previously been shutdown due to a thermal + anomaly on the server and has just become operational again." + + --#TYPE "Server Operational (6026)" + --#SUMMARY "Server is operational again after thermal shutdown." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6026 + + cpqHe3PostError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "One or more POST errors occurred. + + Power On Self-Test (POST) errors occur during the server + restart process. Details of the POST error messages can + be found in Integrated Management Log " + + --#TYPE "POST Errors Occurred (6027)" + --#SUMMARY "Errors occurred during server restart." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6027 + + cpqHe3FltTolPwrSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The fault tolerant power supply sub-system condition has been + set to degraded." + + --#TYPE "Server Power Supply Degraded (6028)" + --#SUMMARY "The server power supply status has become degraded." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6028 + +-- Deprecated in 6.20 trap 6056 is the replacement + cpqHe3CorrMemReplaceMemModule TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "A correctable memory log entry indicates a memory module needs + to be replaced. + + The errors have been corrected, but the memory module should be + replaced. The error information is reported in the variable + cpqHeCorrMemErrDesc." + + --#TYPE "Corr Mem Errors Require a Replacement Memory Module. (6029)" + --#SUMMARY "Correctable memory errs require a replacement memory module." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + + ::= 6029 + + +-- Deprecated in 5.10 + cpqHe3FltTolPowerSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay } + DESCRIPTION + "The fault tolerant power supply condition has been set + to degraded for the specified chassis and bay location." + + --#TYPE "Power Supply Degraded (6030)" + --#SUMMARY "The Power Supply Degraded on Chassis %d, Bay %d." + --#ARGUMENTS {2, 3} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6030 + +-- Deprecated in 5.10 + cpqHe3FltTolPowerSupplyFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay } + DESCRIPTION + "The fault tolerant power supply condition has been set + to failed for the specified chassis and bay location." + + --#TYPE "Power Supply Failed (6031)" + --#SUMMARY "The Power Supply Failed on Chassis %d, Bay %d." + --#ARGUMENTS {2, 3} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6031 + + cpqHe3FltTolPowerRedundancyLost TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis } + DESCRIPTION + "The Fault Tolerant Power Supplies have lost redundancy for + the specified chassis." + + --#TYPE "Power Redundancy Lost (6032)" + --#SUMMARY "The Power Supplies are no longer redundant on Chassis %d." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6032 + + cpqHe3FltTolPowerSupplyInserted TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay } + DESCRIPTION + "A Fault Tolerant Power Supply has been inserted into the + specified chassis and bay location." + + --#TYPE "Power Supply Inserted (6033)" + --#SUMMARY "The Power Supply Inserted on Chassis %d, Bay %d." + --#ARGUMENTS {2, 3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6033 + + cpqHe3FltTolPowerSupplyRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay } + DESCRIPTION + "A Fault Tolerant Power Supply has been removed from the + specified chassis and bay location." + + --#TYPE "Power Supply Removed (6034)" + --#SUMMARY "The Power Supply Removed on Chassis %d, Bay %d." + --#ARGUMENTS {2, 3} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6034 + + cpqHe3FltTolFanDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, + cpqHeFltTolFanIndex } + DESCRIPTION + "The Fault Tolerant Fan condition has been set to degraded + for the specified chassis and fan." + + --#TYPE "Fan Degraded (6035)" + --#SUMMARY "The Fan Degraded on Chassis %d, Fan %d." + --#ARGUMENTS {2, 3} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6035 + + cpqHe3FltTolFanFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, + cpqHeFltTolFanIndex } + DESCRIPTION + "The Fault Tolerant Fan condition has been set to failed + for the specified chassis and fan." + + --#TYPE "Fan Failed (6036)" + --#SUMMARY "The Fan Failed on Chassis %d, Fan %d." + --#ARGUMENTS {2, 3} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6036 + + cpqHe3FltTolFanRedundancyLost TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis } + DESCRIPTION + "The Fault Tolerant Fans have lost redundancy for the + specified chassis." + + --#TYPE "Fan Redundancy Lost (6037)" + --#SUMMARY "The Fans are no longer redundant on Chassis %d." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6037 + + cpqHe3FltTolFanInserted TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, + cpqHeFltTolFanIndex } + DESCRIPTION + "A Fault Tolerant Fan has been inserted into the specified + chassis and fan location." + + --#TYPE "Fan Inserted (6038)" + --#SUMMARY "The Fan Inserted on Chassis %d, Fan %d." + --#ARGUMENTS {2, 3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6038 + + cpqHe3FltTolFanRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis, + cpqHeFltTolFanIndex } + DESCRIPTION + "A Fault Tolerant Fan has been removed from the specified + chassis and fan location." + + --#TYPE "Fan Removed (6039)" + --#SUMMARY "The Fan Removed on Chassis %d, Fan %d." + --#ARGUMENTS {2, 3} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6039 + + cpqHe3TemperatureFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeTemperatureChassis, + cpqHeTemperatureLocale } + DESCRIPTION + "The temperature status has been set to failed in the + specified chassis and location. + + The system will be shutdown due to this condition." + + --#TYPE "Thermal Failure (6040)" + --#SUMMARY "Temperature Exceeded on Chassis %d, Location %d." + --#ARGUMENTS {2, 3} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6040 + + cpqHe3TemperatureDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeThermalDegradedAction, + cpqHeTemperatureChassis, cpqHeTemperatureLocale } + DESCRIPTION + "The temperature status has been set to degraded in the + specified chassis and location. + + The server's temperature is outside of the normal operating + range. The server will be shutdown if the + cpqHeThermalDegradedAction variable is set to shutdown(3)." + + --#TYPE "Thermal Status Degraded (6041)" + --#SUMMARY "Temperature out of range on Chassis %d, Location %d. Shutdown may occur." + --#ARGUMENTS {3, 4} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6041 + + cpqHe3TemperatureOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeTemperatureChassis, + cpqHeTemperatureLocale } + DESCRIPTION + "The temperature status has been set to ok in the + specified chassis and location. + + The server's temperature has returned to the normal operating + range." + + --#TYPE "Thermal Status OK (6042)" + --#SUMMARY "Temperature Normal on Chassis %d, Location %d." + --#ARGUMENTS {2, 3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6042 + + cpqHe3PowerConverterDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis, + cpqHePwrConvSlot, cpqHePwrConvSocket } + DESCRIPTION + "The DC-DC Power Converter condition has been set to degraded + for the specified chassis, slot and socket." + + --#TYPE "Power Converter Degraded (6043)" + --#SUMMARY "The Power Converter Degraded on Chassis %d, Slot %d, Socket %d." + --#ARGUMENTS {2, 3, 4} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + + ::= 6043 + + cpqHe3PowerConverterFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis, + cpqHePwrConvSlot, cpqHePwrConvSocket } + DESCRIPTION + "The DC-DC Power Converter condition has been set to failed + for the specified chassis, slot and socket." + + --#TYPE "Power Converter Failed (6044)" + --#SUMMARY "The Power Converter Failed on Chassis %d, Slot %d, Socket %d." + --#ARGUMENTS {2, 3, 4} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6044 + + cpqHe3PowerConverterRedundancyLost TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHePwrConvChassis } + DESCRIPTION + "The DC-DC Power Converters have lost redundancy for the + specified chassis." + + --#TYPE "Power Converter Redundancy Lost (6045)" + --#SUMMARY "The Power Converters are no longer redundant on Chassis %d." + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + + ::= 6045 + + cpqHe3CacheAccelParityError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "A cache accelerator parity error indicates a cache module + needs to be replaced. + + The error information is reported in the variable + cpqHeEventLogErrorDesc." + + --#TYPE "Cache Accel Parity Errors may require a module. (6046)" + --#SUMMARY "Cache Accelerator errors may require a replacement module." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + + ::= 6046 + + cpqHeResilientMemOnlineSpareEngaged TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "Advanced Memory Protection Online Spare Engaged. + + The Advanced Memory Protection subsystem has detected a memory + fault. The Online Spare Memory has been activated. + + User Action: Schedule server down-time to replace the faulty + memory." + + --#TYPE "Online Spare Memory Engaged (6047)" + --#SUMMARY "The Advanced Memory Protection subsystem has engaged the online spare memory." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6047 + +-- New for rev 5.10. + cpqHe4FltTolPowerSupplyOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, + cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, + cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, + cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } + DESCRIPTION + "The fault tolerant power supply condition has been set back + to the OK state for the specified chassis and bay location." + + --#TYPE "Power Supply OK (6048)" + --#SUMMARY "The Power Supply is OK on Chassis %d, Bay %d, Status %d, Model %s, Serial Num %s, Firmware %s." + --#ARGUMENTS {2, 3, 4, 5, 6, 8} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6048 + +-- New for rev 5.10. Deprecated cpqHe3FltTolPowerSupplyDegraded + cpqHe4FltTolPowerSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, + cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, + cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, + cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } + DESCRIPTION + "The fault tolerant power supply condition has been set + to degraded for the specified chassis and bay location." + + --#TYPE "Power Supply Degraded (6049)" + --#SUMMARY "The Power Supply is Degraded on Chassis %d, Bay %d, Status %d, Model %s, Serial Num %s, Firmware %s." + --#ARGUMENTS {2, 3, 4, 5, 6, 8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6049 + +-- New for rev 5.10. Deprecated cpqHe3FltTolPowerSupplyFailed + cpqHe4FltTolPowerSupplyFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis, + cpqHeFltTolPowerSupplyBay, cpqHeFltTolPowerSupplyStatus, + cpqHeFltTolPowerSupplyModel, cpqHeFltTolPowerSupplySerialNumber, + cpqHeFltTolPowerSupplyAutoRev, cpqHeFltTolPowerSupplyFirmwareRev, + cpqHeFltTolPowerSupplySparePartNum, cpqSiServerSystemId } + DESCRIPTION + "The fault tolerant power supply condition has been set + to failed for the specified chassis and bay location." + + --#TYPE "Power Supply Failed (6050)" + --#SUMMARY "The Power Supply is Failed on Chassis %d, Bay %d, Status %d, Model %s, Serial Num %s, Firmware %s." + --#ARGUMENTS {2, 3, 4, 5, 6, 8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6050 + +-- New for rev 5.40. + cpqHeResilientMemMirroredMemoryEngaged TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "Advanced Memory Protection Mirrored Memory Engaged. + + The Advanced Memory Protection subsystem has detected a memory + fault. Mirrored Memory has been activated. + + User Action: Replace the faulty memory." + + --#TYPE "Mirrored Memory Engaged (6051)" + --#SUMMARY "The Advanced Memory Protection subsystem has engaged the online spare memory." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6051 + +-- New for rev 5.50. + cpqHeResilientAdvancedECCMemoryEngaged TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "Advanced Memory Protection Advanced ECC Memory Engaged. + + The Advanced Memory Protection subsystem has detected a memory + fault. Advanced ECC has been activated. + + User Action: Replace the faulty memory." + + --#TYPE "Advanced ECC Memory Engaged (6052)" + --#SUMMARY "The Advanced Memory Protection subsystem has engaged the advanced ECC memory." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6052 + +-- New traps added for 6.20. + + cpqHeResilientMemXorMemoryEngaged TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "Advanced Memory Protection XOR Engine Memory Engaged. + + The Advanced Memory Protection subsystem has detected a memory + fault. The XOR engine has been activated. + + User Action: Replace the faulty memory." + + --#TYPE "Advanced XOR Memory Engaged (6053)" + --#SUMMARY "The Advanced Memory Protection subsystem has engaged the XOR memory." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6053 + + cpqHe3FltTolPowerRedundancyRestored TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolPowerSupplyChassis } + DESCRIPTION + "The Fault Tolerant Power Supplies have returned to a redundant + state for the specified chassis." + + --#TYPE "Power Redundancy Restored (6054)" + --#SUMMARY "The Power Supplies are now redundant on Chassis %d." + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6054 + + cpqHe3FltTolFanRedundancyRestored TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeFltTolFanChassis } + DESCRIPTION + "The Fault Tolerant Fans have returned to a redundant state for + the specified chassis." + + --#TYPE "Fan Redundancy Restored (6055)" + --#SUMMARY "The Fans are now redundant on Chassis %d." + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6055 + +-- Updated for 6.20 trap replaced 6029 +-- deprecateed in 8.20 replaced with 6064 + cpqHe4CorrMemReplaceMemModule TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardIndex, + cpqHeResMemModuleIndex, cpqHeResMemModuleSparePartNo, + cpqSiMemModuleSize, cpqSiServerSystemId } + DESCRIPTION + "Corrected Memory Errors Detected + + The errors have been corrected, but the memory module should be + replaced." + + --#TYPE "Corrected Memory Errors - Replace Memory Module. (6056)" + --#SUMMARY "Correctable memory errors require a replacement of the memory module in slot %d, socket %d." + --#ARGUMENTS {2, 3} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6056 + +-- deprecateed in 8.20 replaced with 6065 + cpqHeResMemBoardRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex } + DESCRIPTION + "Memory board or cartridge removed. + + An Advanced Memory Protection sub-system board or cartridge has + been removed from the system. + + User Action: Insure the board or cartridge has memory correctly + installed and re-insert the memory board or cartridge back into + the system." + + --#TYPE "Memory Board or Cartridge Removed (6057)" + --#SUMMARY "Memory Board or Cartridge Removed from Slot %d." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 6057 + +-- deprecateed in 8.20 replaced with 6066 + cpqHeResMemBoardInserted TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex } + DESCRIPTION + "Memory board or cartridge inserted. + + An Advanced Memory Protection sub-system board or cartridge has + been inserted into the system. + + User Action: None." + + --#TYPE "Memory Board or Cartridge Inserted (6058)" + --#SUMMARY "Memory Board or Cartridge Inserted into Slot %d." + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 6058 + +-- deprecateed in 8.20 replaced with 6067 + cpqHeResMemBoardBusError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMemBoardSlotIndex } + DESCRIPTION + "Memory board or cartridge bus error detected. + + An Advanced Memory Protection sub-system board or cartridge + bus error has been detected. + + User Action: Replace the indicated board or cartridge." + + --#TYPE "Memory Board or Cartridge Bus Error Detected (6059)" + --#SUMMARY "Memory Board or Cartridge Bus Error Detected in Slot %d." + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + ::= 6059 + +-- The follow trap 6060 is supported only in Tru64 at this time. +-- This trap is not currently supported for ProLiants. + cpqHeEventOccurred TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeEventLogEntryNumber, + cpqHeEventLogEntrySeverity, cpqHeEventLogUpdateTime, + cpqHeEventLogErrorDesc } + DESCRIPTION + "An event has occurred. + User Action: None." + + --#TYPE "Event has occurred (6060)" + --#SUMMARY "Event %s has occurred, Severity %d " + --#ARGUMENTS {5,3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 6060 + +cpqHeManagementProcInReset TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The Management processor is currently in reset + + The management processor is currently in the process of being reset + because of a firmware update or some other event. + + User action: None" + + --#TYPE "Management processor is currently in reset. (6061)" + --#SUMMARY "The Management processor is in the process of being reset." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6061 + + cpqHeManagementProcReady TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The Management processor is ready + + The management processor has successfully reset and is now available + again. + + User action: None" + + --#TYPE "Management processor is ready. (6062)" + --#SUMMARY "The Management processor is ready after a successfull reset." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 6062 + + cpqHeManagementProcFailedReset TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "The Management processor failed reset + + The management processor was not successfully reset and is not + operational. + + User action: Reset the management procesessor again or re-flash + the management processor firmware." + + --#TYPE "Management processor failed reset. (6063)" + --#SUMMARY "The Management processor failed reset." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 6063 + +-- Updated for 8.20 trap replaced 6056 + cpqHe5CorrMemReplaceMemModule TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardNum, + cpqHeResMem2CpuNum, cpqHeResMem2RiserNum, + cpqHeResMem2ModuleNum, cpqHeResMem2ModulePartNo, + cpqHeResMem2ModuleSize, cpqSiServerSystemId } + DESCRIPTION + "Corrected Memory Errors Detected + + The errors have been corrected, but the memory module should be + replaced. Value 0 for CPU means memory is not Processor based" + + --#TYPE "Corrected Memory Errors - Replace Memory Module. (6064)" + --#SUMMARY "Correctable memory errors require a replacement of the memory module in slot %d, cpu %d, riser %d, socket %d." + --#ARGUMENTS {2, 3, 4} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6064 + +-- Updated for 8.20 trap replaced 6057 + cpqHe5ResMemBoardRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum } + DESCRIPTION + "Memory board or cartridge or riser removed. + + An Advanced Memory Protection sub-system board or cartridge or riser has + been removed from the system. Value 0 for CPU means memory is not processor based. + + User Action: Insure the board or cartridge or riser has memory correctly + installed and re-insert the memory board or cartridge or CPU back into + the system." + + --#TYPE "Memory Board or Cartridge or Riser Removed (6065)" + --#SUMMARY "Memory Board or Cartridge or riser Removed from Slot %d, Cpu %d Riser %d." + --#ARGUMENTS {2,3,4} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 6065 + +-- Updated for 8.20 trap replaced 6058 + cpqHe5ResMemBoardInserted TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum } + DESCRIPTION + "Memory board or cartridge or riser inserted. + + An Advanced Memory Protection sub-system board or cartridge or riser + Has been inserted into the system. Value 0 for CPU means memory is not processor based. + + User Action: None." + + --#TYPE "Memory Board or Cartridge Inserted (6066)" + --#SUMMARY "Memory Board or Cartridge Inserted into Slot %d, Cpu %d, Riser %d." + --#ARGUMENTS {2,3,4} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 6066 + +-- Updated for 8.20 trap replaced 6059 + cpqHe5ResMemBoardBusError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHeResMem2BoardSlotNum, cpqHeResMem2BoardCpuNum, cpqHeResMem2BoardRiserNum } + DESCRIPTION + "Memory board or cartridge or Riser bus error detected. + + An Advanced Memory Protection sub-system board or cartridge or Riser + bus error has been detected. Value 0 for CPU means memory is not processor based. + + User Action: Replace the indicated board or cartridge or Riser." + + --#TYPE "Memory Board or Cartridge or Riser Bus Error Detected (6067)" + --#SUMMARY "Memory Board or Cartridge Bus Error Detected in Slot %d, Cpu %d, Riser %d." + --#ARGUMENTS {2,3,4} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + ::= 6067 + +-- Added for 8.20 + cpqHeResilientMemLockStepMemoryEngaged TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "Advanced Memory Protection LockStep Engine Memory Engaged. + + The Advanced Memory Protection subsystem has detected a memory + fault. The LockStep engine has been activated. + + User Action: Replace the faulty memory." + + --#TYPE "Advanced LockStep Memory Engaged (6068)" + --#SUMMARY "The Advanced Memory Protection subsystem has engaged the LockStep memory." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 6068 + +END diff --git a/pandora_console/attachment/mibs/CPQHOST-MIB b/pandora_console/attachment/mibs/CPQHOST-MIB new file mode 100644 index 0000000000..a7cf3fd7fa --- /dev/null +++ b/pandora_console/attachment/mibs/CPQHOST-MIB @@ -0,0 +1,2413 @@ +-- **************************************************************************** +-- +-- Host Operating System Information +-- Management Information Base for SNMP Network Management +-- +-- +-- Copyright 1993,2008 Hewlett-Packard Development Company, L.P. +-- +-- Hewlett-Packard Company shall not be liable for technical or +-- editorial errors or omissions contained herein. The information in +-- this document is provided "as is" without warranty of any kind and +-- is subject to change without notice. The warranties for HP products +-- are set forth in the express limited warranty statements +-- accompanying such products. Nothing herein should be construed as +-- constituting an additional warranty. +-- +-- Confidential computer software. Valid license from HP required for +-- possession, use or copying. Consistent with FAR 12.211 and 12.212, +-- Commercial Computer Software, Computer Software Documentation, and +-- Technical Data for Commercial Items are licensed to the U.S. +-- Government under vendor's standard commercial license. +-- +-- Refer to the READMIB.RDM file for more information about the +-- organization of the information in the Compaq Enterprise. +-- +-- The Compaq Enterprise number is 232. +-- The ASN.1 prefix to, and including the Compaq Enterprise is: +-- 1.3.6.1.4.1.232 +-- +-- **************************************************************************** + + +CPQHOST-MIB DEFINITIONS ::= BEGIN + + IMPORTS + enterprises FROM RFC1155-SMI + IpAddress FROM RFC1155-SMI + DisplayString FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + TRAP-TYPE FROM RFC-1215 + sysName FROM RFC1213-MIB; + + compaq OBJECT IDENTIFIER ::= { enterprises 232 } + cpqHostOs OBJECT IDENTIFIER ::= { compaq 11 } + cpqHoMibRev OBJECT IDENTIFIER ::= { cpqHostOs 1 } + cpqHoComponent OBJECT IDENTIFIER ::= { cpqHostOs 2 } + + cpqHoInterface OBJECT IDENTIFIER ::= { cpqHoComponent 1 } + cpqHoInfo OBJECT IDENTIFIER ::= { cpqHoComponent 2 } + cpqHoUtil OBJECT IDENTIFIER ::= { cpqHoComponent 3 } + cpqHoFileSys OBJECT IDENTIFIER ::= { cpqHoComponent 4 } +-- The cpqHoIfPhysMap group has been deprecated. + cpqHoIfPhysMap OBJECT IDENTIFIER ::= { cpqHoComponent 5 } + cpqHoSWRunning OBJECT IDENTIFIER ::= { cpqHoComponent 6 } + cpqHoSwVer OBJECT IDENTIFIER ::= { cpqHoComponent 7 } + cpqHoGeneric OBJECT IDENTIFIER ::= { cpqHoComponent 8 } + cpqHoSwPerf OBJECT IDENTIFIER ::= { cpqHoComponent 9 } + cpqHoSystemStatus OBJECT IDENTIFIER ::= { cpqHoComponent 10 } + cpqHoTrapInfo OBJECT IDENTIFIER ::= { cpqHoComponent 11 } + cpqHoClients OBJECT IDENTIFIER ::= { cpqHoComponent 12 } + cpqHoMemory OBJECT IDENTIFIER ::= { cpqHoComponent 13 } + cpqHoFwVer OBJECT IDENTIFIER ::= { cpqHoComponent 14 } + cpqHoHWInfo OBJECT IDENTIFIER ::= { cpqHoComponent 15 } + cpqPwrThreshold OBJECT IDENTIFIER ::= { cpqHoComponent 16 } + + cpqHoOsCommon OBJECT IDENTIFIER ::= { cpqHoInterface 4 } + +-- **************************************************************************** +-- Host OS Information MIB Revision +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoMibRev Group (1.3.6.1.4.1.232.11.1) +-- +-- Implementation of the cpqHoMibRev group is mandatory for all agents +-- supporting the Host OS MIB. +-- +-- A Management Agent conforming to this document will return a +-- cpqHoMibRevMajor of one (1) and a cpqHoMibRevMinor of thirty-three (33). +-- +-- **************************************************************************** + + cpqHoMibRevMajor OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Major Revision level of the MIB. + + A change in the major revision level represents a major change + in the architecture of the MIB. A change in the major revision + level may indicate a significant change in the information + supported and/or the meaning of the supported information. + Correct interpretation of data may require a MIB document with + the same major revision level." + ::= { cpqHoMibRev 1 } + + cpqHoMibRevMinor OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Minor Revision level of the MIB. + + A change in the minor revision level may represent some minor + additional support, no changes to any pre-existing information + has occurred." + ::= { cpqHoMibRev 2 } + + cpqHoMibCondition OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), -- default state + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition. + + This object represents the overall status of the server's host + system represented by this MIB." + ::= { cpqHoMibRev 3 } + +-- **************************************************************************** +-- Host OS Common +-- ============== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoInterface Group (1.3.6.1.4.1.232.11.2.1) +-- cpqHoOsCommon Group (1.3.6.1.4.1.232.11.2.1.4) +-- +-- +-- Implementation of the cpqHoOsCommon group is mandatory for all +-- agents that support the Host OS MIB. +-- +-- **************************************************************************** + + cpqHoOsCommonPollFreq OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Insight Agent's polling frequency. + + The frequency, in seconds, at which the Insight Agent requests + information from the device driver. A frequency of zero (0) + indicates that the Insight Agent retrieves the information upon + request of a management station, it does not poll the device + driver at a specific interval. + + If the poll frequency is zero (0) all attempts to write to this + object will fail. If the poll frequency is non-zero, + setting this value will change the polling frequency of the + Insight Agent. Setting the poll frequency to zero (0) will + always fail. An agent may choose to fail any request to change + the poll frequency to a value that would severely impact system + performance." + ::= { cpqHoOsCommon 1 } + +-- **************************************************************************** +-- Host OS Common Module Table +-- =========================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoInterface Group (1.3.6.1.4.1.232.11.2.1) +-- cpqHoOsCommon Group (1.3.6.1.4.1.232.11.2.1.4) +-- cpqHoOsCommonModuleTable (1.3.6.1.4.1.232.11.2.1.4.2) deprecated +-- +-- **************************************************************************** + + cpqHoOsCommonModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A table of software modules that provide an interface to the + device this MIB describes." + ::= { cpqHoOsCommon 2 } + + cpqHoOsCommonModuleEntry OBJECT-TYPE + SYNTAX CpqHoOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A description of a software module that provides an interface + to the device this MIB describes." + INDEX { cpqHoOsCommonModuleIndex } + ::= { cpqHoOsCommonModuleTable 1 } + + CpqHoOsCommonModuleEntry ::= SEQUENCE { + cpqHoOsCommonModuleIndex INTEGER, + cpqHoOsCommonModuleName DisplayString, + cpqHoOsCommonModuleVersion DisplayString, + cpqHoOsCommonModuleDate OCTET STRING, + cpqHoOsCommonModulePurpose DisplayString + } + + cpqHoOsCommonModuleIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "A unique index for this module description." + ::= { cpqHoOsCommonModuleEntry 1 } + + cpqHoOsCommonModuleName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module name." + ::= { cpqHoOsCommonModuleEntry 2 } + + cpqHoOsCommonModuleVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module version in XX.YY format. + + Where XX is the major version number and YY is the minor version + number. This field will be null (size 0) string if the agent + cannot provide the module version." + ::= { cpqHoOsCommonModuleEntry 3 } + + cpqHoOsCommonModuleDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module date. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if the agent cannot provide + the module date. The hour, minute, and second field will be set + to zero (0) if they are not relevant. The year field is set + with the most significant octet first." + ::= { cpqHoOsCommonModuleEntry 4 } + + cpqHoOsCommonModulePurpose OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The purpose of the module described in this entry." + ::= { cpqHoOsCommonModuleEntry 5 } + +-- **************************************************************************** +-- Host OS Information Group +-- ========================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoInfo Group (1.3.6.1.4.1.232.11.2.2) +-- +-- +-- The cpqHoInfo group describes some general information about the +-- host OS. +-- +-- Implementation of the cpqHoInfo group is mandatory for all +-- agents supporting the Host OS MIB. +-- +-- **************************************************************************** + + + cpqHoName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the host operating system (OS)." + ::= { cpqHoInfo 1 } + + cpqHoVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version of the host OS." + ::= { cpqHoInfo 2 } + + cpqHoDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A further description of the host OS." + ::= { cpqHoInfo 3 } + + cpqHoOsType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + netware(2), -- Novell NetWare + windowsnt(3), -- Microsoft Windows NT + sco-unix(4), -- SCO OpenServer + unixware(5), -- SCO UnixWare + os-2(6), -- IBM OS/2 + ms-dos(7), -- Microsoft DOS + dos-windows(8), -- Microsoft DOS + Microsoft Windows + windows95(9), -- Microsoft Windows 95 + windows98(10), -- Microsoft Windows 98 + open-vms(11), -- Open VMS + nsk(12), -- Non Stop Kernel + windowsCE(13), -- Microsoft Windows CE + linux(14), -- Linux + windows2000(15), -- Microsoft Windows 2000 + tru64UNIX(16), -- Tru64 UNIX + windows2003(17), -- Microsoft Windows Server 2003 + windows2003-x64(18), -- Microsoft Windows Server 2003 x64 Edition + solaris(19), -- Sun Solaris + windows2003-ia64(20), -- Microsoft Windows Server 2003 for Itanium-based Systems + windows2008(21), -- Microsoft Windows Server 2008 + windows2008-x64(22), -- Microsoft Windows Server 2008 x64 Edition + windows2008-ia64(23) -- Microsoft Windows Server 2008 for Itanium-based Systems + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Host Operating system enumeration." + ::= { cpqHoInfo 4 } + + cpqHoTelnet OBJECT-TYPE + SYNTAX INTEGER { + other(1), + available(2), + notavailable(3) -- default + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Telnet on socket 23 is available." +-- +-- This variable specifies the availability of telnet. Only socket 23 is +-- checked for telnet services. +-- + ::= { cpqHoInfo 5 } + + cpqHoSystemRole OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The system role. + + This is a settable free form text field intended to be assigned + by a remote console briefly describing the system's function." + ::= { cpqHoInfo 6 } + + cpqHoSystemRoleDetail OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..512)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The system detailed description. + + This is a settable free form text field intended to be assigned + by a remote console describing the system function in detail." + ::= { cpqHoInfo 7 } + + cpqHoCrashDumpState OBJECT-TYPE + SYNTAX INTEGER { + completememorydump(1), + kernelmemorydump(2), + smallmemorydump(3), + none(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Crash dump state. + Value of 'Unknown (-1)' is returned when crash dump state could + not be determined." + ::= { cpqHoInfo 8 } + + cpqHoCrashDumpCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- (Crash Dump settings unknown) or (Crash dump monitoring is disabled) + ok(2), -- (Crash dump settings OK) and (paging file size >= minimum) and (free disk space >= minimum) + degraded(3), -- (Crash dump settings none) or (paging file size < minimum) or (free disk space < minimum) + failed(4) -- N/A + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The condition of the Crash dump configuration." + ::= { cpqHoInfo 9 } + + cpqHoCrashDumpMonitoring OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), -- Enable crash dump monitoring. + disabled(2) -- Disable crash dump monitoring. + } + ACCESS read-write + STATUS optional + DESCRIPTION + "Enable/disable crash dump monitoring. + If crash dump monitoring is enabled both crash dump TRAP's + are generated and crash dump condition is updated. + If crash dump monitoring is disabled, no crash dump TRAP + is generated and the crash dump condition is set to + other" + ::= { cpqHoInfo 10 } + + cpqHoMaxLogicalCPUSupported OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "Maximum number of logical CPUs supported by Operating System." + ::= { cpqHoInfo 11 } + + +-- **************************************************************************** +-- Host OS CPU Utilization Table +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoUtil Group (1.3.6.1.4.1.232.11.2.3) +-- cpqHoCpuUtilTable (1.3.6.1.4.1.232.11.2.3.1) +-- +-- +-- The cpqHoUtil group contains measures of system utilization. +-- +-- Implementation of the cpqHoUtil group is mandatory for all agents +-- that support the Host OS MIB. +-- +-- **************************************************************************** + + + + cpqHoCpuUtilTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoCpuUtilEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of CPU utilization entries." + ::= { cpqHoUtil 1 } + + cpqHoCpuUtilEntry OBJECT-TYPE + SYNTAX CpqHoCpuUtilEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a CPU's utilization." + INDEX { cpqHoCpuUtilUnitIndex } + ::= { cpqHoCpuUtilTable 1 } + + CpqHoCpuUtilEntry ::= SEQUENCE { + cpqHoCpuUtilUnitIndex INTEGER, + cpqHoCpuUtilMin INTEGER, + cpqHoCpuUtilFiveMin INTEGER, + cpqHoCpuUtilThirtyMin INTEGER, + cpqHoCpuUtilHour INTEGER, + cpqHoCpuUtilHwLocation DisplayString + } + + cpqHoCpuUtilUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This number uniquely specifies a processor unit. + + A processing unit may be a set of processing chips that are + on the same board or for other reasons work together as a unit. + The main processor unit (if such a concept is valid for this + machine) will always have the lowest (first) index." + ::= { cpqHoCpuUtilEntry 1 } + + cpqHoCpuUtilMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The CPU utilization as a percentage of the theoretical + maximum during the last minute. A value of -1 indicates + that no CPU utilization information is available for this + processor." + ::= { cpqHoCpuUtilEntry 2 } + + cpqHoCpuUtilFiveMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The CPU utilization as a percentage of the theoretical + maximum during the last five minutes. A value of -1 indicates + that no CPU utilization information is available for this + processor." + ::= { cpqHoCpuUtilEntry 3 } + + cpqHoCpuUtilThirtyMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The CPU utilization as a percentage of the theoretical + maximum during the last thirty minutes. A value of -1 indicates + that no CPU utilization information is available for this + processor." + ::= { cpqHoCpuUtilEntry 4 } + + cpqHoCpuUtilHour OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The CPU utilization as a percentage of the theoretical + maximum during the last hour. A value of -1 indicates + that no CPU utilization information is available for this + processor." + ::= { cpqHoCpuUtilEntry 5 } + + cpqHoCpuUtilHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the CPU. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqHoCpuUtilEntry 6 } + + +-- **************************************************************************** +-- Host OS File System Table +-- ========================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoFileSys Group (1.3.6.1.4.1.232.11.2.4) +-- cpqHoFileSysTable (1.3.6.1.4.1.232.11.2.4.1) +-- +-- The cpqHoFileSys group contains configuration and status information +-- about the file system. +-- +-- **************************************************************************** + + + + cpqHoFileSysTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoFileSysEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of file system descriptions." + ::= { cpqHoFileSys 1 } + + cpqHoFileSysEntry OBJECT-TYPE + SYNTAX CpqHoFileSysEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A file system description." + INDEX { cpqHoFileSysIndex } + ::= { cpqHoFileSysTable 1 } + + CpqHoFileSysEntry ::= SEQUENCE { + cpqHoFileSysIndex INTEGER, + cpqHoFileSysDesc DisplayString, + cpqHoFileSysSpaceTotal INTEGER, + cpqHoFileSysSpaceUsed INTEGER, + cpqHoFileSysPercentSpaceUsed INTEGER, + cpqHoFileSysAllocUnitsTotal INTEGER, + cpqHoFileSysAllocUnitsUsed INTEGER, + cpqHoFileSysStatus INTEGER + } + + cpqHoFileSysIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry." + ::= { cpqHoFileSysEntry 1 } + + cpqHoFileSysDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the file system." + ::= { cpqHoFileSysEntry 2 } + + cpqHoFileSysSpaceTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The file system size in megabytes. + + This item will be set to -1 if the agent is unable to determine + this information." + ::= { cpqHoFileSysEntry 3 } + + cpqHoFileSysSpaceUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The megabytes of file system space currently in use. + + This item will be set to -1 if the agent is unable to determine + this information." + ::= { cpqHoFileSysEntry 4 } + + + cpqHoFileSysPercentSpaceUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The percent of file system space currently in use. + This item will be set to -1 if this information is not + available." + + ::= { cpqHoFileSysEntry 5 } + + cpqHoFileSysAllocUnitsTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of files (directory entries) that can be + stored on the file system if a limit exists other than + total space used. This item will be set to -1 if no such + limit exists." + ::= { cpqHoFileSysEntry 6 } + + cpqHoFileSysAllocUnitsUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of files (directory entries) on this file system. + This item will be set to -1 if the agent does not determine this + information." + ::= { cpqHoFileSysEntry 7 } + + cpqHoFileSysStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), -- default state + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Threshold Status. + + This object represent the status of the Filesystem threshold." + ::= { cpqHoFileSysEntry 8 } + +-- **************************************************************************** +-- Host OS File System Table +-- ========================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoFileSys Group (1.3.6.1.4.1.232.11.2.4) +-- cpqHoFileSysCondition (1.3.6.1.4.1.232.11.2.4.2) +-- +-- The cpqHoFileSys group contains overall condition of Filesystem Threshold +-- +-- **************************************************************************** + cpqHoFileSysCondition OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), -- default state + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition of File System Threshold. + + This object represents the overall status of the server's + File System Threshold." + ::= { cpqHoFileSys 2 } + +-- **************************************************************************** +-- Host OS Interface Physical Map Table +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoIfPhysMap Group (1.3.6.1.4.1.232.11.2.5) deprecated +-- cpqHoIfPhysMapTable (1.3.6.1.4.1.232.11.2.5.1) deprecated +-- +-- +-- The cpqHoIfPhysMap group contains information to map interface numbers +-- in the MIB-II interface group to the physical interface cards that +-- implement the interface. +-- +-- Implementation of the cpqHoIfPhysMap group is mandatory for all agents +-- that support the Host OS MIB. +-- +-- **************************************************************************** + + cpqHoIfPhysMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoIfPhysMapEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A table of interface to physical hardware mappings." + ::= { cpqHoIfPhysMap 1 } + + cpqHoIfPhysMapEntry OBJECT-TYPE + SYNTAX CpqHoIfPhysMapEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A mapping of an interface table entry to physical hardware." + INDEX { cpqHoIfPhysMapIndex } + ::= { cpqHoIfPhysMapTable 1 } + + CpqHoIfPhysMapEntry ::= SEQUENCE { + cpqHoIfPhysMapIndex INTEGER, + cpqHoIfPhysMapSlot INTEGER, + cpqHoIfPhysMapIoBaseAddr INTEGER, + cpqHoIfPhysMapIrq INTEGER, + cpqHoIfPhysMapDma INTEGER, + cpqHoIfPhysMapMemBaseAddr INTEGER, + cpqHoIfPhysMapPort INTEGER, + cpqHoIfPhysMapDuplexState INTEGER, + cpqHoIfPhysMapCondition INTEGER + } + + cpqHoIfPhysMapIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "An index that uniquely specifies this entry. This value is + equal to the index of the entry in the MIB-II interface table + to which this entry corresponds." + ::= { cpqHoIfPhysMapEntry 1 } + + cpqHoIfPhysMapSlot OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of the slot containing the physical hardware that + implements this interface. The number zero (0) indicates an + embedded interface (on the system board) or an interface whose + slot is unknown. Values may be unknown if the physical + hardware has not been configured using the EISA Configuration + Utility." + ::= { cpqHoIfPhysMapEntry 2 } + + cpqHoIfPhysMapIoBaseAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The base I/O address of the physical hardware that implements + this interface." + ::= { cpqHoIfPhysMapEntry 3 } + + cpqHoIfPhysMapIrq OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of the IRQ (interrupt) used for this physical + hardware interface. The number zero (0) indicates that this + device does not use an IRQ or this information is unavailable." + ::= { cpqHoIfPhysMapEntry 4 } + + cpqHoIfPhysMapDma OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of the DMA channel used for this physical hardware + interface. The number -1 indicates that this device does not + use a DMA channel or this information is unavailable." + ::= { cpqHoIfPhysMapEntry 5 } + + cpqHoIfPhysMapMemBaseAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The base memory address used by this physical hardware + interface. The number zero (0) indicates that this device does + not use system memory or this information is unavailable." + ::= { cpqHoIfPhysMapEntry 6 } + + cpqHoIfPhysMapPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The port number of the interface for multi-port NICs. + A port number of -1 indicates that the port could not + be determined." + ::= { cpqHoIfPhysMapEntry 7 } + + cpqHoIfPhysMapDuplexState OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- default + half(2), + full(3) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "This variable describes the configured duplex state of the NIC." + + ::= { cpqHoIfPhysMapEntry 8 } + + cpqHoIfPhysMapCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), -- default + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The condition of this interface." + ::= { cpqHoIfPhysMapEntry 9 } + + cpqHoIfPhysMapOverallCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), -- default + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The overall condition of all interfaces." + ::= { cpqHoIfPhysMap 2 } + +-- **************************************************************************** +-- Host OS Software Running Table +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoSWRunning Group (1.3.6.1.4.1.232.11.2.6) +-- cpqHoSWRunningTable (1.3.6.1.4.1.232.11.2.6.1) +-- cpqHoSwRunningTrapDesc (1.3.6.1.4.1.232.11.2.6.2) +-- +-- +-- The cpqHoSWRunning group contains configuration and status information +-- about the software running on the host OS. +-- +-- Implementation of the cpqHoSWRunning group is optional for agents +-- that support the Host OS MIB. +-- +-- **************************************************************************** + + cpqHoSWRunningTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoSWRunningEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of descriptions of software running on the system." + ::= { cpqHoSWRunning 1 } + + cpqHoSWRunningEntry OBJECT-TYPE + SYNTAX CpqHoSWRunningEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a software program running on the system." + INDEX { cpqHoSWRunningIndex } + ::= { cpqHoSWRunningTable 1 } + + CpqHoSWRunningEntry ::= SEQUENCE { + cpqHoSWRunningIndex INTEGER, + cpqHoSWRunningName DisplayString, + cpqHoSWRunningDesc DisplayString, + cpqHoSWRunningVersion DisplayString, + cpqHoSWRunningDate OCTET STRING, + cpqHoSWRunningMonitor INTEGER, + cpqHoSWRunningState INTEGER, + cpqHoSWRunningCount INTEGER, + cpqHoSWRunningCountMin INTEGER, + cpqHoSWRunningCountMax INTEGER, + cpqHoSWRunningEventTime OCTET STRING, + cpqHoSWRunningStatus INTEGER, + cpqHoSWRunningConfigStatus INTEGER, + cpqHoSWRunningIdentifier DisplayString, + cpqHoSWRunningRedundancyMode INTEGER + } + + cpqHoSWRunningIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry." + ::= { cpqHoSWRunningEntry 1 } + + cpqHoSWRunningName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the software." + ::= { cpqHoSWRunningEntry 2 } + + cpqHoSWRunningDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the software." + ::= { cpqHoSWRunningEntry 3 } + + cpqHoSWRunningVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version of the software. + + This field will be a null (size 0) string if the agent cannot + provide the software version." + ::= { cpqHoSWRunningEntry 4 } + + cpqHoSWRunningDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The software date. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if the agent cannot provide + the software date. The hour, minute, and second field will be + set to zero (0) if they are not relevant." + ::= { cpqHoSWRunningEntry 5 } + + cpqHoSWRunningMonitor OBJECT-TYPE + SYNTAX INTEGER + { + other(1), -- default + start(2), + stop(3), + startAndStop(4), + count(5), + startAndCount(6), + countAndStop(7), + startCountAndStop(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The user specified monitor option for a process." + ::= { cpqHoSWRunningEntry 6 } + + cpqHoSWRunningState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), -- default + started(2), + stopped(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current state of monitored process." + ::= { cpqHoSWRunningEntry 7 } + + cpqHoSWRunningCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "For each process name, the number of instances of the process running on the system is + kept count of, in this variable." + ::= { cpqHoSWRunningEntry 8 } + + cpqHoSWRunningCountMin OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS optional + DESCRIPTION + "This is the lower threshold on cpqHoSWRunningCount to be set by the user." + ::= { cpqHoSWRunningEntry 9 } + + cpqHoSWRunningCountMax OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS optional + DESCRIPTION + "This is the upper threshold on cpqHoSWRunningCount to be set by the user." + ::= { cpqHoSWRunningEntry 10 } + + cpqHoSWRunningEventTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The system time at which the monitored event, as per cpqHoSWRunningMonitor, last occurred. + + field octets contents range + ===== ====== ======== ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + The hour, minute, and second field will be set to zero (0) if they are not relevant." + ::= { cpqHoSWRunningEntry 11 } + + cpqHoSWRunningStatus OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + normal(2), + warning(3), + minor(4), + major(5), + critical(6), + disabled(7) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The overall alarm state of the resources managed by the software, or the software itself." + ::= { cpqHoSWRunningEntry 12 } + + cpqHoSWRunningConfigStatus OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + starting(2), + initialized(3), + configured(4), + operational(5) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The configuration state of the software. The level of initialization the software has performed." + ::= { cpqHoSWRunningEntry 13 } + + cpqHoSWRunningIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The unique identifier of the sofware. This identifier should be unique for all instances of the sofware running in the environment." + ::= { cpqHoSWRunningEntry 14 } + + cpqHoSWRunningRedundancyMode OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + master(2), + backup(3), + slave(4) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "When the software is running in a high availability mode, the failover mode of this instance of the software." + ::= { cpqHoSWRunningEntry 15 } + + cpqHoSwRunningTrapDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The error message for a process monitor event." + ::= { cpqHoSWRunning 2 } + + +-- **************************************************************************** +-- Config Software Version Instrumentation Group +-- =============================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoSwVer Group (1.3.6.1.4.1.232.11.2.7) +-- cpqHoSwVerTable (1.3.6.1.4.1.232.11.2.7.2) +-- cpqHoSwVerAgentsVer (1.3.6.1.4.1.232.11.2.7.3) +-- +-- The cpqSwVer group describes the software version table. +-- +-- Implementation of the cpqSwVer group is mandatory for all +-- agents that support the Host MIB. +-- +-- The read-write elements of this table should be saved from instance to +-- instance of the agent. +-- +-- This table can be added to by writing to the cpqHoSwVerName (using the +-- cpqHoSwVerNextIndex index) field with a new driver name. Writing to +-- this field causes the creation of a new table row (and any data that can +-- be obtained will be filled in, the remainder will be set to the defaults.) +-- +-- A row may be deleted by writing to the cpqHoSwVerName field with a null +-- entry. +-- **************************************************************************** + + cpqHoSwVerNextIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index of the next available entry in the cpqHoSwVer + table. If the maximum number of entries to the cpqHoSwVer + table has been reached, this index will contain -1." +-- +-- Writing to the cpqHoSwVerName variable using this index will cause a new +-- entry in the table to be created. +-- + ::= { cpqHoSwVer 1 } + + cpqHoSwVerTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoSwVerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of software item entries." + ::= { cpqHoSwVer 2 } + + cpqHoSwVerEntry OBJECT-TYPE + SYNTAX CpqHoSwVerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of software items that are on the machine." + INDEX { cpqHoSwVerIndex } + ::= { cpqHoSwVerTable 1 } + + CpqHoSwVerEntry ::= SEQUENCE { + cpqHoSwVerIndex INTEGER, + cpqHoSwVerStatus INTEGER, + cpqHoSwVerType INTEGER, + cpqHoSwVerName DisplayString, + cpqHoSwVerDescription DisplayString, + cpqHoSwVerDate OCTET STRING, + cpqHoSwVerLocation DisplayString, + cpqHoSwVerVersion DisplayString, + cpqHoSwVerVersionBinary DisplayString + } + + cpqHoSwVerIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely identifies an entry in the + cpqHoSwVer table." + ::= { cpqHoSwVerEntry 1 } + + cpqHoSwVerStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- undefined (default) + loaded(2), -- and running + notloaded(3) -- found but not loaded + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status for the software item." +-- +-- Items of type 'other' are those items which the agent could +-- not locate. +-- + ::= { cpqHoSwVerEntry 2 } + + cpqHoSwVerType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + driver(2), -- (default) + agent(3), + sysutil(4), + application(5), + keyfile(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Type of software item." + ::= { cpqHoSwVerEntry 3 } + + cpqHoSwVerName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The name of this software item." +-- +-- Writing to this entry with an index equal to cpqHoSwVerNextIndex +-- causes a table row to be created, and all entries to be filled in. +-- +-- Writing to this entry with a NULL name deletes the current row. +-- + ::= { cpqHoSwVerEntry 4 } + + cpqHoSwVerDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The description of this software item." +-- +-- A length of 0 indicates that the description of this item is +-- not available. +-- +-- Writing to this entry can cause the entire row to be updated. +-- + ::= { cpqHoSwVerEntry 5 } + + cpqHoSwVerDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date of the software item, if any. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65535 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + The year field is set with the most significant octet first. + + An entry of zero (0) means that there is no date associated with + this software item. Zero is the default." + ::= { cpqHoSwVerEntry 6 } + + cpqHoSwVerLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The location of this software item on the server." + ::= { cpqHoSwVerEntry 7 } + + cpqHoSwVerVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..50)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An string that specifies the version of this item." + ::= { cpqHoSwVerEntry 8 } + + cpqHoSwVerVersionBinary OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..50)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An string that specifies the version of this item based on + the binary version resource." + ::= { cpqHoSwVerEntry 9 } + +-- +-- New for release 7.10: cpqHoSwVerAgentsVer +-- + cpqHoSwVerAgentsVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..50)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A string that specifies the version of the Insight + Management Agents running on the system." + ::= { cpqHoSwVer 3 } + + +-- **************************************************************************** +-- The cpqHoGeneric group holds only the generic trap +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoGeneric Group (1.3.6.1.4.1.232.11.2.8) +-- +-- Implementation of this group is optional. +-- +-- **************************************************************************** + cpqHoGenericData OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Data for the generic trap." +-- +-- This is the data variable that is sent with the generic trap below. +-- +-- Writing to this variable will cause the generic trap to be sent with +-- the newly written data. +-- + ::= { cpqHoGeneric 1 } + + cpqHoCriticalSoftwareUpdateData OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..512)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Data for the Critical Software Update trap." +-- +-- This is the data variable that is sent with the Critical Software +-- update Notification Trap below. +-- Writing to this variable will cause the Critical Software update Notification Trap +-- to be sent with the newly written data. +-- + ::= { cpqHoGeneric 2 } + +-- **************************************************************************** +-- Software Performance Group +-- =========================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoSwPerf Group (1.3.6.1.4.1.232.11.2.9) +-- +-- Implementation of this group is optional. +-- +-- **************************************************************************** + cpqHoSwPerfAppErrorDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..254)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " This string holds error information about the last application + error that occurred in the system. " + + ::= { cpqHoSwPerf 1 } + +-- **************************************************************************** +-- System Status Group +-- =================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoSystemStatus Group (1.3.6.1.4.1.232.11.2.10) +-- +-- Implementation of this group is mandatory. +-- +-- **************************************************************************** + + cpqHoMibStatusArray OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4..256)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MIB Status Array is an array of MIB status structures. Each + structure is made up of 4 octets. The first octet is the MIB + presence. The second octet is MIB condition. The third octet is + MIB major revision. The fourth octet is MIB minor revision. These + blocks of 4 octets each are index by the mib identifier just after + the compaq enterprise (eg in 1.3.6.1.232.11 mib, the index is 11). + The 4 octets in the first block (block 0) are reserved for systems + management and serve as an aggregate of the other mibs. + + Array element 0 is the status for all MIBs in the Compaq + Enterprise. Array element n, where n > 0, is the status for the + nth MIB in the Compaq Enterprise (.1.3.6.1.4.1.232.n). + + Octet Element Field + ======== ======= ========= + 0 0 Status of any Compaq MIBs + 1 Condition of all Compaq MIBs + 2 System Flags (see below) + 3 Detailed type (see below) + 4 1 Status of Compaq MIB 1 + 5 Condition of Compaq MIB 1 + 6 Major Revision of Compaq MIB 1 + 7 Minor Revision of Compaq MIB 1 + 8 2 Status of Compaq MIB 2 + 9 Condition of Compaq MIB 2 + 10 Major Revision of Compaq MIB 2 + 11 Minor Revision of Compaq MIB 2 + . . + . + . + n*4 n Status of Compaq MIB n + (n*4)+1 Condition of Compaq MIB n + (n*4)+2 Major Revision of Compaq MIB n + (n*4)+3 Minor Revision of Compaq MIB n + + System Flags (octet 2) + Bit Meaning + ===== ========= + 0 Equals 1 if the device is not a server, see detailed type below + Equals 0 if the device is a server + 1 This system contains enabled remote console + functionality. + 2 This system is configured to be an Integration Server. + 3 Web Based Management is enabled. + 4-7 Reserved (reserved Bits should be zero) + + Detailed Type (octet 3) + Bits 0-4 Detailed Type, only used if bit 0 in octet 2 is 1. + Bits 5-7 Reserved for expansion. note, use these last in case we + need more then 32 types someday. + + Type Values for Bits 0-4 (maps to CIM7 types) + Unknown = 0 + Server = 1 (yes a duplicate of the server flag) + Desktop = 2 + Workstation = 3 + Portable = 4 + Router = 5 + Cluster = 6 + Printer = 7 + Switch = 8 (network switch) + Repeater = 9 + Remote Access Device = 10 + Other = 11 + Management Processor = 12 (rib, RILOE, iLo) + Rack = 13 + Enclosure = 14 + KVM Switch = 15 (IP enabled keyboard video mouse switch). + UPS = 16 + Power Distribution Unit = 17 + Environmental Monitor = 18 (eg CMC) + Power Distribution Rack = 19 (PDR) + Storage Device = 20 + + For all other blocks, they are defined as: + Status This is a collection of flags. Each bit has the + following meaning when it is on (1): + + Bit 2-7: RESERVED: Always 0 + Bit 1: MIB is from offline data (only applies + to global system status) + Bit 0: MIB is available + + NOTE: bit 7 is the most significant bit, bit 0 + is the least significant. + + Condition 0 - Not available + 1 - Other + 2 - OK + 3 - Degraded + 4 - Failed + + Major Revision 0..255, where 0 is not available + Minor Revision 0..255, where 0 is not available" + + + + ::= { cpqHoSystemStatus 1 } + + cpqHoConfigChangedDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date/time when the agents were last loaded. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if the agent cannot provide + the date/time. The year field is set with the most significant + octet first." + ::= { cpqHoSystemStatus 2 } + + cpqHoGUID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (16..17)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The globally unique identifier of this physical server. + If the OS cannot determine a unique ID, it will default the + variable to contain all 0's. The management station can then + perform a SET to this variable to provide the unique ID. + When the system is cellular, it will have its partition number + appended at the end." + ::= { cpqHoSystemStatus 3 } + + cpqHoCodeServer OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This item indicates how many code server shares are currently + configured on the system. If the value of this attribute is + 0, this server has not been configured with code server shares." + ::= { cpqHoSystemStatus 4 } + + cpqHoWebMgmtPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This item indicates the port used by the Insight Web Agent. + If the port cannot be determined or the Web Management agent + is not enabled, this value will be -1." + ::= { cpqHoSystemStatus 5 } + + cpqHoGUIDCanonical OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (32..36)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The globally unique identifier in canonical format of this + physical server. If the OS cannot determine a unique ID, it will + default the variable to blank." + ::= { cpqHoSystemStatus 6 } +-- **************************************************************************** +-- Trap Info Group +-- ================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoTrapInfo Group (1.3.6.1.4.1.232.11.2.11) +-- +-- Implementation of this group is mandatory. +-- +-- **************************************************************************** + + cpqHoTrapFlags OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Trap Flags. + + + This is a collection of flags used during trap delivery. + Each bit has the following meaning: + + Bit 5-31: RESERVED: Always 0. + Bit 2-4: Trap Condition + 0 = Not used (for backward compatibility) + 1 = Condition unknown or N/A + 2 = Condition ok + 3 = Condition degraded + 4 = Condition failed + 5-7 = reserved + Bit 1: Client IP address type + 0 = static entry + 1 = DHCP entry + Bit 0: Agent Type + 0 = Server + 1 = Client + + NOTE: bit 31 is the most significant bit, bit 0 is the least + significant." + + ::= { cpqHoTrapInfo 1 } + + +-- **************************************************************************** +-- OS Client Table +-- ==================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +--- cpqHoClient Group (1.3.6.1.4.1.232.11.2.12) +-- +-- The cpqHoClient table contains entries describing identification, +-- address, and status information about each unit that is using +-- services provided by this unit. +-- +-- **************************************************************************** + + + + cpqHoClientLastModified OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date/time of the last modification to the client table. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to all 0's if there are no entries to the + client table. + + The year field will be set to 0xFFFF if the agent does not support + the client table. + + The year field is set with the most significant octet first." + ::= { cpqHoClients 1 } + + cpqHoClientDelete OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Setting this variable to the name of a client in the client table + will cause that row in the table to be deleted. Any other set + will fail. + + Note that the indices of the table will (most likely) be renumbered + following a deletion." + ::= { cpqHoClients 2 } + + + cpqHoClientTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoClientEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of client descriptions." + ::= { cpqHoClients 3 } + + cpqHoClientEntry OBJECT-TYPE + SYNTAX CpqHoClientEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A client description." + INDEX { cpqHoClientIndex } + ::= { cpqHoClientTable 1 } + + CpqHoClientEntry ::= SEQUENCE { + cpqHoClientIndex INTEGER, + cpqHoClientName DisplayString, + cpqHoClientIpxAddress OCTET STRING, + cpqHoClientIpAddress IpAddress, + cpqHoClientCommunity DisplayString, + cpqHoClientID OCTET STRING + } + + cpqHoClientIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry." + ::= { cpqHoClientEntry 1 } + + cpqHoClientName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Win95 machine name of this client." + +-- Note that Win95 limits the machine name to a maximum of 15 characters. + + ::= { cpqHoClientEntry 2 } + + cpqHoClientIpxAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (20)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IPX address for this client, all octets should be set to + 0xff if this machine does not support IPX. + + The format is NetAddr:NodeNumber and sent in MSB order: + + 1111111111 + 01234567:890123456789" + +-- Note, this item is still in definition and probably will change. + + ::= { cpqHoClientEntry 3 } + + cpqHoClientIpAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address for this client, all octets should be set to + 0xff if this machine does not support IP. The order will be + in network byte order (ie MSB first.)" + + ::= { cpqHoClientEntry 4 } + + cpqHoClientCommunity OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..48)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A community name that can be used to query the client with SNMP. + This community name should have, but is not required to have, + the greatest possible access to client information." + ::= { cpqHoClientEntry 5 } + + cpqHoClientID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique identifier of this client." + ::= { cpqHoClientEntry 6 } + +-- **************************************************************************** +-- OS Memory Group +-- =============== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +--- cpqHoMemory Group (1.3.6.1.4.1.232.11.2.13) +-- +-- The cpqHoMemory group contains entries describing memory +-- as seen by the OS. +-- +-- **************************************************************************** + + cpqHoPhysicalMemorySize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total amount of physical memory as seen by the OS (in megabytes). + + A -1 will be returned if this value could not be determined." + ::= { cpqHoMemory 1 } + + cpqHoPhysicalMemoryFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of free physical memory (in megabytes). + + A -1 will be returned if this value could not be determined." + ::= { cpqHoMemory 2 } + + cpqHoPagingMemorySize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total virtual memory available from the OS (in megabytes). + + A -1 will be returned if this value could not be determined." + ::= { cpqHoMemory 3 } + + cpqHoPagingMemoryFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Available paging memory (in megabytes). + + A -1 will be returned if this value could not be determined." + ::= { cpqHoMemory 4 } + + cpqHoBootPagingFileSize OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The paging file size of the boot volume in the format xxxMB or + xxxGB, where xxx is the paging file size in that unit shown right + after it. + + NULL value will be returned if this value could not be determined." + ::= { cpqHoMemory 5 } + + cpqHoBootPagingFileMinimumSize OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Minimum paging file size of the boot volume required to save the + memory dump in the event of a system crash. The format is xxxMB or + xxxGB, where xxx is the minimum paging file size in that unit shown + right after it." + ::= { cpqHoMemory 6 } + + cpqHoBootPagingFileVolumeFreeSpace OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-only + STATUS optional + DESCRIPTION + "Free space of the boot volume required to save the memory dump in the + event of a system crash. The format is xxxMB or xxxGB, where xxx is + the minimum paging file size in that unit shown right after it." + ::= { cpqHoMemory 7 } + +-- **************************************************************************** +-- Firmware Version Instrumentation Group +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoFwVer Group (1.3.6.1.4.1.232.11.2.14) +-- cpqHoFwVerTable (1.3.6.1.4.1.232.11.2.14.1) +-- +-- The cpqHoFwVer group describes the firmware version table. +-- +-- Implementation of the cpqHoFwVer group is mandatory for all +-- agents that support the Host MIB. +-- +-- **************************************************************************** + + cpqHoFwVerTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqHoFwVerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of firmware item entries." + ::= { cpqHoFwVer 1 } + + cpqHoFwVerEntry OBJECT-TYPE + SYNTAX CpqHoFwVerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of firmware items that are on the machine." + INDEX { cpqHoFwVerIndex } + ::= { cpqHoFwVerTable 1 } + + CpqHoFwVerEntry ::= SEQUENCE { + cpqHoFwVerIndex INTEGER, + cpqHoFwVerCategory INTEGER, + cpqHoFwVerDeviceType INTEGER, + cpqHoFwVerDisplayName DisplayString, + cpqHoFwVerVersion DisplayString, + cpqHoFwVerLocation DisplayString, + cpqHoFwVerXmlString DisplayString, + cpqHoFwVerKeyString DisplayString, + cpqHoFwVerUpdateMethod INTEGER + } + + cpqHoFwVerIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Index. + + The firmware version index uniquely identifies an entry in the + cpqHoFwVer table." + ::= { cpqHoFwVerEntry 1 } + + cpqHoFwVerCategory OBJECT-TYPE + SYNTAX INTEGER { + other(1), + storage(2), + nic(3), + rib(4), + system(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Category." + ::= { cpqHoFwVerEntry 2 } + + cpqHoFwVerDeviceType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + internalArrayController(2), + fibreArrayController(3), + scsiController(4), + fibreChannelTapeController(5), + modularDataRouter(6), + ideCdRomDrive(7), + ideDiskDrive(8), + scsiCdRom-ScsiAttached(9), + scsiDiskDrive-ScsiAttached(10), + scsiTapeDrive-ScsiAttached(11), + scsiTapeLibrary-ScsiAttached(12), + scsiDiskDrive-ArrayAttached(13), + scsiTapeDrive-ArrayAttached(14), + scsiTapeLibrary-ArrayAttached(15), + scsiDiskDrive-FibreAttached(16), + scsiTapeDrive-FibreAttached(17), + scsiTapeLibrary-FibreAttached(18), + scsiEnclosureBackplaneRom-ScsiAttached(19), + scsiEnclosureBackplaneRom-ArrayAttached(20), + scsiEnclosureBackplaneRom-FibreAttached(21), + scsiEnclosureBackplaneRom-ra4x00(22), + systemRom(23), + networkInterfaceController(24), + remoteInsightBoard(25) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Device Type." + ::= { cpqHoFwVerEntry 3 } + + cpqHoFwVerDisplayName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Device Display Name. + + This is the display name of the device containing the firmware." + ::= { cpqHoFwVerEntry 4 } + + cpqHoFwVerVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version. + + This is the version of the device firmware." + ::= { cpqHoFwVerEntry 5 } + + cpqHoFwVerLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Device Location. + + This is a printable string that specifies the location of the + device that contains the firmware." + ::= { cpqHoFwVerEntry 6 } + + cpqHoFwVerXmlString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Xml String. + + This is an XML string that specifies the location of the device + that contains the firmware. + This will be NULL string (size 0) if this information could not + be provided." + ::= { cpqHoFwVerEntry 7 } + + cpqHoFwVerKeyString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..127)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version Key String. + + This field is differentiate devices of the same type." + ::= { cpqHoFwVerEntry 8 } + + + cpqHoFwVerUpdateMethod OBJECT-TYPE + SYNTAX INTEGER { + other(1), + noUpdate(2), + softwareflash(3), + replacePhysicalRom(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware Version update method." + ::= { cpqHoFwVerEntry 9 } + + +-- **************************************************************************** +-- Hardware Information Group +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOs Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqHoHWInfo Group (1.3.6.1.4.1.232.11.2.15) +-- cpqHoHWInfoPlatform (1.3.6.1.4.1.232.11.2.15.1) +-- +-- The cpqHoHWInfo group describes some hw information necessary to other agents. +-- +-- Implementation of the cpqHoHWInfo group is optional for +-- agents that support the Host MIB. +-- +-- **************************************************************************** + cpqHoHWInfoPlatform OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + cellular(2), + foundation(3), + virtualMachine(4), + serverBlade(5) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "Hardware platform type. + + This object represents the platform type of the server's host + system represented by this MIB." + ::= { cpqHoHWInfo 1 } + +-- **************************************************************************** +-- The cpqPwrThreshold group holds data for the +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqHostOS Group (1.3.6.1.4.1.232.11) +-- cpqHoComponent Group (1.3.6.1.4.1.232.11.2) +-- cpqPwrThreshold Group (1.3.6.1.4.1.232.11.2.16) +-- +-- Implementation of this group is mandatory. +-- +-- **************************************************************************** + cpqPwrWarnType OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Type of power reading on which the warning is based." + + ::= { cpqPwrThreshold 1 } + + cpqPwrWarnThreshold OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The threshold the power usage must exceed (in Watts)." + + ::= { cpqPwrThreshold 2 } + + cpqPwrWarnDuration OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Duration that power usage must be exceeded before warning (in minutes)." + + ::= { cpqPwrThreshold 3 } + + cpqSerialNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Serial number of the server." + + ::= { cpqPwrThreshold 4 } + + cpqServerUUID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Server UUID" + + ::= { cpqPwrThreshold 5 } + + +-- **************************************************************************** +-- Host MIB Trap Definitions +-- ========================= +-- +-- The SNMP trap messages must not be bigger than 484 octets (bytes). +-- +-- Trap support in an SNMP agent implementation is optional. An SNMP +-- agent implementation may support all, some, or none of the traps. +-- If traps are supported, The user should be provided with the option of +-- disabling traps. +-- +-- Implementation of cpqHoGenericTrap is a mandatory part of the Generic +-- group. +-- +-- ************************************************************************** + + cpqHoGenericTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqHoGenericData } + DESCRIPTION + -- This trap is a generic trap, and left undefined. + "Generic trap." + + --#TYPE "Generic trap (11001)" + --#SUMMARY "%s" + --#ARGUMENTS {0} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 11001 + + cpqHoAppErrorTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqHoSwPerfAppErrorDesc } + DESCRIPTION + "An application has generated an exception. Specific + error information is contained in the variable + cpqHoSwPerfAppErrorDesc." + + --#TYPE "Application Error Trap (11002)" + --#SUMMARY "%s" + --#ARGUMENTS {0} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 11002 + + + cpqHo2GenericTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoGenericData } + DESCRIPTION + -- This trap is a generic trap, and left undefined. + "Generic trap." + + --#TYPE "Generic trap (11003)" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 11003 + + cpqHo2AppErrorTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoSwPerfAppErrorDesc } + DESCRIPTION + "An application has generated an exception. Specific + error information is contained in the variable + cpqHoSwPerfAppErrorDesc." + + --#TYPE "Application Error Trap (11004)" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 11004 + + cpqHo2NicStatusOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot } + DESCRIPTION + "This trap will be sent any time the status of a NIC changes to + the OK condition." + + --#TYPE "Status Trap (11005)" + --#SUMMARY "NIC Status is OK for slot %s." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + ::= 11005 + + cpqHo2NicStatusFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot } + DESCRIPTION + "This trap will be sent any time the status of a NIC changes to + the Failed condition." + + --#TYPE "Status Trap (11006)" + --#SUMMARY "NIC Status is Failed for slot %s." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + ::= 11006 + + cpqHo2NicSwitchoverOccurred TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, cpqHoIfPhysMapSlot } + DESCRIPTION + "This trap will be sent any time the configured redundant NIC + becomes the active NIC." + + --#TYPE "Status Trap (11007)" + --#SUMMARY "NIC switchover to slot %s from slot %s." + --#ARGUMENTS {2, 3} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + ::= 11007 + + + cpqHo2NicStatusOk2 TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, + cpqHoIfPhysMapPort } + DESCRIPTION + "This trap will be sent any time the status of a NIC changes to + the OK condition." + + --#TYPE "Status Trap (11008)" + --#SUMMARY "NIC Status is OK for slot %s, port %s." + --#ARGUMENTS {2, 3} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + ::= 11008 + + cpqHo2NicStatusFailed2 TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, + cpqHoIfPhysMapPort } + DESCRIPTION + "This trap will be sent any time the status of a NIC changes to + the Failed condition." + + --#TYPE "Status Trap (11009)" + --#SUMMARY "NIC Status is Failed for slot %s, port %s." + --#ARGUMENTS {2, 3} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + ::= 11009 + + cpqHo2NicSwitchoverOccurred2 TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoIfPhysMapSlot, + cpqHoIfPhysMapPort, cpqHoIfPhysMapSlot, + cpqHoIfPhysMapPort } + DESCRIPTION + "This trap will be sent any time the configured redundant NIC + becomes the active NIC." + + --#TYPE "Status Trap (11010)" + --#SUMMARY "NIC switchover to slot %s, port %s from slot %s, port %s." + --#ARGUMENTS {2, 3, 4, 5} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + ::= 11010 + + cpqHoProcessEventTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoSwRunningTrapDesc } + DESCRIPTION + "A monitored process has either started or stopped running." + + --#TYPE "Process Monitor Event Trap (11011)" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 11011 + + cpqHoProcessCountWarning TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoSWRunningName, cpqHoSWRunningCount, + cpqHoSWRunningCountMin, cpqHoSWRunningCountMax, + cpqHoSWRunningEventTime } + DESCRIPTION + "A monitored process count has violated the thresholds set on cpqHoSWRunningCount" + + --#TYPE "Process Count Event Trap (11012)" + --#SUMMARY "Process %s has count %s which violates the thresholds %s to %s." + --#ARGUMENTS {2, 3, 4, 5} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 11012 + + cpqHoProcessCountNormal TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoSWRunningName, cpqHoSWRunningCount, + cpqHoSWRunningCountMin, cpqHoSWRunningCountMax, + cpqHoSWRunningEventTime } + DESCRIPTION + "A monitored process count has returned back to normal." + + --#TYPE "Process Monitor Event Trap (11013)" + --#SUMMARY "Process %s has count %s which respects the thresholds %s to %s." + --#ARGUMENTS {2, 3, 4, 5} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 11013 + + cpqHoCriticalSoftwareUpdateTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoCriticalSoftwareUpdateData } + DESCRIPTION + "This trap is a send to the user to notify him of a Critical Software Update." + + --#TYPE "Critical Software update Notification Trap (11014)" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 11014 + + cpqHoCrashDumpNotEnabledTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoCrashDumpState } + DESCRIPTION + "This trap is sent to the user to notify him that the Crash Dump is not enabled. + This trap is not sent if cpqHoCrashDumpMonitoring is disabled." + + --#TYPE "Crash Dump not enabled Notification Trap (11015)" + --#SUMMARY "Crash Dump is not enabled." + --#ARGUMENTS {} + --#SEVERITY WARNING + --#TIMEINDEX 99 + + ::= 11015 + + + cpqHoBootPagingFileTooSmallTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoCrashDumpState, cpqHoBootPagingFileSize, cpqHoBootPagingFileMinimumSize } + DESCRIPTION + "This trap is sent when the paging file size of the boot volume or the target volume of the memory dump file is too small to hold a crash dump. + This trap is not sent if cpqHoCrashDumpMonitoring is disabled." + + --#TYPE "Boot Paging File Or Memory Dump Target Volume Too Small Notification Trap (11016)" + --#SUMMARY "The paging file size of the boot volume (%s) or the target volume of the memory dump file is not large enough to hold a crash dump in the event of a system crash (%s)." + --#ARGUMENTS {3, 4} + --#SEVERITY WARNING + --#TIMEINDEX 99 + + ::= 11016 + + cpqHoSWRunningStatusChangeTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoSWRunningName, cpqHoSWRunningDesc,cpqHoSwRunningTrapDesc, cpqHoSWRunningVersion,cpqHoSWRunningStatus, cpqHoSWRunningConfigStatus, cpqHoSWRunningIdentifier, cpqHoSWRunningRedundancyMode } + DESCRIPTION + "This trap notifies the user that the running software has changed status, configuration status, or redundancy mode." + + --#TYPE "Software status change Notification Trap (11017)" + --#SUMMARY "Software status change for %s, description = %s, id = %s" + --#ARGUMENTS {2, 4, 8} + --#SEVERITY WARNING + --#TIMEINDEX 99 + + ::= 11017 + + cpqHo2PowerThresholdTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqPwrWarnType, cpqPwrWarnThreshold, cpqPwrWarnDuration, cpqSerialNum, cpqServerUUID } + DESCRIPTION + -- This trap notifies user of a power threshold breach. + "Power threshold exceeded." + + --#TYPE "Power Threshold Exceeded (11018)" + --#SUMMARY "%s" + --#ARGUMENTS {6} + --#SEVERITY MINOR + --#TIMEINDEX 99 + + ::= 11018 + + cpqHoBootPagingFileOrFreeSpaceTooSmallTrap TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqHoCrashDumpState, cpqHoBootPagingFileSize, cpqHoBootPagingFileVolumeFreeSpace, cpqHoBootPagingFileMinimumSize } + DESCRIPTION + "This trap is sent when the paging file size of the boot volume or the free space of memory dump target volume is too small to hold a crash dump." + --#TYPE "Boot Paging File Or Memory Dump Target Volume Too Small Notification Trap (11016)" + --#SUMMARY "The paging file size of the boot volume (%s) or the free space of the memory dump target volume (%s) is not large enough to hold a crash dump in the event of a system crash (%s)." + --#ARGUMENTS {3, 4, 5} + --#SEVERITY WARNING + --#TIMEINDEX 99 + + ::= 11019 + + + END + diff --git a/pandora_console/attachment/mibs/CPQSINFO-MIB b/pandora_console/attachment/mibs/CPQSINFO-MIB new file mode 100644 index 0000000000..a4239721d0 --- /dev/null +++ b/pandora_console/attachment/mibs/CPQSINFO-MIB @@ -0,0 +1,3867 @@ +-- **************************************************************************** +-- +-- System Information +-- Management Information Base for SNMP Network Management +-- +-- +-- Copyright 1992,2008 Hewlett-Packard Development Company, L.P. +-- +-- Hewlett-Packard Company shall not be liable for technical or +-- editorial errors or omissions contained herein. The information in +-- this document is provided "as is" without warranty of any kind and +-- is subject to change without notice. The warranties for HP products +-- are set forth in the express limited warranty statements +-- accompanying such products. Nothing herein should be construed as +-- constituting an additional warranty. +-- +-- Confidential computer software. Valid license from HP required for +-- possession, use or copying. Consistent with FAR 12.211 and 12.212, +-- Commercial Computer Software, Computer Software Documentation, and +-- Technical Data for Commercial Items are licensed to the U.S. +-- Government under vendor's standard commercial license. +-- +-- Refer to the READMIB.RDM file for more information about the +-- organization of the information in the Compaq Enterprise. +-- +-- The Compaq Enterprise number is 232. +-- The ASN.1 prefix to, and including the Compaq Enterprise is: +-- 1.3.6.1.4.1.232 +-- +-- **************************************************************************** + +CPQSINFO-MIB DEFINITIONS ::= BEGIN + + IMPORTS + compaq FROM CPQHOST-MIB + DisplayString FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + sysName FROM RFC1213-MIB + cpqHoTrapFlags FROM CPQHOST-MIB + TRAP-TYPE FROM RFC-1215; + + +-- compaq OBJECT IDENTIFIER ::= { enterprises 232 } + cpqSystemInfo OBJECT IDENTIFIER ::= { compaq 2 } + cpqSiMibRev OBJECT IDENTIFIER ::= { cpqSystemInfo 1 } + cpqSiComponent OBJECT IDENTIFIER ::= { cpqSystemInfo 2 } + + cpqSiInterface OBJECT IDENTIFIER ::= { cpqSiComponent 1 } + cpqSiAsset OBJECT IDENTIFIER ::= { cpqSiComponent 2 } + cpqSiSecurity OBJECT IDENTIFIER ::= { cpqSiComponent 3 } + cpqSiSystemBoard OBJECT IDENTIFIER ::= { cpqSiComponent 4 } + cpqSiBoardRev OBJECT IDENTIFIER ::= { cpqSiComponent 5 } + cpqSiRackServer OBJECT IDENTIFIER ::= { cpqSiComponent 6 } + cpqSiVideo OBJECT IDENTIFIER ::= { cpqSiComponent 7 } + cpqSiMonitor OBJECT IDENTIFIER ::= { cpqSiComponent 8 } + cpqSiHotPlugSlot OBJECT IDENTIFIER ::= { cpqSiComponent 9 } + cpqSiSystemBattery OBJECT IDENTIFIER ::= { cpqSiComponent 10 } + cpqSiDockingStation OBJECT IDENTIFIER ::= { cpqSiComponent 11 } + cpqSiFru OBJECT IDENTIFIER ::= { cpqSiComponent 12 } + cpqSiRackEnclosure OBJECT IDENTIFIER ::= { cpqSiComponent 13 } + cpqSiServerBlade OBJECT IDENTIFIER ::= { cpqSiComponent 14 } + cpqSiRack OBJECT IDENTIFIER ::= { cpqSiComponent 15 } + cpqSiMP OBJECT IDENTIFIER ::= { cpqSiComponent 16 } + + cpqSiOsCommon OBJECT IDENTIFIER ::= { cpqSiInterface 4 } + +-- **************************************************************************** +-- System Information MIB Revision +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiMibRev Group (1.3.6.1.4.1.232.2.1) +-- +-- Implementation of the MibRev group is mandatory for all Insight Agents +-- supporting the System Information MIB. +-- +-- An Agent conforming to this document will return a +-- cpqSiMibRevMajor of one (1) and a cpqSiMibRevMinor of thirty-four (34). +-- +-- +-- **************************************************************************** + + cpqSiMibRevMajor OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The major revision level of the MIB. + + A change in the major revision level represents a major change + in the architecture of the MIB. A change in the major revision + level may indicate a significant change in the information + supported and/or the meaning of the supported information, + correct interpretation of data may require a MIB document with + the same major revision level." + ::= { cpqSiMibRev 1 } + + cpqSiMibRevMinor OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minor revision level of the MIB. + + A change in the minor revision level may represent some minor + additional support, no changes to any pre-existing information + has occurred." + ::= { cpqSiMibRev 2 } + + cpqSiMibCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), -- default + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition. + + This object represents the overall status of the server + information represented by this MIB." + ::= { cpqSiMibRev 3 } + +-- **************************************************************************** +-- System Information Common +-- ========================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiInterface Group (1.3.6.1.4.1.232.2.2.1) +-- cpqSiOsCommon Group (1.3.6.1.4.1.232.2.2.1.4) +-- +-- +-- Implementation of the cpqSiOsCommon group is mandatory for all +-- Insight Agents that support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiOsCommonPollFreq OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Insight Agent's polling frequency. + + The frequency, in seconds, at which the Insight Agent requests + information from the device driver. A frequency of zero (0) + indicates that the Insight Agent retrieves the information upon + request of a management station, it does not poll the device + driver at a specific interval. + + If the poll frequency is zero (0) all attempts to write to this + object will fail. If the poll frequency is non-zero, + setting this value will change the polling frequency of the + Insight Agent. Setting the poll frequency to zero (0) will + always fail, an agent may also choose to fail any request to + change the poll frequency to a value that would severely impact + system performance." + ::= { cpqSiOsCommon 1 } + + +-- **************************************************************************** +-- System Information Common Module Table +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiInterface Group (1.3.6.1.4.1.232.2.2.1) +-- cpqSiOsCommon Group (1.3.6.1.4.1.232.2.2.1.4) +-- cpqSiOsCommonModuleTable (1.3.6.1.4.1.232.2.2.1.4.2) deprecated +-- +-- **************************************************************************** + + cpqSiOsCommonModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A table of software modules that provide an interface to the + device this MIB describes." + ::= { cpqSiOsCommon 2 } + + cpqSiOsCommonModuleEntry OBJECT-TYPE + SYNTAX CpqSiOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A description of a software module that provides an interface + to the device this MIB describes." + INDEX { cpqSiOsCommonModuleIndex } + ::= { cpqSiOsCommonModuleTable 1 } + + CpqSiOsCommonModuleEntry ::= SEQUENCE { + cpqSiOsCommonModuleIndex INTEGER, + cpqSiOsCommonModuleName DisplayString, + cpqSiOsCommonModuleVersion DisplayString, + cpqSiOsCommonModuleDate OCTET STRING, + cpqSiOsCommonModulePurpose DisplayString + } + + cpqSiOsCommonModuleIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "A unique index for this module description." + ::= { cpqSiOsCommonModuleEntry 1 } + + cpqSiOsCommonModuleName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module name." + ::= { cpqSiOsCommonModuleEntry 2 } + + cpqSiOsCommonModuleVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module version in XX.YY format. + + Where XX is the major version number and YY is the minor version + number. This field will be a null (size 0) string if the agent + cannot provide the module version." + ::= { cpqSiOsCommonModuleEntry 3 } + + cpqSiOsCommonModuleDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module date. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if the agent cannot provide + the module date. The hour, minute, and second field will be set + to zero (0) if they are not relevant. The year field is set + with the most significant octet first." + ::= { cpqSiOsCommonModuleEntry 4 } + + cpqSiOsCommonModulePurpose OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The purpose of the module described in this entry." + ::= { cpqSiOsCommonModuleEntry 5 } + +-- **************************************************************************** +-- System Information Asset Group +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiAsset Group (1.3.6.1.4.1.232.2.2.2) +-- +-- The cpqSiAsset group contains the serial numbers of any hardware +-- that supports asset management. +-- +-- Implementation of the cpqSiAsset group is mandatory for all Insight +-- Agents that support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiSysSerialNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The serial number of the physical system unit. + + The string will be empty if the system does not report the + serial number function." + ::= { cpqSiAsset 1 } + + cpqSiFormFactor OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + portable(2), + laptop(3), + desktop(4), + tower(5), + mini-tower(6), + rack-mount(7) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The form factor of the system. Setting this variable to + unknown will fail." + ::= { cpqSiAsset 2 } + + cpqSiAssetTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The customer changeable identifier that is set to the system + serial number at the time of manufacture. + + The string will be empty if the system does not report this + function." + ::= { cpqSiAsset 3 } + + cpqSiOwnershipTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..79)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a customer changeable identifier that will be + displayed by ROM at POST. This is an 80 byte standard + ASCII character string and is Administrator Password + protected. + + An example could be: + Property of Hewlett-Packard Company + + The string should be NULL terminated. This item will be + empty if the system does not report this function." + ::= { cpqSiAsset 4 } + + cpqSiSysServiceNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The service number of the system unit. + + The string will be empty if the system does not report the + system service number." + ::= { cpqSiAsset 5 } + + cpqSiSysProductId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product id string of the system unit. + + The string will be empty if the system does not report the + product id." + ::= { cpqSiAsset 6 } + + cpqSiAssetTagMaxLength OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + " Maximum allowed size in bytes of the asset tag." + + ::= { cpqSiAsset 7 } + +-- **************************************************************************** +-- Virtual System Information Table +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiAsset Group (1.3.6.1.4.1.232.2.2.2) +-- cpqSiVirtualSystemTable (1.3.6.1.4.1.232.2.2.2.8) +-- cpqSiVirtualSystemEntry (1.3.6.1.4.1.232.2.2.2.8.1) +-- +-- **************************************************************************** + + cpqSiVirtualSystemTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiVirtualSystemEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A table of virtual system information entries." + ::= { cpqSiAsset 8 } + + cpqSiVirtualSystemEntry OBJECT-TYPE + SYNTAX CpqSiVirtualSystemEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A virtual system information table entry." + INDEX { cpqSiVirtualSystemIndex } + ::= { cpqSiVirtualSystemTable 1 } + + CpqSiVirtualSystemEntry ::= SEQUENCE { + cpqSiVirtualSystemIndex INTEGER, + cpqSiVirtualSystemSerialNumber DisplayString, + cpqSiVirtualSystemUUID DisplayString + } + + cpqSiVirtualSystemIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS optional + DESCRIPTION + "The unique index of the virtual system information entry." + ::= { cpqSiVirtualSystemEntry 1 } + + cpqSiVirtualSystemSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The HP Virtual Serial Number for the computer system package. The Virtual + Serial Number is the system serial number exposed to the operating + system when running in an HP Virtual Connect environment. The Virtual + Serial Number presented here will correspond to the Virtual UUID at the + same index location." + ::= { cpqSiVirtualSystemEntry 2 } + + cpqSiVirtualSystemUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The HP Virtual UUID for the computer system package. The Virtual + UUID is the UUID number exposed to the operating system when running + in an HP Virtual Connect environment. The Virtual UUID presented + here will correspond to the Virtual serial number at the same index + location." + ::= { cpqSiVirtualSystemEntry 3 } + + +-- **************************************************************************** +-- System Information Security Group +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSecurity Group (1.3.6.1.4.1.232.2.2.3) +-- +-- The Security group describes how the security features on your +-- computer are currently configured. +-- +-- Implementation of the security group is mandatory for all agents that +-- support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiPowerOnPassword OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the power on password feature." + ::= { cpqSiSecurity 1 } + + cpqSiNetServerMode OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the network server mode feature." + ::= { cpqSiSecurity 2 } + + cpqSiQuickLockPassword OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the quicklock password feature." + ::= { cpqSiSecurity 3 } + + cpqSiQuickBlank OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the quick blank screen feature." + ::= { cpqSiSecurity 4 } + + cpqSiDisketteBootControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the diskette boot control feature." + ::= { cpqSiSecurity 5 } + + cpqSiSerialPortAControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the access control for the primary serial port + interface embedded in the system board." + ::= { cpqSiSecurity 6 } + + cpqSiSerialPortBControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the access control for the secondary serial port + interface embedded in the system board." + ::= { cpqSiSecurity 7 } + + cpqSiParallelPortControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the access control for the parallel port interface + embedded in the system board." + ::= { cpqSiSecurity 8 } + + cpqSiFloppyDiskControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the access control for the floppy diskette + interface embedded in the system board." + ::= { cpqSiSecurity 9 } + + cpqSiFixedDiskControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the access control for the fixed disk interface + embedded in the system board." + ::= { cpqSiSecurity 10 } + + cpqSiHoodRemovedTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Last detection of hood removed by Smart Hood Sensor." + + ::= { cpqSiSecurity 11 } + + cpqSiHoodSensorConfiguration OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + notifyUser(3), + adminPasswordProtected(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the current configuration of the Smart Cover + sensor. + + The following values are currently defined: + + other(1) + Smart Cover sensor is not supported on this system or cannot + be determined by the Insight Agent. You may need to upgrade + your software. + + disabled(2) + Smart Cover sensor will not detect a hood removal and + cpqSiHoodRemovedTime will not be updated. + + notifyUser(3) + Smart Cover sensor will detect a hood removal and will display + a message at POST for the user. + + adminPasswordProtected(4) + Smart Cover sensor will detect a hood removal and will display + a message at POST for the user to enter the Admin Password. + The system will not boot until proper password is entered." + ::= { cpqSiSecurity 12 } + + + cpqSiSmartCoverLockStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unlocked(2), + locked(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the current status of the Smart Cover + Lock. The following values are currently defined: + + other(1) + Smart Cover Lock is not supported on this system or cannot + be determined by the Insight Agent. You may need to upgrade + your software. + + unlocked(2) + Smart Cover Lock is not locked. The status will be set to + unlocked due to one of the following: + 1. The system hood is removed, or + 2. There is no administrator password set, or + 3. The administrator manually sets status to unlock. + + locked(3) + Smart Cover Lock is locked. The administrator password is + required to unlock the hood." + ::= { cpqSiSecurity 13 } + + cpqSiUSBPortControl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3), + legacydisabled(4), + externalportdisabled(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the access control for the Universal + Serial Bus interface(s) embedded in the system + board. + + other(1) + If Status could not be determined. + + disabled(2) + USB interface is disable. + + enabled(3) + USB interface is enable. + + legacydisabled(4) + Legacy USB interface is disabled. + + externalportdisabled(5) + External USB Ports are disabled." + ::= { cpqSiSecurity 14 } + +-- **************************************************************************** +-- System Information System Board Group +-- ===================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) +-- +-- The cpqSiSystemBoard group describe features of your computer +-- system board. +-- +-- Implementation of the cpqSiSystemBoard group is mandatory for all agents +-- that support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiProductId OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The machine product ID. + + This value indicates the product type of the system board + in this system. The value 127 will be given if the machine ID + cannot be determined. A value of 127 will also be used for the + special case of a machine containing neither EISA nor ISA slots." + ::= { cpqSiSystemBoard 1 } + + cpqSiProductName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The machine product name. + + The name of the machine used in this system." + ::= { cpqSiSystemBoard 2 } + + cpqSiAuxiliaryInput OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the auxiliary input (pointing) device." + ::= { cpqSiSystemBoard 4 } + +-- **************************************************************************** +-- System Information Memory Module Table +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) +-- cpqSiMemModuleTable (1.3.6.1.4.1.232.2.2.4.5) +-- cpqSiMemModuleEntry (1.3.6.1.4.1.232.2.2.4.5.1) +-- +-- **************************************************************************** +-- Deprecated this table in 8.20 time frame please use the +-- cpqHeResMem2ModuleTable tables to get value + + cpqSiMemModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiMemModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of memory module descriptions." + ::= { cpqSiSystemBoard 5 } + + cpqSiMemModuleEntry OBJECT-TYPE + SYNTAX CpqSiMemModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A memory module description." + INDEX { cpqSiMemBoardIndex , cpqSiMemModuleIndex } + ::= { cpqSiMemModuleTable 1 } + + CpqSiMemModuleEntry ::= SEQUENCE { + cpqSiMemBoardIndex INTEGER, + cpqSiMemModuleIndex INTEGER, + cpqSiMemModuleSize INTEGER, + cpqSiMemModuleType INTEGER, + cpqSiMemModuleSpeed INTEGER, -- deprecated + cpqSiMemModuleTechnology INTEGER, + cpqSiMemModuleManufacturer DisplayString, + cpqSiMemModulePartNo DisplayString, + cpqSiMemModuleDate OCTET STRING, + cpqSiMemModuleSerialNo DisplayString, + cpqSiMemModuleECCStatus INTEGER, + cpqSiMemModuleHwLocation DisplayString, + cpqSiMemModuleFrequency INTEGER, + cpqSiMemModuleCellTablePtr INTEGER, + cpqSiMemModuleCellStatus INTEGER, + cpqSiMemModulePartNoMfgr DisplayString, + cpqSiMemModuleSerialNoMfgr DisplayString + } + + cpqSiMemBoardIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot in which the memory board or cartridge is installed. + + A value of 0 indicates memory installed directly on the + system board." + ::= { cpqSiMemModuleEntry 1 } + + cpqSiMemModuleIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module number." + ::= { cpqSiMemModuleEntry 2 } + + cpqSiMemModuleSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Module memory size in kilobytes. A kilobyte of memory is + defined as 1024 bytes. + + A size of 0 indicates the module is not present." + ::= { cpqSiMemModuleEntry 3 } + + cpqSiMemModuleType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + board(2), + cpqSingleWidthModule(3), + cpqDoubleWidthModule(4), + simm(5), + pcmcia(6), + compaq-specific(7), + dimm(8), + smallOutlineDimm(9), + rimm(10), + srimm(11), + fb-dimm(12) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Type of memory module installed. The value other(1) will be + given if the type is not known. The value board(2) will be + given if the memory module is permanently mounted (not modular) + on a system board or memory expansion board." + ::= { cpqSiMemModuleEntry 4 } + + cpqSiMemModuleSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Module memory speed in nanoseconds. The value zero (0) will + be given if the module speed cannot be determined." + ::= { cpqSiMemModuleEntry 5 } + + cpqSiMemModuleTechnology OBJECT-TYPE + SYNTAX INTEGER { + other(1), + fastPageMode(2), + edoPageMode(3), + burstEdoPageMode(4), + synchronous(5), + rdram(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Technology type of memory module installed. The value other(1) + will be given if the technology is not known." + ::= { cpqSiMemModuleEntry 6 } + + cpqSiMemModuleManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module's manufacturer name. + + This field will be a null (size 0) string if the manufacturer + name is not available." + ::= { cpqSiMemModuleEntry 7 } + + cpqSiMemModulePartNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module's manufacturer part number. + + This field will be a null (size 0) string if the manufacturer + part number is not available." + ::= { cpqSiMemModuleEntry 8 } + + cpqSiMemModuleDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module date of manufacture. + + field octets contents range + ===== ====== ====================== ======== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + This field will be set to year = 0 if the date of manufacture + is not available. The hour, minute, and second fields will + always be set to 0." + ::= { cpqSiMemModuleEntry 9 } + + cpqSiMemModuleSerialNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The memory module's serial number. + + This field will be a null (size 0) string if the serial number + is not available." + ::= { cpqSiMemModuleEntry 10 } + + cpqSiMemModuleECCStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + degradedModuleIndexUnknown(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the correctable memory + errors for this memory module. + + The following status values are supported: + + other(1): + ECC is not supported on this memory module. + + ok(2): + The correctable error count is below threshold. + + degraded(3): + The correctable error count has exceeded threshold. + + degradedModuleIndexUnknown(4): + The correctable error count has exceeded threshold. + The module index not available." + ::= { cpqSiMemModuleEntry 11 } + + cpqSiMemModuleHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the memory module. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSiMemModuleEntry 12 } + + + cpqSiMemModuleFrequency OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory module frequency in MHz. The value zero (0) will + be given if the module frequency cannot be determined." + ::= { cpqSiMemModuleEntry 13 } + + cpqSiMemModuleCellTablePtr OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS optional + DESCRIPTION + "Index for the cell in cpqSeCellTable where the memory board is + installed." + ::= { cpqSiMemModuleEntry 14 } + + cpqSiMemModuleCellStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + deconfigured(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This provides the current status for this memory module. + + The following status values are supported: + + other(1): + The memory module status is not available + + ok(2): + The memory module is active + + deconfigured(3): + The memory module is not ready" + ::= { cpqSiMemModuleEntry 15 } + + + cpqSiMemModulePartNoMfgr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The memory module's manufacturer's part number. + + This field will be a null (size 0) string if the manufacturer + part number is not available." + ::= { cpqSiMemModuleEntry 16 } + + cpqSiMemModuleSerialNoMfgr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The memory module's manufacturer's serial number. + + This field will be a null (size 0) string if the manufacturer + serial number is not available." + ::= { cpqSiMemModuleEntry 17 } + +-- **************************************************************************** +-- System Information System Board Group +-- ===================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) +-- +-- +-- **************************************************************************** + + cpqSiSystemId OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The System ID. + + This value indicates the system ID of the system board + in this system. This ID replaces the product ID used in + older machines (cpqSiProductId). A value of 7Eh for the + cpqSiProductId indicates that the cpqSiSystemId should be + used to identify the system. A value of zero (0) + indicates that the system ID function is not supported on this + machine. In this case, the cpqSiProductId should be used to + identify the system." + ::= { cpqSiSystemBoard 6 } + + cpqSiSystemCpuId OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The System ID : CPU Component. + + This value indicates the CPU type of the system board + in this system. A value of zero (0) indicates that the CPU + type cannot be determined." + ::= { cpqSiSystemBoard 7 } + + cpqSiFlashRomSupport OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + supported(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if this system supports flash upgradable + system ROM." + ::= { cpqSiSystemBoard 8 } + + cpqSiQuickTestRomDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the date of the current quick test ROM + image. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if quick test ROM is not + present. The hour, minute, and second field will be set + to zero (0) if they are not relevant. The year field is set + with the most significant octet first." + ::= { cpqSiSystemBoard 9 } + + cpqSiReboot OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + available(2), + defaultOnlyAvailable(3), + rebootToCpqUtils(2693), + rebootToDefault(8115), + autoShutdown(9037) + } + ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object may contain the following values: + notAvailable(1) + the system does not support the reboot functionality. + Setting this object to notAvailable(1) has no effect. + + available(2) + the system supports the both reboot to functionalities. + Setting this object to available(2) has no effect. + + defaultOnlyAvailable(3) + the system supports the only the default reboot functionality. + Setting this object to available(3) has no effect. + + rebootToCpqUtils(2693) + the system will reboot to the System Utilities if + the reboot functionality is available. If possible, + the agent will attempt to gracefully shutdown the + operating system before performing the reboot. + If this functionality is unavailable on this system + then all sets will have no effect. + + rebootToDefault(8115) + the system will reboot and allow the default boot + process to occur if the reboot functionality is + available. If possible, the agent will attempt to + gracefully shutdown the operating system before + performing the reboot. If this functionality is + unavailable on this system then all sets will have + no effect. + + autoShutdown(9037) + If possible, the agent will attempt to gracefully + shutdown the operating system. The agent will not + preform a reboot. + + " + + ::= { cpqSiSystemBoard 10 } + + +-- **************************************************************************** +-- System Information Processor Microcode Patch Table +-- ================================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) +-- cpqSiProcMicroPatchTable (1.3.6.1.4.1.232.2.2.4.11) +-- cpqSiProcMicroPatchEntry (1.3.6.1.4.1.232.2.2.4.11.1) +-- +-- **************************************************************************** + + cpqSiProcMicroPatchTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiProcMicroPatchEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table lists the set of processor microcode patches that + the system ROM contains. During post, the ROM will apply the + appropriate patches to the CPU microcode. Scan this table to + ensure that a patch is being applied to a processor." + ::= { cpqSiSystemBoard 11 } + + cpqSiProcMicroPatchEntry OBJECT-TYPE + SYNTAX CpqSiProcMicroPatchEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry describing one microcode patch contained in the system + ROM." + INDEX { cpqSiProcMicroPatchIndex } + ::= { cpqSiProcMicroPatchTable 1 } + + CpqSiProcMicroPatchEntry ::= SEQUENCE { + cpqSiProcMicroPatchIndex INTEGER, + cpqSiProcMicroPatchId INTEGER, + cpqSiProcMicroPatchDate OCTET STRING, + cpqSiProcMicroPatchFamily OCTET STRING } + + cpqSiProcMicroPatchIndex OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index into the microcode patch table." + ::= { cpqSiProcMicroPatchEntry 1 } + + cpqSiProcMicroPatchId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of this particular CPU microcode patch." + ::= { cpqSiProcMicroPatchEntry 2 } + + cpqSiProcMicroPatchDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the date of this CPU microcode patch. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + NOTE: Year is stored in packed BCD. The most significant + part is in the second octet. For example: + 1995 would be stored as 0x95 0x19. + + The hour, minute, and second field will be set to zero (0) + if they are not relevant. The year field is set with the + most significant octet first." + ::= { cpqSiProcMicroPatchEntry 3 } + + cpqSiProcMicroPatchFamily OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (3)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The valid family/model/step of the processor that this CPU + microcode patch applies to. + + field octets contents range + ===== ====== ======= ===== + 1 1 CPU Step 0..255 + 2 2 CPU Model 0..255 + 3 3 CPU Family 0..255 " + ::= { cpqSiProcMicroPatchEntry 4 } + + +-- **************************************************************************** +-- System Information System Board Group +-- ===================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) +-- +-- +-- **************************************************************************** + + cpqSiPowerMgmtStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of power management." + ::= { cpqSiSystemBoard 12 } + + + cpqSiRebootFlags OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Reboot Flags. + + This is a collection of flags used to indicate the re-boot + options available. This integer is a bitmap, with each bit + indicating the availability of an option. If the bit is set + to 1, the option is available; otherwise it is not. Multiple + options are allowed. + + NOTE: bit 31 is the most significant bit, bit 0 is the least + significant. + + + Status This is a collection of flags. Each bit has the + following meaning when it is on (1): + + Bit 31: Execute Set + Bit 30-6: RESERVED + Bit 5: Boot to ROM Based Setup + Bit 4: RESERVED + Bit 3: Boot to OS + Bit 2: Boot to Utils + Bit 1: Warm Boot + Bit 0: Cold Boot" + + + + ::= { cpqSiSystemBoard 13 } + + cpqSiMemErrorIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Placeholder for memory module number for ECC traps. + Represents the number of the memory module for which an ECC status + change has occurred. Set to 65535 if module number not available." + ::= { cpqSiSystemBoard 14 } + + cpqSiMemECCCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current condition of the correctable memory + errors for the entire memory. + + The following status values are supported: + + other(1) : + ECC is not supported. + + ok(2) : + The correctable error count is below threshold. + + degraded(3) : + The correctable error count has exceeded threshold." + + ::= { cpqSiSystemBoard 15 } + + cpqSiMemConfigChangeData OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..383)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Text string for the memory configuration change trap." + ::= { cpqSiSystemBoard 16 } + + cpqSiServerSystemId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A Server System ID. + + This value is used to uniquely identify systems via a unique + ID on systems that do not support the EISA bus." + ::= { cpqSiSystemBoard 17 } + + cpqSiPowerScheme OBJECT-TYPE + SYNTAX INTEGER { + unsupported(1), + other(2), + power-saver(3), + balanced(4), + high-performance(5), + user-defined(6) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The current active power plan or power scheme of the system." + ::= { cpqSiSystemBoard 18 } + + cpqSiPowerSchemeName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The name of current active power plan or power scheme of the + system. When cpqSiPowerScheme has a value of user-defined(6), the + user defined name can be populated here." + ::= { cpqSiSystemBoard 19 } + + cpqSiCurrentPerformanceStatePointer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "Pointer to cpqSiPerfStateIndex in cpqSiPerfStateTable to indicate the current performance state of the system." + ::= { cpqSiSystemBoard 20 } + + cpqSiMinPerformanceState OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "The slowest performance state by the selected power state policy." + ::= { cpqSiSystemBoard 21 } + + cpqSiMaxPerformanceState OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "The fastest performance state supported by the selected power state policy." + ::= { cpqSiSystemBoard 22 } + +-- **************************************************************************** +-- Performance State Table +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBoard Group (1.3.6.1.4.1.232.2.2.4) +-- cpqSiPerfStateTable (1.3.6.1.4.1.232.2.2.4.23) +-- cpqSiPerfStateEntry (1.3.6.1.4.1.232.2.2.4.23.1) +-- +-- **************************************************************************** + + cpqSiPerfStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiPerfStateEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A table of supported performance states of the system." + ::= { cpqSiSystemBoard 23 } + + cpqSiPerfStateEntry OBJECT-TYPE + SYNTAX CpqSiPerfStateEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "An entry describing a supported performance state of the system." + INDEX { cpqSiPerfStateIndex } + ::= { cpqSiPerfStateTable 1 } + + CpqSiPerfStateEntry ::= SEQUENCE { + cpqSiPerfStateIndex INTEGER, + cpqSiPerfState INTEGER, + cpqSiPerfStateCpuFrequency INTEGER, + cpqSiPerfStateCpuPower INTEGER + } + + cpqSiPerfStateIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "Index into the performance state table. cpqSiCurrentPerformanceStatePointer should point to one of these values." + ::= { cpqSiPerfStateEntry 1 } + + cpqSiPerfState OBJECT-TYPE + SYNTAX INTEGER (0.. 65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "Performance state number. A unique number assigned to a performance state instance." + ::= { cpqSiPerfStateEntry 2 } + + cpqSiPerfStateCpuFrequency OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS optional + DESCRIPTION + "The processor frequency in megahertz for this performance state instance." + ::= { cpqSiPerfStateEntry 3 } + + cpqSiPerfStateCpuPower OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS optional + DESCRIPTION + "The processor power setting in milliwatts for this performance state instance." + ::= { cpqSiPerfStateEntry 4 } + + cpqSiTPMmodule OBJECT-TYPE + SYNTAX INTEGER { + other(1), + absent(2), + presentEnabled (3), + presentDisabled (4) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This field will be populated if TPM module is present in the system board. + other(1) + No record of TPM exist. + absent(2) + TPM module is not present in the system. + presentEnabled(3) + TPM module is present in the system and currently enabled. + presentDisabled(4) + TPM module is present in the system and currently not enabled." + ::= { cpqSiSystemBoard 24 } + +-- **************************************************************************** +-- System Information Board Revision Group +-- ======================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) +-- +-- The cpqSiBoardRev group describes the board revision information. +-- +-- Implementation of the cpqSiBoardRev group is mandatory for all +-- agents that support the System Information MIB in a system that +-- supports the board revision feature. +-- +-- **************************************************************************** + + cpqSiCurRevDate OBJECT-TYPE + SYNTAX DisplayString (SIZE (8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current board revision configuration date in MM/DD/YY + format. This is the date that the EISA Configuration Utility + was used to define the current configuration. This value will + contain 'N/A' if this system does not support this feature." + ::= { cpqSiBoardRev 1 } + + cpqSiPrevRevDate OBJECT-TYPE + SYNTAX DisplayString (SIZE (8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The previous board revision configuration date in MM/DD/YY + format. This is the date that the EISA Configuration Utility + was used to define the previous configuration. This value will + contain 'N/A' if this system does not support this feature." + ::= { cpqSiBoardRev 2 } + +-- **************************************************************************** +-- System Information Board Revision Table +-- ======================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) +-- cpqSiBoardRevTable (1.3.6.1.4.1.232.2.2.5.3) +-- +-- **************************************************************************** + + cpqSiBoardRevTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiBoardRevEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of board revision descriptions." + ::= { cpqSiBoardRev 3 } + + cpqSiBoardRevEntry OBJECT-TYPE + SYNTAX CpqSiBoardRevEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A board revision description." + INDEX { cpqSiBoardRevSlotIndex, cpqSiBoardRevIndex } + ::= { cpqSiBoardRevTable 1 } + + CpqSiBoardRevEntry ::= SEQUENCE { + cpqSiBoardRevSlotIndex INTEGER, + cpqSiBoardRevIndex INTEGER, + cpqSiBoardRevId DisplayString, + cpqSiBoardRevCur DisplayString, + cpqSiBoardRevPrev DisplayString, + cpqSiBoardRevHwLocation DisplayString + } + + cpqSiBoardRevSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot in which the board described in this entry resides. + Zero (0) indicates the system board." + ::= { cpqSiBoardRevEntry 1 } + + cpqSiBoardRevIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely specifies which board in a specific slot + is described in this entry. Zero (0) indicates the main board + in this slot. Any other number indicates a daughter board or a + component of the main board." + ::= { cpqSiBoardRevEntry 2 } + + cpqSiBoardRevId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the board type. The defined types are: + + Type + ============== + System Board + Processor n (n = the processor number) + Memory n (n = the memory board number) + Slot n (n = the slot the board occupies) + + Other types may be defined at a later date." + ::= { cpqSiBoardRevEntry 3 } + + cpqSiBoardRevCur OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current revision for the board described in this entry. + This value will be N/A if there is no current revision + information." + ::= { cpqSiBoardRevEntry 4 } + + cpqSiBoardRevPrev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision for the board described in this entry prior to the + current configuration. This value will be N/A if there is no + previous revision information." + ::= { cpqSiBoardRevEntry 5 } + + cpqSiBoardRevHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the board. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSiBoardRevEntry 6 } + +-- **************************************************************************** +-- System Information Firmware Revision Table +-- ========================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) +-- cpqSiFirmwareRevTable (1.3.6.1.4.1.232.2.2.5.4) +-- +-- **************************************************************************** + + cpqSiFirmwareRevTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiFirmwareRevEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of firmware revision descriptions." + ::= { cpqSiBoardRev 4 } + + cpqSiFirmwareRevEntry OBJECT-TYPE + SYNTAX CpqSiFirmwareRevEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A firmware revision description." + INDEX { cpqSiFirmwareRevIndex } + ::= { cpqSiFirmwareRevTable 1 } + + CpqSiFirmwareRevEntry ::= SEQUENCE { + cpqSiFirmwareRevIndex INTEGER, + cpqSiFirmwareRevDesc DisplayString, + cpqSiFirmwareRevString DisplayString, + cpqSiFirmwareRevCellTablePtr INTEGER, + cpqSiFirmwareLocation DisplayString, + cpqSiFirmwareStatus INTEGER + } + + cpqSiFirmwareRevIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Locally-unique index for this entry." + ::= { cpqSiFirmwareRevEntry 1 } + + cpqSiFirmwareRevDesc OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description, e.g. SRM console, ARC console, System BIOS, etc." + ::= { cpqSiFirmwareRevEntry 2 } + + cpqSiFirmwareRevString OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Version number, possibly of the form Vx.y or Vx.y-z." + ::= { cpqSiFirmwareRevEntry 3 } + + cpqSiFirmwareRevCellTablePtr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Index for the cell in cpqSeCellTable where this firmware is located" + ::= { cpqSiFirmwareRevEntry 4 } + + cpqSiFirmwareLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "Description of which board the firmware is located in." + ::= { cpqSiFirmwareRevEntry 5 } + + cpqSiFirmwareStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + active(2), + inactive(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The current status for this firmware." + ::= { cpqSiFirmwareRevEntry 6 } + +-- **************************************************************************** +-- System Information Firmware Configuration Table +-- =============================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiBoardRev Group (1.3.6.1.4.1.232.2.2.5) +-- cpqSiFirmwareCfgTable (1.3.6.1.4.1.232.2.2.5.5) +-- +-- **************************************************************************** + + cpqSiFirmwareCfgTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiFirmwareCfgEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of soft switches and symbols maintained by the + firmware. May be operating system and/or option-specific + and will certainly be system-specific. This list is + intended to be easily extensible and support arbitrary + datatypes. It includes such switches as powerup options, + default dump device, etc. + Note - the string comparison for svrFwSymbolName is case + insensitive." + ::= { cpqSiBoardRev 5 } + + cpqSiFirmwareCfgEntry OBJECT-TYPE + SYNTAX CpqSiFirmwareCfgEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry represents one variable or symbol maintained by + or stored by some instance of firmware in the system." + INDEX { cpqSiFirmwareCfgName } + ::= { cpqSiFirmwareCfgTable 1 } + + CpqSiFirmwareCfgEntry ::= SEQUENCE { + cpqSiFirmwareCfgName DisplayString, + cpqSiFirmwareCfgValue DisplayString + } + + cpqSiFirmwareCfgName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware configuration symbol name as visible from the + console." + ::= { cpqSiFirmwareCfgEntry 1 } + + cpqSiFirmwareCfgValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware configuration symbol value. Null if none + or unknown." + ::= { cpqSiFirmwareCfgEntry 2 } + + +-- **************************************************************************** +-- System Information Ups Shutdown Group +-- ===================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiRackServer Group (1.3.6.1.4.1.232.2.2.6) +-- +-- The cpqSiRackServer group describes this system's role in a rack +-- family. +-- +-- Implementation of the cpqSiRackServer group is mandatory for all +-- agents that support the System Information MIB in a system that +-- supports Rack Server features. +-- +-- **************************************************************************** + + cpqSiRackServerShutdownRole OBJECT-TYPE + SYNTAX INTEGER { + other(1), + master(2), + slave(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This entry describes this system's role in a rack-mounted + uninterruptible power supply family. The master both + communicates with the UPS and derives its power from the + UPS. The slave derives its power from the UPS, but does + not communicate with it." + ::= { cpqSiRackServer 1 } + + cpqSiRackServerMasterName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..48)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This entry describes the name of the master server in a + rack-mounted uninterruptible power supply family. A slave + system would communicate with this server to derive UPS + status." + ::= { cpqSiRackServer 2 } + + +-- **************************************************************************** +-- System Information Video Group +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiVideo Group (1.3.6.1.4.1.232.2.2.7) +-- +-- The Video group describes the manageable video displays that are +-- attached to the system. +-- +-- Implementation of the video group is mandatory for all agents that +-- support the System Information MIB when a manageable video display +-- is in the system. +-- +-- **************************************************************************** + + cpqSiVideoEdidRaw OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (128)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The raw value returned from the video EDID function." + ::= { cpqSiVideo 1 } + + cpqSiVideoDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The manufacturer and model description of the video display." + ::= { cpqSiVideo 2 } + + cpqSiVideoSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The serial number of the video display." + ::= { cpqSiVideo 3 } + + cpqSiVideoManufactureDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The date of manufacture of the video display in the following + format: + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + This field will be set to year = 0 if the agent cannot provide + the date. The date information that is given resolves to a year + and week, so the hour, minute, and second field will be set to 0, + the month and day fields will give the monday of the week of + manufacture." + ::= { cpqSiVideo 4 } + + cpqSiVideoHeight OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum image height of the video display in centimeters" + ::= { cpqSiVideo 5 } + + cpqSiVideoWidth OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum image width of the video display in centimeters" + ::= { cpqSiVideo 6 } + + + cpqSiVideoMaxHorPixel OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of horizontal pixels in the highest resolution video + mode supported." + ::= { cpqSiVideo 7 } + + + cpqSiVideoMaxVertPixel OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of vertical pixels in the highest resolution video + mode supported." + ::= { cpqSiVideo 8 } + + + cpqSiVideoMaxRefreshRate OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The video refresh rate in Hz of the highest resolution video + mode supported." + ::= { cpqSiVideo 9 } + +-- **************************************************************************** +-- System Information Monitor Group +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiMonitor Group (1.3.6.1.4.1.232.2.2.8) +-- +-- The Monitor group describes all manageable video displays +-- that are attached to the system. +-- +-- Implementation of the monitor group is mandatory for all agents that +-- support the Compaq System Information MIB when a manageable +-- video display is in the system. +-- +-- **************************************************************************** + + cpqSiMonitorOverallCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the system's + monitor(s). + + The following conditions are supported: + + other(1) + The monitor does not support fault reporting or condition is + unknown. + + ok(2) + The monitor is operating OK. + + degraded(3) + The monitor has detected a fault. The monitor is still useable + but action should be taken to return the monitor to ok. + + failed(4) + The monitor has detected a fault. The monitor will not + be useable. Action should be taken to replace the monitor." + ::= { cpqSiMonitor 1 } + + +-- **************************************************************************** +-- System Information Monitor Group +-- ================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiMonitor Group (1.3.6.1.4.1.232.2.2.8) +-- cpqSiMonitorTable (1.3.6.1.4.1.232.2.2.8.2) +-- cpqSiMonitorEntry (1.3.6.1.4.1.232.2.2.8.2.1) +-- +-- The Monitor Table describes all manageable video displays +-- that are attached to the system. +-- +-- **************************************************************************** + + cpqSiMonitorTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiMonitorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of all video monitor descriptions connected to this + system." + ::= { cpqSiMonitor 2 } + + cpqSiMonitorEntry OBJECT-TYPE + SYNTAX CpqSiMonitorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A video monitor description." + INDEX { cpqSiMonitorIndex } + ::= { cpqSiMonitorTable 1 } + + CpqSiMonitorEntry ::= SEQUENCE { + cpqSiMonitorIndex INTEGER, + cpqSiMonitorEdidRaw OCTET STRING, + cpqSiMonitorDesc DisplayString, + cpqSiMonitorSerialNumber DisplayString, + cpqSiMonitorManufactureDate OCTET STRING, + cpqSiMonitorHeight INTEGER, + cpqSiMonitorWidth INTEGER, + cpqSiMonitorMaxHorPixel INTEGER, + cpqSiMonitorMaxVertPixel INTEGER, + cpqSiMonitorMaxRefreshRate INTEGER, + cpqSiMonitorManufacturer DisplayString, + cpqSiMonitorThermalCondition INTEGER, + cpqSiMonitorOperationalCondition INTEGER, + cpqSiMonitorStatus INTEGER + } + + cpqSiMonitorIndex OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index for each video display connected to the system." + + ::= { cpqSiMonitorEntry 1 } + + cpqSiMonitorEdidRaw OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The raw value returned from the video EDID function." + ::= { cpqSiMonitorEntry 2 } + + cpqSiMonitorDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The manufacturer and model description of the video display." + ::= { cpqSiMonitorEntry 3 } + + cpqSiMonitorSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The serial number of the video display." + ::= { cpqSiMonitorEntry 4 } + + cpqSiMonitorManufactureDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date of manufacture of the video display in the following + format: + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + This field will be set to year = 0 if the agent cannot provide + the date. The date information that is given resolves to a year + and week, so the hour, minute, and second field will be set to 0, + the month and day fields will give the monday of the week of + manufacture." + ::= { cpqSiMonitorEntry 5 } + + cpqSiMonitorHeight OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum image height of the video display in centimeters" + ::= { cpqSiMonitorEntry 6} + + cpqSiMonitorWidth OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum image width of the video display in centimeters" + ::= { cpqSiMonitorEntry 7 } + + + cpqSiMonitorMaxHorPixel OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of horizontal pixels in the highest resolution video + mode supported." + ::= { cpqSiMonitorEntry 8 } + + cpqSiMonitorMaxVertPixel OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of vertical pixels in the highest resolution video mode + supported." + ::= { cpqSiMonitorEntry 9 } + + cpqSiMonitorMaxRefreshRate OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The video refresh rate in Hz of the highest resolution video mode + supported." + ::= { cpqSiMonitorEntry 10 } + + cpqSiMonitorManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The manufacturer of the video display." + ::= { cpqSiMonitorEntry 11 } + + cpqSiMonitorThermalCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the condition of the monitor's internal temperature. + + This value will be one of the following: + + other(1) + Monitor thermal fault reporting is not supported by this monitor + or the Insight Agent does not recognize the status. You may + need to upgrade your software. + + ok(2) + The internal temperature is within normal limits. + + degraded(3) + The internal temperature is outside normal operating range." + ::= { cpqSiMonitorEntry 12 } + + cpqSiMonitorOperationalCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the condition of the monitor's operational features. + + This condition value will be one of the following: + + other(1) + Monitor operational fault reporting is not supported by this + monitor or the Insight Agent does not recognize the status. + You may need to upgrade your software. + + ok(2) + The monitor is operating within normal limits. + + degraded(3) + The monitor is not functioning within normal operating limits. + At least one of the operational features has become degraded. + + failed(4) + The monitor is not functioning within normal operating limits. + At least one of the operational features has failed causing the + monitor to not be usable. The monitor should be replaced." + ::= { cpqSiMonitorEntry 13 } + + cpqSiMonitorStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + ok(3), + thermalDegraded(4), + operationalFailure(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the status of the monitor's fault reporting features. + + This status value will be one of the following: + + other(1) + Monitor fault reporting is not supported by this monitor or the + Insight Agent does not recognize the status. You may need to + upgrade your software. + + unknown(2) + The monitor status is unknown because the monitor is + either in power saving mode or it has been turned off. + + ok(3) + The monitor is operating within normal limits. + + thermalDegraded(4) + The monitor's internal temperature is not functioning within + normal operating limits. + + operationalFailure(5) + The monitor is not functioning within normal operating limits. + At least one of the operational features has failed. + The monitor should be replaced." + + ::= { cpqSiMonitorEntry 14 } + + +-- **************************************************************************** +-- System Information Hot Plug Slot Group +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiHotPlugSlot Group (1.3.6.1.4.1.232.2.2.9) +-- +-- The cpqSiHotPlugSlot group describes the System Information Hot Plug +-- slot information. +-- +-- Implementation of the cpqSiHotPlugSlot group is mandatory for all +-- agents that support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiHotPlugSlotSupported OBJECT-TYPE + SYNTAX INTEGER { + other(1), + notSupported(2), + supported(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies if this system supports the Hot + Pluggable Slot feature." + ::= { cpqSiHotPlugSlot 1 } + + cpqSiHotPlugSlotCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of the Hot Plug + Slot feature. + + The Hot Plug condition is set as follows: + + other(1) + When Hot Plug Slots are not supported or condition is unknown. + + ok(2) + If there are no hot plug slots with a condition of degraded + or failed. + + degraded(3) + If there are degraded slot entries but none failed. + + failed(4) + If there are failed slot entries." + ::= { cpqSiHotPlugSlot 2 } + + cpqSiHotPlugSlotChangeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value will be incremented each time a hot plug event + occurs resulting in a change in the hot plug slot table." + ::= { cpqSiHotPlugSlot 3 } + + +-- **************************************************************************** +-- System Information Hot Plug Slot Table +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiHotPlugSlot Group (1.3.6.1.4.1.232.2.2.9) +-- cpqSiHotPlugSlotTable (1.3.6.1.4.1.232.2.2.9.4) +-- +-- The cpqSiHotPlugSlot group describes the manageable Hot Plug +-- Slots in the system. This table will be missing if the system does +-- not support hot plug slots. +-- +-- **************************************************************************** + + cpqSiHotPlugSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiHotPlugSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of Hot Plug Slot information entries." + ::= { cpqSiHotPlugSlot 4 } + + cpqSiHotPlugSlotEntry OBJECT-TYPE + SYNTAX CpqSiHotPlugSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a Hot Plug Slot." + INDEX { cpqSiHotPlugSlotChassis, cpqSiHotPlugSlotIndex } + ::= { cpqSiHotPlugSlotTable 1 } + + CpqSiHotPlugSlotEntry ::= SEQUENCE { + cpqSiHotPlugSlotChassis INTEGER, + cpqSiHotPlugSlotIndex INTEGER, + cpqSiHotPlugSlotBoardPresent INTEGER, + cpqSiHotPlugSlotPowerState INTEGER, + cpqSiHotPlugSlotBoardCondition INTEGER, + cpqSiHotPlugSlotErrorStatus INTEGER, + cpqSiHotPlugSlotHwLocation DisplayString + } + + cpqSiHotPlugSlotChassis OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Chassis where this hot plug slot resides." + ::= { cpqSiHotPlugSlotEntry 1 } + + cpqSiHotPlugSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The slot within the chassis for this hot plug slot." + ::= { cpqSiHotPlugSlotEntry 2 } + + cpqSiHotPlugSlotBoardPresent OBJECT-TYPE + SYNTAX INTEGER { + other(1), + present(2), + absent(3), + presentButSuspended(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates whether a board is present(2) in or + absent(3) from the slot. A value of other(1) indicates + the information could not be obtained." + ::= { cpqSiHotPlugSlotEntry 3 } + + cpqSiHotPlugSlotPowerState OBJECT-TYPE + SYNTAX INTEGER { + other(1), + powerOn(2), + powerOff(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value is set to powerOn(2) when power is being supplied + to the slot and powerOff(3) when power is not being supplied. + A value of other(1) indicates the information could not be + obtained." + ::= { cpqSiHotPlugSlotEntry 4 } + + cpqSiHotPlugSlotBoardCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the condition of the hot plug slot. + + The hot plug condition is set as follows: + + other(1) + When the condition could not be determined. + + ok(2) + The slot is powered up and operating normally. + + degraded(3) + If the board in the slot is not fully functioning. + + failed(4) + If the slot is failed for any reason. See the status code + for more information on the failure." + ::= { cpqSiHotPlugSlotEntry 5 } + + cpqSiHotPlugSlotErrorStatus OBJECT-TYPE + SYNTAX INTEGER { + noError(1), + generalError(2), + wrongRevision(3), + wrongBoard(4), + cannotConfig(5), + powerFault(6), + unexpectedPowerLoss(7), + wrongSpeed(8), + functionalFailure(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the status of the hot plug slot. + + The hot plug slot status is set as follows: + + noError(1) + The slot is operating normally. + + generalError(2) + A general error occurred. + + wrongRevision(3) + The revision of the replacement adapter was different from + the original adapter. + + wrongBoard(4) + The model of the replacement adapter was different from the + original adapter. + + cannotConfig(5) + The adapter could not be configured. + + powerFault(6) + A power fault occurred for the slot. + + unexpectedPowerLoss(7) + Power was unexpectedly lost from the slot. + + wrongSpeed(8) + The adapter cannot be run at the current bus speed. + + functionlFailure(9) + The adapter is not functioning correctly. This may + be caused by a cabling problem." + ::= { cpqSiHotPlugSlotEntry 6 } + + cpqSiHotPlugSlotHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the hot plug slot. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSiHotPlugSlotEntry 7 } + +-- **************************************************************************** +-- System Information System Battery Group +-- ======================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBattery Group (1.3.6.1.4.1.232.2.2.10) +-- +-- The cpqSiSystemBattery group describes information about the system +-- (portable) batteries that are used to power your system. These +-- are the rechargeable batteries. +-- +-- +-- Implementation of the cpqSiBattery group is mandatory for all +-- agents that support the System Information MIB. +-- +-- **************************************************************************** + + + cpqSiSystemBatteryOverallCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall condition of all of the + system batteries. + + The following conditions are supported: + + other(1) + The system does not use system batteries or the battery + condition is unknown. + + ok(2) + All System Batteries are operating OK. + + degraded(3) + One or more of the System Batteries has degraded. The + degraded battery will continue to function but should be + replaced. + + failed(4) + One of more of the System Batteries has failed. The failed + battery is no longer usable. Action should be taken to replace + the battery." + ::= { cpqSiSystemBattery 1 } + + +-- **************************************************************************** +-- System Information System Battery Group +-- ======================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiSystemBattery Group (1.3.6.1.4.1.232.2.2.10) +-- cpqSiSystemBatteryTable (1.3.6.1.4.1.232.2.2.10.2) +-- cpqSiSystemBatteryEntry (1.3.6.1.4.1.232.2.2.10.2.1) +-- +-- The System Battery Table describes asset, physical, and status +-- information about the portable batteries powering your system. +-- +-- **************************************************************************** + + cpqSiSysBatteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiSysBatteryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of System Batteries." + ::= { cpqSiSystemBattery 2 } + + cpqSiSysBatteryEntry OBJECT-TYPE + SYNTAX CpqSiSysBatteryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A system battery description." + INDEX { cpqSiSysBatteryIndex } + ::= { cpqSiSysBatteryTable 1 } + + CpqSiSysBatteryEntry ::= SEQUENCE { + cpqSiSysBatteryIndex INTEGER, + cpqSiSysBatteryModel DisplayString, + cpqSiSysBatterySerialNum DisplayString, + cpqSiSysBatteryAssetTag DisplayString, + cpqSiSysBatteryManufacturer DisplayString, + cpqSiSysBatteryDate OCTET STRING, + cpqSiSysBatterySmartVersion DisplayString, + cpqSiSysBatteryCondition INTEGER, + cpqSiSysBatteryStatus INTEGER, + cpqSiSysBatteryChemistry INTEGER, + cpqSiSysBatteryRemainingCap INTEGER, + cpqSiSysBatteryFirmwareRevision INTEGER, + cpqSiSysBatteryHardwareRevision INTEGER, + cpqSiSysBatteryFullCap INTEGER, + cpqSiSysBatteryDesignCap INTEGER, + cpqSiSysBatteryHwLocation DisplayString + } + + cpqSiSysBatteryIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index for this battery entry." + ::= { cpqSiSysBatteryEntry 1 } + + + cpqSiSysBatteryModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The model name for this battery." + ::= { cpqSiSysBatteryEntry 2 } + + cpqSiSysBatterySerialNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The serial number for this battery." + ::= { cpqSiSysBatteryEntry 3 } + + cpqSiSysBatteryAssetTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the customer changeable battery identifier that is set + to this system battery's serial number at the time of + manufacture. + + The string will be empty if the battery does support + this function." + ::= { cpqSiSysBatteryEntry 4 } + + cpqSiSysBatteryManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's manufacturer's name. + + The string will be empty if the battery does support + this function." + ::= { cpqSiSysBatteryEntry 5 } + + + cpqSiSysBatteryDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's manufacture date. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + This field will be set to year = 0 if the agent cannot provide + the module date. The hour, minute, and second field will be set + to zero (0) if they are not relevant. The year field is set + with the most significant octet first. + + The string will be empty if the battery does support + this function." + ::= { cpqSiSysBatteryEntry 6 } + + cpqSiSysBatterySmartVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Smart Battery Data Specification version number supported by this + battery. + + The string will be empty if the system battery does support + this function." + ::= { cpqSiSysBatteryEntry 7 } + + cpqSiSysBatteryCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current condition of this system battery. + + The following status values are supported: + + other(1) + The battery does not support condition monitoring or + the Insight Agent cannot determine condition. + + ok(2) + The battery is operating normally. No user action is + required. + + degraded(3) + The battery is degraded. The battery is still usable + but should be replaced. + + failed(4) + The battery has failed. The battery is no longer + usable and should be replaced soon." + ::= { cpqSiSysBatteryEntry 8 } + + cpqSiSysBatteryStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + capacityDegraded(3), + chargeFault(4), + batteryFailure(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This provides the current status of the battery. + + The following status values are supported: + + other(1): + This battery does not support status reporting. + + ok(2): + The battery is operating ok. + + User Action: No action required. + + capacityDegraded(3): + Significant battery degradation has occurred. + The battery can no longer be fully recharged. + + User Action: + If using multiple batteries, run the Power + Conservation Utility to identify the battery + location. Contact your System Administrator or + Authorized Reseller to order a replacement + battery. + + chargeFault(4): + One or more batteries are not functioning properly. + + User Action: + Make sure all batteries are operating in the + recommended temperature range. Check for foreign + objects in the battery slots. Remove and reinsert all + batteries to resume normal battery operation. + Contact your System Administrator or Authorized + Reseller if you are still experiencing problems. + + batteryFailure(5): + The battery has failed and must be replaced. + + User Action: + Contact your System Administrator or Authorized + Reseller to order a replacement battery. Recycle your + old battery. For proper disposal information, refer + to the documentation that came with your computer." + + ::= { cpqSiSysBatteryEntry 9 } + + cpqSiSysBatteryChemistry OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + lead-Acid(3), + nickel-Cadmium(4), + nickel-Metal-Hydride(5), + lithium-Ion(6), + zinc-Air(7), + lithium-Polymer(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The chemistry of the battery." + + ::= { cpqSiSysBatteryEntry 10 } + + cpqSiSysBatteryRemainingCap OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a percentage of the battery's remaining capacity + from its design capacity. + + If this attribute is not supported, 65535 is returned." + ::= { cpqSiSysBatteryEntry 11 } + + cpqSiSysBatteryFirmwareRevision OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the revision level of the firmware on the battery. + + If this attribute is not supported, 255 is returned." + ::= { cpqSiSysBatteryEntry 12 } + + cpqSiSysBatteryHardwareRevision OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the revision level of the hardware on the battery. + + If this attribute is not supported, 255 is returned." + ::= { cpqSiSysBatteryEntry 13 } + + cpqSiSysBatteryFullCap OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the mWatt-Hours of the battery's Full capacity on + the current charge. + + If this attribute is not supported, 65535 is returned." + ::= { cpqSiSysBatteryEntry 14 } + + cpqSiSysBatteryDesignCap OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the mWatt-Hours of the battery's design capacity as + specified by the manufacturer. + + If this attribute is not supported, 65535 is returned." + ::= { cpqSiSysBatteryEntry 15 } + + cpqSiSysBatteryHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the battery. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSiSysBatteryEntry 16 } + + +-- **************************************************************************** +-- System Information Docking Station Group +-- ======================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiDockingStation Group (1.3.6.1.4.1.232.2.2.11) +-- +-- The cpqsiDockingStation group describes the asset information +-- about portable docking stations. +-- +-- +-- Implementation of the cpqSiDockingStation group is mandatory for all +-- agents that support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiDockingStationStatus OBJECT-TYPE + SYNTAX INTEGER { + notSupported(1), + docked(2), + undocked(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the connection of the computer + system to a docking station. + + The following connection states are supported: + + notSupported(1) + This system does not interface to a docking station. + + docked(2) + This system is connected to a docking station. + + undocked(3) + This system is not connect to a docking station." + ::= { cpqSiDockingStation 1} + + cpqSiDockingStationSerialNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The serial number of the docking station. + + The string will be empty if the docking station does not support a + serial or the system does not interface to a docking station." + ::= { cpqSiDockingStation 2 } + + cpqSiDockingStationModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The model name of the docking station. + + The string will be empty if the docking station does not report the + model name or the system does not interface to a docking station." + ::= { cpqSiDockingStation 3 } + + cpqSiDockingStationAssetTag OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a customer changeable identifier that is set to the docking + station serial number at the time of manufacture. + + The string will be empty if the docking station does not report an + asset tag or the system does not interface to a docking station." + ::= { cpqSiDockingStation 4} + +-- **************************************************************************** +-- System Information FRU Group +-- ============================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiFru Group (1.3.6.1.4.1.232.2.2.12) +-- +-- The cpqsiFru group describes the Field Replaceable Units in the +-- server system. +-- +-- +-- Implementation of the cpqSiFru group is mandatory for all +-- Server Agents that support the System Information MIB. +-- +-- **************************************************************************** + + cpqSiFruTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiFruEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Field Replaceable Units of system, providing + inventory and asset control information. This table is + referenced from logical hardware descriptions elsewhere in + the MIB." + ::= { cpqSiFru 1 } + + cpqSiFruEntry OBJECT-TYPE + SYNTAX CpqSiFruEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry represents a Field Replaceable Unit (FRU) of hardware." + INDEX { cpqSiFruIndex } + ::= { cpqSiFruTable 1 } + + CpqSiFruEntry ::= + SEQUENCE { + cpqSiFruIndex INTEGER, + cpqSiFruType INTEGER, + cpqSiFruDescr DisplayString, + cpqSiFruVendor DisplayString, + cpqSiFruPartNumber DisplayString, + cpqSiFruRevision DisplayString, + cpqSiFruFirmwareRevision DisplayString, + cpqSiFruSerialNumber DisplayString, + cpqSiFruAssetNo DisplayString, + cpqSiFruClass INTEGER, + cpqSiFruSlotNumber DisplayString, + cpqSiFruSubAssemblyNumber INTEGER, + cpqSiFruAssemblyNumber INTEGER, + cpqSiFruChassisNumber INTEGER, + cpqSiFruPositionNumber INTEGER, + cpqSiFruCabinetIDNumber INTEGER, + cpqSiFruSiteLocation INTEGER, + cpqSiFruDiagStatus INTEGER, + cpqSiFruExtendedDiagStatus INTEGER, + cpqSiFruCellTablePtr INTEGER, + cpqSiFruIOCTablePtr INTEGER, + cpqSiFruFileId DisplayString, + cpqSiFruScanRev DisplayString + } + + cpqSiFruIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A locally-unique index value." + ::= { cpqSiFruEntry 1 } + + cpqSiFruType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1) , + other(2) , + motherBoard(3) , + processor(4) , + memoryCard(5) , + memoryModule(6) , + peripheralDevice(7) , + systemBusBridge(8) , + powerSupply(9) , + chassis(10) , + fan(11) , + ioCard(12) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "General category of the type of FRU that this is." + ::= { cpqSiFruEntry 2 } + + cpqSiFruDescr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "More detailed description of FRU type, if known." + ::= { cpqSiFruEntry 3 } + + cpqSiFruVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Manufacturer name or ID." + ::= { cpqSiFruEntry 4 } + + cpqSiFruPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number by which this unit is orderable." + ::= { cpqSiFruEntry 5 } + + cpqSiFruRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Version number of this unit. If artwork level is available, it will + appear as 'Artwork: XXX' following FRU version portion." + ::= { cpqSiFruEntry 6 } + + cpqSiFruFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision of the firmware, if any. Otherwise null." + ::= { cpqSiFruEntry 7 } + + cpqSiFruSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The serial number of this unit's instance." + ::= { cpqSiFruEntry 8 } + + cpqSiFruAssetNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The asset number for this unit. This string may be limited." + ::= { cpqSiFruEntry 9 } + + cpqSiFruClass OBJECT-TYPE + SYNTAX INTEGER { + unknown(1) , + other(2) , + currentBoardInSlot(3) , + priorBoardInSlot(4) , + parentBoard(5) , + priorParentBoard(6) , + priorParentSystem(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Represents the status category of the unit." + ::= { cpqSiFruEntry 10 } + + cpqSiFruSlotNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Physical slot number of FRU." + ::= { cpqSiFruEntry 11 } + + cpqSiFruSubAssemblyNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Subassembly containing this FRU. From FRU V5.0." + ::= { cpqSiFruEntry 12 } + + cpqSiFruAssemblyNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Assembly containing this FRU. From FRU V5.0." + ::= { cpqSiFruEntry 13 } + + cpqSiFruChassisNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Chassis containing this FRU. From FRU V5.0." + ::= { cpqSiFruEntry 14 } + + cpqSiFruPositionNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Position in Chassis to help locate FRU. From FRU V5.0." + ::= { cpqSiFruEntry 15 } + + cpqSiFruCabinetIDNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cabinet number containing this FRU. From FRU V5.0." + ::= { cpqSiFruEntry 16 } + + cpqSiFruSiteLocation OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Site code for system containing this FRU. From FRU V5.0." + ::= { cpqSiFruEntry 17 } + + cpqSiFruDiagStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + degraded(3), + failed(4), + disabled(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Use system status values to describe current state of the + FRU." + ::= { cpqSiFruEntry 18 } + + cpqSiFruExtendedDiagStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Diagnostic Status value returned by Device Specific + diagnostics. Usually through a diagnostic status register + on the device. See product manual for bit descriptions." + ::= { cpqSiFruEntry 19 } + + cpqSiFruCellTablePtr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "Index for the cell in cpqSeCellTable where this FRU is physically located." + ::= { cpqSiFruEntry 20 } + + cpqSiFruIOCTablePtr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "Index for the I/O Chassis in cpqSeIOCTablePtr where this FRU is physically located" + ::= { cpqSiFruEntry 21 } + + cpqSiFruFileId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents the FRU file identifier" + ::= { cpqSiFruEntry 22 } + + cpqSiFruScanRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents FRU scan revision" + ::= { cpqSiFruEntry 23 } + +-- **************************************************************************** +-- System Information Rack and Enclosure Group +-- =========================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiRackEnclosure Group (1.3.6.1.4.1.232.2.2.13) +-- +-- The cpqSiRackEnclosure group indicates the availability of rack and/or +-- enclosure based systems. +-- +-- **************************************************************************** + + cpqSiRackEnclosureMgrTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSiRackEnclosureMgrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of possible rack and/or enclosure based systems." + ::= { cpqSiRackEnclosure 1 } + + cpqSiRackEnclosureMgrEntry OBJECT-TYPE + SYNTAX CpqSiRackEnclosureMgrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A entry for a rack and/or enclosure based system." + INDEX { cpqSiRackEnclosureMgrIndex } + ::= { cpqSiRackEnclosureMgrTable 1 } + + CpqSiRackEnclosureMgrEntry ::= + SEQUENCE { + cpqSiRackEnclosureMgrIndex INTEGER, + cpqSiRackEnclosureMgrType INTEGER, + cpqSiRackEnclosureMgrIpAddr DisplayString, + cpqSiRackEnclosureMgrWebLink DisplayString, + cpqSiRackEnclosureMgrCondition INTEGER, + cpqSiRackEnclosureMgrSerialNumber DisplayString, + cpqSiRackEnclosureMgrModel DisplayString, + cpqSiRackEnclosureMgrName DisplayString, + cpqSiRackEnclosureMgrFwRev DisplayString, + cpqSiRackEnclosureMgrProductID DisplayString, + cpqSiRackEnclosureMgrUUID DisplayString + } + + cpqSiRackEnclosureMgrIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A locally-unique index value." + ::= { cpqSiRackEnclosureMgrEntry 1 } + + cpqSiRackEnclosureMgrType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + noEnclosureManagement(2), + enclosureManagement(3), + onboardAdminManagement(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the type of enclosure management. + + other(1) + When the type not be determined. + + noEnclosureManagement(2) + The server is part of a rack/enclosure managed system, but there + is no dedicated enclosure manager. + + enclosureManagement(3) + The server is part of a rack/enclosure managed system with a + dedicated enclosure manager. + + onboardAdminManagement(4) + The server is part of a rack/enclosure managed system with a + onboard Administrator." + ::= { cpqSiRackEnclosureMgrEntry 2 } + + cpqSiRackEnclosureMgrIpAddr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address of the rack enclosure manager. + + The string will be empty if the enclosure does not report the + information or it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 3 } + + cpqSiRackEnclosureMgrWebLink OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The web link to the enclosure managers web based management + information for the enclosure. + + The string will be empty if the enclosure does not report the + information or it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 4 } + + cpqSiRackEnclosureMgrCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition of the Enclosure. For more detailed + status information, follow the cpqSiEnclosureMgrWebLink through + the Web Management Agent interface. + + other(1) + This is the default condition for systems when + cpqSiRackEnclosureMgrType has a value of + noEnclosureManagement(2). + + When cpqSiRackEnclosureMgrType has a value of + enclosureManagement(3), this indicates the status of the + enclosure manager could not be determined. + + ok(2) + The enclosure manager is in an ok state. Follow the + cpqSiRackEnclosureMgrWebLink link in the Web Management Agents + to manage the enclosure. + + degraded(3) + The enclosure manager is in a degraded state. Follow the + cpqSiRackEnclosureMgrWebLink link in the Web Management Agents + to manage the enclosure. + + failed(4) + The enclosure manager is in a failed state. Follow the + cpqSiRackEnclosureMgrWebLink link in the Web Management Agents + to manage the enclosure." + ::= { cpqSiRackEnclosureMgrEntry 5 } + + cpqSiRackEnclosureMgrSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The serial number of the enclosure. + + The string will be empty if the enclosure does not report the + information or it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 6 } + + cpqSiRackEnclosureMgrModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The model name of the enclosure. + The string will be empty if it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 7 } + + cpqSiRackEnclosureMgrName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The name of the enclosure. This name logically groups together the + Blade servers installed in the same enclosure and it is shared + with the other servers in the enclosure. + The string will be empty if it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 8 } + + cpqSiRackEnclosureMgrFwRev OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The Firmware revision of the Enclosure Manager/Onboard Administrator. + The string will be empty if it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 9 } + + cpqSiRackEnclosureMgrProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The Enclosure product identifier. The string will be empty + if it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 10 } + + cpqSiRackEnclosureMgrUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The Enclosure unique identifier. The string will be empty + if it could not be determined." + ::= { cpqSiRackEnclosureMgrEntry 11 } + +-- **************************************************************************** +-- System Information Server Blade Group +-- =========================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiServerBlade Group (1.3.6.1.4.1.232.2.2.14) +-- +-- The cpqsiServerBlade group describes the server Blade system. +-- +-- **************************************************************************** + + cpqSiServerBladeEnclosureBayNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This value specifies the enclosure bay number occupied by the blade. + In case of a blade occupying multiple bays, this will be the lowest + enclosure bay number of all the bay numbers occupied by this balde" + ::= { cpqSiServerBlade 1 } + + cpqSiServerBladeHeight OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + halfHeightBlade(2), + fullHeightBlade(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "Blade height is the Blade length. + + unknown(1) + This indicates it could not be determined. + + halfHeightBlade(2) + This indicates a half-height server Blade. + + fullHeightBlade(3) + This indicates a full-height server Blade." + + ::= { cpqSiServerBlade 2 } + + cpqSiServerBladeWidth OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + singleWide(2), + doubleWide(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "Width of the Blade in terms of Enclosure Bays. This pertain to the + Blade side that connects to the enclosure backplane." + ::= { cpqSiServerBlade 3 } + +-- **************************************************************************** +-- System Information Rack Group +-- =========================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiRack Group (1.3.6.1.4.1.232.2.2.15) +-- +-- The cpqSiRack group describes the rack details. +-- +-- **************************************************************************** + + cpqSiRackName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The rack name. This name is used to logically group together + enclosures in a rack and it is shared with other enclosures + in the rack. + The string will be empty if it could not be determined." + ::= { cpqSiRack 1 } + + cpqSiRackUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The rack unique identifier. The string will be empty + if it could be determined." + ::= { cpqSiRack 2 } + +-- **************************************************************************** +-- System Information MP Group +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSystemInfo Group (1.3.6.1.4.1.232.2) +-- cpqSiComponent Group (1.3.6.1.4.1.232.2.2) +-- cpqSiMP Group (1.3.6.1.4.1.232.2.2.16) +-- +-- The cpqSiMP group contains information about the Management Processor. +-- +-- **************************************************************************** + + cpqSiMPHostName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The host name of the Management Processor. + The string will be empty if it could not be determined." + ::= { cpqSiMP 1 } + + cpqSiMPHealthStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The health status of the Management Processor." + ::= { cpqSiMP 2 } + +-- **************************************************************************** +-- System Info MIB Trap Definitions +-- ================================ +-- +-- The SNMP trap messages must not be bigger than 484 octets (bytes). +-- +-- Trap support in an SNMP agent implementation is optional. An SNMP +-- agent implementation may support all, some, or none of the traps. +-- If traps are supported, The user should be provided with the option of +-- disabling traps. +-- ************************************************************************** + + cpqSiHoodRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "System hood is removed. + + The hood status has been set to removed. The + system's hood is not in a properly installed state. This + situation may result in improper cooling of the system due + to air flow changes caused by the missing hood. + + User Action: Replace the cover (hood), ensure the system's cover + is properly installed. Verify the system is in working order." + + --#TYPE "System hood is removed (2001)" + --#SUMMARY "Hood is removed from unit." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 2001 + + cpqSiMonitorConditionOK TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiMonitorIndex } + DESCRIPTION + "Fault reporting features have returned to within their normal + operating range for the monitor indicated by cpqSiMonitorIndex. + The monitor's condition has been set to OK. + + User Action: None." + + --#TYPE "Monitor Condition OK (2002)" + --#SUMMARY "The monitor's condition has been set to OK." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 2002 + + + cpqSiMonitorConditionDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiMonitorIndex } + DESCRIPTION + "A fault reporting feature has exceeded normal limits for + the monitor indicated by the cpqSiMonitorIndex. The monitor's + condition is degraded due to the internal temperature exceeding + normal operating limits. The monitor is still useable, but + action should be taken to return the condition to OK. + + User Action: Physically check for obstructions to air flow around + the monitor. Check the thermostat in the room that the system + occupies. Allow the monitor to cool by turning off the monitor + for 5 minutes then turn the monitor back on. After the monitor + cools, another alarm indicating an improving condition, such as + Monitor OK, will be issued." + + --#TYPE "Monitor Condition Degraded (2003)" + --#SUMMARY "The monitor's condition has been set to degraded." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 2003 + + cpqSiMonitorConditionFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiMonitorIndex } + DESCRIPTION + "A fault reporting feature has exceeded normal limits in the + monitor indicated by the cpqSiMonitorIndex. The monitor's + condition has been set to failed due to an operational feature + exceeding normal operating limits. The monitor will not be + useable and should be replaced. + + User Action: Make a note of the monitor model number and serial + number. Replace the monitor. + + Refer to the appropriate Maintenance and Service Guide for + detailed information on a component replacement." + + --#TYPE "Monitor Condition Failed (2004)" + --#SUMMARY "The monitor's condition has been set to failed." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 2004 + + cpqSiCorrMemErrStatusDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiMemErrorIndex } + DESCRIPTION + "Correctable memory error count has exceeded the threshold for the + memory module indicated by the 'cpqSiMemErrorIndex' variable. + The appropriate cpqSiMemModuleECCStatus has been set to degraded. + + User Action: For Desktops, the System Administrator should run + the F10 Diagnostics on this system and select RAM LONG TEST. If + it is determined that a module needs replacing, schedule + maintenance for the system and replace the failed memory module. + + Refer to the appropriate Maintenance and Service Guide for detailed + information on a component replacement." + + --#TYPE "Excessive Correctable Memory Errors (2005)" + --#SUMMARY "The Memory Module %d ECC status has been set to degraded." + --#ARGUMENTS {3} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 2005 + + cpqSiCorrMemErrStatusOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiMemErrorIndex } + DESCRIPTION + "Correctable memory error count is now below the threshold for the + memory module indicated by the 'cpqSiMemErrorIndex' variable. The + appropriate cpqSiMemModuleECCStatus has been set to ok. + + User Action: None." + + --#TYPE "Correctable Memory Errors Count OK (2006)" + --#SUMMARY "The Memory Module %d ECC status has been set to OK." + --#ARGUMENTS {3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 2006 + + cpqSiMemConfigChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiMemConfigChangeData } + DESCRIPTION + "A memory configuration change has occurred. CpqSiMemConfigChangeData + will indicate which memory modules slots have changed. + + User Action: You may want to verify a valid reason for a memory + configuration to have occurred. If system issuing the alert is + a Desktop running NT, the memory configuration change information + is also logged in the NT System Log." + + --#TYPE "Memory modules have changed (2007)" + --#SUMMARY "The system's memory configuration has changed." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 2007 + + cpqSiHotPlugSlotBoardRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiHotPlugSlotChassis, + cpqSiHotPlugSlotIndex } + DESCRIPTION + "Hot Plug Slot Board Removed. + + A Hot Plug Slot Board has been removed from the specified + chassis and slot. + + User Action: None." + + --#TYPE "Hot Plug Slot Board Removed (2008)" + --#SUMMARY "Hot Plug Slot Board Removed from Chassis %d, Slot %d." + --#ARGUMENTS {2, 3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 2008 + + cpqSiHotPlugSlotBoardInserted TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiHotPlugSlotChassis, + cpqSiHotPlugSlotIndex } + DESCRIPTION + "Hot Plug Slot Board Inserted. + + A Hot Plug Slot Board has been inserted into the specified + chassis and slot. + + User Action: None." + + --#TYPE "Hot Plug Slot Board Inserted (2009)" + --#SUMMARY "Hot Plug Slot Board Inserted into Chassis %d, Slot %d." + --#ARGUMENTS {2, 3} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 2009 + + cpqSiHotPlugSlotPowerUpFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiHotPlugSlotChassis, + cpqSiHotPlugSlotIndex, cpqSiHotPlugSlotErrorStatus } + DESCRIPTION + "Hot Plug Slot Board Failed Power-Up. + + A Hot Plug Slot Board has failed to power-up in the specified + chassis and slot. + + User Action: Insure the board and all cables are installed + correctly and the board type and revision are the same as + the replaced board." + + --#TYPE "Hot Plug Slot Board Failed (2010)" + --#SUMMARY "Hot Plug Slot Board Failed in Chassis %d, Slot %d, Error %d." + --#ARGUMENTS {2, 3, 4} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE FAILED + + ::= 2010 + + cpqSiSysBatteryFailure TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiSysBatteryIndex, + cpqSiSysBatterySerialNum } + DESCRIPTION + "The battery indicated by cpqSiSysBatteryIndex has failed + and must be replaced. + + User Action: Contact your System Administrator or + Authorized Reseller to order a replacement battery. + Recycle your old battery. For proper disposal information, + refer to the documentation that came with your computer." + + --#TYPE "Battery Failure (2011)" + --#SUMMARY "Battery %d has failed." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 2011 + + cpqSiSysBatteryChargingDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiSysBatteryIndex, + cpqSiSysBatterySerialNum } + DESCRIPTION + "Significant battery degradation has occurred with battery + indicated by cpqSiSysBatteryIndex. The battery can + no longer be fully recharged. + + User Action: If using multiple batteries, run + the Power Conservation Utility to identify the + battery location. Contact your System Administrator + or Authorized Reseller to order a replacement + battery." + + --#TYPE "Battery Charging Degradation (2012)" + --#SUMMARY "Battery %d has degraded charging capacity." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + ::= 2012 + + + cpqSiSysBatteryCalibrationError TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSiSysBatteryIndex, + cpqSiSysBatterySerialNum } + DESCRIPTION + "Calibration is needed with battery + indicated by cpqSiSysBatteryIndex. The battery can + not correctly indicate capacity. + + User Action: Run the Power Conservation Utility. Contact + your System Administrator or Authorized Reseller to + order a replacement battery." + + --#TYPE "Battery Calibration Error (2013)" + --#SUMMARY "Battery %d has calibration error." + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + ::= 2013 + +END diff --git a/pandora_console/attachment/mibs/CPQSTDEQ-MIB b/pandora_console/attachment/mibs/CPQSTDEQ-MIB new file mode 100644 index 0000000000..8f106ed5d3 --- /dev/null +++ b/pandora_console/attachment/mibs/CPQSTDEQ-MIB @@ -0,0 +1,4980 @@ +-- **************************************************************************** +-- +-- Standard PC equipment configuration +-- Management Information Base for SNMP Network Management +-- +-- +-- Copyright 1992,2003 Hewlett-Packard Development Company, L.P. +-- +-- Hewlett-Packard Company shall not be liable for technical or +-- editorial errors or omissions contained herein. The information in +-- this document is provided "as is" without warranty of any kind and +-- is subject to change without notice. The warranties for HP products +-- are set forth in the express limited warranty statements +-- accompanying such products. Nothing herein should be construed as +-- constituting an additional warranty. +-- +-- Confidential computer software. Valid license from HP required for +-- possession, use or copying. Consistent with FAR 12.211 and 12.212, +-- Commercial Computer Software, Computer Software Documentation, and +-- Technical Data for Commercial Items are licensed to the U.S. +-- Government under vendor's standard commercial license. +-- +-- Refer to the READMIB.RDM file for more information about the +-- organization of the information in the Compaq Enterprise. +-- +-- The Compaq Enterprise number is 232. +-- The ASN.1 prefix to, and including the Compaq Enterprise is: +-- 1.3.6.1.4.1.232 +-- +-- **************************************************************************** + +CPQSTDEQ-MIB DEFINITIONS ::= BEGIN + + IMPORTS + compaq FROM CPQHOST-MIB +-- enterprises FROM RFC1155-SMI + DisplayString FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + TRAP-TYPE FROM RFC-1215 + sysName FROM RFC1213-MIB + cpqHoTrapFlags FROM CPQHOST-MIB; + + +-- compaq OBJECT IDENTIFIER ::= { enterprises 232 } + cpqStdEquipment OBJECT IDENTIFIER ::= { compaq 1 } + cpqSeMibRev OBJECT IDENTIFIER ::= { cpqStdEquipment 1 } + cpqSeComponent OBJECT IDENTIFIER ::= { cpqStdEquipment 2 } + + cpqSeInterface OBJECT IDENTIFIER ::= { cpqSeComponent 1 } + cpqSeProcessor OBJECT IDENTIFIER ::= { cpqSeComponent 2 } + cpqSeMemory OBJECT IDENTIFIER ::= { cpqSeComponent 3 } + cpqSeIsaCmos OBJECT IDENTIFIER ::= { cpqSeComponent 4 } + cpqSeEisaNvram OBJECT IDENTIFIER ::= { cpqSeComponent 5 } + cpqSeRom OBJECT IDENTIFIER ::= { cpqSeComponent 6 } + cpqSeKeyboard OBJECT IDENTIFIER ::= { cpqSeComponent 7 } + cpqSeVideo OBJECT IDENTIFIER ::= { cpqSeComponent 8 } + cpqSeSerialPort OBJECT IDENTIFIER ::= { cpqSeComponent 9 } + cpqSeParallelPort OBJECT IDENTIFIER ::= { cpqSeComponent 10 } + cpqSeFloppyDisk OBJECT IDENTIFIER ::= { cpqSeComponent 11 } + cpqSeFixedDisk OBJECT IDENTIFIER ::= { cpqSeComponent 12 } + cpqSePci OBJECT IDENTIFIER ::= { cpqSeComponent 13 } + cpqSePCCard OBJECT IDENTIFIER ::= { cpqSeComponent 14 } + cpqSeUSBPort OBJECT IDENTIFIER ::= { cpqSeComponent 15 } + cpqSeCell OBJECT IDENTIFIER ::= { cpqSeComponent 16 } + cpqSeIOC OBJECT IDENTIFIER ::= { cpqSeComponent 17 } + cpqSePartition OBJECT IDENTIFIER ::= { cpqSeComponent 18 } + cpqSeCabinet OBJECT IDENTIFIER ::= { cpqSeComponent 19 } + cpqSeComplex OBJECT IDENTIFIER ::= { cpqSeComponent 20 } + cpqSeLED OBJECT IDENTIFIER ::= { cpqSeComponent 21 } + cpqSeUSBDevice OBJECT IDENTIFIER ::= { cpqSeComponent 22 } + + cpqSeOsCommon OBJECT IDENTIFIER ::= { cpqSeInterface 4 } + + TruthValue ::= INTEGER { + false(1), + true(2) + } + +-- **************************************************************************** +-- Standard Equipment MIB Revision +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeMibRev Group (1.3.6.1.4.1.232.1.1) +-- +-- Implementation of the cpqSeMibRev group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- An Insight Agent conforming to this document will return a +-- cpqSeMibRevMajor of one (1) and a cpqSeMibRevMinor of thirty (30). +-- +-- **************************************************************************** + + cpqSeMibRevMajor OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Major Revision level of the MIB. + + A change in the major revision level represents a major change + in the architecture of the MIB. A change in the major revision + level may indicate a significant change in the information + supported and/or the meaning of the supported information, + correct interpretation of data may require a MIB document with + the same major revision level." + ::= { cpqSeMibRev 1 } + + cpqSeMibRevMinor OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Minor Revision level of the MIB. + + A change in the minor revision level may represent some minor + additional support, no changes to any pre-existing information + has occurred." + ::= { cpqSeMibRev 2 } + + cpqSeMibCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition. + + This object represents the overall status of the server + represented by this MIB." + ::= { cpqSeMibRev 3 } + +-- **************************************************************************** +-- Standard Equipment OS Common Group +-- ================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeInterface Group (1.3.6.1.4.1.232.1.2.1) +-- cpqSeOsCommon Group (1.3.6.1.4.1.232.1.2.1.4) +-- +-- Implementation of the cpqSeOsCommon group is mandatory for all +-- agents that support the Standard Equipment MIB. +-- +-- **************************************************************************** + + cpqSeOsCommonPollFreq OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Insight Agent's polling frequency. + + The frequency, in seconds, at which the Insight Agent requests + information from the device driver. A frequency of zero (0) + indicates that the Insight Agent retrieves the information upon + request of a management station, it does not poll the device + driver at a specific interval. + + If the poll frequency is zero (0) all attempts to write to this + object will fail. If the poll frequency is non-zero, + setting this value will change the polling frequency of the + Insight Agent. Setting the poll frequency to zero (0) will + always fail, an agent may also choose to fail any request to + change the poll frequency to a value that would severely impact + system performance." + ::= { cpqSeOsCommon 1 } + +-- **************************************************************************** +-- Standard Equipment OS Common Module Table +-- ========================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeInterface Group (1.3.6.1.4.1.232.1.2.1) +-- cpqSeOsCommon Group (1.3.6.1.4.1.232.1.2.1.4) +-- cpqSeOsCommonModuleTable (1.3.6.1.4.1.232.1.2.1.4.2) deprecated +-- +-- *************************************************************************** + + cpqSeOsCommonModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A table of software modules that provide an interface to the + device this MIB describes." + ::= { cpqSeOsCommon 2 } + + cpqSeOsCommonModuleEntry OBJECT-TYPE + SYNTAX CpqSeOsCommonModuleEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A description of a software module that provides an interface + to the device this MIB describes." + INDEX { cpqSeOsCommonModuleIndex } + ::= { cpqSeOsCommonModuleTable 1 } + + CpqSeOsCommonModuleEntry ::= SEQUENCE { + cpqSeOsCommonModuleIndex INTEGER, + cpqSeOsCommonModuleName DisplayString, + cpqSeOsCommonModuleVersion DisplayString, + cpqSeOsCommonModuleDate OCTET STRING, + cpqSeOsCommonModulePurpose DisplayString + } + + cpqSeOsCommonModuleIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "A unique index for this module description." + ::= { cpqSeOsCommonModuleEntry 1 } + + cpqSeOsCommonModuleName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module name." + ::= { cpqSeOsCommonModuleEntry 2 } + + cpqSeOsCommonModuleVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module version in XX.YY format. + + Where XX is the major version number and YY is the minor version + number. This field will be a null (size 0) string if the agent + cannot provide the module version." + ::= { cpqSeOsCommonModuleEntry 3 } + + cpqSeOsCommonModuleDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (7)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The module date. + + field octets contents range + ===== ====== ======= ===== + 1 1-2 year 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minute 0..59 + 6 7 second 0..60 + (use 60 for leap-second) + + + This field will be set to year = 0 if the agent cannot provide + the module date. The hour, minute, and second field will be set + to zero (0) if they are not relevant. The year field is set + with the most significant octet first." + ::= { cpqSeOsCommonModuleEntry 4 } + + cpqSeOsCommonModulePurpose OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The purpose of the module described in this entry." + ::= { cpqSeOsCommonModuleEntry 5 } + +-- **************************************************************************** +-- Standard Equipment Processor Group +-- ================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeProcessor Group (1.3.6.1.4.1.232.1.2.2) +-- cpqSeCpuTable (1.3.6.1.4.1.232.1.2.2.1) +-- cpqSeFpuTable (1.3.6.1.4.1.232.1.2.2.2) +-- +-- The cpqSeProcessor group describes the CPUs (central processor +-- units) and FPUs (floating point coprocessor units) in the system. +-- +-- A CPU is a chip that performs general purpose processing. A CPU may +-- be used with or without an FPU. +-- +-- A FPU is a chip that performs special purpose processing, an FPU is +-- used by a CPU to handle special computations. A FPU is always used +-- with a CPU. +-- +-- The cpqSeProcessor group contains two tables, the cpqSeCpu table +-- and the cpqSeFpu table. The cpqSeCpu table has an entry for +-- each CPU in the system. The cpqSeFpu table has an entry for each +-- FPU in the system. The two tables are indexed in a way that enables +-- an application to determine the relationship between CPUs and FPUs. +-- Each CPU and FPU entry provides identification, description, and +-- speed information. +-- +-- +-- **************************************************************************** + + + + cpqSeCpuTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeCpuEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of the CPUs (processors) in the system. + + The main processor (if such a concept is valid for this machine) + should be the first entry in the table." + ::= { cpqSeProcessor 1 } + + cpqSeCpuEntry OBJECT-TYPE + SYNTAX CpqSeCpuEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a CPU (processor) in the system." + INDEX { cpqSeCpuUnitIndex } + ::= { cpqSeCpuTable 1 } + + CpqSeCpuEntry ::= SEQUENCE { + cpqSeCpuUnitIndex INTEGER, + cpqSeCpuSlot INTEGER, + cpqSeCpuName DisplayString, + cpqSeCpuSpeed INTEGER, + cpqSeCpuStep INTEGER, + cpqSeCpuStatus INTEGER, + cpqSeCpuExtSpeed INTEGER, + cpqSeCpuDesigner INTEGER, + cpqSeCpuSocketNumber INTEGER, + cpqSeCpuThreshPassed INTEGER, + cpqSeCpuHwLocation DisplayString, + cpqSeCpuCellTablePtr INTEGER, + cpqSeCpuPowerpodStatus INTEGER, + cpqSeCpuArchitectureRevision DisplayString, + cpqSeCpuCore INTEGER, + cpqSeCPUSerialNumber DisplayString, + cpqSeCPUPartNumber DisplayString, + cpqSeCPUSerialNumberMfgr DisplayString, + cpqSeCPUPartNumberMfgr DisplayString, + cpqSeCPUCoreIndex INTEGER, + cpqSeCPUMaxSpeed INTEGER, + cpqSeCPUCoreThreadIndex INTEGER, + cpqSeCPUChipGenerationName DisplayString, + cpqSeCPUMultiThreadStatus INTEGER, + cpqSeCPUCoreMaxThreads INTEGER, + cpqSeCpuLowPowerStatus INTEGER, + cpqSeCpuPrimary INTEGER, + cpqSeCpuCoreSteppingText DisplayString, + cpqSeCpuCurrentPerformanceState INTEGER, + cpqSeCpuMinPerformanceState INTEGER, + cpqSeCpuMaxPerformanceState INTEGER + } + + cpqSeCpuUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a number that uniquely specifies a processor unit. + A processing unit may be a set of processing chips that are + on the same board or for other reasons work together as a unit. + The main processor unit (if such a concept is valid for this + machine) will always have the lowest (first) index." + ::= { cpqSeCpuEntry 1 } + + cpqSeCpuSlot OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents this processor's slot. + If the slot cannot be determined the value of zero (0) will be + returned." + ::= { cpqSeCpuEntry 2 } + + cpqSeCpuName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of this processor. + For example: + 80386" + ::= { cpqSeCpuEntry 3 } + + cpqSeCpuSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current internal speed of this processor in megahertz. + This changes as per the processor performance state + Zero will be returned if this value is not available." + ::= { cpqSeCpuEntry 4 } + + cpqSeCpuStep OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This step of the processor. + This will be zero (0) if the step cannot be determined." + ::= { cpqSeCpuEntry 5 } + + cpqSeCpuStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + degraded(3), + failed(4), + disabled(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the processor. + + The following values are valid for CPU status: + + Unknown (1) + The status of the CPU could not be determined. + + OK (2) + The CPU is functioning normally. + + Degraded (3) + The CPU is in a pre-failure warrantee state. + + Failed (4) + The CPU is in a failed state. + + Disabled (5) + The CPU has been disabled during power-on-self-test." + + ::= { cpqSeCpuEntry 6 } + + cpqSeCpuExtSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the external frequency in megahertz of the processor bus. + Zero will be returned if this value is not available." + ::= { cpqSeCpuEntry 7 } + + cpqSeCpuDesigner OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + intel(2), + amd(3), + cyrix(4), + ti(5), + nexgen(6), + compaq(7), + samsung(8), + mitsubishi(9), + mips(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This attribute specifies the manufacturer which designs + this CPU." + ::= { cpqSeCpuEntry 8 } + + cpqSeCpuSocketNumber OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical socket number of the CPU chip. This number + helps to identify CPUs on processor boards that contain + multiple CPU chips. In most cases the CPU Socket number + should be specified on the board silkscreen or in product + documentation." + ::= { cpqSeCpuEntry 9 } + + cpqSeCpuThreshPassed OBJECT-TYPE + SYNTAX INTEGER + { + unsupported(1), + false(2), + true(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CPU threshold passed (Exceeded). When this attribute is set + to true, it identifies a pre-failure error condition. Processors + like the Intel Pentium Pro have the capability built into them + to correct internal error conditions. Excessive corrected internal + errors can predict future hard processor failures. Agent + instrumentation will set this attribute to true if an internal + processor error threshold is passed. It is recommended that the + user replace the CPU in this case. If the processor does not + support monitoring internal corrected errors, this value will + be set to unsupported. " + ::= { cpqSeCpuEntry 10 } + + cpqSeCpuHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the CPU. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeCpuEntry 11 } + + cpqSeCpuCellTablePtr OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the index for the cell in cpqSeCellTable where this CPU is physically located." + ::= { cpqSeCpuEntry 12 } + + cpqSeCpuPowerpodStatus OBJECT-TYPE + SYNTAX INTEGER + { + notfailed(1), + failed(2) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the status of CPU power pod. Potential values in the future could be present/not present." + ::= { cpqSeCpuEntry 13 } + + cpqSeCpuArchitectureRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the CPU architecture revision." + ::= { cpqSeCpuEntry 14 } + + cpqSeCpuCore OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The number of cores in this CPU module. Zero will be returned if can not be determined." + ::= { cpqSeCpuEntry 15 } + + cpqSeCPUSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The OEM serial number of the CPU." + ::= { cpqSeCpuEntry 16 } + + cpqSeCPUPartNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The OEM part number of the CPU." + ::= { cpqSeCpuEntry 17 } + + cpqSeCPUSerialNumberMfgr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The manufacturer serial number of the CPU." + ::= { cpqSeCpuEntry 18 } + + cpqSeCPUPartNumberMfgr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The manufacturer part number of the CPU." + ::= { cpqSeCpuEntry 19 } + + cpqSeCPUCoreIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is a number that uniquely identifies a core in a CPU unit." + ::= { cpqSeCpuEntry 20 } + + cpqSeCPUMaxSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the maximum internal speed in megahertz this processor can support. + Zero will be returned if this value is not available." + ::= { cpqSeCpuEntry 21 } + + cpqSeCPUCoreThreadIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is an unique number to identify the running threads in a CPU core." + ::= { cpqSeCpuEntry 22 } + + cpqSeCPUChipGenerationName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "CPU chip generation name e.g. Hondo, Montecito, Madison, Opteron." + ::= { cpqSeCpuEntry 23 } + + cpqSeCPUMultiThreadStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + enabled(2), + disabled(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This OID identifies whether the CPU threading is enabled or not." + ::= { cpqSeCpuEntry 24 } + + cpqSeCPUCoreMaxThreads OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "This OID indicates the maximum number of threads that a cpu core is capable of." + ::= { cpqSeCpuEntry 25 } + + cpqSeCpuLowPowerStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown (1), + lowpowered (2), + normalpowered (3), + highpowered (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Servers like Itanium has capability to lower power supply + to CPU if it is idle for specified period of time. Proliant + servers can set to high/low/Dynamic mode of power through + ILO. + + The following values are valid for CPU Low Powered state: + + Unknown (1) + The Low Powered status could not be determined. + + Low Powered (2) + The CPU is Low Power state. + + Normal Powered (3) + The CPU is normal Power state. + + High Powered (4) + The CPU is High Power state." + + ::= { cpqSeCpuEntry 26 } + + cpqSeCpuPrimary OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + false(2), + true (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "On SMP systems one of the CPU is set to Primary and the + other CPUs as secondary. A value of true is set if the + CPU is primary. + + The following values are valid for CPU availability status: + + Unknown (1) + The CPU Primary/Secondary could not be determined. + + false (2) + The CPU is not primary CPU. + + True (3) + The CUR is primary CPU." + + ::= { cpqSeCpuEntry 27 } + + cpqSeCpuCoreSteppingText OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS optional + DESCRIPTION + "The processor stepping version string. A NULL string + indicates that the stepping could not be determined." + ::= { cpqSeCpuEntry 28 } + + cpqSeCpuCurrentPerformanceState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This OID returns the current performance state of this processor. + Processor performance states are denoted as Pn states. The value + of n is cpqSeCpuPerformanceState. The higher the value n is, the + lower the performance state is being used. Value 0 describes the + highest performance state, in which the processor uses its maximum + performance capability and may consume maximum power. + The performance state number should not exceed 16 on Itanium servers. + (-1) will be returned if this value is not available." + ::= { cpqSeCpuEntry 29 } + + cpqSeCpuMinPerformanceState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This OID returns the minimum performance state set for this processor. + (-1) will be returned if this value is not available." + ::= { cpqSeCpuEntry 30 } + + cpqSeCpuMaxPerformanceState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This OID returns the maximum performance state set for this processor. + (-1) will be returned if this value is not available." + ::= { cpqSeCpuEntry 31 } + + +-- **************************************************************************** +-- The FPU Table +-- **************************************************************************** + + cpqSeFpuTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeFpuEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of the FPUs (floating point coprocessors) in the system." + ::= { cpqSeProcessor 2 } + + cpqSeFpuEntry OBJECT-TYPE + SYNTAX CpqSeFpuEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a FPU in the system. + + The fpuUnitIndex of any entry in this table will equal the + cpuUnitIndex of the corresponding CPU in the cpqSeCpu table." + INDEX { cpqSeFpuUnitIndex , cpqSeFpuChipIndex } + ::= { cpqSeFpuTable 1 } + + CpqSeFpuEntry ::= SEQUENCE { + cpqSeFpuUnitIndex INTEGER, + cpqSeFpuChipIndex INTEGER, + cpqSeFpuSlot INTEGER, + cpqSeFpuName DisplayString, + cpqSeFpuSpeed INTEGER, + cpqSeFpuType INTEGER, + cpqSeFpuHwLocation DisplayString + } + + cpqSeFpuUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a number that uniquely specifies a processor unit. + + A processing unit may be a set of processing chips that are + on the same board or for other reasons work together as a unit. + The main processor unit (if there is one) will always have the + lowest (first) index. This field can be used to associate + CPUs with their corresponding FPUs." + ::= { cpqSeFpuEntry 1 } + + cpqSeFpuChipIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a number that uniquely specifies the FPU chip. + + This field is used to distinguish between multiple FPUs that are + part of the same processor unit. For example, If a processor + board contained a Intel 80386 processor with both a Intel 80387 + and a Weitek 3167, both the 80387 and the 3167 would have the + same fpuUnitIndex (which would match the 80386's cpuUnitIndex) + but the 80387 and the 3167 would have different fpuChipIndex + field values." + ::= { cpqSeFpuEntry 2 } + + cpqSeFpuSlot OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the FPU's slot. + + If the slot cannot be determined the value of zero (0) will + be returned." + ::= { cpqSeFpuEntry 3 } + + cpqSeFpuName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the name of the FPU. + + For example: + 80387 + Weitek 3167" + ::= { cpqSeFpuEntry 4 } + + cpqSeFpuSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is speed in megahertz of the FPU. + + Zero will be returned if this value is not available." + ::= { cpqSeFpuEntry 5 } + + cpqSeFpuType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + embedded(2), + external(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the FPU this entry is describing + is embedded in the CPU or external to the CPU chip." + ::= { cpqSeFpuEntry 6 } + + cpqSeFpuHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the FPU. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeFpuEntry 7 } + +-- **************************************************************************** +-- Standard Equipment CPU Cache Table +-- ================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeProcessor Group (1.3.6.1.4.1.232.1.2.2) +-- cpqSeCpuCacheTable (1.3.6.1.4.1.232.1.2.2.3) +-- +-- **************************************************************************** + + cpqSeCpuCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeCpuCacheEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of the CPU caches in the system." + ::= { cpqSeProcessor 3 } + + cpqSeCpuCacheEntry OBJECT-TYPE + SYNTAX CpqSeCpuCacheEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a CPU Caches in the system." + INDEX { cpqSeCpuCacheUnitIndex, cpqSeCpuCacheLevelIndex } + ::= { cpqSeCpuCacheTable 1 } + + CpqSeCpuCacheEntry ::= SEQUENCE { + cpqSeCpuCacheUnitIndex INTEGER, + cpqSeCpuCacheLevelIndex INTEGER, + cpqSeCpuCacheSize INTEGER, + cpqSeCpuCacheSpeed INTEGER, + cpqSeCpuCacheStatus INTEGER, + cpqSeCpuCacheWritePolicy INTEGER, + cpqSeCpuCacheHwLocation DisplayString, + cpqSeCpuCacheCpuSlot INTEGER, + cpqSeCpuCacheCpuCoreIndex INTEGER + } + + cpqSeCpuCacheUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is a number that uniquely specifies a processor unit. + + A processing unit may be a set of processing chips that are + on the same board or for other reasons work together as a unit. + The main processor unit (if such a concept is valid for this + machine) will always have the lowest (first) index." + ::= { cpqSeCpuCacheEntry 1 } + + cpqSeCpuCacheLevelIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the processor cache level. + + The lower the processor cache level, the closer the cache is to + the processor." + ::= { cpqSeCpuCacheEntry 2 } + + cpqSeCpuCacheSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the cache in kilobytes." + ::= { cpqSeCpuCacheEntry 3 } + + cpqSeCpuCacheSpeed OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is speed in cache memory in nanoseconds (ns). A value of + zero (0) means that the cache speed is unknown or unobtainable." + ::= { cpqSeCpuCacheEntry 4 } + + cpqSeCpuCacheStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the cache unit. If the cache is optional and not + installed, unknown(1) will be returned." + ::= { cpqSeCpuCacheEntry 5 } + + cpqSeCpuCacheWritePolicy OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + write-through(2), + write-back(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Specifies write policy of this cache entry." + ::= { cpqSeCpuCacheEntry 6 } + + cpqSeCpuCacheHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the CPU cache. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeCpuCacheEntry 7 } + + cpqSeCpuCacheCpuSlot OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the CPU Slot associated with this CPU cache." + ::= { cpqSeCpuCacheEntry 8 } + + cpqSeCpuCacheCpuCoreIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is a unique number that identifies the core in the CPU + slot to which this cache is associated. If the cache is not + associated with any core on a multi-core CPU, the value should be -1." + ::= { cpqSeCpuCacheEntry 9 } + +-- **************************************************************************** +-- Standard Equipment Memory Group +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeMemory Group (1.3.6.1.4.1.232.1.2.3) +-- +-- The cpqSeMemory group provides the base memory in the system and the +-- total memory in the system. +-- +-- Implementation of the cpqSeMemory group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + cpqSeBaseMem OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of base memory in kilobytes. + + A kilobyte is 1024 bytes." + ::= { cpqSeMemory 1 } + + cpqSeTotalMem OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total amount of memory in kilobytes. + + A kilobyte is 1024 bytes." + ::= { cpqSeMemory 2 } + + cpqSeTotalMemMB OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total amount of memory in megabytes. + + A megabyte is 1024 kilobytes." + ::= { cpqSeMemory 3 } + +-- **************************************************************************** +-- Standard Equipment ISA CMOS Group +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeIsaCmos Group (1.3.6.1.4.1.232.1.2.4) +-- +-- +-- The ISA CMOS group provides an image of the ISA CMOS real time clock, +-- security, and configuration in a raw form. This group is provided for +-- completeness, most of the important information stored in ISA CMOS can +-- also be found elsewhere in the MIB. +-- +-- Implementation of the ISA CMOS group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + + cpqSeIsaCmosRaw OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The contents of the ISA CMOS." + ::= { cpqSeIsaCmos 1 } + +-- **************************************************************************** +-- Standard Equipment EISA NVRAM Slot Table +-- ======================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- +-- +-- The EISA NVRAM group provides a set of tables that detail the +-- configuration information stored in an EISA bus architecture system. +-- The EISA slot table contains entries providing information about each +-- slot that currently contains a configured card. +-- The EISA function table contains entries providing information about +-- each function performed by a configured card. Each card may have +-- one or more defined functions. +-- The rest of the tables: the EISA memory table, the EISA Interrupt +-- table, the EISA DMA table, and the EISA port table, detail the +-- resources used by each function of each configured card. +-- +-- Implementation of the eisaNvram group is optional. +-- The eisaNvram group should be included on any system with an EISA bus +-- architecture. +-- +-- **************************************************************************** + + cpqSeEisaSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA slot information entries." + ::= { cpqSeEisaNvram 1 } + + cpqSeEisaSlotEntry OBJECT-TYPE + SYNTAX CpqSeEisaSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA slot." + INDEX { cpqSeEisaSlotIndex } + ::= { cpqSeEisaSlotTable 1 } + + CpqSeEisaSlotEntry ::= SEQUENCE { + cpqSeEisaSlotIndex INTEGER, + cpqSeEisaSlotRaw OCTET STRING, + cpqSeEisaSlotBoardId DisplayString, + cpqSeEisaSlotBoardName DisplayString, + cpqSeEisaSlotCfRev DisplayString, + cpqSeEisaSlotType INTEGER + } + + cpqSeEisaSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number for this entry describes." + ::= { cpqSeEisaSlotEntry 1 } + + cpqSeEisaSlotRaw OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (12)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot data for the board in this slot. + + This octet string contains the following EISA slot information: + + The first octet will be zero (0) if this slot contains a + properly configured board. Any other value indicates that the + EISA configuration information for this board is invalid or an + error occurred when trying to retrieve the information. + + The second octet contains several bit flags about the product ID + and slot type. + + Bit 7: 0 = No duplicate ID + 1 = Duplicate IDs + + Bit 6: 0 = Product ID readable + 1 = Product ID not readable + + Bit 5,4: 00 = Expansion slot + 01 = Embedded device + 10 = Virtual device + 11 = Reserved + + Bit 3..0: This nibble indicates which CFG file is loaded + when duplicate file names are present. + 0000 = No duplicate ID + 0001 = First duplicate ID + 0010 = Second duplicate ID + 0011 = Third duplicate ID + . + . + . + 1111 = Fifteenth duplicate ID + + NOTE: Bit 7 is the most significant bit, bit 0 is the least + significant. + + The third octet contains the major revision level of the + configuration utility. + + The fourth octet contains the minor revision level of the + configuration utility. + + The fifth octet contains the most significant byte of the + configuration file checksum. + + The sixth octet contains the least significant byte of the + configuration file checksum. + + The seventh octet contains the number of device functions defined + for the board in this slot. + + The eighth octet contains the combined function information. + This is a set of flags. Each bit has the following meaning when + set (1): + Bit 7: reserved (0) + Bit 6: slot has one or more free form data entries + Bit 5: slot has one or more port initialization entries. + Bit 4: slot has one or more port range entries. + Bit 3: slot has one or more DMA entries. + Bit 2: slot has one or more interrupt (IRQ) entries. + Bit 1: slot has one or more memory entries. + Bit 0: slot has one or more function type definitions. + + NOTE: bit 7 is the most significant bit, bit 0 is the least + significant. + + The ninth, tenth, eleventh, and twelfth octets contain the four + byte compressed EISA ID. + + For more information about the meaning of this information + consult the EISA Technical Reference Guide." + ::= { cpqSeEisaSlotEntry 2 } + + cpqSeEisaSlotBoardId OBJECT-TYPE + SYNTAX DisplayString (SIZE (7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A seven character board ID. + + The first three characters are the manufacturers ID followed by + three character product ID followed by a one character revision + level." + ::= { cpqSeEisaSlotEntry 3 } + + cpqSeEisaSlotBoardName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product name (or other suitable description) of this board. + + This field may be empty if no descriptive information is known + about the board." + ::= { cpqSeEisaSlotEntry 4 } + + cpqSeEisaSlotCfRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision level of the EISA configuration utility that was + used to configure the system. + + This should be the same version information displayed by the EISA + configuration utility." + ::= { cpqSeEisaSlotEntry 5 } + + cpqSeEisaSlotType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + isa8Bit(2), + isa16Bit(3), + eisa32Bit(4), + eisaBusMaster32Bit(5), + other(6), + reserved(7), + reserved2(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of slot described by this entry." + ::= { cpqSeEisaSlotEntry 6 } + + +-- **************************************************************************** +-- Standard Equipment EISA NVRAM Function Table +-- ============================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- +-- **************************************************************************** + + cpqSeEisaFunctTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaFunctEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list EISA function information entries." + ::= { cpqSeEisaNvram 2 } + + cpqSeEisaFunctEntry OBJECT-TYPE + SYNTAX CpqSeEisaFunctEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function." + INDEX { cpqSeEisaFunctSlotIndex , cpqSeEisaFunctIndex } + ::= { cpqSeEisaFunctTable 1 } + + CpqSeEisaFunctEntry ::= SEQUENCE { + cpqSeEisaFunctSlotIndex INTEGER, + cpqSeEisaFunctIndex INTEGER, + cpqSeEisaFunctStatus INTEGER, + cpqSeEisaFunctType DisplayString, + cpqSeEisaFunctCfgRev DisplayString, + cpqSeEisaFunctSels OCTET STRING, + cpqSeEisaFunctInfo INTEGER + } + + cpqSeEisaFunctSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot of the board that registered this function" + ::= { cpqSeEisaFunctEntry 1 } + + cpqSeEisaFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of the function this entry describes." + ::= { cpqSeEisaFunctEntry 2 } + + cpqSeEisaFunctStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(2), + enabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the function described by this entry." + ::= { cpqSeEisaFunctEntry 3 } + + cpqSeEisaFunctType OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the function. + + The type may be followed by one or more subtype description + fields. Some currently defined types are: + + Type Meaning + ============== ================================================== + COM Communication device + COM,ASY ISA compatible 8250 based serial port + COM,ASY,FIFO ISA compatible 16550 based serial port (with fifo) + COM,SYN ISA compatible SDLC port + CPU Microprocessor + CPU,8086 8086 compatible microprocessor + CPU,80286 80286 compatible microprocessor + CPU,80386SX 80386SX compatible microprocessor + CPU,80386 80386 compatible microprocessor + CPU,80486 80486 compatible microprocessor + JOY ISA compatible joystick adapter + KEY Keyboard + KEY,nnn,KBD=xx Standard keyboard with nnn keys for country xx + MEM Memory board + MFC Multifunction board + MSD Mass storage device + MSD,DSKCTL ISA compatible fixed disk controller + MSD,FPYCTL ISA compatible floppy disk controller + MSD,TAPCTL Primary tape controller + NET Network board + NPX Numeric coprocessor + NPX,287 Intel 287 numeric coprocessor + NPX,387 Intel 387 numeric coprocessor + NPX,387SX Intel 387SX numeric coprocessor + NPX,W1167 Weitek 1167 numeric coprocessor + NPX,W3167 Weitek 3167 numeric coprocessor + OSE Operating system/environment + OTH Other + PAR ISA compatible parallel port + PAR,BID Bidirectional parallel port + PTR Pointing device + PTR,8042 8042 pointing device (mouse) interface + SYS System board + VID Video board + VID,MDA ISA compatible monochrome adapter + VID,MDA,MGA Hercules monochrome adapter + VID,CGA CGA, no write sync during retrace required + VID,CGA,RTR CGA, write sync during retrace required + VID,EGA ISA compatible EGA adapter + VID,VGA ISA compatible VGA adapter + + This list is not intended to be complete. Other types may be + found in this field. This list describes some of the more + common types found, other types should be similarly recognizable + to someone sufficiently knowledgeable about computer hardware." + ::= { cpqSeEisaFunctEntry 4 } + + cpqSeEisaFunctCfgRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..5)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision of the EISA configuration .OVL file used to + configure this board." + ::= { cpqSeEisaFunctEntry 5 } + + cpqSeEisaFunctSels OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..26)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The selections that were chosen with the EISA CONFIGURATION + UTILITY to create this function." + ::= { cpqSeEisaFunctEntry 6 } + + cpqSeEisaFunctInfo OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA function information block. + + This is a set of flags indicating the resources that are + configured in this EISA function. Each bit has the following + meaning when it is set (1): + + Bit 7: Function is disabled + Bit 6: This function contains free-form information. + Bit 5: This function contains port initialization entries. + Bit 4: This function contains port range entries. + Bit 3: This function contains DMA entries. + Bit 2: This function contains interrupt (IRQ) entries. + Bit 1: This function contains memory entries. + Bit 0: This function contains function type definitions. + + NOTE: bit 7 is the most significant bit, bit 0 is the least + significant." + ::= { cpqSeEisaFunctEntry 7 } + +-- **************************************************************************** +-- Standard Equipment EISA Memory Table +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) +-- +-- **************************************************************************** + + cpqSeEisaMemTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaMemEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA function memory configuration entries." + ::= { cpqSeEisaNvram 3 } + + cpqSeEisaMemEntry OBJECT-TYPE + SYNTAX CpqSeEisaMemEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function memory configuration." + INDEX { cpqSeEisaMemSlotIndex , cpqSeEisaMemFunctIndex , + cpqSeEisaMemAllocIndex } + ::= { cpqSeEisaMemTable 1 } + + CpqSeEisaMemEntry ::= SEQUENCE { + cpqSeEisaMemSlotIndex INTEGER, + cpqSeEisaMemFunctIndex INTEGER, + cpqSeEisaMemAllocIndex INTEGER, + cpqSeEisaMemStartAddr INTEGER, + cpqSeEisaMemSize INTEGER, + cpqSeEisaMemShare INTEGER, + cpqSeEisaMemType INTEGER, + cpqSeEisaMemCache INTEGER, + cpqSeEisaMemAccess INTEGER, + cpqSeEisaMemDecode INTEGER, + cpqSeEisaMemDataSize INTEGER + } + + cpqSeEisaMemSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number of the board that registered the memory + configuration this entry describes." + ::= { cpqSeEisaMemEntry 1 } + + cpqSeEisaMemFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The function in which this memory configuration was registered." + ::= { cpqSeEisaMemEntry 2 } + + cpqSeEisaMemAllocIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index for this memory allocation entry in the EISA function + block." + ::= { cpqSeEisaMemEntry 3 } + + cpqSeEisaMemStartAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The starting address of the memory configuration." + ::= { cpqSeEisaMemEntry 4 } + + cpqSeEisaMemSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in bytes of the memory configuration." + ::= { cpqSeEisaMemEntry 5 } + + cpqSeEisaMemShare OBJECT-TYPE + SYNTAX INTEGER { + nonshareable(1), + shareable(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the memory is shareable." + ::= { cpqSeEisaMemEntry 6 } + + cpqSeEisaMemType OBJECT-TYPE + SYNTAX INTEGER { + systemBaseOrExtended(1), + expanded(2), + virtual(3), + other(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of memory." + ::= { cpqSeEisaMemEntry 7 } + + cpqSeEisaMemCache OBJECT-TYPE + SYNTAX INTEGER { + notCached(1), + writeThroughCached(2), + writeBackCached(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the memory is cached." + ::= { cpqSeEisaMemEntry 8 } + + cpqSeEisaMemAccess OBJECT-TYPE + SYNTAX INTEGER { + readOnly(1), + readWrite(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of access permitted for this memory." + ::= { cpqSeEisaMemEntry 9 } + + cpqSeEisaMemDecode OBJECT-TYPE + SYNTAX INTEGER (0..65536) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The memory decode size (the number of address lines supported)." + ::= { cpqSeEisaMemEntry 10 } + + cpqSeEisaMemDataSize OBJECT-TYPE + SYNTAX INTEGER (0..65536) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The data access size for the memory in bits." + ::= { cpqSeEisaMemEntry 11 } + +-- **************************************************************************** +-- Standard Equipment EISA Interrupt Table +-- ======================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) +-- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) +-- +-- **************************************************************************** + + cpqSeEisaIntTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaIntEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA function interrupt configuration entries." + ::= { cpqSeEisaNvram 4 } + + cpqSeEisaIntEntry OBJECT-TYPE + SYNTAX CpqSeEisaIntEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function interrupt configuration." + INDEX { cpqSeEisaIntSlotIndex , cpqSeEisaIntFunctIndex , + cpqSeEisaIntAllocIndex } + ::= { cpqSeEisaIntTable 1 } + + CpqSeEisaIntEntry ::= SEQUENCE { + cpqSeEisaIntSlotIndex INTEGER, + cpqSeEisaIntFunctIndex INTEGER, + cpqSeEisaIntAllocIndex INTEGER, + cpqSeEisaIntNum INTEGER, + cpqSeEisaIntShare INTEGER, + cpqSeEisaIntTrigger INTEGER + } + + cpqSeEisaIntSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number of the board that registered the interrupt + configuration this entry describes." + ::= { cpqSeEisaIntEntry 1 } + + cpqSeEisaIntFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The function in which this interrupt configuration was + registered." + ::= { cpqSeEisaIntEntry 2 } + + cpqSeEisaIntAllocIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index for this interrupt allocation entry in the EISA + function block." + ::= { cpqSeEisaIntEntry 3 } + + cpqSeEisaIntNum OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The interrupt described in this entry." + ::= { cpqSeEisaIntEntry 4 } + + cpqSeEisaIntShare OBJECT-TYPE + SYNTAX INTEGER { + nonshareable(1), + shareable(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the interrupt is shareable." + ::= { cpqSeEisaIntEntry 5 } + + cpqSeEisaIntTrigger OBJECT-TYPE + SYNTAX INTEGER { + edge(1), + level(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the interrupt is edge or level + triggered." + ::= { cpqSeEisaIntEntry 6 } + +-- **************************************************************************** +-- Standard Equipment EISA DMA Table +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) +-- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) +-- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) +-- +-- **************************************************************************** + + cpqSeEisaDmaTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaDmaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA function DMA configuration entries." + ::= { cpqSeEisaNvram 5 } + + cpqSeEisaDmaEntry OBJECT-TYPE + SYNTAX CpqSeEisaDmaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function DMA configuration." + INDEX { cpqSeEisaDmaSlotIndex , cpqSeEisaDmaFunctIndex , + cpqSeEisaDmaAllocIndex } + ::= { cpqSeEisaDmaTable 1 } + + CpqSeEisaDmaEntry ::= SEQUENCE { + cpqSeEisaDmaSlotIndex INTEGER, + cpqSeEisaDmaFunctIndex INTEGER, + cpqSeEisaDmaAllocIndex INTEGER, + cpqSeEisaDmaChannel INTEGER, + cpqSeEisaDmaShare INTEGER, + cpqSeEisaDmaTiming INTEGER, + cpqSeEisaDmaXfer INTEGER, + cpqSeEisaDmaXferCount INTEGER + } + + cpqSeEisaDmaSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number of the board that registered the DMA + configuration this entry describes." + ::= { cpqSeEisaDmaEntry 1 } + + cpqSeEisaDmaFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The function in which this DMA configuration was registered." + ::= { cpqSeEisaDmaEntry 2 } + + cpqSeEisaDmaAllocIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index for this DMA channel allocation entry in the EISA + function block." + ::= { cpqSeEisaDmaEntry 3 } + + cpqSeEisaDmaChannel OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DMA channel described in this entry." + ::= { cpqSeEisaDmaEntry 4 } + + cpqSeEisaDmaShare OBJECT-TYPE + SYNTAX INTEGER { + nonshareable(1), + shareable(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the DMA channel is shareable." + ::= { cpqSeEisaDmaEntry 5 } + + cpqSeEisaDmaTiming OBJECT-TYPE + SYNTAX INTEGER { + isaTiming(1), + typeA(2), + typeB(3), + burstTypeC(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the timing (transfer rate) associated with + this configuration of the DMA channel." + ::= { cpqSeEisaDmaEntry 6 } + + cpqSeEisaDmaXfer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the transfer size in bits used over this + DMA channel." + ::= { cpqSeEisaDmaEntry 7 } + + cpqSeEisaDmaXferCount OBJECT-TYPE + SYNTAX INTEGER { + byte(1), + word(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the addressing scheme for the DMA channel." + ::= { cpqSeEisaDmaEntry 8 } + + +-- **************************************************************************** +-- Standard Equipment EISA Port Table +-- ================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) +-- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) +-- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) +-- cpqSeEisaPortTable (1.3.6.1.4.1.232.1.2.5.6) +-- +-- **************************************************************************** + + cpqSeEisaPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA function port I/O configuration entries." + ::= { cpqSeEisaNvram 6 } + + cpqSeEisaPortEntry OBJECT-TYPE + SYNTAX CpqSeEisaPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function port I/O configuration." + INDEX { cpqSeEisaPortSlotIndex , cpqSeEisaPortFunctIndex , + cpqSeEisaPortAllocIndex } + ::= { cpqSeEisaPortTable 1 } + + CpqSeEisaPortEntry ::= SEQUENCE { + cpqSeEisaPortSlotIndex INTEGER, + cpqSeEisaPortFunctIndex INTEGER, + cpqSeEisaPortAllocIndex INTEGER, + cpqSeEisaPortAddr INTEGER, + cpqSeEisaPortShare INTEGER, + cpqSeEisaPortSize INTEGER + } + + cpqSeEisaPortSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number of the board that registered the I/O port + configuration this entry describes." + ::= { cpqSeEisaPortEntry 1 } + + cpqSeEisaPortFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The function in which this port I/O configuration was + registered." + ::= { cpqSeEisaPortEntry 2 } + + cpqSeEisaPortAllocIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index for this I/O port range allocation entry in the EISA + function block." + ::= { cpqSeEisaPortEntry 3 } + + cpqSeEisaPortAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The I/O port address being described in this entry." + ::= { cpqSeEisaPortEntry 4 } + + cpqSeEisaPortShare OBJECT-TYPE + SYNTAX INTEGER { + nonshareable(1), + shareable(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates if the port is shareable." + ::= { cpqSeEisaPortEntry 5 } + + cpqSeEisaPortSize OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of sequential ports starting at the + eisaPortAddrIndex that are be configured." + ::= { cpqSeEisaPortEntry 6 } + +-- **************************************************************************** +-- Standard Equipment EISA Free Form Table +-- ======================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) +-- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) +-- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) +-- cpqSeEisaPortTable (1.3.6.1.4.1.232.1.2.5.6) +-- cpqSeEisaFreeFormTable (1.3.6.1.4.1.232.1.2.5.7) +-- +-- **************************************************************************** + + cpqSeEisaFreeFormTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaFreeFormEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA function free form entries." + ::= { cpqSeEisaNvram 7 } + + cpqSeEisaFreeFormEntry OBJECT-TYPE + SYNTAX CpqSeEisaFreeFormEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function free form." + INDEX { cpqSeEisaFreeFormSlotIndex , + cpqSeEisaFreeFormFunctIndex } + ::= { cpqSeEisaFreeFormTable 1 } + + CpqSeEisaFreeFormEntry ::= SEQUENCE { + cpqSeEisaFreeFormSlotIndex INTEGER, + cpqSeEisaFreeFormFunctIndex INTEGER, + cpqSeEisaFreeFormValue OCTET STRING + } + + cpqSeEisaFreeFormSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number of the board that registered the free form + information this entry describes." + ::= { cpqSeEisaFreeFormEntry 1 } + + cpqSeEisaFreeFormFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The function in which this free form was registered." + ::= { cpqSeEisaFreeFormEntry 2 } + + cpqSeEisaFreeFormValue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..205)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The free form value." + ::= { cpqSeEisaFreeFormEntry 3 } + +-- **************************************************************************** +-- Standard Equipment EISA Function Port Initialization Table +-- ========================================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeEisaNvram Group (1.3.6.1.4.1.232.1.2.5) +-- cpqSeEisaSlotTable (1.3.6.1.4.1.232.1.2.5.1) +-- cpqSeEisaFunctTable (1.3.6.1.4.1.232.1.2.5.2) +-- cpqSeEisaMemTable (1.3.6.1.4.1.232.1.2.5.3) +-- cpqSeEisaIntTable (1.3.6.1.4.1.232.1.2.5.4) +-- cpqSeEisaDmaTable (1.3.6.1.4.1.232.1.2.5.5) +-- cpqSeEisaPortTable (1.3.6.1.4.1.232.1.2.5.6) +-- cpqSeEisaFreeFormTable (1.3.6.1.4.1.232.1.2.5.7) +-- cpqSeEisaInitTable (1.3.6.1.4.1.232.1.2.5.8) +-- +-- **************************************************************************** + + cpqSeEisaInitTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeEisaInitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of EISA function port initialization entries." + ::= { cpqSeEisaNvram 8 } + + cpqSeEisaInitEntry OBJECT-TYPE + SYNTAX CpqSeEisaInitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of an EISA function port initialization." + INDEX { cpqSeEisaInitSlotIndex , cpqSeEisaInitFunctIndex , + cpqSeEisaInitAllocIndex } + ::= { cpqSeEisaInitTable 1 } + + CpqSeEisaInitEntry ::= SEQUENCE { + cpqSeEisaInitSlotIndex INTEGER, + cpqSeEisaInitFunctIndex INTEGER, + cpqSeEisaInitAllocIndex INTEGER, + cpqSeEisaInitUseMask INTEGER, + cpqSeEisaInitAccess INTEGER, + cpqSeEisaInitAddr INTEGER, + cpqSeEisaInitValue INTEGER, + cpqSeEisaInitMask INTEGER + } + + cpqSeEisaInitSlotIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EISA slot number of the board that registered the port + initialization this entry describes." + ::= { cpqSeEisaInitEntry 1 } + + cpqSeEisaInitFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The function in which this port initialization was registered." + ::= { cpqSeEisaInitEntry 2 } + + cpqSeEisaInitAllocIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index for this port initialization entry in the EISA + function block." + ::= { cpqSeEisaInitEntry 3 } + + cpqSeEisaInitUseMask OBJECT-TYPE + SYNTAX INTEGER { + useValueOnly(1), + useValueAndMask(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This indicates if a mask will be used when performing + initialization." + ::= { cpqSeEisaInitEntry 4 } + + cpqSeEisaInitAccess OBJECT-TYPE + SYNTAX INTEGER { + other(1), + eightBitAddress(2), + sixteenBitAddress(3), + thirtyTwoBitAddress(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the number of bits this entry initializes." + ::= { cpqSeEisaInitEntry 5 } + + cpqSeEisaInitAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the port address this entry initializes." + ::= { cpqSeEisaInitEntry 6 } + + cpqSeEisaInitValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This indicates the value to which this port is initialized." + ::= { cpqSeEisaInitEntry 7 } + + cpqSeEisaInitMask OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the mask to use when performing + initialization." + ::= { cpqSeEisaInitEntry 8 } + + +-- **************************************************************************** +-- Standard Equipment ROM Description Table +-- ======================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeRom Group (1.3.6.1.4.1.232.1.2.6) +-- cpqSeSysRomVer (1.3.6.1.4.1.232.1.2.6.1) +-- cpqSeOptRomTable (1.3.6.1.4.1.232.1.2.6.2) +-- +-- The ROM group contains a description of the system ROM and a table +-- providing option ROM information. The option ROM table contains +-- entries specifying the starting address and size of the each option +-- ROM in the system. +-- +-- Implementation of the ROM group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + + cpqSeSysRomVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System ROM version information." + ::= { cpqSeRom 1 } + + + cpqSeOptRomTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeOptRomEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of option ROM descriptions." + ::= { cpqSeRom 2 } + + cpqSeOptRomEntry OBJECT-TYPE + SYNTAX CpqSeOptRomEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An option ROM description." + INDEX { cpqSeOptRomAddrIndex } + ::= { cpqSeOptRomTable 1 } + + CpqSeOptRomEntry ::= SEQUENCE { + cpqSeOptRomAddrIndex INTEGER, + cpqSeOptRomSize INTEGER + } + + cpqSeOptRomAddrIndex OBJECT-TYPE + SYNTAX INTEGER (0..4294967295) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The starting address of the option ROM. + + This value indicates the number of bytes from the start of + physical memory to the beginning of this option ROM." + ::= { cpqSeOptRomEntry 1 } + + cpqSeOptRomSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in bytes of the option ROM." + ::= { cpqSeOptRomEntry 2 } + + cpqSeBiosRomDataRaw OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (256)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The BIOS ROM data area. This may be the current contents or + a copy of the BIOS ROM data area from when the Insight Agent was + initialized." + ::= { cpqSeRom 3 } + + cpqSeRedundantSysRomVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System ROM version information for the redundant ROM + image. This will be left blank if the system does not + support a redundant ROM." + ::= { cpqSeRom 4 } + + cpqSeSmbiosVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SMBIOS version information." + ::= { cpqSeRom 5 } + + cpqSeMPFwVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The version of Management Processor Firmware." + ::= { cpqSeRom 6 } + + cpqSeBMCFwVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The version of the manageability firmware." + ::= { cpqSeRom 7 } + + cpqSeHPVMFwVer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The version of the virtual machine firmware." + ::= { cpqSeRom 8 } + +-- **************************************************************************** +-- Standard Equipment Keyboard Group +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeKeyboard Group (1.3.6.1.4.1.232.1.2.7) +-- +-- The keyboard group describes the keyboard attached to the system. +-- +-- Implementation of the Keyboard group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + cpqSeKeyboardDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the keyboard." + ::= { cpqSeKeyboard 1 } + +-- **************************************************************************** +-- Standard Equipment Video Group +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeVideo Group (1.3.6.1.4.1.232.1.2.8) +-- +-- The video group describes the video adapter and display. +-- +-- Implementation of the video group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + cpqSeVideoDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the video system in the computer. This may + include the manufacturer, board name, modes supported, etc.." + ::= { cpqSeVideo 1 } + +-- **************************************************************************** +-- Standard Equipment Serial Port Table +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeSerialPort Group (1.3.6.1.4.1.232.1.2.9) +-- cpqSeSerialPortTable (1.3.6.1.4.1.232.1.2.9.1) +-- +-- The serial port group describes the serial ports in the system. +-- +-- Implementation of the Serial Port group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- +-- **************************************************************************** + + cpqSeSerialPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeSerialPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of serial port descriptions." + ::= { cpqSeSerialPort 1 } + + cpqSeSerialPortEntry OBJECT-TYPE + SYNTAX CpqSeSerialPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a serial port." + INDEX { cpqSeSerialPortIndex } + ::= { cpqSeSerialPortTable 1 } + + CpqSeSerialPortEntry ::= SEQUENCE { + cpqSeSerialPortIndex INTEGER, + cpqSeSerialPortAddr INTEGER, + cpqSeSerialPortDesc DisplayString, + cpqSeSerialPortHwLocation DisplayString + } + + cpqSeSerialPortIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry." + ::= { cpqSeSerialPortEntry 1 } + + cpqSeSerialPortAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The I/O port address used by this serial port." + ::= { cpqSeSerialPortEntry 2 } + + cpqSeSerialPortDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text description of further information known about the serial + port. This may be an empty string if no further information is + known." + ::= { cpqSeSerialPortEntry 3 } + + cpqSeSerialPortHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the serial port. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeSerialPortEntry 4 } + +-- **************************************************************************** +-- Standard Equipment Parallel Port Table +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeParallel Group (1.3.6.1.4.1.232.1.2.10) +-- cpqSeParallelPortTable (1.3.6.1.4.1.232.1.2.10.1) +-- +-- +-- The parallel port group describes the parallel ports in the system. +-- +-- Implementation of the Parallel Port group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- +-- **************************************************************************** + + + cpqSeParallelPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeParallelPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of parallel port descriptions." + ::= { cpqSeParallelPort 1 } + + cpqSeParallelPortEntry OBJECT-TYPE + SYNTAX CpqSeParallelPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a parallel port." + INDEX { cpqSeParallelPortIndex } + ::= { cpqSeParallelPortTable 1 } + + CpqSeParallelPortEntry ::= SEQUENCE { + cpqSeParallelPortIndex INTEGER, + cpqSeParallelPortAddr INTEGER, + cpqSeParallelPortDesc DisplayString, + cpqSeParrallelPortHwLocation DisplayString + } + + cpqSeParallelPortIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry." + ::= { cpqSeParallelPortEntry 1 } + + cpqSeParallelPortAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The I/O port address used by this parallel port." + ::= { cpqSeParallelPortEntry 2 } + + cpqSeParallelPortDesc OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text description of further information known about the + parallel port. This may be an empty string if no further + information is known." + ::= { cpqSeParallelPortEntry 3 } + + cpqSeParrallelPortHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the parallel port. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeParallelPortEntry 4 } + +-- **************************************************************************** +-- Standard Equipment Floppy Disk Table +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeFloppyDisk Group (1.3.6.1.4.1.232.1.2.11) +-- cpqSeFloppyDiskTable (1.3.6.1.4.1.232.1.2.11.1) +-- +-- The floppy disk group describes the floppy disk drives in the system. +-- +-- Implementation of the Floppy Disk group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + cpqSeFloppyDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeFloppyDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of floppy drive descriptions." + ::= { cpqSeFloppyDisk 1 } + + cpqSeFloppyDiskEntry OBJECT-TYPE + SYNTAX CpqSeFloppyDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A floppy drive description." + INDEX { cpqSeFloppyDiskIndex } + ::= { cpqSeFloppyDiskTable 1 } + + CpqSeFloppyDiskEntry ::= SEQUENCE { + cpqSeFloppyDiskIndex INTEGER, + cpqSeFloppyDiskType INTEGER, + cpqSeFloppyDiskHwLocation DisplayString + } + + cpqSeFloppyDiskIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry. If possible, this + field will map directly to the drive letter (0 for A:, 1 for B:)." + ::= { cpqSeFloppyDiskEntry 1 } + + cpqSeFloppyDiskType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + drive360k(2), + drive1200k(3), + drive720k(4), + drive1440k(5), + drive120mb(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type (capacity) of the floppy drive. The following values + are valid: + + other (1) This floppy drive could not be identified. + drive360k (2) This is a 360 kilobyte, 5.25 inch floppy drive. + drive1200k (3) This is a 1.2 megabyte, 5.25 inch floppy drive. + drive720k (4) This is a 720 kilobyte, 3.5 inch floppy drive. + drive1440k (5) This is a 1.44 megabyte, 3.5 inch floppy drive. + drive120mb(6) This is a 120 megabyte, 3.5 inch floptical + drive." + ::= { cpqSeFloppyDiskEntry 2 } + + cpqSeFloppyDiskHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the floppy disk. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeFloppyDiskEntry 3 } + +-- **************************************************************************** +-- Standard Equipment Fixed Disk Table +-- =================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeFixedDisk Group (1.3.6.1.4.1.232.1.2.12) +-- cpqSeFixedDiskTable (1.3.6.1.4.1.232.1.2.12.1) +-- +-- The fixed disk group describes the fixed disk drives in the system +-- that are accessible through a ST506 compatible interface. +-- +-- Implementation of the Fixed Disk group is mandatory for all agents +-- supporting the Standard Equipment MIB. +-- +-- **************************************************************************** + + cpqSeFixedDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeFixedDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of ST-506 interface accessible fixed disk descriptions." + ::= { cpqSeFixedDisk 1 } + + cpqSeFixedDiskEntry OBJECT-TYPE + SYNTAX CpqSeFixedDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A fixed disk description." + INDEX { cpqSeFixedDiskIndex } + ::= { cpqSeFixedDiskTable 1 } + + CpqSeFixedDiskEntry ::= SEQUENCE { + cpqSeFixedDiskIndex INTEGER, + cpqSeFixedDiskType INTEGER, + cpqSeFixedDiskCyls INTEGER, + cpqSeFixedDiskHeads INTEGER, + cpqSeFixedDiskSectors INTEGER, + cpqSeFixedDiskCapacity INTEGER, + cpqSeFixedDiskHwLocation DisplayString + } + + cpqSeFixedDiskIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry. Each possible + index value indicates a specific drive as shown in the table + below: + + fixedDiskIndex IDE/ESDI Controller Drive Unit + ============= =================== ========== + 0 Primary 1 + 1 Primary 2 + 2 Secondary 1 + 3 Secondary 2 + + Any other index value would be implementation specific." + ::= { cpqSeFixedDiskEntry 1 } + + cpqSeFixedDiskType OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The drive type." + ::= { cpqSeFixedDiskEntry 2 } + + cpqSeFixedDiskCyls OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of cylinders on the drive." + ::= { cpqSeFixedDiskEntry 3 } + + cpqSeFixedDiskHeads OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of heads on the drive." + ::= { cpqSeFixedDiskEntry 4 } + + cpqSeFixedDiskSectors OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of sectors per track on the drive." + ::= { cpqSeFixedDiskEntry 5 } + + cpqSeFixedDiskCapacity OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The capacity of the drive in megabytes." + ::= { cpqSeFixedDiskEntry 6 } + + cpqSeFixedDiskHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the fixed disk. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeFixedDiskEntry 7 } + +-- **************************************************************************** +-- Standard Equipment PCI Group +-- ============================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) +-- +-- +-- The PCI group provides a set of tables and variables that detail the +-- configuration information about the PCI bus architecture. The +-- Peripheral Component Interconnect (PCI) local bus is a 32 or 64-bit +-- high performance bus intended to be used to interconnect highly +-- integrated peripheral controller components, peripheral add-in boards, +-- and processor/memory sub-systems. +-- +-- Implementation of the cpqSePci group is optional. +-- Support for the cpqSePci group is MANDATORY for all systems that +-- contain a PCI bus. +-- **************************************************************************** + + + +-- **************************************************************************** +-- Standard Equipment PCI Slot Table +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) +-- cpqSePciSlotTable (1.3.6.1.4.1.232.1.2.13.1) +-- +-- **************************************************************************** + + cpqSePciSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSePciSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of PCI slot information entries." + ::= { cpqSePci 1} + + cpqSePciSlotEntry OBJECT-TYPE + SYNTAX CpqSePciSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a PCI slot." + INDEX { cpqSePciSlotBusNumberIndex , cpqSePciSlotDeviceNumberIndex} + ::= { cpqSePciSlotTable 1 } + + CpqSePciSlotEntry ::= SEQUENCE { + cpqSePciSlotBusNumberIndex INTEGER, + cpqSePciSlotDeviceNumberIndex INTEGER, + cpqSePciPhysSlot INTEGER, + cpqSePciSlotSubSystemID OCTET STRING, + cpqSePciSlotBoardName DisplayString, + cpqSePciSlotWidth INTEGER, + cpqSePciSlotSpeed INTEGER, + cpqSePciSlotExtendedInfo INTEGER, + cpqSePciSlotType INTEGER, + cpqSePciSlotCurrentMode INTEGER, + cpqSePciMaxSlotSpeed INTEGER, + cpqSePciXMaxSlotSpeed INTEGER, + cpqSePciCurrentSlotSpeed INTEGER, + cpqSePciHwLocation DisplayString, + cpqSePciSlotIOCTablePtr INTEGER, + cpqSePciSlotHeaderType INTEGER, + cpqSePciIsSlot0Embedded INTEGER, + cpqSePcieSlotMaxLinkSpeed INTEGER, + cpqSePcieSlotMaxLinkWidth INTEGER + } + + cpqSePciSlotBusNumberIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely identifies this device on its PCI bus. + Values greater than 255 are considered dummy bus numbers for empty PCI slots. + For systems supporting multiple PCI segments, the segment number will be encoded into the middle + word of this value (Bit8 to Bit23). If PCI segment is not supported, Bit8 to Bit23 will be 0." + ::= { cpqSePciSlotEntry 1 } + + cpqSePciSlotDeviceNumberIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number that uniquely identifies this device on its PCI bus." + ::= { cpqSePciSlotEntry 2 } + + cpqSePciPhysSlot OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical PCI slot number of this device. Embedded devices + will return 0 for this variable." + ::= { cpqSePciSlotEntry 3 } + + cpqSePciSlotSubSystemID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Uniquely identifies the board configured in this slot. A zero + length ID indicates the Subsystem ID is not supported and the + (Device ID/Vendor ID) should be used for identification purposes. + An ID of all 0xFFh indicates an empty slot." + ::= { cpqSePciSlotEntry 4 } + + cpqSePciSlotBoardName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product name (or other suitable description) of this PCI + board. This field may be empty if no descriptive information + is known about the board." + ::= { cpqSePciSlotEntry 5 } + + cpqSePciSlotWidth OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + thirtyTwoBit(3), + sixtyFourBit(4), + oneTwentyEightBit(5), + x1(6), + x2(7), + x4(8), + x8(9), + x12(10), + x16(11), + x32(12) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum data width supported by this PCI slot." + ::= { cpqSePciSlotEntry 6 } + + cpqSePciSlotSpeed OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + thirtyThreeMHz(3), + sixtySixMHz(4) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum speed supported by this PCI slot." + ::= { cpqSePciSlotEntry 7 } + + cpqSePciSlotExtendedInfo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI Extended Slot Information. + + This is a set of flags indicating extended features for the + PCI slot. Each bit has the following meaning when it is + set (1): + + Bit 0: Extended SCSI PCI Slot + Bit 1: PCI-X capable + Bits 2-31: reserved (set to 0) + + NOTE: bit 31 is the most significant bit, bit 0 is the least + significant." + ::= { cpqSePciSlotEntry 8 } + + cpqSePciSlotType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + pci(3), + pci66(4), + pcix(5), + pciexpress(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of PCI the slot. + + This indicates the capability of the slot, not the currently + operating mode." + ::= { cpqSePciSlotEntry 9 } + + cpqSePciSlotCurrentMode OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + pci(3), + pci66(4), + pcix(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operating mode of PCI/PCI-X slot. + + This indicates the current operating mode of the device in the + slot. If the slot is empty, this value would be unknown." + ::= { cpqSePciSlotEntry 10 } + + cpqSePciMaxSlotSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum speed in megahertz supported by this PCI slot. If + the slot also supports PCI-X, this value indicates the maximum + speed of the slot when a non-PCI-X adapter is used. + + An entry of 0 indicates the speed is unknown." + ::= { cpqSePciSlotEntry 11 } + + cpqSePciXMaxSlotSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum speed in megahertz supported by this PCI-X slot. + + An entry of 0 indicates the speed is unknown. An entry + of -1 indicates the slot does not support PCI-X." + ::= { cpqSePciSlotEntry 12 } + + cpqSePciCurrentSlotSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current speed in megahertz of the adapter in this PCI + or PCI-X slot. + + An entry of 0 indicates the speed is could not be determined or + the slot is empty." + ::= { cpqSePciSlotEntry 13 } + + cpqSePciHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the Peripheral Component + Interconnect (PCI) bus. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSePciSlotEntry 14 } + + cpqSePciSlotIOCTablePtr OBJECT-TYPE + SYNTAX INTEGER(0..19) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for the I/O Chassis in cpqSePCISlotIOCTablePtr where this PCI slot is physically located." + ::= { cpqSePciSlotEntry 15 } + + cpqSePciSlotHeaderType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This represents header type byte of a PCI device" + ::= { cpqSePciSlotEntry 16 } + + cpqSePciIsSlot0Embedded OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This OID indicates whether PCI slot 0 is embedded in the machine or not." + ::= { cpqSePciSlotEntry 17 } + + cpqSePcieSlotMaxLinkSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the maximum link speed for the PCIe slot. An entry of 0 indicates + the maximum link speed could not be determined or the slot is not PCIe. + The unit is Mb/s." + ::= { cpqSePciSlotEntry 18 } + + cpqSePcieSlotMaxLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the maximum link for the PCIe slot. Value N means N lanes. + An entry of 0 indicates the maximum link width could not be determined + or the slot is not PCIe." + ::= { cpqSePciSlotEntry 19 } + +-- **************************************************************************** +-- Standard Equipment PCI Function Table +-- ===================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) +-- cpqSePciFunctTable (1.3.6.1.4.1.232.1.2.13.2) +-- +-- **************************************************************************** + + cpqSePciFunctTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSePciFunctEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of PCI function information entries." + ::= { cpqSePci 2} + + cpqSePciFunctEntry OBJECT-TYPE + SYNTAX CpqSePciFunctEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of the functions in each PCI slot." + INDEX { cpqSePciFunctBusNumberIndex, cpqSePciFunctDeviceNumberIndex, + cpqSePciFunctIndex } + ::= { cpqSePciFunctTable 1 } + + CpqSePciFunctEntry ::= SEQUENCE { + cpqSePciFunctBusNumberIndex INTEGER, + cpqSePciFunctDeviceNumberIndex INTEGER, + cpqSePciFunctIndex INTEGER, + cpqSePciFunctClassCode OCTET STRING, + cpqSePciFunctClassDescription DisplayString, + cpqSePciFunctDeviceID INTEGER, + cpqSePciFunctVendorID INTEGER, + cpqSePciFunctRevID INTEGER, + cpqSePciFunctIntLine INTEGER, + cpqSePciFunctDevStatus INTEGER, + cpqSePciFunctHwLocation DisplayString, + cpqSePcieFunctNegotiatedLinkSpeed INTEGER, + cpqSePcieFunctNegotiatedLinkWidth INTEGER, + cpqSePcieFunctMaxLinkSpeed INTEGER, + cpqSePcieFunctMaxLinkWidth INTEGER + } + + cpqSePciFunctBusNumberIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI bus number for this device function. + For systems supporting multiple PCI segments, the segment number will be encoded into the middle + word of this value (Bit8 to Bit23). If PCI segment is not supported, Bit8 to Bit23 will be 0." + ::= { cpqSePciFunctEntry 1 } + + cpqSePciFunctDeviceNumberIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The device index for this function." + ::= { cpqSePciFunctEntry 2 } + + cpqSePciFunctIndex OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " The unique index that specifies this function." + ::= { cpqSePciFunctEntry 3 } + + + cpqSePciFunctClassCode OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..3)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The class code register as defined in the PCI Local + Bus Specification in the following format: + Octet Register + ----- -------- + 1 Programming Interface + 2 Sub-class code + 3 Base class code" + ::= { cpqSePciFunctEntry 4 } + + cpqSePciFunctClassDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text string which describes the PCI Base Class and + Sub Class to which this device belongs. This field + may empty if no descriptive information is known about + this function's class." + ::= { cpqSePciFunctEntry 5 } + + cpqSePciFunctDeviceID OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable identifies this particular device. This + identifier is allocated by the component manufacturer." + ::= { cpqSePciFunctEntry 6 } + + cpqSePciFunctVendorID OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable identifies the component manufacturer. Valid + identifiers are assigned by the PCI SIG." + ::= { cpqSePciFunctEntry 7 } + + cpqSePciFunctRevID OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is a vendor defined extension to the device ID and + specifies a device specific revision identifier." + ::= { cpqSePciFunctEntry 8} + + cpqSePciFunctIntLine OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable specifies which input of the system interrupt + controller(s) the device's interrupt pin is connected to. + A value of 0ffh means unknown or no connection." + ::= { cpqSePciFunctEntry 9} + + cpqSePciFunctDevStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + enabled(2), + disabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the device described by this function. + Some PCI devices, such as embedded devices, have the + potential of being present but disabled. " + ::= { cpqSePciFunctEntry 10 } + + cpqSePciFunctHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the Peripheral Component + Interconnect (PCI) bus. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSePciFunctEntry 11 } + + cpqSePcieFunctNegotiatedLinkSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the negotiated link speed for the PCIe link of the PCI device. + An entry of 0 indicates the negotiated link speed could not be determined + or the device is not PCIe. The unit is Mb/s." + ::= { cpqSePciFunctEntry 12 } + + cpqSePcieFunctNegotiatedLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the negotiated link width for the PCIe link of the device. + Value N means N lanes. An entry of 0 indicates the negotiated link width + could not be determined or the device is not PCIe." + ::= { cpqSePciFunctEntry 13 } + + cpqSePcieFunctMaxLinkSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the maximum link speed for the PCIe device. An entry of 0 indicates + the maximum link speed could not be determined or the device is not PCIe. + The unit is Mb/s." + ::= { cpqSePciFunctEntry 14 } + + cpqSePcieFunctMaxLinkWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the maximum link width for the PCIe device. Value N means N lanes. + An entry of 0 indicates the maximum link width could not be determined + or the device is not PCIe." + ::= { cpqSePciFunctEntry 15 } + +-- **************************************************************************** +-- Standard Equipment PCI Base Memory Table +-- ============================================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSePci Group (1.3.6.1.4.1.232.1.2.13) +-- cpqSePciMemoryTable (1.3.6.1.4.1.232.1.2.13.3) +-- +-- **************************************************************************** + cpqSePciMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSePciMemoryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of PCI base memory entries" + ::= { cpqSePci 3} + + cpqSePciMemoryEntry OBJECT-TYPE + SYNTAX CpqSePciMemoryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of the base memory usage in each function" + INDEX { cpqSePciMemoryBusNumberIndex, cpqSePciMemoryDeviceNumberIndex, + cpqSePciMemoryFunctionIndex, cpqSePciMemoryIndex } + ::= { cpqSePciMemoryTable 1 } + + CpqSePciMemoryEntry ::= SEQUENCE { + cpqSePciMemoryBusNumberIndex INTEGER, + cpqSePciMemoryDeviceNumberIndex INTEGER, + cpqSePciMemoryFunctionIndex INTEGER, + cpqSePciMemoryIndex INTEGER, + cpqSePciMemoryBaseAddr INTEGER, + cpqSePciMemoryType INTEGER, + cpqSePciMemorySize INTEGER, + cpqSePciMemoryHwLocation DisplayString + } + + cpqSePciMemoryBusNumberIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI bus number for this memory entry. + For systems supporting multiple PCI segments, the segment number will be encoded into the middle + word of this value (Bit8 to Bit23). If PCI segment is not supported, Bit8 to Bit23 will be 0." + ::= { cpqSePciMemoryEntry 1 } + + cpqSePciMemoryDeviceNumberIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The device index for this memory entry" + ::= { cpqSePciMemoryEntry 2 } + + cpqSePciMemoryFunctionIndex OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " The unique index that specifies the function associated + with this memory entry." + ::= { cpqSePciMemoryEntry 3 } + + cpqSePciMemoryIndex OBJECT-TYPE + SYNTAX INTEGER (0..6) + ACCESS read-only + STATUS mandatory + DESCRIPTION + " The unique index that specifies this memory entry. " + ::= { cpqSePciMemoryEntry 4 } + + cpqSePciMemoryBaseAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Base address of this memory usage entry." + ::= { cpqSePciMemoryEntry 5 } + + cpqSePciMemoryType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + io(2), + memory-mapped(3), + exp-rom(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of memory this entry describes. This variable + is used to determine if this memory entry maps into + memory, expansion rom or I/O space." + ::= { cpqSePciMemoryEntry 6 } + + cpqSePciMemorySize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable specifies how much address space this function + requires. A value of 0 will be returned if the agent cannot + obtain this information." + ::= { cpqSePciMemoryEntry 7 } + + cpqSePciMemoryHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the Peripheral Component + Interconnect (PCI) bus. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSePciMemoryEntry 8 } + + cpqSePciSegmentMode OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + single-segment(2), + multi-segment(3), + auto-segment(4) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The PCI segment mode of the system, if supported." + ::= { cpqSePci 4 } + +-- **************************************************************************** +-- Standard Equipment PC Card Group +-- ======================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSePCCard Group (1.3.6.1.4.1.232.1.2.14) +-- cpqSePCCardSlotTable (1.3.6.1.4.1.232.1.2.14.1) +-- +-- The PC Card Group provides a set of tables and variables that detail the +-- configuration information about the PC Card slot architecture. The PC +-- Card Slots are connected via a dedicated bridge off the PCI local bus +-- which allows 16-bit and/or 32-bit expansion slots. +-- +-- Implementation of the cpqSePCCard group is optional for desktop and +-- server platforms but mandatory for portables. +-- **************************************************************************** + + cpqSePCCardSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSePCCardSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of PC Card slot information entries." + ::= { cpqSePCCard 1} + + cpqSePCCardSlotEntry OBJECT-TYPE + SYNTAX CpqSePCCardSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A PC Card slot description table entry. + A table entry is defined for each PC Card Slot in the + current system configuration." + INDEX { cpqSePCCardSlotIndex} + ::= { cpqSePCCardSlotTable 1 } + + CpqSePCCardSlotEntry ::= SEQUENCE { + cpqSePCCardSlotIndex INTEGER, + cpqSePCCardCondition INTEGER, + cpqSePCCardPhysLocation DisplayString, + cpqSePCCardSlotType INTEGER, + cpqSePCCardSlotWidth INTEGER, + cpqSePCCardSlotThermalCapacity INTEGER, + cpqSePCCardSlotThermalSensor INTEGER, + cpqSePCCardSlotPowerState INTEGER, + cpqSePCCardStatus INTEGER, + cpqSePCCardDeviceInfo DisplayString, + cpqSePCCardProductInfo DisplayString, + cpqSePCCardSerialNumber DisplayString, + cpqSePCCardAssetTag DisplayString + } + + cpqSePCCardSlotIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the logical PC Card slot number for this PC Card Slot. + In addition, the slot number serves as the index into the + PC Card data table. Typical index ranges will be either 1 to + 4 (for 4 slots) or 1 to 2 (for 2 slots). (Un)Docking may + cause the supported index range to change dynamically." + ::= { cpqSePCCardSlotEntry 1 } + + cpqSePCCardCondition OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the overall condition of the PC Card. + The supported values are defined as follows: + + unknown(1) + The current condition is unknown for the PC Card or PC Card Slot. + + ok(2) + PC Card operations are normal. + No user action required. + + degraded (3) + PC Card operations have degraded. + Consult the cpqSePCCardStatus field for recommended actions. + + failed (4) + PC Card operations have failed. + Consult the cpqSePCCardStatus field for recommended actions." + ::= { cpqSePCCardSlotEntry 2 } + + + cpqSePCCardPhysLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the user level PC Card Slot location description. + Text strings supported are: + - System Unit Top Slot, + - System Unit Bottom Slot, + - Docking Station Top Slot, + - Docking Station Bottom Slot." + ::= { cpqSePCCardSlotEntry 3 } + + cpqSePCCardSlotType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the PC Card Slot capabilities. + This is a bit mapped value defined by DMI Mobile Supplement for the System Slots Group, + Slot Type. Bits of interest for PC Card support are: + Bit 6 - PCMCIA slot (if set), + Bit 13 - 16 bit PC Card capable (if set), + Bit 14 - CardBus PC Card capable (if set), + Bit 15 - ZV Port capable (if set), + Bit 16 - Modem Ring Resume capable (if set), + All other bits should be zero (reset) for PC Card slots." + ::= { cpqSePCCardSlotEntry 4 } + + cpqSePCCardSlotWidth OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + width8bit(3), + width16bit(4), + width32bit(5), + width64bit(6), + width128bit(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the maximum bus width for this PC Card Slot. + The supported values are defined as follows: + + Other (1) + Value is not in defined list. + + Unknown (2) + Actual value is not known. + + width 8 bit (3) + Bus is 8 bits wide. + + width 16 bit (4) + Bus is 16 bits wide. + + width 32 bit (5) + Bus is 32 bits wide. + + width 64 bit (6) + Bus is 64 bits wide. + + width 128 bit (7) + Bus is 128 bits wide." + ::= { cpqSePCCardSlotEntry 5 } + + + cpqSePCCardSlotThermalCapacity OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the maximum thermal dissipation capacity (milliwatts) + for this PC Card Slot. A value of zero indicates the thermal + capacity is unknown. A non-zero value indicates the thermal + capacity in milliwatts." + ::= { cpqSePCCardSlotEntry 6 } + + cpqSePCCardSlotThermalSensor OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the Thermal Sensor ID that monitors this PC Card Slot. + A value of zero indicates that a sensor is not present or + unknown for this slot. A non-zero value indicates the sensor + ID as defined by the platform firmware." + ::= { cpqSePCCardSlotEntry 7 } + + cpqSePCCardSlotPowerState OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + on(2), + off(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the current power state (On/Off) for this PC Card Slot. + The supported values are defined as follows: + + unknown (1) + Current power state is unknown. + + on (2) + Power is currently on. + + off (3) + Power is currently off." + ::= { cpqSePCCardSlotEntry 8 } + + cpqSePCCardStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + thermalDegraded(3), + thermalFailure(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the operating status for the card in this PC Card Slot. + The supported values are defined as follows: + + unknown (1) + The current status is not known for the PC Card or + PC Card Slot. + + ok (2) + PC Card operations are normal. + No user action required. + + thermalDegraded (3) + PC Card operations have degraded due to unsafe thermal + conditions. + Recommended Actions include: + Discontinue the use of the PC Card as soon as + possible. If a Modem or LAN card then close + all communication applications/links. If a + Memory, ATA, or SCSI device then close all + open/related files. Remove PC Card from slot + after use is discontinued, if possible. + + thermalFailure (4) + PC Card operations have failed due to unsafe thermal + conditions. The PC Card will automatically be powered + off to protect itself and the system. + Recommended Actions include: + Discontinue the use of the PC Card immediately. + If a Modem or LAN card then close all communication applications/links. + If a Memory, ATA, or SCSI device then close all open/related files. + Remove PC Card from slot after use is discontinued, if possible." + ::= { cpqSePCCardSlotEntry 9 } + + cpqSePCCardDeviceInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the PC Card Manufacturer / Device information for + the card in this PC Card Slot. The returned string data is + read from the PC Card's onboard Card Information Structure + (CIS)." + ::= { cpqSePCCardSlotEntry 10 } + + cpqSePCCardProductInfo OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the PC Card Model / Part Number information for + the card in this PC Card Slot. The returned string data + is read from the PC Card's onboard Card Information + Structure (CIS)." + ::= { cpqSePCCardSlotEntry 11 } + + cpqSePCCardSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the PC Card Serial Number information for the + card in this PC Card Slot. The returned string data is + read from the PC Card's onboard Card Information Structure + (CIS)." + ::= { cpqSePCCardSlotEntry 12 } + + cpqSePCCardAssetTag OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..80)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Defines the PC Card Asset Tag information for the card in + this PC Card Slot. The returned string data is read from + the PC Card's onboard Card Information Structure (CIS)." + ::= { cpqSePCCardSlotEntry 13 } + +-- **************************************************************************** +-- Standard Equipment USB Port Table +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeUSBPort Group (1.3.6.1.4.1.232.1.2.15) +-- cpqSeUSBPortTable (1.3.6.1.4.1.232.1.2.15.1) +-- +-- The cpqSeUSBPort group lists the physical USB ports in the system. +-- +-- Implementation of the cpqSeUSBPort group is optional. +-- Support for the cpqSeUSBPort group is MANDATORY for all systems that +-- contain a USB bus. +-- +-- **************************************************************************** + + cpqSeUSBPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeUSBPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of USB built-in port descriptions containing one entry + for each physical USB connector shipped on the system. + Add-in USB ports are not reflected in this table." + ::= { cpqSeUSBPort 1 } + + cpqSeUSBPortEntry OBJECT-TYPE + SYNTAX CpqSeUSBPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A description of a USB port." + INDEX { cpqSeUSBPortIndex } + ::= { cpqSeUSBPortTable 1 } + + CpqSeUSBPortEntry ::= SEQUENCE { + cpqSeUSBPortIndex INTEGER, + cpqSeUSBPortType INTEGER, + cpqSeUSBPortHwLocation DisplayString + } + + cpqSeUSBPortIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely specifies this entry." + ::= { cpqSeUSBPortEntry 1 } + + + cpqSeUSBPortType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + usbPort(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port type. + The supported values are defined as follows: + + other (1) + USB port data is not available. + + usbPort (2) + The port is a USB Port." + ::= { cpqSeUSBPortEntry 2 } + + cpqSeUSBPortHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "A text description of the hardware location, on complex + multi SBB hardware only, for the USB port. + A NULL string indicates that the hardware location could not + be determined or is irrelevant." + ::= { cpqSeUSBPortEntry 3 } + +-- **************************************************************************** +-- Standard Equipment Cell Table +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeCell (1.3.6.1.4.1.232.1.2.16) +-- +-- A cell is equivalent to a single board computer. +-- +-- +-- **************************************************************************** + + cpqSeCellTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeCellEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A list of cells in the partition." + ::= { cpqSeCell 1 } + + cpqSeCellEntry OBJECT-TYPE + SYNTAX CpqSeCellEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A description of a cell in the system." + INDEX { cpqSeCellUnitIndex } + ::= { cpqSeCellTable 1 } + + CpqSeCellEntry ::= SEQUENCE { + cpqSeCellUnitIndex INTEGER, + cpqSeCellCabinetNumber INTEGER, + cpqSeCellCellNumber INTEGER, + cpqSeCellIOCTablePtr INTEGER, + cpqSeCellPDHCFirmwareRevision DisplayString, + cpqSeCellSysFwVersion DisplayString, + cpqSeCellBootInhibited TruthValue, + cpqSeCellToScanBusConnectionStatus INTEGER, + cpqSeCellHasCoreIO TruthValue, + cpqSeCellBoardSpeed INTEGER, + cpqSeCellPresent TruthValue, + cpqSeCellHasPower TruthValue, + cpqSeCellReadyForReconfig TruthValue, + cpqSeCellTotalMemory INTEGER, + cpqSeCellLEDState INTEGER, + cpqSeCellState INTEGER, + cpqSeCellCLMRequestPercentage INTEGER, + cpqSeCellCLMRequestSize INTEGER, + cpqSeCellCLMAllocatedSize INTEGER, + cpqSeCellInterleaveAllocatedSize INTEGER, + cpqSeCellHasInterleaveMem INTEGER, + cpqSeCellSerialNumber DisplayString, + cpqSeCellCLMCondition INTEGER + } + + cpqSeCellUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is a number that uniquely specifies the cell." + ::= { cpqSeCellEntry 1 } + + cpqSeCellCabinetNumber OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents the cabinet that the cell belongs to." + ::= { cpqSeCellEntry 2 } + + cpqSeCellCellNumber OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS optional + DESCRIPTION + "This value is cell/slot number that is unique across the cabinet." + ::= { cpqSeCellEntry 3 } + + cpqSeCellIOCTablePtr OBJECT-TYPE + SYNTAX INTEGER (0..19) + ACCESS read-only + STATUS optional + DESCRIPTION + "Table index for the I/O chassis which is connected to this cell." + ::= { cpqSeCellEntry 4 } + + cpqSeCellPDHCFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "HP SAL Revision" + ::= { cpqSeCellEntry 5 } + + cpqSeCellSysFwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the revision of system firmware on the cell board" + ::= { cpqSeCellEntry 6 } + + cpqSeCellBootInhibited OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value indicates whether the cell is active." + ::= { cpqSeCellEntry 7 } + + cpqSeCellToScanBusConnectionStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This bitmap represents the state of cell to scan + bus connection/RIO cable state. + + if bit 6 is set to 1, Cable port swapped. + if bit 5 is set to 1, Cable ID mismatched. + if bit 4 is set to 1, Output Cable parity error. + if bit 3 is set to 1, Output Cable detached. + if bit 2 is set to 1, Input Cable parity error. + if bit 1 is set to 1, Input Cable detached. + if bit 0 is set to 1, Connection valid." + ::= { cpqSeCellEntry 8 } + + cpqSeCellHasCoreIO OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value indicates whether the cell has core I/O attached to it." + ::= { cpqSeCellEntry 9 } + + cpqSeCellBoardSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents the speed of the cell board/FSB ratio" + ::= { cpqSeCellEntry 10 } + + cpqSeCellPresent OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents whether there is a cell in the slot" + ::= { cpqSeCellEntry 11 } + + cpqSeCellHasPower OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents whether the cell has power" + ::= { cpqSeCellEntry 12 } + + cpqSeCellReadyForReconfig OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents whether the cell is ready for reconfiguration" + ::= { cpqSeCellEntry 13 } + + cpqSeCellTotalMemory OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents total memory in the cell" + ::= { cpqSeCellEntry 14 } + + cpqSeCellLEDState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "This value represents state of the cell LED. + This is a bit-mapped value defined as follows. + Bit 31..30 = 00, LED 3 is Off + = 01, LED 3 is On + = 10, LED 3 is Blinking + = 11, For LED 3 future use + + Bit 29..27 = 000, LED 3 is Red + = 001, LED 3 is Yellow + = 010, LED 3 is Green + = 011, LED 3 is Blue + = 100, For LED 3 future use + = 101, For LED 3 future use + = 110, For LED 3 future use + = 111, For LED 3 future use + + Bit 26..24 = 000, LED 3 indicates Power + = 001, LED 3 indicates Run + = 010, LED 3 indicates Attention + = 011, LED 3 indicates Fault + = 100, For LED 3 future use + = 101, For LED 3 future use + = 110, For LED 3 future use + = 111, For LED 3 future use + + Bit 23..22 = 00, LED 2 is Off + = 01, LED 2 is On + = 10, LED 2 is Blinking + = 11, For LED 2 future use + + Bit 21..19 = 000, LED 2 is Red + = 001, LED 2 is Yellow + = 010, LED 2 is Green + = 011, LED 2 is Blue + = 100, For LED 2 future use + = 101, For LED 2 future use + = 110, For LED 2 future use + = 111, For LED 2 future use + + Bit 18..16 = 000, LED 2 indicates Power + = 001, LED 2 indicates Run + = 010, LED 2 indicates Attention + = 011, LED 2 indicates Fault + = 100, For LED 2 future use + = 101, For LED 2 future use + = 110, For LED 2 future use + = 111, For LED 2 future use + + Bit 15..14 = 00, LED 1 is Off + = 01, LED 1 is On + = 10, LED 1 is Blinking + = 11, For LED 1 future use + + Bit 13..11 = 000, LED 1 is Red + = 001, LED 1 is Yellow + = 010, LED 1 is Green + = 011, LED 1 is Blue + = 100, For LED 1 future use + = 101, For LED 1 future use + = 110, For LED 1 future use + = 111, For LED 1 future use + + Bit 10..8 = 000, LED 1 indicates Power + = 001, LED 1 indicates Run + = 010, LED 1 indicates Attention + = 011, LED 1 indicates Fault + = 100, For LED 1 future use + = 101, For LED 1 future use + = 110, For LED 1 future use + = 111, For LED 1 future use + + Bit 7..6 = 00, LED 0 is Off + = 01, LED 0 is On + = 10, LED 0 is Blinking + = 11, For LED 0 future use + + Bit 5..3 = 000, LED 0 is Red + = 001, LED 0 is Yellow + = 010, LED 0 is Green + = 011, LED 0 is Blue + = 100, For LED 0 future use + = 101, For LED 0 future use + = 110, For LED 0 future use + = 111, For LED 0 future use + + Bit 2..0 = 000, LED 0 indicates Power + = 001, LED 0 indicates Run + = 010, LED 0 indicates Attention + = 011, LED 0 indicates Fault + = 100, For LED 0 future use + = 101, For LED 0 future use + = 110, For LED 0 future use + = 111, For LED 0 future use " + ::= { cpqSeCellEntry 15 } + + cpqSeCellState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "This value represents state of the cell" + ::= { cpqSeCellEntry 16 } + + cpqSeCellCLMRequestPercentage OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The requested percentage of CLM memory to be configured in the cell." + ::= { cpqSeCellEntry 17 } + + cpqSeCellCLMRequestSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The size of requested CLM memory in the cell in kilobytes." + ::= { cpqSeCellEntry 18 } + + cpqSeCellCLMAllocatedSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The size of allocated CLM memory in the cell in kilobytes." + ::= { cpqSeCellEntry 19 } + + cpqSeCellInterleaveAllocatedSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The size of allocated interleaved memory in the cell + in kilobytes." + ::= { cpqSeCellEntry 20 } + + cpqSeCellHasInterleaveMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "When set indicates that there is an interleaved memory + configured in the cell." + ::= { cpqSeCellEntry 21 } + + cpqSeCellSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the cell board serial number." + ::= { cpqSeCellEntry 22 } + + cpqSeCellCLMCondition OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The CLM (Cell Local Memory) settings condition of this cell." + ::= { cpqSeCellEntry 23 } + + +-- **************************************************************************** +-- Standard Equipment I/O Chassis Table +-- ================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeIOCTable (1.3.6.1.4.1.232.1.2.17) +-- +-- An I/O chassis contains PCI devices on the system +-- +-- +-- **************************************************************************** + + cpqSeIOCTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeIOCEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A list of I/O chassis in the partition." + ::= { cpqSeIOC 1 } + + cpqSeIOCEntry OBJECT-TYPE + SYNTAX CpqSeIOCEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A description of an I/O chassis in the system." + INDEX { cpqSeIOCUnitIndex } + ::= { cpqSeIOCTable 1 } + + CpqSeIOCEntry ::= SEQUENCE { + cpqSeIOCUnitIndex INTEGER, + cpqSeIOCCabinetNumber INTEGER, + cpqSeIOCBayNumber INTEGER, + cpqSeIOCIOCNumber INTEGER, + cpqSeIOCPowerState INTEGER, + cpqSeIOCLEDState INTEGER + } + + cpqSeIOCUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..19) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is a number that uniquely specifies the I/O chassis." + ::= { cpqSeIOCEntry 1 } + + cpqSeIOCCabinetNumber OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents the cabinet that the I/O chassis belongs to. + The default value is 255 if the cabinet number can not be obtained." + ::= { cpqSeIOCEntry 2 } + + cpqSeIOCBayNumber OBJECT-TYPE + SYNTAX INTEGER (0..2) + ACCESS read-only + STATUS optional + DESCRIPTION + "This value indicates the bay in the cabinet where the I/O chassis resides." + ::= { cpqSeIOCEntry 3 } + + cpqSeIOCIOCNumber OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the I/O chassis number that is unique across the bay." + ::= { cpqSeIOCEntry 4 } + + cpqSeIOCPowerState OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + powered-off(2), + powered-on(3) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "This value indicates I/O chassis power state." + ::= { cpqSeIOCEntry 5 } + + cpqSeIOCLEDState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "This value represents the state of a IO Chassis LED. + This is a bit-mapped value defined as follows. + Bit 31..30 = 00, LED 3 is Off + = 01, LED 3 is On + = 10, LED 3 is Blinking + = 11, For LED 3 future use + + Bit 29..27 = 000, LED 3 is Red + = 001, LED 3 is Yellow + = 010, LED 3 is Green + = 011, LED 3 is Blue + = 100, For LED 3 future use + = 101, For LED 3 future use + = 110, For LED 3 future use + = 111, For LED 3 future use + + Bit 26..24 = 000, LED 3 indicates Power + = 001, LED 3 indicates Run + = 010, LED 3 indicates Attention + = 011, LED 3 indicates Fault + = 100, For LED 3 future use + = 101, For LED 3 future use + = 110, For LED 3 future use + = 111, For LED 3 future use + + Bit 23..22 = 00, LED 2 is Off + = 01, LED 2 is On + = 10, LED 2 is Blinking + = 11, For LED 2 future use + + Bit 21..19 = 000, LED 2 is Red + = 001, LED 2 is Yellow + = 010, LED 2 is Green + = 011, LED 2 is Blue + = 100, For LED 2 future use + = 101, For LED 2 future use + = 110, For LED 2 future use + = 111, For LED 2 future use + + Bit 18..16 = 000, LED 2 indicates Power + = 001, LED 2 indicates Run + = 010, LED 2 indicates Attention + = 011, LED 2 indicates Fault + = 100, For LED 2 future use + = 101, For LED 2 future use + = 110, For LED 2 future use + = 111, For LED 2 future use + + Bit 15..14 = 00, LED 1 is Off + = 01, LED 1 is On + = 10, LED 1 is Blinking + = 11, For LED 1 future use + + Bit 13..11 = 000, LED 1 is Red + = 001, LED 1 is Yellow + = 010, LED 1 is Green + = 011, LED 1 is Blue + = 100, For LED 1 future use + = 101, For LED 1 future use + = 110, For LED 1 future use + = 111, For LED 1 future use + + Bit 10..8 = 000, LED 1 indicates Power + = 001, LED 1 indicates Run + = 010, LED 1 indicates Attention + = 011, LED 1 indicates Fault + = 100, For LED 1 future use + = 101, For LED 1 future use + = 110, For LED 1 future use + = 111, For LED 1 future use + + Bit 7..6 = 00, LED 0 is Off + = 01, LED 0 is On + = 10, LED 0 is Blinking + = 11, For LED 0 future use + + Bit 5..3 = 000, LED 0 is Red + = 001, LED 0 is Yellow + = 010, LED 0 is Green + = 011, LED 0 is Blue + = 100, For LED 0 future use + = 101, For LED 0 future use + = 110, For LED 0 future use + = 111, For LED 0 future use + + Bit 2..0 = 000, LED 0 indicates Power + = 001, LED 0 indicates Run + = 010, LED 0 indicates Attention + = 011, LED 0 indicates Fault + = 100, For LED 0 future use + = 101, For LED 0 future use + = 110, For LED 0 future use + = 111, For LED 0 future use " + ::= { cpqSeIOCEntry 6 } + +-- **************************************************************************** +-- Standard Equipment Partition Structure +-- ====================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSePartition (1.3.6.1.4.1.232.1.2.18) +-- +-- A partition can have many cells spread across cabinets. +-- +-- +-- **************************************************************************** + + cpqSePartitionTotalCPU OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the number of logical CPUs in the partition. Zero will be returned + if the value can not be determined." + ::= { cpqSePartition 1 } + + cpqSePartitionAvailableCellSlots OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the number of available cell slots in the partition. + Zero will be returned if the value can not be determined." + ::= { cpqSePartition 2 } + + cpqSePartitionInstalledCells OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the number of installed cells in the partition. Zero + will be returned if the value can not be determined." + ::= { cpqSePartition 3 } + + cpqSePartitionPoweredOnCells OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This denotes the number of powered on cells in the partition. + Zero will be returned if the value can not be determined." + ::= { cpqSePartition 4 } + + cpqSePartitionReadyForReconfigCells OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents the cells that are ready for reconfiguration. + Zero will be returned if the value can not be determined." + ::= { cpqSePartition 5 } + + cpqSePartitionMemInterleavingType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents memory interleaving type for the partition. + Zero will be returned if the value can not be determined." + ::= { cpqSePartition 6} + + cpqSePartitionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents the partition name." + ::= { cpqSePartition 7} + + cpqSePartitionCoreCell OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The cell slot number of the partition's core cell." + ::= { cpqSePartition 8} + + cpqSePartitionCoreCellCabinet OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The cabinet number of the partition's core cell." + ::= { cpqSePartition 9} + + cpqSePartitionCLMRequestPercentage OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The requested percentage of CLM memory to be configured in the + partition." + ::= { cpqSePartition 10} + + cpqSePartitionCLMRequestSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The size of requested CLM memory in the partition in kilobytes." + ::= { cpqSePartition 11} + + cpqSePartitionCLMAllocatedSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The size of allocated CLM memory in the partition in + kilobytes." + ::= { cpqSePartition 12} + + cpqSePartitionInterleaveAllocatedSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The size of allocated interleaved memory in the partition + in kilobytes." + ::= { cpqSePartition 13} + + cpqSePartitionHasInterleaveMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "When set, it indicates that there is an interleaved memory + configured in the partition." + ::= { cpqSePartition 14} + + cpqSePartitionNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents the logical partition number of the current + partition in the complex." + ::= { cpqSePartition 15} + +-- **************************************************************************** +-- Standard Equipment Cabinet Table +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeCabinetTable (1.3.6.1.4.1.232.1.2.19) +-- +-- A cabinet contains many cells and/or I/O chassis +-- +-- +-- **************************************************************************** + + cpqSeCabinetTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeCabinetEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A list of cabinets that contain cells in the partition." + ::= { cpqSeCabinet 1 } + + cpqSeCabinetEntry OBJECT-TYPE + SYNTAX CpqSeCabinetEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A description of a cabinet in the system." + INDEX { cpqSeCabinetUnitIndex } + ::= { cpqSeCabinetTable 1 } + + CpqSeCabinetEntry ::= SEQUENCE { + cpqSeCabinetUnitIndex INTEGER, + cpqSeCabinetCPULED TruthValue, + cpqSeCabinetIOXLED TruthValue, + cpqSeCabinetTypeNum INTEGER, + cpqSeCabinetLED INTEGER + } + + cpqSeCabinetUnitIndex OBJECT-TYPE + SYNTAX INTEGER (0..3) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is a number that uniquely specifies the cabinet." + ::= { cpqSeCabinetEntry 1 } + + cpqSeCabinetCPULED OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents the on/off state of compute cabinet LED." + ::= { cpqSeCabinetEntry 2 } + + cpqSeCabinetIOXLED OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents the on/off state of IOX cabinet LED." + ::= { cpqSeCabinetEntry 3 } + + cpqSeCabinetTypeNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This value represents type and number of a compute or IOX cabinet. + Bit 31..16 = 0x0000, type of cabinet is Thin Boy + Bit 31..16 = 0x0001, type of cabinet is Fat Boy + Bit 31..16 = 0x0002, type of cabinet is Dome Lite + Bit 31..16 = 0x0003, type of cabinet is Key Stone + Bit 31..16 = 0x0004, type of cabinet is Matter Horn + Bit 31..16 = 0x0080, type of cabinet is IOX + Bit 15..0, represents the compute cabinet number." + ::= { cpqSeCabinetEntry 4 } + + cpqSeCabinetLED OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "This value represents the state of a cabinet LED. + This is a bit-mapped value defined as follows. + Bit 31..30 = 00, LED 3 is Off + = 01, LED 3 is On + = 10, LED 3 is Blinking + = 11, For LED 3 future use + + Bit 29..27 = 000, LED 3 is Red + = 001, LED 3 is Yellow + = 010, LED 3 is Green + = 011, LED 3 is Blue + = 100, For LED 3 future use + = 101, For LED 3 future use + = 110, For LED 3 future use + = 111, For LED 3 future use + + Bit 26..24 = 000, LED 3 indicates Power + = 001, LED 3 indicates Run + = 010, LED 3 indicates Attention + = 011, LED 3 indicates Fault + = 100, For LED 3 future use + = 101, For LED 3 future use + = 110, For LED 3 future use + = 111, For LED 3 future use + + Bit 23..22 = 00, LED 2 is Off + = 01, LED 2 is On + = 10, LED 2 is Blinking + = 11, For LED 2 future use + + Bit 21..19 = 000, LED 2 is Red + = 001, LED 2 is Yellow + = 010, LED 2 is Green + = 011, LED 2 is Blue + = 100, For LED 2 future use + = 101, For LED 2 future use + = 110, For LED 2 future use + = 111, For LED 2 future use + + Bit 18..16 = 000, LED 2 indicates Power + = 001, LED 2 indicates Run + = 010, LED 2 indicates Attention + = 011, LED 2 indicates Fault + = 100, For LED 2 future use + = 101, For LED 2 future use + = 110, For LED 2 future use + = 111, For LED 2 future use + + Bit 15..14 = 00, LED 1 is Off + = 01, LED 1 is On + = 10, LED 1 is Blinking + = 11, For LED 1 future use + + Bit 13..11 = 000, LED 1 is Red + = 001, LED 1 is Yellow + = 010, LED 1 is Green + = 011, LED 1 is Blue + = 100, For LED 1 future use + = 101, For LED 1 future use + = 110, For LED 1 future use + = 111, For LED 1 future use + + Bit 10..8 = 000, LED 1 indicates Power + = 001, LED 1 indicates Run + = 010, LED 1 indicates Attention + = 011, LED 1 indicates Fault + = 100, For LED 1 future use + = 101, For LED 1 future use + = 110, For LED 1 future use + = 111, For LED 1 future use + + Bit 7..6 = 00, LED 0 is Off + = 01, LED 0 is On + = 10, LED 0 is Blinking + = 11, For LED 0 future use + + Bit 5..3 = 000, LED 0 is Red + = 001, LED 0 is Yellow + = 010, LED 0 is Green + = 011, LED 0 is Blue + = 100, For LED 0 future use + = 101, For LED 0 future use + = 110, For LED 0 future use + = 111, For LED 0 future use + + Bit 2..0 = 000, LED 0 indicates Power + = 001, LED 0 indicates Run + = 010, LED 0 indicates Attention + = 011, LED 0 indicates Fault + = 100, For LED 0 future use + = 101, For LED 0 future use + = 110, For LED 0 future use + = 111, For LED 0 future use " + ::= { cpqSeCabinetEntry 5 } + +-- **************************************************************************** +-- Standard Equipment Complex Structure +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeComplex (1.3.6.1.4.1.232.1.2.20) +-- cpqSeComplexCellSlotStatusTable (1.3.6.1.4.1.232.1.2.20.7) +-- +-- +-- A complex can have at most 4 cabinets +-- +-- +-- **************************************************************************** + + cpqSeComplexUUID OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the complex UUID." + ::= { cpqSeComplex 1 } + + cpqSeComplexTotalCabinet OBJECT-TYPE + SYNTAX INTEGER (0..4) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the total number of cabinets in the complex. + Zero will be returned if the value can not be determined." + ::= { cpqSeComplex 2 } + + cpqSeComplexComputeCabinet OBJECT-TYPE + SYNTAX INTEGER (0..2) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is the number of compute cabinets in the complex." + ::= { cpqSeComplex 3 } + + cpqSeComplexIOXCabinet OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-only + STATUS optional + DESCRIPTION + "This denotes the number of IOX cabinets in the complex." + ::= { cpqSeComplex 4 } + + cpqSeComplexName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "This represents the complex name." + ::= { cpqSeComplex 5 } + + cpqSeComplexLockedProperty OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "Bit 31 - Indicates that there is a locked IPMI property when set. + Bit 7:0 - Contains the property number currently locked." + ::= { cpqSeComplex 6 } + + cpqSeComplexCellSlotStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeComplexCellSlotStatusEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A table of cell slot status in a complex." + ::= { cpqSeComplex 7 } + + cpqSeComplexCellSlotStatusEntry OBJECT-TYPE + SYNTAX CpqSeComplexCellSlotStatusEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A cell slot status description." + INDEX { cpqSeComplexCellSlotStatusIndex } + ::= { cpqSeComplexCellSlotStatusTable 1 } + + CpqSeComplexCellSlotStatusEntry ::= SEQUENCE { + cpqSeComplexCellSlotStatusIndex INTEGER, + cpqSeComplexCellSlotStatusCabinetNo INTEGER, + cpqSeComplexCellSlotStatusSlotNo INTEGER, + cpqSeComplexCellSlotStatus INTEGER, + cpqSeComplexCellSlotPartitionNo INTEGER, + cpqSeComplexCellSlotPartitionName DisplayString + } + + cpqSeComplexCellSlotStatusIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The table index of cell slot status in a complex. + + This value is a unique index for a row in the table of complex + cell slot status." + ::= { cpqSeComplexCellSlotStatusEntry 1 } + + cpqSeComplexCellSlotStatusCabinetNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The cabinet number of this cell slot." + ::= { cpqSeComplexCellSlotStatusEntry 2 } + + cpqSeComplexCellSlotStatusSlotNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The number of this cell slot." + ::= { cpqSeComplexCellSlotStatusEntry 3 } + + cpqSeComplexCellSlotStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + active(2), + inactive(3), + assigned-powered-off(4), + free-powered-on(5), + free-powered-off(6), + empty(7) + } + ACCESS read-only + STATUS optional + DESCRIPTION + "The status of this cell slot." + ::= { cpqSeComplexCellSlotStatusEntry 4 } + + cpqSeComplexCellSlotPartitionNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "The partition number this cell is assigned." + ::= { cpqSeComplexCellSlotStatusEntry 5 } + + cpqSeComplexCellSlotPartitionName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "The partition this cell belongs to." + ::= { cpqSeComplexCellSlotStatusEntry 6 } + +-- **************************************************************************** +-- Standard Equipment LED Table +-- ============================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeLED (1.3.6.1.4.1.232.1.2.21) +-- +-- This is a generic table of LEDs in the system +-- +-- **************************************************************************** + + cpqSeLEDTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSeLEDEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "A list of LEDs in the system." + ::= { cpqSeLED 1 } + + cpqSeLEDEntry OBJECT-TYPE + SYNTAX CpqSeLEDEntry + ACCESS not-accessible + STATUS optional + DESCRIPTION + "An entry of an LED in the system." + INDEX { cpqSeLEDIndex } + ::= { cpqSeLEDTable 1 } + + CpqSeLEDEntry ::= SEQUENCE { + cpqSeLEDIndex INTEGER, + cpqSeLEDState INTEGER, + cpqSeLEDStateDuration INTEGER, + cpqSeLEDLocationType INTEGER, + cpqSeLEDDescription DisplayString, + cpqSeLEDHardwareLocation DisplayString + } + + cpqSeLEDIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS optional + DESCRIPTION + "This is a number that uniquely identifies the LED." + ::= { cpqSeLEDEntry 1 } + + cpqSeLEDState OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "This value represents the state of an LED. + Bit 31..24 = ON-duration time in unit of 0.1 sec + Bit 23..16 = OFF-duration time in unit of 0.1 sec + Bit 15..8 = 0, LED state is OFF + = 1, LED state is ON + = 2, LED state is BLINKING + Bit 7..0 = 0, invalid color value + = 1, LED color is Brown + = 2, LED color is Red + = 3, LED color is Orange + = 4, LED color is Yellow + = 5, LED color is Green + = 6, LED color is Blue + = 7, LED color is Violet + = 8, LED color is Gray + = 9, LED color is White " + ::= { cpqSeLEDEntry 2 } + + cpqSeLEDStateDuration OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS optional + DESCRIPTION + "This is the duration of an LED state in seconds. " + ::= { cpqSeLEDEntry 3 } + + cpqSeLEDLocationType OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS optional + DESCRIPTION + "This value indicates whether an LED is internal or external. + 0 = External + 1 = Internal " + ::= { cpqSeLEDEntry 4 } + + cpqSeLEDDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "Description of the LED entry." + ::= { cpqSeLEDEntry 5 } + + cpqSeLEDHardwareLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "Description of the location of an LED entry." + ::= { cpqSeLEDEntry 6 } + +-- **************************************************************************** +-- Standard Equipment USB Device Group +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqStdEquipment Group (1.3.6.1.4.1.232.1) +-- cpqSeComponent Group (1.3.6.1.4.1.232.1.2) +-- cpqSeUSBDevice Group (1.3.6.1.4.1.232.1.2.22) +-- +-- The cpqSeUSBDevice group lists the USB Devices in the system. +-- +-- Implementation of the cpqSeUSBDevice group is optional. +-- Support for the cpqSeUSBDevice group is MANDATORY for all systems that +-- contain a USB bus. +-- +-- **************************************************************************** + + cpqSeUSBDeviceType OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "Attached USB device type." + ::= { cpqSeUSBDevice 1 } + + cpqSeUSBDeviceName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS optional + DESCRIPTION + "Attached USB device name." + ::= { cpqSeUSBDevice 2 } + + +-- **************************************************************************** +-- Standard Equipment MIB Trap Definitions +-- ======================================= +-- +-- The SNMP trap messages must not be bigger than 484 octets (bytes). +-- +-- Trap support in an SNMP agent implementation is optional. An SNMP +-- agent implementation may support all, some, or none of the traps. +-- If traps are supported, The user should be provided with the option of +-- disabling traps. +-- ************************************************************************** +-- Deprecated in 7.20 trap 1005 is the replacement + cpqSeCpuThresholdPassed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuSlot, cpqSeCpuSocketNumber} + DESCRIPTION + "This trap is sent when an internal CPU error threshold has been + passed on a particular CPU causing it to go degraded. This trap + will be sent when cpqSeCpuThreshPassed transitions from false to + true." + + --#TYPE "CPU error threshold passed (1001)" + --#SUMMARY "CPU internal corrected errors have passed a set threshold." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1001 + + cpqSePCCardThermalDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardDeviceInfo, + cpqSePCCardProductInfo, cpqSePCCardSlotIndex } + DESCRIPTION + "This trap is sent when the PC Card Slot Thermal Sensor threshold has been + exceeded for safe operations thereby causing degraded operations. This trap + will be sent when cpqSePCCardStatus transitions from Normal (1) to Thermal + Degraded (2). + The manufacturer and product information strings as well as the slot number + for the degraded PC Card is provided as parameters for this trap." + --#TYPE "PC Card Thermal Degraded Status (1002)" + --#SUMMARY "Safe PC Card %d Thermal operating conditions exceeded." + --#ARGUMENTS {4} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + ::= 1002 + + + cpqSePCCardThermalFailure TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardDeviceInfo, + cpqSePCCardProductInfo, cpqSePCCardSlotIndex } + DESCRIPTION + "This trap is sent when the PC Card Slot Thermal Sensor threshold has been + exceeded for degraded operations thereby causing failed operations. + This trap will be sent when cpqSePCCardStatus transitions from Thermal Degraded + (2) to Thermal Failure (3). + The manufacturer and product information strings as well as the slot number + for the failed PC Card is provided as parameters for this trap." + --#TYPE "PC Card Thermal Failure Status (1003)" + --#SUMMARY "Degraded PC Card %d Thermal operating conditions exceeded." + --#ARGUMENTS {4} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + ::= 1003 + + cpqSePCCardThermalSafe TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSePCCardSlotIndex } + DESCRIPTION + "This trap is sent when the PC Card Slot Thermal Sensor threshold has been + crossed which restored the thermal status to normal operations. This trap will be sent + when cpqSePCCardStatus transitions from Thermal Degraded (2) or Thermal Failure + (3) to Normal (1). + The number of the recovered PC Card slot is provided as a parameter for this trap." + --#TYPE "PC Card Thermal Safe Operations Status (1004)" + --#SUMMARY "Degraded/Failed PC Card %d Thermal conditions restored to Safe operations." + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + ::= 1004 + +-- Updated for 7.20 trap replaced 1001 + cpqSe2CpuThresholdPassed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuSlot, cpqSeCpuSocketNumber, + cpqSeCpuSpeed, cpqSeCpuExtSpeed, cpqSeCpuCacheSize} + DESCRIPTION + "This trap is sent when an internal CPU error threshold has been + passed on a particular CPU causing it to go degraded. This trap + will be sent when cpqSeCpuThreshPassed transitions from false to + true." + + --#TYPE "CPU error threshold passed (1005)" + --#SUMMARY "CPU internal corrected errors have passed a set threshold." + --#ARGUMENTS {} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1005 + +cpqSeCpuStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuUnitIndex, + cpqSeCpuSlot, cpqSeCpuName, cpqSeCpuSpeed, + cpqSeCpuStep, cpqSeCpuStatus, + cpqSeCpuExtSpeed, cpqSeCpuSocketNumber, + cpqSeCpuHwLocation} + DESCRIPTION + "This trap is sent when CPU status changed. + + CPU can be brought down to Stop state and removed + from O.S Active set or Brought back to Running state + and made member of O.S Active set. + + User Action: None." + + --#TYPE "Processor Monitor Event Trap" + --#SUMMARY "Processor in Slot %d status change to %d" + --#ARGUMENTS {4, 8} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 1006 + +cpqSeCpuPowerPodstatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSeCpuUnitIndex, + cpqSeCpuSlot, cpqSeCpuName, cpqSeCpuSpeed, + cpqSeCpuStep, cpqSeCpuPowerpodStatus, + cpqSeCpuExtSpeed, cpqSeCpuSocketNumber, + cpqSeCpuHwLocation} + DESCRIPTION + "This Trap is sent if CPU Power Pod status changes. + + User Action: None." + + --#TYPE "Processor Monitor Event Trap" + --#SUMMARY "Processor in Slot %d Power supply status is %d" + --#ARGUMENTS {4, 8} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + + ::= 1007 + + cpqSeUSBStorageDeviceAttached TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBDeviceType, cpqSeUSBDeviceName } + DESCRIPTION + "This trap is sent when a USB storage device has been attached " + + --#TYPE "USB storage device attached (1008)" + --#SUMMARY "A USB storage device has been attached to the system." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1008 + + cpqSeUSBStorageDeviceRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSeUSBDeviceType, cpqSeUSBDeviceName } + DESCRIPTION + "This trap is sent when a attached USB storage device is removed " + + --#TYPE "USB storage device removed (1009)" + --#SUMMARY "A USB storage device has been removed from the system." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1009 + +END diff --git a/pandora_console/attachment/mibs/CPQSTSYS-MIB b/pandora_console/attachment/mibs/CPQSTSYS-MIB new file mode 100644 index 0000000000..f71abfe9fe --- /dev/null +++ b/pandora_console/attachment/mibs/CPQSTSYS-MIB @@ -0,0 +1,4058 @@ +-- **************************************************************************** +-- +-- Storage Systems +-- Management Information Base for SNMP Network Management +-- +-- +-- Copyright 1992,2007 Hewlett-Packard Development Company, L.P. +-- Hewlett-Packard Company shall not be liable for technical or +-- editorial errors or omissions contained herein. The information in +-- this document is provided "as is" without warranty of any kind and +-- is subject to change without notice. The warranties for HP products +-- are set forth in the express limited warranty statements +-- accompanying such products. Nothing herein should be construed as +-- constituting an additional warranty. +-- +-- Confidential computer software. Valid license from HP required for +-- possession, use or copying. Consistent with FAR 12.211 and 12.212, +-- Commercial Computer Software, Computer Software Documentation, and +-- Technical Data for Commercial Items are licensed to the U.S. +-- Government under vendor's standard commercial license. +-- +-- Refer to the READMIB.RDM file for more information about the +-- organization of the information in the Compaq Enterprise. +-- +-- The Compaq Enterprise number is 232. +-- The ASN.1 prefix to, and including the Compaq Enterprise is: +-- 1.3.6.1.4.1.232 +-- +-- **************************************************************************** + +CPQSTSYS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + compaq FROM CPQHOST-MIB +-- enterprises FROM RFC1155-SMI + Counter FROM RFC1155-SMI + DisplayString FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212 + TRAP-TYPE FROM RFC-1215 + sysName FROM RFC1213-MIB + cpqHoTrapFlags FROM CPQHOST-MIB; + +-- compaq OBJECT IDENTIFIER ::= { enterprises 232 } + + cpqSsStorageSys OBJECT IDENTIFIER ::= { compaq 8 } + cpqSsMibRev OBJECT IDENTIFIER ::= { cpqSsStorageSys 1 } + cpqSsDrvBox OBJECT IDENTIFIER ::= { cpqSsStorageSys 2 } + cpqSsTrap OBJECT IDENTIFIER ::= { cpqSsStorageSys 3 } + cpqSsRaidSystem OBJECT IDENTIFIER ::= { cpqSsStorageSys 4 } + cpqSsBoxExtended OBJECT IDENTIFIER ::= { cpqSsDrvBox 2 } + +-- **************************************************************************** +-- Storage System MIB Revision +-- =========================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsMibRev Group (1.3.6.1.4.1.232.8.1) +-- +-- +-- An agent conforming to this document will return a cpqSsMibRevMajor +-- of one (1) and a cpqSsMibRevMinor of thirty one (31). +-- +-- Implementation of the MibRev group is mandatory. +-- +-- **************************************************************************** + + cpqSsMibRevMajor OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Major Revision level. + A change in the major revision level represents a major change in + the architecture of the MIB. A change in the major revision level + may indicate a significant change in the information supported + and/or the meaning of the supported information, correct + interpretation of data may require a MIB document with the same + major revision level." + ::= { cpqSsMibRev 1 } + + cpqSsMibRevMinor OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Minor Revision level. + A change in the minor revision level may represent some minor + additional support; no changes to any pre-existing information + has occurred." + ::= { cpqSsMibRev 2 } + + cpqSsMibCondition OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The overall condition (status) of the system represented by + this MIB." + ::= { cpqSsMibRev 3 } + +-- **************************************************************************** +-- Storage System Drive Box Group +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsDrvBoxTable (1.3.6.1.4.1.232.8.2.1) +-- +-- Implementation of the Drive Box group is mandatory. +-- +-- **************************************************************************** + + cpqSsDrvBoxTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsDrvBoxEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Drive Box Table." + ::= { cpqSsDrvBox 1 } + + cpqSsDrvBoxEntry OBJECT-TYPE + SYNTAX CpqSsDrvBoxEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Drive Box Entry." + INDEX { cpqSsBoxCntlrIndex, cpqSsBoxBusIndex } + ::= { cpqSsDrvBoxTable 1 } + + CpqSsDrvBoxEntry ::= SEQUENCE + { + cpqSsBoxCntlrIndex INTEGER, + cpqSsBoxBusIndex INTEGER, + cpqSsBoxType INTEGER, + cpqSsBoxModel DisplayString, + cpqSsBoxFWRev DisplayString, + cpqSsBoxVendor DisplayString, + cpqSsBoxFanStatus INTEGER, + cpqSsBoxCondition INTEGER, + cpqSsBoxTempStatus INTEGER, + cpqSsBoxSidePanelStatus INTEGER, + cpqSsBoxFltTolPwrSupplyStatus INTEGER, + cpqSsBoxBackPlaneVersion INTEGER, + cpqSsBoxTotalBays INTEGER, + cpqSsBoxPlacement INTEGER, + cpqSsBoxDuplexOption INTEGER, + cpqSsBoxBoardRevision INTEGER, + cpqSsBoxSerialNumber DisplayString, + cpqSsBoxCntlrHwLocation DisplayString, + cpqSsBoxBackplaneSpeed INTEGER, + cpqSsBoxConnectionType INTEGER, + cpqSsBoxHostConnector DisplayString, + cpqSsBoxBoxOnConnector INTEGER, + cpqSsBoxLocationString DisplayString + } + + cpqSsBoxCntlrIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Controller Index. + + The controller index indicates to which adapter card instance + this table entry belongs." + ::= { cpqSsDrvBoxEntry 1 } + + cpqSsBoxBusIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Bus Index. + + The bus index indicates to which bus instance on an adapter card + this table entry belongs." + ::= { cpqSsDrvBoxEntry 2 } + + cpqSsBoxType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + proLiant(2), + proLiant2(3), + proLiant2Internal(4), + proLiant2DuplexTop(5), + proLiant2DuplexBottom(6), + proLiant2InternalDuplexTop(7), + proLiant2InternalDuplexBottom(8) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Drive Box Type. + + This is the type of drive box. The following types are defined: + + other(1) + The agent does not recognize this drive storage system. + + proLiant(2) + This is a ProLiant Storage System. + + proLiant2(3) + This is a ProLiant-2 Storage System. + + proLiant2Internal(4) + This is an internal ProLiant-2 Storage System that is found + in some servers. + + proLiant2DuplexTop(5) + This is the top portion of a ProLiant-2 Storage System that + has dual SCSI busses which are duplexed. + + proLiant2DuplexBottom(6) + This is the bottom portion of a ProLiant-2 Storage System that + has dual SCSI busses which are duplexed. + + proLiant2InternalDuplexTop(7) + This is the top portion of a ProLiant Server into which the + internal SCSI busses are duplexed. + + proLiant2InternalDuplexBottom(8) + This is the bottom portion of a ProLiant Server into which the + internal SCSI busses are duplexed." + ::= { cpqSsDrvBoxEntry 3 } + + cpqSsBoxModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..17)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Model. + + This is a description of the drive box's model. + This can be used for identification purposes." + ::= { cpqSsDrvBoxEntry 4 } + + cpqSsBoxFWRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Firmware Revision. + + This is the revision level of the drive box. + This can be used for identification purposes." + ::= { cpqSsDrvBoxEntry 5 } + + cpqSsBoxVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..9)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Vendor + + This is the drive box's vendor name. + This can be used for identification purposes." + ::= { cpqSsDrvBoxEntry 6 } + + cpqSsBoxFanStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + failed(3), + noFan(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Fan Status. + + This is the current status of the fans in the drive box. + This value will be one of the following: + other(1) + Fan monitoring is not supported by this system + or it is not supported by the driver. + + ok(2) + All fans are working normally. + + failed(3) + One or more storage system fans have failed. The fan(s) should + be replaced immediately to avoid hardware damage. + + noFan(4) + This unit does not support fan monitoring. + + degraded(5) + At least one storage system fan has failed, but there is still + sufficient cooling capacity to allow the system to continue. + The fan should be replaced." + + ::= { cpqSsDrvBoxEntry 7 } + + cpqSsBoxCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SCSI Drive Box Condition. + + This is the overall condition of the drive box. + The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The storage system is operating normally. No user + action is required. + + degraded(3) + The storage system is degraded. You need to check the + temperature status or power supply status of this + storage system. Additionally, if the side panel for + the storage system is removed, the air flow changes + could result in improper cooling of the drives and affect + the temperature status. + + failed(4) + The storage system has failed." + ::= { cpqSsDrvBoxEntry 8 } + + cpqSsBoxTempStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4), + noTemp(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The temperature of the drive system. + + This value will be one of the following: + other(1) + Temperature monitoring is not supported by this system + or it is not supported by the driver. + + ok(2) + The temperature is within normal operating range. + + degraded(3) + The temperature is outside of normal operating range. + + failed(4) + The temperature could permanently damage the system. + The storage system will automatically shutdown if this + condition is detected. + + noTemp(5) + This unit does not support temperature monitoring." + + ::= { cpqSsDrvBoxEntry 9 } + + cpqSsBoxSidePanelStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + sidePanelInPlace(2), + sidePanelRemoved(3), + noSidePanelStatus(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Side Panel Status. + + This value will be one of the following: + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + sidePanelInPlace(2) + The side panel is properly installed on the storage system. + + sidePanelRemoved(3) + The side panel is not properly installed on the storage system. + + noSidePanelStatus(4) + This unit does not support side panel status monitoring." + + ::= { cpqSsDrvBoxEntry 10 } + + cpqSsBoxFltTolPwrSupplyStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4), + noFltTolPower(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value specifies the overall status of the fault tolerant + power supply sub-system in a drive box. + + This value will be one of the following: + other(1) + The power supply status cannot be determined. + + ok(2) + There are no detected power supply failures. + + degraded(3) + One of the power supply units in a fault tolerant power + supply has failed. + + failed(4) + No failure conditions can currently be determined. + + noFltTolPower(5) + This unit does not support fault tolerant power supply + monitoring." + + ::= { cpqSsDrvBoxEntry 11 } + + cpqSsBoxBackPlaneVersion OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + proLiant(2), + proLiant2(3), + proLiant3(4), + proLiant4(5), + proLiant5(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Back Plane Version. + + This is the version of the drive box back plane. The following + types are defined: + + other(1) + The agent does not recognize this drive storage system back + plane. + + proLiant(2) + This is a ProLiant Storage System. + + proLiant2(3) + This is a ProLiant-2 Storage System. + + proLiant3(4) + This is a ProLiant-3 Storage System. + + proLiant4(5) + This is a 4th generation Proliant Storage System. + + proLiant5(6) + This is a 5th generation ProLiant Storage System." + ::= { cpqSsDrvBoxEntry 12 } + + + cpqSsBoxTotalBays OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Total Bays. + + This is the total number of bays in this storage system." + ::= { cpqSsDrvBoxEntry 13 } + + + cpqSsBoxPlacement OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + internal(2), + external(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Placement. + + The following values are defined: + + other(1) + The agent is unable to determine if this storage system is + located internal or external to the system chassis. + + internal(2) + The storage system is located in the system chassis. + + external(3) + The storage system is located outside the system chassis + in an expansion box." + ::= { cpqSsDrvBoxEntry 14 } + + + cpqSsBoxDuplexOption OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notDuplexed(2), + duplexTop(3), + duplexBottom(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Duplex Option. + + The following values are defined: + + other(1) + The agent is unable to determine if this storage system is + duplexed. + + notDuplexed(2) + This storage system is not duplexed. + + duplexTop(3) + This is the top portion of a duplexed storage system. + + duplexBottom(4) + This is the bottom portion of a duplexed storage system." + ::= { cpqSsDrvBoxEntry 15 } + + cpqSsBoxBoardRevision OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Board Revision. + + This is the board revision of this storage system backplane." + ::= { cpqSsDrvBoxEntry 16 } + + cpqSsBoxSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Serial Number. + + This is the drive box's serial number which is normally display + on the front panel. This can be used for identification + purposes." + ::= { cpqSsDrvBoxEntry 17 } + + cpqSsBoxCntlrHwLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A text description of the hardware location of the controller + to which this box is attached. A NULL string indicates that + the hardware location could not be determined or is irrelevant." + ::= { cpqSsDrvBoxEntry 18 } + + cpqSsBoxBackplaneSpeed OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ultra3(2), + ultra320(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Backplane Speed. + + The following values are defined: + + other(1) + The agent is unable to determine the backplane speed for this + storage system. + + ultra3(2) + This storage system is capable of Ultra3 speeds. + + ultra320(3) + This storage system is capable of Ultra320 speeds." + ::= { cpqSsDrvBoxEntry 19 } + + cpqSsBoxConnectionType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + scsiAttached(2), + sasAttached(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Connection Type. + + The following values are defined: + + other(1) + The agent is unable to determine the type of connection to + this storage system. + + scsiAttached(2) + This storage system is attached to the host via SCSI. + + sasAttached(3) + This storage system is attached to the host via SAS." + ::= { cpqSsDrvBoxEntry 20 } + + cpqSsBoxHostConnector OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Host Connector. + + This is the host connector to which the drive box is attached. + If the host connector cannot be determined, the agent will + return a NULL string." + ::= { cpqSsDrvBoxEntry 21 } + + cpqSsBoxBoxOnConnector OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box, Box on Connector. + + The box on connector indicates which box instance this table + entry belongs. The instances start at one and increment for + each box attached to a connector. If the value cannot be + determined or does not apply, -1 is returned." + ::= { cpqSsDrvBoxEntry 22 } + + cpqSsBoxLocationString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Location String. + + This string describes the location of the drive box in relation + to the controller to which it is attached. If the location + string cannot be determined, the agent will return a NULL string." + ::= { cpqSsDrvBoxEntry 23 } + + +-- **************************************************************************** +-- Storage System Chassis Group +-- ============================ +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsChassisTable (1.3.6.1.4.1.232.8.2.2.1) +-- +-- **************************************************************************** + + cpqSsChassisTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsChassisEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Chassis Table." + ::= { cpqSsBoxExtended 1 } + + cpqSsChassisEntry OBJECT-TYPE + SYNTAX CpqSsChassisEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Chassis Entry." + INDEX { cpqSsChassisIndex } + ::= { cpqSsChassisTable 1 } + + CpqSsChassisEntry ::= SEQUENCE + { + cpqSsChassisIndex INTEGER, + cpqSsChassisConnectionType INTEGER, + cpqSsChassisSerialNumber DisplayString, + cpqSsChassisName DisplayString, + cpqSsChassisSystemBoardSerNum DisplayString, + cpqSsChassisSystemBoardRev DisplayString, + cpqSsChassisPowerBoardSerNum DisplayString, + cpqSsChassisPowerBoardRev DisplayString, + cpqSsChassisScsiBoardSerNum DisplayString, + cpqSsChassisScsiBoardRev DisplayString, + cpqSsChassisOverallCondition INTEGER, + cpqSsChassisPowerSupplyCondition INTEGER, + cpqSsChassisFanCondition INTEGER, + cpqSsChassisTemperatureCondition INTEGER, + cpqSsChassisFcaCntlrCondition INTEGER, + cpqSsChassisFcaLogicalDriveCondition INTEGER, + cpqSsChassisFcaPhysDrvCondition INTEGER, + cpqSsChassisTime INTEGER, + cpqSsChassisModel INTEGER, + cpqSsChassisBackplaneCondition INTEGER, + cpqSsChassisFcaTapeDrvCondition INTEGER, + cpqSsChassisRsoStatus INTEGER, + cpqSsChassisRsoCondition INTEGER, + cpqSsChassisScsiIoModuleType INTEGER, + cpqSsChassisPreferredPathMode INTEGER, + cpqSsChassisProductId DisplayString + } + + cpqSsChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Index. + + The chassis index uniquely identifies a storage system chassis." + ::= { cpqSsChassisEntry 1 } + + cpqSsChassisConnectionType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + fibreAttached(2), + scsiAttached(3), + iScsiAttached(4), + sasAttached(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Connection Type. + + The following values are defined: + + other(1) + The agent is unable to determine the type of connection to + this chassis. + + fibreAttached(2) + This chassis is attached to the server via Fibre Channel. + + scsiAttached(3) + This chassis is attached to the server via SCSI. + + iScsiAttached(4) + This chassis is attached to the server via iSCSI. + + sasAttached(5) + This chassis is attached to the server via SAS." + ::= { cpqSsChassisEntry 2 } + + cpqSsChassisSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Serial Number. + + This is the storage system chassis's serial number which is normally + displayed on the front panel. This can be used for identification + purposes." + ::= { cpqSsChassisEntry 3 } + + cpqSsChassisName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Name. + + This is a user defined name for this storage system chassis." + ::= { cpqSsChassisEntry 4 } + + cpqSsChassisSystemBoardSerNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis System Controller Board Serial Number. + + This is the system controller board's serial number. This can be + used for identification purposes." + ::= { cpqSsChassisEntry 5 } + + cpqSsChassisSystemBoardRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis System Controller Board Revision. + + This is the system controller board revision." + ::= { cpqSsChassisEntry 6 } + + cpqSsChassisPowerBoardSerNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Power Backplane Board Serial Number. + + This is the power backplane board's serial number. This can be used + for identification purposes." + ::= { cpqSsChassisEntry 7 } + + cpqSsChassisPowerBoardRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Power Backplane Board Revision. + + This is the power backplane board revision." + ::= { cpqSsChassisEntry 8 } + + cpqSsChassisScsiBoardSerNum OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis SCSI Drive Backplane Board Serial + Number. + + This is the SCSI drive backplane board's serial number. This can be + used for identification purposes." + ::= { cpqSsChassisEntry 9 } + + cpqSsChassisScsiBoardRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis SCSI Drive Backplane Board Revision. + + This is the SCSI drive backplane board revision." + ::= { cpqSsChassisEntry 10 } + + cpqSsChassisOverallCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Overall Condition. + + This is the condition of the storage system chassis and all of its + components. The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The storage system is operating normally. No user + action is required. + + degraded(3) + The storage system chassis is degraded. + + failed(4) + The storage system chassis is failed." + ::= { cpqSsChassisEntry 11 } + + cpqSsChassisPowerSupplyCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Condition. + + This is the aggregate condition of all power supplies in + the storage system chassis. The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + All power supplies are operating normally. + + degraded(3) + At least one power supply is degraded or failed. + + failed(4) + All power supplies are failed." + ::= { cpqSsChassisEntry 12 } + + cpqSsChassisFanCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Condition. + + This is the aggregate condition of all fan modules in the + storage system chassis. The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + All fan modules are operating normally. + + degraded(3) + At least one fan module is degraded. + + failed(4) + At least one fan module is failed." + ::= { cpqSsChassisEntry 13 } + + cpqSsChassisTemperatureCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Condition. + + This is the aggregate condition of all the temperatur sensors + in the storage system chassis. The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + All temperature sensors are reading within normal limits. + + degraded(3) + At least one temperature sensor is reading degraded. + + failed(4) + At least one temperature sensor is reading failed." + ::= { cpqSsChassisEntry 14 } + + cpqSsChassisFcaCntlrCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Channel Array Controller Condition. + + This is the aggregate condition of all Fibre Channel Array controllers + in the storage system chassis. The following values are defined: + + other(1) + The condition cannot be determined or is not supported on + this storage system. + + ok(2) + All Fibre Channel Array Controllers are operating normally. + + degraded(3) + At least one Fibre Channel Array Controller is degraded or + failed. + + failed(4) + All Fibre Channel Array Controllers are failed." + ::= { cpqSsChassisEntry 15 } + + cpqSsChassisFcaLogicalDriveCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Channel Array Logical Drive Condition. + + This is the aggregate condition of all Fibre Channel Array Logical + Drives in this storage system chassis. + The following values are defined: + + other(1) + The condition cannot be determined or is not supported on + this storage system. + + ok(2) + All Fibre Channel Array Controllers Logical Drives are + operating normally. + + degraded(3) + At least one Fibre Channel Array Controller Logical Drive + is degraded. + + failed(4) + At least one Fibre Channel Array Controller Logical Drive + is failed." + ::= { cpqSsChassisEntry 16 } + + cpqSsChassisFcaPhysDrvCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Channel Array Physical Drive Condition. + + This is the aggregate condition of all Fibre Channel Array Physical + Drives in this storage system chassis. + The following values are defined: + + other(1) + The condition cannot be determined or is not supported on + this storage system. + + ok(2) + All Fibre Channel Array Controllers Physical Drives are + operating normally. + + degraded(3) + At least one Fibre Channel Array Controller Physical Drive + is degraded. + + failed(4) + At least one Fibre Channel Array Controller Physical Drive + is failed." + ::= { cpqSsChassisEntry 17 } + + cpqSsChassisTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Time. + + This is the storage system chassis's time in tenths of seconds. + If the chassis time is not supported, the agent will return 0." + ::= { cpqSsChassisEntry 18 } + + cpqSsChassisModel OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ra4x00(2), + msa1000(3), + smartArrayClusterStorage(4), + enterpriseModularArray(5), + enterpriseVirtualArray(6), + msa500G2(7), + msa20(8), + msa1500cs(9), + msa1510i(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Model. + + The following values are defined: + + other(1) + The agent is unable to determine the model of this chassis. + + ra4x00(2) + Compaq StorageWorks RAID Array 4000/4100. + + msa1000(3) + Compaq StorageWorks Modular Smart Array 1000. + + smartArrayClusterStorage(4) + HP StorageWorks Modular Smart Array 500 + (Formerly Smart Array Cluster Storage). + + enterpriseModularArray(5) + Compaq StorageWorks Enterprise/Modular RAID Array. + + enterpriseVirtualArray(6) + Compaq StorageWorks Enterprise Virtual Array. + + msa500G2(7) + HP StorageWorks Modular Smart Array 500 G2. + + msa20(8) + HP StorageWorks Modular Smart Array 20. + + msa1500cs(9) + HP StorageWorks Modular Smart Array 1500 CS. + + msa1510i(10) + HP StorageWorks Modular Smart Array 1510i. + + Reserved(11) + + Reserved(12)" + ::= { cpqSsChassisEntry 19 } + + cpqSsChassisBackplaneCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Condition. + + This is the aggregate condition of all the backplanes for the + storage system chassis. The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + All backplanes are operating normally. + + degraded(3) + At least one storage system is degraded. + + failed(4) + At least one storage system is failed." + ::= { cpqSsChassisEntry 20 } + + cpqSsChassisFcaTapeDrvCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Array Tape Drive Condition. + + This is the aggregate condition of all tape drives in this storage + system chassis. + The following values are defined: + + other(1) + The condition cannot be determined or is not supported on + this storage system. + + ok(2) + All tape drives are operating normally. + + degraded(3) + At least one tape drive is degraded. + + failed(4) + At least one tape drive is failed." + ::= { cpqSsChassisEntry 21 } + + cpqSsChassisRsoStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + notConfigured(3), + disabled(4), + daemonDownDisabled(5), + ok(6), + daemonDownActive(7), + noSecondary(8), + daemonDownNoSecondary(9), + linkDown(10), + daemonDownLinkDown(11), + secondaryRunningAuto(12), + secondaryRunningUser(13), + evTimeoutError(14) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Recovery Server Option Status. + + The following values are defined: + + other(1) + The recovery server option status cannot be determined for + this storage system. + + notSupported(2) + The recovery server option is not supported for this storage + system. + + notConfigured(3) + The recovery server option is supported, but is not + configured on this storage system. + + disabled(4) + The recovery server option is configured as primary, but + has been disabled by software. + + daemonDownDisabled(5) + The recovery server option operating system daemon is no + longer running. The last status of RSO was disabled(4). + + ok(6) + The recovery server option is configured as primary and + everything is working correctly. + + daemonDownActive(7) + The recovery server option operating system daemon is no + longer running. The last status of RSO was ok(6). + + noSecondary(8) + The recovery server option is configured as primary, but + communication with the standby server has not been established. + + daemonDownNoSecondary(9) + The recovery server option operating system daemon is no + longer running. The last status of RSO was noSecondary(8). + + linkDown(10) + The recovery server option is configured as primary, but + communication with the standby server has failed. + + daemonDownLinkDown(11) + The recovery server option operating system daemon is no + longer running. The last status of RSO was linkDown(10). + + secondaryRunningAuto(12) + The recovery server option is configured and the standby + server is running. The secondary server assumed control + after communication with the primary server failed. + + secondaryRunningUser(13) + The recovery server option is configured and the standby + server is running. A user forced the secondary server to + assume control. + + evTimeoutError(14) + The recovery server option environment variable cannot be + accessed." + ::= { cpqSsChassisEntry 22 } + + cpqSsChassisRsoCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Recovery Server Option Condition. + + This is the condition of the recovery server option. The + following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The recovery server option is operating normally. No user + action is required. + + degraded(3) + The recovery server option is degraded. + + failed(4) + The recovery server option is failed." + ::= { cpqSsChassisEntry 23 } + + cpqSsChassisScsiIoModuleType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + io2port(2), + io4portUpgradeFirmware(3), + io4port(4), + io2port320(5), + io4port320(6), + io1port320(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis SCSI I/O Module Type. + + The following values are defined: + + other(1) + The agent does not recognize SCSI I/O module type. You may + need to upgrade your software. + + io2port(2) + A 2-Port Ultra3 SCSI I/O Module is installed. + + io4portUpgradeFirmware(3) + A 4-Port Shared Storage Module for Smart Array Cluster Storage + is installed, but the current controller firmware does not + support it. Upgrade your controller firmware. + + io4port(4) + A 4-Port Shared Storage Module for Smart Array Cluster Storage + is installed. + + io2port320(5) + A 2-Port Ultra320 SCSI I/O Module is installed. + + io4port320(6) + A 4-Port Ultra320 SCSI I/O Module is installed. + + io1port320(7) + A 1-Port Ultra320 SCSI I/O Module is installed." + ::= { cpqSsChassisEntry 24 } + + cpqSsChassisPreferredPathMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notActiveActive(2), + automatic(3), + manual(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Array Controller Preferred Path Mode. + + This is the storage system active/active preferred path mode. + The following values are valid: + + other (1) + Indicates that the agent does not recognize the preferred path + mode of the storage system. You may need to upgrade the agent. + + notActiveActive (2) + The storage system is not configured as active/active. + + automatic (3) + The storage system automatically selects the preferred path + for each logical drive based on host I/O patterns. + + manual (4) + The preferred path for each logical drive is manually + configured by the storage system administrator." + ::= { cpqSsChassisEntry 25 } + + cpqSsChassisProductId OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Chassis Product Identifier. + + This is the storage system chassis's product identifier. This can + be used for identification purposes. If the product identifier can + not be determined, the agent will return a NULL string." + ::= { cpqSsChassisEntry 26 } + + +-- **************************************************************************** +-- Storage System I/O Slot Table +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsIoSlotTable (1.3.6.1.4.1.232.8.2.2.2) +-- +-- **************************************************************************** + + cpqSsIoSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsIoSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System I/O Slot Table." + ::= { cpqSsBoxExtended 2 } + + cpqSsIoSlotEntry OBJECT-TYPE + SYNTAX CpqSsIoSlotEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System I/O Slot Entry." + INDEX { cpqSsIoSlotChassisIndex, cpqSsIoSlotIndex } + ::= { cpqSsIoSlotTable 1 } + + CpqSsIoSlotEntry ::= SEQUENCE + { + cpqSsIoSlotChassisIndex INTEGER, + cpqSsIoSlotIndex INTEGER, + cpqSsIoSlotControllerType INTEGER + } + + cpqSsIoSlotChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System I/O Slot Chassis Index. + + The chassis index uniquely identifies a storage system chassis." + ::= { cpqSsIoSlotEntry 1 } + + cpqSsIoSlotIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System I/O Slot Index. + + This index uniquely identifies a storage system I/O Slot." + ::= { cpqSsIoSlotEntry 2 } + + cpqSsIoSlotControllerType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notInstalled(2), + unknownBoard(3), + fibreArray(4), + scsiArray(5), + noSlot(6), + iScsiArray(7), + sasArray(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System I/O Slot Controller Type. + + The following values are defined: + + other(1) + The agent is unable to determine if anything is installed in + this storage system I/O slot. + + notInstalled(2) + Nothing is installed in this storage system I/O slot. + + unknownBoardInstalled(3) + An unknown controller is installed in this storage system + I/O slot. + + fibreArray(4) + A Fibre Channel Array controller is installed in this storage + system I/O slot. + + scsiArray(5) + A SCSI Array controller is installed in this storage system + I/O slot. + + noSlot(6) + The slot does not exist on this chassis. + + iScsiArray(7) + An iSCSI Array controller is installed in this storage system + I/O slot. + + sasArray(8) + A SAS Array controller is installed in this storage system + I/O slot." + ::= { cpqSsIoSlotEntry 3 } + + +-- **************************************************************************** +-- Storage System Power Supply Table +-- ================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsPowerSupplyTable (1.3.6.1.4.1.232.8.2.2.3) +-- +-- **************************************************************************** + + cpqSsPowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsPowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Table." + ::= { cpqSsBoxExtended 3 } + + cpqSsPowerSupplyEntry OBJECT-TYPE + SYNTAX CpqSsPowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Entry." + INDEX { cpqSsPowerSupplyChassisIndex, cpqSsPowerSupplyIndex } + ::= { cpqSsPowerSupplyTable 1 } + + CpqSsPowerSupplyEntry ::= SEQUENCE + { + cpqSsPowerSupplyChassisIndex INTEGER, + cpqSsPowerSupplyIndex INTEGER, + cpqSsPowerSupplyBay INTEGER, + cpqSsPowerSupplyStatus INTEGER, + cpqSsPowerSupplyUpsStatus INTEGER, + cpqSsPowerSupplyCondition INTEGER, + cpqSsPowerSupplySerialNumber DisplayString, + cpqSsPowerSupplyBoardRevision DisplayString, + cpqSsPowerSupplyFirmwareRevision DisplayString + } + + cpqSsPowerSupplyChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Chassis Index. + + The chassis index uniquely identifies a storage system chassis." + ::= { cpqSsPowerSupplyEntry 1 } + + cpqSsPowerSupplyIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Bay. + + This index uniquely identifies a power supply bay." + ::= { cpqSsPowerSupplyEntry 2 } + + cpqSsPowerSupplyBay OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + powerBay1(2), + powerBay2(3), + composite(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Bay. + + The following values are defined: + + other(1) + The agent does not recognize the bay. You may need to upgrade + your software. + + powerBay1(2) + The power supply is installed in the first power supply bay. + + powerBay2(3) + The power supply is installed in the second power supply bay. + + composite(4) + The power supply information is a composite of all power + supplies in the storage system." + ::= { cpqSsPowerSupplyEntry 3 } + + cpqSsPowerSupplyStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notInstalled(2), + ok(3), + failed(4), + degraded(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Status. + + The following values are defined: + + other(1) + The agent is unable to determine if this storage system power + supply bay is occupied. + + notInstalled(2) + Nothing is installed in this power supply bay. + + ok(3) + A power supply is installed and operating normally. + + failed(4) + A power supply is installed and is no longer operating. + Replace the power supply. + + degraded(5) + For composite power supplies, this indicates that at least one + power supply has failed or lost power." + ::= { cpqSsPowerSupplyEntry 4 } + + cpqSsPowerSupplyUpsStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + noUps(2), + ok(3), + powerFailed(4), + batteryLow(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Uninterruptible Power Supply (UPS) + Status. + + The following values are defined: + + other(1) + The agent is unable to determine if this power supply is + attached to an Uninterruptible Power Supply (UPS). + + noUps(2) + No UPS is attached to the power supply. + + ok(3) + A UPS is attached to the power supply and is operating + normally. + + powerFailed(4) + A UPS is attached to the power supply and the AC power has + failed. + + batteryLow(5) + A UPS is attached to the power supply, the AC power has + failed and the UPS battery is low." + ::= { cpqSsPowerSupplyEntry 5 } + + cpqSsPowerSupplyCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Condition. + + This is the condition of the storage system chassis and all of + its components. The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The power supply is operating normally. No user action is + required. + + degraded(3) + The power supply is degraded. You need to check the power + supply or its attached UPS for problems. + + failed(4) + The power supply has failed." + ::= { cpqSsPowerSupplyEntry 6 } + + cpqSsPowerSupplySerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Serial Number. + + This is the power supply's serial number. This can be used + for identification purposes. If the serial number is not supported, + the agent will return a NULL string." + ::= { cpqSsPowerSupplyEntry 7 } + + cpqSsPowerSupplyBoardRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Board Revision. + + This is the power supply board revision. If the board revision is + not supported, the agent will return a NULL string." + ::= { cpqSsPowerSupplyEntry 8 } + + cpqSsPowerSupplyFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Power Supply Firmware Revision. + + This is the power supply firmware revision. If the firmware revision + is not supported, the agent will return a NULL string." + ::= { cpqSsPowerSupplyEntry 9 } + + +-- **************************************************************************** +-- Storage System Fan Module Table +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsFanModuleTable (1.3.6.1.4.1.232.8.2.2.4) +-- +-- **************************************************************************** + + cpqSsFanModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsFanModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Table." + ::= { cpqSsBoxExtended 4 } + + cpqSsFanModuleEntry OBJECT-TYPE + SYNTAX CpqSsFanModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Entry." + INDEX { cpqSsFanModuleChassisIndex, cpqSsFanModuleIndex } + ::= { cpqSsFanModuleTable 1 } + + CpqSsFanModuleEntry ::= SEQUENCE + { + cpqSsFanModuleChassisIndex INTEGER, + cpqSsFanModuleIndex INTEGER, + cpqSsFanModuleStatus INTEGER, + cpqSsFanModuleCondition INTEGER, + cpqSsFanModuleLocation INTEGER, + cpqSsFanModuleSerialNumber DisplayString, + cpqSsFanModuleBoardRevision DisplayString + } + + cpqSsFanModuleChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Chassis Index. + + The chassis index uniquely identifies a storage system chassis." + ::= { cpqSsFanModuleEntry 1 } + + cpqSsFanModuleIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Index. + + This index uniquely identifies a storage system fan module." + ::= { cpqSsFanModuleEntry 2 } + + cpqSsFanModuleStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notInstalled(2), + ok(3), + degraded(4), + failed(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Status. + + The following values are defined: + + other(1) + The agent is unable to determine if this storage system fan + module is installed. + + notInstalled(3) + The fan module is not installed. + + ok(2) + The fan module is installed and operating normally. + + degraded(4) + The fan module degraded. + + failed(5) + The fan module is failed. Replace the fan module." + ::= { cpqSsFanModuleEntry 3 } + + cpqSsFanModuleCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Condition. + + This is the condition of the storage system fan module. + The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The fan module is operating normally. No user action is + required. + + degraded(3) + The fan module is degraded. You need to check the fan module + for problems. + + failed(4) + The fan module has failed. Replace the fan module." + ::= { cpqSsFanModuleEntry 4 } + + cpqSsFanModuleLocation OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + fanBay(2), + composite(3), + fanBay2(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Location. + + The following values are defined: + + other(1) + The agent is unable to determine the location of this storage + system fan module. + + fanBay(2) + This fan module is installed in the first fan bay. + + composite(3) + The fan information is a composite of all fans in the storage + system. + + fanBay2(4) + This fan module is installed in the second fan bay." + ::= { cpqSsFanModuleEntry 5 } + + cpqSsFanModuleSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Serial Number. + + This is the fan module's serial number. This can be used + for identification purposes." + ::= { cpqSsFanModuleEntry 6 } + + cpqSsFanModuleBoardRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Board Revision. + + This is the fan module board revision." + ::= { cpqSsFanModuleEntry 7 } + + +-- **************************************************************************** +-- Storage System Temperature Sensor Table +-- ======================================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsTempSensorTable (1.3.6.1.4.1.232.8.2.2.5) +-- +-- **************************************************************************** + + cpqSsTempSensorTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsTempSensorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Table." + ::= { cpqSsBoxExtended 5 } + + cpqSsTempSensorEntry OBJECT-TYPE + SYNTAX CpqSsTempSensorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Entry." + INDEX { cpqSsTempSensorChassisIndex, cpqSsTempSensorIndex } + ::= { cpqSsTempSensorTable 1 } + + CpqSsTempSensorEntry ::= SEQUENCE + { + cpqSsTempSensorChassisIndex INTEGER, + cpqSsTempSensorIndex INTEGER, + cpqSsTempSensorStatus INTEGER, + cpqSsTempSensorCondition INTEGER, + cpqSsTempSensorLocation INTEGER, + cpqSsTempSensorCurrentValue INTEGER, + cpqSsTempSensorLimitValue INTEGER, + cpqSsTempSensorHysteresisValue INTEGER + } + + cpqSsTempSensorChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Chassis Index. + + The chassis index uniquely identifies a storage system chassis." + ::= { cpqSsTempSensorEntry 1 } + + cpqSsTempSensorIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Index. + + This index uniquely identifies a temperature sensor." + ::= { cpqSsTempSensorEntry 2 } + + cpqSsTempSensorStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Status. + + The following values are defined: + + other(1) + The agent is unable to determine if the storage system + temperature sensor status. + + ok(2) + The temperature is OK. + + degraded(3) + The temperature is degraded. + + failed(4) + The temperature is failed." + ::= { cpqSsTempSensorEntry 3 } + + cpqSsTempSensorCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Condition. + + This is the condition of the storage system temperature sensor. + The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The temperature is within normal operating range. No user + action is required. + + degraded(3) + The temperature is outside of normal operating range. + + failed(4) + The temperature could permanently damage the system. + The storage system will automatically shutdown if this + condition is detected." + ::= { cpqSsTempSensorEntry 4 } + + cpqSsTempSensorLocation OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + fanBay(2), + backplane(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fan Module Location. + + The following values are defined: + + other(1) + The agent is unable to determine the location of this storage + system temperature sensor. + + fanBay(2) + This temperature sensor is located on the fan module in the + fan bay. + + backplane(3) + This temperature is located on the SCSI drive backplane." + ::= { cpqSsTempSensorEntry 5 } + + cpqSsTempSensorCurrentValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Current Value. + + The current value of the temperature sensor in degrees Celsius." + ::= { cpqSsTempSensorEntry 6 } + + cpqSsTempSensorLimitValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Limit Value. + + The limit value of the temperature sensor in degrees Celsius." + ::= { cpqSsTempSensorEntry 7 } + + cpqSsTempSensorHysteresisValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Temperature Sensor Hysteresis Value. + + The hysteresis value of the temperature sensor in degrees Celsius." + ::= { cpqSsTempSensorEntry 8 } + + +-- **************************************************************************** +-- Storage System SCSI Backplane Table +-- =================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsBackplaneTable (1.3.6.1.4.1.232.8.2.2.6) +-- +-- **************************************************************************** + + cpqSsBackplaneTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsBackplaneEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System SCSI Backplane Table." + ::= { cpqSsBoxExtended 6 } + + cpqSsBackplaneEntry OBJECT-TYPE + SYNTAX CpqSsBackplaneEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System SCSI Backplane Entry." + INDEX { cpqSsBackplaneChassisIndex, cpqSsBackplaneIndex } + ::= { cpqSsBackplaneTable 1 } + + CpqSsBackplaneEntry ::= SEQUENCE + { + cpqSsBackplaneChassisIndex INTEGER, + cpqSsBackplaneIndex INTEGER, + cpqSsBackplaneFWRev DisplayString, + cpqSsBackplaneDriveBays INTEGER, + cpqSsBackplaneDuplexOption INTEGER, + cpqSsBackplaneCondition INTEGER, + cpqSsBackplaneVersion INTEGER, + cpqSsBackplaneVendor DisplayString, + cpqSsBackplaneModel DisplayString, + cpqSsBackplaneFanStatus INTEGER, + cpqSsBackplaneTempStatus INTEGER, + cpqSsBackplaneFtpsStatus INTEGER, + cpqSsBackplaneSerialNumber DisplayString, + cpqSsBackplanePlacement INTEGER, + cpqSsBackplaneBoardRevision INTEGER, + cpqSsBackplaneSpeed INTEGER, + cpqSsBackplaneConnectionType INTEGER, + cpqSsBackplaneConnector DisplayString, + cpqSsBackplaneOnConnector INTEGER, + cpqSsBackplaneLocationString DisplayString + } + + cpqSsBackplaneChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Chassis Index. + + The chassis index uniquely identifies a storage system chassis." + ::= { cpqSsBackplaneEntry 1 } + + cpqSsBackplaneIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Index. + + This index uniquely identifies a storage system backplane." + ::= { cpqSsBackplaneEntry 2 } + + cpqSsBackplaneFWRev OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Firmware Revision. + + This is the revision level of storage system backplane." + ::= { cpqSsBackplaneEntry 3 } + + cpqSsBackplaneDriveBays OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Drive Bays. + + This is the number of bays on this storage system backplane." + ::= { cpqSsBackplaneEntry 4 } + + cpqSsBackplaneDuplexOption OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notDuplexed(2), + duplexTop(3), + duplexBottom(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Duplex Option. + + The following values are defined: + + other (1) + The agent is unable to determine if this storage + system is duplexed. + + notDuplexed(2) + This storage system is not duplexed. + + duplexTop(3) + This is the top portion of a duplexed storage system. + + duplexBottom(4) + This is the bottom portion of a duplexed storage system." + ::= { cpqSsBackplaneEntry 5 } + + cpqSsBackplaneCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Condition. + + This is the overall condition of the backplane. + The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The storage system is operating normally. No user + action is required. + + degraded(3) + The storage system is degraded. You need to check the + temperature status or power supply status of this + storage system. + + failed(4) + The storage system has failed." + ::= { cpqSsBackplaneEntry 6 } + + cpqSsBackplaneVersion OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Version. + + This is the version of the drive box back plane." + ::= { cpqSsBackplaneEntry 7 } + + cpqSsBackplaneVendor OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..9)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Vendor + + This is the storage box's vendor name. + This can be used for identification purposes." + ::= { cpqSsBackplaneEntry 8 } + + cpqSsBackplaneModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..17)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Model. + + This is a description of the storage system's model. + This can be used for identification purposes." + ::= { cpqSsBackplaneEntry 9 } + + cpqSsBackplaneFanStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notInstalled(2), + ok(3), + degraded(4), + failed(5), + notSupported(6), + degraded-Fan1Failed(7), + degraded-Fan2Failed(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Fan Status. + + This is the current status of the fans in the storage system. + This value will be one of the following: + + other(1) + The agent is unable to determine if this storage system has + fan monitoring. + + notInstalled(2) + This unit does not support fan monitoring. + + ok(3) + All fans are working normally. + + degraded(4) + At least one storage system fan has failed, but there is still + sufficient cooling capacity to allow the system to continue. + The fan should be replaced. + + failed(5) + One or more storage system fans have failed. The fan(s) should + be replaced immediately to avoid hardware damage. + + notSupported(6) + The storage system does not support reporting fan status + through this backplane. The fan status is reported through the + first backplane on this storage system. + + degraded-Fan1Failed(7) + Fan 1 has failed, but there is still sufficient cooling + capacity to allow the system to continue. The fan should be + replaced. + + degraded-Fan2Failed(8) + Fan 2 has failed, but there is still sufficient cooling + capacity to allow the system to continue. The fan should be + replaced." + + ::= { cpqSsBackplaneEntry 10 } + + cpqSsBackplaneTempStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + noTemp(2), + ok(3), + degraded(4), + failed(5), + notSupported(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Fan Status. + + This value will be one of the following: + + other(1) + The agent is unable to determine if this storage system has + temperature monitoring. + + noTemp(2) + This unit does not support temperature monitoring. + + ok(3) + The temperature is within normal operating range. + + degraded(4) + The temperature is outside of normal operating range. + + failed(5) + The temperature could permanently damage the system. + + notSupported(6) + The storage system does not support reporting temperature + status through this backplane. The temperature status is + reported through the first backplane on this storage system." + ::= { cpqSsBackplaneEntry 11 } + + cpqSsBackplaneFtpsStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + noFltTolPower(2), + ok(3), + degraded(4), + failed(5), + notSupported(6), + noFltTolPower-Bay1Missing(7), + noFltTolPower-Bay2Missing(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Fault Tolerant Power Supply Status. + + This value specifies the overall status of the redundant power + supply in a drive box. This value will be one of the following: + + other(1) + The agent is unable to determine if this storage system has + redundant power supplies. + + noFltTolPower(2) + This unit does not have a redundant supply. + + ok(3) + There are no detected power supply failures. + + degraded(4) + One of the power supply units has failed. + + failed(5) + All of the power supplies have failed. A status of failed can + not currently be determined. + + notSupported(6) + The storage system does not support reporting fault tolerant + power supply status through this backplane. The fault tolerant + power supply status is reported through the first backplane on + this storage system. + + noFltTolPower-Bay1Missing(7), + This unit does not have a redundant supply. The power supply + in bay 1 is missing. + + noFltTolPower-Bay2Missing(8) + This unit does not have a redundant supply. The power supply + in bay 2 is missing." + ::= { cpqSsBackplaneEntry 12 } + + cpqSsBackplaneSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Serial Number. + + This is the storage system backplane serial number which is normally + displayed on the front bezel. This can be used for identification + purposes." + ::= { cpqSsBackplaneEntry 13 } + + cpqSsBackplanePlacement OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + internal(2), + external(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Placement. + + The following values are defined: + + other(1) + The agent is unable to determine if this storage system is + located internal or external to the system chassis. + + internal(2) + The storage system is located in the system chassis. + + external(3) + The storage system is located outside the system chassis + in an expansion box." + ::= { cpqSsBackplaneEntry 14 } + + cpqSsBackplaneBoardRevision OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Board Revision. + + This is the board revision of this storage system backplane." + ::= { cpqSsBackplaneEntry 15 } + + cpqSsBackplaneSpeed OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ultra3(2), + ultra320(3), + sata(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Backplane Speed. + + The following values are defined: + + other(1) + The agent is unable to determine the backplane speed for this + storage system. + + ultra3(2) + This storage system is capable of Ultra3 speeds. + + ultra320(3) + This storage system is capable of Ultra320 speeds. + + sata(4) + This storage system is capable of SATA speeds." + ::= { cpqSsBackplaneEntry 16 } + + + cpqSsBackplaneConnectionType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + scsiAttached(2), + sasAttached(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Backlane Box Connection Type. + + The following values are defined: + + other(1) + The agent is unable to determine the type of connection to + this backplane. + + scsiAttached(2) + This backplane is attached to the host via SCSI. + + sasAttached(3) + This backplane is attached to the host via SAS." + ::= { cpqSsBackplaneEntry 17 } + + cpqSsBackplaneConnector OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Backplane Connector. + + This is the connector to which the backplane is attached. + If the backplane connector cannot be determined, the agent will + return a NULL string." + ::= { cpqSsBackplaneEntry 18 } + + cpqSsBackplaneOnConnector OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Backplane on Connector. + + The backplane on connector indicates to which backplane instance + this table entry belongs. The instances start at one and + increment for each backplane attached to a connector." + ::= { cpqSsBackplaneEntry 19 } + + cpqSsBackplaneLocationString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Backplane Location String. + + This string describes the location of the backplane in relation + to the controller to which it is attached. If the location + string cannot be determined, the agent will return a NULL string." + ::= { cpqSsBackplaneEntry 20 } + + +-- **************************************************************************** +-- Storage System Fibre Attachment Table +-- ===================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsFibreAttachmentTable (1.3.6.1.4.1.232.8.2.2.7) +-- +-- The Storage System Fibre Attachment Group contains associations between +-- Fibre channel host controllers and the Fibre devices that are attached to +-- them. Since there can be multiple paths to some Fibre devices, there may +-- be multiple entries for a given device. +-- +-- **************************************************************************** + + cpqSsFibreAttachmentTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsFibreAttachmentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Table." + ::= { cpqSsBoxExtended 7 } + + cpqSsFibreAttachmentEntry OBJECT-TYPE + SYNTAX CpqSsFibreAttachmentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Entry." + INDEX { cpqSsFibreAttachmentIndex } + ::= { cpqSsFibreAttachmentTable 1 } + + CpqSsFibreAttachmentEntry ::= SEQUENCE + { + cpqSsFibreAttachmentIndex INTEGER, + cpqSsFibreAttachmentHostControllerIndex INTEGER, + cpqSsFibreAttachmentHostControllerPort INTEGER, + cpqSsFibreAttachmentDeviceType INTEGER, + cpqSsFibreAttachmentDeviceIndex INTEGER, + cpqSsFibreAttachmentDevicePort INTEGER + } + + cpqSsFibreAttachmentIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Index. + + The index uniquely identifies a Fibre Attachment association entry." + ::= { cpqSsFibreAttachmentEntry 1 } + + cpqSsFibreAttachmentHostControllerIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Host Controller Index. + + The host controller index indicates which host controller is + associated with this entry. This is equal to cpqFcaHostCntlrIndex, + from the Fibre Channel Host Controller Table." + ::= { cpqSsFibreAttachmentEntry 2 } + + cpqSsFibreAttachmentHostControllerPort OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Host Controller Port. + + This is the Fibre port number of the host controller. For each host + controller, the port number starts at 1 and increments for each port. + This is currently set to 1." + ::= { cpqSsFibreAttachmentEntry 3 } + + cpqSsFibreAttachmentDeviceType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + storageBox(2), + tapeController(3), + fibreChannelSwitch(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Device Type. + + This is the type of device associated with this entry. + The following values are defined: + + other(1) + The agent is unable to determine if the type of this device. + + storageBox(2) + The device is a Fibre attached storage system. + + tapeController(3) + The device is a Fibre attached tape controller. + + fibreChannelSwitch(4) + The device is a Fibre channel switch." + ::= { cpqSsFibreAttachmentEntry 4 } + + cpqSsFibreAttachmentDeviceIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Device Index. + + The is the index for the Fibre attached device. For a Fibre + attached storage system, this is equal to cpqSsChassisIndex from the + Storage System Chassis Table. For a Fibre attached tape controller, + this is equal to cpqFcTapeCntlrIndex from the Fibre Channel Tape + Controller Table. For a Fibre channel switch, this is equal to + cpqFcSwitchIndex from the Fibre Channel Switch Table." + ::= { cpqSsFibreAttachmentEntry 5 } + + cpqSsFibreAttachmentDevicePort OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System Fibre Attachment Device Port. + + This is the Fibre port on a device. For a Fibre attached storage + system, this is equal to cpqFcaCntlrBoxIoSlot from the Fibre Channel + Array Controller Table. For a Fibre attached tape controller, + this is currently set to 1. For a Fibre channel switch, this is + currently set to 1." + ::= { cpqSsFibreAttachmentEntry 6 } + + +-- **************************************************************************** +-- Storage System Scsi Attachment Table +-- ==================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsBoxExtended Group (1.3.6.1.4.1.232.8.2.2) +-- cpqSsScsiAttachmentTable (1.3.6.1.4.1.232.8.2.2.8) +-- +-- The Storage System Scsi Attachment Group contains associations between +-- internal array controllers and the external arrays that are attached to +-- them. Since there can be multiple paths to some external arrays, there +-- may be multiple entries for a given device. +-- +-- **************************************************************************** + + cpqSsScsiAttachmentTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsScsiAttachmentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Table." + ::= { cpqSsBoxExtended 8 } + + cpqSsScsiAttachmentEntry OBJECT-TYPE + SYNTAX CpqSsScsiAttachmentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Entry." + INDEX { cpqSsScsiAttachmentIndex } + ::= { cpqSsScsiAttachmentTable 1 } + + CpqSsScsiAttachmentEntry ::= SEQUENCE + { + cpqSsScsiAttachmentIndex INTEGER, + cpqSsScsiAttachmentControllerIndex INTEGER, + cpqSsScsiAttachmentControllerPort INTEGER, + cpqSsScsiAttachmentControllerTarget INTEGER, + cpqSsScsiAttachmentControllerLun INTEGER, + cpqSsScsiAttachmentChassisIndex INTEGER, + cpqSsScsiAttachmentChassisIoSlot INTEGER, + cpqSsScsiAttachmentPathStatus INTEGER, + cpqSsScsiAttachmentPathCondition INTEGER + } + + cpqSsScsiAttachmentIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Index. + + The index uniquely identifies a SCSI Attachment association entry." + ::= { cpqSsScsiAttachmentEntry 1 } + + cpqSsScsiAttachmentControllerIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Controller Index. + + The controller index indicates which internal array controller is + associated with this entry. This is equal to cpqDaCntlrIndex, + from the Array Controller Table." + ::= { cpqSsScsiAttachmentEntry 2 } + + cpqSsScsiAttachmentControllerPort OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Controller Port. + + The controller port indicates which SCSI port of an internal + controller is associated with this entry." + ::= { cpqSsScsiAttachmentEntry 3 } + + cpqSsScsiAttachmentControllerTarget OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Controller Target. + + The controller target indicates which SCSI target is associated with + this entry." + ::= { cpqSsScsiAttachmentEntry 4 } + + cpqSsScsiAttachmentControllerLun OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Controller Lun. + + The controller Lun indicates which SCSI Lun is associated with this + entry." + ::= { cpqSsScsiAttachmentEntry 5 } + + cpqSsScsiAttachmentChassisIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Chassis Index. + + The is the index for the SCSI attached storage system. This is equal + to cpqSsChassisIndex from the Storage System Chassis Table." + ::= { cpqSsScsiAttachmentEntry 6 } + + cpqSsScsiAttachmentChassisIoSlot OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Chassis I/O Slot. + + This is the I/O slot in the SCSI attached storage system. This is + equal to cpqFcaCntlrBoxIoSlot from the Fibre Channel Array Controller + Table." + ::= { cpqSsScsiAttachmentEntry 7 } + + cpqSsScsiAttachmentPathStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + offline(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Path Status. + + This is the status of this path to the chassis. The following + values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The path is operating normally. + + offline(3) + The path is offline." + ::= { cpqSsScsiAttachmentEntry 8 } + + cpqSsScsiAttachmentPathCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Storage System SCSI Attachment Path Condition. + + This is the condition of this path to the chassis." + ::= { cpqSsScsiAttachmentEntry 9 } + +-- **************************************************************************** +-- Storage System Drive Box Access Path Group +-- ========================================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsDrvBox Group (1.3.6.1.4.1.232.8.2) +-- cpqSsDrvBoxPathTable (1.3.6.1.4.1.232.8.2.3) +-- +-- **************************************************************************** + + cpqSsDrvBoxPathTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsDrvBoxPathEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Table." + ::= { cpqSsDrvBox 3 } + + cpqSsDrvBoxPathEntry OBJECT-TYPE + SYNTAX CpqSsDrvBoxPathEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Entry." + INDEX { cpqSsDrvBoxPathCntlrIndex, cpqSsDrvBoxPathBoxIndex, + cpqSsDrvBoxPathIndex } + ::= { cpqSsDrvBoxPathTable 1 } + + CpqSsDrvBoxPathEntry ::= SEQUENCE + { + cpqSsDrvBoxPathCntlrIndex INTEGER, + cpqSsDrvBoxPathBoxIndex INTEGER, + cpqSsDrvBoxPathIndex INTEGER, + cpqSsDrvBoxPathStatus INTEGER, + cpqSsDrvBoxPathCurrentRole INTEGER, + cpqSsDrvBoxPathHostConnector DisplayString, + cpqSsDrvBoxPathBoxOnConnector INTEGER, + cpqSsDrvBoxPathLocationString DisplayString + } + + cpqSsDrvBoxPathCntlrIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Controller Index. + + The controller index indicates to which adapter card instance + this table entry belongs." + ::= { cpqSsDrvBoxPathEntry 1 } + + cpqSsDrvBoxPathBoxIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Box Index. + + The box index indicates to which box instance on an adapter card + this table entry belongs. The value of this index is the same as + cpqSsDrvBoxBusIndex used under the drive box table." + ::= { cpqSsDrvBoxPathEntry 2 } + + cpqSsDrvBoxPathIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Index. + + This path index keeps track of multiple instances of access + paths from a controller to a storage box. This number, along with + the cpqSsDrvBoxPathCntlrIndex and cpqSsDrvBoxPathDrvIndex uniquely + identify a specific storage box access path" + ::= { cpqSsDrvBoxPathEntry 3 } + + cpqSsDrvBoxPathStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + linkDown(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Status. + + This shows the status of the drive box access path. The + following values are valid: + + Other (1) + Indicates that the instrument agent can not determine the + status of this access path. + + OK (2) + Indicates the access path is functioning properly. + + Link Down (3) + Indicates that the controller can no longer access the drive box + through this path." + ::= { cpqSsDrvBoxPathEntry 4 } + + cpqSsDrvBoxPathCurrentRole OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + active(2), + alternate(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Current Role. + + This shows the current role of drive box acess path. The + following values are valid: + + Other (1) + Indicates that the instrument agent does not recognize the + role of this access path. + + Active (2) + Indicates that this path is currently the default active + I/O path to access the drive box from the controller. + + Alternate (3) + Indicates that this path is currently the alternate I/O + path to access the physical drive from the controller." + ::= { cpqSsDrvBoxPathEntry 5 } + + cpqSsDrvBoxPathHostConnector OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Host Connector. + + This is the host connector to which the access path is ultimately + attached. If the host connector cannot be determined, the agent + will return a NULL string." + ::= { cpqSsDrvBoxPathEntry 6 } + + cpqSsDrvBoxPathBoxOnConnector OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Box on Connector. + + The box on connector indicates to which box instance this + access path belongs." + ::= { cpqSsDrvBoxPathEntry 7 } + + cpqSsDrvBoxPathLocationString OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Drive Box Access Path Location String. + + This string describes drive box access path in relation to the + controller to which it is attached. If the location string + cannot be determined, the agent will return a NULL string." + ::= { cpqSsDrvBoxPathEntry 8 } + + +-- **************************************************************************** +-- Storage System Trap Group +-- ========================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsTrap Group (1.3.6.1.4.1.232.8.3) (deprecated) +-- +-- +-- The trap group maintains information about the number of traps issued +-- from the storageSys enterprise. The trap group also maintains a table of +-- the last several traps issued. This table is intended to give a +-- management application some recent status information immediately upon +-- accessing the agent. +-- +-- Implementation of the Trap group is optional for agents. +-- The trap group has been deprecated for Insight v2.00 Agents. +-- +-- **************************************************************************** + + cpqSsTrapPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of trap packets issued by the enterprise since + the instrument agent was loaded." + ::= { cpqSsTrap 1 } + + cpqSsTrapLogMaxSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The maximum number of entries that will currently be kept in + the trap log. If the maximum size has been reached and a new + trap occurs the oldest trap will be removed." + ::= { cpqSsTrap 2 } + +-- **************************************************************************** +-- Storage System Trap Log Table +-- ============================= +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsTrap Group (1.3.6.1.4.1.232.8.3) (deprecated) +-- cpqSsTrapLogTable (1.3.6.1.4.1.232.8.3.3) (deprecated) +-- +-- **************************************************************************** + + cpqSsTrapLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsTrapLogEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "An ordered list of trap log entries (conceptually a queue). + The trap log entries will be kept in the order in which they + were generated with the most recent trap at index 1 and the + oldest trap entry at index trapLogMaxSize. If the maximum + number size has been reached and a new trap occurs the oldest + trap will be removed when the new trap is added so the + trapMaxLogSize is not exceeded." + ::= { cpqSsTrap 3 } + + cpqSsTrapLogEntry OBJECT-TYPE + SYNTAX CpqSsTrapLogEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A description of a trap event." + INDEX { cpqSsTrapLogIndex } + ::= { cpqSsTrapLogTable 1 } + + CpqSsTrapLogEntry ::= SEQUENCE + { + cpqSsTrapLogIndex INTEGER, + cpqSsTrapType INTEGER, + cpqSsTrapTime OCTET STRING + } + + cpqSsTrapLogIndex OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The value of this object uniquely identifies this trapLogEntry + at this time. The most recent trap will have an index of 1 and + the oldest trap will have an index of trapLogMaxSize. Because of + the queue-like nature of the trapLog this particular trap event's + index will change as new traps are issued." + ::= { cpqSsTrapLogEntry 1 } + + cpqSsTrapType OBJECT-TYPE + SYNTAX INTEGER + { + cpqSsFanStatusChange(1), + cpqSs2FanStatusChange(8001), + cpqSsTempFailed(8002), + cpqSsTempDegraded(8003), + cpqSsTempOk(8004), + cpqSsSidePanelInPlace(8005), + cpqSsSidePanelRemoved(8006) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The type of the trap event that this entry describes. This + number refers to an entry in a list of traps enumerating the + possible traps the agent may issue." + ::= { cpqSsTrapLogEntry 2 } + + cpqSsTrapTime OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The time of the trap event that this entry describes. The time + is given in year (first octet), month, day of month, hour, + minute, second (last octet) order. Each octet gives the value in + BCD." + ::= { cpqSsTrapLogEntry 3 } + + +-- **************************************************************************** +-- RAID Storage System Group +-- ============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- cpqSsStorageSys Group (1.3.6.1.4.1.232.8) +-- cpqSsRaidSystem Group (1.3.6.1.4.1.232.8.4) +-- cpqSsRaidSystemTable (1.3.6.1.4.1.232.8.4.1) +-- +-- Implementation of the RAID Storage System group is mandatory. +-- +-- **************************************************************************** + + cpqSsRaidSystemTable OBJECT-TYPE + SYNTAX SEQUENCE OF CpqSsRaidSystemEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Storage System Table." + ::= { cpqSsRaidSystem 1 } + + cpqSsRaidSystemEntry OBJECT-TYPE + SYNTAX CpqSsRaidSystemEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Storage System Entry." + INDEX { cpqSsRaidSystemIndex } + ::= { cpqSsRaidSystemTable 1 } + + CpqSsRaidSystemEntry ::= SEQUENCE + { + cpqSsRaidSystemIndex INTEGER, + cpqSsRaidSystemName DisplayString, + cpqSsRaidSystemStatus INTEGER, + cpqSsRaidSystemCondition INTEGER, + cpqSsRaidSystemCntlr1SerialNumber DisplayString, + cpqSsRaidSystemCntlr2SerialNumber DisplayString + } + + cpqSsRaidSystemIndex OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RAID Storage System Index. + + The RAID Storage System index indicates to which storage system instance + this table entry belongs." + + ::= { cpqSsRaidSystemEntry 1 } + + cpqSsRaidSystemName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RAID Storage System Name. + + This is a description of the RAID Storage System's name. + This can be used for identification purposes." + + ::= { cpqSsRaidSystemEntry 2 } + + cpqSsRaidSystemStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + agentNotRunning(2), + good(3), + warning(4), + communicationLoss(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RAID Storage System Status. + + This is the current status of the RAID Storage System. + This value will be one of the following: + + other(1) + Indicates that the agent does not recognize the state of the + RAID Storage System. You may need to upgrade the agent. + + agentNotRunning(2) + Indicates that the Storage Work agent is not running. You need + to restart the Storage Work agent. + + good(3) + Indicates that the system is operating properly. + + warning(4) + At least one component of the system failed. + + communicationLoss(5) + The RAID Storage System has a cable or communication problem. + Please check all cable connects to the host server." + + + ::= { cpqSsRaidSystemEntry 3 } + + cpqSsRaidSystemCondition OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + ok(2), + degraded(3), + failed(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RAID Storage System Condition. + + This is the overall condition of the storage system. + The following values are defined: + + other(1) + The agent does not recognize the status. You may need to + upgrade your software. + + ok(2) + The storage system is operating normally. No user + action is required. + + degraded(3) + The storage system is degraded. At least one component + of the storage system failed. + + failed(4) + The storage system has failed." + + ::= { cpqSsRaidSystemEntry 4 } + + cpqSsRaidSystemCntlr1SerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RAID Storage System Controller 1 Serial Number. + + This is the controller number 1's serial number which is normally + display on the front panel. This can be used for + identification purposes." + + ::= { cpqSsRaidSystemEntry 5 } + + cpqSsRaidSystemCntlr2SerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..24)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "RAID Storage System Controller 2 Serial Number. + + This is the controller number 2's serial number which is normally + display on the front panel. This can be used for + identification purposes." + + ::= { cpqSsRaidSystemEntry 6 } + + +-- **************************************************************************** +-- Storage System Trap Definitions +-- =============================== +-- +-- The compaq enterprise (1.3.6.1.4.1.232) +-- +-- The SNMP trap messages must not be bigger than 484 octets (bytes). +-- +-- Trap support in an SNMP agent implementation is optional. An SNMP +-- agent implementation may support all, some, or none of the traps. +-- If traps are supported, The user should be provided with the option of +-- disabling traps. +-- +-- ************************************************************************** + + cpqSsFanStatusChange TRAP-TYPE + ENTERPRISE cpqSsStorageSys + VARIABLES { cpqSsBoxFanStatus } + DESCRIPTION + "Storage System fan status change. + + The agent has detected a change in the Fan Status of a storage + system. The variable cpqSsBoxFanStatus indicates the current + fan status." + + --#TYPE "Fan Status Change (1)" + --#SUMMARY "Storage System fan status changed to %d." + --#ARGUMENTS {0} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 1 + + cpqSs2FanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqSsBoxFanStatus } + DESCRIPTION + "Storage System fan status change. + + The agent has detected a change in the Fan Status of a storage + system. The variable cpqSsBoxFanStatus indicates the current + fan status." + + --#TYPE "Fan Status Change (8001)" + --#SUMMARY "Storage System fan status changed to %d." + --#ARGUMENTS {0} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8001 + + cpqSsTempFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature failure. + + The agent has detected that a temperature status has been set + to failed. The storage system will be shutdown." + + --#TYPE "Storage System Temperature Failure (8002)" + --#SUMMARY "Storage System will be shutdown." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 8002 + + cpqSsTempDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature degraded. + + The agent has detected a temperature status that has been set to + degraded. The storage system's temperature is outside of the + normal operating range." + + --#TYPE "Storage System Temp Degraded (8003)" + --#SUMMARY "Temp is outside of normal range." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 8003 + + cpqSsTempOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature ok. + + The temperature status has been set to OK. The storage + system's temperature has returned to normal operating range. + It may be reactivated by the administrator." + + --#TYPE "Storage System Temp OK (8004)" + --#SUMMARY "Storage System temperature ok." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 8004 + + cpqSsSidePanelInPlace TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqSsBoxSidePanelStatus } + DESCRIPTION + "Storage System side panel is in place. + + The side panel status has been set to in place. The storage + system's side panel has returned to a properly installed state." + + --#TYPE "Storage System side panel is in place (8005)" + --#SUMMARY "Side panel is re-installed on unit." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 8005 + + + cpqSsSidePanelRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { cpqSsBoxSidePanelStatus } + DESCRIPTION + "Storage System side panel is removed. + + The side panel status has been set to removed. The storage + system's side panel is not in a properly installed state. This + situation may result in improper cooling of the drives in the + storage system due to air flow changes caused by the missing + side panel." + + --#TYPE "Storage System side panel is removed (8006)" + --#SUMMARY "Side panel is removed from unit." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 8006 + + cpqSsPwrSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + DESCRIPTION + "A storage system power supply status has been set to degraded." + + --#TYPE "Power Supply Degraded (8007)" + --#SUMMARY "A storage system power supply unit has become degraded" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 8007 + + + cpqSs3FanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxFanStatus } + DESCRIPTION + "Storage System fan status change. + + The agent has detected a change in the Fan Status of a storage + system. The variable cpqSsBoxFanStatus indicates the current + fan status. + + User Action: If the fan status is degraded or failed, replace + any failed fans." + + --#TYPE "Fan Status Change (8008)" + --#SUMMARY "Storage System fan status changed to %d." + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8008 + + cpqSs3TempFailed TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature failure. + + The agent has detected that a temperature status has been set to + failed. The storage system will be shutdown. + + User Action: Shutdown the storage system as soon as possible. + Insure that the storage system environment is being cooled + properly and that no components are overheated." + + --#TYPE "Storage System Temperature Failure (8009)" + --#SUMMARY "Storage System will be shutdown." + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 8009 + + cpqSs3TempDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature degraded. + + The agent has detected a temperature status that has been set to + degraded. The storage system's temperature is outside of the + normal operating range. + + User Action: Shutdown the storage system as soon as possible. + Insure that the storage system environment is being cooled + properly and that no components are overheated." + + --#TYPE "Storage System Temp Degraded (8010)" + --#SUMMARY "Temp is outside of normal range." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 8010 + + cpqSs3TempOk TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature ok. + + The temperature status has been set to OK. The storage + system's temperature has returned to normal operating range. + It may be reactivated by the administrator. + + User Action: None." + + --#TYPE "Storage System Temp OK (8011)" + --#SUMMARY "Storage System temperature ok." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 8011 + + cpqSs3SidePanelInPlace TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxSidePanelStatus } + DESCRIPTION + "Storage System side panel is in place. + + The side panel status has been set to in place. The storage + system's side panel has returned to a properly installed state. + + User Action: None." + + --#TYPE "Storage System side panel is in place (8012)" + --#SUMMARY "Side panel is re-installed on unit." + --#ARGUMENTS {} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 8012 + + + cpqSs3SidePanelRemoved TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxSidePanelStatus } + DESCRIPTION + "Storage System side panel is removed. + + The side panel status has been set to removed. The storage + system's side panel is not in a properly installed state. This + situation may result in improper cooling of the drives in the + storage system due to air flow changes caused by the missing + side panel. + + User Action: Replace the storage system side panel." + + --#TYPE "Storage System side panel is removed (8013)" + --#SUMMARY "Side panel is removed from unit." + --#ARGUMENTS {} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 8013 + + cpqSs3PwrSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags } + DESCRIPTION + "A storage system power supply status has been set to degraded." + + --#TYPE "Power Supply Degraded (8014)" + --#SUMMARY "A storage system power supply unit has become degraded" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + ::= 8014 + + cpqSs4PwrSupplyDegraded TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxFltTolPwrSupplyStatus } + DESCRIPTION + "A storage system power supply status has been set to degraded. + + User Action: Take action to restore power or replace any failed + storage system power supply." + + --#TYPE "Power Supply Degraded (8015)" + --#SUMMARY "A storage system power supply unit has become degraded" + --#ARGUMENTS {} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 8015 + + + cpqSsExFanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsFanModuleLocation, + cpqSsFanModuleStatus } + DESCRIPTION + "Storage system fan status change. + + The agent has detected a change in the Fan Module Status of a + storage system. The variable cpqSsFanModuleStatus indicates the + current fan status. + + User Action: If the fan status is degraded or failed, replace + any failed fans." + + --#TYPE "Fan Status Change (8016)" + --#SUMMARY "Storage system fan status changed to %d." + --#ARGUMENTS {5} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8016 + + cpqSsExPowerSupplyStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsPowerSupplyBay, + cpqSsPowerSupplyStatus } + DESCRIPTION + "Storage system power supply status change. + + The agent has detected a change in the power supply status of a + storage system. The variable cpqSsPowerSupplyStatus indicates + the current status. + + User Action: If the power supply status is failed, take action to + restore power or replace the failed power supply." + + --#TYPE "Power Supply Status Change (8017)" + --#SUMMARY "Storage system power supply status changed to %d." + --#ARGUMENTS {5} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8017 + + cpqSsExPowerSupplyUpsStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsPowerSupplyBay, + cpqSsPowerSupplyUpsStatus } + DESCRIPTION + "Storage system power supply UPS status change. + + The agent has detected a change status of a UPS attached to a + storage system power supply. The variable + cpqSsPowerSupplyUpsStatus indicates the current status. + + User Action: If the UPS status is powerFailed(4) or batteryLow(5), + take action to restore power to the UPS." + + --#TYPE "Power Supply UPS Status Change (8018)" + --#SUMMARY "Storage system power supply UPS status changed to %d." + --#ARGUMENTS {5} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8018 + + cpqSsExTempSensorStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsTempSensorLocation, + cpqSsTempSensorStatus, cpqSsTempSensorCurrentValue } + DESCRIPTION + "Storage system temperature sensor status change. + + The agent has detected a change in the status of a storage + system temperature sensor. The variable cpqSsTempSensorStatus + indicates the current status. + + User Action: If the temperature status is degraded or failed, + shutdown the storage system as soon as possible. Insure that + the storage system environment is being cooled properly and that + no components are overheated." + + --#TYPE "Temperature Sensor Status Change (8019)" + --#SUMMARY "Storage system temperature sensor status changed to %d." + --#ARGUMENTS {5} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8019 + + cpqSsEx2FanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsFanModuleLocation, + cpqSsFanModuleStatus, cpqSsFanModuleSerialNumber, + cpqSsFanModuleBoardRevision } + DESCRIPTION + "Storage system fan status change. + + The agent has detected a change in the fan module status of a + storage system. The variable cpqSsFanModuleStatus indicates the + current fan status. + + User Action: If the fan status is degraded or failed, replace + any failed fans." + + --#TYPE "Fan Status Change (8020)" + --#SUMMARY "Storage system fan status changed to %d." + --#ARGUMENTS {5} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8020 + + cpqSsEx2PowerSupplyStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsPowerSupplyBay, + cpqSsPowerSupplyStatus, cpqSsPowerSupplySerialNumber, + cpqSsPowerSupplyBoardRevision, + cpqSsPowerSupplyFirmwareRevision } + DESCRIPTION + "Storage system power supply status change. + + The agent has detected a change in the power supply status of a + storage system. The variable cpqSsPowerSupplyStatus indicates + the current status. + + User Action: If the power supply status is failed, take action to + restore power or replace the failed power supply." + + --#TYPE "Power Supply Status Change (8021)" + --#SUMMARY "Storage system power supply status changed to %d." + --#ARGUMENTS {5} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8021 + + cpqSsExBackplaneFanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsBackplaneIndex, + cpqSsBackplaneVendor, cpqSsBackplaneModel, + cpqSsBackplaneSerialNumber, cpqSsBackplaneFanStatus } + DESCRIPTION + "Storage system fan status change. + + The agent has detected a change in the fan status of a storage + system. The variable cpqSsBackplaneFanStatus indicates the + current fan status. + + User Action: If the fan status is degraded or failed, replace + any failed fans." + + --#TYPE "Storage System Fan Status Change (8022)" + --#SUMMARY "Storage system fan status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8022 + + cpqSsExBackplaneTempStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsBackplaneIndex, + cpqSsBackplaneVendor, cpqSsBackplaneModel, + cpqSsBackplaneSerialNumber, cpqSsBackplaneTempStatus } + DESCRIPTION + "Storage system temperature status change. + + The agent has detected a change in the status of the temperature + in a storage system. The variable cpqSsBackplaneTempStatus + indicates the current status. + + User Action: If the temperature status is degraded or failed, + shutdown the storage system as soon as possible. Insure that + the storage system environment is being cooled properly and that + no components are overheated." + + --#TYPE "Storage System Temperature Status Change (8023)" + --#SUMMARY "Storage system temperature status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8023 + + cpqSsExBackplanePowerSupplyStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsBackplaneIndex, + cpqSsBackplaneVendor, cpqSsBackplaneModel, + cpqSsBackplaneSerialNumber, cpqSsBackplaneFtpsStatus } + DESCRIPTION + "Storage system power supply status change. + + The agent has detected a change in the power supply status of a + storage system. The variable cpqSsBackplaneFtpsStatus indicates + the current status. + + User Action: If the power supply status is degraded, take action to + restore power or replace the failed power supply." + + --#TYPE "Power Supply Status Change (8024)" + --#SUMMARY "Storage system power supply status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8024 + + cpqSsExRecoveryServerStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsChassisName, + cpqSsChassisTime, cpqSsChassisRsoStatus, + cpqSsChassisIndex } + DESCRIPTION + "Storage system recovery server option status change. + + The agent has detected a change in the recovery server option + status of a storage system. The variable cpqSsChassisRsoStatus + indicates the current status. + + User Action: If the RSO status is noSecondary(6) or linkDown(7), + insure the secondary server is operational and all cables are + connected properly. If the RSO status is secondaryRunningAuto(8) + or secondaryRunningUser(9), examine the the primary server for + failed components." + + --#TYPE "Recovery Server Option Status Change (8025)" + --#SUMMARY "Storage system recovery server option status changed to %d." + --#ARGUMENTS {4} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8025 + + cpqSs5FanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxCntlrHwLocation, + cpqSsBoxCntlrIndex, cpqSsBoxBusIndex, cpqSsBoxVendor, + cpqSsBoxModel, cpqSsBoxSerialNumber, cpqSsBoxFanStatus } + DESCRIPTION + "Storage System fan status change. + + The agent has detected a change in the Fan Status of a storage + system. The variable cpqSsBoxFanStatus indicates the current + fan status. + + User Action: If the fan status is degraded or failed, replace + any failed fans." + + --#TYPE "Fan Status Change (8026)" + --#SUMMARY "Storage System fan status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8026 + + cpqSs5TempStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxCntlrHwLocation, + cpqSsBoxCntlrIndex, cpqSsBoxBusIndex, cpqSsBoxVendor, + cpqSsBoxModel, cpqSsBoxSerialNumber, cpqSsBoxTempStatus } + DESCRIPTION + "Storage System temperature status change. + + The agent has detected a change in the temperature status of a + storage system. The variable cpqSsBoxTempStatus indicates the + current temperature status. + + User Action: If the temperature status is degraded or failed, + shutdown the storage system as soon as possible. Insure that + the storage system environment is being cooled properly and that + no components are overheated." + + --#TYPE "Temperature Status Change (8027)" + --#SUMMARY "Storage System temperature status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8027 + + cpqSs5PwrSupplyStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxCntlrHwLocation, + cpqSsBoxCntlrIndex, cpqSsBoxBusIndex, cpqSsBoxVendor, + cpqSsBoxModel, cpqSsBoxSerialNumber, + cpqSsBoxFltTolPwrSupplyStatus } + DESCRIPTION + "Storage system power supply status change. + + The agent has detected a change in the power supply status of a + storage system. The variable cpqSsBoxFltTolPwrSupplyStatus + indicates the current power supply status. + + User Action: If the power supply status is degraded, take action + to restore power or replace the failed power supply." + + --#TYPE "Power Supply Status Change (8028)" + --#SUMMARY "Storage system power supply status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + + ::= 8028 + + cpqSs6FanStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxCntlrHwLocation, + cpqSsBoxCntlrIndex, cpqSsBoxBusIndex, cpqSsBoxVendor, + cpqSsBoxModel, cpqSsBoxSerialNumber, + cpqSsBoxFanStatus, cpqSsBoxLocationString } + DESCRIPTION + "Storage System fan status change. + + The agent has detected a change in the Fan Status of a storage + system. The variable cpqSsBoxFanStatus indicates the current + fan status. + + User Action: If the fan status is degraded or failed, replace + any failed fans." + + --#TYPE "Fan Status Change (8029)" + --#SUMMARY "Storage System fan status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8029 + + cpqSs6TempStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxCntlrHwLocation, + cpqSsBoxCntlrIndex, cpqSsBoxBusIndex, cpqSsBoxVendor, + cpqSsBoxModel, cpqSsBoxSerialNumber, + cpqSsBoxTempStatus, cpqSsBoxLocationString } + DESCRIPTION + "Storage System temperature status change. + + The agent has detected a change in the temperature status of a + storage system. The variable cpqSsBoxTempStatus indicates the + current temperature status. + + User Action: If the temperature status is degraded or failed, + shutdown the storage system as soon as possible. Insure that + the storage system environment is being cooled properly and that + no components are overheated." + + --#TYPE "Temperature Status Change (8030)" + --#SUMMARY "Storage System temperature status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8030 + + cpqSs6PwrSupplyStatusChange TRAP-TYPE + ENTERPRISE compaq + VARIABLES { sysName, cpqHoTrapFlags, cpqSsBoxCntlrHwLocation, + cpqSsBoxCntlrIndex, cpqSsBoxBusIndex, cpqSsBoxVendor, + cpqSsBoxModel, cpqSsBoxSerialNumber, + cpqSsBoxFltTolPwrSupplyStatus, cpqSsBoxLocationString } + DESCRIPTION + "Storage system power supply status change. + + The agent has detected a change in the power supply status of a + storage system. The variable cpqSsBoxFltTolPwrSupplyStatus + indicates the current power supply status. + + User Action: If the power supply status is degraded, take action + to restore power or replace the failed power supply." + + --#TYPE "Power Supply Status Change (8031)" + --#SUMMARY "Storage system power supply status changed to %d." + --#ARGUMENTS {8} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#VARBINDSEVERITY 2 + + ::= 8031 + +END diff --git a/pandora_console/attachment/mibs/DECNET-PHIV-MIB b/pandora_console/attachment/mibs/DECNET-PHIV-MIB new file mode 100644 index 0000000000..e811aefd15 --- /dev/null +++ b/pandora_console/attachment/mibs/DECNET-PHIV-MIB @@ -0,0 +1,3041 @@ +-- Changes for RFC 1559 (DECnet Phase IV MIB) +-- Fixed the following so that the syntax specified for them +-- in SEQENCES matches the syntax specified in the +-- OBJECT-TYPE macro: +-- phivCircuitLineIndex in sequence PhivCircuitParametersEntry +-- phivDDCMPCircuitAdjNodeAddr in sequence PhivDDCMPCircuitParametersEntry +-- phivDDCMPCircuitSelectTimeouts in sequence PhivDDCMPCircuitCountEntry +-- phivCountersCountSendFailure in sequence PhivCountersCountEntry +-- phivCountersCountCollDetectFailure in sequence PhivCountersCountEntry +-- phivCountersCountReceiveFailure in sequence PhivCountersCountEntry +-- phivCountersCountUnrecFrameDest in sequence PhivCountersCountEntry +-- phivCountersCountDataOver in sequence PhivCountersCountEntry +-- phivCountersCountSysBuffUnav in sequence PhivCountersCountEntry +-- phivCountersCountUsrBuffUnav in sequence PhivCountersCountEntry +-- dperkins@scruznet.com + + + DECNET-PHIV-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Gauge + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + mib-2, DisplayString + FROM RFC1213-MIB; + + -- DECNet Phase-IV MIB + + phiv OBJECT IDENTIFIER ::= { mib-2 18 } + + -- textual conventions + + PhivAddr ::= OCTET STRING (SIZE (2)) + -- This data type is intended as a short word representation of + -- standard DECnet Phase IV addresses. DECnet addresses are + -- hierarchically structured numbers assigned to a particular + -- DECnet node. The address is structured so that the area + -- number is contained in the most significant 6 bits of the + -- first octet. The next 2 bits of the first octet contain + -- the first two bits of the host address. The remainder of + -- the host address is contained in the second octet. + + PhivCounter ::= INTEGER + -- This data type has been created for DECnet counters. These + -- counters latch at their maximum specified value until either + -- the system is restarted, or they are reset to zero by the user + -- or management software. + + InterfaceIndex ::= INTEGER + -- The range of ifIndex, i.e., (1..2147483647) + + + -- groups in the decnetiv mib + + phivSystem OBJECT IDENTIFIER ::= { phiv 1 } + phivManagement OBJECT IDENTIFIER ::= { phiv 2 } + session OBJECT IDENTIFIER ::= { phiv 3 } + end OBJECT IDENTIFIER ::= { phiv 4 } + routing OBJECT IDENTIFIER ::= { phiv 5 } + circuit OBJECT IDENTIFIER ::= { phiv 6 } + ddcmp OBJECT IDENTIFIER ::= { phiv 7 } + control OBJECT IDENTIFIER ::= { phiv 8 } + ethernet OBJECT IDENTIFIER ::= { phiv 9 } + counters OBJECT IDENTIFIER ::= { phiv 10 } + adjacency OBJECT IDENTIFIER ::= { phiv 11 } + line OBJECT IDENTIFIER ::= { phiv 12 } + nonBroadcastLine OBJECT IDENTIFIER ::= { phiv 14 } + area OBJECT IDENTIFIER ::= { phiv 15 } + + -- System Group + + -- The implementation of the System Group is mandatory for + -- all systems. + + phivSystemState OBJECT-TYPE + SYNTAX INTEGER { + on (1), + off (2), + shut (3), + restricted (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This represents the operational state of the executor + node. + The possible states are: + ON Allows logical links. + OFF Allows no new links, terminates existing + links, and stops routing traffic through. + SHUT Allows no new logical links, does not + destroy existing logical links, and goes + to the OFF state when all logical links are + gone. + RESTRICTED Allows no new incoming logical links from + other nodes. + + NOTE: These values are incremented by one compared to + the standard DECnet values in order to maintain + compliance with RFC 1155)." + ::= { phivSystem 1 } + + phivExecIdent OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is a text string that describes the executor node + (for example, 'Research Lab'). The string is up to 32 + characters of any type." + ::= { phivSystem 2 } + + -- Network Management Group + + -- The implementation of the Network Management Group is + -- mandatory for all systems which contain a DECnet-style + -- management version. + + + phivMgmtMgmtVers OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the read-only Network Management Version, + consisting of the version number, the Engineering + Change Order (ECO) number, and the user ECO number + (for example, 3.0.0). This parameter applies to the + executor node only." + ::= { phivManagement 1 } + + -- Session Layer Group + + -- The implementation of the Session Layer Group is optional. + -- A system can be said to implement this group if and only if + -- all objects in this group are implemented. + + phivSessionSystemName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name to be associated with the node identification. + Only one name can be assigned to a node address or a + circuit identification. No name should be used more than + once in a DECnet network. Node-name is one to six upper + case alphanumeric characters with at least one alpha + character. A length of 0 indicates no name." + ::= { session 1 } + + phivSessionInTimer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum duration between the + time a connect is received for a process at the + executor node and the time that process accepts or + rejects it. If the connect is not accepted or rejected + by the user within the number of seconds specified, + Session Control rejects it for the user. A value of 0 + indicates no timer is running." + ::= { session 2 } + + phivSessionOutTimer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the duration between the time the + executor requests a connect and the time that connect is + acknowledged by the destination node. If the connect is + not acknowledged within the number of seconds + specified, Session Control returns an error. A value of 0 + indicates no timer is running." + ::= { session 3 } + + -- End Communication Layer Group + + -- The implementation of the End Communication Layer Group is optional. + -- A system can be said to implement this group if and only if + -- all objects in this group are implemented. + + -- Remote State Table + + phivEndRemoteTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivEndRemoteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the state of sessions between the + node under study and the nodes found in the table." + ::= { end 1 } + + phivEndRemoteEntry OBJECT-TYPE + SYNTAX PhivEndRemoteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular remote node as seen + from the end communication layer." + INDEX { phivEndRemoteHostNodeID } + ::= { phivEndRemoteTable 1 } + + PhivEndRemoteEntry ::= + SEQUENCE { + phivEndRemoteHostNodeID + PhivAddr, + phivEndRemoteState + INTEGER, + phivEndCircuitIndex + INTEGER, + phivEndActiveLinks + INTEGER, + phivEndDelay + INTEGER + } + + phivEndRemoteHostNodeID OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value is the address of the remote node to be + evaluated." + ::= { phivEndRemoteEntry 1 } + + phivEndRemoteState OBJECT-TYPE + SYNTAX INTEGER { + on (1), + off (2), + shut (3), + restricted (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This represents the operational state of the remote node + being evaluated. + The possible states are: + + ON Allows logical links. + OFF Allows no new links, terminates existing + links, and stops routing traffic through. + SHUT Allows no new logical links, does not + destroy existing logical links, and goes + to the OFF state when all logical links are + gone. + RESTRICTED Allows no new incoming logical links from + other nodes. + + NOTE: These values are incremented by one compared to + the standard DECnet values in order to maintain + compliance with RFC 1155." + ::= { phivEndRemoteEntry 2 } + + phivEndCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known circuit used to + communicate with the remote node. This is the same + value as phivCircuitIndex." + ::= { phivEndRemoteEntry 3 } + + phivEndActiveLinks OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter represents the number of active + logical links from the executor to the destination node." + ::= { phivEndRemoteEntry 4 } + + phivEndDelay OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter is the average round trip + delay in seconds to the destination node. This + parameter is kept on a remote node basis." + ::= { phivEndRemoteEntry 5 } + + + -- End System Counter Table + + phivEndCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivEndCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the counters associated with each end + system that is known to the entity. These counters + reflect totals from the perspective of the executor + node." + ::= { end 2 } + + phivEndCountEntry OBJECT-TYPE + SYNTAX PhivEndCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular session between two end + systems." + INDEX { phivEndCountHostNodeID } + ::= { phivEndCountTable 1 } + + PhivEndCountEntry ::= + SEQUENCE { + phivEndCountHostNodeID + PhivAddr, + phivEndCountSecsLastZeroed + PhivCounter, + phivEndCountUsrBytesRec + PhivCounter, + phivEndCountUsrBytesSent + PhivCounter, + phivEndUCountUsrMessRec + PhivCounter, + phivEndCountUsrMessSent + PhivCounter, + phivEndCountTotalBytesRec + PhivCounter, + phivEndCountTotalBytesSent + PhivCounter, + phivEndCountTotalMessRec + PhivCounter, + phivEndCountTotalMessSent + PhivCounter, + phivEndCountConnectsRecd + PhivCounter, + phivEndCountConnectsSent + PhivCounter, + phivEndCountReponseTimeouts + PhivCounter, + phivEndCountRecdConnectResErrs + PhivCounter + } + + phivEndCountHostNodeID OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value is the address of the remote node to be + evaluated." + ::= { phivEndCountEntry 1 } + + phivEndCountSecsLastZeroed OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value is the number of seconds that have elapsed + since the counters for the node in this table row were + last set to zero. This counter is located in the + network management layer, but is returned with the + end system information which follows." + ::= { phivEndCountEntry 2 } + + phivEndCountUsrBytesRec OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user bytes received from the target host." + ::= { phivEndCountEntry 3 } + + phivEndCountUsrBytesSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user bytes sent to the target host." + ::= { phivEndCountEntry 4 } + + phivEndUCountUsrMessRec OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user messages received from the target host." + ::= { phivEndCountEntry 5 } + + phivEndCountUsrMessSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user messages sent to the target host." + ::= { phivEndCountEntry 6 } + + phivEndCountTotalBytesRec OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of bytes received from the target host." + ::= { phivEndCountEntry 7 } + + phivEndCountTotalBytesSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of bytes sent to the target host." + ::= { phivEndCountEntry 8 } + + phivEndCountTotalMessRec OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of messages received from the target host." + ::= { phivEndCountEntry 9 } + + phivEndCountTotalMessSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of messages sent to the target host." + ::= { phivEndCountEntry 10 } + + phivEndCountConnectsRecd OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of connects received from the target host." + ::= { phivEndCountEntry 11 } + + phivEndCountConnectsSent OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of connects sent to the target host." + ::= {phivEndCountEntry 12 } + + phivEndCountReponseTimeouts OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of response timeouts." + ::= { phivEndCountEntry 13 } + + phivEndCountRecdConnectResErrs OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of received connect resource errors." + ::= {phivEndCountEntry 14 } + + -- additional End System objects + + phivEndMaxLinks OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum active logical + link count allowed for the executor." + ::= { end 3 } + + phivEndNSPVers OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter represents the version number + of the node End Communication S/W. The format is + version number, ECO, and user ECO, e.g., 4.1.0" + ::= { end 4 } + + phivEndRetransmitFactor OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of times the + source End Communication at the executor node will + restart the retransmission timer when it expires. If + the number is exceeded, Session Control disconnects the + logical link for the user." + ::= { end 5 } + + phivEndDelayFact OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the number by which to multiply one sixteenth + of the estimated round trip delay to a node to set the + retransmission timer to that node." + ::= { end 6 } + + phivEndDelayWeight OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This number represents the weight to apply to a + current round trip delay estimate to a remote node + when updating the estimated round trip delay to a node. + On some systems the number must be 1 less than a power + of 2 for computational efficiency." + ::= { end 7 } + + phivEndInactivityTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum duration of inactivity + (no data in either direction) on a logical link before + the node checks to see if the logical link still works. + If no activity occurs within the minimum number of + seconds, End Communication generates artificial + traffic to test the link (End Communication + specification)." + ::= { end 8 } + + phivEndCountZeroCount OBJECT-TYPE + SYNTAX INTEGER { + other (1), + reset (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When this value is set to 2, all of the counters in + the End System Counter Table are set to zero." + ::= { end 9 } + + phivEndMaxLinksActive OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the high water mark for the + number of links that were active at any one time." + ::= { end 10 } + + -- Routing Layer Group + + -- The implementation of the Routing Layer Group is mandatory for + -- all systems that implement level 1 routing layer + -- communications. + + phivRouteBroadcastRouteTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value determines the maximum time in seconds + allowed between Routing updates on Ethernet + circuits. When this timer expired before a routing + update occurs, a routing update is forced. With a + standard calculation, Routing also uses this timer + to enforce a minimum delay between routing updates." + ::= { routing 1 } + + phivRouteBuffSize OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter value determines the maximum size of + a Routing message. It therefore determines the maximum + size message that can be forwarded. This size includes + protocol overhead down to and including the End + Communication layer, plus a constant value of 6. (This + value of 6 is included to provide compatibility with + the parameter definition in Phase III, which included + the Routing overhead.) It does not include Routing or + Data link overhead (except for the constant value of + 6). There is one buffer size for all circuits. + + NOTE: The BUFFER SIZE defines the maximum size messages + that the Routing layer can forward. The SEGMENT BUFFER + SIZE (defined below) defines the maximum size messages + that the End Communication layer can transmit or + receive. The SEGMENT BUFFER SIZE is always less than + or equal to the BUFFER SIZE. Normally the two + parameters will be equal. They may be different to + allow the network manager to alter buffer sizes + on all nodes without interruption of service. They both + include an extra 6 bytes for compatibility with Phase + III." + ::= { routing 2 } + + phivRouteRoutingVers OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter identifies the executor node's + Routing version number. The format is version number, + ECO, and user ECO, e.g., 4.1.0" + ::= { routing 3 } + + phivRouteMaxAddr OBJECT-TYPE + SYNTAX INTEGER (1..1023) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the largest node number and, + therefore, number of nodes that can be known about + by the executor node's home area." + ::= { routing 4 } + + phivRouteMaxBdcastNonRouters OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum total number of + nonrouters the executor node can have on its Ethernet + circuits." + ::= { routing 5 } + + phivRouteMaxBdcastRouters OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum total number of + routers the executor node can have on its Ethernet + circuits." + ::= { routing 6 } + + phivRouteMaxBuffs OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of transmit + buffers that Routing may use for all circuits." + ::= { routing 7 } + + phivRouteMaxCircuits OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of Routing + circuits that the executor node can know about." + ::= { routing 8 } + + phivRouteMaxCost OBJECT-TYPE + SYNTAX INTEGER (1..1022) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum total path cost + allowed from the executor to any node within an area. + The path cost is the sum of the circuit costs along + a path between two nodes. This parameter defines the + point where the executor node's Routing routing + decision algorithm declares another node unreachable + because the cost of the least costly path to the + other node is excessive. For correct operation, this + parameter must not be less than the maximum path cost + of the network." + ::= { routing 9 } + + phivRouteMaxHops OBJECT-TYPE + SYNTAX INTEGER (1..30) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of routing hops + allowable from the executor to any other reachable node + within an area. (A hop is the logical distance over a + circuit between two adjacent nodes.) This parameter + defines the point where the executor node's Routing + routing decision algorithm declares another node + unreachable because the length of the shortest path + between the two nodes is too long. For correct + operation, this parameter must not be less than the + network diameter. (The network diameter is the + reachability distance between the two nodes of the + network having the greatest reachability distance, + where reachability distance is the length the shortest + path between a given pair of nodes.)" + ::= { routing 10 } + + phivRouteMaxVisits OBJECT-TYPE + SYNTAX INTEGER (1..63) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of nodes a + message coming into the executor node can have visited. + If the message is not for this node and the MAXIMUM + VISITS number is exceeded, the message is discarded. + The MAXIMUM VISITS parameter defines the point where + the packet lifetime control algorithm discards + a packet that has traversed too many nodes. For correct + operation, this parameter must not be less than the + maximum path length of the network. (The maximum path + length is the routing distance between the two nodes of + the network having the greatest routing distance, where + routing distance is the length of the least costly + path between a given pair of nodes.)" + ::= { routing 11 } + + phivRouteRoutingTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value determines the maximum time in seconds + allowed between Routing updates on non-Ethernet + circuits. When this timer expires before a routing + update occurs, a routing update is forced." + ::= { routing 12 } + + phivRouteSegBuffSize OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter value determines the maximum size of an + end-to-end segment. The size is a decimal integer in + the range 1-65535. This size is in bytes. This size + includes protocol overhead down to and including the + End Communication layer, plus a constant value of 6. + (This value of 6 is included to provide compatibility + with the BUFFER SIZE parameter definition.) It does not + include Routing or Data link overhead (except for the + constant value of 6)." + ::= { routing 13 } + + phivRouteType OBJECT-TYPE + SYNTAX INTEGER { + routing-III (1), + nonrouting-III (2), + area (3), + routing-IV (4), + nonrouting-IV (5) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This parameter indicates the type of the executor + node. The node-type is one of the following: + + routing-III + nonrouting-III + routing-IV + ronrouting-IV + area + + A routing node has full routing capability. A + nonrouting node contains a subset of the Routing + routing modules. The III and IV indicate the DNA + phase of the node. Nonrouting nodes can deliver + and receive packets to and from any node, but cannot + route packets from other nodes through to other nodes. + An area node routes between areas. Refer to the Routing + specification for details. + + For adjacent nodes, this is a read-only parameter that + indicates the type of the reachable adjacent node. + NOTE: The ROUTING-III and NONROUTING-III values are + incremented by one compared to the standard DECnet + values in order to maintain compliance with RFC 1155)" + ::= { routing 14 } + + phivRouteCountAgedPktLoss OBJECT-TYPE + SYNTAX PhivCounter (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of aged packet losses." + ::= { routing 15 } + + phivRouteCountNodeUnrPktLoss OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of node unreachable packet losses." + ::= { routing 16 } + + phivRouteCountOutRngePktLoss OBJECT-TYPE + SYNTAX PhivCounter (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of node out-of-range packet losses." + ::= { routing 17 } + + phivRouteCountOverSzePktLoss OBJECT-TYPE + SYNTAX PhivCounter (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of Oversized packet losses." + ::= { routing 18 } + + phivRouteCountPacketFmtErr OBJECT-TYPE + SYNTAX PhivCounter (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of packet format errors." + ::= { routing 19 } + + phivRouteCountPtlRteUpdtLoss OBJECT-TYPE + SYNTAX PhivCounter (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of partial routing update losses." + ::= { routing 20 } + + phivRouteCountVerifReject OBJECT-TYPE + SYNTAX PhivCounter (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of verification rejects." + ::= { routing 21 } + + -- Level 1 Routing Table + + phivLevel1RouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivLevel1RouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the currently known DECnet Phase + IV Routes." + ::= { routing 22 } + + phivLevel1RouteEntry OBJECT-TYPE + SYNTAX PhivLevel1RouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the currently known DECnet Phase + IV Routes." + INDEX { phivLevel1RouteNodeAddr } + ::= { phivLevel1RouteTable 1 } + + PhivLevel1RouteEntry ::= + SEQUENCE { + phivLevel1RouteNodeAddr + PhivAddr, + phivLevel1RouteCircuitIndex + INTEGER, + phivLevel1RouteCost + INTEGER, + phivLevel1RouteHops + INTEGER, + phivLevel1RouteNextNode + PhivAddr + } + + phivLevel1RouteNodeAddr OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value is the address of the node about which + routing information is contained in this level 1 + routing table." + ::= { phivLevel1RouteEntry 1 } + + phivLevel1RouteCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known circuit. This is + the index to the circuit state table and is the same + value as phivCircuitIndex." + ::= { phivLevel1RouteEntry 2 } + + phivLevel1RouteCost OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter represents the total cost + over the current path to the destination node. Cost is + a positive integer value associated with using a + circuit. Routing routes messages (data) along the path + between two nodes with the smallest cost. COST is kept + on a remote node basis." + ::= { phivLevel1RouteEntry 3 } + + phivLevel1RouteHops OBJECT-TYPE + SYNTAX INTEGER (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter represents the number of hops + over to a destination node. A hop is Routing value + representing the logical distance between two nodes in + a network. HOPS is kept on a remote node basis." + ::= { phivLevel1RouteEntry 4 } + + phivLevel1RouteNextNode OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only value indicates the next node on the + circuit used to get to the node under scrutiny + (next hop)." + ::= { phivLevel1RouteEntry 5 } + + -- Additional routing parameters + + phivRouteCountZeroCount OBJECT-TYPE + SYNTAX INTEGER { + other (1), + reset (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When this value is set to 2, the following objects are + set to Zero: phivRouteCountAgedPktLoss, + phivRouteCountNodeUnrPktLoss, + phivRouteCountOutRngePktLoss, + phivRouteCountOverSzePktLoss, + phivRouteCountPacketFmtErr, + phivRouteCountPtlRteUpdtLoss, and + phivRouteCountVerifReject." + ::= { routing 23 } + + phivRouteSystemAddr OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "DECnet Phase IV node address." + ::= { routing 24 } + + phivRouteRoutingType OBJECT-TYPE + SYNTAX INTEGER { + routing-III (1), + nonrouting-III (2), + area (3), + routing-IV (4), + nonrouting-IV (5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This read-write parameter indicates the type of the executor + node. The node-type is one of the following: + + routing-III + nonrouting-III + routing-IV + ronrouting-IV + area + + A routing node has full routing capability. A + nonrouting node contains a subset of the Routing + routing modules. The III and IV indicate the DNA + phase of the node. Nonrouting nodes can deliver + and receive packets to and from any node, but cannot + route packets from other nodes through to other nodes. + An area node routes between areas. Refer to the Routing + specification for details. + + For adjacent nodes, this is a read-only parameter that + indicates the type of the reachable adjacent node. + NOTE: The ROUTING-III and NONROUTING-III values are + incremented by one compared to the standard DECnet + values in order to maintain compliance with RFC 1155)" + ::= { routing 25 } + + phivRouteSystemAddress OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "DECnet Phase IV node address." + ::= { routing 26 } + + -- Circuit Group + + -- The implementation of the Circuit Group is mandatory for + -- all systems. + + -- Circuit Parameters Table + + phivCircuitParametersTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivCircuitParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the parameters associated with all + circuits currently known." + ::= {circuit 1 } + + phivCircuitParametersEntry OBJECT-TYPE + SYNTAX PhivCircuitParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Parameters information about all circuits currently + known." + INDEX { phivCircuitIndex } + ::= { phivCircuitParametersTable 1 } + + PhivCircuitParametersEntry ::= + SEQUENCE { + phivCircuitIndex + INTEGER, + phivCircuitLineIndex + InterfaceIndex, + phivCircuitCommonState + INTEGER, + phivCircuitCommonSubState + INTEGER, + phivCircuitCommonName + DisplayString, + phivCircuitExecRecallTimer + INTEGER, + phivCircuitCommonType + INTEGER, + phivCircuitService + INTEGER, + phivCircuitExecCost + INTEGER, + phivCircuitExecHelloTimer + INTEGER + } + + phivCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known circuit." + ::= { phivCircuitParametersEntry 1 } + + phivCircuitLineIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The line on which this circuit is active. This is + the same as the ifIndex." + ::= { phivCircuitParametersEntry 2 } + + phivCircuitCommonState OBJECT-TYPE + SYNTAX INTEGER { + on (1), + off (2), + service (3), + cleared (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the circuit's Network Management + operational state. NOTE: These values are incremented + by one compared to the standard DECnet values in order + to maintain compliance with RFC 1155." + ::= { phivCircuitParametersEntry 3 } + + phivCircuitCommonSubState OBJECT-TYPE + SYNTAX INTEGER { + starting (1), + reflecting (2), + looping (3), + loading (4), + dumping (5), + triggering (6), + autoservice (7), + autoloading (8), + autodumping (9), + autotriggering (10), + synchronizing (11), + failed (12), + running (13) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the circuit's Network Management + operational and service substate. NOTE: These values are + incremented by one compared to the standard DECnet values + in order to maintain compliance with RFC 1155." + ::= { phivCircuitParametersEntry 4 } + + phivCircuitCommonName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the circuit entry in the table, for example, + SVA-0 or in a level 2 router ASYNC-8 or ETHER-1)." + ::= { phivCircuitParametersEntry 5 } + + phivCircuitExecRecallTimer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter represents the minimum number of + seconds to wait before restarting the circuit. A + value of 0 indicates not timer is running." + ::= { phivCircuitParametersEntry 6 } + + phivCircuitCommonType OBJECT-TYPE + SYNTAX INTEGER { + ddcmp-point (1), + ddcmp-control (2), + ddcmp-tributary (3), + x25 (4), + ddcmp-dmc (5), + ethernet (6), + ci (7), + qp2-dte20 (8), + bisync (9), + other (14), + fddi (15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Represents the type of the circuit. For X.25 circuits, + the value must be set to X25. For DDCMP and Ethernet + circuits it is read only and is the same value as the + protocol of the associated line. + NOTE: Values 1 - 5 are incremented by one compared to the + standard DECnet values in order to maintain compliance + with RFC 1155." + ::= { phivCircuitParametersEntry 7 } + + phivCircuitService OBJECT-TYPE + SYNTAX INTEGER { + enabled (1), + disabled (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value indicates whether or not Network Management + allows service operations on a circuit. The values for + service-control are as follows: + + ENABLED SERVICE state and/or service functions are + allowed. + + DISABLED SERVICE state and/or service functions are not + allowed. + + NOTE: These values are incremented by one compared to the + standard DECnet values in order to maintain compliance + with RFC 1155." + ::= { phivCircuitParametersEntry 8 } + + phivCircuitExecCost OBJECT-TYPE + SYNTAX INTEGER (1..25) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the routing cost of the circuit. + Routing sends messages along the path between two nodes + having the smallest cost." + ::= { phivCircuitParametersEntry 9 } + + phivCircuitExecHelloTimer OBJECT-TYPE + SYNTAX INTEGER (1..8191) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value determines the frequency of Routing Hello + messages sent to the adjacent node on the circuit." + ::= { phivCircuitParametersEntry 10 } + + -- Circuit Counters Table + + phivCircuitCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivCircuitCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the counters associated with all + circuits currently known." + ::= { circuit 2 } + + phivCircuitCountEntry OBJECT-TYPE + SYNTAX PhivCircuitCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Counter information about all circuits currently known" + INDEX { phivCircuitIndex } + ::= { phivCircuitCountTable 1 } + + PhivCircuitCountEntry ::= + SEQUENCE { + phivCircuitCountSecLastZeroed + PhivCounter, + phivCircuitCountTermPacketsRecd + PhivCounter, + phivCircuitCountOriginPackSent + PhivCounter, + phivCircuitCountTermCongLoss + PhivCounter, + phivCircuitCountCorruptLoss + PhivCounter, + phivCircuitCountTransitPksRecd + PhivCounter, + phivCircuitCountTransitPkSent + PhivCounter, + phivCircuitCountTransitCongestLoss + PhivCounter, + phivCircuitCountCircuitDown + PhivCounter, + phivCircuitCountInitFailure + PhivCounter, + phivCircuitCountAdjDown + PhivCounter, + phivCircuitCountPeakAdj + PhivCounter, + phivCircuitCountBytesRecd + PhivCounter, + phivCircuitCountBytesSent + PhivCounter, + phivCircuitCountDataBlocksRecd + PhivCounter, + phivCircuitCountDataBlocksSent + PhivCounter, + phivCircuitCountUsrBuffUnav + PhivCounter + } + + phivCircuitCountSecLastZeroed OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of seconds since the circuit counters for this + circuit were last zeroed." + ::= { phivCircuitCountEntry 1 } + + phivCircuitCountTermPacketsRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of terminating packets received on this circuit." + ::= { phivCircuitCountEntry 2 } + + phivCircuitCountOriginPackSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of originating packets sent on this circuit." + ::= { phivCircuitCountEntry 3 } + + phivCircuitCountTermCongLoss OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of terminating congestion losses on this + circuit." + ::= { phivCircuitCountEntry 4 } + + phivCircuitCountCorruptLoss OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of corruption losses on this circuit." + ::= { phivCircuitCountEntry 5 } + + phivCircuitCountTransitPksRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of Transit packets received on this circuit." + ::= { phivCircuitCountEntry 6 } + + phivCircuitCountTransitPkSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of transit packets sent on this circuit." + ::= { phivCircuitCountEntry 7 } + + phivCircuitCountTransitCongestLoss OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of transit congestion losses on this circuit." + ::= { phivCircuitCountEntry 8 } + + phivCircuitCountCircuitDown OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of circuit downs on this circuit." + ::= { phivCircuitCountEntry 9 } + + phivCircuitCountInitFailure OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of Initialization failures on this circuit." + ::= { phivCircuitCountEntry 10 } + + phivCircuitCountAdjDown OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter indicates the number of adjacency losses + that result from any of the following: + Node listener timeout + Invalid data received at node listener + Unexpected control (initialization or verification) + message received + Routing message received with a checksum error + Node identification from a routing message or a + Hello message that is not the one expected Hello + message received indicating that connectivity + became one-way + Adjacency idled." + ::= { phivCircuitCountEntry 11 } + + phivCircuitCountPeakAdj OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter indicates the maximum number of nodes + that are up on the circuit." + ::= { phivCircuitCountEntry 12 } + + phivCircuitCountBytesRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of bytes received on this circuit." + ::= { phivCircuitCountEntry 13 } + + phivCircuitCountBytesSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of bytes sent on this circuit." + ::= { phivCircuitCountEntry 14 } + + phivCircuitCountDataBlocksRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data blocks received on this circuit." + ::= { phivCircuitCountEntry 15 } + + phivCircuitCountDataBlocksSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data blocks sent on this circuit." + ::= { phivCircuitCountEntry 16 } + + phivCircuitCountUsrBuffUnav OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user buffer unavailable errors." + ::= { phivCircuitCountEntry 17 } + + -- Additional Circuit Parameters + + phivCircuitOrigQueueLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter indicates the maximum number of + originating packets that may be outstanding on this + circuit. This does not include route-thru traffic." + ::= { circuit 3 } + + phivCircuitCountZeroCount OBJECT-TYPE + SYNTAX INTEGER { + other (1), + reset (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When this value is set to 2, all of the counters in the + Circuit Counter Table are set to zero." + ::= { circuit 4 } + + -- DDCMP Circuit Group + + -- The implementation of the DDCMP Circuit Group is optional. + -- A system can be said to implement this group if and only if + -- all objects in this group are implemented. + + -- DDCMP Parameters Table + + phivDDCMPCircuitParametersTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivDDCMPCircuitParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about DDCMP circuit parameters." + ::= { ddcmp 1} + + phivDDCMPCircuitParametersEntry OBJECT-TYPE + SYNTAX PhivDDCMPCircuitParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Parameters information about DDCMP circuits currently + known." + INDEX { phivDDCMPCircuitIndex } + ::= { phivDDCMPCircuitParametersTable 1 } + + PhivDDCMPCircuitParametersEntry ::= + SEQUENCE { + phivDDCMPCircuitIndex + INTEGER, + phivDDCMPCircuitAdjNodeAddr + PhivAddr, + phivDDCMPCircuitTributary + INTEGER + } + + phivDDCMPCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known DDCMP circuit. + This is the same value as phivCircuitIndex." + ::= { phivDDCMPCircuitParametersEntry 1 } + + phivDDCMPCircuitAdjNodeAddr OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The address of the adjacent node." + ::= { phivDDCMPCircuitParametersEntry 2 } + + phivDDCMPCircuitTributary OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the Data Link physical tributary + address of the circuit." + ::= { phivDDCMPCircuitParametersEntry 3 } + + -- DDCMP Circuit Counter Table + + phivDDCMPCircuitCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivDDCMPCircuitCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about the DDCMP counters associated with all + circuits currently known." + ::= { ddcmp 2 } + + phivDDCMPCircuitCountEntry OBJECT-TYPE + SYNTAX PhivDDCMPCircuitCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Counter information about DDCMP circuits now known" + INDEX { phivCircuitIndex } + ::= { phivDDCMPCircuitCountTable 1 } + + PhivDDCMPCircuitCountEntry ::= + SEQUENCE { + phivDDCMPCircuitErrorsInbd + PhivCounter, + phivDDCMPCircuitErrorsOutbd + PhivCounter, + phivDDCMPCircuitRmteReplyTimeouts + PhivCounter, + phivDDCMPCircuitLocalReplyTimeouts + PhivCounter, + phivDDCMPCircuitRmteBuffErrors + PhivCounter, + phivDDCMPCircuitLocalBuffErrors + PhivCounter, + phivDDCMPCircuitSelectIntervalsElap + PhivCounter, + phivDDCMPCircuitSelectTimeouts + INTEGER + } + + phivDDCMPCircuitErrorsInbd OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of Data errors inbound." + ::= { phivDDCMPCircuitCountEntry 1 } + + phivDDCMPCircuitErrorsOutbd OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of outbound data errors." + ::= { phivDDCMPCircuitCountEntry 2 } + + phivDDCMPCircuitRmteReplyTimeouts OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of remote reply timeouts." + ::= { phivDDCMPCircuitCountEntry 3 } + + phivDDCMPCircuitLocalReplyTimeouts OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of local Reply timeouts." + ::= { phivDDCMPCircuitCountEntry 4 } + + phivDDCMPCircuitRmteBuffErrors OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of remote reply time out errors." + ::= { phivDDCMPCircuitCountEntry 5 } + + phivDDCMPCircuitLocalBuffErrors OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of local buffer errors." + ::= { phivDDCMPCircuitCountEntry 6 } + + phivDDCMPCircuitSelectIntervalsElap OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Selection intervals that have elapsed." + ::= {phivDDCMPCircuitCountEntry 7 } + + phivDDCMPCircuitSelectTimeouts OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of selection timeouts." + ::= {phivDDCMPCircuitCountEntry 8 } + + -- DDCMP Line Count Table + + phivDDCMPLineCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivDDCMPLineCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DDCMP Line Count Table." + ::= { ddcmp 3 } + + phivDDCMPLineCountEntry OBJECT-TYPE + SYNTAX PhivDDCMPLineCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "There is one entry in the table for each line." + INDEX { phivDDCMPLineCountIndex } + ::= { phivDDCMPLineCountTable 1 } + + PhivDDCMPLineCountEntry ::= + SEQUENCE { + phivDDCMPLineCountIndex + InterfaceIndex, + phivDDCMPLineCountDataErrsIn + PhivCounter, + phivDDCMPLineCountRmteStationErrs + PhivCounter, + phivDDCMPLineCountLocalStationErrs + PhivCounter + } + + phivDDCMPLineCountIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The line on which this entry's equivalence is + effective. The interface identified by a particular + value of this index is the same interface as + identified by the same value of phivLineIndex. + This value is the ifIndex." + ::= { phivDDCMPLineCountEntry 1 } + + phivDDCMPLineCountDataErrsIn OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data errors inbound." + ::= { phivDDCMPLineCountEntry 2 } + + phivDDCMPLineCountRmteStationErrs OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of remote station errors." + ::= { phivDDCMPLineCountEntry 3 } + + phivDDCMPLineCountLocalStationErrs OBJECT-TYPE + SYNTAX PhivCounter (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of local station errors." + ::= { phivDDCMPLineCountEntry 4 } + + -- DDCMP Multipoint Circuit Control Group + + -- The implementation of the DDCMP Multipoint Circuit Control + -- Group is optional. A system can be said to implement this group + -- if and only if all objects in this group are implemented. + + phivControlSchedTimer OBJECT-TYPE + SYNTAX INTEGER (50..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the number of milliseconds + between recalculation of tributary polling priorities." + DEFVAL { 200 } + ::= { control 1 } + + phivControlDeadTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the number of milliseconds + between polls of one of the set of dead + tributaries." + DEFVAL { 10000 } + ::= { control 2 } + + phivControlDelayTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the minimum number of + milliseconds to delay between polls. The delay timer + limits the effect of a very fast control station on + slow tributaries." + ::= { control 3 } + + phivControlStreamTimer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the number of milliseconds a + tributary or a half duplex remote station is + allowed to hold the line. + + NOTE: This parameter can also be applied to + half-duplex lines of type DDCMP POINT." + DEFVAL { 6000 } + ::= { control 4 } + + -- DDCMP Multipoint Circuit Control Parameters Table + + phivControlParametersTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivControlParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about control circuit parameters." + ::= { control 5 } + + phivControlParametersEntry OBJECT-TYPE + SYNTAX PhivControlParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Parameters information about control circuits + currently known." + INDEX { phivControlCircuitIndex } + ::= { phivControlParametersTable 1 } + + PhivControlParametersEntry ::= + SEQUENCE { + phivControlCircuitIndex + INTEGER, + phivControlBabbleTimer + INTEGER, + phivControlMaxBuffs + INTEGER, + phivControlMaxTransmits + INTEGER, + phivControlDyingBase + INTEGER, + phivControlDyingIncrement + INTEGER, + phivControlDeadThreshold + INTEGER, + phivControlDyingThreshold + INTEGER, + phivControlInactTreshold + INTEGER, + phivControlPollingState + INTEGER, + phivControlPollingSubState + INTEGER, + phivControlTransTimer + INTEGER + } + + phivControlCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known multipoint + control circuit. + This is the same value as phivCircuitIndex." + ::= { phivControlParametersEntry 1 } + + phivControlBabbleTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the number of milliseconds that a + selected tributary or remote half-duplex station is + allowed to transmit." + DEFVAL { 6000 } + ::= { phivControlParametersEntry 2 } + + phivControlMaxBuffs OBJECT-TYPE + SYNTAX INTEGER (1..254) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of buffers the + tributary can use from a common buffer pool. If not + set, there is no common buffer pool and buffers are + explicitly supplied by the higher level. Count is a + decimal integer in the range 1-254." + ::= { phivControlParametersEntry 3 } + + phivControlMaxTransmits OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of data + messages that can be transmitted at one time. Count + is a decimal integer in the range 1-255." + DEFVAL { 4 } + ::= { phivControlParametersEntry 4 } + + phivControlDyingBase OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the base priority to which a + tributary is reset each time it has been polled. A + separate base can be set for each of the indicated + polling states. Base is a decimal integer in the range + 0-255. If not set, the defaults are: active, 255; + inactive, 0; and dying, 0." + ::= { phivControlParametersEntry 5 } + + phivControlDyingIncrement OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the increment added to the + tributary priority each time the scheduling timer + expires. If not set, the defaults are: active, 0; + inactive, 64; and dying, 16." + ::= { phivControlParametersEntry 6 } + + phivControlDeadThreshold OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the number of times to poll the + active, inactive, or dying tributary before changing + its polling state to dead because of receive timeouts. + Count is a decimal integer in the range 0-255." + DEFVAL { 8 } + ::= { phivControlParametersEntry 7 } + + phivControlDyingThreshold OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the number of times to poll the + active or inactive tributary before changing its + polling state to dying because of receive timeouts. + Count is a decimal integer in the range 0-255." + DEFVAL { 2 } + ::= { phivControlParametersEntry 8 } + + phivControlInactTreshold OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the number of times to poll the + active tributary before changing its polling state to + inactive because of no data response. Count is a + decimal integer in the range + 0-255." + DEFVAL { 8 } + ::= { phivControlParametersEntry 9 } + + phivControlPollingState OBJECT-TYPE + SYNTAX INTEGER { + automatic (1), + active (2), + inactive (3), + dying (4), + dead (5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the state of the tributary + relative to the multipoint polling algorithm. If not + set the default is AUTOMATIC. The possible states are: + + AUTOMATIC + + The tributary's state is allowed to vary according to + the operation of the polling algorithm. + + ACTIVE/INACTIVE/DYING/DEAD + + The tributary is locked in the specified state. + + NOTE: These values are incremented by one compared to + the standard DECnet values in order to maintain + compliance with RFC 1155." + ::= { phivControlParametersEntry 10 } + + phivControlPollingSubState OBJECT-TYPE + SYNTAX INTEGER { + active (1), + inactive (2), + dying (3), + dead (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the tributary's state as + determined by the polling algorithm. This applies + only when the polling state is AUTOMATIC and is + read-only to Network Management. Polling-substate is + one of ACTIVE, INACTIVE, DYING, or DEAD. It is + displayed as a tag on the polling state, for example: + AUTOMATIC-INACTIVE." + ::= { phivControlParametersEntry 11 } + + phivControlTransTimer OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the number of milliseconds to + delay between data message transmits. Milliseconds is + a decimal integer in the range 0-65535." + DEFVAL { 0 } + ::= { phivControlParametersEntry 12 } + + -- Ethernet Group + + -- The implementation of the Ethernet Group is mandatory + -- for all systems which support ethernet links. + + -- Ethernet Parameters Table + + phivEthLinkParametersTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivEthLinkParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about ethernet link parameters." + ::= { ethernet 1} + + phivEthLinkParametersEntry OBJECT-TYPE + SYNTAX PhivEthLinkParametersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Parameter information about ethernet links currently + known." + INDEX { phivEthLinkIndex } + ::= { phivEthLinkParametersTable 1 } + + PhivEthLinkParametersEntry ::= + SEQUENCE { + phivEthLinkIndex + INTEGER, + phivEthDesigRouterNodeAddr + PhivAddr, + phivEthMaxRouters + INTEGER, + phivEthRouterPri + INTEGER, + phivEthHardwareAddr + OCTET STRING + } + + phivEthLinkIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The circuit over which this links information is + collected. This is the same as phivCircuitIndex." + ::= { phivEthLinkParametersEntry 1 } + + phivEthDesigRouterNodeAddr OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value is the address of the designated router." + ::= { phivEthLinkParametersEntry 2 } + + phivEthMaxRouters OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter is the maximum number of routers (other + than the executor itself) allowed on the circuit by + Routing for circuits that are owned by the executor + node." + ::= { phivEthLinkParametersEntry 3 } + + phivEthRouterPri OBJECT-TYPE + SYNTAX INTEGER (0..127) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter is the priority that this router is to + have in the selection of designated router for the + circuit on circuits that are owned by the executor + node." + DEFVAL { 64 } + ::= { phivEthLinkParametersEntry 4 } + + phivEthHardwareAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter is the address that is + associated with the line device hardware as seen by + the DECnet Software. This value is not the same as + ifPhysAddress." + ::= { phivEthLinkParametersEntry 5 } + + -- Counters Group + + -- The implementation of the Counters Group is optional. + -- A system can be said to implement this group if and only if + -- all objects in this group are implemented. + + -- Counters Table + + phivCountersCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivCountersCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about ethernet link counters." + ::= { counters 1 } + + phivCountersCountEntry OBJECT-TYPE + SYNTAX PhivCountersCountEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Counter information about ethernet links currently + known." + INDEX { phivCountersIndex } + ::= { phivCountersCountTable 1 } + + PhivCountersCountEntry ::= + SEQUENCE { + phivCountersIndex + InterfaceIndex, + phivCountersCountBytesRecd + PhivCounter, + phivCountersCountBytesSent + PhivCounter, + phivCountersCountDataBlocksRecd + PhivCounter, + phivCountersCountDataBlocksSent + PhivCounter, + phivCountersCountEthUsrBuffUnav + PhivCounter, + phivCountersCountMcastBytesRecd + PhivCounter, + phivCountersCountDataBlksRecd + PhivCounter, + phivCountersCountDataBlksSent + PhivCounter, + phivCountersCountMcastBlksRecd + PhivCounter, + phivCountersCountBlksSentDef + PhivCounter, + phivCountersCountBlksSentSingleCol + PhivCounter, + phivCountersCountBlksSentMultCol + PhivCounter, + phivCountersCountSendFailure + INTEGER, + phivCountersCountCollDetectFailure + INTEGER, + phivCountersCountReceiveFailure + INTEGER, + phivCountersCountUnrecFrameDest + INTEGER, + phivCountersCountDataOver + INTEGER, + phivCountersCountSysBuffUnav + INTEGER, + phivCountersCountUsrBuffUnav + INTEGER + } + + phivCountersIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The interface to which these counters apply. This is + the same interface as identified by the same value of + phivLineIndex. This value is the ifIndex." + ::= { phivCountersCountEntry 1 } + + phivCountersCountBytesRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of bytes received over this link." + ::= { phivCountersCountEntry 2 } + + phivCountersCountBytesSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of bytes sent over this link." + ::= { phivCountersCountEntry 3 } + + phivCountersCountDataBlocksRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Number of data blocks received over this link." + ::= { phivCountersCountEntry 4 } + + phivCountersCountDataBlocksSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Number of data blocks sent over this link." + ::= { phivCountersCountEntry 5 } + + phivCountersCountEthUsrBuffUnav OBJECT-TYPE + SYNTAX PhivCounter (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user buffer unavailable errors over this + link." + ::= { phivCountersCountEntry 6 } + + phivCountersCountMcastBytesRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of multicast bytes received over this link." + ::= { phivCountersCountEntry 7 } + + phivCountersCountDataBlksRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data blocks received over this link." + ::= { phivCountersCountEntry 8 } + + phivCountersCountDataBlksSent OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data blocks sent over this link." + ::= { phivCountersCountEntry 9 } + + phivCountersCountMcastBlksRecd OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of multicast blocks received over this link." + ::= { phivCountersCountEntry 10 } + + phivCountersCountBlksSentDef OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of blocks sent, initially deferred over this + link." + ::= { phivCountersCountEntry 11 } + + phivCountersCountBlksSentSingleCol OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of blocks sent, single collision over this link." + ::= { phivCountersCountEntry 12 } + + phivCountersCountBlksSentMultCol OBJECT-TYPE + SYNTAX PhivCounter (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of blocks sent, multiple collisions over this + link." + ::= { phivCountersCountEntry 13 } + + phivCountersCountSendFailure OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of send failures over this link." + ::= { phivCountersCountEntry 14 } + + phivCountersCountCollDetectFailure OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of collision detect check failures over this + link." + ::= { phivCountersCountEntry 15 } + + phivCountersCountReceiveFailure OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of receive failures over this link." + ::= { phivCountersCountEntry 16 } + + phivCountersCountUnrecFrameDest OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of unrecognized frame destinations over this + link." + ::= { phivCountersCountEntry 17 } + + phivCountersCountDataOver OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of data overruns over this link." + ::= { phivCountersCountEntry 18 } + + phivCountersCountSysBuffUnav OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of system buffer unavailables over this link." + ::= { phivCountersCountEntry 19 } + + phivCountersCountUsrBuffUnav OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of user buffer unavailables." + ::= { phivCountersCountEntry 20 } + + -- Adjacency Group + + -- The implementation of the Adjacency Group is mandatory for all + -- conformant implementations of this memo. + + -- The phivAdjTable has been made obsolete it has been replaced with + -- the phivAdjNodeTable. + + phivAdjTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivAdjEntry + ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "The Adjacency Table." + ::= { adjacency 1 } + + phivAdjEntry OBJECT-TYPE + SYNTAX PhivAdjEntry + ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "There is one entry in the table for each adjacency." + INDEX { phivAdjCircuitIndex } + ::= { phivAdjTable 1 } + + PhivAdjEntry ::= + SEQUENCE { + phivAdjCircuitIndex + INTEGER, + phivAdjNodeAddr + PhivAddr, + phivAdjBlockSize + INTEGER, + phivAdjListenTimer + INTEGER (1..65535), + phivAdjCircuitEtherServPhysAddr + OCTET STRING, + phivAdjType + INTEGER, + phivAdjState + INTEGER, + phivAdjPriority + INTEGER, + phivAdjExecListenTimer + INTEGER (1..65535) + } + phivAdjCircuitIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "A unique index value for each known circuit." + ::= { phivAdjEntry 1 } + + phivAdjNodeAddr OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "The address of the adjacent node." + ::= { phivAdjEntry 2 } + + phivAdjBlockSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This read-only parameter is the block size that was + negotiated with the adjacent Routing layer during Routing + initialization over a particular circuit. It includes the + routing header, but excludes the data link header. This + parameter is qualified by ADJACENT NODE." + ::= { phivAdjEntry 3 } + + phivAdjListenTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This value determines the maximum number of seconds + allowed to elapse before Routing receives some message + (either a Hello message or a user message) from the + adjacent node on the circuit. It was agreed during + Routing initialization with the adjacent Routing layer. + This parameter is qualified by ADJACENT NODE." + ::= { phivAdjEntry 4 } + + phivAdjCircuitEtherServPhysAddr OBJECT-TYPE + SYNTAX OCTET STRING ( SIZE (6) ) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This parameter indicates the Ethernet physical address + of an adjacent node that is being serviced on this + circuit. This parameter is a qualifier for SERVICE + SUBSTATE." + ::= { phivAdjEntry 5 } + + phivAdjType OBJECT-TYPE + SYNTAX INTEGER { + routing-III (1), + nonrouting-III (2), + area (3), + routing-IV (4), + nonrouting-IV (5) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This parameter indicates the type of adjacency. + + For adjacent nodes, this is a read-only parameter that + indicates the type of the reachable adjacent node. + NOTE: The routing-III and nonrouting-III values are + incremented by one compared to the standard DECnet + values in order to maintain compliance with RFC 1155)" + ::= { phivAdjEntry 6 } + + phivAdjState OBJECT-TYPE + SYNTAX INTEGER { + initializing (1), -- Ethernet one-way + up (2), -- Ethernet two-way + run (3), -- The eight DDCMP/X.25 states + circuit-rejected (4), + data-link-start (5), + routing-layer-initialize (6), + routing-layer-verify (7), + routing-layer-complete (8), + off (9), + halt (10) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This value indicates the state of a router adjacency. + On adjacencies over a circuit of type + (phivCircuitCommonType) Ethernet, CI, or FDDI, with an + adjacent node of type (phivAdjType) ROUTING IV or AREA, + this variable is the state of the Ethernet + Initialization Layer for this adjacency, and can have + values INITIALIZING or UP. (See Section 9.1.1 of + DECnet Phase IV Routing Layer Functional Specification.) + + On adjacencies over a circuit of type + (phivCircuitCommonType) Ethernet, CI, or FDDI, with an + adjacent node of type (phivAdjType) NONROUTING IV, + this variable will always take on the value UP. + + On adjacencies over a circuit of type + (phivCircuitCommonType) DDCMP POINT, DDCMP CONTROL, + DDCMP TRIBUTARY, DDCMP DMC, or X.25, this variable is + the state of the Routing Layer Initialization Circuit + State. (See section 7.3, ibid.) It can have values + between RUN and HALT. + + On adjacencies over a circuit of type + (phivCircuitCommonType) OTHER, this variable may be + used in a manner consistent with the Initialization + Layer used on that circuit." + ::= { phivAdjEntry 7 } + + phivAdjPriority OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Priority assigned by the adjacent node for this + circuit." + ::= { phivAdjEntry 8 } + + phivAdjExecListenTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This read-only value determines the maximum number of + seconds allowed to elapse before Routing receives some + message (either a Hello message or a user message) from + the adjacent node on the circuit. It was agreed during + Routing initialization with the adjacent Routing layer." + ::= { phivAdjEntry 9 } + + -- New Adjacency Table this replaces the phivAdjTable. + + phivAdjNodeTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivAdjNodeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Adjacent Node Table." + ::= { adjacency 2 } + + phivAdjNodeEntry OBJECT-TYPE + SYNTAX PhivAdjNodeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "There is one entry in the table for each adjacency." + INDEX { phivAdjNodeCircuitIndex, phivAdjAddr } + ::= { phivAdjNodeTable 1 } + + PhivAdjNodeEntry ::= + SEQUENCE { + phivAdjNodeCircuitIndex + INTEGER, + phivAdjAddr + PhivAddr, + phivAdjNodeBlockSize + INTEGER, + phivAdjNodeListenTimer + INTEGER, + phivAdjNodeCircuitEtherServPhysAddr + OCTET STRING, + phivAdjNodeType + INTEGER, + phivAdjNodeState + INTEGER, + phivAdjNodePriority + INTEGER + } + + phivAdjNodeCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known circuit. This + value is the same as phivCircuitIndex and identifies the + circuit over which the adjacency is realized." + ::= { phivAdjNodeEntry 1 } + + phivAdjAddr OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The address of the adjacent node." + ::= { phivAdjNodeEntry 2 } + + phivAdjNodeBlockSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This read-only parameter is the block size that was + negotiated with the adjacent Routing layer during Routing + initialization over a particular circuit. It includes the + routing header, but excludes the data link header. This + parameter is qualified by ADJACENT NODE." + ::= { phivAdjNodeEntry 3 } + + phivAdjNodeListenTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value determines the maximum number of seconds + allowed to elapse before Routing receives some message + (either a Hello message or a user message) from the + adjacent node on the circuit. It was agreed during + Routing initialization with the adjacent Routing layer. + This parameter is qualified by ADJACENT NODE." + ::= { phivAdjNodeEntry 4 } + + phivAdjNodeCircuitEtherServPhysAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This parameter indicates the Ethernet physical address + of an adjacent node that is being serviced on this + circuit. This parameter is a qualifier for SERVICE + SUBSTATE." + ::= { phivAdjNodeEntry 5 } + + phivAdjNodeType OBJECT-TYPE + SYNTAX INTEGER { + routing-III (1), + nonrouting-III (2), + area (3), + routing-IV (4), + nonrouting-IV (5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This parameter indicates the type of adjacency. + + For adjacent nodes, this is a read-only parameter that + indicates the type of the reachable adjacent node. + NOTE: The routing-III and nonrouting-III values are + incremented by one compared to the standard DECnet + values in order to maintain compliance with RFC 1155)" + ::= { phivAdjNodeEntry 6 } + + phivAdjNodeState OBJECT-TYPE + SYNTAX INTEGER { + initializing (1), -- Ethernet one-way + up (2), -- Ethernet two-way + run (3), -- The eight DDCMP/X.25 states + circuit-rejected (4), + data-link-start (5), + routing-layer-initialize (6), + routing-layer-verify (7), + routing-layer-complete (8), + off (9), + halt (10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the state of a router adjacency. + On adjacencies over a circuit of type + (phivCircuitCommonType) Ethernet, CI, or FDDI, with an + adjacent node of type (phivAdjNodeType) ROUTING IV or AREA, + this variable is the state of the Ethernet + Initialization Layer for this adjacency, and can have + values INITIALIZING or UP. (See Section 9.1.1 of + DECnet Phase IV Routing Layer Functional Specification.) + + On adjacencies over a circuit of type + (phivCircuitCommonType) Ethernet, CI, or FDDI, with an + adjacent node of type (phivAdjNodeType) NONROUTING IV, + this variable will always take on the value UP. + + On adjacencies over a circuit of type + (phivCircuitCommonType) DDCMP POINT, DDCMP CONTROL, + DDCMP TRIBUTARY, DDCMP DMC, or X.25, this variable is + the state of the Routing Layer Initialization Circuit + State. (See section 7.3, ibid.) It can have values + between RUN and HALT. + + On adjacencies over a circuit of type + (phivCircuitCommonType) OTHER, this variable may be + used in a manner consistent with the Initialization + Layer used on that circuit." + ::= { phivAdjNodeEntry 7 } + + phivAdjNodePriority OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Priority assigned by the adjacent node for this + circuit." + ::= { phivAdjNodeEntry 8 } + + + -- Line Group + + -- The implementation of the Line Group is mandatory for all + -- conformant implementations of this memo. + + phivLineTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivLineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Line Table." + ::= { line 1 } + + phivLineEntry OBJECT-TYPE + SYNTAX PhivLineEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "There is one entry in the table for each line." + INDEX { phivLineIndex } + ::= { phivLineTable 1 } + + PhivLineEntry ::= + SEQUENCE { + phivLineIndex + InterfaceIndex, + phivLineName + DisplayString, + phivLineState + INTEGER, + phivLineSubstate + INTEGER, + phivLineService + INTEGER, + phivLineDevice + DisplayString, + phivLineReceiveBuffs + INTEGER, + phivLineProtocol + INTEGER, + phivLineServiceTimer + INTEGER, + phivLineMaxBlock + INTEGER + } + + phivLineIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The line on which this entry's equivalence is effective. + This is the same as the ifIndex." + ::= { phivLineEntry 1 } + + phivLineName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the line on this row of the table." + ::= { phivLineEntry 2 } + + phivLineState OBJECT-TYPE + SYNTAX INTEGER { + on (1), + off (2), + service (3), + cleared (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents Network Management operational + state. + NOTE that these values are incremented by one compared to + the standard DECnet values." + ::= { phivLineEntry 3 } + + phivLineSubstate OBJECT-TYPE + SYNTAX INTEGER { + starting (1), + reflecting (2), + looping (3), + loading (4), + dumping (5), + triggering (6), + auto-service (7), + auto-loading (8), + auto-dumping (9), + auto-triggering (10), + synchronizing (11), + failed (12), + running (13) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the line's read-only Network + Management substate. + NOTE that these values are incremented by one compared to + the standard DECnet values." + ::= { phivLineEntry 4 } + + phivLineService OBJECT-TYPE + SYNTAX INTEGER { + starting (1), + reflecting (2), + looping (3), + other (4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the line's read-only Network + Management service. + NOTE that these values are incremented by one compared to + the standard DECnet values and OTHER is a new addition." + ::= { phivLineEntry 5 } + + phivLineDevice OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the Physical Link device to be + used on the line." + ::= { phivLineEntry 6 } + + phivLineReceiveBuffs OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the number of receive buffers + reserved for the line. It is a decimal number in + the range 0-65535. 0 is supported for those vendors + that do not reserve buffers on a per line basis and + use a pool of buffers that can be used by any line." + ::= { phivLineEntry 7 } + + phivLineProtocol OBJECT-TYPE + SYNTAX INTEGER { + ddcmp-point (1), + ddcmp-control (2), + ddcmp-tributary (3), + reserved (4), + ddcmp-dmc (5), + olapb (6), + ethernet (7), + ci (8), + qp2 (9), + other (14), + fddi (15) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the protocol used on the line + device. Note that these values are incremented by + one compared to the standard DECnet values." + ::= { phivLineEntry 8 } + + phivLineServiceTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the amount of time in + milliseconds allowed to elapse before a Data Link + receive request completes while doing service + operations." + ::= { phivLineEntry 9 } + + phivLineMaxBlock OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the Data Link maximum block + size on the line." + ::= { phivLineEntry 10 } + + -- Non Broadcast Line Group + + -- The implementation of the Non Broadcast Line Group is optional. + -- A system can be said to implement this group if and only if + -- all objects in this group are implemented. + + phivNonBroadcastTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivNonBroadcastEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Non Broadcast Table." + ::= { nonBroadcastLine 1 } + + phivNonBroadcastEntry OBJECT-TYPE + SYNTAX PhivNonBroadcastEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "There is one entry in the table for each + Non Broadcast line." + INDEX { phivNonBroadcastIndex } + ::= { phivNonBroadcastTable 1 } + + PhivNonBroadcastEntry ::= + SEQUENCE { + phivNonBroadcastIndex + InterfaceIndex, + phivNonBroadcastController + INTEGER, + phivNonBroadcastDuplex + INTEGER, + phivNonBroadcastClock + INTEGER, + phivNonBroadcastRetransmitTimer + INTEGER + } + + phivNonBroadcastIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Non Broadcast line on which this entry's + equivalence is effective. This is the same value + as the ifIndex." + ::= { phivNonBroadcastEntry 1 } + + phivNonBroadcastController OBJECT-TYPE + SYNTAX INTEGER { + normal (1), + loopback (2), + other (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the Physical Link hardware + controller mode for the line device. The values + for controller-mode are: + + NORMAL For normal controller operating mode. + + LOOPBACK For software controllable loopback of the + controller. On those devices that can support this + mode, it causes all transmitted messages to be looped + back from within the controller itself. This is + accomplished without any manual intervention other + than the setting of this parameter value. + + OTHER indicates function is not supported + Note that these values are incremented by one compared to + the standard DECnet values." + ::= { phivNonBroadcastEntry 2 } + + phivNonBroadcastDuplex OBJECT-TYPE + SYNTAX INTEGER { + full (1), + half (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the Physical Link hardware + duplex mode of the line device. The possible modes + are: + + FULL Full-duplex + HALF Half-duplex + + Note that these values are incremented by one compared to + the standard DECnet values." + ::= { phivNonBroadcastEntry 3 } + + phivNonBroadcastClock OBJECT-TYPE + SYNTAX INTEGER { + external (1), + internal (2), + other (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents the Physical Link hardware clock + mode for the line device. The values for clock-mode are: + + INTERNAL For software controllable loopback use of + the clock. On those devices that can support this + mode, it causes the device to supply a clock signal + such that a transmitted messages can be looped + back from outside the device. This may require manual + intervention other than the setting of this parameter + value. For example, the operator may have to connect + a loopback plug in place of the normal line. + + EXTERNAL For normal clock operating mode, where the + clock signal is supplied externally to the controller. + Note that these values are incremented by one compared to + the standard DECnet values." + ::= { phivNonBroadcastEntry 4 } + + phivNonBroadcastRetransmitTimer OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value represents number of milliseconds before + the Data Link retransmits a block on the line. On + half-duplex lines, this parameter is the select timer." + DEFVAL { 3000 } + ::= { phivNonBroadcastEntry 5 } + + -- Area Parameters Group + + -- The implementation of the Area Parameters Group is mandatory + -- for all systems which implement level 2 routing. + + phivAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhivAreaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of information kept on all areas known to + this unit." + ::= { area 1 } + + phivAreaEntry OBJECT-TYPE + SYNTAX PhivAreaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The area routing information." + INDEX { phivAreaNum } + ::= { phivAreaTable 1 } + + PhivAreaEntry ::= + SEQUENCE { + phivAreaNum + INTEGER, + phivAreaState + INTEGER, + phivAreaCost + Gauge, + phivAreaHops + INTEGER, + phivAreaNextNode + PhivAddr, + phivAreaCircuitIndex + INTEGER + } + + phivAreaNum OBJECT-TYPE + SYNTAX INTEGER (0..64) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the area number of this entry." + ::= { phivAreaEntry 1 } + + phivAreaState OBJECT-TYPE + SYNTAX INTEGER { + reachable (4), + unreachable (5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value indicates the state of the area" + ::= { phivAreaEntry 2 } + + phivAreaCost OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total cost over the current path to the + destination area. Cost is a value associated with + using a circuit. Routing routes messages (data) + along the path between 2 areas with the smallest + cost." + ::= { phivAreaEntry 3 } + + phivAreaHops OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of hops to a destination area. A hop is + the routing value representing the logical distance + between two areas in network." + ::= { phivAreaEntry 4 } + + phivAreaNextNode OBJECT-TYPE + SYNTAX PhivAddr -- OCTET STRING (SIZE (2)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The next node on the circuit used to get to the + area under scrutiny." + ::= { phivAreaEntry 5 } + + phivAreaCircuitIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique index value for each known circuit." + ::= { phivAreaEntry 6 } + + -- Additional Area Parameters + + phivAreaMaxCost OBJECT-TYPE + SYNTAX INTEGER (1..1022) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum total path cost + allowed from the executor to any other level 2 routing + node. The AREA MAXIMUM COST number is decimal in the + range 1-1022. This parameter is only applicable if + the executor node is of type AREA." + ::= { area 2 } + + phivAreaMaxHops OBJECT-TYPE + SYNTAX INTEGER (1..30) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the maximum number of routing hops + allowable from the executor to any other level 2 + routing node. This parameter is only applicable if the + executor node is of type AREA." + ::= { area 3 } + + phivRouteMaxArea OBJECT-TYPE + SYNTAX INTEGER (1..63) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This value represents the largest area number and, + therefore, number of areas that can be known about + by the executor node's Routing. This parameter is only + applicable if the executor node is of type AREA." + ::= { area 4 } + + END diff --git a/pandora_console/attachment/mibs/DELL-RAC-MIB b/pandora_console/attachment/mibs/DELL-RAC-MIB new file mode 100644 index 0000000000..1f9bce5361 --- /dev/null +++ b/pandora_console/attachment/mibs/DELL-RAC-MIB @@ -0,0 +1,1235 @@ +-- +-- Dell Remote Access Controller (RAC) Management Information Base +-- Copyright (c) 2008 Dell Inc +-- +-- Last Changed Revision: 10 +-- Last Changed Date: 2008-07-25 17:23:34 -0500 (Fri, 25 Jul 2008) +-- Text Last Updated: 2008-10-03 11:18:53 -0500 (Fri, 03 Oct 2008) +-- + +DELL-RAC-MIB DEFINITIONS ::= BEGIN + +IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1158-MIB; + +-- text convention ------------------------------------------------------------------------ + + ------------------------------------------------------------------------------- + -- This data type is used to model textual information taken + -- from the NVT ASCII character set. By convention, objects + -- with this syntax are declared as having + -- SIZE (0..1023) + ------------------------------------------------------------------------------- + DellString ::= DisplayString (SIZE (0..1023)) + + DellRacType ::= INTEGER + { + other(1), -- the DRAC type is not one of the following + unknown(2), -- the DRAC type is unknown + DracIII(3), -- Drac III + ERA(4), -- ERA + DRAC4(5), -- Drac 4 + DRAC5(6), -- Drac 5 + DRAC5MC(7), -- Drac 5/MC + CMC(8), -- CMC + iDRAC(9) -- iDRAC + } + + DellStatus ::= INTEGER + { + other(1), -- the status of the object is not one of the following: + unknown(2), -- the status of the object is unknown + -- (not known or monitored) + ok(3), -- the status of the object is ok + nonCritical(4), -- the status of the object is warning, non-critical + critical(5), -- the status of the object is critical (failure) + nonRecoverable(6) -- the status of the object is non-recoverable (dead) + } + + ------------------------------------------------------------------------------- + -- DellPowerReading is a string representation of a floating point value, + -- having exactly 3 digits of precision, and a maximum of 31 characters. + -- + -- DellChassisPowerIndexRange defines the possible chassis power instances + -- in this MIB. + -- + -- DellCMCPSUIndexRange defines the possible CMC Power Supply Unit (PSU) + -- instances, per chassis power instance, in this MIB. + -- + -- DellCMCPSUCapable is an enumeration of PSU presence and/or monitoring + -- capabilities. + ------------------------------------------------------------------------------- + DellPowerReading ::= DisplayString (SIZE (0..32)) + + DellCMCPowerIndexRange ::= INTEGER (1..1) + + DellCMCPSUIndexRange ::= INTEGER (1..6) + + DellCMCPSUCapable ::= INTEGER + { + absent(1), -- power supply is not present + none(2), -- no power monitoring abilities + basic(3) -- basic power monitoring abilities + } + + ------------------------------------------------------------------------------- + -- DellTimestamp is defined in the displayable format: + -- + -- yyyymmddHHMMSS.uuuuuuDooo + -- + -- where yyyy is the year, mm is the month number, dd is the day of the month, + -- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the + -- number of microseconds, D is the UTC offset direction, and ooo is the + -- offset from UTC, in minutes. + -- + -- Note: D is a plus (+) sign if east of UTC, and a minus (-) if west of UTC. + -- + -- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT + -- would be represented as: 19940525133015.000000-300 + ------------------------------------------------------------------------------- + DellTimestamp ::= DisplayString (SIZE (26)) + + +-- MIB Objects and Tables -------------------------------------------------------- + + dell OBJECT IDENTIFIER ::= { enterprises 674 } + server3 OBJECT IDENTIFIER ::= { dell 10892 } + drsOutofBandGroup OBJECT IDENTIFIER ::= { server3 2 } + drsInformationGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 1 } + drsProductInfoGroup OBJECT IDENTIFIER ::= { drsInformationGroup 1 } + drsFirmwareGroup OBJECT IDENTIFIER ::= { drsInformationGroup 2 } + + drsStatusGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 2 } + + drsChassisStatusGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 3 } + drsStatusNowGroup OBJECT IDENTIFIER ::= { drsChassisStatusGroup 1 } + drsStatusPrevGroup OBJECT IDENTIFIER ::= { drsChassisStatusGroup 2 } + drsStatusChangeGroup OBJECT IDENTIFIER ::= { drsChassisStatusGroup 3 } + + drsChassisPowerGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 4 } + + DrsCMCPowerTableEntry ::= SEQUENCE + { + drsChassisIndex DellCMCPowerIndexRange, + drsPotentialPower DellPowerReading, + drsIdlePower DellPowerReading, + drsMaxPowerSpecification DellPowerReading, + drsPowerSurplus DellPowerReading, + drsKWhCumulative DellPowerReading, + drsKWhCumulativeTime DellTimestamp, + drsWattsPeakUsage DellPowerReading, + drsWattsPeakTime DellTimestamp, + drsWattsMinUsage DellPowerReading, + drsWattsMinTime DellTimestamp, + drsWattsResetTime DellTimestamp, + drsWattsReading DellPowerReading, + drsAmpsReading DellPowerReading + } + + DrsCMCPSUTableEntry ::= SEQUENCE + { + drsPSUChassisIndex DellCMCPowerIndexRange, + drsPSUIndex DellCMCPSUIndexRange, + drsPSULocation DellString, + drsPSUMonitoringCapable DellCMCPSUCapable, + drsPSUVoltsReading DellPowerReading, + drsPSUAmpsReading DellPowerReading, + drsPSUWattsReading DellPowerReading + } + + drsCMCAlertGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 20 } + drsChassisAlertVariables OBJECT IDENTIFIER ::= { drsCMCAlertGroup 10 } + drsChassisAlertGroup OBJECT IDENTIFIER ::= { drsCMCAlertGroup 2000 } + + drsAlertGroup OBJECT IDENTIFIER ::= { drsOutofBandGroup 5000 } + drsAlertVariables OBJECT IDENTIFIER ::= { drsAlertGroup 10 } + + +-- Variables and Traps ------------------------------------------------------------------------ + + ------------------------------------------------------------------------------- + -- group: product information + ------------------------------------------------------------------------------- + + drsProductName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0001 This attribute defines the product name of a chassis management controller." + ::= { drsProductInfoGroup 1 } + + drsProductShortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0002 This attribute defines the short product name of a chassis management controller. " + ::= { drsProductInfoGroup 2 } + + drsProductDescription OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0003 This attribute defines the product description of a chassis management controller. " + ::= { drsProductInfoGroup 3 } + + drsProductManufacturer OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0004 This attribute defines the product manufacturer of a chassis management controller. " + ::= { drsProductInfoGroup 4 } + + drsProductVersion OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0005 This attribute defines the product version of a chassis management controller. " + ::= { drsProductInfoGroup 5 } + + drsChassisServiceTag OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0007 This attribute defines the Service Tag of the chassis. " + ::= { drsProductInfoGroup 6 } + + drsProductURL OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0006 This attribute defines the out-of-band UI URL of a chassis management controller. " + ::= { drsProductInfoGroup 7 } + + drsProductChassisAssetTag OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0008 This attribute defines the Asset Tag of the chassis. " + ::= { drsProductInfoGroup 8 } + + drsProductChassisLocation OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0009 This attribute defines the location of the chassis. " + ::= { drsProductInfoGroup 9 } + + drsProductChassisName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0010 This attribute defines the name of the chassis. " + ::= { drsProductInfoGroup 10 } + + drsSystemServiceTag OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0011 This attribute defines the service tag of a system. " + ::= { drsProductInfoGroup 11 } + + drsProductSystemAssetTag OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0012 This attribute defines the asset tag of a system. " + ::= { drsProductInfoGroup 12 } + + drsProductSystemSlot OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0013 This attribute defines the slot number of a CMC. " + ::= { drsProductInfoGroup 13 } + + drsProductType OBJECT-TYPE + SYNTAX DellRacType + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0001.0014 This attribute defines type of a remote access card " + ::= { drsProductInfoGroup 14 } + + drsFirmwareVersion OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0001.0002.0001 This attribute defines the firmware version of a chassis management controller. " + ::= { drsFirmwareGroup 1 } + + ------------------------------------------------------------------------------- + -- group: chassis status + ------------------------------------------------------------------------------- + + drsGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0002.0001.0001 This attribute defines the overall chassis status + being monitored by the chassis management card." + ::= { drsStatusGroup 1 } + + drsGlobalCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0001 This attribute defines the overall chassis status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 1 } + + drsIOMCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0002 This attribute defines the IOM subsystem status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 2 } + + drsKVMCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0003 This attribute defines the iKVM subsystem health status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 3 } + + drsRedCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0004 This attribute defines the Redundancy status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 4 } + + drsPowerCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0005 This attribute defines the power subsystem health status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 5 } + + drsFanCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0006 This attribute defines the Fan subsystem health status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 6 } + + drsBladeCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0007 This attribute defines the Blade subsystem health status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 7 } + + drsTempCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0008 This attribute defines the Temp Sensor subsystem health status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 8 } + + drsCMCCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0009 This attribute defines the CMC health status + being monitored by the chassis management card." + ::= { drsStatusNowGroup 9 } + + drsGlobalPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0001 This attribute defines the previous chassis status + recorded by the chassis management card." + ::= { drsStatusPrevGroup 1 } + + drsIOMPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0002 This attribute defines the previous IOM subsystem status + recorded by the chassis management card." + ::= { drsStatusPrevGroup 2 } + + drsKVMPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0003 This attribute defines the previous iKVM subsystem health status + recorded by the chassis management card." + ::= { drsStatusPrevGroup 3 } + + drsRedPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0004 This attribute defines the previous Redundancy status + recorded by the chassis management card." + ::= { drsStatusPrevGroup 4 } + + drsPowerPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0005 This attribute defines the previous power subsystem health status + recorded by the chassis management card." + ::= { drsStatusPrevGroup 5 } + + drsFanPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0006 This attribute defines the previous Fan health status + being monitored by the chassis management card." + ::= { drsStatusPrevGroup 6 } + + drsBladePrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0002.0007 This attribute defines the previous Blade subsystem health status + recorded by the chassis management card." + ::= { drsStatusPrevGroup 7 } + + drsTempPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0008 This attribute defines the Temp Sensor health status + being monitored by the chassis management card." + ::= { drsStatusPrevGroup 8 } + + drsCMCPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0001.0009 This attribute defines the CMC health status + being monitored by the chassis management card." + ::= { drsStatusPrevGroup 9 } + + drsGlobalChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0001 This attribute defines the timestamp of the most recent + global status change." + ::= { drsStatusChangeGroup 1 } + + drsIOMChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0002 This attribute defines the timestamp of the most recent + IOM status change." + ::= { drsStatusChangeGroup 2 } + + drsKVMChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0003 This attribute defines the timestamp of the most recent + iKVM status change." + ::= { drsStatusChangeGroup 3 } + + drsRedChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0004 This attribute defines the timestamp of the most recent + Redundancy status change." + ::= { drsStatusChangeGroup 4 } + + drsPowerChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0005 This attribute defines the timestamp of the most recent + power health status change." + ::= { drsStatusChangeGroup 5 } + + drsFanChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0006 This attribute defines the timestamp of the most recent + Fan health status change." + ::= { drsStatusChangeGroup 6 } + + drsBladeChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0007 This attribute defines the timestamp of the most recent + Blade health status change." + ::= { drsStatusChangeGroup 7 } + + drsTempChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0008 This attribute defines the timestamp of the most recent + Temp Sensor health status change." + ::= { drsStatusChangeGroup 8 } + + drsCMCChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0003.0003.0009 This attribute defines the timestamp of the most recent + CMC health status change." + ::= { drsStatusChangeGroup 9 } + + ------------------------------------------------------------------------------- + -- group: chassis power + ------------------------------------------------------------------------------- + + drsCMCPowerTable OBJECT-TYPE + SYNTAX SEQUENCE OF DrsCMCPowerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "0004.0001 This object defines the CMC power table." + ::= { drsChassisPowerGroup 1 } + + drsCMCPowerTableEntry OBJECT-TYPE + SYNTAX DrsCMCPowerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "0004.0001.0001 This object defines the CMC power table entry." + INDEX { drsChassisIndex } + ::= { drsCMCPowerTable 1 } + + drsCMCPSUTable OBJECT-TYPE + SYNTAX SEQUENCE OF DrsCMCPSUTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "0004.0002 This object defines the CMC PSU table." + ::= { drsChassisPowerGroup 2 } + + drsCMCPSUTableEntry OBJECT-TYPE + SYNTAX DrsCMCPSUTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "0004.0002.0001 This object defines the CMC PSU table entry." + INDEX { drsPSUChassisIndex, drsPSUIndex } + ::= { drsCMCPSUTable 1 } + + ------------------------------------------------------------------------------- + -- table: CMC power information + ------------------------------------------------------------------------------- + + drsChassisIndex OBJECT-TYPE + SYNTAX DellCMCPowerIndexRange + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0001 This attribute defines the index + (one-based) of the associated chassis." + ::= { drsCMCPowerTableEntry 1 } + + drsPotentialPower OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0002 This attribute defines the power (in Watts) required by + the chassis infrastructure, plus the sum of the maximum power requirements + for all currently powered-on servers." + ::= { drsCMCPowerTableEntry 2 } + + drsIdlePower OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0003 This attribute defines the power (in Watts) required by + the chassis infrastructure, plus the sum of the minimum power requirements + for all currently powered-on servers." + ::= { drsCMCPowerTableEntry 3 } + + drsMaxPowerSpecification OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0004 This attribute defines the power limit (in Watts) + at which server throttling will take place." + ::= { drsCMCPowerTableEntry 4 } + + + drsPowerSurplus OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0005 This attribute defines the power surplus (in Watts) + remaining above the drsPotentialPower reading." + ::= { drsCMCPowerTableEntry 5 } + + drsKWhCumulative OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0006 This attribute defines the cumulative chassis power + usage (in KWh) since last reset." + ::= { drsCMCPowerTableEntry 6 } + + drsKWhCumulativeTime OBJECT-TYPE + SYNTAX DellTimestamp + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0007 This attribute defines the timestamp of the most recent + chassis power accumulator reset." + ::= { drsCMCPowerTableEntry 7 } + + drsWattsPeakUsage OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0008 This attribute defines the chassis peak power + usage (in Watts) since last reset." + ::= { drsCMCPowerTableEntry 8 } + + drsWattsPeakTime OBJECT-TYPE + SYNTAX DellTimestamp + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0009 This attribute defines the timestamp of the most recent + chassis peak power usage." + ::= { drsCMCPowerTableEntry 9 } + + drsWattsMinUsage OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0010 This attribute defines the chassis mimimum power + usage (in Watts) since last reset." + ::= { drsCMCPowerTableEntry 10 } + + drsWattsMinTime OBJECT-TYPE + SYNTAX DellTimestamp + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0011 This attribute defines the timestamp of the most recent + chassis minimum power usage." + ::= { drsCMCPowerTableEntry 11 } + + drsWattsResetTime OBJECT-TYPE + SYNTAX DellTimestamp + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0012 This attribute defines the timestamp of the most recent + reset of the chassis min/peak Watts readings." + ::= { drsCMCPowerTableEntry 12 } + + drsWattsReading OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0013 This attribute defines the instantaneous chassis power + usage (in Watts)." + ::= { drsCMCPowerTableEntry 13 } + + drsAmpsReading OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0001.0001.0014 This attribute defines the instantaneous chassis current + usage (in Watts)." + ::= { drsCMCPowerTableEntry 14 } + + ------------------------------------------------------------------------------- + -- table: CMC PSU info + ------------------------------------------------------------------------------- + + drsPSUChassisIndex OBJECT-TYPE + SYNTAX DellCMCPowerIndexRange + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0001 This attribute defines the index + (one-based) of the associated chassis." + ::= { drsCMCPSUTableEntry 1 } + + drsPSUIndex OBJECT-TYPE + SYNTAX DellCMCPSUIndexRange + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0002 This attribute defines the index + (one-based) of the associated CMC PSU." + ::= { drsCMCPSUTableEntry 2 } + + drsPSULocation OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0003 This attribute defines the location + of the CMC PSU." + ::= { drsCMCPSUTableEntry 3 } + + drsPSUMonitoringCapable OBJECT-TYPE + SYNTAX DellCMCPSUCapable + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0004 This attribute defines the PSU Monitoring + capabilities, or the absence of a PSU in this location." + ::= { drsCMCPSUTableEntry 4 } + + drsPSUVoltsReading OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0005 This attribute defines the instantaneous + PSU Voltage reading." + ::= { drsCMCPSUTableEntry 5 } + + drsPSUAmpsReading OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0006 This attribute defines the instantaneous + PSU Current reading." + ::= { drsCMCPSUTableEntry 6 } + + drsPSUWattsReading OBJECT-TYPE + SYNTAX DellPowerReading + ACCESS read-only + STATUS mandatory + DESCRIPTION "0004.0002.0001.0007 This attribute defines the instantaneous + PSU Wattage reading." + ::= { drsCMCPSUTableEntry 7 } + + ------------------------------------------------------------------------------- + -- group: chassis alerts + ------------------------------------------------------------------------------- + + drsCASubSystem OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0020.0010.0001 This attribute defines the Sub-System Name of the CMC Alert" + ::= { drsChassisAlertVariables 1 } + + drsCASSCurrStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0020.0010.0002 This attribute defines the Current Status of the Alerting + Sub-System" + ::= { drsChassisAlertVariables 2 } + + drsCASSPrevStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION "0020.0010.0003 This attribute defines the Previous Status of the Alerting + Sub-System" + ::= { drsChassisAlertVariables 3 } + + drsCASSChangeTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION "0020.0010.0004 This attribute defines the Timestamp of Most Recent Change of + the Alerting Sub-System" + ::= { drsChassisAlertVariables 4 } + + drsCAMessage OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION "0020.0010.0005 This attribute defines the CSSD message of the CMC Alert" + ::= { drsChassisAlertVariables 5 } + + alertCMCTestTrap TRAP-TYPE + ENTERPRISE drsOutofBandGroup + DESCRIPTION "The CMC has generated a test trap" + --#TYPE "CMC Test Trap" + --#SUMMARY "CMC Test Trap" + --#SEVERITY INFORMATIONAL + --#CATEGORY Error Events + ::= 2000 + + alertCMCNormalTrap TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsProductChassisName, + drsProductChassisLocation, + drsGlobalCurrStatus, + drsCASubSystem, + drsCASSCurrStatus, + drsCASSPrevStatus, + drsCASSChangeTime, + drsCAMessage } + DESCRIPTION "The CMC reported a return-to-normal or informational event." + --#TYPE "CMC Return-to-Normal / Informational Trap" + --#SUMMARY "Return-to-Normal / Informational Trap from CMC in system %s in location %s, message: %s" + --#ARGUMENTS {0,1,7} + --#SEVERITY NORMAL + --#CATEGORY Error Events + ::= 2002 + + alertCMCWarningTrap TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsProductChassisName, + drsProductChassisLocation, + drsGlobalCurrStatus, + drsCASubSystem, + drsCASSCurrStatus, + drsCASSPrevStatus, + drsCASSChangeTime, + drsCAMessage } + DESCRIPTION "The CMC reported a warning event." + --#TYPE "CMC Warning Trap" + --#SUMMARY "Warning Trap from CMC in system %s in location %s, message: %s" + --#ARGUMENTS {0,1,7} + --#SEVERITY WARNING + --#CATEGORY Error Events + ::= 2003 + + alertCMCCriticalTrap TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsProductChassisName, + drsProductChassisLocation, + drsGlobalCurrStatus, + drsCASubSystem, + drsCASSCurrStatus, + drsCASSPrevStatus, + drsCASSChangeTime, + drsCAMessage } + DESCRIPTION "The CMC reported a critical event." + --#TYPE "CMC Critical Trap" + --#SUMMARY "Critical Trap from CMC in system %s in location %s, message: %s" + --#ARGUMENTS {0,1,7} + --#SEVERITY CRITICAL + --#CATEGORY Error Events + ::= 2004 + + alertCMCNonRecoverableTrap TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsProductChassisName, + drsProductChassisLocation, + drsGlobalCurrStatus, + drsCASubSystem, + drsCASSCurrStatus, + drsCASSPrevStatus, + drsCASSChangeTime, + drsCAMessage } + DESCRIPTION "The CMC reported a catastrophic event." + --#TYPE "CMC Non-Recoverable Trap" + --#SUMMARY "Non-Recoverable Trap from CMC in system %s in location %s, message: %s" + --#ARGUMENTS {0,1,7} + --#SEVERITY NON-RECOVERABLE + --#CATEGORY Error Events + ::= 2005 + + -- + -- Legacy Alerting + -- + + drsAlertSystem OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5000.0010.0001 Name of the system generating the alert." + --DEFAULT get-function-async get_%n_async + --DEFAULT next-function-async std_next_async + ::= { drsAlertVariables 1 } + + drsAlertTableIndexOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5000.0010.0002 0.0" + --DEFAULT get-function-async get_OID_null_async + --DEFAULT next-function-async std_next_async + ::= { drsAlertVariables 2 } + + drsAlertMessage OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5000.0010.0003 Message describing the alert." + --DEFAULT get-function-async get_string_null_async + --DEFAULT next-function-async std_next_async + ::= { drsAlertVariables 3 } + + drsAlertCurrentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5000.0010.0004 Current status of object causing the alert." + --DEFAULT get-function-async get_dellstatus_unknow_async + --DEFAULT next-function-async std_next_async + ::= { drsAlertVariables 4 } + + drsAlertPreviousStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5000.0010.0005 Previous status of object causing the alert." + --DEFAULT get-function-async get_dellstatus_unknow_async + --DEFAULT next-function-async std_next_async + ::= { drsAlertVariables 5 } + + drsAlertData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5000.0010.0006 Alert data." + --DEFAULT get-function-async get_string_null_async + --DEFAULT next-function-async std_next_async + ::= { drsAlertVariables 6 } + + alertDrscTestTrapEvent TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC generated a test trap event in response to a user request." + --#TYPE "Dell RAC Test TRAP Event" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#CATEGORY Status Events + ::= 1001 + + alertDrscAuthError TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC Authentication Failures during a time period have Exceeded a Threshold." + --#TYPE "Dell RAC Authentication Error" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#CATEGORY Error Events + ::= 1002 + + alertDrscLostESM TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC cannot communicate with the baseboard management controller (ESM)." + --#TYPE "Dell RAC Lost Communication with ESM" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#CATEGORY Error Events + ::= 1003 + + alertDrscFoundESM TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC is communicating normally with the baseboard management controller (ESM)." + --#TYPE "Dell RAC Communication with ESM is OK" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#CATEGORY Error Events + ::= 1004 + + alertDrscPowerOff TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected a System power state change to powered-off." + --#TYPE "Dell RAC Detected System Powered-Off" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#CATEGORY Error Events + ::= 1005 + + alertDrscPowerOn TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected a system power state change to powered-on." + --#TYPE "Dell RAC Detected System Powered-On" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#CATEGORY Error Events + ::= 1006 + + alertDrscWatchdogExpired TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected that the system watchdog has expired indicating a system hang." + --#TYPE "Dell RAC Detected Watchdog Expired" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#CATEGORY Error Events + ::= 1007 + + alertDrscBattLow TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC Battery charge is below 25% indicating that the battery may only be able to power the DRSC for 8-10 minutes." + --#TYPE "Dell RAC Battery Charge Low" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#CATEGORY Error Events + ::= 1008 + + alertDrscTempNormal TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC Temperature probe has retured to a normal value." + --#TYPE "Dell RAC Temperature Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#CATEGORY Error Events + ::= 1009 + + alertDrscTempWarning TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC Temperature probe has detected a Warning value." + --#TYPE "Dell RAC Temperature Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#CATEGORY Error Events + ::= 1010 + + alertDrscTempCritical TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC Temperature probe has detected a failure (or critical) value." + --#TYPE "Dell RAC Temperature Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#CATEGORY Error Events + ::= 1011 + + alertDrscVoltNormal TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC voltage has returned to a normal value." + --#TYPE "Dell RAC Voltage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#CATEGORY Error Events + ::= 1012 + + alertDrscVoltWarning TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC voltage probe has detected a warning value." + --#TYPE "Dell RAC Battery Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#CATEGORY Error Events + ::= 1013 + + alertDrscVoltCritical TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC voltage probe has detected a failure (or critical) value." + --#TYPE "Dell RAC Voltage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#CATEGORY Error Events + ::= 1014 + + alertDrscSELWarning TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected a new event in the System Event Log with Severity: Warning." + --#TYPE "Dell RAC System Event Log Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#CATEGORY Error Events + ::= 1015 + + alertDrscSELCritical TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected a new event in the System Event Log with Severity: Critical." + --#TYPE "Dell RAC System Event Log Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#CATEGORY Error Events + ::= 1016 + + alertDrscSEL80percentFull TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected that the System Event Log is 80% full." + --#TYPE "Dell System Event Log 80% Full Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#CATEGORY Status Events + ::= 1017 + + alertDrscSEL90percentFull TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected that the System Event Log is 90% full." + --#TYPE " Dell System Event Log 90% Full Warning " + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#CATEGORY Status Events + ::= 1018 + + alertDrscSEL100percentFull TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected that the System Event Log is 100% full." + --#TYPE " Dell System Event Log 100% Full Warning " + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#CATEGORY Status Events + ::= 1019 + + alertDrscSELNormal TRAP-TYPE + ENTERPRISE drsOutofBandGroup + VARIABLES { drsAlertSystem, + drsAlertTableIndexOID, + drsAlertMessage, + drsAlertCurrentStatus, + drsAlertPreviousStatus, + drsAlertData } + DESCRIPTION + "The RAC has detected a new event in the System Event Log with Severity: Normal." + --#TYPE "Dell RAC System Event Log Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#CATEGORY Error Events + ::= 1020 +END + + diff --git a/pandora_console/attachment/mibs/DHCP-MIB.mib b/pandora_console/attachment/mibs/DHCP-MIB.mib new file mode 100644 index 0000000000..0f05ed863b --- /dev/null +++ b/pandora_console/attachment/mibs/DHCP-MIB.mib @@ -0,0 +1,169 @@ + DHCP-MIB DEFINITIONS ::= BEGIN + + + IMPORTS + enterprises, + OBJECT-TYPE, + Counter + FROM RFC1155-SMI + DisplayString + FROM RFC1213-MIB + microsoft, + software + FROM MSFT-MIB; + + +-- microsoft OBJECT IDENTIFIER ::= { enterprises 311 } +-- software OBJECT IDENTIFIER ::= { microsoft 1 } + + dhcp OBJECT IDENTIFIER ::= { software 3 } + dhcpPar OBJECT IDENTIFIER ::= { dhcp 1 } + dhcpScope OBJECT IDENTIFIER ::= { dhcp 2 } + + + + -- Dhcp MIB + -- Parameters (Prefix Par) + + parDhcpStartTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Dhcp Server start time" + ::= { dhcpPar 1 } + + parDhcpTotalNoOfDiscovers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + discovery messages received" + ::= { dhcpPar 2 } + + parDhcpTotalNoOfRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + requests received" + ::= { dhcpPar 3 } + + parDhcpTotalNoOfReleases OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + releases received" + ::= { dhcpPar 4 } + + parDhcpTotalNoOfOffers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + offers sent" + ::= { dhcpPar 5 } + + parDhcpTotalNoOfAcks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + acks received" + ::= { dhcpPar 6 } + + parDhcpTotalNoOfNacks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + nacks received" + ::= { dhcpPar 7 } + + parDhcpTotalNoOfDeclines OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + declines" + ::= { dhcpPar 8 } + +-- scope group (Prefix Scope) + + + scopeTable OBJECT-TYPE + SYNTAX SEQUENCE OF ScopeTableEntry + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A list of subnets maintained by the server" + ::= { dhcpScope 1 } + + scopeTableEntry OBJECT-TYPE + SYNTAX ScopeTableEntry + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the row corresponding to a subnet" + INDEX { subnetAdd } + ::= { scopeTable 1 } + + ScopeTableEntry ::= SEQUENCE { + subnetAdd + IpAddress, + + noAddInUse + Counter, + + noAddFree + Counter, + + noPendingOffers + Counter + + } + subnetAdd OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the subnet address " + ::= { scopeTableEntry 1 } + + + noAddInUse OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the no. of addresses in use" + ::= { scopeTableEntry 2 } + + noAddFree OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the no. of addresses that are free " + ::= { scopeTableEntry 3 } + + noPendingOffers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the no. of addresses that are currently in the offer + state" + ::= { scopeTableEntry 4 } + + END + + diff --git a/pandora_console/attachment/mibs/DSA-MIB b/pandora_console/attachment/mibs/DSA-MIB new file mode 100644 index 0000000000..824ea63aa9 --- /dev/null +++ b/pandora_console/attachment/mibs/DSA-MIB @@ -0,0 +1,660 @@ +-- Changes to rfc1567 (DSA SNMPv2 MIB): +-- Added the following imports: MODULE-COMPLIANCE and OBJECT-GROUP +-- from SNMPv2-CONF; and MODULE-IDENTITY Counter32, and Gauge32 +-- from SNMPv2-SMI. +-- Removed the following unneeded imports: NOTICIATION-TYPE and +-- DisplayString from SNMPv2-SMI; and TEXTUAL-CONVENTION +-- from FROM SNMPv2-TC. +-- dperkins@scruznet.com + +DSA-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32 + FROM SNMPv2-SMI + TimeStamp + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + mib-2 + FROM RFC1213-MIB + applIndex, DistinguishedName + FROM APPLICATION-MIB; + + dsaMIB MODULE-IDENTITY + LAST-UPDATED "9311250000Z" + ORGANIZATION "IETF Mail and Directory Management Working + Group" + CONTACT-INFO + " Glenn Mansfield + + Postal: AIC Systems Laboratory + 6-6-3, Minami Yoshinari + Aoba-ku, Sendai, 989-32 + JP + + Tel: +81 22 279 3310 + Fax: +81 22 279 3640 + E-Mail: glenn@aic.co.jp" + DESCRIPTION + " The MIB module for monitoring Directory System Agents." + ::= { mib-2 29 } + + + dsaOpsTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsaOpsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " The table holding information related to the + DSA operations." + ::= {dsaMIB 1} + + dsaOpsEntry OBJECT-TYPE + SYNTAX DsaOpsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Entry containing operations related statistics + for a DSA." + INDEX { applIndex } + ::= {dsaOpsTable 1} + + DsaOpsEntry ::= SEQUENCE { + + -- Bindings + dsaAnonymousBinds + Counter32, + dsaUnauthBinds + Counter32, + dsaSimpleAuthBinds + Counter32, + dsaStrongAuthBinds + Counter32, + dsaBindSecurityErrors + Counter32, + + -- In-coming operations + + dsaInOps + Counter32, + dsaReadOps + Counter32, + dsaCompareOps + Counter32, + dsaAddEntryOps + Counter32, + dsaRemoveEntryOps + Counter32, + dsaModifyEntryOps + Counter32, + dsaModifyRDNOps + Counter32, + dsaListOps + Counter32, + dsaSearchOps + Counter32, + dsaOneLevelSearchOps + Counter32, + dsaWholeTreeSearchOps + Counter32, + + -- Out going operations + + dsaReferrals + Counter32, + dsaChainings + Counter32, + + -- Errors + + dsaSecurityErrors + Counter32, + dsaErrors + Counter32 + } + + dsaAnonymousBinds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of anonymous binds to this DSA from DUAs + since application start." + ::= {dsaOpsEntry 1} + + dsaUnauthBinds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of un-authenticated binds to this + DSA since application start." + ::= {dsaOpsEntry 2} + + dsaSimpleAuthBinds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of binds to this DSA that were authenticated + using simple authentication procedures since + application start." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 8.1.2.1.1." + ::= {dsaOpsEntry 3} + + + dsaStrongAuthBinds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of binds to this DSA that were authenticated + using the strong authentication procedures since + application start. This includes the binds that were + authenticated using external authentication procedures." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Sections 8.1.2.1.2 & 8.1.2.1.3." + ::= {dsaOpsEntry 4} + + dsaBindSecurityErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of bind operations that have been rejected + by this DSA due to inappropriateAuthentication or + invalidCredentials." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 12.7.2" + ::= {dsaOpsEntry 5} + + dsaInOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of operations forwarded to this DSA + from DUAs or other DSAs since application + start up." + ::= {dsaOpsEntry 6} + + dsaReadOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of read operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 9.1." + ::= {dsaOpsEntry 7} + + dsaCompareOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of compare operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 9.2." + ::= {dsaOpsEntry 8} + + dsaAddEntryOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of addEntry operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 11.1." + ::= {dsaOpsEntry 9} + + dsaRemoveEntryOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of removeEntry operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 11.2." + ::= {dsaOpsEntry 10} + + dsaModifyEntryOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of modifyEntry operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 11.3." + ::= {dsaOpsEntry 11} + + dsaModifyRDNOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of modifyRDN operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 11.4." + ::= {dsaOpsEntry 12} + + dsaListOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of list operations serviced by + this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 10.1." + ::= {dsaOpsEntry 13} + + dsaSearchOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of search operations- baseObjectSearches, + oneLevelSearches and subTreeSearches, serviced + by this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 10.2." + ::= {dsaOpsEntry 14} + + dsaOneLevelSearchOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of oneLevelSearch operations serviced + by this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 10.2.2.2." + ::= {dsaOpsEntry 15} + + dsaWholeTreeSearchOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of wholeTreeSearch operations serviced + by this DSA since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 10.2.2.2." + ::= {dsaOpsEntry 16} + + dsaReferrals OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of referrals returned by this DSA in response + to requests for operations since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 12.6." + ::= {dsaOpsEntry 17} + + dsaChainings OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of operations forwarded by this DSA + to other DSAs since application startup." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.518, 1988: + Section 14." + ::= {dsaOpsEntry 18} + + dsaSecurityErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of operations forwarded to this DSA + which did not meet the security requirements. " + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Section 12.7." + ::= {dsaOpsEntry 19} + + dsaErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of operations that could not be serviced + due to errors other than security errors, and + referrals. + A partially serviced operation will not be counted + as an error. + The errors include NameErrors, UpdateErrors, Attribute + errors and ServiceErrors." + REFERENCE + " CCITT Blue Book Fascicle VIII.8 - Rec. X.511, 1988: + Sections 12.4, 12.5, 12.8 & 12.9." + ::= {dsaOpsEntry 20} + + -- Entry statistics/Cache performance + dsaEntriesTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsaEntriesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " The table holding information related to the + entry statistics and cache performance of the DSAs." + ::= {dsaMIB 2} + + dsaEntriesEntry OBJECT-TYPE + SYNTAX DsaEntriesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Entry containing statistics pertaining to entries + held by a DSA." + INDEX { applIndex } + ::= {dsaEntriesTable 1} + + DsaEntriesEntry ::= SEQUENCE { + dsaMasterEntries + Gauge32, + dsaCopyEntries + Gauge32, + dsaCacheEntries + Gauge32, + dsaCacheHits + Counter32, + dsaSlaveHits + Counter32 + } + + dsaMasterEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of entries mastered in the DSA." + ::= {dsaEntriesEntry 1} + + dsaCopyEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of entries for which systematic (slave) + copies are maintained in the DSA." + ::= {dsaEntriesEntry 2} + + dsaCacheEntries OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of entries cached (non-systematic copies) in + the DSA. This will include the entries that are + cached partially. The negative cache is not counted." + ::= {dsaEntriesEntry 3} + + dsaCacheHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of operations that were serviced from + the locally held cache since application + startup." + ::= {dsaEntriesEntry 4} + + dsaSlaveHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Number of operations that were serviced from + the locally held object replications [ shadow + entries] since application startup." + ::= {dsaEntriesEntry 5} + + + -- The dsaIntTable contains statistical data on the peer DSAs + -- with which the monitored DSAs [attempt to] interact. This + -- table will provide a useful insight into the effect of + -- neighbours on the DSA performance. + -- The table keeps track of the last "N" DSAs with which the + -- monitored DSAs has interacted [attempted to interact], + -- where "N" is a locally-defined constant. + + dsaIntTable OBJECT-TYPE + SYNTAX SEQUENCE OF DsaIntEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Each row of this table contains some details + related to the history of the interaction + of the monitored DSAs with their respective + peer DSAs." + ::= { dsaMIB 3 } + + dsaIntEntry OBJECT-TYPE + SYNTAX DsaIntEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Entry containing interaction details of a DSA + with a peer DSA." + INDEX { applIndex,dsaIntIndex } + ::= { dsaIntTable 1 } + + DsaIntEntry ::= SEQUENCE { + dsaIntIndex + INTEGER, + dsaName + DistinguishedName, + dsaTimeOfCreation + TimeStamp, + dsaTimeOfLastAttempt + TimeStamp, + dsaTimeOfLastSuccess + TimeStamp, + dsaFailuresSinceLastSuccess + Counter32, + dsaFailures + Counter32, + dsaSuccesses + Counter32 + } + + dsaIntIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " Together with applIndex it forms the unique key to + identify the conceptual row which contains useful info + on the (attempted) interaction between the DSA (referred + to by applIndex) and a peer DSA." + ::= {dsaIntEntry 1} + + dsaName OBJECT-TYPE + SYNTAX DistinguishedName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Distinguished Name of the peer DSA to which this + entry pertains." + ::= {dsaIntEntry 2} + + dsaTimeOfCreation OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The value of sysUpTime when this row was created. + If the entry was created before the network management + subsystem was initialized, this object will contain + a value of zero." + ::= {dsaIntEntry 3} + + dsaTimeOfLastAttempt OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The value of sysUpTime when the last attempt was made + to contact this DSA. If the last attempt was made before + the network management subsystem was initialized, this + object will contain a value of zero." + ::= {dsaIntEntry 4} + + dsaTimeOfLastSuccess OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The value of sysUpTime when the last attempt made to + contact this DSA was successful. If there have + been no successful attempts this entry will have a value + of zero. If the last successful attempt was made before + the network management subsystem was initialized, this + object will contain a value of zero." + ::= {dsaIntEntry 5} + + dsaFailuresSinceLastSuccess OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of failures since the last time an + attempt to contact this DSA was successful. If + there has been no successful attempts, this counter + will contain the number of failures since this entry + was created." + ::= {dsaIntEntry 6} + + dsaFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Cumulative failures since the creation of + this entry." + ::= {dsaIntEntry 7} + + dsaSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " Cumulative successes since the creation of + this entry." + ::= {dsaIntEntry 8} + + + -- Conformance information + + dsaConformance OBJECT IDENTIFIER ::= { dsaMIB 4 } + + dsaGroups OBJECT IDENTIFIER ::= { dsaConformance 1 } + dsaCompliances OBJECT IDENTIFIER ::= { dsaConformance 2 } + + -- Compliance statements + + dsaOpsCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which implement the DSA-MIB for monitoring + DSA operations." + + MODULE -- this module + MANDATORY-GROUPS { dsaOpsGroup } + + ::= { dsaCompliances 1 } + + dsaEntryCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which implement the DSA-MIB for monitoring + DSA operations, entry statistics and cache + performance." + + MODULE -- this module + MANDATORY-GROUPS { dsaOpsGroup,dsaEntryGroup } + ::= { dsaCompliances 2 } + + dsaIntCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + " The compliance statement for SNMPv2 entities + which implement the DSA-MIB for monitoring DSA + operations and the interaction of the DSA with + peer DSAs." + + MODULE -- this module + MANDATORY-GROUPS { dsaOpsGroup, dsaIntGroup } + + ::= { dsaCompliances 3 } + + + -- Units of conformance + + dsaOpsGroup OBJECT-GROUP + OBJECTS { + dsaAnonymousBinds, dsaUnauthBinds, dsaSimpleAuthBinds, + dsaStrongAuthBinds, dsaBindSecurityErrors,dsaInOps, + dsaReadOps, dsaCompareOps, dsaAddEntryOps, + dsaRemoveEntryOps, dsaModifyEntryOps, dsaModifyRDNOps, + dsaListOps, dsaSearchOps, dsaOneLevelSearchOps, + dsaWholeTreeSearchOps,dsaReferrals, dsaChainings, + dsaSecurityErrors, dsaErrors} + STATUS current + DESCRIPTION + " A collection of objects for monitoring the DSA + operations." + ::= { dsaGroups 1 } + + dsaEntryGroup OBJECT-GROUP + OBJECTS {dsaMasterEntries, dsaCopyEntries, dsaCacheEntries, + dsaCacheHits, dsaSlaveHits} + STATUS current + DESCRIPTION + " A collection of objects for monitoring the DSA + entry statistics and cache performance." + ::= { dsaGroups 2 } + + dsaIntGroup OBJECT-GROUP + OBJECTS { + dsaName, dsaTimeOfCreation, dsaTimeOfLastAttempt, + dsaTimeOfLastSuccess,dsaFailuresSinceLastSuccess,dsaFailures, + dsaSuccesses} + STATUS current + DESCRIPTION + " A collection of objects for monitoring the DSA's + interaction with peer DSAs." + ::= { dsaGroups 3 } + + +END diff --git a/pandora_console/attachment/mibs/ENTITY-MIB.mib b/pandora_console/attachment/mibs/ENTITY-MIB.mib index dc46483f14..8f3ba60ff7 100644 --- a/pandora_console/attachment/mibs/ENTITY-MIB.mib +++ b/pandora_console/attachment/mibs/ENTITY-MIB.mib @@ -1,1466 +1,1225 @@ --- ***************************************************************** --- Entity MIB version 3 --- --- September 2005, Subra Hegde --- --- Copyright (c) 2005 by cisco Systems, Inc. --- All rights reserved. --- ***************************************************************** --- --- This mib was extracted from RFC 4133 --- - -ENTITY-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, OBJECT-TYPE, mib-2, NOTIFICATION-TYPE, - Integer32 - FROM SNMPv2-SMI - TDomain, TAddress, TEXTUAL-CONVENTION, - AutonomousType, RowPointer, TimeStamp, TruthValue, - DateAndTime - FROM SNMPv2-TC - MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP - FROM SNMPv2-CONF - SnmpAdminString - FROM SNMP-FRAMEWORK-MIB; - -entityMIB MODULE-IDENTITY - LAST-UPDATED "200508100000Z" - ORGANIZATION "IETF ENTMIB Working Group" - CONTACT-INFO - " WG E-mail: entmib@ietf.org - Mailing list subscription info: - http://www.ietf.org/mailman/listinfo/entmib - - Andy Bierman - ietf@andybierman.com - - Keith McCloghrie - Cisco Systems Inc. - 170 West Tasman Drive - San Jose, CA 95134 - - - +1 408-526-5260 - kzm@cisco.com" - - DESCRIPTION - "The MIB module for representing multiple logical - entities supported by a single SNMP agent. - - Copyright (C) The Internet Society (2005). This - version of this MIB module is part of RFC 4133; see - the RFC itself for full legal notices." - - REVISION "200508100000Z" - DESCRIPTION - "Initial Version of Entity MIB (Version 3). - This revision obsoletes RFC 2737. - Additions: - - cpu(12) enumeration added to PhysicalClass TC - - DISPLAY-HINT clause to PhysicalIndex TC - - PhysicalIndexOrZero TC - - entPhysicalMfgDate object - - entPhysicalUris object - Changes: - - entPhysicalContainedIn SYNTAX changed from - INTEGER to PhysicalIndexOrZero - - This version published as RFC 4133." - - REVISION "199912070000Z" - DESCRIPTION - "Initial Version of Entity MIB (Version 2). - This revision obsoletes RFC 2037. - This version published as RFC 2737." - - REVISION "199610310000Z" - DESCRIPTION - "Initial version (version 1), published as - RFC 2037." - ::= { mib-2 47 } - -entityMIBObjects OBJECT IDENTIFIER ::= { entityMIB 1 } - --- MIB contains four groups -entityPhysical OBJECT IDENTIFIER ::= { entityMIBObjects 1 } -entityLogical OBJECT IDENTIFIER ::= { entityMIBObjects 2 } -entityMapping OBJECT IDENTIFIER ::= { entityMIBObjects 3 } -entityGeneral OBJECT IDENTIFIER ::= { entityMIBObjects 4 } - - --- Textual Conventions -PhysicalIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "An arbitrary value that uniquely identifies the physical - entity. The value should be a small, positive integer. - Index values for different physical entities are not - necessarily contiguous." - SYNTAX Integer32 (1..2147483647) - -PhysicalIndexOrZero ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "This textual convention is an extension of the - PhysicalIndex convention, which defines a greater than zero - value used to identify a physical entity. This extension - permits the additional value of zero. The semantics of the - value zero are object-specific and must, therefore, be - defined as part of the description of any object that uses - this syntax. Examples of the usage of this extension are - situations where none or all physical entities need to be - referenced." - SYNTAX Integer32 (0..2147483647) - -PhysicalClass ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "An enumerated value which provides an indication of the - general hardware type of a particular physical entity. - There are no restrictions as to the number of - entPhysicalEntries of each entPhysicalClass, which must be - instantiated by an agent. - - The enumeration 'other' is applicable if the physical entity - class is known, but does not match any of the supported - values. - - The enumeration 'unknown' is applicable if the physical - entity class is unknown to the agent. - - The enumeration 'chassis' is applicable if the physical - entity class is an overall container for networking - equipment. Any class of physical entity, except a stack, - may be contained within a chassis; and a chassis may only - be contained within a stack. - - - The enumeration 'backplane' is applicable if the physical - entity class is some sort of device for aggregating and - forwarding networking traffic, such as a shared backplane in - a modular ethernet switch. Note that an agent may model a - backplane as a single physical entity, which is actually - implemented as multiple discrete physical components (within - a chassis or stack). - - The enumeration 'container' is applicable if the physical - entity class is capable of containing one or more removable - physical entities, possibly of different types. For - example, each (empty or full) slot in a chassis will be - modeled as a container. Note that all removable physical - entities should be modeled within a container entity, such - as field-replaceable modules, fans, or power supplies. Note - that all known containers should be modeled by the agent, - including empty containers. - - The enumeration 'powerSupply' is applicable if the physical - entity class is a power-supplying component. - - The enumeration 'fan' is applicable if the physical entity - class is a fan or other heat-reduction component. - - The enumeration 'sensor' is applicable if the physical - entity class is some sort of sensor, such as a temperature - sensor within a router chassis. - - The enumeration 'module' is applicable if the physical - entity class is some sort of self-contained sub-system. If - the enumeration 'module' is removable, then it should be - modeled within a container entity, otherwise it should be - modeled directly within another physical entity (e.g., a - chassis or another module). - - The enumeration 'port' is applicable if the physical entity - class is some sort of networking port, capable of receiving - and/or transmitting networking traffic. - - The enumeration 'stack' is applicable if the physical entity - class is some sort of super-container (possibly virtual), - intended to group together multiple chassis entities. A - stack may be realized by a 'virtual' cable, a real - interconnect cable, attached to multiple chassis, or may in - fact be comprised of multiple interconnect cables. A stack - should not be modeled within any other physical entities, - but a stack may be contained within another stack. Only - chassis entities should be contained within a stack. - - - The enumeration 'cpu' is applicable if the physical entity - class is some sort of central processing unit." - SYNTAX INTEGER { - other(1), - unknown(2), - chassis(3), - backplane(4), - container(5), -- e.g., chassis slot or daughter-card holder - powerSupply(6), - fan(7), - sensor(8), - module(9), -- e.g., plug-in card or daughter-card - port(10), - stack(11), -- e.g., stack of multiple chassis entities - cpu(12) - } - -SnmpEngineIdOrNone ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A specially formatted SnmpEngineID string for use with the - Entity MIB. - - If an instance of an object of SYNTAX SnmpEngineIdOrNone has - a non-zero length, then the object encoding and semantics - are defined by the SnmpEngineID textual convention (see STD - 62, RFC 3411 [RFC3411]). - - If an instance of an object of SYNTAX SnmpEngineIdOrNone - contains a zero-length string, then no appropriate - SnmpEngineID is associated with the logical entity (i.e., - SNMPv3 is not supported)." - SYNTAX OCTET STRING (SIZE(0..32)) -- empty string or SnmpEngineID - --- The Physical Entity Table -entPhysicalTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntPhysicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains one row per physical entity. There is - always at least one row for an 'overall' physical entity." - ::= { entityPhysical 1 } - -entPhysicalEntry OBJECT-TYPE - SYNTAX EntPhysicalEntry - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "Information about a particular physical entity. - - Each entry provides objects (entPhysicalDescr, - entPhysicalVendorType, and entPhysicalClass) to help an NMS - identify and characterize the entry, and objects - (entPhysicalContainedIn and entPhysicalParentRelPos) to help - an NMS relate the particular entry to other entries in this - table." - INDEX { entPhysicalIndex } - ::= { entPhysicalTable 1 } - -EntPhysicalEntry ::= SEQUENCE { - entPhysicalIndex PhysicalIndex, - entPhysicalDescr SnmpAdminString, - entPhysicalVendorType AutonomousType, - entPhysicalContainedIn PhysicalIndexOrZero, - entPhysicalClass PhysicalClass, - entPhysicalParentRelPos Integer32, - entPhysicalName SnmpAdminString, - entPhysicalHardwareRev SnmpAdminString, - entPhysicalFirmwareRev SnmpAdminString, - entPhysicalSoftwareRev SnmpAdminString, - entPhysicalSerialNum SnmpAdminString, - entPhysicalMfgName SnmpAdminString, - entPhysicalModelName SnmpAdminString, - entPhysicalAlias SnmpAdminString, - entPhysicalAssetID SnmpAdminString, - entPhysicalIsFRU TruthValue, - entPhysicalMfgDate DateAndTime, - entPhysicalUris OCTET STRING - -} - -entPhysicalIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The index for this entry." - ::= { entPhysicalEntry 1 } - -entPhysicalDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - - - "A textual description of physical entity. This object - should contain a string that identifies the manufacturer's - name for the physical entity, and should be set to a - distinct value for each version or model of the physical - entity." - ::= { entPhysicalEntry 2 } - -entPhysicalVendorType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the vendor-specific hardware type of the - physical entity. Note that this is different from the - definition of MIB-II's sysObjectID. - - An agent should set this object to an enterprise-specific - registration identifier value indicating the specific - equipment type in detail. The associated instance of - entPhysicalClass is used to indicate the general type of - hardware device. - - If no vendor-specific registration identifier exists for - this physical entity, or the value is unknown by this agent, - then the value { 0 0 } is returned." - ::= { entPhysicalEntry 3 } - -entPhysicalContainedIn OBJECT-TYPE - SYNTAX PhysicalIndexOrZero - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of entPhysicalIndex for the physical entity which - 'contains' this physical entity. A value of zero indicates - this physical entity is not contained in any other physical - entity. Note that the set of 'containment' relationships - define a strict hierarchy; that is, recursion is not - allowed. - - In the event that a physical entity is contained by more - than one physical entity (e.g., double-wide modules), this - object should identify the containing entity with the lowest - value of entPhysicalIndex." - ::= { entPhysicalEntry 4 } - -entPhysicalClass OBJECT-TYPE - SYNTAX PhysicalClass - MAX-ACCESS read-only - - - STATUS current - DESCRIPTION - "An indication of the general hardware type of the physical - entity. - - An agent should set this object to the standard enumeration - value that most accurately indicates the general class of - the physical entity, or the primary class if there is more - than one entity. - - If no appropriate standard registration identifier exists - for this physical entity, then the value 'other(1)' is - returned. If the value is unknown by this agent, then the - value 'unknown(2)' is returned." - ::= { entPhysicalEntry 5 } - -entPhysicalParentRelPos OBJECT-TYPE - SYNTAX Integer32 (-1..2147483647) - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the relative position of this 'child' - component among all its 'sibling' components. Sibling - components are defined as entPhysicalEntries that share the - same instance values of each of the entPhysicalContainedIn - and entPhysicalClass objects. - - An NMS can use this object to identify the relative ordering - for all sibling components of a particular parent - (identified by the entPhysicalContainedIn instance in each - sibling entry). - - If possible, this value should match any external labeling - of the physical component. For example, for a container - (e.g., card slot) labeled as 'slot #3', - entPhysicalParentRelPos should have the value '3'. Note - that the entPhysicalEntry for the module plugged in slot 3 - should have an entPhysicalParentRelPos value of '1'. - - If the physical position of this component does not match - any external numbering or clearly visible ordering, then - user documentation or other external reference material - should be used to determine the parent-relative position. - If this is not possible, then the agent should assign a - consistent (but possibly arbitrary) ordering to a given set - of 'sibling' components, perhaps based on internal - representation of the components. - - - If the agent cannot determine the parent-relative position - for some reason, or if the associated value of - entPhysicalContainedIn is '0', then the value '-1' is - returned. Otherwise, a non-negative integer is returned, - indicating the parent-relative position of this physical - entity. - - Parent-relative ordering normally starts from '1' and - continues to 'N', where 'N' represents the highest - positioned child entity. However, if the physical entities - (e.g., slots) are labeled from a starting position of zero, - then the first sibling should be associated with an - entPhysicalParentRelPos value of '0'. Note that this - ordering may be sparse or dense, depending on agent - implementation. - - The actual values returned are not globally meaningful, as - each 'parent' component may use different numbering - algorithms. The ordering is only meaningful among siblings - of the same parent component. - - The agent should retain parent-relative position values - across reboots, either through algorithmic assignment or use - of non-volatile storage." - ::= { entPhysicalEntry 6 } - -entPhysicalName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The textual name of the physical entity. The value of this - object should be the name of the component as assigned by - the local device and should be suitable for use in commands - entered at the device's `console'. This might be a text - name (e.g., `console') or a simple component number (e.g., - port or module number, such as `1'), depending on the - physical component naming syntax of the device. - - If there is no local name, or if this object is otherwise - not applicable, then this object contains a zero-length - string. - - Note that the value of entPhysicalName for two physical - entities will be the same in the event that the console - interface does not distinguish between them, e.g., slot-1 - and the card in slot-1." - ::= { entPhysicalEntry 7 } - - -entPhysicalHardwareRev OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific hardware revision string for the - physical entity. The preferred value is the hardware - revision identifier actually printed on the component itself - (if present). - - Note that if revision information is stored internally in a - non-printable (e.g., binary) format, then the agent must - convert such information to a printable format, in an - implementation-specific manner. - - If no specific hardware revision string is associated with - the physical component, or if this information is unknown to - the agent, then this object will contain a zero-length - string." - ::= { entPhysicalEntry 8 } - -entPhysicalFirmwareRev OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific firmware revision string for the - physical entity. - - Note that if revision information is stored internally in a - non-printable (e.g., binary) format, then the agent must - convert such information to a printable format, in an - implementation-specific manner. - - If no specific firmware programs are associated with the - physical component, or if this information is unknown to the - agent, then this object will contain a zero-length string." - ::= { entPhysicalEntry 9 } - -entPhysicalSoftwareRev OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific software revision string for the - physical entity. - - Note that if revision information is stored internally in a - - - non-printable (e.g., binary) format, then the agent must - convert such information to a printable format, in an - implementation-specific manner. - - If no specific software programs are associated with the - physical component, or if this information is unknown to the - agent, then this object will contain a zero-length string." - ::= { entPhysicalEntry 10 } - -entPhysicalSerialNum OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "The vendor-specific serial number string for the physical - entity. The preferred value is the serial number string - actually printed on the component itself (if present). - - On the first instantiation of an physical entity, the value - of entPhysicalSerialNum associated with that entity is set - to the correct vendor-assigned serial number, if this - information is available to the agent. If a serial number - is unknown or non-existent, the entPhysicalSerialNum will be - set to a zero-length string instead. - - Note that implementations that can correctly identify the - serial numbers of all installed physical entities do not - need to provide write access to the entPhysicalSerialNum - object. Agents which cannot provide non-volatile storage - for the entPhysicalSerialNum strings are not required to - implement write access for this object. - - Not every physical component will have a serial number, or - even need one. Physical entities for which the associated - value of the entPhysicalIsFRU object is equal to 'false(2)' - (e.g., the repeater ports within a repeater module), do not - need their own unique serial number. An agent does not have - to provide write access for such entities, and may return a - zero-length string. - - If write access is implemented for an instance of - entPhysicalSerialNum, and a value is written into the - instance, the agent must retain the supplied value in the - entPhysicalSerialNum instance (associated with the same - physical entity) for as long as that entity remains - instantiated. This includes instantiations across all - re-initializations/reboots of the network management system, - including those resulting in a change of the physical - - - entity's entPhysicalIndex value." - ::= { entPhysicalEntry 11 } - -entPhysicalMfgName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The name of the manufacturer of this physical component. - The preferred value is the manufacturer name string actually - printed on the component itself (if present). - - Note that comparisons between instances of the - entPhysicalModelName, entPhysicalFirmwareRev, - entPhysicalSoftwareRev, and the entPhysicalSerialNum - objects, are only meaningful amongst entPhysicalEntries with - the same value of entPhysicalMfgName. - - If the manufacturer name string associated with the physical - component is unknown to the agent, then this object will - contain a zero-length string." - ::= { entPhysicalEntry 12 } - -entPhysicalModelName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The vendor-specific model name identifier string associated - with this physical component. The preferred value is the - customer-visible part number, which may be printed on the - component itself. - - If the model name string associated with the physical - component is unknown to the agent, then this object will - contain a zero-length string." - ::= { entPhysicalEntry 13 } - -entPhysicalAlias OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is an 'alias' name for the physical entity, as - specified by a network manager, and provides a non-volatile - 'handle' for the physical entity. - - On the first instantiation of a physical entity, the value - - - of entPhysicalAlias associated with that entity is set to - the zero-length string. However, the agent may set the - value to a locally unique default value, instead of a - zero-length string. - - If write access is implemented for an instance of - entPhysicalAlias, and a value is written into the instance, - the agent must retain the supplied value in the - entPhysicalAlias instance (associated with the same physical - entity) for as long as that entity remains instantiated. - This includes instantiations across all - re-initializations/reboots of the network management system, - including those resulting in a change of the physical - entity's entPhysicalIndex value." - ::= { entPhysicalEntry 14 } - -entPhysicalAssetID OBJECT-TYPE - SYNTAX SnmpAdminString (SIZE (0..32)) - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object is a user-assigned asset tracking identifier - (as specified by a network manager) for the physical entity, - and provides non-volatile storage of this information. - - On the first instantiation of a physical entity, the value - of entPhysicalAssetID associated with that entity is set to - the zero-length string. - - Not every physical component will have an asset tracking - identifier, or even need one. Physical entities for which - the associated value of the entPhysicalIsFRU object is equal - to 'false(2)' (e.g., the repeater ports within a repeater - module), do not need their own unique asset tracking - identifier. An agent does not have to provide write access - for such entities, and may instead return a zero-length - string. - - If write access is implemented for an instance of - entPhysicalAssetID, and a value is written into the - instance, the agent must retain the supplied value in the - entPhysicalAssetID instance (associated with the same - physical entity) for as long as that entity remains - instantiated. This includes instantiations across all - re-initializations/reboots of the network management system, - including those resulting in a change of the physical - entity's entPhysicalIndex value. - - - If no asset tracking information is associated with the - physical component, then this object will contain a - zero-length string." - ::= { entPhysicalEntry 15 } - -entPhysicalIsFRU OBJECT-TYPE - SYNTAX TruthValue - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object indicates whether or not this physical entity - is considered a 'field replaceable unit' by the vendor. If - this object contains the value 'true(1)' then this - entPhysicalEntry identifies a field replaceable unit. For - all entPhysicalEntries that represent components - permanently contained within a field replaceable unit, the - value 'false(2)' should be returned for this object." - ::= { entPhysicalEntry 16 } - -entPhysicalMfgDate OBJECT-TYPE - SYNTAX DateAndTime - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "This object contains the date of manufacturing of the - managed entity. If the manufacturing date is unknown or not - supported, the object is not instantiated. The special - value '0000000000000000'H may also be returned in this - case." - ::= { entPhysicalEntry 17 } - -entPhysicalUris OBJECT-TYPE - SYNTAX OCTET STRING - MAX-ACCESS read-write - STATUS current - DESCRIPTION - "This object contains additional identification information - about the physical entity. The object contains URIs and, - therefore, the syntax of this object must conform to RFC - 3986, section 2. - - Multiple URIs may be present and are separated by white - space characters. Leading and trailing white space - characters are ignored. - - If no additional identification information is known - about the physical entity or supported, the object is not - instantiated. A zero length octet string may also be - - - returned in this case." - REFERENCE - "RFC 3986, Uniform Resource Identifiers (URI): Generic - Syntax, section 2, August 1998." - - ::= { entPhysicalEntry 18 } - --- The Logical Entity Table -entLogicalTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntLogicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains one row per logical entity. For agents - that implement more than one naming scope, at least one - entry must exist. Agents which instantiate all MIB objects - within a single naming scope are not required to implement - this table." - ::= { entityLogical 1 } - -entLogicalEntry OBJECT-TYPE - SYNTAX EntLogicalEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a particular logical entity. Entities - may be managed by this agent or other SNMP agents (possibly) - in the same chassis." - INDEX { entLogicalIndex } - ::= { entLogicalTable 1 } - -EntLogicalEntry ::= SEQUENCE { - entLogicalIndex Integer32, - entLogicalDescr SnmpAdminString, - entLogicalType AutonomousType, - entLogicalCommunity OCTET STRING, - entLogicalTAddress TAddress, - entLogicalTDomain TDomain, - entLogicalContextEngineID SnmpEngineIdOrNone, - entLogicalContextName SnmpAdminString -} - -entLogicalIndex OBJECT-TYPE - SYNTAX Integer32 (1..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - - - "The value of this object uniquely identifies the logical - entity. The value should be a small positive integer; index - values for different logical entities are not necessarily - contiguous." - ::= { entLogicalEntry 1 } - -entLogicalDescr OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "A textual description of the logical entity. This object - should contain a string that identifies the manufacturer's - name for the logical entity, and should be set to a distinct - value for each version of the logical entity." - ::= { entLogicalEntry 2 } - -entLogicalType OBJECT-TYPE - SYNTAX AutonomousType - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "An indication of the type of logical entity. This will - typically be the OBJECT IDENTIFIER name of the node in the - SMI's naming hierarchy which represents the major MIB - module, or the majority of the MIB modules, supported by the - logical entity. For example: - a logical entity of a regular host/router -> mib-2 - a logical entity of a 802.1d bridge -> dot1dBridge - a logical entity of a 802.3 repeater -> snmpDot3RptrMgmt - If an appropriate node in the SMI's naming hierarchy cannot - be identified, the value 'mib-2' should be used." - ::= { entLogicalEntry 3 } - -entLogicalCommunity OBJECT-TYPE - SYNTAX OCTET STRING (SIZE (0..255)) - MAX-ACCESS read-only - STATUS deprecated - DESCRIPTION - "An SNMPv1 or SNMPv2C community-string, which can be used to - access detailed management information for this logical - entity. The agent should allow read access with this - community string (to an appropriate subset of all managed - objects) and may also return a community string based on the - privileges of the request used to read this object. Note - that an agent may return a community string with read-only - privileges, even if this object is accessed with a - read-write community string. However, the agent must take - - - care not to return a community string that allows more - privileges than the community string used to access this - object. - - A compliant SNMP agent may wish to conserve naming scopes by - representing multiple logical entities in a single 'default' - naming scope. This is possible when the logical entities, - represented by the same value of entLogicalCommunity, have - no object instances in common. For example, 'bridge1' and - 'repeater1' may be part of the main naming scope, but at - least one additional community string is needed to represent - 'bridge2' and 'repeater2'. - - Logical entities 'bridge1' and 'repeater1' would be - represented by sysOREntries associated with the 'default' - naming scope. - - For agents not accessible via SNMPv1 or SNMPv2C, the value - of this object is the empty string. This object may also - contain an empty string if a community string has not yet - been assigned by the agent, or if no community string with - suitable access rights can be returned for a particular SNMP - request. - - Note that this object is deprecated. Agents which implement - SNMPv3 access should use the entLogicalContextEngineID and - entLogicalContextName objects to identify the context - associated with each logical entity. SNMPv3 agents may - return a zero-length string for this object, or may continue - to return a community string (e.g., tri-lingual agent - support)." - ::= { entLogicalEntry 4 } - -entLogicalTAddress OBJECT-TYPE - SYNTAX TAddress - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The transport service address by which the logical entity - receives network management traffic, formatted according to - the corresponding value of entLogicalTDomain. - - For snmpUDPDomain, a TAddress is 6 octets long: the initial - 4 octets contain the IP-address in network-byte order and - the last 2 contain the UDP port in network-byte order. - Consult 'Transport Mappings for the Simple Network - Management Protocol' (STD 62, RFC 3417 [RFC3417]) for - further information on snmpUDPDomain." - - - ::= { entLogicalEntry 5 } - -entLogicalTDomain OBJECT-TYPE - SYNTAX TDomain - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "Indicates the kind of transport service by which the - logical entity receives network management traffic. - Possible values for this object are presently found in the - Transport Mappings for Simple Network Management Protocol' - (STD 62, RFC 3417 [RFC3417])." - ::= { entLogicalEntry 6 } - -entLogicalContextEngineID OBJECT-TYPE - SYNTAX SnmpEngineIdOrNone - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The authoritative contextEngineID that can be used to send - an SNMP message concerning information held by this logical - entity, to the address specified by the associated - 'entLogicalTAddress/entLogicalTDomain' pair. - - This object, together with the associated - entLogicalContextName object, defines the context associated - with a particular logical entity, and allows access to SNMP - engines identified by a contextEngineId and contextName - pair. - - If no value has been configured by the agent, a zero-length - string is returned, or the agent may choose not to - instantiate this object at all." - ::= { entLogicalEntry 7 } - -entLogicalContextName OBJECT-TYPE - SYNTAX SnmpAdminString - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The contextName that can be used to send an SNMP message - concerning information held by this logical entity, to the - address specified by the associated - 'entLogicalTAddress/entLogicalTDomain' pair. - - This object, together with the associated - entLogicalContextEngineID object, defines the context - associated with a particular logical entity, and allows - - - access to SNMP engines identified by a contextEngineId and - contextName pair. - - If no value has been configured by the agent, a zero-length - string is returned, or the agent may choose not to - instantiate this object at all." - ::= { entLogicalEntry 8 } - -entLPMappingTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntLPMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains zero or more rows of logical entity to - physical equipment associations. For each logical entity - known by this agent, there are zero or more mappings to the - physical resources, which are used to realize that logical - entity. - - An agent should limit the number and nature of entries in - this table such that only meaningful and non-redundant - information is returned. For example, in a system that - contains a single power supply, mappings between logical - entities and the power supply are not useful and should not - be included. - - Also, only the most appropriate physical component, which is - closest to the root of a particular containment tree, should - be identified in an entLPMapping entry. - - For example, suppose a bridge is realized on a particular - module, and all ports on that module are ports on this - bridge. A mapping between the bridge and the module would - be useful, but additional mappings between the bridge and - each of the ports on that module would be redundant (because - the entPhysicalContainedIn hierarchy can provide the same - information). On the other hand, if more than one bridge - were utilizing ports on this module, then mappings between - each bridge and the ports it used would be appropriate. - - Also, in the case of a single backplane repeater, a mapping - for the backplane to the single repeater entity is not - necessary." - ::= { entityMapping 1 } - -entLPMappingEntry OBJECT-TYPE - SYNTAX EntLPMappingEntry - MAX-ACCESS not-accessible - - - STATUS current - DESCRIPTION - "Information about a particular logical entity to physical - equipment association. Note that the nature of the - association is not specifically identified in this entry. - It is expected that sufficient information exists in the - MIBs used to manage a particular logical entity to infer how - physical component information is utilized." - INDEX { entLogicalIndex, entLPPhysicalIndex } - ::= { entLPMappingTable 1 } - -EntLPMappingEntry ::= SEQUENCE { - entLPPhysicalIndex PhysicalIndex -} - -entLPPhysicalIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object identifies the index value of a - particular entPhysicalEntry associated with the indicated - entLogicalEntity." - ::= { entLPMappingEntry 1 } - --- logical entity/component to alias table -entAliasMappingTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntAliasMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "This table contains zero or more rows, representing - mappings of logical entity and physical component to - external MIB identifiers. Each physical port in the system - may be associated with a mapping to an external identifier, - which itself is associated with a particular logical - entity's naming scope. A 'wildcard' mechanism is provided - to indicate that an identifier is associated with more than - one logical entity." - ::= { entityMapping 2 } - -entAliasMappingEntry OBJECT-TYPE - SYNTAX EntAliasMappingEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "Information about a particular physical equipment, logical - - - entity to external identifier binding. Each logical - entity/physical component pair may be associated with one - alias mapping. The logical entity index may also be used as - a 'wildcard' (refer to the entAliasLogicalIndexOrZero object - DESCRIPTION clause for details.) - - Note that only entPhysicalIndex values that represent - physical ports (i.e., associated entPhysicalClass value is - 'port(10)') are permitted to exist in this table." - INDEX { entPhysicalIndex, entAliasLogicalIndexOrZero } - ::= { entAliasMappingTable 1 } - -EntAliasMappingEntry ::= SEQUENCE { - entAliasLogicalIndexOrZero Integer32, - entAliasMappingIdentifier RowPointer -} - -entAliasLogicalIndexOrZero OBJECT-TYPE - SYNTAX Integer32 (0..2147483647) - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "The value of this object identifies the logical entity - that defines the naming scope for the associated instance - of the 'entAliasMappingIdentifier' object. - - If this object has a non-zero value, then it identifies the - logical entity named by the same value of entLogicalIndex. - - If this object has a value of zero, then the mapping between - the physical component and the alias identifier for this - entAliasMapping entry is associated with all unspecified - logical entities. That is, a value of zero (the default - mapping) identifies any logical entity that does not have - an explicit entry in this table for a particular - entPhysicalIndex/entAliasMappingIdentifier pair. - - For example, to indicate that a particular interface (e.g., - physical component 33) is identified by the same value of - ifIndex for all logical entities, the following instance - might exist: - - entAliasMappingIdentifier.33.0 = ifIndex.5 - - In the event an entPhysicalEntry is associated differently - for some logical entities, additional entAliasMapping - entries may exist, e.g.: - - - entAliasMappingIdentifier.33.0 = ifIndex.6 - entAliasMappingIdentifier.33.4 = ifIndex.1 - entAliasMappingIdentifier.33.5 = ifIndex.1 - entAliasMappingIdentifier.33.10 = ifIndex.12 - - Note that entries with non-zero entAliasLogicalIndexOrZero - index values have precedence over zero-indexed entries. In - this example, all logical entities except 4, 5, and 10, - associate physical entity 33 with ifIndex.6." - ::= { entAliasMappingEntry 1 } - -entAliasMappingIdentifier OBJECT-TYPE - SYNTAX RowPointer - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of this object identifies a particular conceptual - row associated with the indicated entPhysicalIndex and - entLogicalIndex pair. - - Because only physical ports are modeled in this table, only - entries that represent interfaces or ports are allowed. If - an ifEntry exists on behalf of a particular physical port, - then this object should identify the associated 'ifEntry'. - For repeater ports, the appropriate row in the - 'rptrPortGroupTable' should be identified instead. - - For example, suppose a physical port was represented by - entPhysicalEntry.3, entLogicalEntry.15 existed for a - repeater, and entLogicalEntry.22 existed for a bridge. Then - there might be two related instances of - entAliasMappingIdentifier: - entAliasMappingIdentifier.3.15 == rptrPortGroupIndex.5.2 - entAliasMappingIdentifier.3.22 == ifIndex.17 - It is possible that other mappings (besides interfaces and - repeater ports) may be defined in the future, as required. - - Bridge ports are identified by examining the Bridge MIB and - appropriate ifEntries associated with each 'dot1dBasePort', - and are thus not represented in this table." - ::= { entAliasMappingEntry 2 } - --- physical mapping table -entPhysicalContainsTable OBJECT-TYPE - SYNTAX SEQUENCE OF EntPhysicalContainsEntry - MAX-ACCESS not-accessible - STATUS current - - - DESCRIPTION - "A table that exposes the container/'containee' - relationships between physical entities. This table - provides all the information found by constructing the - virtual containment tree for a given entPhysicalTable, but - in a more direct format. - - In the event a physical entity is contained by more than one - other physical entity (e.g., double-wide modules), this - table should include these additional mappings, which cannot - be represented in the entPhysicalTable virtual containment - tree." - ::= { entityMapping 3 } - -entPhysicalContainsEntry OBJECT-TYPE - SYNTAX EntPhysicalContainsEntry - MAX-ACCESS not-accessible - STATUS current - DESCRIPTION - "A single container/'containee' relationship." - INDEX { entPhysicalIndex, entPhysicalChildIndex } - ::= { entPhysicalContainsTable 1 } - -EntPhysicalContainsEntry ::= SEQUENCE { - entPhysicalChildIndex PhysicalIndex -} - -entPhysicalChildIndex OBJECT-TYPE - SYNTAX PhysicalIndex - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of entPhysicalIndex for the contained physical - entity." - ::= { entPhysicalContainsEntry 1 } - --- last change time stamp for the whole MIB -entLastChangeTime OBJECT-TYPE - SYNTAX TimeStamp - MAX-ACCESS read-only - STATUS current - DESCRIPTION - "The value of sysUpTime at the time a conceptual row is - created, modified, or deleted in any of these tables: - - entPhysicalTable - - entLogicalTable - - entLPMappingTable - - entAliasMappingTable - - - - entPhysicalContainsTable - " - ::= { entityGeneral 1 } - --- Entity MIB Trap Definitions -entityMIBTraps OBJECT IDENTIFIER ::= { entityMIB 2 } -entityMIBTrapPrefix OBJECT IDENTIFIER ::= { entityMIBTraps 0 } - -entConfigChange NOTIFICATION-TYPE - STATUS current - DESCRIPTION - "An entConfigChange notification is generated when the value - of entLastChangeTime changes. It can be utilized by an NMS - to trigger logical/physical entity table maintenance polls. - - An agent should not generate more than one entConfigChange - 'notification-event' in a given time interval (five seconds - is the suggested default). A 'notification-event' is the - transmission of a single trap or inform PDU to a list of - notification destinations. - - If additional configuration changes occur within the - throttling period, then notification-events for these - changes should be suppressed by the agent until the current - throttling period expires. At the end of a throttling - period, one notification-event should be generated if any - configuration changes occurred since the start of the - throttling period. In such a case, another throttling - period is started right away. - - An NMS should periodically check the value of - entLastChangeTime to detect any missed entConfigChange - notification-events, e.g., due to throttling or transmission - loss." - ::= { entityMIBTrapPrefix 1 } - --- conformance information -entityConformance OBJECT IDENTIFIER ::= { entityMIB 3 } - -entityCompliances OBJECT IDENTIFIER ::= { entityConformance 1 } -entityGroups OBJECT IDENTIFIER ::= { entityConformance 2 } - --- compliance statements -entityCompliance MODULE-COMPLIANCE - STATUS deprecated - - - DESCRIPTION - "The compliance statement for SNMP entities that implement - version 1 of the Entity MIB." - MODULE -- this module - MANDATORY-GROUPS { - entityPhysicalGroup, - entityLogicalGroup, - entityMappingGroup, - entityGeneralGroup, - entityNotificationsGroup - } - ::= { entityCompliances 1 } - -entity2Compliance MODULE-COMPLIANCE - STATUS deprecated - DESCRIPTION - "The compliance statement for SNMP entities that implement - version 2 of the Entity MIB." - MODULE -- this module - MANDATORY-GROUPS { - entityPhysicalGroup, - entityPhysical2Group, - entityGeneralGroup, - entityNotificationsGroup - } - GROUP entityLogical2Group - DESCRIPTION - "Implementation of this group is not mandatory for agents - that model all MIB object instances within a single naming - scope." - - GROUP entityMappingGroup - DESCRIPTION - "Implementation of the entPhysicalContainsTable is mandatory - for all agents. Implementation of the entLPMappingTable and - entAliasMappingTables are not mandatory for agents that - model all MIB object instances within a single naming scope. - - Note that the entAliasMappingTable may be useful for all - agents; however, implementation of the entityLogicalGroup or - entityLogical2Group is required to support this table." - - OBJECT entPhysicalSerialNum - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot identify serial number information for physical - entities, and/or cannot provide non-volatile storage for - - - NMS-assigned serial numbers. - - Write access is not required for agents that can identify - serial number information for physical entities, but cannot - provide non-volatile storage for NMS-assigned serial - numbers. - - Write access is not required for physical entities for which - the associated value of the entPhysicalIsFRU object is equal - to 'false(2)'." - - OBJECT entPhysicalAlias - MIN-ACCESS read-only - DESCRIPTION - "Write access is required only if the associated - entPhysicalClass value is equal to 'chassis(3)'." - - OBJECT entPhysicalAssetID - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot provide non-volatile storage for NMS-assigned asset - identifiers. - - Write access is not required for physical entities for which - the associated value of the entPhysicalIsFRU object is equal - to 'false(2)'." - - OBJECT entPhysicalClass - SYNTAX INTEGER { - other(1), - unknown(2), - chassis(3), - backplane(4), - container(5), - powerSupply(6), - fan(7), - sensor(8), - module(9), - port(10), - stack(11) - } - DESCRIPTION - "Implementation of the 'cpu(12)' enumeration is not - required." - - ::= { entityCompliances 2 } - - -entity3Compliance MODULE-COMPLIANCE - STATUS current - DESCRIPTION - "The compliance statement for SNMP entities that implement - version 3 of the Entity MIB." - MODULE -- this module - MANDATORY-GROUPS { - entityPhysicalGroup, - entityPhysical2Group, - entityPhysical3Group, - entityGeneralGroup, - entityNotificationsGroup - } - GROUP entityLogical2Group - DESCRIPTION - "Implementation of this group is not mandatory for agents - that model all MIB object instances within a single naming - scope." - - GROUP entityMappingGroup - DESCRIPTION - "Implementation of the entPhysicalContainsTable is mandatory - for all agents. Implementation of the entLPMappingTable and - entAliasMappingTables are not mandatory for agents that - model all MIB object instances within a single naming scope. - - Note that the entAliasMappingTable may be useful for all - agents; however, implementation of the entityLogicalGroup or - entityLogical2Group is required to support this table." - - OBJECT entPhysicalSerialNum - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot identify serial number information for physical - entities, and/or cannot provide non-volatile storage for - NMS-assigned serial numbers. - - Write access is not required for agents that can identify - serial number information for physical entities, but cannot - provide non-volatile storage for NMS-assigned serial - numbers. - - Write access is not required for physical entities for - which the associated value of the entPhysicalIsFRU object - is equal to 'false(2)'." - - OBJECT entPhysicalAlias - - - MIN-ACCESS read-only - DESCRIPTION - "Write access is required only if the associated - entPhysicalClass value is equal to 'chassis(3)'." - - OBJECT entPhysicalAssetID - MIN-ACCESS not-accessible - DESCRIPTION - "Read and write access is not required for agents that - cannot provide non-volatile storage for NMS-assigned asset - identifiers. - - Write access is not required for physical entities for which - the associated value of entPhysicalIsFRU is equal to - 'false(2)'." - ::= { entityCompliances 3 } - --- MIB groupings -entityPhysicalGroup OBJECT-GROUP - OBJECTS { - entPhysicalDescr, - entPhysicalVendorType, - entPhysicalContainedIn, - entPhysicalClass, - entPhysicalParentRelPos, - entPhysicalName - } - STATUS current - DESCRIPTION - "The collection of objects used to represent physical - system components, for which a single agent provides - management information." - ::= { entityGroups 1 } - -entityLogicalGroup OBJECT-GROUP - OBJECTS { - entLogicalDescr, - entLogicalType, - entLogicalCommunity, - entLogicalTAddress, - entLogicalTDomain - } - STATUS deprecated - DESCRIPTION - "The collection of objects used to represent the list of - logical entities, for which a single agent provides - management information." - - - ::= { entityGroups 2 } - -entityMappingGroup OBJECT-GROUP - OBJECTS { - entLPPhysicalIndex, - entAliasMappingIdentifier, - entPhysicalChildIndex - } - STATUS current - DESCRIPTION - "The collection of objects used to represent the - associations between multiple logical entities, physical - components, interfaces, and port identifiers, for which a - single agent provides management information." - ::= { entityGroups 3 } - -entityGeneralGroup OBJECT-GROUP - OBJECTS { - entLastChangeTime - } - STATUS current - DESCRIPTION - "The collection of objects used to represent general entity - information, for which a single agent provides management - information." - ::= { entityGroups 4 } - -entityNotificationsGroup NOTIFICATION-GROUP - NOTIFICATIONS { entConfigChange } - STATUS current - DESCRIPTION - "The collection of notifications used to indicate Entity MIB - data consistency and general status information." - ::= { entityGroups 5 } - -entityPhysical2Group OBJECT-GROUP - OBJECTS { - entPhysicalHardwareRev, - entPhysicalFirmwareRev, - entPhysicalSoftwareRev, - entPhysicalSerialNum, - entPhysicalMfgName, - entPhysicalModelName, - entPhysicalAlias, - entPhysicalAssetID, - entPhysicalIsFRU - } - STATUS current - - - DESCRIPTION - "The collection of objects used to represent physical - system components, for which a single agent provides - management information. This group augments the objects - contained in the entityPhysicalGroup." - ::= { entityGroups 6 } - -entityLogical2Group OBJECT-GROUP - OBJECTS { - entLogicalDescr, - entLogicalType, - entLogicalTAddress, - entLogicalTDomain, - entLogicalContextEngineID, - entLogicalContextName - } - STATUS current - DESCRIPTION - "The collection of objects used to represent the - list of logical entities, for which a single SNMP entity - provides management information." - ::= { entityGroups 7 } - -entityPhysical3Group OBJECT-GROUP - OBJECTS { - entPhysicalMfgDate, - entPhysicalUris - } - STATUS current - DESCRIPTION - "The collection of objects used to represent physical - system components, for which a single agent provides - management information. This group augments the objects - contained in the entityPhysicalGroup." - ::= { entityGroups 8 } - -END +-- MIB file created 14-Sep-2001 10:54:42, by +-- SMICng version 2.2.11-beta(PRO)(Solaris), January 20, 2001. Enterprise key cisco.com + +ENTITY-MIB DEFINITIONS ::= BEGIN + +-- From file: "ENTITY-MIB.my" +-- Compile options "4 7 F H N W 03 06 0B 0G 0N 0T" + +IMPORTS + mib-2 + FROM SNMPv2-SMI-v1 + TDomain, TAddress, AutonomousType, RowPointer, TimeStamp, + TruthValue + FROM SNMPv2-TC-v1 + SnmpAdminString + FROM SNMP-FRAMEWORK-MIB + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215; + +entityMIB OBJECT IDENTIFIER ::= { mib-2 47 } +-- MODULE-IDENTITY +-- LastUpdated +-- 9912070000Z +-- OrgName +-- IETF ENTMIB Working Group +-- ContactInfo +-- WG E-mail: entmib@cisco.com +-- Subscribe: majordomo@cisco.com +-- msg body: subscribe entmib +-- +-- Keith McCloghrie +-- ENTMIB Working Group Chair +-- Cisco Systems Inc. +-- 170 West Tasman Drive +-- San Jose, CA 95134 +-- +1 408-526-5260 +-- kzm@cisco.com +-- +-- Andy Bierman +-- ENTMIB Working Group Editor +-- Cisco Systems Inc. +-- 170 West Tasman Drive +-- San Jose, CA 95134 +-- +1 408-527-3711 +-- abierman@cisco.com +-- Descr +-- The MIB module for representing multiple logical +-- entities supported by a single SNMP agent. +-- RevDate +-- 9912070000Z +-- RevDescr +-- Initial Version of Entity MIB (Version 2). +-- This revision obsoletes RFC 2037. +-- This version published as RFC 2737. +-- RevDate +-- 9610310000Z +-- RevDescr +-- Initial version (version 1), published as +-- RFC 2037. + +entityMIBObjects OBJECT IDENTIFIER ::= { entityMIB 1 } +entityPhysical OBJECT IDENTIFIER ::= { entityMIBObjects 1 } +entityLogical OBJECT IDENTIFIER ::= { entityMIBObjects 2 } +entityMapping OBJECT IDENTIFIER ::= { entityMIBObjects 3 } +entityGeneral OBJECT IDENTIFIER ::= { entityMIBObjects 4 } +entityMIBTraps OBJECT IDENTIFIER ::= { entityMIB 2 } +entityMIBTrapPrefix OBJECT IDENTIFIER ::= { entityMIBTraps 0 } +entityConformance OBJECT IDENTIFIER ::= { entityMIB 3 } +entityCompliances OBJECT IDENTIFIER ::= { entityConformance 1 } +entityGroups OBJECT IDENTIFIER ::= { entityConformance 2 } + +PhysicalIndex ::= INTEGER(1..2147483647) +-- TEXTUAL-CONVENTION +-- Status +-- mandatory +-- Descr +-- An arbitrary value which uniquely identifies the physical +-- entity. The value should be a small positive integer; index +-- values for different physical entities are not necessarily +-- contiguous. + +PhysicalClass ::= INTEGER { + other(1), + unknown(2), + chassis(3), + backplane(4), + container(5), + powerSupply(6), + fan(7), + sensor(8), + module(9), + port(10), + stack(11) + } +-- TEXTUAL-CONVENTION +-- Status +-- mandatory +-- Descr +-- An enumerated value which provides an indication of the +-- general hardware type of a particular physical entity. +-- There are no restrictions as to the number of +-- entPhysicalEntries of each entPhysicalClass, which must be +-- instantiated by an agent. +-- +-- The enumeration 'other' is applicable if the physical entity +-- class is known, but does not match any of the supported +-- values. +-- +-- The enumeration 'unknown' is applicable if the physical +-- entity class is unknown to the agent. +-- +-- The enumeration 'chassis' is applicable if the physical +-- entity class is an overall container for networking +-- equipment. Any class of physical entity except a stack may +-- be contained within a chassis, and a chassis may only be +-- contained within a stack. +-- +-- The enumeration 'backplane' is applicable if the physical +-- entity class is some sort of device for aggregating and +-- forwarding networking traffic, such as a shared backplane in +-- a modular ethernet switch. Note that an agent may model a +-- backplane as a single physical entity, which is actually +-- implemented as multiple discrete physical components (within +-- a chassis or stack). +-- +-- The enumeration 'container' is applicable if the physical +-- entity class is capable of containing one or more removable +-- physical entities, possibly of different types. For example, +-- each (empty or full) slot in a chassis will be modeled as a +-- container. Note that all removable physical entities should +-- be modeled within a container entity, such as field- +-- replaceable modules, fans, or power supplies. Note that all +-- known containers should be modeled by the agent, including +-- empty containers. +-- +-- The enumeration 'powerSupply' is applicable if the physical +-- entity class is a power-supplying component. +-- +-- The enumeration 'fan' is applicable if the physical entity +-- class is a fan or other heat-reduction component. +-- +-- The enumeration 'sensor' is applicable if the physical +-- entity class is some sort of sensor, such as a temperature +-- sensor within a router chassis. +-- +-- The enumeration 'module' is applicable if the physical +-- entity class is some sort of self-contained sub-system. If +-- it is removable, then it should be modeled within a +-- container entity, otherwise it should be modeled directly +-- within another physical entity (e.g., a chassis or another +-- module). +-- +-- The enumeration 'port' is applicable if the physical entity +-- class is some sort of networking port, capable of receiving +-- and/or transmitting networking traffic. +-- +-- The enumeration 'stack' is applicable if the physical entity +-- class is some sort of super-container (possibly virtual), +-- intended to group together multiple chassis entities. A +-- stack may be realized by a 'virtual' cable, a real +-- interconnect cable, attached to multiple chassis, or may in +-- fact be comprised of multiple interconnect cables. A stack +-- should not be modeled within any other physical entities, +-- but a stack may be contained within another stack. Only +-- chassis entities should be contained within a stack. + +SnmpEngineIdOrNone ::= OCTET STRING(SIZE(0..32)) +-- TEXTUAL-CONVENTION +-- Status +-- mandatory +-- Descr +-- A specially formatted SnmpEngineID string for use with the +-- Entity MIB. +-- +-- If an instance of an object of SYNTAX SnmpEngineIdOrNone has +-- a non-zero length, then the object encoding and semantics +-- are defined by the SnmpEngineID textual convention (see RFC +-- 2571 [RFC2571]). +-- +-- If an instance of an object of SYNTAX SnmpEngineIdOrNone +-- contains a zero-length string, then no appropriate +-- SnmpEngineID is associated with the logical entity (i.e., +-- SNMPv3 not supported). + +entPhysicalTable OBJECT-TYPE + SYNTAX SEQUENCE OF EntPhysicalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains one row per physical entity. There is + always at least one row for an 'overall' physical entity." + ::= { entityPhysical 1 } + +entPhysicalEntry OBJECT-TYPE + SYNTAX EntPhysicalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular physical entity. + + Each entry provides objects (entPhysicalDescr, + entPhysicalVendorType, and entPhysicalClass) to help an NMS + identify and characterize the entry, and objects + (entPhysicalContainedIn and entPhysicalParentRelPos) to help + an NMS relate the particular entry to other entries in this + table." + INDEX { entPhysicalIndex } + ::= { entPhysicalTable 1 } + +EntPhysicalEntry ::= SEQUENCE { + entPhysicalIndex PhysicalIndex, + entPhysicalDescr SnmpAdminString, + entPhysicalVendorType AutonomousType, + entPhysicalContainedIn INTEGER, + entPhysicalClass PhysicalClass, + entPhysicalParentRelPos INTEGER, + entPhysicalName SnmpAdminString, + entPhysicalHardwareRev SnmpAdminString, + entPhysicalFirmwareRev SnmpAdminString, + entPhysicalSoftwareRev SnmpAdminString, + entPhysicalSerialNum SnmpAdminString, + entPhysicalMfgName SnmpAdminString, + entPhysicalModelName SnmpAdminString, + entPhysicalAlias SnmpAdminString, + entPhysicalAssetID SnmpAdminString, + entPhysicalIsFRU TruthValue + } + +entPhysicalIndex OBJECT-TYPE + SYNTAX PhysicalIndex +-- Rsyntax INTEGER(1..2147483647) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The index for this entry." + ::= { entPhysicalEntry 1 } + +entPhysicalDescr OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual description of physical entity. This object + should contain a string which identifies the manufacturer's + name for the physical entity, and should be set to a + distinct value for each version or model of the physical + entity. " + ::= { entPhysicalEntry 2 } + +entPhysicalVendorType OBJECT-TYPE + SYNTAX AutonomousType +-- Rsyntax OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the vendor-specific hardware type of the + physical entity. Note that this is different from the + definition of MIB-II's sysObjectID. + + An agent should set this object to a enterprise-specific + registration identifier value indicating the specific + equipment type in detail. The associated instance of + entPhysicalClass is used to indicate the general type of + hardware device. + + If no vendor-specific registration identifier exists for + this physical entity, or the value is unknown by this agent, + then the value { 0 0 } is returned." + ::= { entPhysicalEntry 3 } + +entPhysicalContainedIn OBJECT-TYPE + SYNTAX INTEGER(0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of entPhysicalIndex for the physical entity which + 'contains' this physical entity. A value of zero indicates + this physical entity is not contained in any other physical + entity. Note that the set of 'containment' relationships + define a strict hierarchy; that is, recursion is not + allowed. + + In the event a physical entity is contained by more than one + physical entity (e.g., double-wide modules), this object + should identify the containing entity with the lowest value + of entPhysicalIndex." + ::= { entPhysicalEntry 4 } + +entPhysicalClass OBJECT-TYPE + SYNTAX PhysicalClass +-- Rsyntax INTEGER { +-- other(1), +-- unknown(2), +-- chassis(3), +-- backplane(4), +-- container(5), +-- powerSupply(6), +-- fan(7), +-- sensor(8), +-- module(9), +-- port(10), +-- stack(11) +-- } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the general hardware type of the physical + entity. + + An agent should set this object to the standard enumeration + value which most accurately indicates the general class of + the physical entity, or the primary class if there is more + than one. + + If no appropriate standard registration identifier exists + for this physical entity, then the value 'other(1)' is + returned. If the value is unknown by this agent, then the + value 'unknown(2)' is returned." + ::= { entPhysicalEntry 5 } + +entPhysicalParentRelPos OBJECT-TYPE + SYNTAX INTEGER(-1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the relative position of this 'child' + component among all its 'sibling' components. Sibling + components are defined as entPhysicalEntries which share the + same instance values of each of the entPhysicalContainedIn + and entPhysicalClass objects. + + An NMS can use this object to identify the relative ordering + for all sibling components of a particular parent + (identified by the entPhysicalContainedIn instance in each + sibling entry). + + This value should match any external labeling of the + physical component if possible. For example, for a container + (e.g., card slot) labeled as 'slot #3', + entPhysicalParentRelPos should have the value '3'. Note + that the entPhysicalEntry for the module plugged in slot 3 + should have an entPhysicalParentRelPos value of '1'. + + If the physical position of this component does not match + any external numbering or clearly visible ordering, then + user documentation or other external reference material + should be used to determine the parent-relative position. If + this is not possible, then the the agent should assign a + consistent (but possibly arbitrary) ordering to a given set + of 'sibling' components, perhaps based on internal + representation of the components. + + If the agent cannot determine the parent-relative position + for some reason, or if the associated value of + entPhysicalContainedIn is '0', then the value '-1' is + returned. Otherwise a non-negative integer is returned, + indicating the parent-relative position of this physical + entity. + + Parent-relative ordering normally starts from '1' and + continues to 'N', where 'N' represents the highest + positioned child entity. However, if the physical entities + (e.g., slots) are labeled from a starting position of zero, + then the first sibling should be associated with a + entPhysicalParentRelPos value of '0'. Note that this + ordering may be sparse or dense, depending on agent + implementation. + + The actual values returned are not globally meaningful, as + each 'parent' component may use different numbering + algorithms. The ordering is only meaningful among siblings + of the same parent component. + + The agent should retain parent-relative position values + across reboots, either through algorithmic assignment or use + of non-volatile storage." + ::= { entPhysicalEntry 6 } + +entPhysicalName OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The textual name of the physical entity. The value of this + object should be the name of the component as assigned by + the local device and should be suitable for use in commands + entered at the device's `console'. This might be a text + name, such as `console' or a simple component number (e.g., + port or module number), such as `1', depending on the + physical component naming syntax of the device. + + If there is no local name, or this object is otherwise not + applicable, then this object contains a zero-length string. + + Note that the value of entPhysicalName for two physical + entities will be the same in the event that the console + interface does not distinguish between them, e.g., slot-1 + and the card in slot-1." + ::= { entPhysicalEntry 7 } + +entPhysicalHardwareRev OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The vendor-specific hardware revision string for the + physical entity. The preferred value is the hardware + revision identifier actually printed on the component itself + (if present). + + Note that if revision information is stored internally in a + non-printable (e.g., binary) format, then the agent must + convert such information to a printable format, in an + implementation-specific manner. + + If no specific hardware revision string is associated with + the physical component, or this information is unknown to + the agent, then this object will contain a zero-length + string." + ::= { entPhysicalEntry 8 } + +entPhysicalFirmwareRev OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The vendor-specific firmware revision string for the + physical entity. + + Note that if revision information is stored internally in a + non-printable (e.g., binary) format, then the agent must + convert such information to a printable format, in an + implementation-specific manner. + + If no specific firmware programs are associated with the + physical component, or this information is unknown to the + agent, then this object will contain a zero-length string." + ::= { entPhysicalEntry 9 } + +entPhysicalSoftwareRev OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The vendor-specific software revision string for the + physical entity. + + Note that if revision information is stored internally in a + non-printable (e.g., binary) format, then the agent must + convert such information to a printable format, in an + implementation-specific manner. + + If no specific software programs are associated with the + physical component, or this information is unknown to the + agent, then this object will contain a zero-length string." + ::= { entPhysicalEntry 10 } + +entPhysicalSerialNum OBJECT-TYPE + SYNTAX SnmpAdminString(SIZE(0..32)) +-- Rsyntax OCTET STRING(SIZE(0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The vendor-specific serial number string for the physical + entity. The preferred value is the serial number string + actually printed on the component itself (if present). + + On the first instantiation of an physical entity, the value + of entPhysicalSerialNum associated with that entity is set + to the correct vendor-assigned serial number, if this + information is available to the agent. If a serial number + is unknown or non-existent, the entPhysicalSerialNum will be + set to a zero-length string instead. + + Note that implementations which can correctly identify the + serial numbers of all installed physical entities do not + need to provide write access to the entPhysicalSerialNum + object. Agents which cannot provide non-volatile storage for + the entPhysicalSerialNum strings are not required to + implement write access for this object. + + Not every physical component will have a serial number, or + even need one. Physical entities for which the associated + value of the entPhysicalIsFRU object is equal to 'false(2)' + (e.g., the repeater ports within a repeater module), do not + need their own unique serial number. An agent does not have + to provide write access for such entities, and may return a + zero-length string. + + If write access is implemented for an instance of + entPhysicalSerialNum, and a value is written into the + instance, the agent must retain the supplied value in the + entPhysicalSerialNum instance associated with the same + physical entity for as long as that entity remains + instantiated. This includes instantiations across all re- + initializations/reboots of the network management system, + including those which result in a change of the physical + entity's entPhysicalIndex value." + ::= { entPhysicalEntry 11 } + +entPhysicalMfgName OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the manufacturer of this physical component. + The preferred value is the manufacturer name string actually + printed on the component itself (if present). + Note that comparisons between instances of the + entPhysicalModelName, entPhysicalFirmwareRev, + entPhysicalSoftwareRev, and the entPhysicalSerialNum + objects, are only meaningful amongst entPhysicalEntries with + the same value of entPhysicalMfgName. + + If the manufacturer name string associated with the physical + component is unknown to the agent, then this object will + contain a zero-length string." + ::= { entPhysicalEntry 12 } + +entPhysicalModelName OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The vendor-specific model name identifier string associated + with this physical component. The preferred value is the + customer-visible part number, which may be printed on the + component itself. + + If the model name string associated with the physical + component is unknown to the agent, then this object will + contain a zero-length string." + ::= { entPhysicalEntry 13 } + +entPhysicalAlias OBJECT-TYPE + SYNTAX SnmpAdminString(SIZE(0..32)) +-- Rsyntax OCTET STRING(SIZE(0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is an 'alias' name for the physical entity as + specified by a network manager, and provides a non-volatile + 'handle' for the physical entity. + + On the first instantiation of an physical entity, the value + of entPhysicalAlias associated with that entity is set to + the zero-length string. However, agent may set the value to + a locally unique default value, instead of a zero-length + string. + + If write access is implemented for an instance of + entPhysicalAlias, and a value is written into the instance, + the agent must retain the supplied value in the + entPhysicalAlias instance associated with the same physical + entity for as long as that entity remains instantiated. + This includes instantiations across all re- + initializations/reboots of the network management system, + including those which result in a change of the physical + entity's entPhysicalIndex value." + ::= { entPhysicalEntry 14 } + +entPhysicalAssetID OBJECT-TYPE + SYNTAX SnmpAdminString(SIZE(0..32)) +-- Rsyntax OCTET STRING(SIZE(0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object is a user-assigned asset tracking identifier + for the physical entity as specified by a network manager, + and provides non-volatile storage of this information. + + On the first instantiation of an physical entity, the value + of entPhysicalAssetID associated with that entity is set to + the zero-length string. + + Not every physical component will have a asset tracking + identifier, or even need one. Physical entities for which + the associated value of the entPhysicalIsFRU object is equal + to 'false(2)' (e.g., the repeater ports within a repeater + module), do not need their own unique asset tracking + identifier. An agent does not have to provide write access + for such entities, and may instead return a zero-length + string. + + If write access is implemented for an instance of + entPhysicalAssetID, and a value is written into the + instance, the agent must retain the supplied value in the + entPhysicalAssetID instance associated with the same + physical entity for as long as that entity remains + instantiated. This includes instantiations across all re- + initializations/reboots of the network management system, + including those which result in a change of the physical + entity's entPhysicalIndex value. + + If no asset tracking information is associated with the + physical component, then this object will contain a zero- + length string." + ::= { entPhysicalEntry 15 } + +entPhysicalIsFRU OBJECT-TYPE + SYNTAX TruthValue +-- Rsyntax INTEGER { +-- true(1), +-- false(2) +-- } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates whether or not this physical entity + is considered a 'field replaceable unit' by the vendor. If + this object contains the value 'true(1)' then this + entPhysicalEntry identifies a field replaceable unit. For + all entPhysicalEntries which represent components that are + permanently contained within a field replaceable unit, the + value 'false(2)' should be returned for this object." + ::= { entPhysicalEntry 16 } + +entLogicalTable OBJECT-TYPE + SYNTAX SEQUENCE OF EntLogicalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains one row per logical entity. For agents + which implement more than one naming scope, at least one + entry must exist. Agents which instantiate all MIB objects + within a single naming scope are not required to implement + this table." + ::= { entityLogical 1 } + +entLogicalEntry OBJECT-TYPE + SYNTAX EntLogicalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular logical entity. Entities + may be managed by this agent or other SNMP agents (possibly) + in the same chassis." + INDEX { entLogicalIndex } + ::= { entLogicalTable 1 } + +EntLogicalEntry ::= SEQUENCE { + entLogicalIndex INTEGER, + entLogicalDescr SnmpAdminString, + entLogicalType AutonomousType, + entLogicalCommunity OCTET STRING, + entLogicalTAddress TAddress, + entLogicalTDomain TDomain, + entLogicalContextEngineID SnmpEngineIdOrNone, + entLogicalContextName SnmpAdminString + } + +entLogicalIndex OBJECT-TYPE + SYNTAX INTEGER(1..2147483647) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The value of this object uniquely identifies the logical + entity. The value should be a small positive integer; index + values for different logical entities are are not + necessarily contiguous." + ::= { entLogicalEntry 1 } + +entLogicalDescr OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual description of the logical entity. This object + should contain a string which identifies the manufacturer's + name for the logical entity, and should be set to a distinct + value for each version of the logical entity. " + ::= { entLogicalEntry 2 } + +entLogicalType OBJECT-TYPE + SYNTAX AutonomousType +-- Rsyntax OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the type of logical entity. This will + typically be the OBJECT IDENTIFIER name of the node in the + SMI's naming hierarchy which represents the major MIB + module, or the majority of the MIB modules, supported by the + logical entity. For example: + a logical entity of a regular host/router -> mib-2 + a logical entity of a 802.1d bridge -> dot1dBridge + a logical entity of a 802.3 repeater -> snmpDot3RptrMgmt + If an appropriate node in the SMI's naming hierarchy cannot + be identified, the value 'mib-2' should be used." + ::= { entLogicalEntry 3 } + +entLogicalCommunity OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS deprecated + DESCRIPTION + "An SNMPv1 or SNMPv2C community-string which can be used to + access detailed management information for this logical + entity. The agent should allow read access with this + community string (to an appropriate subset of all managed + objects) and may also return a community string based on the + privileges of the request used to read this object. Note + that an agent may return a community string with read-only + privileges, even if this object is accessed with a read- + write community string. However, the agent must take care + not to return a community string which allows more + privileges than the community string used to access this + object. + + A compliant SNMP agent may wish to conserve naming scopes by + representing multiple logical entities in a single 'default' + naming scope. This is possible when the logical entities + represented by the same value of entLogicalCommunity have no + object instances in common. For example, 'bridge1' and + 'repeater1' may be part of the main naming scope, but at + least one additional community string is needed to represent + 'bridge2' and 'repeater2'. + + Logical entities 'bridge1' and 'repeater1' would be + represented by sysOREntries associated with the 'default' + naming scope. + + For agents not accessible via SNMPv1 or SNMPv2C, the value + of this object is the empty string. This object may also + contain an empty string if a community string has not yet + been assigned by the agent, or no community string with + suitable access rights can be returned for a particular SNMP + request. + + Note that this object is deprecated. Agents which implement + SNMPv3 access should use the entLogicalContextEngineID and + entLogicalContextName objects to identify the context + associated with each logical entity. SNMPv3 agents may + return a zero-length string for this object, or may continue + to return a community string (e.g., tri-lingual agent + support)." + ::= { entLogicalEntry 4 } + +entLogicalTAddress OBJECT-TYPE + SYNTAX TAddress +-- Rsyntax OCTET STRING(SIZE(1..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The transport service address by which the logical entity + receives network management traffic, formatted according to + the corresponding value of entLogicalTDomain. + + For snmpUDPDomain, a TAddress is 6 octets long, the initial + 4 octets containing the IP-address in network-byte order and + the last 2 containing the UDP port in network-byte order. + Consult 'Transport Mappings for Version 2 of the Simple + Network Management Protocol' (RFC 1906 [RFC1906]) for + further information on snmpUDPDomain." + ::= { entLogicalEntry 5 } + +entLogicalTDomain OBJECT-TYPE + SYNTAX TDomain +-- Rsyntax OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the kind of transport service by which the + logical entity receives network management traffic. + Possible values for this object are presently found in the + Transport Mappings for SNMPv2 document (RFC 1906 + [RFC1906])." + ::= { entLogicalEntry 6 } + +entLogicalContextEngineID OBJECT-TYPE + SYNTAX SnmpEngineIdOrNone +-- Rsyntax OCTET STRING(SIZE(0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The authoritative contextEngineID that can be used to send + an SNMP message concerning information held by this logical + entity, to the address specified by the associated + 'entLogicalTAddress/entLogicalTDomain' pair. + + This object, together with the associated + entLogicalContextName object, defines the context associated + with a particular logical entity, and allows access to SNMP + engines identified by a contextEngineId and contextName + pair. + + If no value has been configured by the agent, a zero-length + string is returned, or the agent may choose not to + instantiate this object at all." + ::= { entLogicalEntry 7 } + +entLogicalContextName OBJECT-TYPE + SYNTAX SnmpAdminString +-- Rsyntax OCTET STRING(SIZE(0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The contextName that can be used to send an SNMP message + concerning information held by this logical entity, to the + address specified by the associated + 'entLogicalTAddress/entLogicalTDomain' pair. + + This object, together with the associated + entLogicalContextEngineID object, defines the context + associated with a particular logical entity, and allows + access to SNMP engines identified by a contextEngineId and + contextName pair. + + If no value has been configured by the agent, a zero-length + string is returned, or the agent may choose not to + instantiate this object at all." + ::= { entLogicalEntry 8 } + +entLPMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF EntLPMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains zero or more rows of logical entity to + physical equipment associations. For each logical entity + known by this agent, there are zero or more mappings to the + physical resources which are used to realize that logical + entity. + + An agent should limit the number and nature of entries in + this table such that only meaningful and non-redundant + information is returned. For example, in a system which + contains a single power supply, mappings between logical + entities and the power supply are not useful and should not + be included. + + Also, only the most appropriate physical component which is + closest to the root of a particular containment tree should + be identified in an entLPMapping entry. + + For example, suppose a bridge is realized on a particular + module, and all ports on that module are ports on this + bridge. A mapping between the bridge and the module would be + useful, but additional mappings between the bridge and each + of the ports on that module would be redundant (since the + entPhysicalContainedIn hierarchy can provide the same + information). If, on the other hand, more than one bridge + was utilizing ports on this module, then mappings between + each bridge and the ports it used would be appropriate. + + Also, in the case of a single backplane repeater, a mapping + for the backplane to the single repeater entity is not + necessary." + ::= { entityMapping 1 } + +entLPMappingEntry OBJECT-TYPE + SYNTAX EntLPMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular logical entity to physical + equipment association. Note that the nature of the + association is not specifically identified in this entry. + It is expected that sufficient information exists in the + MIBs used to manage a particular logical entity to infer how + physical component information is utilized." + INDEX { entLogicalIndex, entLPPhysicalIndex } + ::= { entLPMappingTable 1 } + +EntLPMappingEntry ::= SEQUENCE { + entLPPhysicalIndex PhysicalIndex + } + +entLPPhysicalIndex OBJECT-TYPE + SYNTAX PhysicalIndex +-- Rsyntax INTEGER(1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the index value of a + particular entPhysicalEntry associated with the indicated + entLogicalEntity." + ::= { entLPMappingEntry 1 } + +entAliasMappingTable OBJECT-TYPE + SYNTAX SEQUENCE OF EntAliasMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains zero or more rows, representing + mappings of logical entity and physical component to + external MIB identifiers. Each physical port in the system + may be associated with a mapping to an external identifier, + which itself is associated with a particular logical + entity's naming scope. A 'wildcard' mechanism is provided + to indicate that an identifier is associated with more than + one logical entity." + ::= { entityMapping 2 } + +entAliasMappingEntry OBJECT-TYPE + SYNTAX EntAliasMappingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular physical equipment, logical + entity to external identifier binding. Each logical + entity/physical component pair may be associated with one + alias mapping. The logical entity index may also be used as + a 'wildcard' (refer to the entAliasLogicalIndexOrZero object + DESCRIPTION clause for details.) + + Note that only entPhysicalIndex values which represent + physical ports (i.e. associated entPhysicalClass value is + 'port(10)') are permitted to exist in this table." + INDEX { entPhysicalIndex, entAliasLogicalIndexOrZero } + ::= { entAliasMappingTable 1 } + +EntAliasMappingEntry ::= SEQUENCE { + entAliasLogicalIndexOrZero INTEGER, + entAliasMappingIdentifier RowPointer + } + +entAliasLogicalIndexOrZero OBJECT-TYPE + SYNTAX INTEGER(0..2147483647) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The value of this object identifies the logical entity + which defines the naming scope for the associated instance + of the 'entAliasMappingIdentifier' object. + + If this object has a non-zero value, then it identifies the + logical entity named by the same value of entLogicalIndex. + + If this object has a value of zero, then the mapping between + the physical component and the alias identifier for this + entAliasMapping entry is associated with all unspecified + logical entities. That is, a value of zero (the default + mapping) identifies any logical entity which does not have + an explicit entry in this table for a particular + entPhysicalIndex/entAliasMappingIdentifier pair. + + For example, to indicate that a particular interface (e.g., + physical component 33) is identified by the same value of + ifIndex for all logical entities, the following instance + might exist: + + entAliasMappingIdentifier.33.0 = ifIndex.5 + + In the event an entPhysicalEntry is associated differently + for some logical entities, additional entAliasMapping + entries may exist, e.g.: + + entAliasMappingIdentifier.33.0 = ifIndex.6 + entAliasMappingIdentifier.33.4 = ifIndex.1 + entAliasMappingIdentifier.33.5 = ifIndex.1 + entAliasMappingIdentifier.33.10 = ifIndex.12 + + Note that entries with non-zero entAliasLogicalIndexOrZero + index values have precedence over any zero-indexed entry. In + this example, all logical entities except 4, 5, and 10, + associate physical entity 33 with ifIndex.6." + ::= { entAliasMappingEntry 1 } + +entAliasMappingIdentifier OBJECT-TYPE + SYNTAX RowPointer +-- Rsyntax OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies a particular conceptual + row associated with the indicated entPhysicalIndex and + entLogicalIndex pair. + + Since only physical ports are modeled in this table, only + entries which represent interfaces or ports are allowed. If + an ifEntry exists on behalf of a particular physical port, + then this object should identify the associated 'ifEntry'. + For repeater ports, the appropriate row in the + 'rptrPortGroupTable' should be identified instead. + + For example, suppose a physical port was represented by + entPhysicalEntry.3, entLogicalEntry.15 existed for a + repeater, and entLogicalEntry.22 existed for a bridge. Then + there might be two related instances of + entAliasMappingIdentifier: + entAliasMappingIdentifier.3.15 == rptrPortGroupIndex.5.2 + entAliasMappingIdentifier.3.22 == ifIndex.17 + It is possible that other mappings (besides interfaces and + repeater ports) may be defined in the future, as required. + + Bridge ports are identified by examining the Bridge MIB and + appropriate ifEntries associated with each 'dot1dBasePort', + and are thus not represented in this table." + ::= { entAliasMappingEntry 2 } + +entPhysicalContainsTable OBJECT-TYPE + SYNTAX SEQUENCE OF EntPhysicalContainsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table which exposes the container/'containee' + relationships between physical entities. This table provides + all the information found by constructing the virtual + containment tree for a given entPhysicalTable, but in a more + direct format. + + In the event a physical entity is contained by more than one + other physical entity (e.g., double-wide modules), this + table should include these additional mappings, which cannot + be represented in the entPhysicalTable virtual containment + tree." + ::= { entityMapping 3 } + +entPhysicalContainsEntry OBJECT-TYPE + SYNTAX EntPhysicalContainsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A single container/'containee' relationship." + INDEX { entPhysicalIndex, entPhysicalChildIndex } + ::= { entPhysicalContainsTable 1 } + +EntPhysicalContainsEntry ::= SEQUENCE { + entPhysicalChildIndex PhysicalIndex + } + +entPhysicalChildIndex OBJECT-TYPE + SYNTAX PhysicalIndex +-- Rsyntax INTEGER(1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of entPhysicalIndex for the contained physical + entity." + ::= { entPhysicalContainsEntry 1 } + +entLastChangeTime OBJECT-TYPE + SYNTAX TimeStamp +-- Rsyntax TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at the time a conceptual row is + created, modified, or deleted in any of these tables: + - entPhysicalTable + - entLogicalTable + - entLPMappingTable + - entAliasMappingTable + - entPhysicalContainsTable" + ::= { entityGeneral 1 } + +entConfigChange TRAP-TYPE +-- Reverse mappable trap + ENTERPRISE entityMIBTraps +-- Status +-- mandatory + DESCRIPTION + "An entConfigChange notification is generated when the value + of entLastChangeTime changes. It can be utilized by an NMS + to trigger logical/physical entity table maintenance polls. + + An agent should not generate more than one entConfigChange + 'notification-event' in a given time interval (five seconds + is the suggested default). A 'notification-event' is the + transmission of a single trap or inform PDU to a list of + notification destinations. + + If additional configuration changes occur within the + throttling period, then notification-events for these + changes should be suppressed by the agent until the current + throttling period expires. At the end of a throttling + period, one notification-event should be generated if any + configuration changes occurred since the start of the + throttling period. In such a case, another throttling period + is started right away. + + An NMS should periodically check the value of + entLastChangeTime to detect any missed entConfigChange + notification-events, e.g., due to throttling or transmission + loss." + ::= 1 + +entityPhysicalGroup OBJECT IDENTIFIER ::= { entityGroups 1 } +-- OBJECT-GROUP +-- Status +-- mandatory +-- Descr +-- The collection of objects which are used to represent +-- physical system components, for which a single agent +-- provides management information. +-- objects +-- entPhysicalDescr, entPhysicalVendorType, +-- entPhysicalContainedIn, entPhysicalClass, +-- entPhysicalParentRelPos, entPhysicalName + +entityLogicalGroup OBJECT IDENTIFIER ::= { entityGroups 2 } +-- OBJECT-GROUP +-- Status +-- deprecated +-- Descr +-- The collection of objects which are used to represent the +-- list of logical entities for which a single agent provides +-- management information. +-- objects +-- entLogicalDescr, entLogicalType, entLogicalCommunity, +-- entLogicalTAddress, entLogicalTDomain + +entityMappingGroup OBJECT IDENTIFIER ::= { entityGroups 3 } +-- OBJECT-GROUP +-- Status +-- mandatory +-- Descr +-- The collection of objects which are used to represent the +-- associations between multiple logical entities, physical +-- components, interfaces, and port identifiers for which a +-- single agent provides management information. +-- objects +-- entLPPhysicalIndex, entAliasMappingIdentifier, +-- entPhysicalChildIndex + +entityGeneralGroup OBJECT IDENTIFIER ::= { entityGroups 4 } +-- OBJECT-GROUP +-- Status +-- mandatory +-- Descr +-- The collection of objects which are used to represent +-- general entity information for which a single agent provides +-- management information. +-- objects +-- entLastChangeTime + +entityPhysical2Group OBJECT IDENTIFIER ::= { entityGroups 6 } +-- OBJECT-GROUP +-- Status +-- mandatory +-- Descr +-- The collection of objects which are used to represent +-- physical system components, for which a single agent +-- provides management information. This group augments the +-- objects contained in the entityPhysicalGroup. +-- objects +-- entPhysicalHardwareRev, entPhysicalFirmwareRev, +-- entPhysicalSoftwareRev, entPhysicalSerialNum, +-- entPhysicalMfgName, entPhysicalModelName, entPhysicalAlias, +-- entPhysicalAssetID, entPhysicalIsFRU + +entityLogical2Group OBJECT IDENTIFIER ::= { entityGroups 7 } +-- OBJECT-GROUP +-- Status +-- mandatory +-- Descr +-- The collection of objects which are used to represent the +-- list of logical entities for which a single SNMP entity +-- provides management information. +-- objects +-- entLogicalDescr, entLogicalType, entLogicalTAddress, +-- entLogicalTDomain, entLogicalContextEngineID, +-- entLogicalContextName + +entityNotificationsGroup OBJECT IDENTIFIER ::= { entityGroups 5 } +-- NOTIFICATION-GROUP +-- Status +-- mandatory +-- Descr +-- The collection of notifications used to indicate Entity MIB +-- data consistency and general status information. +-- notifications +-- entConfigChange + +entityCompliance OBJECT IDENTIFIER ::= { entityCompliances 1 } +-- MODULE-COMPLIANCE +-- Status +-- deprecated +-- Descr +-- The compliance statement for SNMP entities which implement +-- version 1 of the Entity MIB. +-- Module +-- >>current<< +-- MandGroup +-- entityPhysicalGroup +-- MandGroup +-- entityLogicalGroup +-- MandGroup +-- entityMappingGroup +-- MandGroup +-- entityGeneralGroup +-- MandGroup +-- entityNotificationsGroup + +entity2Compliance OBJECT IDENTIFIER ::= { entityCompliances 2 } +-- MODULE-COMPLIANCE +-- Status +-- mandatory +-- Descr +-- The compliance statement for SNMP entities which implement +-- version 2 of the Entity MIB. +-- Module +-- >>current<< +-- MandGroup +-- entityPhysicalGroup +-- MandGroup +-- entityPhysical2Group +-- MandGroup +-- entityGeneralGroup +-- MandGroup +-- entityNotificationsGroup +-- OptGroup +-- entityLogical2Group +-- OptGroup +-- entityMappingGroup +-- ObjVar +-- entPhysicalSerialNum +-- ObjVar +-- entPhysicalAlias +-- ObjVar +-- entPhysicalAssetID + + +END \ No newline at end of file diff --git a/pandora_console/attachment/mibs/EtherLike-MIB b/pandora_console/attachment/mibs/EtherLike-MIB new file mode 100644 index 0000000000..b3a8810292 --- /dev/null +++ b/pandora_console/attachment/mibs/EtherLike-MIB @@ -0,0 +1,1160 @@ +-- extracted from rfc2665.txt +-- at Mon Nov 15 17:12:07 1999 + + EtherLike-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, + Counter32, mib-2, transmission + FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + ifIndex, InterfaceIndex + FROM IF-MIB; + + etherMIB MODULE-IDENTITY + LAST-UPDATED "9908240400Z" -- August 24, 1999 + ORGANIZATION "IETF Ethernet Interfaces and Hub MIB + Working Group" + CONTACT-INFO + "WG E-mail: hubmib@hprnd.rose.hp.com + To subscribe: hubmib-request@hprnd.rose.hp.com + + Chair: Dan Romascanu + Postal: Lucent Technologies + Atidum Technology Park, Bldg. 3 + Tel Aviv 61131 + Israel + Tel: +972 3 645 8414 + E-mail: dromasca@lucent.com + + Editor: John Flick + Postal: Hewlett-Packard Company + 8000 Foothills Blvd. M/S 5557 + Roseville, CA 95747-5557 + USA + Tel: +1 916 785 4018 + Fax: +1 916 785 1199 + E-mail: johnf@rose.hp.com + + Editor: Jeffrey Johnson + Postal: RedBack Networks + 2570 North First Street, Suite 410 + San Jose, CA, 95131 + USA + Tel: +1 408 571 2699 + Fax: +1 408 571 2698 + E-Mail: jeff@redbacknetworks.com" + + DESCRIPTION "The MIB module to describe generic objects for + Ethernet-like network interfaces. + + The following reference is used throughout this + MIB module: + + [IEEE 802.3 Std] refers to: + IEEE Std 802.3, 1998 Edition: 'Information + technology - Telecommunications and + information exchange between systems - + Local and metropolitan area networks - + Specific requirements - Part 3: Carrier + sense multiple access with collision + detection (CSMA/CD) access method and + physical layer specifications', + September 1998. + + Of particular interest is Clause 30, '10Mb/s, + 100Mb/s and 1000Mb/s Management'." + + REVISION "9908240400Z" -- August 24, 1999 + DESCRIPTION "Updated to include support for 1000 Mb/sec + interfaces and full-duplex interfaces. + This version published as RFC 2665." + + REVISION "9806032150Z" + DESCRIPTION "Updated to include support for 100 Mb/sec + interfaces. + This version published as RFC 2358." + + REVISION "9402030400Z" + DESCRIPTION "Initial version, published as RFC 1650." + + ::= { mib-2 35 } + + + etherMIBObjects OBJECT IDENTIFIER ::= { etherMIB 1 } + + dot3 OBJECT IDENTIFIER ::= { transmission 7 } + + -- the Ethernet-like Statistics group + + dot3StatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Statistics for a collection of ethernet-like + interfaces attached to a particular system. + There will be one row in this table for each + ethernet-like interface in the system." + ::= { dot3 2 } + + dot3StatsEntry OBJECT-TYPE + SYNTAX Dot3StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Statistics for a particular interface to an + ethernet-like medium." + INDEX { dot3StatsIndex } + ::= { dot3StatsTable 1 } + + Dot3StatsEntry ::= + SEQUENCE { + dot3StatsIndex InterfaceIndex, + dot3StatsAlignmentErrors Counter32, + dot3StatsFCSErrors Counter32, + dot3StatsSingleCollisionFrames Counter32, + dot3StatsMultipleCollisionFrames Counter32, + dot3StatsSQETestErrors Counter32, + dot3StatsDeferredTransmissions Counter32, + dot3StatsLateCollisions Counter32, + dot3StatsExcessiveCollisions Counter32, + dot3StatsInternalMacTransmitErrors Counter32, + dot3StatsCarrierSenseErrors Counter32, + dot3StatsFrameTooLongs Counter32, + dot3StatsInternalMacReceiveErrors Counter32, + dot3StatsEtherChipSet OBJECT IDENTIFIER, + dot3StatsSymbolErrors Counter32, + dot3StatsDuplexStatus INTEGER + } + + dot3StatsIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An index value that uniquely identifies an + interface to an ethernet-like medium. The + interface identified by a particular value of + this index is the same interface as identified + by the same value of ifIndex." + REFERENCE "RFC 2233, ifIndex" + ::= { dot3StatsEntry 1 } + + dot3StatsAlignmentErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames received on a particular + interface that are not an integral number of + octets in length and do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the alignmentError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC. + + This counter does not increment for 8-bit wide + group encoding schemes. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.7, + aAlignmentErrors" + ::= { dot3StatsEntry 2 } + + dot3StatsFCSErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames received on a particular + interface that are an integral number of octets + in length but do not pass the FCS check. This + count does not include frames received with + frame-too-long or frame-too-short error. + + The count represented by an instance of this + object is incremented when the frameCheckError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC. + + Note: Coding errors detected by the physical + layer for speeds above 10 Mb/s will cause the + frame to fail the FCS check. + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.6, + aFrameCheckSequenceErrors." + ::= { dot3StatsEntry 3 } + + dot3StatsSingleCollisionFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of successfully transmitted frames on + a particular interface for which transmission + is inhibited by exactly one collision. + + A frame that is counted by an instance of this + object is also counted by the corresponding + instance of either the ifOutUcastPkts, + ifOutMulticastPkts, or ifOutBroadcastPkts, + and is not counted by the corresponding + instance of the dot3StatsMultipleCollisionFrames + object. + + This counter does not increment when the + interface is operating in full-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.3, + aSingleCollisionFrames." + ::= { dot3StatsEntry 4 } + + dot3StatsMultipleCollisionFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of successfully transmitted frames on + a particular interface for which transmission + is inhibited by more than one collision. + + A frame that is counted by an instance of this + object is also counted by the corresponding + instance of either the ifOutUcastPkts, + ifOutMulticastPkts, or ifOutBroadcastPkts, + and is not counted by the corresponding + instance of the dot3StatsSingleCollisionFrames + object. + This counter does not increment when the + interface is operating in full-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.4, + aMultipleCollisionFrames." + ::= { dot3StatsEntry 5 } + + dot3StatsSQETestErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of times that the SQE TEST ERROR + message is generated by the PLS sublayer for a + particular interface. The SQE TEST ERROR + is set in accordance with the rules for + verification of the SQE detection mechanism in + the PLS Carrier Sense Function as described in + IEEE Std. 802.3, 1998 Edition, section 7.2.4.6. + + This counter does not increment on interfaces + operating at speeds greater than 10 Mb/s, or on + interfaces operating in full-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 7.2.4.6, also 30.3.2.1.4, + aSQETestErrors." + ::= { dot3StatsEntry 6 } + + dot3StatsDeferredTransmissions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames for which the first + transmission attempt on a particular interface + is delayed because the medium is busy. + The count represented by an instance of this + object does not include frames involved in + collisions. + + This counter does not increment when the + interface is operating in full-duplex mode. + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.9, + aFramesWithDeferredXmissions." + ::= { dot3StatsEntry 7 } + + dot3StatsLateCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of times that a collision is + detected on a particular interface later than + one slotTime into the transmission of a packet. + + A (late) collision included in a count + represented by an instance of this object is + also considered as a (generic) collision for + purposes of other collision-related + statistics. + + This counter does not increment when the + interface is operating in full-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.10, + aLateCollisions." + ::= { dot3StatsEntry 8 } + + dot3StatsExcessiveCollisions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames for which transmission on a + particular interface fails due to excessive + collisions. + This counter does not increment when the + interface is operating in full-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.11, + aFramesAbortedDueToXSColls." + ::= { dot3StatsEntry 9 } + + dot3StatsInternalMacTransmitErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames for which transmission on a + particular interface fails due to an internal + MAC sublayer transmit error. A frame is only + counted by an instance of this object if it is + not counted by the corresponding instance of + either the dot3StatsLateCollisions object, the + dot3StatsExcessiveCollisions object, or the + dot3StatsCarrierSenseErrors object. + + The precise meaning of the count represented by + an instance of this object is implementation- + specific. In particular, an instance of this + object may represent a count of transmission + errors on a particular interface that are not + otherwise counted. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.12, + aFramesLostDueToIntMACXmitError." + ::= { dot3StatsEntry 10 } + + dot3StatsCarrierSenseErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of times that the carrier sense + condition was lost or never asserted when + attempting to transmit a frame on a particular + interface. + + The count represented by an instance of this + object is incremented at most once per + transmission attempt, even if the carrier sense + condition fluctuates during a transmission + attempt. + + This counter does not increment when the + interface is operating in full-duplex mode. + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.13, + aCarrierSenseErrors." + ::= { dot3StatsEntry 11 } + + -- { dot3StatsEntry 12 } is not assigned + + dot3StatsFrameTooLongs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames received on a particular + interface that exceed the maximum permitted + frame size. + + The count represented by an instance of this + object is incremented when the frameTooLong + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.25, + aFrameTooLongErrors." + ::= { dot3StatsEntry 13 } + + -- { dot3StatsEntry 14 } is not assigned + + -- { dot3StatsEntry 15 } is not assigned + + dot3StatsInternalMacReceiveErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of frames for which reception on a + particular interface fails due to an internal + MAC sublayer receive error. A frame is only + counted by an instance of this object if it is + not counted by the corresponding instance of + either the dot3StatsFrameTooLongs object, the + dot3StatsAlignmentErrors object, or the + dot3StatsFCSErrors object. + + The precise meaning of the count represented by + an instance of this object is implementation- + specific. In particular, an instance of this + object may represent a count of receive errors + on a particular interface that are not + otherwise counted. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.15, + aFramesLostDueToIntMACRcvError." + ::= { dot3StatsEntry 16 } + + dot3StatsEtherChipSet OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "******** THIS OBJECT IS DEPRECATED ******** + + This object contains an OBJECT IDENTIFIER + which identifies the chipset used to + realize the interface. Ethernet-like + interfaces are typically built out of + several different chips. The MIB implementor + is presented with a decision of which chip + to identify via this object. The implementor + should identify the chip which is usually + called the Medium Access Control chip. + If no such chip is easily identifiable, + the implementor should identify the chip + which actually gathers the transmit + and receive statistics and error + indications. This would allow a + manager station to correlate the + statistics and the chip generating + them, giving it the ability to take + into account any known anomalies + in the chip." + ::= { dot3StatsEntry 17 } + + dot3StatsSymbolErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "For an interface operating at 100 Mb/s, the + number of times there was an invalid data symbol + when a valid carrier was present. + + For an interface operating in half-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle (a carrier event) for a period + of time equal to or greater than slotTime, and + during which there was at least one occurrence + of an event that causes the PHY to indicate + 'Data reception error' or 'carrier extend error' + on the GMII. + + For an interface operating in full-duplex mode + at 1000 Mb/s, the number of times the receiving + media is non-idle a carrier event) for a period + of time equal to or greater than minFrameSize, + and during which there was at least one + occurrence of an event that causes the PHY to + indicate 'Data reception error' on the GMII. + + The count represented by an instance of this + object is incremented at most once per carrier + event, even if multiple symbol errors occur + during the carrier event. This count does + not increment if a collision is present. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.2.1.5, + aSymbolErrorDuringCarrier." + ::= { dot3StatsEntry 18 } + + dot3StatsDuplexStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + halfDuplex(2), + fullDuplex(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The current mode of operation of the MAC + entity. 'unknown' indicates that the current + duplex mode could not be determined. + Management control of the duplex mode is + accomplished through the MAU MIB. When + an interface does not support autonegotiation, + or when autonegotiation is not enabled, the + duplex mode is controlled using + ifMauDefaultType. When autonegotiation is + supported and enabled, duplex mode is controlled + using ifMauAutoNegAdvertisedBits. In either + case, the currently operating duplex mode is + reflected both in this object and in ifMauType. + + Note that this object provides redundant + information with ifMauType. Normally, redundant + objects are discouraged. However, in this + instance, it allows a management application to + determine the duplex status of an interface + without having to know every possible value of + ifMauType. This was felt to be sufficiently + valuable to justify the redundancy." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.32, + aDuplexStatus." + ::= { dot3StatsEntry 19 } + + -- the Ethernet-like Collision Statistics group + + -- Implementation of this group is optional; it is appropriate + -- for all systems which have the necessary metering + + dot3CollTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3CollEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A collection of collision histograms for a + particular set of interfaces." + REFERENCE "[IEEE 802.3 Std.], 30.3.1.1.30, + aCollisionFrames." + ::= { dot3 5 } + + dot3CollEntry OBJECT-TYPE + SYNTAX Dot3CollEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A cell in the histogram of per-frame + collisions for a particular interface. An + instance of this object represents the + frequency of individual MAC frames for which + the transmission (successful or otherwise) on a + particular interface is accompanied by a + particular number of media collisions." + INDEX { ifIndex, dot3CollCount } + ::= { dot3CollTable 1 } + + Dot3CollEntry ::= + SEQUENCE { + dot3CollCount INTEGER, + dot3CollFrequencies Counter32 + } + + -- { dot3CollEntry 1 } is no longer in use + + dot3CollCount OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The number of per-frame media collisions for + which a particular collision histogram cell + represents the frequency on a particular + interface." + ::= { dot3CollEntry 2 } + + dot3CollFrequencies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of individual MAC frames for which the + transmission (successful or otherwise) on a + particular interface occurs after the + frame has experienced exactly the number + of collisions in the associated + dot3CollCount object. + + For example, a frame which is transmitted + on interface 77 after experiencing + exactly 4 collisions would be indicated + by incrementing only dot3CollFrequencies.77.4. + No other instance of dot3CollFrequencies would + be incremented in this example. + + This counter does not increment when the + interface is operating in full-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + ::= { dot3CollEntry 3 } + + dot3ControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3ControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table of descriptive and status information + about the MAC Control sublayer on the + ethernet-like interfaces attached to a + particular system. There will be one row in + this table for each ethernet-like interface in + the system which implements the MAC Control + sublayer. If some, but not all, of the + ethernet-like interfaces in the system implement + the MAC Control sublayer, there will be fewer + rows in this table than in the dot3StatsTable." + ::= { dot3 9 } + + dot3ControlEntry OBJECT-TYPE + SYNTAX Dot3ControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in the table, containing information + about the MAC Control sublayer on a single + ethernet-like interface." + INDEX { dot3StatsIndex } + ::= { dot3ControlTable 1 } + + Dot3ControlEntry ::= + SEQUENCE { + dot3ControlFunctionsSupported BITS, + dot3ControlInUnknownOpcodes Counter32 + } + + dot3ControlFunctionsSupported OBJECT-TYPE + SYNTAX BITS { + pause(0) -- 802.3x flow control + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A list of the possible MAC Control functions + implemented for this interface." + REFERENCE "[IEEE 802.3 Std.], 30.3.3.2, + aMACControlFunctionsSupported." + ::= { dot3ControlEntry 1 } + + dot3ControlInUnknownOpcodes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of MAC Control frames received on this + interface that contain an opcode that is not + supported by this device. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.3.5, + aUnsupportedOpcodesReceived" + ::= { dot3ControlEntry 2 } + + dot3PauseTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3PauseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table of descriptive and status information + about the MAC Control PAUSE function on the + ethernet-like interfaces attached to a + particular system. There will be one row in + this table for each ethernet-like interface in + the system which supports the MAC Control PAUSE + function (i.e., the 'pause' bit in the + corresponding instance of + dot3ControlFunctionsSupported is set). If some, + but not all, of the ethernet-like interfaces in + the system implement the MAC Control PAUSE + function (for example, if some interfaces only + support half-duplex), there will be fewer rows + in this table than in the dot3StatsTable." + ::= { dot3 10 } + + dot3PauseEntry OBJECT-TYPE + SYNTAX Dot3PauseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in the table, containing information + about the MAC Control PAUSE function on a single + ethernet-like interface." + INDEX { dot3StatsIndex } + ::= { dot3PauseTable 1 } + + Dot3PauseEntry ::= + SEQUENCE { + dot3PauseAdminMode INTEGER, + dot3PauseOperMode INTEGER, + dot3InPauseFrames Counter32, + dot3OutPauseFrames Counter32 + + } + + dot3PauseAdminMode OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabledXmit(2), + enabledRcv(3), + enabledXmitAndRcv(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object is used to configure the default + administrative PAUSE mode for this interface. + + This object represents the + administratively-configured PAUSE mode for this + interface. If auto-negotiation is not enabled + or is not implemented for the active MAU + attached to this interface, the value of this + object determines the operational PAUSE mode + of the interface whenever it is operating in + full-duplex mode. In this case, a set to this + object will force the interface into the + specified mode. + + If auto-negotiation is implemented and enabled + for the MAU attached to this interface, the + PAUSE mode for this interface is determined by + auto-negotiation, and the value of this object + denotes the mode to which the interface will + automatically revert if/when auto-negotiation is + later disabled. Note that when auto-negotiation + is running, administrative control of the PAUSE + mode may be accomplished using the + ifMauAutoNegCapAdvertisedBits object in the + MAU-MIB. + + Note that the value of this object is ignored + when the interface is not operating in + full-duplex mode. + + An attempt to set this object to + 'enabledXmit(2)' or 'enabledRcv(3)' will fail + on interfaces that do not support operation + at greater than 100 Mb/s." + ::= { dot3PauseEntry 1 } + + dot3PauseOperMode OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabledXmit(2), + enabledRcv(3), + enabledXmitAndRcv(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object reflects the PAUSE mode currently + in use on this interface, as determined by + either (1) the result of the auto-negotiation + function or (2) if auto-negotiation is not + enabled or is not implemented for the active MAU + attached to this interface, by the value of + dot3PauseAdminMode. Interfaces operating at + 100 Mb/s or less will never return + 'enabledXmit(2)' or 'enabledRcv(3)'. Interfaces + operating in half-duplex mode will always return + 'disabled(1)'. Interfaces on which + auto-negotiation is enabled but not yet + completed should return the value + 'disabled(1)'." + ::= { dot3PauseEntry 2 } + + dot3InPauseFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of MAC Control frames received on this + interface with an opcode indicating the PAUSE + operation. + + This counter does not increment when the + interface is operating in half-duplex mode. + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.4.3, + aPAUSEMACCtrlFramesReceived." + ::= { dot3PauseEntry 3 } + + dot3OutPauseFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A count of MAC Control frames transmitted on + this interface with an opcode indicating the + PAUSE operation. + + This counter does not increment when the + interface is operating in half-duplex mode. + + Discontinuities in the value of this counter can + occur at re-initialization of the management + system, and at other times as indicated by the + value of ifCounterDiscontinuityTime." + REFERENCE "[IEEE 802.3 Std.], 30.3.4.2, + aPAUSEMACCtrlFramesTransmitted." + ::= { dot3PauseEntry 4 } + + -- 802.3 Tests + + dot3Tests OBJECT IDENTIFIER ::= { dot3 6 } + + dot3Errors OBJECT IDENTIFIER ::= { dot3 7 } + + -- TDR Test + + dot3TestTdr OBJECT-IDENTITY + STATUS current + DESCRIPTION "The Time-Domain Reflectometry (TDR) test is + specific to ethernet-like interfaces of type + 10Base5 and 10Base2. The TDR value may be + useful in determining the approximate distance + to a cable fault. It is advisable to repeat + this test to check for a consistent resulting + TDR value, to verify that there is a fault. + + A TDR test returns as its result the time + interval, measured in 10 MHz ticks or 100 nsec + units, between the start of TDR test + transmission and the subsequent detection of a + collision or deassertion of carrier. On + successful completion of a TDR test, the result + is stored as the value of an appropriate + instance of an appropriate vendor specific MIB + object, and the OBJECT IDENTIFIER of that + instance is stored in the appropriate instance + of the appropriate test result code object + (thereby indicating where the result has been + stored)." + ::= { dot3Tests 1 } + + -- Loopback Test + dot3TestLoopBack OBJECT-IDENTITY + STATUS current + DESCRIPTION "This test configures the MAC chip and executes + an internal loopback test of memory, data paths, + and the MAC chip logic. This loopback test can + only be executed if the interface is offline. + Once the test has completed, the MAC chip should + be reinitialized for network operation, but it + should remain offline. + + If an error occurs during a test, the + appropriate test result object will be set + to indicate a failure. The two OBJECT + IDENTIFIER values dot3ErrorInitError and + dot3ErrorLoopbackError may be used to provided + more information as values for an appropriate + test result code object." + ::= { dot3Tests 2 } + + dot3ErrorInitError OBJECT-IDENTITY + STATUS current + DESCRIPTION "Couldn't initialize MAC chip for test." + ::= { dot3Errors 1 } + + dot3ErrorLoopbackError OBJECT-IDENTITY + STATUS current + DESCRIPTION "Expected data not received (or not received + correctly) in loopback test." + ::= { dot3Errors 2 } + + -- { dot3 8 }, the dot3ChipSets tree, is defined in [28] + + -- conformance information + + etherConformance OBJECT IDENTIFIER ::= { etherMIB 2 } + + etherGroups OBJECT IDENTIFIER ::= { etherConformance 1 } + etherCompliances OBJECT IDENTIFIER ::= { etherConformance 2 } + + -- compliance statements + + etherCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "******** THIS COMPLIANCE IS DEPRECATED ******** + + The compliance statement for managed network + entities which have ethernet-like network + interfaces. + This compliance is deprecated and replaced by + dot3Compliance." + + MODULE -- this module + MANDATORY-GROUPS { etherStatsGroup } + + GROUP etherCollisionTableGroup + DESCRIPTION "This group is optional. It is appropriate + for all systems which have the necessary + metering. Implementation in such systems is + highly recommended." + ::= { etherCompliances 1 } + + ether100MbsCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION "******** THIS COMPLIANCE IS DEPRECATED ******** + + The compliance statement for managed network + entities which have 100 Mb/sec ethernet-like + network interfaces. + + This compliance is deprecated and replaced by + dot3Compliance." + + MODULE -- this module + MANDATORY-GROUPS { etherStats100MbsGroup } + + GROUP etherCollisionTableGroup + DESCRIPTION "This group is optional. It is appropriate + for all systems which have the necessary + metering. Implementation in such systems is + highly recommended." + ::= { etherCompliances 2 } + + dot3Compliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION "The compliance statement for managed network + entities which have ethernet-like network + interfaces." + + MODULE -- this module + MANDATORY-GROUPS { etherStatsBaseGroup } + + GROUP etherDuplexGroup + DESCRIPTION "This group is mandatory for all + ethernet-like network interfaces which are + capable of operating in full-duplex mode. + It is highly recommended for all + ethernet-like network interfaces." + + GROUP etherStatsLowSpeedGroup + DESCRIPTION "This group is mandatory for all + ethernet-like network interfaces which are + capable of operating at 10 Mb/s or slower in + half-duplex mode." + + GROUP etherStatsHighSpeedGroup + DESCRIPTION "This group is mandatory for all + ethernet-like network interfaces which are + capable of operating at 100 Mb/s or faster." + + GROUP etherControlGroup + DESCRIPTION "This group is mandatory for all + ethernet-like network interfaces that + support the MAC Control sublayer." + + GROUP etherControlPauseGroup + DESCRIPTION "This group is mandatory for all + ethernet-like network interfaces that + support the MAC Control PAUSE function." + + GROUP etherCollisionTableGroup + DESCRIPTION "This group is optional. It is appropriate + for all ethernet-like network interfaces + which are capable of operating in + half-duplex mode and have the necessary + metering. Implementation in systems with + such interfaces is highly recommended." + + ::= { etherCompliances 3 } + + -- units of conformance + + etherStatsGroup OBJECT-GROUP + OBJECTS { dot3StatsIndex, + dot3StatsAlignmentErrors, + dot3StatsFCSErrors, + dot3StatsSingleCollisionFrames, + dot3StatsMultipleCollisionFrames, + dot3StatsSQETestErrors, + dot3StatsDeferredTransmissions, + dot3StatsLateCollisions, + dot3StatsExcessiveCollisions, + dot3StatsInternalMacTransmitErrors, + dot3StatsCarrierSenseErrors, + dot3StatsFrameTooLongs, + dot3StatsInternalMacReceiveErrors, + dot3StatsEtherChipSet + } + STATUS deprecated + DESCRIPTION "********* THIS GROUP IS DEPRECATED ********** + + A collection of objects providing information + applicable to all ethernet-like network + interfaces. + + This object group has been deprecated and + replaced by etherStatsBaseGroup and + etherStatsLowSpeedGroup." + ::= { etherGroups 1 } + + etherCollisionTableGroup OBJECT-GROUP + OBJECTS { dot3CollFrequencies + } + STATUS current + DESCRIPTION "A collection of objects providing a histogram + of packets successfully transmitted after + experiencing exactly N collisions." + ::= { etherGroups 2 } + + etherStats100MbsGroup OBJECT-GROUP + OBJECTS { dot3StatsIndex, + dot3StatsAlignmentErrors, + dot3StatsFCSErrors, + dot3StatsSingleCollisionFrames, + dot3StatsMultipleCollisionFrames, + dot3StatsDeferredTransmissions, + dot3StatsLateCollisions, + dot3StatsExcessiveCollisions, + dot3StatsInternalMacTransmitErrors, + dot3StatsCarrierSenseErrors, + dot3StatsFrameTooLongs, + dot3StatsInternalMacReceiveErrors, + dot3StatsEtherChipSet, + dot3StatsSymbolErrors + } + STATUS deprecated + DESCRIPTION "********* THIS GROUP IS DEPRECATED ********** + + A collection of objects providing information + applicable to 100 Mb/sec ethernet-like network + interfaces. + + This object group has been deprecated and + replaced by etherStatsBaseGroup and + etherStatsHighSpeedGroup." + ::= { etherGroups 3 } + + etherStatsBaseGroup OBJECT-GROUP + OBJECTS { dot3StatsIndex, + dot3StatsAlignmentErrors, + dot3StatsFCSErrors, + dot3StatsSingleCollisionFrames, + dot3StatsMultipleCollisionFrames, + dot3StatsDeferredTransmissions, + dot3StatsLateCollisions, + dot3StatsExcessiveCollisions, + dot3StatsInternalMacTransmitErrors, + dot3StatsCarrierSenseErrors, + dot3StatsFrameTooLongs, + dot3StatsInternalMacReceiveErrors + } + STATUS current + DESCRIPTION "A collection of objects providing information + applicable to all ethernet-like network + interfaces." + ::= { etherGroups 4 } + + etherStatsLowSpeedGroup OBJECT-GROUP + OBJECTS { dot3StatsSQETestErrors } + STATUS current + DESCRIPTION "A collection of objects providing information + applicable to ethernet-like network interfaces + capable of operating at 10 Mb/s or slower in + half-duplex mode." + + ::= { etherGroups 5 } + + etherStatsHighSpeedGroup OBJECT-GROUP + OBJECTS { dot3StatsSymbolErrors } + STATUS current + DESCRIPTION "A collection of objects providing information + applicable to ethernet-like network interfaces + capable of operating at 100 Mb/s or faster." + ::= { etherGroups 6 } + + etherDuplexGroup OBJECT-GROUP + OBJECTS { dot3StatsDuplexStatus } + STATUS current + DESCRIPTION "A collection of objects providing information + about the duplex mode of an ethernet-like + network interface." + ::= { etherGroups 7 } + + etherControlGroup OBJECT-GROUP + OBJECTS { dot3ControlFunctionsSupported, + dot3ControlInUnknownOpcodes + } + STATUS current + DESCRIPTION "A collection of objects providing information + about the MAC Control sublayer on ethernet-like + network interfaces." + ::= { etherGroups 8 } + + etherControlPauseGroup OBJECT-GROUP + OBJECTS { dot3PauseAdminMode, + dot3PauseOperMode, + dot3InPauseFrames, + dot3OutPauseFrames + } + STATUS current + DESCRIPTION "A collection of objects providing information + about and control of the MAC Control PAUSE + function on ethernet-like network interfaces." + ::= { etherGroups 9 } + + END + +-- +-- Copyright (C) The Internet Society (1999). All Rights Reserved. +-- +-- This document and translations of it may be copied and furnished to +-- others, and derivative works that comment on or otherwise explain it +-- or assist in its implementation may be prepared, copied, published +-- and distributed, in whole or in part, without restriction of any +-- kind, provided that the above copyright notice and this paragraph are +-- included on all such copies and derivative works. However, this +-- document itself may not be modified in any way, such as by removing +-- the copyright notice or references to the Internet Society or other +-- Internet organizations, except as needed for the purpose of +-- developing Internet standards in which case the procedures for +-- copyrights defined in the Internet Standards process must be +-- followed, or as required to translate it into languages other than +-- English. +-- +-- The limited permissions granted above are perpetual and will not be +-- revoked by the Internet Society or its successors or assigns. +-- +-- This document and the information contained herein is provided on an +-- "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING +-- TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING +-- BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION +-- HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF +-- MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. +-- + diff --git a/pandora_console/attachment/mibs/FDDI-SMT73-MIB b/pandora_console/attachment/mibs/FDDI-SMT73-MIB new file mode 100644 index 0000000000..d300ada17c --- /dev/null +++ b/pandora_console/attachment/mibs/FDDI-SMT73-MIB @@ -0,0 +1,2125 @@ +-- Changes to rfc1512 (FDDI 7.3 SMT MIB): +-- Added the IMPORT for transmission. +-- dperkins@scruznet.com + +FDDI-SMT73-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + transmission + FROM RFC1213-MIB; + + -- This MIB module uses the extended OBJECT-TYPE macro as + -- defined in [7]. + + -- this is the FDDI MIB module + + fddi OBJECT IDENTIFIER ::= { transmission 15 } + fddimib OBJECT IDENTIFIER ::= { fddi 73 } + + -- textual conventions + + FddiTimeNano ::= INTEGER (0..2147483647) + -- This data type specifies 1 nanosecond units as + -- an integer value. + -- + -- NOTE: The encoding is normal integer representation, not + -- two's complement. Since this type is used for variables + -- which are encoded as TimerTwosComplement in the ANSI + -- specification, two operations need to be performed on such + -- variables to convert from ANSI form to SNMP form: + -- + -- 1) Convert from two's complement to normal integer + -- representation + -- 2) Multiply by 80 to convert from 80 nsec to 1 nsec units + -- + -- No resolution is lost. Moreover, the objects for which + -- this data type is used effectively do not lose any range + -- due to the lower maximum value since they do not require + -- the full range. + -- + -- Example: If fddimibMACTReq had a value of 8 ms, it would + -- be stored in ANSI TimerTwosComplement format as 0xFFFE7960 + -- [8 ms is 100000 in 80 nsec units, which is then converted + -- to two's complement] but be reported as 8000000 in SNMP + -- since it is encoded here as FddiTimeNano. + + + FddiTimeMilli ::= INTEGER (0..2147483647) + -- This data type is used for some FDDI timers. It specifies + -- time in 1 millisecond units, in normal integer + -- representation. + + FddiResourceId ::= INTEGER (0..65535) + -- This data type is used to refer to an instance of a MAC, + -- PORT, or PATH Resource ID. Indexing begins + -- at 1. Zero is used to indicate the absence of a resource. + + FddiSMTStationIdType ::= OCTET STRING (SIZE (8)) + -- The unique identifier for the FDDI station. This is a + -- string of 8 octets, represented as X' yy yy xx xx xx xx + -- xx xx' with the low order 6 octet (xx) from a unique IEEE + -- assigned address. The high order two bits of the IEEE + -- address, the group address bit and the administration bit + -- (Universal/Local) bit should both be zero. The first two + -- octets, the yy octets, are implementor-defined. + -- + -- The representation of the address portion of the station id + -- is in the IEEE (ANSI/IEEE P802.1A) canonical notation for + -- 48 bit addresses. The canonical form is a 6-octet string + -- where the first octet contains the first 8 bits of the + -- address, with the I/G(Individual/Group) address bit as the + -- least significant bit and the U/L (Universal/Local) bit + -- as the next more significant bit, and so on. Note that + -- addresses in the ANSI FDDI standard SMT frames are + -- represented in FDDI MAC order. + + FddiMACLongAddressType ::= OCTET STRING (SIZE (6)) + -- The representation of long MAC addresses as management + -- values is in the IEEE (ANSI/IEEE P802.1A) canonical + -- notation for 48 bit addresses. The canonical form is a + -- 6-octet string where the first octet contains the first 8 + -- bits of the address, with the I/G (Individual/Group) + -- address bit as the least significant bit and the U/L + -- (Universal/Local) bit as the next more significant bit, + -- and so on. Note that the addresses in the SMT frames are + -- represented in FDDI MAC order. + + -- groups in the FDDI MIB module + + fddimibSMT OBJECT IDENTIFIER ::= { fddimib 1 } + + fddimibMAC OBJECT IDENTIFIER ::= { fddimib 2 } + + fddimibMACCounters OBJECT IDENTIFIER ::= { fddimib 3 } + + fddimibPATH OBJECT IDENTIFIER ::= { fddimib 4 } + + fddimibPORT OBJECT IDENTIFIER ::= { fddimib 5 } + + -- the SMT group + -- Implementation of the SMT group is mandatory for all + -- systems which implement manageable FDDI subsystems. + + fddimibSMTNumber OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of SMT implementations (regardless of + their current state) on this network management + application entity. The value for this variable + must remain constant at least from one re- + initialization of the entity's network management + system to the next re-initialization." + ::= { fddimibSMT 1 } + + -- the SMT table + + fddimibSMTTable OBJECT-TYPE + SYNTAX SEQUENCE OF FddimibSMTEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of SMT entries. The number of entries + shall not exceed the value of fddimibSMTNumber." + ::= { fddimibSMT 2 } + + fddimibSMTEntry OBJECT-TYPE + SYNTAX FddimibSMTEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An SMT entry containing information common to a + given SMT." + INDEX { fddimibSMTIndex } + ::= { fddimibSMTTable 1 } + + FddimibSMTEntry ::= + SEQUENCE { + fddimibSMTIndex + INTEGER, + fddimibSMTStationId + FddiSMTStationIdType, + fddimibSMTOpVersionId + INTEGER, + fddimibSMTHiVersionId + INTEGER, + fddimibSMTLoVersionId + INTEGER, + fddimibSMTUserData + OCTET STRING, + fddimibSMTMIBVersionId + INTEGER, + fddimibSMTMACCts + INTEGER, + fddimibSMTNonMasterCts + INTEGER, + fddimibSMTMasterCts + INTEGER, + fddimibSMTAvailablePaths + INTEGER, + fddimibSMTConfigCapabilities + INTEGER, + fddimibSMTConfigPolicy + INTEGER, + fddimibSMTConnectionPolicy + INTEGER, + fddimibSMTTNotify + INTEGER, + fddimibSMTStatRptPolicy + INTEGER, + fddimibSMTTraceMaxExpiration + FddiTimeMilli, + fddimibSMTBypassPresent + INTEGER, + fddimibSMTECMState + INTEGER, + fddimibSMTCFState + INTEGER, + fddimibSMTRemoteDisconnectFlag + INTEGER, + fddimibSMTStationStatus + INTEGER, + fddimibSMTPeerWrapFlag + INTEGER, + fddimibSMTTimeStamp + FddiTimeMilli, + fddimibSMTTransitionTimeStamp + FddiTimeMilli, + fddimibSMTStationAction + INTEGER + } + + fddimibSMTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each SMT. The value for each + SMT must remain constant at least from one re- + initialization of the entity's network management + system to the next re-initialization." + ::= { fddimibSMTEntry 1 } + + fddimibSMTStationId OBJECT-TYPE + SYNTAX FddiSMTStationIdType -- OCTET STRING (SIZE (8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Used to uniquely identify an FDDI station." + REFERENCE + "ANSI { fddiSMT 11 }" + ::= { fddimibSMTEntry 2 } + + fddimibSMTOpVersionId OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version that this station is using for its + operation (refer to ANSI 7.1.2.2). The value of + this variable is 2 for this SMT revision." + REFERENCE + "ANSI { fddiSMT 13 }" + ::= { fddimibSMTEntry 3 } + + fddimibSMTHiVersionId OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The highest version of SMT that this station + supports (refer to ANSI 7.1.2.2)." + REFERENCE + "ANSI { fddiSMT 14 }" + ::= { fddimibSMTEntry 4 } + + + fddimibSMTLoVersionId OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The lowest version of SMT that this station + supports (refer to ANSI 7.1.2.2)." + REFERENCE + "ANSI { fddiSMT 15 }" + ::= { fddimibSMTEntry 5 } + + fddimibSMTUserData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable contains 32 octets of user defined + information. The information shall be an ASCII + string." + REFERENCE + "ANSI { fddiSMT 17 }" + ::= { fddimibSMTEntry 6 } + + fddimibSMTMIBVersionId OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version of the FDDI MIB of this station. The + value of this variable is 1 for this SMT + revision." + REFERENCE + "ANSI { fddiSMT 18 }" + ::= { fddimibSMTEntry 7 } + + fddimibSMTMACCts OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of MACs in this station or + concentrator." + REFERENCE + "ANSI { fddiSMT 21 }" + ::= { fddimibSMTEntry 8 } + + fddimibSMTNonMasterCts OBJECT-TYPE + SYNTAX INTEGER (0..2) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this variable is the number of A, B, + and S ports in this station or concentrator." + REFERENCE + "ANSI { fddiSMT 22 }" + ::= { fddimibSMTEntry 9 } + + fddimibSMTMasterCts OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of M Ports in a node. If the node is + not a concentrator, the value of the variable is + zero." + REFERENCE + "ANSI { fddiSMT 23 }" + ::= { fddimibSMTEntry 10 } + + fddimibSMTAvailablePaths OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value that indicates the PATH types available + in the station. + + The value is a sum. This value initially takes + the value zero, then for each type of PATH that + this node has available, 2 raised to a power is + added to the sum. The powers are according to the + following table: + + Path Power + Primary 0 + Secondary 1 + Local 2 + + For example, a station having Primary and Local + PATHs available would have a value of 5 (2**0 + + 2**2)." + REFERENCE + "ANSI { fddiSMT 24 }" + ::= { fddimibSMTEntry 11 } + + fddimibSMTConfigCapabilities OBJECT-TYPE + SYNTAX INTEGER (0..3) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value that indicates the configuration + capabilities of a node. The 'Hold Available' bit + indicates the support of the optional Hold + Function, which is controlled by + fddiSMTConfigPolicy. The 'CF-Wrap-AB' bit + indicates that the station has the capability of + performing a wrap_ab (refer to ANSI SMT 9.7.2.2). + + The value is a sum. This value initially takes + the value zero, then for each of the configuration + policies currently enforced on the node, 2 raised + to a power is added to the sum. The powers are + according to the following table: + + Policy Power + holdAvailable 0 + CF-Wrap-AB 1 " + REFERENCE + "ANSI { fddiSMT 25 }" + ::= { fddimibSMTEntry 12 } + + fddimibSMTConfigPolicy OBJECT-TYPE + SYNTAX INTEGER (0..1) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A value that indicates the configuration policies + currently desired in a node. 'Hold' is one of the + terms used for the Hold Flag, an optional ECM flag + used to enable the optional Hold policy. + + The value is a sum. This value initially takes + the value zero, then for each of the configuration + policies currently enforced on the node, 2 raised + to a power is added to the sum. The powers are + according to the following table: + + Policy Power + configurationhold 0 " + REFERENCE + "ANSI { fddiSMT 26 }" + ::= { fddimibSMTEntry 13 } + + fddimibSMTConnectionPolicy OBJECT-TYPE + SYNTAX INTEGER (32768..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A value representing the connection policies in + effect in a node. A station sets the corresponding + bit for each of the connection types that it + rejects. The letter designations, X and Y, in the + 'rejectX-Y' names have the following significance: + X represents the PC-Type of the local PORT and Y + represents the PC_Type of the adjacent PORT + (PC_Neighbor). The evaluation of Connection- + Policy (PC-Type, PC-Neighbor) is done to determine + the setting of T- Val(3) in the PC-Signalling + sequence (refer to ANSI 9.6.3). Note that Bit 15, + (rejectM-M), is always set and cannot be cleared. + + The value is a sum. This value initially takes + the value zero, then for each of the connection + policies currently enforced on the node, 2 raised + to a power is added to the sum. The powers are + according to the following table: + + Policy Power + rejectA-A 0 + rejectA-B 1 + rejectA-S 2 + rejectA-M 3 + rejectB-A 4 + rejectB-B 5 + rejectB-S 6 + rejectB-M 7 + rejectS-A 8 + rejectS-B 9 + rejectS-S 10 + rejectS-M 11 + rejectM-A 12 + rejectM-B 13 + rejectM-S 14 + rejectM-M 15 " + REFERENCE + "ANSI { fddiSMT 27 }" + ::= { fddimibSMTEntry 14 } + + fddimibSMTTNotify OBJECT-TYPE + SYNTAX INTEGER (2..30) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The timer, expressed in seconds, used in the + Neighbor Notification protocol. It has a range of + 2 seconds to 30 seconds, and its default value is + 30 seconds (refer to ANSI SMT 8.2)." + REFERENCE + "ANSI { fddiSMT 29 }" + ::= { fddimibSMTEntry 15 } + + fddimibSMTStatRptPolicy OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If true, indicates that the node will generate + Status Reporting Frames for its implemented events + and conditions. It has an initial value of true. + This variable determines the value of the + SR_Enable Flag (refer to ANSI SMT 8.3.2.1)." + REFERENCE + "ANSI { fddiSMT 30 }" + ::= { fddimibSMTEntry 16 } + + fddimibSMTTraceMaxExpiration OBJECT-TYPE + SYNTAX FddiTimeMilli + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Reference Trace_Max (refer to ANSI SMT + 9.4.4.2.2)." + REFERENCE + "ANSI { fddiSMT 31 }" + ::= { fddimibSMTEntry 17 } + + fddimibSMTBypassPresent OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A flag indicating if the station has a bypass on + its AB port pair." + REFERENCE + "ANSI { fddiSMT 34 }" + ::= { fddimibSMTEntry 18 } + + fddimibSMTECMState OBJECT-TYPE + SYNTAX INTEGER { + ec0(1), -- Out + ec1(2), -- In + ec2(3), -- Trace + ec3(4), -- Leave + ec4(5), -- Path_Test + ec5(6), -- Insert + ec6(7), -- Check + ec7(8) -- Deinsert + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the current state of the ECM state + machine (refer to ANSI SMT 9.5.2)." + REFERENCE + "ANSI { fddiSMT 41 }" + ::= { fddimibSMTEntry 19 } + + fddimibSMTCFState OBJECT-TYPE + SYNTAX INTEGER { + cf0(1), -- isolated + cf1(2), -- local_a + cf2(3), -- local_b + cf3(4), -- local_ab + cf4(5), -- local_s + cf5(6), -- wrap_a + cf6(7), -- wrap_b + cf7(8), -- wrap_ab + cf8(9), -- wrap_s + cf9(10), -- c_wrap_a + cf10(11), -- c_wrap_b + cf11(12), -- c_wrap_s + cf12(13) -- thru + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The attachment configuration for the station or + concentrator (refer to ANSI SMT 9.7.2.2)." + REFERENCE + "ANSI { fddiSMT 42 }" + ::= { fddimibSMTEntry 20 } + + fddimibSMTRemoteDisconnectFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A flag indicating that the station was remotely + disconnected from the network as a result of + receiving an fddiSMTAction, disconnect (refer to + ANSI SMT 6.4.5.3) in a Parameter Management Frame. + A station requires a Connect Action to rejoin and + clear the flag (refer to ANSI SMT 6.4.5.2)." + REFERENCE + "ANSI { fddiSMT 44 }" + ::= { fddimibSMTEntry 21 } + + fddimibSMTStationStatus OBJECT-TYPE + SYNTAX INTEGER { concatenated(1), separated(2), thru(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current status of the primary and secondary + paths within this station." + REFERENCE + "ANSI { fddiSMT 45 }" + ::= { fddimibSMTEntry 22 } + + fddimibSMTPeerWrapFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable assumes the value of the + PeerWrapFlag in CFM (refer to ANSI SMT + 9.7.2.4.4)." + REFERENCE + "ANSI { fddiSMT 46 }" + ::= { fddimibSMTEntry 23 } + + fddimibSMTTimeStamp OBJECT-TYPE + SYNTAX FddiTimeMilli + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable assumes the value of TimeStamp + (refer to ANSI SMT 8.3.2.1)." + REFERENCE + "ANSI { fddiSMT 51 }" + ::= { fddimibSMTEntry 24 } + + fddimibSMTTransitionTimeStamp OBJECT-TYPE + SYNTAX FddiTimeMilli + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable assumes the value of + TransitionTimeStamp (refer to ANSI SMT 8.3.2.1)." + REFERENCE + "ANSI { fddiSMT 52 }" + ::= { fddimibSMTEntry 25 } + + fddimibSMTStationAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + connect(2), + disconnect(3), + path-Test(4), + self-Test(5), + disable-a(6), + disable-b(7), + disable-m(8) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object, when read, always returns a value of + other(1). The behavior of setting this variable + to each of the acceptable values is as follows: + + other(1): Results in an appropriate error. + connect(2): Generates a Connect signal to ECM + to begin a connection sequence. See ANSI + Ref 9.4.2. + disconnect(3): Generates a Disconnect signal + to ECM. see ANSI Ref 9.4.2. + path-Test(4): Initiates a station Path_Test. + The Path_Test variable (see ANSI Ref + 9.4.1) is set to 'Testing'. The results + of this action are not specified in this + standard. + self-Test(5): Initiates a station Self_Test. + The results of this action are not + specified in this standard. + disable-a(6): Causes a PC_Disable on the A + port if the A port mode is peer. + disable-b(7): Causes a PC_Disable on the B + port if the B port mode is peer. + disable-m(8): Causes a PC_Disable on all M + ports. + + Attempts to set this object to all other values + results in an appropriate error. The result of + setting this variable to path-Test(4) or self- + Test(5) is implementation-specific." + REFERENCE + "ANSI { fddiSMT 60 }" + ::= { fddimibSMTEntry 26 } + + -- the MAC group + -- Implementation of the MAC Group is mandatory for all + -- systems which implement manageable FDDI subsystems. + + fddimibMACNumber OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of MAC implementations (across + all SMTs) on this network management application + entity. The value for this variable must remain + constant at least from one re-initialization of + the entity's network management system to the next + re-initialization." + ::= { fddimibMAC 1 } + + -- the MAC table + + fddimibMACTable OBJECT-TYPE + SYNTAX SEQUENCE OF FddimibMACEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of MAC entries. The number of entries + shall not exceed the value of fddimibMACNumber." + ::= { fddimibMAC 2 } + + fddimibMACEntry OBJECT-TYPE + SYNTAX FddimibMACEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A MAC entry containing information common to a + given MAC." + INDEX { fddimibMACSMTIndex, fddimibMACIndex } + ::= { fddimibMACTable 1 } + + FddimibMACEntry ::= + SEQUENCE { + fddimibMACSMTIndex + INTEGER, + fddimibMACIndex + INTEGER, + fddimibMACIfIndex + INTEGER, + fddimibMACFrameStatusFunctions + INTEGER, + fddimibMACTMaxCapability + FddiTimeNano, + fddimibMACTVXCapability + FddiTimeNano, + fddimibMACAvailablePaths + INTEGER, + fddimibMACCurrentPath + INTEGER, + fddimibMACUpstreamNbr + FddiMACLongAddressType, + fddimibMACDownstreamNbr + FddiMACLongAddressType, + fddimibMACOldUpstreamNbr + FddiMACLongAddressType, + fddimibMACOldDownstreamNbr + FddiMACLongAddressType, + fddimibMACDupAddressTest + INTEGER, + fddimibMACRequestedPaths + INTEGER, + fddimibMACDownstreamPORTType + INTEGER, + fddimibMACSMTAddress + FddiMACLongAddressType, + fddimibMACTReq + FddiTimeNano, + fddimibMACTNeg + FddiTimeNano, + fddimibMACTMax + FddiTimeNano, + fddimibMACTvxValue + FddiTimeNano, + fddimibMACFrameCts + Counter, + fddimibMACCopiedCts + Counter, + fddimibMACTransmitCts + Counter, + fddimibMACErrorCts + Counter, + fddimibMACLostCts + Counter, + fddimibMACFrameErrorThreshold + INTEGER, + fddimibMACFrameErrorRatio + INTEGER, + fddimibMACRMTState + INTEGER, + fddimibMACDaFlag + INTEGER, + fddimibMACUnaDaFlag + INTEGER, + fddimibMACFrameErrorFlag + INTEGER, + fddimibMACMAUnitdataAvailable + INTEGER, + fddimibMACHardwarePresent + INTEGER, + fddimibMACMAUnitdataEnable + INTEGER + } + + fddimibMACSMTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the SMT index associated with this + MAC." + ::= { fddimibMACEntry 1 } + + fddimibMACIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index variable for uniquely identifying the MAC + object instances, which is the same as the + corresponding resource index in SMT." + REFERENCE + "ANSI { fddiMAC 34 }" + ::= { fddimibMACEntry 2 } + + fddimibMACIfIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the MIB-II ifIndex corresponding to + this MAC. If none is applicable, 0 is returned." + REFERENCE + "MIB-II" + ::= { fddimibMACEntry 3 } + + fddimibMACFrameStatusFunctions OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the MAC's optional Frame Status + processing functions. + + The value is a sum. This value initially takes + the value zero, then for each function present, 2 + raised to a power is added to the sum. The powers + are according to the following table: + + function Power + fs-repeating 0 + fs-setting 1 + fs-clearing 2 " + REFERENCE + "ANSI { fddiMAC 11 }" + ::= { fddimibMACEntry 4 } + + fddimibMACTMaxCapability OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the maximum time value of fddiMACTMax + that this MAC can support." + REFERENCE + "ANSI { fddiMAC 13 }" + ::= { fddimibMACEntry 5 } + + fddimibMACTVXCapability OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the maximum time value of + fddiMACTvxValue that this MAC can support." + REFERENCE + "ANSI { fddiMAC 14 }" + ::= { fddimibMACEntry 6 } + + + fddimibMACAvailablePaths OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the paths available for this MAC (refer + to ANSI SMT 9.7.7). + + The value is a sum. This value initially takes + the value zero, then for each type of PATH that + this MAC has available, 2 raised to a power is + added to the sum. The powers are according to the + following table: + + Path Power + Primary 0 + Secondary 1 + Local 2 " + REFERENCE + "ANSI { fddiMAC 22 }" + ::= { fddimibMACEntry 7 } + + fddimibMACCurrentPath OBJECT-TYPE + SYNTAX INTEGER { + isolated(1), + local(2), + secondary(3), + primary(4), + concatenated(5), + thru(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the Path into which this MAC is + currently inserted (refer to ANSI 9.7.7)." + REFERENCE + "ANSI { fddiMAC 23 }" + ::= { fddimibMACEntry 8 } + + fddimibMACUpstreamNbr OBJECT-TYPE + SYNTAX FddiMACLongAddressType -- OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAC's upstream neighbor's long individual MAC + address. It has an initial value of the SMT- + Unknown-MAC Address and is only modified as + specified by the Neighbor Information Frame + protocol (refer to ANSI SMT 7.2.1 and 8.2)." + REFERENCE + "ANSI { fddiMAC 24 }" + ::= { fddimibMACEntry 9 } + + fddimibMACDownstreamNbr OBJECT-TYPE + SYNTAX FddiMACLongAddressType -- OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAC's downstream neighbor's long individual + MAC address. It has an initial value of the SMT- + Unknown-MAC Address and is only modified as + specified by the Neighbor Information Frame + protocol (refer to ANSI SMT 7.2.1 and 8.2)." + REFERENCE + "ANSI { fddiMAC 25 }" + ::= { fddimibMACEntry 10 } + + fddimibMACOldUpstreamNbr OBJECT-TYPE + SYNTAX FddiMACLongAddressType -- OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The previous value of the MAC's upstream + neighbor's long individual MAC address. It has an + initial value of the SMT-Unknown- MAC Address and + is only modified as specified by the Neighbor + Information Frame protocol (refer to ANSI SMT + 7.2.1 and 8.2)." + REFERENCE + "ANSI { fddiMAC 26 }" + ::= { fddimibMACEntry 11 } + + fddimibMACOldDownstreamNbr OBJECT-TYPE + SYNTAX FddiMACLongAddressType -- OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The previous value of the MAC's downstream + neighbor's long individual MAC address. It has an + initial value of the SMT- Unknown-MAC Address and + is only modified as specified by the Neighbor + Information Frame protocol (refer to ANSI SMT + 7.2.1 and 8.2)." + REFERENCE + "ANSI { fddiMAC 27 }" + ::= { fddimibMACEntry 12 } + + fddimibMACDupAddressTest OBJECT-TYPE + SYNTAX INTEGER { none(1), pass(2), fail(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Duplicate Address Test flag, Dup_Addr_Test + (refer to ANSI 8.2)." + REFERENCE + "ANSI { fddiMAC 29 }" + ::= { fddimibMACEntry 13 } + + fddimibMACRequestedPaths OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "List of permitted Paths which specifies the + Path(s) into which the MAC may be inserted (refer + to ansi SMT 9.7). + + The value is a sum which represents the individual + paths that are desired. This value initially + takes the value zero, then for each type of PATH + that this node is, 2 raised to a power is added to + the sum. The powers are according to the + following table: + + Path Power + local 0 + secondary-alternate 1 + primary-alternate 2 + concatenated-alternate 3 + secondary-preferred 4 + primary-preferred 5 + concatenated-preferred 6 + thru 7 " + REFERENCE + "ANSI { fddiMAC 32 }" + ::= { fddimibMACEntry 14 } + + fddimibMACDownstreamPORTType OBJECT-TYPE + SYNTAX INTEGER { a(1), b(2), s(3), m(4), none(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the PC-Type of the first port that is + downstream of this MAC (the exit port)." + REFERENCE + "ANSI { fddiMAC 33 }" + ::= { fddimibMACEntry 15 } + + fddimibMACSMTAddress OBJECT-TYPE + SYNTAX FddiMACLongAddressType -- OCTET STRING (SIZE (6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The 48-bit individual address of the MAC used for + SMT frames." + REFERENCE + "ANSI { fddiMAC 41 }" + ::= { fddimibMACEntry 16 } + + fddimibMACTReq OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is the T_Req_value passed to the + MAC. Without having detected a duplicate, the + time value of this variable shall assume the + maximum supported time value which is less than or + equal to the time value of fddiPATHMaxT-Req. When + a MAC has an address detected as a duplicate, it + may use a time value for this variable greater + than the time value of fddiPATHTMaxLowerBound. A + station shall cause claim when the new T_Req may + cause the value of T_Neg to change in the claim + process, (i.e., time value new T_Req < T_Neg, or + old T_Req = T_Neg)." + REFERENCE + "ANSI { fddiMAC 51 }" + ::= { fddimibMACEntry 17 } + + fddimibMACTNeg OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-only + STATUS mandatory + DESCRIPTION + "It is reported as a FddiTimeNano number." + REFERENCE + "ANSI { fddiMAC 52 }" + ::= { fddimibMACEntry 18 } + + fddimibMACTMax OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is the T_Max_value passed to the + MAC. The time value of this variable shall assume + the minimum suported time value which is greater + than or equal to the time value of fddiPATHT- + MaxLowerBound" + REFERENCE + "ANSI { fddiMAC 53 }" + ::= { fddimibMACEntry 19 } + + fddimibMACTvxValue OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is the TVX_value passed to the MAC. + The time value of this variable shall assume the + minimum suported time value which is greater than + or equal to the time value of + fddiPATHTVXLowerBound." + REFERENCE + "ANSI { fddiMAC 54 }" + ::= { fddimibMACEntry 20 } + + fddimibMACFrameCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of the number of frames received by this + MAC (refer to ANSI MAC 7.5.1)." + REFERENCE + "ANSI { fddiMAC 71 }" + ::= { fddimibMACEntry 21 } + + fddimibMACCopiedCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count that should as closely as possible match + the number of frames addressed to (A bit set) and + successfully copied into the station's receive + buffers (C bit set) by this MAC (refer to ANSI MAC + 7.5). Note that this count does not include MAC + frames." + REFERENCE + "ANSI { fddiMAC 72 }" + ::= { fddimibMACEntry 22 } + + fddimibMACTransmitCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count that should as closely as possible match + the number of frames transmitted by this MAC + (refer to ANSI MAC 7.5). Note that this count + does not include MAC frames." + REFERENCE + "ANSI { fddiMAC 73 }" + ::= { fddimibMACEntry 23 } + + fddimibMACErrorCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of the number of frames that were + detected in error by this MAC that had not been + detected in error by another MAC (refer to ANSI + MAC 7.5.2)." + REFERENCE + "ANSI { fddiMAC 81 }" + ::= { fddimibMACEntry 24 } + + fddimibMACLostCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of the number of instances that this MAC + detected a format error during frame reception + such that the frame was stripped (refer to ANSI + MAC 7.5.3)." + REFERENCE + "ANSI { fddiMAC 82 }" + ::= { fddimibMACEntry 25 } + + fddimibMACFrameErrorThreshold OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A threshold for determining when a MAC Condition + report (see ANSI 8.3.1.1) shall be generated. + Stations not supporting variable thresholds shall + have a value of 0 and a range of (0..0)." + REFERENCE + "ANSI { fddiMAC 95 }" + ::= { fddimibMACEntry 26 } + + fddimibMACFrameErrorRatio OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is the value of the ratio, + + ((delta fddiMACLostCts + delta fddiMACErrorCts) / + (delta fddiMACFrameCts + delta fddiMACLostCts )) + * 2**16 " + REFERENCE + "ANSI { fddiMAC 96 }" + ::= { fddimibMACEntry 27 } + + fddimibMACRMTState OBJECT-TYPE + SYNTAX INTEGER { + rm0(1), -- Isolated + rm1(2), -- Non_Op + rm2(3), -- Ring_Op + rm3(4), -- Detect + rm4(5), -- Non_Op_Dup + rm5(6), -- Ring_Op_Dup + rm6(7), -- Directed + rm7(8) -- Trace + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the current state of the RMT State + Machine (refer to ANSI 10.3.2)." + REFERENCE + "ANSI { fddiMAC 111 }" + ::= { fddimibMACEntry 28 } + + fddimibMACDaFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The RMT flag Duplicate Address Flag, DA_Flag + (refer to ANSI 10.2.1.2)." + REFERENCE + "ANSI { fddiMAC 112 }" + ::= { fddimibMACEntry 29 } + + fddimibMACUnaDaFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A flag, UNDA_Flag (refer to ANSI 8.2.2.1), set + when the upstream neighbor reports a duplicate + address condition. Cleared when the condition + clears." + REFERENCE + "ANSI { fddiMAC 113 }" + ::= { fddimibMACEntry 30 } + + fddimibMACFrameErrorFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the MAC Frame Error Condition is + present when set. Cleared when the condition + clears and on station initialization." + REFERENCE + "ANSI { fddiMAC 114 }" + ::= { fddimibMACEntry 31 } + + fddimibMACMAUnitdataAvailable OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable shall take on the value of the + MAC_Avail flag defined in RMT." + REFERENCE + "ANSI { fddiMAC 116 }" + ::= { fddimibMACEntry 32 } + + fddimibMACHardwarePresent OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the presence of + underlying hardware support for this MAC object. + If the value of this object is false(2), the + reporting of the objects in this entry may be + handled in an implementation-specific manner." + REFERENCE + "ANSI { fddiMAC 117 }" + ::= { fddimibMACEntry 33 } + + fddimibMACMAUnitdataEnable OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable determines the value of the + MA_UNITDATA_Enable flag in RMT. The default and + initial value of this flag is true(1)." + REFERENCE + "ANSI { fddiMAC 118 }" + ::= { fddimibMACEntry 34 } + + -- the Enhanced MAC Counters group + -- Implementation of this Group is optional, but systems + -- claiming support must implement all variables in this + -- group + + -- the MAC Counters table + + fddimibMACCountersTable OBJECT-TYPE + SYNTAX SEQUENCE OF FddimibMACCountersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of MAC Counters entries. The number of + entries shall not exceed the value of + fddimibMACNumber." + ::= { fddimibMACCounters 1 } + + fddimibMACCountersEntry OBJECT-TYPE + SYNTAX FddimibMACCountersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A MAC Counters entry containing information + common to a given MAC." + INDEX { fddimibMACSMTIndex, fddimibMACIndex } + ::= { fddimibMACCountersTable 1 } + + + FddimibMACCountersEntry ::= + SEQUENCE { + fddimibMACTokenCts + Counter, + fddimibMACTvxExpiredCts + Counter, + fddimibMACNotCopiedCts + Counter, + fddimibMACLateCts + Counter, + fddimibMACRingOpCts + Counter, + fddimibMACNotCopiedRatio + INTEGER, + fddimibMACNotCopiedFlag + INTEGER, + fddimibMACNotCopiedThreshold + INTEGER + } + + fddimibMACTokenCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count that should as closely as possible match + the number of times the station has received a + token (total of non-restricted and restricted) on + this MAC (see ANSI MAC 7.4). This count is + valuable for determination of network load." + REFERENCE + "ANSI { fddiMAC 74 }" + ::= { fddimibMACCountersEntry 1 } + + fddimibMACTvxExpiredCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count that should as closely as possible match + the number of times that TVX has expired." + REFERENCE + "ANSI { fddiMAC 83 }" + ::= { fddimibMACCountersEntry 2 } + + fddimibMACNotCopiedCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count that should as closely as possible match + the number of frames that were addressed to this + MAC but were not copied into its receive buffers + (see ANSI MAC 7.5). For example, this might occur + due to local buffer congestion. Because of + implementation considerations, this count may not + match the actual number of frames not copied. It + is not a requirement that this count be exact. + Note that this count does not include MAC frames." + REFERENCE + "ANSI { fddiMAC 84 }" + ::= { fddimibMACCountersEntry 3 } + + fddimibMACLateCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count that should as closely as possible match + the number of TRT expirations since this MAC was + reset or a token was received (refer to ANSI MAC + 7.4.5)." + REFERENCE + "ANSI { fddiMAC 85 }" + ::= { fddimibMACCountersEntry 4 } + + fddimibMACRingOpCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The count of the number of times the ring has + entered the 'Ring_Operational' state from the + 'Ring Not Operational' state. This count is + updated when a SM_MA_STATUS.Indication of a change + in the Ring_Operational status occurs (refer to + ANSI 6.1.4). Because of implementation + considerations, this count may be less than the + actual RingOp_Ct. It is not a requirement that + this count be exact." + REFERENCE + "ANSI { fddiMAC 86 }" + ::= { fddimibMACCountersEntry 5 } + + fddimibMACNotCopiedRatio OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is the value of the ratio: + + (delta fddiMACNotCopiedCts / + (delta fddiMACCopiedCts + + delta fddiMACNotCopiedCts )) * 2**16 " + REFERENCE + "ANSI { fddiMAC 105 }" + ::= { fddimibMACCountersEntry 6 } + + fddimibMACNotCopiedFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates that the Not Copied condition is + present when read as true(1). Set to false(2) + when the condition clears and on station + initialization." + REFERENCE + "ANSI { fddiMAC 115 }" + ::= { fddimibMACCountersEntry 7 } + + fddimibMACNotCopiedThreshold OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A threshold for determining when a MAC condition + report shall be generated. Stations not + supporting variable thresholds shall have a value + of 0 and a range of (0..0)." + REFERENCE + "ANSI { fddiMAC 103 }" + ::= { fddimibMACCountersEntry 8 } + + -- the PATH group + -- Implementation of the PATH group is mandatory for all + -- systems which implement manageable FDDI subsystems. + + fddimibPATHNumber OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of PATHs possible (across all + SMTs) on this network management application + entity. The value for this variable must remain + constant at least from one re-initialization of + the entity's network management system to the next + re-initialization." + ::= { fddimibPATH 1 } + + -- the PATH table + + fddimibPATHTable OBJECT-TYPE + SYNTAX SEQUENCE OF FddimibPATHEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of PATH entries. The number of entries + shall not exceed the value of fddimibPATHNumber." + ::= { fddimibPATH 2 } + + fddimibPATHEntry OBJECT-TYPE + SYNTAX FddimibPATHEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A PATH entry containing information common to a + given PATH." + INDEX { fddimibPATHSMTIndex, fddimibPATHIndex } + ::= { fddimibPATHTable 1 } + + FddimibPATHEntry ::= + SEQUENCE { + fddimibPATHSMTIndex + INTEGER, + fddimibPATHIndex + INTEGER, + fddimibPATHTVXLowerBound + FddiTimeNano, + fddimibPATHTMaxLowerBound + FddiTimeNano, + fddimibPATHMaxTReq + FddiTimeNano + } + + fddimibPATHSMTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the SMT index associated with this + PATH." + ::= { fddimibPATHEntry 1 } + + fddimibPATHIndex OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index variable for uniquely identifying the + primary, secondary and local PATH object + instances. Local PATH object instances are + represented with integer values 3 to 255." + REFERENCE + "ANSI { fddiPATH 11 }" + ::= { fddimibPATHEntry 2 } + + fddimibPATHTVXLowerBound OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the minimum time value of + fddiMACTvxValue that shall be used by any MAC that + is configured in this path. The operational value + of fddiMACTvxValue is managed by settting this + variable. This variable has the time value range + of: + + 0 < fddimibPATHTVXLowerBound < fddimibPATHMaxTReq + Changes to this variable shall either satisfy the + time value relationship: + + fddimibPATHTVXLowerBound <= + fddimibMACTVXCapability + + of each of the MACs currently on the path, or be + considered out of range. The initial value of + fddimibPATHTVXLowerBound shall be 2500 nsec (2.5 + ms)." + REFERENCE + "ANSI { fddiPATH 21 }" + ::= { fddimibPATHEntry 3 } + + fddimibPATHTMaxLowerBound OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the minimum time value of fddiMACTMax + that shall be used by any MAC that is configured + in this path. The operational value of + fddiMACTMax is managed by setting this variable. + This variable has the time value range of: + + fddimibPATHMaxTReq <= fddimibPATHTMaxLowerBound + + and an absolute time value range of: + + 10000nsec (10 msec) <= fddimibPATHTMaxLowerBound + + Changes to this variable shall either satisfy the + time value relationship: + + fddimibPATHTMaxLowerBound < + fddimibMACTMaxCapability + + of each of the MACs currently on the path, or be + considered out of range. The initial value of + fddimibPATHTMaxLowerBound shall be 165000 nsec + (165 msec)." + REFERENCE + "ANSI { fddiPATH 22 }" + ::= { fddimibPATHEntry 4 } + + fddimibPATHMaxTReq OBJECT-TYPE + SYNTAX FddiTimeNano + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the maximum time value of fddiMACT-Req + that shall be used by any MAC that is configured + in this path. The operational value of fddiMACT- + Req is managed by setting this variable. This + variable has the time value range of: + + fddimibPATHTVXLowerBound < fddimibPATHMaxTReq <= + fddimibPATHTMaxLowerBound. + + The default value of fddimibPATHMaxTReq is 165000 + nsec (165 msec)." + REFERENCE + "ANSI { fddiPATH 23 }" + ::= { fddimibPATHEntry 5 } + + + -- the PATH Configuration table + + fddimibPATHConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF FddimibPATHConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of Path configuration entries. This + table lists all the resources that may be in this + Path." + REFERENCE + "ANSI { fddiPATH 18 }" + ::= { fddimibPATH 3 } + + fddimibPATHConfigEntry OBJECT-TYPE + SYNTAX FddimibPATHConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of objects containing information + for a given PATH Configuration entry." + INDEX { fddimibPATHConfigSMTIndex, + fddimibPATHConfigPATHIndex, + fddimibPATHConfigTokenOrder } + ::= { fddimibPATHConfigTable 1 } + + FddimibPATHConfigEntry ::= + SEQUENCE { + fddimibPATHConfigSMTIndex + INTEGER, + fddimibPATHConfigPATHIndex + INTEGER, + fddimibPATHConfigTokenOrder + INTEGER, + fddimibPATHConfigResourceType + INTEGER, + fddimibPATHConfigResourceIndex + INTEGER, + fddimibPATHConfigCurrentPath + INTEGER + } + + fddimibPATHConfigSMTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the SMT index associated with this + + + configuration entry." + ::= { fddimibPATHConfigEntry 1 } + + fddimibPATHConfigPATHIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the PATH resource index associated + with this configuration entry." + ::= { fddimibPATHConfigEntry 2 } + + fddimibPATHConfigTokenOrder OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An object associated with Token order for this + entry. Thus if the token passes resources a, b, c + and d, in that order, then the value of this + object for these resources would be 1, 2, 3 and 4 + respectively." + ::= { fddimibPATHConfigEntry 3 } + + fddimibPATHConfigResourceType OBJECT-TYPE + SYNTAX INTEGER { mac(2), port(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of resource associated with this + configuration entry." + ::= { fddimibPATHConfigEntry 4 } + + fddimibPATHConfigResourceIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the SMT resource index used to refer + to the instance of this MAC or Port resource." + ::= { fddimibPATHConfigEntry 5 } + + fddimibPATHConfigCurrentPath OBJECT-TYPE + SYNTAX INTEGER { + isolated(1), local(2), secondary(3), primary(4), + concatenated(5), thru(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current insertion status for this resource on + this Path." + ::= { fddimibPATHConfigEntry 6 } + + -- the PORT group + -- Implementation of the PORT group is mandatory for all + -- systems which implement manageable FDDI subsystems. + + fddimibPORTNumber OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of PORT implementations (across + all SMTs) on this network management application + entity. The value for this variable must remain + constant at least from one re-initialization of + the entity's network management system to the next + re-initialization." + ::= { fddimibPORT 1 } + + -- the PORT table + + fddimibPORTTable OBJECT-TYPE + SYNTAX SEQUENCE OF FddimibPORTEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of PORT entries. The number of entries + shall not exceed the value of fddimibPORTNumber." + ::= { fddimibPORT 2 } + + fddimibPORTEntry OBJECT-TYPE + SYNTAX FddimibPORTEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A PORT entry containing information common to a + given PORT." + INDEX { fddimibPORTSMTIndex, fddimibPORTIndex } + ::= { fddimibPORTTable 1 } + + FddimibPORTEntry ::= + SEQUENCE { + fddimibPORTSMTIndex + INTEGER, + fddimibPORTIndex + INTEGER, + fddimibPORTMyType + INTEGER, + fddimibPORTNeighborType + INTEGER, + fddimibPORTConnectionPolicies + INTEGER, + fddimibPORTMACIndicated + INTEGER, + fddimibPORTCurrentPath + INTEGER, + fddimibPORTRequestedPaths + OCTET STRING, + fddimibPORTMACPlacement + FddiResourceId, + fddimibPORTAvailablePaths + INTEGER, + fddimibPORTPMDClass + INTEGER, + fddimibPORTConnectionCapabilities + INTEGER, + fddimibPORTBSFlag + INTEGER, + fddimibPORTLCTFailCts + Counter, + fddimibPORTLerEstimate + INTEGER, + fddimibPORTLemRejectCts + Counter, + fddimibPORTLemCts + Counter, + fddimibPORTLerCutoff + INTEGER, + fddimibPORTLerAlarm + INTEGER, + fddimibPORTConnectState + INTEGER, + fddimibPORTPCMState + INTEGER, + fddimibPORTPCWithhold + INTEGER, + fddimibPORTLerFlag + INTEGER, + fddimibPORTHardwarePresent + INTEGER, + fddimibPORTAction + INTEGER + } + + fddimibPORTSMTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the SMT index associated with this + PORT." + ::= { fddimibPORTEntry 1 } + + fddimibPORTIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each PORT within a given SMT, + which is the same as the corresponding resource + index in SMT. The value for each PORT must remain + constant at least from one re-initialization of + the entity's network management system to the next + re-initialization." + REFERENCE + "ANSI { fddiPORT 29 }" + ::= { fddimibPORTEntry 2 } + + fddimibPORTMyType OBJECT-TYPE + SYNTAX INTEGER { a(1), b(2), s(3), m(4), none(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the PORT's PC_Type (refer to ANSI + 9.4.1, and 9.6.3.2)." + REFERENCE + "ANSI { fddiPORT 12 }" + ::= { fddimibPORTEntry 3 } + + fddimibPORTNeighborType OBJECT-TYPE + SYNTAX INTEGER { a(1), b(2), s(3), m(4), none(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the remote PORT as determined in PCM. + This variable has an initial value of none, and is + only modified in PC_RCode(3)_Actions (refer to + ANSI SMT 9.6.3.2)." + REFERENCE + "ANSI { fddiPORT 13 }" + ::= { fddimibPORTEntry 4 } + + fddimibPORTConnectionPolicies OBJECT-TYPE + SYNTAX INTEGER (0..3) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A value representing the PORT's connection + policies desired in the node. The value of pc- + mac-lct is a term used in the PC_MAC_LCT Flag (see + 9.4.3.2). The value of pc-mac-loop is a term used + in the PC_MAC_Loop Flag. + + The value is a sum. This value initially takes + the value zero, then for each PORT policy, 2 + raised to a power is added to the sum. The powers + are according to the following table: + + Policy Power + pc-mac-lct 0 + pc-mac-loop 1 " + REFERENCE + "ANSI { fddiPORT 14 }" + ::= { fddimibPORTEntry 5 } + + fddimibPORTMACIndicated OBJECT-TYPE + SYNTAX INTEGER { + tVal9FalseRVal9False(1), + tVal9FalseRVal9True(2), + tVal9TrueRVal9False(3), + tVal9TrueRVal9True(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The indications (T_Val(9), R_Val(9)) in PC- + Signalling, of the intent to place a MAC in the + output token path to a PORT (refer to ANSI SMT + 9.6.3.2.)." + REFERENCE + "ANSI { fddiPORT 15 }" + ::= { fddimibPORTEntry 6 } + + fddimibPORTCurrentPath OBJECT-TYPE + SYNTAX INTEGER { + ce0(1), -- isolated + ce1(2), -- local + ce2(3), -- secondary + ce3(4), -- primary + ce4(5), -- concatenated + ce5(6) -- thru + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the Path(s) into which this PORT is + currently inserted." + REFERENCE + "ANSI { fddiPORT 16 }" + ::= { fddimibPORTEntry 7 } + + fddimibPORTRequestedPaths OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (3)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable is a list of permitted Paths where + each list element defines the Port's permitted + Paths. The first octet corresponds to 'none', the + second octet to 'tree', and the third octet to + 'peer'." + REFERENCE + "ANSI { fddiPORT 17 }" + ::= { fddimibPORTEntry 8 } + + fddimibPORTMACPlacement OBJECT-TYPE + SYNTAX FddiResourceId -- INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the MAC, if any, whose transmit path + exits the station via this PORT. The value shall + be zero if there is no MAC associated with the + PORT. Otherwise, the MACIndex of the MAC will be + the value of the variable." + REFERENCE + "ANSI { fddiPORT 18 }" + ::= { fddimibPORTEntry 9 } + + fddimibPORTAvailablePaths OBJECT-TYPE + SYNTAX INTEGER (0..7) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the Paths which are available to this + Port. In the absence of faults, the A and B Ports + will always have both the Primary and Secondary + Paths available. + + The value is a sum. This value initially takes + the value zero, then for each type of PATH that + this port has available, 2 raised to a power is + added to the sum. The powers are according to the + following table: + + Path Power + Primary 0 + Secondary 1 + Local 2 " + REFERENCE + "ANSI { fddiPORT 19 }" + ::= { fddimibPORTEntry 10 } + + fddimibPORTPMDClass OBJECT-TYPE + SYNTAX INTEGER { + multimode(1), + single-mode1(2), + single-mode2(3), + sonet(4), + low-cost-fiber(5), + twisted-pair(6), + unknown(7), + unspecified(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the type of PMD entity + associated with this port." + REFERENCE + "ANSI { fddiPORT 22 }" + ::= { fddimibPORTEntry 11 } + + fddimibPORTConnectionCapabilities OBJECT-TYPE + SYNTAX INTEGER (0..3) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value that indicates the connection + capabilities of the port. The pc-mac-lct bit + indicates that the station has the capability of + setting the PC_MAC_LCT Flag. The pc-mac-loop bit + indicates that the station has the capability of + setting the PC_MAC_Loop Flag (refer to ANSI + 9.4.3.2). + + The value is a sum. This value initially takes + the value zero, then for each capability that this + port has, 2 raised to a power is added to the sum. + The powers are according to the following table: + + capability Power + pc-mac-lct 0 + pc-mac-loop 1 " + REFERENCE + "ANSI { fddiPORT 23 }" + ::= { fddimibPORTEntry 12 } + + fddimibPORTBSFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable assumes the value of the BS_Flag + (refer to ANSI SMT 9.4.3.3)." + REFERENCE + "ANSI { fddiPORT 33 }" + ::= { fddimibPORTEntry 13 } + + fddimibPORTLCTFailCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The count of the consecutive times the link + confidence test (LCT) has failed during connection + management (refer to ANSI 9.4.1)." + REFERENCE + "ANSI { fddiPORT 42 }" + ::= { fddimibPORTEntry 14 } + + fddimibPORTLerEstimate OBJECT-TYPE + SYNTAX INTEGER (4..15) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A long term average link error rate. It ranges + from 10**-4 to 10**-15 and is reported as the + absolute value of the base 10 logarithm (refer to + ANSI SMT 9.4.7.5.)." + REFERENCE + "ANSI { fddiPORT 51 }" + ::= { fddimibPORTEntry 15 } + + fddimibPORTLemRejectCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A link error monitoring count of the times that a + link has been rejected." + REFERENCE + "ANSI { fddiPORT 52 }" + ::= { fddimibPORTEntry 16 } + + fddimibPORTLemCts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The aggregate link error monitor error count, set + to zero only on station initialization." + REFERENCE + "ANSI { fddiPORT 53 }" + ::= { fddimibPORTEntry 17 } + + fddimibPORTLerCutoff OBJECT-TYPE + SYNTAX INTEGER (4..15) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The link error rate estimate at which a link + connection will be broken. It ranges from 10**-4 + to 10**-15 and is reported as the absolute value + of the base 10 logarithm (default of 7)." + REFERENCE + "ANSI { fddiPORT 58 }" + ::= { fddimibPORTEntry 18 } + + fddimibPORTLerAlarm OBJECT-TYPE + SYNTAX INTEGER (4..15) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The link error rate estimate at which a link + connection will generate an alarm. It ranges from + 10**-4 to 10**-15 and is reported as the absolute + value of the base 10 logarithm of the estimate + (default of 8)." + REFERENCE + "ANSI { fddiPORT 59 }" + ::= { fddimibPORTEntry 19 } + + fddimibPORTConnectState OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + connecting(2), + standby(3), + active(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the connect state of this PORT + and is equal to the value of Connect_State (refer + to ANSI 9.4.1)" + REFERENCE + "ANSI { fddiPORT 61 }" + ::= { fddimibPORTEntry 20 } + + fddimibPORTPCMState OBJECT-TYPE + SYNTAX INTEGER { + pc0(1), -- Off + pc1(2), -- Break + pc2(3), -- Trace + pc3(4), -- Connect + pc4(5), -- Next + pc5(6), -- Signal + pc6(7), -- Join + pc7(8), -- Verify + pc8(9), -- Active + pc9(10) -- Maint + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of this Port's PCM state machine refer + to ANSI SMT 9.6.2)." + REFERENCE + "ANSI { fddiPORT 62 }" + ::= { fddimibPORTEntry 21 } + + fddimibPORTPCWithhold OBJECT-TYPE + SYNTAX INTEGER { + none(1), + m-m(2), + otherincompatible(3), + pathnotavailable(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of PC_Withhold (refer to ANSI SMT + 9.4.1)." + REFERENCE + "ANSI { fddiPORT 63 }" + ::= { fddimibPORTEntry 22 } + + fddimibPORTLerFlag OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The condition becomes active when the value of + fddiPORTLerEstimate is less than or equal to + fddiPORTLerAlarm. This will be reported with the + Status Report Frames (SRF) (refer to ANSI SMT + 7.2.7 and 8.3)." + REFERENCE + "ANSI { fddiPORT 64 }" + ::= { fddimibPORTEntry 23 } + + fddimibPORTHardwarePresent OBJECT-TYPE + SYNTAX INTEGER { true(1), false(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the presence of + underlying hardware support for this Port object. + If the value of this object is false(2), the + reporting of the objects in this entry may be + handled in an implementation-specific manner." + REFERENCE + "ANSI { fddiPORT 65 }" + ::= { fddimibPORTEntry 24 } + + fddimibPORTAction OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + maintPORT(2), + enablePORT(3), + disablePORT(4), + startPORT(5), + stopPORT(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Causes a Control signal to be generated with a + control_action of 'Signal' and the 'variable' + parameter set with the appropriate value (i.e., + PC_Maint, PC_Enable, PC_Disable, PC_Start, or + PC_Stop) (refer to ANSI 9.4.2)." + REFERENCE + "ANSI { fddiPORT 70 }" + ::= { fddimibPORTEntry 25 } + +END diff --git a/pandora_console/attachment/mibs/HOST-RESOURCES-MIB b/pandora_console/attachment/mibs/HOST-RESOURCES-MIB new file mode 100644 index 0000000000..2f39d204ba --- /dev/null +++ b/pandora_console/attachment/mibs/HOST-RESOURCES-MIB @@ -0,0 +1,1356 @@ +-- Changes to rfc1514 (Host Resources MIB): +-- Added the IMPORT for mib-2. +-- dperkins@scruznet.com + +HOST-RESOURCES-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE FROM RFC-1212 + DisplayString, mib-2 FROM RFC1213-MIB + TimeTicks, + Counter, Gauge FROM RFC1155-SMI; + + host OBJECT IDENTIFIER ::= { mib-2 25 } + + hrSystem OBJECT IDENTIFIER ::= { host 1 } + hrStorage OBJECT IDENTIFIER ::= { host 2 } + hrDevice OBJECT IDENTIFIER ::= { host 3 } + hrSWRun OBJECT IDENTIFIER ::= { host 4 } + hrSWRunPerf OBJECT IDENTIFIER ::= { host 5 } + hrSWInstalled OBJECT IDENTIFIER ::= { host 6 } + + -- textual conventions + + -- a truth value + Boolean ::= INTEGER { true(1), false(2) } + + -- memory size, expressed in units of 1024bytes + KBytes ::= INTEGER (0..2147483647) + + -- This textual convention is intended to identify the manufacturer, + -- model, and version of a specific hardware or software product. + -- It is suggested that these OBJECT IDENTIFIERs are allocated such + -- that all products from a particular manufacturer are registered + -- under a subtree distinct to that manufacturer. In addition, all + -- versions of a product should be registered under a subtree + -- distinct to that product. With this strategy, a management + -- station may uniquely determine the manufacturer and/or model of a + -- product whose productID is unknown to the management station. + -- Objects of this type may be useful for inventory purposes or for + -- automatically detecting incompatibilities or version mismatches + -- between various hardware and software components on a system. + ProductID ::= OBJECT IDENTIFIER + -- unknownProduct will be used for any unknown ProductID + -- unknownProduct OBJECT IDENTIFIER ::= { 0 0 } + + -- For example, the product ID for the ACME 4860 66MHz clock doubled + -- processor might be: + -- enterprises.acme.acmeProcessors.a4860DX2.MHz66 + -- A software product might be registered as: + -- enterprises.acme.acmeOperatingSystems.acmeDOS.six(6).one(1) + + DateAndTime ::= OCTET STRING (SIZE (8 | 11)) + -- A date-time specification for the local time of day. + -- This data type is intended to provide a consistent + -- method of reporting date information. + -- + -- field octets contents range + -- _____ ______ ________ _____ + -- 1 1-2 year 0..65536 + -- (in network byte order) + -- 2 3 month 1..12 + -- 3 4 day 1..31 + -- 4 5 hour 0..23 + -- 5 6 minutes 0..59 + -- 6 7 seconds 0..60 + -- (use 60 for leap-second) + -- 7 8 deci-seconds 0..9 + -- 8 9 direction from UTC "+" / "-" + -- (in ascii notation) + -- 9 10 hours from UTC 0..11 + -- 10 11 minutes from UTC 0..59 + -- + -- Note that if only local time is known, then + -- timezone information (fields 8-10) is not present. + + InternationalDisplayString ::= OCTET STRING + -- This data type is used to model textual information in some + -- character set. A network management station should use a local + -- algorithm to determine which character set is in use and how it + -- should be displayed. Note that this character set may be encoded + -- with more than one octet per symbol, but will most often be NVT + -- ASCII. + + -- The Host Resources System Group + -- + -- Implementation of this group is mandatory for all host systems. + + hrSystemUptime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of time since this host was last + initialized. Note that this is different from + sysUpTime in MIB-II [3] because sysUpTime is the + uptime of the network management portion of the + system." + ::= { hrSystem 1 } + + hrSystemDate OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The host's notion of the local date and time of + day." + ::= { hrSystem 2 } + + hrSystemInitialLoadDevice OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The index of the hrDeviceEntry for the device from + which this host is configured to load its initial + operating system configuration." + ::= { hrSystem 3 } + + hrSystemInitialLoadParameters OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE (0..128)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object contains the parameters (e.g. a + pathname and parameter) supplied to the load device + when requesting the initial operating system + configuration from that device." + ::= { hrSystem 4 } + + hrSystemNumUsers OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of user sessions for which this host is + storing state information. A session is a + collection of processes requiring a single act of + user authentication and possibly subject to + collective job control." + ::= { hrSystem 5 } + + hrSystemProcesses OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of process contexts currently loaded or + running on this system." + ::= { hrSystem 6 } + + hrSystemMaxProcesses OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of process contexts this system + can support. If there is no fixed maximum, the + value should be zero. On systems that have a fixed + maximum, this object can help diagnose failures + that occur when this maximum is reached." + ::= { hrSystem 7 } + + -- The Host Resources Storage Group + -- + -- Implementation of this group is mandatory for all host systems. + + -- Registration for some storage types, for use with hrStorageType + hrStorageTypes OBJECT IDENTIFIER ::= { hrStorage 1 } + hrStorageOther OBJECT IDENTIFIER ::= { hrStorageTypes 1 } + hrStorageRam OBJECT IDENTIFIER ::= { hrStorageTypes 2 } + -- hrStorageVirtualMemory is temporary storage of swapped + -- or paged memory + hrStorageVirtualMemory OBJECT IDENTIFIER ::= { hrStorageTypes 3 } + hrStorageFixedDisk OBJECT IDENTIFIER ::= { hrStorageTypes 4 } + hrStorageRemovableDisk OBJECT IDENTIFIER ::= { hrStorageTypes 5 } + hrStorageFloppyDisk OBJECT IDENTIFIER ::= { hrStorageTypes 6 } + hrStorageCompactDisc OBJECT IDENTIFIER ::= { hrStorageTypes 7 } + hrStorageRamDisk OBJECT IDENTIFIER ::= { hrStorageTypes 8 } + + hrMemorySize OBJECT-TYPE + SYNTAX KBytes + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of physical main memory contained by + the host." + ::= { hrStorage 2 } + + hrStorageTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrStorageEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of logical storage areas on + the host. + + An entry shall be placed in the storage table for + each logical area of storage that is allocated and + has fixed resource limits. The amount of storage + represented in an entity is the amount actually + usable by the requesting entity, and excludes loss + due to formatting or file system reference + information. + + These entries are associated with logical storage + areas, as might be seen by an application, rather + than physical storage entities which are typically + seen by an operating system. Storage such as tapes + and floppies without file systems on them are + typically not allocated in chunks by the operating + system to requesting applications, and therefore + shouldn't appear in this table. Examples of valid + storage for this table include disk partitions, + file systems, ram (for some architectures this is + further segmented into regular memory, extended + memory, and so on), backing store for virtual + memory (`swap space'). + + This table is intended to be a useful diagnostic + for `out of memory' and `out of buffers' types of + failures. In addition, it can be a useful + performance monitoring tool for tracking memory, + disk, or buffer usage." + ::= { hrStorage 3 } + + hrStorageEntry OBJECT-TYPE + SYNTAX HrStorageEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one logical storage area + on the host. As an example, an instance of the + hrStorageType object might be named + hrStorageType.3" + INDEX { hrStorageIndex } + ::= { hrStorageTable 1 } + + HrStorageEntry ::= SEQUENCE { + hrStorageIndex INTEGER, + hrStorageType OBJECT IDENTIFIER, + hrStorageDescr DisplayString, + hrStorageAllocationUnits INTEGER, + hrStorageSize INTEGER, + hrStorageUsed INTEGER, + hrStorageAllocationFailures Counter + } + + hrStorageIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each logical storage area + contained by the host." + ::= { hrStorageEntry 1 } + + hrStorageType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of storage represented by this entry." + ::= { hrStorageEntry 2 } + + hrStorageDescr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the type and instance of the + storage described by this entry." + ::= { hrStorageEntry 3 } + + hrStorageAllocationUnits OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size, in bytes, of the data objects allocated + from this pool. If this entry is monitoring + sectors, blocks, buffers, or packets, for example, + this number will commonly be greater than one. + Otherwise this number will typically be one." + ::= { hrStorageEntry 4 } + + hrStorageSize OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The size of the storage represented by this entry, + in units of hrStorageAllocationUnits." + ::= { hrStorageEntry 5 } + + hrStorageUsed OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of the storage represented by this + entry that is allocated, in units of + hrStorageAllocationUnits." + ::= { hrStorageEntry 6 } + + hrStorageAllocationFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of requests for storage represented by + this entry that could not be honored due to not + enough storage. It should be noted that as this + object has a SYNTAX of Counter, that it does not + have a defined initial value. However, it is + recommended that this object be initialized to + zero." + ::= { hrStorageEntry 7 } + + + -- The Host Resources Device Group + -- + -- Implementation of this group is mandatory for all host systems. + -- + -- The device group is useful for identifying and diagnosing the + -- devices on a system. The hrDeviceTable contains common + -- information for any type of device. In addition, some devices + -- have device-specific tables for more detailed information. More + -- such tables may be defined in the future for other device types. + + -- Registration for some device types, for use with hrDeviceType + hrDeviceTypes OBJECT IDENTIFIER ::= { hrDevice 1 } + + hrDeviceOther OBJECT IDENTIFIER ::= { hrDeviceTypes 1 } + hrDeviceUnknown OBJECT IDENTIFIER ::= { hrDeviceTypes 2 } + hrDeviceProcessor OBJECT IDENTIFIER ::= { hrDeviceTypes 3 } + hrDeviceNetwork OBJECT IDENTIFIER ::= { hrDeviceTypes 4 } + hrDevicePrinter OBJECT IDENTIFIER ::= { hrDeviceTypes 5 } + hrDeviceDiskStorage OBJECT IDENTIFIER ::= { hrDeviceTypes 6 } + hrDeviceVideo OBJECT IDENTIFIER ::= { hrDeviceTypes 10 } + hrDeviceAudio OBJECT IDENTIFIER ::= { hrDeviceTypes 11 } + hrDeviceCoprocessor OBJECT IDENTIFIER ::= { hrDeviceTypes 12 } + hrDeviceKeyboard OBJECT IDENTIFIER ::= { hrDeviceTypes 13 } + hrDeviceModem OBJECT IDENTIFIER ::= { hrDeviceTypes 14 } + hrDeviceParallelPort OBJECT IDENTIFIER ::= { hrDeviceTypes 15 } + hrDevicePointing OBJECT IDENTIFIER ::= { hrDeviceTypes 16 } + hrDeviceSerialPort OBJECT IDENTIFIER ::= { hrDeviceTypes 17 } + hrDeviceTape OBJECT IDENTIFIER ::= { hrDeviceTypes 18 } + hrDeviceClock OBJECT IDENTIFIER ::= { hrDeviceTypes 19 } + hrDeviceVolatileMemory OBJECT IDENTIFIER ::= { hrDeviceTypes 20 } + hrDeviceNonVolatileMemory OBJECT IDENTIFIER ::= { hrDeviceTypes 21 } + + hrDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrDeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of devices contained by the + host." + ::= { hrDevice 2 } + + hrDeviceEntry OBJECT-TYPE + SYNTAX HrDeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one device contained by + the host. As an example, an instance of the + hrDeviceType object might be named hrDeviceType.3" + INDEX { hrDeviceIndex } + ::= { hrDeviceTable 1 } + + HrDeviceEntry ::= SEQUENCE { + hrDeviceIndex INTEGER, + hrDeviceType OBJECT IDENTIFIER, + hrDeviceDescr DisplayString, + hrDeviceID ProductID, + hrDeviceStatus INTEGER, + hrDeviceErrors Counter + } + + hrDeviceIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each device contained by the + host. The value for each device must remain + constant at least from one re-initialization of the + agent to the next re-initialization." + ::= { hrDeviceEntry 1 } + + hrDeviceType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the type of device. + + If this value is `hrDeviceProcessor { hrDeviceTypes + 3 }' then an entry exists in the hrProcessorTable + which corresponds to this device. + + If this value is `hrDeviceNetwork { hrDeviceTypes 4 + }', then an entry exists in the hrNetworkTable + which corresponds to this device. + + If this value is `hrDevicePrinter { hrDeviceTypes 5 + }', then an entry exists in the hrPrinterTable + which corresponds to this device. + + If this value is `hrDeviceDiskStorage { + hrDeviceTypes 6 }', then an entry exists in the + hrDiskStorageTable which corresponds to this + device." + ::= { hrDeviceEntry 2 } + + hrDeviceDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual description of this device, including + the device's manufacturer and revision, and + optionally, its serial number." + ::= { hrDeviceEntry 3 } + + hrDeviceID OBJECT-TYPE + SYNTAX ProductID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product ID for this device." + ::= { hrDeviceEntry 4 } + + hrDeviceStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + running(2), + warning(3), + testing(4), + down(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operational state of the device + described by this row of the table. A value + unknown(1) indicates that the current state of the + device is unknown. running(2) indicates that the + device is up and running and that no unusual error + conditions are known. The warning(3) state + indicates that agent has been informed of an + unusual error condition by the operational software + (e.g., a disk device driver) but that the device is + still 'operational'. An example would be high + number of soft errors on a disk. A value of + testing(4), indicates that the device is not + available for use because it is in the testing + state. The state of down(5) is used only when the + agent has been informed that the device is not + available for any use." + ::= { hrDeviceEntry 5 } + + + hrDeviceErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of errors detected on this device. It + should be noted that as this object has a SYNTAX + of Counter, that it does not have a defined + initial value. However, it is recommended that + this object be initialized to zero." + ::= { hrDeviceEntry 6 } + + hrProcessorTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrProcessorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of processors contained by + the host. + + Note that this table is potentially sparse: a + (conceptual) entry exists only if the correspondent + value of the hrDeviceType object is + `hrDeviceProcessor'." + ::= { hrDevice 3 } + + hrProcessorEntry OBJECT-TYPE + SYNTAX HrProcessorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one processor contained + by the host. The hrDeviceIndex in the index + represents the entry in the hrDeviceTable that + corresponds to the hrProcessorEntry. + + As an example of how objects in this table are + named, an instance of the hrProcessorFrwID object + might be named hrProcessorFrwID.3" + INDEX { hrDeviceIndex } + ::= { hrProcessorTable 1 } + + HrProcessorEntry ::= SEQUENCE { + hrProcessorFrwID ProductID, + hrProcessorLoad INTEGER + } + + hrProcessorFrwID OBJECT-TYPE + SYNTAX ProductID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product ID of the firmware associated with the + processor." + ::= { hrProcessorEntry 1 } + + hrProcessorLoad OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The average, over the last minute, of the + percentage of time that this processor was not + idle." + ::= { hrProcessorEntry 2 } + + hrNetworkTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrNetworkEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of network devices + contained by the host. + + Note that this table is potentially sparse: a + (conceptual) entry exists only if the correspondent + value of the hrDeviceType object is + `hrDeviceNetwork'." + ::= { hrDevice 4 } + + hrNetworkEntry OBJECT-TYPE + SYNTAX HrNetworkEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one network device + contained by the host. The hrDeviceIndex in the + index represents the entry in the hrDeviceTable + that corresponds to the hrNetworkEntry. + + As an example of how objects in this table are + named, an instance of the hrNetworkIfIndex object + might be named hrNetworkIfIndex.3" + INDEX { hrDeviceIndex } + ::= { hrNetworkTable 1 } + + HrNetworkEntry ::= SEQUENCE { + hrNetworkIfIndex INTEGER + } + + hrNetworkIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of ifIndex which corresponds to this + network device." + ::= { hrNetworkEntry 1 } + + hrPrinterTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrPrinterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of printers local to the + host. + + Note that this table is potentially sparse: a + (conceptual) entry exists only if the correspondent + value of the hrDeviceType object is + `hrDevicePrinter'." + ::= { hrDevice 5 } + + hrPrinterEntry OBJECT-TYPE + SYNTAX HrPrinterEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one printer local to the + host. The hrDeviceIndex in the index represents + the entry in the hrDeviceTable that corresponds to + the hrPrinterEntry. + + As an example of how objects in this table are + named, an instance of the hrPrinterStatus object + might be named hrPrinterStatus.3" + INDEX { hrDeviceIndex } + ::= { hrPrinterTable 1 } + + HrPrinterEntry ::= SEQUENCE { + hrPrinterStatus INTEGER, + hrPrinterDetectedErrorState OCTET STRING + } + + hrPrinterStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + idle(3), + printing(4), + warmup(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current status of this printer device. When + in the idle(1), printing(2), or warmup(3) state, + the corresponding hrDeviceStatus should be + running(2) or warning(3). When in the unknown + state, the corresponding hrDeviceStatus should be + unknown(1)." + ::= { hrPrinterEntry 1 } + + hrPrinterDetectedErrorState OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object represents any error conditions + detected by the printer. The error conditions are + encoded as bits in an octet string, with the + following definitions: + + Condition Bit # hrDeviceStatus + + lowPaper 0 warning(3) + noPaper 1 down(5) + lowToner 2 warning(3) + noToner 3 down(5) + doorOpen 4 down(5) + jammed 5 down(5) + offline 6 down(5) + serviceRequested 7 warning(3) + + If multiple conditions are currently detected and + the hrDeviceStatus would not otherwise be + unknown(1) or testing(4), the hrDeviceStatus shall + correspond to the worst state of those indicated, + where down(5) is worse than warning(3) which is + worse than running(2). + + Bits are numbered starting with the most + significant bit of the first byte being bit 0, the + least significant bit of the first byte being bit + 7, the most significant bit of the second byte + being bit 8, and so on. A one bit encodes that + the condition was detected, while a zero bit + encodes that the condition was not detected. + + This object is useful for alerting an operator to + specific warning or error conditions that may + occur, especially those requiring human + intervention." + ::= { hrPrinterEntry 2 } + + hrDiskStorageTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrDiskStorageEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of long-term storage + devices contained by the host. In particular, disk + devices accessed remotely over a network are not + included here. + + Note that this table is potentially sparse: a + (conceptual) entry exists only if the correspondent + value of the hrDeviceType object is + `hrDeviceDiskStorage'." + ::= { hrDevice 6 } + + hrDiskStorageEntry OBJECT-TYPE + SYNTAX HrDiskStorageEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one long-term storage + device contained by the host. The hrDeviceIndex in + the index represents the entry in the hrDeviceTable + that corresponds to the hrDiskStorageEntry. As an + example, an instance of the hrDiskStorageCapacity + object might be named hrDiskStorageCapacity.3" + INDEX { hrDeviceIndex } + ::= { hrDiskStorageTable 1 } + + HrDiskStorageEntry ::= SEQUENCE { + hrDiskStorageAccess INTEGER, + hrDiskStorageMedia INTEGER, + hrDiskStorageRemoveble Boolean, + hrDiskStorageCapacity KBytes + } + + hrDiskStorageAccess OBJECT-TYPE + SYNTAX INTEGER { + readWrite(1), + readOnly(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication if this long-term storage device is + readable and writable or only readable. This + should reflect the media type, any write-protect + mechanism, and any device configuration that + affects the entire device." + ::= { hrDiskStorageEntry 1 } + + hrDiskStorageMedia OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + hardDisk(3), + floppyDisk(4), + opticalDiskROM(5), + opticalDiskWORM(6), -- Write Once Read Many + opticalDiskRW(7), + ramDisk(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication of the type of media used in this + long-term storage device." + ::= { hrDiskStorageEntry 2 } + + hrDiskStorageRemoveble OBJECT-TYPE + SYNTAX Boolean + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Denotes whether or not the disk media may be + removed from the drive." + ::= { hrDiskStorageEntry 3 } + + hrDiskStorageCapacity OBJECT-TYPE + SYNTAX KBytes + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total size for this long-term storage device." + ::= { hrDiskStorageEntry 4 } + + hrPartitionTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrPartitionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of partitions for long-term + storage devices contained by the host. In + particular, partitions accessed remotely over a + network are not included here." + ::= { hrDevice 7 } + + hrPartitionEntry OBJECT-TYPE + SYNTAX HrPartitionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one partition. The + hrDeviceIndex in the index represents the entry in + the hrDeviceTable that corresponds to the + hrPartitionEntry. + + As an example of how objects in this table are + named, an instance of the hrPartitionSize object + might be named hrPartitionSize.3.1" + INDEX { hrDeviceIndex, hrPartitionIndex } + ::= { hrPartitionTable 1 } + + HrPartitionEntry ::= SEQUENCE { + hrPartitionIndex INTEGER, + hrPartitionLabel InternationalDisplayString, + hrPartitionID OCTET STRING, + hrPartitionSize KBytes, + hrPartitionFSIndex INTEGER + } + + hrPartitionIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each partition on this long- + term storage device. The value for each long-term + storage device must remain constant at least from + one re-initialization of the agent to the next re- + initialization." + ::= { hrPartitionEntry 1 } + + hrPartitionLabel OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual description of this partition." + ::= { hrPartitionEntry 2 } + + hrPartitionID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A descriptor which uniquely represents this + partition to the responsible operating system. On + some systems, this might take on a binary + representation." + ::= { hrPartitionEntry 3 } + + hrPartitionSize OBJECT-TYPE + SYNTAX KBytes + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of this partition." + ::= { hrPartitionEntry 4 } + + hrPartitionFSIndex OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index of the file system mounted on this + partition. If no file system is mounted on this + partition, then this value shall be zero. Note + that multiple partitions may point to one file + system, denoting that that file system resides on + those partitions. Multiple file systems may not + reside on one partition." + ::= { hrPartitionEntry 5 } + + -- The File System Table + hrFSTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrFSEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of file systems local to + this host or remotely mounted from a file server. + File systems that are in only one user's + environment on a multi-user system will not be + included in this table." + ::= { hrDevice 8 } + + hrFSEntry OBJECT-TYPE + SYNTAX HrFSEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one file system local to + this host or remotely mounted from a file server. + File systems that are in only one user's + environment on a multi-user system will not be + included in this table. + + As an example of how objects in this table are + named, an instance of the hrFSMountPoint object + might be named hrFSMountPoint.3" + INDEX { hrFSIndex } + ::= { hrFSTable 1 } + + -- Registration for some popular File System types, + -- for use with hrFSType. + + hrFSTypes OBJECT IDENTIFIER ::= { hrDevice 9 } + + hrFSOther OBJECT IDENTIFIER ::= { hrFSTypes 1 } + hrFSUnknown OBJECT IDENTIFIER ::= { hrFSTypes 2 } + hrFSBerkeleyFFS OBJECT IDENTIFIER ::= { hrFSTypes 3 } + hrFSSys5FS OBJECT IDENTIFIER ::= { hrFSTypes 4 } + -- DOS + hrFSFat OBJECT IDENTIFIER ::= { hrFSTypes 5 } + -- OS/2 High Performance File System + hrFSHPFS OBJECT IDENTIFIER ::= { hrFSTypes 6 } + -- Macintosh Hierarchical File System + hrFSHFS OBJECT IDENTIFIER ::= { hrFSTypes 7 } + -- Macintosh File System + hrFSMFS OBJECT IDENTIFIER ::= { hrFSTypes 8 } + -- Windows NT + hrFSNTFS OBJECT IDENTIFIER ::= { hrFSTypes 9 } + hrFSVNode OBJECT IDENTIFIER ::= { hrFSTypes 10 } + hrFSJournaled OBJECT IDENTIFIER ::= { hrFSTypes 11 } + -- CD File systems + hrFSiso9660 OBJECT IDENTIFIER ::= { hrFSTypes 12 } + hrFSRockRidge OBJECT IDENTIFIER ::= { hrFSTypes 13 } + hrFSNFS OBJECT IDENTIFIER ::= { hrFSTypes 14 } + hrFSNetware OBJECT IDENTIFIER ::= { hrFSTypes 15 } + -- Andrew File System + hrFSAFS OBJECT IDENTIFIER ::= { hrFSTypes 16 } + -- OSF DCE Distributed File System + hrFSDFS OBJECT IDENTIFIER ::= { hrFSTypes 17 } + hrFSAppleshare OBJECT IDENTIFIER ::= { hrFSTypes 18 } + hrFSRFS OBJECT IDENTIFIER ::= { hrFSTypes 19 } + -- Data General + hrFSDGCFS OBJECT IDENTIFIER ::= { hrFSTypes 20 } + -- SVR4 Boot File System + hrFSBFS OBJECT IDENTIFIER ::= { hrFSTypes 21 } + + HrFSEntry ::= SEQUENCE { + hrFSIndex INTEGER, + hrFSMountPoint InternationalDisplayString, + hrFSRemoteMountPoint InternationalDisplayString, + hrFSType OBJECT IDENTIFIER, + hrFSAccess INTEGER, + hrFSBootable Boolean, + hrFSStorageIndex INTEGER, + hrFSLastFullBackupDate DateAndTime, + hrFSLastPartialBackupDate DateAndTime + } + + hrFSIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each file system local to this + host. The value for each file system must remain + constant at least from one re-initialization of + the agent to the next re-initialization." + ::= { hrFSEntry 1 } + + hrFSMountPoint OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE(0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The path name of the root of this file system." + ::= { hrFSEntry 2 } + + hrFSRemoteMountPoint OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE(0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the name and/or address of the + server that this file system is mounted from. + This may also include parameters such as the mount + point on the remote file system. If this is not a + remote file system, this string should have a + length of zero." + ::= { hrFSEntry 3 } + + hrFSType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the type of + this file system." + ::= { hrFSEntry 4 } + + hrFSAccess OBJECT-TYPE + SYNTAX INTEGER { + readWrite(1), + readOnly(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An indication if this file system is logically + configured by the operating system to be readable + and writable or only readable. This does not + represent any local access-control policy, except + one that is applied to the file system as a whole." + ::= { hrFSEntry 5 } + + hrFSBootable OBJECT-TYPE + SYNTAX Boolean + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A flag indicating whether this file system is + bootable." + ::= { hrFSEntry 6 } + + hrFSStorageIndex OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index of the hrStorageEntry that represents + information about this file system. If there is + no such information available, then this value + shall be zero. The relevant storage entry will be + useful in tracking the percent usage of this file + system and diagnosing errors that may occur when + it runs out of space." + ::= { hrFSEntry 7 } + + hrFSLastFullBackupDate OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The last date at which this complete file system + was copied to another storage device for backup. + This information is useful for ensuring that + backups are being performed regularly. + + If this information is not known, then this + variable shall have the value corresponding to + January 1, year 0000, 00:00:00.0, which is encoded + as (hex)'00 00 01 01 00 00 00 00'." + ::= { hrFSEntry 8 } + + hrFSLastPartialBackupDate OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The last date at which a portion of this file + system was copied to another storage device for + backup. This information is useful for ensuring + that backups are being performed regularly. + + If this information is not known, then this + variable shall have the value corresponding to + January 1, year 0000, 00:00:00.0, which is encoded + as (hex)'00 00 01 01 00 00 00 00'." + ::= { hrFSEntry 9 } + + + -- The Host Resources Running Software Group + -- + -- Implementation of this group is optional. + -- + -- The hrSWRunTable contains an entry for each distinct piece of + -- software that is running or loaded into physical or virtual + -- memory in preparation for running. This includes the host's + -- operating system, device drivers, and applications. + + hrSWOSIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the hrSWRunIndex for the + hrSWRunEntry that represents the primary operating + system running on this host. This object is + useful for quickly and uniquely identifying that + primary operating system." + ::= { hrSWRun 1 } + + hrSWRunTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrSWRunEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of software running on the + host." + ::= { hrSWRun 2 } + + hrSWRunEntry OBJECT-TYPE + SYNTAX HrSWRunEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for one piece of software + running on the host Note that because the installed + software table only contains information for + software stored locally on this host, not every + piece of running software will be found in the + installed software table. This is true of software + that was loaded and run from a non-local source, + such as a network-mounted file system. + + As an example of how objects in this table are + named, an instance of the hrSWRunName object might + be named hrSWRunName.1287" + INDEX { hrSWRunIndex } + ::= { hrSWRunTable 1 } + + HrSWRunEntry ::= SEQUENCE { + hrSWRunIndex INTEGER, + hrSWRunName InternationalDisplayString, + hrSWRunID ProductID, + hrSWRunPath InternationalDisplayString, + hrSWRunParameters InternationalDisplayString, + hrSWRunType INTEGER, + hrSWRunStatus INTEGER + } + + hrSWRunIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each piece of software running + on the host. Wherever possible, this should be the + system's native, unique identification number." + ::= { hrSWRunEntry 1 } + + hrSWRunName OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual description of this running piece of + software, including the manufacturer, revision, + and the name by which it is commonly known. If + this software was installed locally, this should be + the same string as used in the corresponding + hrSWInstalledName." + ::= { hrSWRunEntry 2 } + + hrSWRunID OBJECT-TYPE + SYNTAX ProductID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product ID of this running piece of software." + ::= { hrSWRunEntry 3 } + + hrSWRunPath OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE(0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the location on long-term storage + (e.g. a disk drive) from which this software was + loaded." + ::= { hrSWRunEntry 4 } + + hrSWRunParameters OBJECT-TYPE + SYNTAX InternationalDisplayString (SIZE(0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A description of the parameters supplied to this + software when it was initially loaded." + ::= { hrSWRunEntry 5 } + + hrSWRunType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + operatingSystem(2), + deviceDriver(3), + application(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of this software." + ::= { hrSWRunEntry 6 } + + hrSWRunStatus OBJECT-TYPE + SYNTAX INTEGER { + running(1), + runnable(2), -- waiting for resource (CPU, memory, IO) + notRunnable(3), -- loaded but waiting for event + invalid(4) -- not loaded + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of this running piece of software. + Setting this value to invalid(4) shall cause this + software to stop running and to be unloaded." + ::= { hrSWRunEntry 7 } + + -- The Host Resources Running Software Performance Group + -- Implementation of this group is optional. + -- + -- The hrSWRunPerfTable contains an entry corresponding to + -- each entry in the hrSWRunTable. + + + hrSWRunPerfTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrSWRunPerfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of running software + performance metrics." + ::= { hrSWRunPerf 1 } + + hrSWRunPerfEntry OBJECT-TYPE + SYNTAX HrSWRunPerfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry containing software + performance metrics. As an example, an instance + of the hrSWRunPerfCPU object might be named + hrSWRunPerfCPU.1287" + INDEX { hrSWRunIndex } -- This table augments information in + -- the hrSWRunTable. + ::= { hrSWRunPerfTable 1 } + + HrSWRunPerfEntry ::= SEQUENCE { + hrSWRunPerfCPU INTEGER, + hrSWRunPerfMem KBytes + } + + hrSWRunPerfCPU OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of centi-seconds of the total system's + CPU resources consumed by this process. Note that + on a multi-processor system, this value may + increment by more than one centi-second in one + centi-second of real (wall clock) time." + ::= { hrSWRunPerfEntry 1 } + + hrSWRunPerfMem OBJECT-TYPE + SYNTAX KBytes + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total amount of real system memory allocated + to this process." + ::= { hrSWRunPerfEntry 2 } + + + -- The Host Resources Installed Software Group + -- + -- Implementation of this group is optional. + -- + -- The hrSWInstalledTable contains an entry for each piece + -- of software installed in long-term storage (e.g. a disk + -- drive) locally on this host. Note that this does not + -- include software loadable remotely from a network + -- server. + -- + -- This table is useful for identifying and inventorying + -- software on a host and for diagnosing incompatibility + -- and version mismatch problems between various pieces + -- of hardware and software. + + hrSWInstalledLastChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when an entry in the + hrSWInstalledTable was last added, renamed, or + deleted. Because this table is likely to contain + many entries, polling of this object allows a + management station to determine when re-downloading + of the table might be useful." + ::= { hrSWInstalled 1 } + + hrSWInstalledLastUpdateTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the hrSWInstalledTable + was last completely updated. Because caching of + this data will be a popular implementation + strategy, retrieval of this object allows a + management station to obtain a guarantee that no + data in this table is older than the indicated + time." + ::= { hrSWInstalled 2 } + + hrSWInstalledTable OBJECT-TYPE + SYNTAX SEQUENCE OF HrSWInstalledEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The (conceptual) table of software installed on + this host." + ::= { hrSWInstalled 3 } + + hrSWInstalledEntry OBJECT-TYPE + SYNTAX HrSWInstalledEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A (conceptual) entry for a piece of software + installed on this host. + + As an example of how objects in this table are + named, an instance of the hrSWInstalledName object + might be named hrSWInstalledName.96" + INDEX { hrSWInstalledIndex } + ::= { hrSWInstalledTable 1 } + + HrSWInstalledEntry ::= SEQUENCE { + hrSWInstalledIndex INTEGER, + hrSWInstalledName DisplayString, + hrSWInstalledID ProductID, + hrSWInstalledType INTEGER, + hrSWInstalledDate DateAndTime + } + + hrSWInstalledIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each piece of software + installed on the host. This value shall be in the + range from 1 to the number of pieces of software + installed on the host." + ::= { hrSWInstalledEntry 1 } + + hrSWInstalledName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A textual description of this installed piece of + software, including the manufacturer, revision, the + name by which it is commonly known, and optionally, + its serial number." + ::= { hrSWInstalledEntry 2 } + + hrSWInstalledID OBJECT-TYPE + SYNTAX ProductID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product ID of this installed piece of + software." + ::= { hrSWInstalledEntry 3 } + + hrSWInstalledType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + operatingSystem(2), + deviceDriver(3), + application(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of this software." + ::= { hrSWInstalledEntry 4 } + + hrSWInstalledDate OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The last-modification date of this application as + it would appear in a directory listing." + ::= { hrSWInstalledEntry 5 } + +END diff --git a/pandora_console/attachment/mibs/IANAifType-MIB b/pandora_console/attachment/mibs/IANAifType-MIB new file mode 100644 index 0000000000..350cedb3a9 --- /dev/null +++ b/pandora_console/attachment/mibs/IANAifType-MIB @@ -0,0 +1,119 @@ +-- Changes to rfc1573b - IANAifType-MIB +-- Extracted from RFC1573 - the combined IANAifType-MIB & IF-MIB +-- Added the following import: mib-2 from RFC1213-MIB. +-- Removed the following unneeded import: OBJECT-TYPE from +-- SNMPv2-SMI. +-- dperkins@scruznet.com + + IANAifType-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY FROM SNMPv2-SMI + mib-2 FROM RFC1213-MIB + TEXTUAL-CONVENTION FROM SNMPv2-TC; + + ianaifType MODULE-IDENTITY + LAST-UPDATED "9311082155Z" + ORGANIZATION "IANA" + CONTACT-INFO + + " Internet Assigned Numbers Authority + + Postal: USC/Information Sciences Institute + 4676 Admiralty Way, Marina del Rey, CA 90292 + + Tel: +1 310 822 1511 + E-Mail: iana@isi.edu" + DESCRIPTION + "The MIB module which defines the IANAifType textual + convention, and thus the enumerated values of the + ifType object defined in MIB-II's ifTable." + ::= { mib-2 30 } + + + IANAifType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This data type is used as the syntax of the ifType + object in the (updated) definition of MIB-II's + ifTable. + + The definition of this textual convention with the + addition of newly assigned values is published + periodically by the IANA, in either the Assigned + Numbers RFC, or some derivative of it specific to + Internet Network Management number assignments. (The + latest arrangements can be obtained by contacting the + IANA.) + + Requests for new values should be made to IANA via + email (iana@isi.edu). + + The relationship between the assignment of ifType + values and of OIDs to particular media-specific MIBs + is solely the purview of IANA and is subject to change + without notice. Quite often, a media-specific MIB's + OID-subtree assignment within MIB-II's 'transmission' + subtree will be the same as its ifType value. + However, in some circumstances this will not be the + case, and implementors must not pre-assume any + specific relationship between ifType values and + transmission subtree OIDs." + SYNTAX INTEGER { + other(1), -- none of the following + regular1822(2), + hdh1822(3), + ddnX25(4), + rfc877x25(5), + ethernetCsmacd(6), + iso88023Csmacd(7), + iso88024TokenBus(8), + iso88025TokenRing(9), + iso88026Man(10), + starLan(11), + proteon10Mbit(12), + proteon80Mbit(13), + hyperchannel(14), + fddi(15), + lapb(16), + sdlc(17), + ds1(18), -- DS1/E1 (RFC 1406) + e1(19), -- obsolete + basicISDN(20), + primaryISDN(21), + propPointToPointSerial(22), -- proprietary serial + ppp(23), + softwareLoopback(24), + eon(25), -- CLNP over IP (RFC 1070) + ethernet3Mbit(26), + nsip(27), -- XNS over IP + slip(28), -- generic SLIP + ultra(29), -- ULTRA technologies + ds3(30), -- T-3 + sip(31), -- SMDS + frameRelay(32), -- DTE only + rs232(33), + para(34), -- parallel-port + arcnet(35), -- arcnet + arcnetPlus(36), -- arcnet plus + atm(37), -- ATM cells + miox25(38), + sonet(39), -- SONET or SDH + x25ple(40), + iso88022llc(41), + localTalk(42), + smdsDxi(43), + frameRelayService(44), -- Frame relay DCE + v35(45), + hssi(46), + hippi(47), + modem(48), -- Generic modem + aal5(49), -- AAL5 over ATM + sonetPath(50), + sonetVT(51), + smdsIcip(52), -- SMDS InterCarrier Interface + propVirtual(53), -- proprietary virtual/internal + propMultiplexor(54) -- proprietary multiplexing + } + + END diff --git a/pandora_console/attachment/mibs/IANAifType-MIB.txt b/pandora_console/attachment/mibs/IANAifType-MIB.txt new file mode 100644 index 0000000000..6f4fb43321 --- /dev/null +++ b/pandora_console/attachment/mibs/IANAifType-MIB.txt @@ -0,0 +1,388 @@ +-- ***************************************************************** +-- IANAifType-MIB.my: IANA Interface Type MIB +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-1997, 1998, 1999, 2000 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- +-- The following mib was extracted from RFC 1573 +-- +-- DISCLAIMER +-- *********** +-- This is merely a copy of the IANA Interface Type MIB, put out by IANA. +-- +-- In case of differences between this file and the file available +-- at ftp://venera.isi.edu/mib/ianaiftype.mib, then the version at +-- that URL should be used instead of this file. +-- + + IANAifType-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, mib-2 FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC; + + ianaifType MODULE-IDENTITY + LAST-UPDATED "200201040000Z" -- Jan 4, 2002 + ORGANIZATION "IANA" + CONTACT-INFO " Internet Assigned Numbers Authority + + Postal: ICANN + 4676 Admiralty Way, Suite 330 + Marina del Rey, CA 90292 + + Tel: +1 310 823 9358 + E-Mail: iana@iana.org" + + DESCRIPTION "This MIB module defines the IANAifType Textual + Convention, and thus the enumerated values of + the ifType object defined in MIB-II's ifTable." + + REVISION "200201040000Z" -- Jan 4, 2002 + DESCRIPTION "Registration of new IANAifTypes + 211, 212 and 213." + + REVISION "200112200000Z" -- Dec 20, 2001 + DESCRIPTION "Registration of new IANAifTypes + 209 and 210." + + REVISION "200111150000Z" -- Nov 15, 2001 + DESCRIPTION "Registration of new IANAifTypes + 207 and 208." + + + REVISION "200111060000Z" -- Nov 6, 2001 + DESCRIPTION "Registration of new IANAifType + 206." + + + REVISION "200111020000Z" -- Nov 2, 2001 + DESCRIPTION "Registration of new IANAifType + 205." + + + REVISION "200110160000Z" -- Oct 16, 2001 + DESCRIPTION "Registration of new IANAifTypes + 199, 200, 201, 202, 203, and 204." + + + REVISION "200109190000Z" -- Sept 19, 2001 + DESCRIPTION "Registration of new IANAifType + 198." + + REVISION "200105110000Z" -- May 11, 2001 + DESCRIPTION "Registration of new IANAifType + 197." + + + REVISION "200101120000Z" -- Jan 12, 2001 + DESCRIPTION "Registration of new IANAifTypes + 195 and 196." + + REVISION "200012190000Z" -- Dec 19, 2000 + DESCRIPTION "Registration of new IANAifTypes + 193 and 194." + + REVISION "200012070000Z" -- Dec 07, 2000 + DESCRIPTION "Registration of new IANAifTypes + 191 and 192." + + REVISION "200012040000Z" -- Dec 04, 2000 + DESCRIPTION "Registration of new IANAifType + 190." + + REVISION "200010170000Z" -- Oct 17, 2000 + DESCRIPTION "Registration of new IANAifTypes + 188 and 189." + + REVISION "200010020000Z" -- Oct 02, 2000 + DESCRIPTION "Registration of new IANAifType 187." + + REVISION "200009010000Z" -- Sept 01, 2000 + DESCRIPTION "Registration of new IANAifTypes + 184, 185, and 186." + + REVISION "200008240000Z" -- Aug 24, 2000 + DESCRIPTION "Registration of new IANAifType 183." + + REVISION "200008230000Z" -- Aug 23, 2000 + DESCRIPTION "Registration of new IANAifTypes + 174-182." + + REVISION "200008220000Z" -- Aug 22, 2000 + DESCRIPTION "Registration of new IANAifTypes 170, + 171, 172 and 173." + + REVISION "200004250000Z" -- Apr 25, 2000 + DESCRIPTION "Registration of new IANAifTypes 168 and 169." + + + REVISION "200003060000Z" -- Mar 6, 2000 + DESCRIPTION "Fixed a missing semi-colon in the IMPORT. + Also cleaned up the REVISION log a bit. + It is not complete, but from now on it will + be maintained and kept up to date with each + change to this MIB module." + + REVISION "199910081430Z" -- Oct 08, 1999 + DESCRIPTION "Include new name assignments up to cnr(85). + This is the first version available via the WWW + at: ftp://ftp.isi.edu/mib/ianaiftype.mib" + + REVISION "199401310000Z" -- Jan 31, 1994 + DESCRIPTION "Initial version of this MIB as published in + RFC 1573." + + ::= { mib-2 30 } + + + IANAifType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "This data type is used as the syntax of the ifType + object in the (updated) definition of MIB-II's + ifTable. + + The definition of this textual convention with the + addition of newly assigned values is published + periodically by the IANA, in either the Assigned + Numbers RFC, or some derivative of it specific to + Internet Network Management number assignments. (The + latest arrangements can be obtained by contacting the + IANA.) + + Requests for new values should be made to IANA via + email (iana@iana.org). + + The relationship between the assignment of ifType + values and of OIDs to particular media-specific MIBs + is solely the purview of IANA and is subject to change + without notice. Quite often, a media-specific MIB's + OID-subtree assignment within MIB-II's 'transmission' + subtree will be the same as its ifType value. + However, in some circumstances this will not be the + case, and implementors must not pre-assume any + specific relationship between ifType values and + transmission subtree OIDs." + SYNTAX INTEGER { + other(1), -- none of the following + regular1822(2), + hdh1822(3), + ddnX25(4), + rfc877x25(5), + ethernetCsmacd(6), + iso88023Csmacd(7), + iso88024TokenBus(8), + iso88025TokenRing(9), + iso88026Man(10), + starLan(11), + proteon10Mbit(12), + proteon80Mbit(13), + hyperchannel(14), + fddi(15), + lapb(16), + sdlc(17), + ds1(18), -- DS1-MIB + e1(19), -- Obsolete see DS1-MIB + basicISDN(20), + primaryISDN(21), + propPointToPointSerial(22), -- proprietary serial + ppp(23), + softwareLoopback(24), + eon(25), -- CLNP over IP + ethernet3Mbit(26), + nsip(27), -- XNS over IP + slip(28), -- generic SLIP + ultra(29), -- ULTRA technologies + ds3(30), -- DS3-MIB + sip(31), -- SMDS, coffee + frameRelay(32), -- DTE only. + rs232(33), + para(34), -- parallel-port + arcnet(35), -- arcnet + arcnetPlus(36), -- arcnet plus + atm(37), -- ATM cells + miox25(38), + sonet(39), -- SONET or SDH + x25ple(40), + iso88022llc(41), + localTalk(42), + smdsDxi(43), + frameRelayService(44), -- FRNETSERV-MIB + v35(45), + hssi(46), + hippi(47), + modem(48), -- Generic modem + aal5(49), -- AAL5 over ATM + sonetPath(50), + sonetVT(51), + smdsIcip(52), -- SMDS InterCarrier Interface + propVirtual(53), -- proprietary virtual/internal + propMultiplexor(54),-- proprietary multiplexing + ieee80212(55), -- 100BaseVG + fibreChannel(56), -- Fibre Channel + hippiInterface(57), -- HIPPI interfaces + frameRelayInterconnect(58), -- Obsolete use either + -- frameRelay(32) or + -- frameRelayService(44). + aflane8023(59), -- ATM Emulated LAN for 802.3 + aflane8025(60), -- ATM Emulated LAN for 802.5 + cctEmul(61), -- ATM Emulated circuit + fastEther(62), -- Fast Ethernet (100BaseT) + isdn(63), -- ISDN and X.25 + v11(64), -- CCITT V.11/X.21 + v36(65), -- CCITT V.36 + g703at64k(66), -- CCITT G703 at 64Kbps + g703at2mb(67), -- Obsolete see DS1-MIB + qllc(68), -- SNA QLLC + fastEtherFX(69), -- Fast Ethernet (100BaseFX) + channel(70), -- channel + ieee80211(71), -- radio spread spectrum + ibm370parChan(72), -- IBM System 360/370 OEMI Channel + escon(73), -- IBM Enterprise Systems Connection + dlsw(74), -- Data Link Switching + isdns(75), -- ISDN S/T interface + isdnu(76), -- ISDN U interface + lapd(77), -- Link Access Protocol D + ipSwitch(78), -- IP Switching Objects + rsrb(79), -- Remote Source Route Bridging + atmLogical(80), -- ATM Logical Port + ds0(81), -- Digital Signal Level 0 + ds0Bundle(82), -- group of ds0s on the same ds1 + bsc(83), -- Bisynchronous Protocol + async(84), -- Asynchronous Protocol + cnr(85), -- Combat Net Radio + iso88025Dtr(86), -- ISO 802.5r DTR + eplrs(87), -- Ext Pos Loc Report Sys + arap(88), -- Appletalk Remote Access Protocol + propCnls(89), -- Proprietary Connectionless Protocol + hostPad(90), -- CCITT-ITU X.29 PAD Protocol + termPad(91), -- CCITT-ITU X.3 PAD Facility + frameRelayMPI(92), -- Multiproto Interconnect over FR + x213(93), -- CCITT-ITU X213 + adsl(94), -- Asymmetric Digital Subscriber Loop + radsl(95), -- Rate-Adapt. Digital Subscriber Loop + sdsl(96), -- Symmetric Digital Subscriber Loop + vdsl(97), -- Very H-Speed Digital Subscrib. Loop + iso88025CRFPInt(98), -- ISO 802.5 CRFP + myrinet(99), -- Myricom Myrinet + voiceEM(100), -- voice recEive and transMit + voiceFXO(101), -- voice Foreign Exchange Office + voiceFXS(102), -- voice Foreign Exchange Station + voiceEncap(103), -- voice encapsulation + voiceOverIp(104), -- voice over IP encapsulation + atmDxi(105), -- ATM DXI + atmFuni(106), -- ATM FUNI + atmIma (107), -- ATM IMA + pppMultilinkBundle(108), -- PPP Multilink Bundle + ipOverCdlc (109), -- IBM ipOverCdlc + ipOverClaw (110), -- IBM Common Link Access to Workstn + stackToStack (111), -- IBM stackToStack + virtualIpAddress (112), -- IBM VIPA + mpc (113), -- IBM multi-protocol channel support + ipOverAtm (114), -- IBM ipOverAtm + iso88025Fiber (115), -- ISO 802.5j Fiber Token Ring + tdlc (116), -- IBM twinaxial data link control + gigabitEthernet (117), -- Gigabit Ethernet + hdlc (118), -- HDLC + lapf (119), -- LAP F + v37 (120), -- V.37 + x25mlp (121), -- Multi-Link Protocol + x25huntGroup (122), -- X25 Hunt Group + trasnpHdlc (123), -- Transp HDLC + interleave (124), -- Interleave channel + fast (125), -- Fast channel + ip (126), -- IP (for APPN HPR in IP networks) + docsCableMaclayer (127), -- CATV Mac Layer + docsCableDownstream (128), -- CATV Downstream interface + docsCableUpstream (129), -- CATV Upstream interface + a12MppSwitch (130), -- Avalon Parallel Processor + tunnel (131), -- Encapsulation interface + coffee (132), -- coffee pot + ces (133), -- Circuit Emulation Service + atmSubInterface (134), -- ATM Sub Interface + l2vlan (135), -- Layer 2 Virtual LAN using 802.1Q + l3ipvlan (136), -- Layer 3 Virtual LAN using IP + l3ipxvlan (137), -- Layer 3 Virtual LAN using IPX + digitalPowerline (138), -- IP over Power Lines + mediaMailOverIp (139), -- Multimedia Mail over IP + dtm (140), -- Dynamic syncronous Transfer Mode + dcn (141), -- Data Communications Network + ipForward (142), -- IP Forwarding Interface + msdsl (143), -- Multi-rate Symmetric DSL + ieee1394 (144), -- IEEE1394 High Performance Serial Bus + if-gsn (145), -- HIPPI-6400 + dvbRccMacLayer (146), -- DVB-RCC MAC Layer + dvbRccDownstream (147), -- DVB-RCC Downstream Channel + dvbRccUpstream (148), -- DVB-RCC Upstream Channel + atmVirtual (149), -- ATM Virtual Interface + mplsTunnel (150), -- MPLS Tunnel Virtual Interface + srp (151), -- Spatial Reuse Protocol + voiceOverAtm (152), -- Voice Over ATM + voiceOverFrameRelay (153), -- Voice Over Frame Relay + idsl (154), -- Digital Subscriber Loop over ISDN + compositeLink (155), -- Avici Composite Link Interface + ss7SigLink (156), -- SS7 Signaling Link + propWirelessP2P (157), -- Prop. P2P wireless interface + frForward (158), -- Frame Forward Interface + rfc1483 (159), -- Multiprotocol over ATM AAL5 + usb (160), -- USB Interface + ieee8023adLag (161), -- IEEE 802.3ad Link Aggregate + bgppolicyaccounting (162), -- BGP Policy Accounting + frf16MfrBundle (163), -- FRF .16 Multilink Frame Relay + h323Gatekeeper (164), -- H323 Gatekeeper + h323Proxy (165), -- H323 Voice and Video Proxy + mpls (166), -- MPLS + mfSigLink (167), -- Multi-frequency signaling link + hdsl2 (168), -- High Bit-Rate DSL - 2nd generation + shdsl (169), -- Multirate HDSL2 + ds1FDL (170), -- Facility Data Link 4Kbps on a DS1 + pos (171), -- Packet over SONET/SDH Interface + dvbAsiIn (172), -- DVB-ASI Input + dvbAsiOut (173), -- DVB-ASI Output + plc (174), -- Power Line Communtications + nfas (175), -- Non Facility Associated Signaling + tr008 (176), -- TR008 + gr303RDT (177), -- Remote Digital Terminal + gr303IDT (178), -- Integrated Digital Terminal + isup (179), -- ISUP + propDocsWirelessMaclayer (180), -- prop/Maclayer + propDocsWirelessDownstream (181), -- prop/Downstream + propDocsWirelessUpstream (182), -- prop/Upstream + hiperlan2 (183), -- HIPERLAN Type 2 Radio Interface + propBWAp2Mp (184), -- PropBroadbandWirelessAccesspt2multipt + sonetOverheadChannel (185), -- SONET Overhead Channel + digitalWrapperOverheadChannel (186), -- Digital Wrapper + aal2 (187), -- ATM adaptation layer 2 + radioMAC (188), -- MAC layer over radio links + atmRadio (189), -- ATM over radio links + imt (190), -- Inter Machine Trunks + mvl (191), -- Multiple Virtual Lines DSL + reachDSL (192), -- Long Rach DSL + frDlciEndPt (193), -- Frame Relay DLCI End Point + atmVciEndPt (194), -- ATM VCI End Point + opticalChannel (195), -- Optical Channel + opticalTransport (196), -- Optical Transport + propAtm (197), -- Proprietary ATM + voiceOverCable (198), -- Voice Over Cable Interface + infiniband (199), -- Infiniband + teLink (200), -- TE Link + q2931 (201), -- Q.2931 + virtualTg (202), -- Virtual Trunk Group + sipTg (203), -- SIP Trunk Group + sipSig (204), -- SIP Signaling + docsCableUpstreamChannel (205), -- CATV Upstream Channel + econet (206), -- Acorn Econet + pon155 (207), -- FSAN 155Mb Symetrical PON interface + pon622 (208), -- FSAN622Mb Symetrical PON interface + bridge (209), -- Transparent bridge interface + linegroup (210), -- Interface common to multiple lines + voiceEMFGD (211), -- voice E&M Feature Group D + voiceFGDEANA (212), -- voice FGD Exchange Access North American + voiceDID (213) -- voice Direct Inward Dialing +} + + END diff --git a/pandora_console/attachment/mibs/IDRAC-MIB-SMIv2 b/pandora_console/attachment/mibs/IDRAC-MIB-SMIv2 new file mode 100644 index 0000000000..78d54af5e5 --- /dev/null +++ b/pandora_console/attachment/mibs/IDRAC-MIB-SMIv2 @@ -0,0 +1,13303 @@ +------------------------------------------------------------------------------ +-- +-- Title: iDRAC MIB +-- +-- Version: 3.2 +-- Date: 19 January 2015 +-- +-- Description: This MIB defines MIB objects that make iDRAC data available +-- to SNMP management applications. +-- +-- Note that the iDRAC MIB file is published in both types of SMI (Structure +-- of Managed Information) notations: SMIv1 and SMIv2. This copy of the iDRAC +-- MIB file is the SMIv2 version of the MIB file. +-- +-- Copyright (c) 2012-2015 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- = trap ID +-- +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- Begin MIB +------------------------------------------------------------------------------ + +IDRAC-MIB-SMIv2 DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, enterprises + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString + FROM SNMPv2-TC; + +outOfBandGroup MODULE-IDENTITY + LAST-UPDATED "201501190000Z" -- 19 January 2015 + ORGANIZATION "Dell Inc." + CONTACT-INFO + "Visit the Dell Support website at: support.dell.com" + DESCRIPTION + "This MIB defines MIB objects that make out-of-band iDRAC data + available to SNMP management applications. It also defines the traps + that iDRAC supports." + -- Revision history, in reverse chronological order. + + REVISION "201501190000Z" -- 19 January 2015 + DESCRIPTION + "Version: 3.2 + * Renamed powerSupplyInputVoltage to powerSupplyMaximumInputVoltage + and updated description. + * Added powerSupplyCurrentInputVoltage. + * Updated memoryDeviceSpeed description. + * Added memoryDeviceCurrentOperatingSpeed. + * Removed hyphens from enumeration value names. + * Added alertRacFQDN variable to all traps. + * Added the following traps: + alertCableFailure + alertCMCWarning + alertCMCFailure + alertIOVirtualizationFailure + alertLinkStatusInformation + alertLinkStatusWarning + alertLinkStatusFailure + alertSecurityWarning + alertSoftwareConfigurationInformation + alertSoftwareConfigurationWarning + alertSoftwareConfigurationFailure + alertStorageSecurityInformation + alertStorageSecurityWarning + alertStorageSecurityFailure + alertSoftwareChangeUpdateWarning + alertCMCAuditInformation + alertCMCAuditWarning + alertCMCAuditFailure + alertPCIDeviceAuditWarning + alertPowerSupplyAuditWarning + alertPowerSupplyAuditFailure + alertPowerUsageAuditInformation + alertPowerUsageAuditWarning + alertPowerUsageAuditFailure + alertIPAddressConfigurationInformation + alertJobControlConfigurationInformation + alertPCIDeviceConfigurationInformation + alertSecurityConfigurationWarning + alertSWCConfigurationWarning + alertSWCConfigurationFailure + " + + REVISION "201410030000Z" -- 03 October 2014 + DESCRIPTION + "Version: 3.1 + * Added deviceTypeIsDDR4 to MemoryDeviceTypeEnum." + + REVISION "201407070000Z" -- 07 July 2014 + DESCRIPTION + "Version: 3.0 + * Updated physicalDiskPowerState. + * Updated RacTypeEnum for iDRAC8. + * Added alertRACInformation trap. + * Added alertSystemPerformanceWarning trap. + * Added alertUserTrackingWarning trap. + * Added physicalDiskProtocolVersion. + * Added physicalDiskPCIeNegotiatedLinkWidth. + * Added physicalDiskPCIeCapableLinkWidth. + * Added enclosureType." + + REVISION "201308220000Z" -- 22 Aug 2013 + DESCRIPTION + "Version: 2.1 + * Added systemPowerUpTime attribute. + * Added values to SystemFormFactorEnum. + * Added values to BladeGeometryEnum. + * Added chassisNameModular attribute. + * Added chassisModelModular attribute. + * Added systemNodeID attribute. + * Added alertChassisName variable to all traps. + * Added controllerT10PICapability attribute. + * Added controllerRAID10UnevenSpansSupported attribute. + * Added controllerEnhancedAutoImportForeignConfigMode attribute. + * Added controllerBootModeSupported attribute. + * Added controllerBootMode attribute. + * Added physicalDiskRemainingRatedWriteEndurance attribute. + * Added physicalDiskT10PICapability attribute. + * Added physicalDiskBlockSizeInBytes attribute. + * Added virtualDiskT10PIStatus attribute. + * Added virtualDiskBlockSizeInBytes attribute. + * Attribute batteryPredictedCapacity is obsolete. + * Added alertUpdateJobInformation trap. + * Added alertAutoDiscoveryInformation trap. + * Added alertNetworkConfigurationInformation trap. + * Added alertNetworkConfigurationWarning trap. + * Added alertNetworkConfigurationFailure trap." + + REVISION "201210300000Z" -- 30 Oct 2012 + DESCRIPTION + "Version: 2.0 + * Initial SMIv2 version of the iDRAC MIB." + ::= { enterprises dell(674) server3(10892) 5 } + + +------------------------------------------------------------------------------ +-- Object Identifiers +------------------------------------------------------------------------------ + +-- Server3 Out-of-Band Groups +-- +-- The informationGroup provides information to discover the system (RAC, +-- modular enclosure/chassis, and server) and its associated properties. +-- +informationGroup OBJECT IDENTIFIER ::= { outOfBandGroup 1 } +racInfoGroup OBJECT IDENTIFIER ::= { informationGroup 1 } +chassisInfoGroup OBJECT IDENTIFIER ::= { informationGroup 2 } +systemInfoGroup OBJECT IDENTIFIER ::= { informationGroup 3 } +statusGroup OBJECT IDENTIFIER ::= { outOfBandGroup 2 } +alertGroup OBJECT IDENTIFIER ::= { outOfBandGroup 3 } +alertVariablesGroup OBJECT IDENTIFIER ::= { alertGroup 1 } +alertTrapGroup OBJECT IDENTIFIER ::= { alertGroup 2 } +systemAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 1 } +storageAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 2 } +updatesAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 3 } +auditAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 4 } +configurationAlertTrapGroup OBJECT IDENTIFIER ::= { alertTrapGroup 5 } + +-- System details start +systemDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 4 } +mIBVersionGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1 } +systemStateGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 200 } +chassisInformationGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 300 } +powerGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 600 } +thermalGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 700 } +deviceGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1100 } +slotGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 1200 } +fruGroup OBJECT IDENTIFIER ::= { systemDetailsGroup 2000 } +-- System details end + +-- Storage details start +storageDetailsGroup OBJECT IDENTIFIER ::= { outOfBandGroup 5 } +software OBJECT IDENTIFIER ::= { storageDetailsGroup 1 } +storageManagement OBJECT IDENTIFIER ::= { software 20 } +physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } +logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } +-- Storage details end + + +------------------------------------------------------------------------------ +-- Textual Conventions +------------------------------------------------------------------------------ + +StringType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "General string type." + SYNTAX OCTET STRING (SIZE (0..1023)) + +String64 ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "General string type for 64 byte strings." + SYNTAX OCTET STRING (SIZE (0..64)) + +FQDDString ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "String type for FQDD strings." + SYNTAX OCTET STRING (SIZE (0..512)) + +MACAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "String type for MAC Address strings." + SYNTAX OCTET STRING (SIZE (6)) + +ObjectRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (1..128)." + SYNTAX INTEGER (1..128) + +Unsigned8BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..255)." + SYNTAX INTEGER (0..255) + +Unsigned16BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..65535)." + SYNTAX INTEGER (0..65535) + +Unsigned32BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..2147483647)." + SYNTAX INTEGER (0..2147483647) + +Signed32BitRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (-2147483647..2147483647)." + SYNTAX INTEGER (-2147483647..2147483647) + +BooleanType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Integer with a range of (0..1). + Where 0 = FALSE, 1 = TRUE" + SYNTAX INTEGER (0..1) + +-- DateName dates are defined in the displayable format +-- yyyymmddHHMMSS.uuuuuu+ooo +-- where yyyy is the year, mm is the month number, dd is the day of the month, +-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the +-- number of microseconds, and +ooo is the offset from UTC in minutes. If east +-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the +-- number is preceded by a minus (-) sign. +-- +-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT +-- would be represented as: 19940525133015.000000-300 +-- +-- Values must be zero-padded if necessary, like "05" in the example above. +-- If a value is not supplied for a field, each character in the field +-- must be replaced with asterisk ('*') characters. +DateName ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "String type for date strings of a given DateName format." + SYNTAX OCTET STRING (SIZE (25)) + +-- Note About Bit Fields: +-- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, +-- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers +-- representing a series of bit definitions. They are NOT enumerations and +-- should be treated as bit fields. The value is passed as a decimal value; +-- it should be converted to hex, and the appropriate bits should be parsed +-- from that. Some of the more common bit combinations are defined in some +-- variables, but not all combinations are or will be defined. + +-- +-- Generic State Capabilities +-- +StateCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Capabilities flags." + SYNTAX INTEGER { + -- If set to 0 (zero), object has no state capabilities + unknownCapabilities(1), -- object's state capabilities are unknown + -- The object's state capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) + +} + +-- +-- Generic State Settings +-- +StateSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Settings flags." + SYNTAX INTEGER { + -- If set to 0 (zero), object has no state settings enabled and is disabled + unknown(1), -- object's state is unknown + enabled(2), -- object's state is disabled (offline) if bit is off + -- or enabled (online) if bit is on + notReady(4), -- object's state is not ready + enabledAndNotReady(6) +} + +-- +-- Probe Capabilities +-- +ProbeCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Probe Capabilities flags." + SYNTAX INTEGER { + -- If set to 0 (zero) the object has no probe capabilities + -- The object's probe capabilities allow it to be set to: + upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set + lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set + upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default + lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default +} + +-- +-- Probe Status +-- +StatusProbeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Probe Status enum." + SYNTAX INTEGER { + other(1), -- probe status is not one of the following: + unknown(2), -- probe status is unknown (not known or monitored) + ok(3), -- probe is reporting a value within the thresholds + nonCriticalUpper(4), -- probe has crossed upper noncritical threshold + criticalUpper(5), -- probe has crossed upper critical threshold + nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold + nonCriticalLower(7), -- probe has crossed lower noncritical threshold + criticalLower(8), -- probe has crossed lower critical threshold + nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold + failed(10) -- probe is not functional +} + +-- +-- Redundancy Status +-- +StatusRedundancyEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Redundancy Status enum." + SYNTAX INTEGER { + other(1), -- redundancy status is not one of the following: + unknown(2), -- redundancy status is unknown (not known or monitored) + full(3), -- object is fully redundant + degraded(4), -- object's redundancy has been degraded + lost(5), -- object's redundancy has been lost + notRedundant(6), -- redundancy status does not apply or object is not redundant + redundancyOffline(7) -- redundancy object taken offline +} + +-- +-- Status +-- +ObjectStatusEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Status of an object." + SYNTAX INTEGER { + other(1), -- the status of the object is not one of the + -- following: + unknown(2), -- the status of the object is unknown + -- (not known or monitored) + ok(3), -- the status of the object is ok + nonCritical(4), -- the status of the object is warning, non-critical + critical(5), -- the status of the object is critical (failure) + nonRecoverable(6) -- the status of the object is non-recoverable (dead) +} + +RacTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "RAC Type enum." + SYNTAX INTEGER { + other(1), -- the RAC type is not one of the following + unknown(2), -- the RAC type is unknown + idrac7monolithic(16), -- iDRAC7 Monolithic + idrac7modular(17), -- iDRAC7 Modular + idrac8monolithic(32), -- iDRAC8 Monolithic + idrac8modular(33) -- iDRAC8 Modular +} + +SystemFormFactorEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Form Factor enum." + SYNTAX INTEGER { + other(1), -- the form factor is not one of the following: + unknown(2), -- the form factor is unknown + u1(3), -- 1U Monolithic + u2(4), -- 2U Monolithic + u4(5), -- 4U Monolithic + u7(6), -- 7U Monolithic + singleWidthHalfHeight(7), -- Single width, half height Modular + dualWidthHalfHeight(8), -- Dual width, half height Modular + singleWidthFullHeight(9), -- Single width, full height Modular + dualWidthFullHeight(10), -- Dual width, full height Modular + singleWidthQuarterHeight(11), -- Single width, quarter height Modular + u5(12), -- 5U Monolithic + u1HalfWidth(13), -- 1U, half width Modular + u1QuarterWidth(14), -- 1U, quarter width Modular + u1FullWidth(15) -- 1U, full width Modular +} + +BladeGeometryEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Blade Geometry enum." + SYNTAX INTEGER { + other(1), -- the modular geometry is not one of the following: + unknown(2), -- the modular geometry is unknown + singleWidthHalfHeight(3), -- Single width, half height Modular + dualWidthHalfHeight(4), -- Dual width, half height Modular + singleWidthFullHeight(5), -- Single width, full height Modular + dualWidthFullHeight(6), -- Dual width, full height Modular + singleWidthQuarterHeight(7), -- Single width, quarter height Modular + u1HalfWidth(8), -- 1U, half width Modular + u1QuarterWidth(9), -- 1U, quarter width Modular + u1FullWidth(10) -- 1U, full width Modular +} + +PowerStateStatusEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power State Status enum." + SYNTAX INTEGER { + other(1), -- the power state status is not one of the following: + unknown(2), -- the power state status is unknown + off(3), -- system power is off + on(4) -- system power is on +} + + +------------------------------------------------------------------------------ +-- +-- MIB Groups +-- +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- RAC Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.1..0 +------------------------------------------------------------------------------ + +racName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product name of a remote access card." + ::= { racInfoGroup 1 } + +racShortName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the short product name of a remote access + card." + ::= { racInfoGroup 2 } + +racDescription OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product description of a remote access + card." + ::= { racInfoGroup 3 } + +racManufacturer OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product manufacturer of a remote access + card." + ::= { racInfoGroup 4 } + +racVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the product version of a remote access card." + ::= { racInfoGroup 5 } + +racURL OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the out-of-band UI URL of a remote access + card." + ::= { racInfoGroup 6 } + +racType OBJECT-TYPE + SYNTAX RacTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the type of a remote access card." + ::= { racInfoGroup 7 } + +racFirmwareVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the firmware version of a remote access card." + ::= { racInfoGroup 8 } + +------------------------------------------------------------------------------ +-- Chassis Information Group +-- (for modular chassis) +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.2..0 +------------------------------------------------------------------------------ + +chassisServiceTag OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the service tag of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 1 } + +chassisNameModular OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the chassis name of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 2 } + +chassisModelModular OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the model of the modular chassis. + The value is zero length if not a modular system." + ::= { chassisInfoGroup 3 } + +------------------------------------------------------------------------------ +-- System Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.1.3..0 +------------------------------------------------------------------------------ + +systemFQDN OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the fully qualified domain name of the system. + For example, hostname.domainname." + ::= { systemInfoGroup 1 } + +systemServiceTag OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the service tag of the system." + ::= { systemInfoGroup 2 } + +systemExpressServiceCode OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the express service code of the system." + ::= { systemInfoGroup 3 } + +systemAssetTag OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the asset tag of the system." + ::= { systemInfoGroup 4 } + +systemBladeSlotNumber OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the slot number of the system in the modular + chassis." + ::= { systemInfoGroup 5 } + +systemOSName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the name of the operating system that the host + is running." + ::= { systemInfoGroup 6 } + +systemFormFactor OBJECT-TYPE + SYNTAX SystemFormFactorEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the form factor of the system." + ::= { systemInfoGroup 7 } + +systemDataCenterName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Data Center locator of the system." + ::= { systemInfoGroup 8 } + +systemAisleName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Aisle locator of the system." + ::= { systemInfoGroup 9 } + +systemRackName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Rack locator of the system." + ::= { systemInfoGroup 10 } + +systemRackSlot OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Rack Slot locator of the system." + ::= { systemInfoGroup 11 } + +systemModelName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the model name of the system." + ::= { systemInfoGroup 12 } + +systemSystemID OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the system ID of the system." + ::= { systemInfoGroup 13 } + +systemOSVersion OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the version of the operating system that the + host is running." + ::= { systemInfoGroup 14 } + +systemRoomName OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the Room locator of the system." + ::= { systemInfoGroup 15 } + +systemChassisSystemHeight OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the height of the system, in 'U's. + A U is a standard unit of measure for the height of a rack or + rack-mountable component. + (If not applicable, a 'no such name' error is returned.)" + ::= { systemInfoGroup 16 } + +systemBladeGeometry OBJECT-TYPE + SYNTAX BladeGeometryEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the geometry for a modular system. + (If not applicable, a 'no such name' error is returned.)" + ::= { systemInfoGroup 17 } + +systemNodeID OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the node ID of the system. The node ID + provides a unique identifier for the system." + ::= { systemInfoGroup 18 } + + +------------------------------------------------------------------------------ +-- Status Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.2..0 +------------------------------------------------------------------------------ + +globalSystemStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the overall rollup status of all + components in the system being monitored by the remote + access card. Includes system, storage, IO devices, iDRAC, + CPU, memory, etc." + ::= { statusGroup 1 } + +systemLCDStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the system status as it is reflected by + the LCD front panel. Not all system components may be included." + ::= { statusGroup 2 } + +globalStorageStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the overall storage status being + monitored by the remote access card." + ::= { statusGroup 3 } + +systemPowerState OBJECT-TYPE + SYNTAX PowerStateStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the power state of the system." + ::= { statusGroup 4 } + +systemPowerUpTime OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute defines the power-up time of the system in seconds." + ::= { statusGroup 5 } + + +------------------------------------------------------------------------------ +-- Alert Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3 +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- Alert Variables Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.1..0 +------------------------------------------------------------------------------ + +alertMessageID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Message ID of the event." + ::= { alertVariablesGroup 1 } + +alertMessage OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Message describing the alert." + ::= { alertVariablesGroup 2 } + +alertCurrentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of object causing the alert, if applicable." + ::= { alertVariablesGroup 3 } + +alertSystemServiceTag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Service tag of the system." + ::= { alertVariablesGroup 4 } + +alertSystemFQDN OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fully qualified domain name of the system." + ::= { alertVariablesGroup 5 } + +alertFQDD OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fully qualified device descriptor of the device." + ::= { alertVariablesGroup 6 } + +alertDeviceDisplayName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Display name of the device/FQDD." + ::= { alertVariablesGroup 7 } + +alertMessageArguments OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Concatenated set of strings representing the message arguments of the + event. Each message argument string is enclosed in double quotes, + and there is a comma after the ending double quote of each message + argument string, except the last one. Any double quotes found within + a message argument string are preprocessed and changed to single + quotes." + ::= { alertVariablesGroup 8 } + +alertChassisServiceTag OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For modular systems, the service tag of the enclosing chassis. + For rack and tower systems, this varbind will be empty (zero + length)." + ::= { alertVariablesGroup 9 } + +alertChassisName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For modular systems, the chassis name of the enclosing chassis. + For rack and tower systems, this varbind will be empty (zero + length)." + ::= { alertVariablesGroup 10 } + +alertRacFQDN OBJECT-TYPE + SYNTAX StringType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Fully qualified domain name of the remote access card." + ::= { alertVariablesGroup 11 } + + +------------------------------------------------------------------------------- +-- System Details Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- MIB Version Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1..0 +------------------------------------------------------------------------------- + +mIBMajorVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0001.0001 This attribute defines the major version number for the + version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 1 } + +mIBMinorVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0001.0002 This attribute defines the minor version number for the + version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 2 } + +mIBMaintenanceVersionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0001.0003 This attribute defines the maintenance version number for + the version of this MIB supported by the iDRAC." + ::= { mIBVersionGroup 3 } + + +------------------------------------------------------------------------------- +-- System State Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System State Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.200.10.1.. +------------------------------------------------------------------------------- + +SystemStateTableEntry ::= SEQUENCE { + systemStatechassisIndex ObjectRange, + systemStateGlobalSystemStatus ObjectStatusEnum, + systemStateChassisState StateSettingsFlags, + systemStateChassisStatus ObjectStatusEnum, + systemStatePowerUnitStateDetails OCTET STRING, + systemStatePowerUnitStatusRedundancy StatusRedundancyEnum, + systemStatePowerUnitStatusDetails OCTET STRING, + systemStatePowerSupplyStateDetails OCTET STRING, + systemStatePowerSupplyStatusCombined ObjectStatusEnum, + systemStatePowerSupplyStatusDetails OCTET STRING, + systemStateVoltageStateDetails OCTET STRING, + systemStateVoltageStatusCombined ObjectStatusEnum, + systemStateVoltageStatusDetails OCTET STRING, + systemStateAmperageStateDetails OCTET STRING, + systemStateAmperageStatusCombined ObjectStatusEnum, + systemStateAmperageStatusDetails OCTET STRING, + systemStateCoolingUnitStateDetails OCTET STRING, + systemStateCoolingUnitStatusRedundancy StatusRedundancyEnum, + systemStateCoolingUnitStatusDetails OCTET STRING, + systemStateCoolingDeviceStateDetails OCTET STRING, + systemStateCoolingDeviceStatusCombined ObjectStatusEnum, + systemStateCoolingDeviceStatusDetails OCTET STRING, + systemStateTemperatureStateDetails OCTET STRING, + systemStateTemperatureStatusCombined ObjectStatusEnum, + systemStateTemperatureStatusDetails OCTET STRING, + systemStateMemoryDeviceStateDetails OCTET STRING, + systemStateMemoryDeviceStatusCombined ObjectStatusEnum, + systemStateMemoryDeviceStatusDetails OCTET STRING, + systemStateChassisIntrusionStateDetails OCTET STRING, + systemStateChassisIntrusionStatusCombined ObjectStatusEnum, + systemStateChassisIntrusionStatusDetails OCTET STRING, + systemStatePowerUnitStatusCombined ObjectStatusEnum, + systemStatePowerUnitStatusList OCTET STRING, + systemStateCoolingUnitStatusCombined ObjectStatusEnum, + systemStateCoolingUnitStatusList OCTET STRING, + systemStateProcessorDeviceStatusCombined ObjectStatusEnum, + systemStateProcessorDeviceStatusList OCTET STRING, + systemStateBatteryStatusCombined ObjectStatusEnum, + systemStateBatteryStatusList OCTET STRING, + systemStateSDCardUnitStatusCombined ObjectStatusEnum, + systemStateSDCardUnitStatusList OCTET STRING, + systemStateSDCardDeviceStatusCombined ObjectStatusEnum, + systemStateSDCardDeviceStatusList OCTET STRING, + systemStateIDSDMCardUnitStatusCombined ObjectStatusEnum, + systemStateIDSDMCardUnitStatusList OCTET STRING, + systemStateIDSDMCardDeviceStatusCombined ObjectStatusEnum, + systemStateIDSDMCardDeviceStatusList OCTET STRING, + systemStateTemperatureStatisticsStateDetails OCTET STRING, + systemStateTemperatureStatisticsStatusCombined ObjectStatusEnum, + systemStateTemperatureStatisticsStatusDetails OCTET STRING +} + +systemStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemStateTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0200.0010 This object defines the System State Table." + ::= { systemStateGroup 10 } + +systemStateTableEntry OBJECT-TYPE + SYNTAX SystemStateTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0200.0010.0001 This object defines the System State Table Entry." + INDEX { systemStatechassisIndex } + ::= { systemStateTable 1 } + +systemStatechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0001 This attribute defines the index (one based) of + this system chassis." + ::= { systemStateTableEntry 1 } + +systemStateGlobalSystemStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0002 This attribute defines the global system status + of all system chassis being monitored by the systems management software." + ::= { systemStateTableEntry 2 } + +systemStateChassisState OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0003 This attribute defines the state settings of this + system chassis." + ::= { systemStateTableEntry 3 } + +systemStateChassisStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0004 This attribute defines the status of this system + chassis." + ::= { systemStateTableEntry 4 } + +systemStatePowerUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0005 This attribute lists the state settings of each + power unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a power unit. The first byte returned represents the state settings + of the first power unit, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 5 } + +systemStatePowerUnitStatusRedundancy OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0006 This attribute defines the combined redundancy status + of all power units of this system." + ::= { systemStateTableEntry 6 } + +systemStatePowerUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0007 This attribute lists the redundancy status of each + power unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the redundancy status + of a power unit. The first byte returned represents the redundancy status + of the first power unit, etc. The bytes have the same definition type as + StatusRedundancyEnum." + ::= { systemStateTableEntry 7 } + +systemStatePowerSupplyStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0008 This attribute lists the state settings of each + power supply of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a power supply. The first byte returned represents the state settings + of the first power supply, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 8 } + +systemStatePowerSupplyStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0009 This attribute defines the combined status of all + power supplies of this system." + ::= { systemStateTableEntry 9 } + +systemStatePowerSupplyStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0010 This attribute lists the status of each power supply + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a power supply. + The first byte returned represents the status of the first power supply, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 10 } + +systemStateVoltageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0011 This attribute lists the state settings of each + voltage probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a voltage probe. The first byte returned represents the state settings + of the first voltage probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 11 } + +systemStateVoltageStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0012 This attribute defines the combined status of all + voltage probes of this system." + ::= { systemStateTableEntry 12 } + +systemStateVoltageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0013 This attribute lists the status of each voltage probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a voltage probe. + The first byte returned represents the status of the first voltage probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 13 } + +systemStateAmperageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0014 This attribute lists the state settings of each + amperage probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of an amperage probe. The first byte returned represents the state settings + of the first amperage probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 14 } + +systemStateAmperageStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0015 This attribute defines the combined status of all + amperage probes of this system." + ::= { systemStateTableEntry 15 } + +systemStateAmperageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0016 This attribute lists the status of each amperage probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of an amperage probe. + The first byte returned represents the status of the first amperage probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 16 } + +systemStateCoolingUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0017 This attribute lists the state settings of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a cooling unit. The first byte returned represents the state settings + of the first cooling unit, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 17 } + +systemStateCoolingUnitStatusRedundancy OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0018 This attribute defines the combined redundancy status + of all cooling units of this system." + ::= { systemStateTableEntry 18 } + +systemStateCoolingUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0019 This attribute lists the redundancy status of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the redundancy status + of a cooling unit. The first byte returned represents the redundancy status + of the first cooling unit, etc. The bytes have the same definition type as + StatusRedundancyEnum." + ::= { systemStateTableEntry 19 } + +systemStateCoolingDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0020 This attribute lists the state settings of each + cooling device of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a cooling device. The first byte returned represents the state settings + of the first cooling device, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 20 } + +systemStateCoolingDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0021 This attribute defines the combined status of all + cooling devices of this system." + ::= { systemStateTableEntry 21 } + +systemStateCoolingDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0022 This attribute lists the status of each cooling device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a cooling device. + The first byte returned represents the status of the first cooling device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 22 } + +systemStateTemperatureStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0023 This attribute lists the state settings of each + temperature probe of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a temperature probe. The first byte returned represents the state settings + of the first temperature probe, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 23 } + +systemStateTemperatureStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0024 This attribute defines the combined status of all + temperature probes of this system." + ::= { systemStateTableEntry 24 } + +systemStateTemperatureStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0025 This attribute lists the status of each temperature probe + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a temperature probe. + The first byte returned represents the status of the first temperature probe, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 25 } + +systemStateMemoryDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0026 This attribute lists the state settings of each + memory device of this system. The results are returned as a binary octet + string where each byte of the octet string represents the state settings + of a memory device. The first byte returned represents the state settings + of the first memory device, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 26 } + +systemStateMemoryDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0027 This attribute defines the combined status of all + memory devices of this system." + ::= { systemStateTableEntry 27 } + +systemStateMemoryDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0028 This attribute lists the status of each memory device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a memory device. + The first byte returned represents the status of the first memory device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 28 } + +systemStateChassisIntrusionStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0029 This attribute lists the state settings of each + intrusion detection device of this system chassis. The results are returned as + a binary octet string where each byte of the octet string represents the + state settings of an intrusion detection device. The first byte returned + represents the state settings of the first intrusion detection device, etc. + The bytes have the same definition type as StateSettingsFlags." + ::= { systemStateTableEntry 29 } + +systemStateChassisIntrusionStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0030 This attribute defines the combined status of all + intrusion detection devices of this system chassis." + ::= { systemStateTableEntry 30 } + +systemStateChassisIntrusionStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0031 This attribute lists the status of each intrusion + detection device of this system chassis. The results are returned as a binary + octet string where each byte of the octet string represents the status + of an intrusion detection device. The first byte returned represents the + status of the first intrusion detection device, etc. The bytes have the + same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 31 } + +systemStatePowerUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0042 This attribute defines the combined status + of all power units of this chassis." + ::= { systemStateTableEntry 42 } + +systemStatePowerUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0043 This attribute lists the status of each + power unit of this chassis. The results are returned as a binary octet + string where each byte of the octet string represents the status + of a power unit. The first byte returned represents the status + of the first power unit, etc. The bytes have the same definition type + as ObjectStatusEnum." + ::= { systemStateTableEntry 43 } + +systemStateCoolingUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0044 This attribute defines the combined status + of all cooling units of this system." + ::= { systemStateTableEntry 44 } + +systemStateCoolingUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0045 This attribute lists the status of each + cooling unit of this system. The results are returned as a binary octet + string where each byte of the octet string represents the status + of a cooling unit. The first byte returned represents the status + of the first cooling unit, etc. The bytes have the same definition type + as ObjectStatusEnum." + ::= { systemStateTableEntry 45 } + +systemStateProcessorDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0050 This attribute defines the combined status of all + processor devices of this system." + ::= { systemStateTableEntry 50 } + +systemStateProcessorDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0051 This attribute lists the status of each processor device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a processor device. + The first byte returned represents the status of the first processor device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 51 } + +systemStateBatteryStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0052 This attribute defines the combined status of all + batteries of this system." + ::= { systemStateTableEntry 52 } + +systemStateBatteryStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0053 This attribute lists the status of each battery + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a battery. + The first byte returned represents the status of the first battery, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 53 } + +systemStateSDCardUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0054 This attribute defines the combined status + of all SD Card units of this system." + ::= { systemStateTableEntry 54 } + +systemStateSDCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0055 This attribute lists the status of each + SD Card unit of this system. The results are returned as a binary + octet string where each byte of the octet string represents the status + of a SD Card unit. The first byte returned represents the status + of the first SD Card unit, etc. The bytes have the same definition + type as ObjectStatusEnum." + ::= { systemStateTableEntry 55 } + +systemStateSDCardDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0056 This attribute defines the combined status of all + SD Card devices of this system." + ::= { systemStateTableEntry 56 } + +systemStateSDCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0057 This attribute lists the status of each SD Card device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of a SD Card device. + The first byte returned represents the status of the first SD Card device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 57 } + +systemStateIDSDMCardUnitStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0058 This attribute defines the combined status + of all IDSDM Card units of this system." + ::= { systemStateTableEntry 58 } + +systemStateIDSDMCardUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0059 This attribute lists the status of each + IDSDM Card unit of this system. The results are returned as a binary + octet string where each byte of the octet string represents the status + of an IDSDM Card unit. The first byte returned represents the status + of the first IDSDM Card unit, etc. The bytes have the same definition + type as ObjectStatusEnum." + ::= { systemStateTableEntry 59 } + +systemStateIDSDMCardDeviceStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0060 This attribute defines the combined status of all + IDSDM Card devices of this system." + ::= { systemStateTableEntry 60 } + +systemStateIDSDMCardDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0061 This attribute lists the status of each IDSDM Card device + of this system. The results are returned as a binary octet string where + each byte of the octet string represents the status of an IDSDM Card device. + The first byte returned represents the status of the first IDSDM Card device, + etc. The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 61 } + +systemStateTemperatureStatisticsStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0062 This attribute lists the state settings of each + temperature statistics object of this system. The results are returned + as a binary octet string where each byte of the octet string represents + the state settings of a temperature statistics object. The first byte + returned represents the state settings of the first temperature + statistics object, etc. The bytes have the same definition type + as StateSettingsFlags." + ::= { systemStateTableEntry 62 } + +systemStateTemperatureStatisticsStatusCombined OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0063 This attribute defines the combined status of all + temperature statistics objects of this system." + ::= { systemStateTableEntry 63 } + +systemStateTemperatureStatisticsStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0200.0010.0001.0064 This attribute lists the status of each + temperature statistics object of this system. The results are returned + as a binary octet string where each byte of the octet string represents + the status of a temperature statistics object. The first byte returned + represents the status of the first temperature statistics object, etc. + The bytes have the same definition type as ObjectStatusEnum." + ::= { systemStateTableEntry 64 } + + +------------------------------------------------------------------------------- +-- Chassis Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300 +------------------------------------------------------------------------------- + +StateCapabilitiesLogUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Capabilities Log Unique Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state capabilities are unknown + onlineCapable(2), -- log can be enabled (online) or disabled (offline) + notReadyCapable(4), -- log can be not ready + resetCapable(8) -- log can be reset +} + +StateSettingsLogUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "State Settings Log Unique Flags." + SYNTAX INTEGER { +-- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state settings are unknown + online(2), -- log is enabled (online) + notReady(4), -- log is not ready + reset(8) -- reset log +} + +LogFormatType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Log Format Type." + SYNTAX INTEGER { + raw(1), -- format is Raw + ascii(2), -- format is ASCII + uniCode(3) -- format is Unicode +} + + +------------------------------------------------------------------------------- +-- Chassis Information Group Attributes +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300..0 +------------------------------------------------------------------------------- + +numEventLogEntries OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0001.0000 This attribute provides the number of entries + currently in the eventLogTable." + ::= { chassisInformationGroup 1 } + +-- Note: You can only access the numLCLogEntries attribute via SNMPv3 queries. +-- Access to the attribute is blocked for SNMPv1 and SNMPv2c queries. +numLCLogEntries OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0002.0000 This attribute provides the number of entries + currently in the lcLogTable. + Note: This attribute can only be accessed via SNMPv3 queries." + ::= { chassisInformationGroup 2 } + + +------------------------------------------------------------------------------- +-- Chassis Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.10.1.. +------------------------------------------------------------------------------- + +ChassisTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis Type Enum." + SYNTAX INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + desktop(3), -- type is Desktop + lowProfileDesktop(4), -- type is Low Profile Desktop + pizzaBox(5), -- type is Pizza Box + miniTower(6), -- type is MiniTower + tower(7), -- type is Tower + portable(8), -- type is Portable + lapTop(9), -- type is Laptop + noteBook(10), -- type is Notebook + handHeld(11), -- type is Handheld + dockingStation(12), -- type is Docking Station + allInOne(13), -- type is All-In-One + subNoteBook(14), -- type is SubNotebook + spaceSaving(15), -- type is Spacesaver + lunchBox(16), -- type is Lunchbox + mainSystemChassis(17), -- type is Main System Chassis + expansionChassis(18), -- type is Expansion Chassis + subChassis(19), -- type is SubChassis + busExpansionChassis(20), -- type is Bus Expansion Chassis + peripheralChassis(21), -- type is Peripheral Chassis + raidChassis(22), -- type is RAID Chassis + rackMountChassis(23), -- type is Rack-mounted Chassis + sealedCasePC(24), -- type is Sealed-case PC + multiSystemChassis(25) -- type is Multi-system Chassis +} + +ChassisSystemClassEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis System Class Enum." + SYNTAX INTEGER { + other(1), -- class is other than following values + unknown(2), -- class is unknown + workstationClass(3), -- class is Workstation + serverClass(4), -- class is Server + desktopClass(5), -- class is Desktop + portableClass(6), -- class is Portable + netPCClass(7), -- class is Net PC + storageClass(8) -- class is Storage +} + +LEDControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "LED Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no LED Control capabilities + unknown(1), -- LED control capabilities are unknown + alertOnErrorCapable(2), -- LED can alert on error condition + alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition + alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition +} + +LEDControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "LED Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no LED Control settings + unknown(1), -- LED control settings are unknown + alertOnError(2), -- LED set to alert on error condition + alertOnWarningAndError(4) -- LED set to alert on error or warning condition +} + +ChassisIdentifyControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis Identify Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Chassis Identify Control capabilities + unknownCapabilities(1), -- chassis identify capabilities are unknown + -- The objects capabilities allow it to be set to: + enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) + notReadyCapable(4), -- chassis identify can be not ready + identifyCapable(8) -- chassis idenfity can be made to identify chassis +} + +ChassisIdentifyControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Chassis Identify Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Chassis Identify Control settings + unknown(1), -- chassis identify settings are unknown + enabled(2), -- chassis identify is enabled (online) + notReady(4), -- chassis identify is not ready + identifyChassis(8), -- identify chassis + identifyChassisAndEnable(10) -- identify chassis and enabled +} + +HostControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Host Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Host Control capabilities + manualRebootCapable(1), -- host can be rebooted + manualPowerOFFCapable(2), -- host can be powered off + manualPowerCycleCapable(4), -- host can be power cycled + manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown + manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown + manualFullyCapable(15), -- all host control capabilities + manualRebootWithOSShutdownCapable(16), -- host can be rebooted with operating system shutdown + manualRebootWithoutOSShutdownCapable(32), -- host can be rebooted without operating system shutdown + manualPowerOffWithOSShutdownCapable(64), -- host can be powered off with operating system shutdown + manualPowerOffWithoutOSShutdownCapable(128),-- host can be powered off without operating system shutdown + manualPowerCycleWithOSShutdownCapable(256), -- host can be power cycled with operating system shutdown + manualPowerCycleWithoutOSShutdownCapable(512) -- host can be power cycled with operating system shutdown +} + +HostControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Host Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Host Control settings + manualReboot(1), -- reboot host + manualPowerOFF(2), -- power off host + manualPowerCycle(4), -- power cycle host + manualOperatingSystemShutdown(8), -- shutdown operating system on host + manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host + manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host + manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host +} + +WatchDogControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "WatchDog Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Watchdog Control capabilities + automaticRebootCapable(1), -- watchdog can reboot host + automaticPowerCycleCapable(2), -- watchdog can power cycle host + automaticNotificationCapable(4), -- watchdog can notify + automaticWatchDogTimerCapable(8), -- watchdog supports timer + automaticPowerOffCapable(16), -- watchdog can power off host + automaticAllExceptNotificationCapable(27), -- all capabilities except notification + automaticFullyCapable(31) -- all watchdog control capabilities +} + +WatchControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "WatchDog Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Watchdog Control settings + automaticRebootEnabled(1), -- watchdog set for automatic reboot + automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle + automaticNotificationEnabled(4), -- watchdog set for automatic notification + automaticPowerOffEnabled(8) -- watchdog set for automatic power off +} + +WatchDogTimerCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "WatchDog Timer Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Watchdog Timer capabilities + type1Capable(1), -- watchdog can time in range of 20-480 seconds + type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals + type3Capable(4) -- watchdog can time in 60 second intervals +} + +PowerButtonControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Button Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Power Button Control capabilities + unknownCapabilities(1), -- power button capabilities are unknown + enableCapable(2) -- power button can be enabled or disabled +} + +PowerButtonControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Button Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no Power Button Control settings + unknown(1), -- power button settings are unknown + enabled(2), -- power button is enabled + disabled(4) -- power button disabled +} + +NMIButtonControlCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "NMI Button Control Capabilities Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no NMI Button Control capabilities + unknownCapabilities(1), -- NMI button capabilities are unknown + enableCapable(2) -- NMI button can be enabled or disabled +} + +NMIButtonControlSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "NMI Button Control Settings Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no NMI Button Control settings + unknown(1), -- NMI button settings are unknown + enabled(2), -- NMI button is enabled + disabled(4) -- NMI button disabled +} + +SystemPropertiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Properties Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no properties + energySmart(1) -- Energy Smart system +} + +ChassisInformationTableEntry ::= SEQUENCE { + chassisIndexChassisInformation ObjectRange, + chassisStateCapabilities StateCapabilitiesFlags, + chassisStateSettings StateSettingsFlags, + chassisStatus ObjectStatusEnum, + chassisparentIndexReference ObjectRange, + chassisType ChassisTypeEnum, + chassisName String64, + chassisManufacturerName String64, + chassisModelTypeName String64, + chassisAssetTagName OCTET STRING, + chassisServiceTagName OCTET STRING, + chassisID Unsigned8BitRange, + chassisIDExtension Unsigned16BitRange, + chassisSystemClass ChassisSystemClassEnum, + chassisSystemName String64, + chassisLEDControlCapabilitiesUnique LEDControlCapabilitiesFlags, + chassisLEDControlSettingsUnique LEDControlSettingsFlags, + chassisIdentifyFlashControlCapabilities ChassisIdentifyControlCapabilitiesFlags, + chassisIdentifyFlashControlSettings ChassisIdentifyControlSettingsFlags, + chassisLockPresent BooleanType, + chassishostControlCapabilitiesUnique HostControlCapabilitiesFlags, + chassishostControlSettingsUnique HostControlSettingsFlags, + chassiswatchDogControlCapabilitiesUnique WatchDogControlCapabilitiesFlags, + chassiswatchDogControlSettingsUnique WatchControlSettingsFlags, + chassiswatchDogControlExpiryTimeCapabilitiesUnique WatchDogTimerCapabilitiesFlags, + chassiswatchDogControlExpiryTime Unsigned16BitRange, + chassisPowerButtonControlCapabilitiesUnique PowerButtonControlCapabilitiesFlags, + chassisPowerButtonControlSettingsUnique PowerButtonControlSettingsFlags, + chassisNMIButtonControlCapabilitiesUnique NMIButtonControlCapabilitiesFlags, + chassisNMIButtonControlSettingsUnique NMIButtonControlSettingsFlags, + chassisSystemProperties SystemPropertiesFlags, + chassisSystemRevisionNumber Unsigned8BitRange, + chassisSystemRevisionName String64, + chassisExpressServiceCodeName String64 +} + +chassisInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisInformationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0010 This object defines the Chassis Information Table." + ::= { chassisInformationGroup 10 } + +chassisInformationTableEntry OBJECT-TYPE + SYNTAX ChassisInformationTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0010.0001 This object defines the Chassis Information Table Entry." + INDEX { chassisIndexChassisInformation } + ::= { chassisInformationTable 1 } + +chassisIndexChassisInformation OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { chassisInformationTableEntry 1 } + +chassisStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0002 This attribute defines the state capabilities of the system chassis." + ::= { chassisInformationTableEntry 2 } + +chassisStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0003 This attribute defines the state settings of the system chassis." + ::= { chassisInformationTableEntry 3 } + +chassisStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0004 This attribute defines the status of the system chassis." + ::= { chassisInformationTableEntry 4 } + +chassisparentIndexReference OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0005 This attribute defines the index (one based) to the + parent system of this system chassis, if any." + ::= { chassisInformationTableEntry 5 } + +chassisType OBJECT-TYPE + SYNTAX ChassisTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0006 This attribute defines the system type of the system chassis." + ::= { chassisInformationTableEntry 6 } + +chassisName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0007 This attribute defines the user-assigned name of the system chassis." + ::= { chassisInformationTableEntry 7 } + +chassisManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0008 This attribute defines the name of the manufacturer + of the system chassis." + ::= { chassisInformationTableEntry 8 } + +chassisModelTypeName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0009 This attribute defines the system model type of the system chassis." + ::= { chassisInformationTableEntry 9 } + +chassisAssetTagName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..10)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0010 This attribute defines the asset tag name of the system chassis." + ::= { chassisInformationTableEntry 10 } + +chassisServiceTagName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0011 This attribute defines the service tag name of the system chassis." + ::= { chassisInformationTableEntry 11 } + +chassisID OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0012 This attribute defines the system ID. If the value + is 254 (0xFE), the attribute systemIDExtension provides the system ID." + ::= { chassisInformationTableEntry 12 } + +chassisIDExtension OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0013 This attribute defines the system ID extension." + ::= { chassisInformationTableEntry 13 } + +chassisSystemClass OBJECT-TYPE + SYNTAX ChassisSystemClassEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0014 This attribute defines the system class." + ::= { chassisInformationTableEntry 14 } + +chassisSystemName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0015 This attribute defines the host name of the system chassis." + ::= { chassisInformationTableEntry 15 } + +chassisLEDControlCapabilitiesUnique OBJECT-TYPE + SYNTAX LEDControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0024 This attribute defines the capabilities of the + LED control hardware in the system chassis." + ::= { chassisInformationTableEntry 24 } + +chassisLEDControlSettingsUnique OBJECT-TYPE + SYNTAX LEDControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0025 This attribute defines the reading and setting of the + LED control hardware in the system chassis." + ::= { chassisInformationTableEntry 25 } + +chassisIdentifyFlashControlCapabilities OBJECT-TYPE + SYNTAX ChassisIdentifyControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0028 This attribute defines if the system allows setting + of the system front panel LED to flash." + ::= { chassisInformationTableEntry 28 } + +chassisIdentifyFlashControlSettings OBJECT-TYPE + SYNTAX ChassisIdentifyControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0029 This attribute setting causes the system front panel + LED to flash." + ::= { chassisInformationTableEntry 29 } + +chassisLockPresent OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0030 If true, a system lock is present on the system chassis." + ::= { chassisInformationTableEntry 30 } + +chassishostControlCapabilitiesUnique OBJECT-TYPE + SYNTAX HostControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0031 This attribute defines the capabilities of the + host control function." + ::= { chassisInformationTableEntry 31 } + +chassishostControlSettingsUnique OBJECT-TYPE + SYNTAX HostControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0032 This attribute defines the settings of the + host control function." + ::= { chassisInformationTableEntry 32 } + +chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE + SYNTAX WatchDogControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0033 This attribute defines the capabilities of the + watchdog control function." + ::= { chassisInformationTableEntry 33 } + +chassiswatchDogControlSettingsUnique OBJECT-TYPE + SYNTAX WatchControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0034 This attribute defines the settings of the + watchdog control function." + ::= { chassisInformationTableEntry 34 } + +chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE + SYNTAX WatchDogTimerCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0035 This attribute defines the capabilities of the + watchdog control expiry timer function." + ::= { chassisInformationTableEntry 35 } + +chassiswatchDogControlExpiryTime OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0036 This attribute defines the current watchdog timer + value in seconds." + ::= { chassisInformationTableEntry 36 } + +chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX PowerButtonControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0038 This attribute defines the capabilities of the + power button control hardware in the system chassis." + ::= { chassisInformationTableEntry 38 } + +chassisPowerButtonControlSettingsUnique OBJECT-TYPE + SYNTAX PowerButtonControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0039 This attribute defines the reading and setting of + the power button control hardware in the system chassis." + ::= { chassisInformationTableEntry 39 } + +chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX NMIButtonControlCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0044 This attribute defines the capabilities of the + NMI button control hardware in the system chassis." + ::= { chassisInformationTableEntry 44 } + +chassisNMIButtonControlSettingsUnique OBJECT-TYPE + SYNTAX NMIButtonControlSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0045 This attribute defines the reading and setting of + the NMI button control hardware in the system chassis." + ::= { chassisInformationTableEntry 45 } + +chassisSystemProperties OBJECT-TYPE + SYNTAX SystemPropertiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0046 This attribute defines the properties of the system chassis." + ::= { chassisInformationTableEntry 46 } + +chassisSystemRevisionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0047 This attribute defines the revision number of the system + where zero indicates the original version of the system chassis. The revision number + is not available on all systems." + ::= { chassisInformationTableEntry 47 } + +chassisSystemRevisionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0048 This attribute defines the revision name of the system, + if applicable." + ::= { chassisInformationTableEntry 48 } + +chassisExpressServiceCodeName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0010.0001.0049 This attribute defines the Express Service Code of the system chassis." + ::= { chassisInformationTableEntry 49 } + + +------------------------------------------------------------------------------- +-- Event (ESM) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.40.1... +------------------------------------------------------------------------------- + +EventLogTableEntry ::= SEQUENCE { + eventLogchassisIndex ObjectRange, + eventLogRecordIndex Unsigned32BitRange, + eventLogStateCapabilitiesUnique StateCapabilitiesLogUniqueFlags, + eventLogStateSettingsUnique StateSettingsLogUniqueFlags, + eventLogRecord OCTET STRING, + eventLogFormat LogFormatType, + eventLogSeverityStatus ObjectStatusEnum, + eventLogDateName DateName +} + +eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0040 This object defines the Event (ESM) Log Table." + ::= { chassisInformationGroup 40 } + +eventLogTableEntry OBJECT-TYPE + SYNTAX EventLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0040.0001 This object defines the Event (ESM) Log Table Entry." + INDEX { eventLogchassisIndex, + eventLogRecordIndex } + ::= { eventLogTable 1 } + +eventLogchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { eventLogTableEntry 1 } + +eventLogRecordIndex OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0002 This attribute defines the index (one based) of the + event log record." + ::= { eventLogTableEntry 2 } + +eventLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX StateCapabilitiesLogUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0003 This attribute defines the state capabilities of the + object that is writing the event log." + ::= { eventLogTableEntry 3 } + +eventLogStateSettingsUnique OBJECT-TYPE + SYNTAX StateSettingsLogUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0004 This attribute defines the state settings of the + object that is writing the event log." + ::= { eventLogTableEntry 4 } + +eventLogRecord OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0005 This attribute defines the data of the event log record." + ::= { eventLogTableEntry 5 } + +eventLogFormat OBJECT-TYPE + SYNTAX LogFormatType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0006 This attribute defines the format of the event log record." + ::= { eventLogTableEntry 6 } + +eventLogSeverityStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0007 This attribute defines the severity of the + event log record." + ::= { eventLogTableEntry 7 } + +eventLogDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0040.0001.0008 This attribute defines the date and time of the + event log record." + ::= { eventLogTableEntry 8 } + + +------------------------------------------------------------------------------- +-- System BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.50.1... +------------------------------------------------------------------------------- + +SystemBIOSTableEntry ::= SEQUENCE { + systemBIOSchassisIndex ObjectRange, + systemBIOSIndex ObjectRange, + systemBIOSStateCapabilities StateCapabilitiesFlags, + systemBIOSStateSettings StateSettingsFlags, + systemBIOSStatus ObjectStatusEnum, + systemBIOSReleaseDateName DateName, + systemBIOSVersionName String64, + systemBIOSManufacturerName String64 +} + +systemBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBIOSTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0050 This object defines the System BIOS Table." + ::= { chassisInformationGroup 50 } + +systemBIOSTableEntry OBJECT-TYPE + SYNTAX SystemBIOSTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0050.0001 This object defines the System BIOS Table Entry." + INDEX { systemBIOSchassisIndex, + systemBIOSIndex } + ::= { systemBIOSTable 1 } + +systemBIOSchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { systemBIOSTableEntry 1 } + +systemBIOSIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0002 This attribute defines the index (one based) of the + system BIOS." + ::= { systemBIOSTableEntry 2 } + +systemBIOSStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0003 This attribute defines the state capabilities of the + system BIOS." + ::= { systemBIOSTableEntry 3 } + +systemBIOSStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0004 This attribute defines the state settings of the + system BIOS." + ::= { systemBIOSTableEntry 4 } + +systemBIOSStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0005 This attribute defines the status of the system BIOS." + ::= { systemBIOSTableEntry 5 } + +systemBIOSReleaseDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0007 This attribute defines the release date name of the + system BIOS." + ::= { systemBIOSTableEntry 7 } + +systemBIOSVersionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0008 This attribute defines the version name of the + system BIOS." + ::= { systemBIOSTableEntry 8 } + +systemBIOSManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0050.0001.0011 This attribute defines the name of the manufacturer + of the system BIOS." + ::= { systemBIOSTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Firmware Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.60.1... +------------------------------------------------------------------------------- + +FirmwareType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Firmware Type." + SYNTAX INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + lifecycleController(20), -- type is Lifecycle Controller + iDRAC7(21), -- type is Integrated Dell Remote Access Controller 7 + iDRAC8(22) -- type is Integrated Dell Remote Access Controller 8 +} + +FirmwareTableEntry ::= SEQUENCE { + firmwarechassisIndex ObjectRange, + firmwareIndex ObjectRange, + firmwareStateCapabilities StateCapabilitiesFlags, + firmwareStateSettings StateSettingsFlags, + firmwareStatus ObjectStatusEnum, + firmwareSize Unsigned16BitRange, + firmwareType FirmwareType, + firmwareTypeName String64, + firmwareUpdateCapabilities Unsigned16BitRange, + firmwareVersionName String64 +} + +firmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF FirmwareTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0060 This object defines the Firmware Table." + ::= { chassisInformationGroup 60 } + +firmwareTableEntry OBJECT-TYPE + SYNTAX FirmwareTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0060.0001 This object defines the Firmware Table Entry." + INDEX { firmwarechassisIndex, + firmwareIndex } + ::= { firmwareTable 1 } + +firmwarechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { firmwareTableEntry 1 } + +firmwareIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0002 This attribute defines the index (one based) of the + firmware." + ::= { firmwareTableEntry 2 } + +firmwareStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0003 This attribute defines the state capabilities of the + firmware." + ::= { firmwareTableEntry 3 } + +firmwareStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0004 This attribute defines the state settings of the + firmware." + ::= { firmwareTableEntry 4 } + +firmwareStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0005 This attribute defines the status of the firmware." + ::= { firmwareTableEntry 5 } + +firmwareSize OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0006 This attribute defines the image size of the firmware + in KBytes. Zero indicates size is unknown." + ::= { firmwareTableEntry 6 } + +firmwareType OBJECT-TYPE + SYNTAX FirmwareType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0007 This attribute defines the type of firmware." + ::= { firmwareTableEntry 7 } + +firmwareTypeName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0008 This attribute defines the type name of the firmware." + ::= { firmwareTableEntry 8 } + +firmwareUpdateCapabilities OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0009 This attribute defines the bitmap of supported methods + for firmware update." + ::= { firmwareTableEntry 9 } + +firmwareVersionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0060.0001.0011 This attribute defines the version of the firmware." + ::= { firmwareTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Intrusion Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.70.1... +------------------------------------------------------------------------------- + +IntrusionReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Intrusion Reading Enum." + SYNTAX INTEGER { + chassisNotBreached(1), -- chassis not breached and no uncleared breaches + chassisBreached(2), -- chassis currently breached + chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared + chassisBreachSensorFailure(4) -- intrusion sensor has failed +} + +IntrusionTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Intrusion Type Enum." + SYNTAX INTEGER { + chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on + chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off +} + +IntrusionTableEntry ::= SEQUENCE { + intrusionchassisIndex ObjectRange, + intrusionIndex ObjectRange, + intrusionStateCapabilities StateCapabilitiesFlags, + intrusionStateSettings StateSettingsFlags, + intrusionStatus ObjectStatusEnum, + intrusionReading IntrusionReadingEnum, + intrusionType IntrusionTypeEnum, + intrusionLocationName String64 +} + +intrusionTable OBJECT-TYPE + SYNTAX SEQUENCE OF IntrusionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0070 This object defines the Intrusion Table." + ::= { chassisInformationGroup 70 } + +intrusionTableEntry OBJECT-TYPE + SYNTAX IntrusionTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0070.0001 This object defines the Intrusion Table Entry." + INDEX { intrusionchassisIndex, + intrusionIndex } + ::= { intrusionTable 1 } + +intrusionchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { intrusionTableEntry 1 } + +intrusionIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0002 This attribute defines the index (one based) of the + intrusion sensor." + ::= { intrusionTableEntry 2 } + +intrusionStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0003 This attribute defines the state capabilities of the + intrusion sensor." + ::= { intrusionTableEntry 3 } + +intrusionStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0004 This attribute defines the state settings of the + intrusion sensor." + ::= { intrusionTableEntry 4 } + +intrusionStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0005 This attribute defines the status of the + intrusion sensor." + ::= { intrusionTableEntry 5 } + +intrusionReading OBJECT-TYPE + SYNTAX IntrusionReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0006 This attribute defines the reading of the + intrusion sensor." + ::= { intrusionTableEntry 6 } + +intrusionType OBJECT-TYPE + SYNTAX IntrusionTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0007 This attribute defines the type of the + intrusion sensor." + ::= { intrusionTableEntry 7 } + +intrusionLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0070.0001.0008 This attribute defines the location of the + intrusion sensor." + ::= { intrusionTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Lifecycle (LC) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.300.90.1... +------------------------------------------------------------------------------- + +LcLogCategoryEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "LC Log Category Enum." + SYNTAX INTEGER { + system(1), -- System Health category + storage(2), -- Storage category + updates(3), -- Updates category + audit(4), -- Audit category + configuration(5), -- Configuration category + workNotes(6) -- Work Notes category +} + +LcLogTableEntry ::= SEQUENCE { + lcLogChassisIndex ObjectRange, + lcLogRecordIndex Unsigned32BitRange, + lcLogSequenceNumber Unsigned32BitRange, + lcLogCategory LcLogCategoryEnum, + lcLogSeverityStatus ObjectStatusEnum, + lcLogDateName DateName, + lcLogFQDD FQDDString, + lcLogMessageID OCTET STRING, + lcLogMessage OCTET STRING, + lcLogDetailedDescription OCTET STRING, + lcLogRecommededAction OCTET STRING, + lcLogComment OCTET STRING +} + +-- Note: You can only access the lcLogTable table via SNMPv3 queries. +-- Access to the table is blocked for SNMPv1 and SNMPv2c queries. +lcLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF LcLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0090 This object defines the Lifecycle (LC) Log Table. + Lifecycle (LC) Log table records are ordered from oldest to newest. + Note: This table can only be accessed via SNMPv3 queries." + ::= { chassisInformationGroup 90 } + +lcLogTableEntry OBJECT-TYPE + SYNTAX LcLogTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0300.0090.0001 This object defines the Lifcycle (LC) Log Table Entry." + INDEX { lcLogChassisIndex, + lcLogRecordIndex } + ::= { lcLogTable 1 } + +lcLogChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0001 This attribute defines the index (one based) + of the associated system chassis." + ::= { lcLogTableEntry 1 } + +lcLogRecordIndex OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0002 This attribute defines the index (one based) + of the LC log record." + ::= { lcLogTableEntry 2 } + +lcLogSequenceNumber OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0003 This attribute defines the LC Log sequence number + of the event associated with the LC log record." + ::= { lcLogTableEntry 3 } + +lcLogCategory OBJECT-TYPE + SYNTAX LcLogCategoryEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0004 This attribute defines the category + of the event associated with the LC log record." + ::= { lcLogTableEntry 4 } + +lcLogSeverityStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0005 This attribute defines the severity + of the event associated with the LC log record." + ::= { lcLogTableEntry 5 } + +lcLogDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0006 This attribute defines the date and time + of the event associated with the LC log record." + ::= { lcLogTableEntry 6 } + +lcLogFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0007 Fully qualified device descriptor (FQDD) + of the device associated with the event associated with the LC log record." + ::= { lcLogTableEntry 7 } + +lcLogMessageID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0008 This attribute defines the Message ID + of the event associated with the LC log record." + ::= { lcLogTableEntry 8 } + +lcLogMessage OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..512)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0009 This attribute defines the message + of the event associated with the LC log record." + ::= { lcLogTableEntry 9 } + +lcLogDetailedDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0010 This attribute defines the detailed description + of the event associated with the LC log record." + ::= { lcLogTableEntry 10 } + +lcLogRecommededAction OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..2048)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0011 This attribute defines an optional recommended action + associated with the event associated with the LC log record." + ::= { lcLogTableEntry 11 } + +lcLogComment OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0300.0090.0001.0012 This attribute defines an optional user comment + associated with the event associated with the LC log record." + ::= { lcLogTableEntry 12 } + + + +------------------------------------------------------------------------------- +-- Power Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Power Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.10.1... +------------------------------------------------------------------------------- + +PowerUnitTableEntry ::= SEQUENCE { + powerUnitchassisIndex ObjectRange, + powerUnitIndex ObjectRange, + powerUnitStateCapabilities StateCapabilitiesFlags, + powerUnitStateSettings StateSettingsFlags, + powerUnitRedundancyStatus StatusRedundancyEnum, + powerSupplyCountForRedundancy ObjectRange, + powerUnitName String64, + powerUnitStatus ObjectStatusEnum +} + +powerUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0010 This object defines the Power Unit Table." + ::= { powerGroup 10 } + +powerUnitTableEntry OBJECT-TYPE + SYNTAX PowerUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0010.0001 This object defines the Power Unit Table Entry." + INDEX { powerUnitchassisIndex, + powerUnitIndex } + ::= { powerUnitTable 1 } + +powerUnitchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { powerUnitTableEntry 1 } + +powerUnitIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0002 This attribute defines the index (one based) of the + power unit." + ::= { powerUnitTableEntry 2 } + +powerUnitStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0003 This attribute defines the state capabilities of the + power unit." + ::= { powerUnitTableEntry 3 } + +powerUnitStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0004 This attribute defines the state settings of the + power unit." + ::= { powerUnitTableEntry 4 } + +powerUnitRedundancyStatus OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0005 This attribute defines the redundancy status of the + power unit." + ::= { powerUnitTableEntry 5 } + +powerSupplyCountForRedundancy OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0006 This attribute defines the total number of power supplies + required for this power unit to have full redundancy." + ::= { powerUnitTableEntry 6 } + +powerUnitName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0007 This attribute defines the name of the power unit." + ::= { powerUnitTableEntry 7 } + +powerUnitStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0010.0001.0008 This attribute defines the status of the power unit." + ::= { powerUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.12.1... +------------------------------------------------------------------------------- + +PowerSupplyStateCapabilitiesUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply State Capabilities Unique Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no power supply state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) + notReadyCapable(4) -- power supply can be not ready +} + +PowerSupplyStateSettingsUniqueFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply State Settings Unique Flags." + SYNTAX INTEGER { + -- If 0 (zero), there are no power supply state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + onLine(2), -- power supply is enabled (online) + notReady(4), -- power supply is not ready + fanFailure(8), -- power supply fan has failed + onlineAndFanFailure(10), + powerSupplyIsON(16), -- power supply is supplying power + powerSupplyIsOK(32), -- power supply is indicating it is OK + acSwitchIsON(64), -- power supply is indicating AC power switch is on + onlineandAcSwitchIsON(66), + acPowerIsON(128), -- power supply is indicating AC power is on + onlineAndAcPowerIsON(130), + onlineAndPredictiveFailure(210), + acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) +} + +PowerSupplyTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply Type Enum." + SYNTAX INTEGER { + powerSupplyTypeIsOther(1), -- type is other than following values + powerSupplyTypeIsUnknown(2), -- type is unknown + powerSupplyTypeIsLinear(3), -- type is Linear + powerSupplyTypeIsSwitching(4), -- type is Switching + powerSupplyTypeIsBattery(5), -- type is Battery + powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply + powerSupplyTypeIsConverter(7), -- type is Converter + powerSupplyTypeIsRegulator(8), -- type is Regulator + powerSupplyTypeIsAC(9), -- type is AC + powerSupplyTypeIsDC(10), -- type is DC + powerSupplyTypeIsVRM(11) -- type is VRM +} + +PowerSupplySensorStateFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply Sensor State Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + presenceDetected(1), -- state is Presence detected + psFailureDetected(2), -- state is PS Failure detected + predictiveFailure(4), -- state is Predictive Failure + psACLost(8), -- state is PS AC lost + acLostOrOutOfRange(16), -- state is AC lost or out-of-range + acOutOfRangeButPresent(32), -- state is AC out-of-range, but present + configurationError(64) -- state is Configuration error +} + +PowerSupplyConfigurationErrorTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Supply Configuration Error Type Enum." + SYNTAX INTEGER { + vendorMismatch(1), -- error type is Vendor mismatch + revisionMismatch(2), -- error type is Revision mismatch + processorMissing(3) -- error type is Processor missing +} + +PowerSupplyTableEntry ::= SEQUENCE { + powerSupplychassisIndex ObjectRange, + powerSupplyIndex ObjectRange, + powerSupplyStateCapabilitiesUnique PowerSupplyStateCapabilitiesUniqueFlags, + powerSupplyStateSettingsUnique PowerSupplyStateSettingsUniqueFlags, + powerSupplyStatus ObjectStatusEnum, + powerSupplyOutputWatts Signed32BitRange, + powerSupplyType PowerSupplyTypeEnum, + powerSupplyLocationName String64, + powerSupplyMaximumInputVoltage Signed32BitRange, + powerSupplypowerUnitIndexReference ObjectRange, + powerSupplySensorState PowerSupplySensorStateFlags, + powerSupplyConfigurationErrorType PowerSupplyConfigurationErrorTypeEnum, + powerSupplyPowerMonitorCapable BooleanType, + powerSupplyRatedInputWattage Signed32BitRange, + powerSupplyFQDD FQDDString, + powerSupplyCurrentInputVoltage Signed32BitRange +} + +powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0012 This object defines the Power Supply Table." + ::= { powerGroup 12 } + +powerSupplyTableEntry OBJECT-TYPE + SYNTAX PowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0012.0001 This object defines the Power Supply Table Entry." + INDEX { powerSupplychassisIndex, + powerSupplyIndex } + ::= { powerSupplyTable 1 } + +powerSupplychassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { powerSupplyTableEntry 1 } + +powerSupplyIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0002 This attribute defines the index (one based) of the + power supply." + ::= { powerSupplyTableEntry 2 } + +powerSupplyStateCapabilitiesUnique OBJECT-TYPE + SYNTAX PowerSupplyStateCapabilitiesUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0003 This attribute defines the state capabilities of the + power supply." + ::= { powerSupplyTableEntry 3 } + +powerSupplyStateSettingsUnique OBJECT-TYPE + SYNTAX PowerSupplyStateSettingsUniqueFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0004 This attribute defines the state settings of the + power supply." + ::= { powerSupplyTableEntry 4 } + +powerSupplyStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0005 This attribute defines the status of the power supply." + ::= { powerSupplyTableEntry 5 } + +powerSupplyOutputWatts OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0006 This attribute defines the maximum sustained output + wattage of the power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 6 } + +powerSupplyType OBJECT-TYPE + SYNTAX PowerSupplyTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0007 This attribute defines the type of the power supply." + ::= { powerSupplyTableEntry 7 } + +powerSupplyLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0008 This attribute defines the location of the power supply." + ::= { powerSupplyTableEntry 8 } + +powerSupplyMaximumInputVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0009 This attribute defines the maximum input voltage of the + power supply (in Volts)." + ::= { powerSupplyTableEntry 9 } + +powerSupplypowerUnitIndexReference OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0010 This attribute defines the index to the associated + power unit if the power supply is part of a power unit." + ::= { powerSupplyTableEntry 10 } + +powerSupplySensorState OBJECT-TYPE + SYNTAX PowerSupplySensorStateFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0011 This attribute defines the state reported by the + power supply sensor. This attribute supplements the attribute + powerSupplyStateSettingsUnique." + ::= { powerSupplyTableEntry 11 } + +powerSupplyConfigurationErrorType OBJECT-TYPE + SYNTAX PowerSupplyConfigurationErrorTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0012 This attribute defines the type of configuration error + reported by the power supply sensor. When the configurationError bit is on + in the value for the attribute powerSupplySensorState, a value is returned + for this attribute; otherwise, a value is not returned for this attribute." + ::= { powerSupplyTableEntry 12 } + +powerSupplyPowerMonitorCapable OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0013 This attribute defines a boolean value that reports + whether the power supply is capable of monitoring power consumption." + ::= { powerSupplyTableEntry 13 } + +powerSupplyRatedInputWattage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0014 This attribute defines the rated input wattage of the + power supply (in tenths of Watts)." + ::= { powerSupplyTableEntry 14 } + +powerSupplyFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0015 Fully qualified device descriptor (FQDD) of the + power supply." + ::= { powerSupplyTableEntry 15 } + +powerSupplyCurrentInputVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0012.0001.0016 This attribute defines the current input voltage to the + power supply (in Volts)." + ::= { powerSupplyTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Voltage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.20.1... +------------------------------------------------------------------------------- + +VoltageTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Voltage Type Enum." + SYNTAX INTEGER { + voltageProbeTypeIsOther(1), -- type is other than following values + voltageProbeTypeIsUnknown(2), -- type is unknown + voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe + voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe + voltageProbeTypeIs5Volt(5), -- type is 5 volt probe + voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe + voltageProbeTypeIs12Volt(7), -- type is 12 volt probe + voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe + voltageProbeTypeIsIO(9), -- type is I/O probe + voltageProbeTypeIsCore(10), -- type is Core probe + voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + voltageProbeTypeIsBattery(12), -- type is Battery probe + voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe + voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + voltageProbeTypeIsDiscrete(16), -- type is voltage probe with discrete reading + voltageProbeTypeIsGenericDiscrete(17), -- type is generic discrete reading + voltageProbeTypeIsPSVoltage(18), -- type is Power Supply voltage probe + voltageProbeTypeIsMemoryStatus(19) -- type is Memory Status probe +} + +VoltageDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Voltage Discrete Reading Enum." + SYNTAX INTEGER { + voltageIsGood(1), -- voltage reading is Good + voltageIsBad(2) -- voltage reading is Bad +} + +VoltageProbeTableEntry ::= SEQUENCE { + voltageProbechassisIndex ObjectRange, + voltageProbeIndex ObjectRange, + voltageProbeStateCapabilities StateCapabilitiesFlags, + voltageProbeStateSettings StateSettingsFlags, + voltageProbeStatus StatusProbeEnum, + voltageProbeReading Signed32BitRange, + voltageProbeType VoltageTypeEnum, + voltageProbeLocationName String64, + voltageProbeUpperNonRecoverableThreshold Signed32BitRange, + voltageProbeUpperCriticalThreshold Signed32BitRange, + voltageProbeUpperNonCriticalThreshold Signed32BitRange, + voltageProbeLowerNonCriticalThreshold Signed32BitRange, + voltageProbeLowerCriticalThreshold Signed32BitRange, + voltageProbeLowerNonRecoverableThreshold Signed32BitRange, + voltageProbeProbeCapabilities ProbeCapabilitiesFlags, + voltageProbeDiscreteReading VoltageDiscreteReadingEnum +} + +voltageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoltageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0020 This object defines the Voltage Probe Table." + ::= { powerGroup 20 } + +voltageProbeTableEntry OBJECT-TYPE + SYNTAX VoltageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0020.001 This object defines the Voltage Probe Table Entry." + INDEX { voltageProbechassisIndex, + voltageProbeIndex } + ::= { voltageProbeTable 1 } + +voltageProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { voltageProbeTableEntry 1 } + +voltageProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0002 This attribute defines the index (one based) of the + voltage probe." + ::= { voltageProbeTableEntry 2 } + +voltageProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0003 This attribute defines the state capabilities of the + voltage probe." + ::= { voltageProbeTableEntry 3 } + +voltageProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0004 This attribute defines the state settings of the + voltage probe." + ::= { voltageProbeTableEntry 4 } + +voltageProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0005 This attribute defines the probe status of the + voltage probe." + ::= { voltageProbeTableEntry 5 } + +voltageProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0006 This attribute defines the reading for a voltage + probe of type other than voltageProbeTypeIsDiscrete. When the value + for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value + returned for this attribute is the voltage that the probe is reading + in millivolts. When the value for voltageProbeType is + voltageProbeTypeIsDiscrete, a value is not returned for this attribute." + ::= { voltageProbeTableEntry 6 } + +voltageProbeType OBJECT-TYPE + SYNTAX VoltageTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0007 This attribute defines the type of the voltage probe." + ::= { voltageProbeTableEntry 7 } + +voltageProbeLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0008 This attribute defines the location name of the + voltage probe." + ::= { voltageProbeTableEntry 8 } + +voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 9 } + +voltageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0010 This attribute defines the upper critical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 10 } + +voltageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0011 This attribute defines the upper noncritical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 11 } + +voltageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0012 This attribute defines the lower noncritical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 12 } + +voltageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0013 This attribute defines the lower critical threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 13 } + +voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the voltage probe. The value is an integer representing the voltage + of the threshold in millivolts." + ::= { voltageProbeTableEntry 14 } + +voltageProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0015 This attribute defines the probe capabilities of the + voltage probe." + ::= { voltageProbeTableEntry 15 } + +voltageProbeDiscreteReading OBJECT-TYPE + SYNTAX VoltageDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0020.0001.0016 This attribute defines the reading for a voltage + probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType + is other than voltageProbeTypeIsDiscrete, a value is not returned for this + attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, + the value returned for this attribute is the discrete reading for the probe." + ::= { voltageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Amperage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.30.1... +------------------------------------------------------------------------------- + +AmperageProbeTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Amperage Probe Type Enum." + SYNTAX INTEGER { + amperageProbeTypeIsOther(1), -- type is other than following values + amperageProbeTypeIsUnknown(2), -- type is unknown + amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe + amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe + amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe + amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe + amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe + amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe + amperageProbeTypeIsIO(9), -- type is I/O probe + amperageProbeTypeIsCore(10), -- type is Core probe + amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + amperageProbeTypeIsBattery(12), -- type is Battery probe + amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe + amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading + amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps + amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts + amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps + amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts +} + +AmperageDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Amperage Discrete Reading Enum." + SYNTAX INTEGER { + amperageIsGood(1), -- amperage reading is Good + amperageIsBad(2) -- amperage reading is Bad +} + +AmperageProbeTableEntry ::= SEQUENCE { + amperageProbechassisIndex ObjectRange, + amperageProbeIndex ObjectRange, + amperageProbeStateCapabilities StateCapabilitiesFlags, + amperageProbeStateSettings StateSettingsFlags, + amperageProbeStatus StatusProbeEnum, + amperageProbeReading Signed32BitRange, + amperageProbeType AmperageProbeTypeEnum, + amperageProbeLocationName String64, + amperageProbeUpperNonRecoverableThreshold Signed32BitRange, + amperageProbeUpperCriticalThreshold Signed32BitRange, + amperageProbeUpperNonCriticalThreshold Signed32BitRange, + amperageProbeLowerNonCriticalThreshold Signed32BitRange, + amperageProbeLowerCriticalThreshold Signed32BitRange, + amperageProbeLowerNonRecoverableThreshold Signed32BitRange, + amperageProbeProbeCapabilities ProbeCapabilitiesFlags, + amperageProbeDiscreteReading AmperageDiscreteReadingEnum +} + +amperageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmperageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0030 This object defines the Amperage Probe Table." + ::= { powerGroup 30 } + +amperageProbeTableEntry OBJECT-TYPE + SYNTAX AmperageProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0030.0001 This object defines the Amperage Probe Table Entry." + INDEX { amperageProbechassisIndex, + amperageProbeIndex } + ::= { amperageProbeTable 1 } + +amperageProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0001 This attribute defines the index (one based) of + the system chassis." + ::= { amperageProbeTableEntry 1 } + +amperageProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0002 This attribute defines the index (one based) of the + amperage probe." + ::= { amperageProbeTableEntry 2 } + +amperageProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0003 This attribute defines the state capabilities of the + amperage probe." + ::= { amperageProbeTableEntry 3 } + +amperageProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0004 This attribute defines the state settings of the + amperage probe." + ::= { amperageProbeTableEntry 4 } + +amperageProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0005 This attribute defines the probe status of the + amperage probe." + ::= { amperageProbeTableEntry 5 } + +amperageProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0006 This attribute defines the reading for an amperage + probe of type other than amperageProbeTypeIsDiscrete. + + When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps + or amperageProbeTypeIsSystemAmps, the value returned for this attribute + is the power usage that the probe is reading in tenths of Amps. + + When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts + or amperageProbeTypeIsSystemWatts, the value returned for this attribute + is the power usage that the probe is reading in Watts. + + When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, + amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, + amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, + the value returned for this attribute is the amperage that the probe is + reading in Milliamps. + + When the value for amperageProbeType is amperageProbeTypeIsDiscrete, + a value is not returned for this attribute." + ::= { amperageProbeTableEntry 6 } + +amperageProbeType OBJECT-TYPE + SYNTAX AmperageProbeTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0007 This attribute defines the type of the amperage probe." + ::= { amperageProbeTableEntry 7 } + +amperageProbeLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0008 This attribute defines the location of the amperage probe." + ::= { amperageProbeTableEntry 8 } + +amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 9 } + +amperageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0010 This attribute defines the upper critical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 10 } + +amperageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0011 This attribute defines the upper noncritical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 11 } + +amperageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0012 This attribute defines the lower noncritical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 12 } + +amperageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0013 This attribute defines the lower critical threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 13 } + +amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold + of the amperage probe. The value is an integer representing the amperage + of the threshold in milliamps." + ::= { amperageProbeTableEntry 14 } + +amperageProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0015 This attribute defines the probe capabilities of the + amperage probe." + ::= { amperageProbeTableEntry 15 } + +amperageProbeDiscreteReading OBJECT-TYPE + SYNTAX AmperageDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0030.0001.0016 This attribute defines the reading for an amperage + probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType + is other than amperageProbeTypeIsDiscrete, a value is not returned for this + attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, + the value returned for this attribute is the discrete reading for the probe." + ::= { amperageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- System Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.50.1... +------------------------------------------------------------------------------- + +SystemBatteryReadingFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Battery Reading Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + predictiveFailure(1), -- battery predictive failure + failed(2), -- battery failed + presenceDetected(4) -- battery presence detected +} + +SystemBatteryTableEntry ::= SEQUENCE { + systemBatteryChassisIndex ObjectRange, + systemBatteryIndex ObjectRange, + systemBatteryStateCapabilities StateCapabilitiesFlags, + systemBatteryStateSettings StateSettingsFlags, + systemBatteryStatus ObjectStatusEnum, + systemBatteryReading SystemBatteryReadingFlags, + systemBatteryLocationName String64 +} + +systemBatteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0050 This object defines the System Battery Table." + ::= { powerGroup 50 } + +systemBatteryTableEntry OBJECT-TYPE + SYNTAX SystemBatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0050.0001 This object defines the System Battery Table Entry." + INDEX { systemBatteryChassisIndex, + systemBatteryIndex } + ::= { systemBatteryTable 1 } + +systemBatteryChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0001 This attribute defines the index (one based) of + the system chassis that contains the battery." + ::= { systemBatteryTableEntry 1 } + +systemBatteryIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0002 This attribute defines the index (one based) of the battery." + ::= { systemBatteryTableEntry 2 } + +systemBatteryStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0003 This attribute defines the state capabilities of the battery." + ::= { systemBatteryTableEntry 3 } + +systemBatteryStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0004 This attribute defines the state settings of the battery." + ::= { systemBatteryTableEntry 4 } + +systemBatteryStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0005 This attribute defines the status of the battery." + ::= { systemBatteryTableEntry 5 } + +systemBatteryReading OBJECT-TYPE + SYNTAX SystemBatteryReadingFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0006 This attribute defines the reading of the battery." + ::= { systemBatteryTableEntry 6 } + +systemBatteryLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0050.0001.0007 This attribute defines the location of the battery." + ::= { systemBatteryTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Power Usage Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.600.60.1... +------------------------------------------------------------------------------- + +PowerCapCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Cap Capabilities Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no power cap capabilities + enable(1), -- power cap can be enabled + disable(2) -- power cap can be disabled +} + +PowerCapSettingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Power Cap Setting Enum." + SYNTAX INTEGER { + -- disabled(0), - power cap disabled + enabled(1) -- power cap enabled +} + +PowerUsageTableEntry ::= SEQUENCE { + powerUsageChassisIndex ObjectRange, + powerUsageIndex ObjectRange, + powerUsageStateCapabilities StateCapabilitiesFlags, + powerUsageStateSettings StateSettingsFlags, + powerUsageStatus ObjectStatusEnum, + powerUsageEntityName String64, + powerUsageCumulativeWattage Unsigned32BitRange, + powerUsageCumulativeWattageStartDateName DateName, + powerUsagePeakWatts Unsigned32BitRange, + powerUsagePeakWattsStartDateName DateName, + powerUsagePeakWattsReadingDateName DateName, + powerUsagePeakAmps Unsigned32BitRange, + powerUsagePeakAmpsStartDateName DateName, + powerUsagePeakAmpsReadingDateName DateName, + powerUsageIdlePower Unsigned32BitRange, + powerUsageMaxPotentialPower Unsigned32BitRange, + powerUsagePowerCapCapabilities PowerCapCapabilitiesFlags, + powerUsagePowerCapSetting PowerCapSettingEnum, + powerUsagePowerCapValue Unsigned32BitRange, + powerUsageInstantaneousHeadroom Unsigned32BitRange, + powerUsagePeakHeadroom Unsigned32BitRange +} + +powerUsageTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUsageTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0060 This object defines the Power Usage Table." + ::= { powerGroup 60 } + +powerUsageTableEntry OBJECT-TYPE + SYNTAX PowerUsageTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0600.0060.0001 This object defines the Power Usage Table Entry." + INDEX { powerUsageChassisIndex, + powerUsageIndex } + ::= { powerUsageTable 1 } + +powerUsageChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0001 This attribute defines the index (one based) of + the associated system chassis." + ::= { powerUsageTableEntry 1 } + +powerUsageIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0002 This attribute defines the index (one based) of the + power usage information." + ::= { powerUsageTableEntry 2 } + +powerUsageStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0003 This attribute defines the state capabilities of the + power usage information." + ::= { powerUsageTableEntry 3 } + +powerUsageStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0004 This attribute defines the state settings of the + power usage information." + ::= { powerUsageTableEntry 4 } + +powerUsageStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0005 This attribute defines the status of the + power usage information." + ::= { powerUsageTableEntry 5 } + +powerUsageEntityName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0006 This attribute defines the name of the entity + associated with this power usage information." + ::= { powerUsageTableEntry 6 } + +powerUsageCumulativeWattage OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0007 This attribute defines the total wattage used + (in Watt-hours) by this entity since the date and time specified + by the powerUsageCumulativeWattageStartDateName attribute." + ::= { powerUsageTableEntry 7 } + +powerUsageCumulativeWattageStartDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0008 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsageCumulativeWattage attribute." + ::= { powerUsageTableEntry 8 } + +powerUsagePeakWatts OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0009 This attribute defines the peak wattage reading + (in Watts) for this entity since the date and time specified by the + powerUsagePeakWattsStartDateName attribute." + ::= { powerUsageTableEntry 9 } + +powerUsagePeakWattsStartDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0010 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsagePeakWatts attribute." + ::= { powerUsageTableEntry 10 } + +powerUsagePeakWattsReadingDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0011 This attribute defines the date and time at + which the value reported by the powerUsagePeakWatts attribute was + measured." + ::= { powerUsageTableEntry 11 } + +powerUsagePeakAmps OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0012 This attribute defines the peak amperage reading + (in tenths of Amps) for this entity since the date and time specified + by the powerUsagePeakAmpsStartDateName attribute." + ::= { powerUsageTableEntry 12 } + +powerUsagePeakAmpsStartDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0013 This attribute defines the date and time at + which the data collection started for the value reported by the + powerUsagePeakAmps attribute." + ::= { powerUsageTableEntry 13 } + +powerUsagePeakAmpsReadingDateName OBJECT-TYPE + SYNTAX DateName + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0014 This attribute defines the date and time at + which the value reported by the powerUsagePeakAmps attribute was + measured." + ::= { powerUsageTableEntry 14 } + +powerUsageIdlePower OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0015 This attribute defines the system idle power + (in Watts). This is the minimum power the system can consume + based on the current hardware configuration." + ::= { powerUsageTableEntry 15 } + +powerUsageMaxPotentialPower OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0016 This attribute defines the system maximum potential + power (in Watts). This is the maximum power the system can consume + based on the current hardware configuration." + ::= { powerUsageTableEntry 16 } + +powerUsagePowerCapCapabilities OBJECT-TYPE + SYNTAX PowerCapCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0017 This attribute defines the system power cap capabilities." + ::= { powerUsageTableEntry 17 } + +powerUsagePowerCapSetting OBJECT-TYPE + SYNTAX PowerCapSettingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0018 This attribute defines the system power cap setting." + ::= { powerUsageTableEntry 18 } + +powerUsagePowerCapValue OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0019 This attribute defines the system power cap value + (in Watts)." + ::= { powerUsageTableEntry 19 } + +powerUsageInstantaneousHeadroom OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0020 This attribute defines the system instantaneous + headroom (in Watts). This is the theoretical maximum power drawn by + the power supply minus instantaneous power draw." + ::= { powerUsageTableEntry 20 } + +powerUsagePeakHeadroom OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0600.0060.0001.0021 This attribute defines the system peak headroom + (in Watts). This is the theoretical maximum power drawn by the power + supply minus peak power draw." + ::= { powerUsageTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Thermal Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cooling Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.10.1... +------------------------------------------------------------------------------- + +CoolingUnitTableEntry ::= SEQUENCE { + coolingUnitchassisIndex ObjectRange, + coolingUnitIndex ObjectRange, + coolingUnitStateCapabilties StateCapabilitiesFlags, + coolingUnitStateSettings StateSettingsFlags, + coolingUnitRedundancyStatus StatusRedundancyEnum, + coolingDeviceCountForRedundancy ObjectRange, + coolingUnitName String64, + coolingUnitStatus ObjectStatusEnum +} + +coolingUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0010 This object defines the Cooling Unit Table." + ::= { thermalGroup 10 } + +coolingUnitTableEntry OBJECT-TYPE + SYNTAX CoolingUnitTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0010.0001 This object defines the Cooling Unit Table Entry." + INDEX { coolingUnitchassisIndex, + coolingUnitIndex } + ::= { coolingUnitTable 1 } + +coolingUnitchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0001 This attribute defines the index (one based) of + the associated system chassis." + ::= { coolingUnitTableEntry 1 } + +coolingUnitIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0002 This attribute defines the index (one based) of the + cooling unit." + ::= { coolingUnitTableEntry 2 } + +coolingUnitStateCapabilties OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0003 This attribute defines the state capabilities of the + cooling unit." + ::= { coolingUnitTableEntry 3 } + +coolingUnitStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0004 This attribute defines the state settings of the + cooling unit." + ::= { coolingUnitTableEntry 4 } + +coolingUnitRedundancyStatus OBJECT-TYPE + SYNTAX StatusRedundancyEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0005 This attribute defines the redundancy status of the + cooling unit." + ::= { coolingUnitTableEntry 5 } + +coolingDeviceCountForRedundancy OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0006 This attribute defines the total number of cooling devices + required for this cooling unit to have full redundancy." + ::= { coolingUnitTableEntry 6 } + +coolingUnitName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0007 This attribute defines the name of the cooling unit." + ::= { coolingUnitTableEntry 7 } + +coolingUnitStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0010.0001.0008 This attribute defines the status of the cooling unit." + ::= { coolingUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cooling Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.12.1... +------------------------------------------------------------------------------- + +CoolingDeviceTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Cooling Device Type Enum." + SYNTAX INTEGER { + coolingDeviceTypeIsOther(1), -- type is other than following values + coolingDeviceTypeIsUnknown(2), -- type is unknown + coolingDeviceTypeIsAFan(3), -- type is Fan + coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower + coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit + coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan + coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan + coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe + coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit + coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device + coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device +} + +CoolingDeviceSubTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Cooling Device Sub Type Enum." + SYNTAX INTEGER { + coolingDeviceSubTypeIsOther(1), -- subtype is other than following values + coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown + coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM + coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On + coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading +} + +CoolingDeviceDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Cooling Device Discrete Reading Enum." + SYNTAX INTEGER { + coolingDeviceIsGood(1), -- cooling device is Good + coolingDeviceIsBad(2) -- cooling device is Bad +} + +CoolingDeviceTableEntry ::= SEQUENCE { + coolingDevicechassisIndex ObjectRange, + coolingDeviceIndex ObjectRange, + coolingDeviceStateCapabilities StateCapabilitiesFlags, + coolingDeviceStateSettings StateSettingsFlags, + coolingDeviceStatus StatusProbeEnum, + coolingDeviceReading Signed32BitRange, + coolingDeviceType CoolingDeviceTypeEnum, + coolingDeviceLocationName String64, + coolingDeviceUpperNonRecoverableThreshold Signed32BitRange, + coolingDeviceUpperCriticalThreshold Signed32BitRange, + coolingDeviceUpperNonCriticalThreshold Signed32BitRange, + coolingDeviceLowerNonCriticalThreshold Signed32BitRange, + coolingDeviceLowerCriticalThreshold Signed32BitRange, + coolingDeviceLowerNonRecoverableThreshold Signed32BitRange, + coolingDevicecoolingUnitIndexReference ObjectRange, + coolingDeviceSubType CoolingDeviceSubTypeEnum, + coolingDeviceProbeCapabilities ProbeCapabilitiesFlags, + coolingDeviceDiscreteReading CoolingDeviceDiscreteReadingEnum, + coolingDeviceFQDD FQDDString +} + +coolingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0012 This object defines the Cooling Device Table." + ::= { thermalGroup 12 } + +coolingDeviceTableEntry OBJECT-TYPE + SYNTAX CoolingDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0012.0001 This object defines the Cooling Device Table Entry." + INDEX { coolingDevicechassisIndex, + coolingDeviceIndex } + ::= { coolingDeviceTable 1 } + +coolingDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { coolingDeviceTableEntry 1 } + +coolingDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0002 This attribute defines the index (one based) of the + cooling device." + ::= { coolingDeviceTableEntry 2 } + +coolingDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0003 This attribute defines the state capabilities of the + cooling device." + ::= { coolingDeviceTableEntry 3 } + +coolingDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0004 This attribute defines the state settings of the + cooling device." + ::= { coolingDeviceTableEntry 4 } + +coolingDeviceStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0005 This attribute defines the probe status of the + cooling device." + ::= { coolingDeviceTableEntry 5 } + +coolingDeviceReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0006 This attribute defines the reading for a cooling device + of subtype other than coolingDeviceSubTypeIsDiscrete. When the value + for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the + value returned for this attribute is the speed in RPM or the OFF/ON value + of the cooling device. When the value for coolingDeviceSubType is + coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." + ::= { coolingDeviceTableEntry 6 } + +coolingDeviceType OBJECT-TYPE + SYNTAX CoolingDeviceTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0007 This attribute defines the type of the cooling device." + ::= { coolingDeviceTableEntry 7 } + +coolingDeviceLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0008 This attribute defines the location name of the + cooling device." + ::= { coolingDeviceTableEntry 8 } + +coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 9 } + +coolingDeviceUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0010 This attribute defines the upper critical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 10 } + +coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0011 This attribute defines the upper noncritical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 11 } + +coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0012 This attribute defines the lower noncritical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 12 } + +coolingDeviceLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0013 This attribute defines the lower critical threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 13 } + +coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold + of the cooling device. The value is an integer representing fan speed + in revolutions per minute (RPM). It is not applicable to OFF/ON type + cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 14 } + +coolingDevicecoolingUnitIndexReference OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0015 This attribute defines the index to the associated + cooling unit." + ::= { coolingDeviceTableEntry 15 } + +coolingDeviceSubType OBJECT-TYPE + SYNTAX CoolingDeviceSubTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0016 This attribute defines the subtype of the cooling device." + ::= { coolingDeviceTableEntry 16 } + +coolingDeviceProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0017 This attribute defines the probe capabilities of the + cooling device." + ::= { coolingDeviceTableEntry 17 } + +coolingDeviceDiscreteReading OBJECT-TYPE + SYNTAX CoolingDeviceDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0018 This attribute defines the reading for a cooling device + of type coolingDeviceSubTypeIsDiscrete. When the value for + coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value + is not returned for this attribute. When the value for coolingDeviceSubType + is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute + is the discrete reading for the cooling device." + ::= { coolingDeviceTableEntry 18 } + +coolingDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0012.0001.0019 Fully qualified device descriptor (FQDD) of the + cooling device." + ::= { coolingDeviceTableEntry 19 } + + +------------------------------------------------------------------------------- +-- Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.700.20.1... +------------------------------------------------------------------------------- + +TemperatureProbeTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Temperature Probe Type Enum." + SYNTAX INTEGER { + temperatureProbeTypeIsOther(1), -- type is other than following values + temperatureProbeTypeIsUnknown(2), -- type is unknown + temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe + temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading +} + +TemperatureDiscreteReadingEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Temperature Discrete Reading Enum." + SYNTAX INTEGER { + temperatureIsGood(1), -- temperature reading is Good + temperatureIsBad(2) -- temperature reading is Bad +} + +TemperatureProbeTableEntry ::= SEQUENCE { + temperatureProbechassisIndex ObjectRange, + temperatureProbeIndex ObjectRange, + temperatureProbeStateCapabilities StateCapabilitiesFlags, + temperatureProbeStateSettings StateSettingsFlags, + temperatureProbeStatus StatusProbeEnum, + temperatureProbeReading Signed32BitRange, + temperatureProbeType TemperatureProbeTypeEnum, + temperatureProbeLocationName String64, + temperatureProbeUpperNonRecoverableThreshold Signed32BitRange, + temperatureProbeUpperCriticalThreshold Signed32BitRange, + temperatureProbeUpperNonCriticalThreshold Signed32BitRange, + temperatureProbeLowerNonCriticalThreshold Signed32BitRange, + temperatureProbeLowerCriticalThreshold Signed32BitRange, + temperatureProbeLowerNonRecoverableThreshold Signed32BitRange, + temperatureProbeProbeCapabilities ProbeCapabilitiesFlags, + temperatureProbeDiscreteReading TemperatureDiscreteReadingEnum +} + +temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0020 This object defines the Temperature Probe Table." + ::= { thermalGroup 20 } + +temperatureProbeTableEntry OBJECT-TYPE + SYNTAX TemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "0700.0020.0001 This object defines the Temperature Probe Table Entry." + INDEX { temperatureProbechassisIndex, + temperatureProbeIndex } + ::= { temperatureProbeTable 1 } + +temperatureProbechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { temperatureProbeTableEntry 1 } + +temperatureProbeIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0002 This attribute defines the index (one based) of the + temperature probe." + ::= { temperatureProbeTableEntry 2 } + +temperatureProbeStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0003 This attribute defines the state capabilities of the + temperature probe." + ::= { temperatureProbeTableEntry 3 } + +temperatureProbeStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0004 This attribute defines the state settings of the + temperature probe." + ::= { temperatureProbeTableEntry 4 } + +temperatureProbeStatus OBJECT-TYPE + SYNTAX StatusProbeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0005 This attribute defines the probe status of the + temperature probe." + ::= { temperatureProbeTableEntry 5 } + +temperatureProbeReading OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0006 This attribute defines the reading for a temperature + probe of type other than temperatureProbeTypeIsDiscrete. When the value + for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, + the value returned for this attribute is the temperature that the probe + is reading in tenths of degrees Centigrade. When the value for + temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not + returned for this attribute." + ::= { temperatureProbeTableEntry 6 } + +temperatureProbeType OBJECT-TYPE + SYNTAX TemperatureProbeTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0007 This attribute defines the type of the temperature probe." + ::= { temperatureProbeTableEntry 7 } + +temperatureProbeLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0008 This attribute defines the location name of the + temperature probe." + ::= { temperatureProbeTableEntry 8 } + +temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 9 } + +temperatureProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0010 This attribute defines the upper critical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 10 } + +temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0011 This attribute defines the upper noncritical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 11 } + +temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0012 This attribute defines the lower noncritical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 12 } + +temperatureProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0013 This attribute defines the lower critical threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 13 } + +temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold + of the temperature probe. The value is an integer representing the temperature + of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 14 } + +temperatureProbeProbeCapabilities OBJECT-TYPE + SYNTAX ProbeCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0015 This attribute defines the probe capabilities of the + temperature probe." + ::= { temperatureProbeTableEntry 15 } + +temperatureProbeDiscreteReading OBJECT-TYPE + SYNTAX TemperatureDiscreteReadingEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "0700.0020.0001.0016 This attribute defines the reading for a temperature + probe of type temperatureProbeTypeIsDiscrete. When the value for + temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value + is not returned for this attribute. When the value for temperatureProbeType + is temperatureProbeTypeIsDiscrete, the value returned for this attribute + is the discrete reading for the probe." + ::= { temperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Device Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Processor Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.30.1... +------------------------------------------------------------------------------- + +ProcessorDeviceType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Type." + SYNTAX INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsCPU(3), -- type is Central Processing Unit + deviceTypeIsMathProcessor(4), -- type is Math Processor + deviceTypeIsDSP(5), -- type is Digital Signal Processor + deviceTypeIsAVideoProcessor(6) -- type is Video Processor +} + +ProcessorDeviceFamily ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Family." + SYNTAX INTEGER { + deviceFamilyIsOther(1), -- family is Other + deviceFamilyIsUnknown(2), -- family is Unknown + deviceFamilyIs8086(3), -- family is 8086 + deviceFamilyIs80286(4), -- family is 80286 + deviceFamilyIsIntel386(5), -- family is Intel386 processor + deviceFamilyIsIntel486(6), -- family is Intel486 processor + deviceFamilyIs8087(7), -- family is 8087 + deviceFamilyIs80287(8), -- family is 80287 + deviceFamilyIs80387(9), -- family is 80387 + deviceFamilyIs80487(10), -- family is 80487 + deviceFamilyIsPentium(11), -- family is Pentium processor Family + deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor + deviceFamilyIsPentiumII(13), -- family is Pentium II processor + deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology + deviceFamilyIsCeleron(15), -- family is Celeron processor + deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor + deviceFamilyIsPentiumIII(17), -- family is Pentium III processor + deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor + deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology + deviceFamilyIsItanium(20), -- family is Itanium processor + deviceFamilyIsIntelXeon(21), -- family is Intel Xeon + deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor + deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP + deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor + deviceFamilyIsK5(25), -- family is K5 Family + deviceFamilyIsK6(26), -- family is K6 Family + deviceFamilyIsK6Dash2(27), -- family is K6-2 + deviceFamilyIsK6Dash3(28), -- family is K6-3 + deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family + deviceFamilyIsAMD2900(30), -- family is AMD2900 Family + deviceFamilyIsK6Dash2Plus(31), -- family is K6-2+ + deviceFamilyIsPowerPC(32), -- family is Power PC Family + deviceFamilyIsPowerPC601(33), -- family is Power PC 601 + deviceFamilyIsPowerPC603(34), -- family is Power PC 603 + deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ + deviceFamilyIsPowerPC604(36), -- family is Power PC 604 + deviceFamilyIsPowerPC620(37), -- family is Power PC 620 + deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 + deviceFamilyIsPowerPC750(39), -- family is Power PC 750 + deviceFamilyIsIntelCoreDuo(40), -- family is Intel(R) Core(TM) Duo processor + deviceFamilyIsIntelCoreDuoMobile(41), -- family is Intel(R) Core(TM) Duo mobile processor + deviceFamilyIsIntelCoreSoloMobile(42), -- family is Intel(R) Core(TM) Solo mobile processor + deviceFamilyIsIntelAtom(43), -- family is Intel(R) Atom(TM) processor + deviceFamilyIsAlpha(48), -- family is Alpha Family + deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 + deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 + deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 + deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC + deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a + deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 + deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 + deviceFamilyIsAMDTurionIIUltraDualMobileM(56), -- family is AMD Turion(TM) II Ultra Dual-Core Mobile M Processor Family + deviceFamilyIsAMDTurionIIDualMobileM(57), -- family is AMD Turion(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDAthlonIIDualMobileM(58), -- family is AMD Athlon(TM) II Dual-Core Mobile M Processor Family + deviceFamilyIsAMDOpteron6100(59), -- family is AMD Opteron(TM) 6100 Series Processor + deviceFamilyIsAMDOpteron4100(60), -- family is AMD Opteron(TM) 4100 Series Processor + deviceFamilyIsAMDOpteron6200(61), -- family is AMD Opteron(TM) 6200 Series Processor + deviceFamilyIsAMDOpteron4200(62), -- family is AMD Opteron(TM) 4200 Series Processor + deviceFamilyIsMIPS(64), -- family is MIPS Family + deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 + deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 + deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 + deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 + deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 + deviceFamilyIsSPARC(80), -- family is SPARC Family + deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC + deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II + deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep + deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC + deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II + deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi + deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III + deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi + deviceFamilyIs68040(96), -- family is 68040 Family + deviceFamilyIs68xxx(97), -- family is 68xxx + deviceFamilyIs68000(98), -- family is 68000 + deviceFamilyIs68010(99), -- family is 68010 + deviceFamilyIs68020(100), -- family is 68020 + deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsHobbit(112), -- family is Hobbit Family + deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family + deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family + deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family + deviceFamilyIsWeitek(128), -- family is Weitek + deviceFamilyIsIntelCeleronM(130), -- family is Intel(R) Celeron(R) M processor + deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family + deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family + deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family + deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology + deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family + deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology + deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family + deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family + deviceFamilyIsAMDPhenomFXQuadCore(140), -- family is AMD Phenom(TM) FX Quad-Core Processor Family + deviceFamilyIsAMDPhenomX4QuadCore(141), -- family is AMD Phenom(TM) X4 Quad-Core Processor Family + deviceFamilyIsAMDPhenomX2DualCore(142), -- family is AMD Phenom(TM) X2 Dual-Core Processor Family + deviceFamilyIsAMDAthlonX2DualCore(143), -- family is AMD Athlon(TM) X2 Dual-Core Processor Family + deviceFamilyIsPARISC(144), -- family is PA-RISC Family + deviceFamilyIsPARISC8500(145), -- family is PA-RISC 8500 + deviceFamilyIsPARISC8000(146), -- family is PA-RISC 8000 + deviceFamilyIsPARISC7300LC(147), -- family is PA-RISC 7300LC + deviceFamilyIsPARISC7200(148), -- family is PA-RISC 7200 + deviceFamilyIsPARISC7100LC(149), -- family is PA-RISC 7100LC + deviceFamilyIsPARISC7100(150), -- family is PA-RISC 7100 + deviceFamilyIsV30(160), -- family is V30 Family + deviceFamilyIsQuadCoreIntelXeon3200(161), -- family is Quad-Core Intel(R) Xeon(R) processor 3200 Series + deviceFamilyIsDualCoreIntelXeon3000(162), -- family is Dual-Core Intel(R) Xeon(R) processor 3000 Series + deviceFamilyIsQuadCoreIntelXeon5300(163), -- family is Quad-Core Intel(R) Xeon(R) processor 5300 Series + deviceFamilyIsDualCoreIntelXeon5100(164), -- family is Dual-Core Intel(R) Xeon(R) processor 5100 Series + deviceFamilyIsDualCoreIntelXeon5000(165), -- family is Dual-Core Intel(R) Xeon(R) processor 5000 Series + deviceFamilyIsDualCoreIntelXeonLV(166), -- family is Dual-Core Intel(R) Xeon(R) processor LV + deviceFamilyIsDualCoreIntelXeonULV(167), -- family is Dual-Core Intel(R) Xeon(R) processor ULV + deviceFamilyIsDualCoreIntelXeon7100(168), -- family is Dual-Core Intel(R) Xeon(R) processor 7100 Series + deviceFamilyIsQuadCoreIntelXeon5400(169), -- family is Quad-Core Intel(R) Xeon(R) processor 5400 Series + deviceFamilyIsQuadCoreIntelXeon(170), -- family is Quad-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series + deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series + deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series + deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsM1(176), -- family is M1 Family + deviceFamilyIsM2(177), -- family is M2 Family + deviceFamilyIsIntelPentium4HT(179), -- family is Intel(R) Pentium(R) 4 HT processor + deviceFamilyIsAS400(180), -- family is AS400 Family + deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family + deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family + deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family + deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor + deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor + deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor + deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition + deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor + deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor + deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor + deviceFamilyIsIntelCore2Solo(192), -- family is Intel(R) Core(TM)2 Solo processor + deviceFamilyIsIntelCore2Extreme(193), -- family is Intel(R) Core(TM)2 Extreme processor + deviceFamilyIsIntelCore2Quad(194), -- family is Intel(R) Core(TM)2 Quad processor + deviceFamilyIsIntelCore2ExtremeMobile(195), -- family is Intel(R) Core(TM)2 Extreme mobile processor + deviceFamilyIsIntelCore2DuoMobile(196), -- family is Intel(R) Core(TM)2 Duo mobile processor + deviceFamilyIsIntelCore2SoloMobile(197), -- family is Intel(R) Core(TM)2 Solo mobile processor + deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor + deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor + deviceFamilyIsIBM390(200), -- family is IBM390 Family + deviceFamilyIsG4(201), -- family is G4 + deviceFamilyIsG5(202), -- family is G5 + deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 + deviceFamilyIszArchitectur(204), -- family is z/Architectur base + deviceFamilyIsIntelCorei5(205), -- family is Intel(R) Core(TM) i5 processor + deviceFamilyIsIntelCorei3(206), -- family is Intel(R) Core(TM) i3 processor + deviceFamilyIsVIAC7M(210), -- family is VIA C7(TM)-M Processor Family + deviceFamilyIsVIAC7D(211), -- family is VIA C7(TM)-D Processor Family + deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family + deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family + deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsVIANano(217), -- family is VIA Nano(TM) Processor Family + deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon3400(224), -- family is Multi-Core Intel(R) Xeon(R) processor 3400 Series + deviceFamilyIsEmbeddedAMDOpertonQuadCore(230), -- family is Embedded AMD Opteron(TM) Quad-Core Processor Family + deviceFamilyIsAMDPhenomTripleCore(231), -- family is AMD Phenom(TM) Triple-Core Processor Family + deviceFamilyIsAMDTurionUltraDualCoreMobile(232), -- family is AMD Turion(TM) Ultra Dual-Core Mobile Processor Family + deviceFamilyIsAMDTurionDualCoreMobile(233), -- family is AMD Turion(TM) Dual-Core Mobile Processor Family + deviceFamilyIsAMDAthlonDualCore(234), -- family is AMD Athlon(TM) Dual-Core Processor Family + deviceFamilyIsAMDSempronSI(235), -- family is AMD Sempron(TM) SI Processor Family + deviceFamilyIsAMDPhenomII(236), -- family is AMD Phenom(TM) II Processor Family + deviceFamilyIsAMDAthlonII(237), -- family is AMD Athlon(TM) II Processor Family + deviceFamilyIsSixCoreAMDOpteron(238), -- family is Six-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDSempronM(239), -- family is AMD Sempron(TM) M Processor Family + deviceFamilyIsi860(250), -- family is i860 + deviceFamilyIsi960(251) -- family is i960 +} + +ProcessorDeviceStatusState ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Status State." + SYNTAX INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user via BIOS setup + biosDisabled(5), -- state is disabled by BIOS (POST error) + idle(6) -- state is idle +} + +ProcessorDeviceTableEntry ::= SEQUENCE { + processorDevicechassisIndex ObjectRange, + processorDeviceIndex ObjectRange, + processorDeviceStateCapabilities StateCapabilitiesFlags, + processorDeviceStateSettings StateSettingsFlags, + processorDeviceStatus ObjectStatusEnum, + processorDeviceType ProcessorDeviceType, + processorDeviceManufacturerName String64, + processorDeviceStatusState ProcessorDeviceStatusState, + processorDeviceFamily ProcessorDeviceFamily, + processorDeviceMaximumSpeed Unsigned32BitRange, + processorDeviceCurrentSpeed Unsigned32BitRange, + processorDeviceExternalClockSpeed Unsigned32BitRange, + processorDeviceVoltage Signed32BitRange, + processorDeviceVersionName String64, + processorDeviceCoreCount Unsigned32BitRange, + processorDeviceCoreEnabledCount Unsigned32BitRange, + processorDeviceThreadCount Unsigned32BitRange, + processorDeviceCharacteristics Unsigned16BitRange, + processorDeviceExtendedCapabilities Unsigned16BitRange, + processorDeviceExtendedSettings Unsigned16BitRange, + processorDeviceBrandName String64, + processorDeviceFQDD FQDDString +} + +processorDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0030 This object defines the Processor Device Table." + ::= { deviceGroup 30 } + +processorDeviceTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0030.0001 This object defines the Processor Device Table Entry." + INDEX { processorDevicechassisIndex, + processorDeviceIndex } + ::= { processorDeviceTable 1 } + +processorDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { processorDeviceTableEntry 1 } + +processorDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0002 This attribute defines the index (one based) of the + processor device." + ::= { processorDeviceTableEntry 2 } + +processorDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0003 This attribute defines the state capabilities of the + processor device." + ::= { processorDeviceTableEntry 3 } + +processorDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0004 This attribute defines the state settings of the + processor device." + ::= { processorDeviceTableEntry 4 } + +processorDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0005 This attribute defines the status of the + processor device." + ::= { processorDeviceTableEntry 5 } + +processorDeviceType OBJECT-TYPE + SYNTAX ProcessorDeviceType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0007 This attribute defines the type of the processor device." + ::= { processorDeviceTableEntry 7 } + +processorDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0008 This attribute defines the name of the manufacturer + of the processor device." + ::= { processorDeviceTableEntry 8 } + +processorDeviceStatusState OBJECT-TYPE + SYNTAX ProcessorDeviceStatusState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0009 This attribute defines the status state of the + processor device." + ::= { processorDeviceTableEntry 9 } + +processorDeviceFamily OBJECT-TYPE + SYNTAX ProcessorDeviceFamily + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0010 This attribute defines the family of the + processor device." + ::= { processorDeviceTableEntry 10 } + +processorDeviceMaximumSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0011 This attribute defines the maximum speed of the + processor device in MHz. Zero indicates the maximum speed is unknown." + ::= { processorDeviceTableEntry 11 } + +processorDeviceCurrentSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0012 This attribute defines the current speed of the + processor device in MHz. Zero indicates the current speed is unknown." + ::= { processorDeviceTableEntry 12 } + +processorDeviceExternalClockSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0013 This attribute defines the speed of the + external clock for the processor device in MHz. Zero indicates + the external clock speed is unknown." + ::= { processorDeviceTableEntry 13 } + +processorDeviceVoltage OBJECT-TYPE + SYNTAX Signed32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0014 This attribute defines the voltage powering the + processor device in millivolts. Zero indicates the voltage is unknown." + ::= { processorDeviceTableEntry 14 } + +processorDeviceVersionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0016 This attribute defines the version of the + processor device. On some systems, this value contains the + brand and stepping information; on other systems, this value + contains the model and stepping information." + ::= { processorDeviceTableEntry 16 } + +processorDeviceCoreCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0017 This attribute defines the number of processor cores + detected for the processor device." + ::= { processorDeviceTableEntry 17 } + +processorDeviceCoreEnabledCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0018 This attribute defines the number of processor cores + enabled for the processor device." + ::= { processorDeviceTableEntry 18 } + +processorDeviceThreadCount OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0019 This attribute defines the number of processor threads + detected for the processor device." + ::= { processorDeviceTableEntry 19 } + +processorDeviceCharacteristics OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0020 This attribute defines characteristics of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + NOTE: Bits 2-15 need to be examined in the context of bit 1. + If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot + be used to determine if the functions associated with the bits are supported. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Unknown + Bit 2 64-bit capable + Bit 3-15 Reserved" + ::= { processorDeviceTableEntry 20 } + +processorDeviceExtendedCapabilities OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0021 This attribute defines extended capabilities of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) supported + Bit 2 eXecute Disable (XD) supported + Bit 3 Hyper-Threading (HT) supported + Bit 4 Turbo Mode supported" + ::= { processorDeviceTableEntry 21 } + +processorDeviceExtendedSettings OBJECT-TYPE + SYNTAX Unsigned16BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0022 This attribute defines extended settings of the + processor device. This attribute is a bit field where a bit has the meaning + defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) enabled + Bit 2 eXecute Disable (XD) enabled + Bit 3 Hyper-Threading (HT) enabled + Bit 4 Turbo Mode enabled" + ::= { processorDeviceTableEntry 22 } + +processorDeviceBrandName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0023 This attribute defines the brand of the + processor device." + ::= { processorDeviceTableEntry 23 } + +processorDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0030.0001.0026 Fully qualified device descriptor (FQDD) of the + processor device." + ::= { processorDeviceTableEntry 26 } + + +------------------------------------------------------------------------------- +-- Processor Device Status Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.32.1... +------------------------------------------------------------------------------- + +ProcessorDeviceStatusReadingFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Processor Device Status Reading Flags." + SYNTAX INTEGER { + -- Note: These values are bit masks, so combination values are possible. + internalError(1), -- Internal Error + thermalTrip(2), -- Thermal Trip + configurationError(32), -- Configuration Error + processorPresent(128), -- Processor Present + processorDisabled(256), -- Processor Disabled + terminatorPresent(512), -- Terminator Present + processorThrottled(1024) -- Processor Throttled +} + +ProcessorDeviceStatusTableEntry ::= SEQUENCE { + processorDeviceStatusChassisIndex ObjectRange, + processorDeviceStatusIndex ObjectRange, + processorDeviceStatusStateCapabilities StateCapabilitiesFlags, + processorDeviceStatusStateSettings StateSettingsFlags, + processorDeviceStatusStatus ObjectStatusEnum, + processorDeviceStatusReading ProcessorDeviceStatusReadingFlags, + processorDeviceStatusLocationName String64 +} + +processorDeviceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0032 This object defines the Processor Device Status Table." + ::= { deviceGroup 32 } + +processorDeviceStatusTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceStatusTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0032.0001 This object defines the Processor Device Status Table Entry." + INDEX { processorDeviceStatusChassisIndex, + processorDeviceStatusIndex } + ::= { processorDeviceStatusTable 1 } + +processorDeviceStatusChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { processorDeviceStatusTableEntry 1 } + +processorDeviceStatusIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0002 This attribute defines the index (one based) of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 2 } + +processorDeviceStatusStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0003 This attribute defines the state capabilities of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 3 } + +processorDeviceStatusStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0004 This attribute defines the state settings of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 4 } + +processorDeviceStatusStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0005 This attribute defines the status of the + processor device status probe. This status will be joined into + the processorDeviceStatus attribute." + ::= { processorDeviceStatusTableEntry 5 } + +processorDeviceStatusReading OBJECT-TYPE + SYNTAX ProcessorDeviceStatusReadingFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0006 This attribute defines the reading of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 6 } + +processorDeviceStatusLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0032.0001.0007 This attribute defines the location name of the + processor device status probe." + ::= { processorDeviceStatusTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Memory Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.50.1... +------------------------------------------------------------------------------- + +MemoryDeviceTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Memory Device Type Enum." + SYNTAX INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsDRAM(3), -- type is DRAM + deviceTypeIsEDRAM(4), -- type is EDRAM + deviceTypeIsVRAM(5), -- type is VRAM + deviceTypeIsSRAM(6), -- type is SRAM + deviceTypeIsRAM(7), -- type is RAM + deviceTypeIsROM(8), -- type is ROM + deviceTypeIsFLASH(9), -- type is FLASH + deviceTypeIsEEPROM(10), -- type is EEPROM + deviceTypeIsFEPROM(11), -- type is FEPROM + deviceTypeIsEPROM(12), -- type is EPROM + deviceTypeIsCDRAM(13), -- type is CDRAM + deviceTypeIs3DRAM(14), -- type is 3DRAM + deviceTypeIsSDRAM(15), -- type is SDRAM + deviceTypeIsSGRAM(16), -- type is SGRAM + deviceTypeIsRDRAM(17), -- type is RDRAM + deviceTypeIsDDR(18), -- type is DDR + deviceTypeIsDDR2(19), -- type is DDR2 + deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM + deviceTypeIsDDR3(24), -- type is DDR3 + deviceTypeIsFBD2(25), -- type is FBD2 + deviceTypeIsDDR4(26) -- type is DDR4 +} + +MemoryDeviceTableEntry ::= SEQUENCE { + memoryDevicechassisIndex ObjectRange, + memoryDeviceIndex ObjectRange, + memoryDeviceStateCapabilities StateCapabilitiesFlags, + memoryDeviceStateSettings StateSettingsFlags, + memoryDeviceStatus ObjectStatusEnum, + memoryDeviceType MemoryDeviceTypeEnum, + memoryDeviceLocationName String64, + memoryDeviceBankLocationName String64, + memoryDeviceSize Unsigned32BitRange, + memoryDeviceSpeed Unsigned32BitRange, + memoryDeviceManufacturerName String64, + memoryDevicePartNumberName String64, + memoryDeviceSerialNumberName String64, + memoryDeviceFQDD FQDDString, + memoryDeviceCurrentOperatingSpeed Unsigned32BitRange +} + +memoryDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0050 This object defines the Memory Device Table." + ::= { deviceGroup 50 } + +memoryDeviceTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0050.0001 This object defines the Memory Device Table Entry." + INDEX { memoryDevicechassisIndex, + memoryDeviceIndex } + ::= { memoryDeviceTable 1 } + +memoryDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { memoryDeviceTableEntry 1 } + +memoryDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0002 This attribute defines the index (one based) of the + memory device." + ::= { memoryDeviceTableEntry 2 } + +memoryDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0003 This attribute defines the state capabilities of the + memory device." + ::= { memoryDeviceTableEntry 3 } + +memoryDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0004 This attribute defines the state settings of the + memory device." + ::= { memoryDeviceTableEntry 4 } + +memoryDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0005 This attribute defines the status of the memory device." + ::= { memoryDeviceTableEntry 5 } + +memoryDeviceType OBJECT-TYPE + SYNTAX MemoryDeviceTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0007 This attribute defines the type of the memory device." + ::= { memoryDeviceTableEntry 7 } + +memoryDeviceLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0008 This attribute defines the location of the memory device." + ::= { memoryDeviceTableEntry 8 } + +memoryDeviceBankLocationName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0010 This attribute defines the location of the bank for the + memory device." + ::= { memoryDeviceTableEntry 10 } + +memoryDeviceSize OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0014 This attribute defines the size in KBytes of the + memory device. Zero indicates no memory installed; 2,147,483,647 indicates + an unknown memory size." + ::= { memoryDeviceTableEntry 14 } + +memoryDeviceSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0015 This attribute defines the maximum capable speed + in megahertz (MHz) of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 15 } + +memoryDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0021 This attribute defines the manufacturer of the + memory device." + ::= { memoryDeviceTableEntry 21 } + +memoryDevicePartNumberName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0022 This attribute defines the manufacturer's part number + for the memory device." + ::= { memoryDeviceTableEntry 22 } + +memoryDeviceSerialNumberName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0023 This attribute defines the serial number of the + memory device." + ::= { memoryDeviceTableEntry 23 } + +memoryDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0026 Fully qualified device descriptor (FQDD) of the + memory device." + ::= { memoryDeviceTableEntry 26 } + +memoryDeviceCurrentOperatingSpeed OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0050.0001.0027 This attribute defines the current operating speed + in megahertz (MHz) of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 27 } + + +------------------------------------------------------------------------------- +-- PCI Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.80.1... +------------------------------------------------------------------------------- + +PCIDeviceTableEntry ::= SEQUENCE { + pCIDevicechassisIndex ObjectRange, + pCIDeviceIndex ObjectRange, + pCIDeviceStateCapabilities StateCapabilitiesFlags, + pCIDeviceStateSettings StateSettingsFlags, + pCIDeviceStatus ObjectStatusEnum, + pCIDeviceDataBusWidth Unsigned32BitRange, + pCIDeviceManufacturerName String64, + pCIDeviceDescriptionName String64, + pCIDeviceFQDD FQDDString +} + +pCIDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0080 This object defines the PCI Device Table." + ::= { deviceGroup 80 } + +pCIDeviceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0080.0001 This object defines the PCI Device Table Entry." + INDEX { pCIDevicechassisIndex, + pCIDeviceIndex } + ::= { pCIDeviceTable 1 } + +pCIDevicechassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { pCIDeviceTableEntry 1 } + +pCIDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0002 This attribute defines the index (one based) of the + PCI device." + ::= { pCIDeviceTableEntry 2 } + +pCIDeviceStateCapabilities OBJECT-TYPE + SYNTAX StateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0003 This attribute defines the state capabilities of the + PCI device." + ::= { pCIDeviceTableEntry 3 } + +pCIDeviceStateSettings OBJECT-TYPE + SYNTAX StateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0004 This attribute defines the state settings of the + PCI device." + ::= { pCIDeviceTableEntry 4 } + +pCIDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0005 This attribute defines the status of the PCI device." + ::= { pCIDeviceTableEntry 5 } + +pCIDeviceDataBusWidth OBJECT-TYPE + SYNTAX Unsigned32BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0007 This attribute defines the width of the data bus + of the PCI device. This attribute contains an enumeration value. + The possible values and their meanings are defined below. + + Value Meaning + ---------- -------------- + 0x00000001 Other + 0x00000002 Unknown + 0x00000003 8 bit + 0x00000004 16 bit + 0x00000005 32 bit + 0x00000006 64 bit + 0x00000007 128 bit + 0x00000008 1x or x1 + 0x00000009 2x or x2 + 0x0000000A 4x or x4 + 0x0000000B 8x or x8 + 0x0000000C 12x or x12 + 0x0000000D 16x or x16 + 0x0000000E 32x or x32" + ::= { pCIDeviceTableEntry 7 } + +pCIDeviceManufacturerName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0008 This attribute defines the name of the manufacturer + of the PCI device." + ::= { pCIDeviceTableEntry 8 } + +pCIDeviceDescriptionName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0009 This attribute defines the description of the PCI device." + ::= { pCIDeviceTableEntry 9 } + +pCIDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0080.0001.0012 Fully qualified device descriptor (FQDD) of the + PCI device." + ::= { pCIDeviceTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Network Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1100.90.1... +------------------------------------------------------------------------------- + +NetworkDeviceConnectionStatusEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device Connection Status Enum." + SYNTAX INTEGER { + -- unknown(0), - unable to determine connection status + connected(1), -- media reports connected + disconnected(2), -- media reports disconnected + driverBad(3), -- driver cannot be opened to determine status + driverDisabled(4), -- driver is disabled + hardwareInitalizing(10), -- hardware is initializing + hardwareResetting(11), -- hardware is resetting + hardwareClosing(12), -- hardware is closing down + hardwareNotReady(13) -- hardware is not ready +} + +NetworkDeviceTOECapabilityFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device TOE Capability Flags." + SYNTAX INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for TOE capability is not supported + unknown(1), -- querying for TOE capability is supported but query returned an error + available(2), -- device has TOE capability + notAvailable(4), -- device does not have TOE capability + cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying + driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query +} + +NetworkDeviceiSCSICapabilityFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device iSCSI Capability Flags." + SYNTAX INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for iSCSI capability is not supported + unknown(1), -- querying for iSCSI capability is supported but query returned an error + available(2), -- device has iSCSI capability + notAvailable(4), -- device does not have iSCSI capability + cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying + driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query +} + +NetworkDeviceCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Network Device Capabilities Flags." + SYNTAX INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- notSupported(0), - device does not support reporting capabilities via this attribute + supported(1), -- device supports reporting capabilities via this attribute + toe(2), -- device has TOE capability + iscsiOffload(4), -- device has iSCSI Offload capability + fcoeOffload(8) -- device has FCoE Offload capability +} + +NetworkDeviceTableEntry ::= SEQUENCE { + networkDeviceChassisIndex ObjectRange, + networkDeviceIndex ObjectRange, + networkDeviceStatus ObjectStatusEnum, + networkDeviceConnectionStatus NetworkDeviceConnectionStatusEnum, + networkDeviceProductName String64, + networkDeviceVendorName String64, + networkDeviceCurrentMACAddress MACAddress, + networkDevicePermanentMACAddress MACAddress, + networkDevicePCIBusNumber Unsigned8BitRange, + networkDevicePCIDeviceNumber Unsigned8BitRange, + networkDevicePCIFunctionNumber Unsigned8BitRange, + networkDeviceTOECapabilityFlags NetworkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags NetworkDeviceiSCSICapabilityFlags, + networkDeviceiSCSIEnabled BooleanType, + networkDeviceCapabilities NetworkDeviceCapabilitiesFlags, + networkDeviceFQDD FQDDString +} + +networkDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0090 This object defines the Network Device Table." + ::= { deviceGroup 90 } + +networkDeviceTableEntry OBJECT-TYPE + SYNTAX NetworkDeviceTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1100.0090.0001 This object defines the Network Device Table Entry." + INDEX { networkDeviceChassisIndex, + networkDeviceIndex } + ::= { networkDeviceTable 1 } + +networkDeviceChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0001 This attribute defines the index (one based) of the + system chassis that contains the network device." + ::= { networkDeviceTableEntry 1 } + +networkDeviceIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0002 This attribute defines the index (one based) of the + network device." + ::= { networkDeviceTableEntry 2 } + +networkDeviceStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0003 This attribute defines the status of the network device." + ::= { networkDeviceTableEntry 3 } + +networkDeviceConnectionStatus OBJECT-TYPE + SYNTAX NetworkDeviceConnectionStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0004 This attribute defines the connection status of the + network device." + ::= { networkDeviceTableEntry 4 } + +networkDeviceProductName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0006 This attribute defines the product name of the + network device." + ::= { networkDeviceTableEntry 6 } + +networkDeviceVendorName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0007 This attribute defines the name of the vendor of the + network device." + ::= { networkDeviceTableEntry 7 } + +networkDeviceCurrentMACAddress OBJECT-TYPE + SYNTAX MACAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0015 This attribute defines the current MAC address of the + network device." + ::= { networkDeviceTableEntry 15 } + +networkDevicePermanentMACAddress OBJECT-TYPE + SYNTAX MACAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0016 This attribute defines the permanent MAC address of the + network device." + ::= { networkDeviceTableEntry 16 } + +networkDevicePCIBusNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0017 This attribute defines the PCI bus number of the + network device." + ::= { networkDeviceTableEntry 17 } + +networkDevicePCIDeviceNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0018 This attribute defines the PCI device number of the + network device." + ::= { networkDeviceTableEntry 18 } + +networkDevicePCIFunctionNumber OBJECT-TYPE + SYNTAX Unsigned8BitRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0019 This attribute defines the PCI function number of the + network device." + ::= { networkDeviceTableEntry 19 } + +networkDeviceTOECapabilityFlags OBJECT-TYPE + SYNTAX NetworkDeviceTOECapabilityFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) + capability flags of the network device." + ::= { networkDeviceTableEntry 23 } + +networkDeviceiSCSICapabilityFlags OBJECT-TYPE + SYNTAX NetworkDeviceiSCSICapabilityFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0027 This attribute defines the Internet Small Computer + System Interface (iSCSI) capability flags of the network device." + ::= { networkDeviceTableEntry 27 } + +networkDeviceiSCSIEnabled OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the + network device." + ::= { networkDeviceTableEntry 28 } + +networkDeviceCapabilities OBJECT-TYPE + SYNTAX NetworkDeviceCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0029 This attribute defines the capabilities of the network device. + If this value is notSupported(0), the networkDeviceTOECapabilityFlags, + networkDeviceiSCSICapabilityFlags and networkDeviceiSCSIEnabled attributes should + be used to determine the network device capabilities. If the supported(1) bit + is on, this attribute should be used to determine the network device capabilities, + and the attributes mentioned above should not be used. NOTE: For a network device + on Converged Network Adapter (CNA), this attribute provides capability information + for the CNA and not for the network device. For more information read vendor + documentation." + ::= { networkDeviceTableEntry 29 } + +networkDeviceFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1100.0090.0001.0030 Fully qualified device descriptor (FQDD) of the + network device." + ::= { networkDeviceTableEntry 30 } + + +------------------------------------------------------------------------------- +-- Slot Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200 +------------------------------------------------------------------------------- + +------------------------------------------------------------------------------- +-- System Slot Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.1200.10.1... +------------------------------------------------------------------------------- + +SystemSlotStateCapabilitiesFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot State Capabilities Flags." + SYNTAX INTEGER { + systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown + systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug + systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on + systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set + systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent + systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected + systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state + canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities + systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply + systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply + systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected + systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 + systemSlotCanSupportCardBus(2048), -- slot can support CardBus + systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video + systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume + systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal + canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities + canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities +} + +SystemSlotStateSettingsFlags ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot State Settings Flags." + SYNTAX INTEGER { + systemSlotHotPlugIsUnknown(1), -- state settings are unknown + systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug + systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON + systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON + systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent + systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) + systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on + systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state + systemSlotProvides5Volts(128), -- slot provides 5 volt supply + systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply + systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) + systemSlotSupportsCard16(1024), -- slot supports PC Card-16 + systemSlotSupportsCardBus(2048), -- slot supports CardBus + systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video + systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume + systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal + supportsPMEand3P3Vand5VandHotPluggable(16770), + supportsPMEand3P3Vand5VhasAdapterOn(16804), + supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), + supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) +} + +SystemSlotTypeEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot Type Enum." + SYNTAX INTEGER { + systemSlotIsOther(1), -- type is Other + systemSlotIsUnknown(2), -- type is Unknown + systemSlotIsISA(3), -- type is ISA + systemSlotIsMCA(4), -- type is MCA + systemSlotIsEISA(5), -- type is EISA + systemSlotIsPCI(6), -- type is PCI + systemSlotIsPCMCIA(7), -- type is PCMCIA + systemSlotIsVLVESA(8), -- type is VL-VESA + systemSlotIsProprietary(9), -- type is Proprietary + systemSlotIsProcessorCard(10), -- type is Processor Card Slot + systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot + systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot + systemSlotIsNuBUS(13), -- type is NuBus + systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable + systemSlotIsAGP(15), -- type is AGP + systemSlotIsAGP2X(16), -- type is AGP 2X + systemSlotIsAGP4X(17), -- type is AGP 4X + systemSlotIsPC98C20(18), -- type is PC-98/C20 + systemSlotIsPC98C24(19), -- type is PC-98/C24 + systemSlotIsPC98E(20), -- type is PC-98/E + systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus + systemSlotIsPC98Card(22), -- type is PC-98/Card + systemSlotIsPCIX(23), -- type is PCI-X + systemSlotIsPCIExpress(24), -- type is PCI Express + systemSlotIsAGP8X(25), -- type is AGP 8X + systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 + systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 + systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 + systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 + systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 + systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 + systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 + systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 + systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 + systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 + systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 +} + +SystemSlotUsageEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot Usage Enum." + SYNTAX INTEGER { + systemSlotUsageIsOther(1), -- usage is other than following values + systemSlotUsageIsUnknown(2), -- usage is unknown + systemSlotUsageIsAvailable(3), -- usage is available + systemSlotUsageIsInUse(4) -- usage is in use +} + +SystemSlotCategoryEnum ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "System Slot Category Enum." + SYNTAX INTEGER { + systemSlotCategoryIsOther(1), -- category is other than following values + systemSlotCategoryIsUnknown(2), -- category is unknown + systemSlotCategoryIsBusConnector(3), -- category is Bus Connector + systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA + systemSlotCategoryIsMotherboard(5) -- category is Motherboard +} + +SystemSlotTableEntry ::= SEQUENCE { + systemSlotchassisIndex ObjectRange, + systemSlotIndex ObjectRange, + systemSlotStateCapabilitiesUnique SystemSlotStateCapabilitiesFlags, + systemSlotStateSettingsUnique SystemSlotStateSettingsFlags, + systemSlotStatus ObjectStatusEnum, + systemSlotCurrentUsage SystemSlotUsageEnum, + systemSlotType SystemSlotTypeEnum, + systemSlotSlotExternalSlotName String64, + systemSlotCategory SystemSlotCategoryEnum +} + +systemSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemSlotTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1200.0010 This object defines the System Slot Table." + ::= { slotGroup 10 } + +systemSlotTableEntry OBJECT-TYPE + SYNTAX SystemSlotTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "1200.0010.0001 This object defines the System Slot Table Entry." + INDEX { systemSlotchassisIndex, + systemSlotIndex } + ::= { systemSlotTable 1 } + +systemSlotchassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0001 This attribute defines the index (one based) of the + associated system chassis." + ::= { systemSlotTableEntry 1 } + +systemSlotIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0002 This attribute defines the index (one based) of the + system slot." + ::= { systemSlotTableEntry 2 } + +systemSlotStateCapabilitiesUnique OBJECT-TYPE + SYNTAX SystemSlotStateCapabilitiesFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0003 This attribute defines the state capabilities of the + system slot." + ::= { systemSlotTableEntry 3 } + +systemSlotStateSettingsUnique OBJECT-TYPE + SYNTAX SystemSlotStateSettingsFlags + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0004 This attribute defines the state settings of the + system slot." + ::= { systemSlotTableEntry 4 } + +systemSlotStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0005 This attribute defines the status of the system slot." + ::= { systemSlotTableEntry 5 } + +systemSlotCurrentUsage OBJECT-TYPE + SYNTAX SystemSlotUsageEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0006 This attribute defines the current usage of the + system slot." + ::= { systemSlotTableEntry 6 } + +systemSlotType OBJECT-TYPE + SYNTAX SystemSlotTypeEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0007 This attribute defines the type of the system slot." + ::= { systemSlotTableEntry 7 } + +systemSlotSlotExternalSlotName OBJECT-TYPE + SYNTAX String64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0008 This attribute defines the name of the external + connector name of the system slot." + ::= { systemSlotTableEntry 8 } + +systemSlotCategory OBJECT-TYPE + SYNTAX SystemSlotCategoryEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1200.0010.0001.0011 This attribute defines the category of the system slot." + ::= { systemSlotTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Group +-- +-- OID: 1.3.6.1.4.1.674.10892.5.4.2000 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Field Replaceable Unit (FRU) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.4.2000.10.1... +------------------------------------------------------------------------------- + +FruTableEntry ::= SEQUENCE { + fruChassisIndex ObjectRange, + fruIndex ObjectRange, + fruInformationStatus ObjectStatusEnum, + fruManufacturerName OCTET STRING, + fruSerialNumberName OCTET STRING, + fruPartNumberName OCTET STRING, + fruRevisionName OCTET STRING, + fruFQDD FQDDString +} + +fruTable OBJECT-TYPE + SYNTAX SEQUENCE OF FruTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "2000.0010 This object defines the Field Replaceable Unit table." + ::= { fruGroup 10 } + +fruTableEntry OBJECT-TYPE + SYNTAX FruTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "2000.0010.0001 This object defines the Field Replaceable Unit table entry." + INDEX { fruChassisIndex, + fruIndex } + ::= { fruTable 1 } + +fruChassisIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0001 This attribute defines the index (one based) of the + system chassis containing the field replaceable unit." + ::= { fruTableEntry 1 } + +fruIndex OBJECT-TYPE + SYNTAX ObjectRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0002 This attribute defines the index (one based) of the + field replaceable unit." + ::= { fruTableEntry 2 } + +fruInformationStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0003 This attribute defines the status of the + field replaceable unit information." + ::= { fruTableEntry 3 } + +fruManufacturerName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0006 This attribute defines the manufacturer of the + field replaceable unit." + ::= { fruTableEntry 6 } + +fruSerialNumberName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0007 This attribute defines the serial number of the + field replaceable unit." + ::= { fruTableEntry 7 } + +fruPartNumberName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0008 This attribute defines the part number of the + field replaceable unit." + ::= { fruTableEntry 8 } + +fruRevisionName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0009 This attribute defines the revision of the + field replaceable unit." + ::= { fruTableEntry 9 } + +fruFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "2000.0010.0001.0012 Fully qualified device descriptor (FQDD) of the + field replaceable unit." + ::= { fruTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Storage Details Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.15.1.. +------------------------------------------------------------------------------- + +BatteryTableEntry ::=SEQUENCE { + batteryNumber INTEGER, + batteryState INTEGER, + batteryComponentStatus ObjectStatusEnum, + batteryPredictedCapacity INTEGER, + batteryFQDD DisplayString, + batteryDisplayName DisplayString +} + +batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed batteries. The number of + entries is related to number of Batteries + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 15 } + +batteryTableEntry OBJECT-TYPE + SYNTAX BatteryTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the battery table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { batteryNumber } + ::= { batteryTable 1 } + +batteryNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this battery entry. + " + ::= { batteryTableEntry 1 } + +batteryState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + degraded(4), + missing(5), + charging(6), + belowThreshold(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of battery. + Possible values: + 1: The current state could not be determined. + 2: The battery is operating normally. + 3: The battery has failed and needs to be replaced. + 4: The battery temperature is high or charge level is depleting. + 5: The battery is missing or not detected. + 6: The battery is undergoing the re-charge phase. + 7: The battery voltage or charge level is below the threshold. + " + ::= { batteryTableEntry 4 } + +batteryComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the battery itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryTableEntry 6 } + +batteryPredictedCapacity OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + failed(2), + ready(3) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Use the batteryComponentStatus or + batteryState instead. + " + ::= { batteryTableEntry 10 } + +batteryFQDD OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The battery's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { batteryTableEntry 20 } + +batteryDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The battery's friendly FQDD as represented in Storage Management." + ::= { batteryTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Controller Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.1.1.. +------------------------------------------------------------------------------- + +ControllerTableEntry ::=SEQUENCE { + controllerNumber INTEGER, + controllerName DisplayString, + controllerRebuildRate INTEGER, + controllerFWVersion DisplayString, + controllerCacheSizeInMB INTEGER, + controllerRollUpStatus ObjectStatusEnum, + controllerComponentStatus ObjectStatusEnum, + controllerDriverVersion DisplayString, + controllerPCISlot DisplayString, + controllerReconstructRate INTEGER, + controllerPatrolReadRate INTEGER, + controllerBGIRate INTEGER, + controllerCheckConsistencyRate INTEGER, + controllerPatrolReadMode INTEGER, + controllerPatrolReadState INTEGER, + controllerPersistentHotSpare BooleanType, + controllerSpinDownUnconfiguredDrives BooleanType, + controllerSpinDownHotSpareDrives BooleanType, + controllerSpinDownTimeInterval INTEGER, + controllerPreservedCache BooleanType, + controllerCheckConsistencyMode INTEGER, + controllerCopyBackMode INTEGER, + controllerSecurityStatus INTEGER, + controllerEncryptionKeyPresent BooleanType, + controllerEncryptionCapability INTEGER, + controllerLoadBalanceSetting INTEGER, + controllerMaxCapSpeed INTEGER, + controllerSASAddress DisplayString, + controllerFQDD FQDDString, + controllerDisplayName DisplayString, + controllerT10PICapability INTEGER, + controllerRAID10UnevenSpansSupported BooleanType, + controllerEnhancedAutoImportForeignConfigMode INTEGER, + controllerBootModeSupported BooleanType, + controllerBootMode INTEGER +} + +controllerTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControllerTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed RAID controllers. The number of entries + is related to number of RAID controllers discovered in the + system. The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 1 } + +controllerTableEntry OBJECT-TYPE + SYNTAX ControllerTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the table of RAID controllers. A row in this table + cannot be created or deleted by SNMP operations on columns of + the table." + INDEX { controllerNumber } + ::= { controllerTable 1 } + +controllerNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this controller entry." + ::= { controllerTableEntry 1 } + + +controllerName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's name as represented in Storage Management. + " + ::= { controllerTableEntry 2 } + +controllerRebuildRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The rebuild rate is the percentage of the controller's + resources dedicated to rebuilding a failed disk when a rebuild + is necessary. + " + ::= { controllerTableEntry 7 } + +controllerFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's current firmware version. + " + ::= { controllerTableEntry 8 } + +controllerCacheSizeInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's current amount of cache memory in megabytes. + " + ::= { controllerTableEntry 9 } + +controllerRollUpStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Severity of the controller state. + This is the combined status of the controller and its components. + Possible values: + 1: Other. + 2: Unknown. + 3: OK + 4: Non-critical + 5: Critical. + 6: Non-recoverable. + " + ::= { controllerTableEntry 37 } + +controllerComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the controller itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerTableEntry 38 } + +controllerDriverVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Currently installed driver version for this controller on the host. + " + ::= { controllerTableEntry 41 } + +controllerPCISlot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PCI slot on the server where the controller is seated. This + data is not reported for embedded or integrated controllers, + " + ::= { controllerTableEntry 42 } + +controllerReconstructRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reconstruct rate is the percentage of the controller's resources + dedicated to reconstructing a disk group after adding a physical disk + or changing the RAID level of a virtual disk residing on the disk + group. + " + ::= { controllerTableEntry 48 } + +controllerPatrolReadRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The patrol read rate is the percentage of the controller's + resources dedicated to perform a patrol read on disks participating + in a virtual disk or hot spares. + " + ::= { controllerTableEntry 49 } + +controllerBGIRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The background initialization (BGI) rate is the percentage of the + controller's resources dedicated to performing the background + initialization of a redundant virtual disk after it is created. + " + ::= { controllerTableEntry 50 } + +controllerCheckConsistencyRate OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The check consistency rate is the percentage of the + controller's resources dedicated to performing a check consistency + on a redundant virtual disk. + " + ::= { controllerTableEntry 51 } + +controllerPatrolReadMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + disabled(3), + auto(4), + manual(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the patrol read mode setting for the controller. + Possible values: + 1: Not one of the following or could not be determined. + 2: Not Supported on this controller. + 3: Disabled. + 4: Automatic. + 5: Manual. + " + ::= { controllerTableEntry 52 } + +controllerPatrolReadState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + stopped(2), + active(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This property displays the current state of the patrol read process. + Possible values: + 1: Not one of the following or could not be determined. + 2: Patrol read is not running. + 3: Patrol read is running. + " + ::= { controllerTableEntry 53 } + +controllerPersistentHotSpare OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether hot spare drives would be restored on insertion + into the same slot. + " + ::= { controllerTableEntry 59 } + +controllerSpinDownUnconfiguredDrives OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether un-configured drives would be put in power + save mode by the controller. + " + ::= { controllerTableEntry 60 } + +controllerSpinDownHotSpareDrives OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether hot spare drives would be put in power + save mode by the controller. + " + ::= { controllerTableEntry 61 } + +controllerSpinDownTimeInterval OBJECT-TYPE + SYNTAX INTEGER (30..1440) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The duration in minutes after which, the unconfigured or hot + spare drives will be spun down to power save mode. + " + ::= { controllerTableEntry 62 } + +controllerPreservedCache OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether preserved cache or pinned cache is + present on the controller. + " + ::= { controllerTableEntry 69 } + +controllerCheckConsistencyMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + normal(3), + stopOnError(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current check consistency mode setting + for the controller. + Possible values: + 1: Not one of the following. + 2: Not supported on this controller. + 3: Normal check consistency operation. + 4: Check consistency operation will stop on encountering + an error. + " + ::= { controllerTableEntry 70 } + +controllerCopyBackMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + on(3), + onWithSmart(4), + off(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current copy back mode setting + for the controller. + Possible values: + 1: Not one of the following. + 2: Not supported on this controller. + 3: Disks assigned as spares could revert back to spare status. + 4: Data from physical disk participating in a + virtual disk could be automatically copied to the assigned + hot spare in case former has a predictive failure event. + 5: Copyback mode is disabled. + " + ::= { controllerTableEntry 71 } + +controllerSecurityStatus OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + none(2), + lkm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's current security/encryption status.. + Possible values: + 1: The current status could not be determined. + 2: Controller is not operating in an encryption mode. + 3: Controller is operating in the Local Key Management + (LKM) encryption mode. + " + ::= { controllerTableEntry 72 } + +controllerEncryptionKeyPresent OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether encryption key is assigned for the controller. + " + ::= { controllerTableEntry 73 } + +controllerEncryptionCapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + none(2), + lkm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of encryption supported by the controller. + Possible values: + 1: Not one of the following. + 2: No encryption supported, + 3: Local Key Management, + " + ::= { controllerTableEntry 74 } + +controllerLoadBalanceSetting OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + unsupported(2), + auto(3), + none(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ability of the controller to automatically use both + controller ports (or connectors) connected to the same enclosure in + order to route I/O requests. + Possible values: + 1: Not one of the following. + 2: Not supported. + 3: Automatic load balancing is active. + 4: Load balancing is inactive. + " + ::= { controllerTableEntry 75 } + +controllerMaxCapSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum speed of the controller.in + Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + " + ::= { controllerTableEntry 76 } + +controllerSASAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SAS address of the controller. + " + ::= { controllerTableEntry 77 } + +controllerFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { controllerTableEntry 78 } + +controllerDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The controller's friendly FQDD as represented in Storage + Management." + ::= { controllerTableEntry 79 } + +controllerT10PICapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + capable(2), + notCapable(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the controller supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Capable of supporting T10 PI. + 3: Not capable of supporting T10 PI. + " + ::= { controllerTableEntry 80 } + +controllerRAID10UnevenSpansSupported OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether uneven spans for RAID 10 virtual disk + is supported on the controller. + " + ::= { controllerTableEntry 81 } + +controllerEnhancedAutoImportForeignConfigMode OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notSupported(2), + disabled(3), + enabled(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the status of enhanced auto-import of foreign + configuration property of the controller. + 1: Not one of the following. + 2: Not Supported. + 3: Disabled. + 4: Enabled. + " + ::= { controllerTableEntry 82 } + +controllerBootModeSupported OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether headless boot mode settings are supported + on the controller. + " + ::= { controllerTableEntry 83 } + +controllerBootMode OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + user(2), + contOnError(3), + headlessContOnError(4), + headlessSafe(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the boot mode of the controller. + Possible values: + 1: Not applicable for this controller. + 2: User mode: User interaction required for all boot messages (not + applicable for uEFI environments). + 3: Continue Boot On Error. User interaction only required for + critical messages. + 4: Headless Mode Continue On Error. User interaction is not required. + Controller boot may halt on Error. + 5: Headless Safe Mode. Controller shall boot to safe mode on critical + errors. + " + ::= { controllerTableEntry 84 } + + +------------------------------------------------------------------------------- +-- Physical Disk Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.4.1.. +------------------------------------------------------------------------------- + +PhysicalDiskTableEntry ::=SEQUENCE { + physicalDiskNumber INTEGER, + physicalDiskName DisplayString, + physicalDiskManufacturer DisplayString, + physicalDiskState INTEGER, + physicalDiskProductID DisplayString, + physicalDiskSerialNo DisplayString, + physicalDiskRevision DisplayString, + physicalDiskCapacityInMB INTEGER, + physicalDiskUsedSpaceInMB INTEGER, + physicalDiskFreeSpaceInMB INTEGER, + physicalDiskBusType INTEGER, + physicalDiskSpareState INTEGER, + physicalDiskComponentStatus ObjectStatusEnum, + physicalDiskPartNumber DisplayString, + physicalDiskSASAddress DisplayString, + physicalDiskNegotiatedSpeed INTEGER, + physicalDiskCapableSpeed INTEGER, + physicalDiskSmartAlertIndication BooleanType, + physicalDiskManufactureDay DisplayString, + physicalDiskManufactureWeek DisplayString, + physicalDiskManufactureYear DisplayString, + physicalDiskMediaType INTEGER, + physicalDiskPowerState INTEGER, + physicalDiskRemainingRatedWriteEndurance INTEGER, + physicalDiskOperationalState INTEGER, + physicalDiskProgress INTEGER, + physicalDiskSecurityStatus INTEGER, + physicalDiskFormFactor INTEGER, + physicalDiskFQDD FQDDString, + physicalDiskDisplayName DisplayString, + physicalDiskT10PICapability INTEGER, + physicalDiskBlockSizeInBytes INTEGER, + physicalDiskProtocolVersion DisplayString, + physicalDiskPCIeNegotiatedLinkWidth INTEGER, + physicalDiskPCIeCapableLinkWidth INTEGER + } + +physicalDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed physical disks. The number of entries is + related to number of physical Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to + all entries. + " + ::= { physicalDevices 4 } + +physicalDiskTableEntry OBJECT-TYPE + SYNTAX PhysicalDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the physical Disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { physicalDiskNumber } + ::= { physicalDiskTable 1 } + +physicalDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this physical disk entry. + " + ::= { physicalDiskTableEntry 1 } + +physicalDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's name as represented in Storage Management. + " + ::= { physicalDiskTableEntry 2 } + +physicalDiskManufacturer OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the physical disk's manufacturer. + " + ::= { physicalDiskTableEntry 3 } + +physicalDiskState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + online(3), + foreign(4), + offline(5), + blocked(6), + failed(7), + nonraid(8), + removed(9), + readonly(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this physical disk. + Possible states: + 1: The current state could not be determined. + 2: The physical disk is available for use, but no RAID configuration + has been assigned. + 3: A RAID configuration has been assigned to the physical disk. + 4: The physical disk has been moved from another + controller and contains all or some portion of a virtual disk. + 5: The physical disk is not available to the RAID + controller. + 6: The physical disk is currently blocked by + controller. + 7: The physical disk is not operational. + 8: The physical disk is not a RAID capable disk + 9: The physical disk has been removed. + 10:The physical disk media has been placed in read only mode. + " + ::= { physicalDiskTableEntry 4 } + +physicalDiskProductID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model number of the physical disk. + " + ::= { physicalDiskTableEntry 6 } + +physicalDiskSerialNo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's unique identification number + from the manufacturer. + " + ::= { physicalDiskTableEntry 7 } + +physicalDiskRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware version of the physical disk. + " + ::= { physicalDiskTableEntry 8 } + +physicalDiskCapacityInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the physical disk in megabytes. + " + ::= { physicalDiskTableEntry 11 } + +physicalDiskUsedSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of used space in megabytes on the physical + disk. This is not applicable for NVMe devices. + " + ::= { physicalDiskTableEntry 17 } + +physicalDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of free space in megabytes on the physical + disk. This is not applicable for NVMe devices. + " + ::= { physicalDiskTableEntry 19 } + +physicalDiskBusType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + scsi(2), + sas(3), + sata(4), + fibre(5), + pcie(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The bus type of the physical disk. + Possible values: + 1: The bus type could not be determined. + 2: Small Computer System Interface (SCSI). + 3: Serial Attached SCSI (SAS). + 4: Serial Advanced Technology Attachment (SATA). + 5: Fibre channel. + 6: PCIe. + " + ::= { physicalDiskTableEntry 21 } + +physicalDiskSpareState OBJECT-TYPE + SYNTAX INTEGER + { + notASpare(1), + dedicatedHotSpare(2), + globalHotSpare(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the disk as a spare. + Possible values: + 1: Physical disk is not a spare. + 2: Physical disk is a dedicated hot spare. + 3: Physical disk is a global hot spare. + " + ::= { physicalDiskTableEntry 22 } + +physicalDiskComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the physical disk itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { physicalDiskTableEntry 24 } + +physicalDiskPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of the disk. + " + ::= { physicalDiskTableEntry 27 } + +physicalDiskSASAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SAS address of the physical disk. + " + ::= { physicalDiskTableEntry 28 } + +physicalDiskNegotiatedSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5), + fiveGTps(6), + eightGTps(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The data transfer speed that the disk negotiated while spinning up + in Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + 6: 5 GT/s (applicable for NVMe devices). + 7: 8 GT/s (applicable for NVMe devices). + " + ::= { physicalDiskTableEntry 29 } + +physicalDiskCapableSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotFiveGbps(2), + threeGbps(3), + sixGbps(4), + twelveGbps(5), + fiveGTps(6), + eightGTps(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum data transfer speed supported by the disk + in Gigbits per second (Gbps). + Possible values: + 1: The speed could not be determined. + 2. 1.5 Gbps + 3: 3.0 Gbps + 4: 6.0 Gbps + 5: 12.0 Gbps + 6: 5 GT/s (applicable for NVMe devices). + 7: 8 GT/s (applicable for NVMe devices). + " + ::= { physicalDiskTableEntry 30 } + +physicalDiskSmartAlertIndication OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the physical disk has received a predictive + failure alert. + " + ::= { physicalDiskTableEntry 31 } + +physicalDiskManufactureDay OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The day of the week (1=Sunday thru 7=Saturday) + on which the physical disk was manufactured. + " + ::= { physicalDiskTableEntry 32 } + +physicalDiskManufactureWeek OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The week (1 thru 53) in which the physical disk + was manufactured. + " + ::= { physicalDiskTableEntry 33 } + +physicalDiskManufactureYear OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The four digit year in which the physical disk was manufactured. + " + ::= { physicalDiskTableEntry 34 } + +physicalDiskMediaType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + hdd(2), + ssd(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The media type of the physical disk. + Possible Values: + 1: The media type could not be determined. + 2: Hard Disk Drive (HDD). + 3: Solid State Device (SSD). + " + ::= { physicalDiskTableEntry 35 } + +physicalDiskPowerState OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + spunUp(2), + spunDown(3), + transition(4), + on(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power state of the physical disk. + Possible Values: + 1: Not one of the following. + 2: The physical disk is in the spun up state. + 3: The physical disk is in the spun down state. + 4: The physical disk is changing from spun down state + to spun up state or vice versa. + 5: The Solid State Device (SSD) is powered on. + " + ::= { physicalDiskTableEntry 42 } + +physicalDiskRemainingRatedWriteEndurance OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This property is applicable to SSD media type only. This indicates + the wear-out percentage of the SSD. Typically it is a value between + 0 to 100. However, if the value is not available or not applicable + (in the case of HDD media type) the value will be 255. + " + ::= { physicalDiskTableEntry 49 } + +physicalDiskOperationalState OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + rebuild(2), + clear(3), + copyback(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the physical disk when there are progressive + operations ongoing. + Possible values: + 1: There is no active operation running. + 2: Data from a redundant virtual disk is + currently being rebuilt onto the physical disk. + 3: Data on the disk is being erased. + 4: Data is being copied from a hot spare disk to + the physical disk or vice versa. + " + ::= { physicalDiskTableEntry 50 } + +physicalDiskProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The progress percentage of the operation that is being + performed on the physical disk. This is applicable + only if there is a progressive operations ongoing + " + ::= { physicalDiskTableEntry 51 } + +physicalDiskSecurityStatus OBJECT-TYPE + SYNTAX INTEGER + { + supported(1), + notSupported(2), + secured(3), + locked(4), + foreign(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The security/encryption status of the physical disk. + Possible Values: + 1: The physical disk supports encryption. + 2: The physical disk does not support encryption + 3: The physical disk is encrypted. + 4: The physical disk is locked by a key. + 5: The physical disk is locked by a foreign key. + " + ::= { physicalDiskTableEntry 52 } + +physicalDiskFormFactor OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + oneDotEight(2), + twoDotFive(3), + threeDotFive(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The form factor of the physical disk. + Possible values: + 1: The form factor could not be determined. + 2: 1.8 inch. + 3: 2.5 inch. + 4: 3.5 inch. + " + ::= { physicalDiskTableEntry 53 } + +physicalDiskFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { physicalDiskTableEntry 54 } + +physicalDiskDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The physical disk's friendly FQDD as represented in Storage + Management. + " + ::= { physicalDiskTableEntry 55 } + +physicalDiskT10PICapability OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + capable(2), + notCapable(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the physical disk supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Capable of supporting T10 PI. + 3: Not capable of supporting T10 PI. + " + ::= { physicalDiskTableEntry 57 } + +physicalDiskBlockSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The block size (in bytes) of the physical disk. This is not + applicable for NVMe devices. + 1: 512. + 2: 4096 + " + ::= { physicalDiskTableEntry 58 } + +physicalDiskProtocolVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Applicable for NVMe devices only. The NVMe protocol version supported + by the device. + " + ::= { physicalDiskTableEntry 59 } + +physicalDiskPCIeNegotiatedLinkWidth OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + byOne(3), + byTwp(4), + byFour(5), + byEight(6), + bySixteen(7), + byThirtyTwp(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Applicable for NVMe devices only. The PCIe link width negotiated with the host + during device initialization. + " + ::= { physicalDiskTableEntry 60 } + +physicalDiskPCIeCapableLinkWidth OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + byOne(3), + byTwp(4), + byFour(5), + byEight(6), + bySixteen(7), + byThirtyTwp(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Applicable for NVMe devices only. The PCIe link widths the device is capable of + supporting. + " + ::= { physicalDiskTableEntry 61 } + +------------------------------------------------------------------------------- +-- Virtual Disk Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.140.1.1.. +------------------------------------------------------------------------------- + +VirtualDiskTableEntry ::=SEQUENCE { + virtualDiskNumber INTEGER, + virtualDiskName DisplayString, + virtualDiskState INTEGER, + virtualDiskSizeInMB INTEGER, + virtualDiskWritePolicy INTEGER, + virtualDiskReadPolicy INTEGER, + virtualDiskLayout INTEGER, + virtualDiskStripeSize INTEGER, + virtualDiskComponentStatus ObjectStatusEnum, + virtualDiskBadBlocksDetected BooleanType, + virtualDiskSecured BooleanType, + virtualDiskIsCacheCade BooleanType, + virtualDiskDiskCachePolicy INTEGER, + virtualDiskOperationalState INTEGER, + virtualDiskProgress INTEGER, + virtualDiskAvailableProtocols DisplayString, + virtualDiskMediaType DisplayString, + virtualDiskRemainingRedundancy INTEGER, + virtualDiskFQDD FQDDString, + virtualDiskDisplayName DisplayString, + virtualDiskT10PIStatus INTEGER, + virtualDiskBlockSizeInBytes INTEGER +} + +virtualDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed virtual disks. The number of entries is related + to number of virtual disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { logicalDevices 1 } + +virtualDiskTableEntry OBJECT-TYPE + SYNTAX VirtualDiskTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the virtual disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { virtualDiskNumber } + ::= { virtualDiskTable 1 } + +virtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..100000000) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this virtual disk entry. + " + ::= { virtualDiskTableEntry 1 } + +virtualDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's label as entered by the user. + " + ::= { virtualDiskTableEntry 2 } + +virtualDiskState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + online(2), + failed(3), + degraded(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this virtual disk + (which includes any member physical disks.) + Possible states: + 1: The current state could not be determined. + 2: The virtual disk is operating normally or optimally. + 3: The virtual disk has encountered a failure. The data on disk + is lost or is about to be lost. + 4: The virtual disk encounterd a failure with one or all of the + constituent redundant physical disks. The data on the virtual + disk might no longer be fault tolerant. + " + ::= { virtualDiskTableEntry 4 } + +virtualDiskSizeInMB OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the virtual disk in megabytes. + " + ::= { virtualDiskTableEntry 6 } + +virtualDiskWritePolicy OBJECT-TYPE + SYNTAX INTEGER + { + writeThrough(1), + writeBack(2), + writeBackForce(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The write policy used by the controller for write operations on + this virtual disk. + Possible values: + 1: Write Through. + 2: Write Back. + 3: Force Write Back. + " + ::= { virtualDiskTableEntry 10 } + +virtualDiskReadPolicy OBJECT-TYPE + SYNTAX INTEGER + { + noReadAhead(1), + readAhead(2), + adaptiveReadAhead(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The read policy used by the controller for read operations on + this virtual disk. + Possible values: + 1: No Read Ahead. + 2: Read Ahead. + 3: Adaptive Read Ahead. + " + ::= { virtualDiskTableEntry 11 } + +virtualDiskLayout OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + r0(2), + r1(3), + r5(4), + r6(5), + r10(6), + r50(7), + r60(8), + concatRaid1(9), + concatRaid5(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's RAID type. + Possible values: + 1: Not one of the following + 2: RAID-0 + 3: RAID-1 + 4: RAID-5 + 5: RAID-6 + 6: RAID-10 + 7: RAID-50 + 8: RAID-60 + 9: Concatenated RAID 1 + 10: Concatenated RAID 5 + " + ::= { virtualDiskTableEntry 13 } + +virtualDiskStripeSize OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + default(2), + fiveHundredAndTwelvebytes(3), + oneKilobytes(4), + twoKilobytes(5), + fourKilobytes(6), + eightKilobytes(7), + sixteenKilobytes(8), + thirtyTwoKilobytes(9), + sixtyFourKilobytes(10), + oneTwentyEightKilobytes(11), + twoFiftySixKilobytes(12), + fiveOneTwoKilobytes(13), + oneMegabye(14), + twoMegabytes(15), + fourMegabytes(16), + eightMegabytes(17), + sixteenMegabytes(18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The stripe size of this virtual disk. + Possible values: + 1: Not one of the following + 2: Default. + 3: 512 bytes + 4: 1 kB, + 5: 2 kB, + 6: 4 kB, + 7: 8 kB, + 8: 16 kB, + 9: 32 kB, + 10: 64 kB, + 11: 128 kB, + 12: 256 kB, + 13: 512 kB, + 14: 1 MB, + 15: 2 MB, + 16: 4 MB, + 17: 8 MB, + 18: 16 MB + " + ::= { virtualDiskTableEntry 14 } + +virtualDiskComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the virtual disk itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { virtualDiskTableEntry 20 } + +virtualDiskBadBlocksDetected OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk has bad blocks. + " + ::= { virtualDiskTableEntry 23 } + +virtualDiskSecured OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk is secured or not. + " + ::= { virtualDiskTableEntry 24 } + +virtualDiskIsCacheCade OBJECT-TYPE + SYNTAX BooleanType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk is being used as a secondary + cache by the controller. + " + ::= { virtualDiskTableEntry 25 } + +virtualDiskDiskCachePolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + defullt(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The cache policy of the physical disks that are + part of this virtual disk + Possible values: + 1: Enabled. + 2: Disabled. + 3: Default. + " + ::= { virtualDiskTableEntry 26 } + +virtualDiskOperationalState OBJECT-TYPE + SYNTAX INTEGER + { + notApplicable(1), + reconstructing(2), + resynching(3), + initializing(4), + backgroundInit(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the virtual disk when there are progressive + operations ongoing. + Possible values: + 1: There is no active operation running. + 2: The virtual disk configuration has changed. + The physical disks included in the virtual disk are being + modified to support the new configuration. + 3: A Consistency Check (CC) is being performed + on the virtual disk. + 4: The virtual disk is being initialized. + 5: BackGround Initialization (BGI) is being performed + on the virtual disk. + " + ::= { virtualDiskTableEntry 30 } + +virtualDiskProgress OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The progress percentage of the operation that is being + performed on the virtual disk. This is applicable + only if there is a progressive operations ongoing + " + ::= { virtualDiskTableEntry 31 } + +virtualDiskAvailableProtocols OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "List of protocols support by physical disks part of this virtual + disk. For e.g. SAS for Serial Attached SCSI or SATA for + Serial Advanced Technology Attachment. + " + ::= { virtualDiskTableEntry 32 } + +virtualDiskMediaType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "List of media types of the physical disks part of this virtual + disk. For e.g. HDD for Hard Disk Drive or SSD for Solid State Device. + " + ::= { virtualDiskTableEntry 33 } + +virtualDiskRemainingRedundancy OBJECT-TYPE + SYNTAX INTEGER (0..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of physical disks which can be lost before the + virtual disk loses its redundancy. + " + ::= { virtualDiskTableEntry 34 } + +virtualDiskFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's Fully Qualified Device Descriptor (FQDD) as + represented in Storage Management. + " + ::= { virtualDiskTableEntry 35 } + +virtualDiskDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The virtual disk's friendly FQDD as represented in Storage + Management. + " + ::= { virtualDiskTableEntry 36 } + + +virtualDiskT10PIStatus OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + enabled(2), + disabled(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the virtual disk supports the T10 PI (Protection + Information). These protection fields are known as DIF + (Data Integrity Fields). + Possible values: + 1: Not one of the following. + 2: Enabled. + 3: Disabled. + " + ::= { virtualDiskTableEntry 37 } + +virtualDiskBlockSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The block size (in bytes) of the physical disk part of the virtual disk. + Possible values: + 1: 512. + 2: 4096 + " + ::= { virtualDiskTableEntry 38 } + + +------------------------------------------------------------------------------- +-- Enclosure Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.3.1.. +------------------------------------------------------------------------------- + +EnclosureTableEntry ::=SEQUENCE { + enclosureNumber INTEGER, + enclosureName DisplayString, + enclosureState INTEGER, + enclosureServiceTag DisplayString, + enclosureAssetTag DisplayString, + enclosureConnectedPort DisplayString, + enclosureRollUpStatus ObjectStatusEnum, + enclosureComponentStatus ObjectStatusEnum, + enclosureFirmwareVersion DisplayString, + enclosureSASAddress DisplayString, + enclosureDriveCount INTEGER, + enclosureTotalSlots INTEGER, + enclosureFanCount DisplayString, + enclosurePSUCount DisplayString, + enclosureEMMCount DisplayString, + enclosureTempProbeCount DisplayString, + enclosureRedundantPath DisplayString, + enclosurePosition DisplayString, + enclosureBackplaneBayID DisplayString, + enclosureFQDD FQDDString, + enclosureDisplayName DisplayString, + enclosureType INTEGER +} + +enclosureTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed enclosures/backplanes. The number of entries is + related to number of internal backplane(s) discovered in the system + and external storage enclosure(s) attached to the system.. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 3 } + +enclosureTableEntry OBJECT-TYPE + SYNTAX EnclosureTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the enclosure table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureNumber } + ::= { enclosureTable 1 } + +enclosureNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this enclossre/backplane. + " + ::= { enclosureTableEntry 1 } + +enclosureName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure/backplane's name as represented in Storage Management. + " + ::= { enclosureTableEntry 2 } + +enclosureState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this enclosure/backplane. + Possible states: + 1: The current state could not be determined. + 2: The enclosure is operating normally. + 3: The enclosure has encountered a hardware problem or is not + responding. + 4: The enclosure is no longer connected to the controller or + there exists a problem communicating to the enclosure. + 5: The enclosure is unstable. + " + ::= { enclosureTableEntry 4 } + +enclosureServiceTag OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Enclosure identification used when consulting customer support. + " + ::= { enclosureTableEntry 8 } + +enclosureAssetTag OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The asset tag information for the enclosure." + ::= { enclosureTableEntry 9 } + +enclosureConnectedPort OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port on the controller to which the + storage enclosure is connected. + " + ::= { enclosureTableEntry 19 } + +enclosureRollUpStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Severity of the enclosure/backplane state. + This is the combined status of the enclosure and its sub-components. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical. + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTableEntry 23 } + +enclosureComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the enclosure/backplane.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTableEntry 24 } + +enclosureFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The firmware information for the enclosure/backplane. + " + ::= { enclosureTableEntry 26 } + +enclosureSASAddress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SAS address of the enclosure/backplane. + " + ::= { enclosureTableEntry 30 } + +enclosureDriveCount OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks present in the enclosure/backplane. + " + ::= { enclosureTableEntry 31 } + +enclosureTotalSlots OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total physical drive slots in a storage enclosure + or server backplane. + " + ::= { enclosureTableEntry 32 } + +enclosureFanCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of fans present in the storage enclosure. + " + ::= { enclosureTableEntry 40 } + +enclosurePSUCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Power Supply Units (PSU) present + in the storage enclosure. + " + ::= { enclosureTableEntry 41 } + +enclosureEMMCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Enclosure Management Modules (EMM) + present in the storage enclosure. + " + ::= { enclosureTableEntry 42 } + +enclosureTempProbeCount OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of temperature sensing devices + present in the storage enclosure. + " + ::= { enclosureTableEntry 43 } + +enclosureRedundantPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether the controller has multiply paths to + reach the storage enclosure. + " + ::= { enclosureTableEntry 44 } + +enclosurePosition OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The possition of the storage enclosure within a daisy chain. + " + ::= { enclosureTableEntry 45 } + +enclosureBackplaneBayID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unique bay ID of the backplane. + " + ::= { enclosureTableEntry 46 } + +enclosureFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure/backplane's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureTableEntry 47 } + +enclosureDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure/backplane's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureTableEntry 48 } + +enclosureType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), + notApplicable(2), + sassata(3), + pcie(4), + universal(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The protocol supported by the backplane. + Possible states: + 1: Not one of the following or could not be determined. + 2: Not applicable (i.e. object is not a backplane). + 3: Supports SAS/SATA. + 4: Supports PCIe. + 5: Both SAS/SATA and PCIe. + " + ::= { enclosureTableEntry 49 } + + +------------------------------------------------------------------------------- +-- Enclosure Management Module Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.13.1.. +------------------------------------------------------------------------------- + +EnclosureManagementModuleTableEntry ::=SEQUENCE { + enclosureManagementModuleNumber INTEGER, + enclosureManagementModuleName DisplayString, + enclosureManagementModuleState INTEGER, + enclosureManagementModulePartNumber DisplayString, + enclosureManagementModuleFWVersion DisplayString, + enclosureManagementModuleComponentStatus ObjectStatusEnum, + enclosureManagementModuleFQDD FQDDString, + enclosureManagementModuleDisplayName DisplayString +} + +enclosureManagementModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed Enclosure Management Modules (EMM) + in the external storage enclosure(s). The number of + entries is related to number of enclosure management modules + discovered in the enclosure(s). The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 13 } + +enclosureManagementModuleTableEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the enclosure management module table. A row in + this table cannot be created or deleted by SNMP operations + on columns of the table. + " + INDEX { enclosureManagementModuleNumber } + ::= { enclosureManagementModuleTable 1 } + +enclosureManagementModuleNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 1 } + +enclosureManagementModuleName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure management module's name as + represented in Storage Management. + " + ::= { enclosureManagementModuleTableEntry 2 } + +enclosureManagementModuleState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this enclosure management module. + Possible states: + 1: The current state could not be determined. + 2: The enclosure management module is operating normally. + 3: The enclosure management module has encountered a + hardware problem or is not responding. + 4: The enclosure management module is no longer connected + to the enclosure or there exists a problem communicating to it. + 5: The enclosure management module is unstable. + " + ::= { enclosureManagementModuleTableEntry 4 } + +enclosureManagementModulePartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of the enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 6 } + +enclosureManagementModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware version of the enclosure management module. + " + ::= { enclosureManagementModuleTableEntry 8 } + +enclosureManagementModuleComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the enclosure management module.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureManagementModuleTableEntry 11 } + +enclosureManagementModuleFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure management module's Fully Qualified Device + Descriptor (FQDD) as represented in Storage Management. + " + ::= { enclosureManagementModuleTableEntry 15 } + +enclosureManagementModuleDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The enclosure management module's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureManagementModuleTableEntry 16 } + +------------------------------------------------------------------------------- +-- Enclosure Fan Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.7.1.. +------------------------------------------------------------------------------- + +EnclosureFanTableEntry ::=SEQUENCE { + enclosureFanNumber INTEGER, + enclosureFanName DisplayString, + enclosureFanState INTEGER, + enclosureFanSpeed INTEGER, + enclosureFanComponentStatus ObjectStatusEnum, + enclosureFanFQDD FQDDString, + enclosureFanDisplayName DisplayString +} + +enclosureFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureFanTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed fans in the external storage enclosure(s). + The number of entries is related to number of fans discovered in + the enclosure(s). The maximum number of entries is implementation + dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 7 } + +enclosureFanTableEntry OBJECT-TYPE + SYNTAX EnclosureFanTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the fan table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureFanNumber } + ::= { enclosureFanTable 1 } + +enclosureFanNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this fan. + " + ::= { enclosureFanTableEntry 1 } + +enclosureFanName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan's name as represented in Storage Management. + " + ::= { enclosureFanTableEntry 2 } + +enclosureFanState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this fan. + Possible states: + 1: The current state could not be determined. + 2: The fan is operating normally. + 3: The fan has encountered a hardware problem or is not + responding. + 4: The fan is no longer connected to the enclosure or + there exists a problem communicating to it. + 5: The fan is unstable. + " + ::= { enclosureFanTableEntry 4 } + +enclosureFanSpeed OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + stopped(2), + slow(3), + medium(4), + fast(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current relative speed of the fan. + " + ::= { enclosureFanTableEntry 11 } + +enclosureFanComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the fan itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureFanTableEntry 15 } + +enclosureFanFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureFanTableEntry 20 } + +enclosureFanDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The fan's friendly FQDD as represented in + Storage Management. + " + ::= { enclosureFanTableEntry 21 } + + +------------------------------------------------------------------------------- +-- Enclosure Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.9.1.. +------------------------------------------------------------------------------- + +EnclosurePowerSupplyTableEntry ::=SEQUENCE { + enclosurePowerSupplyNumber INTEGER, + enclosurePowerSupplyName DisplayString, + enclosurePowerSupplyState INTEGER, + enclosurePowerSupplyPartNumber DisplayString, + enclosurePowerSupplyComponentStatus ObjectStatusEnum, + enclosurePowerSupplyFQDD FQDDString, + enclosurePowerSupplyDisplayName DisplayString +} + +enclosurePowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosurePowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed Power Supply Units(PSU) in the external + storage enclosure(s). The number of entries is related to number + of power supply unit(s) discovered in the enclosure(s). The + maximum number of entries is implementation + dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 9 } + +enclosurePowerSupplyTableEntry OBJECT-TYPE + SYNTAX EnclosurePowerSupplyTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the power supply unit table. A row in this table cannot + be created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosurePowerSupplyNumber } + ::= { enclosurePowerSupplyTable 1 } + +enclosurePowerSupplyNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this power supply unit. + " + ::= { enclosurePowerSupplyTableEntry 1 } + +enclosurePowerSupplyName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply unit's name as represented in + Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 2 } + +enclosurePowerSupplyState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this power supply unit. + Possible states: + 1: The current state could not be determined. + 2: The power supply unit is operating normally. + 3: The power supply unit has encountered a hardware problem + or is not responding. + 4: The power supply unit is no longer connected to the enclosure + or there exists a problem communicating to it. + 5: The power supply unit is unstable. + " + ::= { enclosurePowerSupplyTableEntry 4 } + +enclosurePowerSupplyPartNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of the power supply unit. + " + ::= { enclosurePowerSupplyTableEntry 7 } + +enclosurePowerSupplyComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the power supply unit itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosurePowerSupplyTableEntry 9 } + +enclosurePowerSupplyFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply unit's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 15 } + +enclosurePowerSupplyDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The power supply unit's friendly FQDD as represented in + Storage Management. + " + ::= { enclosurePowerSupplyTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Enclosure Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.5.1.20.130.11.1.. +------------------------------------------------------------------------------- + +EnclosureTemperatureProbeTableEntry ::=SEQUENCE { + enclosureTemperatureProbeNumber INTEGER, + enclosureTemperatureProbeName DisplayString, + enclosureTemperatureProbeState INTEGER, + enclosureTemperatureProbeMinWarningValue INTEGER, + enclosureTemperatureProbeMinCriticalValue INTEGER, + enclosureTemperatureProbeMaxWarningValue INTEGER, + enclosureTemperatureProbeMaxCriticalValue INTEGER, + enclosureTemperatureProbeCurValue INTEGER, + enclosureTemperatureProbeComponentStatus ObjectStatusEnum, + enclosureTemperatureProbeFQDD FQDDString, + enclosureTemperatureProbeDisplayName DisplayString +} + +enclosureTemperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureTemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of managed temperature probes in the external storage + enclosure(s). The number of entries is related to number of + temperature probes discovered in the enclosure(s). The maximum + number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all + entries. + " + ::= { physicalDevices 11 } + +enclosureTemperatureProbeTableEntry OBJECT-TYPE + SYNTAX EnclosureTemperatureProbeTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the temperature probe table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table. + " + INDEX { enclosureTemperatureProbeNumber } + ::= { enclosureTemperatureProbeTable 1 } + +enclosureTemperatureProbeNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Instance number of this temperature probe. + " + ::= { enclosureTemperatureProbeTableEntry 1 } + +enclosureTemperatureProbeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature probe's name as represented in + Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 2 } + +enclosureTemperatureProbeState OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + ready(2), + failed(3), + missing(4), + degraded(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of this temperature probe. + Possible states: + 1: The current state could not be determined. + 2: The temperature probe is operating normally. + 3: The temperature probe has encountered a hardware problem + or is not responding. + 4: The temperature probe is no longer connected to the enclosure + or there exists a problem communicating to it. + 5: The temperature probe is unstable. + " + ::= { enclosureTemperatureProbeTableEntry 4 } + +enclosureTemperatureProbeMinWarningValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 7 } + +enclosureTemperatureProbeMinCriticalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum temperature that will force the probe into + a error state. + " + ::= { enclosureTemperatureProbeTableEntry 8 } + +enclosureTemperatureProbeMaxWarningValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 9 } + +enclosureTemperatureProbeMaxCriticalValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 10 } + +enclosureTemperatureProbeCurValue OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state. + " + ::= { enclosureTemperatureProbeTableEntry 11 } + +enclosureTemperatureProbeComponentStatus OBJECT-TYPE + SYNTAX ObjectStatusEnum + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the enclosure management module.itself without the + propagation of any contained component status. + Possible values: + 1: Other. + 2: Unknown. + 3: OK. + 4: Non-critical . + 5: Critical. + 6: Non-recoverable. + " + ::= { enclosureTemperatureProbeTableEntry 13 } + +enclosureTemperatureProbeFQDD OBJECT-TYPE + SYNTAX FQDDString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature probe's Fully Qualified Device Descriptor (FQDD) + as represented in Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 15 } + +enclosureTemperatureProbeDisplayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature probe's friendly FQDD as represented + in Storage Management. + " + ::= { enclosureTemperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------ +-- Alert Trap Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2 +------------------------------------------------------------------------------ + + +------------------------------------------------------------------------------ +-- System Alert Trap Group +-- System Traps (a.k.a, System Health Traps) +-- Category: System/1 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.1 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Amperage Probe Traps +-- +-- Category: System/1 +-- Subcategory: AMP/16 +------------------------------------------------------------------------------ + +alertAmperageProbeNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Current sensor reading is within range." + --#TYPE "System: Amperage Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2179 } + +alertAmperageProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Current sensor has detected a warning value." + --#TYPE "System: Amperage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2178 } + +alertAmperageProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Current sensor has detected a failure value." + --#TYPE "System: Amperage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2177 } + +------------------------------------------------------------------------------ +-- Automatic System Recovery Trap +-- +-- Category: System/1 +-- Subcategory: ASR/23 +------------------------------------------------------------------------------ + +alertAutomaticSystemRecovery NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Automatic system recovery (ASR) was performed." + --#TYPE "System: Automatic System Recovery" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2233 } + +------------------------------------------------------------------------------ +-- Battery Traps +-- +-- Category: System/1 +-- Subcategory: BAT/22 +------------------------------------------------------------------------------ + +alertBatteryNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery state has returned to normal; + or battery presence had been detected." + --#TYPE "System: Battery Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2227 } + +alertBatteryWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery is low." + --#TYPE "System: Battery Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2226 } + +alertBatteryFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery has failed or battery is absent." + --#TYPE "System: Battery Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2225 } + +------------------------------------------------------------------------------ +-- Cable Traps +-- +-- Category: System/1 +-- Subcategory: CBL/43 +------------------------------------------------------------------------------ + +alertCableFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Cable failure or critical event." + --#TYPE "System: Cable Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2393 } + +------------------------------------------------------------------------------ +-- CMC Traps +-- +-- Category: System/1 +-- Subcategory: CMC/62 +------------------------------------------------------------------------------ + +alertCMCWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller detected a warning." + --#TYPE "System: CMC Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2546 } + +alertCMCFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller detected an error." + --#TYPE "System: CMC Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2545 } + +------------------------------------------------------------------------------ +-- Processor Device Status Traps +-- +-- Category: System/1 +-- Subcategory: CPU/24 +------------------------------------------------------------------------------ + +alertProcessorDeviceStatusNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device status has returned to normal." + --#TYPE "System: Processor Device Status Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2243 } + +alertProcessorDeviceStatusWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device status has detected a warning." + --#TYPE "System: Processor Device Status Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2242 } + +alertProcessorDeviceStatusFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device status has detected a failure." + --#TYPE "System: Processor Device Status Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2241 } + +------------------------------------------------------------------------------ +-- Processor Device Absent Trap +-- +-- Category: System/1 +-- Subcategory: CPUA/51 +------------------------------------------------------------------------------ + +alertProcessorDeviceAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Processor device is absent." + --#TYPE "System: Processor Device Absent" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2457 } + +------------------------------------------------------------------------------ +-- Fan Traps +-- +-- Category: System/1 +-- Subcategory: FAN/13 +------------------------------------------------------------------------------ + +alertFanInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan information." + --#TYPE "System: Fan Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2155 } + +alertFanWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan warning." + --#TYPE "System: Fan Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2154 } + +alertFanFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan failure." + --#TYPE "System: Fan Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2153 } + +------------------------------------------------------------------------------ +-- Fiber Channel Traps +-- +-- Category: System/1 +-- Subcategory: FC/61 +------------------------------------------------------------------------------ + +alertFiberChannelInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fiber Channel information." + --#TYPE "System: Fiber Channel Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2539 } + +alertFiberChannelWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fiber Channel warning." + --#TYPE "System: Fiber Channel Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2538 } + +alertFiberChannelFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fiber Channel failure or critical event." + --#TYPE "System: Fiber Channel Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2537 } + +------------------------------------------------------------------------------ +-- Hardware Configuration Traps +-- +-- Category: System/1 +-- Subcategory: HWC/35 +------------------------------------------------------------------------------ + +alertHardwareConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware configuration information." + --#TYPE "System: Hardware Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2331 } + +alertHardwareConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware configuration warning." + --#TYPE "System: Hardware Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2330 } + +alertHardwareConfigurationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Hardware configuration failure or critical event." + --#TYPE "System: Hardware Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2329 } + +------------------------------------------------------------------------------ +-- IO Virtualization Traps +-- +-- Category: System/1 +-- Subcategory: IOV/63 +------------------------------------------------------------------------------ + +alertIOVirtualizationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "IO Virtualization failure or critical event." + --#TYPE "System: IO Virtualization Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2553 } + +------------------------------------------------------------------------------ +-- Link Status Traps +-- +-- Category: System/1 +-- Subcategory: LNK/25 +------------------------------------------------------------------------------ + +alertLinkStatusInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Link status information." + --#TYPE "System: Link Status Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2251 } + +alertLinkStatusWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Link status warning." + --#TYPE "System: Link Status Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2250 } + +alertLinkStatusFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Link status failure or critical event." + --#TYPE "System: Link Status Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2249 } + +------------------------------------------------------------------------------ +-- Memory Device Traps +-- +-- Category: System/1 +-- Subcategory: MEM/27 +------------------------------------------------------------------------------ + +alertMemoryDeviceInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Memory device informational event." + --#TYPE "System: Memory Device Infomation" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2267 } + +alertMemoryDeviceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Memory device status is noncritical." + --#TYPE "System: Memory Device Noncritical" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2266 } + +alertMemoryDeviceFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Memory device status is critical." + --#TYPE "System: Memory Device Critical" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2265 } + +------------------------------------------------------------------------------ +-- NIC Traps +-- +-- Category: System/1 +-- Subcategory: NIC/5 +------------------------------------------------------------------------------ + +alertNetworkInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network information." + --#TYPE "System: Network Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2091 } + +alertNetworkWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network warning." + --#TYPE "System: Network Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2090 } + +alertNetworkFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network failure or critical event." + --#TYPE "System: Network Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2089 } + +------------------------------------------------------------------------------ +-- Operation System ("OS") Event Traps +-- +-- Category: System/1 +-- Subcategory: OSE/45 +------------------------------------------------------------------------------ + +alertOSInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "An OS graceful stop occurred; + or an OS graceful shut-down occurred." + --#TYPE "System: Operating System Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2411 } + +alertOSFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "A critical stop occurred during OS load; + or a runtime critical stop occurred." + --#TYPE "System: Operating System Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2409 } + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: System/1 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "An informational event was detected for a PCI device." + --#TYPE "System: PCI Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2419 } + +alertPCIDeviceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "A warning event was detected for a PCI device." + --#TYPE "System: PCI Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2418 } + +alertPCIDeviceFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "An error was detected for a PCI device." + --#TYPE "System: PCI Device Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2417 } + +------------------------------------------------------------------------------ +-- Physical Disk Traps +-- +-- Category: System/1 +-- Subcategory: PDR/31 +------------------------------------------------------------------------------ + +alertPhysicalDiskInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk information." + --#TYPE "System: Physical Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2299 } + +alertPhysicalDiskWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk warning." + --#TYPE "System: Physical Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2298 } + +alertPhysicalDiskFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk failure." + --#TYPE "System: Physical Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { systemAlertTrapGroup 0 2297 } + +------------------------------------------------------------------------------ +-- BIOS POST Trap +-- +-- Category: System/1 +-- Subcategory: PST/47 +------------------------------------------------------------------------------ + +alertBiosPostFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System BIOS detected a failure." + --#TYPE "System: BIOS POST Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { systemAlertTrapGroup 0 2425 } + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: System/1 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertPowerSupplyNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply has returned to normal." + --#TYPE "System: Power Supply Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2187 } + +alertPowerSupplyWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply has detected a warning." + --#TYPE "System: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2186 } + +alertPowerSupplyFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply has detected a failure." + --#TYPE "System: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2185 } + +------------------------------------------------------------------------------ +-- Power Supply Absent Trap +-- +-- Category: System/1 +-- Subcategory: PSUA/52 +------------------------------------------------------------------------------ + +alertPowerSupplyAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply is absent." + --#TYPE "System: Power Supply Absent" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2465 } + +------------------------------------------------------------------------------ +-- Power Usage Traps +-- +-- Category: System/1 +-- Subcategory: PWR/28 +------------------------------------------------------------------------------ + +alertPowerUsageInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System performance restored." + --#TYPE "System: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2275 } + +alertPowerUsageWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System performance degraded." + --#TYPE "System: Power Usage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2274 } + +alertPowerUsageFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The system halted because system power exceeds capacity; + or the system performance degraded because power draw exceeds the + power threshold." + --#TYPE "System: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2273 } + +------------------------------------------------------------------------------ +-- Redundancy Traps +-- +-- Category: System/1 +-- Subcategory: RDU/53 +------------------------------------------------------------------------------ + +alertRedundancyInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Redundancy information." + --#TYPE "System: Redundancy Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2475 } + +alertRedundancyDegraded NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Redundancy is degraded." + --#TYPE "System: Redundancy Degraded" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2474 } + +alertRedundancyLost NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Redundancy is lost." + --#TYPE "System: Redundancy Lost" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2473 } + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Traps +-- +-- Category: System/1 +-- Subcategory: RFL/20 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module information." + --#TYPE "System: Integrated Dual SD Module Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2211 } + +alertIntegratedDualSDModuleWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module warning." + --#TYPE "System: Integrated Dual SD Module Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2210 } + +alertIntegratedDualSDModuleFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module failure." + --#TYPE "System: Integrated Dual SD Module Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2209 } + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Absent Trap +-- +-- Category: System/1 +-- Subcategory: RFLA/54 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module is absent." + --#TYPE "System: Integrated Dual SD Module absent." + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2481 } + +------------------------------------------------------------------------------ +-- Integrated Dual SD Module Redundancy Traps +-- +-- Category: System/1 +-- Subcategory: RRDU/55 +------------------------------------------------------------------------------ + +alertIntegratedDualSDModuleRedundancyInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module redundancy information." + --#TYPE "System: Integrated Dual SD Module Redundancy Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2491 } + +alertIntegratedDualSDModuleRedundancyDegraded NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module redundancy is degraded." + --#TYPE "System: Integrated Dual SD Module Redundancy Degraded" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2490 } + +alertIntegratedDualSDModuleRedundancyLost NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Integrated Dual SD Module redundancy is lost." + --#TYPE "System: Integrated Dual SD Module Redundancy Lost" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2489 } + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: System/1 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertSecurityInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security information." + --#TYPE "System: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2387 } + +alertSecurityWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security warning." + --#TYPE "System: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2386 } + +alertSecurityFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security failure or critical event." + --#TYPE "System: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2385 } + +------------------------------------------------------------------------------ +-- System Event Log Traps +-- +-- Category: System/1 +-- Subcategory: SEL/41 +------------------------------------------------------------------------------ + +alertSystemEventLogInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Event Log information." + --#TYPE "System: System Event Log Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2379 } + +alertSystemEventLogWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Event Log warning." + --#TYPE "System: System Event Log Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2378 } + +alertSystemEventLogFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Event Log failure or critical event." + --#TYPE "System: System Event Log Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2377 } + +------------------------------------------------------------------------------ +-- Software Configuration Traps +-- +-- Category: System/1 +-- Subcategory: SWC/36 +------------------------------------------------------------------------------ + +alertSoftwareConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration information." + --#TYPE "System: Software Configuration Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2339 } + +alertSoftwareConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration warning." + --#TYPE "System: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2338 } + +alertSoftwareConfigurationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration failure." + --#TYPE "System: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2337 } + +------------------------------------------------------------------------------ +-- Temperature Probe Traps +-- +-- Category: System/1 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertTemperatureProbeNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature sensor value is within range." + --#TYPE "System: Temperature Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2163 } + +alertTemperatureProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature sensor has detected a warning value." + --#TYPE "System: Temperature Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2162 } + +alertTemperatureProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature sensor has detected a failure value." + --#TYPE "System: Temperature Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2161 } + +------------------------------------------------------------------------------ +-- Temperature Statistics Traps +-- +-- Category: System/1 +-- Subcategory: TMPS/59 +------------------------------------------------------------------------------ + +alertTemperatureStatisticsWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature has been above the warning or critical threshold level + for a long enough period of time to be considered in a warning state." + --#TYPE "System: Temperature Statistics Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2522 } + +alertTemperatureStatisticsFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature has been above the warning or critical threshold level + for a long enough period of time to be considered in a critical state." + --#TYPE "System: Temperature Statistics Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2521 } + +------------------------------------------------------------------------------ +-- vFlash Media Device Traps +-- +-- Category: System/1 +-- Subcategory: VFL/57 +------------------------------------------------------------------------------ + +alertvFlashMediaDeviceInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device information." + --#TYPE "System: vFlash Media Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2507 } + +alertvFlashMediaDeviceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device warning." + --#TYPE "System: vFlash Media Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2506 } + +alertvFlashMediaDeviceFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device failure." + --#TYPE "System: vFlash Media Device Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2505 } + +------------------------------------------------------------------------------ +-- vFlash Media Device Absent Trap +-- +-- Category: System/1 +-- Subcategory: VFLA/58 +------------------------------------------------------------------------------ + +alertvFlashMediaDeviceAbsent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "vFlash Media device is absent." + --#TYPE "System: vFlash Media Device Absent" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2515 } + +------------------------------------------------------------------------------ +-- Voltage Probe Traps +-- +-- Category: System/1 +-- Subcategory: VLT/15 +------------------------------------------------------------------------------ + +alertVoltageProbeNormal NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Voltage sensor reading is within range." + --#TYPE "System: Voltage Normal" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2171 } + +alertVoltageProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Voltage sensor has detected a warning value." + --#TYPE "System: Voltage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2170 } + +alertVoltageProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Voltage sensor has detected a failure value." + --#TYPE "System: Voltage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2169 } + +------------------------------------------------------------------------------ +-- RAC Traps +-- +-- Category: System/1 +-- Subcategory: RAC/60 +------------------------------------------------------------------------------ + +alertRACInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "RAC information." + --#TYPE "System: RAC Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { systemAlertTrapGroup 0 2531 } + +------------------------------------------------------------------------------ +-- System Performance Traps +-- +-- Category: System/1 +-- Subcategory: PFM/75 +------------------------------------------------------------------------------ + +alertSystemPerformanceWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "System Performance warning." + --#TYPE "System: Performance Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { systemAlertTrapGroup 0 2650 } + + +------------------------------------------------------------------------------ +-- Storage Alert Trap Group +-- Storage Traps +-- Category: Storage/2 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.2 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Battery Traps +-- +-- Category: Storage/2 +-- Subcategory: BAT/22 +------------------------------------------------------------------------------ + +alertStorageBatteryInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery information." + --#TYPE "Storage: Battery Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4275 } + +alertStorageBatteryWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery warning." + --#TYPE "Storage: Battery Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4274 } + +alertStorageBatteryFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Battery failure." + --#TYPE "Storage: Battery Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4273 } + +------------------------------------------------------------------------------ +-- Controller Traps +-- +-- Category: Storage/2 +-- Subcategory: CTL/29 +------------------------------------------------------------------------------ + +alertStorageControllerInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Controller information." + --#TYPE "Storage: Controller Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4331 } + +alertStorageControllerWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Controller warning." + --#TYPE "Storage: Controller Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4330 } + +alertStorageControllerFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Controller failure." + --#TYPE "Storage: Controller Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4329 } + +------------------------------------------------------------------------------ +-- Enclosure Traps +-- +-- Category: Storage/2 +-- Subcategory: ENC/30 +------------------------------------------------------------------------------ + +alertStorageEnclosureInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Enclosure information." + --#TYPE "Storage: Enclosure Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4339 } + +alertStorageEnclosureWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Enclosure warning." + --#TYPE "Storage: Enclosure Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4338 } + +alertStorageEnclosureFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Enclosure failure." + --#TYPE "Storage: Enclosure Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4337 } + +------------------------------------------------------------------------------ +-- Fan Traps +-- +-- Category: Storage/2 +-- Subcategory: FAN/13 +------------------------------------------------------------------------------ + +alertStorageFanInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan information." + --#TYPE "Storage: Fan Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4203 } + +alertStorageFanWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan warning." + --#TYPE "Storage: Fan Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4202 } + +alertStorageFanFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Fan failure." + --#TYPE "Storage: Fan Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4201 } + +------------------------------------------------------------------------------ +-- Physical Disk Traps +-- +-- Category: Storage/2 +-- Subcategory: PDR/31 +------------------------------------------------------------------------------ + +alertStoragePhysicalDiskInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk information." + --#TYPE "Storage: Physical Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4347 } + +alertStoragePhysicalDiskWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk warning." + --#TYPE "Storage: Physical Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4346 } + +alertStoragePhysicalDiskFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Physical disk failure." + --#TYPE "Storage: Physical Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4345 } + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: Storage/2 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertStoragePowerSupplyInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply information." + --#TYPE "Storage: Power Supply Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4235 } + +alertStoragePowerSupplyWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply warning." + --#TYPE "Storage: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4234 } + +alertStoragePowerSupplyFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power supply failure." + --#TYPE "Storage: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4233 } + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: Storage/2 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertStorageSecurityInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Security information." + --#TYPE "Storage: Security Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4435 } + +alertStorageSecurityWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Security warning." + --#TYPE "Storage: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4434 } + +alertStorageSecurityFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Security failure or critical event." + --#TYPE "Storage: Security Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4433 } + +------------------------------------------------------------------------------ +-- Storage Management Status Traps +-- +-- Category: Storage/2 +-- Subcategory: STOR/10 +------------------------------------------------------------------------------ + +alertStorageManagementInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Management Information. + There is no global status change associated with this trap." + --#TYPE "Storage: Storage Management Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4179 } + +alertStorageManagementWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Management has detected a device independent warning + condition. There is no global status change associated with this + trap." + --#TYPE "Storage: Storage Management Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4178 } + +alertStorageManagementFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Storage Management has detected a device independent error condition. + There is no global status change associated with this trap." + --#TYPE "Storage: Storage Management Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4177 } + +------------------------------------------------------------------------------ +-- Temperature Probe Traps +-- +-- Category: Storage/2 +-- Subcategory: TMP/14 +------------------------------------------------------------------------------ + +alertStorageTemperatureProbeInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature probe information." + --#TYPE "Storage: Temperature Probe Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4211 } + +alertStorageTemperatureProbeWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature probe warning." + --#TYPE "Storage: Temperature Probe Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4210 } + +alertStorageTemperatureProbeFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Temperature probe failure." + --#TYPE "Storage: Temperature Probe Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4209 } + +------------------------------------------------------------------------------ +-- Virtual Disk Traps +-- +-- Category: Storage/2 +-- Subcategory: VDR/32 +------------------------------------------------------------------------------ + +alertStorageVirtualDiskInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Virtual disk information." + --#TYPE "Storage: Virtual Disk Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { storageAlertTrapGroup 0 4355 } + +alertStorageVirtualDiskWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Virtual disk warning." + --#TYPE "Storage: Virtual Disk Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { storageAlertTrapGroup 0 4354 } + +alertStorageVirtualDiskFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Virtual disk failure." + --#TYPE "Storage: Virtual Disk Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE FAILED + --#STATUS current + ::= { storageAlertTrapGroup 0 4353 } + + +------------------------------------------------------------------------------ +-- Updates Alert Trap Group +-- Updates Traps +-- Category: Updates/3 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.3 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- Update Job Trap +-- +-- Category: Updates/3 +-- Subcategory: RED/8 +------------------------------------------------------------------------------ + +alertUpdateJobInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Update job information." + --#TYPE "Updates: Update Job Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { updatesAlertTrapGroup 0 6211 } + +------------------------------------------------------------------------------ +-- Software Change Traps +-- +-- Category: Updates/3 +-- Subcategory: SWU/21 +------------------------------------------------------------------------------ + +alertSoftwareChangeUpdateWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software change update warning." + --#TYPE "Updates: Software Change Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { updatesAlertTrapGroup 0 6314 } + + +------------------------------------------------------------------------------ +-- Audit Alert Trap Group +-- Audit Traps +-- Category: Audit/4 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.4 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- CMC Traps +-- +-- Category: Audit/4 +-- Subcategory: CMC/62 +------------------------------------------------------------------------------ + +alertCMCAuditInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller audit information." + --#TYPE "Audit: CMC Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8691 } + +alertCMCAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller audit warning." + --#TYPE "Audit: CMC Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8690 } + +alertCMCAuditFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Chassis Management Controller audit failure or critical event." + --#TYPE "Audit: CMC Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8689 } + +------------------------------------------------------------------------------ +-- Debug Traps +-- +-- Category: Audit/4 +-- Subcategory: FSD/50 +------------------------------------------------------------------------------ + +alertDebugInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Debug authorized." + --#TYPE "Audit: Debug Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8595 } + +alertDebugWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Debug authorization failed." + --#TYPE "Audit: Debug Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8594 } + +------------------------------------------------------------------------------ +-- iDRAC IP Address Change Trap +-- +-- Category: Audit/4 +-- Subcategory: IPA/38 +------------------------------------------------------------------------------ + +alertiDRACIPAddressChange NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "iDRAC IP address has changed." + --#TYPE "iDRAC IP address has changed" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + + ::= { auditAlertTrapGroup 0 8499 } + +------------------------------------------------------------------------------ +-- License Traps +-- +-- Category: Audit/4 +-- Subcategory: LIC/40 +------------------------------------------------------------------------------ + +alertLicenseInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "License information." + --#TYPE "Audit: License Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8515 } + +alertLicenseWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "License warning." + --#TYPE "Audit: License Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8514 } + +alertLicenseFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "License failure." + --#TYPE "Audit: License Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8513 } + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: Audit/4 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "PCI device audit warning." + --#TYPE "Audit: PCI Device Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8562 } + +------------------------------------------------------------------------------ +-- Power Supply Traps +-- +-- Category: Audit/4 +-- Subcategory: PSU/17 +------------------------------------------------------------------------------ + +alertPowerSupplyAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power Supply audit warning." + --#TYPE "Audit: Power Supply Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8330 } + +alertPowerSupplyAuditFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power Supply audit failure or critical event." + --#TYPE "Audit: Power Supply Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8329 } + +------------------------------------------------------------------------------ +-- Power Usage Traps +-- +-- Category: Audit/4 +-- Subcategory: PWR/28 +------------------------------------------------------------------------------ + +alertPowerUsageAuditInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power usage audit information." + --#TYPE "Audit: Power Usage Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8419 } + +alertPowerUsageAuditWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power usage audit warning." + --#TYPE "Audit: Power Usage Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8418 } + +alertPowerUsageAuditFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Power usage audit failure or critical event." + --#TYPE "Audit: Power Usage Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8417 } + +------------------------------------------------------------------------------ +-- System Power State Change Trap +-- +-- Category: Audit/4 +-- Subcategory: SYS/48 +------------------------------------------------------------------------------ + +alertSystemPowerStateChangeInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Host is going through a power state change + (powering on or powering off)." + --#TYPE "Audit: System Power State Change Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { auditAlertTrapGroup 0 8579 } + +------------------------------------------------------------------------------ +-- User Tracking Trap +-- +-- Category: Audit/4 +-- Subcategory: USR/37 +------------------------------------------------------------------------------ + +alertUserTrackingWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "User Tracking warning." + --#TYPE "Audit: User Tracking" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { auditAlertTrapGroup 0 8490 } + + +------------------------------------------------------------------------------ +-- Configuration Alert Trap Group +-- Configuration Traps +-- Category: Configuration/5 +-- +-- OID Format: 1.3.6.1.4.1.674.10892.5.3.2.5 +------------------------------------------------------------------------------ + +------------------------------------------------------------------------------ +-- AutoDiscovery Traps +-- +-- Category: Configuration/5 +-- Subcategory: DIS/49 +------------------------------------------------------------------------------ + +alertAutoDiscoveryInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Auto discovery information." + --#TYPE "Configuration: Auto Discovery Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10635 } + +------------------------------------------------------------------------------ +-- NIC Configuration Traps +-- +-- Category: Configuration/5 +-- Subcategory: IOID/66 +------------------------------------------------------------------------------ + + +alertNetworkConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network configuration information." + --#TYPE "Configuration: Network Configuration Information " + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10771 } + +alertNetworkConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Network configuration warning." + --#TYPE "Configuration: Network Configuration Warning " + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10770 } + +------------------------------------------------------------------------------ +-- IP Address Traps +-- +-- Category: Configuration/5 +-- Subcategory: IPA/38 +------------------------------------------------------------------------------ + +alertIPAddressConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "IP Address configuration information." + --#TYPE "Configuration: IP Address Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10547 } + +------------------------------------------------------------------------------ +-- Job Control Traps +-- +-- Category: Configuration/5 +-- Subcategory: JCP/3 +------------------------------------------------------------------------------ + +alertJobControlConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Job Control configuration information." + --#TYPE "Configuration: Job Control Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10267 } + +------------------------------------------------------------------------------ +-- PCI Device Traps +-- +-- Category: Configuration/5 +-- Subcategory: PCI/46 +------------------------------------------------------------------------------ + +alertPCIDeviceConfigurationInformation NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "PCI device configuration information." + --#TYPE "Configuration: PCI Device Information" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10611 } + +------------------------------------------------------------------------------ +-- Security Event Traps +-- +-- Category: Configuration/5 +-- Subcategory: SEC/42 +------------------------------------------------------------------------------ + +alertSecurityConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Security configuration warning." + --#TYPE "Configuration: Security Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10578 } + +------------------------------------------------------------------------------ +-- Software Configuration Traps +-- +-- Category: Configuration/5 +-- Subcategory: SWC/36 +------------------------------------------------------------------------------ + +alertSWCConfigurationWarning NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration warning." + --#TYPE "Configuration: Software Configuration Warning" + --#SEVERITY MINOR + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10530 } + +alertSWCConfigurationFailure NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "Software configuration failure." + --#TYPE "Configuration: Software Configuration Failure" + --#SEVERITY CRITICAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Error Events" + --#STATE DEGRADED + --#STATUS current + ::= { configurationAlertTrapGroup 0 10529 } + +------------------------------------------------------------------------------ +-- Test Trap +-- +-- Category: Configuration/5 +-- Subcategory: TST/19 +------------------------------------------------------------------------------ + +alertTestTrapEvent NOTIFICATION-TYPE + OBJECTS { alertMessageID, + alertMessage, + alertCurrentStatus, + alertSystemServiceTag, + alertSystemFQDN, + alertFQDD, + alertDeviceDisplayName, + alertMessageArguments, + alertChassisServiceTag, + alertChassisName, + alertRacFQDN } + STATUS current + DESCRIPTION + "The iDRAC generated a test trap event in response to a user request." + --#TYPE "Configuration: iDRAC Test Trap Event" + --#SEVERITY INFORMATIONAL + --#SUMMARY "Message ID: %s, Device Display Name: %s, Message: %s," + --#SUMMARY "Device Status: %d, Device FQDD: %s," + --#SUMMARY "System Service Tag: %s, System Name: %s," + --#SUMMARY "Chassis Service Tag: %s, Chassis Name: %s," + --#SUMMARY "RAC FQDN: %s" + --#ARGUMENTS {0, 6, 1, 2, 5, 3, 4, 8, 9, 10} + --#CATEGORY "Status Events" + --#STATE OPERATIONAL + --#STATUS current + ::= { configurationAlertTrapGroup 0 10395 } + +END + +------------------------------------------------------------------------------ +-- End MIB +------------------------------------------------------------------------------ + diff --git a/pandora_console/attachment/mibs/IF-MIB b/pandora_console/attachment/mibs/IF-MIB new file mode 100644 index 0000000000..a687ea65e7 --- /dev/null +++ b/pandora_console/attachment/mibs/IF-MIB @@ -0,0 +1,1594 @@ +-- ***************************************************************** +-- IF-MIB.my: Interfaces MIB +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994 - 1996 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- +-- extracted from draft-ietf-ifmib-mib-03.txt +-- major differences with RFC1573 - +-- Added InterfaceIndexOrZero textual convention. +-- Added notPresent state for ifOperStatus. +-- Added the ifAlias, ifStackLastChange and ifTableLastChange objects. +-- Corrected the MAX-ACCESS clause values for +-- ifRcvAddressAddress, ifRcvAddressStatus and ifStackStatus. +-- +-- the following modifications have been applied: +-- changed "RFC-1213" to "RFC1213-MIB" +-- added import of snmpTraps + + IF-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, + Integer32, TimeTicks, Counter64, + NOTIFICATION-TYPE FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, + PhysAddress, TruthValue, RowStatus, + AutonomousType, TestAndIncr FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + snmpTraps FROM SNMPv2-MIB + IANAifType FROM IANAifType-MIB + mib-2,interfaces FROM RFC1213-MIB; + + ifMIB MODULE-IDENTITY + LAST-UPDATED "9602221355Z" + ORGANIZATION "IETF Interfaces MIB Working Group" + CONTACT-INFO + + " Keith McCloghrie + Cisco Systems, Inc. + 170 West Tasman Drive + San Jose, CA 95134-1706 + US + + 408-526-5260 + kzm@cisco.com" + DESCRIPTION + "The MIB module to describe generic objects for + network interface sub-layers. This MIB is an updated + version of MIB-II's ifTable, and incorporates the + extensions defined in RFC 1229." + REVISION "9602282155Z" + DESCRIPTION + "Revisions made by the Interfaces MIB WG." + REVISION "9311082155Z" + DESCRIPTION + "Initial revision, published as part of RFC 1573." + ::= { mib-2 31 } + + ifMIBObjects OBJECT IDENTIFIER ::= { ifMIB 1 } + + -- OwnerString has the same semantics as used in RFC 1271 + + OwnerString ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION + "This data type is used to model an administratively + assigned name of the owner of a resource. This + information is taken from the NVT ASCII character set. + It is suggested that this name contain one or more of + the following: ASCII form of the manager station's + transport address, management station name (e.g., + domain name), network management personnel's name, + location, or phone number. In some cases the agent + itself will be the owner of an entry. In these cases, + this string shall be set to a string starting with + 'agent'." + SYNTAX OCTET STRING (SIZE(0..255)) + + + -- InterfaceIndex contains the semantics of ifIndex and + -- should be used for any objects defined on other mib + -- modules that need these semantics. + + InterfaceIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each interface + or interface sub-layer in the managed system. It is + recommended that values are assigned contiguously + starting from 1. The value for each interface sub- + layer must remain constant at least from one re- + initialization of the entity's network management + system to the next re-initialization." + SYNTAX Integer32 + + InterfaceIndexOrZero ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This textual convention is an extension of the + InterfaceIndex convention. The latter defines a + greater than zero to identify an interface or + interface sub-layer in the managed system. This + extension permits the additional value of zero. the + value zero is object-specific and must therefore be + defined as part of the description of any object which + uses this syntax. Examples of the usage of zero might + include situations where interface was unknown, or + when none or all interfaces need to be referenced." + SYNTAX Integer32 (0..2147483647) + + ifNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of network interfaces (regardless of their + current state) present on this system." + ::= { interfaces 1 } + + ifTableLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the last + creation or deletion of an entry in the ifTable. If + the number of entries has been unchanged since the + last re-initialization of the local network management + subsystem, then this object contains a zero value." + ::= { ifMIBObjects 5 } + + + -- the Interfaces table + + -- The Interfaces table contains information on the entity's + -- interfaces. Each sub-layer below the internetwork-layer + -- of a network interface is considered to be an interface. + + ifTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of entries + is given by the value of ifNumber." + ::= { interfaces 2 } + + ifEntry OBJECT-TYPE + SYNTAX IfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing management information applicable + to a particular interface." + INDEX { ifIndex } + ::= { ifTable 1 } + + IfEntry ::= + SEQUENCE { + ifIndex InterfaceIndex, + ifDescr DisplayString, + ifType IANAifType, + ifMtu Integer32, + ifSpeed Gauge32, + ifPhysAddress PhysAddress, + ifAdminStatus INTEGER, + ifOperStatus INTEGER, + ifLastChange TimeTicks, + ifInOctets Counter32, + ifInUcastPkts Counter32, + ifInNUcastPkts Counter32, -- deprecated + ifInDiscards Counter32, + ifInErrors Counter32, + ifInUnknownProtos Counter32, + ifOutOctets Counter32, + ifOutUcastPkts Counter32, + ifOutNUcastPkts Counter32, -- deprecated + ifOutDiscards Counter32, + ifOutErrors Counter32, + ifOutQLen Gauge32, -- deprecated + ifSpecific OBJECT IDENTIFIER -- deprecated + } + + + ifIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each + interface. It is recommended that values are assigned + contiguously starting from 1. The value for each + interface sub-layer must remain constant at least from + one re-initialization of the entity's network + management system to the next re-initialization." + ::= { ifEntry 1 } + + ifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of the + manufacturer, the product name and the version of the + interface hardware/software." + ::= { ifEntry 2 } + + ifType OBJECT-TYPE + SYNTAX IANAifType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of interface. Additional values for ifType + are assigned by the Internet Assigned Numbers + Authority (IANA), through updating the syntax of the + IANAifType textual convention." + ::= { ifEntry 3 } + + ifMtu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the largest packet which can be + sent/received on the interface, specified in octets. + For interfaces that are used for transmitting network + datagrams, this is the size of the largest network + datagram that can be sent on the interface." + ::= { ifEntry 4 } + + ifSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the interface's current bandwidth in + bits per second. For interfaces which do not vary in + bandwidth or for those where no accurate estimation + can be made, this object should contain the nominal + bandwidth. If the bandwidth of the interface is + greater than the maximum value reportable by this + object then this object should report its maximum + value (4,294,967,295) and ifHighSpeed must be used to + report the interace's speed. For a sub-layer which + has no concept of bandwidth, this object should be + zero." + ::= { ifEntry 5 } + + ifPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface's address at its protocol sub-layer. + The interface's media-specific MIB must define the bit + and byte ordering and format of the value contained by + this object. For interfaces which do not have such an + address (e.g., a serial line), this object should + contain an octet string of zero length." + ::= { ifEntry 6 } + + ifAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired state of the interface. The testing(3) + state indicates that no operational packets can be + passed. When a managed system initializes, all + interfaces start with ifAdminStatus in the down(2) + state. As a result of either explicit management + action or per configuration information retained by + the managed system, ifAdminStatus is then changed to + either the up(1) or testing(3) states (or remains in + the down(2) state)." + ::= { ifEntry 7 } + + ifOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3), -- in some test mode + unknown(4), -- status can not be determined + -- for some reason. + dormant(5), + notPresent(6) -- some component is missing + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the interface. The + testing(3) state indicates that no operational packets + can be passed. If ifAdminStatus is down(2) then + ifOperStatus should be down(2). If ifAdminStatus is + changed to up(1) then ifOperStatus should change to + up(1) if the interface is ready to transmit and + receive network traffic; it should change to + dormant(5) if the interface is waiting for external + actions (such as a serial line waiting for an + incoming connection); it should remain in the down(2) + state if and only if there is a fault that prevents if + from going to the up(1) state; it should remain in the + notPresent(6) state if the interface has missing + (typically, hardware) components." + ::= { ifEntry 8 } + + ifLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the interface + entered its current operational state. If the current + state was entered prior to the last re-initialization + of the local network management subsystem, then this + object contains a zero value." + ::= { ifEntry 9 } + + ifInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the interface, + including framing characters." + ::= { ifEntry 10 } + + ifInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer." + ::= { ifEntry 11 } + + ifInNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast or broadcast address at this sub-layer. + This object is deprecated in favor of + ifInMulticastPkts and ifInBroadcastPkts." + ::= { ifEntry 12 } + + ifInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen to be + discarded even though no errors had been detected to + prevent their being deliverable to a higher-layer + protocol. One possible reason for discarding such a + packet could be to free up buffer space." + ::= { ifEntry 13 } + + ifInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of inbound + packets that contained errors preventing them from + being deliverable to a higher-layer protocol. For + character-oriented or fixed-length interfaces, the + number of inbound transmission units that contained + errors preventing them from being deliverable to a + higher-layer protocol." + ::= { ifEntry 14 } + + ifInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of packets + received via the interface which were discarded + because of an unknown or unsupported protocol. For + character-oriented or fixed-length interfaces which + support protocol multiplexing the number of + transmission units received via the interface which + were discarded because of an unknown or unsupported + protocol. For any interface which does not support + protocol multiplexing, this counter will always be 0." + ::= { ifEntry 15 } + + ifOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters." + ::= { ifEntry 16 } + + ifOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent." + ::= { ifEntry 17 } + + ifOutNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent. + + This object is deprecated in favour of + ifOutMulticastPkts and ifOutBroadcastPkts." + ::= { ifEntry 18 } + + ifOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen to + be discarded even though no errors had been detected + to prevent their being transmitted. One possible + reason for discarding such a packet could be to free + up buffer space." + ::= { ifEntry 19 } + + ifOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of + outbound packets that could not be transmitted because + of errors. For character-oriented or fixed-length + interfaces, the number of outbound transmission units + that could not be transmitted because of errors." + ::= { ifEntry 20 } + + ifOutQLen OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The length of the output packet queue (in packets)." + ::= { ifEntry 21 } + + ifSpecific OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A reference to MIB definitions specific to the + particular media being used to realize the interface. + It is recommended that this value point to an instance + of a MIB object in the media-specific MIB, i.e., that + this object have the semantics associated with the + InstancePointer textual convention defined in RFC + 1443. In fact, it is recommended that the media- + specific MIB specify what value ifSpecific should/can + take for values of ifType. If no MIB definitions + specific to the particular media are available, the + value should be set to the OBJECT IDENTIFIER { 0 0 }." + ::= { ifEntry 22 } + + + -- + -- Extension to the interface table + -- + -- This table replaces the ifExtnsTable table. + -- + + ifXTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfXEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of entries + is given by the value of ifNumber. This table + contains additional objects for the interface table." + ::= { ifMIBObjects 1 } + + ifXEntry OBJECT-TYPE + SYNTAX IfXEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing additional management information + applicable to a particular interface." + AUGMENTS { ifEntry } + ::= { ifXTable 1 } + + IfXEntry ::= + SEQUENCE { + ifName DisplayString, + ifInMulticastPkts Counter32, + ifInBroadcastPkts Counter32, + ifOutMulticastPkts Counter32, + ifOutBroadcastPkts Counter32, + ifHCInOctets Counter64, + ifHCInUcastPkts Counter64, + ifHCInMulticastPkts Counter64, + ifHCInBroadcastPkts Counter64, + ifHCOutOctets Counter64, + ifHCOutUcastPkts Counter64, + ifHCOutMulticastPkts Counter64, + ifHCOutBroadcastPkts Counter64, + ifLinkUpDownTrapEnable INTEGER, + ifHighSpeed Gauge32, + ifPromiscuousMode TruthValue, + ifConnectorPresent TruthValue, + ifAlias DisplayString + } + + + ifName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The textual name of the interface. The value of this + object should be the name of the interface as assigned + by the local device and should be suitable for use in + commands entered at the device's `console'. This + might be a text name, such as `le0' or a simple port + number, such as `1', depending on the interface naming + syntax of the device. If several entries in the + ifTable together represent a single interface as named + by the device, then each will have the same value of + ifName. If there is no local name, or this object is + otherwise not applicable, then this object contains a + 0-length string." + ::= { ifXEntry 1 } + + ifInMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses." + ::= { ifXEntry 2 } + + ifInBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer." + ::= { ifXEntry 3 } + + ifOutMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses." + ::= { ifXEntry 4 } + + ifOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent." + ::= { ifXEntry 5 } + + -- + -- High Capacity Counter objects. These objects are all + + -- 64 bit versions of the "basic" ifTable counters. These + -- objects all have the same basic semantics as their 32-bit + -- counterparts, however, their syntax has been extended + -- to 64 bits. + -- + + ifHCInOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the interface, + including framing characters. This object is a 64-bit + version of ifInOctets." + ::= { ifXEntry 6 } + + ifHCInUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were not addressed to a + multicast or broadcast address at this sub-layer. + This object is a 64-bit version of ifInUcastPkts." + ::= { ifXEntry 7 } + + ifHCInMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + multicast address at this sub-layer. For a MAC layer + protocol, this includes both Group and Functional + addresses. This object is a 64-bit version of + ifInMulticastPkts." + ::= { ifXEntry 8 } + + ifHCInBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to + a higher (sub-)layer, which were addressed to a + broadcast address at this sub-layer. This object is a + 64-bit version of ifInBroadcastPkts." + ::= { ifXEntry 9 } + + ifHCOutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. This object + is a 64-bit version of ifOutOctets." + ::= { ifXEntry 10 } + + ifHCOutUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were not + addressed to a multicast or broadcast address at this + sub-layer, including those that were discarded or not + sent. This object is a 64-bit version of + ifOutUcastPkts." + ::= { ifXEntry 11 } + + ifHCOutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a multicast address at this sub-layer, + including those that were discarded or not sent. For + a MAC layer protocol, this includes both Group and + Functional addresses. This object is a 64-bit version + of ifOutMulticastPkts." + ::= { ifXEntry 12 } + + ifHCOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted, and which were + addressed to a broadcast address at this sub-layer, + including those that were discarded or not sent. This + object is a 64-bit version of ifOutBroadcastPkts." + ::= { ifXEntry 13 } + + ifLinkUpDownTrapEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether linkUp/linkDown traps should be + generated for this interface. + + By default, this object should have the value + enabled(1) for interfaces which do not operate on + 'top' of any other interface (as defined in the + ifStackTable), and disabled(2) otherwise." + ::= { ifXEntry 14 } + + ifHighSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the interface's current bandwidth in + units of 1,000,000 bits per second. If this object + reports a value of `n' then the speed of the interface + is somewhere in the range of `n-500,000' to + `n+499,999'. For interfaces which do not vary in + bandwidth or for those where no accurate estimation + can be made, this object should contain the nominal + bandwidth. For a sub-layer which has no concept of + bandwidth, this object should be zero." + ::= { ifXEntry 15 } + + ifPromiscuousMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object has a value of false(2) if this interface + only accepts packets/frames that are addressed to this + station. This object has a value of true(1) when the + station accepts all packets/frames transmitted on the + media. The value true(1) is only legal on certain + types of media. If legal, setting this object to a + value of true(1) may require the interface to be reset + before becoming effective. + + The value of ifPromiscuousMode does not affect the + reception of broadcast and multicast packets/frames by + the interface." + ::= { ifXEntry 16 } + + ifConnectorPresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object has the value 'true(1)' if the interface + sublayer has a physical connector and the value + 'false(2)' otherwise." + ::= { ifXEntry 17 } + + ifAlias OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is an 'alias' name for the interface as + specified by a network manager, and provides a non- + volatile 'handle' for the interface. + + On the first instantiation of an interface, the value + of ifAlias associated with that interface is the + zero-length string. As and when a value is written + into an instance of ifAlias through a network + management set operation, then the agent must retain + the supplied value in the ifAlias instance associated + with the same interface for as long as that interface + remains instantiated, including across all re- + initializations/reboots of the network management + system, including those which result in a change of + the interface's ifIndex value. + + An example of the value which a network manager might + store in this object for a WAN interface is the + (Telco's) circuit number/identifier of the interface. + + Some agents may support write-access only for + interfaces having particular values of ifType. An + agent which supports write access to this object is + required to keep the value in non-volatile storage, + but it may limit the length of new values depending on + how much storage is already occupied by the current + values for other interfaces." + ::= { ifXEntry 18 } + + + -- The Interface Stack Group + -- + -- Implementation of this group is mandatory for all systems + -- + + ifStackTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfStackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information on the relationships + between the multiple sub-layers of network interfaces. + In particular, it contains information on which sub- + layers run 'on top of' which other sub-layers. Each + sub-layer corresponds to a conceptual row in the + ifTable." + ::= { ifMIBObjects 2 } + + + ifStackEntry OBJECT-TYPE + SYNTAX IfStackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information on a particular relationship between two + sub-layers, specifying that one sub-layer runs on + 'top' of the other sub-layer. Each sub-layer + corresponds to a conceptual row in the ifTable." + INDEX { ifStackHigherLayer, ifStackLowerLayer } + ::= { ifStackTable 1 } + + + IfStackEntry ::= + SEQUENCE { + ifStackHigherLayer Integer32, + ifStackLowerLayer Integer32, + ifStackStatus RowStatus + } + + + ifStackHigherLayer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of ifIndex corresponding to the higher + sub-layer of the relationship, i.e., the sub-layer + which runs on 'top' of the sub-layer identified by the + corresponding instance of ifStackLowerLayer. If there + is no higher sub-layer (below the internetwork layer), + then this object has the value 0." + ::= { ifStackEntry 1 } + + + ifStackLowerLayer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of ifIndex corresponding to the lower sub- + layer of the relationship, i.e., the sub-layer which + runs 'below' the sub-layer identified by the + corresponding instance of ifStackHigherLayer. If + there is no lower sub-layer, then this object has the + value 0." + ::= { ifStackEntry 2 } + + + ifStackStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the relationship between two sub- + layers. + + Changing the value of this object from 'active' to + 'notInService' or 'destroy' will likely have + consequences up and down the interface stack. Thus, + write access to this object is likely to be + inappropriate for some types of interfaces, and many + implementations will choose not to support write- + access for any type of interface." + ::= { ifStackEntry 3 } + +ifStackLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the last change + of the (whole) interface stack. A change of the + interface stack is defined to be any creation, + deletion, or change in value of any instance of + ifStackStatus. If the interface stack has been + unchanged since the last re-initialization of the + local network management subsystem, then this object + contains a zero value." + ::= { ifMIBObjects 6 } + + + -- + -- The Interface Test Table + -- + -- This group of objects is optional. However, a media-specific + -- MIB may make implementation of this group mandatory. + -- + -- This table replaces the ifExtnsTestTable + -- + + ifTestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfTestEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "This table contains one entry per interface. It + defines objects which allow a network manager to + instruct an agent to test an interface for various + faults. Tests for an interface are defined in the + media-specific MIB for that interface. After invoking + a test, the object ifTestResult can be read to + determine the outcome. If an agent can not perform + the test, ifTestResult is set to so indicate. The + object ifTestCode can be used to provide further + test-specific or interface-specific (or even + enterprise-specific) information concerning the + outcome of the test. Only one test can be in progress + on each interface at any one time. If one test is in + progress when another test is invoked, the second test + is rejected. Some agents may reject a test when a + prior test is active on another interface. + Before starting a test, a manager-station must first + obtain 'ownership' of the entry in the ifTestTable for + the interface to be tested. This is accomplished with + the ifTestId and ifTestStatus objects as follows: + + try_again: + get (ifTestId, ifTestStatus) + while (ifTestStatus != notInUse) + /* + * Loop while a test is running or some other + * manager is configuring a test. + */ + short delay + get (ifTestId, ifTestStatus) + } + + /* + * Is not being used right now -- let's compete + * to see who gets it. + */ + lock_value = ifTestId + + if ( set(ifTestId = lock_value, ifTestStatus = inUse, + ifTestOwner = 'my-IP-address') == FAILURE) + /* + * Another manager got the ifTestEntry -- go + * try again + */ + goto try_again; + + /* + * I have the lock + */ + set up any test parameters. + + /* + * This starts the test + */ + set(ifTestType = test_to_run); + + wait for test completion by polling ifTestResult + + when test completes, agent sets ifTestResult + agent also sets ifTestStatus = 'notInUse' + + retrieve any additional test results, and ifTestId + + if (ifTestId == lock_value+1) results are valid + + A manager station first retrieves the value of the + appropriate ifTestId and ifTestStatus objects, + periodically repeating the retrieval if necessary, + until the value of ifTestStatus is 'notInUse'. The + manager station then tries to set the same ifTestId + object to the value it just retrieved, the same + ifTestStatus object to 'inUse', and the corresponding + ifTestOwner object to a value indicating itself. If + the set operation succeeds then the manager has + obtained ownership of the ifTestEntry, and the value of + the ifTestId object is incremented by the agent (per + the semantics of TestAndIncr). Failure of the set + operation indicates that some other manager has + obtained ownership of the ifTestEntry. + + Once ownership is obtained, any test parameters can be + setup, and then the test is initiated by setting + ifTestType. On completion of the test, the agent sets + ifTestStatus to 'notInUse'. Once this occurs, the + manager can retrieve the results. In the (rare) event + that the invocation of tests by two network managers + were to overlap, then there would be a possibility that + the first test's results might be overwritten by the + second test's results prior to the first results being + read. This unlikely circumstance can be detected by a + network manager retrieving ifTestId at the same time as + retrieving the test results, and ensuring that the + results are for the desired request. + + If ifTestType is not set within an abnormally long + period of time after ownership is obtained, the agent + should time-out the manager, and reset the value of the + ifTestStatus object back to 'notInUse'. It is + suggested that this time-out period be 5 minutes. + + In general, a management station must not retransmit a + request to invoke a test for which it does not receive + a response; instead, it properly inspects an agent's + MIB to determine if the invocation was successful. + Only if the invocation was unsuccessful, is the + invocation request retransmitted. + + Some tests may require the interface to be taken off- + line in order to execute them, or may even require the + agent to reboot after completion of the test. In these + circumstances, communication with the management + station invoking the test may be lost until after + completion of the test. An agent is not required to + support such tests. However, if such tests are + supported, then the agent should make every effort to + transmit a response to the request which invoked the + test prior to losing communication. When the agent is + restored to normal service, the results of the test are + properly made available in the appropriate objects. + Note that this requires that the ifIndex value assigned + to an interface must be unchanged even if the test + causes a reboot. An agent must reject any test for + which it cannot, perhaps due to resource constraints, + make available at least the minimum amount of + information after that test completes." + ::= { ifMIBObjects 3 } + + ifTestEntry OBJECT-TYPE + SYNTAX IfTestEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "An entry containing objects for invoking tests on an + interface." + AUGMENTS { ifEntry } + ::= { ifTestTable 1 } + + IfTestEntry ::= + SEQUENCE { + ifTestId TestAndIncr, + ifTestStatus INTEGER, + ifTestType AutonomousType, + ifTestResult INTEGER, + ifTestCode OBJECT IDENTIFIER, + ifTestOwner OwnerString + } + + ifTestId OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object identifies the current invocation of the + interface's test." + ::= { ifTestEntry 1 } + + ifTestStatus OBJECT-TYPE + SYNTAX INTEGER { notInUse(1), inUse(2) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object indicates whether or not some manager + currently has the necessary 'ownership' required to + invoke a test on this interface. A write to this + object is only successful when it changes its value + from 'notInUse(1)' to 'inUse(2)'. After completion of + a test, the agent resets the value back to + 'notInUse(1)'." + ::= { ifTestEntry 2 } + + ifTestType OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "A control variable used to start and stop operator- + initiated interface tests. Most OBJECT IDENTIFIER + values assigned to tests are defined elsewhere, in + association with specific types of interface. + However, this document assigns a value for a full- + duplex loopback test, and defines the special meanings + of the subject identifier: + + noTest OBJECT IDENTIFIER ::= { 0 0 } + + When the value noTest is written to this object, no + action is taken unless a test is in progress, in which + case the test is aborted. Writing any other value to + this object is only valid when no test is currently in + progress, in which case the indicated test is + initiated. + + When read, this object always returns the most recent + value that ifTestType was set to. If it has not been + set since the last initialization of the network + management subsystem on the agent, a value of noTest + is returned." + ::= { ifTestEntry 3 } + + ifTestResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- no test yet requested + success(2), + inProgress(3), + notSupported(4), + unAbleToRun(5), -- due to state of system + aborted(6), + failed(7) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "This object contains the result of the most recently + requested test, or the value none(1) if no tests have + been requested since the last reset. Note that this + facility provides no provision for saving the results + of one test when starting another, as could be + required if used by multiple managers concurrently." + ::= { ifTestEntry 4 } + + ifTestCode OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "This object contains a code which contains more + specific information on the test result, for example + an error-code after a failed test. Error codes and + other values this object may take are specific to the + type of interface and/or test. The value may have the + semantics of either the AutonomousType or + InstancePointer textual conventions as defined in RFC + 1443. The identifier: + + testCodeUnknown OBJECT IDENTIFIER ::= { 0 0 } + + is defined for use if no additional result code is + available." + ::= { ifTestEntry 5 } + + ifTestOwner OBJECT-TYPE + SYNTAX OwnerString + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "The entity which currently has the 'ownership' + required to invoke a test on this interface." + ::= { ifTestEntry 6 } + + + -- Generic Receive Address Table + -- + -- This group of objects is mandatory for all types of + -- interfaces which can receive packets/frames addressed to + -- more than one address. + -- + -- This table replaces the ifExtnsRcvAddr table. The main + -- difference is that this table makes use of the RowStatus + -- textual convention, while ifExtnsRcvAddr did not. + + ifRcvAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfRcvAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each address + (broadcast, multicast, or uni-cast) for which the + system will receive packets/frames on a particular + interface, except as follows: + + - for an interface operating in promiscuous mode, + entries are only required for those addresses for + which the system would receive frames were it not + operating in promiscuous mode. + + - for 802.5 functional addresses, only one entry is + required, for the address which has the functional + address bit ANDed with the bit mask of all functional + addresses for which the interface will accept frames." + ::= { ifMIBObjects 4 } + + ifRcvAddressEntry OBJECT-TYPE + SYNTAX IfRcvAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects identifying an address for which + the system will accept packets/frames on the + particular interface identified by the index value + ifIndex." + INDEX { ifIndex, ifRcvAddressAddress } + ::= { ifRcvAddressTable 1 } + + IfRcvAddressEntry ::= + SEQUENCE { + ifRcvAddressAddress PhysAddress, + ifRcvAddressStatus RowStatus, + ifRcvAddressType INTEGER + } + + ifRcvAddressAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An address for which the system will accept + packets/frames on this entry's interface." + ::= { ifRcvAddressEntry 1 } + + ifRcvAddressStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create and delete rows in the + ifRcvAddressTable." + + ::= { ifRcvAddressEntry 2 } + + ifRcvAddressType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + volatile(2), + nonVolatile(3) + } + + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object has the value nonVolatile(3) for those + entries in the table which are valid and will not be + deleted by the next restart of the managed system. + Entries having the value volatile(2) are valid and + exist, but have not been saved, so that will not exist + after the next restart of the managed system. Entries + having the value other(1) are valid and exist but are + not classified as to whether they will continue to + exist after the next restart." + + DEFVAL { volatile } + + ::= { ifRcvAddressEntry 3 } + + + -- definition of interface-related traps. + + linkDown NOTIFICATION-TYPE + OBJECTS { ifIndex, ifAdminStatus, ifOperStatus } + STATUS current + DESCRIPTION + "A linkDown trap signifies that the SNMPv2 entity, + acting in an agent role, has detected that the + ifOperStatus object for one of its communication links + is about to transition into the down state." + ::= { snmpTraps 3 } + + linkUp NOTIFICATION-TYPE + OBJECTS { ifIndex, ifAdminStatus, ifOperStatus } + STATUS current + DESCRIPTION + "A linkUp trap signifies that the SNMPv2 entity, + acting in an agent role, has detected that the + ifOperStatus object for one of its communication links + has transitioned out of the down state." + ::= { snmpTraps 4 } + + + -- conformance information + + ifConformance OBJECT IDENTIFIER ::= { ifMIB 2 } + + ifGroups OBJECT IDENTIFIER ::= { ifConformance 1 } + ifCompliances OBJECT IDENTIFIER ::= { ifConformance 2 } + + + -- compliance statements + + ifCompliance2 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + have network interfaces." + + MODULE -- this module + MANDATORY-GROUPS { ifGeneralInformationGroup, ifStackGroup2 } + + GROUP ifFixedLengthGroup + DESCRIPTION + "This group is mandatory for all network interfaces + which are character-oriented or transmit data in + fixed-length transmission units." + + GROUP ifHCFixedLengthGroup + DESCRIPTION + "This group is mandatory only for those network + interfaces which are character-oriented or transmit + data in fixed-length transmission units, and for which + the value of the corresponding instance of ifSpeed is + greater than 20,000,000 bits/second." + + GROUP ifPacketGroup + DESCRIPTION + "This group is mandatory for all network interfaces + which are packet-oriented." + + GROUP ifHCPacketGroup + DESCRIPTION + "This group is mandatory only for those network + interfaces which are packet-oriented and for which the + value of the corresponding instance of ifSpeed is + greater than 650,000,000 bits/second." + + GROUP ifRcvAddressGroup + DESCRIPTION + "The applicability of this group MUST be defined by + the media-specific MIBs. Media-specific MIBs must + define the exact meaning, use, and semantics of the + addresses in this group." + + OBJECT ifLinkUpDownTrapEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifPromiscuousMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifStackStatus + SYNTAX INTEGER { active(1) } -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one of the six + enumerated values for the RowStatus textual convention + need be supported, specifically: active(1)." + + OBJECT ifAdminStatus + SYNTAX INTEGER { up(1), down(2) } + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, nor is support for the + value testing(3)." + + OBJECT ifAlias + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + ::= { ifCompliances 2 } + + ifCompliance MODULE-COMPLIANCE + STATUS obsolete + DESCRIPTION + "The compliance statement for SNMPv2 entities which + have network interfaces." + + MODULE -- this module + MANDATORY-GROUPS { ifGeneralGroup, ifStackGroup } + + GROUP ifFixedLengthGroup + DESCRIPTION + "This group is mandatory for all network interfaces + which are character-oriented or transmit data in + fixed-length transmission units." + + GROUP ifHCFixedLengthGroup + DESCRIPTION + "This group is mandatory only for those network + interfaces which are character-oriented or transmit + data in fixed-length transmission units, and for which + the value of the corresponding instance of ifSpeed is + greater than 20,000,000 bits/second." + + GROUP ifPacketGroup + DESCRIPTION + "This group is mandatory for all network interfaces + which are packet-oriented." + + GROUP ifHCPacketGroup + DESCRIPTION + "This group is mandatory only for those network + interfaces which are packet-oriented and for which the + value of the corresponding instance of ifSpeed is + greater than 650,000,000 bits/second." + GROUP ifTestGroup + DESCRIPTION + "This group is optional. Media-specific MIBs which + require interface tests are strongly encouraged to use + this group for invoking tests and reporting results. + A medium specific MIB which has mandatory tests may + make implementation of this group mandatory." + + GROUP ifRcvAddressGroup + DESCRIPTION + "The applicability of this group MUST be defined by + the media-specific MIBs. Media-specific MIBs must + define the exact meaning, use, and semantics of the + addresses in this group." + + OBJECT ifLinkUpDownTrapEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifPromiscuousMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifStackStatus + SYNTAX INTEGER { active(1) } -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one of the six + enumerated values for the RowStatus textual convention + need be supported, specifically: active(1)." + + OBJECT ifAdminStatus + SYNTAX INTEGER { up(1), down(2) } + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, nor is support for the + value testing(3)." + ::= { ifCompliances 1 } + + + -- units of conformance + + ifGeneralInformationGroup OBJECT-GROUP + OBJECTS { ifIndex, ifDescr, ifType, ifSpeed, ifPhysAddress, + ifAdminStatus, ifOperStatus, ifLastChange, + ifLinkUpDownTrapEnable, ifConnectorPresent, + ifHighSpeed, ifName, ifNumber, ifAlias, + ifTableLastChange } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to all network interfaces." + ::= { ifGroups 10 } + + ifGeneralGroup OBJECT-GROUP + OBJECTS { ifDescr, ifType, ifSpeed, ifPhysAddress, + ifAdminStatus, ifOperStatus, ifLastChange, + ifLinkUpDownTrapEnable, ifConnectorPresent, + ifHighSpeed, ifName } + STATUS obsolete + DESCRIPTION + "A collection of objects providing information + applicable to all network interfaces." + ::= { ifGroups 1 } + + -- the following five groups are mutually exclusive; at most + -- one of these groups is implemented for any interface + + ifFixedLengthGroup OBJECT-GROUP + OBJECTS { ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to non-high speed, character-oriented or + fixed-length-transmission network interfaces. (Non- + high speed interfaces transmit and receive at speeds + less than or equal to 20,000,000 bits/second.)" + ::= { ifGroups 2 } + + ifHCFixedLengthGroup OBJECT-GROUP + OBJECTS { ifHCInOctets, ifHCOutOctets, + ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to high speed (greater than 20,000,000 + bits/second) character-oriented or fixed-length- + transmission network interfaces." + ::= { ifGroups 3 } + + ifPacketGroup OBJECT-GROUP + OBJECTS { ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors, + ifMtu, ifInUcastPkts, ifInMulticastPkts, + ifInBroadcastPkts, ifInDiscards, + ifOutUcastPkts, ifOutMulticastPkts, + ifOutBroadcastPkts, ifOutDiscards, + ifPromiscuousMode } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to non-high speed, packet-oriented network + interfaces. (Non-high speed interfaces transmit and + receive at speeds less than or equal to 20,000,000 + bits/second.)" + ::= { ifGroups 4 } + + ifHCPacketGroup OBJECT-GROUP + OBJECTS { ifHCInOctets, ifHCOutOctets, + ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors, + ifMtu, ifInUcastPkts, ifInMulticastPkts, + ifInBroadcastPkts, ifInDiscards, + ifOutUcastPkts, ifOutMulticastPkts, + ifOutBroadcastPkts, ifOutDiscards, + ifPromiscuousMode } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to high speed (greater than 20,000,000 + bits/second but less than or equal to 650,000,000 + bits/second) packet-oriented network interfaces." + ::= { ifGroups 5 } + + ifVHCPacketGroup OBJECT-GROUP + OBJECTS { ifHCInUcastPkts, ifHCInMulticastPkts, + ifHCInBroadcastPkts, ifHCOutUcastPkts, + ifHCOutMulticastPkts, ifHCOutBroadcastPkts, + ifHCInOctets, ifHCOutOctets, + ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors, + ifMtu, ifInUcastPkts, ifInMulticastPkts, + ifInBroadcastPkts, ifInDiscards, + ifOutUcastPkts, ifOutMulticastPkts, + ifOutBroadcastPkts, ifOutDiscards, + ifPromiscuousMode } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to higher speed (greater than 650,000,000 + bits/second) packet-oriented network interfaces." + ::= { ifGroups 6 } + + ifRcvAddressGroup OBJECT-GROUP + OBJECTS { ifRcvAddressStatus, ifRcvAddressType } + STATUS current + DESCRIPTION + "A collection of objects providing information on the + multiple addresses which an interface receives." + ::= { ifGroups 7 } + + ifTestGroup OBJECT-GROUP + OBJECTS { ifTestId, ifTestStatus, ifTestType, + ifTestResult, ifTestCode, ifTestOwner } + STATUS obsolete + DESCRIPTION + "A collection of objects providing the ability to + invoke tests on an interface." + ::= { ifGroups 8 } + + ifStackGroup OBJECT-GROUP + OBJECTS { ifStackStatus } + STATUS obsolete + DESCRIPTION + "A collection of objects providing information on the + layering of MIB-II interfaces." + ::= { ifGroups 9 } + + ifStackGroup2 OBJECT-GROUP + OBJECTS { ifStackStatus, ifStackLastChange } + STATUS current + DESCRIPTION + "A collection of objects providing information on the + layering of MIB-II interfaces." + ::= { ifGroups 11 } + +ifOldObjectsGroup OBJECT-GROUP + OBJECTS { ifInNUcastPkts, ifOutNUcastPkts, + ifOutQLen, ifSpecific } + STATUS obsolete + DESCRIPTION + "The collection of objects deprecated from the + original MIB-II interfaces group." + ::= { ifGroups 12 } + + + + END diff --git a/pandora_console/attachment/mibs/IF-MIB.txt b/pandora_console/attachment/mibs/IF-MIB.txt new file mode 100644 index 0000000000..4ac89d1bd6 --- /dev/null +++ b/pandora_console/attachment/mibs/IF-MIB.txt @@ -0,0 +1,1828 @@ +IF-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, Counter64, + Integer32, TimeTicks, mib-2, + NOTIFICATION-TYPE FROM SNMPv2-SMI + TEXTUAL-CONVENTION, DisplayString, + PhysAddress, TruthValue, RowStatus, + TimeStamp, AutonomousType, TestAndIncr FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, + NOTIFICATION-GROUP FROM SNMPv2-CONF + snmpTraps FROM SNMPv2-MIB + IANAifType FROM IANAifType-MIB; + + +ifMIB MODULE-IDENTITY + LAST-UPDATED "200006140000Z" + ORGANIZATION "IETF Interfaces MIB Working Group" + CONTACT-INFO + " Keith McCloghrie + Cisco Systems, Inc. + 170 West Tasman Drive + San Jose, CA 95134-1706 + US + + 408-526-5260 + kzm@cisco.com" + DESCRIPTION + "The MIB module to describe generic objects for network + interface sub-layers. This MIB is an updated version of + MIB-II's ifTable, and incorporates the extensions defined in + RFC 1229." + REVISION "200006140000Z" + DESCRIPTION + "Clarifications agreed upon by the Interfaces MIB WG, and + published as RFC 2863." + REVISION "199602282155Z" + DESCRIPTION + "Revisions made by the Interfaces MIB WG, and published in + RFC 2233." + REVISION "199311082155Z" + DESCRIPTION + "Initial revision, published as part of RFC 1573." + ::= { mib-2 31 } + + +ifMIBObjects OBJECT IDENTIFIER ::= { ifMIB 1 } + +interfaces OBJECT IDENTIFIER ::= { mib-2 2 } + +-- +-- Textual Conventions +-- + + +-- OwnerString has the same semantics as used in RFC 1271 + +OwnerString ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS deprecated + DESCRIPTION + "This data type is used to model an administratively + assigned name of the owner of a resource. This information + is taken from the NVT ASCII character set. It is suggested + that this name contain one or more of the following: ASCII + form of the manager station's transport address, management + station name (e.g., domain name), network management + personnel's name, location, or phone number. In some cases + the agent itself will be the owner of an entry. In these + cases, this string shall be set to a string starting with + 'agent'." + SYNTAX OCTET STRING (SIZE(0..255)) + +-- InterfaceIndex contains the semantics of ifIndex and should be used +-- for any objects defined in other MIB modules that need these semantics. + +InterfaceIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each interface or + interface sub-layer in the managed system. It is + recommended that values are assigned contiguously starting + from 1. The value for each interface sub-layer must remain + constant at least from one re-initialization of the entity's + network management system to the next re-initialization." + SYNTAX Integer32 (1..2147483647) + +InterfaceIndexOrZero ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This textual convention is an extension of the + InterfaceIndex convention. The latter defines a greater + than zero value used to identify an interface or interface + sub-layer in the managed system. This extension permits the + additional value of zero. the value zero is object-specific + and must therefore be defined as part of the description of + any object which uses this syntax. Examples of the usage of + zero might include situations where interface was unknown, + or when none or all interfaces need to be referenced." + SYNTAX Integer32 (0..2147483647) + +ifNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of network interfaces (regardless of their + current state) present on this system." + ::= { interfaces 1 } + +ifTableLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the last creation or + deletion of an entry in the ifTable. If the number of + entries has been unchanged since the last re-initialization + of the local network management subsystem, then this object + contains a zero value." + ::= { ifMIBObjects 5 } + + +-- the Interfaces table + +-- The Interfaces table contains information on the entity's +-- interfaces. Each sub-layer below the internetwork-layer +-- of a network interface is considered to be an interface. + +ifTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of entries is + given by the value of ifNumber." + ::= { interfaces 2 } + +ifEntry OBJECT-TYPE + SYNTAX IfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing management information applicable to a + particular interface." + INDEX { ifIndex } + ::= { ifTable 1 } + +IfEntry ::= + SEQUENCE { + ifIndex InterfaceIndex, + ifDescr DisplayString, + ifType IANAifType, + ifMtu Integer32, + ifSpeed Gauge32, + ifPhysAddress PhysAddress, + ifAdminStatus INTEGER, + ifOperStatus INTEGER, + ifLastChange TimeTicks, + ifInOctets Counter32, + ifInUcastPkts Counter32, + ifInNUcastPkts Counter32, -- deprecated + ifInDiscards Counter32, + ifInErrors Counter32, + ifInUnknownProtos Counter32, + ifOutOctets Counter32, + ifOutUcastPkts Counter32, + ifOutNUcastPkts Counter32, -- deprecated + ifOutDiscards Counter32, + ifOutErrors Counter32, + ifOutQLen Gauge32, -- deprecated + ifSpecific OBJECT IDENTIFIER -- deprecated + } + +ifIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value, greater than zero, for each interface. It + is recommended that values are assigned contiguously + starting from 1. The value for each interface sub-layer + must remain constant at least from one re-initialization of + the entity's network management system to the next re- + initialization." + ::= { ifEntry 1 } + +ifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of the + manufacturer, the product name and the version of the + interface hardware/software." + ::= { ifEntry 2 } + +ifType OBJECT-TYPE + SYNTAX IANAifType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of interface. Additional values for ifType are + assigned by the Internet Assigned Numbers Authority (IANA), + through updating the syntax of the IANAifType textual + convention." + ::= { ifEntry 3 } + +ifMtu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the largest packet which can be sent/received + on the interface, specified in octets. For interfaces that + are used for transmitting network datagrams, this is the + size of the largest network datagram that can be sent on the + interface." + ::= { ifEntry 4 } + +ifSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the interface's current bandwidth in bits + per second. For interfaces which do not vary in bandwidth + or for those where no accurate estimation can be made, this + object should contain the nominal bandwidth. If the + bandwidth of the interface is greater than the maximum value + reportable by this object then this object should report its + maximum value (4,294,967,295) and ifHighSpeed must be used + to report the interace's speed. For a sub-layer which has + no concept of bandwidth, this object should be zero." + ::= { ifEntry 5 } + +ifPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface's address at its protocol sub-layer. For + example, for an 802.x interface, this object normally + contains a MAC address. The interface's media-specific MIB + must define the bit and byte ordering and the format of the + value of this object. For interfaces which do not have such + an address (e.g., a serial line), this object should contain + an octet string of zero length." + ::= { ifEntry 6 } + +ifAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired state of the interface. The testing(3) state + indicates that no operational packets can be passed. When a + managed system initializes, all interfaces start with + ifAdminStatus in the down(2) state. As a result of either + explicit management action or per configuration information + retained by the managed system, ifAdminStatus is then + changed to either the up(1) or testing(3) states (or remains + in the down(2) state)." + ::= { ifEntry 7 } + +ifOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3), -- in some test mode + unknown(4), -- status can not be determined + -- for some reason. + dormant(5), + notPresent(6), -- some component is missing + lowerLayerDown(7) -- down due to state of + -- lower-layer interface(s) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the interface. The + testing(3) state indicates that no operational packets can + be passed. If ifAdminStatus is down(2) then ifOperStatus + should be down(2). If ifAdminStatus is changed to up(1) + then ifOperStatus should change to up(1) if the interface is + ready to transmit and receive network traffic; it should + change to dormant(5) if the interface is waiting for + external actions (such as a serial line waiting for an + incoming connection); it should remain in the down(2) state + if and only if there is a fault that prevents it from going + to the up(1) state; it should remain in the notPresent(6) + state if the interface has missing (typically, hardware) + components." + ::= { ifEntry 8 } + +ifLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the interface entered + its current operational state. If the current state was + entered prior to the last re-initialization of the local + network management subsystem, then this object contains a + zero value." + ::= { ifEntry 9 } + +ifInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the interface, + including framing characters. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 10 } + +ifInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were not addressed to a multicast + or broadcast address at this sub-layer. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 11 } + +ifInNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were addressed to a multicast or + broadcast address at this sub-layer. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime. + + This object is deprecated in favour of ifInMulticastPkts and + ifInBroadcastPkts." + ::= { ifEntry 12 } + +ifInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen to be + discarded even though no errors had been detected to prevent + their being deliverable to a higher-layer protocol. One + possible reason for discarding such a packet could be to + free up buffer space. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 13 } + +ifInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of inbound + packets that contained errors preventing them from being + deliverable to a higher-layer protocol. For character- + oriented or fixed-length interfaces, the number of inbound + transmission units that contained errors preventing them + from being deliverable to a higher-layer protocol. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 14 } + +ifInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of packets + received via the interface which were discarded because of + an unknown or unsupported protocol. For character-oriented + or fixed-length interfaces that support protocol + multiplexing the number of transmission units received via + the interface which were discarded because of an unknown or + unsupported protocol. For any interface that does not + support protocol multiplexing, this counter will always be + 0. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 15 } + +ifOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 16 } + +ifOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were not addressed to a + multicast or broadcast address at this sub-layer, including + those that were discarded or not sent. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 17 } + +ifOutNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were addressed to a + multicast or broadcast address at this sub-layer, including + those that were discarded or not sent. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime. + + This object is deprecated in favour of ifOutMulticastPkts + and ifOutBroadcastPkts." + ::= { ifEntry 18 } + +ifOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen to be + discarded even though no errors had been detected to prevent + their being transmitted. One possible reason for discarding + such a packet could be to free up buffer space. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 19 } + +ifOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For packet-oriented interfaces, the number of outbound + packets that could not be transmitted because of errors. + For character-oriented or fixed-length interfaces, the + number of outbound transmission units that could not be + transmitted because of errors. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifEntry 20 } + +ifOutQLen OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The length of the output packet queue (in packets)." + ::= { ifEntry 21 } + +ifSpecific OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A reference to MIB definitions specific to the particular + media being used to realize the interface. It is + recommended that this value point to an instance of a MIB + object in the media-specific MIB, i.e., that this object + have the semantics associated with the InstancePointer + textual convention defined in RFC 2579. In fact, it is + recommended that the media-specific MIB specify what value + ifSpecific should/can take for values of ifType. If no MIB + definitions specific to the particular media are available, + the value should be set to the OBJECT IDENTIFIER { 0 0 }." + ::= { ifEntry 22 } + + + +-- +-- Extension to the interface table +-- +-- This table replaces the ifExtnsTable table. +-- + +ifXTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfXEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of entries is + given by the value of ifNumber. This table contains + additional objects for the interface table." + ::= { ifMIBObjects 1 } + +ifXEntry OBJECT-TYPE + SYNTAX IfXEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing additional management information + applicable to a particular interface." + AUGMENTS { ifEntry } + ::= { ifXTable 1 } + +IfXEntry ::= + SEQUENCE { + ifName DisplayString, + ifInMulticastPkts Counter32, + ifInBroadcastPkts Counter32, + ifOutMulticastPkts Counter32, + ifOutBroadcastPkts Counter32, + ifHCInOctets Counter64, + ifHCInUcastPkts Counter64, + ifHCInMulticastPkts Counter64, + ifHCInBroadcastPkts Counter64, + ifHCOutOctets Counter64, + ifHCOutUcastPkts Counter64, + ifHCOutMulticastPkts Counter64, + ifHCOutBroadcastPkts Counter64, + ifLinkUpDownTrapEnable INTEGER, + ifHighSpeed Gauge32, + ifPromiscuousMode TruthValue, + ifConnectorPresent TruthValue, + ifAlias DisplayString, + ifCounterDiscontinuityTime TimeStamp + } + + +ifName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The textual name of the interface. The value of this + object should be the name of the interface as assigned by + the local device and should be suitable for use in commands + entered at the device's `console'. This might be a text + name, such as `le0' or a simple port number, such as `1', + depending on the interface naming syntax of the device. If + several entries in the ifTable together represent a single + interface as named by the device, then each will have the + same value of ifName. Note that for an agent which responds + to SNMP queries concerning an interface on some other + (proxied) device, then the value of ifName for such an + interface is the proxied device's local name for it. + + If there is no local name, or this object is otherwise not + applicable, then this object contains a zero-length string." + ::= { ifXEntry 1 } + +ifInMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were addressed to a multicast + address at this sub-layer. For a MAC layer protocol, this + includes both Group and Functional addresses. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 2 } + +ifInBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were addressed to a broadcast + address at this sub-layer. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 3 } + +ifOutMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were addressed to a + multicast address at this sub-layer, including those that + were discarded or not sent. For a MAC layer protocol, this + includes both Group and Functional addresses. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 4 } + +ifOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were addressed to a + broadcast address at this sub-layer, including those that + were discarded or not sent. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 5 } + +-- +-- High Capacity Counter objects. These objects are all +-- 64 bit versions of the "basic" ifTable counters. These +-- objects all have the same basic semantics as their 32-bit +-- counterparts, however, their syntax has been extended +-- to 64 bits. +-- + +ifHCInOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the interface, + including framing characters. This object is a 64-bit + version of ifInOctets. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 6 } + +ifHCInUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were not addressed to a multicast + or broadcast address at this sub-layer. This object is a + 64-bit version of ifInUcastPkts. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 7 } + +ifHCInMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were addressed to a multicast + address at this sub-layer. For a MAC layer protocol, this + includes both Group and Functional addresses. This object + is a 64-bit version of ifInMulticastPkts. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 8 } + +ifHCInBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets, delivered by this sub-layer to a + higher (sub-)layer, which were addressed to a broadcast + address at this sub-layer. This object is a 64-bit version + of ifInBroadcastPkts. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 9 } + +ifHCOutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. This object is a + 64-bit version of ifOutOctets. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 10 } + +ifHCOutUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were not addressed to a + multicast or broadcast address at this sub-layer, including + those that were discarded or not sent. This object is a + 64-bit version of ifOutUcastPkts. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 11 } + +ifHCOutMulticastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were addressed to a + multicast address at this sub-layer, including those that + were discarded or not sent. For a MAC layer protocol, this + includes both Group and Functional addresses. This object + is a 64-bit version of ifOutMulticastPkts. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 12 } + +ifHCOutBroadcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level protocols + requested be transmitted, and which were addressed to a + broadcast address at this sub-layer, including those that + were discarded or not sent. This object is a 64-bit version + of ifOutBroadcastPkts. + + Discontinuities in the value of this counter can occur at + re-initialization of the management system, and at other + times as indicated by the value of + ifCounterDiscontinuityTime." + ::= { ifXEntry 13 } + +ifLinkUpDownTrapEnable OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether linkUp/linkDown traps should be generated + for this interface. + + By default, this object should have the value enabled(1) for + interfaces which do not operate on 'top' of any other + interface (as defined in the ifStackTable), and disabled(2) + otherwise." + ::= { ifXEntry 14 } + +ifHighSpeed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the interface's current bandwidth in units + of 1,000,000 bits per second. If this object reports a + value of `n' then the speed of the interface is somewhere in + the range of `n-500,000' to `n+499,999'. For interfaces + which do not vary in bandwidth or for those where no + accurate estimation can be made, this object should contain + the nominal bandwidth. For a sub-layer which has no concept + of bandwidth, this object should be zero." + ::= { ifXEntry 15 } + +ifPromiscuousMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object has a value of false(2) if this interface only + accepts packets/frames that are addressed to this station. + This object has a value of true(1) when the station accepts + all packets/frames transmitted on the media. The value + true(1) is only legal on certain types of media. If legal, + setting this object to a value of true(1) may require the + interface to be reset before becoming effective. + + The value of ifPromiscuousMode does not affect the reception + of broadcast and multicast packets/frames by the interface." + ::= { ifXEntry 16 } + +ifConnectorPresent OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object has the value 'true(1)' if the interface + sublayer has a physical connector and the value 'false(2)' + otherwise." + ::= { ifXEntry 17 } + +ifAlias OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object is an 'alias' name for the interface as + specified by a network manager, and provides a non-volatile + 'handle' for the interface. + + On the first instantiation of an interface, the value of + ifAlias associated with that interface is the zero-length + string. As and when a value is written into an instance of + ifAlias through a network management set operation, then the + agent must retain the supplied value in the ifAlias instance + associated with the same interface for as long as that + interface remains instantiated, including across all re- + initializations/reboots of the network management system, + including those which result in a change of the interface's + ifIndex value. + + An example of the value which a network manager might store + in this object for a WAN interface is the (Telco's) circuit + number/identifier of the interface. + + Some agents may support write-access only for interfaces + having particular values of ifType. An agent which supports + write access to this object is required to keep the value in + non-volatile storage, but it may limit the length of new + values depending on how much storage is already occupied by + the current values for other interfaces." + ::= { ifXEntry 18 } + +ifCounterDiscontinuityTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime on the most recent occasion at which + any one or more of this interface's counters suffered a + discontinuity. The relevant counters are the specific + instances associated with this interface of any Counter32 or + Counter64 object contained in the ifTable or ifXTable. If + no such discontinuities have occurred since the last re- + initialization of the local management subsystem, then this + object contains a zero value." + ::= { ifXEntry 19 } + +-- The Interface Stack Group +-- +-- Implementation of this group is optional, but strongly recommended +-- for all systems +-- + +ifStackTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfStackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table containing information on the relationships + between the multiple sub-layers of network interfaces. In + particular, it contains information on which sub-layers run + 'on top of' which other sub-layers, where each sub-layer + corresponds to a conceptual row in the ifTable. For + example, when the sub-layer with ifIndex value x runs over + the sub-layer with ifIndex value y, then this table + contains: + + ifStackStatus.x.y=active + + For each ifIndex value, I, which identifies an active + interface, there are always at least two instantiated rows + in this table associated with I. For one of these rows, I + is the value of ifStackHigherLayer; for the other, I is the + value of ifStackLowerLayer. (If I is not involved in + multiplexing, then these are the only two rows associated + with I.) + + For example, two rows exist even for an interface which has + no others stacked on top or below it: + + ifStackStatus.0.x=active + ifStackStatus.x.0=active " + ::= { ifMIBObjects 2 } + + +ifStackEntry OBJECT-TYPE + SYNTAX IfStackEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information on a particular relationship between two sub- + layers, specifying that one sub-layer runs on 'top' of the + other sub-layer. Each sub-layer corresponds to a conceptual + row in the ifTable." + INDEX { ifStackHigherLayer, ifStackLowerLayer } + ::= { ifStackTable 1 } + + +IfStackEntry ::= + SEQUENCE { + ifStackHigherLayer InterfaceIndexOrZero, + ifStackLowerLayer InterfaceIndexOrZero, + ifStackStatus RowStatus + } + + +ifStackHigherLayer OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of ifIndex corresponding to the higher sub-layer + of the relationship, i.e., the sub-layer which runs on 'top' + of the sub-layer identified by the corresponding instance of + ifStackLowerLayer. If there is no higher sub-layer (below + the internetwork layer), then this object has the value 0." + ::= { ifStackEntry 1 } + + +ifStackLowerLayer OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value of ifIndex corresponding to the lower sub-layer + of the relationship, i.e., the sub-layer which runs 'below' + the sub-layer identified by the corresponding instance of + ifStackHigherLayer. If there is no lower sub-layer, then + this object has the value 0." + ::= { ifStackEntry 2 } + + +ifStackStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The status of the relationship between two sub-layers. + + Changing the value of this object from 'active' to + 'notInService' or 'destroy' will likely have consequences up + and down the interface stack. Thus, write access to this + object is likely to be inappropriate for some types of + interfaces, and many implementations will choose not to + support write-access for any type of interface." + ::= { ifStackEntry 3 } + +ifStackLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the last change of + the (whole) interface stack. A change of the interface + stack is defined to be any creation, deletion, or change in + value of any instance of ifStackStatus. If the interface + stack has been unchanged since the last re-initialization of + the local network management subsystem, then this object + contains a zero value." + ::= { ifMIBObjects 6 } + + +-- Generic Receive Address Table +-- +-- This group of objects is mandatory for all types of +-- interfaces which can receive packets/frames addressed to +-- more than one address. +-- +-- This table replaces the ifExtnsRcvAddr table. The main +-- difference is that this table makes use of the RowStatus +-- textual convention, while ifExtnsRcvAddr did not. + +ifRcvAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfRcvAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains an entry for each address (broadcast, + multicast, or uni-cast) for which the system will receive + packets/frames on a particular interface, except as follows: + + - for an interface operating in promiscuous mode, entries + are only required for those addresses for which the system + would receive frames were it not operating in promiscuous + mode. + + - for 802.5 functional addresses, only one entry is + required, for the address which has the functional address + bit ANDed with the bit mask of all functional addresses for + which the interface will accept frames. + + A system is normally able to use any unicast address which + corresponds to an entry in this table as a source address." + ::= { ifMIBObjects 4 } + +ifRcvAddressEntry OBJECT-TYPE + SYNTAX IfRcvAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of objects identifying an address for which the + system will accept packets/frames on the particular + interface identified by the index value ifIndex." + INDEX { ifIndex, ifRcvAddressAddress } + ::= { ifRcvAddressTable 1 } + +IfRcvAddressEntry ::= + SEQUENCE { + ifRcvAddressAddress PhysAddress, + ifRcvAddressStatus RowStatus, + ifRcvAddressType INTEGER + } + +ifRcvAddressAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An address for which the system will accept packets/frames + on this entry's interface." + ::= { ifRcvAddressEntry 1 } + +ifRcvAddressStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used to create and delete rows in the + ifRcvAddressTable." + + ::= { ifRcvAddressEntry 2 } + +ifRcvAddressType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + volatile(2), + nonVolatile(3) + } + + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object has the value nonVolatile(3) for those entries + in the table which are valid and will not be deleted by the + next restart of the managed system. Entries having the + value volatile(2) are valid and exist, but have not been + saved, so that will not exist after the next restart of the + managed system. Entries having the value other(1) are valid + and exist but are not classified as to whether they will + continue to exist after the next restart." + + DEFVAL { volatile } + ::= { ifRcvAddressEntry 3 } + +-- definition of interface-related traps. + +linkDown NOTIFICATION-TYPE + OBJECTS { ifIndex, ifAdminStatus, ifOperStatus } + STATUS current + DESCRIPTION + "A linkDown trap signifies that the SNMP entity, acting in + an agent role, has detected that the ifOperStatus object for + one of its communication links is about to enter the down + state from some other state (but not from the notPresent + state). This other state is indicated by the included value + of ifOperStatus." + ::= { snmpTraps 3 } + +linkUp NOTIFICATION-TYPE + OBJECTS { ifIndex, ifAdminStatus, ifOperStatus } + STATUS current + DESCRIPTION + "A linkUp trap signifies that the SNMP entity, acting in an + agent role, has detected that the ifOperStatus object for + one of its communication links left the down state and + transitioned into some other state (but not into the + notPresent state). This other state is indicated by the + included value of ifOperStatus." + ::= { snmpTraps 4 } + +-- conformance information + +ifConformance OBJECT IDENTIFIER ::= { ifMIB 2 } + +ifGroups OBJECT IDENTIFIER ::= { ifConformance 1 } +ifCompliances OBJECT IDENTIFIER ::= { ifConformance 2 } + + +-- compliance statements + +ifCompliance3 MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMP entities which have + network interfaces." + + MODULE -- this module + MANDATORY-GROUPS { ifGeneralInformationGroup, + linkUpDownNotificationsGroup } + +-- The groups: +-- ifFixedLengthGroup +-- ifHCFixedLengthGroup +-- ifPacketGroup +-- ifHCPacketGroup +-- ifVHCPacketGroup +-- are mutually exclusive; at most one of these groups is implemented +-- for a particular interface. When any of these groups is implemented +-- for a particular interface, then ifCounterDiscontinuityGroup must +-- also be implemented for that interface. + + + GROUP ifFixedLengthGroup + DESCRIPTION + "This group is mandatory for those network interfaces which + are character-oriented or transmit data in fixed-length + transmission units, and for which the value of the + corresponding instance of ifSpeed is less than or equal to + 20,000,000 bits/second." + + GROUP ifHCFixedLengthGroup + DESCRIPTION + "This group is mandatory for those network interfaces which + are character-oriented or transmit data in fixed-length + transmission units, and for which the value of the + corresponding instance of ifSpeed is greater than 20,000,000 + bits/second." + + GROUP ifPacketGroup + DESCRIPTION + "This group is mandatory for those network interfaces which + are packet-oriented, and for which the value of the + corresponding instance of ifSpeed is less than or equal to + 20,000,000 bits/second." + + GROUP ifHCPacketGroup + DESCRIPTION + "This group is mandatory only for those network interfaces + which are packet-oriented and for which the value of the + corresponding instance of ifSpeed is greater than 20,000,000 + bits/second but less than or equal to 650,000,000 + bits/second." + + GROUP ifVHCPacketGroup + DESCRIPTION + "This group is mandatory only for those network interfaces + which are packet-oriented and for which the value of the + corresponding instance of ifSpeed is greater than + 650,000,000 bits/second." + + + GROUP ifCounterDiscontinuityGroup + DESCRIPTION + "This group is mandatory for those network interfaces that + are required to maintain counters (i.e., those for which one + of the ifFixedLengthGroup, ifHCFixedLengthGroup, + ifPacketGroup, ifHCPacketGroup, or ifVHCPacketGroup is + mandatory)." + + + GROUP ifRcvAddressGroup + DESCRIPTION + "The applicability of this group MUST be defined by the + media-specific MIBs. Media-specific MIBs must define the + exact meaning, use, and semantics of the addresses in this + group." + + OBJECT ifLinkUpDownTrapEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifPromiscuousMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifAdminStatus + SYNTAX INTEGER { up(1), down(2) } + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, nor is support for the value + testing(3)." + + OBJECT ifAlias + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + ::= { ifCompliances 3 } + +-- units of conformance + +ifGeneralInformationGroup OBJECT-GROUP + OBJECTS { ifIndex, ifDescr, ifType, ifSpeed, ifPhysAddress, + ifAdminStatus, ifOperStatus, ifLastChange, + ifLinkUpDownTrapEnable, ifConnectorPresent, + ifHighSpeed, ifName, ifNumber, ifAlias, + ifTableLastChange } + STATUS current + DESCRIPTION + "A collection of objects providing information applicable to + all network interfaces." + ::= { ifGroups 10 } + +-- the following five groups are mutually exclusive; at most +-- one of these groups is implemented for any interface + +ifFixedLengthGroup OBJECT-GROUP + OBJECTS { ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors } + STATUS current + DESCRIPTION + "A collection of objects providing information specific to + non-high speed (non-high speed interfaces transmit and + receive at speeds less than or equal to 20,000,000 + bits/second) character-oriented or fixed-length-transmission + network interfaces." + ::= { ifGroups 2 } + +ifHCFixedLengthGroup OBJECT-GROUP + OBJECTS { ifHCInOctets, ifHCOutOctets, + ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors } + STATUS current + DESCRIPTION + "A collection of objects providing information specific to + high speed (greater than 20,000,000 bits/second) character- + oriented or fixed-length-transmission network interfaces." + ::= { ifGroups 3 } + +ifPacketGroup OBJECT-GROUP + OBJECTS { ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors, + ifMtu, ifInUcastPkts, ifInMulticastPkts, + ifInBroadcastPkts, ifInDiscards, + ifOutUcastPkts, ifOutMulticastPkts, + ifOutBroadcastPkts, ifOutDiscards, + ifPromiscuousMode } + STATUS current + DESCRIPTION + "A collection of objects providing information specific to + non-high speed (non-high speed interfaces transmit and + receive at speeds less than or equal to 20,000,000 + bits/second) packet-oriented network interfaces." + ::= { ifGroups 4 } + +ifHCPacketGroup OBJECT-GROUP + OBJECTS { ifHCInOctets, ifHCOutOctets, + ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors, + ifMtu, ifInUcastPkts, ifInMulticastPkts, + ifInBroadcastPkts, ifInDiscards, + ifOutUcastPkts, ifOutMulticastPkts, + ifOutBroadcastPkts, ifOutDiscards, + ifPromiscuousMode } + STATUS current + DESCRIPTION + "A collection of objects providing information specific to + high speed (greater than 20,000,000 bits/second but less + than or equal to 650,000,000 bits/second) packet-oriented + network interfaces." + ::= { ifGroups 5 } + +ifVHCPacketGroup OBJECT-GROUP + OBJECTS { ifHCInUcastPkts, ifHCInMulticastPkts, + ifHCInBroadcastPkts, ifHCOutUcastPkts, + ifHCOutMulticastPkts, ifHCOutBroadcastPkts, + ifHCInOctets, ifHCOutOctets, + ifInOctets, ifOutOctets, ifInUnknownProtos, + ifInErrors, ifOutErrors, + ifMtu, ifInUcastPkts, ifInMulticastPkts, + ifInBroadcastPkts, ifInDiscards, + ifOutUcastPkts, ifOutMulticastPkts, + ifOutBroadcastPkts, ifOutDiscards, + ifPromiscuousMode } + STATUS current + DESCRIPTION + "A collection of objects providing information specific to + higher speed (greater than 650,000,000 bits/second) packet- + oriented network interfaces." + ::= { ifGroups 6 } + +ifRcvAddressGroup OBJECT-GROUP + OBJECTS { ifRcvAddressStatus, ifRcvAddressType } + STATUS current + DESCRIPTION + "A collection of objects providing information on the + multiple addresses which an interface receives." + ::= { ifGroups 7 } + +ifStackGroup2 OBJECT-GROUP + OBJECTS { ifStackStatus, ifStackLastChange } + STATUS current + DESCRIPTION + "A collection of objects providing information on the + layering of MIB-II interfaces." + ::= { ifGroups 11 } + +ifCounterDiscontinuityGroup OBJECT-GROUP + OBJECTS { ifCounterDiscontinuityTime } + STATUS current + DESCRIPTION + "A collection of objects providing information specific to + interface counter discontinuities." + ::= { ifGroups 13 } + +linkUpDownNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { linkUp, linkDown } + STATUS current + DESCRIPTION + "The notifications which indicate specific changes in the + value of ifOperStatus." + ::= { ifGroups 14 } + +-- Deprecated Definitions - Objects + + +-- +-- The Interface Test Table +-- +-- This group of objects is optional. However, a media-specific +-- MIB may make implementation of this group mandatory. +-- +-- This table replaces the ifExtnsTestTable +-- + +ifTestTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfTestEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "This table contains one entry per interface. It defines + objects which allow a network manager to instruct an agent + to test an interface for various faults. Tests for an + interface are defined in the media-specific MIB for that + interface. After invoking a test, the object ifTestResult + can be read to determine the outcome. If an agent can not + perform the test, ifTestResult is set to so indicate. The + object ifTestCode can be used to provide further test- + specific or interface-specific (or even enterprise-specific) + information concerning the outcome of the test. Only one + test can be in progress on each interface at any one time. + If one test is in progress when another test is invoked, the + second test is rejected. Some agents may reject a test when + a prior test is active on another interface. + + Before starting a test, a manager-station must first obtain + 'ownership' of the entry in the ifTestTable for the + interface to be tested. This is accomplished with the + ifTestId and ifTestStatus objects as follows: + + try_again: + get (ifTestId, ifTestStatus) + while (ifTestStatus != notInUse) + /* + * Loop while a test is running or some other + * manager is configuring a test. + */ + short delay + get (ifTestId, ifTestStatus) + } + + /* + * Is not being used right now -- let's compete + * to see who gets it. + */ + lock_value = ifTestId + + if ( set(ifTestId = lock_value, ifTestStatus = inUse, + + ifTestOwner = 'my-IP-address') == FAILURE) + /* + * Another manager got the ifTestEntry -- go + * try again + */ + goto try_again; + + /* + * I have the lock + */ + set up any test parameters. + + /* + * This starts the test + */ + set(ifTestType = test_to_run); + + wait for test completion by polling ifTestResult + + when test completes, agent sets ifTestResult + agent also sets ifTestStatus = 'notInUse' + + retrieve any additional test results, and ifTestId + + if (ifTestId == lock_value+1) results are valid + + A manager station first retrieves the value of the + appropriate ifTestId and ifTestStatus objects, periodically + repeating the retrieval if necessary, until the value of + ifTestStatus is 'notInUse'. The manager station then tries + to set the same ifTestId object to the value it just + retrieved, the same ifTestStatus object to 'inUse', and the + corresponding ifTestOwner object to a value indicating + itself. If the set operation succeeds then the manager has + obtained ownership of the ifTestEntry, and the value of the + ifTestId object is incremented by the agent (per the + semantics of TestAndIncr). Failure of the set operation + indicates that some other manager has obtained ownership of + the ifTestEntry. + + Once ownership is obtained, any test parameters can be + setup, and then the test is initiated by setting ifTestType. + On completion of the test, the agent sets ifTestStatus to + 'notInUse'. Once this occurs, the manager can retrieve the + results. In the (rare) event that the invocation of tests + by two network managers were to overlap, then there would be + a possibility that the first test's results might be + overwritten by the second test's results prior to the first + results being read. This unlikely circumstance can be + detected by a network manager retrieving ifTestId at the + same time as retrieving the test results, and ensuring that + the results are for the desired request. + + If ifTestType is not set within an abnormally long period of + time after ownership is obtained, the agent should time-out + the manager, and reset the value of the ifTestStatus object + back to 'notInUse'. It is suggested that this time-out + period be 5 minutes. + + In general, a management station must not retransmit a + request to invoke a test for which it does not receive a + response; instead, it properly inspects an agent's MIB to + determine if the invocation was successful. Only if the + invocation was unsuccessful, is the invocation request + retransmitted. + + Some tests may require the interface to be taken off-line in + order to execute them, or may even require the agent to + reboot after completion of the test. In these + circumstances, communication with the management station + invoking the test may be lost until after completion of the + test. An agent is not required to support such tests. + However, if such tests are supported, then the agent should + make every effort to transmit a response to the request + which invoked the test prior to losing communication. When + the agent is restored to normal service, the results of the + test are properly made available in the appropriate objects. + Note that this requires that the ifIndex value assigned to + an interface must be unchanged even if the test causes a + reboot. An agent must reject any test for which it cannot, + perhaps due to resource constraints, make available at least + the minimum amount of information after that test + completes." + ::= { ifMIBObjects 3 } + +ifTestEntry OBJECT-TYPE + SYNTAX IfTestEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "An entry containing objects for invoking tests on an + interface." + AUGMENTS { ifEntry } + ::= { ifTestTable 1 } + +IfTestEntry ::= + SEQUENCE { + ifTestId TestAndIncr, + ifTestStatus INTEGER, + ifTestType AutonomousType, + ifTestResult INTEGER, + ifTestCode OBJECT IDENTIFIER, + ifTestOwner OwnerString + } + +ifTestId OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object identifies the current invocation of the + interface's test." + ::= { ifTestEntry 1 } + +ifTestStatus OBJECT-TYPE + SYNTAX INTEGER { notInUse(1), inUse(2) } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "This object indicates whether or not some manager currently + has the necessary 'ownership' required to invoke a test on + this interface. A write to this object is only successful + when it changes its value from 'notInUse(1)' to 'inUse(2)'. + After completion of a test, the agent resets the value back + to 'notInUse(1)'." + ::= { ifTestEntry 2 } + +ifTestType OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "A control variable used to start and stop operator- + initiated interface tests. Most OBJECT IDENTIFIER values + assigned to tests are defined elsewhere, in association with + specific types of interface. However, this document assigns + a value for a full-duplex loopback test, and defines the + special meanings of the subject identifier: + + noTest OBJECT IDENTIFIER ::= { 0 0 } + + When the value noTest is written to this object, no action + is taken unless a test is in progress, in which case the + test is aborted. Writing any other value to this object is + only valid when no test is currently in progress, in which + case the indicated test is initiated. + + When read, this object always returns the most recent value + that ifTestType was set to. If it has not been set since + the last initialization of the network management subsystem + on the agent, a value of noTest is returned." + ::= { ifTestEntry 3 } + +ifTestResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- no test yet requested + success(2), + inProgress(3), + notSupported(4), + unAbleToRun(5), -- due to state of system + aborted(6), + failed(7) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "This object contains the result of the most recently + requested test, or the value none(1) if no tests have been + requested since the last reset. Note that this facility + provides no provision for saving the results of one test + when starting another, as could be required if used by + multiple managers concurrently." + ::= { ifTestEntry 4 } + +ifTestCode OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "This object contains a code which contains more specific + information on the test result, for example an error-code + after a failed test. Error codes and other values this + object may take are specific to the type of interface and/or + test. The value may have the semantics of either the + AutonomousType or InstancePointer textual conventions as + defined in RFC 2579. The identifier: + + testCodeUnknown OBJECT IDENTIFIER ::= { 0 0 } + + is defined for use if no additional result code is + available." + ::= { ifTestEntry 5 } + +ifTestOwner OBJECT-TYPE + SYNTAX OwnerString + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION + "The entity which currently has the 'ownership' required to + invoke a test on this interface." + ::= { ifTestEntry 6 } + +-- Deprecated Definitions - Groups + + +ifGeneralGroup OBJECT-GROUP + OBJECTS { ifDescr, ifType, ifSpeed, ifPhysAddress, + ifAdminStatus, ifOperStatus, ifLastChange, + ifLinkUpDownTrapEnable, ifConnectorPresent, + ifHighSpeed, ifName } + STATUS deprecated + DESCRIPTION + "A collection of objects deprecated in favour of + ifGeneralInformationGroup." + ::= { ifGroups 1 } + + +ifTestGroup OBJECT-GROUP + OBJECTS { ifTestId, ifTestStatus, ifTestType, + ifTestResult, ifTestCode, ifTestOwner } + STATUS deprecated + DESCRIPTION + "A collection of objects providing the ability to invoke + tests on an interface." + ::= { ifGroups 8 } + + +ifStackGroup OBJECT-GROUP + OBJECTS { ifStackStatus } + STATUS deprecated + DESCRIPTION + "The previous collection of objects providing information on + the layering of MIB-II interfaces." + ::= { ifGroups 9 } + + +ifOldObjectsGroup OBJECT-GROUP + OBJECTS { ifInNUcastPkts, ifOutNUcastPkts, + ifOutQLen, ifSpecific } + STATUS deprecated + DESCRIPTION + "The collection of objects deprecated from the original MIB- + II interfaces group." + ::= { ifGroups 12 } + +-- Deprecated Definitions - Compliance + +ifCompliance MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "A compliance statement defined in a previous version of + this MIB module, for SNMP entities which have network + interfaces." + + MODULE -- this module + MANDATORY-GROUPS { ifGeneralGroup, ifStackGroup } + + GROUP ifFixedLengthGroup + DESCRIPTION + "This group is mandatory for all network interfaces which + are character-oriented or transmit data in fixed-length + transmission units." + + GROUP ifHCFixedLengthGroup + DESCRIPTION + "This group is mandatory only for those network interfaces + which are character-oriented or transmit data in fixed- + length transmission units, and for which the value of the + corresponding instance of ifSpeed is greater than 20,000,000 + bits/second." + + GROUP ifPacketGroup + DESCRIPTION + "This group is mandatory for all network interfaces which + are packet-oriented." + + GROUP ifHCPacketGroup + DESCRIPTION + "This group is mandatory only for those network interfaces + which are packet-oriented and for which the value of the + corresponding instance of ifSpeed is greater than + 650,000,000 bits/second." + + GROUP ifTestGroup + DESCRIPTION + "This group is optional. Media-specific MIBs which require + interface tests are strongly encouraged to use this group + for invoking tests and reporting results. A medium specific + MIB which has mandatory tests may make implementation of + this group mandatory." + + GROUP ifRcvAddressGroup + DESCRIPTION + "The applicability of this group MUST be defined by the + media-specific MIBs. Media-specific MIBs must define the + exact meaning, use, and semantics of the addresses in this + group." + + OBJECT ifLinkUpDownTrapEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifPromiscuousMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifStackStatus + SYNTAX INTEGER { active(1) } -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one of the six + enumerated values for the RowStatus textual convention need + be supported, specifically: active(1)." + + OBJECT ifAdminStatus + SYNTAX INTEGER { up(1), down(2) } + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, nor is support for the value + testing(3)." + ::= { ifCompliances 1 } + +ifCompliance2 MODULE-COMPLIANCE + STATUS deprecated + DESCRIPTION + "A compliance statement defined in a previous version of + this MIB module, for SNMP entities which have network + interfaces." + + MODULE -- this module + MANDATORY-GROUPS { ifGeneralInformationGroup, ifStackGroup2, + ifCounterDiscontinuityGroup } + + GROUP ifFixedLengthGroup + DESCRIPTION + "This group is mandatory for all network interfaces which + are character-oriented or transmit data in fixed-length + transmission units." + + GROUP ifHCFixedLengthGroup + DESCRIPTION + "This group is mandatory only for those network interfaces + which are character-oriented or transmit data in fixed- + length transmission units, and for which the value of the + corresponding instance of ifSpeed is greater than 20,000,000 + bits/second." + + GROUP ifPacketGroup + DESCRIPTION + "This group is mandatory for all network interfaces which + are packet-oriented." + + GROUP ifHCPacketGroup + DESCRIPTION + "This group is mandatory only for those network interfaces + which are packet-oriented and for which the value of the + corresponding instance of ifSpeed is greater than + 650,000,000 bits/second." + + GROUP ifRcvAddressGroup + DESCRIPTION + "The applicability of this group MUST be defined by the + media-specific MIBs. Media-specific MIBs must define the + exact meaning, use, and semantics of the addresses in this + group." + + OBJECT ifLinkUpDownTrapEnable + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifPromiscuousMode + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT ifStackStatus + SYNTAX INTEGER { active(1) } -- subset of RowStatus + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, and only one of the six + enumerated values for the RowStatus textual convention need + be supported, specifically: active(1)." + OBJECT ifAdminStatus + SYNTAX INTEGER { up(1), down(2) } + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required, nor is support for the value + testing(3)." + + OBJECT ifAlias + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + ::= { ifCompliances 2 } + +END diff --git a/pandora_console/attachment/mibs/IMM-MIB b/pandora_console/attachment/mibs/IMM-MIB new file mode 100644 index 0000000000..e4764d5d51 --- /dev/null +++ b/pandora_console/attachment/mibs/IMM-MIB @@ -0,0 +1,11715 @@ +-- *************************************************************************** +-- *************************************************************************** +-- +-- File : imm.mib +-- Description : Integrated Management Module mib for SNMP +-- By : Lenovo +-- Version : 1.49 +-- Date : Nov 29, 2017 +-- +-- +-- Copyright (c) 2016 Lenovo All Rights Reserved. +-- Copyright (c) 2016 IBM All Rights Reserved. +-- +-- +-- Contains MIB description for: +-- This MIB is to be used to provide configuration support of IMM as well as monitoring support +-- for the system. +-- *************************************************************************** +-- *************************************************************************** +-- *************************************************************************** +-- Revisions: +-- +-- 02/05/18 - Collect SSD Wear info for raid SSD Drive. +-- +-- 11/29/17 - Corrected ReadCallHomeExclusionEventEntry::= syntax error. +-- +-- 04/13/17 - Corrected Raid and PCIe object name syntax errors, modify to unique object name. +-- - Corrected raidFirmwareEntry to raidControllerFirmwareEntry, to have same prefix of table. +-- - Corrected fdEntry's index to fdIndex. +-- +-- 01/11/17 - Updated spTxtId, enlarge system name to 256 characters +-- +-- 12/13/16 - Corrected syntax errors in sslCertificateCSRDownloadFormat and CryptoInsufComplianceEntry +-- +-- 10/20/16 - Added dnsLXCADiscovery object for LXCA discovery using DNS SRV record +-- +-- 08/27/15 - Added ipmiConfig, ipmiEnable +-- +-- 05/13/15 - Added phyPortLinkStatus, phyPortLinkSpeed for Adapter Network Port +-- - Added memoryConfigSpeed, memoryRatedSpeed for System Memory VPD +-- - Added cpuVpdCpuModel for System CPU VPD +-- - Added Full Postal Address support +-- - Added driveRotationRate, driveMediaErrCnt, driveOtherErrCnt, drivePredFailCnt for RAID Drive +-- +-- 05/05/15 - removed SNMPv2-TC import and modified InetAddressIPv6 +-- +-- 03/11/15 - Rebranding changes +-- +-- 12/08/14 - Added Subject Alt Names support +-- +-- 08/08/14 - 07/09/14 - Corrected Raid object syntax errors +-- +-- 06/26/14 - Corrected sslClientConfigForLDAP OID's +-- - Added sslCertificateCSRDownloadFormat and description updates +-- +-- 06/19/14 - Fixed skr skrServerCertificateExpirationDate OID typo and adjust skrServer OIDs +-- +-- 06/04/14 - Added table to items that have insufficient compliance to the current crypto mode. +-- +-- 05/23/14 - Added objects for Certificate Removal and Expiration Date +-- +-- 03/24/14 - Added VLANs for System Management support GA6 +-- +-- 03/20/14 - Added NSA B cryptoModes GA6 +-- +-- 03/14/14 - Updated PCIe support. Added RAID Link support. Corrected remoteAccessIdEntryPassword +-- and minimumPasswordLength to support up to 20 characters. +-- +-- 02/19/14 - Added bootServerF1Setup and smtpServerReversePath GA6 +-- +-- 01/22/14 - Added PCIe objects +-- +-- 01/10/14 - Added LAN over USB IP Configuration Objects +-- +-- 01/08/14 - Added Audit Event Config for Remote Alert Recipients +-- +-- 12/17/13 - Modified FlashDIMM Objects, and correct previous backed off changes +-- +-- 12/04/13 - Added unsupported values to configurationManagementStatus object +-- - Changed PowerEntry powerIndex to a 0-index +-- +-- 11/13/2013 - Added FlashDIMM Objects +-- +-- 09/30/2013 - Corrected enumerated value names starting with upper case +-- +-- 09/26/2013 - powerControlSleep edits +-- +-- 08/07/2013 - Updated scalableComplexPartitionCreateIndex +-- +-- 07/30/2013 Version - Updated Scalable changes +-- scalableComplexClear and scalableComplexAuotCreate setting +-- scalableComplexNodeSerialNumber size limit +-- +-- 06/24/2013 Version - Updated Scalable changes +-- all objects with node key were updated to OCTET STRING (SIZE(4)) +-- 05/24/2013 Version - Added Scalable changes +-- scalableComplexPartitionStatus - removed "resetting" state +-- scalableComplexNodeState - removed +-- scalableComplexPartitionActionCreate - updated description +-- +-- 07/30/2013 Version 1.38c +-- Fixed syntax error in powerTrendingPowerType object +-- Capitalized PowerTrendingSampleEntry object name +-- +-- 07/25/2013 Version 1.38b +-- Removed mark and space from portParity +-- +-- 07/17/2013 Version 1.38a +-- Removed extra commas from lines 1511 and 1560 +-- +-- 07/17/2013 Version 1.39 +-- Added sleepS3 state to currentSysPowerStatus +-- Added powerControlSleep +-- +-- 05/30/2013 Version 1.38 +-- Added Storage Key Repository Servers section +-- Added Cryptography Mode section +-- +-- 02/20/2013 Version 1.37 +-- Commented Firmware Update section as IMM1 only +-- Added Power Management section/objects +-- Added new system health objects +-- Removed DST setting for Europe/Minsk +-- Removed "IMM1 only" comment from contactInformation.companyName +-- Extented ldapGroupFilter length to 511 +-- +-- 10/29/2012 Version 1.36 +-- Removed httpProxyAuthentication object. +-- Added size to autoFTPCallAddr, autoFTPCallUserID, and autoFTPCallPassword +-- Updated the addCallHomeExclusionEvent and rmCallHomeExclusionEvent descriptions +-- +-- 09/18/2012 Version 1.35 +-- Added additional objects for Service Advisor: +-- httpProxyAuthentication, contactInformation.phoneExtension, altContactName, +-- altPhoneNumber, altPhoneExtension, altEmailAddress, machineLocationPhoneNumber, +-- autoFTPCallMode.sftp, testCallHome.generateTestCallHome +-- Marked contactInformation.companyName "IMM1-only" +-- Marked smtpServerAuthentication, smtpServerAuthenticationUser, +-- smtpServerAuthenticationPassword, and smtpServerAuthenticationMethod +-- "IMM2 only" +-- Marked remoteAlertIdEmailAddr as "IMM1 limited to 64" +-- +-- 08/06/2012 Version 1.34 +-- Changed remoteAlertIdEmailAddr OCTET STRING(SIZE(0..320)) +-- +-- 07/23/2012 Version 1.33 +-- Added Objects for Ethernet VLAN +-- sslConfig object group marked "IMM2 only" +-- ntpIpAddressHostname2,3 and 4 marked "IMM2 only" +-- ldapSearchDomain, removed "IMM2 only" +-- ldapDomainSource marked "IMM2 only" +-- +-- 07/02/2012 Version 1.32 +-- Added Objects for Authenticated SMTP +-- +-- *************************************************************************** + IMM-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE FROM RFC-1212 + enterprises FROM RFC1155-SMI + DisplayString FROM RFC1213-MIB + IpAddress FROM RFC1155-SMI + -- PTE: added following 7/12/2011 + Gauge FROM RFC1155-SMI + + -- TEXTUAL-CONVENTION FROM SNMPv2-TC + TRAP-TYPE FROM RFC-1215; + + InetAddressIPv6 ::= TEXTUAL-CONVENTION + DISPLAY-HINT "02x:02x:02x:02x:02x:02x:02x:02x" + -- PTE: changed to mandatory + STATUS current + -- STATUS mandatory + DESCRIPTION + "Represents an IPv6 network address. Since MIB browsers + may require different formats, the address is + expected to be the 16 byte address in network-byte order, + and shortened formats such as 0::0 are not accepted in SET + operations. Two common examples are: + + The NetSNMP command line will accept SET requests like: + snmpset -v1 -cprivate s 2001:00:00:00:FFFF:CCC4:BBB2:AAA6 + + Other MIB browsers may require the SET request value to be formatted as: + # 0x20 0x01 0x00 0x00 0x00 0x00 0x00 0x00 0xFF 0xFF 0xCC 0xC4 0xBB 0xB2 0xAA 0xA6" + SYNTAX OCTET STRING (SIZE (16)) + + EntryStatus ::= INTEGER + { valid(1), + createRequest(2), + underCreation(3), + invalid(4) + } + + -- The status of a table entry. + -- + -- Setting this object to the value invalid(4) has the + -- effect of invalidating the corresponding entry. + -- That is, it effectively disassociates the mapping + -- identified with said entry. + -- It is an implementation-specific matter as to whether + -- the agent removes an invalidated entry from the table. + -- Accordingly, management stations must be prepared to + -- receive tabular information from agents that corresponds + -- to entries currently not in use. Proper + -- interpretation of such entries requires examination + -- of the relevant EntryStatus object. + -- + -- An existing instance of this object cannot be set to + -- createRequest(2). This object may only be set to + -- createRequest(2) when this instance is created. When + -- this object is created, the agent may wish to create + -- supplemental object instances to complete a conceptual + -- row in this table. Immediately after completing the + -- create operation, the agent must set this object to + -- underCreation(3). + -- + -- Entries shall exist in the underCreation(3) state until + + -- the management station is finished configuring the + -- entry and sets this object to valid(1) or aborts, + -- setting this object to invalid(4). If the agent + -- determines that an entry has been in the + -- underCreation(3) state for an abnormally long time, + -- it may decide that the management station has + -- crashed. If the agent makes this decision, + -- it may set this object to invalid(4) to reclaim the + -- entry. A prudent agent will understand that the + -- management station may need to wait for human input + -- and will allow for that possibility in its + -- determination of this abnormally long period. + + -- enterprise group + ibm OBJECT IDENTIFIER ::= { enterprises 2 } + + -- products group + ibmAgents OBJECT IDENTIFIER ::= { ibm 3 } + + -- e-Server Advanced System Management Support Processor(SP) agent group + netfinitySupportProcessorAgent OBJECT IDENTIFIER ::= { ibmAgents 51 } + + -- integrated Management Module + ibmIntegratedManagementModuleMIB OBJECT IDENTIFIER ::= { netfinitySupportProcessorAgent 3 } + +-- *************************************************************************** +-- Start: Define groups of objects within the ibmRemoteSupSnmpMIB +-- *************************************************************************** + --This group of objects provides the various environmental monitors for the + -- local system and the IMM + monitors OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 1 } + + --This group of objects provides the error log objects for the IMM + errorLogs OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 2 } + + --This group of objects provides configuration functions for the IMM + configureSP OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 3 } + + --This group of objects provides configuration functions for the system(server) + generalSystemSettings OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 4 } + + --This group of objects provides configuration functions for system power + systemPower OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 5 } + + --This group of objects provides functions to boot the IMM and system + restartReset OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 6 } + + --This group of objects provides functions to update the IMM firmware + firmwareUpdate OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 7 } + + --This group of objects provides functions Service Advisor + serviceAdvisor OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 8 } + + --This group of objects provides functions for Scalable Systems + scaling OBJECT IDENTIFIER ::= { ibmIntegratedManagementModuleMIB 9 } + +-- **************************************************************************** +-- Monitors +-- **************************************************************************** + -- ************************************************************************ + -- Temperature + -- ************************************************************************ + temperature OBJECT IDENTIFIER ::= { monitors 1 } + tempNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The present number of rows in the temperature table." + ::= { temperature 1 } + + tempTable OBJECT-TYPE + SYNTAX SEQUENCE OF TempEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains temperature measurement information." + ::= { temperature 2 } + + tempEntry OBJECT-TYPE + SYNTAX TempEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains parameters related to a temperature measurement channel." + INDEX { tempIndex } + ::= { tempTable 1 } + + TempEntry ::= + SEQUENCE { + tempIndex INTEGER, + tempDescr DisplayString, + tempReading INTEGER, + tempNominalReading INTEGER, + tempNonRecovLimitHigh INTEGER, + tempCritLimitHigh INTEGER, + tempNonCritLimitHigh INTEGER, + tempNonRecovLimitLow INTEGER, + tempCritLimitLow INTEGER, + tempNonCritLimitLow INTEGER, + tempHealthStatus DisplayString -- IMM2-only + } + + tempIndex OBJECT-TYPE + SYNTAX INTEGER (1..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular + temperature measurement channel." + ::= { tempEntry 1 } + + tempDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + + STATUS mandatory + DESCRIPTION "A description of the temperature measurement + channel." + ::= { tempEntry 2 } + + tempReading OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The measured temperature." + ::= { tempEntry 3 } + + tempNominalReading OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The nominal temperature, if available." + ::= { tempEntry 4 } + + tempNonRecovLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The non-recoverable limit for the measured temperature. If + the measured value rises above this limit a trap is sent." + ::= { tempEntry 5} + + tempCritLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The critical limit for the measured temperature. If + the measured value rises above this limit a trap is sent." + ::= { tempEntry 6} + + tempNonCritLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The non-critical limit for the measured temperature. If + the measured value rises above this limit a trap is sent." + ::= { tempEntry 7} + + tempNonRecovLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The non-recoverable limit for the measured temperature. If + the measured value falls below this limit a trap is sent." + ::= { tempEntry 8} + + tempCritLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The critical limit for the measured temperature. If + the measured value falls below this limit a trap is sent." + ::= { tempEntry 9} + + tempNonCritLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "Degrees Celsius" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The non-critical limit for the measured temperature. If + the measured value falls below this limit a trap is sent." + ::= { tempEntry 10} + + tempHealthStatus OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the temperature component status." + ::= { tempEntry 11 } + + -- ************************************************************************ + -- Voltages + -- ************************************************************************ + voltage OBJECT IDENTIFIER ::= { monitors 2 } + -------------------------------------------------------------------------------- + voltNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The present number of rows in the voltage table." + ::= { voltage 1 } + + voltTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoltEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains voltage measurement information." + ::= { voltage 2 } + + voltEntry OBJECT-TYPE + SYNTAX VoltEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains parameters related to a + voltage measurement channel." + INDEX { voltIndex } + ::= { voltTable 1 } + + VoltEntry ::= + SEQUENCE { + voltIndex INTEGER, + voltDescr DisplayString, + voltReading INTEGER, + voltNominalReading INTEGER, + voltNonRecovLimitHigh INTEGER, + voltCritLimitHigh INTEGER, + voltNonCritLimitHigh INTEGER, + voltNonRecovLimitLow INTEGER, + voltCritLimitLow INTEGER, + voltNonCritLimitLow INTEGER, + voltHealthStatus DisplayString -- IMM2-only + } + + voltIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular + voltage measurement channel." + ::= { voltEntry 1 } + + voltDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the voltage measurement channel." + ::= { voltEntry 2 } + + voltReading OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The measured voltage." + ::= { voltEntry 3 } + + voltNominalReading OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The nominal voltage, if available." + ::= { voltEntry 4 } + + voltNonRecovLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The high non-recoverable limit for the measured voltage. If the + measured value falls above this limit a trap is sent." + ::= { voltEntry 5 } + + voltCritLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The high critical limit for the measured voltage. If the + measured value rises above this limit a trap is sent." + ::= { voltEntry 6 } + + voltNonCritLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The high non-critical limit for the measured voltage. If the + measured value rises above this limit a trap is sent." + ::= { voltEntry 7 } + + voltNonRecovLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The low non-recoverable limit for the measured voltage. If the + measured value falls below this limit a trap is sent." + ::= { voltEntry 8 } + + voltCritLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The low critical limit for the measured voltage. If the + measured value falls below this limit a trap is sent." + ::= { voltEntry 9 } + + voltNonCritLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "Millivolts" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The low non-critical limit for the measured voltage. If the + measured value falls below this limit a trap is sent." + ::= { voltEntry 10 } + + voltHealthStatus OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the voltage component status." + ::= { voltEntry 11 } + + + -- ************************************************************************ + -- Fans + -- ************************************************************************ + fans OBJECT IDENTIFIER ::= { monitors 3 } + fanNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The present number of rows in the fan table." + ::= { fans 1 } + + fanTable OBJECT-TYPE + SYNTAX SEQUENCE OF FanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains fan information." + ::= { fans 2 } + + fanEntry OBJECT-TYPE + SYNTAX FanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains parameters related to a fan." + INDEX { fanIndex } + ::= { fanTable 1 } + + FanEntry ::= + SEQUENCE { + fanIndex INTEGER (1..100), + fanDescr DisplayString, + fanSpeed OCTET STRING, + fanNonRecovLimitHigh INTEGER, + fanCritLimitHigh INTEGER, + fanNonCritLimitHigh INTEGER, + fanNonRecovLimitLow INTEGER, + fanCritLimitLow INTEGER, + fanNonCritLimitLow INTEGER, + fanHealthStatus DisplayString -- IMM2-only + } + + fanIndex OBJECT-TYPE + SYNTAX INTEGER (1..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular fan." + ::= { fanEntry 1 } + + fanDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the fan measurement channel." + ::= { fanEntry 2 } + + + fanSpeed OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Fan speed expressed in percent(%) of maximum RPM. + An octet string expressed as 'ddd% of maximum' where: + d is a decimal digit or blank space for a leading zero. + If the fan is determined not to be running or + the fan speed cannot be determined, the string will + indicate 'Offline'." + ::= { fanEntry 3 } + + fanNonRecovLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "RPM" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The high non-recoverable limit for the measured fan. If the + measured value falls above this limit a trap is sent." + ::= { fanEntry 4 } + + fanCritLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "RPM" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The high critical limit for the measured fan. If the + measured value rises above this limit a trap is sent." + ::= { fanEntry 5 } + + fanNonCritLimitHigh OBJECT-TYPE + SYNTAX INTEGER + UNITS "RPM" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The high non-critical limit for the measured fan. If the + measured value rises above this limit a trap is sent." + ::= { fanEntry 6 } + + fanNonRecovLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "RPM" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The low non-recoverable limit for the measured fan. If the + measured value falls below this limit a trap is sent." + ::= { fanEntry 7 } + + fanCritLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "RPM" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The low critical limit for the measured fan. If the + measured value falls below this limit a trap is sent." + ::= { fanEntry 8 } + + fanNonCritLimitLow OBJECT-TYPE + SYNTAX INTEGER + UNITS "RPM" + ACCESS read-only + STATUS mandatory + DESCRIPTION "The low non-critical limit for the measured fan. If the + measured value falls below this limit a trap is sent." + ::= { fanEntry 9 } + + fanHealthStatus OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the fan component status." + ::= { fanEntry 10 } + + -- ************************************************************************ + -- System Health + -- ************************************************************************ + systemHealth OBJECT IDENTIFIER ::= { monitors 4 } + + -- *********************************************************************** + -- System Health Status + -- *********************************************************************** + systemHealthStat OBJECT-TYPE + SYNTAX INTEGER { + nonRecoverable(0), + critical(2), + nonCritical(4), + normal(255) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates status of system health for the + system in which the IMM resides. + Value of 'nonRecoverable' indicates a severe error has occurred + and the system may not be functioning. A value of + 'critical' indicates that a error has occurred but + the system is currently functioning properly. A value of + 'nonCritical' indicates that a condition has occurred + that may change the state of the system in the future but currently + the system is working properly. A value of + 'normal' indicates that the system is operating normally." + ::= { systemHealth 1 } + + -- *********************************************************************** + -- System Health Summary + -- *********************************************************************** + systemHealthSummaryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemHealthSummaryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of System Health summary. Contains more detailed + information about the reasons for the overall system + health status." + ::= { systemHealth 2 } + + systemHealthSummaryEntry OBJECT-TYPE + SYNTAX SystemHealthSummaryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "System Health Summary entry" + INDEX { systemHealthSummaryIndex } + ::= { systemHealthSummaryTable 1 } + + + SystemHealthSummaryEntry ::= SEQUENCE { + systemHealthSummaryIndex INTEGER, + systemHealthSummarySeverity OCTET STRING, + systemHealthSummaryDescription OCTET STRING + } + + + systemHealthSummaryIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System health summary index." + ::= { systemHealthSummaryEntry 1 } + + systemHealthSummarySeverity OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System health summary severity." + ::= { systemHealthSummaryEntry 2 } + + systemHealthSummaryDescription OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System health summary description." + ::= { systemHealthSummaryEntry 3 } + + -- *********************************************************************** + -- Vital Product Data(VPD) information + -- *********************************************************************** + vpdInformation OBJECT IDENTIFIER ::= { monitors 5 } + + -- *********************************************************************** + -- IMM VPD + -- *********************************************************************** + + immVpdTable OBJECT-TYPE + SYNTAX SEQUENCE OF IMMVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of IMM VPD." + ::= { vpdInformation 1 } + + immVpdEntry OBJECT-TYPE + SYNTAX IMMVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "iMBC VPD entry." + INDEX { immVpdIndex } + ::= { immVpdTable 1 } + + + IMMVpdEntry ::= SEQUENCE { + immVpdIndex INTEGER, + immVpdType OCTET STRING, + immVpdVersionString OCTET STRING, + immVpdReleaseDate OCTET STRING + } + + + immVpdIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IMM VPD index." + ::= { immVpdEntry 1 } + + immVpdType OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IMM VPD Type. Indicates either Bios or Diag or spFimware VPD" + ::= { immVpdEntry 2 } + + immVpdVersionString OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IMM VPD Version Number of the software(Bios/Diag/spFirmware). + For IMM2 the string contains both the Build ID and the Version + Number, for example, like '1AOO3A v1.0.1'. " + ::= { immVpdEntry 3 } + + immVpdReleaseDate OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "IMM VPD Release Date of when the software(Bios/Diag/spFirmware) was released." + ::= { immVpdEntry 4 } + + + -- *********************************************************************** + -- Machine Level VPD + -- *********************************************************************** + machineVpd OBJECT IDENTIFIER ::= { vpdInformation 2 } + + + machineLevelVpd OBJECT IDENTIFIER ::= { machineVpd 1 } + + machineLevelVpdMachineType OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Machine type VPD information." + ::= { machineLevelVpd 1 } + + machineLevelVpdMachineModel OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Machine model VPD information." + ::= { machineLevelVpd 2 } + + machineLevelSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Machine serial number VPD information." + ::= { machineLevelVpd 3 } + + machineLevelUUID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Machine UUID(Universal Unique ID information)." + ::= { machineLevelVpd 4 } + + machineLevelProductName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Machine Product Name (e.g. System x3650 M2)." + ::= { machineLevelVpd 5 } + + -- *********************************************************************** + -- System Component Level VPD + -- *********************************************************************** + systemComponentLevelVpdTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemComponentLevelVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of the system component hardware VPD information. View as a + table and not as individual entries for consistent results." + ::= { vpdInformation 17 } + + systemComponentLevelVpdEntry OBJECT-TYPE + SYNTAX SystemComponentLevelVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "System component hardware VPD entry. View as a table and not as + individual entries for consistent results." + INDEX { componentLevelVpdIndex } + ::= { systemComponentLevelVpdTable 1 } + + SystemComponentLevelVpdEntry ::= SEQUENCE { + componentLevelVpdIndex INTEGER, + componentLevelVpdFruNumber OCTET STRING, + componentLevelVpdFruName OCTET STRING, + componentLevelVpdSerialNumber OCTET STRING, + componentLevelVpdManufacturingId OCTET STRING + } + + componentLevelVpdIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD index. View as a table and not as individual + entries for consistent results." + ::= { systemComponentLevelVpdEntry 1 } + + componentLevelVpdFruNumber OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD FRU number. View as a table and not as + individual entries for consistent results." + ::= { systemComponentLevelVpdEntry 2 } + + componentLevelVpdFruName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD FRU name. View as a table and not as + individual entries for consistent results." + ::= { systemComponentLevelVpdEntry 3 } + + componentLevelVpdSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD serial number. View as a table and not as + individual entries for consistent results." + ::= { systemComponentLevelVpdEntry 4 } + + componentLevelVpdManufacturingId OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD manufacturing ID. View as a table and not as + individual entries for consistent results." + ::= { systemComponentLevelVpdEntry 5 } + + -- *********************************************************************** + -- System Component Level VPD Tracking log + -- *********************************************************************** + systemComponentLevelVpdTrackingTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemComponentLevelVpdTrackingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of system component hardware VPD tracking activity log. View as + a table and not as individual entries for consistent results." + ::= { vpdInformation 18 } + + systemComponentLevelVpdTrackingEntry OBJECT-TYPE + SYNTAX SystemComponentLevelVpdTrackingEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "System component hardware VPD tracking activity log entry. View as a + table and not as individual entries for consistent results." + INDEX { componentLevelVpdTrackingIndex } + ::= { systemComponentLevelVpdTrackingTable 1 } + + SystemComponentLevelVpdTrackingEntry ::= SEQUENCE { + componentLevelVpdTrackingIndex INTEGER, + componentLevelVpdTrackingFruNumber OCTET STRING, + componentLevelVpdTrackingFruName OCTET STRING, + componentLevelVpdTrackingSerialNumber OCTET STRING, + componentLevelVpdTrackingManufacturingId OCTET STRING, + componentLevelVpdTrackingAction OCTET STRING, + componentLevelVpdTrackingTimestamp OCTET STRING + + } + + componentLevelVpdTrackingIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log index. View as a table + and not as individual entries for consistent results." + ::= { systemComponentLevelVpdTrackingEntry 1 } + + componentLevelVpdTrackingFruNumber OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log FRU number. View as a + table and not as individual entries for consistent results." + ::= { systemComponentLevelVpdTrackingEntry 2 } + + componentLevelVpdTrackingFruName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log FRU name. View as a + table and not as individual entries for consistent results." + ::= { systemComponentLevelVpdTrackingEntry 3 } + + componentLevelVpdTrackingSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log serial number. View as + a table and not as individual entries for consistent results." + ::= { systemComponentLevelVpdTrackingEntry 4 } + + componentLevelVpdTrackingManufacturingId OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log manufacturing ID. View + as a table and not as individual entries for consistent results." + ::= { systemComponentLevelVpdTrackingEntry 5 } + + componentLevelVpdTrackingAction OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log action(added/removed). + View as a table and not as individual entries for consistent results." + ::= {systemComponentLevelVpdTrackingEntry 6 } + + componentLevelVpdTrackingTimestamp OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System component level VPD tracking activity log timestanp. + View as a table and not as individual entries for consistent results." + ::= { systemComponentLevelVpdTrackingEntry 7 } + + -- ******************************************************************************** + -- Host MAC Address VPD + -- ******************************************************************************** + + hostMACAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF HostMACAddressEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of MAC addresses of the host NICs. + For consistent results, view as a table and not as individual entries." + ::= { vpdInformation 19 } + + hostMACAddressEntry OBJECT-TYPE + SYNTAX HostMACAddressEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Host MAC address entry. + For consistent results, view as a table and not as individual entries." + INDEX { hostMACAddressIndex } + ::= { hostMACAddressTable 1 } + + HostMACAddressEntry ::= SEQUENCE { + hostMACAddressIndex INTEGER, + hostMACAddressDescription DisplayString, + --hostMACAddress OCTET STRING} + hostMACAddress DisplayString} + + hostMACAddressIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Host MAC address index. View as a table and not as individual + entries for consistent results." + ::= { hostMACAddressEntry 1 } + + hostMACAddressDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the MAC Address entry. View as a table and not as + individual entries for consistent results." + ::= { hostMACAddressEntry 2 } + + hostMACAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Host MAC address must be a hexadecimal value between 000000000000 - FFFFFFFFFFFF. + This value must be in the form XX:XX:XX:XX:XX:XX View as a table and not as + individual entries for consistent results." + ::= { hostMACAddressEntry 3 } + + -- *********************************************************************** + -- System CPU VPD + -- *********************************************************************** + systemCPUVpdTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemCPUVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of the system CPU VPD information. View as a + table and not as individual entries for consistent results." + ::= { vpdInformation 20 } + + systemCPUVpdEntry OBJECT-TYPE + SYNTAX SystemCPUVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "System CPU VPD entry. View as a table and not as + individual entries for consistent results." + INDEX { cpuVpdIndex } + ::= { systemCPUVpdTable 1 } + + SystemCPUVpdEntry ::= SEQUENCE { + cpuVpdIndex INTEGER, + cpuVpdDescription DisplayString, + cpuVpdSpeed INTEGER, + cpuVpdIdentifier DisplayString, + cpuVpdType DisplayString, + cpuVpdFamily DisplayString, + cpuVpdCores INTEGER, + cpuVpdThreads INTEGER, + cpuVpdVoltage INTEGER, + cpuVpdDataWidth INTEGER, + cpuVpdHealthStatus DisplayString, --IMM2-only + cpuVpdCpuModel DisplayString --IMM2-only + } + + cpuVpdIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System CPU level VPD index. View as a table and not as individual + entries for consistent results." + ::= { systemCPUVpdEntry 1 } + + cpuVpdDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System CPU Description. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 2 } + + + cpuVpdSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu speed in MHz. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 3 } + + cpuVpdIdentifier OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System CPU Identifier. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 4 } + + cpuVpdType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu Type. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 5 } + + cpuVpdFamily OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu Family. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 6 } + + cpuVpdCores OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu number of cores. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 7 } + + cpuVpdThreads OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu number of threads. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 8 } + + cpuVpdVoltage OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu voltage in millivolts (1125 = 1.125 volts). + View as a table and not as individual entries for consistent + results." + ::= { systemCPUVpdEntry 9 } + + cpuVpdDataWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu data width in bits. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 10 } + + cpuVpdHealthStatus OBJECT-TYPE --IMM2-only + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu health status. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 11 } + + cpuVpdCpuModel OBJECT-TYPE --IMM2-only + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System cpu model. View as a table and not as + individual entries for consistent results." + ::= { systemCPUVpdEntry 12 } + + -- *********************************************************************** + -- System Memory VPD + -- *********************************************************************** + systemMemoryVpdTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemMemoryVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of the system Memory VPD information. View as a + table and not as individual entries for consistent results." + ::= { vpdInformation 21 } + + systemMemoryVpdEntry OBJECT-TYPE + SYNTAX SystemMemoryVpdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "System Memory VPD entry. View as a table and not as + individual entries for consistent results." + INDEX { memoryVpdIndex } + ::= { systemMemoryVpdTable 1 } + + SystemMemoryVpdEntry ::= SEQUENCE { + memoryVpdIndex INTEGER, + memoryVpdDescription DisplayString, + memoryVpdPartNumber DisplayString, + memoryVpdFRUSerialNumber DisplayString, + memoryVpdManufactureDate DisplayString, + memoryVpdType DisplayString, + memoryVpdSize INTEGER, + memoryHealthStatus DisplayString, -- IMM2-only + memoryConfigSpeed INTEGER, -- IMM2-only + memoryRatedSpeed INTEGER -- IMM2-only + } + + memoryVpdIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System Memory level VPD index. View as a table and not as individual + entries for consistent results." + ::= { systemMemoryVpdEntry 1 } + + memoryVpdDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System memory Description (e.g. DIMM 1). View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 2 } + + memoryVpdPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System Memory Part Number. View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 3 } + + memoryVpdFRUSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System memory Serial Number. View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 4 } + + memoryVpdManufactureDate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System memory Manufacture Date in week/year format (e.g. 3609). + View as a table and not as individual entries for consistent + results." + ::= { systemMemoryVpdEntry 5 } + + memoryVpdType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System memory Type (e.g. DDR III SDRAM). View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 6 } + + memoryVpdSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System memory size in GigaBytes. View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 7 } + + memoryHealthStatus OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the memory component status." + ::= { systemMemoryVpdEntry 8 } + + memoryConfigSpeed OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System configured memory clock speed in MHz. View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 9 } + + memoryRatedSpeed OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "System rated memory clock speed in MB/s. View as a table and not as + individual entries for consistent results." + ::= { systemMemoryVpdEntry 10 } + + -- ******************************************************************************** + -- Users IMM2-only + -- ******************************************************************************** + -- + users OBJECT IDENTIFIER ::= { monitors 6 } + + -- ******************************************************************************** + -- IMM Users IMM2-only + -- ******************************************************************************** + -- + immUsers OBJECT IDENTIFIER ::= { users 1 } + + currentlyLoggedInTable OBJECT-TYPE + SYNTAX SEQUENCE OF CurrentlyLoggedInEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of IMM users currently logged in." + ::= { immUsers 1 } + + currentlyLoggedInEntry OBJECT-TYPE + SYNTAX CurrentlyLoggedInEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "IMM users currently logged in entries." + INDEX { currentlyLoggedInEntryIndex } + ::= { currentlyLoggedInTable 1 } + + CurrentlyLoggedInEntry ::= SEQUENCE { + currentlyLoggedInEntryIndex INTEGER, + currentlyLoggedInEntryUserId OCTET STRING, + currentlyLoggedInEntryAccMethod OCTET STRING + } + + currentlyLoggedInEntryIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for IMM users currently logged in." + + ::= { currentlyLoggedInEntry 1 } + + currentlyLoggedInEntryUserId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name for IMM users currently logged in." + ::= { currentlyLoggedInEntry 2 } + + currentlyLoggedInEntryAccMethod OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Access method for IMM users currently logged in." + + ::= { currentlyLoggedInEntry 3 } + + + -- ******************************************************************************** + -- LEDs IMM2-only + -- ******************************************************************************** + leds OBJECT IDENTIFIER ::= { monitors 8 } + + + identityLED OBJECT-TYPE + SYNTAX INTEGER { + off(0), + on(1), + blinking(2), + notAvailable(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates whether the front panel identity LED is on,off, + or blinking and allows user to change it." + + ::= { leds 1 } + + allLEDsTable OBJECT-TYPE + SYNTAX SEQUENCE OF AllLEDsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of LEDs detailed information." + ::= { leds 2 } + + allLEDsEntry OBJECT-TYPE + SYNTAX AllLEDsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "LEDs Details entry" + INDEX { ledIndex } + ::= { allLEDsTable 1 } + + AllLEDsEntry ::= SEQUENCE { + ledIndex INTEGER, + ledIdentifier INTEGER, + ledLabel DisplayString, + ledState INTEGER, + ledColor DisplayString + } + + ledIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LED index number. + For consistent results, view as a table and not as individual entries." + ::= { allLEDsEntry 1 } + + ledIdentifier OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique identifier for this LED + For consistent results, view as a table and not as individual entries." + ::= { allLEDsEntry 2 } + + + ledLabel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Text label for a LED. + For consistent results, view as a table and not as individual entries." + ::= { allLEDsEntry 4 } + + ledState OBJECT-TYPE + SYNTAX INTEGER { + off(0), + on(1), + blinking(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Text description which denotes color or on/off/blink state for a LED. + For consistent results, view as a table and not as individual entries." + ::= { allLEDsEntry 5 } + + ledColor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Color of this LED. + For consistent results, view as a table and not as individual entries." + ::= { allLEDsEntry 6 } + + informationLED OBJECT-TYPE + SYNTAX INTEGER { + off(0), + on(1), + blinking(2), + notAvailable(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates whether the front panel Information LED is on,off, + or blinking and allows user to change it. The only value the user is + allowed to enter is 0 for off. User may not turn this LED on or cause + it to blink." + + ::= { leds 3 } + + +-- *********************************************************************** +-- OS Failure screen capture IMM2-only +-- *********************************************************************** + osFailureCapture OBJECT IDENTIFIER ::= { monitors 9 } + + osFailureCaptureTftpServer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To save the OS Failure screen if one has been captured, + set the IP address or host name of the TFTP server where + the file should be transferred. The address must be entered in a + dotted decimal IP string (e.g. 9.37.44.2), or equivalent for IPv6." + ::= { osFailureCapture 1 } + + osFailureCaptureFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name of the saved capture file on the target system." + ::= { osFailureCapture 2 } + + osFailureCaptureSaveStart OBJECT-TYPE + SYNTAX INTEGER { + execute(1), + execute-nowait(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Start saving the configuration file to the specified target file + and system. The file will exist if the OS Hang or OS Loader + watchdog is enabled and been tripped. + Using execute will cause the SNMP client to wait for the save + operation to complete. + Using execute-nowait will not cause the SNMP client to wait for + the save to complete. Instead it will save the configuration in + the background. + + Note 1: Both osFailureCaptureTftpServer and + osFailureCaptureFileName must be set. + Note 2: Depending on the target, it might take up to several + seconds for the save operation to complete. + Note 3: Use osFailureCaptureStatus to confirm the status of + the last operation. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { osFailureCapture 3 } + + + osFailureCaptureSaveStatus OBJECT-TYPE + SYNTAX INTEGER { + success(0), + failed(1), + nocapture(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the last save operation which + was initiated through SNMP method. Returns nocapture(2) + if there is no OS Failure capture screen to save." + ::= { osFailureCapture 4 } + + -- ******************************************************************************** + -- Power Management + -- ******************************************************************************** + fuelGauge OBJECT IDENTIFIER ::= { monitors 10 } + + -- ******************************************************************************** + -- Fuel Gauge + -- ******************************************************************************** + fuelGaugeInformation OBJECT IDENTIFIER ::= { fuelGauge 1 } + + + fuelGaugePowerCappingPolicySetting OBJECT-TYPE + SYNTAX INTEGER { + noPowerLimit(0), + staticPowerLimit(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Power Capping Policy. + + No Power Limit - The maximum power limit will be determined by the active Power Redundancy policy. + + Static Power Limit - Sets the overall system power limit. In a situation where powering on a component + would cause the limit to be exceeded, the component would not be permitted to power on." + + ::= { fuelGaugeInformation 1 } + + fuelGaugeStaticPowerPcapSoftMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays power capping soft minimum value." + ::= { fuelGaugeInformation 2 } + + fuelGaugeStaticPowerPcapMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays power capping minimum value." + ::= { fuelGaugeInformation 3 } + + fuelGaugeStaticPowerPcapCurrentSetting OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field is used to display or set the current power capping value." + ::= { fuelGaugeInformation 4 } + + fuelGaugeStaticPowerPcapMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays power capping maximum value." + ::= { fuelGaugeInformation 5 } + + fuelGaugeStaticPowerPcapMode OBJECT-TYPE + SYNTAX INTEGER { + dc(0), + ac(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field is used to display or set the all Power Cap settings to AC or DC." + ::= { fuelGaugeInformation 6 } + + fuelGaugeSystemMaxPower OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays the system maximum power available value." + ::= { fuelGaugeInformation 7 } + + fuelGaugePowerRemaining OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays power remaining value." + ::= { fuelGaugeInformation 8 } + + fuelGaugeTotalPowerAvaialble OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays the calculated total remaining power available value." + ::= { fuelGaugeInformation 9 } + + fuelGaugeTotalPowerInUse OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays total power in use value." + ::= { fuelGaugeInformation 10 } + + fuelGaugeTotalThermalOutput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays the total thermal output value calculated from the AC power in use." + ::= { fuelGaugeInformation 11 } + + fuelGaugePowerConsumptionCpu OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays the power consumption of the processors." + ::= { fuelGaugeInformation 12 } + + fuelGaugePowerConsumptionMemory OBJECT-TYPE + + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays the power consumption of the memory." + ::= { fuelGaugeInformation 13 } + + fuelGaugePowerConsumptionOther OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field displays the power consumption of other entities than processors and memory." + ::= { fuelGaugeInformation 15 } + + + -- ******************************************************************************** + -- Power Policy Table + -- ******************************************************************************** + powerPolicyInformation OBJECT IDENTIFIER ::= { fuelGauge 2 } + + powerPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerPolicyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Power Policy information for all power domains. Reading this + table information about the available power policies that can be + configured and which is currently selected. The powerPolicyActivate + object can also be SET to select which policy should be active." + ::= { powerPolicyInformation 1 } + + powerPolicyEntry OBJECT-TYPE + SYNTAX PowerPolicyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Power Policy Entry" + INDEX { powerPolicyIndex } + ::= { powerPolicyTable 1 } + + PowerPolicyEntry ::= SEQUENCE { + powerPolicyIndex INTEGER, + powerPolicyName OCTET STRING, + powerPolicyPwrSupplyFailureLimit INTEGER, + powerPolicyMaxPowerLimit INTEGER, + powerPolicyEstimatedUtilization INTEGER, + powerPolicyActivate INTEGER + } + + powerPolicyIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique idenitifier of a row in the powerPolicyTable." + ::= { powerPolicyEntry 1 } + + powerPolicyName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The short name of the power policy. The following are the possible + names and their detailed description: + + Power Module Redundancy + Intended for a single AC power source into the chassis + where each Power Module is on its own dedicated circuit. + Total allowed power draw is limited to one less than the + number of Power Modules when more than one Power Module is + present. One Power Module can fail without affecting blade + operation. Multiple Power Module failures can cause + the chassis to power off. Note that some blades may not be + allowed to power on if doing so would exceed the policy power + limit. + + Power Module Redundancy with Blade Throttling Allowed + Very similar to the Power Module Redundancy policy. This + policy allows you to draw more total power; however, capable + blades may be allowed to throttle down if one Power Module fails. + + Basic Power Management + Total allowed power is higher than other policies and is limited only + by the total power capacity of all the Power Modules up to the maximum + of chassis power rating. This is the least conservative approach, since + it does not provide any protection for AC power source or Power Module + failure. If any single power supply fails, blade and/or chassis + operation may be affected." + ::= { powerPolicyEntry 2 } + + powerPolicyPwrSupplyFailureLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of power supplies that can fail in a chassis + while still providing redundancy." + ::= { powerPolicyEntry 3 } + + powerPolicyMaxPowerLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum power available (in watts), based on the number of power modules and + the Power Management Policy setting." + ::= { powerPolicyEntry 4 } + + powerPolicyEstimatedUtilization OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The estimated utilization (as a percentage) based on current power usage." + ::= { powerPolicyEntry 5 } + + powerPolicyActivate OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When read, this object provides the status of this power policy. If the + value is enabled(1), it means this is the active power policy for the + associated domain. When set to a value of enabled(1), the power policy + will be made the active one for the associated domain. A set of disabled(0) + is not allowed. + + The SET may fail when the user goes from a less restrictive policy + to a more restrictive policy, e.g. no power management to redundant power + modules. + + This happens because the IMM might have allocated more power for components + in the less restrictive policy. Then if a user wants to go to a more restrictive + policy, the power available may be lower than what was already allocated. + + The SET should always succeed if a user goes from a more restrictive to + a less restrictive policy." + ::= { powerPolicyEntry 6 } + + -- ******************************************************************************** + -- Power Domain Power Trending + -- ******************************************************************************** + powerPowerTrending OBJECT IDENTIFIER ::= { fuelGauge 3 } + + powerTrendingPeriod OBJECT-TYPE + SYNTAX INTEGER { + lastHour(0), + last6Hours(1), + last12Hours(2), + last24Hours(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specify time period for power domain 1 power trending information + table view. + + NOTE: This time period should be configured before displaying the + following Power Trending Information table for Power Domain." + ::= { powerPowerTrending 1 } + + powerTrendingPowerType OBJECT-TYPE + SYNTAX INTEGER { + dc(0), + ac(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field is used to display or set the power type displayed in the Power Trending Table." + ::= { powerPowerTrending 2 } + + + -- ******************************************************************************** + -- Power Domain Power Trending Table + -- ******************************************************************************** + powerTrendingSampleTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerTrendingSampleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Power Domain 1 Power Trending Information." + ::= { powerPowerTrending 3 } + + powerTrendingSampleEntry OBJECT-TYPE + SYNTAX PowerTrendingSampleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Power Domain 1 Power Trending Sample entry." + INDEX { powerTrendingSampleIndex } + ::= { powerTrendingSampleTable 1 } + + PowerTrendingSampleEntry ::= SEQUENCE { + powerTrendingSampleIndex INTEGER, + powerTrendingSampleTimeStamp OCTET STRING, + powerTrendingSampleAve INTEGER, + powerTrendingSampleMin INTEGER, + powerTrendingSampleMax INTEGER + } + + powerTrendingSampleIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Power Trending Sample Table Index." + ::= { powerTrendingSampleEntry 1 } + + powerTrendingSampleTimeStamp OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Power Trending Sample Table Timestamp." + ::= { powerTrendingSampleEntry 2 } + + powerTrendingSampleAve OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Power Trending Table Average Power." + ::= { powerTrendingSampleEntry 3 } + + powerTrendingSampleMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Power Trending Table Minimum Power." + ::= { powerTrendingSampleEntry 4 } + + powerTrendingSampleMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Power Trending Table Maximum Power." + ::= { powerTrendingSampleEntry 5 } + + -- *********************************************************************** + -- Power Module IMM2-only + -- *********************************************************************** + powerModule OBJECT IDENTIFIER ::= { monitors 11 } + + powerNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The present number of rows in the power module table." + ::= { powerModule 1 } + + powerTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains power inventory information." + ::= { powerModule 2 } + + powerEntry OBJECT-TYPE + SYNTAX PowerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains parameters related to a power module inventory channel." + INDEX { powerIndex } + ::= { powerTable 1 } + + PowerEntry ::= + SEQUENCE { + powerIndex INTEGER (0..100), + powerFruName DisplayString, + powerPartNumber DisplayString, + powerFRUNumber DisplayString, + powerFRUSerialNumber DisplayString, + powerHealthStatus DisplayString + } + + powerIndex OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular power module inventory channel." + ::= { powerEntry 1 } + + powerFruName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "power module FRU name." + ::= { powerEntry 2 } + + powerPartNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "power module Part Number. View as a table and not as individual entries for consistent results." + ::= { powerEntry 3 } + + powerFRUNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "power module FRU Number. View as a table and not as individual entries for consistent results." + ::= { powerEntry 4 } + + powerFRUSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "power module Serial Number. View as a table and not as individual entries for consistent results." + ::= { powerEntry 5 } + + powerHealthStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the power module status." + ::= { powerEntry 6 } + + -- *********************************************************************** + -- Disk IMM2-only + -- *********************************************************************** + disks OBJECT IDENTIFIER ::= { monitors 12 } + + diskNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The present number of rows in the disk module table." + ::= { disks 1 } + + diskTable OBJECT-TYPE + SYNTAX SEQUENCE OF DiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains disk inventory information." + ::= { disks 2 } + + diskEntry OBJECT-TYPE + SYNTAX DiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains parameters related to a disk module inventory channel." + INDEX { diskIndex } + ::= { diskTable 1 } + + DiskEntry ::= + SEQUENCE { + diskIndex INTEGER (0..100), + diskFruName DisplayString, + diskHealthStatus DisplayString + } + + diskIndex OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular + disk module inventory channel." + ::= { diskEntry 1 } + + diskFruName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "disk module FRU name." + ::= { diskEntry 2 } + + diskHealthStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the disk module status." + ::= { diskEntry 3 } + + -- ******************************************************************************** + -- Local Storage IMM2-only + -- ******************************************************************************** + + localStorage OBJECT IDENTIFIER ::= { monitors 13 } + + -- ******************************************************************************** + -- RAID Group IMM2-only. Only the platform supports the OOB RAID function and + -- RAID cards, this table can be queried. + -- ******************************************************************************** + + raid OBJECT IDENTIFIER ::= { localStorage 1 } + + -- ******************************************************************************** + -- Physical Resource: The properties of RAID Controller IMM2-only + -- ******************************************************************************** + + raidOOBCapable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION "If raidOOBCapable is disabled, all the RAID information is not available." + ::= { raid 1 } + + raidControllerTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidControllerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Local Storage RAID Controller information." + ::= { raid 2 } + + raidControllerEntry OBJECT-TYPE + SYNTAX RaidControllerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Controller Entry." + INDEX { raidCtrlIndex } + ::= { raidControllerTable 1 } + + RaidControllerEntry ::= SEQUENCE { + raidCtrlIndex INTEGER, + raidCtrlName DisplayString, + raidCtrlVPDProdName DisplayString, + raidCtrlFWPkgVersion DisplayString, + raidCtrlBatBCK INTEGER, + raidCtrlVPDManufacture DisplayString, + raidCtrlVPDUUID DisplayString, + raidCtrlVPDMachineType DisplayString, + raidCtrlVPDModel DisplayString, + raidCtrlVPDSerialNo DisplayString, + raidCtrlVPDFRUNo DisplayString, + raidCtrlVPDPartNo DisplayString, + raidCtrlCacheMdlStatus DisplayString, + raidCtrlCacheMdlMemSize DisplayString, + raidCtrlCacheMdlSerialNo DisplayString, + raidCtrlPCISlotNo INTEGER, + raidCtrlPCIBusNo INTEGER, + raidCtrlPCIDevNo INTEGER, + raidCtrlPCIFuncNo INTEGER, + raidCtrlPCIDevID DisplayString, + raidCtrlPCISubDevID DisplayString, + raidCtrlBatBCKProdName DisplayString, + raidCtrlBatBCKManufacture DisplayString, + raidCtrlBatBCKStatus DisplayString, + raidCtrlBatBCKType DisplayString, + raidCtrlBatBCKChem DisplayString, + raidCtrlBatBCKSerialNo DisplayString, + raidCtrlBatBCKChgCap DisplayString, + raidCtrlBatBCKDgnChgCap DisplayString, + raidCtrlBatBCKCrtTemp DisplayString, + raidCtrlBatBCKFirmware DisplayString, + raidCtrlBatBCKDgnVoltage DisplayString, + raidCtrlBatBCKVoltage DisplayString, + raidCtrlBatCurrent DisplayString, + raidCtrlFWNames DisplayString, + raidCtrlPortDetails DisplayString, + raidCtrlStoragepools DisplayString, + raidCtrlDrives DisplayString + } + + raidCtrlIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID controller." + ::= { raidControllerEntry 1 } + + raidCtrlName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to offer a name of one RAID controller." + ::= { raidControllerEntry 2 } + + raidCtrlVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of a particular RAID controller." + ::= { raidControllerEntry 3 } + + raidCtrlFWPkgVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Firmware Package Version of a particular RAID controller." + ::= { raidControllerEntry 4 } + + raidCtrlBatBCK OBJECT-TYPE + SYNTAX INTEGER { + uninstalled(0), + installed(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION "Whether Battery Backup of a particular RAID controller is installed." + ::= { raidControllerEntry 5 } + + + raidCtrlVPDManufacture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacture of a particular RAID controller." + ::= { raidControllerEntry 6 } + + raidCtrlVPDUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Device ID (UUID) of a particular RAID controller." + ::= { raidControllerEntry 7 } + + raidCtrlVPDMachineType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model Type/Model of a particular RAID controller." + ::= { raidControllerEntry 8 } + + raidCtrlVPDModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model Type/Model of a particular RAID controller." + ::= { raidControllerEntry 9 } + + raidCtrlVPDSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial Number of a particular RAID controller." + ::= { raidControllerEntry 10 } + + raidCtrlVPDFRUNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FRU Number of a particular RAID controller." + ::= { raidControllerEntry 11 } + + raidCtrlVPDPartNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Part Number of a particular RAID controller." + ::= { raidControllerEntry 12 } + + raidCtrlCacheMdlStatus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Cache Model Status of a particular RAID controller." + ::= { raidControllerEntry 13 } + + raidCtrlCacheMdlMemSize OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Cache Model Memory Size of a particular RAID controller." + ::= { raidControllerEntry 14 } + + raidCtrlCacheMdlSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Cache Model Serial Number of a particular RAID controller." + ::= { raidControllerEntry 15 } + + raidCtrlPCISlotNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Slot Number of a particular RAID controller." + ::= { raidControllerEntry 16 } + + raidCtrlPCIBusNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Bus Number of a particular RAID controller." + ::= { raidControllerEntry 17 } + + raidCtrlPCIDevNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device Number of a particular RAID controller." + ::= { raidControllerEntry 18 } + + raidCtrlPCIFuncNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Function Number of a particular RAID controller." + ::= { raidControllerEntry 19 } + + raidCtrlPCIDevID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device ID of a particular RAID controller." + ::= { raidControllerEntry 20 } + + raidCtrlPCISubDevID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Device ID of a particular RAID controller." + ::= { raidControllerEntry 21 } + + raidCtrlBatBCKProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 22 } + + raidCtrlBatBCKManufacture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacture of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 23 } + + raidCtrlBatBCKStatus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Status of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 24 } + + raidCtrlBatBCKType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Battery Type of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 25 } + + raidCtrlBatBCKChem OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Chemistry of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 26 } + + raidCtrlBatBCKSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial Number of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 27 } + + raidCtrlBatBCKChgCap OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Charge Capacity of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 28 } + + raidCtrlBatBCKFirmware OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Firmware Info of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 29 } + + raidCtrlBatBCKDgnVoltage OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Designed Voltage of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 30 } + + raidCtrlBatBCKVoltage OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Voltage of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 31 } + + raidCtrlBatCurrent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Current of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 32 } + + raidCtrlBatBCKDgnChgCap OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Design Charge Capacity of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 33 } + + raidCtrlBatBCKCrtTemp OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Current degree Celsius temperature of Battery Backup of a particular RAID controller." + ::= { raidControllerEntry 34 } + + raidCtrlFWNames OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "All the Firmware Names of a particular RAID controller." + ::= { raidControllerEntry 35 } + + raidCtrlPortDetails OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "All the Port Details of a particular RAID controller, including Port Address and Port Controller Type." + ::= { raidControllerEntry 36 } + + raidCtrlStoragepools OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The storage pools list of a particular RAID controller." + ::= { raidControllerEntry 37 } + + raidCtrlDrives OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Physical drives list of a particular RAID controller." + ::= { raidControllerEntry 38 } + + -- ******************************************************************************** + -- Physical Resource: The properties of RAID Driver IMM2-only + -- ******************************************************************************** + + raidDriveTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidDriveEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Logic Storage RAID Drive information." + ::= { raid 3 } + + raidDriveEntry OBJECT-TYPE + SYNTAX RaidDriveEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Drive Entry." + INDEX { raidDriveIndex } + ::= { raidDriveTable 1 } + + RaidDriveEntry ::= SEQUENCE { + raidDriveIndex INTEGER, + raidDriveName DisplayString, + raidDriveVPDProdName DisplayString, + raidDriveState DisplayString, + raidDriveSlotNo INTEGER, + raidDriveDeviceID DisplayString, + raidDriveDiskType DisplayString, + raidDriveMediaType DisplayString, + raidDriveSpeed DisplayString, + raidDriveCurTemp DisplayString, + raidDriveHealthStataus DisplayString, + raidDriveCapacity DisplayString, + raidDriveVPDManufacture DisplayString, + raidDriveEnclosureID DisplayString, + raidDriveVPDMachineType DisplayString, + raidDriveVPDModel DisplayString, + raidDriveVPDSerialNo DisplayString, + raidDriveVPDFRUNo DisplayString, + raidDriveVPDPartNo DisplayString, + raidDriveFWNames DisplayString, + raidDriveRotationRate DisplayString, + raidDriveMediaErrCnt Gauge, + raidDriveOtherErrCnt Gauge, + raidDrivePredFailCnt Gauge, + raidDriveRemainingLife DisplayString + } + + raidDriveIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID drive." + ::= { raidDriveEntry 1 } + + raidDriveName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "A particular drive name." + ::= { raidDriveEntry 2 } + + raidDriveVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of a particular RAID drive." + ::= { raidDriveEntry 3 } + + raidDriveState OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The State of a particular RAID drive." + ::= { raidDriveEntry 4 } + + raidDriveSlotNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Slot No. of a particular RAID drive." + ::= { raidDriveEntry 5 } + + raidDriveDeviceID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Device ID of a particular RAID drive." + ::= { raidDriveEntry 6 } + + raidDriveDiskType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Disk Type of a particular RAID drive." + ::= { raidDriveEntry 7 } + + raidDriveMediaType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Media Type of a particular RAID drive." + ::= { raidDriveEntry 8 } + + raidDriveSpeed OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Speed of a particular RAID drive." + ::= { raidDriveEntry 9 } + + raidDriveCurTemp OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Current degree Celsius temperature of a particular RAID drive." + ::= { raidDriveEntry 10 } + + raidDriveHealthStataus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Health Status of a particular RAID drive." + ::= { raidDriveEntry 11 } + + raidDriveCapacity OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Capacity of a particular RAID drive." + ::= { raidDriveEntry 12 } + + raidDriveVPDManufacture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacture of a particular RAID drive." + ::= { raidDriveEntry 13 } + + raidDriveEnclosureID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Enclosure ID of a particular RAID drive." + ::= { raidDriveEntry 14 } + + raidDriveVPDMachineType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Machine type of a particular RAID drive." + ::= { raidDriveEntry 15 } + + raidDriveVPDModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model of a particular RAID drive." + ::= { raidDriveEntry 16 } + + raidDriveVPDSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial No. of a particular RAID drive." + ::= { raidDriveEntry 17 } + + raidDriveVPDFRUNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FRU No. of a particular RAID drive." + ::= { raidDriveEntry 18 } + + raidDriveVPDPartNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Part No. of a particular RAID drive." + ::= { raidDriveEntry 19 } + + raidDriveFWNames OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "All the Firmware Names of a particular RAID drive." + ::= { raidDriveEntry 20 } + + raidDriveRotationRate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Rotation Rate of a particular RAID drive." + ::= { raidDriveEntry 21 } + + raidDriveMediaErrCnt OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Media Error Count of a particular RAID drive." + ::= { raidDriveEntry 22 } + + raidDriveOtherErrCnt OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Other Error Count of a particular RAID drive." + ::= { raidDriveEntry 23 } + + raidDrivePredFailCnt OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Predication Fail Count of a particular RAID drive." + ::= { raidDriveEntry 24 } + + raidDriveRemainingLife OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Remaining life of a particular RAID drive. It is available only for SSD Drive." + ::= { raidDriveEntry 25 } + + -- ************************************************************************************* + -- Physical Resource: The properties of RAID Controller Firmwares information IMM2-only + -- ************************************************************************************* + + raidControllerFirmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidControllerFirmwareEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Logic Storage RAID Controller Firmware information." + ::= { raid 4 } + + raidControllerFirmwareEntry OBJECT-TYPE + SYNTAX RaidControllerFirmwareEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Firmware Entry." + INDEX { raidControllerFirmwareIndex } + ::= { raidControllerFirmwareTable 1 } + + RaidControllerFirmwareEntry ::= SEQUENCE { + raidControllerFirmwareIndex INTEGER, + raidControllerFirmwareName DisplayString, + raidControllerFirmwareCtrlName DisplayString, + raidControllerFirmwareDescription DisplayString, + raidControllerFirmwareManufacture DisplayString, + raidControllerFirmwareVersion DisplayString, + raidControllerFirmwareReleaseDate DisplayString + } + + raidControllerFirmwareIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID Controller firmware." + ::= { raidControllerFirmwareEntry 1 } + + raidControllerFirmwareName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Name of a particular RAID Controller firmware." + ::= { raidControllerFirmwareEntry 2 } + + raidControllerFirmwareCtrlName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The controller name of the firmwares." + ::= { raidControllerFirmwareEntry 3 } + + raidControllerFirmwareDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Description of a particular RAID Controller firmware." + ::= { raidControllerFirmwareEntry 4 } + + raidControllerFirmwareManufacture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacture of a particular RAID Controller firmware." + ::= { raidControllerFirmwareEntry 5 } + + raidControllerFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Version of a particular RAID Controller firmware." + ::= { raidControllerFirmwareEntry 6 } + + raidControllerFirmwareReleaseDate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Release Date of a particular RAID Controller firmware." + ::= { raidControllerFirmwareEntry 7 } + + + -- ************************************************************************************* + -- Physical Resource: The properties of RAID Drive Firmwares information IMM2-only + -- ******************************************************************************** + + raidDriveFirmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidDriveFirmwareEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Logic Storage RAID Drive Firmware information." + ::= { raid 5 } + + raidDriveFirmwareEntry OBJECT-TYPE + SYNTAX RaidDriveFirmwareEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Drive Firmware Entry." + INDEX { raidDriveFirmwareIndex } + ::= { raidDriveFirmwareTable 1 } + + RaidDriveFirmwareEntry ::= SEQUENCE { + raidDriveFirmwareIndex INTEGER, + raidDriveFirmwareName DisplayString, + raidDriveFirmwareDriveName DisplayString, + raidDriveFirmwareDescription DisplayString, + raidDriveFirmwareManufacture DisplayString, + raidDriveFirmwareVersion DisplayString, + raidDriveFirmwareReleaseDate DisplayString + } + + raidDriveFirmwareIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID Drive firmware." + ::= { raidDriveFirmwareEntry 1 } + + raidDriveFirmwareName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Name of a particular RAID Drive firmware." + ::= { raidDriveFirmwareEntry 2 } + + raidDriveFirmwareDriveName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The drive name of the firmwares." + ::= { raidDriveFirmwareEntry 3 } + + raidDriveFirmwareDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Description of a particular RAID Drive firmware." + ::= { raidDriveFirmwareEntry 4 } + + raidDriveFirmwareManufacture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacture of a particular RAID Drive firmware." + ::= { raidDriveFirmwareEntry 5 } + + raidDriveFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Version of a particular RAID Drive firmware." + ::= { raidDriveFirmwareEntry 6 } + + raidDriveFirmwareReleaseDate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Release Date of a particular RAID Drive firmware." + ::= { raidDriveFirmwareEntry 7 } + + + -- ******************************************************************************** + -- Physical Resource: The properties of RAID Storagepool information IMM2-only + -- ******************************************************************************** + + raidStoragepoolTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidStoragepoolEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Logic Storage RAID Storagepool information." + ::= { raid 6 } + + raidStoragepoolEntry OBJECT-TYPE + SYNTAX RaidStoragepoolEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Storagepool Entry." + INDEX { raidStoragepoolIndex } + ::= { raidStoragepoolTable 1 } + + RaidStoragepoolEntry ::= SEQUENCE { + raidStoragepoolIndex INTEGER, + raidStoragepoolName DisplayString, + raidStoragepoolControllerName DisplayString, + raidStoragepoolState DisplayString, + raidStoragepoolCapacity DisplayString, + raidStoragepoolVols DisplayString, + raidStoragepoolDrives DisplayString + } + + raidStoragepoolIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID storagepool." + ::= { raidStoragepoolEntry 1 } + + raidStoragepoolName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The name of a particular RAID storagepool." + ::= { raidStoragepoolEntry 2 } + + raidStoragepoolControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The controller name of the storagepool." + ::= { raidStoragepoolEntry 3 } + + raidStoragepoolState OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The RAID State of a particular RAID storagepool." + ::= { raidStoragepoolEntry 4 } + + raidStoragepoolCapacity OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Capacity of a particular RAID storagepool, including total capacity and free capacity." + ::= { raidStoragepoolEntry 5 } + + raidStoragepoolVols OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The volumes list of a particular RAID storagepool." + ::= { raidStoragepoolEntry 6 } + + raidStoragepoolDrives OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The physical drives list of a particular RAID storagepool." + ::= { raidStoragepoolEntry 7 } + + -- ******************************************************************************** + -- Physical Resource: The properties of RAID Volume information IMM2-only + -- ******************************************************************************** + + raidVolumeTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidVolumeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Logic Storage RAID Volume information." + ::= { raid 7 } + + raidVolumeEntry OBJECT-TYPE + SYNTAX RaidVolumeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID Volume Entry." + INDEX { raidVolumeIndex } + ::= { raidVolumeTable 1 } + + RaidVolumeEntry ::= SEQUENCE { + raidVolumeIndex INTEGER, + raidVolumeName DisplayString, + raidVolumeControllerName DisplayString, + raidVolumeStatus DisplayString, + raidVolumeCapacity DisplayString, + raidVolumeStripSize DisplayString, + raidVolumeBootable DisplayString + } + + raidVolumeIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID volume." + ::= { raidVolumeEntry 1 } + + raidVolumeName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Name of a particular RAID volume." + ::= { raidVolumeEntry 2 } + + raidVolumeControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The controller name of the volume." + ::= { raidVolumeEntry 3 } + + raidVolumeStatus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Status of a particular RAID volume." + ::= { raidVolumeEntry 4 } + + raidVolumeCapacity OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Capacity of a particular RAID volume." + ::= { raidVolumeEntry 5 } + + raidVolumeStripSize OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The strip size of the RAID volume." + ::= { raidVolumeEntry 6 } + + raidVolumeBootable OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "Whether the RAID volume is bootable." + ::= { raidVolumeEntry 7 } + + -- *********************************************************************** + -- FlashDIMM IMM2-only + -- *********************************************************************** + + flashdimm OBJECT IDENTIFIER ::= { localStorage 2 } + + fdNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The present number of rows in the disk flashdimm table." + ::= { flashdimm 1 } + + fdTable OBJECT-TYPE + SYNTAX SEQUENCE OF FdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains flashdimm inventory information." + ::= { flashdimm 2 } + + fdEntry OBJECT-TYPE + SYNTAX FdEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains parameters related to a flashdimm module inventory channel." + INDEX { fdIndex } + ::= { fdTable 1 } + + FdEntry ::= + SEQUENCE { + fdIndex INTEGER (1..100), + fdFruName DisplayString, + fdHealthStatus DisplayString, + fdOpState DisplayString, + fdCapacity DisplayString, + fdModelType DisplayString, + fdPartNum DisplayString, + fdFruSerialNum DisplayString, + fdManufID DisplayString, + fdTemp DisplayString, + fdWarrWrites DisplayString, + fdWriteEndurance DisplayString, + fdFwLevel DisplayString + } + + fdIndex OBJECT-TYPE + SYNTAX INTEGER (1..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular + flashdimm module inventory channel." + ::= { fdEntry 1 } + + fdFruName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "flashdimm module FRU name." + ::= { fdEntry 2 } + + fdHealthStatus OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module health status." + ::= { fdEntry 3 } + + fdOpState OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module operation status." + ::= { fdEntry 4 } + + fdCapacity OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module capacity." + ::= { fdEntry 5 } + + fdModelType OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module type." + ::= { fdEntry 6 } + + fdPartNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module part number." + ::= { fdEntry 7 } + + fdFruSerialNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module serial number." + ::= { fdEntry 8 } + + fdManufID OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module manufacture id." + ::= { fdEntry 9 } + + fdTemp OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module temperature." + ::= { fdEntry 10 } + + fdWarrWrites OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module warranty writes." + ::= { fdEntry 11 } + + fdWriteEndurance OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module write endurance." + ::= { fdEntry 12 } + + fdFwLevel OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..31)) + ACCESS read-only + STATUS mandatory + DESCRIPTION "A description of the flashdimm module status." + ::= { fdEntry 13 } + + -- ******************************************************************************** + -- Adapter IMM2-only + -- ******************************************************************************** + + adapters OBJECT IDENTIFIER ::= { monitors 14 } + + + -- ************************************************************************************* + -- Physical Resource: The properties of Adapters generic information IMM2-only + -- ******************************************************************************** + + adapterOOBCapable OBJECT-TYPE + SYNTAX INTEGER{ + disable(0), + enable(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION "If adapterOOBCapable is disabled, all the adapter information is not available." + ::= { adapters 1 } + + adapterGenericTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterGenericEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of all adapters generic information" + ::= { adapters 2 } + + adapterGenericEntry OBJECT-TYPE + SYNTAX AdapterGenericEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Adapters generic information entry." + INDEX { adapterGenericIndex } + ::= { adapterGenericTable 1 } + + AdapterGenericEntry ::= SEQUENCE { + adapterGenericIndex INTEGER, + adapterGenericVPDProdName DisplayString, + adapterGenericSlotNo INTEGER, + adapterGenericLocation DisplayString, + adapterGenericCardInterface DisplayString + } + + adapterGenericIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular PCI adapter." + ::= { adapterGenericEntry 1 } + + adapterGenericVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of a particular PCI adapter. And if the Product Name contains PFA, PFA is in HEX." + ::= { adapterGenericEntry 2 } + + adapterGenericSlotNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This Slot No. of a particular PCI adapter" + ::= { adapterGenericEntry 3 } + + adapterGenericLocation OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Location of a particular PCI adapter." + ::= { adapterGenericEntry 4 } + + adapterGenericCardInterface OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Card Interface of a particular PCI adapter." + ::= { adapterGenericEntry 5 } + + -- ************************************************************************************* + -- Firmware Information: The properties of Network Function information IMM2-only + -- ******************************************************************************** + + adapterNetworkFunctionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterNetworkFunctionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Network Function information." + ::= { adapters 3 } + + adapterNetworkFunctionEntry OBJECT-TYPE + SYNTAX AdapterNetworkFunctionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Network function information entry." + INDEX { adapterNetworkFunctionIndex } + ::= { adapterNetworkFunctionTable 1 } + + AdapterNetworkFunctionEntry ::= SEQUENCE { + adapterNetworkFunctionIndex INTEGER, + adapterNetworkFunctionNetworkVPDProdName DisplayString, + adapterNetworkFunctionAdapterVPDProdName DisplayString, + adapterNetworkFunctionNetworkVPDManufacturer DisplayString, + adapterNetworkFunctionNetworkVPDUUID DisplayString, + adapterNetworkFunctionNetworkVPDModel DisplayString, + adapterNetworkFunctionNetworkVPDSerialNo DisplayString, + adapterNetworkFunctionNetworkVPDFRUNo DisplayString, + adapterNetworkFunctionNetworkVPDPartNo DisplayString, + adapterNetworkFunctionFoDUID DisplayString, + adapterNetworkFunctionSupportHotPlug INTEGER, + adapterNetworkFunctionPhysicalPortNumber INTEGER, + adapterNetworkFunctionMaxPortNumber INTEGER, + adapterNetworkFunctionPortNumber INTEGER, + adapterNetworkFunctionMaxDataWidth INTEGER, + adapterNetworkFunctionPackageType DisplayString, + adapterNetworkFunctionPCIBusNo INTEGER, + adapterNetworkFunctionPCIDevNo INTEGER, + adapterNetworkFunctionPCIFuncNo INTEGER, + adapterNetworkFunctionPCIVendorId DisplayString, + adapterNetworkFunctionPCIDevId DisplayString, + adapterNetworkFunctionPCIDevType DisplayString, + adapterNetworkFunctionPCIRevId DisplayString, + adapterNetworkFunctionPCISubVendorId DisplayString, + adapterNetworkFunctionPCISubDevId DisplayString, + adapterNetworkFunctionPCISlotDesignation DisplayString + } + + adapterNetworkFunctionIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular network function." + ::= { adapterNetworkFunctionEntry 1 } + + adapterNetworkFunctionNetworkVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name and PFA of a particular network function and PFA is in HEX." + ::= { adapterNetworkFunctionEntry 2 } + + adapterNetworkFunctionAdapterVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of a particular adapter providing this function. And if the Product Name contains PFA, PFA is in HEX." + ::= { adapterNetworkFunctionEntry 3 } + + adapterNetworkFunctionNetworkVPDManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacturer of a particular network function." + ::= { adapterNetworkFunctionEntry 4 } + + adapterNetworkFunctionNetworkVPDUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The UUID of a particular network function." + ::= { adapterNetworkFunctionEntry 5 } + + adapterNetworkFunctionNetworkVPDModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model of a particular network function." + ::= { adapterNetworkFunctionEntry 6 } + + adapterNetworkFunctionNetworkVPDSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial No. of a particular network function." + ::= { adapterNetworkFunctionEntry 7 } + + adapterNetworkFunctionNetworkVPDFRUNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FRU No. of a particular network function." + ::= { adapterNetworkFunctionEntry 8 } + + adapterNetworkFunctionNetworkVPDPartNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Part No. of a particular network function." + ::= { adapterNetworkFunctionEntry 9 } + + adapterNetworkFunctionFoDUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FoD UID of a particular network function." + ::= { adapterNetworkFunctionEntry 10 } + + adapterNetworkFunctionSupportHotPlug OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION "Indicates whether the network function supports hot plug." + ::= { adapterNetworkFunctionEntry 11 } + + adapterNetworkFunctionPhysicalPortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Physical Port Number of a particular network function." + ::= { adapterNetworkFunctionEntry 12 } + + adapterNetworkFunctionMaxPortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Max Port Number of a particular network function." + ::= { adapterNetworkFunctionEntry 13 } + + adapterNetworkFunctionPortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Port Number of a particular network function." + ::= { adapterNetworkFunctionEntry 14 } + + adapterNetworkFunctionMaxDataWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Maximum Data Width in Gbps of a particular network funtion." + ::= { adapterNetworkFunctionEntry 15 } + + adapterNetworkFunctionPackageType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Package Type of a particular network function." + ::= { adapterNetworkFunctionEntry 16 } + + adapterNetworkFunctionPCIBusNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Bus No. of a particular network function." + ::= { adapterNetworkFunctionEntry 17 } + + adapterNetworkFunctionPCIDevNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device No. of a particular network function." + ::= { adapterNetworkFunctionEntry 18 } + + adapterNetworkFunctionPCIFuncNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Function No. of a particular network function." + ::= { adapterNetworkFunctionEntry 19 } + + adapterNetworkFunctionPCIVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Vendor ID of a particular network function." + ::= { adapterNetworkFunctionEntry 20 } + + adapterNetworkFunctionPCIDevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device ID of a particular network function." + ::= { adapterNetworkFunctionEntry 21 } + + adapterNetworkFunctionPCIDevType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device Type of a particular network function." + ::= { adapterNetworkFunctionEntry 22 } + + adapterNetworkFunctionPCIRevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Revision ID of a particular network function." + ::= { adapterNetworkFunctionEntry 23 } + + adapterNetworkFunctionPCISubVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Vendor ID of a particular network function." + ::= { adapterNetworkFunctionEntry 24 } + + adapterNetworkFunctionPCISubDevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Device ID of a particular network function." + ::= { adapterNetworkFunctionEntry 25 } + + adapterNetworkFunctionPCISlotDesignation OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Slot Designation of a particular network function." + ::= { adapterNetworkFunctionEntry 26 } + + -- ************************************************************************************* + -- Physical Resource: The Port information of Network Function IMM2-only + -- ******************************************************************************** + + adapterNetworkPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterNetworkPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Ports of Network Function information." + ::= { adapters 4 } + + adapterNetworkPortEntry OBJECT-TYPE + SYNTAX AdapterNetworkPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Ports of Network Function information entry." + INDEX { adapterNetworkPortIndex } + ::= { adapterNetworkPortTable 1 } + + AdapterNetworkPortEntry ::= SEQUENCE { + adapterNetworkPortIndex INTEGER, + adapterNetworkPortNetworkVPDProdName DisplayString, + adapterNetworkPortPhyPortNo INTEGER, + adapterNetworkPortPhyPortConnector DisplayString, + adapterNetworkPortPhyPortBurnedinAddress DisplayString, + adapterNetworkPortNo INTEGER, + adapterNetworkPortMaxDataSize Gauge, + adapterNetworkPortPermanentAddress DisplayString, + adapterNetworkPortNetworkAddress DisplayString, + adapterNetworkPortLinkTechnology DisplayString, + adapterNetworkPortvNICMode DisplayString, + adapterNetworkPortMaxSpeed DisplayString, + adapterNetworkPortProtocolType DisplayString, + adapterNetworkPortCurrentProtocol DisplayString, + adapterNetworkPortFCoEPermanentAddress DisplayString, + adapterNetworkPortFCoENetworkAddress DisplayString, + adapterNetworkPortConnectionType DisplayString, + adapterNetworkPortRole DisplayString, + adapterNetworkPortTargetRelativePortNo Gauge, + adapterNetworkPortPhyPortLinkStatus DisplayString, + adapterNetworkPortPhyPortLinkSpeed DisplayString + } + + adapterNetworkPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular network port." + ::= { adapterNetworkPortEntry 1 } + + adapterNetworkPortNetworkVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name and PFA of the network function for this port and PFA is in HEX." + ::= { adapterNetworkPortEntry 2 } + + adapterNetworkPortPhyPortNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Physical Port No. in the network function for this port." + ::= { adapterNetworkPortEntry 3 } + + adapterNetworkPortPhyPortConnector OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Physical Port Connector Layout in the network function for this port." + ::= { adapterNetworkPortEntry 4 } + + adapterNetworkPortPhyPortBurnedinAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Physical Permanent (burned-In) Address of a particular network port." + ::= { adapterNetworkPortEntry 5 } + + adapterNetworkPortNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Port No. of this network port in the network function." + ::= { adapterNetworkPortEntry 6 } + + adapterNetworkPortMaxDataSize OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Port Max Data Size of this network port in the network function." + ::= { adapterNetworkPortEntry 7 } + + adapterNetworkPortPermanentAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Permanent Address of a particular network port." + ::= { adapterNetworkPortEntry 8 } + + adapterNetworkPortNetworkAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Network Address of a particular network port." + ::= { adapterNetworkPortEntry 9 } + + adapterNetworkPortLinkTechnology OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Link Technology of a particular network port." + ::= { adapterNetworkPortEntry 10 } + + adapterNetworkPortvNICMode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "If the logical port vNIC mode is Virtual Fabric mode, Switch Independent mode, + or Unified Fabric Protocol mode, this column returns 1(enabled), otherwise, the columen + returns 0(disabled)" + ::= { adapterNetworkPortEntry 11 } + + adapterNetworkPortMaxSpeed OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Maximum Bandwidth in Gbps of a particular network port." + ::= { adapterNetworkPortEntry 12 } + + adapterNetworkPortProtocolType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Protocol Type of a particular network port." + ::= { adapterNetworkPortEntry 13 } + + adapterNetworkPortCurrentProtocol OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Current Work Protocol of a particular network port." + ::= { adapterNetworkPortEntry 14 } + + adapterNetworkPortFCoEPermanentAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FCoE Permanent Address of a particular network port." + ::= { adapterNetworkPortEntry 15 } + + adapterNetworkPortFCoENetworkAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FCoE Network Address of a particular network port." + ::= { adapterNetworkPortEntry 16 } + + adapterNetworkPortConnectionType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Connection Type of a particular network port if its current work protocol is FC or FCoE." + ::= { adapterNetworkPortEntry 17 } + + adapterNetworkPortRole OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Port Role of a particular network port if its current work protocol is FC or FCoE." + ::= { adapterNetworkPortEntry 18 } + + adapterNetworkPortTargetRelativePortNo OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Target Relative Port No. of a particular network port if its current work protocol is FC or FCoE." + ::= { adapterNetworkPortEntry 19 } + + adapterNetworkPortPhyPortLinkStatus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION " The Physical Port Link Status in the network function for this port." + ::= { adapterNetworkPortEntry 20 } + + adapterNetworkPortPhyPortLinkSpeed OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION " The Physical Port Link Speed in the network function for this port. " + ::= { adapterNetworkPortEntry 21 } + + -- ************************************************************************************* + -- Physical Resource: The properties of GPU Function information IMM2-only + -- ******************************************************************************** + + adapterGPUFunctionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterGPUFunctionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of GPU Function information." + ::= { adapters 5 } + + adapterGPUFunctionEntry OBJECT-TYPE + SYNTAX AdapterGPUFunctionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "GPU function information entry." + INDEX { adapterGPUFunctionIndex } + ::= { adapterGPUFunctionTable 1 } + + AdapterGPUFunctionEntry ::= SEQUENCE { + adapterGPUFunctionIndex INTEGER, + adapterGPUFunctionGpuVPDProdName DisplayString, + adapterGPUFunctionAdapterVPDProdName DisplayString, + adapterGPUFunctionGpuVPDManufacturer DisplayString, + adapterGPUFunctionGpuVPDUUID DisplayString, + adapterGPUFunctionGpuVPDModel DisplayString, + adapterGPUFunctionGpuVPDSerialNo DisplayString, + adapterGPUFunctionGpuVPDFRUNo DisplayString, + adapterGPUFunctionGpuVPDPartNo DisplayString, + adapterGPUFunctionFoDUID DisplayString, + adapterGPUFunctionSupportHotPlug INTEGER, + adapterGPUFunctionVideoMemorySize DisplayString, + adapterGPUFunctionVideoMemoryType DisplayString, + adapterGPUFunctionChipNumber INTEGER, + adapterGPUFunctionMaxDataWidth INTEGER, + adapterGPUFunctionPackageType DisplayString, + adapterGPUFunctionPCIBusNo INTEGER, + adapterGPUFunctionPCIDevNo INTEGER, + adapterGPUFunctionPCIFuncNo INTEGER, + adapterGPUFunctionPCIVendorId DisplayString, + adapterGPUFunctionPCIDevId DisplayString, + adapterGPUFunctionPCIDevType DisplayString, + adapterGPUFunctionPCIRevId DisplayString, + adapterGPUFunctionPCISubVendorId DisplayString, + adapterGPUFunctionPCISubDevId DisplayString, + adapterGPUFunctionPCISlotDesignation DisplayString + } + + adapterGPUFunctionIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular GPU function." + ::= { adapterGPUFunctionEntry 1 } + + adapterGPUFunctionGpuVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name and PFA of a particular GPU function and PFA is in HEX." + ::= { adapterGPUFunctionEntry 2 } + + adapterGPUFunctionAdapterVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of a particular adapter providing this function. And if the Product Name contains PFA, PFA is in HEX." + ::= { adapterGPUFunctionEntry 3 } + + adapterGPUFunctionGpuVPDManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacturer of a particular GPU function." + ::= { adapterGPUFunctionEntry 4 } + + adapterGPUFunctionGpuVPDUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The UUID of a particular GPU function." + ::= { adapterGPUFunctionEntry 5 } + + adapterGPUFunctionGpuVPDModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model of a particular GPU function." + ::= { adapterGPUFunctionEntry 6 } + + adapterGPUFunctionGpuVPDSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial No. of a particular GPU function." + ::= { adapterGPUFunctionEntry 7 } + + adapterGPUFunctionGpuVPDFRUNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FRU No. of a particular GPU function." + ::= { adapterGPUFunctionEntry 8 } + + adapterGPUFunctionGpuVPDPartNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Part No. of a particular GPU function." + ::= { adapterGPUFunctionEntry 9 } + + adapterGPUFunctionFoDUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FoD UID of a particular GPU function." + ::= { adapterGPUFunctionEntry 10 } + + adapterGPUFunctionSupportHotPlug OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION "Indicates whether the GPU function supports hot plug." + ::= { adapterGPUFunctionEntry 11 } + + adapterGPUFunctionVideoMemorySize OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Video Memory Size of a particular GPU function." + ::= { adapterGPUFunctionEntry 12 } + + adapterGPUFunctionVideoMemoryType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Video Memory Type of a particular GPU function." + ::= { adapterGPUFunctionEntry 13 } + + adapterGPUFunctionChipNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Chip Number of a particular GPU function." + ::= { adapterGPUFunctionEntry 14 } + + adapterGPUFunctionMaxDataWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Maximum Data Width in Gbps of a particular GPU funtion." + ::= { adapterGPUFunctionEntry 15 } + + adapterGPUFunctionPackageType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Package Type of a particular GPU function." + ::= { adapterGPUFunctionEntry 16 } + + adapterGPUFunctionPCIBusNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Bus No. of a particular GPU function." + ::= { adapterGPUFunctionEntry 17 } + + adapterGPUFunctionPCIDevNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device No. of a particular GPU function." + ::= { adapterGPUFunctionEntry 18 } + + adapterGPUFunctionPCIFuncNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Function No. of a particular GPU function." + ::= { adapterGPUFunctionEntry 19 } + + adapterGPUFunctionPCIVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Vendor ID of a particular GPU function." + ::= { adapterGPUFunctionEntry 20 } + + adapterGPUFunctionPCIDevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device ID of a particular GPU function." + ::= { adapterGPUFunctionEntry 21 } + + adapterGPUFunctionPCIDevType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device Type of a particular GPU function." + ::= { adapterGPUFunctionEntry 22 } + + adapterGPUFunctionPCIRevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Revision ID of a particular GPU function." + ::= { adapterGPUFunctionEntry 23 } + + adapterGPUFunctionPCISubVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Vendor ID of a particular GPU function." + ::= { adapterGPUFunctionEntry 24 } + + adapterGPUFunctionPCISubDevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Device ID of a particular GPU function." + ::= { adapterGPUFunctionEntry 25 } + + adapterGPUFunctionPCISlotDesignation OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Slot Designation of a particular GPU function." + ::= { adapterGPUFunctionEntry 26 } + + -- ************************************************************************************* + -- Physical Resource: The Chip information of GPU function IMM2-only + -- ******************************************************************************** + + adapterGPUChipTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterGPUChipEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Chips of GPU Function information." + ::= { adapters 6 } + + adapterGPUChipEntry OBJECT-TYPE + SYNTAX AdapterGPUChipEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "GPU function chip information entry." + INDEX { adapterGPUChipIndex } + ::= { adapterGPUChipTable 1 } + + AdapterGPUChipEntry ::= SEQUENCE { + adapterGPUChipIndex INTEGER, + adapterGPUChipGpuVPDProdName DisplayString, + adapterGPUChipNo INTEGER, + adapterGPUChipName DisplayString, + adapterGPUChipFamily DisplayString, + adapterGPUChipManufacturer DisplayString, + adapterGPUChipCoresEnabled INTEGER, + adapterGPUChipMaxClockSpeed Gauge, + adapterGPUChipExtBusClockSpeed Gauge, + adapterGPUChipAddressWidth INTEGER, + adapterGPUChipDataWidth INTEGER, + adapterGPUChipFormFactor DisplayString, + adapterGPUChipModel DisplayString, + adapterGPUChipSerialNo DisplayString, + adapterGPUChipFRUNo DisplayString, + adapterGPUChipPartNo DisplayString, + adapterGPUChipUniqueID DisplayString + } + + adapterGPUChipIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular GPU chip" + ::= { adapterGPUChipEntry 1 } + + adapterGPUChipGpuVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name and PFA of the GPU function for this chip and PFA is in HEX." + ::= { adapterGPUChipEntry 2 } + + adapterGPUChipNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Index of the GPU chip in the GPU adapter." + ::= { adapterGPUChipEntry 3 } + + adapterGPUChipName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Name of a particular GPU chip." + ::= { adapterGPUChipEntry 4 } + + adapterGPUChipFamily OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Family Name of a particular GPU chip." + ::= { adapterGPUChipEntry 5 } + + adapterGPUChipManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacturer of a particular GPU chip." + ::= { adapterGPUChipEntry 6 } + + adapterGPUChipCoresEnabled OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "Indicates whether enable cores of a particular GPU chip." + ::= { adapterGPUChipEntry 7 } + + adapterGPUChipMaxClockSpeed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Maximum Clock Speed in MHz of a particular GPU chip." + ::= { adapterGPUChipEntry 8 } + + adapterGPUChipExtBusClockSpeed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION "The External Bus Clock Speed in MHz of a particular GPU chip." + ::= { adapterGPUChipEntry 9 } + + adapterGPUChipAddressWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Address Width of a particular GPU chip." + ::= { adapterGPUChipEntry 10 } + + adapterGPUChipDataWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Data Width of a particular GPU chip." + ::= { adapterGPUChipEntry 11 } + + adapterGPUChipFormFactor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Form Factor of a particular GPU chip." + ::= { adapterGPUChipEntry 12 } + + adapterGPUChipModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model of a particular GPU chip." + ::= { adapterGPUChipEntry 13 } + + adapterGPUChipSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial No. of a particular GPU chip." + ::= { adapterGPUChipEntry 14 } + + adapterGPUChipFRUNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FRU No. of a particular GPU chip." + ::= { adapterGPUChipEntry 15 } + + adapterGPUChipPartNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Part No. of a particular GPU chip." + ::= { adapterGPUChipEntry 16 } + + adapterGPUChipUniqueID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Unique ID of a particular GPU chip." + ::= { adapterGPUChipEntry 17 } + + -- ************************************************************************************* + -- Physical Resource: The properties of RAID Function information IMM2-only + -- ******************************************************************************** + + adapterRAIDFunctionTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterRAIDFunctionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of RAID Function information." + ::= { adapters 7 } + + adapterRAIDFunctionEntry OBJECT-TYPE + SYNTAX AdapterRAIDFunctionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "RAID function information entry." + INDEX { adapterRAIDFunctionIndex } + ::= { adapterRAIDFunctionTable 1 } + + AdapterRAIDFunctionEntry ::= SEQUENCE { + adapterRAIDFunctionIndex INTEGER, + adapterRAIDFunctionRaidVPDProdName DisplayString, + adapterRAIDFunctionAdapterVPDProdName DisplayString, + adapterRAIDFunctionRaidVPDManufacturer DisplayString, + adapterRAIDFunctionRaidVPDUUID DisplayString, + adapterRAIDFunctionRaidVPDModel DisplayString, + adapterRAIDFunctionRaidVPDSerialNo DisplayString, + adapterRAIDFunctionRaidVPDFRUNo DisplayString, + adapterRAIDFunctionRaidVPDPartNo DisplayString, + adapterRAIDFunctionFoDUID DisplayString, + adapterRAIDFunctionSupportHotPlug INTEGER, + adapterRAIDFunctionMaxDataWidth INTEGER, + adapterRAIDFunctionPackageType DisplayString, + adapterRAIDFunctionPCIBusNo INTEGER, + adapterRAIDFunctionPCIDevNo INTEGER, + adapterRAIDFunctionPCIFuncNo INTEGER, + adapterRAIDFunctionPCIVendorId DisplayString, + adapterRAIDFunctionPCIDevId DisplayString, + adapterRAIDFunctionPCIDevType DisplayString, + adapterRAIDFunctionPCIRevId DisplayString, + adapterRAIDFunctionPCISubVendorId DisplayString, + adapterRAIDFunctionPCISubDevId DisplayString, + adapterRAIDFunctionPCISlotDesignation DisplayString + } + + adapterRAIDFunctionIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular RAID function." + ::= { adapterRAIDFunctionEntry 1 } + + adapterRAIDFunctionRaidVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name and PFA of a particular RAID function and PFA is in HEX." + ::= { adapterRAIDFunctionEntry 2 } + + adapterRAIDFunctionAdapterVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name of a particular adapter providing this function. And if the Product Name contains PFA, PFA is in HEX." + ::= { adapterRAIDFunctionEntry 3 } + + adapterRAIDFunctionRaidVPDManufacturer OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Manufacturer of a particular RAID function." + ::= { adapterRAIDFunctionEntry 4 } + + adapterRAIDFunctionRaidVPDUUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The UUID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 5 } + + adapterRAIDFunctionRaidVPDModel OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Model of a particular RAID function." + ::= { adapterRAIDFunctionEntry 6 } + + adapterRAIDFunctionRaidVPDSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Serial No. of a particular RAID function." + ::= { adapterRAIDFunctionEntry 7 } + + adapterRAIDFunctionRaidVPDFRUNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FRU No. of a particular RAID function." + ::= { adapterRAIDFunctionEntry 8 } + + adapterRAIDFunctionRaidVPDPartNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Part No. of a particular RAID function." + ::= { adapterRAIDFunctionEntry 9 } + + adapterRAIDFunctionFoDUID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The FoD UID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 10 } + + adapterRAIDFunctionSupportHotPlug OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION "Indicates whether the RAID function supports hot plug." + ::= { adapterRAIDFunctionEntry 11 } + + adapterRAIDFunctionMaxDataWidth OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Maximum Data Width in Gbps of a particular RAID funtion." + ::= { adapterRAIDFunctionEntry 12 } + + adapterRAIDFunctionPackageType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Package Type of a particular RAID function." + ::= { adapterRAIDFunctionEntry 13 } + + adapterRAIDFunctionPCIBusNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Bus No. of a particular RAID function." + ::= { adapterRAIDFunctionEntry 14 } + + adapterRAIDFunctionPCIDevNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device No. of a particular RAID function." + ::= { adapterRAIDFunctionEntry 15 } + + adapterRAIDFunctionPCIFuncNo OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Function No. of a particular RAID function." + ::= { adapterRAIDFunctionEntry 16 } + + adapterRAIDFunctionPCIVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Vendor ID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 17 } + + adapterRAIDFunctionPCIDevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device ID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 18 } + + adapterRAIDFunctionPCIDevType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Device Type of a particular RAID function." + ::= { adapterRAIDFunctionEntry 19 } + + adapterRAIDFunctionPCIRevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Revision ID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 20 } + + adapterRAIDFunctionPCISubVendorId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Vendor ID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 21 } + + adapterRAIDFunctionPCISubDevId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Subsystem Device ID of a particular RAID function." + ::= { adapterRAIDFunctionEntry 22 } + + adapterRAIDFunctionPCISlotDesignation OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The PCI Slot Designation of a particular RAID function." + ::= { adapterRAIDFunctionEntry 23 } + + -- ************************************************************************************* + -- Firmware Information: The properties of PCI function firmware information IMM2-only + -- ******************************************************************************** + + adapterFirmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF AdapterFirmwareEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of PCI Function Firmware information." + ::= { adapters 8 } + + adapterFirmwareEntry OBJECT-TYPE + SYNTAX AdapterFirmwareEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Adapter Firmware Entry." + INDEX { adapterFwIndex } + ::= { adapterFirmwareTable 1 } + + AdapterFirmwareEntry ::= SEQUENCE { + adapterFwIndex INTEGER, + adapterFwFunctionVPDProdName DisplayString, + adapterFwName DisplayString, + adapterFwClassification DisplayString, + adapterFwDescription DisplayString, + adapterFwManufacture DisplayString, + adapterFwVersion DisplayString, + adapterFwReleaseDate DisplayString, + adapterFwSoftwareID DisplayString + } + + adapterFwIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION "This column is used to identify a particular function firmware." + ::= { adapterFirmwareEntry 1 } + + adapterFwFunctionVPDProdName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Product Name and PFA of a particular function for this firmware and PFA is in HEX." + ::= { adapterFirmwareEntry 2 } + + adapterFwName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The name of a particular PCI function firmware." + ::= { adapterFirmwareEntry 3 } + + adapterFwClassification OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The classification of a particular PCI function firmware." + ::= { adapterFirmwareEntry 4 } + + adapterFwDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The description of a particular PCI function firmware." + ::= { adapterFirmwareEntry 5 } + + adapterFwManufacture OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The manufacturer of a particular PCI function firmware." + ::= { adapterFirmwareEntry 6 } + + adapterFwVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The version of a particular PCI function firmware." + ::= { adapterFirmwareEntry 7 } + + adapterFwReleaseDate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The release date of a particular PCI function firmware." + ::= { adapterFirmwareEntry 8 } + + adapterFwSoftwareID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION "The Software ID of a particular PCI function firmware." + ::= { adapterFirmwareEntry 9 } + + + -- *********************************************************************** + -- Event Log Information common to IMM1 and IMM2 + -- *********************************************************************** + eventLog OBJECT IDENTIFIER ::= { errorLogs 1 } + + eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of event logs. View as a table and not as individual entries + for consistent results." + ::= { eventLog 1 } + + eventLogEntry OBJECT-TYPE + SYNTAX EventLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Event log entries. View as a table and not as individual entries for + consistent results." + INDEX { eventLogIndex } + ::= { eventLogTable 1 } + + + EventLogEntry ::= SEQUENCE { + eventLogIndex INTEGER, + eventLogString OCTET STRING, + eventLogSeverity INTEGER, + eventLogDate OCTET STRING, + eventLogTime OCTET STRING + } + + + eventLogIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Event log index number. View as a table and not as individual entries for + consistent results." + ::= { eventLogEntry 1 } + + eventLogString OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains a string of information to detail the event. View as a table and + not as individual entries for consistent results." + ::= { eventLogEntry 2} + + eventLogSeverity OBJECT-TYPE + SYNTAX INTEGER{ + error(0), + warning(1), + information(2), + other(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains a information to detail the severity of the event. View as a table and + not as individual entries for consistent results." + ::= { eventLogEntry 3} + + eventLogDate OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Date of the Event occured. View as a table and + not as individual entries for consistent results." + ::= { eventLogEntry 4} + + eventLogTime OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Time of the Event occured. View as a table and + not as individual entries for consistent results." + ::= { eventLogEntry 5} + + + eventLogClr OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Clear the event log." + ::= { eventLog 3 } + + -- *********************************************************************** + -- Event Log Information IMM2-only + -- *********************************************************************** + + eventLogTftpServer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To save the eventLog if it is not empty, + set the IP address or host name of the TFTP server where + the file should be transferred. The address must be entered in a + dotted decimal IP string (e.g. 9.37.44.2), or equivalent for IPv6." + ::= { eventLog 4 } + + eventLogFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name of the saved log file on the target system." + ::= { eventLog 5 } + + eventLogSaveStart OBJECT-TYPE + SYNTAX INTEGER { + execute(1), + execute-nowait(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Start saving the eventLog file to the specified target file + and system. + Using execute will cause the SNMP client to wait for the save + operation to complete. + Using execute-nowait will not cause the SNMP client to wait for + the save to complete. Instead it will save the configuration in + the background. + + Note 1: Both eventLogTftpServer and + eventLogFileName must be set. + Note 2: Depending on the target, it might take up to several + seconds for the save operation to complete. + Note 3: Use eventLogStatus to confirm the status of + the last operation. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { eventLog 6 } + + + eventLogSaveStatus OBJECT-TYPE + SYNTAX INTEGER { + success(0), + failed(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the last save operation which + was initiated through SNMP method." + ::= { eventLog 7 } + + +-- *********************************************************************** +-- Configure the IMM +-- *********************************************************************** + -- *********************************************************************** + -- Remote Access Configuration + -- *********************************************************************** + remoteAccessConfig OBJECT IDENTIFIER ::= { configureSP 1 } + + -- *********************************************************************** + -- General Remote Access and Remote Alerts Configuration + -- *********************************************************************** + generalRemoteCfg OBJECT IDENTIFIER ::= { remoteAccessConfig 1 } + + remoteAlertRetryDelay OBJECT-TYPE + SYNTAX INTEGER { + noDelay(0), + oneHalfMinute(30), + oneMinute(60), + oneAndHalfMinutes(90), + twoMinutes(120), + twoAndHalfMinutes(150), + threeMinutes(180), + threeAndHalfMinutes(210), + fourMinutes(240) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number in seconds to delay between retries if sending a + remote alert is unsuccessful." + ::= { generalRemoteCfg 1 } + + remoteAlertRetryCount OBJECT-TYPE + SYNTAX INTEGER { + noretry(0), + retry1(1), + retry2(2), + retry3(3), + retry4(4), + retry5(5), + retry6(6), + retry7(7), + retry8(8) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number of additional times a remote alert will be + retried if not succesfully sent. A value of zero indicates + no retries will be attempted." + ::= { generalRemoteCfg 2 } + + remoteAlertEntryDelay OBJECT-TYPE + SYNTAX INTEGER { + noDelay(0), + oneHalfMinute(30), + oneMinute(60), + oneAndHalfMinutes(90), + twoMinutes(120), + twoAndHalfMinutes(150), + threeMinutes(180), + threeAndHalfMinutes(210), + fourMinutes(240) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number in seconds to delay between entries if sending a + remote alert is unsuccessful." + ::= { generalRemoteCfg 3 } + + snmpCriticalAlerts OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,criticalAlerts will be sent to + SNMP, else critical alerts will not be sent." + ::= { generalRemoteCfg 4 } + + snmpWarningAlerts OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,warningAlerts will be sent to + SNMP , else warning alerts will not be sent." + ::= { generalRemoteCfg 5 } + + snmpSystemAlerts OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,systemAlerts will be sent to + SNMP , else system alerts will not be sent." + ::= { generalRemoteCfg 6 } + + remoteAccessTamperDelay OBJECT-TYPE + SYNTAX INTEGER { + nowait(0), --IMM2-only + oneMinute(1), + twoMinutes(2), + threeMinutes(3), --IMM2-only + fourMinutes(4), --IMM2-only + fiveMinutes(5), + sixMinutes(6), --IMM2-only + sevenMinutes(7), --IMM2-only + tenMinutes(10), + fifteenMinutes(15), + twentyMinutes(20), + thirtyMinutes(30), + sixtyMinutes(60), + oneTwentyMinutes(120), + oneEightyMinutes(180), + twoFortyMinutes(240) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number in minutes to prohibit a remote login attempt + after more than 5 sequential login attempts have failed." + ::= { generalRemoteCfg 7 } + + userAuthenticationMethod OBJECT-TYPE + SYNTAX INTEGER { + localOnly(0), + ldapOnly(1), + localFirstThenLdap(2), + ldapFirstThenLocal(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Use this field to specify how users attempting to login should be authenticated. + There are two methods: + Local authentication. Userid and password are verified by searching the list + of users locally configured under Local Login Profiles. + LDAP based authentication. Users are authenticated via a remote LDAP server. + One or both authentication methods can be selected. If both methods should be + used, the order must be specified." + ::= { generalRemoteCfg 8 } + + + webInactivityTimeout OBJECT-TYPE + SYNTAX INTEGER { + oneMinutes(0), + fiveMinutes(1), + tenMinutes(2), + fifteenMinutes(3), + twentyMinutes(4), + noTimeout(5), + userPicksTimeout(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Use this field to indicate how long, in minutes, the IMM subsystem will wait + before disconnecting an inactive web session. Select the no timeout option to + disable this feature. Select the User picks timeout option if the timeout should + instead be selected by the user during the login process." + ::= { generalRemoteCfg 9 } + + + -- *********************************************************************** + -- SNMP alert filters + -- *********************************************************************** + + snmpAlertFilters OBJECT IDENTIFIER ::= { generalRemoteCfg 10 } + + safSpTrapTempC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Temperature threshold exceeded." + ::= { snmpAlertFilters 2 } + + safSpTrapVoltC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Voltage threshold exceeded." + ::= { snmpAlertFilters 3 } + + safSpTrapPowerC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Power failure." + ::= { snmpAlertFilters 4 } + + safSpTrapHdC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Hard disk drive failure." + ::= { snmpAlertFilters 5 } + + safSpTrapFanC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Single Fan failure." + ::= { snmpAlertFilters 6 } + + + safSpTrapIhcC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Incompatible hardware configuration." + ::= { snmpAlertFilters 7 } + + safSpTrapCPUC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: CPU Error." + ::= { snmpAlertFilters 8 } + + safSpTrapMemoryC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Memory Error." + ::= { snmpAlertFilters 9 } + + safSpTrapRdpsC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Redundant Power Supply failure." + ::= { snmpAlertFilters 10 } + + safSpTrapHardwareC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Other Failure - refer to Message ID for specific condition." + ::= { snmpAlertFilters 11 } + + + safSpTrapRdpsN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Redundant Power Supply failure." + ::= { snmpAlertFilters 12 } + + safSpTrapTempN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Temperature threshold exceeded." + ::= { snmpAlertFilters 13 } + + safSpTrapVoltN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Voltage threshold exceeded." + ::= { snmpAlertFilters 14 } + + safSpTrapPowerN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Power." + ::= { snmpAlertFilters 15 } + + safSpTrapFanN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Fan Error." + ::= { snmpAlertFilters 16 } + + safSpTrapCPUN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Memory Error." + ::= { snmpAlertFilters 17 } + + safSpTrapMemoryN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Memory Error." + ::= { snmpAlertFilters 18 } + + safSpTrapHardwareN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Warning - refer to Message ID for specific condition." + ::= { snmpAlertFilters 19 } + + safSpTrapRLogin OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Sev-Off Alert: Event Remote Login." + ::= { snmpAlertFilters 20 } + + + safSpTrapOsToS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: OS Timeout value exceeded." + ::= { snmpAlertFilters 21 } + + safSpTrapAppS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Application Alert. Refer to Message ID for specific condition." + ::= { snmpAlertFilters 22 } + + safSpTrapPowerS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Power on or off." -- Off only for IMM1 + ::= { snmpAlertFilters 23 } + + safSpTrapBootS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: System Boot Failure." + ::= { snmpAlertFilters 24 } + + safSpTrapLdrToS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: OS Loader Timeout." + ::= { snmpAlertFilters 25 } + + safSpTrapPFAS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Predictive Failure Analysis(PFA) information." + ::= { snmpAlertFilters 26 } + + safSpTrapSysLogS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: System Log 75% full." + ::= { snmpAlertFilters 27 } + + safSpTrapNwChangeS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Network change notification." + ::= { snmpAlertFilters 28 } + + + -- *********************************************************************** + -- begin account security management + -- *********************************************************************** + + customSecuritySettings OBJECT IDENTIFIER ::= { generalRemoteCfg 20 } + + loginPasswordRequired OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If enabled, all users require a login password to access the IMM + via the CLI and Web interfaces. The default value is disabled." + ::= { customSecuritySettings 1 } + + passwordExpirationPeriod OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of days before login passwords expire. The minimum + value is 1 day and the maximum value is 365 days. The default + value is 90 days. A value of 0 disables this option." + ::= { customSecuritySettings 2 } + + minimumPasswordReuseCycle OBJECT-TYPE + SYNTAX INTEGER { + none(0), + onePassword(1), + twoPasswords(2), + threePasswords(3), + fourPasswords(4), + fivePasswords(5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of unique passwords a user must choose before + reusing a password. The default value is none." + ::= { customSecuritySettings 3 } + + complexPasswordRulesEnforced OBJECT-TYPE --IMM1-only, omitted by IMM2 in error? + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If enabled, password should contains at least one numeric and + one alphabetic character." + ::= { customSecuritySettings 4 } + + minimumPasswordLength OBJECT-TYPE + SYNTAX INTEGER { + passwordLengthOne(1), -- IMM1 setting name + passwordLengthTwo(2), -- IMM1 setting name + passwordLengthThree(3), -- IMM1 setting name + passwordLengthFour(4), -- IMM1 setting name + passwordLength5(5), + passwordLength6(6), + passwordLength7(7), + passwordLength8(8), + passwordLength9(9), + passwordLength10(10), + passwordLength11(11), + passwordLength12(12), + passwordLength13(13), + passwordLength14(14), + passwordLength15(15), + passwordLength16(16), + passwordLength17(17), + passwordLength18(18), + passwordLength19(19), + passwordLength20(20) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The required minimum number of characters in the new password. + The default value is 8. + + A SET of this object is ignored until the complexPasswordRules option is enabled + and the minimumPasswordReuseCycle is not none(0)" + ::= { customSecuritySettings 5 } + + defaultAdminPasswordExpired OBJECT-TYPE --IMM2-only + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If enabled, the factory default 'USERID' account password must + be changed on next login. The default value is disabled." + ::= { customSecuritySettings 6 } + + + minimumDiffCharsPassword OBJECT-TYPE --IMM2-only + SYNTAX INTEGER { + none(0), + oneChar(1), + twoChars(2), + threeChars(3), + fourChars(4), + fiveChars(5), + sixChars(6), + sevenChars(7), + eightChars(8), + nineChars(9), + tenChars(10), + elevenChars(11), + twelveChars(12), + thirteenChars(13), + fourteenChars(14), + fifteenChars(15) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The required minimum number of characters in the new password + different from the previous password. The default value is 2. + + A SET of this object is ignored until the complexPasswordRules option is enabled + and the minimumPasswordReuseCycle is not none(0)" + ::= { customSecuritySettings 7 } + + changePasswordFirstAccess OBJECT-TYPE --IMM2-only + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If enabled, the login user will be forced to change their password on + the first access after the account has been established or on + the first access after an administrator has changed the password + for the user, except for the administrator password for USERID. + The default value is disabled." + ::= { customSecuritySettings 8 } + + accountLockoutPeriod OBJECT-TYPE --IMM2-only + SYNTAX INTEGER { + nowait(0), + oneMinute(1), + twoMinutes(2), + fiveMinutes(5), + tenMinutes(10), + fifteenMinutes(15), + twentyMinutes(20), + thirtyMinutes(30), + sixtyMinutes(60), + oneTwentyMinutes(120), + oneEightyMinutes(180), + twoFortyMinutes(240) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The period of time in minutes that a user is locked out after the + maximum number of login failures was reached. The minimum value is + is 1 minute and the maximum value is 240 minutes. The default value + is 2 minutes for the Legacy security level and 60 minutes for the + High security level. A value of 0 disables this option." + ::= { customSecuritySettings 9 } + + maxLoginFailures OBJECT-TYPE --IMM2-only + SYNTAX INTEGER { + none(0), + oneTime(1), + twoTimes(2), + threeTimes(3), + fourTimes(4), + fiveTimes(5), + sixTimes(6), + sevenTimes(7), + eightTimes(8), + nineTimes(9), + tenTimes(10) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of login failures before a user account is locked. + A value of 0 disables this option. The default value is 5." + ::= { customSecuritySettings 10 } + + + passwordChangeInterval OBJECT-TYPE --IMM2-only + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A minimum period of time that user is not able to change + their own password. The range of acceptable values will be + from 0 to 240 (or 10 days). A value of 0 disables this + option. If the password expiration period is set, it must be + greater than the minimum password change interval." + ::= { customSecuritySettings 11 } + + + -- *********************************************************************** + -- IMM Serial Port Configuration + -- *********************************************************************** + serialPortCfg OBJECT IDENTIFIER ::= { remoteAccessConfig 2 } + + + portBaud OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER { + baud9600(3), + baud19200(4), + baud38400(5), + baud57600(6), + baud115200(7) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Baud rate for the serial port." + ::= { serialPortCfg 1 } + + + + portParity OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER { + none(0), + odd(1), + even(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Parity setting for the serial port." + ::= { serialPortCfg 2 } + + -- *********************************************************************** + -- Serial Redirect + -- *********************************************************************** + serialRedirect OBJECT IDENTIFIER ::= { serialPortCfg 3 } + + enterCLIkeySeq OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..15)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the keystroke sequence used to enter the CLI. + This sequence must have at least one character. The caret symbol (^) + has a special meaning in this sequence. It denotes 'Ctrl' for keystrokes that + map to Ctrl sequences (for example, ^[ for the escape key and ^M for carriage + return). All ocurrences of ^ will be interpreted as part of a Ctrl sequence. + Refer to an ASCII-to-key conversion table for a complete list of Ctrl sequences. + The default value for this field is '^[(' i.e. ESC followed by (." + ::= { serialRedirect 1 } + + portStopBits OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER { + oneStopbit(0), + twoOrOnePtFive(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number of stop bits for the serial port." + ::= { serialPortCfg 4 } + + + portCLImode OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER { + cliDisable(0), + cliWithEMScompatibleKeystrokeSeq(1), + cliWithUserDefinedKeystrokeSeq(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Use this field to select the CLI (command line interface) mode for this port. + The CLI mode disablies serial redirect, or pecifies the type of keystroke + sequences to use for entering (returning to) the CLI from the system console." + ::= { serialPortCfg 18 } + + + -- *********************************************************************** + -- Remote Alert Profiles + -- *********************************************************************** + remoteAlertIds OBJECT IDENTIFIER ::= { remoteAccessConfig 3 } + + + remoteAlertIdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteAlertIdsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of remote alert entries. + This table lets you configure remote alert recipients. + You can define up to 12 unique recipients. " + ::= { remoteAlertIds 1 } + + remoteAlertIdsEntry OBJECT-TYPE + SYNTAX RemoteAlertIdsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Remote alert entries." + INDEX { remoteAlertIdEntryIndex } + ::= { remoteAlertIdsTable 1 } + + + RemoteAlertIdsEntry ::= SEQUENCE { + remoteAlertIdEntryIndex INTEGER, + remoteAlertIdEntryStatus INTEGER, + remoteAlertIdEntryName OCTET STRING, + remoteAlertIdEmailAddr OCTET STRING, + remoteAlertIdEntryCriticalAlert INTEGER, + remoteAlertIdEntryWarningAlert INTEGER, + remoteAlertIdEntrySystemAlert INTEGER, + remoteAlertIdEntryAuditAlert INTEGER, -- IMM2-only + remoteAlertIdEntryAttachmentsToEmailAlerts INTEGER, + remoteAlertIdEntrySyslogPortAssignment INTEGER, -- IMM2-only + remoteAlertIdEntrySyslogHostname OCTET STRING, -- IMM2-only + remoteAlertIdEntryType INTEGER -- IMM2-only + } + + + remoteAlertIdEntryIndex OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for remote alert entry." + ::= { remoteAlertIdsEntry 1 } + + remoteAlertIdEntryStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabled(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If enabled alerts will be sent to this alert + recipient else alerts will not be sent." + ::= { remoteAlertIdsEntry 2 } + + + remoteAlertIdEntryName OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..50)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A null terminated string that contains + a text description of this entry." + + ::= { remoteAlertIdsEntry 3 } + + remoteAlertIdEmailAddr OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..320)) -- IMM1 limited to 64 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A null terminated string that + contains a E-Mail Address. For example 'jeb@us.lenovo.com'. + Used only for a E-mail over Lan." + + ::= { remoteAlertIdsEntry 4} + + remoteAlertIdEntryCriticalAlert OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,criticalAlerts will be sent to this + remote alert receipient,else critical alerts will not be sent." + ::= { remoteAlertIdsEntry 5 } + + + remoteAlertIdEntryWarningAlert OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,warningAlerts will be sent to this + remote alert receipient,else warningAlerts will not be sent." + ::= { remoteAlertIdsEntry 6 } + + remoteAlertIdEntrySystemAlert OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,systemAlerts will be sent to this + remote alert receipient,else systemAlerts will not be sent." + ::= { remoteAlertIdsEntry 7 } + + remoteAlertIdEntryAuditAlert OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Enabled,systemAlerts will be sent to this + remote alert receipient,else systemAlerts will not be sent." + ::= { remoteAlertIdsEntry 8 } + + remoteAlertIdEntryAttachmentsToEmailAlerts OBJECT-TYPE + SYNTAX INTEGER { + noAttachments(0), + attachEventLog(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates if the event log should be attached to + a email alert." + ::= { remoteAlertIdsEntry 9 } + + remoteAlertIdEntrySyslogPortAssignment OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Syslog port number." + ::= { remoteAlertIdsEntry 10 } + + remoteAlertIdEntrySyslogHostname OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Syslog hostname or IP address." + ::= { remoteAlertIdsEntry 11 } + + + remoteAlertIdEntryType OBJECT-TYPE + SYNTAX INTEGER { + email(1), + syslog(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Alert recipient type." + ::= { remoteAlertIdsEntry 12 } + + remoteAlertFiltersTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteAlertFiltersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Alert Filters. The entries (rows) in this table correspond 1-1 with the entries in the + remoteAlertIdsTable. They are correlated by index. " + ::= { remoteAlertIds 2 } + + remoteAlertFiltersEntry OBJECT-TYPE + SYNTAX RemoteAlertFiltersEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Remote Filters entries." + INDEX { rafIndex } + ::= { remoteAlertFiltersTable 1 } + + RemoteAlertFiltersEntry ::= SEQUENCE { + rafIndex INTEGER(0..255), + rafSpTrapTempC INTEGER, + rafSpTrapVoltC INTEGER, + rafSpTrapPowerC INTEGER, + rafSpTrapHdC INTEGER, + rafSpTrapFanC INTEGER, + rafSpTrapIhcC INTEGER, + rafSpTrapCPUC INTEGER, + rafSpTrapMemoryC INTEGER, + rafSpTrapRdpsC INTEGER, + rafSpTrapHardwareC INTEGER, + rafSpTrapRdpsN INTEGER, + rafSpTrapTempN INTEGER, + rafSpTrapVoltN INTEGER, + rafSpTrapPowerN INTEGER, + rafSpTrapFanN INTEGER, + rafSpTrapCPUN INTEGER, + rafSpTrapMemoryN INTEGER, + rafSpTrapHardwareN INTEGER, + rafSpTrapRLogin INTEGER, + rafSpTrapOsToS INTEGER, + rafSpTrapAppS INTEGER, + rafSpTrapPowerS INTEGER, + rafSpTrapBootS INTEGER, + rafSpTrapLdrToS INTEGER, + rafSpTrapPFAS INTEGER, + rafSpTrapSysLogS INTEGER, + rafSpTrapNwChangeS INTEGER, + rafSpTrapAllAuditS INTEGER + } + + rafIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for User Authority Level entry." + ::= { remoteAlertFiltersEntry 1 } + + + rafSpTrapTempC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Temperature threshold exceeded." + ::= { remoteAlertFiltersEntry 2 } + + rafSpTrapVoltC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Voltage threshold exceeded." + ::= { remoteAlertFiltersEntry 3 } + + rafSpTrapPowerC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Power failure." + ::= { remoteAlertFiltersEntry 4 } + + rafSpTrapHdC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Hard disk drive failure." + ::= { remoteAlertFiltersEntry 5 } + + rafSpTrapFanC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Single Fan failure." + ::= { remoteAlertFiltersEntry 6 } + + + rafSpTrapIhcC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Incompatible hardware configuration." + ::= { remoteAlertFiltersEntry 7 } + + rafSpTrapCPUC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: CPU Error." + ::= { remoteAlertFiltersEntry 8 } + + rafSpTrapMemoryC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Memory Error." + ::= { remoteAlertFiltersEntry 9 } + + rafSpTrapRdpsC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Redundant Power Supply failure." + ::= { remoteAlertFiltersEntry 10 } + + rafSpTrapHardwareC OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Critical Alert: Other Failure - refer to Message ID for specific condition." + ::= { remoteAlertFiltersEntry 11 } + + + rafSpTrapRdpsN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Redundant Power Supply failure." + ::= { remoteAlertFiltersEntry 12 } + + rafSpTrapTempN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Temperature threshold exceeded." + ::= { remoteAlertFiltersEntry 13 } + + rafSpTrapVoltN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Voltage threshold exceeded." + ::= { remoteAlertFiltersEntry 14 } + + rafSpTrapPowerN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Power." + ::= { remoteAlertFiltersEntry 15 } + + rafSpTrapFanN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Fan Error." + ::= { remoteAlertFiltersEntry 16 } + + rafSpTrapCPUN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Memory Error." + ::= { remoteAlertFiltersEntry 17 } + + rafSpTrapMemoryN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Memory Error." + ::= { remoteAlertFiltersEntry 18 } + + rafSpTrapHardwareN OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Non-Critical Alert: Warning - refer to Message ID for specific condition." + ::= { remoteAlertFiltersEntry 19 } + + rafSpTrapRLogin OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Sev-Off Alert: Event Remote Login." + ::= { remoteAlertFiltersEntry 20 } + + + rafSpTrapOsToS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: OS Timeout value exceeded." + ::= { remoteAlertFiltersEntry 21 } + + rafSpTrapAppS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Application Alert. Refer to Message ID for specific condition." + ::= { remoteAlertFiltersEntry 22 } + + rafSpTrapPowerS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Power On or Off." -- Off only for IMM1 + ::= { remoteAlertFiltersEntry 23 } + + rafSpTrapBootS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: System Boot Failure." + ::= { remoteAlertFiltersEntry 24 } + + rafSpTrapLdrToS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: OS Loader Timeout." + ::= { remoteAlertFiltersEntry 25 } + + rafSpTrapPFAS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Predictive Failure Analysis(PFA) information." + ::= { remoteAlertFiltersEntry 26 } + + rafSpTrapSysLogS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: System Log 75% full." + ::= { remoteAlertFiltersEntry 27 } + + rafSpTrapNwChangeS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: Network change notification." + ::= { remoteAlertFiltersEntry 28 } + + rafSpTrapAllAuditS OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "System Alert: All Audit Events notification." + ::= { remoteAlertFiltersEntry 29 } + + generateTestAlert OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Generate a Test Alert. This will send a test alert to all configured + and enabled remote alert receipients. The text portion of the + alert will contain 'Application Posted Alert to IMM'." + ::= { remoteAlertIds 30 } + + -- *********************************************************************** + -- Remote Access Profiles + -- *********************************************************************** + remoteAccessIds OBJECT IDENTIFIER ::= { remoteAccessConfig 4 } + + + remoteAccessIdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteAccessIdsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of remote access profiles. + + This table lets you to configure all login profiles. + You can define up to 12 unique profiles. + + Note: By default, the remote supervisor adapter + comes configured with one login profile that allows remote + access using a login ID of 'USERID' and a password of 'PASSW0RD' + (the 0 is a zero). To avoid a potential security exposure, + we strongly recommend that you change this default Login + Profile to values of your choice." + ::= { remoteAccessIds 1 } + + remoteAccessIdsEntry OBJECT-TYPE + SYNTAX RemoteAccessIdsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Remote access entries." + INDEX { remoteAccessIdEntryIndex } + ::= { remoteAccessIdsTable 1 } + + + RemoteAccessIdsEntry ::= SEQUENCE { + remoteAccessIdEntryIndex INTEGER, + remoteAccessIdEntryUserId OCTET STRING, + remoteAccessIdEntryPassword OCTET STRING, + remoteAccessIdEntryUserPwdLeftDays INTEGER + } + + + remoteAccessIdEntryIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for Remote access entry." + ::= { remoteAccessIdsEntry 1 } + + remoteAccessIdEntryUserId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Remote access entry null terminated string that + contains the user-id. This can only be modified from + blank to non-blank, then back to blank." + ::= { remoteAccessIdsEntry 2 } + + remoteAccessIdEntryPassword OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..20)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Remote access entry null terminated string that + contains the password. On a read a NULL string + will be returned for security reasons." + ::= { remoteAccessIdsEntry 3 } + + -- made part of user structure instead of separate structure + remoteAccessIdEntryUserPwdLeftDays OBJECT-TYPE + SYNTAX INTEGER(0..365) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "left days before password expired for selected user" + ::= {remoteAccessIdsEntry 4 } + + -- 51.1.4.1.4.2 + remoteAccessUserAuthorityLevelTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteAccessUserAuthorityLevelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of user authority level profiles." + ::= { remoteAccessIds 2 } + + remoteAccessUserAuthorityLevelEntry OBJECT-TYPE + SYNTAX RemoteAccessUserAuthorityLevelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "User authority level entries." + INDEX { ualIndex } + ::= { remoteAccessUserAuthorityLevelTable 1 } + + RemoteAccessUserAuthorityLevelEntry ::= SEQUENCE { + ualIndex INTEGER(0..255), + ualId OCTET STRING (SIZE(0..16)), + ualSupervisor INTEGER, + ualReadOnly INTEGER, + ualAccountManagement INTEGER, + ualConsoleAccess INTEGER, + ualConsoleAndVirtualMediaAccess INTEGER, + ualServerPowerAccess INTEGER, + ualAllowClearLog INTEGER, + ualAdapterBasicConfig INTEGER, + ualAdapterNetworkAndSecurityConfig INTEGER, + ualAdapterAdvancedConfig INTEGER + } + + ualIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for User Authority Level entry." + ::= { remoteAccessUserAuthorityLevelEntry 1 } + + ualId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "User ID" + ::= { remoteAccessUserAuthorityLevelEntry 2 } + + ualSupervisor OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User has no restrictions." + ::= { remoteAccessUserAuthorityLevelEntry 3 } + + ualReadOnly OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User has only read-only access, and cannot perform any save, modify, + clear, or state affecting operations (eg. restart IMM, restore defaults, + upgrade the firmware, etc.)." + ::= { remoteAccessUserAuthorityLevelEntry 4 } + + ualAccountManagement OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can add/modify/delete users and change the global login settings in + the Login Profiles panel." + ::= { remoteAccessUserAuthorityLevelEntry 5 } + + ualConsoleAccess OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can access the remote console." + ::= { remoteAccessUserAuthorityLevelEntry 6 } + + ualConsoleAndVirtualMediaAccess OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can access both the remote console and the virtual media feature." + ::= { remoteAccessUserAuthorityLevelEntry 7 } + + ualServerPowerAccess OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can access the power on and restart functions for the remote server. + These functions are available via the Power/Restart panel." + ::= { remoteAccessUserAuthorityLevelEntry 8 } + + ualAllowClearLog OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can clear the event logs. Everyone can look at the + event logs, but this particular permission is required to clear the logs." + ::= { remoteAccessUserAuthorityLevelEntry 9 } + + ualAdapterBasicConfig OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can modify configuration parameters in the System Settings and Alerts + panels." + ::= { remoteAccessUserAuthorityLevelEntry 10 } + + ualAdapterNetworkAndSecurityConfig OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User can modify configuration parameters in the Security, Network Protocols, + Network Interface, Port Assignments, and Serial Port panels." + ::= { remoteAccessUserAuthorityLevelEntry 11 } + + ualAdapterAdvancedConfig OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User has no restrictions when configuring the adapter. In addition, the + user is said to have administrative access to the IMM, meaning that the + user can also perform the following advanced functions: firmware upgrades, + PXE network boot, restore adapter factory defaults, modify and restore + adapter configuration from a configuration file, and restart/reset the + adapter." + ::= { remoteAccessUserAuthorityLevelEntry 12 } + + -- ************************************************************************************ + -- Group Profiles for LDAP Users + -- NOTE: This is an IMM1 only function and should return Not Found until implemented + -- ************************************************************************************* + groupProfiles OBJECT IDENTIFIER ::= { remoteAccessConfig 5 } + groupIdsTable OBJECT-TYPE + SYNTAX SEQUENCE OF GroupIdsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Group profiles. + + This table lets you to configure all group profiles. + You can define up to 16 unique profiles." + ::= { groupProfiles 1 } + + groupIdsEntry OBJECT-TYPE + SYNTAX GroupIdsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Group ID entries." + INDEX { groupIndex } + ::= { groupIdsTable 1 } + + + GroupIdsEntry ::= SEQUENCE { + groupIndex INTEGER, + groupId OCTET STRING, + groupRole OCTET STRING + } + + + groupIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for Group IDs entry." + ::= { groupIdsEntry 1 } + + groupId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group ID. It is a null terminated string that contains the group-id. + It must not be a duplicate of any previously configured ones." + ::= { groupIdsEntry 2 } + + + groupRole OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Group Role. It indicates if the group has supervisor, operator, + or custom access." + ::= { groupIdsEntry 3 } + + groupRBSroleTable OBJECT-TYPE + SYNTAX SEQUENCE OF GroupRBSroleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Group Role profiles." + ::= { groupProfiles 2 } + + groupRBSroleEntry OBJECT-TYPE + SYNTAX GroupRBSroleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Group Role entries." + INDEX { groupRBSroleIndex } + ::= { groupRBSroleTable 1 } + + GroupRBSroleEntry ::= SEQUENCE { + groupRBSroleIndex INTEGER, + groupRBSroleId OCTET STRING, + groupRBSSupervisor INTEGER, + groupRBSOperator INTEGER, + groupRBSNetworkSecurity INTEGER, + groupRBSUserAccountManagement INTEGER, + groupRBSRemoteConsoleAccess INTEGER, + groupRBSRemoteConsoleRemoteDiskAccess INTEGER, + groupRBSServerPowerRestartAccess INTEGER, + groupRBSBasicAdapterConfiguration INTEGER, + groupRBSClearEventLog INTEGER, + groupRBSAdvancedAdapterConfiguration INTEGER + } + + + groupRBSroleIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for Group Role entry." + ::= { groupRBSroleEntry 1 } + + groupRBSroleId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Group ID" + ::= { groupRBSroleEntry 2 } + + groupRBSSupervisor OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group has no restrictions." + ::= { groupRBSroleEntry 3 } + + groupRBSOperator OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group has read-only access, and cannot perform + any save, modify, clear, or state affecting operations + (e.g. restart IMM, restore defaults, upgrade the firmware, etc.)." + ::= { groupRBSroleEntry 4 } + + groupRBSNetworkSecurity OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can modify the configuration in the Security, Network Protocols, + Network Interface, Port Assignments, and Serial Port panels." + ::= { groupRBSroleEntry 5 } + + groupRBSUserAccountManagement OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can add/modify/delete users and change the Global Login Settings + in the Login Profiles panel." + ::= { groupRBSroleEntry 6 } + + groupRBSRemoteConsoleAccess OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can access the remote server console." + ::= { groupRBSroleEntry 7 } + + groupRBSRemoteConsoleRemoteDiskAccess OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can access the remote server console and the remote disk functions + for the remote server." + ::= { groupRBSroleEntry 8 } + + groupRBSServerPowerRestartAccess OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can access the power on, restart and server timeout functions for + the remote server." + ::= { groupRBSroleEntry 9 } + + groupRBSBasicAdapterConfiguration OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can modify configuration parameters in the System Settings (excluding + Contact, Location and Server Timeouts) and Alerts panels." + ::= { groupRBSroleEntry 10 } + + groupRBSClearEventLog OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group can clear the event logs. Everyone can look at the event logs, but + this particular permission is required to clear the logs." + ::= { groupRBSroleEntry 11 } + + groupRBSAdvancedAdapterConfiguration OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Group has no restrictions when configuring the adapter. In addition the + user is said to have administrative access to the IMM, meaning that the user + can also perform the following advanced functions: firmware upgrades, PXE + network boot, restore adapter factory defaults, modify and restore adapter + configuration from a configuration file, and restart/reset the adapter. This + excludes Server Power/Restart Control and timeout functions." + ::= { groupRBSroleEntry 12 } + + -- ---------------------------------------------------------- -- + -- The Remote Access ID SSH Client Authentication Public Key Group NOTE: IMM2-only + -- ---------------------------------------------------------- -- + sshClientAuth OBJECT IDENTIFIER ::= { remoteAccessConfig 6 } + + sshClientAuthPubKeyTable OBJECT-TYPE + SYNTAX SEQUENCE OF SSHClientAuthPubKeyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains client authentication + public key information." + ::= { sshClientAuth 1 } + + sshClientAuthPubKeyEntry OBJECT-TYPE + SYNTAX SSHClientAuthPubKeyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A information list about a particular SSH + public key used for client authentication. + The primary table index is the same value as + the associated remoteAccessIdEntryIndex. + The secondary table index allows selection + of the Nth public key for that + remoteAccessIdEntryIndex." + INDEX { sshClientAuthRemoteAccessIdIndex , + sshClientAuthPubKeyIndex } + ::= { sshClientAuthPubKeyTable 1 } + + SSHClientAuthPubKeyEntry ::= + SEQUENCE { + sshClientAuthRemoteAccessIdIndex INTEGER, + sshClientAuthPubKeyIndex INTEGER, + sshClientAuthPubKeyType INTEGER, + sshClientAuthPubKeySize INTEGER, + sshClientAuthPubKeyFingerprint OCTET STRING, + sshClientAuthPubKeyAcceptFrom OCTET STRING, + sshClientAuthPubKeyComment OCTET STRING, + sshClientAuthPubKeyAction INTEGER, + sshClientAuthPubKeyEntryStatus EntryStatus + } + + sshClientAuthRemoteAccessIdIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The primary table index is the same value as + the associated remoteAccessIdEntryIndex used + as an index into the remoteAccessIdsTable." + ::= { sshClientAuthPubKeyEntry 1 } + + sshClientAuthPubKeyIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The secondary table index used to select + one of the client authentication public + keys for a particular remote access Id. + The index is an integer value from 1 to N + where N is the number of keys associated + with a particular remote access Id. + An addition always causes the value of N to increase + by one, effectively adding an entry after the + existing keys for that remote access Id. + If an entry is deleted from the table by + setting sshClientAuthPubKeyEntryStatus = invalid, + the key associated with that entry is deleted. + If the deleted key was not the last key for + a remote access Id (sshClientAuthPubKeyIndex is + not the 'last' or Nth entry), the subsequent entries + are renumbered after the deletion. A deletion + always causes the value of N to decrease by one. + The underlying SSH server implementation searches + the keys in order from 1 to N when attempting public + key authentication. + + NOTE:A maximum of 4 public keys can be installed + for one remote access Id." + ::= { sshClientAuthPubKeyEntry 2 } + + sshClientAuthPubKeyType OBJECT-TYPE + SYNTAX INTEGER { + sshDss (1), + sshRsa (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the SSH public key represented by + this entry." + ::= { sshClientAuthPubKeyEntry 3 } + + sshClientAuthPubKeySize OBJECT-TYPE + SYNTAX INTEGER { + bits512 (1), + bits768 (2), + bits1024 (3), + bits2048 (4), + bits4096 (5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the SSH public key represented by + this entry." + ::= { sshClientAuthPubKeyEntry 4 } + + sshClientAuthPubKeyFingerprint OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The RSA fingerprint of the SSH public key represented + by this entry. + This value can be used with the SSH client to + verify, on the initial connection, that the Secure Shell + server responding to the request is the server running + on the managed entity. This is the fingerprint of the + operational host key pair. If the key pair represented + by this entry is not operational then sixteen null octets + must be returned." + ::= { sshClientAuthPubKeyEntry 5 } + + sshClientAuthPubKeyAcceptFrom OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is a filter that describes the set of SSH client + IP addresses and host names that can establish + SSH connections to the AMM authenticated by the public key + represented by this entry of the table. The filter is a + comma-separated list of IP addresses and/or hostnames. + A question mark may be used to match any single character. + An asterisk may be used to match multiple characters. + An exclamation point may preceed an IP address or hostname + to deny acccess from that IP address or hostname. + + The format of the Accept From specification is: + from=PATTERN-LIST + PATTERN-LIST is the filter, which must be enclosed in + double quotation marks. + + NOTE:This MIB object can be manipulated after the + corresponding SSH public key is installed." + ::= { sshClientAuthPubKeyEntry 6 } + + sshClientAuthPubKeyComment OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is a descriptive string that the administrator may + use to help identify the public key represented by this entry. + It serves no function in the operation of the SSH server. + + NOTE:This MIB object can be manipulated after the + corresponding SSH public key is installed." + ::= { sshClientAuthPubKeyEntry 7 } + + sshClientAuthPubKeyAction OBJECT-TYPE + SYNTAX INTEGER { + import(1), + export(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "import(1) starts the TFTP file transfer of an SSH + client authentication public key from the TFTP + server to the AMM. The import operation is only + accepted if the associated RemoteAccessIdsEntry row + is configured and the current value of + sshClientAuthPubKeyEntryStatus is underCreation(3) + or valid(1), if the current value of sshClientAuthPubKeyEntryStatus + is valid(1), it will replace the key with a new key, + If the import is successful the value of + sshClientAuthPubKeyRowStatus changes to valid(1). + export(2) starts the TFTP file transfer of an SSH + client authentication public key from the AMM to the TFTP + server. The export operation is only accepted if + the current value of sshClientAuthPubKeyEntryStatus + is valid(1). + + NOTE: Users should compare the fingerprint value + sshClientAuthPubKeyFingerprint to the + fingerprint of client authentication key files + imported or exported using the TFTP file transfer + protocol to guard against possible file corruption. + + Value returned for the GET command is meaningless + for this MIB object." + ::= { sshClientAuthPubKeyEntry 8 } + + sshClientAuthPubKeyEntryStatus OBJECT-TYPE + SYNTAX EntryStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object manages the creation and deletion of this entry. + The steps recommended to install and to activate a new client + authorization public key are: + 1. Set values for sshClientAuthPubKeyTftpServer, + sshClientAuthPubKeyFileName, sshClientAuthPubKeyFileFormat + 2. Create a new entry in this table + sshClientAuthPubKeyEntryStatus = createRequest + 3. Import a new key sshClientAuthPubKeyAction = import + This entry will be valid after sshClientAuthPubKeyAction + is successfully imported. + 4. Set sshClientAuthPubKeyAcceptFrom and + sshClientAuthPubKeyComment as required. + + valid(1) - Indicates that the public key pair represented + by this entry is available for use by the Secure + Shell Server for client authentication. + + createRequest(2) - A new entry will be created in this table + for the specified host key pair and the new + entry will transition to the underCreation(3) + state. The operation is only accepted if the + associated RemoteAccessIdsEntry row defining + a local user account is configured. + + underCreation(3) - Indicates that this entry exists in the + agent but is unavailable for use. After completing the + create operation, the agent will set this object to + underCreation(3). + + invalid(4) - Deletes this entry and any client authentication + public key that may be associated with it." + ::= { sshClientAuthPubKeyEntry 9 } + + sshClientAuthPubKeyUnused OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of available storage locations that may be + used to install additional Client Authentication + Public Keys. This number decreases by one when a new + key is added to the configuration." + ::= { sshClientAuth 2 } + + sshClientAuthPubKeyTftpServer OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IP address or host name of the TFTP server where an SSH client + authentication public key is to be installed from or exported + to. The address must be entered in a dotted decimal + IP string (e.g. 9.37.44.2)." + ::= { sshClientAuth 3 } + + sshClientAuthPubKeyFileName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name on the TFTP server of an SSH client + authentication public key." + ::= { sshClientAuth 4 } + + sshClientAuthPubKeyFileFormat OBJECT-TYPE + SYNTAX INTEGER { + openSSH (1), + rfc4716 (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File format of SSH client authentication public key files + imported from or exported to the TFTP file server." + ::= { sshClientAuth 5 } + + + -- *********************************************************************** + -- SP Clock + -- *********************************************************************** + spClock OBJECT IDENTIFIER ::= { configureSP 2 } + + spClockDateAndTimeSetting OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IMM clock date and time setting. + A date-time specification for the local time of day. + For example to set the date and time to + March 4, 2001 at 06:00:00AM, set the value to:'03/04/2001,06:00:00'. + field contents range + _____ ________ _____ + 1 month 01..12 + 2 separator '/' + 3 day 01..31 + 4 separator '/' + 5 year 2000..2037 + 6 separator ',' + 7 hour 00..23 + 8 separator ':' + 9 minutes 00..59 + 10 separator ':' + 11 seconds 00..59 + " + ::= { spClock 1 } + + spClockTimezoneSetting OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IMM clock Greenwich Mean Time(GMT) offset and Daylight Saving Time(DST) + settings. + + The following table lists GMT offsets and associated DST + information. DST is not observed in time zones where + the 'Observe DST' value does not contain 'yes' in the table. + Also, note that in some cases additional information + is required to determine the clock adjustment when DST is + observed. + + Examples + -to set the GMT offset to +3:30, + set the value to:'+3:30,no' + + -for Eastern Standard Time and observing DST, + set the value to:'-5:00,yes' + + -for Turkey and observing DST, + set the value to:'+2:00,yes,3' + + GMT Observe Additional + Offset DST? DST value + ______ _______ __________ + GMT+0 yes | no + GMT+1 yes | no + GMT+2 yes | no When 'Observe DST?' value is 'yes': + '1' Europe/Eastern Europe (ee) + '3' Turkey (tky) + '4' Asia/Beirut (bei) + '5' Asia/Amman (amm) + '6' Asia/Jerusalem (jem) + GMT+3 no + GMT+3:30 yes | no + GMT+4 no + GMT+4:30 no + GMT+5 no + GMT+5:30 no + GMT+5:45 no + GMT+6 no + GMT+6:30 no + GMT+7 no + GMT+8 no + GMT+9 no + GMT+9:30 yes | no + GMT+10 yes | no + GMT+11 no + GMT+12 yes | no + GMT+13 no + GMT-12 no + GMT-11 yes | no + GMT-10 no + GMT-9 yes | no + GMT-8 yes | no + GMT-7 yes | no When 'Observe DST?' value is 'yes': + '7' US/Mountain (mtn) + '8' America/Mazatlan (maz) + GMT-6 yes | no When 'Observe DST?' value is 'yes': + '9' America/Mexico City (mex) + '10' Canada/Central (cna) + GMT-5 yes | no When 'Observe DST?' value is 'yes': + '11' Cuba (cub) + '12' Canada, US/East-Indiana (ein) + GMT-4:30 no + GMT-4 yes | no When 'Observe DST?' value is 'yes': + '13' America/Asuncion (asu) + '14' America/Cuiaba (cui) + '15' America/Santiago (san) + '16' Canada/Atlantic (cat) + GMT-3:30 yes | no + GMT-3 yes | no When 'Observe DST?' value is 'yes': + '17' America/Gothab (gtb) + '18' America/Montevideo (moo) + '19' Brazil/East (bre) + GMT-2 no + GMT-1 yes | no " + ::= { spClock 2 } + + + -- *********************************************************************** + -- SP identification + -- *********************************************************************** + spIdentification OBJECT IDENTIFIER ::= { configureSP 3 } + + spTxtId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IMM text ID. Note: Do not put any 'space + character' at end of the ID." + ::= { spIdentification 1 } + + spRoomID OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Room where the system is located. In some hardware configurations this object can only be read." + ::= { spIdentification 2 } + + spRackID OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "ID for Rack that contains this system. In some hardware configurations this object can only be read." + ::= { spIdentification 3 } + + spRackUnitPosition OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Position within the rack for this system. In some hardware configurations this object can only be read." + ::= { spIdentification 4 } + + spRackUnitHeight OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of rack units occupied by this system." + ::= { spIdentification 5 } + + spRackBladeBay OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bay number for system contained in a blade chassis." + ::= { spIdentification 6 } + + spFullPostalAddress OBJECT-TYPE -- IMM2-only + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 300 byte string that contains the + full postal address for this system." + ::= { spIdentification 7 } + + -- *********************************************************************** + -- Network Configuration + -- *********************************************************************** + networkConfiguration OBJECT IDENTIFIER ::= { configureSP 4 } + + -- *********************************************************************** + -- Network Interfaces + -- *********************************************************************** + networkInterfaces OBJECT IDENTIFIER ::= { networkConfiguration 1 } + -- *********************************************************************** + -- Ethernet Interface 1 + -- *********************************************************************** + ethernetInterface OBJECT IDENTIFIER ::= { networkInterfaces 1 } + + ethernetInterfaceType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of interface. Indicates 'Ethernet-1'." + ::= { ethernetInterface 1 } + + ethernetInterfaceEnabled OBJECT-TYPE + SYNTAX INTEGER { + interfaceDisabled(0), + interfaceEnabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable the interface. + + Note: To alter any of the configuration settings for the ethernet + interface the following procedure should be used: + (1)This object should be written with 'interfaceDisabled' + (2)Make the modifications to other settings + (3)This object should be written with 'interfaceEnabled' + (4)Restart the remote supervisor adapter + + Also note that when this object has a value of interfaceEnabled + the following is verifed, if this verification fails a error + response will be returned for the set of this object and the + ethernet interface will be left in a disabled state. + (1)Is the range for the MTU between 60-1500 + (2)Are the speed settings one of 10Mb, 100Mb, AUTO + (3)Are the speed settings one of Half, Full, AUTO + (4)If DHCP is disabled then is there a valid IP address + " + ::= { ethernetInterface 2 } + + ethernetInterfaceHostName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the 64 byte null terminated DNS host name for this + interface." + ::= { ethernetInterface 3 } + + ethernetInterfaceIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IP address for the ethernet interface." + ::= { ethernetInterface 4 } + + ethernetInterfaceAutoNegotiate OBJECT-TYPE + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If this is enabled, then we should ignore Speed/Duplex." + ::= { ethernetInterface 5 } + + ethernetInterfaceDataRate OBJECT-TYPE + SYNTAX INTEGER { + enet10Megabit(3), + enet100Megabit(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the data transfer rate to be used over the ethernet + interface 10Mb/100Mb/Auto. Note that the value of this variable + is ignored if ethernetInterfaceAutoNegotiate is set to enabled(0)." + ::= { ethernetInterface 6 } + + ethernetInterfaceDuplexSetting OBJECT-TYPE + SYNTAX INTEGER { + fullDuplex(1), + halfDuplex(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the duplex settings for the data transfer rate to be used over + the ethernet interface Half/Full/Auto." + ::= { ethernetInterface 7 } + + ethernetInterfaceLAA OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(17)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Specifies the locally administered MAC address. The locally administered + address must be a hexadecimal value between 000000000000 - FFFFFFFFFFFF. This + value must be in the form XX:XX:XX:XX:XX:XX where 'X' is a number between 0 - 9 and + A - F. This IMM subsystem does not allow use of a multicast address. A multicast + address has the least significant bit of the first byte set to a 1. The first + byte must, therefore, be an even number." + ::= { ethernetInterface 8 } + + ethernetInterfaceDhcpEnabled OBJECT-TYPE + SYNTAX INTEGER { + dhcpDisabled(0), + dhcpEnabled(1), + dhcpTry(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable DHCP on this interface." + ::= { ethernetInterface 9 } + + ethernetInterfaceGatewayIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IP address of the gateway/router for the ethernet + interface." + ::= { ethernetInterface 10 } + + ethernetInterfaceBIA OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(6)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Specifies the burned-in MAC (BIA) address." + ::= { ethernetInterface 11 } + + ethernetInterfaceMTU OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Maximum Transmission Unit(MTU) for the ethernet + interface" + ::= { ethernetInterface 12 } + + ethernetInterfaceSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the ethernet + interface" + ::= { ethernetInterface 13 } + + -- *********************************************************************** + -- DHCP Server Assigned Settings for ethernet interface 1 + -- *********************************************************************** + dhcpEthernetInterface OBJECT IDENTIFIER ::= { ethernetInterface 14 } + + dhcpHostName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the 64 byte null terminated DNS host name for this + interface, assigned by the DHCP server." + ::= { dhcpEthernetInterface 1 } + + dhcpIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the IP address for the ehternet interface, + assigned by the DHCP server." + ::= { dhcpEthernetInterface 2 } + + dhcpGatewayIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the IP address of the gateway/router for the ethernet + interface, assigned by the DHCP server." + ::= { dhcpEthernetInterface 3 } + + dhcpSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the ethernet + interface, assigned by the DHCP server." + ::= { dhcpEthernetInterface 4 } + + dhcpDomainName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the 64 byte null terminated Domain Name for this + interface, assigned by the DHCP server." + ::= { dhcpEthernetInterface 5 } + + dhcpPrimaryDNSServer OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the Primary DNS server, assigned by the DHCP server." + ::= { dhcpEthernetInterface 6 } + + dhcpSecondaryDNSServer OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the Secondary DNS server, assigned by the DHCP server." + ::= { dhcpEthernetInterface 7 } + + dhcpTertiaryDNSServer OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the tertiary DNS server, assigned by the DHCP server." + ::= { dhcpEthernetInterface 8 } + + -- ******************************************************************************** + -- VLAN configuration NOTE: IMM2-only + -- ******************************************************************************** + ethernetInterfaceVlan OBJECT-TYPE + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If this is enabled, assign VLAN ID needs to be assigned. + NOTE: This is not supported on blades." + ::= { ethernetInterface 15 } + + ethernetInterfaceVlanID OBJECT-TYPE + SYNTAX INTEGER (1..4094) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the VLAN ID for the ethernet interface. + NOTE: This is not supported in blades." + ::= { ethernetInterface 16 } + + -- ******************************************************************************** + -- Ethernet Interface IPv6 + -- ******************************************************************************** + ethernetInterfaceIPv6 OBJECT IDENTIFIER ::= { networkInterfaces 4 } + + + ethernetInterfaceIPv6Enabled OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The current IPv6 enabled or disabled state of this IMM. + + NOTE: If IPv6 address(es) have been configured for one or more + interfaces/protocols/services on this IMM, when you update + the firmware to a level which does not support IPv6, all IPv6 + connectivity will be lost, and services/interfaces for which an IPv6 + address was configured may not function properly. You will be required + to reconfigure these services/interfaces." + ::= { ethernetInterfaceIPv6 2 } + + ethernetInterfaceIPv6Config OBJECT IDENTIFIER ::= { ethernetInterfaceIPv6 5 } + + ethernetInterfaceIPv6LocalAddress OBJECT IDENTIFIER ::= { ethernetInterfaceIPv6Config 1 } + + ethernetInterfaceIPv6LinkLocalAddress OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IPv6 link local IP address for the ethernet interface. + + NOTE: If ethernetInterfaceIPv6Enabled is currently disabled, this + object has the value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceIPv6LocalAddress 1 } + + ethernetInterfaceIPv6StaticIPConfig OBJECT IDENTIFIER ::= { ethernetInterfaceIPv6Config 2 } + + ethernetInterfaceIPv6StaticIPConfigEnabled OBJECT-TYPE + SYNTAX INTEGER { disabled(0), enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IPv6 static IP address enabled or disabled state for the ethernet interface." + ::= { ethernetInterfaceIPv6StaticIPConfig 1 } + + ethernetInterfaceIPv6StaticIPAddress OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IPv6 static IP address for the ethernet interface. + + NOTE: If ethernetInterfaceIPv6Enabled is currently disabled, this + object has the value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceIPv6StaticIPConfig 2 } + + ethernetInterfaceIPv6StaticIPAddressPrefixLen OBJECT-TYPE + SYNTAX INTEGER (1..128) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IPv6 static IP address prefix length for the ethernet interface. + + NOTE: If ethernetInterfaceIPv6Enabled is currently disabled, this + object has the value 0." + ::= { ethernetInterfaceIPv6StaticIPConfig 3 } + + ethernetInterfaceIPv6StaticIPDefaultRoute OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IPv6 static IP address default route for the ethernet interface. + + NOTE: If ethernetInterfaceIPv6Enabled is currently disabled, this + object has the value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceIPv6StaticIPConfig 4 } + + ethernetInterfaceIPv6AutoIPConfig OBJECT IDENTIFIER ::= { ethernetInterfaceIPv6Config 3 } + + ethernetInterfaceDHCPv6Config OBJECT IDENTIFIER ::= { ethernetInterfaceIPv6AutoIPConfig 2 } + + ethernetInterfaceDHCPv6Enabled OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The DHCPv6 enabled or disabled state for the ethernet interface. + + NOTE: If ethernetInterfaceIPv6StatelessAutoConfigEnabled is currently disabled, Disabling + ethernetInterfaceDHCPv6Enabled will cause ethernetInterfaceIPv6AutoIPConfigEnabled to be disabled. + NOTE: If ethernetInterfaceIPv6StaticIPConfigEnabled and + ethernetInterfaceIPv6StatelessAutoConfigEnabled are currently disabled, Disabling + ethernetInterfaceDHCPv6Enabled will not be allowed." + ::= { ethernetInterfaceDHCPv6Config 1 } + + ethernetInterfaceDHCPv6IPAddress OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IPv6 address for the ethernet interface, assigned by DHCPv6 server. + + NOTE: If ethernetInterfaceIPv6Enabled or ethernetInterfaceDHCPv6Enabled + is disabled or if DHCPv6 server is not available, this object has the value + '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceDHCPv6Config 2 } + + ethernetInterfaceDHCPv6DomainName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The 64 byte Domain Name for the ethernet interface, + assigned by the DHCPv6 server. + + NOTE: If ethernetInterfaceIPv6Enabled or ethernetInterfaceDHCPv6Enabled + is disabled or if DHCPv6 server is not available, this object has the + value '(Not available)'." + ::= { ethernetInterfaceDHCPv6Config 4 } + + ethernetInterfaceDHCPv6PrimaryDNSServer OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The primary DNS server, assigned by the DHCPv6 server. + + NOTE: If ethernetInterfaceIPv6Enabled or ethernetInterfaceDHCPv6Enabled + is disabled or if DHCPv6 server is not available, this object has the + value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceDHCPv6Config 5 } + + ethernetInterfaceDHCPv6SecondaryDNSServer OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The secondary DNS server, assigned by the DHCPv6 server. + + NOTE: If ethernetInterfaceIPv6Enabled or ethernetInterfaceDHCPv6Enabled + is disabled or if DHCPv6 server is not available, this object has the + value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceDHCPv6Config 6 } + + ethernetInterfaceDHCPv6TertiaryDNSServer OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The tertiary DNS server, assigned by the DHCPv6 server. + + NOTE: If ethernetInterfaceIPv6Enabled or ethernetInterfaceDHCPv6Enabled + is disabled or if DHCPv6 server is not available, this object has the + value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceDHCPv6Config 7 } + + ethernetInterfaceDHCPv6Server OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DHCPv6 server IPv6 address used to acquire the DHCP settings. + + NOTE: If ethernetInterfaceIPv6Enabled or ethernetInterfaceDHCPv6Enabled + is disabled or if DHCPv6 server is not available, this object has the + value '0:0:0:0:0:0:0:0'." + ::= { ethernetInterfaceDHCPv6Config 8 } + + ethernetInterfaceIPv6StatelessAutoConfig OBJECT IDENTIFIER ::= { ethernetInterfaceIPv6AutoIPConfig 3 } + + ethernetInterfaceIPv6StatelessAutoConfigEnabled OBJECT-TYPE + SYNTAX INTEGER { disabled(0), enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IPv6 stateless auto-configuration enabled or disabled state for the ethernet interface. + + NOTE: If EthernetfInterfaceDHCPv6Enabled is currently disabled, Disabling + ethernetInterfaceIPv6StatelessAutoConfigEnabled will cause ethernetInterfaceIPv6AutoIPConfigEnabled + to be disabled." + ::= { ethernetInterfaceIPv6StatelessAutoConfig 1 } + + ethernetInterfaceStatelessAutoConfigAddressesTable OBJECT-TYPE + SYNTAX SEQUENCE OF EthernetInterfaceStatelessAutoConfigAddressesEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of stateless Auto-Config addresses entries" + ::= { ethernetInterfaceIPv6StatelessAutoConfig 2 } + + ethernetInterfaceStatelessAutoConfigAddressesEntry OBJECT-TYPE + SYNTAX EthernetInterfaceStatelessAutoConfigAddressesEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Stateless Auto-Config address entries" + INDEX { ethernetInterfaceStatelessAutoConfigAddressesIndex } + ::= { ethernetInterfaceStatelessAutoConfigAddressesTable 1 } + + EthernetInterfaceStatelessAutoConfigAddressesEntry ::= SEQUENCE { + ethernetInterfaceStatelessAutoConfigAddressesIndex INTEGER, + ethernetInterfaceStatelessAutoConfigAddresses InetAddressIPv6, + ethernetInterfaceStatelessAutoConfigAddressesPrefixLen INTEGER + } + + ethernetInterfaceStatelessAutoConfigAddressesIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for stateless Auto-Config addresses. + + NOTE: If ethernetInterfaceIPv6StatelessAutoConfigEnabled or + ethernetInterfaceIPv6Enabled is currently disabled, this + object will show nothing." + ::= { ethernetInterfaceStatelessAutoConfigAddressesEntry 1 } + + ethernetInterfaceStatelessAutoConfigAddresses OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The stateless Auto-Configuration IPv6 address. + + NOTE: If ethernetInterfaceIPv6StatelessAutoConfigEnabled or + ethernetInterfaceIPv6Enabled is currently disabled, this + object will show nothing." + ::= { ethernetInterfaceStatelessAutoConfigAddressesEntry 2 } + + ethernetInterfaceStatelessAutoConfigAddressesPrefixLen OBJECT-TYPE + SYNTAX INTEGER (1..128) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The stateless Auto-Configration address prefix length. + + NOTE: If ethernetInterfaceIPv6StatelessAutoConfigEnabled or + ethernetInterfaceIPv6Enabled is currently disabled, this + object will show nothing." + ::= { ethernetInterfaceStatelessAutoConfigAddressesEntry 3 } + + -- ******************************************************************************** + -- VLANs for System Management NOTE: IMM2-only + -- ******************************************************************************** + vlansSM OBJECT IDENTIFIER ::= { networkInterfaces 5 } + + vlansSMvlan1config OBJECT IDENTIFIER ::= { vlansSM 1 } + + vlansSMvlan1Name OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The name of VLAN1, 1-64 characters." + ::= {vlansSMvlan1config 1} + + vlansSMvlan1vlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The VLAN ID for VLAN1." + ::= {vlansSMvlan1config 2} + + vlansSMvlan1State OBJECT-TYPE + SYNTAX INTEGER { disabled(0), + enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of VLAN1" + ::= {vlansSMvlan1config 3} + + vlansSMvlan1RemoteControl OBJECT-TYPE + SYNTAX INTEGER { disabled(0), + enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of the Remote Control feature for VLAN1. + Note that Remote Control can only be enabled on one VLAN." + ::= {vlansSMvlan1config 4} + + vlansSMvlan1SSerialOverLan OBJECT-TYPE + SYNTAX INTEGER { disabled(0), + enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of the Serail Over LAN feature for VLAN1. + Note that Serial Over LAN can only be enabled on one VLAN." + ::= {vlansSMvlan1config 5} + + vlansSMvlan2config OBJECT IDENTIFIER ::= { vlansSM 2 } + + vlansSMvlan2Name OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The name of VLAN1, 1-64 characters." + ::= {vlansSMvlan2config 1} + + vlansSMvlan2vlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The VLAN ID for VLAN2." + ::= {vlansSMvlan2config 2} + + vlansSMvlan2State OBJECT-TYPE + SYNTAX INTEGER { disabled(0), + enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of VLAN2" + ::= {vlansSMvlan2config 3} + + vlansSMvlan2RemoteControl OBJECT-TYPE + SYNTAX INTEGER { disabled(0), + enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of the Remote Control feature for VLAN2. + Note that Remote Control can only be enabled on one VLAN." + ::= {vlansSMvlan2config 4} + + vlansSMvlan2SerialOverLan OBJECT-TYPE + SYNTAX INTEGER { disabled(0), + enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of the Serail Over LAN feature for VLAN2. + Note that Serial Over LAN can only be enabled on one VLAN." + ::= {vlansSMvlan2config 5} + + vlansSMvlan2ipv4Config OBJECT IDENTIFIER ::= { vlansSMvlan2config 6 } + + vlansSMvlan2IPv4Address OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv4 address for the VLAN2 interface." + ::= { vlansSMvlan2ipv4Config 1 } + + vlansSMvlan2IPv4Gateway OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Gateway IPv4 address for the VLAN2 interface." + ::= { vlansSMvlan2ipv4Config 2 } + + vlansSMvlan2IPv4SubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the IPv4 address for the VLAN2 interface." + ::= { vlansSMvlan2ipv4Config 3 } + + vlansSMvlan2ipv6Config OBJECT IDENTIFIER ::= { vlansSMvlan2config 7 } + + vlansSMvlan2IPv6Address OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv6 address for the VLAN2 interface." + ::= { vlansSMvlan2ipv6Config 1 } + + vlansSMvlan2IPv6Gateway OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Gateway IPv6 address for the VLAN2 interface." + ::= { vlansSMvlan2ipv6Config 2 } + + vlansSMvlan2IPv6PrefixLength OBJECT-TYPE + SYNTAX INTEGER (1..128) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Prefix Length for the IPv6 address for the VLAN2 interface." + ::= { vlansSMvlan2ipv6Config 3 } + + vlansSMvlan2ipv4StatusRoutes OBJECT IDENTIFIER ::= { vlansSMvlan2config 8 } + + vlansSMvlan2IPv4StaticRouteIP1 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv4 address for the first IPv4 static route." + ::= { vlansSMvlan2ipv4StatusRoutes 1 } + + vlansSMvlan2IPv4StaticRouteSM1 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the first IPv4 static route." + ::= { vlansSMvlan2ipv4StatusRoutes 2 } + + vlansSMvlan2IPv4StaticRouteIP2 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv4 address for the second IPv4 static route." + ::= { vlansSMvlan2ipv4StatusRoutes 3 } + + vlansSMvlan2IPv4StaticRouteSM2 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the second IPv4 static route." + ::= { vlansSMvlan2ipv4StatusRoutes 4 } + + vlansSMvlan2IPv4StaticRouteIP3 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv4 address for the third IPv4 static route." + ::= { vlansSMvlan2ipv4StatusRoutes 5 } + + vlansSMvlan2IPv4StaticRouteSM3 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the third IPv4 static route." + ::= { vlansSMvlan2ipv4StatusRoutes 6 } + + vlansSMvlan2ipv6StatusRoutes OBJECT IDENTIFIER ::= { vlansSMvlan2config 9 } + + vlansSMvlan2IPv6StaticRouteIP1 OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv6 address for the first IPv6 static route." + ::= { vlansSMvlan2ipv6StatusRoutes 1 } + + vlansSMvlan2IPv6StaticRoutePL1 OBJECT-TYPE + SYNTAX INTEGER (1..128) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Prefix Length for the first IPv6 static route." + ::= { vlansSMvlan2ipv6StatusRoutes 2 } + + vlansSMvlan2IPv6StaticRouteIP2 OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv6 address for the second IPv6 static route." + ::= { vlansSMvlan2ipv6StatusRoutes 3 } + + vlansSMvlan2IPv6StaticRoutePL2 OBJECT-TYPE + SYNTAX INTEGER (1..128) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Prefix Length for the second IPv6 static route." + ::= { vlansSMvlan2ipv6StatusRoutes 4 } + + vlansSMvlan2IPv6StaticRouteIP3 OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IPv6 address for the third IPv6 static route." + ::= { vlansSMvlan2ipv6StatusRoutes 5 } + + vlansSMvlan2IPv6StaticRoutePL3 OBJECT-TYPE + SYNTAX INTEGER (1..128) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Prefix Length for the third IPv6 static route." + ::= { vlansSMvlan2ipv6StatusRoutes 6 } + + vlansSMvlanControl OBJECT IDENTIFIER ::= { vlansSM 3 } + + vlansSMvlanConfigRevertTimout OBJECT-TYPE + SYNTAX INTEGER (1..60) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the VLAN Config Revert Timeout value." + ::= { vlansSMvlanControl 1 } + + vlansSMvlanAction OBJECT-TYPE + SYNTAX INTEGER { + apply(1), + commit(2) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "When the 'apply' setting is written, the VLANs for System Management settings will + be applied and take affect. The settings will not be saved until the 'commit' + setting is written. If the 'commit' setting is not written by the time the VLAN + Config Revert Timer expires, the VLANs for System Management settings will revert + to thier previous values. " + ::= { vlansSMvlanControl 2 } + + ddnsStatus OBJECT-TYPE + SYNTAX INTEGER { disabled(0), enabled(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Dynamic DNS provides the capability for a networked device + to notify a domain name server to change, in real time, the + active DNS configuration of its configured hostnames, addresses + or other information stored in DNS. With Dynamic DNS, host + computers gain the capability to notify their respective DNS + server of the IP address they have received from a DHCP server + or through self-configuration." + ::= { networkInterfaces 10 } + + hostName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the DNS host name for this system. This object + provides the exact same function as ethernetInterfaceHostName" + ::= { networkInterfaces 11 } + + ddnsDomainToUse OBJECT-TYPE + SYNTAX INTEGER { + dhcp(1), + manual(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The domain name to be used with Dynamic DNS. + The value shall be either dhcp or manual" + ::= { networkInterfaces 12 } + + domainName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The user assigned DNS domain name." + ::= { networkInterfaces 13 } + + -- *********************************************************************** + -- LAN over USB Settings for ethernet interface + -- *********************************************************************** + lanOverUSBInterface OBJECT IDENTIFIER ::= { networkInterfaces 14 } + + immUSBIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IP address for the LAN over USB of IMM." + ::= { lanOverUSBInterface 1 } + + immUSBSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the Subnet Mask for the LAN over USB of IMM." + ::= { lanOverUSBInterface 2 } + + + osUSBIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the IP address for the LAN over USB of OS." + ::= { lanOverUSBInterface 3 } + + + -- *********************************************************************** + -- TCP/IP Protocol Configuration + -- *********************************************************************** + tcpProtocols OBJECT IDENTIFIER ::= { networkConfiguration 2 } + + -- *********************************************************************** + -- SNMP Agent Configuration + -- *********************************************************************** + snmpAgentConfig OBJECT IDENTIFIER ::= { tcpProtocols 1 } + + snmpSystemName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..48)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 48 byte string that contains the + SNMP agent name." + ::= { snmpAgentConfig 1 } + + snmpSystemContact OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..48)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 48 byte string that contains the + SNMP agent contact name." + ::= { snmpAgentConfig 2 } + + snmpSystemLocation OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..48)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 48 byte string that contains the + SNMP agent location name." + ::= { snmpAgentConfig 3 } + + snmpSystemAgentTrapsDisable OBJECT-TYPE + SYNTAX INTEGER { + trapsEnabled(0), + trapsDisabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable SNMP traps." + ::= { snmpAgentConfig 4 } + + -- *********************************************************************** + -- SNMP Agent Community Configuration + -- *********************************************************************** + snmpAgentCommunityConfig OBJECT IDENTIFIER ::= { snmpAgentConfig 5 } + + + -- *********************************************************************** + -- SNMP Community Configuration table + -- *********************************************************************** + + snmpCommunityTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpCommunityEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of SNMP Community entries" + ::= { snmpAgentCommunityConfig 1 } + + snmpCommunityEntry OBJECT-TYPE + SYNTAX SnmpCommunityEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Community table entries" + INDEX { snmpCommunityEntryIndex } + ::= { snmpCommunityTable 1 } + + SnmpCommunityEntry ::= SEQUENCE { + snmpCommunityEntryIndex INTEGER(0..255), + snmpCommunityEntryCommunityName DisplayString (SIZE(0..15)), + snmpCommunityEntryCommunityIpAddress1 OCTET STRING (SIZE(0..63)), + snmpCommunityEntryCommunityIpAddress2 OCTET STRING (SIZE(0..63)), + snmpCommunityEntryCommunityIpAddress3 OCTET STRING (SIZE(0..63)), + snmpCommunityEntryCommunityViewType INTEGER(1..3) + } + + + snmpCommunityEntryIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for SNMP Agent Community entry." + ::= { snmpCommunityEntry 1 } + + snmpCommunityEntryCommunityName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..15)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMP Community entry name. Note: Set snmpSystemAgentEnable + to disabled before performing a set of this object." + ::= { snmpCommunityEntry 2 } + + snmpCommunityEntryCommunityIpAddress1 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMP Community IP address or host name. + Can either be a dotted decimal IP string(eg. 9.37.44.2) + or host name. This field also allows two + wildcard values for read-Traps and write-Read-Traps communities: + 0.0.0.0 - allow any IPv4 address + 0::0 - allow any IPv6 address" + ::= { snmpCommunityEntry 3 } + + snmpCommunityEntryCommunityIpAddress2 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMP Community IP address or host name. + Can either be a dotted decimal IP string(eg. 9.37.44.2) + or a host name. This field also allows two + wildcard values for read-Traps and write-Read-Traps communities: + 0.0.0.0 - allow any IPv4 address + 0::0 - allow any IPv6 address" + ::= { snmpCommunityEntry 4 } + + snmpCommunityEntryCommunityIpAddress3 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMP Community IP address or host name. + Can either be a dotted decimal IP string(eg. 9.37.44.2) + or a host name. This field also allows two + wildcard values for read-Traps and write-Read-Traps communities: + 0.0.0.0 - allow any IPv4 address + 0::0 - allow any IPv6 address" + ::= { snmpCommunityEntry 5 } + + -- 4.9.3.1.4.5 + snmpCommunityEntryCommunityViewType OBJECT-TYPE + SYNTAX INTEGER { + read-Traps(1), + write-Read-Traps(2), + traps-Only(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Access Level of the SNMPv1 managers. Note this parameter + is set for each community. Therefore all three managers + in the same community have the same access level." + ::= { snmpCommunityEntry 6 } + + + snmpv1SystemAgentEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable the SNMPv1 agent. + + Note: When this object has a value of enabled the fields listed below are checked. + If this verification fails an error response is returned for the set of this object + and the SNMP agent will be left in a disabled state. + (1)Is there a valid system contact + (2)Is there a valid system name + (3)Is there at least one valid community name and for that + community name is there one valid IP address or hostname + " + ::= { snmpAgentConfig 6 } + + snmpv3SystemAgentEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable the SNMPv3 agent. + + Note: To alter any of the configuration settings for the SNMP Agent + the following procedure should be used: + (1)This object should be written with 'disabled' + (2)Make the modifications to other settings + (3)This object should be written with 'enabled' + (4)Restart the remote supervisor adapter + + Also note that when this object has a value of enabled + that the following is verifed, if this verification fails a error + response will be returned for the set of this object and the SNMP + agent will be left in a disabled state. + (1)Is there a valid system contact + (2)Is there a valid system name + (3)Is there at least one valid community name and for that + community name is there one valid IP address or hostname + " + ::= { snmpAgentConfig 7 } + + + -- ******************************************************************************** + -- SNMP Agent User Profile Configuration + -- ******************************************************************************** + + snmpAgentUserProfileConfig OBJECT IDENTIFIER ::= { snmpAgentConfig 8 } + + + -- ******************************************************************************** + -- SNMP User Profile Configuration table + -- ******************************************************************************** + + snmpUserProfileTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnmpUserProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of SNMPv3 User Profile entries" + ::= { snmpAgentUserProfileConfig 1 } + + snmpUserProfileEntry OBJECT-TYPE + SYNTAX SnmpUserProfileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "SNMP User Profile entries" + INDEX { snmpUserProfileEntryIndex } + ::= { snmpUserProfileTable 1 } + + SnmpUserProfileEntry ::= SEQUENCE { + snmpUserProfileEntryIndex INTEGER, + snmpUserProfileEntryAuthProt INTEGER, + snmpUserProfileEntryPrivProt INTEGER, + snmpUserProfileEntryPrivPassword OCTET STRING, + snmpUserProfileEntryViewType INTEGER, + snmpUserProfileEntryIpAddress OCTET STRING + } + + + snmpUserProfileEntryIndex OBJECT-TYPE + SYNTAX INTEGER(0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Index for SNMPv3 Agent User Profile entry." + ::= { snmpUserProfileEntry 1 } + + snmpUserProfileEntryAuthProt OBJECT-TYPE + SYNTAX INTEGER { + none (1), + md5 (2), + sha (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMPv3 User Profile entry - Authentication Protocol + supported by the user." + ::= { snmpUserProfileEntry 2 } + + snmpUserProfileEntryPrivProt OBJECT-TYPE + SYNTAX INTEGER { + none (1), + des (2), + aes (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMPv3 User Profile entry - Privacy Protocol + supported by the user. The Privacy Password must be set + and the Authentication Protocol must be md5 or sha + before this field may be set to des or aes." + ::= { snmpUserProfileEntry 3 } + + snmpUserProfileEntryPrivPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..31)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMPv3 User Profile entry - Privacy password + for the user. + + NOTE: Value returned for the GET command is + meaningless for this MIB object for security reason." + ::= { snmpUserProfileEntry 4 } + + snmpUserProfileEntryViewType OBJECT-TYPE + SYNTAX INTEGER { + read-Traps(1), + read-Write-Traps(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMPv3 User Profile entry - Access level (Get and Set) + of the user. " + ::= { snmpUserProfileEntry 5 } + + + snmpUserProfileEntryIpAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMPv3 User Profile entry - IP address or host name. + Can either be a dotted decimal IP string (e.g. 9.37.44.2) + or if DNS is enabled a host name." + ::= { snmpUserProfileEntry 6 } + + -- *********************************************************************** + -- DNS Configuration + -- *********************************************************************** + dnsConfig OBJECT IDENTIFIER ::= { tcpProtocols 2 } + + dnsEnabled OBJECT-TYPE + SYNTAX INTEGER { + dnsDisabled(0), + dnsEnabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable the DNS agent. + + Note that when this object has a value of enabled + that the following is verifed, if this verification fails a error + response will be returned for the set of this object and the DNS + resolver will be left in a disabled state. + (1)Is there at least one valid DNS server IP address + " + ::= { dnsConfig 1 } + + dnsServerIPAddress1 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the primary DNS server IP address." + ::= { dnsConfig 2 } + + dnsServerIPAddress2 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the secondary DNS server IP address." + ::= { dnsConfig 3 } + + dnsServerIPAddress3 OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the tertiary DNS server IP address." + ::= { dnsConfig 4 } + + dnsServerIPv6Address1 OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the primary IPv6 DNS server address." + ::= { dnsConfig 12 } + + dnsServerIPv6Address2 OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the secondary IPv6 DNS server address." + ::= { dnsConfig 13 } + + dnsServerIPv6Address3 OBJECT-TYPE + SYNTAX InetAddressIPv6 + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Contains the tertiary IPv6 DNS server address." + ::= { dnsConfig 14 } + + dnsPriority OBJECT-TYPE + SYNTAX INTEGER { + ipv6(1), + ipv4(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Tells the order host names are resolved. The options are + to either first resolve with an IPv6 DNS server or to first + resolve with an IPv6 DNS server." + ::= { dnsConfig 20 } + + dnsLXCADiscovery OBJECT-TYPE + SYNTAX INTEGER { + dnsLXCADiscoveryDisabled(0), + dnsLXCADiscoveryEnabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable or enable LXCA discovery using DNS SRV records." + ::= { dnsConfig 21 } + + -- *********************************************************************** + -- SMTP Configuration + -- *********************************************************************** + smtpConfig OBJECT IDENTIFIER ::= { tcpProtocols 3 } + + + smtpServerNameOrIPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 64 byte string that contains the + SMTP server Host name or IP address(a.b.c.d)." + ::= { smtpConfig 1 } + + smtpServerPort OBJECT-TYPE --- NOTE: new setting for IMM1 + -- can return Not Found until implemented + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SMTP server port number." + ::= { smtpConfig 2 } + + smtpServerAuthentication OBJECT-TYPE -- IMM2 only + SYNTAX INTEGER { + enabled(0), + disabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Enable/disable SMTP-AUTH function. smtpServerAuthenticationUser and + smtpServerAuthenticationPassword must be SET before smtpServerAuthentication + is enabled or the enable will fail." + ::= { smtpConfig 3 } + + smtpServerAuthenticationUser OBJECT-TYPE -- IMM2 only + SYNTAX OCTET STRING (SIZE(0..256)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SMTP authentication user name" + ::= { smtpConfig 4 } + + smtpServerAuthenticationPassword OBJECT-TYPE -- IMM2 only + SYNTAX OCTET STRING (SIZE(0..256)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SMTP authentication password. On a read a NULL string + will be returned for security reasons." + ::= { smtpConfig 5 } + + smtpServerAuthenticationMethod OBJECT-TYPE -- IMM2 only + SYNTAX INTEGER { + plain(0), + cram-md5(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SMTP authentication method , support CRAM-MD5 and PLAIN only" + ::= { smtpConfig 6 } + + smtpServerReversePath OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) -- IMM2 only + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 256 byte string that contains the SMTP Reverse Path. + The user can substitute their own sender information in place of the + IMM2 default sender information. For example imm@mycompany.com in place + of the default alertmgr@a.b.c.d." + ::= { smtpConfig 7 } + + -- *********************************************************************** + -- Telnet Configuration + -- *********************************************************************** + + tcpApplicationConfig OBJECT IDENTIFIER ::= { tcpProtocols 4 } + + telnetConnectionCounts OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + one(1), + two(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of telnet connections that can be active + concurrently." + ::= { tcpApplicationConfig 1 } + + slpAddrType OBJECT-TYPE + SYNTAX INTEGER { + multicast(0), + broadcast(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Set SLP address type to 0 (multicast) or 1 (broadcast). Note that when + slpAddrType is set to broadast value then the multicast address set in in + slpMulticastAddt will be ignored." + ::= { tcpApplicationConfig 2 } + + slpMulticastAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Service Locator Protocol Multicast address" + ::= { tcpApplicationConfig 3 } + + + -- *********************************************************************** + -- The SSH Server Configuration Group NOTE: IMM2-only + -- *********************************************************************** + + sshServerConfig OBJECT IDENTIFIER ::= { tcpApplicationConfig 5 } + + + sshServerHostKeySize OBJECT-TYPE + SYNTAX INTEGER { + bits512 (1), + bits768 (2), + bits1024 (3), + bits2048 (4), + bits4096 (5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the public/private host key pair. + + NOTE: The IMM supports only the bits1048 value." + ::= { sshServerConfig 1 } + + sshServerHostKeyFingerprint OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The RSA fingerprint of the public part of the host key + pair. This value can be used with the SSH client to + verify, on the initial connection, that the Secure Shell + server responding to the request is the server running + on the IMM. Null Empty string if no RSA key exists." + ::= { sshServerConfig 2 } + + sshServerHostKeyGenerate OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Initiate the new Host Keys generation process for the + IMM SSH Server. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sshServerConfig 3 } + + sshServerHostKeyGenerateProgress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicate the progress of the key generation process." + ::= { sshServerConfig 4 } + + sshEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable SSH." + ::= { sshServerConfig 5 } + + + -- *********************************************************************** + -- The SSL Configuration Group NOTE: IMM2-only + -- *********************************************************************** + + sslConfig OBJECT IDENTIFIER ::= { tcpApplicationConfig 6 } + + sslHTTPSServerConfigForWeb OBJECT IDENTIFIER ::= { sslConfig 1 } + + sslEnableHTTPSforWeb OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable HTTPS support for web. + Use this field to enable or disable SSL for the web interface. + The IMM must be restarted before the selected value + (enable/ disable) takes effect. + Note that in order to enable SSL, a valid SSL server certificate + must first be in place. To use SSL, a client web browser must + be configured to use SSL3 and/or TLS. Older export-grade browsers + with only SSL2 support cannot be used." + ::= { sslHTTPSServerConfigForWeb 1 } + + sslHTTPSServerWebCertificateGeneration OBJECT-TYPE + SYNTAX INTEGER { + generateNewKeyandSelfSigned(1), + generateNewKeyandCSR(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Initiate the new key and certificate generation process for the + web HTTPS. The required fields in sslCertificateData must be set + to valid contents. + generateNewKeyandSelfSigned - + Use this to generate a new encryption + key pair and install a self-signed certificate. If a key and a + certificate are present, they will be replaced. After the operation + is complete, SSL may be enabled using the new key and certificate. + generateNewKeyandCSR - + Use this to generate a new encryption key + and a certificate signing request (CSR). After the operation is + complete, the CSR file may be downloaded and sent to a certificate + authority (CA) for signing. + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslHTTPSServerConfigForWeb 2 } + + sslHTTPSServerWebCertificateTransfer OBJECT-TYPE + SYNTAX INTEGER { + importSignedCertificate(1), + downloadCertificate(2), + downloadCSR(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "sslConfigTftpServer and sslConfigFileName must contain valid values. + importSignedCertificate - + Use this to import a signed certificate. To obtain a signed + certificate, a certificate signing request (CSR) must first + be generated and sent to a certificate authority (CA). The + imported certificate must contain a public key that corresponds + to the key pair previously generated by the generateNewKeyandCSR. + downloadCertificate - + Use this link to download a copy of the currently installed c + ertificate. The certificate will be in DER format. The contents + of the certificate can be viewed using a third-party tool such as + OpenSSL (www.openssl.org). An example of the command line for + viewing the contents of the certificate using OpenSSL would look + something like the following: + openssl x509 -in cert.der -inform DER -text + downloadCSR - + The file produced when creating a CSR is in DER or PEM format + according to sslCertificateCSRDownloadFormat. If your CA expects + the data in some other format, the file can be converted using a + third-party tool such as OpenSSL(www.openssl.org). + If the CA asks you to copy the contents of the CSR file into + a web browser window, PEM format is usually expected. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslHTTPSServerConfigForWeb 3 } + + sslHTTPSWebCertificateStatus OBJECT-TYPE + SYNTAX INTEGER { + no-cert-installed(1), + self-signed-installed(2), + ca-signed-installed(3), + csr-generated(4), + self-signed-and-csr-generated(5), + ca-signed-and-csr-generated(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed Web certificates. + 1 = Private Key and Cert/CSR not available. + 2 = Private Key and Self-signed cert installed. + 3 = Private Key and CA-signed cert installed. + 4 = Private Key stored, CSR available for download. + 5 = Private Key and Self-signed cert installed, Private Key stored, CSR available for download. + 6 = Private Key and CA-signed cert installed, Private Key stored, CSR available for download. " + ::= { sslHTTPSServerConfigForWeb 4 } + + sslHTTPSWebCertificateExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the HTTPS Web Server certificate." + ::= { sslHTTPSServerConfigForWeb 5 } + + sslHTTPSWebCertificateRemove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove HTTPS Web Server certificate." + ::= { sslHTTPSServerConfigForWeb 6 } + + sslHTTPSServerConfigForCIMXML OBJECT IDENTIFIER ::= { sslConfig 2 } + + sslEnableHTTPSforCIMXML OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable HTTPS support for web. + Use this field to enable or disable SSL for the web interface. + The IMM must be restarted before the selected value + (enable/ disable) takes effect. + Note that in order to enable SSL, a valid SSL server certificate + must first be in place. " + ::= { sslHTTPSServerConfigForCIMXML 1 } + + sslHTTPSServerCIMXMLCertificateGeneration OBJECT-TYPE + SYNTAX INTEGER { + generateNewKeyandSelfSigned(1), + generateNewKeyandCSR(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Initiate the new key and certificate generation process for + CIMXML communication. The required fields in sslCertificateData must be set + to valid contents. + generateNewKeyandSelfSigned - + Use this to generate a new encryption + key pair and install a self-signed certificate. If a key and a + certificate are present, they will be replaced. After the operation + is complete, SSL may be enabled using the new key and certificate. + generateNewKeyandCSR - + Use this to generate a new encryption key + and a certificate signing request (CSR). After the operation is + complete, the CSR file may be downloaded and sent to a certificate + authority (CA) for signing. + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslHTTPSServerConfigForCIMXML 2 } + + sslHTTPSServerCIMXMLCertificateTransfer OBJECT-TYPE + SYNTAX INTEGER { + importSignedCertificate(1), + downloadCertificate(2), + downloadCSR(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "sslConfigTftpServer and sslConfigFileName must contain valid values. + importSignedCertificate - + Use this to import a signed certificate. To obtain a signed + certificate, a certificate signing request (CSR) must first + be generated and sent to a certificate authority (CA). The + imported certificate must contain a public key that corresponds + to the key pair previously generated by the generateNewKeyandCSR. + downloadCertificate - + Use this link to download a copy of the currently installed c + ertificate. The certificate will be in DER format. The contents + of the certificate can be viewed using a third-party tool such as + OpenSSL (www.openssl.org). An example of the command line for + viewing the contents of the certificate using OpenSSL would look + something like the following: + openssl x509 -in cert.der -inform DER -text + downloadCSR - + The file produced when creating a CSR is in DER or PEM format + according to sslCertificateCSRDownloadFormat. If your CA expects + the data in some other format, the file can be converted using a + third-party tool such as OpenSSL(www.openssl.org). + If the CA asks you to copy the contents of the CSR file into + a web browser window, PEM format is usually expected. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslHTTPSServerConfigForCIMXML 3 } + + sslHTTPSCIMXMLCertificateStatus OBJECT-TYPE + SYNTAX INTEGER { + no-cert-installed(1), + self-signed-installed(2), + ca-signed-installed(3), + csr-generated(4), + self-signed-and-csr-generated(5), + ca-signed-and-csr-generated(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed CIM/XML certificates. + 1 = Private Key and Cert/CSR not available. + 2 = Private Key and Self-signed cert installed. + 3 = Private Key and CA-signed cert installed. + 4 = Private Key stored, CSR available for download. + 5 = Private Key and Self-signed cert installed, Private Key stored, CSR available for download. + 6 = Private Key and CA-signed cert installed, Private Key stored, CSR available for download. " + ::= { sslHTTPSServerConfigForCIMXML 4 } + + sslHTTPSCIMXMLCertificateExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the HTTPS CIM/XML Server certificate." + ::= { sslHTTPSServerConfigForCIMXML 5 } + + sslHTTPSCIMXMLCertificateRemove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove HTTPS CIM/XML Server certificate." + ::= { sslHTTPSServerConfigForCIMXML 6 } + + sslClientConfigForLDAP OBJECT IDENTIFIER ::= { sslConfig 3 } + + sslEnableClientLDAP OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Use this field to enable or disable SSL for the LDAP Client. + The value selected takes effect immediately. Note that in order + to enable SSL, a valid SSL certificate must first be in place and at + least one SSL client trusted certificate must be imported. + Your LDAP server must support SSL3 or TLS to be compatible with the + SSL implementation used by the LDAP client." + ::= { sslClientConfigForLDAP 1 } + + sslClientLDAPCertificateGeneration OBJECT-TYPE + SYNTAX INTEGER { + generateNewKeyandSelfSigned(1), + generateNewKeyandCSR(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Initiate the new key and certificate generation process for the + LDAP Client Certificates. The required fields in sslCertificateData must be set + to valid contents. + generateNewKeyandSelfSigned - + Use this to generate a new encryption + key pair and install a self-signed certificate. If a key and a + certificate are present, they will be replaced. After the operation + is complete, SSL may be enabled using the new key and certificate. + generateNewKeyandCSR - + Use this to generate a new encryption key + and a certificate signing request (CSR). After the operation is + complete, the CSR file may be downloaded and sent to a certificate + authority (CA) for signing. + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslClientConfigForLDAP 2 } + + sslClientLDAPCertificateDownload OBJECT-TYPE + SYNTAX INTEGER { + downloadCertificate(2), + downloadCSR(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "sslConfigTftpServer and sslConfigFileName must contain valid values. + downloadCertificate - + Use this link to download a copy of the currently installed c + ertificate. The certificate will be in DER format. The contents + of the certificate can be viewed using a third-party tool such as + OpenSSL (www.openssl.org). An example of the command line for + viewing the contents of the certificate using OpenSSL would look + something like the following: + openssl x509 -in cert.der -inform DER -text + downloadCSR - + The file produced when creating a CSR is in DER or PEM format + according to sslCertificateCSRDownloadFormat. If your CA expects + the data in some other format, the file can be converted using a + third-party tool such as OpenSSL(www.openssl.org). + If the CA asks you to copy the contents of the CSR file into + a web browser window, PEM format is usually expected. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslClientConfigForLDAP 3 } + + sslClientLDAPCertificateImport OBJECT-TYPE + SYNTAX INTEGER { + importSignedCertificate1(1), + importTrustedCertificate1(2), + importTrustedCertificate2(3), + importTrustedCertificate3(4), + importTrustedCertificate4(5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "sslConfigTftpServer and sslConfigFileName must contain valid values. + importSignedCertificate - + Use this to import a signed certificate. To obtain a signed + certificate, a certificate signing request (CSR) must first + be generated and sent to a certificate authority (CA). The + imported certificate must contain a public key that corresponds + to the key pair previously generated by the generateNewKeyandCSR. + importTrustedCertificateX - + Use these to import or remove trusted CA certificates. + Trusted CA certificates are used by the SSL client to authenticate + the SSL Server's (LDAP Server's) certificate. The SSL client must be + disabled prior to importing or removing trusted certificates. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { sslClientConfigForLDAP 4 } + + sslClientLDAPCertificateStatus OBJECT-TYPE + SYNTAX INTEGER { + no-cert-installed(1), + self-signed-installed(2), + ca-signed-installed(3), + csr-generated(4), + self-signed-and-csr-generated(5), + ca-signed-and-csr-generated(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed SSL Client certificates. + 1 = Private Key and Cert/CSR not available. + 2 = Private Key and Self-signed cert installed. + 3 = Private Key and CA-signed cert installed. + 4 = Private Key stored, CSR available for download. + 5 = Private Key and Self-signed cert installed, Private Key stored, CSR available for download. + 6 = Private Key and CA-signed cert installed, Private Key stored, CSR available for download. " + ::= { sslClientConfigForLDAP 5 } + + sslClientLDAPCertificateExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the LDAP Client certificate." + ::= { sslClientConfigForLDAP 6 } + + sslClientLDAPCertificateRemove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove LDAP Client certificate." + ::= { sslClientConfigForLDAP 7 } + + sslClientLDAPTrustedCertificate1Status OBJECT-TYPE + SYNTAX INTEGER { + not-installed(0), + installed(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed SSL Client trusted certificates. + 0 = certificate not installed + 1 = certificate installed. " + ::= { sslClientConfigForLDAP 8 } + + sslClientLDAPTrustedCertificate1ExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the LDAP Client certificate." + ::= { sslClientConfigForLDAP 9 } + + sslClientLDAPTrustedCertificate1Remove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove LDAP Client certificate." + ::= { sslClientConfigForLDAP 10 } + + sslClientLDAPTrustedCertificate2Status OBJECT-TYPE + SYNTAX INTEGER { + not-installed(0), + installed(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed SSL Client trusted certificates. + 0 = certificate not installed + 1 = certificate installed. " + ::= { sslClientConfigForLDAP 11 } + + sslClientLDAPTrustedCertificate2ExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the LDAP Client certificate." + ::= { sslClientConfigForLDAP 12 } + + sslClientLDAPTrustedCertificate2Remove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove LDAP Client certificate." + ::= { sslClientConfigForLDAP 13 } + + sslClientLDAPTrustedCertificate3Status OBJECT-TYPE + SYNTAX INTEGER { + not-installed(0), + installed(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed SSL Client trusted certificates. + 0 = certificate not installed + 1 = certificate installed. " + ::= { sslClientConfigForLDAP 14 } + + sslClientLDAPTrustedCertificate3ExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the LDAP Client certificate." + ::= { sslClientConfigForLDAP 15 } + + sslClientLDAPTrustedCertificate3Remove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove LDAP Client certificate." + ::= { sslClientConfigForLDAP 16 } + + sslClientLDAPTrustedCertificate4Status OBJECT-TYPE + SYNTAX INTEGER { + not-installed(0), + installed(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed SSL Client trusted certificates. + 0 = certificate not installed + 1 = certificate installed. " + ::= { sslClientConfigForLDAP 17 } + + + sslClientLDAPTrustedCertificate4ExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the LDAP Client certificate." + ::= { sslClientConfigForLDAP 18 } + + sslClientLDAPTrustedCertificate4Remove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove LDAP Client certificate." + ::= { sslClientConfigForLDAP 19 } + + sslConfigTftpServer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To download or import certificates, set the IP address + or host name of the TFTP server where the file should be + transferred to or from. The address must be entered in a + dotted decimal IP string (e.g. 9.37.44.2), or equivalent + for IPv6." + ::= { sslConfig 4 } + + sslConfigFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name on target system for the downloaded or + imported certificate." + ::= { sslConfig 5 } + + + sslCertificateData OBJECT IDENTIFIER ::= { sslConfig 6 } + + + sslCertificateDataCountry OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the country where the IMM physically + resides. + This field must contain the 2 character country code." + ::= { sslCertificateData 1} + + sslCertificateDataStateorProvince OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the state or province where the IMM + physically resides. + This field may contain a maximum of 30 characters. " + ::= { sslCertificateData 2} + + sslCertificateDataCityOrLocality OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the city or locality where the IMM + physically resides. + This field may contain a maximum of 50 characters." + ::= { sslCertificateData 3} + + sslCertificateDataOrganizationName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the company or organization that + owns the IMM. When this is used to generate a CSR, the + issuing CA may verify that the organization requesting the + certificate is legally entitled to claim ownership of the + given company or organization name. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 4} + + + sslCertificateDataIMMHostName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the IMM host name that currently + appears in the browser URL address bar. This certificate + attribute is generally referred to as the Common Name (CN). + Special care must be taken to ensure that the value entered + into the IMM host name field exactly matches the host name + as it is known by the web browser when it access the IMM. + The browser compares the host name in the resolved URL to the + name that appears in the certificate. In order to prevent + certificate warnings from the browser, the value used in this + field must match the host name used by the browser to connect + to the IMM. + For instance, if the URL address bar in the browser currently + were to appear as http://mm11.xyz.com/private/main.ssi, the + value used for the IMM Host Name field should be mm11.xyz.com. + If the URL were http://mm11/private/main.ssi, the value used + should be mm11 . + If the URL were http://192.168.70.2/private/main.ssi, + the value used should be 192.168.70.2 . + It is the users responsibility to ensure the correct value + is entered and works. + This field may contain a maximum of 60 characters. " + ::= { sslCertificateData 5} + + sslCertificateDataContact OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field to indicate the name of a contact person + responsible for the IMM. + This field may contain a maximum of 60 characters. " + ::= { sslCertificateData 6} + + sslCertificateDataEmailAddr OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field to indicate the email address of a contact + person responsible for the IMM. + This field may contain a maximum of 60 characters. " + ::= { sslCertificateData 7} + + sslCertificateDataOrganizationUnit OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field to indicate the unit within the company + or organization that owns the IMM. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 8} + + sslCertificateDataSurname OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as the + surname of a person responsible for the IMM. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 9} + + sslCertificateDataGivenName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as the + given name of a person responsible for the IMM. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 10} + + sslCertificateDataInitials OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as the + initials of a person responsible for the IMM. + This field may contain a maximum of 20 characters." + ::= { sslCertificateData 11} + + sslCertificateDataDNQualifier OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as a + Distinguished Name Qualifier for the IMM. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 12} + + sslCertificateDataCSRChallengePassword OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR. + Use this field to assign a password to the CSR. + This field may contain a maximum of 30 characters. " + ::= { sslCertificateData 13} + + sslCertificateDataCSRUnstructuredName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR. + Use this field for additional information, such as an + unstructured name assigned to the IMM. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 14} + + sslCertificateDataSubjectAltName1 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 15} + + sslCertificateDataSubjectAltName2 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 16} + + sslCertificateDataSubjectAltName3 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 17} + + sslCertificateDataSubjectAltName4 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 18} + + sslCertificateDataSubjectAltName5 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 19} + + sslCertificateDataSubjectAltName6 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 20} + + sslCertificateDataSubjectAltName7 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 21} + + sslCertificateDataSubjectAltName8 OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field to allow an SSL certificate to specify + an additional name that the certificate should match. + This field may contain a maximum of 60 characters." + ::= { sslCertificateData 22} + + sslCertificateCSRDownloadFormat OBJECT-TYPE + SYNTAX INTEGER { + der(0), + pem(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "You can download the generated CSR in DER format or PEM format. + If the CA asks you to copy the contents of the CSR file into a web browser window, + PEM format is usually expected. + If the CA expects the data in PEM format, you need choose PEM format." + ::= { sslConfig 7 } + + -- *********************************************************************** + -- Cryptography Mode NOTE: IMM2-only + -- *********************************************************************** + + cryptoSettings OBJECT IDENTIFIER ::= { tcpApplicationConfig 7 } + + cryptoMode OBJECT-TYPE + SYNTAX INTEGER { + basic(0), + nist(1), + nsaB128(2), + nsaB192(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Basic or NIST mode enabled. + The Basic mode is compatible with older firmware versions and + with browers and other network clients that do not implement + the stricter security requirements of the compliance mode. + The NIST mode is to have the IMM2 firmware comply with the + requirements of SP 800-131A. + The NSA Suite B 128-bit and 192-bit modes have the IMM2 firmware + comply with the requirements of the NSA Suite B Cryptography standards." + ::= { cryptoSettings 1 } + + cryptoSnmpv3 OBJECT-TYPE + SYNTAX INTEGER { + disallow(0), + allow(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disallow or allow SNMPv3 accounts that do not comply with + NIST compliance mode when NIST compliance has been enabled." + ::= { cryptoSettings 2 } + + cryptoInsufCompliance OBJECT IDENTIFIER ::= { cryptoSettings 3 } + + cryptoInsufComplianceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CryptoInsufComplianceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains items not in compliance with the current cyrptoMode setting." + ::= { cryptoInsufCompliance 1 } + + cryptoInsufComplianceEntry OBJECT-TYPE + SYNTAX CryptoInsufComplianceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains an insufficient compliance item name." + INDEX { cryptoInsufComplianceItemIndex } + ::= { cryptoInsufComplianceTable 1 } + + CryptoInsufComplianceEntry ::= + SEQUENCE { + cryptoInsufComplianceItemIndex INTEGER, + cryptoInsufComplianceItemName OCTET STRING + } + + cryptoInsufComplianceItemIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION "The index number of one insufficient compliance item entry." + ::= { cryptoInsufComplianceEntry 1 } + + cryptoInsufComplianceItemName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of one insufficient compliance item." + ::= { cryptoInsufComplianceEntry 2 } + + + -- *********************************************************************** + -- Certificate Domain Names NOTE: IMM2-only + -- *********************************************************************** + + certDomainNames OBJECT IDENTIFIER ::= { tcpApplicationConfig 8 } + + certDomainNameTable OBJECT-TYPE + SYNTAX SEQUENCE OF CertDomainNameEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains certificate domain names and status." + ::= { certDomainNames 1 } + + certDomainNameEntry OBJECT-TYPE + SYNTAX CertDomainNameEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains a certificate domain name and status." + INDEX { certDomainNameIndex } + ::= { certDomainNameTable 1 } + + CertDomainNameEntry ::= + SEQUENCE { + certDomainNameIndex INTEGER, + certDomainName OCTET STRING, + certDomainNameStatus OCTET STRING + } + + certDomainNameIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION "The index number of one certificate domain name entry." + ::= { certDomainNameEntry 1 } + + certDomainName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Certificate Domain Name of one certificate domain name entry." + ::= { certDomainNameEntry 2 } + + certDomainNameStatus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the Certificate Domain Name entry." + ::= { certDomainNameEntry 3 } + + addCertDomainName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Add one Certificate Domain Name to the certificate domain name table." + ::= { certDomainNames 2} + + rmCertDomainName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Remove one Certificate Domain Name to the certificate domain name table." + ::= { certDomainNames 3} + + + -- *********************************************************************** + -- Storage Key Repository Servers NOTE: IMM2-only + -- *********************************************************************** + + skrServers OBJECT IDENTIFIER ::= { tcpApplicationConfig 9 } + + skrServerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SkrServerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "This table contains Storage Key Repository Server hostnames and ports." + ::= { skrServers 1 } + + skrServerEntry OBJECT-TYPE + SYNTAX SkrServerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION "Each row contains a Storage Key Repository Server hostname and port." + INDEX { skrServerIndex } + ::= { skrServerTable 1 } + + SkrServerEntry ::= + SEQUENCE { + skrServerIndex INTEGER, + skrServerHostname OCTET STRING, + skrServerPort INTEGER + } + + skrServerIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION "The index number of one Storage Key Repository Server entry." + ::= { skrServerEntry 1 } + + skrServerHostname OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Storage Key Repository Server hostname or IP address." + ::= { skrServerEntry 2 } + + skrServerPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Storage Key Repository Server port number." + ::= { skrServerEntry 3 } + + skrServerCertAction OBJECT-TYPE + SYNTAX INTEGER { + importServerCertificate(1), + removeServerCertificate(2) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "importServerCertificate - + Import Storage Key Repository Server certificate. + For tftp mode, skrConfigFtpServer and skrConfigFileName must contain valid values. + For sftp mode, skrConfigFTPCallUserID and skrConfigFtpCallPassword must also contain valid values. + removeServerCertificate - + Remove Storage Key Repository Server certificate." + ::= { skrServers 2 } + + skrDeviceGroup OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..17)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An optional NULL terminated 16 character string that contains the Device Group that the server drives belong to." + ::= { skrServers 3 } + + + skrClientConfigCertficate OBJECT IDENTIFIER ::= { skrServers 4 } + + skrClientCertificateGeneration OBJECT-TYPE + SYNTAX INTEGER { + generateNewKeyandSelfSigned(1), + generateNewKeyandCSR(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Initiate the new key and certificate generation process for the + key repository client. The required fields in skrCertificateData must be set + to valid contents. + generateNewKeyandSelfSigned - + Use this to generate a new encryption + key pair and install a self-signed certificate. If a key and a + certificate are present, they will be replaced. After the operation + is complete, SSL may be enabled using the new key and certificate. + generateNewKeyandCSR - + Use this to generate a new encryption key + and a certificate signing request (CSR). After the operation is + complete, the CSR file may be downloaded and sent to a certificate + authority (CA) for signing. + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { skrClientConfigCertficate 1 } + + skrClientCertificateTransfer OBJECT-TYPE + SYNTAX INTEGER { + importSignedCertificate(1), + downloadCertificate(2), + downloadCSR(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For tftp mode, skrConfigFtpServer and skrConfigFileName must contain valid values. + For sftp mode, skrConfigFTPCallUserID and skrConfigFtpCallPassword must also contain valid values. + importSignedCertificate - + Use this to import a signed certificate. To obtain a signed + certificate, a certificate signing request (CSR) must first + be generated and sent to a certificate authority (CA). The + imported certificate must contain a public key that corresponds + to the key pair previously generated by the generateNewKeyandCSR. + downloadCertificate - + Use this link to download a copy of the currently installed + certificate. The certificate will be in DER format. The contents + of the certificate can be viewed using a third-party tool such as + OpenSSL (www.openssl.org). An example of the command line for + viewing the contents of the certificate using OpenSSL would look + something like the following: + openssl x509 -in cert.der -inform DER -text + downloadCSR - + The file produced when creating a CSR is in DER or PEM format + according to sslCertificateCSRDownloadFormat. If your CA expects + the data in some other format, the file can be converted using a + third-party tool such as OpenSSL(www.openssl.org). + If the CA asks you to copy the contents of the CSR file into + a web browser window, PEM format is usually expected. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { skrClientConfigCertficate 2 } + + skrClientCertificateStatus OBJECT-TYPE + SYNTAX INTEGER { + no-cert-installed(1), + self-signed-installed(2), + ca-signed-installed(3), + csr-generated(4), + self-signed-and-csr-generated(5), + ca-signed-and-csr-generated(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the installed Web certificates. + 1 = Private Key and Cert/CSR not available. + 2 = Private Key and Self-signed cert installed. + 3 = Private Key and CA-signed cert installed. + 4 = Private Key stored, CSR available for download. + 5 = Private Key and Self-signed cert installed, Private Key stored, CSR available for download. + 6 = Private Key and CA-signed cert installed, Private Key stored, CSR available for download. " + ::= { skrClientConfigCertficate 3 } + + skrClientCertificateExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the SKR client certificate." + ::= { skrClientConfigCertficate 4 } + + skrClientCertificateRemove OBJECT-TYPE + SYNTAX INTEGER { + removeServerCertificate(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "removeServerCertificate - + Remove SKR client certificate." + ::= { skrClientConfigCertficate 5 } + + + skrCertificateData OBJECT IDENTIFIER ::= { skrServers 5 } + + skrCertificateDataCountry OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the country where the IMM physically + resides. + This field must contain the 2 character country code." + ::= { skrCertificateData 1} + + skrCertificateDataStateorProvince OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the state or province where the IMM + physically resides. + This field may contain a maximum of 30 characters. " + ::= { skrCertificateData 2} + + skrCertificateDataCityOrLocality OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the city or locality where the IMM + physically resides. + This field may contain a maximum of 50 characters." + ::= { skrCertificateData 3} + + skrCertificateDataOrganizationName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the company or organization that + owns the IMM. When this is used to generate a CSR, the + issuing CA may verify that the organization requesting the + certificate is legally entitled to claim ownership of the + given company or organization name. + This field may contain a maximum of 60 characters." + ::= { skrCertificateData 4} + + skrCertificateDataIMMHostName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Required field for generating a CSR or self-signed + certificate. + Use this field to indicate the IMM host name that currently + appears in the browser URL address bar. This certificate + attribute is generally referred to as the Common Name (CN). + Special care must be taken to ensure that the value entered + into the IMM host name field exactly matches the host name + as it is known by the web browser when it access the IMM. + The browser compares the host name in the resolved URL to the + name that appears in the certificate. In order to prevent + certificate warnings from the browser, the value used in this + field must match the host name used by the browser to connect + to the IMM. + For instance, if the URL address bar in the browser currently + were to appear as http://mm11.xyz.com/private/main.ssi, the + value used for the IMM Host Name field should be mm11.xyz.com. + If the URL were http://mm11/private/main.ssi, the value used + should be mm11 . + If the URL were http://192.168.70.2/private/main.ssi, + the value used should be 192.168.70.2 . + It is the users responsibility to ensure the correct value + is entered and works. + This field may contain a maximum of 60 characters. " + ::= { skrCertificateData 5} + + skrCertificateDataContact OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field to indicate the name of a contact person + responsible for the IMM. + This field may contain a maximum of 60 characters. " + ::= { skrCertificateData 6} + + skrCertificateDataEmailAddr OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field to indicate the email address of a contact + person responsible for the IMM. + This field may contain a maximum of 60 characters. " + ::= { skrCertificateData 7} + + skrCertificateDataOrganizationUnit OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field to indicate the unit within the company + or organization that owns the IMM. + This field may contain a maximum of 60 characters." + ::= { skrCertificateData 8} + + skrCertificateDataSurname OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as the + surname of a person responsible for the IMM. + This field may contain a maximum of 60 characters." + ::= { skrCertificateData 9} + + skrCertificateDataGivenName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as the + given name of a person responsible for the IMM. + This field may contain a maximum of 60 characters." + ::= { skrCertificateData 10} + + skrCertificateDataInitials OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as the + initials of a person responsible for the IMM. + This field may contain a maximum of 20 characters." + ::= { skrCertificateData 11} + + skrCertificateDataDNQualifier OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR or self-signed + certificate. + Use this field for additional information, such as a + Distinguished Name Qualifier for the IMM. + This field may contain a maximum of 60 characters." + ::= { skrCertificateData 12} + + skrCertificateDataCSRChallengePassword OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR. + Use this field to assign a password to the CSR. + This field may contain a maximum of 30 characters. " + ::= { skrCertificateData 13} + + skrCertificateDataCSRUnstructuredName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Optional field for generating a CSR. + Use this field for additional information, such as an + unstructured name assigned to the IMM. + This field may contain a maximum of 60 characters." + ::= { skrCertificateData 14} + + skrConfigFtpServer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To import certificates, set the IP address or host name of the server + where the file should be transferred from. The address must be entered + in a dotted decimal IP string (e.g. 9.37.44.2), or equivalent for IPv6." + ::= { skrServers 6 } + + skrConfigFtpServerMode OBJECT-TYPE + SYNTAX INTEGER { + tftp(1), + sftp(3)} + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the FTP mode used." + ::= { skrServers 7 } + + skrConfigFtpCallPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the port on remote TFTP/SFTP server for data + transmission (default values are 69/22, respectively)." + ::= { skrServers 8 } + + skrConfigFTPCallUserID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the user account to login remote SFTP server." + ::= { skrServers 9 } + + skrConfigFtpCallPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the password to login remote SFTP server." + ::= { skrServers 10 } + + skrConfigFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name on target system for the imported certificate." + ::= { skrServers 11 } + + skrServerCertificateExpirationDate OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Expiration date of the SKR Server certificate." + ::= { skrServers 12 } + + + -- *********************************************************************** + -- TCP Port Assignment + -- *********************************************************************** + tcpPortAssignmentCfg OBJECT IDENTIFIER ::= { tcpProtocols 5 } + + tcpPortsRestoreDefault OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Reset all the ports to the factory defaults. " + ::= { tcpPortAssignmentCfg 1 } + + httpPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "HTTP port number. Default value is 80. Once changed, the url's have to + include :port at the end. " + ::= { tcpPortAssignmentCfg 2 } + + httpsPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SSL port number. Default value is 443. Once changed, the url's have to + include :port at the end." + ::= { tcpPortAssignmentCfg 3 } + + telnetLegacyCLIPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "telnet port number. Default value is 23." + ::= { tcpPortAssignmentCfg 4 } + + sshLegacyCLIPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SSH port number. Default value is 22." + ::= { tcpPortAssignmentCfg 6 } + + snmpAgentPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMP Agent port number. Default value is 161." + ::= { tcpPortAssignmentCfg 8 } + + snmpTrapsPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "SNMP Traps port number. Default value is 162." + ::= { tcpPortAssignmentCfg 9 } + + remvidPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Remote Console port number. Default value is 3900." + ::= { tcpPortAssignmentCfg 10 } + + ibmSystemDirectorHttpPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IBM Systems Director Http port number." + ::= { tcpPortAssignmentCfg 11 } + + + ibmSystemDirectorHttpsPortAssignment OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IBM Systems Director Https port number." + ::= { tcpPortAssignmentCfg 12 } + + + -- *********************************************************************** + -- LDAP Client Configuration + -- *********************************************************************** + + ldapClientCfg OBJECT IDENTIFIER ::= { tcpProtocols 6 } + + ldapServer1NameOrIPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 64 byte string that contains the + LDAP server host name or IP address (a.b.c.d)." + ::= { ldapClientCfg 1 } + + ldapServer1PortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "LDAP server port number." + ::= { ldapClientCfg 2 } + + ldapServer2NameOrIPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 64 byte string that contains the + LDAP server host name or IP address (a.b.c.d)." + ::= { ldapClientCfg 3 } + + ldapServer2PortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "LDAP server port number." + ::= { ldapClientCfg 4 } + + ldapServer3NameOrIPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 64 byte string that contains the + LDAP server host name or IP address (a.b.c.d)." + ::= { ldapClientCfg 5 } + + ldapServer3PortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "LDAP server port number." + ::= { ldapClientCfg 6 } + + ldapServer4NameOrIPAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A NULL terminated 64 byte string that contains the + LDAP server host name or IP address (a.b.c.d)." + ::= { ldapClientCfg 7 } + + ldapServer4PortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "LDAP server port number." + ::= { ldapClientCfg 8 } + + ldapRootDN OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Distinguished Name for root entry of directory tree. + An example might look like dn=foobar,dn=com." + ::= { ldapClientCfg 9 } + + ldapUserSearchBaseDN OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS deprecated + DESCRIPTION + "As part of the user authentication process, it is necessary to search + the LDAP server for one or more attributes associated with a particular + user. Any search request must specify the base DN for the actual search. + This field specifies the base DN which should be used to search the User + directory. An example might look like cn=users,dn=foobar,dn=com. If this + field is left blank, the Root DN will be used as the search base instead. + As mentioned, user searches are part of the authentication process. They + are carried out to retrieve information about the user such as login + permissions, callback number, and group memberships. For Version 2.0 LDAP + clients, it is strongly encouraged that this parameter be configured, + otherwise a search using the root DN may not succeed (as seen on Active + Directory servers). + + NOTE: This Mib object is deprecated and no longer supported." + ::= { ldapClientCfg 10 } + + ldapGroupFilter OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..511)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This filter is used for group authentication. It specifies what group or + groups that this MM belongs to. If left blank, group authentication is + disabled. Otherwise, group authentication will be performed against the + filter. The filter can be a specific group name (eg. IMMWest), a wildcard (*) + which matches everything, or a wildcard with a prefix (eg. IMM*). The default + filter is IMM*. + After user authentication, group authentication will take place, whereby an + attempt will be made to match the group or groups (that the user belongs to) + to the group filter defined here. If there is no match, the user will not pass + authentication and will be blocked. If there is a match, the login permissions + for the user will be retrieved from the matched group(s), unless the user + already has login permissions assigned directly from the user record retrieved + from the LDAP server." + ::= { ldapClientCfg 11 } + + + ldapBindingMethod OBJECT-TYPE + SYNTAX INTEGER { + anonymousAuthentication(0), + clientAuthentication(1), + userPrincipalName(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "On initial binds to the LDAP server during user authentication, there are + three options: + Anonymous authentication: Bind attempt is made without a client DN or password. + If the bind is successful, a search will be requested in order to find an entry + on the LDAP server for the user attempting to login. If an entry is found, a + second attempt to bind will be attempted, this time with the user's DN and + password. If this succeeds, the user is deemed to have passed the user + authentication phase. Group authentication is then attempted if it is enabled. + Client authentication: Bind attempt is made with client DN and password + specified by this configuration parameter. If the bind is successful, we + proceed as above. + User Principal Name (UPN): Bind attempt is made directly with the credentials + used during the login process. If this succeeds, the user is deemed to have + passed the user authentication phase. Note that for Active Directory servers, + the userid can have the form someuser@somedomain or simply someuser." + ::= { ldapClientCfg 12 } + + ldapClientAuthenticationDN OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The initial bind to the LDAP server during user authentication can be + performed with anonymous authentication, client based authentication, or UPN. + The client based option requires a client DN and password as parameters to + the bind request. These parameters are configured here. Note that the password + can be left blank." + ::= { ldapClientCfg 13 } + + ldapClientAuthenticationPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..25)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The client authentication password" + ::= { ldapClientCfg 14 } + + ldapRoleBasedSecurityEnabled OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(0) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A value of true for RoleBasedSecurityEnabled indicates enhanced + will be used by the service processor. A value of false for + RoleBasedSecurityEnabled indicates the legacy bit mask based + security is being used." + ::= { ldapClientCfg 15 } + + ldapServerTargetName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When administrator chooses Enhanced Role Based Security authentication model, + he can associate one IMM with one managed target object in Snap-in (one tool + to configure LDAP users permission) via one target name. The IMM target name can + be looked as alias of IMM, administrator can change it according to his + configuration requirements. This is a string of up to 63 characters (plus the + null character)" + ::= { ldapClientCfg 16 } + + ldapUIDsearchAttribute OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When the binding method selected is Anonymous authentication or Client + authentication, the initial bind to the LDAP server is followed by a search + request aimed at retrieving specific information about the user, including the + user's DN, login permissions, and group ownerships. In order to retrieve this + information, the search request must specify the attribute name used to + represent userids on that server. Specifically, this name is used as a search + filter against the login id entered by the user. This attribute name is + configured here. If this field is left blank, a default of uid is used during + user authentication. + For example, on Active Directory servers, the attribute name used for userids + is often sAMAccoutName. + When the binding method selected is UPN or Strict UPN, this field defaults + automatically to userPrincipalName during user authentication if the userid + entered has the form userid@somedomain." + ::= { ldapClientCfg 17 } + + ldapGroupSearchAttribute OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When the MM Group Filter name is configured, it is necessary to retrieve + from the LDAP server the list of groups that a particular user belongs to. + This is required to do group authentication. In order to retrieve this list, + the search filter sent to the server must specify the attribute name associated + with groups. This field specifies this attribute name. + If this field is left blank, the attribute name in the filter will default + to memberOf." + ::= { ldapClientCfg 18 } + + ldapLoginPermissionAttribute OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When a user successfully authenticates via a LDAP server, it is necessary + to retrieve the login permissions for this user. In order to retrieve these + permissions, the search filter sent to the server must specify the attribute + name associated with login permissions. This field specifies this attribute + name." + ::= { ldapClientCfg 19 } + + ldapUseDNSOrPreConfiguredServers OBJECT-TYPE + SYNTAX INTEGER { + usePreConfiguredLDAPServers (0), + useDNSToFindLDAPServers (1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The MM contains a Version 2.0 LDAP Client that may be configured to provide + user authentication through one or more LDAP servers. The LDAP server(s) to be + used for authentication can be discovered dynamically or manually pre-configured. + + If the usePreConfiguredLDAPServers option is selected, up to 3 LDAP servers can + be configured. Simply enter the server's IP address or hostname (assuming DNS + is enabled). The port number for each server is optional. If left blank, + the default value of 389 is used for non-secured LDAP connections. For secured + connections, the default is 636. At least one server must be configured. + + If the useDNSToFindLDAPServers is selected, the mechanisms described by RFC2782 + (A DNS RR for specifying the location of services) are applied to find the + server(s). This is known as DNS SRV." + ::= { ldapClientCfg 20 } + + ldapDomainSource OBJECT-TYPE --IMM2-only + SYNTAX INTEGER { + extractSearchDomainFromLoginID (0), + useOnlyConfiguredSearchDomainBelow (1), + tryLoginFirstThenConfiguredValue (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The DNS SRV request sent to the DNS server must specify a domain name. + The LDAP client will determine where to get this domain name based on one + of the following three options: + + - extractSearchDomainFromLoginID: With this option, the LDAP client will + use the domain name in the login id. For example, if the login id is + joesmith@mycompany.com, the domain name equals mycompany.com. If the domain + name cannot be extracted, the DNS SRV will fail, causing the user + authentication to fail automatically. + + - useOnlyConfiguredSearchDomainBelow: With this option, the LDAP client + will use the domain name configured in the Search Domain parameter. + + - tryLoginFirstThenConfiguredValue: With this option, the LDAP client will + first attempt to extract the domain name from the login id. If this succeeds, + this domain name will be used in the DNS SRV request. If there is no domain + name present in the login id, the LDAP client will instead use the configured + Search Domain parameter as the domain name in the DNS SRV request. + If nothing is configured, user authentication will fail immediately." + ::= { ldapClientCfg 21 } + + ldapForestName OBJECT-TYPE -- IMM1-only, return Not Found + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "In order to discover Global Catalogs (GC), the forest name must be configured + in the ForestName property. The Global Catalogs are required for users who belong + to universal groups in cross-domains. In environments where cross-domain group + membership does not apply, this field can be left blank." + ::= { ldapClientCfg 22 } + + ldapAuthCfg OBJECT-TYPE -- IMM1-only, return Not Found + SYNTAX INTEGER { + authenticationAndAuthorization(0), + authenticationOnly(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If ldapAuthCfg is set to 0, LDAP server is used to authenticate and authorize + users. If it is set to 1, LDAP server is only used to authenticate users. + + Note:LDAP Authentication Only mode is currently supported only in an Active + Directory environment." + ::= { ldapClientCfg 23 } + + + ldapSearchDomain OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..64)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This parameter may be used as the domain name in the DNS SRV request, + depending on how the Domain Source parameter is configured." + ::= { ldapClientCfg 24 } + + ldapServiceName OBJECT-TYPE --IMM2-only + SYNTAX OCTET STRING (SIZE(0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The DNS SRV request sent to the DNS server must also specify a service name. + The configured value will be used for this purpose. If left blank, the default + value used is 'ldap'. Note that the DNS SRV request must also specify a protocol + name. This defaults to 'tcp' and is not configurable." + ::= { ldapClientCfg 25 } + + + -- ******************************************************************************** + -- NTP Configuration + -- ******************************************************************************** + ntpConfig OBJECT IDENTIFIER ::= { tcpProtocols 8 } + + ntpEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable the NTP client. The client will update + the IMM system clock at the frequency specified." + ::= { ntpConfig 1 } + + ntpIpAddressHostname1 OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "First NTP server's IP address or hostname if DNS is enabled + and configured." + ::= { ntpConfig 2 } + + ntpIpAddressHostname2 OBJECT-TYPE --IMM2-only + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Second NTP server's IP address or hostname if DNS is enabled + and configured." + ::= { ntpConfig 4 } + + ntpIpAddressHostname3 OBJECT-TYPE --IMM2-only + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Third NTP server's IP address or hostname if DNS is enabled + and configured." + ::= { ntpConfig 6 } + + ntpIpAddressHostname4 OBJECT-TYPE --IMM2-only + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Fourth NTP server's IP address or hostname if DNS is enabled + and configured." + ::= { ntpConfig 7 } + + + ntpUpdateFrequency OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The frequency in minutes that the NTP service runs. + The value range is 3 to 1440." + ::= { ntpConfig 3 } + + ntpUpdateClock OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Update the IMM system clock with the specified NTP server. + A valid NTP server must be configured first." + ::= { ntpConfig 5 } + + + -- ******************************************************************************** + -- IPMI Configuration NOTE: IMM2-only + -- ******************************************************************************** + ipmiConfig OBJECT IDENTIFIER ::= { tcpProtocols 10 } + + ipmiEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable IPMI" + ::= { ipmiConfig 1 } + + -- ******************************************************************************** + -- Save/Restore Configuration NOTE: IMM2-only + -- ******************************************************************************** + configurationManagement OBJECT IDENTIFIER ::= { configureSP 5 } + + + configurationManagementTftpServer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "To save or restore the system configuration, + set the IP address or host name of the TFTP server where + the file should be transferred to or from. The address must be entered in a + dotted decimal IP string (e.g. 9.37.44.2), or equivalent for IPv6." + ::= { configurationManagement 1 } + + configurationManagementFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..254)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name of the saved file or restore-from file." + ::= { configurationManagement 2 } + + configurationManagementSaveStart OBJECT-TYPE + SYNTAX INTEGER { + execute(1), + execute-nowait(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Start saving the configuration file to the specified target file + and system. + Using execute will cause the SNMP client to wait for the save + operation to complete. + Using execute-nowait will not cause the SNMP client to wait for + the save to complete. Instead it will save the configuration in + the background. + + Note 1: Both configurationManagementTftpServer and + configurationManagementileName must be set. + Note 2: Depending on the target, it might take up to several + seconds for the save operation to complete. + Note 3: Use configurationManagementStatus to confirm the status of + the last operaion. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { configurationManagement 3 } + + configurationManagementRestoreStart OBJECT-TYPE + SYNTAX INTEGER { + execute(1), + execute-nowait(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Start restoring the configuration file from the specified target + file and system. + Using execute will cause the SNMP client to wait for the restore + operation to complete. + Using execute-nowait will not cause the SNMP client to wait for + the restore to complete. Instead it will restore the configuration + in the background. + + Note 1: Both configurationManagementTftpServer and + configurationManagementileName must be set. + Note 2: Depending on the target, it might take up to several + seconds for the operation to complete. + Note 3: Use configurationManagementStatus to confirm the status of + the last operation. + + NOTE: Value returned for the GET command is meaningless + for this MIB object." + ::= { configurationManagement 4 } + + configurationManagementStatus OBJECT-TYPE + SYNTAX INTEGER { + success(0), + failed(1), + saving(2), + restoring(3), + unsupported(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the last configurationManagement operation which + was initiated through SNMP method." + ::= { configurationManagement 5 } + + + -- ******************************************************************************** + -- Check IMM Version NOTE: IMM2-only + -- ******************************************************************************** + immVersionCheck OBJECT-TYPE + SYNTAX INTEGER { + immVersion(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the IMM version type." + ::= { configureSP 7 } + + +-- *********************************************************************** +-- System Services +-- *********************************************************************** + -- *********************************************************************** + -- System Watch Dog Timers + -- *********************************************************************** + serverTimers OBJECT IDENTIFIER ::= { generalSystemSettings 1 } + + oSHang OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + twoAndHalfMinutes(150), + threeMinutes(180), + threeAndHalfMinutes(210), + fourMinutes(240), + tenMinutes(600) --IMM1 setting + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number, in 1 second intervals, the IMM will + check to insure the OS is operating properly. + If the operating system fails to respond within 6 seconds to one + of these checks, the remote supervisor adapter will generate + an O/S Timeout alert(if enabled) and automatically restart the + system one time. Once the system is restarted, the O/S Watchdog + is automatically disabled until the operating + system is shutdown and the server is power cycled." + ::= { serverTimers 1 } + + oSLoader OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + oneHalfMinutes(1), + oneMinutes(2), + oneAndHalfMinutes(3), + twoMinutes(4), + twoAndHalfMinutes(5), + threeMinutes(6), + threeAndHalfMinutes(7), + fourMinutes(8), + fourAndHalfMinutes(9), + fiveMinutes(10), + sevenAndHalfMinutes(15), + tenMinutes(20), + fifteenMinutes(30), + twentyMinutes(40), + thirtyMinutes(60), + oneHour(120), + twoHours(240) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number in 30 second intervals the remote IMM will wait + between completion of POST and the end of loading the OS. + If this interval is exceeded, the IMM will + generate a Loader Timeout alert(if enabled) and automatically restart + the system one time. Once the system is restarted, the + Loader Timeout is automatically disabled until the operating + system is shutdown and the server is power cycled." + ::= { serverTimers 2 } + + + -- *********************************************************************** + -- PXE Boot + -- *********************************************************************** + networkPXEboot OBJECT-TYPE + SYNTAX INTEGER { + networkPXEBootDisabled(0), + networkPXEBootEnabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Modify the system's boot sequence for the next system restart + in order to attempt a PXE/DHCP network boot. The system's boot + sequence(set via the BIOS settings) will be altered only if the + system is not under PAP (Privileged Access Protection)." + ::= { generalSystemSettings 2 } + +-- *********************************************************************** +-- System Power Control +-- *********************************************************************** + + -- *********************************************************************** + -- Power Statistics for the system + -- *********************************************************************** + powerStatistics OBJECT IDENTIFIER ::= { systemPower 1 } + currentSysPowerStatus OBJECT-TYPE + SYNTAX INTEGER { + poweredOff(0), + sleepS3(1), + poweredOn(255) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the system is currently powered on, off, or in sleep state." + ::= { powerStatistics 1 } + + + powerOnHours OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of hours the system has been powered on." + ::= { powerStatistics 2 } + + restartCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the system has been restarted." + ::= { powerStatistics 3 } + + systemState OBJECT-TYPE + SYNTAX INTEGER { + systemPowerOfforStateUnknown(0), + systemPowerOnorStartingUEFI(1), + systemInUEFI(2), + uEFIErrorDetected(3), + bootingOSorInUnsupportedOS(4), + oSBooted(5), + suspendToRAM(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Shows the current operational state of the system." + ::= { powerStatistics 4 } + + -- *********************************************************************** + -- System Power off configuration + -- *********************************************************************** + powerSysConfig OBJECT IDENTIFIER ::= { systemPower 2 } + + + powerSysOffDelay OBJECT-TYPE + SYNTAX INTEGER { + noDelay(0), + oneHalfMinute(30), + oneMinute(60), + twoMinutes(120), + threeMinutes(180), + fourMinutes(240), + fiveMinute(300), + sevenAndHalfMinutes(450), + tenMinutes(600), + fifteenMinutes(900), + twentyMinutes(1200), + thirtyMinutes(1800), + oneHour(3600), + twoHours(7200) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of 1 second interval the IMM will + wait before powering off the system." + ::= { powerSysConfig 1 } + + + powerSysOnClockSetting OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The clock setting used to determine when the IMM + will power on the system. The examples and the format follow: + + (1)For example to set the value so the system will power on + March 4, 2001 at 06:00AM set the value to: '03/04/2001,06:00'. + In order to insure correct operation, it is advisable for the + user to read the date and time of the IMM + clock before setting this value to a future time. + (2)Setting the reset value will cause the + power off timer to be reset and be deactivated. For example + to reset the clock set the value to: '01/01/2000,00:00', + + field contents range + _____ ________ _____ + 1 month 01..12 (reset value - 01) + 2 separator '/' + 3 day 01..31 (reset value - 01) + 4 separator '/' + 5 year 2000..2037 (reset value - 2000) + 6 separator ',' + 7 hour 00..23 (reset value - 00) + 8 separator ':' + 9 minutes 00..59 (reset value - 00) + " + ::= { powerSysConfig 2 } + + -- *********************************************************************** + -- System Power off control + -- *********************************************************************** + powerOffSystemControl OBJECT IDENTIFIER ::= { systemPower 3 } + + powerOffWithOsShutdown OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Power off the system after performing a OS shutdown." + ::= { powerOffSystemControl 1 } + + powerOffImmediately OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Power off the system immediately." + ::= { powerOffSystemControl 2 } + + -- *********************************************************************** + -- System Power on control + -- *********************************************************************** + powerOnSystemControl OBJECT IDENTIFIER ::= { systemPower 4 } + + powerOnImmediately OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Power on the system immediately." + ::= { powerOnSystemControl 2 } + + -- *********************************************************************** + -- Schedule Power Actions + -- *********************************************************************** + powerCyclingSchedule OBJECT IDENTIFIER ::= { systemPower 5 } + + schedulePowerOffWithOsShutdown OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Power Off the system after performing a OS shutdown at specified time and day of the week. + Example: Monday,09:00 + + field contents range + _____ ________ _____ + 1 day EveryDay,Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Never (reset value - Never) + 2 separator ',' + 3 hour 00..23 (reset value - 00) + 4 separator ':' + 5 minutes 00..59 (reset value - 00) + day is case insensitive. + It is invalid to set a non zero time with day as Never. + To reset, set as Never,00:00." + ::= { powerCyclingSchedule 1 } + + schedulePowerOnSystem OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Power On the system at specified time and day of the week. + Example: Monday,09:00 + + field contents range + _____ ________ _____ + 1 day EveryDay,Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Never (reset value - Never) + 2 separator ',' + 3 hour 00..23 (reset value - 00) + 4 separator ':' + 5 minutes 00..59 (reset value - 00) + day is case insensitive. + It is invalid to set a non zero time with day as Never. + To reset, set as Never,00:00." + ::= { powerCyclingSchedule 2 } + + -- *********************************************************************** + -- Control Sleep State + -- *********************************************************************** + powerControlSleep OBJECT IDENTIFIER ::= { systemPower 6 } + + powerEnterSleep OBJECT-TYPE + SYNTAX INTEGER { + execute (1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Set system to enter power sleep state. + The power sleep control actions will not work if the Sleep function is not enabled." + ::= { powerControlSleep 1 } + + powerExitSleep OBJECT-TYPE + SYNTAX INTEGER { + execute (1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Set system to exit power sleep state. + The power sleep control actions will not work if the Sleep function is not enabled." + ::= { powerControlSleep 2 } + + + -- *********************************************************************** + -- Control Power Restore Policy + -- *********************************************************************** + powerRestorePolicyControl OBJECT IDENTIFIER ::= { systemPower 7 } + + powerRestorePolicy OBJECT-TYPE + SYNTAX INTEGER { + alwaysoff(0), + restore(1), + alwayson(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Power Restore Policy determines the mode of operation if a power loss occurs. This + setting can also be configured via BIOS F1 setup. + alwaysoff: System will remain off once power is restored. + restore: Restores system to the same state it was before power failed. + alwayson: System will automatically power on once power is restored." + ::= { powerRestorePolicyControl 1 } + + powerRestoreDelay OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + random(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Power Restore Delay is executed when power restore policy is set to alwayson or restore + (if the previous state was power-on). + disabled: Power on the server without after AC is restored. + random: Provide a random delay between 1 and 15 seconds from the time when AC is restored + to the time when the server is automatically powered on." + ::= { powerRestorePolicyControl 2 } + +-- *********************************************************************** +-- Restart Control +-- *********************************************************************** + + shutdownOsThenRestart OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Shutdown the OS and then restart the system and boot the OS." + ::= { restartReset 1 } + + restartSystemImmediately OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Restart the system immediately and then boot the OS." + ::= { restartReset 2 } + + + restartSPImmediately OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Restart the IMM immediately." + ::= { restartReset 3 } + + resetSPConfigAndRestart OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Will cause all the IMM information to + be reset to it's initial factory defaults(all previous + configuration information is lost) and the IMM + will be re-started." + ::= { restartReset 4 } + + scheduleShutdownOsThenRestart OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Shutdown the OS and then restart the system and boot the OS + at specified Time and Day of the week. + Example: Monday,09:00 + + field contents range + _____ ________ _____ + 1 day EveryDay,Sunday,Monday,Tuesday,Wednesday,Thursday,Friday,Saturday,Never (reset value - Never) + 2 separator ',' + 3 hour 00..23 (reset value - 00) + 4 separator ':' + 5 minutes 00..59 (reset value - 00) + day is case insensitive. + It is invalid to set a non zero time with day as Never. + To reset, set as Never,00:00." + ::= { restartReset 5 } + + resetPowerSchedules OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "reset all power schedules. + schedulePowerOnSystem,schedulePowerOffWithOsShutdown, scheduleShutdownOsThenRestart. + This does not reset powerSysOnClockSetting" + ::= { restartReset 6 } + + bootServerF1Setup OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Boot the server to UEFI F1 Setup. If the server is powered on when the action is initiated, + the server will be powered off with an OS shutdown, then powered back on immediately and will + automatically boot into UEFI F1 Setup. If the server is powered off when the action is + initiated, the server will be powered on immediately and will automatically boot into + UEFI F1 Setup." + ::= { restartReset 7 } + + +-- *********************************************************************** +-- Firmware Update NOTE: Supported on IMM1 only +-- *********************************************************************** + firmwareUpdateTarget OBJECT-TYPE + SYNTAX INTEGER { + immCard(0) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Target module whose firmware will be updated." + ::= { firmwareUpdate 1 } + + firmwareUpdateTftpServer OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "IP address of the TFTP server where the firmware file resides. + The address must be entered in a dotted decimal IP string + (eg. 9.37.44.2)." + ::= { firmwareUpdate 2 } + + firmwareUpdateFileName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "File name of the firmware file." + ::= { firmwareUpdate 3 } + + firmwareUpdateStart OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Start updating the firmware of the specified IMM Card. + Note 1: The firmware update might take up to several + minutes to complete. Do not reset the IMM Card until + the control has been returned. At this point, the results + will be displayed. + Note 2: Use firmwareUpdateStatus to confirm the status of + the last firmware update initiated by SNMP method. The + IMM Card must be restarted for the new firmware to + take affect." + ::= { firmwareUpdate 4 } + + + firmwareUpdateStatus OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Get the status of the last firmware update which was + initiated through SNMP method." + ::= { firmwareUpdate 5 } + + +-- *********************************************************************** +-- Service Advisor +-- +-- Note: Support is not available on all IMM2 based Servers +-- +-- *********************************************************************** + + autoCallHomeSetup OBJECT IDENTIFIER ::= { serviceAdvisor 1 } + + acceptLicenseAgreement OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Accept Terms and Conditions of Service Advisor. The user will have to accept the terms and conditions + before Service Advisor can send diagnostic data to support personnel. If IMM configuration + is reset to defaults, the user will have to accept the terms and conditions again before they can + enable Service Advisor. For more information, please refer to the BladeCenter User's Guide. + + A GET of this object may return disabled(0) or enabled(1), depending upon the current state. However, + only enabled(1) is accepted on a SET in order to accept the license agreement. A SET of disabled(0) + will return noSuchValue and is not allowed." + ::= {autoCallHomeSetup 1} + + serviceAdvisorEnable OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable Call Home Support. The User Agreement must be accepted and the contact information + must be set before the Call Home Support function of Service Advisor can be enabled." + ::= {autoCallHomeSetup 2} + + serviceSupportCenter OBJECT IDENTIFIER ::= {serviceAdvisor 2} + + ibmSupportCenter OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The country code for the Support Center. 2 character ISO country code." + ::= {serviceSupportCenter 1} + + contactInformation OBJECT IDENTIFIER ::= {serviceAdvisor 3} + + companyName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + " The organization/company name of the contact person. 1-30 characters." + ::= {contactInformation 1} + + contactName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The name of the contact person.1-30 characters." + ::= {contactInformation 2} + + phoneNumber OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The phone of the contact person. 5-30 characters." + ::= {contactInformation 3} + + emailAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The email of the contact person. It must contain '@' and dot '.' in form userid@hostname (30 characters maximum). + The userid can be alphanumeric characters, '.', '-', or '_' but must begin and end with alphanumeric characters. + The hostname can be alphanumeric characters, '.', '-', or '_'. It must contain at least two domain items. + Every domain item should begin and end with alphanumeric character, and the last domain item should be 2-20 alphabetic characters." + ::= {contactInformation 4} + + address OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The address of the machine location. The information in this field should be of sufficient detail to allow someone to + quickly find the chassis when necessary. 1-30 characters." + ::= {contactInformation 5} + + city OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The city of the machine location. 1-30 characters." + ::= {contactInformation 6} + + state OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of the machine location. 2-3 characters." + ::= {contactInformation 7} + + postalCode OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The postal code of the location for this system. 1-9 characters, only alphanumeric characters are valid." + ::= {contactInformation 8} + + phoneExtension OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The phone extension of the contact person. 30 characters maximum." + ::= {contactInformation 9} + + altContactName OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The name of the alternate contact person. 1-30 characters." + ::= {contactInformation 10} + + altPhoneNumber OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The phone of the alternate contact person. 5-30 characters." + ::= {contactInformation 11} + + altPhoneExtension OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The phone extension of the alternate contact person. 30 characters maximum." + ::= {contactInformation 12} + + altEmailAddress OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The email of the alternate contact person. It must contain '@' and dot '.' in form userid@hostname (30 characters maximum). + The userid can be alphanumeric characters, '.', '-', or '_' but must begin and end with alphanumeric characters. + The hostname can be alphanumeric characters, '.', '-', or '_'. It must contain at least two domain items. + Every domain item should begin and end with alphanumeric character, and the last domain item should be 2-20 alphabetic characters." + ::= {contactInformation 13} + + machineLocationPhoneNumber OBJECT-TYPE -- IMM2-only + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The phone of the physical location where the compuer system resides. 5-30 characters." + ::= {contactInformation 14} + + httpProxyConfig OBJECT IDENTIFIER ::= {serviceAdvisor 4} + + httpProxyEnable OBJECT-TYPE + SYNTAX INTEGER{ + disabled(0), + enabled(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Disable/Enable of the HTTP Proxy. Select Enable to use the proxy for call home + connections from the IMM to the Service Center. HTTP Proxy is used by the IMM when it is not connected to the internet directly." + ::= {httpProxyConfig 1} + + httpProxyLocation OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Fully qualified host name or IP address of the HTTP Proxy. Maximum of 63 characters." + ::= {httpProxyConfig 2} + + httpProxyPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port number of the HTTP Proxy. An integer value from 1 to 65535." + ::= {httpProxyConfig 3} + + httpProxyUserName OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User Name of the HTTP Proxy. A maximum of 30 characters string without spaces." + ::= {httpProxyConfig 4} + + httpProxyPassword OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Password of the HTTP Proxy. A maximum of 15 characters string without spaces." + ::= {httpProxyConfig 5} + + + activityLogs OBJECT IDENTIFIER ::= { serviceAdvisor 5} + + activityLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF ActivityLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " + Table of Service Advisor Activity Log entries information. This table displays events that were generated + by the system or user that are called home. The entries are displayed in reverse chronological order + (most recent call home entry first). For any events that happen with same Date/Time, only one event will be + called home. If a call home event that is already in the activity log is triggered again on the same event + source, it will not be called home again unless the prior entry has been acknowledged as corrected or, in the + case of IMM1, 120 hours (5 days) have passed since it initially occurred and was called home." + ::= { activityLogs 1 } + + activityLogEntry OBJECT-TYPE + SYNTAX ActivityLogEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " + Activity Log table entry. Each entry has the result of the call-home attempt, + the service number assigned for the issue by the Support Center, the event ID, event source, date and + time that event occured, and a text message. + " + INDEX { activityLogIndex } + ::= { activityLogTable 1 } + + + ActivityLogEntry ::= SEQUENCE { + activityLogIndex INTEGER, + activityLogString OCTET STRING, + activityLogAcknowledge INTEGER, + activityLogAttribute OCTET STRING + } + + + activityLogIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Activity Log index number. + For consistent results, view as a table and not as individual entries." + ::= { activityLogEntry 1 } + + activityLogString OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A string of data detailing one Activity Log entry. The text message is from the original entry in the event log. + + For consistent results, view as a table and not as individual entries." + ::= { activityLogEntry 2 } + + activityLogAcknowledge OBJECT-TYPE + SYNTAX INTEGER{ + no(0), + yes(1) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The acknowledgement of one Activity Log entry as corrected. This field allows the users to set a reminder next to + certain events to indicate their awareness of the issue. Checking the acknowledge flag will not cause the event to be removed + from the log or close the ticket at the Support Center. This log is not cleared, so the acknowledge flag can be used to indicate a problem + can be ignored. This field can be also used to override the 120 hour (5 day) filtering of reports via the Support Center or FTP/TFTP Server + of Service Data. + For consistent results, view as a table and not as individual entries." + ::= { activityLogEntry 3 } + + activityLogAttribute OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + " + A string of data detailing one Activity Log entry's attribute. It contains states of both calling the Support Center and FTP/TFTP Server. + A PENDING indicates that the system is preparing for the event to be called home by collecting data about the systems state. A SUCCESS state + indicates that the problem was successfully transmitted to the Support Center or FTP/TFTP Server. A DISABLED state indicates that Service Advisor + has disabled calling the Support Center or FTP/TFTP Server while the hardware event is detected. A NOT SENT state indicates that the serviceable + event was not sent to prevent the same event from being sent repeatedly. The FAILED state indicates that the attempt + to transmit the event information was not successful. Additional information may be found in the Event Log. + The service number is similar to a ticket number that can be used as a reference to the issue reported by the machine + when contacting the Support Center. The event ID, event source, date and time are all information from the original entry in the event log. + The acknowledged as corrected field is a reminder to certain events to indicate their awareness of the issue. + + For consistent results, view as a table and not as individual entries." + ::= { activityLogEntry 4 } + + -- ******************************************************************************** + -- autoftp + -- ******************************************************************************** + -- + autoFTPSetup OBJECT IDENTIFIER ::= { serviceAdvisor 6 } + + autoFTPCallMode OBJECT-TYPE + SYNTAX INTEGER { + disabled(0), + ftp(1), + tftp(2), + sftp(3)} -- IMM2-only + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the automated problem reporting mode. Automated problem reporting mode allows the IMM to automatically put + service data to a specified server when a call home event is detected. For any call home events that happen with same Date/Time, + only one event will be reported. The system will also wait for an interval of 120 hours (5 days) before another identical event + can be sent for the same failed component." + ::= { autoFTPSetup 1 } + + autoFTPCallAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the remote server address of FTP and TFTP. It should be fully qualified hostname or IP address." + ::= { autoFTPSetup 2 } + autoFTPCallPort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the port on remote FTP/TFTP server for data transmission." + ::= { autoFTPSetup 3 } + + autoFTPCallUserID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the user account to login remote FTP server." + ::= { autoFTPSetup 4 } + + autoFTPCallPassword OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This field specifies the password to login remote FTP server." + ::= { autoFTPSetup 5 } + + -- ******************************************************************************** + -- Call Home Exclusion List + -- ******************************************************************************** + + callHomeExclusionEvents OBJECT IDENTIFIER ::= { serviceAdvisor 7 } + + + readCallHomeExclusionEventTable OBJECT-TYPE + SYNTAX SEQUENCE OF ReadCallHomeExclusionEventEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of Call Home Exclusion Event entries information." + ::= { callHomeExclusionEvents 1 } + + readCallHomeExclusionEventEntry OBJECT-TYPE + SYNTAX ReadCallHomeExclusionEventEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Call Home Exclusion Event table entry" + INDEX { readCallHomeExclusionEventIndex } + ::= { readCallHomeExclusionEventTable 1 } + + + ReadCallHomeExclusionEventEntry ::= SEQUENCE { + readCallHomeExclusionEventIndex INTEGER, + readCallHomeExclusionEventID OCTET STRING + } + + + readCallHomeExclusionEventIndex OBJECT-TYPE + SYNTAX INTEGER (1..1000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index number of one Call Home Exclusion Event. + For consistent results, view as a table and not as individual entries." + ::= { readCallHomeExclusionEventEntry 1 } + + readCallHomeExclusionEventID OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Event ID of one Call Home Exclusion Event entry. + For consistent results, view as a table and not as individual entries." + ::= { readCallHomeExclusionEventEntry 2 } + + + addCallHomeExclusionEvent OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Add one call home Event ID into the Call Home Exclusion List. + The Event ID is an 16-digit hexadecimal number (0-F) with an optional prefix of '0x' or '0X'. + The Event ID can be full specified with the 16 hexadecimal characters or can be specified with + an asterisk ??wild card character in any of the right 8 most characters. The wild card capability + allows for excluding a group of similar events. + + If Service Advisor Terms and Conditions are accepted, an event can be added into the exclusion list. + + NOTE: Value returned for the GET command is meaningless for this MIB object." + ::= { callHomeExclusionEvents 2} + + rmCallHomeExclusionEvent OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Remove one call home Event ID from the Call Home Exclusion List. + The Event ID is an 16-digit hexadecimal number (0-F) with an optional prefix of '0x' or '0X'. + The Event ID can be full specified with the 16 hexadecimal characters or can be specified with + an asterisk ??wild card character in any of the right 8 most characters. The wild card capability + allows for excluding a group of similar events. + + If Service Advisor Terms and Conditions are accepted, an event on the exclusion list can be removed. + + NOTE: Value returned for the GET command is meaningless for this MIB object." + ::= { callHomeExclusionEvents 3} + rmAllCallHomeExclusionEvent OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Remove all Event IDs from the Call Home Exclusion List. + If Service Advisor Terms and Conditions are accepted, events on the exclusion list can be removed. + + NOTE: Value returned for the GET command is meaningless for this MIB object." + ::= { callHomeExclusionEvents 4} + + -- ******************************************************************************** + -- Generate Test Call Home + -- ******************************************************************************** + + testCallHome OBJECT IDENTIFIER ::= { serviceAdvisor 8 } + + generateTestCallHome OBJECT-TYPE -- IMM2-only + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Generate a Test Call Home." + ::= { testCallHome 1} + + +-- ************************************************************************* +-- Scalable Complex Information +-- ************************************************************************* + + scalableComplex OBJECT IDENTIFIER ::= { scaling 1 } + + scalableComplexIdentifier OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique numeric identifier for a complex." + ::= { scalableComplex 1 } + + scalableComplexNumPartitions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of partitions currently defined for this complex." + ::= { scalableComplex 2 } + + scalableComplexNumNodes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of nodes existing in this complex, regardless + of their assignment to any given partition. For ITEs or blabde, + the physical slot location of the nodes can be determined from the + scalableComplexNodeTable." + ::= { scalableComplex 3 } + + + scalableComplexClear OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "This clears all partition information related to the complex. Any nodes + associated with the complex are no longer assigned to any partitions. + All nodes in the complex must be powered off prior to attempting this + operation, otherwise, the action will fail." + ::= { scalableComplex 4 } + + + -- ************************************************************************* + -- Scalable Complex Partition Information + -- ************************************************************************* + + scalableComplexPartition OBJECT IDENTIFIER ::= { scaling 2 } + + scalableComplexPartitionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ScalableComplexPartitionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of scalable complex partition information." + ::= { scalableComplexPartition 1 } + + scalableComplexPartitionEntry OBJECT-TYPE + SYNTAX ScalableComplexPartitionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Scalable complex partition information." + INDEX { scalableComplexPartitionIdentifier } + ::= { scalableComplexPartitionTable 1 } + + ScalableComplexPartitionEntry ::= SEQUENCE { + scalableComplexPartitionIdentifier INTEGER, + scalableComplexPartitionMode INTEGER, + scalableComplexPartitionPriNodeKey OCTET STRING, + scalableComplexPartitionNumNodes INTEGER, + scalableComplexPartitionStatus INTEGER + } + + scalableComplexPartitionIdentifier OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unique numeric identifier for a partition defined within a complex + installed in the chassis." + ::= { scalableComplexPartitionEntry 1 } + + scalableComplexPartitionMode OBJECT-TYPE + SYNTAX INTEGER { + partition(1), + standalone(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The currently configured mode of this partition. It is recommended that + a partition be powered off prior to modification of the mode. In addition, + switching a partition mode to stand-alone will cause subsequent partition + actions to be ignored until the partition mode is restored." + ::= { scalableComplexPartitionEntry 2 } + + scalableComplexPartitionPriNodeKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Node Key for the primary node in the partition. The Node Key is used + to select partition for some actions that affect all nodes in the partition." + ::= { scalableComplexPartitionEntry 3 } + + scalableComplexPartitionNumNodes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of nodes currently defined for this partition." + ::= { scalableComplexPartitionEntry 4 } + + scalableComplexPartitionStatus OBJECT-TYPE + SYNTAX INTEGER { + poweredoff(1), + poweredon(2), + invalid(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current power status of this partition when the partition has a + valid partition configuration. However, in the event the partition + reports a partition consitency check problem, the invalid state is provided." + ::= { scalableComplexPartitionEntry 5 } + + + scalableComplexPartitionSelect OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS write-only + STATUS mandatory + DESCRIPTION + "This Node Key of Primary node of the partition is used to select the + partition for which a specific action will be taken" + ::= { scalableComplexPartition 2 } + + scalableComplexPartitionAction OBJECT-TYPE + SYNTAX INTEGER { + delete(1), + poweron(2), + poweroff(3), + powercycle(4) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "This object allows various actions to be taken in relation to a particular partition + in a given complex. + + delete(1) - Deletes the partition from the complex. All nodes in the partition must + be powered off prior to attempting this operation, otherwise, the action + will fail. + + poweron(2) - Powers up a powered off partition + + poweroff(3) - Powers off an already powered on partition + + powercycle(4) - Power cycles a partition" + ::= { scalableComplexPartition 3 } + + + + -- ************************************************************************* + -- Scalable Complex Partition Create + -- ************************************************************************* + + scalableComplexPartitionCreate OBJECT IDENTIFIER ::= { scaling 3 } + + scalableComplexPartitionCreateTable OBJECT-TYPE + SYNTAX SEQUENCE OF ScalableComplexPartitionCreateEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table used to identify the nodes to be used in create of a partition. + The nodes are identified by Node key. The first node listed will be the + primary node." + ::= { scalableComplexPartitionCreate 1 } + + scalableComplexPartitionCreateEntry OBJECT-TYPE + SYNTAX ScalableComplexPartitionCreateEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Node information for partition creation." + INDEX { scalableComplexPartitionCreateIndex } + ::= { scalableComplexPartitionCreateTable 1 } + + ScalableComplexPartitionCreateEntry ::= SEQUENCE { + scalableComplexPartitionCreateIndex INTEGER, + scalableComplexPartitionCreateNodeKey OCTET STRING + } + + scalableComplexPartitionCreateIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The table index." + ::= { scalableComplexPartitionCreateEntry 1 } + + scalableComplexPartitionCreateNodeKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Node Key for a node included in the partition to be created. The first Node Key + in the table is used will be the primary node in the partition to be created." + ::= { scalableComplexPartitionCreateEntry 2 } + + + scalableComplexPartitionActionCreate OBJECT-TYPE + SYNTAX INTEGER { + create(1), + clear(2) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "This object is used to request creation of a new partition, using the nodes + listed in the scalableComplexPartitionCreateTable. + + None of the systems can be part of another valid partition, and there cannot + be duplicate Node Keys specified. Partition changes will fail if any of the + systems specified in the change are powered on. + + If the partition is successfully created, the scalableComplexPartitionCreateTable + entries will be cleared." + ::= { scalableComplexPartitionCreate 2 } + + + -- ************************************************************************* + -- Scalable Complex Node Information + -- ************************************************************************* + + scalableComplexNode OBJECT IDENTIFIER ::= { scaling 4 } + + scalableComplexNodeTable OBJECT-TYPE + SYNTAX SEQUENCE OF ScalableComplexNodeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of scalable complex node information. This table provides information + and control actions related to the nodes installed in the chassis. + Complex, partition and port information and control are defined + in their own tables." + ::= { scalableComplexNode 1 } + + scalableComplexNodeEntry OBJECT-TYPE + SYNTAX ScalableComplexNodeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Scalable complex node information." + INDEX { scalableComplexNodeIndex } + ::= { scalableComplexNodeTable 1 } + + ScalableComplexNodeEntry ::= SEQUENCE { + scalableComplexNodeIndex INTEGER, + scalableComplexNodeSerialNumber OCTET STRING, + scalableComplexNodeKey OCTET STRING, + scalableComplexNodePartitionID INTEGER, + scalableComplexNodeRole INTEGER, + scalableComplexNodeNumPorts INTEGER + } + + scalableComplexNodeIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The node table index." + ::= { scalableComplexNodeEntry 1 } + + scalableComplexNodeSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The machine serial number of the node which identifies the node. + Note that uniqueness is not guaranteed." + ::= { scalableComplexNodeEntry 2 } + + scalableComplexNodeKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Node Key for the node. The Node Key is used to select the + node for some particular action." + ::= { scalableComplexNodeEntry 3 } + + scalableComplexNodePartitionID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "For an assigned node, the identifier of the partition this node is related to. + For an unassigned node, this object has no meaning." + ::= { scalableComplexNodeEntry 4 } + + scalableComplexNodeRole OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2), + unassigned(255) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the node is assigned to a partition, and if so, provides an + indication of whether the node is the primary node of the partition or not." + ::= { scalableComplexNodeEntry 5 } + + scalableComplexNodeNumPorts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of remote nodes that this node has links to." + ::= { scalableComplexNodeEntry 6 } + + + scalableComplexNodeSelect OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS write-only + STATUS mandatory + DESCRIPTION + "This Node Key is used to select the node for which a specific action + will be taken" + ::= { scalableComplexNode 2 } + + + scalableComplexNodeAction OBJECT-TYPE + SYNTAX INTEGER { + poweroff(1), + poweron(2) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "The actions that can be applied to an unassigned node. The current state is + provided by the scalableComplexNodeState object." + ::= { scalableComplexNode 3 } + + scalableComplexNodeAutoCreate OBJECT-TYPE + SYNTAX INTEGER { + execute(1) + } + ACCESS write-only + STATUS mandatory + DESCRIPTION + "This object is used to create a partition from all of the nodes in the complex. + + None of the systems can be in a partition and all the systems in the complex must + be powered off." + ::= { scalableComplexNode 4 } + + + -- ************************************************************************* + -- Scalable Complex Node Port Information + -- ************************************************************************* + + scalableComplexNodePort OBJECT IDENTIFIER ::= { scaling 5 } + + scalableComplexNodePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ScalableComplexNodePortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table of scalable complex node port information which provides details + related to the port connectivity. Complex, partition and node information + and control are defined in their own tables." + ::= { scalableComplexNodePort 1 } + + scalableComplexNodePortEntry OBJECT-TYPE + SYNTAX ScalableComplexNodePortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Scalable complex node port information." + INDEX { scalableComplexNodePortIndex, scalableComplexNodePortNum } + ::= { scalableComplexNodePortTable 1 } + + ScalableComplexNodePortEntry ::= SEQUENCE { + scalableComplexNodePortIndex INTEGER, + scalableComplexNodePortNum INTEGER, + scalableComplexNodePortRemNodeKey OCTET STRING, + scalableComplexNodePortRemNum INTEGER, + scalableComplexNodePortStatus INTEGER, + scalableComplexNodePortType INTEGER + } + + scalableComplexNodePortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Node Port table index." + ::= { scalableComplexNodePortEntry 1 } + + scalableComplexNodePortNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port number of a port on this node. Note that this port + number is 0-based, but since it is used as the table index + (0 is not allowed), it will be presented as one more than the + actual port number." + ::= { scalableComplexNodePortEntry 2 } + + scalableComplexNodePortRemNodeKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Node Key for the remote node." + + ::= { scalableComplexNodePortEntry 3 } + + scalableComplexNodePortRemNum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The zero-based port number of the remote port." + ::= { scalableComplexNodePortEntry 4 } + + scalableComplexNodePortStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabled(2), + unknown(255) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current status of the port." + ::= { scalableComplexNodePortEntry 5 } + + scalableComplexNodePortType OBJECT-TYPE + SYNTAX INTEGER { + qpi(1), + exa(2), + unknown(255) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port type." + ::= { scalableComplexNodePortEntry 6 } + + +END diff --git a/pandora_console/attachment/mibs/INET-ADDRESS-MIB.mib b/pandora_console/attachment/mibs/INET-ADDRESS-MIB.mib index af1e02303a..a778cba6b7 100644 --- a/pandora_console/attachment/mibs/INET-ADDRESS-MIB.mib +++ b/pandora_console/attachment/mibs/INET-ADDRESS-MIB.mib @@ -1,425 +1,402 @@ --- ***************************************************************** --- INET-ADDRESS-MIB.my: Textual Conventions for Internet Network --- Address. --- --- July 2005, Subra Hegde --- --- Copyright (c) 2005 by cisco Systems, Inc. --- All rights reserved. --- --- ***************************************************************** - --- This MIB is extracted from RFC 4001 - -INET-ADDRESS-MIB DEFINITIONS ::= BEGIN - -IMPORTS - MODULE-IDENTITY, mib-2, Unsigned32 FROM SNMPv2-SMI - TEXTUAL-CONVENTION FROM SNMPv2-TC; - -inetAddressMIB MODULE-IDENTITY - LAST-UPDATED "200502040000Z" - ORGANIZATION - "IETF Operations and Management Area" - CONTACT-INFO - "Juergen Schoenwaelder (Editor) - International University Bremen - P.O. Box 750 561 - 28725 Bremen, Germany - - Phone: +49 421 200-3587 - EMail: j.schoenwaelder@iu-bremen.de - - Send comments to ." - DESCRIPTION - "This MIB module defines textual conventions for - representing Internet addresses. An Internet - address can be an IPv4 address, an IPv6 address, - or a DNS domain name. This module also defines - textual conventions for Internet port numbers, - autonomous system numbers, and the length of an - Internet address prefix. - - Copyright (C) The Internet Society (2005). This version - of this MIB module is part of RFC 4001, see the RFC - itself for full legal notices." - REVISION "200502040000Z" - DESCRIPTION - "Third version, published as RFC 4001. This revision - introduces the InetZoneIndex, InetScopeType, and - InetVersion textual conventions." - REVISION "200205090000Z" - DESCRIPTION - "Second version, published as RFC 3291. This - revision contains several clarifications and - introduces several new textual conventions: - InetAddressPrefixLength, InetPortNumber, - InetAutonomousSystemNumber, InetAddressIPv4z, - and InetAddressIPv6z." - REVISION "200006080000Z" - - - DESCRIPTION - "Initial version, published as RFC 2851." - ::= { mib-2 76 } - -InetAddressType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A value that represents a type of Internet address. - - unknown(0) An unknown address type. This value MUST - be used if the value of the corresponding - InetAddress object is a zero-length string. - It may also be used to indicate an IP address - that is not in one of the formats defined - below. - - ipv4(1) An IPv4 address as defined by the - InetAddressIPv4 textual convention. - - ipv6(2) An IPv6 address as defined by the - InetAddressIPv6 textual convention. - - ipv4z(3) A non-global IPv4 address including a zone - index as defined by the InetAddressIPv4z - textual convention. - - ipv6z(4) A non-global IPv6 address including a zone - index as defined by the InetAddressIPv6z - textual convention. - - dns(16) A DNS domain name as defined by the - InetAddressDNS textual convention. - - Each definition of a concrete InetAddressType value must be - accompanied by a definition of a textual convention for use - with that InetAddressType. - - To support future extensions, the InetAddressType textual - convention SHOULD NOT be sub-typed in object type definitions. - It MAY be sub-typed in compliance statements in order to - require only a subset of these address types for a compliant - implementation. - - Implementations must ensure that InetAddressType objects - and any dependent objects (e.g., InetAddress objects) are - consistent. An inconsistentValue error must be generated - if an attempt to change an InetAddressType object would, - for example, lead to an undefined InetAddress value. In - - - particular, InetAddressType/InetAddress pairs must be - changed together if the address type changes (e.g., from - ipv6(2) to ipv4(1))." - SYNTAX INTEGER { - unknown(0), - ipv4(1), - ipv6(2), - ipv4z(3), - ipv6z(4), - dns(16) - } - -InetAddress ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Denotes a generic Internet address. - - An InetAddress value is always interpreted within the context - of an InetAddressType value. Every usage of the InetAddress - textual convention is required to specify the InetAddressType - object that provides the context. It is suggested that the - InetAddressType object be logically registered before the - object(s) that use the InetAddress textual convention, if - they appear in the same logical row. - - The value of an InetAddress object must always be - consistent with the value of the associated InetAddressType - object. Attempts to set an InetAddress object to a value - inconsistent with the associated InetAddressType - must fail with an inconsistentValue error. - - When this textual convention is used as the syntax of an - index object, there may be issues with the limit of 128 - sub-identifiers specified in SMIv2, STD 58. In this case, - the object definition MUST include a 'SIZE' clause to - limit the number of potential instance sub-identifiers; - otherwise the applicable constraints MUST be stated in - the appropriate conceptual row DESCRIPTION clauses, or - in the surrounding documentation if there is no single - DESCRIPTION clause that is appropriate." - SYNTAX OCTET STRING (SIZE (0..255)) - -InetAddressIPv4 ::= TEXTUAL-CONVENTION - DISPLAY-HINT "1d.1d.1d.1d" - STATUS current - DESCRIPTION - "Represents an IPv4 network address: - - - Octets Contents Encoding - 1-4 IPv4 address network-byte order - - The corresponding InetAddressType value is ipv4(1). - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (4)) - -InetAddressIPv6 ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x" - STATUS current - DESCRIPTION - "Represents an IPv6 network address: - - Octets Contents Encoding - 1-16 IPv6 address network-byte order - - The corresponding InetAddressType value is ipv6(2). - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (16)) - -InetAddressIPv4z ::= TEXTUAL-CONVENTION - DISPLAY-HINT "1d.1d.1d.1d%4d" - STATUS current - DESCRIPTION - "Represents a non-global IPv4 network address, together - with its zone index: - - Octets Contents Encoding - 1-4 IPv4 address network-byte order - 5-8 zone index network-byte order - - The corresponding InetAddressType value is ipv4z(3). - - The zone index (bytes 5-8) is used to disambiguate identical - address values on nodes that have interfaces attached to - different zones of the same scope. The zone index may contain - the special value 0, which refers to the default zone for each - scope. - - This textual convention SHOULD NOT be used directly in object - - - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (8)) - -InetAddressIPv6z ::= TEXTUAL-CONVENTION - DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x%4d" - STATUS current - DESCRIPTION - "Represents a non-global IPv6 network address, together - with its zone index: - - Octets Contents Encoding - 1-16 IPv6 address network-byte order - 17-20 zone index network-byte order - - The corresponding InetAddressType value is ipv6z(4). - - The zone index (bytes 17-20) is used to disambiguate - identical address values on nodes that have interfaces - attached to different zones of the same scope. The zone index - may contain the special value 0, which refers to the default - zone for each scope. - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (20)) - -InetAddressDNS ::= TEXTUAL-CONVENTION - DISPLAY-HINT "255a" - STATUS current - DESCRIPTION - "Represents a DNS domain name. The name SHOULD be fully - qualified whenever possible. - - The corresponding InetAddressType is dns(16). - - The DESCRIPTION clause of InetAddress objects that may have - InetAddressDNS values MUST fully describe how (and when) - these names are to be resolved to IP addresses. - - The resolution of an InetAddressDNS value may require to - query multiple DNS records (e.g., A for IPv4 and AAAA for - IPv6). The order of the resolution process and which DNS - record takes precedence depends on the configuration of the - resolver. - - - This textual convention SHOULD NOT be used directly in object - definitions, as it restricts addresses to a specific format. - However, if it is used, it MAY be used either on its own or in - conjunction with InetAddressType, as a pair." - SYNTAX OCTET STRING (SIZE (1..255)) - -InetAddressPrefixLength ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "Denotes the length of a generic Internet network address - prefix. A value of n corresponds to an IP address mask - that has n contiguous 1-bits from the most significant - bit (MSB), with all other bits set to 0. - - An InetAddressPrefixLength value is always interpreted within - the context of an InetAddressType value. Every usage of the - InetAddressPrefixLength textual convention is required to - specify the InetAddressType object that provides the - context. It is suggested that the InetAddressType object be - logically registered before the object(s) that use the - InetAddressPrefixLength textual convention, if they appear - in the same logical row. - - InetAddressPrefixLength values larger than - the maximum length of an IP address for a specific - InetAddressType are treated as the maximum significant - value applicable for the InetAddressType. The maximum - significant value is 32 for the InetAddressType - 'ipv4(1)' and 'ipv4z(3)' and 128 for the InetAddressType - 'ipv6(2)' and 'ipv6z(4)'. The maximum significant value - for the InetAddressType 'dns(16)' is 0. - - The value zero is object-specific and must be defined as - part of the description of any object that uses this - syntax. Examples of the usage of zero might include - situations where the Internet network address prefix - is unknown or does not apply. - - The upper bound of the prefix length has been chosen to - be consistent with the maximum size of an InetAddress." - SYNTAX Unsigned32 (0..2040) - -InetPortNumber ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "Represents a 16 bit port number of an Internet transport - - - layer protocol. Port numbers are assigned by IANA. A - current list of all assignments is available from - . - - The value zero is object-specific and must be defined as - part of the description of any object that uses this - syntax. Examples of the usage of zero might include - situations where a port number is unknown, or when the - value zero is used as a wildcard in a filter." - REFERENCE "STD 6 (RFC 768), STD 7 (RFC 793) and RFC 2960" - SYNTAX Unsigned32 (0..65535) - -InetAutonomousSystemNumber ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "Represents an autonomous system number that identifies an - Autonomous System (AS). An AS is a set of routers under a - single technical administration, using an interior gateway - protocol and common metrics to route packets within the AS, - and using an exterior gateway protocol to route packets to - other ASes'. IANA maintains the AS number space and has - delegated large parts to the regional registries. - - Autonomous system numbers are currently limited to 16 bits - (0..65535). There is, however, work in progress to enlarge the - autonomous system number space to 32 bits. Therefore, this - textual convention uses an Unsigned32 value without a - range restriction in order to support a larger autonomous - system number space." - REFERENCE "RFC 1771, RFC 1930" - SYNTAX Unsigned32 - -InetScopeType ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "Represents a scope type. This textual convention can be used - in cases where a MIB has to represent different scope types - and there is no context information, such as an InetAddress - object, that implicitly defines the scope type. - - Note that not all possible values have been assigned yet, but - they may be assigned in future revisions of this specification. - Applications should therefore be able to deal with values - not yet assigned." - REFERENCE "RFC 3513" - SYNTAX INTEGER { - -- reserved(0), - - - interfaceLocal(1), - linkLocal(2), - subnetLocal(3), - adminLocal(4), - siteLocal(5), -- site-local unicast addresses - -- have been deprecated by RFC 3879 - -- unassigned(6), - -- unassigned(7), - organizationLocal(8), - -- unassigned(9), - -- unassigned(10), - -- unassigned(11), - -- unassigned(12), - -- unassigned(13), - global(14) - -- reserved(15) - } - -InetZoneIndex ::= TEXTUAL-CONVENTION - DISPLAY-HINT "d" - STATUS current - DESCRIPTION - "A zone index identifies an instance of a zone of a - specific scope. - - The zone index MUST disambiguate identical address - values. For link-local addresses, the zone index will - typically be the interface index (ifIndex as defined in the - IF-MIB) of the interface on which the address is configured. - - The zone index may contain the special value 0, which refers - to the default zone. The default zone may be used in cases - where the valid zone index is not known (e.g., when a - management application has to write a link-local IPv6 - address without knowing the interface index value). The - default zone SHOULD NOT be used as an easy way out in - cases where the zone index for a non-global IPv6 address - is known." - REFERENCE "RFC4007" - SYNTAX Unsigned32 - -InetVersion ::= TEXTUAL-CONVENTION - STATUS current - DESCRIPTION - "A value representing a version of the IP protocol. - - unknown(0) An unknown or unspecified version of the IP - protocol. - - - ipv4(1) The IPv4 protocol as defined in RFC 791 (STD 5). - - ipv6(2) The IPv6 protocol as defined in RFC 2460. - - Note that this textual convention SHOULD NOT be used to - distinguish different address types associated with IP - protocols. The InetAddressType has been designed for this - purpose." - REFERENCE "RFC 791, RFC 2460" - SYNTAX INTEGER { - unknown(0), - ipv4(1), - ipv6(2) - } -END +INET-ADDRESS-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, mib-2, Unsigned32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC; + +inetAddressMIB MODULE-IDENTITY + LAST-UPDATED "200502040000Z" + ORGANIZATION + "IETF Operations and Management Area" + CONTACT-INFO + "Juergen Schoenwaelder (Editor) + International University Bremen + P.O. Box 750 561 + 28725 Bremen, Germany + + Phone: +49 421 200-3587 + EMail: j.schoenwaelder@iu-bremen.de + + Send comments to ." + DESCRIPTION + "This MIB module defines textual conventions for + representing Internet addresses. An Internet + address can be an IPv4 address, an IPv6 address, + or a DNS domain name. This module also defines + textual conventions for Internet port numbers, + autonomous system numbers, and the length of an + Internet address prefix. + + Copyright (C) The Internet Society (2005). This version + of this MIB module is part of RFC 4001, see the RFC + itself for full legal notices." + REVISION "200502040000Z" + DESCRIPTION + "Third version, published as RFC 4001. This revision + introduces the InetZoneIndex, InetScopeType, and + InetVersion textual conventions." + REVISION "200205090000Z" + DESCRIPTION + "Second version, published as RFC 3291. This + revision contains several clarifications and + introduces several new textual conventions: + InetAddressPrefixLength, InetPortNumber, + InetAutonomousSystemNumber, InetAddressIPv4z, + and InetAddressIPv6z." + REVISION "200006080000Z" + DESCRIPTION + "Initial version, published as RFC 2851." + ::= { mib-2 76 } + +InetAddressType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A value that represents a type of Internet address. + + unknown(0) An unknown address type. This value MUST + be used if the value of the corresponding + InetAddress object is a zero-length string. + It may also be used to indicate an IP address + that is not in one of the formats defined + below. + + ipv4(1) An IPv4 address as defined by the + InetAddressIPv4 textual convention. + + ipv6(2) An IPv6 address as defined by the + InetAddressIPv6 textual convention. + + ipv4z(3) A non-global IPv4 address including a zone + index as defined by the InetAddressIPv4z + textual convention. + + ipv6z(4) A non-global IPv6 address including a zone + index as defined by the InetAddressIPv6z + textual convention. + + dns(16) A DNS domain name as defined by the + InetAddressDNS textual convention. + + Each definition of a concrete InetAddressType value must be + accompanied by a definition of a textual convention for use + with that InetAddressType. + + To support future extensions, the InetAddressType textual + convention SHOULD NOT be sub-typed in object type definitions. + It MAY be sub-typed in compliance statements in order to + require only a subset of these address types for a compliant + implementation. + + Implementations must ensure that InetAddressType objects + and any dependent objects (e.g., InetAddress objects) are + consistent. An inconsistentValue error must be generated + if an attempt to change an InetAddressType object would, + for example, lead to an undefined InetAddress value. In + + particular, InetAddressType/InetAddress pairs must be + changed together if the address type changes (e.g., from + ipv6(2) to ipv4(1))." + SYNTAX INTEGER { + unknown(0), + ipv4(1), + ipv6(2), + ipv4z(3), + ipv6z(4), + dns(16) + } + +InetAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Denotes a generic Internet address. + + An InetAddress value is always interpreted within the context + of an InetAddressType value. Every usage of the InetAddress + textual convention is required to specify the InetAddressType + object that provides the context. It is suggested that the + InetAddressType object be logically registered before the + object(s) that use the InetAddress textual convention, if + they appear in the same logical row. + + The value of an InetAddress object must always be + consistent with the value of the associated InetAddressType + object. Attempts to set an InetAddress object to a value + inconsistent with the associated InetAddressType + must fail with an inconsistentValue error. + + When this textual convention is used as the syntax of an + index object, there may be issues with the limit of 128 + sub-identifiers specified in SMIv2, STD 58. In this case, + the object definition MUST include a 'SIZE' clause to + limit the number of potential instance sub-identifiers; + otherwise the applicable constraints MUST be stated in + the appropriate conceptual row DESCRIPTION clauses, or + in the surrounding documentation if there is no single + DESCRIPTION clause that is appropriate." + SYNTAX OCTET STRING (SIZE (0..255)) + +InetAddressIPv4 ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1d.1d.1d.1d" + STATUS current + DESCRIPTION + "Represents an IPv4 network address: + + Octets Contents Encoding + 1-4 IPv4 address network-byte order + + The corresponding InetAddressType value is ipv4(1). + + This textual convention SHOULD NOT be used directly in object + definitions, as it restricts addresses to a specific format. + However, if it is used, it MAY be used either on its own or in + conjunction with InetAddressType, as a pair." + SYNTAX OCTET STRING (SIZE (4)) + +InetAddressIPv6 ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x" + STATUS current + DESCRIPTION + "Represents an IPv6 network address: + + Octets Contents Encoding + 1-16 IPv6 address network-byte order + + The corresponding InetAddressType value is ipv6(2). + + This textual convention SHOULD NOT be used directly in object + definitions, as it restricts addresses to a specific format. + However, if it is used, it MAY be used either on its own or in + conjunction with InetAddressType, as a pair." + SYNTAX OCTET STRING (SIZE (16)) + +InetAddressIPv4z ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1d.1d.1d.1d%4d" + STATUS current + DESCRIPTION + "Represents a non-global IPv4 network address, together + with its zone index: + + Octets Contents Encoding + 1-4 IPv4 address network-byte order + 5-8 zone index network-byte order + + The corresponding InetAddressType value is ipv4z(3). + + The zone index (bytes 5-8) is used to disambiguate identical + address values on nodes that have interfaces attached to + different zones of the same scope. The zone index may contain + the special value 0, which refers to the default zone for each + scope. + + This textual convention SHOULD NOT be used directly in object + + definitions, as it restricts addresses to a specific format. + However, if it is used, it MAY be used either on its own or in + conjunction with InetAddressType, as a pair." + SYNTAX OCTET STRING (SIZE (8)) + +InetAddressIPv6z ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:2x:2x:2x:2x:2x:2x:2x%4d" + STATUS current + DESCRIPTION + "Represents a non-global IPv6 network address, together + with its zone index: + + Octets Contents Encoding + 1-16 IPv6 address network-byte order + 17-20 zone index network-byte order + + The corresponding InetAddressType value is ipv6z(4). + + The zone index (bytes 17-20) is used to disambiguate + identical address values on nodes that have interfaces + attached to different zones of the same scope. The zone index + may contain the special value 0, which refers to the default + zone for each scope. + + This textual convention SHOULD NOT be used directly in object + definitions, as it restricts addresses to a specific format. + However, if it is used, it MAY be used either on its own or in + conjunction with InetAddressType, as a pair." + SYNTAX OCTET STRING (SIZE (20)) + +InetAddressDNS ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION + "Represents a DNS domain name. The name SHOULD be fully + qualified whenever possible. + + The corresponding InetAddressType is dns(16). + + The DESCRIPTION clause of InetAddress objects that may have + InetAddressDNS values MUST fully describe how (and when) + these names are to be resolved to IP addresses. + + The resolution of an InetAddressDNS value may require to + query multiple DNS records (e.g., A for IPv4 and AAAA for + IPv6). The order of the resolution process and which DNS + record takes precedence depends on the configuration of the + resolver. + + This textual convention SHOULD NOT be used directly in object + definitions, as it restricts addresses to a specific format. + However, if it is used, it MAY be used either on its own or in + conjunction with InetAddressType, as a pair." + SYNTAX OCTET STRING (SIZE (1..255)) + +InetAddressPrefixLength ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "Denotes the length of a generic Internet network address + prefix. A value of n corresponds to an IP address mask + that has n contiguous 1-bits from the most significant + bit (MSB), with all other bits set to 0. + + An InetAddressPrefixLength value is always interpreted within + the context of an InetAddressType value. Every usage of the + InetAddressPrefixLength textual convention is required to + specify the InetAddressType object that provides the + context. It is suggested that the InetAddressType object be + logically registered before the object(s) that use the + InetAddressPrefixLength textual convention, if they appear + in the same logical row. + + InetAddressPrefixLength values larger than + the maximum length of an IP address for a specific + InetAddressType are treated as the maximum significant + value applicable for the InetAddressType. The maximum + significant value is 32 for the InetAddressType + 'ipv4(1)' and 'ipv4z(3)' and 128 for the InetAddressType + 'ipv6(2)' and 'ipv6z(4)'. The maximum significant value + for the InetAddressType 'dns(16)' is 0. + + The value zero is object-specific and must be defined as + part of the description of any object that uses this + syntax. Examples of the usage of zero might include + situations where the Internet network address prefix + is unknown or does not apply. + + The upper bound of the prefix length has been chosen to + be consistent with the maximum size of an InetAddress." + SYNTAX Unsigned32 (0..2040) + +InetPortNumber ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "Represents a 16 bit port number of an Internet transport + + layer protocol. Port numbers are assigned by IANA. A + current list of all assignments is available from + . + + The value zero is object-specific and must be defined as + part of the description of any object that uses this + syntax. Examples of the usage of zero might include + situations where a port number is unknown, or when the + value zero is used as a wildcard in a filter." + REFERENCE "STD 6 (RFC 768), STD 7 (RFC 793) and RFC 2960" + SYNTAX Unsigned32 (0..65535) + +InetAutonomousSystemNumber ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "Represents an autonomous system number that identifies an + Autonomous System (AS). An AS is a set of routers under a + single technical administration, using an interior gateway + protocol and common metrics to route packets within the AS, + and using an exterior gateway protocol to route packets to + other ASes'. IANA maintains the AS number space and has + delegated large parts to the regional registries. + + Autonomous system numbers are currently limited to 16 bits + (0..65535). There is, however, work in progress to enlarge the + autonomous system number space to 32 bits. Therefore, this + textual convention uses an Unsigned32 value without a + range restriction in order to support a larger autonomous + system number space." + REFERENCE "RFC 1771, RFC 1930" + SYNTAX Unsigned32 + +InetScopeType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents a scope type. This textual convention can be used + in cases where a MIB has to represent different scope types + and there is no context information, such as an InetAddress + object, that implicitly defines the scope type. + + Note that not all possible values have been assigned yet, but + they may be assigned in future revisions of this specification. + Applications should therefore be able to deal with values + not yet assigned." + REFERENCE "RFC 3513" + SYNTAX INTEGER { + -- reserved(0), + interfaceLocal(1), + linkLocal(2), + subnetLocal(3), + adminLocal(4), + siteLocal(5), -- site-local unicast addresses + -- have been deprecated by RFC 3879 + -- unassigned(6), + -- unassigned(7), + organizationLocal(8), + -- unassigned(9), + -- unassigned(10), + -- unassigned(11), + -- unassigned(12), + -- unassigned(13), + global(14) + -- reserved(15) + } + +InetZoneIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A zone index identifies an instance of a zone of a + specific scope. + + The zone index MUST disambiguate identical address + values. For link-local addresses, the zone index will + typically be the interface index (ifIndex as defined in the + IF-MIB) of the interface on which the address is configured. + + The zone index may contain the special value 0, which refers + to the default zone. The default zone may be used in cases + where the valid zone index is not known (e.g., when a + management application has to write a link-local IPv6 + address without knowing the interface index value). The + default zone SHOULD NOT be used as an easy way out in + cases where the zone index for a non-global IPv6 address + is known." + REFERENCE "RFC4007" + SYNTAX Unsigned32 + +InetVersion ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A value representing a version of the IP protocol. + + unknown(0) An unknown or unspecified version of the IP + protocol. + + ipv4(1) The IPv4 protocol as defined in RFC 791 (STD 5). + + ipv6(2) The IPv6 protocol as defined in RFC 2460. + + Note that this textual convention SHOULD NOT be used to + distinguish different address types associated with IP + protocols. The InetAddressType has been designed for this + purpose." + REFERENCE "RFC 791, RFC 2460" + SYNTAX INTEGER { + unknown(0), + ipv4(1), + ipv6(2) + } +END diff --git a/pandora_console/attachment/mibs/IPV6-ICMP-MIB b/pandora_console/attachment/mibs/IPV6-ICMP-MIB new file mode 100644 index 0000000000..bb66da5765 --- /dev/null +++ b/pandora_console/attachment/mibs/IPV6-ICMP-MIB @@ -0,0 +1,529 @@ + IPV6-ICMP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, mib-2 FROM SNMPv2-SMI + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + ipv6IfEntry FROM IPV6-MIB; + + ipv6IcmpMIB MODULE-IDENTITY + LAST-UPDATED "9801082155Z" + ORGANIZATION "IETF IPv6 Working Group" + CONTACT-INFO + " Dimitry Haskin + + Postal: Bay Networks, Inc. + 660 Techology Park Drive. + Billerica, MA 01821 + US + + Tel: +1-978-916-8124 + E-mail: dhaskin@baynetworks.com + + Steve Onishi + + Postal: Bay Networks, Inc. + 3 Federal Street + Billerica, MA 01821 + US + + Tel: +1-978-916-3816 + E-mail: sonishi@baynetworks.com" + DESCRIPTION + "The MIB module for entities implementing + the ICMPv6." + ::= { mib-2 56 } + + -- the ICMPv6 group + + ipv6IcmpMIBObjects OBJECT IDENTIFIER ::= { ipv6IcmpMIB 1 } + + -- Per-interface ICMPv6 statistics table + + ipv6IfIcmpTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6IfIcmpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 ICMP statistics. This table contains statistics + of ICMPv6 messages that are received and sourced by + the entity." + ::= { ipv6IcmpMIBObjects 1 } + + ipv6IfIcmpEntry OBJECT-TYPE + SYNTAX Ipv6IfIcmpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An ICMPv6 statistics entry containing + objects at a particular IPv6 interface. + + Note that a receiving interface is + the interface to which a given ICMPv6 message + is addressed which may not be necessarily + the input interface for the message. + + Similarly, the sending interface is + the interface that sources a given + ICMP message which is usually but not + necessarily the output interface for the message." + AUGMENTS { ipv6IfEntry } + ::= { ipv6IfIcmpTable 1 } + + Ipv6IfIcmpEntry ::= SEQUENCE { + ipv6IfIcmpInMsgs + Counter32 , + ipv6IfIcmpInErrors + Counter32 , + ipv6IfIcmpInDestUnreachs + Counter32 , + ipv6IfIcmpInAdminProhibs + Counter32 , + ipv6IfIcmpInTimeExcds + Counter32 , + ipv6IfIcmpInParmProblems + Counter32 , + ipv6IfIcmpInPktTooBigs + Counter32 , + ipv6IfIcmpInEchos + Counter32 , + ipv6IfIcmpInEchoReplies + Counter32 , + ipv6IfIcmpInRouterSolicits + Counter32 , + ipv6IfIcmpInRouterAdvertisements + Counter32 , + ipv6IfIcmpInNeighborSolicits + Counter32 , + ipv6IfIcmpInNeighborAdvertisements + Counter32 , + ipv6IfIcmpInRedirects + Counter32 , + ipv6IfIcmpInGroupMembQueries + Counter32 , + ipv6IfIcmpInGroupMembResponses + Counter32 , + ipv6IfIcmpInGroupMembReductions + Counter32 , + ipv6IfIcmpOutMsgs + Counter32 , + ipv6IfIcmpOutErrors + Counter32 , + ipv6IfIcmpOutDestUnreachs + Counter32 , + ipv6IfIcmpOutAdminProhibs + Counter32 , + ipv6IfIcmpOutTimeExcds + Counter32 , + ipv6IfIcmpOutParmProblems + Counter32 , + ipv6IfIcmpOutPktTooBigs + Counter32 , + ipv6IfIcmpOutEchos + Counter32 , + ipv6IfIcmpOutEchoReplies + Counter32 , + ipv6IfIcmpOutRouterSolicits + Counter32 , + ipv6IfIcmpOutRouterAdvertisements + Counter32 , + ipv6IfIcmpOutNeighborSolicits + Counter32 , + ipv6IfIcmpOutNeighborAdvertisements + Counter32 , + ipv6IfIcmpOutRedirects + Counter32 , + ipv6IfIcmpOutGroupMembQueries + Counter32 , + ipv6IfIcmpOutGroupMembResponses + Counter32 , + ipv6IfIcmpOutGroupMembReductions + Counter32 + + } + + ipv6IfIcmpInMsgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of ICMP messages received + by the interface which includes all those + counted by ipv6IfIcmpInErrors. Note that this + interface is the interface to which the + ICMP messages were addressed which may not be + necessarily the input interface for the messages." + ::= { ipv6IfIcmpEntry 1 } + + ipv6IfIcmpInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP messages which the interface + received but determined as having ICMP-specific + errors (bad ICMP checksums, bad length, etc.)." + ::= { ipv6IfIcmpEntry 2 } + + ipv6IfIcmpInDestUnreachs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Destination Unreachable + messages received by the interface." + ::= { ipv6IfIcmpEntry 3 } + + ipv6IfIcmpInAdminProhibs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP destination + unreachable/communication administratively + prohibited messages received by the interface." + ::= { ipv6IfIcmpEntry 4 } + + ipv6IfIcmpInTimeExcds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Time Exceeded messages + received by the interface." + ::= { ipv6IfIcmpEntry 5 } + + ipv6IfIcmpInParmProblems OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Parameter Problem messages + received by the interface." + ::= { ipv6IfIcmpEntry 6 } + + ipv6IfIcmpInPktTooBigs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Packet Too Big messages + received by the interface." + ::= { ipv6IfIcmpEntry 7 } + + ipv6IfIcmpInEchos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Echo (request) messages + received by the interface." + ::= { ipv6IfIcmpEntry 8 } + + ipv6IfIcmpInEchoReplies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Echo Reply messages received + by the interface." + ::= { ipv6IfIcmpEntry 9 } + + ipv6IfIcmpInRouterSolicits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Router Solicit messages + received by the interface." + ::= { ipv6IfIcmpEntry 10 } + + ipv6IfIcmpInRouterAdvertisements OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Router Advertisement messages + received by the interface." + ::= { ipv6IfIcmpEntry 11 } + + ipv6IfIcmpInNeighborSolicits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Neighbor Solicit messages + received by the interface." + ::= { ipv6IfIcmpEntry 12 } + + ipv6IfIcmpInNeighborAdvertisements OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Neighbor Advertisement + messages received by the interface." + ::= { ipv6IfIcmpEntry 13 } + + ipv6IfIcmpInRedirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Redirect messages received + by the interface." + ::= { ipv6IfIcmpEntry 14 } + + ipv6IfIcmpInGroupMembQueries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMPv6 Group Membership Query + messages received by the interface." + ::= { ipv6IfIcmpEntry 15} + + ipv6IfIcmpInGroupMembResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMPv6 Group Membership Response messages + received by the interface." + ::= { ipv6IfIcmpEntry 16} + + ipv6IfIcmpInGroupMembReductions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMPv6 Group Membership Reduction messages + received by the interface." + ::= { ipv6IfIcmpEntry 17} + + ipv6IfIcmpOutMsgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of ICMP messages which this + interface attempted to send. Note that this counter + includes all those counted by icmpOutErrors." + ::= { ipv6IfIcmpEntry 18 } + + ipv6IfIcmpOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP messages which this interface did + not send due to problems discovered within ICMP + such as a lack of buffers. This value should not + include errors discovered outside the ICMP layer + such as the inability of IPv6 to route the resultant + datagram. In some implementations there may be no + types of error which contribute to this counter's + value." + ::= { ipv6IfIcmpEntry 19 } + + ipv6IfIcmpOutDestUnreachs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Destination Unreachable + + messages sent by the interface." + ::= { ipv6IfIcmpEntry 20 } + + ipv6IfIcmpOutAdminProhibs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ICMP dest unreachable/communication + administratively prohibited messages sent." + ::= { ipv6IfIcmpEntry 21 } + + ipv6IfIcmpOutTimeExcds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Time Exceeded messages sent + by the interface." + ::= { ipv6IfIcmpEntry 22 } + + ipv6IfIcmpOutParmProblems OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Parameter Problem messages + sent by the interface." + ::= { ipv6IfIcmpEntry 23 } + + ipv6IfIcmpOutPktTooBigs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Packet Too Big messages sent + by the interface." + ::= { ipv6IfIcmpEntry 24 } + + ipv6IfIcmpOutEchos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Echo (request) messages sent + by the interface." + ::= { ipv6IfIcmpEntry 25 } + + ipv6IfIcmpOutEchoReplies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Echo Reply messages sent + by the interface." + ::= { ipv6IfIcmpEntry 26 } + + ipv6IfIcmpOutRouterSolicits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Router Solicitation messages + sent by the interface." + ::= { ipv6IfIcmpEntry 27 } + + ipv6IfIcmpOutRouterAdvertisements OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Router Advertisement messages + sent by the interface." + ::= { ipv6IfIcmpEntry 28 } + + ipv6IfIcmpOutNeighborSolicits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Neighbor Solicitation + messages sent by the interface." + ::= { ipv6IfIcmpEntry 29 } + + ipv6IfIcmpOutNeighborAdvertisements OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMP Neighbor Advertisement + messages sent by the interface." + ::= { ipv6IfIcmpEntry 30 } + + ipv6IfIcmpOutRedirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Redirect messages sent. For + a host, this object will always be zero, + since hosts do not send redirects." + ::= { ipv6IfIcmpEntry 31 } + + ipv6IfIcmpOutGroupMembQueries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMPv6 Group Membership Query + messages sent." + ::= { ipv6IfIcmpEntry 32} + + ipv6IfIcmpOutGroupMembResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMPv6 Group Membership Response + messages sent." + ::= { ipv6IfIcmpEntry 33} + + ipv6IfIcmpOutGroupMembReductions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ICMPv6 Group Membership Reduction + messages sent." + ::= { ipv6IfIcmpEntry 34} + +-- conformance information + +ipv6IcmpConformance OBJECT IDENTIFIER ::= { ipv6IcmpMIB 2 } + +ipv6IcmpCompliances + OBJECT IDENTIFIER ::= { ipv6IcmpConformance 1 } +ipv6IcmpGroups + OBJECT IDENTIFIER ::= { ipv6IcmpConformance 2 } + +-- compliance statements + +ipv6IcmpCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement ICMPv6." + MODULE -- this module + MANDATORY-GROUPS { ipv6IcmpGroup } + ::= { ipv6IcmpCompliances 1 } + +ipv6IcmpGroup OBJECT-GROUP + OBJECTS { + ipv6IfIcmpInMsgs, + ipv6IfIcmpInErrors, + ipv6IfIcmpInDestUnreachs, + ipv6IfIcmpInAdminProhibs, + ipv6IfIcmpInTimeExcds, + ipv6IfIcmpInParmProblems, + ipv6IfIcmpInPktTooBigs, + ipv6IfIcmpInEchos, + ipv6IfIcmpInEchoReplies, + ipv6IfIcmpInRouterSolicits, + ipv6IfIcmpInRouterAdvertisements, + ipv6IfIcmpInNeighborSolicits, + ipv6IfIcmpInNeighborAdvertisements, + ipv6IfIcmpInRedirects, + ipv6IfIcmpInGroupMembQueries, + ipv6IfIcmpInGroupMembResponses, + ipv6IfIcmpInGroupMembReductions, + ipv6IfIcmpOutMsgs, + ipv6IfIcmpOutErrors, + ipv6IfIcmpOutDestUnreachs, + ipv6IfIcmpOutAdminProhibs, + ipv6IfIcmpOutTimeExcds, + ipv6IfIcmpOutParmProblems, + ipv6IfIcmpOutPktTooBigs, + ipv6IfIcmpOutEchos, + ipv6IfIcmpOutEchoReplies, + ipv6IfIcmpOutRouterSolicits, + ipv6IfIcmpOutRouterAdvertisements, + ipv6IfIcmpOutNeighborSolicits, + ipv6IfIcmpOutNeighborAdvertisements, + ipv6IfIcmpOutRedirects, + ipv6IfIcmpOutGroupMembQueries, + ipv6IfIcmpOutGroupMembResponses, + ipv6IfIcmpOutGroupMembReductions + } + STATUS current + DESCRIPTION + "The ICMPv6 group of objects providing information + specific to ICMPv6." + ::= { ipv6IcmpGroups 1 } + + END diff --git a/pandora_console/attachment/mibs/IPV6-MIB b/pandora_console/attachment/mibs/IPV6-MIB new file mode 100644 index 0000000000..6957af27fe --- /dev/null +++ b/pandora_console/attachment/mibs/IPV6-MIB @@ -0,0 +1,1443 @@ + IPV6-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + mib-2, Counter32, Unsigned32, Integer32, + Gauge32 FROM SNMPv2-SMI + DisplayString, PhysAddress, TruthValue, TimeStamp, + VariablePointer, RowPointer FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, + NOTIFICATION-GROUP FROM SNMPv2-CONF + Ipv6IfIndex, Ipv6Address, Ipv6AddressPrefix, + Ipv6AddressIfIdentifier, + Ipv6IfIndexOrZero FROM IPV6-TC; + + ipv6MIB MODULE-IDENTITY + LAST-UPDATED "9802052155Z" + ORGANIZATION "IETF IPv6 Working Group" + CONTACT-INFO + " Dimitry Haskin + + Postal: Bay Networks, Inc. + 660 Techology Park Drive. + Billerica, MA 01821 + + US + + Tel: +1-978-916-8124 + E-mail: dhaskin@baynetworks.com + + Steve Onishi + + Postal: Bay Networks, Inc. + 3 Federal Street + Billerica, MA 01821 + US + + Tel: +1-978-916-3816 + E-mail: sonishi@baynetworks.com" + DESCRIPTION + "The MIB module for entities implementing the IPv6 + protocol." + ::= { mib-2 55 } + + -- the IPv6 general group + + ipv6MIBObjects OBJECT IDENTIFIER ::= { ipv6MIB 1 } + + ipv6Forwarding OBJECT-TYPE + SYNTAX INTEGER { + forwarding(1), -- acting as a router + + -- NOT acting as + notForwarding(2) -- a router + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The indication of whether this entity is acting + as an IPv6 router in respect to the forwarding of + datagrams received by, but not addressed to, this + entity. IPv6 routers forward datagrams. IPv6 + hosts do not (except those source-routed via the + host). + + Note that for some managed nodes, this object may + take on only a subset of the values possible. + Accordingly, it is appropriate for an agent to + return a `wrongValue' response if a management + station attempts to change this object to an + inappropriate value." + ::= { ipv6MIBObjects 1 } + + ipv6DefaultHopLimit OBJECT-TYPE + SYNTAX INTEGER(0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default value inserted into the Hop Limit + field of the IPv6 header of datagrams originated + at this entity, whenever a Hop Limit value is not + supplied by the transport layer protocol." + DEFVAL { 64 } + ::= { ipv6MIBObjects 2 } + +ipv6Interfaces OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of IPv6 interfaces (regardless of + their current state) present on this system." + ::= { ipv6MIBObjects 3 } + +ipv6IfTableLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the last + insertion or removal of an entry in the + ipv6IfTable. If the number of entries has been + unchanged since the last re-initialization of + the local network management subsystem, then this + object contains a zero value." + ::= { ipv6MIBObjects 4 } + +-- the IPv6 Interfaces table + +ipv6IfTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6IfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IPv6 Interfaces table contains information + on the entity's internetwork-layer interfaces. + An IPv6 interface constitutes a logical network + layer attachment to the layer immediately below + + IPv6 including internet layer 'tunnels', such as + tunnels over IPv4 or IPv6 itself." + ::= { ipv6MIBObjects 5 } + + ipv6IfEntry OBJECT-TYPE + SYNTAX Ipv6IfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects + about a particular IPv6 interface." + INDEX { ipv6IfIndex } + ::= { ipv6IfTable 1 } + + Ipv6IfEntry ::= SEQUENCE { + ipv6IfIndex Ipv6IfIndex, + ipv6IfDescr DisplayString, + ipv6IfLowerLayer VariablePointer, + ipv6IfEffectiveMtu Unsigned32, + ipv6IfReasmMaxSize Unsigned32, + ipv6IfIdentifier Ipv6AddressIfIdentifier, + ipv6IfIdentifierLength INTEGER, + ipv6IfPhysicalAddress PhysAddress, + ipv6IfAdminStatus INTEGER, + ipv6IfOperStatus INTEGER, + ipv6IfLastChange TimeStamp + } + + ipv6IfIndex OBJECT-TYPE + SYNTAX Ipv6IfIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique non-zero value identifying + the particular IPv6 interface." + ::= { ipv6IfEntry 1 } + + ipv6IfDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A textual string containing information about the + interface. This string may be set by the network + management system." + ::= { ipv6IfEntry 2 } + + ipv6IfLowerLayer OBJECT-TYPE + SYNTAX VariablePointer + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object identifies the protocol layer over + which this network interface operates. If this + network interface operates over the data-link + layer, then the value of this object refers to an + instance of ifIndex [6]. If this network interface + operates over an IPv4 interface, the value of this + object refers to an instance of ipAdEntAddr [3]. + + If this network interface operates over another + IPv6 interface, the value of this object refers to + an instance of ipv6IfIndex. If this network + interface is not currently operating over an active + protocol layer, then the value of this object + should be set to the OBJECT ID { 0 0 }." + ::= { ipv6IfEntry 3 } + + ipv6IfEffectiveMtu OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the largest IPv6 packet which can be + sent/received on the interface, specified in + octets." + ::= { ipv6IfEntry 4 } + + ipv6IfReasmMaxSize OBJECT-TYPE + SYNTAX Unsigned32 (0..65535) + UNITS "octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the largest IPv6 datagram which this + entity can re-assemble from incoming IPv6 fragmented + datagrams received on this interface." + ::= { ipv6IfEntry 5 } + + ipv6IfIdentifier OBJECT-TYPE + SYNTAX Ipv6AddressIfIdentifier + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The Interface Identifier for this interface that + + is (at least) unique on the link this interface is + attached to. The Interface Identifier is combined + with an address prefix to form an interface address. + + By default, the Interface Identifier is autoconfigured + according to the rules of the link type this + interface is attached to." + ::= { ipv6IfEntry 6 } + + ipv6IfIdentifierLength OBJECT-TYPE + SYNTAX INTEGER (0..64) + UNITS "bits" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The length of the Interface Identifier in bits." + ::= { ipv6IfEntry 7 } + + ipv6IfPhysicalAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The interface's physical address. For example, for + an IPv6 interface attached to an 802.x link, this + object normally contains a MAC address. Note that + in some cases this address may differ from the + address of the interface's protocol sub-layer. The + interface's media-specific MIB must define the bit + and byte ordering and the format of the value of + this object. For interfaces which do not have such + an address (e.g., a serial line), this object should + contain an octet string of zero length." + ::= { ipv6IfEntry 8 } + +ipv6IfAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The desired state of the interface. When a managed + system initializes, all IPv6 interfaces start with + ipv6IfAdminStatus in the down(2) state. As a result + of either explicit management action or per + configuration information retained by the managed + + system, ipv6IfAdminStatus is then changed to + the up(1) state (or remains in the down(2) state)." + ::= { ipv6IfEntry 9 } + +ipv6IfOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + + down(2), + noIfIdentifier(3), -- no interface identifier + + -- status can not be + -- determined for some + unknown(4), -- reason + + -- some component is + notPresent(5) -- missing + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current operational state of the interface. + The noIfIdentifier(3) state indicates that no valid + Interface Identifier is assigned to the interface. + This state usually indicates that the link-local + interface address failed Duplicate Address Detection. + If ipv6IfAdminStatus is down(2) then ipv6IfOperStatus + should be down(2). If ipv6IfAdminStatus is changed + to up(1) then ipv6IfOperStatus should change to up(1) + if the interface is ready to transmit and receive + network traffic; it should remain in the down(2) or + noIfIdentifier(3) state if and only if there is a + fault that prevents it from going to the up(1) state; + it should remain in the notPresent(5) state if + the interface has missing (typically, lower layer) + components." + ::= { ipv6IfEntry 10 } + +ipv6IfLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the interface + entered its current operational state. If the + current state was entered prior to the last + re-initialization of the local network management + + subsystem, then this object contains a zero + value." + ::= { ipv6IfEntry 11 } + + -- IPv6 Interface Statistics table + + ipv6IfStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6IfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 interface traffic statistics." + ::= { ipv6MIBObjects 6 } + + ipv6IfStatsEntry OBJECT-TYPE + SYNTAX Ipv6IfStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface statistics entry containing objects + at a particular IPv6 interface." + AUGMENTS { ipv6IfEntry } + ::= { ipv6IfStatsTable 1 } + + Ipv6IfStatsEntry ::= SEQUENCE { + ipv6IfStatsInReceives + Counter32, + ipv6IfStatsInHdrErrors + Counter32, + ipv6IfStatsInTooBigErrors + Counter32, + ipv6IfStatsInNoRoutes + Counter32, + ipv6IfStatsInAddrErrors + Counter32, + ipv6IfStatsInUnknownProtos + Counter32, + ipv6IfStatsInTruncatedPkts + Counter32, + ipv6IfStatsInDiscards + Counter32, + ipv6IfStatsInDelivers + Counter32, + ipv6IfStatsOutForwDatagrams + Counter32, + ipv6IfStatsOutRequests + Counter32, + ipv6IfStatsOutDiscards + + Counter32, + ipv6IfStatsOutFragOKs + Counter32, + ipv6IfStatsOutFragFails + Counter32, + ipv6IfStatsOutFragCreates + Counter32, + ipv6IfStatsReasmReqds + Counter32, + ipv6IfStatsReasmOKs + Counter32, + ipv6IfStatsReasmFails + Counter32, + ipv6IfStatsInMcastPkts + Counter32, + ipv6IfStatsOutMcastPkts + Counter32 + } + + ipv6IfStatsInReceives OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of input datagrams received by + the interface, including those received in error." + ::= { ipv6IfStatsEntry 1 } + + ipv6IfStatsInHdrErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input datagrams discarded due to + errors in their IPv6 headers, including version + number mismatch, other format errors, hop count + exceeded, errors discovered in processing their + IPv6 options, etc." + ::= { ipv6IfStatsEntry 2 } + + ipv6IfStatsInTooBigErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input datagrams that could not be + forwarded because their size exceeded the link MTU + of outgoing interface." + ::= { ipv6IfStatsEntry 3 } + + ipv6IfStatsInNoRoutes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input datagrams discarded because no + route could be found to transmit them to their + destination." + ::= { ipv6IfStatsEntry 4 } + + ipv6IfStatsInAddrErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input datagrams discarded because + the IPv6 address in their IPv6 header's destination + field was not a valid address to be received at + this entity. This count includes invalid + addresses (e.g., ::0) and unsupported addresses + (e.g., addresses with unallocated prefixes). For + entities which are not IPv6 routers and therefore + do not forward datagrams, this counter includes + datagrams discarded because the destination address + was not a local address." + ::= { ipv6IfStatsEntry 5 } + + ipv6IfStatsInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of locally-addressed datagrams + received successfully but discarded because of an + unknown or unsupported protocol. This counter is + incremented at the interface to which these + datagrams were addressed which might not be + necessarily the input interface for some of + the datagrams." + ::= { ipv6IfStatsEntry 6 } + + ipv6IfStatsInTruncatedPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input datagrams discarded because + datagram frame didn't carry enough data." + ::= { ipv6IfStatsEntry 7 } + + ipv6IfStatsInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input IPv6 datagrams for which no + problems were encountered to prevent their + continued processing, but which were discarded + (e.g., for lack of buffer space). Note that this + counter does not include any datagrams discarded + while awaiting re-assembly." + ::= { ipv6IfStatsEntry 8 } + + ipv6IfStatsInDelivers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of datagrams successfully + delivered to IPv6 user-protocols (including ICMP). + This counter is incremented at the interface to + which these datagrams were addressed which might + not be necessarily the input interface for some of + the datagrams." + ::= { ipv6IfStatsEntry 9 } + + ipv6IfStatsOutForwDatagrams OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of output datagrams which this + entity received and forwarded to their final + destinations. In entities which do not act + as IPv6 routers, this counter will include + only those packets which were Source-Routed + via this entity, and the Source-Route + processing was successful. Note that for + a successfully forwarded datagram the counter + of the outgoing interface is incremented." + ::= { ipv6IfStatsEntry 10 } + + ipv6IfStatsOutRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IPv6 datagrams which local IPv6 + user-protocols (including ICMP) supplied to IPv6 in + requests for transmission. Note that this counter + does not include any datagrams counted in + ipv6IfStatsOutForwDatagrams." + ::= { ipv6IfStatsEntry 11 } + + ipv6IfStatsOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of output IPv6 datagrams for which no + problem was encountered to prevent their + transmission to their destination, but which were + discarded (e.g., for lack of buffer space). Note + that this counter would include datagrams counted + in ipv6IfStatsOutForwDatagrams if any such packets + met this (discretionary) discard criterion." + ::= { ipv6IfStatsEntry 12 } + + ipv6IfStatsOutFragOKs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of IPv6 datagrams that have been + successfully fragmented at this output interface." + ::= { ipv6IfStatsEntry 13 } + + ipv6IfStatsOutFragFails OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of IPv6 datagrams that have been + discarded because they needed to be fragmented + at this output interface but could not be." + ::= { ipv6IfStatsEntry 14 } + + ipv6IfStatsOutFragCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of output datagram fragments that have + been generated as a result of fragmentation at + this output interface." + ::= { ipv6IfStatsEntry 15 } + + ipv6IfStatsReasmReqds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of IPv6 fragments received which needed + to be reassembled at this interface. Note that this + counter is incremented at the interface to which + these fragments were addressed which might not + be necessarily the input interface for some of + the fragments." + ::= { ipv6IfStatsEntry 16 } + + ipv6IfStatsReasmOKs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of IPv6 datagrams successfully + reassembled. Note that this counter is incremented + at the interface to which these datagrams were + addressed which might not be necessarily the input + interface for some of the fragments." + ::= { ipv6IfStatsEntry 17 } + + ipv6IfStatsReasmFails OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of failures detected by the IPv6 re- + assembly algorithm (for whatever reason: timed + out, errors, etc.). Note that this is not + necessarily a count of discarded IPv6 fragments + since some algorithms (notably the algorithm in + RFC 815) can lose track of the number of fragments + by combining them as they are received. + This counter is incremented at the interface to which + these fragments were addressed which might not be + necessarily the input interface for some of the + fragments." + ::= { ipv6IfStatsEntry 18 } + + ipv6IfStatsInMcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of multicast packets received + by the interface" + ::= { ipv6IfStatsEntry 19 } + + ipv6IfStatsOutMcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of multicast packets transmitted + by the interface" + ::= { ipv6IfStatsEntry 20 } + + -- Address Prefix table + + -- The IPv6 Address Prefix table contains information on + -- the entity's IPv6 Address Prefixes that are associated + -- with IPv6 interfaces. + + ipv6AddrPrefixTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6AddrPrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The list of IPv6 address prefixes of + IPv6 interfaces." + ::= { ipv6MIBObjects 7 } + + ipv6AddrPrefixEntry OBJECT-TYPE + SYNTAX Ipv6AddrPrefixEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects of + a particular IPv6 address prefix." + INDEX { ipv6IfIndex, + ipv6AddrPrefix, + ipv6AddrPrefixLength } + ::= { ipv6AddrPrefixTable 1 } + + Ipv6AddrPrefixEntry ::= SEQUENCE { + + ipv6AddrPrefix Ipv6AddressPrefix, + ipv6AddrPrefixLength INTEGER (0..128), + ipv6AddrPrefixOnLinkFlag TruthValue, + ipv6AddrPrefixAutonomousFlag TruthValue, + ipv6AddrPrefixAdvPreferredLifetime Unsigned32, + ipv6AddrPrefixAdvValidLifetime Unsigned32 + } + + ipv6AddrPrefix OBJECT-TYPE + SYNTAX Ipv6AddressPrefix + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The prefix associated with the this interface." + ::= { ipv6AddrPrefixEntry 1 } + + ipv6AddrPrefixLength OBJECT-TYPE + SYNTAX INTEGER (0..128) + UNITS "bits" + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The length of the prefix (in bits)." + ::= { ipv6AddrPrefixEntry 2 } + + ipv6AddrPrefixOnLinkFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object has the value 'true(1)', if this + prefix can be used for on-link determination + and the value 'false(2)' otherwise." + ::= { ipv6AddrPrefixEntry 3 } + + ipv6AddrPrefixAutonomousFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Autonomous address configuration flag. When + true(1), indicates that this prefix can be used + for autonomous address configuration (i.e. can + be used to form a local interface address). + If false(2), it is not used to autoconfigure + a local interface address." + ::= { ipv6AddrPrefixEntry 4 } + + ipv6AddrPrefixAdvPreferredLifetime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It is the length of time in seconds that this + prefix will remain preferred, i.e. time until + deprecation. A value of 4,294,967,295 represents + infinity. + + The address generated from a deprecated prefix + should no longer be used as a source address in + new communications, but packets received on such + an interface are processed as expected." + ::= { ipv6AddrPrefixEntry 5 } + + ipv6AddrPrefixAdvValidLifetime OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "It is the length of time in seconds that this + prefix will remain valid, i.e. time until + invalidation. A value of 4,294,967,295 represents + infinity. + + The address generated from an invalidated prefix + should not appear as the destination or source + address of a packet." + ::= { ipv6AddrPrefixEntry 6 } + + -- the IPv6 Address table + + -- The IPv6 address table contains this node's IPv6 + -- addressing information. + + ipv6AddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of addressing information relevant to + this node's interface addresses." + ::= { ipv6MIBObjects 8 } + + ipv6AddrEntry OBJECT-TYPE + SYNTAX Ipv6AddrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The addressing information for one of this + node's interface addresses." + INDEX { ipv6IfIndex, ipv6AddrAddress } + ::= { ipv6AddrTable 1 } + + Ipv6AddrEntry ::= + SEQUENCE { + ipv6AddrAddress Ipv6Address, + ipv6AddrPfxLength INTEGER, + ipv6AddrType INTEGER, + ipv6AddrAnycastFlag TruthValue, + ipv6AddrStatus INTEGER + } + + ipv6AddrAddress OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IPv6 address to which this entry's addressing + information pertains." + ::= { ipv6AddrEntry 1 } + + ipv6AddrPfxLength OBJECT-TYPE + SYNTAX INTEGER(0..128) + UNITS "bits" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The length of the prefix (in bits) associated with + the IPv6 address of this entry." + ::= { ipv6AddrEntry 2 } + + ipv6AddrType OBJECT-TYPE + SYNTAX INTEGER { + -- address has been formed + -- using stateless + stateless(1), -- autoconfiguration + + -- address has been acquired + -- by stateful means + -- (e.g. DHCPv6, manual + stateful(2), -- configuration) + + -- type can not be determined + unknown(3) -- for some reason. + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of address. Note that 'stateless(1)' + refers to an address that was statelessly + autoconfigured; 'stateful(2)' refers to a address + which was acquired by via a stateful protocol + (e.g. DHCPv6, manual configuration)." + ::= { ipv6AddrEntry 3 } + + ipv6AddrAnycastFlag OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object has the value 'true(1)', if this + address is an anycast address and the value + 'false(2)' otherwise." + ::= { ipv6AddrEntry 4 } + + ipv6AddrStatus OBJECT-TYPE + SYNTAX INTEGER { + preferred(1), + deprecated(2), + invalid(3), + inaccessible(4), + unknown(5) -- status can not be determined + -- for some reason. + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Address status. The preferred(1) state indicates + that this is a valid address that can appear as + the destination or source address of a packet. + The deprecated(2) state indicates that this is + a valid but deprecated address that should no longer + be used as a source address in new communications, + but packets addressed to such an address are + processed as expected. The invalid(3) state indicates + that this is not valid address which should not + + appear as the destination or source address of + a packet. The inaccessible(4) state indicates that + the address is not accessible because the interface + to which this address is assigned is not operational." + ::= { ipv6AddrEntry 5 } + + -- IPv6 Routing objects + + ipv6RouteNumber OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current ipv6RouteTable entries. + This is primarily to avoid having to read + the table in order to determine this number." + ::= { ipv6MIBObjects 9 } + + ipv6DiscardedRoutes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of routing entries which were chosen + to be discarded even though they are valid. One + possible reason for discarding such an entry could + be to free-up buffer space for other routing + entries." + ::= { ipv6MIBObjects 10 } + + -- IPv6 Routing table + + ipv6RouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6RouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "IPv6 Routing table. This table contains + an entry for each valid IPv6 unicast route + that can be used for packet forwarding + determination." + ::= { ipv6MIBObjects 11 } + + ipv6RouteEntry OBJECT-TYPE + SYNTAX Ipv6RouteEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A routing entry." + INDEX { ipv6RouteDest, + ipv6RoutePfxLength, + ipv6RouteIndex } + ::= { ipv6RouteTable 1 } + + Ipv6RouteEntry ::= SEQUENCE { + ipv6RouteDest Ipv6Address, + ipv6RoutePfxLength INTEGER, + ipv6RouteIndex Unsigned32, + ipv6RouteIfIndex Ipv6IfIndexOrZero, + ipv6RouteNextHop Ipv6Address, + ipv6RouteType INTEGER, + ipv6RouteProtocol INTEGER, + ipv6RoutePolicy Integer32, + ipv6RouteAge Unsigned32, + ipv6RouteNextHopRDI Unsigned32, + ipv6RouteMetric Unsigned32, + ipv6RouteWeight Unsigned32, + ipv6RouteInfo RowPointer, + ipv6RouteValid TruthValue + } + + ipv6RouteDest OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The destination IPv6 address of this route. + This object may not take a Multicast address + value." + ::= { ipv6RouteEntry 1 } + + ipv6RoutePfxLength OBJECT-TYPE + SYNTAX INTEGER(0..128) + UNITS "bits" + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Indicates the prefix length of the destination + address." + ::= { ipv6RouteEntry 2 } + + ipv6RouteIndex OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value which uniquely identifies the route + among the routes to the same network layer + destination. The way this value is chosen is + implementation specific but it must be unique for + ipv6RouteDest/ipv6RoutePfxLength pair and remain + constant for the life of the route." + ::= { ipv6RouteEntry 3 } + + ipv6RouteIfIndex OBJECT-TYPE + SYNTAX Ipv6IfIndexOrZero + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index value which uniquely identifies the local + interface through which the next hop of this + route should be reached. The interface identified + by a particular value of this index is the same + interface as identified by the same value of + ipv6IfIndex. For routes of the discard type this + value can be zero." + ::= { ipv6RouteEntry 4 } + + ipv6RouteNextHop OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "On remote routes, the address of the next + system en route; otherwise, ::0 + ('00000000000000000000000000000000'H in ASN.1 + string representation)." + ::= { ipv6RouteEntry 5 } + + ipv6RouteType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + -- an route indicating that + -- packets to destinations + -- matching this route are + discard(2), -- to be discarded + + -- route to directly + local(3), -- connected (sub-)network + + -- route to a remote + + remote(4) -- destination + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of route. Note that 'local(3)' refers + to a route for which the next hop is the final + destination; 'remote(4)' refers to a route for + which the next hop is not the final + destination; 'discard(2)' refers to a route + indicating that packets to destinations matching + this route are to be discarded (sometimes called + black-hole route)." + ::= { ipv6RouteEntry 6 } + + ipv6RouteProtocol OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + -- non-protocol information, + -- e.g., manually configured + local(2), -- entries + + netmgmt(3), -- static route + + -- obtained via Neighbor + -- Discovery protocol, + ndisc(4), -- e.g., result of Redirect + + -- the following are all + -- dynamic routing protocols + rip(5), -- RIPng + ospf(6), -- Open Shortest Path First + bgp(7), -- Border Gateway Protocol + idrp(8), -- InterDomain Routing Protocol + igrp(9) -- InterGateway Routing Protocol + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The routing mechanism via which this route was + learned." + ::= { ipv6RouteEntry 7 } + + ipv6RoutePolicy OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The general set of conditions that would cause the + selection of one multipath route (set of next hops + for a given destination) is referred to as 'policy'. + Unless the mechanism indicated by ipv6RouteProtocol + specified otherwise, the policy specifier is the + 8-bit Traffic Class field of the IPv6 packet header + that is zero extended at the left to a 32-bit value. + + Protocols defining 'policy' otherwise must either + define a set of values which are valid for + this object or must implement an integer- + instanced policy table for which this object's + value acts as an index." + ::= { ipv6RouteEntry 8 } + + ipv6RouteAge OBJECT-TYPE + SYNTAX Unsigned32 + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of seconds since this route was last + updated or otherwise determined to be correct. + Note that no semantics of `too old' can be implied + except through knowledge of the routing protocol + by which the route was learned." + ::= { ipv6RouteEntry 9 } + + ipv6RouteNextHopRDI OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Routing Domain ID of the Next Hop. + The semantics of this object are determined by + the routing-protocol specified in the route's + ipv6RouteProtocol value. When this object is + unknown or not relevant its value should be set + to zero." + ::= { ipv6RouteEntry 10 } + + ipv6RouteMetric OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The routing metric for this route. The + semantics of this metric are determined by the + routing protocol specified in the route's + ipv6RouteProtocol value. When this is unknown + or not relevant to the protocol indicated by + ipv6RouteProtocol, the object value should be + set to its maximum value (4,294,967,295)." + ::= { ipv6RouteEntry 11 } + + ipv6RouteWeight OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system internal weight value for this route. + The semantics of this value are determined by + the implementation specific rules. Generally, + within routes with the same ipv6RoutePolicy value, + the lower the weight value the more preferred is + the route." + ::= { ipv6RouteEntry 12 } + + ipv6RouteInfo OBJECT-TYPE + SYNTAX RowPointer + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A reference to MIB definitions specific to the + particular routing protocol which is responsible + for this route, as determined by the value + specified in the route's ipv6RouteProto value. + If this information is not present, its value + should be set to the OBJECT ID { 0 0 }, + which is a syntactically valid object identifier, + and any implementation conforming to ASN.1 + and the Basic Encoding Rules must be able to + generate and recognize this value." + ::= { ipv6RouteEntry 13 } + + ipv6RouteValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object to the value 'false(2)' has + the effect of invalidating the corresponding entry + in the ipv6RouteTable object. That is, it + effectively disassociates the destination + + identified with said entry from the route + identified with said entry. It is an + implementation-specific matter as to whether the + agent removes an invalidated entry from the table. + Accordingly, management stations must be prepared + to receive tabular information from agents that + corresponds to entries not currently in use. + Proper interpretation of such entries requires + examination of the relevant ipv6RouteValid + object." + DEFVAL { true } + ::= { ipv6RouteEntry 14 } + + -- IPv6 Address Translation table + + ipv6NetToMediaTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ipv6NetToMediaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IPv6 Address Translation table used for + mapping from IPv6 addresses to physical addresses. + + The IPv6 address translation table contain the + Ipv6Address to `physical' address equivalencies. + Some interfaces do not use translation tables + for determining address equivalencies; if all + interfaces are of this type, then the Address + Translation table is empty, i.e., has zero + entries." + ::= { ipv6MIBObjects 12 } + + ipv6NetToMediaEntry OBJECT-TYPE + SYNTAX Ipv6NetToMediaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains one IPv6 address to `physical' + address equivalence." + INDEX { ipv6IfIndex, + ipv6NetToMediaNetAddress } + ::= { ipv6NetToMediaTable 1 } + + Ipv6NetToMediaEntry ::= SEQUENCE { + ipv6NetToMediaNetAddress + Ipv6Address, + ipv6NetToMediaPhysAddress + + PhysAddress, + ipv6NetToMediaType + INTEGER, + ipv6IfNetToMediaState + INTEGER, + ipv6IfNetToMediaLastUpdated + TimeStamp, + ipv6NetToMediaValid + TruthValue + } + + ipv6NetToMediaNetAddress OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The IPv6 Address corresponding to + the media-dependent `physical' address." + ::= { ipv6NetToMediaEntry 1 } + + ipv6NetToMediaPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The media-dependent `physical' address." + ::= { ipv6NetToMediaEntry 2 } + + ipv6NetToMediaType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + dynamic(2), -- dynamically resolved + static(3), -- statically configured + local(4) -- local interface + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the mapping. The 'dynamic(2)' type + indicates that the IPv6 address to physical + addresses mapping has been dynamically + resolved using the IPv6 Neighbor Discovery + protocol. The static(3)' types indicates that + the mapping has been statically configured. + The local(4) indicates that the mapping is + provided for an entity's own interface address." + ::= { ipv6NetToMediaEntry 3 } + +ipv6IfNetToMediaState OBJECT-TYPE + SYNTAX INTEGER { + reachable(1), -- confirmed reachability + + stale(2), -- unconfirmed reachability + + delay(3), -- waiting for reachability + -- confirmation before entering + -- the probe state + + probe(4), -- actively probing + + invalid(5), -- an invalidated mapping + + unknown(6) -- state can not be determined + -- for some reason. + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Neighbor Unreachability Detection [8] state + for the interface when the address mapping in + this entry is used." + ::= { ipv6NetToMediaEntry 4 } + +ipv6IfNetToMediaLastUpdated OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time this entry + was last updated. If this entry was updated prior + to the last re-initialization of the local network + management subsystem, then this object contains + a zero value." + ::= { ipv6NetToMediaEntry 5 } + + ipv6NetToMediaValid OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object to the value 'false(2)' has + the effect of invalidating the corresponding entry + in the ipv6NetToMediaTable. That is, it effectively + disassociates the interface identified with said + entry from the mapping identified with said entry. + It is an implementation-specific matter as to + + whether the agent removes an invalidated entry + from the table. Accordingly, management stations + must be prepared to receive tabular information + from agents that corresponds to entries not + currently in use. Proper interpretation of such + entries requires examination of the relevant + ipv6NetToMediaValid object." + DEFVAL { true } + ::= { ipv6NetToMediaEntry 6 } + +-- definition of IPv6-related notifications. +-- Note that we need ipv6NotificationPrefix with the 0 +-- sub-identifier to make this MIB to translate to +-- an SNMPv1 format in a reversible way. For example +-- it is needed for proxies that convert SNMPv1 traps +-- to SNMPv2 notifications without MIB knowledge. + +ipv6Notifications OBJECT IDENTIFIER + ::= { ipv6MIB 2 } +ipv6NotificationPrefix OBJECT IDENTIFIER + ::= { ipv6Notifications 0 } + +ipv6IfStateChange NOTIFICATION-TYPE + OBJECTS { + ipv6IfDescr, + ipv6IfOperStatus -- the new state of the If. + } + STATUS current + DESCRIPTION + "An ipv6IfStateChange notification signifies + that there has been a change in the state of + an ipv6 interface. This notification should + be generated when the interface's operational + status transitions to or from the up(1) state." + ::= { ipv6NotificationPrefix 1 } + +-- conformance information + +ipv6Conformance OBJECT IDENTIFIER ::= { ipv6MIB 3 } + +ipv6Compliances OBJECT IDENTIFIER ::= { ipv6Conformance 1 } +ipv6Groups OBJECT IDENTIFIER ::= { ipv6Conformance 2 } + +-- compliance statements + +ipv6Compliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement ipv6 MIB." + MODULE -- this module + MANDATORY-GROUPS { ipv6GeneralGroup, + ipv6NotificationGroup } + OBJECT ipv6Forwarding + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + OBJECT ipv6DefaultHopLimit + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + OBJECT ipv6IfDescr + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + OBJECT ipv6IfIdentifier + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + OBJECT ipv6IfIdentifierLength + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + + OBJECT ipv6IfAdminStatus + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + OBJECT ipv6RouteValid + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + access to this object" + OBJECT ipv6NetToMediaValid + MIN-ACCESS read-only + DESCRIPTION + "An agent is not required to provide write + + access to this object" + ::= { ipv6Compliances 1 } + +ipv6GeneralGroup OBJECT-GROUP + OBJECTS { ipv6Forwarding, + ipv6DefaultHopLimit, + ipv6Interfaces, + ipv6IfTableLastChange, + ipv6IfDescr, + ipv6IfLowerLayer, + ipv6IfEffectiveMtu, + ipv6IfReasmMaxSize, + ipv6IfIdentifier, + ipv6IfIdentifierLength, + ipv6IfPhysicalAddress, + ipv6IfAdminStatus, + ipv6IfOperStatus, + ipv6IfLastChange, + ipv6IfStatsInReceives, + ipv6IfStatsInHdrErrors, + ipv6IfStatsInTooBigErrors, + ipv6IfStatsInNoRoutes, + ipv6IfStatsInAddrErrors, + ipv6IfStatsInUnknownProtos, + ipv6IfStatsInTruncatedPkts, + ipv6IfStatsInDiscards, + ipv6IfStatsInDelivers, + ipv6IfStatsOutForwDatagrams, + ipv6IfStatsOutRequests, + ipv6IfStatsOutDiscards, + ipv6IfStatsOutFragOKs, + ipv6IfStatsOutFragFails, + ipv6IfStatsOutFragCreates, + ipv6IfStatsReasmReqds, + ipv6IfStatsReasmOKs, + ipv6IfStatsReasmFails, + ipv6IfStatsInMcastPkts, + ipv6IfStatsOutMcastPkts, + ipv6AddrPrefixOnLinkFlag, + ipv6AddrPrefixAutonomousFlag, + ipv6AddrPrefixAdvPreferredLifetime, + ipv6AddrPrefixAdvValidLifetime, + ipv6AddrPfxLength, + ipv6AddrType, + ipv6AddrAnycastFlag, + ipv6AddrStatus, + ipv6RouteNumber, + ipv6DiscardedRoutes, + ipv6RouteIfIndex, + ipv6RouteNextHop, + ipv6RouteType, + ipv6RouteProtocol, + ipv6RoutePolicy, + ipv6RouteAge, + ipv6RouteNextHopRDI, + ipv6RouteMetric, + ipv6RouteWeight, + ipv6RouteInfo, + ipv6RouteValid, + ipv6NetToMediaPhysAddress, + ipv6NetToMediaType, + ipv6IfNetToMediaState, + ipv6IfNetToMediaLastUpdated, + ipv6NetToMediaValid } + STATUS current + DESCRIPTION + "The IPv6 group of objects providing for basic + management of IPv6 entities." + ::= { ipv6Groups 1 } + +ipv6NotificationGroup NOTIFICATION-GROUP + NOTIFICATIONS { ipv6IfStateChange } + STATUS current + DESCRIPTION + "The notification that an IPv6 entity is required + to implement." + ::= { ipv6Groups 2 } + + END diff --git a/pandora_console/attachment/mibs/IPV6-TC b/pandora_console/attachment/mibs/IPV6-TC new file mode 100644 index 0000000000..05e1e7d980 --- /dev/null +++ b/pandora_console/attachment/mibs/IPV6-TC @@ -0,0 +1,67 @@ +IPV6-TC DEFINITIONS ::= BEGIN + +IMPORTS + Integer32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC; + +-- definition of textual conventions +Ipv6Address ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 addresses. + This is a binary string of 16 octets in network + byte-order." + SYNTAX OCTET STRING (SIZE (16)) + +Ipv6AddressPrefix ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 address + prefixes. This is a binary string of up to 16 + octets in network byte-order." + SYNTAX OCTET STRING (SIZE (0..16)) + +Ipv6AddressIfIdentifier ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2x:" + STATUS current + DESCRIPTION + "This data type is used to model IPv6 address + interface identifiers. This is a binary string + of up to 8 octets in network byte-order." + SYNTAX OCTET STRING (SIZE (0..8)) + +Ipv6IfIndex ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "A unique value, greater than zero for each + internetwork-layer interface in the managed + system. It is recommended that values are assigned + contiguously starting from 1. The value for each + internetwork-layer interface must remain constant + at least from one re-initialization of the entity's + network management system to the next + + re-initialization." + SYNTAX Integer32 (1..2147483647) + +Ipv6IfIndexOrZero ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This textual convention is an extension of the + Ipv6IfIndex convention. The latter defines + a greater than zero value used to identify an IPv6 + interface in the managed system. This extension + permits the additional value of zero. The value + zero is object-specific and must therefore be + defined as part of the description of any object + which uses this syntax. Examples of the usage of + zero might include situations where interface was + unknown, or when none or all interfaces need to be + referenced." + SYNTAX Integer32 (0..2147483647) + +END diff --git a/pandora_console/attachment/mibs/JUNIPER-MIB b/pandora_console/attachment/mibs/JUNIPER-MIB new file mode 100644 index 0000000000..16a823a475 --- /dev/null +++ b/pandora_console/attachment/mibs/JUNIPER-MIB @@ -0,0 +1,2022 @@ +-- +-- Juniper Enterprise Specific MIB: Chassis MIB +-- +-- Copyright (c) 1998-2008, Juniper Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +JUNIPER-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + Integer32, Gauge32, Counter32 + FROM SNMPv2-SMI + DisplayString, TimeStamp, TimeInterval, TEXTUAL-CONVENTION, DateAndTime + FROM SNMPv2-TC + jnxMibs, jnxChassisTraps, jnxChassisOKTraps + FROM JUNIPER-SMI; + +jnxBoxAnatomy MODULE-IDENTITY + + LAST-UPDATED "201010220000Z" -- Fri Oct 22 00:00:00 2008 UTC + ORGANIZATION "Juniper Networks, Inc." + CONTACT-INFO + " Juniper Technical Assistance Center + Juniper Networks, Inc. + 1194 N. Mathilda Avenue + Sunnyvale, CA 94089 + E-mail: support@juniper.net" + + DESCRIPTION + "The MIB modules representing Juniper Networks' + implementation of enterprise specific MIBs + supported by a single SNMP agent." + REVISION "201010220000Z" + DESCRIPTION + "Added load average variables" + REVISION "200403230000Z" + DESCRIPTION + "Added chassis identification objects." + REVISION "200406300000Z" -- July 30, 2004 + DESCRIPTION + "Added following new traps for chassis + alarm conditions: jnxFruFailed, jnxFruOffline + and jnxFruOnline." + REVISION "200409170000Z" -- Sep 17, 2004 + DESCRIPTION + "Added new traps for chassis + alarm condition jnxFruCheck." + REVISION "200507180000Z" -- Jul 18, 2005 + DESCRIPTION + "Added new fru type FEB in jnxFruType enumeration." + REVISION "200507190000Z" -- Jul 19, 2005 + DESCRIPTION + "Added new offline reason pfeVersionMismatch + to jnxFruOfflineReason enumeration." + REVISION "200611200000Z" -- Nov 20, 2006 + DESCRIPTION + "Added new offline reason fruFebOffline + to jnxFruOfflineReason enumeration." + REVISION "200807310000Z" -- Jul 31, 2008 + DESCRIPTION + "Added jnxBoxSystemDomainType object." + REVISION "200808010000Z" -- Aug 01, 2008 + DESCRIPTION + "Added new fru type PSD to jnxFruType enumeration and + added jcsX chassis IDs to JnxChassisId enumeration." + REVISION "200812310000Z" -- Dec 31, 2008 + DESCRIPTION "Added nodeX chassis IDs to JnxChassisId enumeration." + REVISION "200901090000Z" -- Jan 09, 2009 + DESCRIPTION + "Added sfcX and lcc4-lcc15 chassis IDs to JnxChassisId + enumeration." + + + + ::= { jnxMibs 1 } + +-- +-- Textual Conventions +-- + +JnxChassisId ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Identifies a specific router chassis." + SYNTAX INTEGER { + unknown (1), + singleChassis (2), + scc (3), + lcc0 (4), + lcc1 (5), + lcc2 (6), + lcc3 (7), + jcs1 (8), + jcs2 (9), + jcs3 (10), + jcs4 (11), + node0 (12), + node1 (13), + sfc0 (14), + sfc1 (15), + sfc2 (16), + sfc3 (17), + sfc4 (18), + lcc4 (19), + lcc5 (20), + lcc6 (21), + lcc7 (22), + lcc8 (23), + lcc9 (24), + lcc10 (25), + lcc11 (26), + lcc12 (27), + lcc13 (28), + lcc14 (29), + lcc15 (30), + member0 (31), + member1 (32), + member2 (33), + member3 (34), + member4 (35), + member5 (36), + member6 (37), + member7 (38) + } + + + +-- Juniper Box Anatomy MIB +-- + +-- Top level objects + + jnxBoxClass OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The class of the box, indicating which product line + the box is about, for example, 'Internet Router'." + ::= { jnxBoxAnatomy 1 } + + jnxBoxDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name, model, or detailed description of the box, + indicating which product the box is about, for example + 'M40'." + ::= { jnxBoxAnatomy 2 } + + jnxBoxSerialNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number of this subject, blank if unknown + or unavailable." + ::= { jnxBoxAnatomy 3 } + + jnxBoxRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The revision of this subject, blank if unknown or + unavailable." + ::= { jnxBoxAnatomy 4 } + + jnxBoxInstalled OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the subject was last + installed, up-and-running. Zero if unknown or + already up-and-running when the agent was up." + ::= { jnxBoxAnatomy 5 } + +-- +-- Box Containers Table +-- + + jnxContainersTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxContainersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of containers entries." + ::= { jnxBoxAnatomy 6 } + + jnxContainersEntry OBJECT-TYPE + SYNTAX JnxContainersEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of containers table." + INDEX { jnxContainersIndex } + ::= { jnxContainersTable 1 } + + JnxContainersEntry ::= SEQUENCE { + jnxContainersIndex Integer32, + jnxContainersView Integer32, + jnxContainersLevel Integer32, + jnxContainersWithin Integer32, + jnxContainersType OBJECT IDENTIFIER, + jnxContainersDescr DisplayString, + jnxContainersCount Integer32 + } + + jnxContainersIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index for this entry." + ::= { jnxContainersEntry 1 } + + jnxContainersView OBJECT-TYPE + SYNTAX Integer32 (1..63) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The view(s) from which the specific container + appears. + + This variable indicates that the specific container + is embedded and accessible from the corresponding + view(s). + + The value is a bit map represented as a sum. + If multiple bits are set, the specified + container(s) are located and accessible from + that set of views. + + The various values representing the bit positions + and its corresponding views are: + 1 front + 2 rear + 4 top + 8 bottom + 16 leftHandSide + 32 rightHandSide + + Note 1: + LefHandSide and rightHandSide are referred + to based on the view from the front. + + Note 2: + If the specified containers are scattered + around various views, the numbering is according + to the following sequence: + front -> rear -> top -> bottom + -> leftHandSide -> rightHandSide + For each view plane, the numbering sequence is + first from left to right, and then from up to down. + + Note 3: + Even though the value in chassis hardware (e.g. + slot number) may be labelled from 0, 1, 2, and up, + all the indices in MIB start with 1 (not 0) + according to network management convention." + ::= { jnxContainersEntry 2 } + + jnxContainersLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The abstraction level of the box or chassis. + It is enumerated from the outside to the inside, + from the outer layer to the inner layer. + For example, top level (i.e. level 0) refers to + chassis frame, level 1 FPC slot within chassis + frame, level 2 PIC space within FPC slot." + ::= { jnxContainersEntry 3 } + + jnxContainersWithin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of its next higher level container + housing this entry. The associated + jnxContainersIndex in the jnxContainersTable + represents its next higher level container." + ::= { jnxContainersEntry 4 } + + jnxContainersType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of this container." + ::= { jnxContainersEntry 5 } + + jnxContainersDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name or detailed description of this + subject." + ::= { jnxContainersEntry 6 } + + jnxContainersCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of containers of this level + per container of the next higher level. + e.g. if there are six level 2 containers in + level 1 container, then jnxContainersCount for + level 2 is six." + ::= { jnxContainersEntry 7 } + +-- +-- Box Contents Table +-- + + jnxContentsLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the box contents + table last changed. Zero if unknown or already + existing when the agent was up." + ::= { jnxBoxAnatomy 7 } + + jnxContentsTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxContentsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of contents entries." + ::= { jnxBoxAnatomy 8 } + + jnxContentsEntry OBJECT-TYPE + SYNTAX JnxContentsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of contents table." + INDEX { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index } + ::= { jnxContentsTable 1 } + + JnxContentsEntry ::= SEQUENCE { + jnxContentsContainerIndex Integer32, + jnxContentsL1Index Integer32, + jnxContentsL2Index Integer32, + jnxContentsL3Index Integer32, + jnxContentsType OBJECT IDENTIFIER, + jnxContentsDescr DisplayString, + jnxContentsSerialNo DisplayString, + jnxContentsRevision DisplayString, + jnxContentsInstalled TimeStamp, + jnxContentsPartNo DisplayString, + jnxContentsChassisId JnxChassisId, + jnxContentsChassisDescr DisplayString, + jnxContentsChassisCleiCode DisplayString + } + + jnxContentsContainerIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The associated jnxContainersIndex in the + jnxContainersTable." + ::= { jnxContentsEntry 1 } + + jnxContentsL1Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level one index of the container + housing this subject. Zero if unavailable + or inapplicable." + ::= { jnxContentsEntry 2 } + + jnxContentsL2Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level two index of the container + housing this subject. Zero if unavailable + or inapplicable." + ::= { jnxContentsEntry 3 } + + jnxContentsL3Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level three index of the container + housing this subject. Zero if unavailable + or inapplicable." + ::= { jnxContentsEntry 4 } + + jnxContentsType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of this subject. zeroDotZero + if unknown." + ::= { jnxContentsEntry 5 } + + jnxContentsDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name or detailed description of this + subject." + ::= { jnxContentsEntry 6 } + + jnxContentsSerialNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number of this subject, blank if + unknown or unavailable." + ::= { jnxContentsEntry 7 } + + jnxContentsRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The revision of this subject, blank if unknown + or unavailable." + ::= { jnxContentsEntry 8 } + + jnxContentsInstalled OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the subject was last + installed, up-and-running. Zero if unknown + or already up-and-running when the agent was up." + ::= { jnxContentsEntry 9 } + + jnxContentsPartNo OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The part number of this subject, blank if unknown + or unavailable." + ::= { jnxContentsEntry 10 } + + jnxContentsChassisId OBJECT-TYPE + SYNTAX JnxChassisId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the chassis on which the contents of this + row exists." + ::= { jnxContentsEntry 11 } + + jnxContentsChassisDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the chassis on which the + contents of this row exists." + ::= { jnxContentsEntry 12 } + + jnxContentsChassisCleiCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The clei code of this subject, blank if unknown + or unavailable. + + A CLEI code is an intelligent code that consists of 10 + alphanumeric characters with 4 data elements. The first data + element is considered the basic code with the first 2 characters + indicating the technology or equipment type, and the third and + fourth characters denoting the functional sub-category. The + second data element represents the features, and its three + characters denote functional capabilities or changes. The third + data element has one character and denotes a reference to a + manufacturer, system ID, specification, or drawing. The fourth + data element consists of two characters and contains complementary + data. These two characters provide a means of differentiating or + providing uniqueness between the eight character CLEI codes by + identifying the manufacturing vintage of the product. Names are + assigned via procedures defined in [GR485]. + + The assigned maintenance agent for the CLEI code, Telcordia + Technologies, is responsible for assigning certain equipment and + other identifiers (e.g., location, manufacturer/supplier) for the + telecommunications industry." + ::= { jnxContentsEntry 13 } + +-- +-- Box LED Indicators Table +-- + + jnxLEDLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The value of sysUpTime when the box LED table + last changed. Zero if unknown or already at + that state when the agent was up." + ::= { jnxBoxAnatomy 9 } + + jnxLEDTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxLEDEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "A list of status entries." + ::= { jnxBoxAnatomy 10 } + + jnxLEDEntry OBJECT-TYPE + SYNTAX JnxLEDEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "An entry of status table." + INDEX { jnxLEDAssociateTable, + jnxLEDAssociateIndex, + jnxLEDL1Index, + jnxLEDL2Index, + jnxLEDL3Index } + ::= { jnxLEDTable 1 } + + JnxLEDEntry ::= SEQUENCE { + jnxLEDAssociateTable INTEGER, + jnxLEDAssociateIndex Integer32, + jnxLEDL1Index Integer32, + jnxLEDL2Index Integer32, + jnxLEDL3Index Integer32, + jnxLEDOriginator OBJECT IDENTIFIER, + jnxLEDDescr DisplayString, + jnxLEDState INTEGER, + jnxLEDStateOrdered INTEGER + } + + jnxLEDAssociateTable OBJECT-TYPE + SYNTAX INTEGER { + other(1), + jnxContainersTable(2), + jnxContentsTable(3) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The associated table that this entry is + related." + ::= { jnxLEDEntry 1 } + + jnxLEDAssociateIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The index of the associated table that this + entry is related." + ::= { jnxLEDEntry 2 } + + jnxLEDL1Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The level one index of the associated + table that this entry is related. Zero + if unavailable or inapplicable." + ::= { jnxLEDEntry 3 } + + jnxLEDL2Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The level two index of the associated + table that this entry is related. Zero + if unavailable or inapplicable." + ::= { jnxLEDEntry 4 } + + jnxLEDL3Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The level three index of the associated + table that this entry is related. Zero + if unavailable or inapplicable." + ::= { jnxLEDEntry 5 } + + jnxLEDOriginator OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The originator of the this entry." + ::= { jnxLEDEntry 6 } + + jnxLEDDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The name or detailed description of this subject." + ::= { jnxLEDEntry 7 } + + jnxLEDState OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- unknown or unavailable + green(2), -- ok, good, normally working, + -- or on-line as a standby backup if + -- there is an active primary + yellow(3), -- alarm, warning, marginally working + red(4), -- alert, failed, not working + blue(5), -- ok, on-line as an active primary + amber(6) -- alarm, off-line, not running + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The state of the LED indicator." + ::= { jnxLEDEntry 8 } + + jnxLEDStateOrdered OBJECT-TYPE + SYNTAX INTEGER { + blue(1), -- ok, on-line as an active primary + green(2), -- ok, good, normally working, + -- or on-line as a standby backup if + -- there is an active primary + amber(3), -- alarm, off-line, not running + yellow(4), -- alarm, warning, marginally working + red(5), -- alert, failed, not working + other(6) -- unknown or unavailable + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The state of the LED indicator. Identical to jnxLEDState, but + with enums ordered from 'most operational' to 'least + operational' states." + ::= { jnxLEDEntry 9 } +-- +-- Box Filled Status Table +-- +-- This table show the empty/filled status of the container in the +-- box containers table. +-- + + jnxFilledLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the box filled + status table last changed. Zero if unknown or + already at that state when the agent was up." + ::= { jnxBoxAnatomy 11 } + + jnxFilledTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxFilledEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of filled status entries." + ::= { jnxBoxAnatomy 12 } + + jnxFilledEntry OBJECT-TYPE + SYNTAX JnxFilledEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of filled status table." + INDEX { jnxFilledContainerIndex, + jnxFilledL1Index, + jnxFilledL2Index, + jnxFilledL3Index } + ::= { jnxFilledTable 1 } + + JnxFilledEntry ::= SEQUENCE { + jnxFilledContainerIndex Integer32, + jnxFilledL1Index Integer32, + jnxFilledL2Index Integer32, + jnxFilledL3Index Integer32, + jnxFilledDescr DisplayString, + jnxFilledState INTEGER, + jnxFilledChassisId JnxChassisId, + jnxFilledChassisDescr DisplayString + } + + jnxFilledContainerIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The associated jnxContainersIndex in the + jnxContainersTable." + ::= { jnxFilledEntry 1 } + + jnxFilledL1Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level one index of the container + housing this subject. Zero if unavailable + or inapplicable." + ::= { jnxFilledEntry 2 } + + jnxFilledL2Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level two index of the container + housing this subject. Zero if unavailable + or inapplicable." + ::= { jnxFilledEntry 3 } + + jnxFilledL3Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level three index of the container + housing this subject. Zero if unavailable + or inapplicable." + ::= { jnxFilledEntry 4 } + + jnxFilledDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name or detailed description of this + subject." + ::= { jnxFilledEntry 5 } + + jnxFilledState OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + empty(2), + filled(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The filled state of this subject." + ::= { jnxFilledEntry 6 } + + jnxFilledChassisId OBJECT-TYPE + SYNTAX JnxChassisId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the chassis on which the contents of this + row exists." + ::= { jnxFilledEntry 7 } + + jnxFilledChassisDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the chassis on which the + contents of this row exists." + ::= { jnxFilledEntry 8 } + + +-- +-- Box Operating Status Table +-- +-- This table reveals the operating status of some subjects +-- of interest in the box contents table. +-- + + jnxOperatingTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxOperatingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of operating status entries." + ::= { jnxBoxAnatomy 13 } + + jnxOperatingEntry OBJECT-TYPE + SYNTAX JnxOperatingEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry of operating status table." + INDEX { jnxOperatingContentsIndex, + jnxOperatingL1Index, + jnxOperatingL2Index, + jnxOperatingL3Index } + ::= { jnxOperatingTable 1 } + + JnxOperatingEntry ::= SEQUENCE { + jnxOperatingContentsIndex Integer32, + jnxOperatingL1Index Integer32, + jnxOperatingL2Index Integer32, + jnxOperatingL3Index Integer32, + jnxOperatingDescr DisplayString, + jnxOperatingState INTEGER, + jnxOperatingTemp Gauge32, + jnxOperatingCPU Gauge32, + jnxOperatingISR Gauge32, + jnxOperatingDRAMSize Integer32, + jnxOperatingBuffer Gauge32, + jnxOperatingHeap Gauge32, + jnxOperatingUpTime TimeInterval, + jnxOperatingLastRestart TimeStamp, + jnxOperatingMemory Integer32, + jnxOperatingStateOrdered INTEGER, + jnxOperatingChassisId JnxChassisId, + jnxOperatingChassisDescr DisplayString, + jnxOperatingRestartTime DateAndTime, + jnxOperating1MinLoadAvg Gauge32, + jnxOperating5MinLoadAvg Gauge32, + jnxOperating15MinLoadAvg Gauge32 + } + + jnxOperatingContentsIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The associated jnxContentsContainerIndex in the + jnxContentsTable." + ::= { jnxOperatingEntry 1 } + + jnxOperatingL1Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level one index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 2 } + + jnxOperatingL2Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level two index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 3 } + + jnxOperatingL3Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level three index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 4 } + + jnxOperatingDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name or detailed description of this subject." + ::= { jnxOperatingEntry 5 } + + jnxOperatingState OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + running(2), -- up and running, + -- as a active primary + ready(3), -- ready to run, not running yet + reset(4), -- held in reset, not ready yet + runningAtFullSpeed(5), + -- valid for fans only + down(6), -- down or off, for power supply + standby(7) -- running as a standby backup + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operating state of this subject." + ::= { jnxOperatingEntry 6 } + + jnxOperatingTemp OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature in Celsius (degrees C) of this + subject. Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 7 } + + jnxOperatingCPU OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU utilization in percentage of this + subject. Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 8 } + + jnxOperatingISR OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU utilization in percentage of this subject + spending in interrupt service routine (ISR). + Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 9 } + + jnxOperatingDRAMSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The DRAM size in bytes of this subject. + Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 10 } + + jnxOperatingBuffer OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The buffer pool utilization in percentage + of this subject. Zero if unavailable or + inapplicable." + ::= { jnxOperatingEntry 11 } + + jnxOperatingHeap OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The heap utilization in percentage of + this subject. Zero if unavailable or + inapplicable." + ::= { jnxOperatingEntry 12 } + + jnxOperatingUpTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The time interval in 10-millisecond period + that this subject has been up and running. + Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 13 } + + jnxOperatingLastRestart OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when this subject + last restarted. Zero if unavailable or + inapplicable." + ::= { jnxOperatingEntry 14 } + + jnxOperatingMemory OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The installed memory size in Megabytes + of this subject. Zero if unavailable or + inapplicable." + ::= { jnxOperatingEntry 15 } + + jnxOperatingStateOrdered OBJECT-TYPE + SYNTAX INTEGER { + running(1), -- up and running, + -- as a active primary + standby(2), -- running as a standby backup + ready(3), -- ready to run, not running yet + runningAtFullSpeed(4), + -- valid for fans only + reset(5), -- held in reset, not ready yet + down(6), -- down or off, for power supply + unknown(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The operating state of this subject. Identical to + jnxOperatingState, but with enums ordered from 'most + operational' to 'least operational' states." + ::= { jnxOperatingEntry 16 } + + jnxOperatingChassisId OBJECT-TYPE + SYNTAX JnxChassisId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the chassis on which the contents of this + row exists." + ::= { jnxOperatingEntry 17 } + + jnxOperatingChassisDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the chassis on which the + contents of this row exists." + ::= { jnxOperatingEntry 18 } + + jnxOperatingRestartTime OBJECT-TYPE + SYNTAX DateAndTime + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time at which this entity + last restarted." + ::= { jnxOperatingEntry 19 } + + jnxOperating1MinLoadAvg OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU Load Average over the last 1 minutes + Here it will be shown as percentage value + Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 20 } + + jnxOperating5MinLoadAvg OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU Load Average over the last 5 minutes + Here it will be shown as percentage value + Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 21 } + + jnxOperating15MinLoadAvg OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU Load Average over the last 15 minutes + Here it will be shown as percentage value + Zero if unavailable or inapplicable." + ::= { jnxOperatingEntry 22 } + +-- +-- Box Redundancy Information Table +-- +-- This table shows the internal configuration setting for the +-- available redundant subsystems or components in the box. +-- + + jnxRedundancyTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxRedundancyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of redundancy information entries." + ::= { jnxBoxAnatomy 14 } + + jnxRedundancyEntry OBJECT-TYPE + SYNTAX JnxRedundancyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the redundancy information table." + INDEX { jnxRedundancyContentsIndex, + jnxRedundancyL1Index, + jnxRedundancyL2Index, + jnxRedundancyL3Index } + ::= { jnxRedundancyTable 1 } + + JnxRedundancyEntry ::= SEQUENCE { + jnxRedundancyContentsIndex Integer32, + jnxRedundancyL1Index Integer32, + jnxRedundancyL2Index Integer32, + jnxRedundancyL3Index Integer32, + jnxRedundancyDescr DisplayString, + jnxRedundancyConfig INTEGER, + jnxRedundancyState INTEGER, + jnxRedundancySwitchoverCount Counter32, + jnxRedundancySwitchoverTime TimeStamp, + jnxRedundancySwitchoverReason INTEGER, + jnxRedundancyKeepaliveHeartbeat Integer32, + jnxRedundancyKeepaliveTimeout Integer32, + jnxRedundancyKeepaliveElapsed Integer32, + jnxRedundancyKeepaliveLoss Counter32, + jnxRedundancyChassisId JnxChassisId, + jnxRedundancyChassisDescr DisplayString + } + + jnxRedundancyContentsIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The associated jnxContentsContainerIndex in the + jnxContentsTable." + ::= { jnxRedundancyEntry 1 } + + jnxRedundancyL1Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level one index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxRedundancyEntry 2 } + + jnxRedundancyL2Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level two index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxRedundancyEntry 3 } + + jnxRedundancyL3Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level three index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxRedundancyEntry 4 } + + jnxRedundancyDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name or detailed description of this subject." + ::= { jnxRedundancyEntry 5 } + + jnxRedundancyConfig OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + master(2), -- election priority set as a master + backup(3), -- election priority set as a backup + disabled(4), -- election disabled + notApplicable(5) -- any among the available can be master + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The election priority of redundancy configuration for + this subject. The value 'notApplicable' means no + specific instance is configured to be master or + backup; whichever component boots up first becomes a + master." + ::= { jnxRedundancyEntry 6 } + + jnxRedundancyState OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + master(2), -- master + backup(3), -- backup + disabled(4) -- disabled + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current running state for this subject." + ::= { jnxRedundancyEntry 7 } + + jnxRedundancySwitchoverCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of switchover as perceived by + this subject since routing engine is up and running. + The switchover is defined as a change in state of + jnxRedundancyState from master to backup or vice + versa. Its value is reset when the routing engine + is reset or rebooted." + ::= { jnxRedundancyEntry 8 } + + jnxRedundancySwitchoverTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the jnxRedundancyState + of this subject was last switched over from master + to backup or vice versa. Zero if unknown or never + switched over since the routing engine is up and + running." + ::= { jnxRedundancyEntry 9 } + + jnxRedundancySwitchoverReason OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- others + neverSwitched(2), -- never switched + userSwitched(3), -- user-initiated switchover + autoSwitched(4) -- automatic switchover + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason of the last switchover for this subject." + ::= { jnxRedundancyEntry 10 } + + jnxRedundancyKeepaliveHeartbeat OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The period of sending keepalive messages between + the master and backup subsystems. It is a system-wide + preset value in seconds used by internal mastership + resolution. Zero if unavailable or inapplicable." + ::= { jnxRedundancyEntry 11 } + + jnxRedundancyKeepaliveTimeout OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timeout period in seconds, by the keepalive + watchdog timer, before initiating a switch over to + the backup subsystem. Zero if unavailable or + inapplicable." + ::= { jnxRedundancyEntry 12 } + + jnxRedundancyKeepaliveElapsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The elapsed time in seconds by this subject since + receiving the last keepalive message from the other + subsystems. Zero if unavailable or inapplicable." + ::= { jnxRedundancyEntry 13 } + + jnxRedundancyKeepaliveLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of losses on keepalive messages + between the master and backup subsystems as perceived + by this subject since the system is up and running. + Zero if unavailable or inapplicable." + ::= { jnxRedundancyEntry 14 } + + jnxRedundancyChassisId OBJECT-TYPE + SYNTAX JnxChassisId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the chassis on which the contents of this + row exists." + ::= { jnxRedundancyEntry 15 } + + jnxRedundancyChassisDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the chassis on which the + contents of this row exists." + ::= { jnxRedundancyEntry 16 } + + +-- +-- FRU (Field Replaceable Unit) Status Table +-- +-- This table shows the status of the FRUs in the chassis. +-- + + jnxFruTable OBJECT-TYPE + SYNTAX SEQUENCE OF JnxFruEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of FRU status entries." + ::= { jnxBoxAnatomy 15 } + + jnxFruEntry OBJECT-TYPE + SYNTAX JnxFruEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the FRU status table." + INDEX { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index } + ::= { jnxFruTable 1 } + + JnxFruEntry ::= SEQUENCE { + jnxFruContentsIndex Integer32, + jnxFruL1Index Integer32, + jnxFruL2Index Integer32, + jnxFruL3Index Integer32, + jnxFruName DisplayString, + jnxFruType INTEGER, + jnxFruSlot Integer32, + jnxFruState INTEGER, + jnxFruTemp Gauge32, + jnxFruOfflineReason INTEGER, + jnxFruLastPowerOff TimeStamp, + jnxFruLastPowerOn TimeStamp, + jnxFruPowerUpTime TimeInterval, + jnxFruChassisId JnxChassisId, + jnxFruChassisDescr DisplayString, + jnxFruPsdAssignment Integer32 + } + + jnxFruContentsIndex OBJECT-TYPE + SYNTAX Integer32 (1..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The associated jnxContentsContainerIndex in the + jnxContentsTable." + ::= { jnxFruEntry 1 } + + jnxFruL1Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level one index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxFruEntry 2 } + + jnxFruL2Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level two index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxFruEntry 3 } + + jnxFruL3Index OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level three index associated with this + subject. Zero if unavailable or inapplicable." + ::= { jnxFruEntry 4 } + + jnxFruName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name or detailed description of this subject." + ::= { jnxFruEntry 5 } + + jnxFruType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- unknown or others + clockGenerator(2), -- CG + flexiblePicConcentrator(3), -- FPC + switchingAndForwardingModule(4), -- SFM + controlBoard(5), -- CBD, SCB + routingEngine(6), -- RE + powerEntryModule(7), -- PEM + frontPanelModule(8), -- FPM + switchInterfaceBoard(9), -- SIB + processorMezzanineBoardForSIB(10), -- SPMB + portInterfaceCard(11), -- PIC + craftInterfacePanel(12), -- CIP + fan(13), -- fan + lineCardChassis(14), -- LCC + forwardingEngineBoard(15), -- FEB + protectedSystemDomain(16), -- PSD + powerDistributionUnit(17), -- PDU + powerSupplyModule(18) -- PSM + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FRU type for this subject." + ::= { jnxFruEntry 6 } + + jnxFruSlot OBJECT-TYPE + SYNTAX Integer32 (0..'7fffffff'h) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The slot number of this subject. This is equivalent + to jnxFruL1Index in meaning. Zero if unavailable or + inapplicable." + ::= { jnxFruEntry 7 } + + jnxFruState OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + empty(2), + present(3), + ready(4), + announceOnline(5), + online(6), + anounceOffline(7), + offline(8), + diagnostic(9), + standby(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state for this subject." + ::= { jnxFruEntry 8 } + + jnxFruTemp OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The temperature in Celsius (degrees C) of this + subject. Zero if unavailable or inapplicable." + ::= { jnxFruEntry 9 } + + jnxFruOfflineReason OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), -- unknown or other + none(2), -- none + error(3), -- error + noPower(4), -- no power + configPowerOff(5), -- configured to power off + configHoldInReset(6), -- configured to hold in reset + cliCommand(7), -- offlined by cli command + buttonPress(8), -- offlined by button press + cliRestart(9), -- restarted by cli command + overtempShutdown(10), -- overtemperature shutdown + masterClockDown(11), -- master clock down + singleSfmModeChange(12), -- single SFM mode change + packetSchedulingModeChange(13), -- packet scheduling mode change + physicalRemoval(14), -- physical removal + unresponsiveRestart(15), -- restarting unresponsive board + sonetClockAbsent(16), -- sonet out clock absent + rddPowerOff(17), -- RDD power off + majorErrors(18), -- major errors + minorErrors(19), -- minor errors + lccHardRestart(20), -- LCC hard restart + lccVersionMismatch(21), -- LCC version mismatch + powerCycle(22), -- power cycle + reconnect(23), -- reconnect + overvoltage(24), -- overvoltage + pfeVersionMismatch(25), -- PFE version mismatch + febRddCfgChange(26), -- FEB redundancy cfg changed + fpcMisconfig(27), -- FPC is misconfigured + fruReconnectFail(28), -- FRU did not reconnect + fruFwddReset(29), -- FWDD reset the fru + fruFebSwitch(30), -- FEB got switched + fruFebOffline(31), -- FEB was offlined + fruInServSoftUpgradeError(32), -- In Service Software Upgrade Error + fruChasdPowerRatingExceed(33), -- Chassis power rating exceeded + fruConfigOffline(34), -- Configured offline + fruServiceRestartRequest(35), -- restarting request from a service + spuResetRequest(36), -- SPU reset request + spuFlowdDown(37), -- SPU flowd down + spuSpi4Down(38), -- SPU SPI4 down + spuWatchdogTimeout(39), -- SPU Watchdog timeout + spuCoreDump(40), -- SPU kernel core dump + fpgaSpi4LinkDown(41), -- FPGA SPI4 link down + i3Spi4LinkDown(42), -- I3 SPI4 link down + cppDisconnect(43), -- CPP disconnect + cpuNotBoot(44), -- CPU not boot + spuCoreDumpComplete(45), -- SPU kernel core dump complete + rstOnSpcSpuFailure(46), -- Rst on SPC SPU failure + softRstOnSpcSpuFailure(47), -- Soft Reset on SPC SPU failure + hwAuthenticationFailure(48), -- HW authentication failure + reconnectFpcFail(49), -- Reconnect FPC fail + fpcAppFailed(50), -- FPC app failed + fpcKernelCrash(51), -- FPC kernel crash + spuFlowdDownNoCore(52), -- SPU flowd down, no core dump + spuFlowdCoreDumpIncomplete(53), -- SPU flowd crash with incomplete core dump + spuFlowdCoreDumpComplete(54), -- SPU flowd crash with complete core dump + spuIdpdDownNoCore(55), -- SPU idpd down, no core dump + spuIdpdCoreDumpIncomplete(56), -- SPU idpd crash with incomplete core dump + spuIdpdCoreDumpComplete(57), -- SPU idpd crash with complete core dump + spuCoreDumpIncomplete(58), -- SPU kernel crash with incomplete core dump + spuIdpdDown(59), -- SPU idpd down + fruPfeReset(60), -- PFE reset + fruReconnectNotReady(61), -- FPC not ready to reconnect + fruSfLinkDown(62), -- FE - Fabric links down + fruFabricDown(63), -- Fabric transitioned from up to down + fruAntiCounterfeitRetry(64), -- FPC offlined due to Anti Counterfeit Retry + fruFPCChassisClusterDisable(65), -- FPC offlined due to Chassis Cluster Disable + spuFipsError(66), -- SPU fips error + fruFPCFabricDownOffline(67), -- FPC offlined due to Fabric down + febCfgChange(68), -- FEB config change + routeLocalizationRoleChange(69), -- Route localization role change + fruFpcUnsupported(70), -- FPC unsupported + psdVersionMismatch(71), -- PSD version mismatch + fruResetThresholdExceeded(72), -- FRU Reset Threshold Exceeded + picBounce(73), -- PIC Bounce + badVoltage(74), -- bad voltage + fruFPCReducedFabricBW(75), -- FPC offlined due to Reduced Fabric Bandwidth + fruAutoheal(76) -- FRU offlined due to software autoheal action + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The offline reason of this subject." + ::= { jnxFruEntry 10 } + + jnxFruLastPowerOff OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when this subject was last + powered off. Zero if unavailable or inapplicable." + ::= { jnxFruEntry 11 } + + jnxFruLastPowerOn OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when this subject was last + powered on. Zero if unavailable or inapplicable." + ::= { jnxFruEntry 12 } + + jnxFruPowerUpTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time interval in 10-millisecond period + that this subject has been up and running + since the last power on time. Zero if + unavailable or inapplicable." + ::= { jnxFruEntry 13 } + + jnxFruChassisId OBJECT-TYPE + SYNTAX JnxChassisId + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the chassis on which the contents of this + row exists." + ::= { jnxFruEntry 14 } + + jnxFruChassisDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the chassis on which the + contents of this row exists." + ::= { jnxFruEntry 15 } + + jnxFruPsdAssignment OBJECT-TYPE + SYNTAX Integer32 (0..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The PSD assignment of this subject. Zero if unavailable or + not applicable." + ::= { jnxFruEntry 16 } + +-- +-- definition of Kernel Memory Used related stuff +-- + + jnxBoxKernelMemoryUsedPercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of kernel memory used + of this subject. 0 if unavailable or + inapplicable." + ::= { jnxBoxAnatomy 16 } + +-- +-- definition of system domain information +-- + + jnxBoxSystemDomainType OBJECT-TYPE + SYNTAX INTEGER { + notApplicable(1), + rootSystemDomain(2), + protectedSystemDomain(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The system domain type of this subject, notApplicable will + be returned if this feature is not supported." + ::= { jnxBoxAnatomy 17 } + + +-- +-- definition of chassis related traps +-- + -- Traps for chassis alarm conditions + + jnxPowerSupplyFailure NOTIFICATION-TYPE + OBJECTS { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index, + jnxContentsDescr, + jnxOperatingState } + STATUS current + DESCRIPTION + "A jnxPowerSupplyFailure trap signifies that + the SNMP entity, acting in an agent role, has + detected that the specified power supply in the + chassis has been in the failure (bad DC output) + condition." + ::= { jnxChassisTraps 1 } + + jnxFanFailure NOTIFICATION-TYPE + OBJECTS { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index, + jnxContentsDescr, + jnxOperatingState } + STATUS current + DESCRIPTION + "A jnxFanFailure trap signifies that the SNMP + entity, acting in an agent role, has detected + that the specified cooling fan or impeller in + the chassis has been in the failure (not spinning) + condition." + ::= { jnxChassisTraps 2 } + + jnxOverTemperature NOTIFICATION-TYPE + OBJECTS { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index, + jnxContentsDescr, + jnxOperatingTemp } + STATUS current + DESCRIPTION + "A jnxOverTemperature trap signifies that the + SNMP entity, acting in an agent role, has + detected that the specified hardware component + in the chassis has experienced over temperature + condition." + ::= { jnxChassisTraps 3 } + + jnxRedundancySwitchover NOTIFICATION-TYPE + OBJECTS { jnxRedundancyContentsIndex, + jnxRedundancyL1Index, + jnxRedundancyL2Index, + jnxRedundancyL3Index, + jnxRedundancyDescr, + jnxRedundancyConfig, + jnxRedundancyState, + jnxRedundancySwitchoverCount, + jnxRedundancySwitchoverTime, + jnxRedundancySwitchoverReason } + STATUS current + DESCRIPTION + "A jnxRedundancySwitchover trap signifies that + the SNMP entity, acting in an agent role, has + detected that the specified hardware component + in the chassis has experienced a redundancy + switchover event defined as a change in state + of jnxRedundancyState from master to backup or + vice versa." + ::= { jnxChassisTraps 4 } + + jnxFruRemoval NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxFruRemoval trap signifies that the SNMP + entity, acting in an agent role, has detected + that the specified FRU (Field Replaceable Unit) + has been removed from the chassis." + ::= { jnxChassisTraps 5 } + + jnxFruInsertion NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxFruInsertion trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified FRU (Field Replaceable Unit) has been + inserted into the chassis." + ::= { jnxChassisTraps 6 } + + jnxFruPowerOff NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot, + jnxFruOfflineReason, + jnxFruLastPowerOff, + jnxFruLastPowerOn } + STATUS current + DESCRIPTION + "A jnxFruPowerOff trap signifies that the SNMP + entity, acting in an agent role, has detected + that the specified FRU (Field Replaceable Unit) + has been powered off in the chassis." + ::= { jnxChassisTraps 7 } + + jnxFruPowerOn NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot, + jnxFruOfflineReason, + jnxFruLastPowerOff, + jnxFruLastPowerOn } + STATUS current + DESCRIPTION + "A jnxFruPowerOn trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified FRU (Field Replaceable Unit) has been + powered on in the chassis." + ::= { jnxChassisTraps 8 } + + jnxFruFailed NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "This indicates the specified FRU (Field Replaceable Unit) + has failed in the chassis. Most probably this is due toi + some hard error such as fru is not powering up or not + able to load ukernel. In these cases, fru is replaced." + ::= { jnxChassisTraps 9 } + + jnxFruOffline NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot, + jnxFruOfflineReason, + jnxFruLastPowerOff, + jnxFruLastPowerOn } + STATUS current + DESCRIPTION + "A jnxFruOffline trap signifies that the SNMP + entity, acting in an agent role, has detected + that the specified FRU (Field Replaceable Unit) + has gone offline in the chassis." + ::= { jnxChassisTraps 10 } + + jnxFruOnline NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxFruOnline trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified FRU (Field Replaceable Unit) has + gone online in the chassis." + ::= { jnxChassisTraps 11 } + + jnxFruCheck NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxFruCheck trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified FRU (Field Replaceable Unit) has + encountered some operational errors and gone into + check state in the chassis." + ::= { jnxChassisTraps 12 } + + jnxFEBSwitchover NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxFEBSwitchover trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified FEB (Forwarding Engine Board) has + switched over." + ::= { jnxChassisTraps 13 } + + + jnxHardDiskFailed NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxHardDiskFailed trap signifies that the SNMP + entity, acting in an agent role, has detected that + the Disk in the specified Routing Engine has + encountered some operational errors and gone into + failed state in the chassis." + ::= { jnxChassisTraps 14 } + + jnxHardDiskMissing NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A DiskMissing trap signifies that the SNMP + entity, acting in an agent role, has detected that + hard disk in the specified outing Engine is missing + from boot device list." + ::= { jnxChassisTraps 15 } + + jnxBootFromBackup NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxBootFromBackup trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified routing-engine/member has booted from + the back up root partition" + ::= { jnxChassisTraps 16 } + + jnxFmLinkErr NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A LinkErr trap signifies that the SNMP + entity, acting in an agent role, has detected + link errors." + ::= { jnxChassisTraps 17 } + + jnxFmCellDropErr NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A CellDropErr trap signifies that the SNMP + entity, acting in an agent role, has detected + cell drop errors." + ::= { jnxChassisTraps 18 } + + jnxExtSrcLockLost NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A ExtSrcLockLost trap signifies that the SNMP + entity, acting in an agent role, has detected that + a lock for an external clock source has been lost." + ::= { jnxChassisTraps 19 } + + + -- Traps for chassis alarm cleared conditions + + jnxPowerSupplyOK NOTIFICATION-TYPE + OBJECTS { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index, + jnxContentsDescr, + jnxOperatingState } + STATUS current + DESCRIPTION + "A jnxPowerSupplyOK trap signifies that the + SNMP entity, acting in an agent role, has + detected that the specified power supply in the + chassis has recovered from the failure (bad DC output) + condition." + ::= { jnxChassisOKTraps 1 } + + jnxFanOK NOTIFICATION-TYPE + OBJECTS { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index, + jnxContentsDescr, + jnxOperatingState } + STATUS current + DESCRIPTION + "A jnxFanOK trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified cooling fan or impeller in the chassis + has recovered from the failure (not spinning) condition." + ::= { jnxChassisOKTraps 2 } + + jnxTemperatureOK NOTIFICATION-TYPE + OBJECTS { jnxContentsContainerIndex, + jnxContentsL1Index, + jnxContentsL2Index, + jnxContentsL3Index, + jnxContentsDescr, + jnxOperatingTemp } + STATUS current + DESCRIPTION + "A jnxTemperatureOK trap signifies that the + SNMP entity, acting in an agent role, has + detected that the specified hardware component + in the chassis has recovered from over temperature + condition." + ::= { jnxChassisOKTraps 3 } + + jnxFruOK NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A jnxFruOK trap signifies that the SNMP + entity, acting in an agent role, has detected that + the specified FRU (Field Replaceable Unit) has + recovered from previous operational errors and it + is in ok state in the chassis." + ::= { jnxChassisOKTraps 4 } + + jnxExtSrcLockAcquired NOTIFICATION-TYPE + OBJECTS { jnxFruContentsIndex, + jnxFruL1Index, + jnxFruL2Index, + jnxFruL3Index, + jnxFruName, + jnxFruType, + jnxFruSlot } + STATUS current + DESCRIPTION + "A ExtSrcLockAcquired trap signifies that the SNMP + entity, acting in an agent role, has detected that + a lock for an external clock source has been acquired." + ::= { jnxChassisOKTraps 5 } + + +END diff --git a/pandora_console/attachment/mibs/JUNIPER-SMI b/pandora_console/attachment/mibs/JUNIPER-SMI new file mode 100644 index 0000000000..47c1dda303 --- /dev/null +++ b/pandora_console/attachment/mibs/JUNIPER-SMI @@ -0,0 +1,266 @@ +-- +-- Juniper Enterprise Specific MIB: Structure of Management Information +-- +-- Copyright (c) 2002-2010, Juniper Networks, Inc. +-- All rights reserved. +-- +-- The contents of this document are subject to change without notice. +-- + + +JUNIPER-SMI DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-IDENTITY, enterprises + FROM SNMPv2-SMI; + +juniperMIB MODULE-IDENTITY + LAST-UPDATED "201007090000Z" + ORGANIZATION "Juniper Networks, Inc." + CONTACT-INFO + " Juniper Technical Assistance Center + Juniper Networks, Inc. + 1194 N. Mathilda Avenue + Sunnyvale, CA 94089 + E-mail: support@juniper.net" + DESCRIPTION + "The Structure of Management Information for Juniper Networks." + REVISION "201007090000Z" -- Jul 09, 2010 + DESCRIPTION + "Added jnxLicenseMibRoot branch." + REVISION "200910290000Z" -- Oct 29, 2009 + DESCRIPTION + "Added jnxCosNotifications branch." + REVISION "201006180000Z" -- Jun 18, 2010 + DESCRIPTION + "Added jnxLicenseMibRoot branch." + REVISION "200304170100Z" -- 17-Apr-03 + DESCRIPTION + "Added jnxExperiment branch." + REVISION "200508170100Z" -- 17-Aug-05 + DESCRIPTION + "Added jnxNsm branch." + REVISION "200612140100Z" -- 14-Dec-06 + DESCRIPTION + "Added jnxCA branch." + REVISION "200701010000Z" -- 1-Jan-07 + DESCRIPTION + "Added jnxUtilMibRoot branch." + REVISION "200710090000Z" -- 9-Oct-07 + DESCRIPTION + "Added jnxAdvancedInsightMgr branch." + REVISION "200912310000Z" -- 31-Dec-09 + DESCRIPTION + "Added jnxBxMibRoot branch." + REVISION "201007140000Z" -- 14-Jul-10 + DESCRIPTION + "Added jnxSubscriberMibRoot branch." + REVISION "201101260000Z" -- 26-Jan-11 + DESCRIPTION + "Added jnxDcfMibRoot branch." + REVISION "201202100000Z" -- 10-Feb-12 + DESCRIPTION + "Added jnxMediaFlow branch." + ::= { enterprises 2636 } + +-- +-- Juniper MIB tree structure +-- + +jnxProducts OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Juniper's Product OIDs." + ::= { juniperMIB 1 } + + -- + -- Note, jnxProducts.1 is reserved for Junos-based products + -- + -- The following OIDs are used as the basis for identifying other + -- Juniper products. + -- + -- jnxMediaFlow refers to the root MIB object for Juniper's + -- Media Flow Controller, a non-JUNOS based product. + jnxMediaFlow OBJECT IDENTIFIER ::= { jnxProducts 2 } + + -- + -- Top-level object identifier registry used by the JunosSpace Products. + + --#if REL13.1 + jnxJunosSpace OBJECT IDENTIFIER ::= { jnxProducts 3 } + + jnxReservedProducts3 OBJECT IDENTIFIER ::= { jnxProducts 4 } + jnxReservedProducts4 OBJECT IDENTIFIER ::= { jnxProducts 5 } + jnxReservedProducts5 OBJECT IDENTIFIER ::= { jnxProducts 6 } + + + +jnxServices OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Juniper's Services OIDs." + ::= { juniperMIB 2 } + +jnxMibs OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Juniper's MIB objects." + ::= { juniperMIB 3 } + + -- + -- Note, jnxMibs.1-38 is already in use. + -- + jnxJsMibRoot OBJECT IDENTIFIER ::= { jnxMibs 39 } + jnxExMibRoot OBJECT IDENTIFIER ::= { jnxMibs 40 } + jnxWxMibRoot OBJECT IDENTIFIER ::= { jnxMibs 41 } + jnxDcfMibRoot OBJECT IDENTIFIER ::= { jnxMibs 42 } + jnxReservedMibs5 OBJECT IDENTIFIER ::= { jnxMibs 43 } + + -- PFE data + jnxPfeMibRoot OBJECT IDENTIFIER ::= { jnxMibs 44 } + + -- juniper Bfd Mib + jnxBfdMibRoot OBJECT IDENTIFIER ::= { jnxMibs 45 } + + -- XSTP mibs + jnxXstpMibs OBJECT IDENTIFIER ::= { jnxMibs 46 } + + -- juniper Utility Mib + jnxUtilMibRoot OBJECT IDENTIFIER ::= { jnxMibs 47 } + + -- juniper l2ald Mib + jnxl2aldMibRoot OBJECT IDENTIFIER ::= { jnxMibs 48 } + + -- juniper L2tp Mib + jnxL2tpMibRoot OBJECT IDENTIFIER ::= { jnxMibs 49 } + + -- juniper RPM Mib + jnxRpmMibRoot OBJECT IDENTIFIER ::= { jnxMibs 50 } + + -- juniper User AAA Mib + jnxUserAAAMibRoot OBJECT IDENTIFIER ::= { jnxMibs 51 } + + -- juniper Generic IPSEC MIB + jnxIpSecMibRoot OBJECT IDENTIFIER ::= { jnxMibs 52 } + + -- juniper L2 control protocols MIB + jnxL2cpMibRoot OBJECT IDENTIFIER ::= { jnxMibs 53 } + + -- juniper pwTDM MIB + jnxPwTdmMibRoot OBJECT IDENTIFIER ::= { jnxMibs 54 } + + -- juniper pwTC MIB + jnxPwTCMibRoot OBJECT IDENTIFIER ::= { jnxMibs 55 } + + -- juniper OTN MIB + jnxOtnMibRoot OBJECT IDENTIFIER ::= { jnxMibs 56 } + + -- juniper power supply management MIB + jnxPsuMIBRoot OBJECT IDENTIFIER ::= { jnxMibs 58 } + + -- juniper NAT MIB + jnxSvcsMibRoot OBJECT IDENTIFIER ::= { jnxMibs 59 } + + -- juniper DOM MIB + jnxDomMibRoot OBJECT IDENTIFIER ::= { jnxMibs 60 } + + -- juniper JDHCPD MIB Release 10.4 + jnxJdhcpMibRoot OBJECT IDENTIFIER ::= { jnxMibs 61 } + + -- juniper JDHCPDv6 MIB Release 10.4 + jnxJdhcpv6MibRoot OBJECT IDENTIFIER ::= { jnxMibs 62 } + + -- juniper License management MIB + jnxLicenseMibRoot OBJECT IDENTIFIER ::= { jnxMibs 63 } + + -- juniper Subscriber MIB + jnxSubscriberMibRoot OBJECT IDENTIFIER ::= { jnxMibs 64 } + + --#if REL11.1 + -- juniper MAG MIB + jnxMagMibRoot OBJECT IDENTIFIER ::= { jnxMibs 65 } + + --#if REL12.3 + -- Root of juniper MobileGateway MIBs + jnxMobileGatewayMibRoot OBJECT IDENTIFIER ::= { jnxMibs 66 } + + --#if REL11.4 + -- juniper PPPOE MIB + jnxPppoeMibRoot OBJECT IDENTIFIER ::= { jnxMibs 67 } + + --#if REL11.4 + -- juniper PPP MIB + jnxPppMibRoot OBJECT IDENTIFIER ::= { jnxMibs 68 } + + + +jnxTraps OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The root of Juniper's Trap OIDs." + ::= { juniperMIB 4 } + + jnxChassisTraps OBJECT IDENTIFIER ::= { jnxTraps 1 } + jnxChassisOKTraps OBJECT IDENTIFIER ::= { jnxTraps 2 } + jnxRmonTraps OBJECT IDENTIFIER ::= { jnxTraps 3 } + jnxLdpTraps OBJECT IDENTIFIER ::= { jnxTraps 4 } + jnxCmNotifications OBJECT IDENTIFIER ::= { jnxTraps 5 } + jnxSonetNotifications OBJECT IDENTIFIER ::= { jnxTraps 6 } + jnxPMonNotifications OBJECT IDENTIFIER ::= { jnxTraps 7 } + jnxCollectorNotifications OBJECT IDENTIFIER ::= { jnxTraps 8 } + jnxPingNotifications OBJECT IDENTIFIER ::= { jnxTraps 9 } + jnxSpNotifications OBJECT IDENTIFIER ::= { jnxTraps 10 } + jnxDfcNotifications OBJECT IDENTIFIER ::= { jnxTraps 11 } + jnxSyslogNotifications OBJECT IDENTIFIER ::= { jnxTraps 12 } + jnxEventNotifications OBJECT IDENTIFIER ::= { jnxTraps 13 } + jnxVccpNotifications OBJECT IDENTIFIER ::= { jnxTraps 14 } + jnxOtnNotifications OBJECT IDENTIFIER ::= { jnxTraps 15 } + -- jnxSAIDPNotifications is for Stand alone IDP devices + jnxSAIDPNotifications OBJECT IDENTIFIER ::= { jnxTraps 16 } + jnxCosNotifications OBJECT IDENTIFIER ::= { jnxTraps 17 } + jnxDomNotifications OBJECT IDENTIFIER ::= { jnxTraps 18 } + + +-- This is the top-level object identifier registry used by Juniper +-- products for SNMP modules containing experimental MIB definitions. +-- In this context, experimental MIBs are defined as: +-- 1) IETF work-in-process MIBs which have not been assigned a permanent +-- object identifier by the IANA. +-- 2) Juniper work-in-process MIBs that have not achieved final +-- production quality or field experience. +-- NOTE: Support for MIBs under the this OID subtree is temporary and +-- changes to objects may occur without notice." + +jnxExperiment OBJECT IDENTIFIER ::= { juniperMIB 5 } + +-- +-- This is the top-level object identifier registry used by Juniper +-- NSM products. +-- +jnxNsm OBJECT IDENTIFIER ::= { juniperMIB 6 } + +-- +-- This is the top-level object identifier registry used by the +-- JuniperRoot Certificate Authority. +-- +jnxCA OBJECT IDENTIFIER ::= { juniperMIB 7 } + +-- +-- This is the top-level object identifier registry used by the +-- Carrier AAA software product (Parksteet). +-- +jnxAAA OBJECT IDENTIFIER ::= { juniperMIB 8 } + +-- +-- This is the top-level object identifier registry used by the +-- Advanced Insight Manager. +-- +jnxAdvancedInsightMgr OBJECT IDENTIFIER ::= { juniperMIB 9 } + +-- +-- This is the top-level object identifier registry used by the +-- BX series Products. +-- +jnxBxMibRoot OBJECT IDENTIFIER ::= { juniperMIB 10 } + +END diff --git a/pandora_console/attachment/mibs/MIB-Dell-10892 b/pandora_console/attachment/mibs/MIB-Dell-10892 new file mode 100644 index 0000000000..663dca2e53 --- /dev/null +++ b/pandora_console/attachment/mibs/MIB-Dell-10892 @@ -0,0 +1,14508 @@ +------------------------------------------------------------------------------- +-- +-- Title: Systems Management Instrumentation MIB +-- +-- Version: 5.9.0 +-- +-- Release Date: February 2009 +-- +-- Description: This MIB defines MIB objects that make system instrumentation +-- data available to SNMP management applications. +-- +-- Copyright (c) 2000-2009 Dell Inc. +-- All Rights Reserved. +-- +-- Note: The information and functionality described by this MIB file, +-- like many MIB files, is subject to change without notice. +-- Please examine the version number of this MIB and compare it +-- to the version number you are expecting. +-- +-- OID Format Legend: +-- = attribute ID +-- = index ID +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Begin MIB +------------------------------------------------------------------------------- + +MIB-Dell-10892 DEFINITIONS ::= BEGIN + +IMPORTS + enterprises, IpAddress + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB; + + +------------------------------------------------------------------------------- +-- Object Identifiers +------------------------------------------------------------------------------- + +-- Enterprise ID +dell OBJECT IDENTIFIER ::= { enterprises 674 } + +-- Server3 Branch +server3 OBJECT IDENTIFIER ::= { dell 10892 } + +-- Server3 Groups +baseboardGroup OBJECT IDENTIFIER ::= { server3 1 } +-- drsOutOfBandGroup OBJECT IDENTIFIER ::= { server3 2 } +-- (drsOutOfBandGroup is defined in another MIB file.) + +-- Server3 Baseboard Groups for Instrumentation +mIBVersionGroup OBJECT IDENTIFIER ::= { baseboardGroup 1 } +systemManagementSoftwareGroup OBJECT IDENTIFIER ::= { baseboardGroup 100 } +systemStateGroup OBJECT IDENTIFIER ::= { baseboardGroup 200 } +chassisInformationGroup OBJECT IDENTIFIER ::= { baseboardGroup 300 } +operatingSystemGroup OBJECT IDENTIFIER ::= { baseboardGroup 400 } +systemResourceGroup OBJECT IDENTIFIER ::= { baseboardGroup 500 } +powerGroup OBJECT IDENTIFIER ::= { baseboardGroup 600 } +thermalGroup OBJECT IDENTIFIER ::= { baseboardGroup 700 } +userSecurityGroup OBJECT IDENTIFIER ::= { baseboardGroup 800 } +remoteFlashBIOSGroup OBJECT IDENTIFIER ::= { baseboardGroup 900 } +portGroup OBJECT IDENTIFIER ::= { baseboardGroup 1000 } +deviceGroup OBJECT IDENTIFIER ::= { baseboardGroup 1100 } +slotGroup OBJECT IDENTIFIER ::= { baseboardGroup 1200 } +memoryGroup OBJECT IDENTIFIER ::= { baseboardGroup 1300 } +biosSetUpControlGroup OBJECT IDENTIFIER ::= { baseboardGroup 1400 } +lraGroup OBJECT IDENTIFIER ::= { baseboardGroup 1500 } +cooGroup OBJECT IDENTIFIER ::= { baseboardGroup 1600 } +-- remoteAccessGroup OBJECT IDENTIFIER ::= { baseboardGroup 1700 } +-- (remoteAccessGroup is defined in dcs3rmt.mib) +clusterGroup OBJECT IDENTIFIER ::= { baseboardGroup 1800 } +bmcGroup OBJECT IDENTIFIER ::= { baseboardGroup 1900 } +-- fruGroup OBJECT IDENTIFIER ::= { baseboardGroup 2000 } +-- (fruGroup is defined in dcs3fru.mib) +alertGroup OBJECT IDENTIFIER ::= { baseboardGroup 5000 } + + +------------------------------------------------------------------------------- +-- Textual Conventions +------------------------------------------------------------------------------- + +DellString ::= DisplayString (SIZE (0..64)) +DellSecurityString ::= DisplayString (SIZE (0..255)) +DellCostofOwnershipString ::= DisplayString (SIZE (0..64)) +DellMACAddress ::= OCTET STRING (SIZE(6)) +DellObjectRange ::= INTEGER (1..128) +DellUnsigned8BitRange ::= INTEGER (0..255) +DellUnsigned16BitRange ::= INTEGER (0..65535) +DellUnsigned32BitRange ::= INTEGER (0..4294967295) +DellSigned32BitRange ::= INTEGER (-2147483647..2147483647) +DellBoolean ::= INTEGER (0..1) -- 0 = FALSE, 1 = TRUE + +-- This definition is required because SNMP V1 does not support 64 bit ranges. +-- The information sent back by this subagent will have the most significant +-- byte of the information as the first byte (i.e. network byte order). +-- E.G. The integer value 0x1029384754657687 will be sent as: +-- Byte: 1 2 3 4 ... +-- Hex: 10 29 38 47 ... +-- Binary: 0001 0000 0010 1001 0011 1000 0100 0111 ... +DellUnsigned64BitRange ::= OCTET STRING (SIZE(8)) + +-- DellDateName dates are defined in the displayable format +-- yyyymmddHHMMSS.uuuuuu+ooo +-- where yyyy is the year, mm is the month number, dd is the day of the month, +-- HHMMSS are the hours, minutes and seconds, respectively, uuuuuu is the +-- number of microseconds, and +ooo is the offset from UTC in minutes. If east +-- of UTC, the number is preceded by a plus (+) sign, and if west of UTC, the +-- number is preceded by a minus (-) sign. +-- +-- For example, Wednesday, May 25, 1994, at 1:30:15 PM EDT +-- would be represented as: 19940525133015.000000-300 +-- +-- Values must be zero-padded if necessary, like "05" in the example above. +-- If a value is not supplied for a field, each character in the field +-- must be replaced with asterisk ('*') characters. +DellDateName ::= DisplayString (SIZE (25)) + +-- Note About Bit Fields: +-- Attributes with definitions of xxxCapabilities, xxxCapabilitiesUnique, +-- xxxSettings, xxxSettingsUnique and xxxFeatureFlags are integers +-- representing a series of bit definitions. They are NOT enumerations and +-- should be treated as bit fields. The value is passed as a decimal value; +-- it should be converted to hex, and the appropriate bits should be parsed +-- from that. Some of the more common bit combinations are defined in some +-- variables, but not all combinations are or will be defined. + +-- +-- Generic State Capabilities +-- +DellStateCapabilities ::= INTEGER { + -- If set to 0 (zero), object has no state capabilities + unknownCapabilities(1), -- object's state capabilities are unknown + -- The object's state capabilities allow it to be set to: + enableCapable(2), -- be disabled (offline) or be enabled (online) + notReadyCapable(4), -- not ready + enableAndNotReadyCapable(6) +} + +-- +-- Generic State Settings +-- +DellStateSettings ::= INTEGER { + -- If set to 0 (zero), object has no state settings enabled and is disabled + unknown(1), -- object's state is unknown + enabled(2), -- object's state is disabled (offline) if bit is off + -- or enabled (online) if bit is on + notReady(4), -- object's state is not ready + enabledAndNotReady(6) +} + +-- +-- Probe Capabilities +-- +DellProbeCapabilities ::= INTEGER { + -- If set to 0 (zero) the object has no probe capabilities + -- The object's probe capabilities allow it to be set to: + upperNonCriticalThresholdSetCapable(1), -- upper noncritical threshold can be set + lowerNonCriticalThresholdSetCapable(2), -- lower noncritical threshold can be set + upperNonCriticalThresholdDefaultCapable(4), -- upper noncritical threshold can be set to default + lowerNonCriticalThresholdDefaultCapable(8) -- lower noncritical threshold can be set to default +} + +-- +-- Status +-- +DellStatus ::= INTEGER { + other(1), -- status is not one of the following: + unknown(2), -- status of object is unknown (not known or monitored) + ok(3), -- status of object is OK (normal) + nonCritical(4), -- status of object is noncritical (warning) + critical(5), -- status of object is critical (failure) + nonRecoverable(6) -- status of object is non-recoverable (dead) +} + +-- +-- Redundancy Status +-- +DellStatusRedundancy ::= INTEGER { + other(1), -- redundancy status is not one of the following: + unknown(2), -- redundancy status is unknown (not known or monitored) + full(3), -- object is fully redundant + degraded(4), -- object's redundancy has been degraded + lost(5), -- object's redundancy has been lost + notRedundant(6), -- redundancy status does not apply or object is not redundant + redundancyOffline(7) -- redundancy object taken offline +} + +-- +-- Probe Status +-- +DellStatusProbe ::= INTEGER { + other(1), -- probe status is not one of the following: + unknown(2), -- probe status is unknown (not known or monitored) + ok(3), -- probe is reporting a value within the thresholds + nonCriticalUpper(4), -- probe has crossed upper noncritical threshold + criticalUpper(5), -- probe has crossed upper critical threshold + nonRecoverableUpper(6), -- probe has crossed upper non-recoverable threshold + nonCriticalLower(7), -- probe has crossed lower noncritical threshold + criticalLower(8), -- probe has crossed lower critical threshold + nonRecoverableLower(9), -- probe has crossed lower non-recoverable threshold + failed(10) -- probe is not functional +} + + +------------------------------------------------------------------------------- +-- +-- MIB Groups +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- MIB Version Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1..0 +------------------------------------------------------------------------------- + +mIBMajorVersionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0001.0001 This attribute defines the major version number for the version +of this MIB supported by the systems management software." + ::= { mIBVersionGroup 1 } +mIBMinorVersionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0001.0002 This attribute defines the minor version number for the version +of this MIB supported by the systems management software." + ::= { mIBVersionGroup 2 } +mIBMaintenanceVersionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0001.0003 This attribute defines the maintenance version number for the +version of this MIB supported by the systems management software." + ::= { mIBVersionGroup 3 } + + +------------------------------------------------------------------------------- +-- System Management Software Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.100..0 +------------------------------------------------------------------------------- + +SMSSupportedTypes ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + supportsSNMP(1), -- supports SNMP + supportsDMI(2), -- supports DMI + supportsSNMPandDMI(3), -- supports SNMP and DMI + supportsCIMOM(4), -- supports CIM + supportsSNMPandCIMOM(5), -- supports SNMP and CIM + supportsSNMPandDMIandCIMOM(7) -- supports SNMP, DMI and CIM +} +SMSFeatureFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- If 0 (zero), none of the following features are enabled: + webOneToOneManagementPreferred(1) -- web 1:1 management preferred +} +SMSSNMPAgentFeatureFlags ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- If 0 (zero), none of the following features are enabled: + supportsSparseTables(1) -- SNMP agent supports sparse tables +} + +systemManagementSoftwareName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0001 This attribute defines the product name of the +systems management software." + ::= { systemManagementSoftwareGroup 1 } +systemManagementSoftwareVersionNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0002 This attribute defines the version number of the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 2 } +systemManagementSoftwareBuildNumber OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0003 This attribute defines the build number of the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 3 } +systemManagementSoftwareDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0004 This attribute defines the description of the +systems management software." + ::= { systemManagementSoftwareGroup 4 } +systemManagementSoftwareSupportedProtocol OBJECT-TYPE + SYNTAX SMSSupportedTypes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0005 This attribute defines the protocols supported by the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 5 } +systemManagementSoftwarePreferredProtocol OBJECT-TYPE + SYNTAX SMSSupportedTypes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0006 This attribute defines the protocol preferred by the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 6 } +systemManagementSoftwareUpdateLevelName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0007 This attribute defines the update level of the +instrumentation component of the systems management software." + ::= { systemManagementSoftwareGroup 7 } +systemManagementSoftwareURLName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0008 This attribute defines the Universal Resource Locator (URL) +of the systems management software." + ::= { systemManagementSoftwareGroup 8 } +systemManagementSoftwareLanguageName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0009 This attribute defines the language of the +systems management software." + ::= { systemManagementSoftwareGroup 9 } +systemManagementSoftwareGlobalVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0010 This attribute defines the global version of the +systems management software." + ::= { systemManagementSoftwareGroup 10 } +systemManagementSoftwareFeatureFlags OBJECT-TYPE + SYNTAX SMSFeatureFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0011 This attribute defines the features of the systems management +software. If the value is zero, none of the features are enabled. +Note: This attribute is a bit field, so the value returned may be +a combination of the bit masks defined in SMSFeatureFlags." + ::= { systemManagementSoftwareGroup 11 } +systemManagementSoftwareSNMPAgentFeatureFlags OBJECT-TYPE + SYNTAX SMSSNMPAgentFeatureFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0012 This attribute defines the features of the SNMP agent +software provided by the operating system. If the value is zero, +none of the features are enabled. Note: This attribute is a bit field, +so the value returned may be a combination of the bit masks defined +in SMSSNMPAgentFeatureFlags." + ::= { systemManagementSoftwareGroup 12 } +systemManagementSoftwareManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0100.0013 This attribute defines the manufacturer of the +systems management software." + ::= { systemManagementSoftwareGroup 13 } + + +------------------------------------------------------------------------------- +-- System State Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System State Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.200.10.1.. +------------------------------------------------------------------------------- + +SystemStateTableEntry ::= SEQUENCE { + systemStatechassisIndex DellObjectRange, + systemStateGlobalSystemStatus DellStatus, + systemStateChassisState DellStateSettings, + systemStateChassisStatus DellStatus, + systemStatePowerUnitStateDetails OCTET STRING (SIZE(1..128)), + systemStatePowerUnitStatusRedundancy DellStatusRedundancy, + systemStatePowerUnitStatusDetails OCTET STRING (SIZE(1..128)), + systemStatePowerSupplyStateDetails OCTET STRING (SIZE(1..128)), + systemStatePowerSupplyStatusCombined DellStatus, + systemStatePowerSupplyStatusDetails OCTET STRING (SIZE(1..128)), + systemStateVoltageStateDetails OCTET STRING (SIZE(1..128)), + systemStateVoltageStatusCombined DellStatus, + systemStateVoltageStatusDetails OCTET STRING (SIZE(1..128)), + systemStateAmperageStateDetails OCTET STRING (SIZE(1..128)), + systemStateAmperageStatusCombined DellStatus, + systemStateAmperageStatusDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingUnitStateDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingUnitStatusRedundancy DellStatusRedundancy, + systemStateCoolingUnitStatusDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingDeviceStateDetails OCTET STRING (SIZE(1..128)), + systemStateCoolingDeviceStatusCombined DellStatus, + systemStateCoolingDeviceStatusDetails OCTET STRING (SIZE(1..128)), + systemStateTemperatureStateDetails OCTET STRING (SIZE(1..128)), + systemStateTemperatureStatusCombined DellStatus, + systemStateTemperatureStatusDetails OCTET STRING (SIZE(1..128)), + systemStateMemoryDeviceStateDetails OCTET STRING (SIZE(1..128)), + systemStateMemoryDeviceStatusCombined DellStatus, + systemStateMemoryDeviceStatusDetails OCTET STRING (SIZE(1..128)), + systemStateChassisIntrusionStateDetails OCTET STRING (SIZE(1..128)), + systemStateChassisIntrusionStatusCombined DellStatus, + systemStateChassisIntrusionStatusDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerSwitchStateDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerSwitchStatusRedundancy DellStatusRedundancy, + systemStateACPowerSwitchStatusDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerCordStateDetails OCTET STRING (SIZE(1..128)), + systemStateACPowerCordStatusCombined DellStatus, + systemStateACPowerCordStatusDetails OCTET STRING (SIZE(1..128)), + systemStateRedundantMemoryUnitStateDetails OCTET STRING (SIZE(1..128)), + systemStateRedundantMemoryUnitStatusRedundancy DellStatusRedundancy, + systemStateRedundantMemoryUnitStatusDetails OCTET STRING (SIZE(1..128)), + systemStateEventLogStatus DellStatus, + systemStatePowerUnitStatusCombined DellStatus, + systemStatePowerUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateCoolingUnitStatusCombined DellStatus, + systemStateCoolingUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateACPowerSwitchStatusCombined DellStatus, + systemStateACPowerSwitchStatusList OCTET STRING (SIZE(1..128)), + systemStateRedundantMemoryUnitStatusCombined DellStatus, + systemStateRedundantMemoryUnitStatusList OCTET STRING (SIZE(1..128)), + systemStateProcessorDeviceStatusCombined DellStatus, + systemStateProcessorDeviceStatusList OCTET STRING (SIZE(1..128)), + systemStateBatteryStatusCombined DellStatus, + systemStateBatteryStatusList OCTET STRING (SIZE(1..128)) +} + +systemStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0200.0010 This object defines the System State Table." + ::= { systemStateGroup 10 } +systemStateTableEntry OBJECT-TYPE + SYNTAX SystemStateTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0200.0010.0001 This object defines the System State Table Entry." + INDEX { systemStatechassisIndex } + ::= { systemStateTable 1 } + +systemStatechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0001 This attribute defines the index (one based) of this +chassis." + ::= { systemStateTableEntry 1 } +systemStateGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0002 This attribute defines the global system status +of all chassis being monitored by the systems management software." + ::= { systemStateTableEntry 2 } +systemStateChassisState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0003 This attribute defines the state settings of this +chassis." + ::= { systemStateTableEntry 3 } +systemStateChassisStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0004 This attribute defines the status of this chassis." + ::= { systemStateTableEntry 4 } +systemStatePowerUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0005 This attribute lists the state settings of each +power unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a power unit. The first byte returned represents the state settings +of the first power unit, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 5 } +systemStatePowerUnitStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0006 This attribute defines the combined redundancy status +of all power units of this chassis." + ::= { systemStateTableEntry 6 } +systemStatePowerUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0007 This attribute lists the redundancy status of each +power unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the redundancy status +of a power unit. The first byte returned represents the redundancy status +of the first power unit, etc. The bytes have the same definition type as +DellStatusRedundancy." + ::= { systemStateTableEntry 7 } +systemStatePowerSupplyStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0008 This attribute lists the state settings of each +power supply of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a power supply. The first byte returned represents the state settings +of the first power supply, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 8 } +systemStatePowerSupplyStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0009 This attribute defines the combined status of all +power supplies of this chassis." + ::= { systemStateTableEntry 9 } +systemStatePowerSupplyStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0010 This attribute lists the status of each power supply +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a power supply. +The first byte returned represents the status of the first power supply, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 10 } +systemStateVoltageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0011 This attribute lists the state settings of each +voltage probe of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a voltage probe. The first byte returned represents the state settings +of the first voltage probe, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 11 } +systemStateVoltageStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0012 This attribute defines the combined status of all +voltage probes of this chassis." + ::= { systemStateTableEntry 12 } +systemStateVoltageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0013 This attribute lists the status of each voltage probe +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a voltage probe. +The first byte returned represents the status of the first voltage probe, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 13 } +systemStateAmperageStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0014 This attribute lists the state settings of each +amperage probe of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of an amperage probe. The first byte returned represents the state settings +of the first amperage probe, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 14 } +systemStateAmperageStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0015 This attribute defines the combined status of all +amperage probes of this chassis." + ::= { systemStateTableEntry 15 } +systemStateAmperageStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0016 This attribute lists the status of each amperage probe +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of an amperage probe. +The first byte returned represents the status of the first amperage probe, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 16 } +systemStateCoolingUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0017 This attribute lists the state settings of each +cooling unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a cooling unit. The first byte returned represents the state settings +of the first cooling unit, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 17 } +systemStateCoolingUnitStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0018 This attribute defines the combined redundancy status +of all cooling units of this chassis." + ::= { systemStateTableEntry 18 } +systemStateCoolingUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only STATUS mandatory + DESCRIPTION +"0200.0010.0001.0019 This attribute lists the redundancy status of each +cooling unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the redundancy status +of a cooling unit. The first byte returned represents the redundancy status +of the first cooling unit, etc. The bytes have the same definition type as +DellStatusRedundancy." + ::= { systemStateTableEntry 19 } +systemStateCoolingDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0020 This attribute lists the state settings of each +cooling device of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a cooling device. The first byte returned represents the state settings +of the first cooling device, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 20 } +systemStateCoolingDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0021 This attribute defines the combined status of all +cooling devices of this chassis." + ::= { systemStateTableEntry 21 } +systemStateCoolingDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0022 This attribute lists the status of each cooling device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a cooling device. +The first byte returned represents the status of the first cooling device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 22 } +systemStateTemperatureStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0023 This attribute lists the state settings of each +temperature probe of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a temperature probe. The first byte returned represents the state settings +of the first temperature probe, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 23 } +systemStateTemperatureStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0024 This attribute defines the combined status of all +temperature probes of this chassis." + ::= { systemStateTableEntry 24 } +systemStateTemperatureStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0025 This attribute lists the status of each temperature probe +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a temperature probe. +The first byte returned represents the status of the first temperature probe, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 25 } +systemStateMemoryDeviceStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0026 This attribute lists the state settings of each +memory device of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of a memory device. The first byte returned represents the state settings +of the first memory device, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 26 } +systemStateMemoryDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0027 This attribute defines the combined status of all +memory devices of this chassis." + ::= { systemStateTableEntry 27 } +systemStateMemoryDeviceStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0028 This attribute lists the status of each memory device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a memory device. +The first byte returned represents the status of the first memory device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 28 } +systemStateChassisIntrusionStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0029 This attribute lists the state settings of each +intrusion detection device of this chassis. The results are returned as +a binary octet string where each byte of the octet string represents the +state settings of an intrusion detection device. The first byte returned +represents the state settings of the first intrusion detection device, etc. +The bytes have the same definition type as DellStateSettings." + ::= { systemStateTableEntry 29 } +systemStateChassisIntrusionStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0030 This attribute defines the combined status of all +intrusion detection devices of this chassis." + ::= { systemStateTableEntry 30 } +systemStateChassisIntrusionStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0031 This attribute lists the status of each intrusion +detection device of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the status +of an intrusion detection device. The first byte returned represents the +status of the first intrusion detection device, etc. The bytes have the +same definition type as DellStatus." + ::= { systemStateTableEntry 31 } +systemStateACPowerSwitchStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0032 This attribute lists the state settings of each +AC power switch of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the state settings +of an AC power switch. The first byte returned represents the state settings +of the first AC power switch, etc. The bytes have the same definition type +as DellStateSettings." + ::= { systemStateTableEntry 32 } +systemStateACPowerSwitchStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0033 This attribute defines the combined redundancy status +of all AC power switches of this chassis." + ::= { systemStateTableEntry 33 } +systemStateACPowerSwitchStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0034 This attribute lists the redundancy status of each +AC power switch of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the redundancy status +of an AC power switch. The first byte returned represents the redundancy +status of the first AC power switch, etc. The bytes have the same definition +type as DellStatusRedundancy." + ::= { systemStateTableEntry 34 } +systemStateACPowerCordStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0035 This attribute lists the state settings of each +AC power cord associated with an AC power switch of this chassis. +The results are returned as a binary octet string where each byte of +the octet string represents the state settings of an AC power cord. +The first byte returned represents the state settings of the first +AC power cord, etc. The bytes have the same definition type as +DellStateSettings." + ::= { systemStateTableEntry 35 } +systemStateACPowerCordStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0036 This attribute defines the combined status of all +AC power cords for any AC power switches of this chassis." + ::= { systemStateTableEntry 36 } +systemStateACPowerCordStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0037 This attribute lists the status of each AC power cord +associated with an AC power switch of this chassis. The results are returned +as a binary octet string where each byte of the octet string represents +the status of an AC power cord. The first byte returned represents the status +of the first AC power cord, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 37 } +systemStateRedundantMemoryUnitStateDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0038 This attribute lists the state settings of each +redundant memory unit of this chassis. The results are returned as +a binary octet string where each byte of the octet string represents +the state settings of a redundant memory unit. The first byte returned +represents the state settings of the first redundant memory unit, etc. +The bytes have the same definition type as DellStateSettings." + ::= { systemStateTableEntry 38 } +systemStateRedundantMemoryUnitStatusRedundancy OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0039 This attribute defines the combined redundancy status +of all redundant memory units of this chassis." + ::= { systemStateTableEntry 39 } +systemStateRedundantMemoryUnitStatusDetails OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0040 This attribute lists the redundancy status of each +redundant memory unit of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the redundancy +status of a redundant memory unit. The first byte returned represents the +redundancy status of the first redundant memory unit, etc. The bytes have +the same definition type as DellStatusRedundancy." + ::= { systemStateTableEntry 40 } +systemStateEventLogStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0041 This attribute defines the overall status of the +(ESM) event log of this chassis." + ::= { systemStateTableEntry 41 } +systemStatePowerUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0042 This attribute defines the combined status +of all power units of this chassis." + ::= { systemStateTableEntry 42 } +systemStatePowerUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0043 This attribute lists the status of each +power unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the status +of a power unit. The first byte returned represents the status +of the first power unit, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 43 } +systemStateCoolingUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0044 This attribute defines the combined status +of all cooling units of this chassis." + ::= { systemStateTableEntry 44 } +systemStateCoolingUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0045 This attribute lists the status of each +cooling unit of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the status +of a cooling unit. The first byte returned represents the status +of the first cooling unit, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 45 } +systemStateACPowerSwitchStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0046 This attribute defines the combined status +of all AC power switches of this chassis." + ::= { systemStateTableEntry 46 } +systemStateACPowerSwitchStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0047 This attribute lists the status of each +AC power switch of this chassis. The results are returned as a binary octet +string where each byte of the octet string represents the status +of an AC power switch. The first byte returned represents the status +of the first AC power switch, etc. The bytes have the same definition type +as DellStatus." + ::= { systemStateTableEntry 47 } +systemStateRedundantMemoryUnitStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0048 This attribute defines the combined status +of all redundant memory units of this chassis." + ::= { systemStateTableEntry 48 } +systemStateRedundantMemoryUnitStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0049 This attribute lists the status of each +redundant memory unit of this chassis. The results are returned as a binary +octet string where each byte of the octet string represents the status +of a redundant memory unit. The first byte returned represents the status +of the first redundant memory unit, etc. The bytes have the same definition +type as DellStatus." + ::= { systemStateTableEntry 49 } +systemStateProcessorDeviceStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0050 This attribute defines the combined status of all +processor devices of this chassis." + ::= { systemStateTableEntry 50 } +systemStateProcessorDeviceStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0051 This attribute lists the status of each processor device +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a processor device. +The first byte returned represents the status of the first processor device, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 51 } +systemStateBatteryStatusCombined OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0052 This attribute defines the combined status of all +batteries of this chassis." + ::= { systemStateTableEntry 52 } +systemStateBatteryStatusList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0200.0010.0001.0053 This attribute lists the status of each battery +of this chassis. The results are returned as a binary octet string where +each byte of the octet string represents the status of a battery. +The first byte returned represents the status of the first battery, +etc. The bytes have the same definition type as DellStatus." + ::= { systemStateTableEntry 53 } + + +------------------------------------------------------------------------------- +-- Chassis Information Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300 +------------------------------------------------------------------------------- + + +DellStateCapabilitiesLogUnique ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state capabilities are unknown + onlineCapable(2), -- log can be enabled (online) or disabled (offline) + notReadyCapable(4), -- log can be not ready + resetCapable(8) -- log can be reset +} +DellStateSettingsLogUnique ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- log state settings are unknown + online(2), -- log is enabled (online) + notReady(4), -- log is not ready + reset(8) -- reset log +} +DellLogFormat ::= INTEGER { + raw(1), -- format is Raw + ascii(2), -- format is ASCII + uniCode(3) -- format is Unicode +} + + +------------------------------------------------------------------------------- +-- Chassis Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.10.1.. +------------------------------------------------------------------------------- + +DellChassisType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + desktop(3), -- type is Desktop + lowProfileDesktop(4), -- type is Low Profile Desktop + pizzaBox(5), -- type is Pizza Box + miniTower(6), -- type is MiniTower + tower(7), -- type is Tower + portable(8), -- type is Portable + lapTop(9), -- type is Laptop + noteBook(10), -- type is Notebook + handHeld(11), -- type is Handheld + dockingStation(12), -- type is Docking Station + allInOne(13), -- type is All-In-One + subNoteBook(14), -- type is SubNotebook + spaceSaving(15), -- type is Spacesaver + lunchBox(16), -- type is Lunchbox + mainSystemChassis(17), -- type is Main System Chassis + expansionChassis(18), -- type is Expansion Chassis + subChassis(19), -- type is SubChassis + busExpansionChassis(20), -- type is Bus Expansion Chassis + peripheralChassis(21), -- type is Peripheral Chassis + raidChassis(22), -- type is RAID Chassis + rackMountChassis(23), -- type is Rack-mounted Chassis + sealedCasePC(24), -- type is Sealed-case PC + multiSystemChassis(25) -- type is Multi-system Chassis +} +DellChassisSystemClass ::= INTEGER { + other(1), -- class is other than following values + unknown(2), -- class is unknown + workstationClass(3), -- class is Workstation + serverClass(4), -- class is Server + desktopClass(5), -- class is Desktop + portableClass(6), -- class is Portable + netPCClass(7), -- class is Net PC + storageClass(8) -- class is Storage +} +DellConnectionStatus ::= INTEGER { + unknown(2), -- status is unknown + ok(3), -- status is OK + failure(4) -- status is Failure +} +DellFanControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Fan Control capabilities + unknown(1), -- fan control capabilities are unknown + lowSpeedCapable(2), -- fan can be set to low speed + highSpeedCapable(4), -- fan can be set to high speed + lowOrHighSpeedCapable(6) -- fan can be set to low or high speed +} +DellFanControlSettings ::= INTEGER { + -- If 0 (zero), there are no Fan Control settings + unknown(1), -- fan control settings are unknown + lowSpeed(2), -- fan set to low speed + highSpeed(4) -- fan set to high speed +} +DellLEDControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no LED Control capabilities + unknown(1), -- LED control capabilities are unknown + alertOnErrorCapable(2), -- LED can alert on error condition + alertOnWarningAndErrorCapable(4), -- LED can alert on error and warning condition + alertOnWarningOrErrorCapable(6) -- LED can alert on error or warning condition +} +DellLEDControlSettings ::= INTEGER { + -- If 0 (zero), there are no LED Control settings + unknown(1), -- LED control settings are unknown + alertOnError(2), -- LED set to alert on error condition + alertOnWarningAndError(4) -- LED set to alert on error or warning condition +} +DellHDFaultLEDControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Hard Drive Fault LED Control capabilities + unknownCapabilities(1), -- LED control capabilities are unknown + enableCapable(2), -- LED can be be enabled (online) or disabled (offline) + notReadyCapable(4), -- LED can be not ready + resetCapable(8) -- LED can be reset +} +DellHDFaultLEDControlSettings ::= INTEGER { + -- If 0 (zero), there are no Hard Drive Fault LED Control settings + unknown(1), -- LED control settings are unknown + enabled(2), -- LED is enabled (online) + notReady(4), -- LED is not ready + reset(8), -- reset LED + resetAndEnable(10) -- reset and enable LED +} +DellChassisIdentifyControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Chassis Identify Control capabilities + unknownCapabilities(1), -- chassis identify capabilities are unknown + -- The objects capabilities allow it to be set to: + enableCapable(2), -- chassis identify can be enabled (online) or disabled (offline) + notReadyCapable(4), -- chassis identify can be not ready + identifyCapable(8) -- chassis idenfity can be made to identify chassis +} +DellChassisIdentifyControlSettings ::= INTEGER { + -- If 0 (zero), there are no Chassis Identify Control settings + unknown(1), -- chassis identify settings are unknown + enabled(2), -- chassis identify is enabled (online) + notReady(4), -- chassis identify is not ready + identifyChassis(8), -- identify chassis + identifyChassisAndEnable(10) -- identify chassis and enabled +} +DellHostControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Host Control capabilities + manualRebootCapable(1), -- host can be rebooted + manualPowerOFFCapable(2), -- host can be powered off + manualPowerCycleCapable(4), -- host can be power cycled + manualAllExceptOperatingSystemShutdownCapable(7), -- all host control capabilities except OS shutdown + manualOperatingSystemShutdownCapable(8), -- operating system can be shutdown + manualFullyCapable(15) -- all host control capabilities +} +DellHostControlSettings ::= INTEGER { + -- If 0 (zero), there are no Host Control settings + manualReboot(1), -- reboot host + manualPowerOFF(2), -- power off host + manualPowerCycle(4), -- power cycle host + manualOperatingSystemShutdown(8), -- shutdown operating system on host + manualOperatingSystemShutdownThenReboot(9), -- shutdown operating system on host then reboot host + manualOperatingSystemShutdownThenPowerOFF(10), -- shutdown operating system on host then power off host + manualOperatingSystemShutdownThenPowerCycle(12) -- shutdown operating system on host then power cycle host +} +DellWatchDogControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Watchdog Control capabilities + automaticRebootCapable(1), -- watchdog can reboot host + automaticPowerCycleCapable(2), -- watchdog can power cycle host + automaticNotificationCapable(4), -- watchdog can notify + automaticWatchDogTimerCapable(8), -- watchdog supports timer + automaticPowerOffCapable(16), -- watchdog can power off host + automaticAllExceptNotificationCapable(27), -- all capabilities except notification + automaticFullyCapable(31) -- all watchdog control capabilities +} +DellWatchControlSettings ::= INTEGER { + -- If 0 (zero), there are no Watchdog Control settings + automaticRebootEnabled(1), -- watchdog set for automatic reboot + automaticPowerCycleEnabled(2), -- watchdog set for automatic power cycle + automaticNotificationEnabled(4), -- watchdog set for automatic notification + automaticPowerOffEnabled(8) -- watchdog set for automatic power off +} +DellWatchDogTimerCapabilities ::= INTEGER { + -- If 0 (zero), there are no Watchdog Timer capabilities + type1Capable(1), -- watchdog can time in range of 20-480 seconds + type2Capable(2), -- watchdog can time in 30, 60, 120 and 480 second intervals + type3Capable(4) -- watchdog can time in 60 second intervals +} +DellPowerButtonControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no Power Button Control capabilities + unknownCapabilities(1), -- power button capabilities are unknown + enableCapable(2) -- power button can be enabled or disabled +} +DellPowerButtonControlSettings ::= INTEGER { + -- If 0 (zero), there are no Power Button Control settings + unknown(1), -- power button settings are unknown + enabled(2), -- power button is enabled + disabled(4) -- power button disabled +} +DellNMIButtonControlCapabilities ::= INTEGER { + -- If 0 (zero), there are no NMI Button Control capabilities + unknownCapabilities(1), -- NMI button capabilities are unknown + enableCapable(2) -- NMI button can be enabled or disabled +} +DellNMIButtonControlSettings ::= INTEGER { + -- If 0 (zero), there are no NMI Button Control settings + unknown(1), -- NMI button settings are unknown + enabled(2), -- NMI button is enabled + disabled(4) -- NMI button disabled +} +DellSystemProperties ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no properties + energySmart(1) -- Energy Smart system +} + +ChassisInformationTableEntry ::= SEQUENCE { + chassisIndexChassisInformation DellObjectRange, + chassisStateCapabilities DellStateCapabilities, + chassisStateSettings DellStateSettings, + chassisStatus DellStatus, + chassisparentIndexReference DellObjectRange, + chassisType DellChassisType, + chassisName DellString, + chassisManufacturerName DellString, + chassisModelName DellString, + chassisAssetTagName DisplayString (SIZE (0..10)), + chassisServiceTagName DisplayString (SIZE (0..7)), + chassisID DellUnsigned8BitRange, + chassisIDExtension DellUnsigned16BitRange, + chassisSystemClass DellChassisSystemClass, + chassisSystemName DellString, + chassisSystemBootDateName DellDateName, + chassisSystemDateName DellDateName, + chassisSystemLocationName DellString, + chassisSystemPrimaryUserName DellString, + chassisSystemUserPhoneNumberName DellString, + chassisConnectionStatusUnique DellConnectionStatus, + chassisFanControlCapabilitiesUnique DellFanControlCapabilities, + chassisFanControlSettingsUnique DellFanControlSettings, + chassisLEDControlCapabilitiesUnique DellLEDControlCapabilities, + chassisLEDControlSettingsUnique DellLEDControlSettings, + chassisHDFaultClearControlCapabilities DellHDFaultLEDControlCapabilities, + chassisHDFaultClearControlSettings DellHDFaultLEDControlSettings, + chassisIdentifyFlashControlCapabilities DellChassisIdentifyControlCapabilities, + chassisIdentifyFlashControlSettings DellChassisIdentifyControlSettings, + chassisLockPresent DellBoolean, + chassishostControlCapabilitiesUnique DellHostControlCapabilities, + chassishostControlSettingsUnique DellHostControlSettings, + chassiswatchDogControlCapabilitiesUnique DellWatchDogControlCapabilities, + chassiswatchDogControlSettingsUnique DellWatchControlSettings, + chassiswatchDogControlExpiryTimeCapabilitiesUnique DellWatchDogTimerCapabilities, + chassiswatchDogControlExpiryTime DellUnsigned16BitRange, + chassisallowSETCommandsfromSNMP DellBoolean, + chassisPowerButtonControlCapabilitiesUnique DellPowerButtonControlCapabilities, + chassisPowerButtonControlSettingsUnique DellPowerButtonControlSettings, + chassisResellerName DisplayString (SIZE (0..128)), + chassisResellerContactInformationName DisplayString (SIZE (0..128)), + chassisResellerProductName DisplayString (SIZE (0..128)), + chassisResellerSystemID DellUnsigned16BitRange, + chassisNMIButtonControlCapabilitiesUnique DellNMIButtonControlCapabilities, + chassisNMIButtonControlSettingsUnique DellNMIButtonControlSettings, + chassisSystemProperties DellSystemProperties, + chassisSystemRevisionNumber DellUnsigned8BitRange, + chassisSystemRevisionName DellString +} + +chassisInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChassisInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0010 This object defines the Chassis Information Table." + ::= { chassisInformationGroup 10 } +chassisInformationTableEntry OBJECT-TYPE + SYNTAX ChassisInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0010.0001 This object defines the Chassis Information Table Entry." + INDEX { chassisIndexChassisInformation } + ::= { chassisInformationTable 1 } + +chassisIndexChassisInformation OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { chassisInformationTableEntry 1 } +chassisStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0002 This attribute defines the state capabilities of the +chassis." + ::= { chassisInformationTableEntry 2 } +chassisStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0003 This attribute defines the state settings of the +chassis." + ::= { chassisInformationTableEntry 3 } +chassisStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0004 This attribute defines the status of the chassis." + ::= { chassisInformationTableEntry 4 } +chassisparentIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0005 This attribute defines the index (one based) to the +parent chassis of this chassis, if any." + ::= { chassisInformationTableEntry 5 } +chassisType OBJECT-TYPE + SYNTAX DellChassisType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0006 This attribute defines the chassis type of the chassis." + ::= { chassisInformationTableEntry 6 } +chassisName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0007 This attribute defines the user-assigned name of the +chassis." + ::= { chassisInformationTableEntry 7 } +chassisManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0008 This attribute defines the name of the manufacturer +of the chassis." + ::= { chassisInformationTableEntry 8 } +chassisModelName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0009 This attribute defines the system model type of the +chassis." + ::= { chassisInformationTableEntry 9 } +chassisAssetTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0010 This attribute defines the asset tag name of the +chassis." + ::= { chassisInformationTableEntry 10 } +chassisServiceTagName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0011 This attribute defines the service tag name of the +chassis." + ::= { chassisInformationTableEntry 11 } +chassisID OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0012 This attribute defines the system ID. If the value +is 254 (0xFE), the attribute chassisIDExtension provides the system ID." + ::= { chassisInformationTableEntry 12 } +chassisIDExtension OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0013 This attribute defines the system ID extension." + ::= { chassisInformationTableEntry 13 } +chassisSystemClass OBJECT-TYPE + SYNTAX DellChassisSystemClass + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0014 This attribute defines the system class." + ::= { chassisInformationTableEntry 14 } +chassisSystemName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0015 This attribute defines the host name of the system." + ::= { chassisInformationTableEntry 15 } +chassisSystemBootDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0016 This attribute defines boot time of the system. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes and ss are the seconds. +uuuuuu is the number of microseconds, and +fff or -fff is the offset from +UTC in minutes." + ::= { chassisInformationTableEntry 16 } +chassisSystemDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0017 This attribute defines the current time of the system. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes and ss are the seconds. +uuuuuu is the number of microseconds, and +fff or -fff is the offset from +UTC in minutes." + ::= { chassisInformationTableEntry 17 } +chassisSystemLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0018 This attribute defines the location of the system." + ::= { chassisInformationTableEntry 18 } +chassisSystemPrimaryUserName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0019 This attribute defines the name of the primary user +of the system." + ::= { chassisInformationTableEntry 19 } +chassisSystemUserPhoneNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0020 This attribute defines the phone number of the primary +user of the system." + ::= { chassisInformationTableEntry 20 } +chassisConnectionStatusUnique OBJECT-TYPE + SYNTAX DellConnectionStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0021 This attribute defines the status of the connection +of the chassis." + ::= { chassisInformationTableEntry 21 } +chassisFanControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellFanControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0022 This attribute defines the capabilities of the +fan control hardware in the chassis." + ::= { chassisInformationTableEntry 22 } +chassisFanControlSettingsUnique OBJECT-TYPE + SYNTAX DellFanControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0023 This attribute defines the reading and setting of the +fan control hardware in the chassis." + ::= { chassisInformationTableEntry 23 } +chassisLEDControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellLEDControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0024 This attribute defines the capabilities of the +LED control hardware in the chassis." + ::= { chassisInformationTableEntry 24 } +chassisLEDControlSettingsUnique OBJECT-TYPE + SYNTAX DellLEDControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0025 This attribute defines the reading and setting of the +LED control hardware in the chassis." + ::= { chassisInformationTableEntry 25 } +chassisHDFaultClearControlCapabilities OBJECT-TYPE + SYNTAX DellHDFaultLEDControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0026 This attribute defines if the chassis allows reset +of the chassis hard disk drive fault LED." + ::= { chassisInformationTableEntry 26 } +chassisHDFaultClearControlSettings OBJECT-TYPE + SYNTAX DellHDFaultLEDControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0027 This attribute allows reset of a chassis hard disk +drive fault LED." + ::= { chassisInformationTableEntry 27 } +chassisIdentifyFlashControlCapabilities OBJECT-TYPE + SYNTAX DellChassisIdentifyControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0028 This attribute defines if the chassis allows setting +of the chassis front panel LED to flash." + ::= { chassisInformationTableEntry 28 } +chassisIdentifyFlashControlSettings OBJECT-TYPE + SYNTAX DellChassisIdentifyControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0029 This attribute setting causes the chassis front panel +LED to flash." + ::= { chassisInformationTableEntry 29 } +chassisLockPresent OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0030 If true, a chassis lock is present on the chassis." + ::= { chassisInformationTableEntry 30 } +chassishostControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellHostControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.031 This attribute defines the capabilities of the +host control function." + ::= { chassisInformationTableEntry 31 } +chassishostControlSettingsUnique OBJECT-TYPE + SYNTAX DellHostControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0032 This attribute defines the settings of the +host control function." + ::= { chassisInformationTableEntry 32 } +chassiswatchDogControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellWatchDogControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0033 This attribute defines the capabilities of the +watchdog control function." + ::= { chassisInformationTableEntry 33 } +chassiswatchDogControlSettingsUnique OBJECT-TYPE + SYNTAX DellWatchControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0034 This attribute defines the settings of the +watchdog control function." + ::= { chassisInformationTableEntry 34 } +chassiswatchDogControlExpiryTimeCapabilitiesUnique OBJECT-TYPE + SYNTAX DellWatchDogTimerCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0035 This attribute defines the capabilities of the +watchdog control expiry timer function." + ::= { chassisInformationTableEntry 35 } +chassiswatchDogControlExpiryTime OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0036 This attribute defines the current watchdog timer +value in seconds." + ::= { chassisInformationTableEntry 36 } +chassisallowSETCommandsfromSNMP OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0037 This attribute defines if SNMP SET type commands +are allowed or not." + ::= { chassisInformationTableEntry 37 } +chassisPowerButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellPowerButtonControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0038 This attribute defines the capabilities of the +power button control hardware in the chassis." + ::= { chassisInformationTableEntry 38 } +chassisPowerButtonControlSettingsUnique OBJECT-TYPE + SYNTAX DellPowerButtonControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0039 This attribute defines the reading and setting of +the power button control hardware in the chassis." + ::= { chassisInformationTableEntry 39 } +chassisResellerName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0040 This attribute defines the name of the system reseller." + ::= { chassisInformationTableEntry 40 } +chassisResellerContactInformationName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0041 This attribute defines the contact information +for the system reseller." + ::= { chassisInformationTableEntry 41 } +chassisResellerProductName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0042 This attribute defines the reseller's product name +for the system." + ::= { chassisInformationTableEntry 42 } +chassisResellerSystemID OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0043 This attribute defines the reseller's system ID +for the system." + ::= { chassisInformationTableEntry 43 } +chassisNMIButtonControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellNMIButtonControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0044 This attribute defines the capabilities of the +NMI button control hardware in the chassis." + ::= { chassisInformationTableEntry 44 } +chassisNMIButtonControlSettingsUnique OBJECT-TYPE + SYNTAX DellNMIButtonControlSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0045 This attribute defines the reading and setting of +the NMI button control hardware in the chassis." + ::= { chassisInformationTableEntry 45 } +chassisSystemProperties OBJECT-TYPE + SYNTAX DellSystemProperties + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0046 This attribute defines the properties of the system." + ::= { chassisInformationTableEntry 46 } +chassisSystemRevisionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0047 This attribute defines the revision number of the system +where zero indicates the original version of the system. The revision number +is not available on all systems." + ::= { chassisInformationTableEntry 47 } +chassisSystemRevisionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0010.0001.0048 This attribute defines the revision name of the system, +if applicable." + ::= { chassisInformationTableEntry 48 } + + +------------------------------------------------------------------------------- +-- Universal Unique ID (UUID) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.20.1... +------------------------------------------------------------------------------- + +DellUUIDType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + motherBoard(3), -- type is Motherboard + systemBackPlane(4), -- type is System Backplane + powerSupplyParallelingBoard(5), -- type is Power Supply Paralleling Board + peripheralBayBackPlane(6), -- type is Peripheral Bay Backplane + secondaryBackPlane(7) -- type is Secondary Backplane +} + +UUIDTableEntry ::= SEQUENCE { + uUIDchassisIndex DellObjectRange, + uUIDIndex DellObjectRange, + uUIDType DellUUIDType, + uUIDValue OCTET STRING (SIZE(16)) +} + +uUIDTable OBJECT-TYPE + SYNTAX SEQUENCE OF UUIDTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0020 This object defines the Universal Unique ID (UUID) Table." + ::= { chassisInformationGroup 20 } +uUIDTableEntry OBJECT-TYPE + SYNTAX UUIDTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0020.0001 This object defines the UUID Table Entry." + INDEX { uUIDchassisIndex, + uUIDIndex } + ::= { uUIDTable 1 } + +uUIDchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { uUIDTableEntry 1 } +uUIDIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0002 This attribute defines the index (one based) of the UUID." + ::= { uUIDTableEntry 2 } +uUIDType OBJECT-TYPE + SYNTAX DellUUIDType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0003 This attribute defines the type of the UUID." + ::= { uUIDTableEntry 3 } +uUIDValue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0020.0001.0004 This attribute defines the value of the UUID." + ::= { uUIDTableEntry 4 } + + +------------------------------------------------------------------------------- +-- Power On Self Test (POST) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.30.1... +------------------------------------------------------------------------------- + +PostLogTableEntry ::= SEQUENCE { + postLogchassisIndex DellObjectRange, + postLogRecordIndex DellUnsigned32BitRange, + postLogStateCapabilitiesUnique DellStateCapabilitiesLogUnique, + postLogStateSettingsUnique DellStateSettingsLogUnique, + postLogRecord DisplayString (SIZE (0..1024)), + postLogFormat DellLogFormat +} + +postLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF PostLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0030 This object defines the Power On Self Test (POST) Log Table." + ::= { chassisInformationGroup 30 } +postLogTableEntry OBJECT-TYPE + SYNTAX PostLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0030.0001 This object defines the POST Log Table Entry." + INDEX { postLogchassisIndex, + postLogRecordIndex } + ::= { postLogTable 1 } + +postLogchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { postLogTableEntry 1 } +postLogRecordIndex OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0002 This attribute defines the index (one based) of the +POST log record." + ::= { postLogTableEntry 2 } +postLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellStateCapabilitiesLogUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0003 This attribute defines the state capabilities of the +object that is writing the POST log." + ::= { postLogTableEntry 3 } +postLogStateSettingsUnique OBJECT-TYPE + SYNTAX DellStateSettingsLogUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0004 This attribute defines the state settings of the +object that is writing the POST log." + ::= { postLogTableEntry 4 } +postLogRecord OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0005 This attribute defines the data of the POST log record." + ::= { postLogTableEntry 5 } +postLogFormat OBJECT-TYPE + SYNTAX DellLogFormat + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0030.0001.0006 This attribute defines the format of the POST log record." + ::= { postLogTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Event (ESM) Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.40.1... +------------------------------------------------------------------------------- + +EventLogTableEntry ::= SEQUENCE { + eventLogchassisIndex DellObjectRange, + eventLogRecordIndex DellUnsigned32BitRange, + eventLogStateCapabilitiesUnique DellStateCapabilitiesLogUnique, + eventLogStateSettingsUnique DellStateSettingsLogUnique, + eventLogRecord DisplayString (SIZE (0..1024)), + eventLogFormat DellLogFormat, + eventLogSeverityStatus DellStatus, + eventLogDateName DellDateName +} + +eventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF EventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0040 This object defines the Event (ESM) Log Table." + ::= { chassisInformationGroup 40 } +eventLogTableEntry OBJECT-TYPE + SYNTAX EventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0040.0001 This object defines the Event (ESM) Log Table Entry." + INDEX { eventLogchassisIndex, + eventLogRecordIndex } + ::= { eventLogTable 1 } + +eventLogchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { eventLogTableEntry 1 } +eventLogRecordIndex OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0002 This attribute defines the index (one based) of the +event log record." + ::= { eventLogTableEntry 2 } +eventLogStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellStateCapabilitiesLogUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0003 This attribute defines the state capabilities of the +object that is writing the event log." + ::= { eventLogTableEntry 3 } +eventLogStateSettingsUnique OBJECT-TYPE + SYNTAX DellStateSettingsLogUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0004 This attribute defines the state settings of the +object that is writing the event log." + ::= { eventLogTableEntry 4 } +eventLogRecord OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0005 This attribute defines the data of the event log record." + ::= { eventLogTableEntry 5 } +eventLogFormat OBJECT-TYPE + SYNTAX DellLogFormat + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0006 This attribute defines the format of the event log record." + ::= { eventLogTableEntry 6 } +eventLogSeverityStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0007 This attribute defines the severity of the +event log record." + ::= { eventLogTableEntry 7 } +eventLogDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0040.0001.0008 This attribute defines the date and time of the +event log record." + ::= { eventLogTableEntry 8 } + + +------------------------------------------------------------------------------- +-- System BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.50.1... +------------------------------------------------------------------------------- + +SystemBIOSTableEntry ::= SEQUENCE { + systemBIOSchassisIndex DellObjectRange, + systemBIOSIndex DellObjectRange, + systemBIOSStateCapabilities DellStateCapabilities, + systemBIOSStateSettings DellStateSettings, + systemBIOSStatus DellStatus, + systemBIOSSize DellUnsigned32BitRange, + systemBIOSReleaseDateName DellDateName, + systemBIOSVersionName DellString, + systemBIOSStartingAddress DellUnsigned64BitRange, + systemBIOSEndingAddress DellUnsigned64BitRange, + systemBIOSManufacturerName DellString, + systemBIOSCharacteristics DellUnsigned64BitRange, + systemBIOSCharacteristicsExt1 DellUnsigned8BitRange, + systemBIOSCharacteristicsExt2 DellUnsigned8BitRange +} + +systemBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0050 This object defines the System BIOS Table." + ::= { chassisInformationGroup 50 } +systemBIOSTableEntry OBJECT-TYPE + SYNTAX SystemBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0050.0001 This object defines the System BIOS Table Entry." + INDEX { systemBIOSchassisIndex, + systemBIOSIndex } + ::= { systemBIOSTable 1 } + +systemBIOSchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemBIOSTableEntry 1 } +systemBIOSIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0002 This attribute defines the index (one based) of the +system BIOS." + ::= { systemBIOSTableEntry 2 } +systemBIOSStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0003 This attribute defines the state capabilities of the +system BIOS." + ::= { systemBIOSTableEntry 3 } +systemBIOSStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0004 This attribute defines the state settings of the +system BIOS." + ::= { systemBIOSTableEntry 4 } +systemBIOSStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0005 This attribute defines the status of the system BIOS." + ::= { systemBIOSTableEntry 5 } +systemBIOSSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0006 This attribute defines the image size of the +system BIOS in KBytes. Zero indicates size is unknown." + ::= { systemBIOSTableEntry 6 } +systemBIOSReleaseDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0007 This attribute defines the release date name of the +system BIOS." + ::= { systemBIOSTableEntry 7 } +systemBIOSVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0008 This attribute defines the version name of the +system BIOS." + ::= { systemBIOSTableEntry 8 } +systemBIOSStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0009 This attribute defines the starting address of the +system BIOS. Zero indicates the starting address is unknown." + ::= { systemBIOSTableEntry 9 } +systemBIOSEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0010 This attribute defines the ending address of the +system BIOS. Zero indicates the starting address is unknown." + ::= { systemBIOSTableEntry 10 } +systemBIOSManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0011 This attribute defines the name of the manufacturer +of the system BIOS." + ::= { systemBIOSTableEntry 11 } +systemBIOSCharacteristics OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0012 This attribute defines characteristics of the +system BIOS. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). Bit 63 is the first bit in the value, +and bit 0 is the last bit in the value. See the description of +DellUnsigned64BitRange at the beginning of this file for more information +on the format of the value. + +NOTE: Bits 48-63 need to be examined in the context of the system ID. +The system ID is available in the attribute chassisID. If the value +for chassisID is non-zero, bits 48-63 have the meaning defined below. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Reserved + Bit 2 Unknown + Bit 3 BIOS Characteristics Not Supported + Bit 4 ISA is supported + Bit 5 MCA is supported + Bit 6 EISA is supported + Bit 7 PCI is supported + Bit 8 PC Card (PCMCIA) is supported + Bit 9 Plug and Play is supported + Bit 10 APM is supported + Bit 11 BIOS is Upgradeable (Flash) + Bit 12 BIOS shadowing is allowed + Bit 13 VL-VESA is supported + Bit 14 ESCD support is available + Bit 15 Boot from CD is supported + Bit 16 Selectable Boot is supported + Bit 17 BIOS ROM is socketed + Bit 18 Boot From PC Card (PCMCIA) is supported + Bit 19 EDD (Enhanced Disk Drive) Specification is supported + Bit 20 Int 13h - Japanese Floppy for NEC 9800 1.2mb (3.5 in, 1k Bytes/Sector, 360 RPM) is supported + Bit 21 Int 13h - Japanese Floppy for Toshiba 1.2mb (3.5 in, 360 RPM) is supported + Bit 22 Int 13h - 5.25 in / 360 KB Floppy Services are supported + Bit 23 Int 13h - 5.25 in /1.2MB Floppy Services are supported + Bit 24 Int 13h - 3.5 in / 720 KB Floppy Services are supported + Bit 25 Int 13h - 3.5 in / 2.88 MB Floppy Services are supported + Bit 26 Int 5h, Print Screen Service is supported + Bit 27 Int 9h, 8042 Keyboard services are supported + Bit 28 Int 14h, Serial Services are supported + Bit 29 Int 17h, Printer Services are supported + Bit 30 Int 10h, CGA/Mono Video Services are supported + Bit 31 NEC PC-98 + Bit 32-47 Reserved + Bit 48 Built-in NIC supports Magic Packet + Bit 49 System supports Wake-on-LAN + Bit 50 System supports chassis intrusion + Bit 51 Built-in NIC supports pattern-matching + Bit 52 System BIOS supports a 7-character service tag + Bit 53-63 Reserved" + ::= { systemBIOSTableEntry 12 } +systemBIOSCharacteristicsExt1 OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0013 This attribute defines additional characteristics of the +system BIOS. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 ACPI supported + Bit 1 USB Legacy is supported + Bit 2 AGP is supported + Bit 3 I2O boot is supported + Bit 4 LS-120 boot is supported + Bit 5 ATAPI ZIP Drive boot is supported + Bit 6 1394 boot is supported + Bit 7 Smart Battery supported" + ::= { systemBIOSTableEntry 13 } +systemBIOSCharacteristicsExt2 OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0050.0001.0014 This attribute defines additional characteristics of the +system BIOS. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 BIOS Boot Specification supported + Bit 1 Function key-initiated Network Service boot supported + Bit 2 Targeted Content Distribution supported + Bit 3-7 Reserved" + ::= { systemBIOSTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Firmware Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.60.1... +------------------------------------------------------------------------------- + +DellFirmwareType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + systemBIOS(3), -- type is System BIOS + embeddedSystemManagementController(4), -- type is Embedded System Management Controller + powerSupplyParallelingBoard(5), -- type is Power Supply Paralleling Board + systemBackPlane(6), -- type is System (Primary) Backplane + powerVault2XXSKernel(7), -- type is PowerVault 2XXS Kernel + powerVault2XXSApplication(8), -- type is PowerVault 2XXS Application + frontPanel(9), -- type is Front Panel Controller + baseboardManagementController(10), -- type is Baseboard Management Controller + hotPlugPCI(11), -- type is Hot Plug PCI Controller + sensorData(12), -- type is Sensor Data Records + peripheralBay(13), -- type is Peripheral Bay Backplane + secondaryBackPlane(14), -- type is Secondary Backplane for ESM 2 systems + secondaryBackPlaneESM3And4(15), -- type is Secondary Backplane for ESM 3 and 4 systems + rac(16), -- type is Remote Access Controller + iDRAC(17) -- type is Integrated Dell Remote Access Controller +} + +FirmwareTableEntry ::= SEQUENCE { + firmwarechassisIndex DellObjectRange, + firmwareIndex DellObjectRange, + firmwareStateCapabilities DellStateCapabilities, + firmwareStateSettings DellStateSettings, + firmwareStatus DellStatus, + firmwareSize DellUnsigned16BitRange, + firmwareType DellFirmwareType, + firmwareTypeName DellString, + firmwareUpdateCapabilities DellUnsigned16BitRange, + firmwareDateName OCTET STRING (SIZE(8)), + firmwareVersionName DellString +} + +firmwareTable OBJECT-TYPE + SYNTAX SEQUENCE OF FirmwareTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0060 This object defines the Firmware Table." + ::= { chassisInformationGroup 60 } +firmwareTableEntry OBJECT-TYPE + SYNTAX FirmwareTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0060.0001 This object defines the Firmware Table Entry." + INDEX { firmwarechassisIndex, + firmwareIndex } + ::= { firmwareTable 1 } + +firmwarechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { firmwareTableEntry 1 } +firmwareIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0002 This attribute defines the index (one based) of the +firmware." + ::= { firmwareTableEntry 2 } +firmwareStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0003 This attribute defines the state capabilities of the +firmware." + ::= { firmwareTableEntry 3 } +firmwareStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0004 This attribute defines the state settings of the +firmware." + ::= { firmwareTableEntry 4 } +firmwareStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0005 This attribute defines the status of the firmware." + ::= { firmwareTableEntry 5 } +firmwareSize OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0006 This attribute defines the image size of the firmware +in KBytes. Zero indicates size is unknown." + ::= { firmwareTableEntry 6 } +firmwareType OBJECT-TYPE + SYNTAX DellFirmwareType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0007 This attribute defines the type of firmware." + ::= { firmwareTableEntry 7 } +firmwareTypeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0008 This attribute defines the type name of the firmware." + ::= { firmwareTableEntry 8 } +firmwareUpdateCapabilities OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0009 This attribute defines the bitmap of supported methods +for firmware update." + ::= { firmwareTableEntry 9 } +firmwareDateName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(8)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0010 This attribute defines the release date of the firmware." + ::= { firmwareTableEntry 10 } +firmwareVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0060.0001.0011 This attribute defines the version of the firmware." + ::= { firmwareTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Intrusion Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.70.1... +------------------------------------------------------------------------------- + +DellIntrusionReading ::= INTEGER { + chassisNotBreached(1), -- chassis not breached and no uncleared breaches + chassisBreached(2), -- chassis currently breached + chassisBreachedPrior(3), -- chassis breached prior to boot and has not been cleared + chassisBreachSensorFailure(4) -- intrusion sensor has failed +} +DellIntrusionType ::= INTEGER { + chassisBreachDetectionWhenPowerON(1), -- type is detect intrusion while power on + chassisBreachDetectionWhenPowerOFF(2) -- type is detect intrusion while power off +} + +IntrusionTableEntry ::= SEQUENCE { + intrusionchassisIndex DellObjectRange, + intrusionIndex DellObjectRange, + intrusionStateCapabilities DellStateCapabilities, + intrusionStateSettings DellStateSettings, + intrusionStatus DellStatus, + intrusionReading DellIntrusionReading, + intrusionType DellIntrusionType, + intrusionLocationName DellString +} + +intrusionTable OBJECT-TYPE + SYNTAX SEQUENCE OF IntrusionTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0070 This object defines the Intrusion Table." + ::= { chassisInformationGroup 70 } +intrusionTableEntry OBJECT-TYPE + SYNTAX IntrusionTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0070.0001 This object defines the Intrusion Table Entry." + INDEX { intrusionchassisIndex, + intrusionIndex } + ::= { intrusionTable 1 } + +intrusionchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { intrusionTableEntry 1 } +intrusionIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0002 This attribute defines the index (one based) of the +intrusion sensor." + ::= { intrusionTableEntry 2 } +intrusionStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0003 This attribute defines the state capabilities of the +intrusion sensor." + ::= { intrusionTableEntry 3 } +intrusionStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0004 This attribute defines the state settings of the +intrusion sensor." + ::= { intrusionTableEntry 4 } +intrusionStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0005 This attribute defines the status of the +intrusion sensor." + ::= { intrusionTableEntry 5 } +intrusionReading OBJECT-TYPE + SYNTAX DellIntrusionReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0006 This attribute defines the reading of the +intrusion sensor." + ::= { intrusionTableEntry 6 } +intrusionType OBJECT-TYPE + SYNTAX DellIntrusionType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0007 This attribute defines the type of the +intrusion sensor." + ::= { intrusionTableEntry 7 } +intrusionLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0070.0001.0008 This attribute defines the location of the +intrusion sensor." + ::= { intrusionTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Base Board Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.300.80.1... +------------------------------------------------------------------------------- + +DellBaseBoardType ::= INTEGER { + unknown(1), -- type is unknown + other(2), -- type is other than following values + serverBlade(3), -- type is Server Blade + connectivitySwitch(4), -- type is Connectivity Switch + systemManagementModule(5), -- type is System Management Module + processorModule(6), -- type is Processor Module + ioModule(7), -- type is I/O Module + memoryModule(8), -- type is Memory Module + daughterBoard(9), -- type is Daughter Board + motherboard(10), -- type is Motherboard + processorMemoryModule(11), -- type is Processor/Memory Module + processorIOModule(12), -- type is Processor/IO Module + interconnectBoard(13) -- type is Interconnect Board +} +DellBaseBoardFeatureFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- If 0 (zero), base board has none of the following features: + boardIsHostingBoard(1), -- board is Hosting Board + boardRequiresDaughterBoard(2), -- board requires at least one Daughter Board or Auxiliary Card + boardIsRemovable(4), -- board is Removable + boardIsReplaceable(8), -- board is Replaceable + boardIsHotSwappable(16) -- board is Hot Swappable +} + +BaseBoardTableEntry ::= SEQUENCE { + baseBoardChassisIndex DellObjectRange, + baseBoardIndex DellObjectRange, + baseBoardStateCapabilities DellStateCapabilities, + baseBoardStateSettings DellStateSettings, + baseBoardStatus DellStatus, + baseBoardFeatureFlags DellBaseBoardFeatureFlags, + baseBoardType DellBaseBoardType, + baseBoardTypeName DellString, + baseBoardLocationName DellString, + baseBoardManufacturerName DellString, + baseBoardProductName DellString, + baseBoardVersionName DellString, + baseBoardServiceTagName DellString, + baseBoardPiecePartIDName DellString, + baseBoardAssetTagName DellString +} + +baseBoardTable OBJECT-TYPE + SYNTAX SEQUENCE OF BaseBoardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0080 This object defines the Base Board Table." + ::= { chassisInformationGroup 80 } +baseBoardTableEntry OBJECT-TYPE + SYNTAX BaseBoardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0300.0080.0001 This object defines the Base Board Table Entry." + INDEX { baseBoardChassisIndex, + baseBoardIndex } + ::= { baseBoardTable 1 } + +baseBoardChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { baseBoardTableEntry 1 } +baseBoardIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0002 This attribute defines the index (one based) of the +base board." + ::= { baseBoardTableEntry 2 } +baseBoardStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0003 This attribute defines the state capabilities of the +base board." + ::= { baseBoardTableEntry 3 } +baseBoardStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0004 This attribute defines the state settings of the +base board." + ::= { baseBoardTableEntry 4 } +baseBoardStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0005 This attribute defines the status of the base board." + ::= { baseBoardTableEntry 5 } +baseBoardFeatureFlags OBJECT-TYPE + SYNTAX DellBaseBoardFeatureFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0006 This attribute defines the features of the base board." + ::= { baseBoardTableEntry 6 } +baseBoardType OBJECT-TYPE + SYNTAX DellBaseBoardType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0007 This attribute defines the type of the base board." + ::= { baseBoardTableEntry 7 } +baseBoardTypeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0008 This attribute defines the type name of the base board." + ::= { baseBoardTableEntry 8 } +baseBoardLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0009 This attribute defines the location of the base board." + ::= { baseBoardTableEntry 9 } +baseBoardManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0010 This attribute defines the name of the manufacturer +of the base board." + ::= { baseBoardTableEntry 10 } +baseBoardProductName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0011 This attribute defines the product name of the +base board." + ::= { baseBoardTableEntry 11 } +baseBoardVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0012 This attribute defines the version of the base board." + ::= { baseBoardTableEntry 12 } +baseBoardServiceTagName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0013 This attribute defines the service tag of the base board." + ::= { baseBoardTableEntry 13 } +baseBoardPiecePartIDName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0014 This attribute defines the Piece Part ID (PPID) of the +base board." + ::= { baseBoardTableEntry 14 } +baseBoardAssetTagName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0300.0080.0001.0015 This attribute defines the asset tag of the base board." + ::= { baseBoardTableEntry 15 } + + +------------------------------------------------------------------------------- +-- Operating System Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.400 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Operating System Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.400.10.1.. +------------------------------------------------------------------------------- + +OperatingSystemTableEntry ::= SEQUENCE { + operatingSystemchassisIndex DellObjectRange, + operatingSystemStateCapabilities DellStateCapabilities, + operatingSystemStateSettings DellStateSettings, + operatingSystemStatus DellStatus, + operatingSystemIsPrimary DellBoolean, + operatingSystemOperatingSystemName DisplayString (SIZE (0..255)), + operatingSystemOperatingSystemVersionName DisplayString (SIZE (0..255)) +} + +operatingSystemTable OBJECT-TYPE + SYNTAX SEQUENCE OF OperatingSystemTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0010 This object defines the Operating System Table." + ::= { operatingSystemGroup 10 } +operatingSystemTableEntry OBJECT-TYPE + SYNTAX OperatingSystemTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0010.0001 This object defines the Operating System Table Entry." + INDEX { operatingSystemchassisIndex } + ::= { operatingSystemTable 1 } + +operatingSystemchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { operatingSystemTableEntry 1 } +operatingSystemStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0002 This attribute defines the state capabilities of the +operating system." + ::= { operatingSystemTableEntry 2 } +operatingSystemStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0003 This attribute defines the state settings of the +operating system." + ::= { operatingSystemTableEntry 3 } +operatingSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0004 This attribute defines the status of the +operating system." + ::= { operatingSystemTableEntry 4 } +operatingSystemIsPrimary OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0005 This attribute defines if this operating system is the +primary operating system or not." + ::= { operatingSystemTableEntry 5 } +operatingSystemOperatingSystemName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0006 This attribute defines the name of the operating system." + ::= { operatingSystemTableEntry 6 } +operatingSystemOperatingSystemVersionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0010.0001.0007 This attribute defines the version of the operating system." + ::= { operatingSystemTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Operating System Memory Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.400.20.1.. +------------------------------------------------------------------------------- + +OperatingSystemMemoryTableEntry ::= SEQUENCE { + operatingSystemMemorychassisIndex DellObjectRange, + operatingSystemMemoryStateCapabilities DellStateCapabilities, + operatingSystemMemoryStateSettings DellStateSettings, + operatingSystemMemoryStatus DellStatus, + operatingSystemMemoryTotalPhysicalSize DellUnsigned32BitRange, + operatingSystemMemoryAvailablePhysicalSize DellUnsigned32BitRange, + operatingSystemMemoryTotalPageFileSize DellUnsigned32BitRange, + operatingSystemMemoryAvailablePageFileSize DellUnsigned32BitRange, + operatingSystemMemoryTotalVirtualSize DellUnsigned32BitRange, + operatingSystemMemoryAvailableVirtualSize DellUnsigned32BitRange +} + +operatingSystemMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF OperatingSystemMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0020 This object defines the Operating System Memory Table." + ::= { operatingSystemGroup 20 } +operatingSystemMemoryTableEntry OBJECT-TYPE + SYNTAX OperatingSystemMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0400.0020.0001 This object defines the Operating System Memory Table Entry." + INDEX { operatingSystemMemorychassisIndex } + ::= { operatingSystemMemoryTable 1 } + +operatingSystemMemorychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { operatingSystemMemoryTableEntry 1 } +operatingSystemMemoryStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0002 This attribute defines the state capabilities of the +operating system memory." + ::= { operatingSystemMemoryTableEntry 2 } +operatingSystemMemoryStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0003 This attribute defines the state settings of the +operating system memory." + ::= { operatingSystemMemoryTableEntry 3 } +operatingSystemMemoryStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0004 This attribute defines the status of the +operating system memory." + ::= { operatingSystemMemoryTableEntry 4 } +operatingSystemMemoryTotalPhysicalSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0005 This attribute defines the total physical memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 5 } +operatingSystemMemoryAvailablePhysicalSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0006 This attribute defines the available physical memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 6 } +operatingSystemMemoryTotalPageFileSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0007 This attribute defines the total page file memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 7 } +operatingSystemMemoryAvailablePageFileSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0008 This attribute defines the available page file memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 8 } +operatingSystemMemoryTotalVirtualSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0009 This attribute defines the total virtual memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 9 } +operatingSystemMemoryAvailableVirtualSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0400.0020.0001.0010 This attribute defines the available virtual memory +for the operating system memory in KBytes." + ::= { operatingSystemMemoryTableEntry 10 } + + +------------------------------------------------------------------------------- +-- System Resource Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System Resource Map Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.10.1... +------------------------------------------------------------------------------- + +DellSystemResourceMapType ::= INTEGER { + other(1), -- type is other than following values + unknown(2), -- type is unknown + typeOne(3) -- type is type 1 (one) +} + +SystemResourceMapTableEntry ::= SEQUENCE { + systemResourceMapchassisIndex DellObjectRange, + systemResourceMapIndex DellObjectRange, + systemResourceMapStateCapabilities DellStateCapabilities, + systemResourceMapStateSettings DellStateSettings, + systemResourceMapStatus DellStatus, + systemResourceMapType DellSystemResourceMapType +} + +systemResourceMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceMapTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0010 This object defines the System Resource Map Table." + ::= { systemResourceGroup 10 } +systemResourceMapTableEntry OBJECT-TYPE + SYNTAX SystemResourceMapTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0010.0001 This object defines the System Resource Map Table Entry." + INDEX { systemResourceMapchassisIndex, + systemResourceMapIndex } + ::= { systemResourceMapTable 1 } + +systemResourceMapchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceMapTableEntry 1 } +systemResourceMapIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0002 This attribute defines the index (one based) of the +system resource map." + ::= { systemResourceMapTableEntry 2 } +systemResourceMapStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0003 This attribute defines the state capabilities of the +system resource map." + ::= { systemResourceMapTableEntry 3 } +systemResourceMapStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0004 This attribute defines the state settings of the +system resource map." + ::= { systemResourceMapTableEntry 4 } +systemResourceMapStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0005 This attribute defines the status of the +system resource map." + ::= { systemResourceMapTableEntry 5 } +systemResourceMapType OBJECT-TYPE + SYNTAX DellSystemResourceMapType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0010.0001.0006 This attribute defines the type of the system resource map." + ::= { systemResourceMapTableEntry 6 } + + +------------------------------------------------------------------------------- +-- System Resource Owner Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.20.1... +------------------------------------------------------------------------------- + +DellResourceOwnerInterfaceType ::= INTEGER { + typeIsOther(1), -- type is other than following values + typeIsUnknown(2), -- type is unknown + typeIsInternal(3), -- type is Internal + typeIsISA(4), -- type is ISA Bus + typeIsEISA(5), -- type is EISA Bus + typeIsMCA(6), -- type is MCA Bus + typeIsTurboChannel(7), -- type is TurboChannel Bus + typeIsPCI(8) -- type is PCI Bus +} + +SystemResourceOwnerTableEntry ::= SEQUENCE { + systemResourceOwnerchassisIndex DellObjectRange, + systemResourceOwnerIndex DellObjectRange, + systemResourceOwnerStateCapabilities DellStateCapabilities, + systemResourceOwnerStateSettings DellStateSettings, + systemResourceOwnerStatus DellStatus, + systemResourceOwnerInterfaceType DellResourceOwnerInterfaceType, + systemResourceMapIndexReference DellObjectRange, + systemResourceOwnerDescriptionName DellString, + systemResourceOwnerInterfaceInstance DellObjectRange +} + +systemResourceOwnerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceOwnerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0020 This object defines the System Resource Owner Table." + ::= { systemResourceGroup 20 } +systemResourceOwnerTableEntry OBJECT-TYPE + SYNTAX SystemResourceOwnerTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0020.0001 This object defines the System Resource Owner Table Entry." + INDEX { systemResourceOwnerchassisIndex, + systemResourceOwnerIndex } + ::= { systemResourceOwnerTable 1 } + +systemResourceOwnerchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceOwnerTableEntry 1 } +systemResourceOwnerIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0002 This attribute defines the index of (one based) of the +system resource owner." + ::= { systemResourceOwnerTableEntry 2 } +systemResourceOwnerStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0003 This attribute defines the state capabilities of the +system resource owner." + ::= { systemResourceOwnerTableEntry 3 } +systemResourceOwnerStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0004 This attribute defines the state settings of the +system resource owner." + ::= { systemResourceOwnerTableEntry 4 } +systemResourceOwnerStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0005 This attribute defines the status of the +system resource owner." + ::= { systemResourceOwnerTableEntry 5 } +systemResourceOwnerInterfaceType OBJECT-TYPE + SYNTAX DellResourceOwnerInterfaceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0006 This attribute defines the interface type of the +system resource owner." + ::= { systemResourceOwnerTableEntry 6 } +systemResourceMapIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0007 This attribute defines the index to the associated +system resource map." + ::= { systemResourceOwnerTableEntry 7 } +systemResourceOwnerDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0008 This attribute defines the description of the +system resource owner." + ::= { systemResourceOwnerTableEntry 8 } +systemResourceOwnerInterfaceInstance OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0020.0001.0009 This attribute defines the index to the associated +system resource owner interface type." + ::= { systemResourceOwnerTableEntry 9 } + + +------------------------------------------------------------------------------- +-- System Resource I/O Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.30.1... +------------------------------------------------------------------------------- + +DellResourceShareDisposition ::= INTEGER { + shareIsOther(1), -- disposition is other than following values + shareIsUnknown(2), -- disposition is unknown + shareIsDeviceExclusive(3), -- disposition is Device Exclusive + shareIsDriverExclusive(4), -- disposition is Driver Exclusive + shareIsShared(5) -- disposition is Shared +} + +SystemResourceIOPortTableEntry ::= SEQUENCE { + systemResourceIOPortchassisIndex DellObjectRange, + systemResourceIOPortIndex DellObjectRange, + systemResourceIOPortStateCapabilities DellStateCapabilities, + systemResourceIOPortStateSettings DellStateSettings, + systemResourceIOPortStatus DellStatus, + systemResourceIOPortOwnerIndexReference DellObjectRange, + systemResourceIOPortShareDisposition DellResourceShareDisposition, + systemResourceIOPortStartingAddress DellUnsigned64BitRange, + systemResourceIOPortEndingAddress DellUnsigned64BitRange +} + +systemResourceIOPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceIOPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0030 This object defines the System Resource I/O Port Table." + ::= { systemResourceGroup 30 } +systemResourceIOPortTableEntry OBJECT-TYPE + SYNTAX SystemResourceIOPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0030.0001 This object defines the System Resource I/O Port Table Entry." + INDEX { systemResourceIOPortchassisIndex, + systemResourceIOPortIndex } + ::= { systemResourceIOPortTable 1 } + +systemResourceIOPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceIOPortTableEntry 1 } +systemResourceIOPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0002 This attribute defines the index (one based) of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 2 } +systemResourceIOPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0003 This attribute defines the state capabilities of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 3 } +systemResourceIOPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0004 This attribute defines the state settings of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 4 } +systemResourceIOPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0005 This attribute defines the status of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 5 } +systemResourceIOPortOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource I/O port." + ::= { systemResourceIOPortTableEntry 6 } +systemResourceIOPortShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0007 This attribute defines the share disposition of the +system resource I/O port." + ::= { systemResourceIOPortTableEntry 7 } +systemResourceIOPortStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0008 This attribute defines the 64-bit starting address +of the system resource I/O port." + ::= { systemResourceIOPortTableEntry 8 } +systemResourceIOPortEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0030.0001.0009 This attribute defines the 64-bit ending address +of the system resource I/O port." + ::= { systemResourceIOPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- System Resource Memory Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.40.1... +------------------------------------------------------------------------------- + +DellResourceMemoryFlags ::= INTEGER { + memoryIsReadOnly(1), -- memory is read-only + memoryIsWriteOnly(2), -- memory is write-only + memoryIsReadAndWrite(3), -- memory is read-write + memoryIsPreFetchable(4), -- memory is prefetchable + memoryIsCombinedWritable(8), -- memory is combined writable + memoryIsF24(16) -- memory is F24 +} + +SystemResourceMemoryTableEntry ::= SEQUENCE { + systemResourceMemorychassisIndex DellObjectRange, + systemResourceMemoryIndex DellObjectRange, + systemResourceMemoryStateCapabilities DellStateCapabilities, + systemResourceMemoryStateSettings DellStateSettings, + systemResourceMemoryStatus DellStatus, + systemResourceMemoryOwnerIndexReference DellObjectRange, + systemResourceMemoryShareDisposition DellResourceShareDisposition, + systemResourceMemoryStartingAddress DellUnsigned64BitRange, + systemResourceMemoryEndingAddress DellUnsigned64BitRange, + systemResourceMemoryFlags DellResourceMemoryFlags +} + +systemResourceMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0040 This object defines the System Resource Memory Table." + ::= { systemResourceGroup 40 } +systemResourceMemoryTableEntry OBJECT-TYPE + SYNTAX SystemResourceMemoryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0040.0001 This object defines the System Resource Memory Table Entry." + INDEX { systemResourceMemorychassisIndex, + systemResourceMemoryIndex } + ::= { systemResourceMemoryTable 1 } + +systemResourceMemorychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceMemoryTableEntry 1 } +systemResourceMemoryIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0002 This attribute defines the index (one based) of the +system resource memory." + ::= { systemResourceMemoryTableEntry 2 } +systemResourceMemoryStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0003 This attribute defines the state capabilities of the +system resource memory." + ::= { systemResourceMemoryTableEntry 3 } +systemResourceMemoryStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0004 This attribute defines the state settings of the +system resource memory." + ::= { systemResourceMemoryTableEntry 4 } +systemResourceMemoryStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0005 This attribute defines the status of the +system resource memory." + ::= { systemResourceMemoryTableEntry 5 } +systemResourceMemoryOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource memory." + ::= { systemResourceMemoryTableEntry 6 } +systemResourceMemoryShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0007 This attribute defines the share disposition of the +system resource memory." + ::= { systemResourceMemoryTableEntry 7 } +systemResourceMemoryStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0008 This attribute defines the 64-bit starting address +of the system resource memory." + ::= { systemResourceMemoryTableEntry 8 } +systemResourceMemoryEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0009 This attribute defines the 64-bit ending address +of the system resource memory." + ::= { systemResourceMemoryTableEntry 9 } +systemResourceMemoryFlags OBJECT-TYPE + SYNTAX DellResourceMemoryFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0040.0001.0010 This attribute defines the permission flags of the +system resource memory." + ::= { systemResourceMemoryTableEntry 10 } + + +------------------------------------------------------------------------------- +-- System Resource Interrupts Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.50.1... +------------------------------------------------------------------------------- + +DellResourceInterruptType ::= INTEGER { + interruptIsLevelSensitive(1), -- type is Level Sensitive + interruptIsLatched(2) -- type is Latched +} +DellResourceInterruptTrigger ::= INTEGER { + interruptIsActiveWhenLow(1), -- trigger is active on low signal + interruptIsActiveWhenHigh(2) -- trigger is active on high signal +} + +SystemResourceInterruptTableEntry ::= SEQUENCE { + systemResourceInterruptchassisIndex DellObjectRange, + systemResourceInterruptIndex DellObjectRange, + systemResourceInterruptStateCapabilities DellStateCapabilities, + systemResourceInterruptStateSettings DellStateSettings, + systemResourceInterruptStatus DellStatus, + systemResourceInterruptOwnerIndexReference DellObjectRange, + systemResourceInterruptShareDisposition DellResourceShareDisposition, + systemResourceInterruptLevel DellUnsigned32BitRange, + systemResourceInterruptType DellResourceInterruptType, + systemResourceInterruptTrigger DellResourceInterruptTrigger +} + +systemResourceInterruptTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceInterruptTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0050 This object defines the System Resource Interrupts Table." + ::= { systemResourceGroup 50 } +systemResourceInterruptTableEntry OBJECT-TYPE + SYNTAX SystemResourceInterruptTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0050.0001 This object defines the System Resource Interrupts Table Entry." + INDEX { systemResourceInterruptchassisIndex, + systemResourceInterruptIndex } + ::= { systemResourceInterruptTable 1 } + +systemResourceInterruptchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceInterruptTableEntry 1 } +systemResourceInterruptIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0002 This attribute defines the index (one based) of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 2 } +systemResourceInterruptStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0003 This attribute defines the state capabilities of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 3 } +systemResourceInterruptStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0004 This attribute defines the state settings of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 4 } +systemResourceInterruptStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0005 This attribute defines the status of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 5 } +systemResourceInterruptOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource interrupt." + ::= { systemResourceInterruptTableEntry 6 } +systemResourceInterruptShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0007 This attribute defines the share disposition of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 7 } +systemResourceInterruptLevel OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0008 This attribute defines the interrupt request level (IRQ) +of the system resource interrupt." + ::= { systemResourceInterruptTableEntry 8 } +systemResourceInterruptType OBJECT-TYPE + SYNTAX DellResourceInterruptType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0009 This attribute defines the interrupt type of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 9 } +systemResourceInterruptTrigger OBJECT-TYPE + SYNTAX DellResourceInterruptTrigger + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0050.0001.0010 This attribute defines the interrupt trigger of the +system resource interrupt." + ::= { systemResourceInterruptTableEntry 10 } + + +------------------------------------------------------------------------------- +-- System Resource DMA Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.500.60.1... +------------------------------------------------------------------------------- + +DellResourceDMATransferWidth ::= INTEGER { + dmaTransferWidthIsOther(1), -- width is other than following values + dmaTransferWidthIsunknown(2), -- width is unknown + dmaTransferWidthIs8Bits(3), -- width is 8 bits + dmaTransferWidthIs16Bits(4), -- width is 16 bits + dmaTransferWidthIs32Bits(5), -- width is 32 bits + dmaTransferWidthIs64Bits(6), -- width is 64 bits + dmaTransferWidthIs128Bits(7) -- width is 128 bits +} +DellResourceDMABusMaster ::= INTEGER { + dmaIsOther(1), -- bus master capability is other than following values + dmaIsUnknown(2), -- bus master capability is unknown + dmaIsNotABusmaster(3), -- DMA has no bus master capability + dmaIsABusmaster(4) -- DMA has bus master capability +} + +SystemResourceDMATableEntry ::= SEQUENCE { + systemResourceDMAchassisIndex DellObjectRange, + systemResourceDMAIndex DellObjectRange, + systemResourceDMAStateCapabilities DellStateCapabilities, + systemResourceDMAStateSettings DellStateSettings, + systemResourceDMAStatus DellStatus, + systemResourceDMAOwnerIndexReference DellObjectRange, + systemResourceDMAShareDisposition DellResourceShareDisposition, + systemResourceDMAMaximumTransferSize DellUnsigned32BitRange, + systemResourceDMATransferWidth DellResourceDMATransferWidth, + systemResourceDMABusMaster DellResourceDMABusMaster +} + +systemResourceDMATable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemResourceDMATableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0060 This object defines the System Resource DMA Table." + ::= { systemResourceGroup 60 } +systemResourceDMATableEntry OBJECT-TYPE + SYNTAX SystemResourceDMATableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0500.0060.0001 This object defines the System Resource DMA Table Entry." + INDEX { systemResourceDMAchassisIndex, + systemResourceDMAIndex } + ::= { systemResourceDMATable 1 } + +systemResourceDMAchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemResourceDMATableEntry 1 } +systemResourceDMAIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0002 This attribute defines the index (one based) of the +system resource DMA." + ::= { systemResourceDMATableEntry 2 } +systemResourceDMAStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0003 This attribute defines the state capabilities of the +system resource DMA." + ::= { systemResourceDMATableEntry 3 } +systemResourceDMAStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0004 This attribute defines the state settings of the +system resource DMA." + ::= { systemResourceDMATableEntry 4 } +systemResourceDMAStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0005 This attribute defines the status of the +system resource DMA." + ::= { systemResourceDMATableEntry 5 } +systemResourceDMAOwnerIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0006 This attribute defines the index to the associated +system resource owner for this system resource DMA." + ::= { systemResourceDMATableEntry 6 } +systemResourceDMAShareDisposition OBJECT-TYPE + SYNTAX DellResourceShareDisposition + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0007 This attribute defines the share disposition of the +system resource DMA." + ::= { systemResourceDMATableEntry 7 } +systemResourceDMAMaximumTransferSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0008 This attribute defines the maximum size of a memory +transfer in bytes for the system resource DMA." + ::= { systemResourceDMATableEntry 8 } +systemResourceDMATransferWidth OBJECT-TYPE + SYNTAX DellResourceDMATransferWidth + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0009 This attribute defines the tranfer width of the +system resource DMA." + ::= { systemResourceDMATableEntry 9 } +systemResourceDMABusMaster OBJECT-TYPE + SYNTAX DellResourceDMABusMaster + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0500.0060.0001.0010 This attribute defines the bus master capabilities +of the system resource DMA." + ::= { systemResourceDMATableEntry 10 } + + +------------------------------------------------------------------------------- +-- Power Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Power Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.10.1... +------------------------------------------------------------------------------- + +PowerUnitTableEntry ::= SEQUENCE { + powerUnitchassisIndex DellObjectRange, + powerUnitIndex DellObjectRange, + powerUnitStateCapabilities DellStateCapabilities, + powerUnitStateSettings DellStateSettings, + powerUnitRedundancyStatus DellStatusRedundancy, + powerSupplyCountForRedundancy DellObjectRange, + powerUnitName DellString, + powerUnitStatus DellStatus +} + +powerUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0010 This object defines the Power Unit Table." + ::= { powerGroup 10 } +powerUnitTableEntry OBJECT-TYPE + SYNTAX PowerUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0010.0001 This object defines the Power Unit Table Entry." + INDEX { powerUnitchassisIndex, + powerUnitIndex } + ::= { powerUnitTable 1 } + +powerUnitchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { powerUnitTableEntry 1 } +powerUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0002 This attribute defines the index (one based) of the +power unit." + ::= { powerUnitTableEntry 2 } +powerUnitStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0003 This attribute defines the state capabilities of the +power unit." + ::= { powerUnitTableEntry 3 } +powerUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0004 This attribute defines the state settings of the +power unit." + ::= { powerUnitTableEntry 4 } +powerUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0005 This attribute defines the redundancy status of the +power unit." + ::= { powerUnitTableEntry 5 } +powerSupplyCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0006 This attribute defines the total number of power supplies +required for this power unit to have full redundancy." + ::= { powerUnitTableEntry 6 } +powerUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0007 This attribute defines the name of the power unit." + ::= { powerUnitTableEntry 7 } +powerUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0010.0001.0008 This attribute defines the status of the power unit." + ::= { powerUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Power Supply Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.12.1... +------------------------------------------------------------------------------- + +DellPowerSupplyStateCapabilitiesUnique ::= INTEGER { + -- If 0 (zero), there are no power supply state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + onlineCapable(2), -- power supply can be enabled (online) or disabled (offline) + notReadyCapable(4) -- power supply can be not ready +} +DellPowerSupplyStateSettingsUnique ::= INTEGER { + -- If 0 (zero), there are no power supply state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + onLine(2), -- power supply is enabled (online) + notReady(4), -- power supply is not ready + fanFailure(8), -- power supply fan has failed + onlineAndFanFailure(10), + powerSupplyIsON(16), -- power supply is supplying power + powerSupplyIsOK(32), -- power supply is indicating it is OK + acSwitchIsON(64), -- power supply is indicating AC power switch is on + onlineandAcSwitchIsON(66), + acPowerIsON(128), -- power supply is indicating AC power is on + onlineAndAcPowerIsON(130), + onlineAndPredictiveFailure(210), + acPowerAndSwitchAreOnPowerSupplyIsOnIsOkAndOnline(242) +} +DellPowerSupplyType ::= INTEGER { + powerSupplyTypeIsOther(1), -- type is other than following values + powerSupplyTypeIsUnknown(2), -- type is unknown + powerSupplyTypeIsLinear(3), -- type is Linear + powerSupplyTypeIsSwitching(4), -- type is Switching + powerSupplyTypeIsBattery(5), -- type is Battery + powerSupplyTypeIsUPS(6), -- type is Uninterruptible Power Supply + powerSupplyTypeIsConverter(7), -- type is Converter + powerSupplyTypeIsRegulator(8), -- type is Regulator + powerSupplyTypeIsAC(9), -- type is AC + powerSupplyTypeIsDC(10), -- type is DC + powerSupplyTypeIsVRM(11) -- type is VRM +} +DellPowerSupplySensorState ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + presenceDetected(1), -- state is Presence detected + psFailureDetected(2), -- state is PS Failure detected + predictiveFailure(4), -- state is Predictive Failure + psACLost(8), -- state is PS AC lost + acLostOrOutOfRange(16), -- state is AC lost or out-of-range + acOutOfRangeButPresent(32), -- state is AC out-of-range, but present + configurationError(64) -- state is Configuration error +} +DellPowerSupplyConfigurationErrorType ::= INTEGER { + vendorMismatch(1), -- error type is Vendor mismatch + revisionMismatch(2), -- error type is Revision mismatch + processorMissing(3) -- error type is Processor missing +} + +PowerSupplyTableEntry ::= SEQUENCE { + powerSupplychassisIndex DellObjectRange, + powerSupplyIndex DellObjectRange, + powerSupplyStateCapabilitiesUnique DellPowerSupplyStateCapabilitiesUnique, + powerSupplyStateSettingsUnique DellPowerSupplyStateSettingsUnique, + powerSupplyStatus DellStatus, + powerSupplyOutputWatts DellSigned32BitRange, + powerSupplyType DellPowerSupplyType, + powerSupplyLocationName DellString, + powerSupplyInputVoltage DellSigned32BitRange, + powerSupplypowerUnitIndexReference DellObjectRange, + powerSupplySensorState DellPowerSupplySensorState, + powerSupplyConfigurationErrorType DellPowerSupplyConfigurationErrorType, + powerSupplyPowerMonitorCapable DellBoolean +} + +powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0012 This object defines the Power Supply Table." + ::= { powerGroup 12 } +powerSupplyTableEntry OBJECT-TYPE + SYNTAX PowerSupplyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0012.0001 This object defines the Power Supply Table Entry." + INDEX { powerSupplychassisIndex, + powerSupplyIndex } + ::= { powerSupplyTable 1 } + +powerSupplychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { powerSupplyTableEntry 1 } +powerSupplyIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0002 This attribute defines the index (one based) of the +power supply." + ::= { powerSupplyTableEntry 2 } +powerSupplyStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellPowerSupplyStateCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0003 This attribute defines the state capabilities of the +power supply." + ::= { powerSupplyTableEntry 3 } +powerSupplyStateSettingsUnique OBJECT-TYPE + SYNTAX DellPowerSupplyStateSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0004 This attribute defines the state settings of the +power supply." + ::= { powerSupplyTableEntry 4 } +powerSupplyStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0005 This attribute defines the status of the power supply." + ::= { powerSupplyTableEntry 5 } +powerSupplyOutputWatts OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0006 This attribute defines the maximum sustained output +wattage of the power supply, in tenths of watts." + ::= { powerSupplyTableEntry 6 } +powerSupplyType OBJECT-TYPE + SYNTAX DellPowerSupplyType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0007 This attribute defines the type of the power supply." + ::= { powerSupplyTableEntry 7 } +powerSupplyLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0008 This attribute defines the location of the power supply." + ::= { powerSupplyTableEntry 8 } +powerSupplyInputVoltage OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0009 This attribute defines the input voltage to the power +supply, in volts." + ::= { powerSupplyTableEntry 9 } +powerSupplypowerUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0010 This attribute defines the index to the associated +power unit if the power supply is part of a power unit." + ::= { powerSupplyTableEntry 10 } +powerSupplySensorState OBJECT-TYPE + SYNTAX DellPowerSupplySensorState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0011 This attribute defines the state reported by the +power supply sensor. This attribute supplements the attribute +powerSupplyStateSettingsUnique." + ::= { powerSupplyTableEntry 11 } +powerSupplyConfigurationErrorType OBJECT-TYPE + SYNTAX DellPowerSupplyConfigurationErrorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0012 This attribute defines the type of configuration error +reported by the power supply sensor. When the configurationError bit is on +in the value for the attribute powerSupplySensorState, a value is returned +for this attribute; otherwise, a value is not returned for this attribute." + ::= { powerSupplyTableEntry 12 } +powerSupplyPowerMonitorCapable OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0012.0001.0013 This attribute defines a boolean value that reports +whether the power supply is capable of monitoring power consumption." + ::= { powerSupplyTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Voltage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.20.1... +------------------------------------------------------------------------------- + +DellVoltageType ::= INTEGER { + voltageProbeTypeIsOther(1), -- type is other than following values + voltageProbeTypeIsUnknown(2), -- type is unknown + voltageProbeTypeIs1Point5Volt(3), -- type is 1.5 volt probe + voltageProbeTypeIs3Point3Volt(4), -- type is 3.3 volt probe + voltageProbeTypeIs5Volt(5), -- type is 5 volt probe + voltageProbeTypeIsMinus5Volt(6), -- type is -5 volt probe + voltageProbeTypeIs12Volt(7), -- type is 12 volt probe + voltageProbeTypeIsMinus12Volt(8), -- type is -12 volt probe + voltageProbeTypeIsIO(9), -- type is I/O probe + voltageProbeTypeIsCore(10), -- type is Core probe + voltageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + voltageProbeTypeIsBattery(12), -- type is Battery probe + voltageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + voltageProbeTypeIs2Point5Volt(14), -- type is 2.5 volt probe + voltageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + voltageProbeTypeIsDiscrete(16) -- type is voltage probe with discrete reading +} +DellVoltageDiscreteReading ::= INTEGER { + voltageIsGood(1), -- voltage reading is Good + voltageIsBad(2) -- voltage reading is Bad +} + +VoltageProbeTableEntry ::= SEQUENCE { + voltageProbechassisIndex DellObjectRange, + voltageProbeIndex DellObjectRange, + voltageProbeStateCapabilities DellStateCapabilities, + voltageProbeStateSettings DellStateSettings, + voltageProbeStatus DellStatusProbe, + voltageProbeReading DellSigned32BitRange, + voltageProbeType DellVoltageType, + voltageProbeLocationName DellString, + voltageProbeUpperNonRecoverableThreshold DellSigned32BitRange, + voltageProbeUpperCriticalThreshold DellSigned32BitRange, + voltageProbeUpperNonCriticalThreshold DellSigned32BitRange, + voltageProbeLowerNonCriticalThreshold DellSigned32BitRange, + voltageProbeLowerCriticalThreshold DellSigned32BitRange, + voltageProbeLowerNonRecoverableThreshold DellSigned32BitRange, + voltageProbeProbeCapabilities DellProbeCapabilities, + voltageProbeDiscreteReading DellVoltageDiscreteReading +} + +voltageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF VoltageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0020 This object defines the Voltage Probe Table." + ::= { powerGroup 20 } +voltageProbeTableEntry OBJECT-TYPE + SYNTAX VoltageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0020.001 This object defines the Voltage Probe Table Entry." + INDEX { voltageProbechassisIndex, + voltageProbeIndex } + ::= { voltageProbeTable 1 } + +voltageProbechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { voltageProbeTableEntry 1 } +voltageProbeIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0002 This attribute defines the index (one based) of the +voltage probe." + ::= { voltageProbeTableEntry 2 } +voltageProbeStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0003 This attribute defines the state capabilities of the +voltage probe." + ::= { voltageProbeTableEntry 3 } +voltageProbeStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0004 This attribute defines the state settings of the +voltage probe." + ::= { voltageProbeTableEntry 4 } +voltageProbeStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0005 This attribute defines the probe status of the +voltage probe." + ::= { voltageProbeTableEntry 5 } +voltageProbeReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0006 This attribute defines the reading for a voltage +probe of type other than voltageProbeTypeIsDiscrete. When the value +for voltageProbeType is other than voltageProbeTypeIsDiscrete, the value +returned for this attribute is the voltage that the probe is reading +in millivolts. When the value for voltageProbeType is +voltageProbeTypeIsDiscrete, a value is not returned for this attribute." + ::= { voltageProbeTableEntry 6 } +voltageProbeType OBJECT-TYPE + SYNTAX DellVoltageType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0007 This attribute defines the type of the voltage probe." + ::= { voltageProbeTableEntry 7 } +voltageProbeLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0008 This attribute defines the location name of the +voltage probe." + ::= { voltageProbeTableEntry 8 } +voltageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0009 This attribute defines the upper nonrecoverable threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 9 } +voltageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0010 This attribute defines the upper critical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 10 } +voltageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0011 This attribute defines the upper noncritical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 11 } +voltageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0012 This attribute defines the lower noncritical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 12 } +voltageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0013 This attribute defines the lower critical threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 13 } +voltageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0014 This attribute defines the lower nonrecoverable threshold +of the voltage probe. The value is an integer representing the voltage +of the threshold in millivolts." + ::= { voltageProbeTableEntry 14 } +voltageProbeProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0015 This attribute defines the probe capabilities of the +voltage probe." + ::= { voltageProbeTableEntry 15 } +voltageProbeDiscreteReading OBJECT-TYPE + SYNTAX DellVoltageDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0020.0001.0016 This attribute defines the reading for a voltage +probe of type voltageProbeTypeIsDiscrete. When the value for voltageProbeType +is other than voltageProbeTypeIsDiscrete, a value is not returned for this +attribute. When the value for voltageProbeType is voltageProbeTypeIsDiscrete, +the value returned for this attribute is the discrete reading for the probe." + ::= { voltageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- Amperage Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.30.1... +------------------------------------------------------------------------------- + +DellAmperageProbeType ::= INTEGER { + amperageProbeTypeIsOther(1), -- type is other than following values + amperageProbeTypeIsUnknown(2), -- type is unknown + amperageProbeTypeIs1Point5Volt(3), -- type is 1.5 amperage probe + amperageProbeTypeIs3Point3volt(4), -- type is 3.3 amperage probe + amperageProbeTypeIs5Volt(5), -- type is 5 amperage probe + amperageProbeTypeIsMinus5Volt(6), -- type is -5 amperage probe + amperageProbeTypeIs12Volt(7), -- type is 12 amperage probe + amperageProbeTypeIsMinus12Volt(8), -- type is -12 amperage probe + amperageProbeTypeIsIO(9), -- type is I/O probe + amperageProbeTypeIsCore(10), -- type is Core probe + amperageProbeTypeIsFLEA(11), -- type is FLEA (standby) probe + amperageProbeTypeIsBattery(12), -- type is Battery probe + amperageProbeTypeIsTerminator(13), -- type is SCSI Termination probe + amperageProbeTypeIs2Point5Volt(14), -- type is 2.5 amperage probe + amperageProbeTypeIsGTL(15), -- type is GTL (ground termination logic) probe + amperageProbeTypeIsDiscrete(16), -- type is amperage probe with discrete reading + amperageProbeTypeIsPowerSupplyAmps(23), -- type is Power Supply probe with reading in Amps + amperageProbeTypeIsPowerSupplyWatts(24), -- type is Power Supply probe with reading in Watts + amperageProbeTypeIsSystemAmps(25), -- type is System probe with reading in Amps + amperageProbeTypeIsSystemWatts(26) -- type is System probe with reading in Watts +} +DellAmperageDiscreteReading ::= INTEGER { + amperageIsGood(1), -- amperage reading is Good + amperageIsBad(2) -- amperage reading is Bad +} + +AmperageProbeTableEntry ::= SEQUENCE { + amperageProbechassisIndex DellObjectRange, + amperageProbeIndex DellObjectRange, + amperageProbeStateCapabilities DellStateCapabilities, + amperageProbeStateSettings DellStateSettings, + amperageProbeStatus DellStatusProbe, + amperageProbeReading DellSigned32BitRange, + amperageProbeType DellAmperageProbeType, + amperageProbeLocationName DellString, + amperageProbeUpperNonRecoverableThreshold DellSigned32BitRange, + amperageProbeUpperCriticalThreshold DellSigned32BitRange, + amperageProbeUpperNonCriticalThreshold DellSigned32BitRange, + amperageProbeLowerNonCriticalThreshold DellSigned32BitRange, + amperageProbeLowerCriticalThreshold DellSigned32BitRange, + amperageProbeLowerNonRecoverableThreshold DellSigned32BitRange, + amperageProbeProbeCapabilities DellProbeCapabilities, + amperageProbeDiscreteReading DellAmperageDiscreteReading +} + +amperageProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmperageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0030 This object defines the Amperage Probe Table." + ::= { powerGroup 30 } +amperageProbeTableEntry OBJECT-TYPE + SYNTAX AmperageProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0030.0001 This object defines the Amperage Probe Table Entry." + INDEX { amperageProbechassisIndex, + amperageProbeIndex } + ::= { amperageProbeTable 1 } + +amperageProbechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0001 This attribute defines the index (one based) of the +chassis." + ::= { amperageProbeTableEntry 1 } +amperageProbeIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0002 This attribute defines the index (one based) of the +amperage probe." + ::= { amperageProbeTableEntry 2 } +amperageProbeStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0003 This attribute defines the state capabilities of the +amperage probe." + ::= { amperageProbeTableEntry 3 } +amperageProbeStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0004 This attribute defines the state settings of the +amperage probe." + ::= { amperageProbeTableEntry 4 } +amperageProbeStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0005 This attribute defines the probe status of the +amperage probe." + ::= { amperageProbeTableEntry 5 } +amperageProbeReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0006 This attribute defines the reading for an amperage +probe of type other than amperageProbeTypeIsDiscrete. + +When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyAmps +or amperageProbeTypeIsSystemAmps, the value returned for this attribute +is the power usage that the probe is reading in tenths of Amps. + +When the value for amperageProbeType is amperageProbeTypeIsPowerSupplyWatts +or amperageProbeTypeIsSystemWatts, the value returned for this attribute +is the power usage that the probe is reading in Watts. + +When the value for amperageProbeType is other than amperageProbeTypeIsDiscrete, +amperageProbeTypeIsPowerSupplyAmps, amperageProbeTypeIsPowerSupplyWatts, +amperageProbeTypeIsSystemAmps or amperageProbeTypeIsSystemWatts, +the value returned for this attribute is the amperage that the probe is +reading in Milliamps. + +When the value for amperageProbeType is amperageProbeTypeIsDiscrete, +a value is not returned for this attribute." + ::= { amperageProbeTableEntry 6 } +amperageProbeType OBJECT-TYPE + SYNTAX DellAmperageProbeType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0007 This attribute defines the type of the amperage probe." + ::= { amperageProbeTableEntry 7 } +amperageProbeLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0008 This attribute defines the location of the amperage probe." + ::= { amperageProbeTableEntry 8 } +amperageProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0009 This attribute defines the upper nonrecoverable threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 9 } +amperageProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0010 This attribute defines the upper critical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 10 } +amperageProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0011 This attribute defines the upper noncritical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 11 } +amperageProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0012 This attribute defines the lower noncritical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 12 } +amperageProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0013 This attribute defines the lower critical threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 13 } +amperageProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0014 This attribute defines the lower nonrecoverable threshold +of the amperage probe. The value is an integer representing the amperage +of the threshold in milliamps." + ::= { amperageProbeTableEntry 14 } +amperageProbeProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0015 This attribute defines the probe capabilities of the +amperage probe." + ::= { amperageProbeTableEntry 15 } +amperageProbeDiscreteReading OBJECT-TYPE + SYNTAX DellAmperageDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0030.0001.0016 This attribute defines the reading for an amperage +probe of type amperageProbeTypeIsDiscrete. When the value for amperageProbeType +is other than amperageProbeTypeIsDiscrete, a value is not returned for this +attribute. When the value for amperageProbeType is amperageProbeTypeIsDiscrete, +the value returned for this attribute is the discrete reading for the probe." + ::= { amperageProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- AC Power Switch Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.40.1... +------------------------------------------------------------------------------- + +DellACPowerSwitchCapabilities ::= INTEGER { + -- If 0 (zero), there are no AC Power Switch capabilities + -- Note: These values are bit masks, so combination values are possible. + unknownCapabilities(1), -- capabilities are unknown + -- The objects capabilities allow it to be set to: + inputSourceCord1NoReturnCapable(2), -- input source can be cord 1, with no return + inputSourceCord1ReturnCapable(4), -- input source can be cord 1, with return + inputSourceCord2NoReturnCapable(8), -- input source can be cord 2, with no return + inputSourceCord1NoReturnCord1ReturnAndCord2NoReturnCapable(14), + inputSourceCord2ReturnCapable(16), -- input source can be cord 2, with return + inputSourceAllExceptSharedCapable(30), + inputSourceSharedCapable(32), -- input source can be shared + inputSourceAllCapable(62) +} +DellACPowerSwitchSettings ::= INTEGER { + -- If 0 (zero), there are no AC Power Switch settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- settings are unknown + -- Input source settings are mutually-exclusive + inputSourceCord1NoReturn(2), -- input source is cord 1, with no return + inputSourceCord1Return(4), -- input source is cord 1, with return + inputSourceCord2NoReturn(8), -- input source is cord 2, with no return + inputSourceCord2Return(16), -- input source is cord 2, with return + inputSourceShared(32) -- input source is shared +} +DellACPowerSwitchRedundancyMode ::= INTEGER { + nonRedundant(1), -- AC power switch not expecting redundancy + redundant(2) -- AC power switch is expecting redundancy +} + +ACPowerSwitchTableEntry ::= SEQUENCE { + aCPowerSwitchchassisIndex DellObjectRange, + aCPowerSwitchIndex DellObjectRange, + aCPowerSwitchCapabilities DellACPowerSwitchCapabilities, + aCPowerSwitchSettings DellACPowerSwitchSettings, + aCPowerSwitchRedundancyStatus DellStatusRedundancy, + aCPowerCordCountForRedundancy DellObjectRange, + aCPowerSwitchName DellString, + aCPowerSwitchRedundancyMode DellACPowerSwitchRedundancyMode, + aCPowerSwitchStatus DellStatus +} + +aCPowerSwitchTable OBJECT-TYPE + SYNTAX SEQUENCE OF ACPowerSwitchTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0040 This object defines the AC Power Switch Table." + ::= { powerGroup 40 } +aCPowerSwitchTableEntry OBJECT-TYPE + SYNTAX ACPowerSwitchTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0040.0001 This object defines the AC Power Switch Table Entry." + INDEX { aCPowerSwitchchassisIndex, + aCPowerSwitchIndex } + ::= { aCPowerSwitchTable 1 } + +aCPowerSwitchchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { aCPowerSwitchTableEntry 1 } +aCPowerSwitchIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0002 This attribute defines the index (one based) of the +AC power switch." + ::= { aCPowerSwitchTableEntry 2 } +aCPowerSwitchCapabilities OBJECT-TYPE + SYNTAX DellACPowerSwitchCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0003 This attribute defines the capabilities of the +AC power switch." + ::= { aCPowerSwitchTableEntry 3 } +aCPowerSwitchSettings OBJECT-TYPE + SYNTAX DellACPowerSwitchSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0004 This attribute defines the settings of the +AC power switch." + ::= { aCPowerSwitchTableEntry 4 } +aCPowerSwitchRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0005 This attribute defines the redundancy status of the +AC power switch." + ::= { aCPowerSwitchTableEntry 5 } +aCPowerCordCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0006 This attribute defines the total number of AC power +cords required for this AC power switch to have full redundancy." + ::= { aCPowerSwitchTableEntry 6 } +aCPowerSwitchName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0007 This attribute defines the name of the AC power switch." + ::= { aCPowerSwitchTableEntry 7 } +aCPowerSwitchRedundancyMode OBJECT-TYPE + SYNTAX DellACPowerSwitchRedundancyMode + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0008 This attribute defines the redundancy mode of the +AC power switch." + ::= { aCPowerSwitchTableEntry 8 } +aCPowerSwitchStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0040.0001.0009 This attribute defines the status of the AC power switch." + ::= { aCPowerSwitchTableEntry 9 } + + +------------------------------------------------------------------------------- +-- AC Power Cord Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.42.1... +------------------------------------------------------------------------------- + +DellACPowerCordStateCapabilities ::= INTEGER { + -- If 0 (zero), there are no AC Power Cord state capabilities + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state capabilities are unknown + enableCapable(2), -- AC power cord can be enabled (online) or disabled (offline) + notReadyCapable(4) -- AC power cord can be not ready +} +DellACPowerCordStateSettings ::= INTEGER { + -- If 0 (zero), there are no AC Power Cord state settings + -- Note: These values are bit masks, so combination values are possible. + unknown(1), -- state settings are unknown + enabled(2), -- AC power cord is enabled (online) + notReady(4), -- AC power cord is not ready + acPowerCordHasPower(8), -- AC power cord has power + acPowerCordIsEnabledAndHasPower(10), + acPowerCordIsActiveSource(16), -- AC power cord is active source of AC power + acPowerCordIsEnabledHasPowerAndIsActiveSource(26) +} + +ACPowerCordTableEntry ::= SEQUENCE { + aCPowerCordchassisIndex DellObjectRange, + aCPowerCordIndex DellObjectRange, + aCPowerCordStateCapabilities DellACPowerCordStateCapabilities, + aCPowerCordStateSettings DellACPowerCordStateSettings, + aCPowerCordStatus DellStatus, + aCPowerCordaCPowerSwitchIndexReference DellObjectRange, + aCPowerCordLocationName DellString +} + +aCPowerCordTable OBJECT-TYPE + SYNTAX SEQUENCE OF ACPowerCordTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0042 This object defines the AC Power Cord Table." + ::= { powerGroup 42 } +aCPowerCordTableEntry OBJECT-TYPE + SYNTAX ACPowerCordTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0042.0001 This object defines the AC Power Cord Table Entry." + INDEX { aCPowerCordchassisIndex, + aCPowerCordIndex } + ::= { aCPowerCordTable 1 } + +aCPowerCordchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { aCPowerCordTableEntry 1 } +aCPowerCordIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0002 This attribute defines the index (one based) of the +AC power cord." + ::= { aCPowerCordTableEntry 2 } +aCPowerCordStateCapabilities OBJECT-TYPE + SYNTAX DellACPowerCordStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0003 This attribute defines the state capabilities of the +AC power cord." + ::= { aCPowerCordTableEntry 3 } +aCPowerCordStateSettings OBJECT-TYPE + SYNTAX DellACPowerCordStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0004 This attribute defines the state settings of the +AC power cord." + ::= { aCPowerCordTableEntry 4 } +aCPowerCordStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0005 This attribute defines the status of the AC power cord." + ::= { aCPowerCordTableEntry 5 } +aCPowerCordaCPowerSwitchIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0006 This attribute defines the index (one based) to the +associated AC power switch for this AC power cord." + ::= { aCPowerCordTableEntry 6 } +aCPowerCordLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0042.0001.0007 This attribute defines the location of the +AC power cord." + ::= { aCPowerCordTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Battery Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.50.1... +------------------------------------------------------------------------------- + +DellBatteryReading ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + predictiveFailure(1), -- battery predictive failure + failed(2), -- battery failed + presenceDetected(4) -- battery presence detected +} + +BatteryTableEntry ::= SEQUENCE { + batteryChassisIndex DellObjectRange, + batteryIndex DellObjectRange, + batteryStateCapabilities DellStateCapabilities, + batteryStateSettings DellStateSettings, + batteryStatus DellStatus, + batteryReading DellBatteryReading, + batteryLocationName DellString +} + +batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0050 This object defines the Battery Table." + ::= { powerGroup 50 } +batteryTableEntry OBJECT-TYPE + SYNTAX BatteryTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0050.0001 This object defines the Battery Table Entry." + INDEX { batteryChassisIndex, + batteryIndex } + ::= { batteryTable 1 } + +batteryChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0001 This attribute defines the index (one based) of the +chassis that contains the battery." + ::= { batteryTableEntry 1 } +batteryIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0002 This attribute defines the index (one based) of the +battery." + ::= { batteryTableEntry 2 } +batteryStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0003 This attribute defines the state capabilities of the +battery." + ::= { batteryTableEntry 3 } +batteryStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0004 This attribute defines the state settings of the +battery." + ::= { batteryTableEntry 4 } +batteryStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0005 This attribute defines the status of the battery." + ::= { batteryTableEntry 5 } +batteryReading OBJECT-TYPE + SYNTAX DellBatteryReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0006 This attribute defines the reading of the battery." + ::= { batteryTableEntry 6 } +batteryLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0050.0001.0007 This attribute defines the location of the battery." + ::= { batteryTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Power Usage Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.600.60.1... +------------------------------------------------------------------------------- + +PowerUsageTableEntry ::= SEQUENCE { + powerUsageChassisIndex DellObjectRange, + powerUsageIndex DellObjectRange, + powerUsageStateCapabilities DellStateCapabilities, + powerUsageStateSettings DellStateSettings, + powerUsageStatus DellStatus, + powerUsageEntityName DellString, + powerUsageCumulativeWattage DellUnsigned32BitRange, + powerUsageCumulativeWattageStartDateName DellDateName, + powerUsagePeakWatts DellUnsigned32BitRange, + powerUsagePeakWattsStartDateName DellDateName, + powerUsagePeakWattsReadingDateName DellDateName, + powerUsagePeakAmps DellUnsigned32BitRange, + powerUsagePeakAmpsStartDateName DellDateName, + powerUsagePeakAmpsReadingDateName DellDateName +} + +powerUsageTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerUsageTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0060 This object defines the Power Usage Table." + ::= { powerGroup 60 } +powerUsageTableEntry OBJECT-TYPE + SYNTAX PowerUsageTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0600.0060.0001 This object defines the Power Usage Table Entry." + INDEX { powerUsageChassisIndex, + powerUsageIndex } + ::= { powerUsageTable 1 } + +powerUsageChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { powerUsageTableEntry 1 } +powerUsageIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0002 This attribute defines the index (one based) of the +power usage information." + ::= { powerUsageTableEntry 2 } +powerUsageStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0003 This attribute defines the state capabilities of the +power usage information." + ::= { powerUsageTableEntry 3 } +powerUsageStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0004 This attribute defines the state settings of the +power usage information." + ::= { powerUsageTableEntry 4 } +powerUsageStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0005 This attribute defines the status of the +power usage information." + ::= { powerUsageTableEntry 5 } +powerUsageEntityName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0006 This attribute defines the name of the entity +associated with this power usage information." + ::= { powerUsageTableEntry 6 } +powerUsageCumulativeWattage OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0007 This attribute defines the total wattage used +(in Watt-hours) by this entity since the date and time specified +by the powerUsageCumulativeWattageStartDateName attribute." + ::= { powerUsageTableEntry 7 } +powerUsageCumulativeWattageStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0008 This attribute defines the date and time at +which the data collection started for the value reported by the +powerUsageCumulativeWattage attribute." + ::= { powerUsageTableEntry 8 } +powerUsagePeakWatts OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0009 This attribute defines the peak wattage reading +(in Watts) for this entity since the date and time specified by the +powerUsagePeakWattsStartDateName attribute." + ::= { powerUsageTableEntry 9 } +powerUsagePeakWattsStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0010 This attribute defines the date and time at +which the data collection started for the value reported by the +powerUsagePeakWatts attribute." + ::= { powerUsageTableEntry 10 } +powerUsagePeakWattsReadingDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0011 This attribute defines the date and time at +which the value reported by the powerUsagePeakWatts attribute was +measured." + ::= { powerUsageTableEntry 11 } +powerUsagePeakAmps OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0012 This attribute defines the peak amperage reading +(in tenths of Amps) for this entity since the date and time specified +by the powerUsagePeakAmpsStartDateName attribute." + ::= { powerUsageTableEntry 12 } +powerUsagePeakAmpsStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0013 This attribute defines the date and time at +which the data collection started for the value reported by the +powerUsagePeakAmps attribute." + ::= { powerUsageTableEntry 13 } +powerUsagePeakAmpsReadingDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0600.0060.0001.0014 This attribute defines the date and time at +which the value reported by the powerUsagePeakAmps attribute was +measured." + ::= { powerUsageTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Thermal Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cooling Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700.10.1... +------------------------------------------------------------------------------- + +CoolingUnitTableEntry ::= SEQUENCE { + coolingUnitchassisIndex DellObjectRange, + coolingUnitIndex DellObjectRange, + coolingUnitStateCapabilties DellStateCapabilities, + coolingUnitStateSettings DellStateSettings, + coolingUnitRedundancyStatus DellStatusRedundancy, + coolingDeviceCountForRedundancy DellObjectRange, + coolingUnitName DellString, + coolingUnitStatus DellStatus +} + +coolingUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0010 This object defines the Cooling Unit Table." + ::= { thermalGroup 10 } +coolingUnitTableEntry OBJECT-TYPE + SYNTAX CoolingUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0010.0001 This object defines the Cooling Unit Table Entry." + INDEX { coolingUnitchassisIndex, + coolingUnitIndex } + ::= { coolingUnitTable 1 } + +coolingUnitchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0001 This attribute defines the index (one based) of the +assoicated chassis." + ::= { coolingUnitTableEntry 1 } +coolingUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0002 This attribute defines the index (one based) of the +cooling unit." + ::= { coolingUnitTableEntry 2 } +coolingUnitStateCapabilties OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0003 This attribute defines the state capabilities of the +cooling unit." + ::= { coolingUnitTableEntry 3 } +coolingUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0004 This attribute defines the state settings of the +cooling unit." + ::= { coolingUnitTableEntry 4 } +coolingUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0005 This attribute defines the redundancy status of the +cooling unit." + ::= { coolingUnitTableEntry 5 } +coolingDeviceCountForRedundancy OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0006 This attribute defines the total number of cooling devices +required for this cooling unit to have full redundancy." + ::= { coolingUnitTableEntry 6 } +coolingUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0007 This attribute defines the name of the cooling unit." + ::= { coolingUnitTableEntry 7 } +coolingUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0010.0001.0008 This attribute defines the status of the cooling unit." + ::= { coolingUnitTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cooling Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700.12.1... +------------------------------------------------------------------------------- + +DellCoolingDeviceType ::= INTEGER { + coolingDeviceTypeIsOther(1), -- type is other than following values + coolingDeviceTypeIsUnknown(2), -- type is unknown + coolingDeviceTypeIsAFan(3), -- type is Fan + coolingDeviceTypeIsABlower(4), -- type is Centrifugal Blower + coolingDeviceTypeIsAChipFan(5), -- type is Fan on Integrated Circuit + coolingDeviceTypeIsACabinetFan(6), -- type is Cabinet Fan + coolingDeviceTypeIsAPowerSupplyFan(7), -- type is Power Supply Fan + coolingDeviceTypeIsAHeatPipe(8), -- type is Heat Pipe + coolingDeviceTypeIsRefrigeration(9), -- type is Integrated Refrigeration Unit + coolingDeviceTypeIsActiveCooling(10), -- type is Active Cooling Device + coolingDeviceTypeIsPassiveCooling(11) -- type is Passive Cooling Device +} +DellCoolingDeviceSubType ::= INTEGER { + coolingDeviceSubTypeIsOther(1), -- subtype is other than following values + coolingDeviceSubTypeIsUnknown(2), -- subtype is unknown + coolingDeviceSubTypeIsAFanThatReadsInRPM(3),-- subtype is Fan that reads RPM + coolingDeviceSubTypeIsAFanReadsONorOFF(4), -- subtype is Fan that reads Off or On + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsinRPM(5), -- subtype is Power Supply Fan that reads RPM + coolingDeviceSubTypeIsAPowerSupplyFanThatReadsONorOFF(6),-- subtype is Power Supply Fan that reads Off or On + coolingDeviceSubTypeIsDiscrete(16) -- subtype is cooling device with discrete reading +} +DellCoolingDeviceDiscreteReading ::= INTEGER { + coolingDeviceIsGood(1), -- cooling device is Good + coolingDeviceIsBad(2) -- cooling device is Bad +} + +CoolingDeviceTableEntry ::= SEQUENCE { + coolingDevicechassisIndex DellObjectRange, + coolingDeviceIndex DellObjectRange, + coolingDeviceStateCapabilities DellStateCapabilities, + coolingDeviceStateSettings DellStateSettings, + coolingDeviceStatus DellStatusProbe, + coolingDeviceReading DellSigned32BitRange, + coolingDeviceType DellCoolingDeviceType, + coolingDeviceLocationName DellString, + coolingDeviceUpperNonRecoverableThreshold DellSigned32BitRange, + coolingDeviceUpperCriticalThreshold DellSigned32BitRange, + coolingDeviceUpperNonCriticalThreshold DellSigned32BitRange, + coolingDeviceLowerNonCriticalThreshold DellSigned32BitRange, + coolingDeviceLowerCriticalThreshold DellSigned32BitRange, + coolingDeviceLowerNonRecoverableThreshold DellSigned32BitRange, + coolingDevicecoolingUnitIndexReference DellObjectRange, + coolingDeviceSubType DellCoolingDeviceSubType, + coolingDeviceProbeCapabilities DellProbeCapabilities, + coolingDeviceDiscreteReading DellCoolingDeviceDiscreteReading +} + +coolingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CoolingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0012 This object defines the Cooling Device Table." + ::= { thermalGroup 12 } +coolingDeviceTableEntry OBJECT-TYPE + SYNTAX CoolingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0012.0001 This object defines the Cooling Device Table Entry." + INDEX { coolingDevicechassisIndex, + coolingDeviceIndex } + ::= { coolingDeviceTable 1 } + +coolingDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { coolingDeviceTableEntry 1 } +coolingDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0002 This attribute defines the index (one based) of the +cooling device." + ::= { coolingDeviceTableEntry 2 } +coolingDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0003 This attribute defines the state capabilities of the +cooling device." + ::= { coolingDeviceTableEntry 3 } +coolingDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0004 This attribute defines the state settings of the +cooling device." + ::= { coolingDeviceTableEntry 4 } +coolingDeviceStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0005 This attribute defines the probe status of the +cooling device." + ::= { coolingDeviceTableEntry 5 } +coolingDeviceReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0006 This attribute defines the reading for a cooling device +of subtype other than coolingDeviceSubTypeIsDiscrete. When the value +for coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, the +value returned for this attribute is the speed in RPM or the OFF/ON value +of the cooling device. When the value for coolingDeviceSubType is +coolingDeviceSubTypeIsDiscrete, a value is not returned for this attribute." + ::= { coolingDeviceTableEntry 6 } +coolingDeviceType OBJECT-TYPE + SYNTAX DellCoolingDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0007 This attribute defines the type of the cooling device." + ::= { coolingDeviceTableEntry 7 } +coolingDeviceLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0008 This attribute defines the location name of the +cooling device." + ::= { coolingDeviceTableEntry 8 } +coolingDeviceUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0009 This attribute defines the upper nonrecoverable threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 9 } +coolingDeviceUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0010 This attribute defines the upper critical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 10 } +coolingDeviceUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0011 This attribute defines the upper noncritical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 11 } +coolingDeviceLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0012 This attribute defines the lower noncritical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 12 } +coolingDeviceLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0013 This attribute defines the lower critical threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 13 } +coolingDeviceLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0014 This attribute defines the lower nonrecoverable threshold +of the cooling device. The value is an integer representing fan speed +in revolutions per minute (RPM). It is not applicable to OFF/ON type +cooling devices or non-cooling device types." + ::= { coolingDeviceTableEntry 14 } +coolingDevicecoolingUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0015 This attribute defines the index to the associated +cooling unit." + ::= { coolingDeviceTableEntry 15 } +coolingDeviceSubType OBJECT-TYPE + SYNTAX DellCoolingDeviceSubType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0016 This attribute defines the subtype of the cooling device." + ::= { coolingDeviceTableEntry 16 } +coolingDeviceProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0017 This attribute defines the probe capabilities of the +cooling device." + ::= { coolingDeviceTableEntry 17 } +coolingDeviceDiscreteReading OBJECT-TYPE + SYNTAX DellCoolingDeviceDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0012.0001.0018 This attribute defines the reading for a cooling device +of type coolingDeviceSubTypeIsDiscrete. When the value for +coolingDeviceSubType is other than coolingDeviceSubTypeIsDiscrete, a value +is not returned for this attribute. When the value for coolingDeviceSubType +is coolingDeviceSubTypeIsDiscrete, the value returned for this attribute +is the discrete reading for the cooling device." + ::= { coolingDeviceTableEntry 18 } + + +------------------------------------------------------------------------------- +-- Temperature Probe Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.700.20.1... +------------------------------------------------------------------------------- + +DellTemperatureProbeType ::= INTEGER { + temperatureProbeTypeIsOther(1), -- type is other than following values + temperatureProbeTypeIsUnknown(2), -- type is unknown + temperatureProbeTypeIsAmbientESM(3), -- type is Ambient Embedded Systems Management temperature probe + temperatureProbeTypeIsDiscrete(16) -- type is temperature probe with discrete reading +} +DellTemperatureDiscreteReading ::= INTEGER { + temperatureIsGood(1), -- temperature reading is Good + temperatureIsBad(2) -- temperature reading is Bad +} + +TemperatureProbeTableEntry ::= SEQUENCE { + temperatureProbechassisIndex DellObjectRange, + temperatureProbeIndex DellObjectRange, + temperatureProbeStateCapabilities DellStateCapabilities, + temperatureProbeStateSettings DellStateSettings, + temperatureProbeStatus DellStatusProbe, + temperatureProbeReading DellSigned32BitRange, + temperatureProbeType DellTemperatureProbeType, + temperatureProbeLocationName DellString, + temperatureProbeUpperNonRecoverableThreshold DellSigned32BitRange, + temperatureProbeUpperCriticalThreshold DellSigned32BitRange, + temperatureProbeUpperNonCriticalThreshold DellSigned32BitRange, + temperatureProbeLowerNonCriticalThreshold DellSigned32BitRange, + temperatureProbeLowerCriticalThreshold DellSigned32BitRange, + temperatureProbeLowerNonRecoverableThreshold DellSigned32BitRange, + temperatureProbeProbeCapabilities DellProbeCapabilities, + temperatureProbeDiscreteReading DellTemperatureDiscreteReading +} + +temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0020 This object defines the Temperature Probe Table." + ::= { thermalGroup 20 } +temperatureProbeTableEntry OBJECT-TYPE + SYNTAX TemperatureProbeTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0700.0020.0001 This object defines the Temperature Probe Table Entry." + INDEX { temperatureProbechassisIndex, + temperatureProbeIndex } + ::= { temperatureProbeTable 1 } + +temperatureProbechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { temperatureProbeTableEntry 1 } +temperatureProbeIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0002 This attribute defines the index (one based) of the +temperature probe." + ::= { temperatureProbeTableEntry 2 } +temperatureProbeStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0003 This attribute defines the state capabilities of the +temperature probe." + ::= { temperatureProbeTableEntry 3 } +temperatureProbeStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0004 This attribute defines the state settings of the +temperature probe." + ::= { temperatureProbeTableEntry 4 } +temperatureProbeStatus OBJECT-TYPE + SYNTAX DellStatusProbe + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0005 This attribute defines the probe status of the +temperature probe." + ::= { temperatureProbeTableEntry 5 } +temperatureProbeReading OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0006 This attribute defines the reading for a temperature +probe of type other than temperatureProbeTypeIsDiscrete. When the value +for temperatureProbeType is other than temperatureProbeTypeIsDiscrete, +the value returned for this attribute is the temperature that the probe +is reading in tenths of degrees Centigrade. When the value for +temperatureProbeType is temperatureProbeTypeIsDiscrete, a value is not +returned for this attribute." + ::= { temperatureProbeTableEntry 6 } +temperatureProbeType OBJECT-TYPE + SYNTAX DellTemperatureProbeType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0007 This attribute defines the type of the temperature probe." + ::= { temperatureProbeTableEntry 7 } +temperatureProbeLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0008 This attribute defines the location name of the +temperature probe." + ::= { temperatureProbeTableEntry 8 } +temperatureProbeUpperNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0009 This attribute defines the upper nonrecoverable threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 9 } +temperatureProbeUpperCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0010 This attribute defines the upper critical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 10 } +temperatureProbeUpperNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0011 This attribute defines the upper noncritical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 11 } +temperatureProbeLowerNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0012 This attribute defines the lower noncritical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 12 } +temperatureProbeLowerCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0013 This attribute defines the lower critical threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 13 } +temperatureProbeLowerNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0014 This attribute defines the lower nonrecoverable threshold +of the temperature probe. The value is an integer representing the temperature +of the threshold in tenths of degrees Centigrade." + ::= { temperatureProbeTableEntry 14 } +temperatureProbeProbeCapabilities OBJECT-TYPE + SYNTAX DellProbeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0015 This attribute defines the probe capabilities of the +temperature probe." + ::= { temperatureProbeTableEntry 15 } +temperatureProbeDiscreteReading OBJECT-TYPE + SYNTAX DellTemperatureDiscreteReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0700.0020.0001.0016 This attribute defines the reading for a temperature +probe of type temperatureProbeTypeIsDiscrete. When the value for +temperatureProbeType is other than temperatureProbeTypeIsDiscrete, a value +is not returned for this attribute. When the value for temperatureProbeType +is temperatureProbeTypeIsDiscrete, the value returned for this attribute +is the discrete reading for the probe." + ::= { temperatureProbeTableEntry 16 } + + +------------------------------------------------------------------------------- +-- User Security Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.800 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- User Security Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.800.10.1... +------------------------------------------------------------------------------- + +UserSecurityTableEntry ::= SEQUENCE { + userSecuritychassisIndex DellObjectRange, + userSecurityIndex DellObjectRange, + userSecurityUserName DellSecurityString, + userSecurityControlName DellSecurityString, + userSecurityRequestName DellSecurityString +} + +userSecurityTable OBJECT-TYPE + SYNTAX SEQUENCE OF UserSecurityTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0800.0010 This object defines the User Security Table." + ::= { userSecurityGroup 10 } +userSecurityTableEntry OBJECT-TYPE + SYNTAX UserSecurityTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0800.0010.0001 This object defines the User Security Table Entry." + INDEX { userSecuritychassisIndex, + userSecurityIndex } + ::= { userSecurityTable 1 } + +userSecuritychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0001 This attribute defines the index (one based) of the +assoicated chassis." + ::= { userSecurityTableEntry 1 } +userSecurityIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0002 This attribute defines the index (one based) of the +user." + ::= { userSecurityTableEntry 2 } +userSecurityUserName OBJECT-TYPE + SYNTAX DellSecurityString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0003 This attribute defines the name of the user +that is authorized to perform Set operations on this system." + ::= { userSecurityTableEntry 3 } +userSecurityControlName OBJECT-TYPE + SYNTAX DellSecurityString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0004 This attribute defines the control string +that is used for managing users in this table." + ::= { userSecurityTableEntry 4 } +userSecurityRequestName OBJECT-TYPE + SYNTAX DellSecurityString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0800.0010.0001.0005 This attribute defines the request string +that is used for Set requests on this system." + ::= { userSecurityTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Remote Flash BIOS Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.900 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Remote Flash BIOS Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.900.10.1... +------------------------------------------------------------------------------- + +DellRemoteFlashBIOSStateCapabilitiesUnique ::= INTEGER { + -- If 0 (zero), there are no remote flash BIOS state capabilities + unknown(1), -- state capabilities are unknown + enableCapable(2), -- remote flash BIOS can be enabled (online) or be disabled (offline) + notReadyCapable(4), -- remote flash BIOS can be not ready + cancelCapable(8), -- remote flash BIOS can be canceled + enableAndCancelCapable(10) -- remote flash BIOS can be enabled and canceled +} +DellRemoteFlashBIOSStateSettingsUnique ::= INTEGER { + -- If 0 (zero), there are no remote flash BIOS state settings + unknown(1), -- state settings are unknown + enabled(2), -- remote flash BIOS is enabled + notReady(4), -- remote flash BIOS is not ready + canceled(8), -- remote flash BIOS is canceled + pending(16), -- remote flash BIOS is pending + other(32) -- state settings are other than above +} +DellRemoteFlashBIOSCompletionCode ::= INTEGER { + completionCodeIsOther(1), -- code is other than following values + completionCodeIsUnknown(2), -- code is unknown + completionCodeIsOK(3), -- code is completed successfully + completionCodeIsBadImage(4), -- code is bad flash BIOS image + completionCodeIsNoFileAccess(5), -- code is flash BIOS image could not be accessed + completionCodeIsNotReady(6), -- code is flash BIOS memory not ready + completionCodeIsDisabled(7), -- code is flash BIOS is currently disabled + completionCodeIsNoBattery(8), -- code is battery must be installed + completionCodeIsNoChargedBattery(9), -- code is fully charged battery must be installed + completionCodeIsNoExternalPower(10), -- code is external power adapter must be connected + completionCodeIsNo12VoltSet(11), -- code is that 12 volts could not be set + completionCodeIsNo12VoltRemoval(12), -- code is that 12 volts could not be removed + completionCodeIsFlashMemoryFailed(13), -- code is flash memory failure occured + completionCodeIsGeneralFailure(14), -- code is general failure occurred + completionCodeIsDataMiscompare(15), -- code is data miscompare error occurred + completionCodeIsNoImageFound(16), -- code is flash BIOS image could not be found in memory + completionCodeIsNoUpdatePerformed(17) -- code is no update operation has been performed +} + +RemoteFlashBIOSTableEntry ::= SEQUENCE { + remoteFlashBIOSchassisIndex DellObjectRange, + remoteFlashBIOSIndex DellObjectRange, + remoteFlashBIOSStateCapabilitiesUnique DellRemoteFlashBIOSStateCapabilitiesUnique, + remoteFlashBIOSStateSettingsUnique DellRemoteFlashBIOSStateSettingsUnique, + remoteFlashBIOSStatus DellStatus, + remoteFlashBIOSLastBIOSDateName DellDateName, + remoteFlashBIOSCompletionCode DellRemoteFlashBIOSCompletionCode, + remoteFlashBIOSMinimumContiguousMemory DellUnsigned32BitRange +} + +remoteFlashBIOSTable OBJECT-TYPE + SYNTAX SEQUENCE OF RemoteFlashBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0900.0010 This object defines the Remote Flash BIOS Table." + ::= { remoteFlashBIOSGroup 10 } +remoteFlashBIOSTableEntry OBJECT-TYPE + SYNTAX RemoteFlashBIOSTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"0900.0010.0001 This object defines the Remote Flash BIOS Table Entry." + INDEX { remoteFlashBIOSchassisIndex, + remoteFlashBIOSIndex } + ::= { remoteFlashBIOSTable 1 } + +remoteFlashBIOSchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { remoteFlashBIOSTableEntry 1 } +remoteFlashBIOSIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0002 This attribute defines the index (one based) of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 2 } +remoteFlashBIOSStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellRemoteFlashBIOSStateCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0003 This attribute defines the state capabilities of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 3 } +remoteFlashBIOSStateSettingsUnique OBJECT-TYPE + SYNTAX DellRemoteFlashBIOSStateSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0004 This attribute defines the state settings of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 4 } +remoteFlashBIOSStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0005 This attribute defines the status of the +remote flash BIOS function." + ::= { remoteFlashBIOSTableEntry 5 } +remoteFlashBIOSLastBIOSDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0006 This attribute defines the date of last BIOS update. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes and ss are the seconds. +uuuuuu is the number of microseconds, and +fff or -fff is the offset from +UTC in minutes." + ::= { remoteFlashBIOSTableEntry 6 } +remoteFlashBIOSCompletionCode OBJECT-TYPE + SYNTAX DellRemoteFlashBIOSCompletionCode + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0007 This attribute defines the completion code of the +last BIOS update." + ::= { remoteFlashBIOSTableEntry 7 } +remoteFlashBIOSMinimumContiguousMemory OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"0900.0010.0001.0008 This attribute defines the minimum size of contiguous +memory required for the remote flash BIOS function in KBbytes." + ::= { remoteFlashBIOSTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Port Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000 +------------------------------------------------------------------------------- + + +DellGenericPortConnectorType ::= INTEGER { + portConnectorTypeIsOther(1), -- type is other than following values + portConnectorTypeIsNone(2), -- type is no port connector + portConnectorTypeIsCentronics(3), -- type is Centronics, IEEE1284-B Receptical + portConnectorTypeIsMiniCentronics(4), -- type is MiniCentronics, IEEE1284-C Receptical + portConnectorTypeIsProprietary(5), -- type is Proprietary + portConnectorTypeIsDB25Male(6), -- type is Male DB-25, IEEE1284-A Plug + portConnectorTypeIsDB25Female(7), -- type is Female DB-25, IEEE1284-A Receptical + portConnectorTypeIsDB15Male(8), -- type is Male DB-15 + portConnectorTypeIsDB15Female(9), -- type is Female DB-15 + portConnectorTypeIsDB9Male(10), -- type is Male DB-9 + portConnectorTypeIsDB9Female(11), -- type is Female DB-9 + portConnectorTypeIsRJ11(12), -- type is RJ-11 + portConnectorTypeIsRJ45(13), -- type is RJ-45 + portConnectorTypeIsMiniSCSI50Pin(14), -- type is 50 pin MiniSCSI + portConnectorTypeIsMiniDIN(15), -- type is Mini DIN + portConnectorTypeIsMicroDIN(16), -- type is Micro DIN + portConnectorTypeIsPS2(17), -- type is PS/2 + portConnectorTypeIsInfrared(18), -- type is Infrared + portConnectorTypeIsHPHIL(19), -- type is HP-HIL + portConnectorTypeIsAccessBussUSB(20), -- type is Access Bus USB + portConnectorTypeISSASCSI(21), -- type is SSA SCSI + portConnectorTypeIsCirdin8Male(22), -- type is Male Circular DIN-8 + portConnectorTypeIsCirdin8Female(23), -- type is Female Circular DIN-8 + portConnectorTypeIsIDE(24), -- type is IDE + portConnectorTypeIsFloppy(25), -- type is Floppy + portConnectorTypeIsDIN9Pin(26), -- type is 9-pin Dual Inline + portConnectorTypeIsDIN25Pin(27), -- type is 25-pin Dual Inline + portConnectorTypeIsDIN50Pin(28), -- type is 50-pin Dual Inline + portConnectorTypeIsDIN68Pin(29), -- type is 68-pin Dual Inline + portConnectorTypeIsCDROMLineOut(30), -- type is CDROM Line Output + portConnectorTypeIsMiniCentronics14(31), -- type is MiniCentronics 14 + portConnectorTypeIsMiniCentronics26(32), -- type is MiniCentronics 26 + portConnectorTypeIsMiniJack(33), -- type is Minijack, headphones + portConnectorTypeIsBNC(34), -- type is BNC + portConnectorTypeIs1394(35), -- type is 1394, firewire + portConnectorTypeIsPC98(36), -- type is PC-98 + portConnectorTypeIsPC98Hireso(37), -- type is PC-98 Hireso + portConnectorTypeIsPCH98(38), -- type is PCH98 + portConnectorTypeIsPC98Note(39), -- type is PC-98 Note + portConnectorTypeIsPC98Full(40) -- type is PC-98 Full +} +DellPortSecurityState ::= INTEGER { + other(1), -- security state is other than following values + unknown(2), -- security state is unknown + none(3), -- security state is no security + externalIsDisabled(4), -- security state is external interface is disabled + externalIsEnabled(5), -- security state is external interface is enabled + bootByPass(6) -- security state is boot bypass +} + + +------------------------------------------------------------------------------- +-- Pointing Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.10.1... +------------------------------------------------------------------------------- + +DellPointingPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsSerial(3), -- type is Serial + connectorPortTypeIsPS2(4), -- type is PS/2 + connectorPortTypeIsInfrared(5), -- type is Infrared + connectorPortTypeIsHPHIL(6), -- type is HP-HIL + connectorPortTypeIsBusMouse(7), -- type is Bus Mouse + connectorPortTypeIsADB(8), -- type is ADB + connectorPortTypeIsDB9(9), -- type is DB-9 + connectorPortTypeIsMicroDIN(10), -- type is Micro DIN + connectorPortTypeIsAccessBusUSB(11), -- type is Access Bus USB + connectorPortTypeIsPC98(12) -- type is PC-98 +} + +PointingPortTableEntry ::= SEQUENCE { + pointingPortchassisIndex DellObjectRange, + pointingPortIndex DellObjectRange, + pointingPortStateCapabilities DellStateCapabilities, + pointingPortStateSettings DellStateSettings, + pointingPortStatus DellStatus, + pointingPortSecurityState DellPortSecurityState, + pointingPortConnectorType DellPointingPortConnectorType, + pointingPortName DellString, + pointingPortBIOSConnectorType DellGenericPortConnectorType +} + +pointingPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF PointingPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0010 This object defines the Pointing Port Table." + ::= { portGroup 10 } +pointingPortTableEntry OBJECT-TYPE + SYNTAX PointingPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0010.0001 This object defines the Pointing Port Table Entry." + INDEX { pointingPortchassisIndex, + pointingPortIndex } + ::= { pointingPortTable 1 } + +pointingPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pointingPortTableEntry 1 } +pointingPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0002 This attribute defines the index (one based) of the +pointing port." + ::= { pointingPortTableEntry 2 } +pointingPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0003 This attribute defines the state capabilities of the +pointing port." + ::= { pointingPortTableEntry 3 } +pointingPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0004 This attribute defines the state settings of the +pointing port." + ::= { pointingPortTableEntry 4 } +pointingPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0005 This attribute defines the status of the +pointing port." + ::= { pointingPortTableEntry 5 } +pointingPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0006 This attribute defines the security state of the +pointing port." + ::= { pointingPortTableEntry 6 } +pointingPortConnectorType OBJECT-TYPE + SYNTAX DellPointingPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0007 This attribute defines the connector type of the +pointing port." + ::= { pointingPortTableEntry 7 } +pointingPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0008 This attribute defines name of the pointing port." + ::= { pointingPortTableEntry 8 } +pointingPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0010.0001.0009 This attribute defines the BIOS connector type of the +pointing port." + ::= { pointingPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Keyboard Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.20.1... +------------------------------------------------------------------------------- + +DellKeyboardPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsMiniDIN(3), -- type is Mini DIN + connectorPortTypeIsMicroDIN(4), -- type is Micro DIN + connectorPortTypeIsPS2(5), -- type is PS/2 + connectorPortTypeIsInfrared(6), -- type is Infrared + connectorPortTypeIsHPHIL(7), -- type is HP-HIL + connectorPortTypeIsDB9(8), -- type is DB-9 + connectorPortTypeIsAccessBusUSB(9), -- type is Access Bus USB + connectorPortTypeIsPC98(10) -- type is PC-98 +} + +KeyboardPortTableEntry ::= SEQUENCE { + keyboardPortchassisIndex DellObjectRange, + keyboardPortIndex DellObjectRange, + keyboardPortStateCapabilities DellStateCapabilities, + keyboardPortStateSettings DellStateSettings, + keyboardPortStatus DellStatus, + keyboardPortSecurityState DellPortSecurityState, + keyboardPortConnectorType DellKeyboardPortConnectorType, + keyboardPortName DellString, + keyboardPortBIOSConnectorType DellGenericPortConnectorType +} + +keyboardPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF KeyboardPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0020 This object defines the Keyboard Port Table." + ::= { portGroup 20 } +keyboardPortTableEntry OBJECT-TYPE + SYNTAX KeyboardPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0020.0001 This object defines the Keyboard Port Table Entry." + INDEX { keyboardPortchassisIndex, + keyboardPortIndex } + ::= { keyboardPortTable 1 } + +keyboardPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { keyboardPortTableEntry 1 } +keyboardPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0002 This attribute defines the index (one based) of the +keyboard port." + ::= { keyboardPortTableEntry 2 } +keyboardPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0003 This attribute defines the state capabilities of the +keyboard port." + ::= { keyboardPortTableEntry 3 } +keyboardPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0004 This attribute defines the state settings of the +keyboard port." + ::= { keyboardPortTableEntry 4 } +keyboardPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0005 This attribute defines the status of the +keyboard port." + ::= { keyboardPortTableEntry 5 } +keyboardPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0006 This attribute defines the security state of the +keyboard port." + ::= { keyboardPortTableEntry 6 } +keyboardPortConnectorType OBJECT-TYPE + SYNTAX DellKeyboardPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0007 This attribute defines the connector type of the +keyboard port." + ::= { keyboardPortTableEntry 7 } +keyboardPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0008 This attribute defines name of the keyboard port." + ::= { keyboardPortTableEntry 8 } +keyboardPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0020.0001.0009 This attribute defines the BIOS connector type of the +keyboard port." + ::= { keyboardPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Processor Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.30.1... +------------------------------------------------------------------------------- + +DellProcessorPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDaughterdBoard(3), -- type is Daughter Board + connectorPortTypeIsZIFSocket(4), -- type is Zero Insertion Force Socket + connectorPortTypeIsAPiggyBackBoard(5), -- type is Replacement/Piggy Back Board + connectorPortTypeIsNone(6), -- type is None (soldered in place) + connectorPortTypeIsLIFSocket(7), -- type is Low Force Insertion Socket + connectorPortTypeIsSlot1(8), -- type is Slot 1 + connectorPortTypeIsSlot2(9), -- type is Slot 2 + connectorPortTypeIs370PinSocket(10) -- type is 370 Pin Socket +} + +ProcessorPortTableEntry ::= SEQUENCE { + processorPortchassisIndex DellObjectRange, + processorPortIndex DellObjectRange, + processorPortStateCapabilities DellStateCapabilities, + processorPortStateSettings DellStateSettings, + processorPortStatus DellStatus, + processorPortSecurityState DellPortSecurityState, + processorPortConnectorType DellProcessorPortConnectorType, + processorPortName DellString, + processorPortBIOSConnectorType DellGenericPortConnectorType +} + +processorPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0030 This object defines the Processor Port Table." + ::= { portGroup 30 } +processorPortTableEntry OBJECT-TYPE + SYNTAX ProcessorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0030.0001 This object defines the Processor Port Table Entry." + INDEX { processorPortchassisIndex, + processorPortIndex } + ::= { processorPortTable 1 } + +processorPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { processorPortTableEntry 1 } +processorPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0002 This attribute defines the index (one based) of the +processor port." + ::= { processorPortTableEntry 2 } +processorPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0003 This attribute defines the state capabilities of the +processor port." + ::= { processorPortTableEntry 3 } +processorPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0004 This attribute defines the state settings of the +processor port." + ::= { processorPortTableEntry 4 } +processorPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0005 This attribute defines the status of the +processor port." + ::= { processorPortTableEntry 5 } +processorPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0006 This attribute defines the security state of the +processor port." + ::= { processorPortTableEntry 6 } +processorPortConnectorType OBJECT-TYPE + SYNTAX DellProcessorPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0007 This attribute defines the connector type of the +processor port." + ::= { processorPortTableEntry 7 } +processorPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0008 This attribute defines name of the processor port." + ::= { processorPortTableEntry 8 } +processorPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0030.0001.0009 This attribute defines the BIOS connector type of the +processor port." + ::= { processorPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Memory Device Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.40.1... +------------------------------------------------------------------------------- + +DellMemoryDevicePortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsSIMM(3), -- type is SIMM + connectorPortTypeIsSIP(4), -- type is SIP + connectorPortTypeIsAChip(5), -- type is Chip + connectorPortTypeIsDIP(6), -- type is DIP + connectorPortTypeIsZIP(7), -- type is ZIP + connectorPortTypeIsAProprietaryCard(8), -- type is Proprietary Card + connectorPortTypeIsDIMM(9), -- type is DIMM + connectorPortTypeIsTSOP(10), -- type is TSOP + connectorPortTypeIsARowOfChips(11), -- type is Row of Chips + connectorPortTypeIsRIMM(12), -- type is RIMM + connectorPortTypeIsSODIMM(13), -- type is SODIMM + connectorPortTypeIsSRIMM(14) -- type is SRIMM +} + +MemoryDevicePortTableEntry ::= SEQUENCE { + memoryDevicePortchassisIndex DellObjectRange, + memoryDevicePortIndex DellObjectRange, + memoryDevicePortStateCapabilities DellStateCapabilities, + memoryDevicePortStateSettings DellStateSettings, + memoryDevicePortStatus DellStatus, + memoryDevicePortSecurityState DellPortSecurityState, + memoryDevicePortConnectorType DellMemoryDevicePortConnectorType, + memoryDevicePortName DellString, + memoryDevicePortBIOSConnectorType DellGenericPortConnectorType, + memoryDevicePortPhysicalMemoryArrayIndexReference DellUnsigned32BitRange, + memoryDevicePortPhysicalMemoryCardIndexReference DellUnsigned32BitRange +} + +memoryDevicePortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDevicePortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0040 This object defines the Memory Device Port Table." + ::= { portGroup 40 } +memoryDevicePortTableEntry OBJECT-TYPE + SYNTAX MemoryDevicePortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0040.0001 This object defines the Memory Device Port Table Entry." + INDEX { memoryDevicePortchassisIndex, + memoryDevicePortIndex } + ::= { memoryDevicePortTable 1 } + +memoryDevicePortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { memoryDevicePortTableEntry 1 } +memoryDevicePortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0002 This attribute defines the index (one based) of the +memory device port." + ::= { memoryDevicePortTableEntry 2 } +memoryDevicePortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0003 This attribute defines the state capabilities of the +memory device port." + ::= { memoryDevicePortTableEntry 3 } +memoryDevicePortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0004 This attribute defines the state settings of the +memory device port." + ::= { memoryDevicePortTableEntry 4 } +memoryDevicePortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0005 This attribute defines the status of the +memory device port." + ::= { memoryDevicePortTableEntry 5 } +memoryDevicePortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0006 This attribute defines the security state of the +memory device port." + ::= { memoryDevicePortTableEntry 6 } +memoryDevicePortConnectorType OBJECT-TYPE + SYNTAX DellMemoryDevicePortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0007 This attribute defines the connector type of the +memory device port." + ::= { memoryDevicePortTableEntry 7 } +memoryDevicePortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0008 This attribute defines name of the memory device port." + ::= { memoryDevicePortTableEntry 8 } +memoryDevicePortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0009 This attribute defines the BIOS connector type of the +memory device port." + ::= { memoryDevicePortTableEntry 9 } +memoryDevicePortPhysicalMemoryArrayIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0010 This attribute defines the index (one based) of the +Physical Memory Array Table entry for the physical memory array with the +same chassis index that this memory device port is associated with." + ::= { memoryDevicePortTableEntry 10 } +memoryDevicePortPhysicalMemoryCardIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0040.0001.0011 This attribute defines the index (one based) of the +Physical Memory Card Table entry for the physical memory card with the +same chassis index that this memory device port is associated with (if any)." + ::= { memoryDevicePortTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Monitor Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.50.1... +------------------------------------------------------------------------------- + +DellMonitorPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDB15PinMale(3), -- type is Male DB-15 + connectorPortTypeIsDB15PinFemale(4) -- type is Female DB-15 +} + +MonitorPortTableEntry ::= SEQUENCE { + monitorPortchassisIndex DellObjectRange, + monitorPortIndex DellObjectRange, + monitorPortStateCapabilities DellStateCapabilities, + monitorPortStateSettings DellStateSettings, + monitorPortStatus DellStatus, + monitorPortSecurityState DellPortSecurityState, + monitorPortConnectorType DellMonitorPortConnectorType, + monitorPortName DellString, + monitorPortBIOSConnectorType DellGenericPortConnectorType +} + +monitorPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonitorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0050 This object defines the Monitor Port Table." + ::= { portGroup 50 } +monitorPortTableEntry OBJECT-TYPE + SYNTAX MonitorPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0050.0001 This object defines the Monitor Port Table Entry." + INDEX { monitorPortchassisIndex, + monitorPortIndex } + ::= { monitorPortTable 1 } + +monitorPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { monitorPortTableEntry 1 } +monitorPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0002 This attribute defines the index (one based) of the +monitor port." + ::= { monitorPortTableEntry 2 } +monitorPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0003 This attribute defines the state capabilities of the +monitor port." + ::= { monitorPortTableEntry 3 } +monitorPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0004 This attribute defines the state settings of the +monitor port." + ::= { monitorPortTableEntry 4 } +monitorPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0005 This attribute defines the status of the +monitor port." + ::= { monitorPortTableEntry 5 } +monitorPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0006 This attribute defines the security state of the +monitor port." + ::= { monitorPortTableEntry 6 } +monitorPortConnectorType OBJECT-TYPE + SYNTAX DellMonitorPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0007 This attribute defines the connector type of the +monitor port." + ::= { monitorPortTableEntry 7 } +monitorPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0008 This attribute defines name of the monitor port." + ::= { monitorPortTableEntry 8 } +monitorPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0050.0001.0009 This attribute defines the BIOS connector type of the +monitor port." + ::= { monitorPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Small Computer Systems Interface (SCSI) Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.60.1... +------------------------------------------------------------------------------- + +DellSCSIPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following valaues + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDIN25pin(3), -- type is DIN 25-pin + connectorPortTypeIsDIN50pin(4), -- type is DIN 50-pin + connectorPortTypeIsDIN68pin(5) -- type is DIN 68-pin +} + +SCSIPortTableEntry ::= SEQUENCE { + sCSIPortchassisIndex DellObjectRange, + sCSIPortIndex DellObjectRange, + sCSIPortStateCapabilities DellStateCapabilities, + sCSIPortStateSettings DellStateSettings, + sCSIPortStatus DellStatus, + sCSIPortSecurityState DellPortSecurityState, + sCSIPortConnectorType DellSCSIPortConnectorType, + sCSIPortName DellString, + sCSIPortBIOSConnectorType DellGenericPortConnectorType +} + +sCSIPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SCSIPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0060 This object defines the Small Computer Systems Interface (SCSI) +Port Table." + ::= { portGroup 60 } +sCSIPortTableEntry OBJECT-TYPE + SYNTAX SCSIPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0060.0001 This object defines the Small Computer Systems Interface (SCSI) +Port Table Entry." + INDEX { sCSIPortchassisIndex, + sCSIPortIndex } + ::= { sCSIPortTable 1 } + +sCSIPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { sCSIPortTableEntry 1 } +sCSIPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0002 This attribute defines the index (one based) of the +SCSI port." + ::= { sCSIPortTableEntry 2 } +sCSIPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0003 This attribute defines the state capabilities of the +SCSI port." + ::= { sCSIPortTableEntry 3 } +sCSIPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0004 This attribute defines the state settings of the +SCSI port." + ::= { sCSIPortTableEntry 4 } +sCSIPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0005 This attribute defines the status of the +SCSI port." + ::= { sCSIPortTableEntry 5 } +sCSIPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0006 This attribute defines the security state of the +SCSI port." + ::= { sCSIPortTableEntry 6 } +sCSIPortConnectorType OBJECT-TYPE + SYNTAX DellSCSIPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0007 This attribute defines the connector type of the +SCSI port." + ::= { sCSIPortTableEntry 7 } +sCSIPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0008 This attribute defines name of the SCSI port." + ::= { sCSIPortTableEntry 8 } +sCSIPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0060.0001.0009 This attribute defines the BIOS connector type of the +SCSI port." + ::= { sCSIPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Parallel Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.70.1... +------------------------------------------------------------------------------- + +DellParallelPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDB25PinFemale(3), -- type is Female DB-25, IEEE1284-A Receptical + connectorPortTypeIsDB25PinMale(4), -- type is Male DB-25, IEEE1284-A Plug + connectorPortTypeIsCentronics(5), -- type is Centronics, IEEE1284-B Receptical + connectorPortTypeIsMiniCentronics(6), -- type is MiniCentronics, IEEE1284-C Receptical + connectorPortTypeIsProprietary(7), -- type is Proprietary + connectorPortTypeIsCentronics14(8), -- type is Centronics 14 + connectorPortTypeIsDB36PinFemale(9), -- type is Female DB-36 + connectorPortTypeIsMiniCentronics20(10) -- type is MiniCentronics 20 +} +DellParallelPortConnectorPinout ::= INTEGER { + connectorPortPinoutIsOther(1), -- pinout is other than following values + connectorPortPinoutIsUnknown(2), -- pinout is unknown + connectorPortPinoutIsXTorAT(3), -- pinout is XT or AT pinout compatible + connectorPortPinoutIsPS2(4), -- pinout is PS/2 pinout compatible + connectorPortPinoutIsIEEE1284(5), -- pinout is IEEE 1284 pinout compatible + connectorPortPinoutIsProprietary(6), -- pinout is Proprietary + connectorPortPinoutIsPC98(7), -- pinout is PC-98 pinout compatible + connectorPortPinoutIsPC98Hireso(8), -- pinout is PC-98 Hireso pinout compatible + connectorPortPinoutIsPC98Note(9), -- pinout is PC-98 Note pinout compatible + connectorPortPinoutIsPC98Full(10) -- pinout is PC-98 Full pinout compatible +} +DellParallelPortCapabilitiesUnique ::= INTEGER { + -- If 0 (zero), there are no parallel port capabilities + unknown(1), -- capabilities are unknown + atCapable(2), -- port is AT mode capable + ps2Capable(4), -- port is PS/2 mode capable + ecpCapable(8), -- port is ECP mode capable + eppCapable(16), -- port is EPP mode capable + atOrPS2OrECPOrEPPCapable(30), -- port is AT, PS/2, ECP and EPP mode capable + pc98Capable(32), -- port is PC98 mode capable + pc98HiresoCapable(64), -- port is PC98 Hireso mode capable + pc98HCapable(128) -- port is PC98H mode capable +} + +ParallelPortTableEntry ::= SEQUENCE { + parallelPortchassisIndex DellObjectRange, + parallelPortIndex DellObjectRange, + parallelPortStateCapabilities DellStateCapabilities, + parallelPortStateSettings DellStateSettings, + parallelPortStatus DellStatus, + parallelPortSecurityState DellPortSecurityState, + parallelPortConnectorType DellParallelPortConnectorType, + parallelPortName DellString, + parallelPortConnectorPinOut DellParallelPortConnectorPinout, + parallelPortCapabilitiesUnique DellParallelPortCapabilitiesUnique, + parallelPortBaseIOAddress DellUnsigned64BitRange, + parallelPortIRQLevel DellUnsigned8BitRange, + parallelPortDMASupport DellBoolean +} + +parallelPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParallelPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0070 This object defines the Parallel Port Table." + ::= { portGroup 70 } +parallelPortTableEntry OBJECT-TYPE + SYNTAX ParallelPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0070.0001 This object defines the Parallel Port Table Entry." + INDEX { parallelPortchassisIndex, + parallelPortIndex } + ::= { parallelPortTable 1 } + +parallelPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { parallelPortTableEntry 1 } +parallelPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0002 This attribute defines the index (one based) of the +parallel port." + ::= { parallelPortTableEntry 2 } +parallelPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0003 This attribute defines the state capabilities of the +parallel port." + ::= { parallelPortTableEntry 3 } +parallelPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0004 This attribute defines the state settings of the +parallel port." + ::= { parallelPortTableEntry 4 } +parallelPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0005 This attribute defines the status of the +parallel port." + ::= { parallelPortTableEntry 5 } +parallelPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0006 This attribute defines the security state of the +parallel port." + ::= { parallelPortTableEntry 6 } +parallelPortConnectorType OBJECT-TYPE + SYNTAX DellParallelPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0007 This attribute defines the connector type of the +parallel port." + ::= { parallelPortTableEntry 7 } +parallelPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0008 This attribute defines the name of the +parallel port." + ::= { parallelPortTableEntry 8 } +parallelPortConnectorPinOut OBJECT-TYPE + SYNTAX DellParallelPortConnectorPinout + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0009 This attribute defines the pinout of the +parallel port." + ::= { parallelPortTableEntry 9 } +parallelPortCapabilitiesUnique OBJECT-TYPE + SYNTAX DellParallelPortCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0010 This attribute defines the mode capabilities of the +parallel port." + ::= { parallelPortTableEntry 10 } +parallelPortBaseIOAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0011 This attribute defines the base Input/Output address of +the parallel port." + ::= { parallelPortTableEntry 11 } +parallelPortIRQLevel OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0012 This attribute defines the Interrupt Request Level of +the parallel port." + ::= { parallelPortTableEntry 12 } +parallelPortDMASupport OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0070.0001.0013 This attribute defines if DMA is supported by the +parallel port." + ::= { parallelPortTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Serial Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.80.1... +------------------------------------------------------------------------------- + +DellSerialPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsDB9PinMale(3), -- type is Male DB-9 + connectorPortTypeIsDB9PinFemale(4), -- type is Female DB-9 + connectorPortTypeIsDB25PinMale(5), -- type is Male DB-25 + connectorPortTypeIsDB25PinFemale(6), -- type is Female DB-25 + connectorPortTypeIsRJ11(7), -- type is RJ-11 + connectorPortTypeIsRJ45(8), -- type is RJ-45 + connectorPortTypeIsProprietary(9), -- type is Proprietary + connectorPortTypeIsCirdin8Male(10), -- type is Male Circular DIN-8 + connectorPortTypeIsCirdin8Female(11), -- type is Female Circular DIN-8 + connectorPortTypeIsMiniCentronics14(12), -- type is MiniCentronics 14 + connectorPortTypeIsMiniCentronics26(13) -- type is MiniCentronics 26 +} +DellSerialPortCapabilitiesUnique ::= INTEGER { + other(1), -- capabilities are other than following values + unknown(2), -- capabilities are unknown + xtorATCapable(4), -- port is XT or AT mode capable + c16450Capable(8), -- port is 16450 capable + c16550Capable(16), -- port is 16550 capable + c16550aCapable(32), -- port is 16550A capable + c8251Capable(64), -- port is 8251 capable + c8251FIFOCapable(128) -- port is 8251 FIFO capable +} + +SerialPortTableEntry ::= SEQUENCE { + serialPortchassisIndex DellObjectRange, + serialPortIndex DellObjectRange, + serialPortStateCapabilities DellStateCapabilities, + serialPortStateSettings DellStateSettings, + serialPortStatus DellStatus, + serialPortSecurityState DellPortSecurityState, + serialPortConnectorType DellSerialPortConnectorType, + serialPortName DellString, + serialPortMaximumSpeed DellUnsigned32BitRange, + serialPortCapabilitiesUnique DellSerialPortCapabilitiesUnique, + serialPortBaseIOAddress DellUnsigned64BitRange, + serialPortIRQLevel DellUnsigned8BitRange +} + +serialPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF SerialPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0080 This object defines the Serial Port Table." + ::= { portGroup 80 } +serialPortTableEntry OBJECT-TYPE + SYNTAX SerialPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0080.0001 This object defines the Serial Port Table Entry." + INDEX { serialPortchassisIndex, + serialPortIndex } + ::= { serialPortTable 1 } + +serialPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { serialPortTableEntry 1 } +serialPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0002 This attribute defines the index (one based) of the +serial port." + ::= { serialPortTableEntry 2 } +serialPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0003 This attribute defines the state capabilities of the +serial port." + ::= { serialPortTableEntry 3 } +serialPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0004 This attribute defines the state settings of the +serial port." + ::= { serialPortTableEntry 4 } +serialPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0005 This attribute defines the status of the +serial port." + ::= { serialPortTableEntry 5 } +serialPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0006 This attribute defines the security state of the +serial port." + ::= { serialPortTableEntry 6 } +serialPortConnectorType OBJECT-TYPE + SYNTAX DellSerialPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0007 This attribute defines the connector type of the +serial port." + ::= { serialPortTableEntry 7 } +serialPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0008 This attribute defines the name of the +serial port." + ::= { serialPortTableEntry 8 } +serialPortMaximumSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0009 This attribute defines the maximum speed the serial +port can support in bits per second. 0 (zero) indicates maximum speed +is unknown." + ::= { serialPortTableEntry 9 } +serialPortCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSerialPortCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0010 This attribute defines the mode capabilities of the +serial port." + ::= { serialPortTableEntry 10 } +serialPortBaseIOAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0011 This attribute defines the base Input/Output address of +the serial port." + ::= { serialPortTableEntry 11 } +serialPortIRQLevel OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0080.0001.0012 This attribute defines the Interrupt Request Level of +the serial port." + ::= { serialPortTableEntry 12 } + + +------------------------------------------------------------------------------- +-- Universal Serial Bus (USB) Port Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1000.90.1... +------------------------------------------------------------------------------- + +DellUSBPortConnectorType ::= INTEGER { + connectorPortTypeIsOther(1), -- type is other than following values + connectorPortTypeIsUnknown(2), -- type is unknown + connectorPortTypeIsUSB(3) -- type is Universal Serial Bus +} + +USBPortTableEntry ::= SEQUENCE { + uSBPortchassisIndex DellObjectRange, + uSBPortIndex DellObjectRange, + uSBPortStateCapabilities DellStateCapabilities, + uSBPortStateSettings DellStateSettings, + uSBPortStatus DellStatus, + uSBPortSecurityState DellPortSecurityState, + uSBPortConnectorType DellUSBPortConnectorType, + uSBPortName DellString, + uSBPortBIOSConnectorType DellGenericPortConnectorType +} + +uSBPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF USBPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0090 This object defines the Universal Serial Bus (USB) Port Table." + ::= { portGroup 90 } +uSBPortTableEntry OBJECT-TYPE + SYNTAX USBPortTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1000.0090.0001 This object defines the USB Port Table Entry." + INDEX { uSBPortchassisIndex, + uSBPortIndex } + ::= { uSBPortTable 1 } + +uSBPortchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { uSBPortTableEntry 1 } +uSBPortIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0002 This attribute defines the index (one based) of the +USB port." + ::= { uSBPortTableEntry 2 } +uSBPortStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0003 This attribute defines the state capabilities of the +USB port." + ::= { uSBPortTableEntry 3 } +uSBPortStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0004 This attribute defines the state settings of the +USB port." + ::= { uSBPortTableEntry 4 } +uSBPortStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0005 This attribute defines the status of the USB port." + ::= { uSBPortTableEntry 5 } +uSBPortSecurityState OBJECT-TYPE + SYNTAX DellPortSecurityState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0006 This attribute defines the security state of the +USB port." + ::= { uSBPortTableEntry 6 } +uSBPortConnectorType OBJECT-TYPE + SYNTAX DellUSBPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0007 This attribute defines the connector type of the +USB port." + ::= { uSBPortTableEntry 7 } +uSBPortName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0008 This attribute defines name of the USB port." + ::= { uSBPortTableEntry 8 } +uSBPortBIOSConnectorType OBJECT-TYPE + SYNTAX DellGenericPortConnectorType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1000.0090.0001.0009 This attribute defines the BIOS connector type of the +USB port." + ::= { uSBPortTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Device Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Pointing Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.10.1... +------------------------------------------------------------------------------- + +DellPointingDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is Unknown + deviceTypeIsAMouse(3), -- type is Mouse + deviceTypeIsATrackBall(4), -- type is Track Ball + deviceTypeIsATrackPoint(5), -- type is Track Point + deviceTypeIsAGlidePoint(6), -- type is Glide Point + deviceTypeIsATouchPad(7) -- type is Touch Pad +} + +PointingDeviceTableEntry ::= SEQUENCE { + pointingDevicechassisIndex DellObjectRange, + pointingDeviceIndex DellObjectRange, + pointingDeviceStateCapabilities DellStateCapabilities, + pointingDeviceStateSettings DellStateSettings, + pointingDeviceStatus DellStatus, + pointingPortIndexReference DellObjectRange, + pointingDeviceType DellPointingDeviceType, + pointingDeviceNumberofButtons DellUnsigned8BitRange +} + +pointingDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PointingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0010 This object defines the Pointing Device Table." + ::= { deviceGroup 10 } +pointingDeviceTableEntry OBJECT-TYPE + SYNTAX PointingDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0010.0001 This object defines the Pointing Device Table Entry." + INDEX { pointingDevicechassisIndex, + pointingDeviceIndex } + ::= { pointingDeviceTable 1 } + +pointingDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pointingDeviceTableEntry 1 } +pointingDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0002 This attribute defines the index (one based) of the +pointing device." + ::= { pointingDeviceTableEntry 2 } +pointingDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0003 This attribute defines the state capabilities of the +pointing device." + ::= { pointingDeviceTableEntry 3 } +pointingDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0004 This attribute defines the state settings of the +pointing device." + ::= { pointingDeviceTableEntry 4 } +pointingDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0005 This attribute defines the status of the pointing device." + ::= { pointingDeviceTableEntry 5 } +pointingPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0006 This attribute defines the index (one based) of the +associated pointing port in the same chassis." + ::= { pointingDeviceTableEntry 6 } +pointingDeviceType OBJECT-TYPE + SYNTAX DellPointingDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0007 This attribute defines the type of the pointing device." + ::= { pointingDeviceTableEntry 7 } +pointingDeviceNumberofButtons OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0010.0001.0008 This attribute defines the number of buttons on the +pointing device." + ::= { pointingDeviceTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Keyboard Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.20.1... +------------------------------------------------------------------------------- + +KeyboardDeviceTableEntry ::= SEQUENCE { + keyboardDevicechassisIndex DellObjectRange, + keyboardDeviceIndex DellObjectRange, + keyboardDeviceStateCapabilities DellStateCapabilities, + keyboardDeviceStateSettings DellStateSettings, + keyboardDeviceStatus DellStatus, + keyboardPortIndexReference DellObjectRange, + keyboardDeviceTypeName DellString, + keyboardDeviceLayoutName DellString +} + +keyboardDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF KeyboardDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0020 This object defines the Keyboard Device Table." + ::= { deviceGroup 20 } +keyboardDeviceTableEntry OBJECT-TYPE + SYNTAX KeyboardDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0020.0001 This object defines the Keyboard Device Table Entry." + INDEX { keyboardDevicechassisIndex, + keyboardDeviceIndex } + ::= { keyboardDeviceTable 1 } + +keyboardDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { keyboardDeviceTableEntry 1 } +keyboardDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0002 This attribute defines the index (one based) of the +keyboard device." + ::= { keyboardDeviceTableEntry 2 } +keyboardDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0003 This attribute defines the state capabilities of the +keyboard device." + ::= { keyboardDeviceTableEntry 3 } +keyboardDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0004 This attribute defines the state settings of the +keyboard device." + ::= { keyboardDeviceTableEntry 4 } +keyboardDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0005 This attribute defines the status of the keyboard device." + ::= { keyboardDeviceTableEntry 5 } +keyboardPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0006 This attribute defines the index (one based) of the +associated keyboard device in the same chassis." + ::= { keyboardDeviceTableEntry 6 } +keyboardDeviceTypeName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0007 This attribute defines the name of the keyboard device +type." + ::= { keyboardDeviceTableEntry 7 } +keyboardDeviceLayoutName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0020.0001.0008 This attribute defines the name of the keyboard device +layout." + ::= { keyboardDeviceTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Processor Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.30.1... +------------------------------------------------------------------------------- + +DellProcessorDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsCPU(3), -- type is Central Processing Unit + deviceTypeIsMathProcessor(4), -- type is Math Processor + deviceTypeIsDSP(5), -- type is Digital Signal Processor + deviceTypeIsAVideoProcessor(6) -- type is Video Processor +} +DellProcessorDeviceFamily ::= INTEGER { + deviceFamilyIsOther(1), -- family is Other + deviceFamilyIsUnknown(2), -- family is Unknown + deviceFamilyIs8086(3), -- family is 8086 + deviceFamilyIs80286(4), -- family is 80286 + deviceFamilyIsIntel386(5), -- family is Intel386 processor + deviceFamilyIsIntel486(6), -- family is Intel486 processor + deviceFamilyIs8087(7), -- family is 8087 + deviceFamilyIs80287(8), -- family is 80287 + deviceFamilyIs80387(9), -- family is 80387 + deviceFamilyIs80487(10), -- family is 80487 + deviceFamilyIsPentium(11), -- family is Pentium processor Family + deviceFamilyIsPentiumPro(12), -- family is Pentium Pro processor + deviceFamilyIsPentiumII(13), -- family is Pentium II processor + deviceFamilyIsPentiumMMX(14), -- family is Pentium processor with MMX technology + deviceFamilyIsCeleron(15), -- family is Celeron processor + deviceFamilyIsPentiumIIXeon(16), -- family is Pentium II Xeon processor + deviceFamilyIsPentiumIII(17), -- family is Pentium III processor + deviceFamilyIsPentiumIIIXeon(18), -- family is Pentium III Xeon processor + deviceFamilyIsPentiumIIISpeedStep(19), -- family is Pentium III Processor with Intel SpeedStep Technology + deviceFamilyIsItanium(20), -- family is Itanium processor + deviceFamilyIsIntelXeon(21), -- family is Intel Xeon + deviceFamilyIsPentium4(22), -- family is Pentium 4 Processor + deviceFamilyIsIntelXeonMP(23), -- family is Intel Xeon processor MP + deviceFamilyIsIntelItanium2(24), -- family is Intel Itanium 2 processor + deviceFamilyIsK5(25), -- family is K5 Family + deviceFamilyIsK6(26), -- family is K6 Family + deviceFamilyIsK6-2(27), -- family is K6-2 + deviceFamilyIsK6-3(28), -- family is K6-3 + deviceFamilyIsAMDAthlon(29), -- family is AMD Athlon Processor Family + deviceFamilyIsAMD2900(30), -- family is AMD2900 Family + deviceFamilyIsK6-2Plus(31), -- family is K6-2+ + deviceFamilyIsPowerPC(32), -- family is Power PC Family + deviceFamilyIsPowerPC601(33), -- family is Power PC 601 + deviceFamilyIsPowerPC603(34), -- family is Power PC 603 + deviceFamilyIsPowerPC603Plus(35), -- family is Power PC 603+ + deviceFamilyIsPowerPC604(36), -- family is Power PC 604 + deviceFamilyIsPowerPC620(37), -- family is Power PC 620 + deviceFamilyIsPowerPCx704(38), -- family is Power PC x704 + deviceFamilyIsPowerPC750(39), -- family is Power PC 750 + deviceFamilyIsAlpha(48), -- family is Alpha Family + deviceFamilyIsAlpha21064(49), -- family is Alpha 21064 + deviceFamilyIsAlpha21066(50), -- family is Alpha 21066 + deviceFamilyIsAlpha21164(51), -- family is Alpha 21164 + deviceFamilyIsAlpha21164PC(52), -- family is Alpha 21164PC + deviceFamilyIsAlpha21164a(53), -- family is Alpha 21164a + deviceFamilyIsAlpha21264(54), -- family is Alpha 21264 + deviceFamilyIsAlpha21364(55), -- family is Alpha 21364 + deviceFamilyIsMIPS(64), -- family is MIPS Family + deviceFamilyIsMIPSR4000(65), -- family is MIPS R4000 + deviceFamilyIsMIPSR4200(66), -- family is MIPS R4200 + deviceFamilyIsMIPSR4400(67), -- family is MIPS R4400 + deviceFamilyIsMIPSR4600(68), -- family is MIPS R4600 + deviceFamilyIsMIPSR10000(69), -- family is MIPS R10000 + deviceFamilyIsSPARC(80), -- family is SPARC Family + deviceFamilyIsSuperSPARC(81), -- family is SuperSPARC + deviceFamilyIsmicroSPARCII(82), -- family is microSPARC II + deviceFamilyIsmicroSPARCIIep(83), -- family is microSPARC IIep + deviceFamilyIsUltraSPARC(84), -- family is UltraSPARC + deviceFamilyIsUltraSPARCII(85), -- family is UltraSPARC II + deviceFamilyIsUltraSPARCIIi(86), -- family is UltraSPARC IIi + deviceFamilyIsUltraSPARCIII(87), -- family is UltraSPARC III + deviceFamilyIsUltraSPARCIIIi(88), -- family is UltraSPARC IIIi + deviceFamilyIs68040(96), -- family is 68040 Family + deviceFamilyIs68xxx(97), -- family is 68xxx + deviceFamilyIs68000(98), -- family is 68000 + deviceFamilyIs68010(99), -- family is 68010 + deviceFamilyIs68020(100), -- family is 68020 + deviceFamilyIs68030(101), -- family is 68030 + deviceFamilyIsHobbit(112), -- family is Hobbit Family + deviceFamilyIsCrusoeTM5000(120), -- family is Crusoe TM5000 Family + deviceFamilyIsCrusoeTM3000(121), -- family is Crusoe TM3000 Family + deviceFamilyIsEfficeonTM8000(122), -- family is Efficeon TM8000 Family + deviceFamilyIsWeitek(128), -- family is Weitek + deviceFamilyIsAMDAthlon64(131), -- family is AMD Athlon 64 Processor Family + deviceFamilyIsAMDOpteron(132), -- family is AMD Opteron Processor Family + deviceFamilyIsAMDSempron(133), -- family is AMD Sempron Processor Family + deviceFamilyIsAMDTurion64Mobile(134), -- family is AMD Turion 64 Mobile Technology + deviceFamilyIsDualCoreAMDOpteron(135), -- family is Dual-Core AMD Opteron(TM) Processor Family + deviceFamilyIsAMDAthlon64X2DualCore(136), -- family is AMD Athlon 64 X2 Dual-Core Processor Family + deviceFamilyIsAMDTurion64X2Mobile(137), -- family is AMD Turion(TM) 64 X2 Mobile Technology + deviceFamilyIsQuadCoreAMDOpteron(138), -- family is Quad-Core AMD Opteron(TM) Processor Family + deviceFamilyIsThirdGenerationAMDOpteron(139), -- family is Third-Generation AMD Opteron(TM) Processor Family + deviceFamilyIsPA-RISC(144), -- family is PA-RISC Family + deviceFamilyIsPA-RISC8500(145), -- family is PA-RISC 8500 + deviceFamilyIsPA-RISC8000(146), -- family is PA-RISC 8000 + deviceFamilyIsPA-RISC7300LC(147), -- family is PA-RISC 7300LC + deviceFamilyIsPA-RISC7200(148), -- family is PA-RISC 7200 + deviceFamilyIsPA-RISC7100LC(149), -- family is PA-RISC 7100LC + deviceFamilyIsPA-RISC7100(150), -- family is PA-RISC 7100 + deviceFamilyIsV30(160), -- family is V30 Family + deviceFamilyIsDualCoreIntelXeon5200(171), -- family is Dual-Core Intel(R) Xeon(R) processor 5200 Series + deviceFamilyIsDualCoreIntelXeon7200(172), -- family is Dual-Core Intel(R) Xeon(R) processor 7200 Series + deviceFamilyIsQuadCoreIntelXeon7300(173), -- family is Quad-Core Intel(R) Xeon(R) processor 7300 Series + deviceFamilyIsQuadCoreIntelXeon7400(174), -- family is Quad-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsMultiCoreIntelXeon7400(175), -- family is Multi-Core Intel(R) Xeon(R) processor 7400 Series + deviceFamilyIsM1(176), -- family is M1 Family + deviceFamilyIsM2(177), -- family is M2 Family + deviceFamilyIsAS400(180), -- family is AS400 Family + deviceFamilyIsAMDAthlonXP(182), -- family is AMD Athlon XP Processor Family + deviceFamilyIsAMDAthlonMP(183), -- family is AMD Athlon MP Processor Family + deviceFamilyIsAMDDuron(184), -- family is AMD Duron Processor Family + deviceFamilyIsIntelPentiumM(185), -- family is Intel Pentium M processor + deviceFamilyIsIntelCeleronD(186), -- family is Intel Celeron D processor + deviceFamilyIsIntelPentiumD(187), -- family is Intel Pentium D processor + deviceFamilyIsIntelPentiumExtreme(188), -- family is Intel Pentium Processor Extreme Edition + deviceFamilyIsIntelCoreSolo(189), -- family is Intel(R) Core(TM) Solo processor + deviceFamilyIsIntelCore2(190), -- family is Intel(R) Core(TM)2 processor + deviceFamilyIsIntelCore2Duo(191), -- family is Intel(R) Core(TM)2 Duo processor + deviceFamilyIsIntelCorei7(198), -- family is Intel(R) Core(TM) i7 processor + deviceFamilyIsDualCoreIntelCeleron(199), -- family is Dual-Core Intel(R) Celeron(R) Processor + deviceFamilyIsIBM390(200), -- family is IBM390 Family + deviceFamilyIsG4(201), -- family is G4 + deviceFamilyIsG5(202), -- family is G5 + deviceFamilyIsESA390G6(203), -- family is ESA/390 G6 + deviceFamilyIszArchitectur(204), -- family is z/Architectur base + deviceFamilyIsVIAC7-M(210), -- family is VIA C7(TM)-M Processor Family + deviceFamilyIsVIAC7-D(211), -- family is VIA C7(TM)-D Processor Family + deviceFamilyIsVIAC7(212), -- family is VIA C7(TM) Processor Family + deviceFamilyIsVIAEden(213), -- family is VIA Eden(TM) Processor Family + deviceFamilyIsMultiCoreIntelXeon(214), -- family is Multi-Core Intel(R) Xeon(R) processor + deviceFamilyIsDualCoreIntelXeon3xxx(215), -- family is Dual-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsQuadCoreIntelXeon3xxx(216), -- family is Quad-Core Intel(R) Xeon(R) processor 3xxx Series + deviceFamilyIsDualCoreIntelXeon5xxx(218), -- family is Dual-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsQuadCoreIntelXeon5xxx(219), -- family is Quad-Core Intel(R) Xeon(R) processor 5xxx Series + deviceFamilyIsDualCoreIntelXeon7xxx(221), -- family is Dual-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsQuadCoreIntelXeon7xxx(222), -- family is Quad-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsMultiCoreIntelXeon7xxx(223), -- family is Multi-Core Intel(R) Xeon(R) processor 7xxx Series + deviceFamilyIsi860(250), -- family is i860 + deviceFamilyIsi960(251) -- family is i960 +} +DellProcessorDeviceStatusState ::= INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user via BIOS setup + biosDisabled(5), -- state is disabled by BIOS (POST error) + idle(6) -- state is idle +} +DellProcessorUpgradeInformation ::= INTEGER { + processorUpgradeIsOther(1), -- upgrade is other than following values + processorUpgradeIsUnknown(2), -- upgrade is unknown + processorUpgradeIsByDaughterBoard(3), -- upgrade is by Daughter Board + processorUpgradeIsByZIFSocket(4), -- upgrade is by ZIF socket + processorUpgradeIsByReplacement(5), -- upgrade is by Replacement/Piggy Back + processorUpgradeIsNone(6), -- upgrade is None + processorUpgradeIsByLIFSocket(7), -- upgrade is by LIF Socket + processorUpgradeIsBySlot1(8), -- upgrade is by Slot 1 + processorUpgradeIsBySlot2(9), -- upgrade is by Slot 2 + processorUpgradeIsBy370PinSocket(10), -- upgrade is by 370 Pin Socket + processorUpgradeIsBySlotA(11), -- upgrade is by Slot A + processorUpgradeIsBySlotM(12), -- upgrade is by Slot M + processorUpgradeIsByScoket423(13), -- upgrade is by Socket 423 + processorUpgradeIsBySocketA(14), -- upgrade is by Socket A (Socket 462) + processorUpgradeIsBySocket478(15), -- upgrade is by Socket 478 + processorUpgradeIsBySocket754(16), -- upgrade is by Socket 754 + processorUpgradeIsBySocket940(17), -- upgrade is by Socket 940 + processorUpgradeIsBySocket939(18), -- upgrade is by Socket 939 + processorUpgradeIsBySocketmPGA604(19), -- upgrade is by Socket mPGA604 + processorUpgradeIsBySocketLGA771(20), -- upgrade is by Socket LGA771 + processorUpgradeIsBySocketLGA775(21), -- upgrade is by Socket LGA775 + processorUpgradeIsBySocketS1(22), -- upgrade is by Socket S1 + processorUpgradeIsBySocketAM2(23), -- upgrade is by Socket AM2 + processorUpgradeIsBySocketF(24), -- upgrade is by Socket F (1207) + processorUpgradeIsBySocketLGA1366(25) -- upgrade is by Socket LGA1366 +} + +ProcessorDeviceTableEntry ::= SEQUENCE { + processorDevicechassisIndex DellObjectRange, + processorDeviceIndex DellObjectRange, + processorDeviceStateCapabilities DellStateCapabilities, + processorDeviceStateSettings DellStateSettings, + processorDeviceStatus DellStatus, + processorPortIndexReference DellObjectRange, + processorDeviceType DellProcessorDeviceType, + processorDeviceManufacturerName DellString, + processorDeviceStatusState DellProcessorDeviceStatusState, + processorDeviceFamily DellProcessorDeviceFamily, + processorDeviceMaximumSpeed DellUnsigned32BitRange, + processorDeviceCurrentSpeed DellUnsigned32BitRange, + processorDeviceExternalClockSpeed DellUnsigned32BitRange, + processorDeviceVoltage DellSigned32BitRange, + processorDeviceUpgradeInformation DellProcessorUpgradeInformation, + processorDeviceVersionName DellString, + processorDeviceCoreCount DellUnsigned32BitRange, + processorDeviceCoreEnabledCount DellUnsigned32BitRange, + processorDeviceThreadCount DellUnsigned32BitRange, + processorDeviceCharacteristics DellUnsigned16BitRange, + processorDeviceExtendedCapabilities DellUnsigned16BitRange, + processorDeviceExtendedSettings DellUnsigned16BitRange, + processorDeviceBrandName DellString, + processorDeviceModelName DellString, + processorDeviceSteppingName DellString +} + +processorDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0030 This object defines the Processor Device Table." + ::= { deviceGroup 30 } +processorDeviceTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0030.0001 This object defines the Processor Device Table Entry." + INDEX { processorDevicechassisIndex, + processorDeviceIndex } + ::= { processorDeviceTable 1 } + +processorDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { processorDeviceTableEntry 1 } +processorDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0002 This attribute defines the index (one based) of the +processor device." + ::= { processorDeviceTableEntry 2 } +processorDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0003 This attribute defines the state capabilities of the +processor device." + ::= { processorDeviceTableEntry 3 } +processorDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0004 This attribute defines the state settings of the +processor device." + ::= { processorDeviceTableEntry 4 } +processorDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0005 This attribute defines the status of the +processor device." + ::= { processorDeviceTableEntry 5 } +processorPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0006 This attribute defines the index (one based) of the +associated processor port in the same chassis." + ::= { processorDeviceTableEntry 6 } +processorDeviceType OBJECT-TYPE + SYNTAX DellProcessorDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0007 This attribute defines the type of the processor device." + ::= { processorDeviceTableEntry 7 } +processorDeviceManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0008 This attribute defines the name of the manufacturer +of the processor device." + ::= { processorDeviceTableEntry 8 } +processorDeviceStatusState OBJECT-TYPE + SYNTAX DellProcessorDeviceStatusState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0009 This attribute defines the status state of the +processor device." + ::= { processorDeviceTableEntry 9 } +processorDeviceFamily OBJECT-TYPE + SYNTAX DellProcessorDeviceFamily + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0010 This attribute defines the family of the +processor device." + ::= { processorDeviceTableEntry 10 } +processorDeviceMaximumSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0011 This attribute defines the maximum speed of the +processor device in MHz. Zero indicates the maximum speed is unknown." + ::= { processorDeviceTableEntry 11 } +processorDeviceCurrentSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0012 This attribute defines the current speed of the +processor device in MHz. Zero indicates the current speed is unknown." + ::= { processorDeviceTableEntry 12 } +processorDeviceExternalClockSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0013 This attribute defines the speed of the +external clock for the processor device in MHz. Zero indicates +the external clock speed is unknown." + ::= { processorDeviceTableEntry 13 } +processorDeviceVoltage OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0014 This attribute defines the voltage powering the +processor device in millivolts. Zero indicates the voltage is unknown." + ::= { processorDeviceTableEntry 14 } +processorDeviceUpgradeInformation OBJECT-TYPE + SYNTAX DellProcessorUpgradeInformation + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0015 This attribute defines the processor upgrade +information for the processor device." + ::= { processorDeviceTableEntry 15 } +processorDeviceVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0016 This attribute defines the version of the +processor device. On some systems, this value contains the +brand and stepping information; on other systems, this value +contains the model and stepping information." + ::= { processorDeviceTableEntry 16 } +processorDeviceCoreCount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0017 This attribute defines the number of processor cores +detected for the processor device." + ::= { processorDeviceTableEntry 17 } +processorDeviceCoreEnabledCount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0018 This attribute defines the number of processor cores +enabled for the processor device." + ::= { processorDeviceTableEntry 18 } +processorDeviceThreadCount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0019 This attribute defines the number of processor threads +detected for the processor device." + ::= { processorDeviceTableEntry 19 } +processorDeviceCharacteristics OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0020 This attribute defines characteristics of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + +NOTE: Bits 2-15 need to be examined in the context of bit 1. +If bit 1 is set, the processor charactistics are unknown and bits 2-15 cannot +be used to determine if the functions associated with the bits are supported. + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Reserved + Bit 1 Unknown + Bit 2 64-bit capable + Bit 3-15 Reserved" + ::= { processorDeviceTableEntry 20 } +processorDeviceExtendedCapabilities OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0021 This attribute defines extended capabilities of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) supported + Bit 1 Demand-Based Switching (DBS) supported + Bit 2 eXecute Disable (XD) supported + Bit 3 Hyper-Threading (HT) supported" + ::= { processorDeviceTableEntry 21 } +processorDeviceExtendedSettings OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0022 This attribute defines extended settings of the +processor device. This attribute is a bit field where a bit has the meaning +defined below when set to 1 (one). + + Bit + Position Meaning if Set + -------- -------------- + Bit 0 Virtualization Technology (VT) enabled + Bit 1 Demand Based Switching (DBS) enabled + Bit 2 eXecute Disable (XD) enabled + Bit 3 Hyper-Threading (HT) enabled" + ::= { processorDeviceTableEntry 22 } +processorDeviceBrandName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0023 This attribute defines the brand of the +processor device." + ::= { processorDeviceTableEntry 23 } +processorDeviceModelName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0024 This attribute defines the model of the +processor device." + ::= { processorDeviceTableEntry 24 } +processorDeviceSteppingName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0030.0001.0025 This attribute defines the stepping of the +processor device." + ::= { processorDeviceTableEntry 25 } + + +------------------------------------------------------------------------------- +-- Processor Device Status Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.32.1... +------------------------------------------------------------------------------- + +DellProcessorDeviceStatusReading ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + internalError(1), -- Internal Error + thermalTrip(2), -- Thermal Trip + configurationError(32), -- Configuration Error + processorPresent(128), -- Processor Present + processorDisabled(256), -- Processor Disabled + terminatorPresent(512), -- Terminator Present + processorThrottled(1024) -- Processor Throttled +} + +ProcessorDeviceStatusTableEntry ::= SEQUENCE { + processorDeviceStatusChassisIndex DellObjectRange, + processorDeviceStatusIndex DellObjectRange, + processorDeviceStatusStateCapabilities DellStateCapabilities, + processorDeviceStatusStateSettings DellStateSettings, + processorDeviceStatusStatus DellStatus, + processorDeviceStatusReading DellProcessorDeviceStatusReading, + processorDeviceStatusLocationName DellString, + processorDeviceStatusPortIndexReference DellObjectRange +} + +processorDeviceStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProcessorDeviceStatusTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0032 This object defines the Processor Device Status Table." + ::= { deviceGroup 32 } +processorDeviceStatusTableEntry OBJECT-TYPE + SYNTAX ProcessorDeviceStatusTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0032.0001 This object defines the Processor Device Status Table Entry." + INDEX { processorDeviceStatusChassisIndex, + processorDeviceStatusIndex } + ::= { processorDeviceStatusTable 1 } + +processorDeviceStatusChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { processorDeviceStatusTableEntry 1 } +processorDeviceStatusIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0002 This attribute defines the index (one based) of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 2 } +processorDeviceStatusStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0003 This attribute defines the state capabilities of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 3 } +processorDeviceStatusStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0004 This attribute defines the state settings of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 4 } +processorDeviceStatusStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0005 This attribute defines the status of the +processor device status probe. This status will be joined into +the processorDeviceStatus attribute." + ::= { processorDeviceStatusTableEntry 5 } +processorDeviceStatusReading OBJECT-TYPE + SYNTAX DellProcessorDeviceStatusReading + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0006 This attribute defines the reading of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 6 } +processorDeviceStatusLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0007 This attribute defines the location name of the +processor device status probe." + ::= { processorDeviceStatusTableEntry 7 } +processorDeviceStatusPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0032.0001.0008 This attribute defines the index (one based) of the +associated processor port in the same chassis." + ::= { processorDeviceStatusTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Cache Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.40.1... +------------------------------------------------------------------------------- + +DellCacheDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsInstruction(3), -- type is instruction + deviceTypeIsData(4), -- type is data + deviceTypeIsUnified(5) -- type is unified +} +DellCacheDeviceLevel ::= INTEGER { + deviceLevelIsOther(1), -- level is other than following values + deviceLevelIsUnknown(2), -- level is unknown + deviceLevelIsPrimary(3), -- level is primary + deviceLevelIsSecondary(4), -- level is secondary + deviceLevelIsTertiary(5) -- level is tertiary +} +DellCacheDeviceWritePolicy ::= INTEGER { + deviceWritePolicyIsOther(1), -- policy is other than following values + deviceWritePolicyIsUnknown(2), -- policy is unknown + deviceWritePolicyIsWriteBack(3), -- policy is write back + deviceWritePolicyIsWriteThrough(4), -- policy is write through + deviceWritePolicyIsVariesByAddress(5), -- policy is varies by address + deviceWritePolicyIsDeterminedByIO(6) -- policy is determined by I/O query +} +DellCacheDeviceStatusState ::= INTEGER { + other(1), -- state is other than following values + unknown(2), -- state is unknown + enabled(3), -- state is enabled + userDisabled(4), -- state is disabled by user + biosDisabled(5) -- state is BIOS disabled +} +DellCacheDeviceECCType ::= INTEGER { + deviceECCTypeIsOther(1), -- ECC type is other than following values + deviceECCTypeIsUnknown(2), -- ECC type is unknown + deviceECCTypeIsNone(3), -- ECC type is none + deviceECCTypeIsParity(4), -- ECC type is parity + deviceECCTypeIsSingleBitECC(5), -- ECC type is single bit ECC + deviceECCTypeIsMultiBitECC(6), -- ECC type is multibit ECC + deviceECCTypeIsCRC(7) -- ECC type is CRC +} +DellCacheDeviceAssociativity ::= INTEGER { + deviceAssociativityIsOther(1), -- associativity is Other + deviceAssociativityIsUnknown(2), -- associativity is Unknown + deviceAssociativityIsDirectMapped(3), -- associativity is Direct Mapped + deviceAssociativityIsTwoWaySetAssociative(4), -- associativity is 2-way Set-Associative + deviceAssociativityIsFourWaySetAssociative(5), -- associativity is 4-way Set-Associative + deviceAssociativityIsFullyAssociative(6), -- associativity is Fully Associative + deviceAssociativityIsEightWaySetAssociative(7), -- associativity is 8-way Set-Associative + deviceAssociativityIsSixteenWaySetAssociative(8), -- associativity is 16-way Set-Associative + deviceAssociativityIs12WaySetAssociative(9), -- associativity is 12-way Set-Associative + deviceAssociativityIs24WaySetAssociative(10), -- associativity is 24-way Set-Associative + deviceAssociativityIs32WaySetAssociative(11), -- associativity is 32-way Set-Associative + deviceAssociativityIs48WaySetAssociative(12), -- associativity is 48-way Set-Associative + deviceAssociativityIs64WaySetAssociative(13) -- associativity is 64-way Set-Associative +} +DellCacheDeviceLocation ::= INTEGER { + deviceLocationIsOther(1), -- location is other than following values + deviceLocationIsUnknown(2), -- location is unknown + deviceLocationIsInternal(3), -- location is internal + deviceLocationIsExternal(4) -- location is external +} +DellCacheDeviceSRAMType ::= INTEGER { + deviceSRAMTypeIsOther(1), -- SRAM type is other than following values + deviceSRAMTypeIsUnknown(2), -- SRAM type is unknown + deviceSRAMTypeIsNonBurst(3), -- SRAM type is nonburst + deviceSRAMTypeIsBurst(4), -- SRAM type is burst + deviceSRAMTypeIsPipeBurst(5), -- SRAM type is pipeburst + deviceSRAMTypeIsSynchronous(6), -- SRAM type is synchronous + deviceSRAMTypeIsAsynchronous(7) -- SRAM type is asynchronous +} + +CacheDeviceTableEntry ::= SEQUENCE { + cacheDevicechassisIndex DellObjectRange, + cacheDeviceIndex DellObjectRange, + cacheDeviceStateCapabilities DellStateCapabilities, + cacheDeviceStateSettings DellStateSettings, + cacheDeviceStatus DellStatus, + cacheDeviceprocessorDeviceIndexReference DellObjectRange, + cacheDeviceType DellCacheDeviceType, + cacheDeviceLocation DellCacheDeviceLocation, + cacheDeviceStatusState DellCacheDeviceStatusState, + cacheDeviceExternalSocketName DellString, + cacheDeviceLevel DellCacheDeviceLevel, + cacheDeviceMaximumSize DellUnsigned32BitRange, + cacheDeviceCurrentSize DellUnsigned32BitRange, + cacheDeviceSpeed DellUnsigned32BitRange, + cacheDeviceWritePolicy DellCacheDeviceWritePolicy, + cacheDeviceIsSocketed DellBoolean, + cacheDeviceECCType DellCacheDeviceECCType, + cacheDeviceAssociativity DellCacheDeviceAssociativity, + cacheDeviceSupportedType DellCacheDeviceSRAMType, + cacheDeviceCurrentType DellCacheDeviceSRAMType +} + +cacheDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CacheDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0040 This object defines the Cache Device Table." + ::= { deviceGroup 40 } +cacheDeviceTableEntry OBJECT-TYPE + SYNTAX CacheDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0040.0001 This object defines the Cache Device Table Entry." + INDEX { cacheDevicechassisIndex, + cacheDeviceIndex } + ::= { cacheDeviceTable 1 } + +cacheDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cacheDeviceTableEntry 1 } +cacheDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0002 This attribute defines the index (one based) of the +cache device." + ::= { cacheDeviceTableEntry 2 } +cacheDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0003 This attribute defines the state capabilities of the +cache device." + ::= { cacheDeviceTableEntry 3 } +cacheDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0004 This attribute defines the state settings of the +cache device." + ::= { cacheDeviceTableEntry 4 } +cacheDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0005 This attribute defines the status of the cache device." + ::= { cacheDeviceTableEntry 5 } +cacheDeviceprocessorDeviceIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0006 This attribute defines the index (one based) of the +processor device associated with the cache device." + ::= { cacheDeviceTableEntry 6 } +cacheDeviceType OBJECT-TYPE + SYNTAX DellCacheDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0007 This attribute defines the type of cache device." + ::= { cacheDeviceTableEntry 7 } +cacheDeviceLocation OBJECT-TYPE + SYNTAX DellCacheDeviceLocation + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0008 This attribute defines the location of the cache device." + ::= { cacheDeviceTableEntry 8 } +cacheDeviceStatusState OBJECT-TYPE + SYNTAX DellCacheDeviceStatusState + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0009 This attribute defines the status state of the +cache device." + ::= { cacheDeviceTableEntry 9 } +cacheDeviceExternalSocketName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0010 This attribute defines the name of the external socket +name of the cache device if the cache device is socketed." + ::= { cacheDeviceTableEntry 10 } +cacheDeviceLevel OBJECT-TYPE + SYNTAX DellCacheDeviceLevel + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0011 This attribute defines the level of the cache device." + ::= { cacheDeviceTableEntry 11 } +cacheDeviceMaximumSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0012 This attribute defines the maximum size of the +cache device in KBytes. Zero indicates the maximum size is unknown." + ::= { cacheDeviceTableEntry 12 } +cacheDeviceCurrentSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0013 This attribute defines the current size of the +cache device in KBytes. Zero indicates the current size is unknown." + ::= { cacheDeviceTableEntry 13 } +cacheDeviceSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0014 This attribute defines the speed of the +cache device in nanoseconds. Zero indicates the speed is unknown." + ::= { cacheDeviceTableEntry 14 } +cacheDeviceWritePolicy OBJECT-TYPE + SYNTAX DellCacheDeviceWritePolicy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0015 This attribute defines the write policy of the +cache device." + ::= { cacheDeviceTableEntry 15 } +cacheDeviceIsSocketed OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0016 This attribute defines if the cache device is +socketed or not." + ::= { cacheDeviceTableEntry 16 } +cacheDeviceECCType OBJECT-TYPE + SYNTAX DellCacheDeviceECCType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0017 This attribute defines the type of error correction +in use by the cache device." + ::= { cacheDeviceTableEntry 17 } +cacheDeviceAssociativity OBJECT-TYPE + SYNTAX DellCacheDeviceAssociativity + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0018 This attribute defines the type of associativity +in use by the cache device." + ::= { cacheDeviceTableEntry 18 } +cacheDeviceSupportedType OBJECT-TYPE + SYNTAX DellCacheDeviceSRAMType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0019 This attribute defines the supported SRAM type of the +cache device." + ::= { cacheDeviceTableEntry 19 } +cacheDeviceCurrentType OBJECT-TYPE + SYNTAX DellCacheDeviceSRAMType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0040.0001.0020 This attribute defines the current SRAM type of the +cache device." + ::= { cacheDeviceTableEntry 20 } + + +------------------------------------------------------------------------------- +-- Memory Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.50.1... +------------------------------------------------------------------------------- + +DellMemoryDeviceFormFactor ::= INTEGER { + deviceFormFactorIsOther(1), -- form factor is other than following values + deviceFormFactorIsUnknown(2), -- form factor is unknown + deviceFormFactorIsSIMM(3), -- form factor is SIMM + deviceFormFactorIsSIP(4), -- form factor is SIP + deviceFormFactorIsAChip(5), -- form factor is Chip + deviceFormFactorIsDIP(6), -- form factor is DIP + deviceFormFactorIsZIP(7), -- form factor is ZIP + deviceFormFactorIsAProprietaryCard(8), -- form factor is Proprietary Card + deviceFormFactorIsDIMM(9), -- form factor is DIMM + deviceFormFactorIsTSOP(10), -- form factor is TSOP + deviceFormFactorIsARowOfChips(11), -- form factor is Row of Chips + deviceFormFactorIsRIMM(12), -- form factor is RIMM + deviceFormFactorIsSODIMM(13), -- form factor is SODIMM + deviceFormFactorIsSRIMM(14), -- form factor is SRIMM + deviceFormFactorIsFBDIMM(15) -- form factor is FB-DIMM +} +DellMemoryDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsDRAM(3), -- type is DRAM + deviceTypeIsEDRAM(4), -- type is EDRAM + deviceTypeIsVRAM(5), -- type is VRAM + deviceTypeIsSRAM(6), -- type is SRAM + deviceTypeIsRAM(7), -- type is RAM + deviceTypeIsROM(8), -- type is ROM + deviceTypeIsFLASH(9), -- type is FLASH + deviceTypeIsEEPROM(10), -- type is EEPROM + deviceTypeIsFEPROM(11), -- type is FEPROM + deviceTypeIsEPROM(12), -- type is EPROM + deviceTypeIsCDRAM(13), -- type is CDRAM + deviceTypeIs3DRAM(14), -- type is 3DRAM + deviceTypeIsSDRAM(15), -- type is SDRAM + deviceTypeIsSGRAM(16), -- type is SGRAM + deviceTypeIsRDRAM(17), -- type is RDRAM + deviceTypeIsDDR(18), -- type is DDR + deviceTypeIsDDR2(19), -- type is DDR2 + deviceTypeIsDDR2FBDIMM(20), -- type is DDR2 FB-DIMM + deviceTypeIsDDR3(24) -- type is DDR3 +} +DellMemoryDeviceTypeDetails ::= INTEGER { + deviceTypeDetailIsOther(1), -- type detail is other than following values + deviceTypeDetailIsUnknown(2), -- type detail is unknown + deviceTypeDetailIsFastPaged(3), -- type detail is Fast Paged + deviceTypeDetailIsStaticColumn(4), -- type detail is Static Column + deviceTypeDetailIsPseudoStatic(5), -- type detail is Pseudo-static + deviceTypeDetailIsRAMBUS(6), -- type detail is RAMBUS + deviceTypeDetailIsSynchronous(7), -- type detail is Synchronous + deviceTypeDetailIsCMOS(8), -- type detail is CMOS + deviceTypeDetailIsEDO(9), -- type detail is EDO + deviceTypeDetailIsWindowDRAM(10), -- type detail is Window DRAM + deviceTypeDetailIsCacheDRAM(11), -- type detail is Cache DRAM + deviceTypeDetailIsNonVolatile(12), -- type detail is Non-volatile + deviceTypeDetailIsRegistered(13), -- type detail is Registered + deviceTypeDetailIsNonRegistered(14) -- type detail is Non-registered +} +DellMemoryDeviceFailureModes ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- If value is 0 (zero), memory device has no faults. + eccSingleBitCorrectionWarningRate(1), -- ECC single bit correction warning rate exceeded + eccSingleBitCorrectionFailureRate(2), -- ECC single bit correction failure rate exceeded + eccMultiBitFault(4), -- ECC multibit fault encountered + eccSingleBitCorrectionLoggingDisabled(8), -- ECC single bit correction logging disabled + deviceDisabledBySpareActivation(16) -- device disabled because of spare activation +} + +MemoryDeviceTableEntry ::= SEQUENCE { + memoryDevicechassisIndex DellObjectRange, + memoryDeviceIndex DellObjectRange, + memoryDeviceStateCapabilities DellStateCapabilities, + memoryDeviceStateSettings DellStateSettings, + memoryDeviceStatus DellStatus, + memoryDeviceMemoryPortIndexReference DellObjectRange, + memoryDeviceType DellMemoryDeviceType, + memoryDeviceLocationName DellString, + memoryDeviceErrorCount DellSigned32BitRange, + memoryDeviceBankLocationName DellString, + memoryDeviceTypeDetails DellMemoryDeviceTypeDetails, + memoryDeviceFormFactor DellMemoryDeviceFormFactor, + memoryDeviceSet DellUnsigned32BitRange, + memoryDeviceSize DellUnsigned32BitRange, + memoryDeviceSpeed DellUnsigned32BitRange, + memoryDeviceTotalBusWidth DellUnsigned32BitRange, + memoryDeviceTotalDataBusWidth DellUnsigned32BitRange, + memoryDeviceSingleBitErrorCount DellSigned32BitRange, + memoryDeviceMultiBitErrorCount DellSigned32BitRange, + memoryDeviceFailureModes DellMemoryDeviceFailureModes, + memoryDeviceManufacturerName DellString, + memoryDevicePartNumberName DellString, + memoryDeviceSerialNumberName DellString, + memoryDeviceAssetTagName DellString, + memoryDeviceSpeedName DellString +} + +memoryDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0050 This object defines the Memory Device Table." + ::= { deviceGroup 50 } +memoryDeviceTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0050.0001 This object defines the Memory Device Table Entry." + INDEX { memoryDevicechassisIndex, + memoryDeviceIndex } + ::= { memoryDeviceTable 1 } + +memoryDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { memoryDeviceTableEntry 1 } +memoryDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0002 This attribute defines the index (one based) of the +memory device." + ::= { memoryDeviceTableEntry 2 } +memoryDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0003 This attribute defines the state capabilities of the +memory device." + ::= { memoryDeviceTableEntry 3 } +memoryDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0004 This attribute defines the state settings of the +memory device." + ::= { memoryDeviceTableEntry 4 } +memoryDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0005 This attribute defines the status of the memory device." + ::= { memoryDeviceTableEntry 5 } +memoryDeviceMemoryPortIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0006 This attribute defines the index (one based) of the +memory port that this memory device is part of." + ::= { memoryDeviceTableEntry 6 } +memoryDeviceType OBJECT-TYPE + SYNTAX DellMemoryDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0007 This attribute defines the type of the memory device." + ::= { memoryDeviceTableEntry 7 } +memoryDeviceLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0008 This attribute defines the location of the memory device." + ::= { memoryDeviceTableEntry 8 } +memoryDeviceErrorCount OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0009 This attribute defines the total number of ECC corrections +for the memory device. Writing a 0 (zero) to this variable will reset +the error counts for the device. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. +The value will always be zero. Writing a 0 (zero) has no effect." + ::= { memoryDeviceTableEntry 9 } +memoryDeviceBankLocationName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0010 This attribute defines the location of the bank for the +memory device." + ::= { memoryDeviceTableEntry 10 } +memoryDeviceTypeDetails OBJECT-TYPE + SYNTAX DellMemoryDeviceTypeDetails + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0011 This attribute defines the detailed type of the +memory device." + ::= { memoryDeviceTableEntry 11 } +memoryDeviceFormFactor OBJECT-TYPE + SYNTAX DellMemoryDeviceFormFactor + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0012 This attribute defines the form factor of the +memory device." + ::= { memoryDeviceTableEntry 12 } +memoryDeviceSet OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0013 This attribute defines if the memory device is a part +of a set. Zero indicates it is not part of a set; 2,147,483,647 indicates +it is unknown if it is a part of a set." + ::= { memoryDeviceTableEntry 13 } +memoryDeviceSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0014 This attribute defines the size in KBytes of the +memory device. Zero indicates no memory installed; 2,147,483,647 indicates +an unknown memory size." + ::= { memoryDeviceTableEntry 14 } +memoryDeviceSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0015 This attribute defines the speed in nanoseconds +of the memory device. Zero indicates an unknown speed." + ::= { memoryDeviceTableEntry 15 } +memoryDeviceTotalBusWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0016 This attribute defines the total number bits, +including ECC, used by the memory device. 2,147,483,647 indicates +an unknown number of bits." + ::= { memoryDeviceTableEntry 16 } +memoryDeviceTotalDataBusWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0017 This attribute defines the total number of data bits +used by the memory device. 2,147,483,647 indicates an unknown number of bits." + ::= { memoryDeviceTableEntry 17 } +memoryDeviceSingleBitErrorCount OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0018 This attribute defines the total number of single bit +ECC corrections for the memory device. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. +The value will always be zero." + ::= { memoryDeviceTableEntry 18 } +memoryDeviceMultiBitErrorCount OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS deprecated + DESCRIPTION +"1100.0050.0001.0019 This attribute defines the total number of multibit +ECC errors for the memory device. + +**NOTE: This attribute is deprecated and replaced by memoryDeviceFailureModes. +The value will always be zero." + ::= { memoryDeviceTableEntry 19 } +memoryDeviceFailureModes OBJECT-TYPE + SYNTAX DellMemoryDeviceFailureModes + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0020 This attribute defines the failure modes of the +memory device when the memoryDeviceStatus attribute is not ok(3). It is +a bit field that can be used to report more than one type of failure mode +by using a combination of the defined bit masks. + +**NOTE: This attribute replaces the memory device error count attributes. +When the memoryDeviceStatus attribute is not ok(3), this attribute should be +used to determine the reason for that instead of the error count attributes." + ::= { memoryDeviceTableEntry 20 } +memoryDeviceManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0021 This attribute defines the manufacturer of the +memory device." + ::= { memoryDeviceTableEntry 21 } +memoryDevicePartNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0022 This attribute defines the manufacturer's part number +for the memory device." + ::= { memoryDeviceTableEntry 22 } +memoryDeviceSerialNumberName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0023 This attribute defines the serial number of the +memory device." + ::= { memoryDeviceTableEntry 23 } +memoryDeviceAssetTagName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0024 This attribute defines the asset tag of the +memory device." + ::= { memoryDeviceTableEntry 24 } +memoryDeviceSpeedName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0050.0001.0025 This attribute defines the speed of the memory device +in string format with units specified in string." + ::= { memoryDeviceTableEntry 25 } + + +------------------------------------------------------------------------------- +-- Memory Device Mapped Address Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.60.1... +------------------------------------------------------------------------------- + +MemoryDeviceMappedAddressTableEntry ::= SEQUENCE { + memoryDeviceMappedAddresschassisIndex DellObjectRange, + memoryDeviceMappedAddressIndex DellObjectRange, + memoryDeviceMappedAddressStateCapabilities DellStateCapabilities, + memoryDeviceMappedAddressStateSettings DellStateSettings, + memoryDeviceMappedAddressStatus DellStatus, + memoryDeviceIndexReference DellObjectRange, + memoryDeviceMappedAddressRowPosition DellUnsigned32BitRange, + memoryDeviceMappedAddressInterleavePosition DellUnsigned32BitRange, + memoryDeviceMappedAddressInterleaveDepth DellUnsigned32BitRange, + memoryDeviceMappedAddressStartingAddress DellUnsigned64BitRange, + memoryDeviceMappedAddressEndingAddress DellUnsigned64BitRange +} + +memoryDeviceMappedAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF MemoryDeviceMappedAddressTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0060 This object defines the Memory Device Mapped Address Table." + ::= { deviceGroup 60 } +memoryDeviceMappedAddressTableEntry OBJECT-TYPE + SYNTAX MemoryDeviceMappedAddressTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0060.0001 This object defines the Memory Device Mapped Address +Table Entry." + INDEX { memoryDeviceMappedAddresschassisIndex, + memoryDeviceMappedAddressIndex } + ::= { memoryDeviceMappedAddressTable 1 } + +memoryDeviceMappedAddresschassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { memoryDeviceMappedAddressTableEntry 1 } +memoryDeviceMappedAddressIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0002 This attribute defines the index (one based) of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 2 } +memoryDeviceMappedAddressStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0003 This attribute defines the state capabilities of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 3 } +memoryDeviceMappedAddressStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0004 This attribute defines the state settings of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 4 } +memoryDeviceMappedAddressStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0005 This attribute defines the status of the +memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 5 } +memoryDeviceIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0006 This attribute defines the index (one based) of the +memory device associated with the memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 6 } +memoryDeviceMappedAddressRowPosition OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0007 This attribute defines the position of the referenced +memory in a row of the memory device mapped address. +2,147,483,647 indicates an unknown position." + ::= { memoryDeviceMappedAddressTableEntry 7 } +memoryDeviceMappedAddressInterleavePosition OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0008 This attribute defines the position of the referenced +memory in an interleave of the memory device mapped address. +2,147,483,647 indicates an unknown position." + ::= { memoryDeviceMappedAddressTableEntry 8 } +memoryDeviceMappedAddressInterleaveDepth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0009 This attribute defines the maximum number of +consecutive rows from the referenced memory device that are accessed +in a single interleaved transfer in the memory device mapped address. +2,147,483,647 indicates an unknown number of rows." + ::= { memoryDeviceMappedAddressTableEntry 9 } +memoryDeviceMappedAddressStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0010 This attribute defines the physical starting address +in KBytes of the memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 10 } +memoryDeviceMappedAddressEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0060.0001.0011 This attribute defines the physical ending address +in KBytes of the memory device mapped address." + ::= { memoryDeviceMappedAddressTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Generic Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.70.1... +------------------------------------------------------------------------------- + +DellGenericDeviceType ::= INTEGER { + deviceTypeIsOther(1), -- type is other than following values + deviceTypeIsUnknown(2), -- type is unknown + deviceTypeIsAVideoDevice(3), -- type is Video Device + deviceTypeIsASCSIController(4), -- type is SCSI Controller + deviceTypeIsAnEthernetDevice(5), -- type is Ethernet + deviceTypeIsTokenRingDevice(6), -- type is Token Ring + deviceTypeIsASoundDevice(7) -- type is Sound Device +} + +GenericDeviceTableEntry ::= SEQUENCE { + genericDevicechassisIndex DellObjectRange, + genericDeviceIndex DellObjectRange, + genericDeviceStateCapabilities DellStateCapabilities, + genericDeviceStateSettings DellStateSettings, + genericDeviceStatus DellStatus, + genericDeviceSystemSlotIndexReference DellObjectRange, + genericDeviceType DellGenericDeviceType, + genericDeviceName DellString +} + +genericDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF GenericDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0070 This object defines the Generic Device Table." + ::= { deviceGroup 70 } +genericDeviceTableEntry OBJECT-TYPE + SYNTAX GenericDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0070.0001 This object defines the Generic Device Table Entry." + INDEX { genericDevicechassisIndex, + genericDeviceIndex } + ::= { genericDeviceTable 1 } + +genericDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { genericDeviceTableEntry 1 } +genericDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0002 This attribute defines the index (one based) of the +generic device." + ::= { genericDeviceTableEntry 2 } +genericDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0003 This attribute defines the state capabilities of the +generic device." + ::= { genericDeviceTableEntry 3 } +genericDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0004 This attribute defines the state settings of the +generic device." + ::= { genericDeviceTableEntry 4 } +genericDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0005 This attribute defines the status of the +generic device." + ::= { genericDeviceTableEntry 5 } +genericDeviceSystemSlotIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0006 This attribute defines the index (one based) of the +system slot that the generic device is in." + ::= { genericDeviceTableEntry 6 } +genericDeviceType OBJECT-TYPE + SYNTAX DellGenericDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0007 This attribute defines the type of the generic device." + ::= { genericDeviceTableEntry 7 } +genericDeviceName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0070.0001.0008 This attribute defines the name of the generic device." + ::= { genericDeviceTableEntry 8 } + + +------------------------------------------------------------------------------- +-- PCI Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.80.1... +------------------------------------------------------------------------------- + +PCIDeviceTableEntry ::= SEQUENCE { + pCIDevicechassisIndex DellObjectRange, + pCIDeviceIndex DellObjectRange, + pCIDeviceStateCapabilities DellStateCapabilities, + pCIDeviceStateSettings DellStateSettings, + pCIDeviceStatus DellStatus, + pCIDeviceSystemSlotIndexReference DellObjectRange, + pCIDeviceDataBusWidth DellUnsigned32BitRange, + pCIDeviceManufacturerName DellString, + pCIDeviceDescriptionName DellString, + pCIDeviceSpeed DellUnsigned32BitRange, + pCIDeviceAdapterFault DellBoolean +} + +pCIDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0080 This object defines the PCI Device Table." + ::= { deviceGroup 80 } +pCIDeviceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0080.0001 This object defines the PCI Device Table Entry." + INDEX { pCIDevicechassisIndex, + pCIDeviceIndex } + ::= { pCIDeviceTable 1 } + +pCIDevicechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pCIDeviceTableEntry 1 } +pCIDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0002 This attribute defines the index (one based) of the +PCI device." + ::= { pCIDeviceTableEntry 2 } +pCIDeviceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0003 This attribute defines the state capabilities of the +PCI device." + ::= { pCIDeviceTableEntry 3 } +pCIDeviceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0004 This attribute defines the state settings of the +PCI device." + ::= { pCIDeviceTableEntry 4 } +pCIDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0005 This attribute defines the status of the PCI device." + ::= { pCIDeviceTableEntry 5 } +pCIDeviceSystemSlotIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0006 This attribute defines the index (one based) of the +system slot that the PCI Device is in." + ::= { pCIDeviceTableEntry 6 } +pCIDeviceDataBusWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0007 This attribute defines the width of the data bus +of the PCI device." + ::= { pCIDeviceTableEntry 7 } +pCIDeviceManufacturerName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0008 This attribute defines the name of the manufacturer +of the PCI device." + ::= { pCIDeviceTableEntry 8 } +pCIDeviceDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0009 This attribute defines the description of the PCI device." + ::= { pCIDeviceTableEntry 9 } +pCIDeviceSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0010 This attribute defines the bus speed in MHz of the +PCI device. Zero indicates the speed is unknown." + ::= { pCIDeviceTableEntry 10 } +pCIDeviceAdapterFault OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0080.0001.0011 This attribute defines if the PCI device has detected +a fault or not." + ::= { pCIDeviceTableEntry 11 } + + +------------------------------------------------------------------------------- +-- PCI Device Configuration Space Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.82.1... +------------------------------------------------------------------------------- + +PCIDeviceConfigurationSpaceTableEntry ::= SEQUENCE { + pCIDeviceConfigurationSpacechassisIndex DellObjectRange, + pCIDeviceConfigurationSpaceIndex DellObjectRange, + pCIDeviceConfigurationSpaceStateCapabilities DellStateCapabilities, + pCIDeviceConfigurationSpaceStateSettings DellStateSettings, + pCIDeviceConfigurationSpaceStatus DellStatus, + pCIDeviceIndexReference DellObjectRange, + pCIDeviceConfigurationSpaceBusNumber DellUnsigned32BitRange, + pCIDeviceConfigurationSpaceDeviceNumber DellUnsigned32BitRange, + pCIDeviceConfigurationSpaceFunctionNumber DellUnsigned32BitRange, + pCIDeviceConfigurationSpaceHeader OCTET STRING(SIZE(0..1025)) +} + +pCIDeviceConfigurationSpaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF PCIDeviceConfigurationSpaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0082 This object defines the PCI Device Configuration Space Table." + ::= { deviceGroup 82 } +pCIDeviceConfigurationSpaceTableEntry OBJECT-TYPE + SYNTAX PCIDeviceConfigurationSpaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0082.0001 This object defines the PCI Device Configuration Space Table +Entry." + INDEX { pCIDeviceConfigurationSpacechassisIndex, + pCIDeviceConfigurationSpaceIndex } + ::= { pCIDeviceConfigurationSpaceTable 1 } + +pCIDeviceConfigurationSpacechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { pCIDeviceConfigurationSpaceTableEntry 1 } +pCIDeviceConfigurationSpaceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0002 This attribute defines the index (one based) of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 2 } +pCIDeviceConfigurationSpaceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0003 This attribute defines the state capabilities of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 3 } +pCIDeviceConfigurationSpaceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0004 This attribute defines the state settings of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 4 } +pCIDeviceConfigurationSpaceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0005 This attribute defines the status of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 5 } +pCIDeviceIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0006 This attribute defines the index (one based) of the +PCI device that this PCI device configuration space applies to." + ::= { pCIDeviceConfigurationSpaceTableEntry 6 } +pCIDeviceConfigurationSpaceBusNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0007 This attribute defines the bus number of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 7 } +pCIDeviceConfigurationSpaceDeviceNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0008 This attribute defines the device number of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 8 } +pCIDeviceConfigurationSpaceFunctionNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0009 This attribute defines the function number of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 9 } +pCIDeviceConfigurationSpaceHeader OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(0..1025)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0082.0001.0010 This attribute defines the header of the +PCI device configuration space." + ::= { pCIDeviceConfigurationSpaceTableEntry 10 } + + +------------------------------------------------------------------------------- +-- Network Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.90.1... +------------------------------------------------------------------------------- + +DellNetworkDeviceConnectionStatus ::= INTEGER { + -- unknown(0), - unable to determine connection status + connected(1), -- media reports connected + disconnected(2), -- media reports disconnected + driverBad(3), -- driver cannot be opened to determine status + driverDisabled(4), -- driver is disabled + hardwareInitalizing(10), -- hardware is initializing + hardwareResetting(11), -- hardware is resetting + hardwareClosing(12), -- hardware is closing down + hardwareNotReady(13) -- hardware is not ready +} +DellNetworkDeviceTeamingFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- undefined(0), - teaming flags are undefined + noTeam(1), -- device is not part of any team + teamingEnabled(2), -- teaming is enabled + adapterFaultToleranceMode(4), -- adapter fault tolerance teaming mode + loadBalancingMode(8) -- load balancing teaming mode +} +DellNetworkDeviceTOECapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for TOE capability is not supported + unknown(1), -- querying for TOE capability is supported but query returned an error + available(2), -- device has TOE capability + notAvailable(4), -- device does not have TOE capability + cannotBeDetermined(8), -- querying for TOE capability is supported but an error prevented querying + driverNotResponding(16) -- querying for TOE capability is supported but driver did not respond to query +} +DellNetworkDeviceRDMACapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for RDMA capability is not supported + unknown(1), -- querying for RDMA capability is supported but query returned an error + available(2), -- device has RDMA capability + notAvailable(4), -- device does not have RDMA capability + cannotBeDetermined(8), -- querying for RDMA capability is supported but an error prevented querying + driverNotResponding(16) -- querying for RDMA capability is supported but driver did not respond to query +} +DellNetworkDeviceiSCSICapabilityFlags ::= INTEGER { + -- Note: These values are bit fields, so combination values are possible. + -- none(0), - querying for iSCSI capability is not supported + unknown(1), -- querying for iSCSI capability is supported but query returned an error + available(2), -- device has iSCSI capability + notAvailable(4), -- device does not have iSCSI capability + cannotBeDetermined(8), -- querying for iSCSI capability is supported but an error prevented querying + driverNotResponding(16) -- querying for iSCSI capability is supported but driver did not respond to query +} + +NetworkDeviceTableEntry ::= SEQUENCE { + networkDeviceChassisIndex DellObjectRange, + networkDeviceIndex DellObjectRange, + networkDeviceStatus DellStatus, + networkDeviceConnectionStatus DellNetworkDeviceConnectionStatus, + networkDeviceDescriptionName DellString, + networkDeviceProductName DellString, + networkDeviceVendorName DellString, + networkDeviceServiceName DellString, + networkDeviceDriverImagePathName DellString, + networkDeviceDriverVersionName DellString, + networkDeviceIPAddress IpAddress, + networkDeviceIPSubnetMask IpAddress, + networkDeviceDefaultGatewayIPAddress IpAddress, + networkDeviceDHCPServerIPAddress IpAddress, + networkDeviceCurrentMACAddress DellMACAddress, + networkDevicePermanentMACAddress DellMACAddress, + networkDevicePCIBusNumber DellUnsigned8BitRange, + networkDevicePCIDeviceNumber DellUnsigned8BitRange, + networkDevicePCIFunctionNumber DellUnsigned8BitRange, + networkDeviceIRQ DellUnsigned16BitRange, + networkDeviceBaseIOPortAddress DellUnsigned32BitRange, + networkDeviceTeamingFlags DellNetworkDeviceTeamingFlags, + networkDeviceTOECapabilityFlags DellNetworkDeviceTOECapabilityFlags, + networkDeviceTOEEnabled DellBoolean, + networkDeviceRDMACapabilityFlags DellNetworkDeviceRDMACapabilityFlags, + networkDeviceRDMAEnabled DellBoolean, + networkDeviceiSCSICapabilityFlags DellNetworkDeviceiSCSICapabilityFlags, + networkDeviceiSCSIEnabled DellBoolean +} + +networkDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0090 This object defines the Network Device Table." + ::= { deviceGroup 90 } +networkDeviceTableEntry OBJECT-TYPE + SYNTAX NetworkDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0090.0001 This object defines the Network Device Table Entry." + INDEX { networkDeviceChassisIndex, + networkDeviceIndex } + ::= { networkDeviceTable 1 } + +networkDeviceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0001 This attribute defines the index (one based) of the +chassis that contains the network device." + ::= { networkDeviceTableEntry 1 } +networkDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0002 This attribute defines the index (one based) of the +network device." + ::= { networkDeviceTableEntry 2 } +networkDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0003 This attribute defines the status of the network device." + ::= { networkDeviceTableEntry 3 } +networkDeviceConnectionStatus OBJECT-TYPE + SYNTAX DellNetworkDeviceConnectionStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0004 This attribute defines the connection status of the +network device." + ::= { networkDeviceTableEntry 4 } +networkDeviceDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0005 This attribute defines the description of the +network device." + ::= { networkDeviceTableEntry 5 } +networkDeviceProductName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0006 This attribute defines the product name of the +network device." + ::= { networkDeviceTableEntry 6 } +networkDeviceVendorName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0007 This attribute defines the name of the vendor of the +network device." + ::= { networkDeviceTableEntry 7 } +networkDeviceServiceName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0008 This attribute defines the service name of the +network device." + ::= { networkDeviceTableEntry 8 } +networkDeviceDriverImagePathName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0009 This attribute defines the path to the binary image +of the driver for the network device." + ::= { networkDeviceTableEntry 9 } +networkDeviceDriverVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0010 This attribute defines the version of the driver +for the network device." + ::= { networkDeviceTableEntry 10 } +networkDeviceIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0011 This attribute defines the IP address of the +network device." + ::= { networkDeviceTableEntry 11 } +networkDeviceIPSubnetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0012 This attribute defines the IP subnet mask for the +IP address currently assigned to the network device." + ::= { networkDeviceTableEntry 12 } +networkDeviceDefaultGatewayIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0013 This attribute defines the IP address of the +default gateway for the network device." + ::= { networkDeviceTableEntry 13 } +networkDeviceDHCPServerIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0014 This attribute defines the IP address of the +DHCP server that was used to obtain the IP address of the network device +if DHCP is used to configure the network device." + ::= { networkDeviceTableEntry 14 } +networkDeviceCurrentMACAddress OBJECT-TYPE + SYNTAX DellMACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0015 This attribute defines the current MAC address of the +network device." + ::= { networkDeviceTableEntry 15 } +networkDevicePermanentMACAddress OBJECT-TYPE + SYNTAX DellMACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0016 This attribute defines the permanent MAC address of the +network device." + ::= { networkDeviceTableEntry 16 } +networkDevicePCIBusNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0017 This attribute defines the PCI bus number of the +network device." + ::= { networkDeviceTableEntry 17 } +networkDevicePCIDeviceNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0018 This attribute defines the PCI device number of the +network device." + ::= { networkDeviceTableEntry 18 } +networkDevicePCIFunctionNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0019 This attribute defines the PCI function number of the +network device." + ::= { networkDeviceTableEntry 19 } +networkDeviceIRQ OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0020 This attribute defines the interrupt request number +of the network device." + ::= { networkDeviceTableEntry 20 } +networkDeviceBaseIOPortAddress OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0021 This attribute defines the base input/outport port +address of the network device." + ::= { networkDeviceTableEntry 21 } +networkDeviceTeamingFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceTeamingFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0022 This attribute defines the teaming features of the +network device." + ::= { networkDeviceTableEntry 22 } +networkDeviceTOECapabilityFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceTOECapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0023 This attribute defines the TCP/IP Offload Engine (TOE) +capability flags of the network device." + ::= { networkDeviceTableEntry 23 } +networkDeviceTOEEnabled OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0024 This attribute defines if TOE is enabled for the +network device." + ::= { networkDeviceTableEntry 24 } +networkDeviceRDMACapabilityFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceRDMACapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0025 This attribute defines the Remote Direct Memory Access +(RDMA) capability flags of the network device." + ::= { networkDeviceTableEntry 25 } +networkDeviceRDMAEnabled OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0026 This attribute defines if RDMA is enabled for the +network device." + ::= { networkDeviceTableEntry 26 } +networkDeviceiSCSICapabilityFlags OBJECT-TYPE + SYNTAX DellNetworkDeviceiSCSICapabilityFlags + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0027 This attribute defines the Internet Small Computer +System Interface (iSCSI) capability flags of the network device." + ::= { networkDeviceTableEntry 27 } +networkDeviceiSCSIEnabled OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0090.0001.0028 This attribute defines if iSCSI is enabled for the +network device." + ::= { networkDeviceTableEntry 28 } + + +------------------------------------------------------------------------------- +-- Managed System Services Device Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1100.100.1... +------------------------------------------------------------------------------- + +DellManagedSystemServicesDeviceType ::= INTEGER { + -- baseDevice(0), - type is base device + optionalDevice(1) -- type is optional device +} + +ManagedSystemServicesDeviceTableEntry ::= SEQUENCE { + managedSystemServicesDeviceChassisIndex DellObjectRange, + managedSystemServicesDeviceIndex DellObjectRange, + managedSystemServicesDeviceStatus DellStatus, + managedSystemServicesDeviceType DellManagedSystemServicesDeviceType, + managedSystemServicesDeviceStoragePresent DellBoolean, + managedSystemServicesDeviceStorageSize DellUnsigned32BitRange +} + +managedSystemServicesDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF ManagedSystemServicesDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0100 This object defines the Managed System Services Device Table." + ::= { deviceGroup 100 } +managedSystemServicesDeviceTableEntry OBJECT-TYPE + SYNTAX ManagedSystemServicesDeviceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1100.0100.0001 This object defines the Managed System Services Device Table +Entry." + INDEX { managedSystemServicesDeviceChassisIndex, + managedSystemServicesDeviceIndex } + ::= { managedSystemServicesDeviceTable 1 } + +managedSystemServicesDeviceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0001 This attribute defines the index (one-based) of the +chassis that contains the managed system services device." + ::= { managedSystemServicesDeviceTableEntry 1 } +managedSystemServicesDeviceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0002 This attribute defines the index (one-based) of the +managed system services device." + ::= { managedSystemServicesDeviceTableEntry 2 } +managedSystemServicesDeviceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0003 This attribute defines the status of the +managed system services device." + ::= { managedSystemServicesDeviceTableEntry 3 } +managedSystemServicesDeviceType OBJECT-TYPE + SYNTAX DellManagedSystemServicesDeviceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0004 This attribute defines the type of the +managed system services device." + ::= { managedSystemServicesDeviceTableEntry 4 } +managedSystemServicesDeviceStoragePresent OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0005 This attribute defines whether storage is present +on the managed system services device." + ::= { managedSystemServicesDeviceTableEntry 5 } +managedSystemServicesDeviceStorageSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1100.0100.0001.0006 This attribute defines the size in MB (megabytes) +of the storage present on the managed system services device." + ::= { managedSystemServicesDeviceTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Slot Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1200 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- System Slot Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1200.10.1... +------------------------------------------------------------------------------- + +DellSystemSlotStateCapabilities ::= INTEGER { + systemSlotHotPlugIsUnknown(1), -- state capabilities are unknown + systemSlotHotPlugIsHotPluggableCapable(2), -- slot can support Hot Plug + systemSlotHotPlugCanBePoweredOn(4), -- slot power (and corresponding LED) can be powered on + systemSlotHotPlugCanSignalAttention(8), -- slot attention state (and corresponding LED) can be set + systemSlotHotPlugCanSignalPowerFault(16), -- slot power on fault (and corresponding LED) can be detected due to a short or overcurrent + systemSlotHotPlugCanSignalAdapterPresent(32), -- slot adapter (card) present in slot (may not be powered) can be detected + systemSlotHotPlugCanSignalPowerButtonPressed(64), -- slot power button can be pressed to signal a toggle of the power state + canSupportAllHotPlugCapabilities(126), -- slot can support all Hot Plug capabilities + systemSlotCanProvide5Volts(128), -- slot can provide 5 volt supply + systemSlotCanProvide3Point3Volts(256), -- slot can provide 3.3 volt supply + systemSlotCanSignalIfShared(512), -- slot opening if shared with another slot can be detected + systemSlotCanSupportCard16(1024), -- slot can support PC Card-16 + systemSlotCanSupportCardBus(2048), -- slot can support CardBus + systemSlotCanSupportZoomVideo(4096), -- slot can support Zoom Video + systemSlotCanSupportModemRingResume(8192), -- slot can support Modem Ring Resume + systemSlotCanSupportPMESignal(16384), -- slot can support Power Management Enable (PME#) signal + canSupportAllSlotCapabilities(32640), -- slot can support all Slot capabilities + canSupportAllSlotAndAllHotPlugCapabilities(32766) -- slot can support all Slot and all Hot Plug capabilities +} +DellSystemSlotStateSettings ::= INTEGER { + systemSlotHotPlugIsUnknown(1), -- state settings are unknown + systemSlotHotPlugIsHotPluggable(2), -- slot supports Hot Plug + systemSlotHotPlugIsPoweredOn(4), -- slot has power (and corresponding LED) ON + systemSlotHotPlugIsAtAttention(8), -- slot is at attention state (and corresponding LED) is ON + systemSlotHotPlugHasPowerFaulted(16), -- slot has power on fault (and corresponding LED) was detected due to a short or overcurrent + systemSlotHotPlugAdapterIsPresent(32), -- slot adapter (card) present in slot (may not be powered on) + systemSlotHotPlugAdapterPresentAndPoweredOn(36), -- slot adapter (card) present in slot and powered on + systemSlotHotPlugPowerButtonPressed(64), -- slot power button pressed to signal toggle of power state + systemSlotProvides5Volts(128), -- slot provides 5 volt supply + systemSlotProvides3Point3Volts(256), -- slot provides 3.3 volt supply + systemSlotIsShared(512), -- slot opening is shared with another slot (e.g. PCI/EISA shared slot) + systemSlotSupportsCard16(1024), -- slot supports PC Card-16 + systemSlotSupportsCardBus(2048), -- slot supports CardBus + systemSlotSupportsZoomVideo(4096), -- slot supports Zoom Video + systemSlotSupportsModemRingResume(8192), -- slot supports Modem Ring Resume + systemSlotSupportsPMESignal(16384), -- slot supports Power Management Enable (PME#) signal + supportsPMEand3P3Vand5VandHotPluggable(16770), + supportsPMEand3P3Vand5VhasAdapterOn(16804), + supportsPMEand3P3Vand5VhasAdapterOnandisHotPluggable(16806), + supportsPMEand3P3VIsSharedand5VhasAdapterOnandHotPlugable(17316) +} +DellSystemSlotType ::= INTEGER { + systemSlotIsOther(1), -- type is Other + systemSlotIsUnknown(2), -- type is Unknown + systemSlotIsISA(3), -- type is ISA + systemSlotIsMCA(4), -- type is MCA + systemSlotIsEISA(5), -- type is EISA + systemSlotIsPCI(6), -- type is PCI + systemSlotIsPCMCIA(7), -- type is PCMCIA + systemSlotIsVLVESA(8), -- type is VL-VESA + systemSlotIsProprietary(9), -- type is Proprietary + systemSlotIsProcessorCard(10), -- type is Processor Card Slot + systemSlotIsProprietaryMemory(11), -- type is Proprietary Memory Card Slot + systemSlotIsIORiserCard(12), -- type is I/O Riser Card Slot + systemSlotIsNuBUS(13), -- type is NuBus + systemSlotIsPCI66MHz(14), -- type is PCI - 66MHz Capable + systemSlotIsAGP(15), -- type is AGP + systemSlotIsAGP2X(16), -- type is AGP 2X + systemSlotIsAGP4X(17), -- type is AGP 4X + systemSlotIsPC98C20(18), -- type is PC-98/C20 + systemSlotIsPC98C24(19), -- type is PC-98/C24 + systemSlotIsPC98E(20), -- type is PC-98/E + systemSlotIsPC98LocalBus(21), -- type is PC-98/Local Bus + systemSlotIsPC98Card(22), -- type is PC-98/Card + systemSlotIsPCIX(23), -- type is PCI-X + systemSlotIsPCIExpress(24), -- type is PCI Express + systemSlotIsAGP8X(25), -- type is AGP 8X + systemSlotIsPCIExpressX1(166), -- type is PCI Express x1 + systemSlotIsPCIExpressX2(167), -- type is PCI Express x2 + systemSlotIsPCIExpressX4(168), -- type is PCI Express x4 + systemSlotIsPCIExpressX8(169), -- type is PCI Express x8 + systemSlotIsPCIExpressX16(170), -- type is PCI Express x16 + systemSlotIsPCIExpressGen2(171), -- type is PCI Express Gen 2 + systemSlotIsPCIExpressGen2X1(172), -- type is PCI Express Gen 2 x1 + systemSlotIsPCIExpressGen2X2(173), -- type is PCI Express Gen 2 x2 + systemSlotIsPCIExpressGen2X4(174), -- type is PCI Express Gen 2 x4 + systemSlotIsPCIExpressGen2X8(175), -- type is PCI Express Gen 2 x8 + systemSlotIsPCIExpressGen2X16(176) -- type is PCI Express Gen 2 x16 +} +DellSystemSlotUsage ::= INTEGER { + systemSlotUsageIsOther(1), -- usage is other than following values + systemSlotUsageIsUnknown(2), -- usage is unknown + systemSlotUsageIsAvailable(3), -- usage is available + systemSlotUsageIsInUse(4) -- usage is in use +} +DellSystemSlotLength ::= INTEGER { + systemSlotLengthIsOther(1), -- length is other than following values + systemSlotLengthIsUnknown(2), -- length is unknown + systemSlotLengthIsShort(3), -- length is Short + systemSlotLengthIsLong(4) -- length is Long +} +DellSystemSlotCategory ::= INTEGER { + systemSlotCategoryIsOther(1), -- category is other than following values + systemSlotCategoryIsUnknown(2), -- category is unknown + systemSlotCategoryIsBusConnector(3), -- category is Bus Connector + systemSlotCategoryIsPCMCIA(4), -- category is PCMCIA + systemSlotCategoryIsMotherboard(5) -- category is Motherboard +} +DellSystemSlotHotPlugBusWidth ::= INTEGER { +-- Bus Width meanings of type "n bits" are for parallel bus such as PCI. +-- Bus Width meanings of type "nx or xn" are for serial bus such as PCI Express. + busWidthIsOther(1), -- bus width is other than following values + busWidthIsUnknown(2), -- bus width is unknown + busWidthIs8bits(3), -- bus width is 8 bits + busWidthIs16bits(4), -- bus width is 16 bits + busWidthIs32bits(5), -- bus width is 32 bits + busWidthIs64bits(6), -- bus width is 64 bits + busWidthIs128bits(7), -- bus width is 128 bits + busWidthIs1xOrx1(8), -- bus width is 1x or x1 + busWidthIs2xOrx2(9), -- bus width is 2x or x2 + busWidthIs4xOrx4(10), -- bus width is 4x or x4 + busWidthIs8xOrx8(11), -- bus width is 8x or x8 + busWidthIs12xOrx12(12), -- bus width is 12x or x12 + busWidthIs16xOrx16(13), -- bus width is 16x or x16 + busWidthIs32xOrx32(14) -- bus width is 32x or x32 +} + +SystemSlotTableEntry ::= SEQUENCE { + systemSlotchassisIndex DellObjectRange, + systemSlotIndex DellObjectRange, + systemSlotStateCapabilitiesUnique DellSystemSlotStateCapabilities, + systemSlotStateSettingsUnique DellSystemSlotStateSettings, + systemSlotStatus DellStatus, + systemSlotCurrentUsage DellSystemSlotUsage, + systemSlotType DellSystemSlotType, + systemSlotSlotExternalSlotName DellString, + systemSlotLength DellSystemSlotLength, + systemSlotSlotID DellUnsigned32BitRange, + systemSlotCategory DellSystemSlotCategory, + systemSlotHotPlugBusWidth DellSystemSlotHotPlugBusWidth, + systemSlotHotPlugSlotSpeed DellUnsigned32BitRange, + systemSlotHotPlugAdapterSpeed DellUnsigned32BitRange +} + +systemSlotTable OBJECT-TYPE + SYNTAX SEQUENCE OF SystemSlotTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1200.0010 This object defines the System Slot Table." + ::= { slotGroup 10 } +systemSlotTableEntry OBJECT-TYPE + SYNTAX SystemSlotTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1200.0010.0001 This object defines the System Slot Table Entry." + INDEX { systemSlotchassisIndex, + systemSlotIndex } + ::= { systemSlotTable 1 } + +systemSlotchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { systemSlotTableEntry 1 } +systemSlotIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0002 This attribute defines the index (one based) of the +system slot." + ::= { systemSlotTableEntry 2 } +systemSlotStateCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSystemSlotStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0003 This attribute defines the state capabilities of the +system slot." + ::= { systemSlotTableEntry 3 } +systemSlotStateSettingsUnique OBJECT-TYPE + SYNTAX DellSystemSlotStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0004 This attribute defines the state settings of the +system slot." + ::= { systemSlotTableEntry 4 } +systemSlotStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0005 This attribute defines the status of the system slot." + ::= { systemSlotTableEntry 5 } +systemSlotCurrentUsage OBJECT-TYPE + SYNTAX DellSystemSlotUsage + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0006 This attribute defines the current usage of the +system slot." + ::= { systemSlotTableEntry 6 } +systemSlotType OBJECT-TYPE + SYNTAX DellSystemSlotType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0007 This attribute defines the type of the system slot." + ::= { systemSlotTableEntry 7 } +systemSlotSlotExternalSlotName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0008 This attribute defines the name of the external +connector name of the system slot." + ::= { systemSlotTableEntry 8 } +systemSlotLength OBJECT-TYPE + SYNTAX DellSystemSlotLength + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0009 This attribute defines the length of the system slot." + ::= { systemSlotTableEntry 9 } +systemSlotSlotID OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0010 This attribute defines the slot identification number +of the system slot." + ::= { systemSlotTableEntry 10 } +systemSlotCategory OBJECT-TYPE + SYNTAX DellSystemSlotCategory + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0011 This attribute defines the category of the system slot." + ::= { systemSlotTableEntry 11 } +systemSlotHotPlugBusWidth OBJECT-TYPE + SYNTAX DellSystemSlotHotPlugBusWidth + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0012 This attribute defines the bus width of the hot plug +system slot." + ::= { systemSlotTableEntry 12 } +systemSlotHotPlugSlotSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0013 This attribute defines the slot speed in MHz of the +hot plug system slot. Zero indicates the slot speed is unknown." + ::= { systemSlotTableEntry 13 } +systemSlotHotPlugAdapterSpeed OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1200.0010.0001.0014 This attribute defines the adapter speed in MHz of the +hot plug system slot. Zero indicates the adapter speed is unknown." + ::= { systemSlotTableEntry 14 } + + +------------------------------------------------------------------------------- +-- Memory Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Physical Memory Array Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.10.1... +------------------------------------------------------------------------------- + +DellPhysicalMemoryArrayLocation ::= INTEGER { + memoryArrayLocationIsOther(1), -- location is other than following values + memoryArrayLocationIsUnknown(2), -- location is unknown + memoryArrayLocationIsSystemOrMotherboard(3),-- location is System Board or Motherboard + memoryArrayLocationIsISA(4), -- location is ISA add-on card + memoryArrayLocationIsEISA(5), -- location is EISA add-on card + memoryArrayLocationIsPCI(6), -- location is PCI add-on card + memoryArrayLocationIsMCA(7), -- location is MCA add-on card + memoryArrayLocationIsPCMCIA(8), -- location is PCMCIA add-on card + memoryArrayLocationIsProprietary(9), -- location is Proprietary add-on card + memoryArrayLocationIsNUBUS(10), -- location is NUBUS bus + memoryArrayLocationIsPC98C20(11), -- location is PC-98/C20 add-on card + memoryArrayLocationIsPC98C24(12), -- location is PC-98/C24 add-on card + memoryArrayLocationIsPC98E(13), -- location is PC-98/E add-on card + memoryArrayLocationIsPC98LocalBus(14), -- location is PC-98/Local Bus add-on card + memoryArrayLocationIsPC98Card(15) -- location is PC-98/Card slot add-on card +} +DellPhysicalMemoryArrayUse ::= INTEGER { + memoryArrayUseIsOther(1), -- use is other than following values + memoryArrayUseIsUnknown(2), -- use is unknown + memoryArrayUseIsSystemMemory(3), -- use is System Memory + memoryArrayUseIsVideoMemory(4), -- use is Video Memory + memoryArrayUseIsFLASHMemory(5), -- use is Flash Memory + memoryArrayUseIsNonVolatileRAMMemory(6), -- use is Nonvolatile RAM + memoryArrayUseIsCacheMemory(7) -- use is Cache Memory +} +DellPhysicalMemoryArrayECCType ::= INTEGER { + memoryArrayECCTypeIsOther(1), -- ECC type is other than following values + memoryArrayECCTypeIsUnknown(2), -- ECC type is unknown + memoryArrayECCTypeIsNone(3), -- ECC type is none + memoryArrayECCTypeIsParity(4), -- ECC type is Parity + memoryArrayECCTypeIsSingleBitECC(5), -- ECC type is Single bit ECC + memoryArrayECCTypeIsMultiBitECC(6), -- ECC type is Multibit ECC + memoryArrayECCTypeIsCRC(7) -- ECC type is CRC +} + +PhysicalMemoryArrayTableEntry ::= SEQUENCE { + physicalMemoryArraychassisIndex DellObjectRange, + physicalMemoryArrayIndex DellObjectRange, + physicalMemoryArrayStateCapabilities DellStateCapabilities, + physicalMemoryArrayStateSettings DellStateSettings, + physicalMemoryArrayStatus DellStatus, + physicalMemoryArrayUse DellPhysicalMemoryArrayUse, + physicalMemoryArrayECCType DellPhysicalMemoryArrayECCType, + physicalMemoryArrayLocation DellPhysicalMemoryArrayLocation, + physicalMemoryArrayMaximumSize DellUnsigned32BitRange, + physicalMemoryArrayTotalNumberSockets DellUnsigned32BitRange, + physicalMemoryArrayInUseNumberSockets DellUnsigned32BitRange, + physicalMemoryArrayECCErrorNonRecoverableThreshold DellSigned32BitRange, + physicalMemoryArrayECCErrorCriticalThreshold DellSigned32BitRange, + physicalMemoryArrayECCErrorNonCriticalThreshold DellSigned32BitRange, + physicalMemoryArrayRedundantMemoryUnitIndexReference DellObjectRange +} + +physicalMemoryArrayTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryArrayTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0010 This object defines the Physical Memory Array Table." + ::= { memoryGroup 10 } +physicalMemoryArrayTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryArrayTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0010.0001 This object defines the Physical Memory Array Table Entry." + INDEX { physicalMemoryArraychassisIndex, + physicalMemoryArrayIndex } + ::= { physicalMemoryArrayTable 1 } + +physicalMemoryArraychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryArrayTableEntry 1 } +physicalMemoryArrayIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0002 This attribute defines the index (one based) of the +physical memory array." + ::= { physicalMemoryArrayTableEntry 2 } +physicalMemoryArrayStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0003 This attribute defines the state capabilities of the +physical memory array." + ::= { physicalMemoryArrayTableEntry 3 } +physicalMemoryArrayStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0004 This attribute defines the state settings of the +physical memory array." + ::= { physicalMemoryArrayTableEntry 4 } +physicalMemoryArrayStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0005 This attribute defines the status of the physical +memory array." + ::= { physicalMemoryArrayTableEntry 5 } +physicalMemoryArrayUse OBJECT-TYPE + SYNTAX DellPhysicalMemoryArrayUse + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0006 This attribute defines the use of the physical +memory array." + ::= { physicalMemoryArrayTableEntry 6 } +physicalMemoryArrayECCType OBJECT-TYPE + SYNTAX DellPhysicalMemoryArrayECCType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0007 This attribute defines the error correction type used +by the physical memory array." + ::= { physicalMemoryArrayTableEntry 7 } +physicalMemoryArrayLocation OBJECT-TYPE + SYNTAX DellPhysicalMemoryArrayLocation + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0008 This attribute defines the location of the physical +memory array." + ::= { physicalMemoryArrayTableEntry 8 } +physicalMemoryArrayMaximumSize OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0009 This attribute defines the maximum size in KBytes +of the physical memory array. Zero inicates no memory is installed. +2,147,483,647 indicates an unknown maximum size." + ::= { physicalMemoryArrayTableEntry 9 } +physicalMemoryArrayTotalNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0010 This attribute defines the total number of memory +sockets available for the physical memory array. 2,147,483,647 indicates +an unknown number of sockets." + ::= { physicalMemoryArrayTableEntry 10 } +physicalMemoryArrayInUseNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0011 This attribute defines the total number of memory +sockets in use by the physical memory array. 2,147,483,647 indicates +an unknown number of sockets." + ::= { physicalMemoryArrayTableEntry 11 } +physicalMemoryArrayECCErrorNonRecoverableThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0012 This attribute defines the value of the physical +memory array ECC error nonrecoverable threshold. The value is an integer +representing the number of errors detected." + ::= { physicalMemoryArrayTableEntry 12 } +physicalMemoryArrayECCErrorCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.00013 This attribute defines the value of the physical +memory array ECC error critical threshold. The value is an integer +representing the number of errors detected." + ::= { physicalMemoryArrayTableEntry 13 } +physicalMemoryArrayECCErrorNonCriticalThreshold OBJECT-TYPE + SYNTAX DellSigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0010.0001.00014 This attribute defines the value of the physical +memory array ECC error noncritical threshold. The value is an integer +representing the number of errors detected." + ::= { physicalMemoryArrayTableEntry 14 } +physicalMemoryArrayRedundantMemoryUnitIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0010.0001.0015 This attribute defines the index to the associated +redundant memory unit if this physical memory array is part of a redundant +memory unit." + ::= { physicalMemoryArrayTableEntry 15 } + + +------------------------------------------------------------------------------- +-- Physical Memory Array Mapped Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.20.1... +------------------------------------------------------------------------------- + +PhysicalMemoryArrayMappedTableEntry ::= SEQUENCE { + physicalMemoryArrayMappedchassisIndex DellObjectRange, + physicalMemoryArrayMappedIndex DellObjectRange, + physicalMemoryArrayMappedStateCapabilities DellStateCapabilities, + physicalMemoryArrayMappedStateSettings DellStateSettings, + physicalMemoryArrayMappedStatus DellStatus, + physicalMemoryArrayIndexReference DellObjectRange, + physicalMemoryArrayMappedStartingAddress DellUnsigned64BitRange, + physicalMemoryArrayMappedEndingAddress DellUnsigned64BitRange, + physicalMemoryArrayMappedPartitionWidth DellUnsigned32BitRange +} + +physicalMemoryArrayMappedTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryArrayMappedTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0020 This object defines the Physical Memory Array Mapped Table." + ::= { memoryGroup 20 } +physicalMemoryArrayMappedTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryArrayMappedTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0020.0001 This object defines the Physical Memory Array Mapped +Table Entry." + INDEX { physicalMemoryArrayMappedchassisIndex, + physicalMemoryArrayMappedIndex } + ::= { physicalMemoryArrayMappedTable 1 } + +physicalMemoryArrayMappedchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryArrayMappedTableEntry 1 } +physicalMemoryArrayMappedIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0002 This attribute defines the index (one based) of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 2 } +physicalMemoryArrayMappedStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0003 This attribute defines the state capabilities of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 3 } +physicalMemoryArrayMappedStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0004 This attribute defines the state settings of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 4 } +physicalMemoryArrayMappedStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0005 This attribute defines the status of the +physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 5 } +physicalMemoryArrayIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0006 This attribute defines the index (one based) of the +associated physical memory array." + ::= { physicalMemoryArrayMappedTableEntry 6 } +physicalMemoryArrayMappedStartingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0007 This attribute defines the physical starting address +in KBytes of the physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 7 } +physicalMemoryArrayMappedEndingAddress OBJECT-TYPE + SYNTAX DellUnsigned64BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0008 This attribute defines the physical ending address +in KBytes of the physical memory array mapped address." + ::= { physicalMemoryArrayMappedTableEntry 8 } +physicalMemoryArrayMappedPartitionWidth OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0020.0001.0009 This attribute defines the number of memory devices +that form a single row in the memory array mapped address. 2,147,483,647 +indicates an unknown number of memory devices." + ::= { physicalMemoryArrayMappedTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Physical Memory Configuration Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.30.1... +------------------------------------------------------------------------------- + +DellPhysicalMemoryConfigStateCapabilities ::= INTEGER { + -- If set to 0 (zero), there are no State capabilities + unknownCapabilities(1), -- state capabilities are unknown + enableCapable(2), -- memory config can be enabled and disabled + notReadyCapable(4) -- memory config can be not ready +} +DellPhysicalMemoryConfigStateSettings ::= INTEGER { + -- If set to 0 (zero), there are no State settings enabled + unknown(1), -- state settings are unknown + enabled(2), -- memory config is enabled + notReady(4), -- memory config is not ready + redundantMemoryIsActive(8), -- redundant memory is active (in use) + enabledAndRedundantMemoryIsActive(10) +} +DellPhysicalMemoryConfigRedundantCapabilities ::= INTEGER { + -- If set to 0 (zero), there are no Redundant Memory capabilities + unknownCapabilities(1), -- redundant capabilities are unknown + spareCapable(2), -- Spare redundant memory feature is supported + mirrorCapable(4), -- Mirror redundant memory feature is supported + spareAndMirrorCapable(6), + raidCapable(8) -- RAID redundant memory feature is supported +} +DellPhysicalMemoryConfigRedundantSettings ::= INTEGER { + -- If set to 0 (zero), there are no Redundant Memory settings enabled + unknown(1), -- redundant settings are unknown + -- The following settings are mutually exclusive: + spareEnabled(2), -- Spare redundant memory feature is enabled + mirrorEnabled(4), -- Mirror redundant memory feature is enabled + raidEnabled(8) -- RAID redundant memory feature is enabled +} + +PhysicalMemoryConfigTableEntry ::= SEQUENCE { + physicalMemoryConfigChassisIndex DellObjectRange, + physicalMemoryConfigIndex DellObjectRange, + physicalMemoryConfigStateCapabilities DellPhysicalMemoryConfigStateCapabilities, + physicalMemoryConfigStateSettings DellPhysicalMemoryConfigStateSettings, + physicalMemoryConfigStatus DellStatus, + physicalMemoryConfigRedundantCapabilities DellPhysicalMemoryConfigRedundantCapabilities, + physicalMemoryConfigRedundantSettings DellPhysicalMemoryConfigRedundantSettings +} + +physicalMemoryConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryConfigTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0030 This object defines the Physical Memory Configuration Table." + ::= { memoryGroup 30 } +physicalMemoryConfigTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryConfigTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0030.0001 This object defines the Physical Memory Configuration +Table Entry." + INDEX { physicalMemoryConfigChassisIndex, + physicalMemoryConfigIndex } + ::= { physicalMemoryConfigTable 1 } + +physicalMemoryConfigChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryConfigTableEntry 1 } +physicalMemoryConfigIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0002 This attribute defines the index (one based) of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 2 } +physicalMemoryConfigStateCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0003 This attribute defines the state capabilities of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 3 } +physicalMemoryConfigStateSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0004 This attribute defines the state settings of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 4 } +physicalMemoryConfigStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0005 This attribute defines the status of the +physical memory configuration." + ::= { physicalMemoryConfigTableEntry 5 } +physicalMemoryConfigRedundantCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigRedundantCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0006 This attribute defines the redundant capabilities of the +physical memory." + ::= { physicalMemoryConfigTableEntry 6 } +physicalMemoryConfigRedundantSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryConfigRedundantSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0030.0001.0007 This attribute defines the redundant settings of the +physical memory." + ::= { physicalMemoryConfigTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Physical Memory Logging Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.40.1... +------------------------------------------------------------------------------- + +DellPhysicalMemoryLoggingCapabilities ::= INTEGER { + -- If set to 0 (zero), there are no Logging capabilities + unknownCapabilities(1), -- logging capabilities are unknown + enableCapable(2) -- logging can be enabled or disabled +} +DellPhysicalMemoryLoggingSettings ::= INTEGER { + -- If set to 0 (zero), there are no Logging settings enabled + unknown(1), -- logging settings are unknown + enabled(2) -- logging is enabled +} + +PhysicalMemoryLoggingTableEntry ::= SEQUENCE { + physicalMemoryLoggingChassisIndex DellObjectRange, + physicalMemoryLoggingIndex DellObjectRange, + physicalMemoryLoggingCapabilities DellPhysicalMemoryLoggingCapabilities, + physicalMemoryLoggingSettings DellPhysicalMemoryLoggingSettings, + physicalMemoryLoggingStatus DellStatus +} + +physicalMemoryLoggingTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryLoggingTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0040 This object defines the Physical Memory Logging Table." + ::= { memoryGroup 40 } +physicalMemoryLoggingTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryLoggingTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0040.0001 This object defines the Physical Memory Logging Table Entry." + INDEX { physicalMemoryLoggingChassisIndex, + physicalMemoryLoggingIndex } + ::= { physicalMemoryLoggingTable 1 } + +physicalMemoryLoggingChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryLoggingTableEntry 1 } +physicalMemoryLoggingIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0002 This attribute defines the index (one based) of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 2 } +physicalMemoryLoggingCapabilities OBJECT-TYPE + SYNTAX DellPhysicalMemoryLoggingCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0003 This attribute defines the capabilities of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 3 } +physicalMemoryLoggingSettings OBJECT-TYPE + SYNTAX DellPhysicalMemoryLoggingSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0004 This attribute defines the settings of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 4 } +physicalMemoryLoggingStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0040.0001.0005 This attribute defines the status of the +physical memory logging." + ::= { physicalMemoryLoggingTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Redundant Memory Unit Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.50.1... +------------------------------------------------------------------------------- + +RedundantMemoryUnitTableEntry ::= SEQUENCE { + redundantMemoryUnitChassisIndex DellObjectRange, + redundantMemoryUnitIndex DellObjectRange, + redundantMemoryUnitStateCapabilities DellStateCapabilities, + redundantMemoryUnitStateSettings DellStateSettings, + redundantMemoryUnitRedundancyStatus DellStatusRedundancy, + redundantMemoryUnitName DellString, + redundantMemoryUnitStatus DellStatus +} + +redundantMemoryUnitTable OBJECT-TYPE + SYNTAX SEQUENCE OF RedundantMemoryUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0050 This object defines the Redundant Memory Unit Table." + ::= { memoryGroup 50 } +redundantMemoryUnitTableEntry OBJECT-TYPE + SYNTAX RedundantMemoryUnitTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0050.0001 This object defines the Redundant Memory Unit Table Entry." + INDEX { redundantMemoryUnitChassisIndex, + redundantMemoryUnitIndex } + ::= { redundantMemoryUnitTable 1 } + +redundantMemoryUnitChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { redundantMemoryUnitTableEntry 1 } +redundantMemoryUnitIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0002 This attribute defines the index (one based) of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 2 } +redundantMemoryUnitStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0003 This attribute defines the state capabilities of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 3 } +redundantMemoryUnitStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0004 This attribute defines the state settings of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 4 } +redundantMemoryUnitRedundancyStatus OBJECT-TYPE + SYNTAX DellStatusRedundancy + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0005 This attribute defines the redundancy status of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 5 } +redundantMemoryUnitName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0006 This attribute defines the name of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 6 } +redundantMemoryUnitStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0050.0001.0007 This attribute defines the status of the +redundant memory unit." + ::= { redundantMemoryUnitTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Physical Memory Card Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1300.60.1... +------------------------------------------------------------------------------- + +PhysicalMemoryCardTableEntry ::= SEQUENCE { + physicalMemoryCardChassisIndex DellObjectRange, + physicalMemoryCardIndex DellObjectRange, + physicalMemoryCardStateCapabilities DellStateCapabilities, + physicalMemoryCardStateSettings DellStateSettings, + physicalMemoryCardStatus DellStatus, + physicalMemoryCardName DellString, + physicalMemoryCardTotalNumberSockets DellUnsigned32BitRange, + physicalMemoryCardInUseNumberSockets DellUnsigned32BitRange, + physicalMemoryCardPhyMemArrayIndexReference DellObjectRange +} + +physicalMemoryCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF PhysicalMemoryCardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0060 This object defines the Physical Memory Card Table." + ::= { memoryGroup 60 } +physicalMemoryCardTableEntry OBJECT-TYPE + SYNTAX PhysicalMemoryCardTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1300.0060.0001 This object defines the Physical Memory Card Table Entry." + INDEX { physicalMemoryCardChassisIndex, + physicalMemoryCardIndex } + ::= { physicalMemoryCardTable 1 } + +physicalMemoryCardChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { physicalMemoryCardTableEntry 1 } +physicalMemoryCardIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0002 This attribute defines the index (one based) of the +physical memory card." + ::= { physicalMemoryCardTableEntry 2 } +physicalMemoryCardStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0003 This attribute defines the state capabilities of the +physical memory card." + ::= { physicalMemoryCardTableEntry 3 } +physicalMemoryCardStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0004 This attribute defines the state settings of the +physical memory card." + ::= { physicalMemoryCardTableEntry 4 } +physicalMemoryCardStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0005 This attribute defines the status of the +physical memory card." + ::= { physicalMemoryCardTableEntry 5 } +physicalMemoryCardName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0006 This attribute defines the name of the +physical memory card." + ::= { physicalMemoryCardTableEntry 6 } +physicalMemoryCardTotalNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0007 This attribute defines the total number of memory +sockets available on the physical memory card. 2,147,483,647 indicates +an unknown number of sockets." + ::= { physicalMemoryCardTableEntry 7 } +physicalMemoryCardInUseNumberSockets OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0008 This attribute defines the number of memory +sockets in use on the physical memory card. Zero indicates that the +physical memory card is not installed or has a configuration error. +2,147,483,647 indicates an unknown number of sockets." + ::= { physicalMemoryCardTableEntry 8 } +physicalMemoryCardPhyMemArrayIndexReference OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1300.0060.0001.0009 This attribute defines the index (one based) of the +Physical Memory Array Table entry for the physical memory array with the +same chassis index that this physical memory card is associated with." + ::= { physicalMemoryCardTableEntry 9 } + + +------------------------------------------------------------------------------- +-- BIOS Setup Control Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- BIOS Setup Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.10.1.. +------------------------------------------------------------------------------- + +DellSpeakerControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- speaker control capabilities are unknown + enableCapable(2), -- speaker can be enabled or disabled + lowCapable(4), -- speaker volume can be set to low + mediumCapable(8), -- speaker volume can be set to medium + highCapable(16), -- speaker volume can be set to high + allVolumeCapable(30) -- speaker volume can be set to low, medium or high +} +DellSpeakerControlSettingsUnique ::= INTEGER { + unknown(1), -- speaker control settings are unknown + enabled(2), -- speaker is enabled + low(4), -- speaker volume is low + medium(8), -- speaker volume is medium + high(16) -- speaker volume is high +} +DellNIFwakeonLanControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- wake on LAN capabilities are unknown + enableCapable(2), -- wake on LAN can be enabled or disabled + addInCardCapable(4), -- wake on LAN by add in card capable + onBoardCapable(8), -- wake on LAN by onboard NIF capable + bothCapable(14) +} +DellNIFwakeonLanControlSettingsUnique ::= INTEGER { + unknown(1), -- wake on LAN settings are unknown + enabled(2), -- wake on LAN is enabled + addInCard(4), -- wake on LAN is by add in card + onBoard(8), -- wake on LAN is by onboard NIF + addInCardOrOnBoard(12) -- wake on LAN is by either add in card or onboard NIF +} +DellBootSequenceControlCapabilitiesUnique ::= INTEGER { + bootSequenceUnknown(1), -- boot sequence capabilities are unknown + bootFromDisketteFirstCapable(2), -- boot sequence can be diskette first + bootFromHardDriveFirstCapable(4), -- boot sequence can be IDE hard drive first + bootFromDisketteORHardDriveFirstCapable(6), -- boot sequence can be diskette or IDE hard drive first + bootFromDeviceListCapable(8), -- boot sequence can be device list + bootFromCDROMFirstCapable(16), -- boot sequence can be CD ROM first + allFirstCapable(30) -- boot sequence can be any of the above methods first +} +DellBootSequenceControlSettingsUnique ::= INTEGER { + bootSequenceUnknown(1), -- boot sequence settings are unknown + bootFromDisketteFirst(2), -- boot sequence is diskette first + bootFromHardDriveFirst(4), -- boot sequence is IDE hard drive first + bootFromDeviceList(8), -- boot sequence is device list + bootFromCDROMFirst(16) -- boot sequence is CD ROM first +} +DellBIOSPasswordControlCapabilitiesUnique ::= INTEGER { + passwordControlCapabilitiesUnknown(1), -- BIOS password capabilities are unknown + passwordControlEnableCapable(2), -- BIOS password can be enabled + passwordControlJumperDisableCapable(4), -- BIOS password can be jumper disabled + passwordControlEnableAndJumperDisableCapable(6) +} +DellBIOSPasswordControlSettingsUnique ::= INTEGER { + passwordControlSettingsUnknown(1), -- BIOS password settings are unknown + passwordControlEnabled(2), -- BIOS password is enabled + passwordControlJumperDisabled(4) -- BIOS password has been disabled by jumper +} +DellTPMSecurityControlCapabilities ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + offCapable(1), -- TPM security can be Off + onWithPrebootMeasurementsCapable(2), -- TPM security can be On with Pre-boot Measurements + onWithoutPrebootMeasurementsCapable(4) -- TPM security can be On without Pre-boot Measurements +} +DellTPMSecurityControlSetting ::= INTEGER { + -- off(0), - TPM security is Off + onWithPrebootMeasurements(1), -- TPM security is On with Pre-boot Measurements + onWithoutPrebootMeasurements(2) -- TPM security is On without Pre-boot Measurements +} + +BiosSetUpControlTableEntry ::= SEQUENCE { + biosSetUpControlchassisIndex DellObjectRange, + bSUCpointingDeviceControlCapabilities DellStateCapabilities, + bSUCpointingDeviceControlSettings DellStateSettings, + bSUCpointingDeviceControlStatus DellStatus, + bSUCpointingDeviceControlName DellString, + bSUCnumLockControlCapabilities DellStateCapabilities, + bSUCnumLockControlSettings DellStateSettings, + bSUCnumLockControlStatus DellStatus, + bSUCnumLockControlName DellString, + bSUCprocessorSerialNumberControlCapabilities DellStateCapabilities, + bSUCprocessorSerialNumberControlSettings DellStateSettings, + bSUCprocessorSerialNumberControlStatus DellStatus, + bSUCprocessorSerialNumberControlName DellString, + bSUCspeakerControlCapabilitiesUnique DellSpeakerControlCapabilitiesUnique, + bSUCspeakerControlSettingsUnique DellSpeakerControlSettingsUnique, + bSUCspeakerControlStatus DellStatus, + bSUCspeakerControlName DellString, + bSUCnIFwakeonLanControlCapabilitiesUnique DellNIFwakeonLanControlCapabilitiesUnique, + bSUCnIFwakeonLanControlSettingsUnique DellNIFwakeonLanControlSettingsUnique, + bSUCnIFwakeonLanControlStatus DellStatus, + bSUCnIFwakeonLanControlName DellString, + bSUCbootSequenceControlCapabilitiesUnique DellBootSequenceControlCapabilitiesUnique, + bSUCbootSequenceControlSettingsUnique DellBootSequenceControlSettingsUnique, + bSUCbootSequenceControlStatus DellStatus, + bSUCbootSequenceControlName DellString, + bSUCadministratorPasswordControlCapabilitiesUnique DellBIOSPasswordControlCapabilitiesUnique, + bSUCadministratorPasswordControlSettingsUnique DellBIOSPasswordControlSettingsUnique, + bSUCadministratorPasswordControlStatus DellStatus, + bSUCadministratorPasswordPasswordVerifyName DellString, + bSUCadministratorPasswordNewPasswordName DellString, + bSUCuserPasswordControlCapabilitiesUnique DellBIOSPasswordControlCapabilitiesUnique, + bSUCuserPasswordControlSettingsUnique DellBIOSPasswordControlSettingsUnique, + bSUCuserPasswordControlStatus DellStatus, + bSUCuserPasswordPasswordVerifyName DellString, + bSUCuserPasswordNewPasswordName DellString, + bSUCtpmSecurityControlCapabilities DellTPMSecurityControlCapabilities, + bSUCtpmSecurityControlSetting DellTPMSecurityControlSetting, + bSUCtpmSecurityControlStatus DellStatus, + bSUCtpmSecurityControlName DellString +} + +biosSetUpControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF BiosSetUpControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0010 This object defines the BIOS Setup Control Table." + ::= { biosSetUpControlGroup 10 } +biosSetUpControlTableEntry OBJECT-TYPE + SYNTAX BiosSetUpControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0010.0001 This object defines the BIOS Setup Control Table Entry." + INDEX { biosSetUpControlchassisIndex } + ::= { biosSetUpControlTable 1 } + +biosSetUpControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { biosSetUpControlTableEntry 1 } +bSUCpointingDeviceControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0002 This attribute defines the BIOS setup control capabilities +of the pointing Device." + ::= { biosSetUpControlTableEntry 2 } +bSUCpointingDeviceControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0003 This attribute defines the BIOS setup control settings +of the pointing device." + ::= { biosSetUpControlTableEntry 3 } +bSUCpointingDeviceControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0004 This attribute defines the BIOS setup control status +of the pointing device." + ::= { biosSetUpControlTableEntry 4 } +bSUCpointingDeviceControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0005 This attribute defines the BIOS setup control name +of the pointing device." + ::= { biosSetUpControlTableEntry 5 } +bSUCnumLockControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0006 This attribute defines the BIOS setup control capabilities +of the numeric lock." + ::= { biosSetUpControlTableEntry 6 } +bSUCnumLockControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0007 This attribute defines the BIOS setup control settings +of the numeric lock." + ::= { biosSetUpControlTableEntry 7 } +bSUCnumLockControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0008 This attribute defines the BIOS setup control status +of the numeric lock." + ::= { biosSetUpControlTableEntry 8 } +bSUCnumLockControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0009 This attribute defines the BIOS setup control name +of the numeric lock." + ::= { biosSetUpControlTableEntry 9 } +bSUCprocessorSerialNumberControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0010 This attribute defines the BIOS setup control capabilities +of the processor serial number." + ::= { biosSetUpControlTableEntry 10 } +bSUCprocessorSerialNumberControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0011 This attribute defines the BIOS setup control settings +of the processor serial number." + ::= { biosSetUpControlTableEntry 11 } +bSUCprocessorSerialNumberControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0012 This attribute defines the BIOS setup control status +of the processor serial number." + ::= { biosSetUpControlTableEntry 12 } +bSUCprocessorSerialNumberControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0013 This attribute defines the BIOS setup control name +of the processor serial number." + ::= { biosSetUpControlTableEntry 13 } +bSUCspeakerControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSpeakerControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0014 This attribute defines the BIOS setup control capabilities +of the speaker." + ::= { biosSetUpControlTableEntry 14 } +bSUCspeakerControlSettingsUnique OBJECT-TYPE + SYNTAX DellSpeakerControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0015 This attribute defines the BIOS setup control settings +of the speaker." + ::= { biosSetUpControlTableEntry 15 } +bSUCspeakerControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0016 This attribute defines the BIOS setup control status +of the speaker." + ::= { biosSetUpControlTableEntry 16 } +bSUCspeakerControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0017 This attribute defines the BIOS setup control name +of the speaker." + ::= { biosSetUpControlTableEntry 17 } +bSUCnIFwakeonLanControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellNIFwakeonLanControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0018 This attribute defines the BIOS setup control capabilities +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 18 } +bSUCnIFwakeonLanControlSettingsUnique OBJECT-TYPE + SYNTAX DellNIFwakeonLanControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0019 This attribute defines the BIOS setup control settings +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 19 } +bSUCnIFwakeonLanControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0020 This attribute defines the BIOS setup control status +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 20 } +bSUCnIFwakeonLanControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0021 This attribute defines the BIOS setup control name +of the NIF wake on Lan." + ::= { biosSetUpControlTableEntry 21 } +bSUCbootSequenceControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellBootSequenceControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0022 This attribute defines the BIOS setup control capabilities +of the boot sequence." + ::= { biosSetUpControlTableEntry 22 } +bSUCbootSequenceControlSettingsUnique OBJECT-TYPE + SYNTAX DellBootSequenceControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0023 This attribute defines the BIOS setup control settings +of the boot sequence." + ::= { biosSetUpControlTableEntry 23 } +bSUCbootSequenceControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0024 This attribute defines the BIOS setup control status +of the boot sequence." + ::= { biosSetUpControlTableEntry 24 } +bSUCbootSequenceControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0025 This attribute defines the BIOS setup control name +of the boot sequence." + ::= { biosSetUpControlTableEntry 25 } +bSUCadministratorPasswordControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0026 This attribute defines the BIOS setup control capabilities +of the administrator password." + ::= { biosSetUpControlTableEntry 26 } +bSUCadministratorPasswordControlSettingsUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0027 This attribute defines the BIOS setup control settings +of the administrator password." + ::= { biosSetUpControlTableEntry 27 } +bSUCadministratorPasswordControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0028 This attribute defines the BIOS setup control status +of the administrator password." + ::= { biosSetUpControlTableEntry 28 } +bSUCadministratorPasswordPasswordVerifyName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0029 This attribute defines the BIOS setup control value +of the current administrator password." + ::= { biosSetUpControlTableEntry 29 } +bSUCadministratorPasswordNewPasswordName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0030 This attribute defines the BIOS setup control value +of the new administrator password. To set a new administrator password, +a successful set of the current administrator password must have been +done immediately preceeding this set." + ::= { biosSetUpControlTableEntry 30 } +bSUCuserPasswordControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0031 This attribute defines the BIOS setup control capabilities +of the user password." + ::= { biosSetUpControlTableEntry 31 } +bSUCuserPasswordControlSettingsUnique OBJECT-TYPE + SYNTAX DellBIOSPasswordControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0032 This attribute defines the BIOS setup control settings +of the user password." + ::= { biosSetUpControlTableEntry 32 } +bSUCuserPasswordControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0033 This attribute defines the BIOS setup control status +of the user password." + ::= { biosSetUpControlTableEntry 33 } +bSUCuserPasswordPasswordVerifyName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0034 This attribute defines the BIOS setup control value +of the current user password." + ::= { biosSetUpControlTableEntry 34 } +bSUCuserPasswordNewPasswordName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0035 This attribute defines the BIOS setup control value +of the new user password. To set a new user password, a successful set of the +current user password must have been done immediately preceeding this set." + ::= { biosSetUpControlTableEntry 35 } +bSUCtpmSecurityControlCapabilities OBJECT-TYPE + SYNTAX DellTPMSecurityControlCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0036 This attribute defines the BIOS setup control capabilities +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 36 } +bSUCtpmSecurityControlSetting OBJECT-TYPE + SYNTAX DellTPMSecurityControlSetting + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0037 This attribute defines the BIOS setup control setting +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 37 } +bSUCtpmSecurityControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0038 This attribute defines the BIOS setup control status +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 38 } +bSUCtpmSecurityControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0010.0001.0039 This attribute defines the BIOS setup control name +of Trusted Platform Module (TPM) security." + ::= { biosSetUpControlTableEntry 39 } + + +------------------------------------------------------------------------------- +-- Small Computer Systems Interface (SCSI) Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.20.1... +------------------------------------------------------------------------------- + +SCSIControlTableEntry ::= SEQUENCE { + sCSIControlchassisIndex DellObjectRange, + sCSIControlIndex DellObjectRange, + sCSIControlCapabilities DellStateCapabilities, + sCSIControlSettings DellStateSettings, + sCSIControlStatus DellStatus, + sCSIControlName DellString +} + +sCSIControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF SCSIControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0020 This object defines the Small Computer Systems Interface (SCSI) +Control Table." + ::= { biosSetUpControlGroup 20 } +sCSIControlTableEntry OBJECT-TYPE + SYNTAX SCSIControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0020.0001 This object defines the Small Computer Systems Interface (SCSI) +Control Table Entry." + INDEX { sCSIControlchassisIndex, + sCSIControlIndex } + ::= { sCSIControlTable 1 } + +sCSIControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0001 This attribute defines the index (one based) of the +assoicated chassis." + ::= { sCSIControlTableEntry 1 } +sCSIControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0002 This attribute defines the index (one based) of the +SCSI control." + ::= { sCSIControlTableEntry 2 } +sCSIControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0003 This attribute defines the state capabilities of the +SCSI control." + ::= { sCSIControlTableEntry 3 } +sCSIControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0004 This attribute defines the state settings of the +SCSI control." + ::= { sCSIControlTableEntry 4 } +sCSIControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0005 This attribute defines the status of the +SCSI control." + ::= { sCSIControlTableEntry 5 } +sCSIControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0020.0001.0006 This attribute defines the BIOS setup control name +of the SCSI device." + ::= { sCSIControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Parallel Port Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.30.1... +------------------------------------------------------------------------------- + +DellParallelPortControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- parallel port capabilities are unknown + enableCapable(2), -- parallel port can be enabled or disabled + lpt1Capable(4), -- parallel port can be set to LPT1 + lpt1andEnableCapable(6), -- parallel port can be enabled and set to LPT1 + lpt2Capable(8), -- parallel port can be set to LPT2 + lpt2andEnableCapable(10), -- parallel port can be enabled and set to LPT2 + lpt3Capable(16), -- parallel port can be set to LPT3 + lpt3andEnableCapable(18), -- parallel port can be enabled and set to LPT3 + allParallelPortCapable(30) -- parallel port can be enabled and set to LPT1, LPT2 or LPT3 +} +DellParallelPortControlSettingsUnique ::= INTEGER { + unknown(1), -- parallel port settings are unknown + enabled(2), -- parallel port enabled + lpt1(4), -- parallel port set to LPT1 + lpt1Enabled(6), -- parallel port enabled and set to LPT1 + lpt2(8), -- parallel port set to LPT2 + lpt2Enabled(10), -- parallel port enabled and set to LPT2 + lpt3(16), -- parallel port set to LPT3 + lpt3Enabled(18) -- parallel port enabled and set to LPT3 +} +DellParallelPortControlModeCapabilitiesUnique ::= INTEGER { + unknown(1), -- mode capabilities are unknown + atCapable(2), -- parallel port can be set to AT mode + ps2Capable(4), -- parallel port can be set to PS/2 mode + atAndPS2Capable(6), -- parallel port can be set to AT mode or PS/2 mode + ecpCapable(8), -- parallel port can be set to ECP mode + eppCapable(16), -- parallel port can be set to EPP mode + allModeCapable(30) -- parallel port can be set to all modes +} +DellParallelPortControlModeSettingsUnique ::= INTEGER { + unknown(1), -- mode settings are unknown + atModeEnabled(2), -- parallel port set to AT mode + ps2ModeEnabled(4), -- parallel port set to PS/2 mode + ecpModeEnabled(8), -- parallel port set to ECP mode + eppModeEnabled(16) -- parallel port set to EPP mode +} + +ParallelPortControlTableEntry ::= SEQUENCE { + parallelPortControlchassisIndex DellObjectRange, + parallelPortControlIndex DellObjectRange, + parallelPortControlCapabilitiesUnique DellParallelPortControlCapabilitiesUnique, + parallelPortControlSettingsUnique DellParallelPortControlSettingsUnique, + parallelPortControlStatus DellStatus, + parallelPortControlName DellString, + parallelPortControlModeCapabilitiesUnique DellParallelPortControlModeCapabilitiesUnique, + parallelPortControlModeSettingsUnique DellParallelPortControlModeSettingsUnique +} + +parallelPortControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParallelPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0030 This object defines the Parallel Port Control Table." + ::= { biosSetUpControlGroup 30 } +parallelPortControlTableEntry OBJECT-TYPE + SYNTAX ParallelPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0030.0001 This object defines the Parallel Port Control Table Entry." + INDEX { parallelPortControlchassisIndex, + parallelPortControlIndex } + ::= { parallelPortControlTable 1 } + +parallelPortControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { parallelPortControlTableEntry 1 } +parallelPortControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0002 This attribute defines the index (one based) of the +parallel port control." + ::= { parallelPortControlTableEntry 2 } +parallelPortControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellParallelPortControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0003 This attribute defines the port capabilities of the +parallel port control." + ::= { parallelPortControlTableEntry 3 } +parallelPortControlSettingsUnique OBJECT-TYPE + SYNTAX DellParallelPortControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0004 This attribute defines the port settings of the +parallel port control." + ::= { parallelPortControlTableEntry 4 } +parallelPortControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0005 This attribute defines the status of the +parallel port control." + ::= { parallelPortControlTableEntry 5 } +parallelPortControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0006 This attribute defines the BIOS setup control name +of the parallel port." + ::= { parallelPortControlTableEntry 6 } +parallelPortControlModeCapabilitiesUnique OBJECT-TYPE + SYNTAX DellParallelPortControlModeCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0007 This attribute defines the mode capabilities of the +parallel port control." + ::= { parallelPortControlTableEntry 7 } +parallelPortControlModeSettingsUnique OBJECT-TYPE + SYNTAX DellParallelPortControlModeSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0030.0001.0008 This attribute defines the mode settings of the +parallel port control." + ::= { parallelPortControlTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Serial Port Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.40.1... +------------------------------------------------------------------------------- + +DellSerialPortControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- serial port capabilities are unknown + enableCapable(2), -- serial port can be enabled or disabled + com1Capable(4), -- serial port can be set to COM1 + enableAndCom1Capable(6), -- serial port can be enabled and set to COM1 + com2Capable(8), -- serial port can be set to COM2 + enableAndCom2Capable(10), -- serial port can be enabled and set to COM2 + com3Capable(16), -- serial port can be set to COM3 + enableAndCom3Capable(18), -- serial port can be enabled and set to COM3 + com4Capable(32), -- serial port can be set to COM4 + enableAndCom4Capable(34), -- serial port can be enabled and set to COM4 + autoConfigCapable(64), -- serial port can be autoconfigured + com1OrCom3CapableAndAutoConfigCapable(86), + com2OrCom4CapableAndAutoConfigCapable(106), + allcomCapable(126) -- serial port supports all capabilities +} +DellSerialPortControlSettingsUnique ::= INTEGER { + unknown(1), -- serial port settings are unknown + enabled(2), -- serial port enabled + com1(4), -- serial port set to COM1 + com1Enabled(6), -- serial port enabled and set to COM1 + com2(8), -- serial port set to COM2 + com2Enabled(10), -- serial port enabled and set to COM2 + com3(16), -- serial port set to COM3 + com3Enabled(18), -- serial port enabled and set to COM3 + com4(32), -- serial port set to COM4 + com4Enabled(34), -- serial port enabled and set to COM4 + comPortsAutoConfig(64), -- serial port set to autoconfiguration + enabledAndAutoConfig(66) -- serial port enabled and set to autoconfiguration +} + +SerialPortControlTableEntry ::= SEQUENCE { + serialPortControlchassisIndex DellObjectRange, + serialPortControlIndex DellObjectRange, + serialPortControlCapabilitiesUnique DellSerialPortControlCapabilitiesUnique, + serialPortControlSettingsUnique DellSerialPortControlSettingsUnique, + serialPortControlStatus DellStatus, + serialPortControlName DellString +} + +serialPortControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF SerialPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0040 This object defines the Serial Port Control Table." + ::= { biosSetUpControlGroup 40 } +serialPortControlTableEntry OBJECT-TYPE + SYNTAX SerialPortControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0040.0001 This object defines the Serial Port Control Table Entry." + INDEX { serialPortControlchassisIndex, + serialPortControlIndex } + ::= { serialPortControlTable 1 } + +serialPortControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { serialPortControlTableEntry 1 } +serialPortControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0002 This attribute defines the index (one based) of the +serial port control." + ::= { serialPortControlTableEntry 2 } +serialPortControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellSerialPortControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0003 This attribute defines the port capabilities of the +serial port control." + ::= { serialPortControlTableEntry 3 } +serialPortControlSettingsUnique OBJECT-TYPE + SYNTAX DellSerialPortControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0004 This attribute defines the port settings of the +serial port control." + ::= { serialPortControlTableEntry 4 } +serialPortControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0005 This attribute defines the status of the +serial port control." + ::= { serialPortControlTableEntry 5 } +serialPortControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0040.0001.0006 This attribute defines the BIOS setup control name +of the serial port." + ::= { serialPortControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Universal Serial Bus (USB) Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.50.1... +------------------------------------------------------------------------------- + +UsbControlTableEntry ::= SEQUENCE { + usbControlchassisIndex DellObjectRange, + usbControlIndex DellObjectRange, + usbControlCapabilities DellStateCapabilities, + usbControlSettings DellStateSettings, + usbControlStatus DellStatus, + usbControlName DellString +} + +usbControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF UsbControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0050 This object defines the Universal Serial Bus (USB) Control Table." + ::= { biosSetUpControlGroup 50 } +usbControlTableEntry OBJECT-TYPE + SYNTAX UsbControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0050.0001 This object defines the Universal Serial Bus (USB) Control +Table Entry." + INDEX { usbControlchassisIndex, + usbControlIndex } + ::= { usbControlTable 1 } + +usbControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { usbControlTableEntry 1 } +usbControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0002 This attribute defines the index (one based) of the +USB control." + ::= { usbControlTableEntry 2 } +usbControlCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0003 This attribute defines the state capabilities of the +USB control." + ::= { usbControlTableEntry 3 } +usbControlSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0004 This attribute defines the state settings of the +USB control." + ::= { usbControlTableEntry 4 } +usbControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0005 This attribute defines the status of the USB control." + ::= { usbControlTableEntry 5 } +usbControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0050.0001.0006 This attribute defines the BIOS setup control name +of the USB device." + ::= { usbControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Integrated Device Electronics (IDE) Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.60.1... +------------------------------------------------------------------------------- + +DellideControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- IDE capabilities are unknown + ideControlAutoConfigOrEnableCapable(2) -- IDE can be autoconfigured or enabled/disabled +} +DellideControlSettingsUnique ::= INTEGER { + unknown(1), -- IDE settings are unknown + ideControlAutoConfigEnabledOrEnabled(2) -- IDE set to autoconfigured or enabled +} + +IdeControlTableEntry ::= SEQUENCE { + ideControlchassisIndex DellObjectRange, + ideControlIndex DellObjectRange, + ideControlCapabilitiesUnique DellideControlCapabilitiesUnique, + ideControlSettingsUnique DellideControlSettingsUnique, + ideControlStatus DellStatus, + ideControlName DellString +} + +ideControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF IdeControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0060 This object defines the Integrated Device Electronics (IDE) +Control Table." + ::= { biosSetUpControlGroup 60 } +ideControlTableEntry OBJECT-TYPE + SYNTAX IdeControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0060.0001 This object defines the Integrated Device Electronics (IDE) +Control Table Entry." + INDEX { ideControlchassisIndex, + ideControlIndex } + ::= { ideControlTable 1 } + +ideControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { ideControlTableEntry 1 } +ideControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0002 This attribute defines the index (one based) of the +IDE control." + ::= { ideControlTableEntry 2 } +ideControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellideControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0003 This attribute defines the capabilities of the +IDE control." + ::= { ideControlTableEntry 3 } +ideControlSettingsUnique OBJECT-TYPE + SYNTAX DellideControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0004 This attribute defines the settings of the +IDE control." + ::= { ideControlTableEntry 4 } +ideControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0005 This attribute defines the state of the IDE control." + ::= { ideControlTableEntry 5 } +ideControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0060.0001.0006 This attribute defines the BIOS setup control name +of the IDE device." + ::= { ideControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Diskette Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.70.1... +------------------------------------------------------------------------------- + +DellDisketteControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- diskette capabilities are unknown + disketteAutoConfigOrEnableCapable(2), -- diskette can be enabled or disabled + disketteReadOnlyCapable(4), -- diskette can be set to read only + disketteAutoConfigOrEnableCapableandReadOnlyCapable(6) +} +DellDisketteControlSettingsUnique ::= INTEGER { + unknown(1), -- Diskette Control state is unknown + disketteAutoConfigEnabledOrEnabled(2), -- Diskette Control is autoconfigurable or enabled + disketteisReadOnly(4) -- Diskette is in read only operation +} + +DisketteControlTableEntry ::= SEQUENCE { + disketteControlchassisIndex DellObjectRange, + disketteControlIndex DellObjectRange, + disketteControlCapabilitiesUnique DellDisketteControlCapabilitiesUnique, + disketteControlSettingsUnique DellDisketteControlSettingsUnique, + disketteControlStatus DellStatus, + disketteControlName DellString +} + +disketteControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF DisketteControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0070 This object defines the Diskette Control Table." + ::= { biosSetUpControlGroup 70 } +disketteControlTableEntry OBJECT-TYPE + SYNTAX DisketteControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0070.0001 This object defines the Diskette Control Table Entry." + INDEX { disketteControlchassisIndex, + disketteControlIndex } + ::= { disketteControlTable 1 } + +disketteControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { disketteControlTableEntry 1 } +disketteControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0002 This attribute defines the index (one based) of the +diskette control." + ::= { disketteControlTableEntry 2 } +disketteControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellDisketteControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0003 This attribute defines the capabilities of the +diskette control." + ::= { disketteControlTableEntry 3 } +disketteControlSettingsUnique OBJECT-TYPE + SYNTAX DellDisketteControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0004 This attribute defines the settings of the +diskette control." + ::= { disketteControlTableEntry 4 } +disketteControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0005 This attribute defines the status of the +diskette control." + ::= { disketteControlTableEntry 5 } +disketteControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0070.0001.0006 This attribute defines the BIOS setup control name +of the diskette device." + ::= { disketteControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Network Interface Control Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1400.80.1... +------------------------------------------------------------------------------- + +DellNetworkInterfaceControlCapabilitiesUnique ::= INTEGER { + unknown(1), -- network interface capabilities are unknown + enableCapable(2), -- network interface can be enabled or disabled + enableWithoutPXECapable(4) -- network interface can be enabled without PXE +} +DellNetworkInterfaceControlSettingsUnique ::= INTEGER { + unknown(1), -- network interface settings are unknown + enabled(2), -- network interface enabled + enabledWithoutPXE(4) -- network interface enabled without PXE +} + +NetworkInterfaceControlTableEntry ::= SEQUENCE { + networkInterfaceControlchassisIndex DellObjectRange, + networkInterfaceControlIndex DellObjectRange, + networkInterfaceControlCapabilitiesUnique DellNetworkInterfaceControlCapabilitiesUnique, + networkInterfaceControlSettingsUnique DellNetworkInterfaceControlSettingsUnique, + networkInterfaceControlStatus DellStatus, + networkInterfaceControlName DellString +} + +networkInterfaceControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetworkInterfaceControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0080 This object defines the Network Interface Control Table." + ::= { biosSetUpControlGroup 80 } +networkInterfaceControlTableEntry OBJECT-TYPE + SYNTAX NetworkInterfaceControlTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1400.0080.0001 This object defines the Network Interface Control Table Entry." + INDEX { networkInterfaceControlchassisIndex, + networkInterfaceControlIndex } + ::= { networkInterfaceControlTable 1 } + +networkInterfaceControlchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { networkInterfaceControlTableEntry 1 } +networkInterfaceControlIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0002 This attribute defines the index (one based) of the +network interface control." + ::= { networkInterfaceControlTableEntry 2 } +networkInterfaceControlCapabilitiesUnique OBJECT-TYPE + SYNTAX DellNetworkInterfaceControlCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0003 This attribute defines the capabilities of the +network interface control." + ::= { networkInterfaceControlTableEntry 3 } +networkInterfaceControlSettingsUnique OBJECT-TYPE + SYNTAX DellNetworkInterfaceControlSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0004 This attribute defines the settings of the +network interface control." + ::= { networkInterfaceControlTableEntry 4 } +networkInterfaceControlStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0005 This attribute defines the status of the +network interface control." + ::= { networkInterfaceControlTableEntry 5 } +networkInterfaceControlName OBJECT-TYPE + SYNTAX DellString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1400.0080.0001.0006 This attribute defines the BIOS setup control name +of the network interface." + ::= { networkInterfaceControlTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Local Response Agent (LRA) Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1500 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Local Response Agent (LRA) Global Settings Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1500.10.1.. +------------------------------------------------------------------------------- + +DellLocalResponseAgentCapabilitiesUnique ::= INTEGER { + -- If set to 0 (zero), LRA has no capabilities + speakerControlCapable(1), -- LRA capable of speaker beep + consoleAlertCapable(2), -- LRA capable of console alert + broadcastMessageCapable(4), -- LRA capable of broadcast message + osShutDownCapable(8), -- LRA capable of operating system shutdown + rebootCapable(16), -- LRA capable of system reboot + powerCycleCapable(32), -- LRA capable of system power cycle + powerOFFCapable(64), -- LRA capable of system power off + executeApplicationCapable(256), -- LRA capable of executing user-specified application + lraFullyCapable(383) -- all LRA capabilities +} +DellLRAThermalShutdownCapabilitiesUnique ::= INTEGER { + -- If set to 0 (zero), LRA has no thermal shutdown capabilities + unknownCapabilities(1), -- thermal shutdown capabilities are unknown + enableCapable(2), -- thermal shutdown can be enabled or disabled + warningCapable(4), -- thermal shutdown can be set to activate on warning + enableOnWarningCapable(6), + failureCapable(8), -- thermal shutdown can be set to activate on failure + enableOnFailureCapable(10), + enableOnWarningOrFailureCapable(14) +} +DellLRAThermalShutdownStateSettingsUnique ::= INTEGER { + -- If set to 0 (zero), LRA thermal shutdown is disabled + unknown(1), -- thermal shutdown settings are unknown + activatedOnWarning(6), -- thermal shutdown set to activate on warning + activatedOnFailure(10) -- thermal shutdown set to activate on failure +} + +LRAGlobalSettingsTableEntry ::= SEQUENCE { + lRAGlobalchassisIndex DellObjectRange, + lRAGlobalState DellStateSettings, + lRAGlobalSettingsDisableTimeoutValue DellUnsigned32BitRange, + lRAGlobalSettingsCapabilitiesUnique DellLocalResponseAgentCapabilitiesUnique, + lRAGlobalThermalShutdownCapabilitiesUnique DellLRAThermalShutdownCapabilitiesUnique, + lRAGlobalThermalShutdownStateSettingsUnique DellLRAThermalShutdownStateSettingsUnique +} + +lRAGlobalSettingsTable OBJECT-TYPE + SYNTAX SEQUENCE OF LRAGlobalSettingsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0010 This object defines the Local Response Agent (LRA) Global Settings +Table." + ::= { lraGroup 10 } +lRAGlobalSettingsTableEntry OBJECT-TYPE + SYNTAX LRAGlobalSettingsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0010.0001 This object defines the Local Response Agent (LRA) Global +Settings Table Entry." + INDEX { lRAGlobalchassisIndex } + ::= { lRAGlobalSettingsTable 1 } + +lRAGlobalchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { lRAGlobalSettingsTableEntry 1 } +lRAGlobalState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0002 This attribute defines the state settings of the +Local Response Agent." + ::= { lRAGlobalSettingsTableEntry 2 } +lRAGlobalSettingsDisableTimeoutValue OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0003 This attribute defines the timeout duration in seconds +that the Local Response Agent will be disabled after a machine shutdown and +reboot." + ::= { lRAGlobalSettingsTableEntry 3 } +lRAGlobalSettingsCapabilitiesUnique OBJECT-TYPE + SYNTAX DellLocalResponseAgentCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0004 This attribute defines the global settings capabilities +that all Local Response Agents may or may not allow to be set or reset." + ::= { lRAGlobalSettingsTableEntry 4 } +lRAGlobalThermalShutdownCapabilitiesUnique OBJECT-TYPE + SYNTAX DellLRAThermalShutdownCapabilitiesUnique + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0005 This attribute defines the thermal shutdown capabilities +of the Local Response Agent." + ::= { lRAGlobalSettingsTableEntry 5 } +lRAGlobalThermalShutdownStateSettingsUnique OBJECT-TYPE + SYNTAX DellLRAThermalShutdownStateSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1500.0010.0001.0006 This attribute defines the thermal shutdown settings +of the Local Response Agent." + ::= { lRAGlobalSettingsTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Local Response Agent (LRA) Action Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1500.20.1... +------------------------------------------------------------------------------- + +DellLocalResponseAgentSettingsUnique ::= INTEGER { + speakerControl(1), -- issue speaker beep + consoleAlert(2), -- issue console alert + broadcastMessage(4), -- issue broadcast message + osShutDown(8), -- issue operating system shutdown + reboot(16), -- issue system reboot + powerCycle(32), -- issue system power cycle + powerOFF(64), -- issue system power off + executeApplication(256), -- execute user-specified application + allLRASettingsUnique(383) -- all LRA settings +} + +LRAActionTableTableEntry ::= SEQUENCE { + lRAActionTablechassisIndex DellObjectRange, + lRAActionTableActionNumberIndex DellUnsigned16BitRange, + lRAActionTableUserApplicationName DisplayString (SIZE (0..256)), + lRAActionTableSettingsUnique DellLocalResponseAgentSettingsUnique +} + +lRAActionTableTable OBJECT-TYPE + SYNTAX SEQUENCE OF LRAActionTableTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0020 This object defines the Local Response Agent (LRA) Action Table." + ::= { lraGroup 20 } +lRAActionTableTableEntry OBJECT-TYPE + SYNTAX LRAActionTableTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1500.0020.0001 This object defines the Local Response Agent (LRA) Action +Table Entry." + INDEX { lRAActionTablechassisIndex, + lRAActionTableActionNumberIndex } + ::= { lRAActionTableTable 1 } + +lRAActionTablechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { lRAActionTableTableEntry 1 } +lRAActionTableActionNumberIndex OBJECT-TYPE + SYNTAX DellUnsigned16BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0002 This attribute defines the action number index +of the LRA action. The currently supported values are: + 160 temperature failure action definition + 168 cooling device failure action definition + 172 voltage failure action definition + 200 temperature warning action definition + 202 voltage warning action definition + 204 cooling device warning action definition + 206 amperage failure action definition + 208 amperage warning action definition + 210 redundancy unit redundancy lost action definition + 212 redundancy unit redundancy degraded action definition + 214 power supply failure action definition + 220 chassis intrusion action definition + 228 memory device noncritical action definition + 474 memory device critical action definition + 1006 automatic system recovery (ASR) action definition + 1353 power supply warning action definition + 1553 log near full action definition + 1554 log full action definition + 1603 processor warning action definition + 1604 processor failure action definition + 1703 battery warning action definition + 1704 battery failure action definition" + ::= { lRAActionTableTableEntry 2 } +lRAActionTableUserApplicationName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..256)) + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0003 This attribute defines the name of the user application +executable path and file name to execute by the Local Response Agent if the +value executeApplication was set." + ::= { lRAActionTableTableEntry 3 } +lRAActionTableSettingsUnique OBJECT-TYPE + SYNTAX DellLocalResponseAgentSettingsUnique + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1500.0020.0001.0004 This attribute defines the settings for the LRA action." + ::= { lRAActionTableTableEntry 4 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600 +------------------------------------------------------------------------------- + + +DellCooOwnershipCodes ::= INTEGER { + other(1), -- ownership code is other than following values + unknown(2), -- ownership code is unknown + owned(3), -- ownership code is owned + leased(4), -- ownership code is leased + rented(5), -- ownership code is rented + offOfLease(6), -- ownership code is off of lease + transfer(7) -- ownership code is transfer +} +DellCooHourDayDurationType ::= INTEGER { + unknown(1), -- duration type is unknown + hours(2), -- duration type is hours + days(3) -- duration type is days +} +DellCooDayMonthDurationType ::= INTEGER { + unknown(1), -- duration type is unknown + days(3), -- duration type is days + months(4) -- duration type is months +} +DellCooMonthYearDurationType ::= INTEGER { + unknown(1), -- duration type is unknown + months(4), -- duration type is months + years(5) -- duration type is years +} + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.10.1.. +------------------------------------------------------------------------------- + +CooTableEntry ::= SEQUENCE { + coochassisIndex DellObjectRange, + cooState DellStateSettings, + cooAquisitionPurchaseCost DellUnsigned32BitRange, + cooAquisitionWayBillNumber DellUnsigned32BitRange, + cooAquisitionInstallDateName DellDateName, + cooAquisitionPurchaseOrder DellUnsigned32BitRange, + cooAquisitionPurchaseDateName DellDateName, + cooAquisitionSigningAuthorityName DellCostofOwnershipString, + cooOriginalMachineConfigurationExpensed DellBoolean, + cooOriginalMachineConfigurationVendorName DellCostofOwnershipString, + cooCostCenterInformationVendorName DellCostofOwnershipString, + cooUserInformationUserName DellCostofOwnershipString, + cooExtendedWarrantyStartDateName DellDateName, + cooExtendedWarrantyEndDateName DellDateName, + cooExtendedWarrantyCost DellUnsigned32BitRange, + cooExtendedWarrantyProviderName DellCostofOwnershipString, + cooOwnershipCode DellCooOwnershipCodes, + cooCorporateOwnerName DellCostofOwnershipString, + cooHazardousWasteCodeName DellCostofOwnershipString, + cooDeploymentDateLength DellUnsigned32BitRange, + cooDeploymentDurationType DellCooHourDayDurationType, + cooTrainingName DellCostofOwnershipString, + cooOutsourcingProblemDescriptionName DellCostofOwnershipString, + cooOutsourcingServiceFeeName DellCostofOwnershipString, + cooOutsourcingSigningAuthorityName DellCostofOwnershipString, + cooOutsourcingProviderFeeName DellCostofOwnershipString, + cooOutsourcingProviderServiceLevelName DellCostofOwnershipString, + cooInsuranceCompanyName DellCostofOwnershipString, + cooBoxAssetTagName DellCostofOwnershipString, + cooBoxSystemName DellCostofOwnershipString, + cooBoxCPUSerialNumberName DellCostofOwnershipString, + cooOperatingSystemUpgradeTypeName DellCostofOwnershipString, + cooOperatingSystemUpgradePatchLevelName DellCostofOwnershipString, + cooOperatingSystemUpgradeDate DellCostofOwnershipString, + cooDepreciationDuration DellUnsigned32BitRange, + cooDepreciationDurationType DellCooMonthYearDurationType, + cooDepreciationPercentage DellUnsigned32BitRange, + cooDepreciationMethodName DellCostofOwnershipString, + cooRegistrationIsRegistered DellBoolean +} + +cooTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0010 This object defines the Cost Of Ownership (COO) Table." + ::= { cooGroup 10 } +cooTableEntry OBJECT-TYPE + SYNTAX CooTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0010.0001 This object defines the Cost Of Ownership (COO) Table Entry." + INDEX { coochassisIndex } + ::= { cooTable 1 } + +coochassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooTableEntry 1 } +cooState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0002 This attribute defines the state settings of the +COO information." + ::= { cooTableEntry 2 } +cooAquisitionPurchaseCost OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0003 This attribute defines the purchase cost of the system." + ::= { cooTableEntry 3 } +cooAquisitionWayBillNumber OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0004 This attribute defines the waybill number of the system." + ::= { cooTableEntry 4 } +cooAquisitionInstallDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0005 This attribute defines the install date and time of the +system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 5 } +cooAquisitionPurchaseOrder OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0006 This attribute defines the purchase order number of the +system." + ::= { cooTableEntry 6 } +cooAquisitionPurchaseDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0007 This attribute defines the purchase date and time of the +system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 7 } +cooAquisitionSigningAuthorityName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0008 This attribute defines the name of the signing authority +for the system." + ::= { cooTableEntry 8 } +cooOriginalMachineConfigurationExpensed OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0009 This attribute defines if the purchase of the system +was expensed or not." + ::= { cooTableEntry 9 } +cooOriginalMachineConfigurationVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0010 This attribute defines the name of the vendor of the +system." + ::= { cooTableEntry 10 } +cooCostCenterInformationVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0011 This attribute defines the cost center name of the +system." + ::= { cooTableEntry 11 } +cooUserInformationUserName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0012 This attribute defines the name of the user of the +system." + ::= { cooTableEntry 12 } +cooExtendedWarrantyStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0013 This attribute defines the extended warranty start date +and time for the system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 13 } +cooExtendedWarrantyEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0014 This attribute defines the extended warranty end date +and time for the system. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooTableEntry 14 } +cooExtendedWarrantyCost OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0015 This attribute defines the extended warranty cost +for the system." + ::= { cooTableEntry 15 } +cooExtendedWarrantyProviderName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0016 This attribute defines the name of the extended warranty +provider for the system." + ::= { cooTableEntry 16 } +cooOwnershipCode OBJECT-TYPE + SYNTAX DellCooOwnershipCodes + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0017 This attribute defines the ownership code for the system." + ::= { cooTableEntry 17 } +cooCorporateOwnerName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0018 This attribute defines the name of the corporate owner +of the system." + ::= { cooTableEntry 18 } +cooHazardousWasteCodeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0019 This attribute defines the hazardous waste code name +for the system." + ::= { cooTableEntry 19 } +cooDeploymentDateLength OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0020 This attribute defines the deployment time length +for the system." + ::= { cooTableEntry 20 } +cooDeploymentDurationType OBJECT-TYPE + SYNTAX DellCooHourDayDurationType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0021 This attribute defines the deployment duration time unit +for the Dell System." + ::= { cooTableEntry 21 } +cooTrainingName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0022 This attribute defines the training name for the system." + ::= { cooTableEntry 22 } +cooOutsourcingProblemDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0023 This attribute defines the outsourcing problem description +for the system." + ::= { cooTableEntry 23 } +cooOutsourcingServiceFeeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0024 This attribute defines the outsourcing service fee +for the system." + ::= { cooTableEntry 24 } +cooOutsourcingSigningAuthorityName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0025 This attribute defines the name of the person who has +signing authority for service." + ::= { cooTableEntry 25 } +cooOutsourcingProviderFeeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0026 This attribute defines any additional outsourcing +charge for service." + ::= { cooTableEntry 26 } +cooOutsourcingProviderServiceLevelName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0027 This attribute defines the service level agreement +for service." + ::= { cooTableEntry 27 } +cooInsuranceCompanyName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0028 This attribute defines the name of the company +insuring the system." + ::= { cooTableEntry 28 } +cooBoxAssetTagName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0029 This attribute defines the name the system asset tag." + ::= { cooTableEntry 29 } +cooBoxSystemName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0030 This attribute defines the name of the system." + ::= { cooTableEntry 30 } +cooBoxCPUSerialNumberName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0031 This attribute defines the name of the CPU serial +number in the system." + ::= { cooTableEntry 31 } +cooOperatingSystemUpgradeTypeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0032 This attribute defines the name the operating system +on the system." + ::= { cooTableEntry 32 } +cooOperatingSystemUpgradePatchLevelName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0033 This attribute defines the operating system patch level +of the system." + ::= { cooTableEntry 33 } +cooOperatingSystemUpgradeDate OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0034 This attribute defines the operating system upgrade date +of the system." + ::= { cooTableEntry 34 } +cooDepreciationDuration OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0035 This attribute defines the depreciation duration time +for the system." + ::= { cooTableEntry 35 } +cooDepreciationDurationType OBJECT-TYPE + SYNTAX DellCooMonthYearDurationType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0036 This attribute defines the depreciation duration time +unit for the system." + ::= { cooTableEntry 36 } +cooDepreciationPercentage OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0037 This attribute defines the percentage of depreciation +for the system." + ::= { cooTableEntry 37 } +cooDepreciationMethodName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0038 This attribute defines the method of Depreciation +for the system." + ::= { cooTableEntry 38 } +cooRegistrationIsRegistered OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0010.0001.0039 This attribute defines if the system is registered +or not." + ::= { cooTableEntry 39 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Service Contract Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.20.1... +------------------------------------------------------------------------------- + +CooServiceContractTableEntry ::= SEQUENCE { + cooServiceContractchassisIndex DellObjectRange, + cooServiceContractIndex DellObjectRange, + cooServiceContractState DellStateSettings, + cooServiceContractWasRenewed DellBoolean, + cooServiceContractTypeName DellCostofOwnershipString, + cooServiceContractVendorName DellCostofOwnershipString +} + +cooServiceContractTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooServiceContractTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0020 This object defines the Cost Of Ownership (COO) Service Contract +Table." + ::= { cooGroup 20 } +cooServiceContractTableEntry OBJECT-TYPE + SYNTAX CooServiceContractTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0020.0001 This object defines the Cost Of Ownership (COO) Service +Contract Table Entry." + INDEX { cooServiceContractchassisIndex, + cooServiceContractIndex } + ::= { cooServiceContractTable 1 } + +cooServiceContractchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooServiceContractTableEntry 1 } +cooServiceContractIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0002 This attribute defines the index (one based) of the +COO service contract." + ::= { cooServiceContractTableEntry 2 } +cooServiceContractState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0003 This attribute defines the state settings of the +COO service contract." + ::= { cooServiceContractTableEntry 3 } +cooServiceContractWasRenewed OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0004 This attribute defines if the COO service contract +was renewed not." + ::= { cooServiceContractTableEntry 4 } +cooServiceContractTypeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0005 This attribute defines the name of the type of +COO service contract." + ::= { cooServiceContractTableEntry 5 } +cooServiceContractVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0020.0001.0006 This attribute defines the name of the provider of the +COO service contract." + ::= { cooServiceContractTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Cost Event Log Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.30.1... +------------------------------------------------------------------------------- + +CooCostEventLogTableEntry ::= SEQUENCE { + cooCostEventLogchassisIndex DellObjectRange, + cooCostEventLogIndex DellObjectRange, + cooCostEventLogState DellStateSettings, + cooCostEventLogDuration DellUnsigned32BitRange, + cooCostEventLogDurationType DellCooHourDayDurationType, + cooCostEventLogDescriptionName DellCostofOwnershipString +} + +cooCostEventLogTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooCostEventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0030 This object defines the Cost Of Ownership (COO) Cost Event Log +Table." + ::= { cooGroup 30 } +cooCostEventLogTableEntry OBJECT-TYPE + SYNTAX CooCostEventLogTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0030.0001 This object defines the Cost Of Ownership (COO) Cost Event +Log Table Entry." + INDEX { cooCostEventLogchassisIndex, + cooCostEventLogIndex } + ::= { cooCostEventLogTable 1 } + +cooCostEventLogchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooCostEventLogTableEntry 1 } +cooCostEventLogIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0002 This attribute defines the index (one based) of the +COO cost event log entry." + ::= { cooCostEventLogTableEntry 2 } +cooCostEventLogState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0003 This attribute defines the state settings of the +COO cost event log entry." + ::= { cooCostEventLogTableEntry 3 } +cooCostEventLogDuration OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0004 This attribute defines the duration of the +COO cost event." + ::= { cooCostEventLogTableEntry 4 } +cooCostEventLogDurationType OBJECT-TYPE + SYNTAX DellCooHourDayDurationType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0005 This attribute defines the duration type of the +COO cost event." + ::= { cooCostEventLogTableEntry 5 } +cooCostEventLogDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0030.0001.0006 This attribute defines the description of the +COO cost event." + ::= { cooCostEventLogTableEntry 6 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Warranty Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.40.1... +------------------------------------------------------------------------------- + +CooWarrantyTableEntry ::= SEQUENCE { + cooWarrantychassisIndex DellObjectRange, + cooWarrantyIndex DellObjectRange, + cooWarrantyState DellStateSettings, + cooWarrantyDuration DellUnsigned32BitRange, + cooWarrantyDurationType DellCooDayMonthDurationType, + cooWarrantyEndDateName DellDateName, + cooWarrantyCost DellUnsigned32BitRange +} + +cooWarrantyTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooWarrantyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0040 This object defines the Cost Of Ownership (COO) Warranty Table." + ::= { cooGroup 40 } +cooWarrantyTableEntry OBJECT-TYPE + SYNTAX CooWarrantyTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0040.0001 This object defines the Cost Of Ownership (COO) Warranty +Table Entry." + INDEX { cooWarrantychassisIndex, + cooWarrantyIndex } + ::= { cooWarrantyTable 1 } + +cooWarrantychassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooWarrantyTableEntry 1 } +cooWarrantyIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0002 This attribute defines the index (one based) of the +COO warranty." + ::= { cooWarrantyTableEntry 2 } +cooWarrantyState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0003 This attribute defines the state settings of the +COO warranty." + ::= { cooWarrantyTableEntry 3 } +cooWarrantyDuration OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0004 This attribute defines the duration of the COO warranty." + ::= { cooWarrantyTableEntry 4 } +cooWarrantyDurationType OBJECT-TYPE + SYNTAX DellCooDayMonthDurationType + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0005 This attribute defines the duration type of the +COO warranty." + ::= { cooWarrantyTableEntry 5 } +cooWarrantyEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0006 This attribute defines the end date of the COO warranty. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooWarrantyTableEntry 6 } +cooWarrantyCost OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0040.0001.0007 This attribute defines the cost of the COO warranty." + ::= { cooWarrantyTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Lease Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.50.1... +------------------------------------------------------------------------------- + +CooLeaseInformationTableEntry ::= SEQUENCE { + cooLeaseInformationchassisIndex DellObjectRange, + cooLeaseInformationIndex DellObjectRange, + cooLeaseInformationState DellStateSettings, + cooLeaseInformationMultipleSchedules DellBoolean, + cooLeaseInformationBuyOutAmount DellUnsigned32BitRange, + cooLeaseInformationLeaseRateFactor DellUnsigned32BitRange, + cooLeaseInformationEndDateName DellDateName, + cooLeaseInformationFairMarketValue DellUnsigned32BitRange, + cooLeaseInformationLessorName DellCostofOwnershipString +} + +cooLeaseInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooLeaseInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0050 This object defines the Cost Of Ownership (COO) Lease Information +Table." + ::= { cooGroup 50 } +cooLeaseInformationTableEntry OBJECT-TYPE + SYNTAX CooLeaseInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0050.0001 This object defines the Cost Of Ownership (COO) Lease +Information Table Entry." + INDEX { cooLeaseInformationchassisIndex, + cooLeaseInformationIndex } + ::= { cooLeaseInformationTable 1 } + +cooLeaseInformationchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooLeaseInformationTableEntry 1 } +cooLeaseInformationIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0002 This attribute defines the index (one based) of the +COO lease information." + ::= { cooLeaseInformationTableEntry 2 } +cooLeaseInformationState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0003 This attribute defines the state settings of the +COO lease information." + ::= { cooLeaseInformationTableEntry 3 } +cooLeaseInformationMultipleSchedules OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0004 This attribute defines if there are multiple schedules +for this lease." + ::= { cooLeaseInformationTableEntry 4 } +cooLeaseInformationBuyOutAmount OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0005 This attribute defines buy out amount for this lease." + ::= { cooLeaseInformationTableEntry 5 } +cooLeaseInformationLeaseRateFactor OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0006 This attribute defines the rate factor for this lease." + ::= { cooLeaseInformationTableEntry 6 } +cooLeaseInformationEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0007 This attribute defines the end date for this lease. +Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooLeaseInformationTableEntry 7 } +cooLeaseInformationFairMarketValue OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0008 This attribute defines the fair market value +for this lease." + ::= { cooLeaseInformationTableEntry 8 } +cooLeaseInformationLessorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0050.0001.0009 This attribute defines the name of the lessor +for this lease." + ::= { cooLeaseInformationTableEntry 9 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Schedule Number Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.60.1... +------------------------------------------------------------------------------- + +CooScheduleNumberTableEntry ::= SEQUENCE { + cooScheduleNumberchassisIndex DellObjectRange, + cooScheduleNumberIndex DellObjectRange, + cooScheduleNumberState DellStateSettings, + cooScheduleNumberLeaseInformationIndexReference DellUnsigned32BitRange, + cooScheduleNumberDescriptionName DellCostofOwnershipString +} + +cooScheduleNumberTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooScheduleNumberTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0060 This object defines the Cost Of Ownership (COO) Schedule Number +Table." + ::= { cooGroup 60 } +cooScheduleNumberTableEntry OBJECT-TYPE + SYNTAX CooScheduleNumberTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0060.0001 This object defines the Cost Of Ownership (COO) Schedule Number +Table Entry." + INDEX { cooScheduleNumberchassisIndex, + cooScheduleNumberIndex } + ::= { cooScheduleNumberTable 1 } + +cooScheduleNumberchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooScheduleNumberTableEntry 1 } +cooScheduleNumberIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0002 This attribute defines the index (one based) of the +COO schedule number." + ::= { cooScheduleNumberTableEntry 2 } +cooScheduleNumberState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0003 This attribute defines the state settings of the +COO schedule number." + ::= { cooScheduleNumberTableEntry 3 } +cooScheduleNumberLeaseInformationIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0004 This attribute defines the index (one based) of the +COO lease information associated with the COO schedule number." + ::= { cooScheduleNumberTableEntry 4 } +cooScheduleNumberDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0060.0001.0005 This attribute defines the description of the +COO schedule number." + ::= { cooScheduleNumberTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Options Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.70.1... +------------------------------------------------------------------------------- + +CooOptionsTableEntry ::= SEQUENCE { + cooOptionschassisIndex DellObjectRange, + cooOptionsIndex DellObjectRange, + cooOptionsState DellStateSettings, + cooOptionsLeaseInformationIndexReference DellUnsigned32BitRange, + cooOptionsDescriptionName DellCostofOwnershipString +} + +cooOptionsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooOptionsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0070 This object defines the Cost Of Ownership (COO) Options Table." + ::= { cooGroup 70 } +cooOptionsTableEntry OBJECT-TYPE + SYNTAX CooOptionsTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0070.0001 This object defines the Cost Of Ownership (COO) Options Table +Entry." + INDEX { cooOptionschassisIndex, + cooOptionsIndex } + ::= { cooOptionsTable 1 } + +cooOptionschassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooOptionsTableEntry 1 } +cooOptionsIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0002 This attribute defines the index (one based) of the +COO options." + ::= { cooOptionsTableEntry 2 } +cooOptionsState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0003 This attribute defines the state settings of the +COO options." + ::= { cooOptionsTableEntry 3 } +cooOptionsLeaseInformationIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0004 This attribute defines the index (one based) of the +COO lease information associated with the COO options." + ::= { cooOptionsTableEntry 4 } +cooOptionsDescriptionName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0070.0001.0005 This attribute defines the description of the +COO options." + ::= { cooOptionsTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Maintenance Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.80.1... +------------------------------------------------------------------------------- + +CooMaintenanceTableEntry ::= SEQUENCE { + cooMaintenancechassisIndex DellObjectRange, + cooMaintenanceIndex DellObjectRange, + cooMaintenanceState DellStateSettings, + cooMaintenanceStartDateName DellDateName, + cooMaintenanceEndDateName DellDateName, + cooMaintenanceProviderName DellCostofOwnershipString, + cooMaintenanceRestrictionsName DellCostofOwnershipString +} + +cooMaintenanceTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooMaintenanceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0080 This object defines the Cost Of Ownership (COO) Maintenance Table." + ::= { cooGroup 80 } +cooMaintenanceTableEntry OBJECT-TYPE + SYNTAX CooMaintenanceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0080.0001 This object defines the Cost Of Ownership (COO) Maintenance +Table Entry." + INDEX { cooMaintenancechassisIndex, + cooMaintenanceIndex } + ::= { cooMaintenanceTable 1 } + +cooMaintenancechassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooMaintenanceTableEntry 1 } +cooMaintenanceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0002 This attribute defines the index (one based) of the +COO maintenance." + ::= { cooMaintenanceTableEntry 2 } +cooMaintenanceState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0003 This attribute defines the state settings of the +COO maintenance." + ::= { cooMaintenanceTableEntry 3 } +cooMaintenanceStartDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0004 This attribute defines the start date of the +COO maintenance. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooMaintenanceTableEntry 4 } +cooMaintenanceEndDateName OBJECT-TYPE + SYNTAX DellDateName + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0005 This attribute defines the end date of the +COO maintenance. Dates are defined in the ASCII format: + yyyyMMddhhmmss.uuuuuu+fff or yyyyMMddhhmmss.uuuuuu-fff +where yyyy is the year, MM is the month, dd is the day, hh are the hours, +mm are the minutes, ss are the seconds, uuuuuu are the microseconds and ++fff or -fff is the offset from UTC in minutes." + ::= { cooMaintenanceTableEntry 5 } +cooMaintenanceProviderName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0006 This attribute defines the name of the provider of the +COO maintenance." + ::= { cooMaintenanceTableEntry 6 } +cooMaintenanceRestrictionsName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0080.0001.0007 This attribute defines the text of the maintenance +agreement restrictions." + ::= { cooMaintenanceTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Repair Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.90.1... +------------------------------------------------------------------------------- + +CooRepairTableEntry ::= SEQUENCE { + cooRepairchassisIndex DellObjectRange, + cooRepairIndex DellObjectRange, + cooRepairState DellStateSettings, + cooRepairCounter DellUnsigned32BitRange, + cooRepairVendorName DellCostofOwnershipString +} + +cooRepairTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooRepairTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0090 This object defines the Cost Of Ownership (COO) Repair Table." + ::= { cooGroup 90 } +cooRepairTableEntry OBJECT-TYPE + SYNTAX CooRepairTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0090.0001 This object defines the Cost Of Ownership (COO) Repair Table +Entry." + INDEX { cooRepairchassisIndex, + cooRepairIndex } + ::= { cooRepairTable 1 } + +cooRepairchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooRepairTableEntry 1 } +cooRepairIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0002 This attribute defines the index (one based) of the +COO repair." + ::= { cooRepairTableEntry 2 } +cooRepairState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0003 This attribute defines the state setting of the +COO repair." + ::= { cooRepairTableEntry 3 } +cooRepairCounter OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0004 This attribute defines the number of repairs this +system has had." + ::= { cooRepairTableEntry 4 } +cooRepairVendorName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0090.0001.0005 This attribute defines the repair vendors's name." + ::= { cooRepairTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Support Information Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.100.1... +------------------------------------------------------------------------------- + +CooSupportInformationTableEntry ::= SEQUENCE { + cooSupportInformationchassisIndex DellObjectRange, + cooSupportInformationIndex DellObjectRange, + cooSupportInformationState DellStateSettings, + cooSupportInformationIsOutsourced DellBoolean, + cooSupportInformationType DellUnsigned32BitRange, + cooSupportInformationHelpDeskName DellCostofOwnershipString, + cooSupportInformationFixTypeName DellCostofOwnershipString +} + +cooSupportInformationTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooSupportInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0100 This object defines the Cost Of Ownership (COO) Support +Information Table." + ::= { cooGroup 100 } +cooSupportInformationTableEntry OBJECT-TYPE + SYNTAX CooSupportInformationTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0100.0001 This object defines the Cost Of Ownership (COO) Support +Information Table Entry." + INDEX { cooSupportInformationchassisIndex, + cooSupportInformationIndex } + ::= { cooSupportInformationTable 1 } + +cooSupportInformationchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooSupportInformationTableEntry 1 } +cooSupportInformationIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0002 This attribute defines the index (one based) of the +COO support information." + ::= { cooSupportInformationTableEntry 2 } +cooSupportInformationState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0003 This attribute defines the state setting of the +COO support information." + ::= { cooSupportInformationTableEntry 3 } +cooSupportInformationIsOutsourced OBJECT-TYPE + SYNTAX DellBoolean + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0004 This attribute defines if support is outsourced or not." + ::= { cooSupportInformationTableEntry 4 } +cooSupportInformationType OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0005 This attribute defines the type of the conmponent, +system or network problem that occurred." + ::= { cooSupportInformationTableEntry 5 } +cooSupportInformationHelpDeskName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0006 This attribute defines the help desk support +information provided." + ::= { cooSupportInformationTableEntry 6 } +cooSupportInformationFixTypeName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0100.0001.0007 This attribute defines the method used to fix +the problem." + ::= { cooSupportInformationTableEntry 7 } + + +------------------------------------------------------------------------------- +-- Cost Of Ownership (COO) Trouble Ticket Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1600.110.1... +------------------------------------------------------------------------------- + +CooTroubleTicketTableEntry ::= SEQUENCE { + cooTroubleTicketchassisIndex DellObjectRange, + cooTroubleTicketIndex DellObjectRange, + cooTroubleTicketState DellStateSettings, + cooTroubleTicketSupportInformationIndexReference DellUnsigned32BitRange, + cooTroubleTicketNumberName DellCostofOwnershipString +} + +cooTroubleTicketTable OBJECT-TYPE + SYNTAX SEQUENCE OF CooTroubleTicketTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0110 This object defines the Cost Of Ownership (COO) Trouble Ticket +Table." + ::= { cooGroup 110 } +cooTroubleTicketTableEntry OBJECT-TYPE + SYNTAX CooTroubleTicketTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1600.0110.0001 This object defines the Cost Of Ownership (COO) Trouble Ticket +Table Entry." + INDEX { cooTroubleTicketchassisIndex, + cooTroubleTicketIndex } + ::= { cooTroubleTicketTable 1 } + +cooTroubleTicketchassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { cooTroubleTicketTableEntry 1 } +cooTroubleTicketIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0002 This attribute defines the index (one based) of the +COO trouble ticket." + ::= { cooTroubleTicketTableEntry 2 } +cooTroubleTicketState OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0003 This attribute defines the state settings of the +COO trouble ticket." + ::= { cooTroubleTicketTableEntry 3 } +cooTroubleTicketSupportInformationIndexReference OBJECT-TYPE + SYNTAX DellUnsigned32BitRange + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0004 This attribute defines the index (one based) of the +COO support information associated with the COO trouble ticket." + ::= { cooTroubleTicketTableEntry 4 } +cooTroubleTicketNumberName OBJECT-TYPE + SYNTAX DellCostofOwnershipString + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1600.0110.0001.0005 This attribute defines the name of the +COO trouble ticket." + ::= { cooTroubleTicketTableEntry 5 } + + +------------------------------------------------------------------------------- +-- Remote Access Group (in another MIB file) +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1700 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cluster Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1800 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Cluster Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1800.10.1... +------------------------------------------------------------------------------- + +DellClusterType ::= INTEGER { + unknown(1), -- cluster type is unknown + highAvailabilityCluster(2) -- cluster type is High Availability Cluster +} + +ClusterTableEntry ::= SEQUENCE { + clusterChassisIndex DellObjectRange, + clusterIndex DellObjectRange, + clusterStateCapabilities DellStateCapabilities, + clusterStateSettings DellStateSettings, + clusterStatus DellStatus, + clusterType DellClusterType, + clusterTypeDescriptionName DellString, + clusterName DellString +} + +clusterTable OBJECT-TYPE + SYNTAX SEQUENCE OF ClusterTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1800.0010 This object defines the Cluster Table." + ::= { clusterGroup 10 } +clusterTableEntry OBJECT-TYPE + SYNTAX ClusterTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1800.0010.0001 This object defines the Cluster Table Entry." + INDEX { clusterChassisIndex, + clusterIndex } + ::= { clusterTable 1 } + +clusterChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { clusterTableEntry 1 } +clusterIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0002 This attribute defines the index (one based) of the +cluster." + ::= { clusterTableEntry 2 } +clusterStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0003 This attribute defines the state capabilities of the +cluster." + ::= { clusterTableEntry 3 } +clusterStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0004 This attribute defines the state settings of the + cluster." + ::= { clusterTableEntry 4 } +clusterStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0005 This attribute defines the status of the cluster." + ::= { clusterTableEntry 5 } +clusterType OBJECT-TYPE + SYNTAX DellClusterType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0006 This attribute defines the type of the cluster." + ::= { clusterTableEntry 6 } +clusterTypeDescriptionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0007 This attribute defines the description name for the +type of the cluster." + ::= { clusterTableEntry 7 } +clusterName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1800.0010.0001.0008 This attribute defines the name of the cluster." + ::= { clusterTableEntry 8 } + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900 +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900.10.1... +------------------------------------------------------------------------------- + +DellManagementControllerType ::= INTEGER { + -- legacyBMC(0), - type is legacy Baseboard Management Controller + iDRAC(8), -- type is Integrated Dell Remote Access Controller + iDRAC6(10), -- type is Integrated Dell Remote Access Controller 6 + iDRAC6Modular(11), -- type is Integrated Dell Remote Access Controller 6 (Modular) + iDRAC6BMC(13) -- type is Integrated Dell Remote Access Controller 6 (BMC mode) +} + +BmcTableEntry ::= SEQUENCE { + bmcChassisIndex DellObjectRange, + bmcIndex DellObjectRange, + bmcStateCapabilities DellStateCapabilities, + bmcStateSettings DellStateSettings, + bmcStatus DellStatus, + bmcDisplayName DellString, + bmcDescriptionName DisplayString (SIZE (0..255)), + bmcIPMIVersionName DellString, + bmcGUID OCTET STRING (SIZE(16)), + bmcType DellManagementControllerType, + bmcModuleName DellString, + bmcIPv4URLName DisplayString (SIZE (0..1024)), + bmcIPv6URLName DisplayString (SIZE (0..1024)) +} + +bmcTable OBJECT-TYPE + SYNTAX SEQUENCE OF BmcTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0010 This object defines the Baseboard Management Controller (BMC) +Table." + ::= { bmcGroup 10 } +bmcTableEntry OBJECT-TYPE + SYNTAX BmcTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0010.0001 This object defines the Baseboard Management Controller (BMC) +Table Entry." + INDEX { bmcChassisIndex, + bmcIndex } + ::= { bmcTable 1 } + +bmcChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { bmcTableEntry 1 } +bmcIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0002 This attribute defines the index (one based) of the BMC." + ::= { bmcTableEntry 2 } +bmcStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0003 This attribute defines the state capabilities of the BMC." + ::= { bmcTableEntry 3 } +bmcStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0004 This attribute defines the state settings of the BMC." + ::= { bmcTableEntry 4 } +bmcStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0005 This attribute defines the status of the BMC." + ::= { bmcTableEntry 5 } +bmcDisplayName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0006 This attribute defines the display name of the BMC." + ::= { bmcTableEntry 6 } +bmcDescriptionName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0007 This attribute defines the description of the BMC." + ::= { bmcTableEntry 7 } +bmcIPMIVersionName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0008 This attribute defines the version of the +Intelligent Platform Management Interface (IPMI) specification +that the BMC supports." + ::= { bmcTableEntry 8 } +bmcGUID OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(16)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0009 This attribute defines the Globally Unique ID (GUID) +of the BMC." + ::= { bmcTableEntry 9 } +bmcType OBJECT-TYPE + SYNTAX DellManagementControllerType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.00010 This attribute defines the type of the BMC." + ::= { bmcTableEntry 10 } +bmcModuleName OBJECT-TYPE + SYNTAX DellString + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0011 This attribute defines the module name for the BMC. +The module name is present only on certain systems such as blade systems." + ::= { bmcTableEntry 11 } +bmcIPv4URLName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0012 This attribute defines the IPv4 URL for the BMC. +The URL is not present on all systems." + ::= { bmcTableEntry 12 } +bmcIPv6URLName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0010.0001.0013 This attribute defines the IPv6 URL for the BMC. +The URL is not present on all systems." + ::= { bmcTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) Serial Interface Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900.20.1.... +------------------------------------------------------------------------------- + +DellBMCSerialConnectionModeCapabilities ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no mode capabilities + modemBasic(1), -- Modem Basic mode capable + modemPPP(2), -- Modem PPP mode capable + modemTerminal(4), -- Modem Terminal mode capable + directBasic(8), -- Direct Basic mode capable + directPPP(16), -- Direct PPP mode capable + directTerminal(32) -- Direct Terminal mode capable +} +DellBMCSerialConnectionModeSettings ::= INTEGER { + -- Note: These values are bit masks, so combination values are possible. + -- none(0), - no modes enabled + modemBasic(1), -- Modem Basic mode enabled + modemPPP(2), -- Modem PPP mode enabled + modemTerminal(4), -- Modem Terminal mode enabled + directBasic(8), -- Direct Basic mode enabled + directPPP(16), -- Direct PPP mode enabled + directTerminal(32) -- Direct Terminal mode enabled +} +DellBMCSerialFlowControlType ::= INTEGER { + -- none(0), - no flow control used + rtsCts(1), -- RTS/CTS (hardware) flow control + xonXoff(2) -- XON/XOFF flow control +} +DellBMCSerialBitRateType ::= INTEGER { + bps9600(6), -- 9600 bps (bits per second) + bps19200(7), -- 19200 bps + bps38400(8), -- 38400 bps + bps57600(9), -- 57600 bps + bps115200(10) -- 115200 bps +} + +BmcSerialInterfaceTableEntry ::= SEQUENCE { + bmcSerialInterfaceChassisIndex DellObjectRange, + bmcSerialInterfaceBMCIndex DellObjectRange, + bmcSerialInterfaceIndex DellObjectRange, + bmcSerialInterfaceStateCapabilities DellStateCapabilities, + bmcSerialInterfaceStateSettings DellStateSettings, + bmcSerialInterfaceStatus DellStatus, + bmcSerialInterfaceChannelNumber DellUnsigned8BitRange, + bmcSerialInterfaceConnectionModeCapabilities DellBMCSerialConnectionModeCapabilities, + bmcSerialInterfaceConnectionModeSettings DellBMCSerialConnectionModeSettings, + bmcSerialInterfaceFlowControl DellBMCSerialFlowControlType, + bmcSerialInterfaceBitRate DellBMCSerialBitRateType +} + +bmcSerialInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF BmcSerialInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0020 This object defines the Baseboard Management Controller (BMC) +Serial Interface Table." + ::= { bmcGroup 20 } +bmcSerialInterfaceTableEntry OBJECT-TYPE + SYNTAX BmcSerialInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0020.0001 This object defines the Baseboard Management Controller (BMC) +Serial Interface Table Entry." + INDEX { bmcSerialInterfaceChassisIndex, + bmcSerialInterfaceBMCIndex, + bmcSerialInterfaceIndex } + ::= { bmcSerialInterfaceTable 1 } + +bmcSerialInterfaceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { bmcSerialInterfaceTableEntry 1 } +bmcSerialInterfaceBMCIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0002 This attribute defines the index (one based) of the +assoiciated BMC." + ::= { bmcSerialInterfaceTableEntry 2 } +bmcSerialInterfaceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0003 This attribute defines the index (one based) of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 3 } +bmcSerialInterfaceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0004 This attribute defines the state capabilities of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 4 } +bmcSerialInterfaceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0005 This attribute defines the state settings of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 5 } +bmcSerialInterfaceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0006 This attribute defines the status of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 6 } +bmcSerialInterfaceChannelNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0007 This attribute defines the BMC channel number of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 7 } +bmcSerialInterfaceConnectionModeCapabilities OBJECT-TYPE + SYNTAX DellBMCSerialConnectionModeCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0008 This attribute defines the connection mode capabilities +of the BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 8 } +bmcSerialInterfaceConnectionModeSettings OBJECT-TYPE + SYNTAX DellBMCSerialConnectionModeSettings + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0009 This attribute defines the connection mode settings +of the BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 9 } +bmcSerialInterfaceFlowControl OBJECT-TYPE + SYNTAX DellBMCSerialFlowControlType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0010 This attribute defines the flow control type of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 10 } +bmcSerialInterfaceBitRate OBJECT-TYPE + SYNTAX DellBMCSerialBitRateType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0020.0001.0011 This attribute defines the bit rate of the +BMC serial interface." + ::= { bmcSerialInterfaceTableEntry 11 } + + +------------------------------------------------------------------------------- +-- Baseboard Management Controller (BMC) LAN Interface Table +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.1900.30.1.... +------------------------------------------------------------------------------- + +DellBMCLANIPAddressSourceType ::= INTEGER { + -- unspecified(0), - source is unspecified + static(1), -- static IP address + dhcp(2), -- DHCP used to obtain IP address + biosOrSystemSoftware(3), -- BIOS or system software provided IP Address + other(4) -- other protocol used to obtain IP address +} + +BmcLANInterfaceTableEntry ::= SEQUENCE { + bmcLANInterfaceChassisIndex DellObjectRange, + bmcLANInterfaceBMCIndex DellObjectRange, + bmcLANInterfaceIndex DellObjectRange, + bmcLANInterfaceStateCapabilities DellStateCapabilities, + bmcLANInterfaceStateSettings DellStateSettings, + bmcLANInterfaceStatus DellStatus, + bmcLANInterfaceChannelNumber DellUnsigned8BitRange, + bmcLANInterfaceIPAddressSource DellBMCLANIPAddressSourceType, + bmcLANInterfaceIPAddress IpAddress, + bmcLANInterfaceSubnetMaskAddress IpAddress, + bmcLANInterfaceDefaultGatewayAddress IpAddress, + bmcLANInterfaceMACAddress DellMACAddress, + bmcLANInterfaceAlertCommunityName DisplayString (SIZE (0..32)) +} + +bmcLANInterfaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF BmcLANInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0030 This object defines the Baseboard Management Controller (BMC) +LAN Interface Table." + ::= { bmcGroup 30 } +bmcLANInterfaceTableEntry OBJECT-TYPE + SYNTAX BmcLANInterfaceTableEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION +"1900.0030.0001 This object defines the Baseboard Management Controller (BMC) +LAN Interface Table Entry." + INDEX { bmcLANInterfaceChassisIndex, + bmcLANInterfaceBMCIndex, + bmcLANInterfaceIndex } + ::= { bmcLANInterfaceTable 1 } + +bmcLANInterfaceChassisIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0001 This attribute defines the index (one based) of the +associated chassis." + ::= { bmcLANInterfaceTableEntry 1 } +bmcLANInterfaceBMCIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0002 This attribute defines the index (one based) of the +assoiciated BMC." + ::= { bmcLANInterfaceTableEntry 2 } +bmcLANInterfaceIndex OBJECT-TYPE + SYNTAX DellObjectRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0003 This attribute defines the index (one based) of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 3 } +bmcLANInterfaceStateCapabilities OBJECT-TYPE + SYNTAX DellStateCapabilities + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0004 This attribute defines the state capabilities of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 4 } +bmcLANInterfaceStateSettings OBJECT-TYPE + SYNTAX DellStateSettings + ACCESS read-write + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0005 This attribute defines the state settings of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 5 } +bmcLANInterfaceStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0006 This attribute defines the status of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 6 } +bmcLANInterfaceChannelNumber OBJECT-TYPE + SYNTAX DellUnsigned8BitRange + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0007 This attribute defines the BMC channel number of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 7 } +bmcLANInterfaceIPAddressSource OBJECT-TYPE + SYNTAX DellBMCLANIPAddressSourceType + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0008 This attribute defines the source type of the +IP address of the BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 8 } +bmcLANInterfaceIPAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0009 This attribute defines the IP address of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 9 } +bmcLANInterfaceSubnetMaskAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0010 This attribute defines the subnet mask of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 10 } +bmcLANInterfaceDefaultGatewayAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0011 This attribute defines the IP address of the +default gateway for the BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 11 } +bmcLANInterfaceMACAddress OBJECT-TYPE + SYNTAX DellMACAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0012 This attribute defines the MAC address of the +BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 12 } +bmcLANInterfaceAlertCommunityName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"1900.0030.0001.0013 This attribute defines the SNMP community used for +BMC LAN alerts (traps) sent on the BMC LAN interface." + ::= { bmcLANInterfaceTableEntry 13 } + + +------------------------------------------------------------------------------- +-- Alert Group +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.5000 +------------------------------------------------------------------------------- + +alertVariables OBJECT IDENTIFIER ::= { alertGroup 10 } + + +------------------------------------------------------------------------------- +-- Alert Variables +-- +-- OID Format: 1.3.6.1.4.1.674.10892.1.5000.10..0 +------------------------------------------------------------------------------- + +alertSystem OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0001 Name of the system generating the alert." + ::= { alertVariables 1 } +alertTableIndexOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0002 OID for the index attribute in the table that contains the object +causing the alert. This value can be used to uniquely identify the object +causing the alert and to correlate different alerts caused by an object. +If not applicable, the value will be 0.0." + ::= { alertVariables 2 } +alertMessage OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0003 Message describing the alert." + ::= { alertVariables 3 } +alertCurrentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0004 Current status of object causing the alert." + ::= { alertVariables 4 } +alertPreviousStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0005 Previous status of object causing the alert." + ::= { alertVariables 5 } +alertData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + ACCESS read-only + STATUS mandatory + DESCRIPTION +"5000.0010.0006 Alert data." + ::= { alertVariables 6 } + + +------------------------------------------------------------------------------- +-- +-- Traps +-- +------------------------------------------------------------------------------- + + +------------------------------------------------------------------------------- +-- Miscellaneous Traps +------------------------------------------------------------------------------- + +alertSystemUp TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Server Administrator has completed its initialization." + + --Novell NMS trap annotation + --#TYPE "Server Administrator Startup Complete" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1001 + +alertThermalShutdown TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Thermal shutdown protection has been initiated." + + --Novell NMS trap annotation + --#TYPE "Server Thermal Shutdown" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE NONOPERATIONAL + + ::= 1004 + +alertAutomaticSystemRecovery TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Automatic system recovery (ASR) was performed." + + --Novell NMS trap annotation + --#TYPE "Server Automatic System Recovery" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1006 + +alertUserHostSystemReset TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"User has initiated host system reset." + + --Novell NMS trap annotation + --#TYPE "Server User Host System Reset" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1007 + +alertSystemPeakPowerNewPeak TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"System peak power sensor has detected a new peak value." + + --Novell NMS trap annotation + --#TYPE "Server System Peak Power New Peak" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1013 + +------------------------------------------------------------------------------- +-- Temperature Probe Traps +------------------------------------------------------------------------------- + +alertTemperatureProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1052 + +alertTemperatureProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1053 + +alertTemperatureProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1054 + +alertTemperatureProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Temperature probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Temperature Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1055 + +------------------------------------------------------------------------------- +-- Cooling Device Traps +------------------------------------------------------------------------------- + +alertCoolingDeviceNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1102 + +alertCoolingDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1103 + +alertCoolingDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1104 + +alertCoolingDeviceNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Cooling device sensor has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Cooling Device Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1105 + +------------------------------------------------------------------------------- +-- Voltage Probe Traps +------------------------------------------------------------------------------- + +alertVoltageProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1152 + +alertVoltageProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1153 + +alertVoltageProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1154 + +alertVoltageProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Voltage probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Voltage Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1155 + +------------------------------------------------------------------------------- +-- Amperage Probe Traps +------------------------------------------------------------------------------- + +alertAmperageProbeNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has returned to a normal value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1202 + +alertAmperageProbeWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has detected a warning value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1203 + +alertAmperageProbeFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has detected a failure value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1204 + +alertAmperageProbeNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Amperage probe has detected a non-recoverable value." + + --Novell NMS trap annotation + --#TYPE "Server Amperage Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1205 + +------------------------------------------------------------------------------- +-- Chassis Intrusion Traps +------------------------------------------------------------------------------- + +alertChassisIntrusionNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Chassis intrusion has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Chassis Intrusion Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1252 + +alertChassisIntrusionDetected TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Chassis intrusion has been detected." + + --Novell NMS trap annotation + --#TYPE "Server Chassis Intrusion Detected" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1254 + +------------------------------------------------------------------------------- +-- Redundancy Traps +------------------------------------------------------------------------------- + +alertRedundancyNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Redundancy has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1304 + +alertRedundancyDegraded TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Redundancy has been degraded." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Degraded" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1305 + +alertRedundancyLost TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Redundancy has been lost." + + --Novell NMS trap annotation + --#TYPE "Server Redundancy Lost" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MAJOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1306 + +------------------------------------------------------------------------------- +-- Power Supply Traps +------------------------------------------------------------------------------- + +alertPowerSupplyNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Power supply has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1352 + +alertPowerSupplyWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Power supply has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1353 + +alertPowerSupplyFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Power supply has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Power Supply Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1354 + +------------------------------------------------------------------------------- +-- Memory Device Traps +------------------------------------------------------------------------------- + +alertMemoryDeviceWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is noncritical." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Noncritical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1403 + +alertMemoryDeviceFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is critical." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Critical" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1404 + +alertMemoryDeviceNonRecoverable TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Memory device status is non-recoverable." + + --Novell NMS trap annotation + --#TYPE "Server Memory Device Nonrecoverable" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1405 + +------------------------------------------------------------------------------- +-- Fan Enclosure Traps +------------------------------------------------------------------------------- + +alertFanEnclosureInsertion TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Fan enclosure has been inserted into system." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Insertion" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1452 + +alertFanEnclosureRemoval TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Fan enclosure has been removed from system." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Removal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1453 + +alertFanEnclosureExtendedRemoval TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Fan enclosure has been removed from system for an extended amount of time." + + --Novell NMS trap annotation + --#TYPE "Server Fan Enclosure Extended Removal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1454 + +------------------------------------------------------------------------------- +-- AC Power Cord Traps +------------------------------------------------------------------------------- + +alertACPowerCordNoPowerNonRedundant TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"AC power cord does not have power, and the reduncancy mode +for its AC power switch has been set to non-redundant." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord No Power Non-redundant" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1501 + +alertACPowerCordNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"AC power cord has regained power." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1502 + +alertACPowerCordFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"AC power cord has lost power." + + --Novell NMS trap annotation + --#TYPE "Server AC Cord Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1504 + +------------------------------------------------------------------------------- +-- Hardware Log Traps +------------------------------------------------------------------------------- + +alertLogNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Log size is no longer near or at capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1552 + +alertLogWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Log size is near capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1553 + +alertLogFull TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Log size is at capacity." + + --Novell NMS trap annotation + --#TYPE "Server Hardware Log Full" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1554 + +------------------------------------------------------------------------------- +-- Processor Device Status Traps +------------------------------------------------------------------------------- + +alertProcessorDeviceStatusNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Processor device status has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1602 + +alertProcessorDeviceStatusWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Processor device status has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1603 + +alertProcessorDeviceStatusFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Processor device status has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Processor Device Status Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1604 + +------------------------------------------------------------------------------- +-- Device Traps +------------------------------------------------------------------------------- + +alertDeviceAdd TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Device added to system." + + --Novell NMS trap annotation + --#TYPE "Server Device Add" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1651 + +alertDeviceRemove TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Device removed from system." + + --Novell NMS trap annotation + --#TYPE "Server Device Remove" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1652 + +alertDeviceConfigError TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Device configuration error detected." + + --Novell NMS trap annotation + --#TYPE "Server Device Config Error" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1653 + +------------------------------------------------------------------------------- +-- Battery Traps +------------------------------------------------------------------------------- + +alertBatteryNormal TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has returned to normal." + + --Novell NMS trap annotation + --#TYPE "Server Battery Normal" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY INFORMATIONAL + --#TIMEINDEX 99 + --#STATE OPERATIONAL + + ::= 1702 + +alertBatteryWarning TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has detected a warning." + + --Novell NMS trap annotation + --#TYPE "Server Battery Warning" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY MINOR + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1703 + +alertBatteryFailure TRAP-TYPE + ENTERPRISE baseboardGroup + VARIABLES { alertSystem, + alertTableIndexOID, + alertMessage, + alertCurrentStatus, + alertPreviousStatus, + alertData } + DESCRIPTION +"Battery has detected a failure." + + --Novell NMS trap annotation + --#TYPE "Server Battery Failure" + --#SUMMARY "%s" + --#ARGUMENTS {2} + --#SEVERITY CRITICAL + --#TIMEINDEX 99 + --#STATE DEGRADED + + ::= 1704 + + +END + +------------------------------------------------------------------------------- +-- End MIB +------------------------------------------------------------------------------- + + diff --git a/pandora_console/attachment/mibs/MIOX25-MIB b/pandora_console/attachment/mibs/MIOX25-MIB new file mode 100644 index 0000000000..df533412e2 --- /dev/null +++ b/pandora_console/attachment/mibs/MIOX25-MIB @@ -0,0 +1,707 @@ +-- Changes for RFC 1461 (Multiprotocol Interconnect over X.25) +-- ** No changes needed. ** +-- dperkins@scruznet.com + +MIOX25-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter, + TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString, transmission, + ifIndex + FROM RFC1213-MIB + InstancePointer + FROM RFC1316-MIB + X121Address + FROM RFC1382-MIB + PositiveInteger + FROM RFC1381-MIB; + + -- IP over X.25 MIB + + miox OBJECT IDENTIFIER ::= { transmission 38 } + + mioxPle OBJECT IDENTIFIER ::= { miox 1 } + mioxPeer OBJECT IDENTIFIER ::= { miox 2 } + + -- ########################################################### + -- Ple Table + -- ########################################################### + + -- Systems that implement RFC 1356 must also implement + -- all objects in this group. + + mioxPleTable OBJECT-TYPE + SYNTAX SEQUENCE OF MioxPleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information relative to + an interface to an X.25 Packet Level Entity + (PLE)." + ::= { mioxPle 1 } + + mioxPleEntry OBJECT-TYPE + SYNTAX MioxPleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "These objects manage the encapsulation of + other protocols within X.25." + INDEX { ifIndex } + ::= { mioxPleTable 1 } + + MioxPleEntry ::= SEQUENCE { + mioxPleMaxCircuits + INTEGER, + mioxPleRefusedConnections + Counter, + mioxPleEnAddrToX121LkupFlrs + Counter, + mioxPleLastFailedEnAddr + OCTET STRING, + mioxPleEnAddrToX121LkupFlrTime + TimeTicks, + mioxPleX121ToEnAddrLkupFlrs + Counter, + mioxPleLastFailedX121Address + X121Address, + mioxPleX121ToEnAddrLkupFlrTime + TimeTicks, + mioxPleQbitFailures + Counter, + mioxPleQbitFailureRemoteAddress + X121Address, + mioxPleQbitFailureTime + TimeTicks, + mioxPleMinimumOpenTimer + PositiveInteger, + mioxPleInactivityTimer + PositiveInteger, + mioxPleHoldDownTimer + PositiveInteger, + mioxPleCollisionRetryTimer + PositiveInteger, + mioxPleDefaultPeerId + InstancePointer + } + + mioxPleMaxCircuits OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of X.25 circuits that + can be open at one time for this interface. + A value of zero indicates the interface will + not allow any additional circuits (as it may + soon be shutdown). A value of 2147483647 + allows an unlimited number of circuits." + ::= { mioxPleEntry 1 } + + mioxPleRefusedConnections OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of X.25 calls from a remote + systems to this system that were cleared by + this system. The interface instance should + identify the X.25 interface the call came in + on." + ::= { mioxPleEntry 2 } + + mioxPleEnAddrToX121LkupFlrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times a translation from an + Encapsulated Address to an X.121 address + failed to find a corresponding X.121 + address. Encapsulated addresses can be + looked up in the mioxPeerTable or translated + via an algorithm as for the DDN. Addresses + that are successfully recognized do not + increment this counter. Addresses that are + not recognized (reflecting an abnormal + packet delivery condition) increment this + counter. + + If an address translation fails, it may be + difficult to determine which PLE entry + should count the failure. In such cases the + first likely entry in this table should be + selected. Agents should record the failure + even if they are unsure which PLE should be + associated with the failure." + ::= { mioxPleEntry 3 } + + mioxPleLastFailedEnAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(2..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The last Encapsulated address that failed + to find a corresponding X.121 address and + caused mioxPleEnAddrToX121LkupFlrs to be + incremented. The first octet of this object + contains the encapsulation type, the + remaining octets contain the address of that + type that failed. Thus for an IP address, + the length will be five octets, the first + octet will contain 204 (hex CC), and the + last four octets will contain the IP + address. For a snap encapsulation, the + first byte would be 128 (hex 80) and the + rest of the octet string would have the snap + header." + ::= { mioxPleEntry 4 } + + mioxPleEnAddrToX121LkupFlrTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The most recent value of sysUpTime when the + translation from an Encapsulated Address to + X.121 address failed to find a corresponding + X.121 address." + ::= { mioxPleEntry 5 } + + mioxPleX121ToEnAddrLkupFlrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the translation from an + X.121 address to an Encapsulated Address + failed to find a corresponding Encapsulated + Address. Addresses successfully recognized + by an algorithm do not increment this + counter. This counter reflects the number + of times call acceptance encountered the + abnormal condition of not recognizing the + peer." + ::= { mioxPleEntry 6 } + + mioxPleLastFailedX121Address OBJECT-TYPE + SYNTAX X121Address + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The last X.121 address that caused + mioxPleX121ToEnAddrLkupFlrs to increase." + ::= { mioxPleEntry 7 } + + mioxPleX121ToEnAddrLkupFlrTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The most recent value of sysUpTime when the + translation from an X.121 address to an + Encapsulated Address failed to find a + corresponding Encapsulated Address." + ::= { mioxPleEntry 8 } + + mioxPleQbitFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times a connection was closed + because of a Q-bit failure." + ::= { mioxPleEntry 9 } + + mioxPleQbitFailureRemoteAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remote address of the most recent + (last) connection that was closed because of + a Q-bit failure." + ::= { mioxPleEntry 10 } + + mioxPleQbitFailureTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The most recent value of sysUpTime when a + connection was closed because of a Q-bit + failure. This will also be the last time + that mioxPleQbitFailures was incremented." + ::= { mioxPleEntry 11 } + + mioxPleMinimumOpenTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The minimum time in milliseconds this + interface will keep a connection open before + allowing it to be closed. A value of zero + indicates no timer." + DEFVAL { 0 } + ::= { mioxPleEntry 12 } + + mioxPleInactivityTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The amount of time time in milliseconds + this interface will keep an idle connection + open before closing it. A value of + 2147483647 indicates no timer." + DEFVAL { 10000 } + ::= { mioxPleEntry 13 } + + mioxPleHoldDownTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The hold down timer in milliseconds. This + is the minimum amount of time to wait before + trying another call to a host that was + previously unsuccessful. A value of + 2147483647 indicates the host will not be + retried." + DEFVAL { 0 } + ::= { mioxPleEntry 14 } + + mioxPleCollisionRetryTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Collision Retry Timer in milliseconds. + The time to delay between call attempts when + the maximum number of circuits is exceeded + in a call attempt." + DEFVAL { 0 } + ::= { mioxPleEntry 15 } + + mioxPleDefaultPeerId OBJECT-TYPE + SYNTAX InstancePointer + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This identifies the instance of the index + in the mioxPeerTable for the default + parameters to use with this interface. + + The entry identified by this object may have + a zero length Encapsulation address and a + zero length X.121 address. + + These default parameters are used with + connections to hosts that do not have + entries in the mioxPeerTable. Such + connections occur when using ddn-x25 IP-X.25 + address mapping or when accepting + connections from other hosts not in the + mioxPeerTable. + + The mioxPeerEncTable entry with the same + index as the mioxPeerTable entry specifies + the call encapsulation types this PLE will + accept for peers not in the mioxPeerTable. + If the mioxPeerEncTable doesn't contain any + entries, this PLE will not accept calls from + entries not in the mioxPeerTable." + ::= { mioxPleEntry 16 } + + -- ########################################################### + -- Peer Table + -- ########################################################### + + + -- Systems that implement RFC 1356 must also implement + -- all objects in this group. + + mioxPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF MioxPeerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains information about the + possible peers this machine may exchange + packets with." + ::= { mioxPeer 1 } + + mioxPeerEntry OBJECT-TYPE + SYNTAX MioxPeerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Per peer information." + INDEX { mioxPeerIndex } + ::= { mioxPeerTable 1 } + + MioxPeerEntry ::= SEQUENCE { + mioxPeerIndex + PositiveInteger, + mioxPeerStatus + INTEGER, + mioxPeerMaxCircuits + PositiveInteger, + mioxPeerIfIndex + PositiveInteger, + mioxPeerConnectSeconds + Counter, + mioxPeerX25CallParamId + InstancePointer, + mioxPeerEnAddr + OCTET STRING, + mioxPeerX121Address + X121Address, + mioxPeerX25CircuitId + InstancePointer, + mioxPeerDescr + DisplayString + } + + mioxPeerIndex OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index value that distinguished one entry + from another. This index is independent of + any other index." + ::= { mioxPeerEntry 1 } + + -- Systems can claim conformance with this MIB without + -- implementing sets to mioxPeerStatus with a value of + -- clearCall or makeCall. + -- All other defined values must be accepted. + -- Implementors should realize that allowing these values + -- provides richer management, and implementations + -- are encouraged to accept these values. + + mioxPeerStatus OBJECT-TYPE + SYNTAX INTEGER { + valid (1), + createRequest (2), + underCreation (3), + invalid (4), + clearCall (5), + makeCall (6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This reports the status of a peer entry. + A value of valid indicates a normal entry + that is in use by the agent. A value of + underCreation indicates a newly created + entry which isn't yet in use because the + creating management station is still setting + values. + + The value of invalid indicates the entry is + no longer in use and the agent is free to + delete the entry at any time. A management + station is also free to use an entry in the + invalid state. + + Entries are created by setting a value of + createRequest. Only non-existent or invalid + entries can be set to createRequest. Upon + receiving a valid createRequest, the agent + will create an entry in the underCreation + state. This object can not be set to a + value of underCreation directly, entries can + only be created by setting a value of + createRequest. Entries that exist in other + than the invalid state can not be set to + createRequest. + + Entries with a value of underCreation are + not used by the system and the management + station can change the values of other + objects in the table entry. Management + stations should also remember to configure + values in the mioxPeerEncTable with the same + peer index value as this peer entry. + + An entry in the underCreation state can be + set to valid or invalid. Entries in the + underCreation state will stay in that state + until 1) the agent times them out, 2) they + are set to valid, 3) they are set to + invalid. If an agent notices an entry has + been in the underCreation state for an + abnormally long time, it may decide the + management station has failed and invalidate + the entry. A prudent agent will understand + that the management station may need to wait + for human input and will allow for that + possibility in its determination of this + abnormally long period. + + Once a management station has completed all + fields of an entry, it will set a value of + valid. This causes the entry to be + activated. + + Entries in the valid state may also be set + to makeCall or clearCall to make or clear + X.25 calls to the peer. After such a set + request the entry will still be in the valid + state. Setting a value of makeCall causes + the agent to initiate an X.25 call request + to the peer specified by the entry. Setting + a value of clearCall causes the agent to + initiate clearing one X.25 call present to + the peer. Each set request will initiate + another call or clear request (up to the + maximum allowed); this means that management + stations that fail to get a response to a + set request should query to see if a call + was in fact placed or cleared before + retrying the request. Entries not in the + valid state can not be set to makeCall or + clearCall. + + The values of makeCall and clearCall provide + for circuit control on devices which perform + Ethernet Bridging using static circuit + assignment without address recognition; + other devices which dynamically place calls + based on destination addresses may reject + such requests. + + An agent that (re)creates a new entry + because of a set with createRequest, should + also (re)create a mioxPeerEncTable entry + with a mioxPeerEncIndex of 1, and a + mioxPeerEncType of 204 (hex CC)." + ::= { mioxPeerEntry 2 } + + mioxPeerMaxCircuits OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of X.25 circuits allowed + to this peer." + DEFVAL { 1 } + ::= { mioxPeerEntry 3 } + + mioxPeerIfIndex OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the ifIndex object for the + interface to X.25 to use to call the peer." + DEFVAL { 1 } + ::= { mioxPeerEntry 4 } + + mioxPeerConnectSeconds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds a call to this peer + was active. This counter will be + incremented by one for every second a + connection to a peer was open. If two calls + are open at the same time, one second of + elapsed real time will results in two + seconds of connect time." + ::= { mioxPeerEntry 5 } + + mioxPeerX25CallParamId OBJECT-TYPE + SYNTAX InstancePointer + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The instance of the index object in the + x25CallParmTable from RFC 1382 for the X.25 + call parameters used to communicate with the + remote host. The well known value {0 0} + indicates no call parameters specified." + DEFVAL { {0 0} } + ::= { mioxPeerEntry 6 } + + mioxPeerEnAddr OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Encapsulation address of the remote + host mapped by this table entry. A length + of zero indicates the remote IP address is + unknown or unspecified for use as a PLE + default. + + The first octet of this object contains the + encapsulation type, the remaining octets + contain an address of that type. Thus for + an IP address, the length will be five + octets, the first octet will contain 204 + (hex CC), and the last four octets will + contain the IP address. For a snap + encapsulation, the first byte would be 128 + (hex 80) and the rest of the octet string + would have the snap header." + DEFVAL { ''h } + ::= { mioxPeerEntry 7 } + + mioxPeerX121Address OBJECT-TYPE + SYNTAX X121Address + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The X.25 address of the remote host mapped + by this table entry. A zero length string + indicates the X.25 address is unspecified + for use as the PLE default." + DEFVAL { ''h } + ::= { mioxPeerEntry 8 } + + -- Systems can claim conformance to this MIB without + -- implementing sets to mioxPeerX25CircuitId. + -- However systems that use PVCs with RFC1356 + -- are encouraged to implement sets. + mioxPeerX25CircuitId OBJECT-TYPE + SYNTAX InstancePointer + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object identifies the instance of the + index for the X.25 circuit open to the peer + mapped by this table entry. The well known + value {0 0} indicates no connection + currently active. For multiple connections, + this identifies the index of a multiplexing + table entry for the connections. This can + only be written to configure use of PVCs + which means the identified circuit table + entry for a write must be a PVC." + DEFVAL { {0 0} } + ::= { mioxPeerEntry 9 } + + mioxPeerDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object returns any identification + information about the peer. An agent may + supply the comment information found in the + configuration file entry for this peer. A + zero length string indicates no information + available." + DEFVAL { ''h } + ::= { mioxPeerEntry 10 } + + -- ########################################################### + -- Peer Encapsulation Table + -- ########################################################### + + mioxPeerEncTable OBJECT-TYPE + SYNTAX SEQUENCE OF MioxPeerEncEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the list of + encapsulations used to communicate with a + peer. This table has two indexes, the first + identifies the peer, the second + distinguishes encapsulation types. + + The first index identifies the corresponding + entry in the mioxPeerTable. The second + index gives the priority of the different + encapsulations. + + The encapsulation types are ordered in + priority order. For calling a peer, the + first entry (mioxPeerEncIndex of 1) is tried + first. If the call doesn't succeed because + the remote host clears the call due to + incompatible call user data, the next entry + in the list is tried. Each entry is tried + until the list is exhausted. + + For answering a call, the encapsulation type + requested by the peer must be found the list + or the call will be refused. If there are + no entries in this table for a peer, all + call requests from the peer will be refused. + + Objects in this table can only be set when + the mioxPeerStatus object with the same + index has a value of underCreation. When + that status object is set to invalid and + deleted, the entry in this table with that + peer index must also be deleted." + ::= { mioxPeer 2 } + + mioxPeerEncEntry OBJECT-TYPE + SYNTAX MioxPeerEncEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Per connection information." + INDEX { mioxPeerIndex, mioxPeerEncIndex} + ::= { mioxPeerEncTable 1 } + + MioxPeerEncEntry ::= SEQUENCE { + mioxPeerEncIndex + PositiveInteger, + mioxPeerEncType + INTEGER + } + + mioxPeerEncIndex OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The second index in the table which + distinguishes different encapsulation + types." + ::= { mioxPeerEncEntry 1 } + + mioxPeerEncType OBJECT-TYPE + SYNTAX INTEGER (0..256) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the encapsulation type. For + IP encapsulation this will have a value of + 204 (hex CC). For SNAP encapsulated + packets, this will have a value of 128 (hex + 80). For CLNP, ISO 8473, this will have a + value of 129 (hex 81). For ES-ES, ISO 9542, + this will have a value of 130 (hex 82). A + value of 197 (hex C5) identifies the Blacker + X.25 encapsulation. A value of 0, + identifies the Null encapsulation. + + This value can only be written when the + mioxPeerStatus object with the same + mioxPeerIndex has a value of underCreation. + Setting this object to a value of 256 + deletes the entry. When deleting an entry, + all other entries in the mioxPeerEncTable + with the same mioxPeerIndex and with an + mioxPeerEncIndex higher then the deleted + entry, will all have their mioxPeerEncIndex + values decremented by one." + ::= { mioxPeerEncEntry 2 } + + -- ########################################################### + +END diff --git a/pandora_console/attachment/mibs/MSFT-MIB b/pandora_console/attachment/mibs/MSFT-MIB new file mode 100644 index 0000000000..c54db5686e --- /dev/null +++ b/pandora_console/attachment/mibs/MSFT-MIB @@ -0,0 +1,18 @@ +MSFT-MIB DEFINITIONS ::= BEGIN + + +IMPORTS + enterprises + FROM RFC1155-SMI; + +microsoft OBJECT IDENTIFIER ::= { enterprises 311 } +software OBJECT IDENTIFIER ::= { microsoft 1 } +systems OBJECT IDENTIFIER ::= { software 1 } +os OBJECT IDENTIFIER ::= { systems 3 } +windowsNT OBJECT IDENTIFIER ::= { os 1 } +windows OBJECT IDENTIFIER ::= { os 2 } +workstation OBJECT IDENTIFIER ::= { windowsNT 1 } +server OBJECT IDENTIFIER ::= { windowsNT 2 } +dc OBJECT IDENTIFIER ::= { windowsNT 3 } + +END diff --git a/pandora_console/attachment/mibs/MSSQL-MIB b/pandora_console/attachment/mibs/MSSQL-MIB new file mode 100644 index 0000000000..699b82c158 --- /dev/null +++ b/pandora_console/attachment/mibs/MSSQL-MIB @@ -0,0 +1,837 @@ + +MSSQLSERVER-MIB DEFINITIONS ::= BEGIN + + IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC-1213; + + microsoft OBJECT IDENTIFIER ::= { enterprises 311 } + software OBJECT IDENTIFIER ::= { microsoft 1 } + apps OBJECT IDENTIFIER ::= { software 4 } + mssqlServer OBJECT IDENTIFIER ::= { apps 1 } + mssqlServerObjects OBJECT IDENTIFIER ::= { mssqlServer 1 } + + -- sqlserver MIB + + mssqlSrvTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlSrvEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains a single row for the SQL Server + installed on the system." + ::= { mssqlServerObjects 1 } + + mssqlSrvEntry OBJECT-TYPE + SYNTAX MssqlSrvEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlSrvTable entries." + INDEX { mssqlSrvVendorName } + ::= { mssqlSrvTable 1 } + + MssqlSrvEntry ::= + SEQUENCE { + mssqlSrvVendorName + DisplayString, + mssqlSrvProductName + DisplayString, + mssqlSrvVersion + DisplayString, + mssqlSrvContact + DisplayString, + mssqlSrvState + INTEGER + } + + mssqlSrvVendorName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the database server vendor." + ::= { mssqlSrvEntry 1 } + + mssqlSrvProductName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product name of the database server." + ::= { mssqlSrvEntry 2 } + + mssqlSrvVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version of installed SQL Server." + ::= { mssqlSrvEntry 3 } + + mssqlSrvContact OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contact person for this SQL Server installation." + ::= { mssqlSrvEntry 4 } + + mssqlSrvState OBJECT-TYPE + SYNTAX INTEGER { + running(1), + paused(2), + stopped(3), + starting(4), + stopping(5), + continuing(6), + pausing(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of SQL Server. Unknown(1) means we are + unable to determine the state of the server, Running(2) + means the server is available and can be used, Paused(3) + means the server is running, but new connections cannot + currently be established, and Stopped(4) means the server + is not running and unavailable." + ::= { mssqlSrvEntry 5 } + + ---------------------------------------------------------------- + + mssqlSrvInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlSrvInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains general information regarding + the active SQL Server process, including performance + counters." + ::= { mssqlServerObjects 2 } + + mssqlSrvInfoEntry OBJECT-TYPE + SYNTAX MssqlSrvInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlSrvInfoTable entries." + INDEX { mssqlSrvInfoServerName } + ::= { mssqlSrvInfoTable 1 } + + MssqlSrvInfoEntry ::= + SEQUENCE { + mssqlSrvInfoServerName + DisplayString, + mssqlSrvInfoStartupTime + DisplayString, + mssqlSrvInfoTrans + Gauge, + mssqlSrvInfoPageReads + Counter, + mssqlSrvInfoSinglePageWrites + Counter, + mssqlSrvInfoBatchWrites + Counter, + mssqlSrvInfoLazyWrites + Counter, + mssqlSrvInfoLogWrites + Counter, + mssqlSrvInfoOutstandingReads + Counter, + mssqlSrvInfoOutstandingWrites + Counter, + mssqlSrvInfoCacheHitRatio + Gauge, + mssqlSrvInfoFreeBuffers + Gauge, + mssqlSrvInfoNetworkReads + Counter, + mssqlSrvInfoNetworkWrites + Counter, + mssqlSrvInfoRAPhysicalReads + Counter, + mssqlSrvInfoUserConnections + Gauge, + mssqlSrvInfoTotalLocks + Gauge, + mssqlSrvInfoTotalBlockingLocks + Gauge, + mssqlSrvInfoUsersBlocked + Gauge + } + + mssqlSrvInfoServerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the local SQL Server." + ::= { mssqlSrvInfoEntry 1 } + + mssqlSrvInfoStartupTime OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time at which the current running + SQL Server process was last started." + ::= { mssqlSrvInfoEntry 2 } + + mssqlSrvInfoTrans OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of command batches completed since + SQL Server was last started." + ::= { mssqlSrvInfoEntry 3 } + + mssqlSrvInfoPageReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of physical page reads completed + since SQL Server was started." + ::= { mssqlSrvInfoEntry 4 } + + mssqlSrvInfoSinglePageWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of single page writes completed + since the SQL Server was started (does not + include log writes, cache flushes (Lazy Writer), + or batch writes)." + ::= { mssqlSrvInfoEntry 5 } + + mssqlSrvInfoBatchWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of pages written to disk using batch + I/O since SQL Server was started." + ::= { mssqlSrvInfoEntry 6 } + + mssqlSrvInfoLazyWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of pages flushed to disk by the + Lazy Writer since SQL Server was started." + ::= { mssqlSrvInfoEntry 7 } + + mssqlSrvInfoLogWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of log pages physically written + to disk since SQL Server was started." + ::= { mssqlSrvInfoEntry 8 } + + mssqlSrvInfoOutstandingReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of physical reads pending." + ::= { mssqlSrvInfoEntry 9 } + + mssqlSrvInfoOutstandingWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of physical writes pending." + ::= { mssqlSrvInfoEntry 10 } + + mssqlSrvInfoCacheHitRatio OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The percentage of time that a requested data + page was found in the data cache (instead of + being read from disk)." + ::= { mssqlSrvInfoEntry 11 } + + mssqlSrvInfoFreeBuffers OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of data cache buffers currently + in the free pool." + ::= { mssqlSrvInfoEntry 12 } + + mssqlSrvInfoNetworkReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of tabular data stream (TDS) packets read + from the network since SQL Server was started." + ::= { mssqlSrvInfoEntry 13 } + + mssqlSrvInfoNetworkWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of tabular data stream (TDS) packets written + to the network since SQL Server was started." + ::= { mssqlSrvInfoEntry 14 } + + mssqlSrvInfoRAPhysicalReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Physical reads (each consisting of 8 - 2K pages) issued by + Read Ahead Manager since SQL Server was started." + ::= { mssqlSrvInfoEntry 15 } + + mssqlSrvInfoUserConnections OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of open user connections." + ::= { mssqlSrvInfoEntry 16 } + + mssqlSrvInfoTotalLocks OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of all locks being used by SQL Server." + ::= { mssqlSrvInfoEntry 17 } + + mssqlSrvInfoTotalBlockingLocks OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of all locks blocking other processes." + ::= { mssqlSrvInfoEntry 18 } + + mssqlSrvInfoUsersBlocked OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of users blocked by other users." + ::= { mssqlSrvInfoEntry 19 } + + ---------------------------------------------------------------- + + mssqlSrvConfigParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlSrvConfigParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains entries for the SQL Server + configuration parameters." + ::= { mssqlServerObjects 3 } + + mssqlSrvConfigParamEntry OBJECT-TYPE + SYNTAX MssqlSrvConfigParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlSrvConfigParamTable entries. The SQL Server configuration + parameter name is used as the index value." + INDEX { OCTET STRING } + ::= { mssqlSrvConfigParamTable 1 } + + MssqlSrvConfigParamEntry ::= + SEQUENCE { + mssqlSrvConfigParamName + DisplayString, + mssqlSrvConfigParamMax + INTEGER, + mssqlSrvConfigParamMin + INTEGER, + mssqlSrvConfigParamConfigValue + INTEGER, + mssqlSrvConfigParamRunValue + INTEGER + } + + mssqlSrvConfigParamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of SQL Server configuration parameter." + ::= { mssqlSrvConfigParamEntry 1 } + + mssqlSrvConfigParamMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum configurable value for the associated + SQL Server configuration parameter." + ::= { mssqlSrvConfigParamEntry 2 } + + mssqlSrvConfigParamMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum configurable value for the associated + SQL Server configuration parameter." + ::= { mssqlSrvConfigParamEntry 3 } + + mssqlSrvConfigParamConfigValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current configured value for the associated + SQL Server configuration parameter." + ::= { mssqlSrvConfigParamEntry 4 } + + mssqlSrvConfigParamRunValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current run value for the associated + SQL Server configuration parameter." + ::= { mssqlSrvConfigParamEntry 5 } + + ---------------------------------------------------------------- + + mssqlSrvDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlSrvDeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains entries for each SQL Server + device on the system." + ::= { mssqlServerObjects 4 } + + mssqlSrvDeviceEntry OBJECT-TYPE + SYNTAX MssqlSrvDeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlSrvDeviceTable entries." + INDEX { mssqlSrvDeviceLogicalName } + ::= { mssqlSrvDeviceTable 1 } + + MssqlSrvDeviceEntry ::= + SEQUENCE { + mssqlSrvDeviceLogicalName + DisplayString, + mssqlSrvDevicePhysicalName + DisplayString, + mssqlSrvDeviceDescription + DisplayString + } + + mssqlSrvDeviceLogicalName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The logical name of the defined database or dump device." + ::= { mssqlSrvDeviceEntry 1 } + + mssqlSrvDevicePhysicalName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The physical name including the file system path and file name." + ::= { mssqlSrvDeviceEntry 2 } + + mssqlSrvDeviceDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Detailed description of the device including the type of + device, size, and the media type." + ::= { mssqlSrvDeviceEntry 3 } + +---------------------------------------------------------------- + + mssqlDbTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlDbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains a list of SQL Server databases. The + table contains a single row for each database (whether + the database is actually accessible or not)." + ::= { mssqlServerObjects 5 } + + mssqlDbEntry OBJECT-TYPE + SYNTAX MssqlDbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlDbTable entries." + INDEX { mssqlDbId, mssqlDbState } + ::= { mssqlDbTable 1 } + + MssqlDbEntry ::= + SEQUENCE { + mssqlDbId + INTEGER, + mssqlDbName + DisplayString, + mssqlDbState + INTEGER + } + + mssqlDbId OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The dbid of the database." + ::= { mssqlDbEntry 1 } + + mssqlDbName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the database." + ::= { mssqlDbEntry 2 } + + mssqlDbState OBJECT-TYPE + SYNTAX INTEGER { + active(1), + singleUser(2), + dboonly(3), + readOnly(4), + offline(5), + suspect(6), + loading(7), + publishing(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the database. Valid states are defined as follows: + Active(1), Single User(2), DBO Only(3), Read Only(4), Offline(5), + Suspect(6), Loading(7), and Publishing(8)." + ::= { mssqlDbEntry 3 } + + ---------------------------------------------------------------- + + mssqlDbInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlDbInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains detailed information about SQL Server + databases. In order for this table to be populated, the + database must be accessible (as determined by checking + mssqlDbState)." + ::= { mssqlServerObjects 6 } + + mssqlDbInfoEntry OBJECT-TYPE + SYNTAX MssqlDbInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlDbInfoTable entries." + INDEX { mssqlDbInfoDbId } + ::= { mssqlDbInfoTable 1 } + + MssqlDbInfoEntry ::= + SEQUENCE { + mssqlDbInfoDbId + INTEGER, + mssqlDbInfoDbName + DisplayString, + mssqlDbInfoCreationDateTime + DisplayString, + mssqlDbInfoOwner + DisplayString, + mssqlDbInfoSize + INTEGER, + mssqlDbInfoUnallocatedSpace + INTEGER, + mssqlDbInfoReservedSpace + INTEGER, + mssqlDbInfoDataSpace + INTEGER, + mssqlDbInfoIndexSpace + INTEGER, + mssqlDbInfoUnusedSpace + INTEGER, + mssqlDbInfoLastTrLogDump + DisplayString, + mssqlDbInfoLogSize + INTEGER, + mssqlDbInfoLogSpaceUsed + INTEGER + } + + mssqlDbInfoDbId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The dbid of the database associated with this row." + ::= { mssqlDbInfoEntry 1 } + + mssqlDbInfoDbName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the database associated with this row." + ::= { mssqlDbInfoEntry 2 } + + mssqlDbInfoCreationDateTime OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time that the database associated with + this row was created." + ::= { mssqlDbInfoEntry 3 } + + mssqlDbInfoOwner OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The owner of the database associated with this row." + ::= { mssqlDbInfoEntry 4 } + + mssqlDbInfoSize OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in KB of the database associated with this row." + ::= { mssqlDbInfoEntry 5 } + + mssqlDbInfoUnallocatedSpace OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unallocated space in KB of the database associated + with this row." + ::= { mssqlDbInfoEntry 6 } + + mssqlDbInfoReservedSpace OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The reserved space in KB of the database associated with + this row." + ::= { mssqlDbInfoEntry 7 } + + mssqlDbInfoDataSpace OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The used data space in KB of the database associated + with this row." + ::= { mssqlDbInfoEntry 8 } + + mssqlDbInfoIndexSpace OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The used index space in KB of the database associated + with this row." + ::= { mssqlDbInfoEntry 9 } + + mssqlDbInfoUnusedSpace OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The unused space in KB of the database associated + with this row." + ::= { mssqlDbInfoEntry 10 } + + mssqlDbInfoLastTrLogDump OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time that the latest transaction log dump + for this database was taken." + ::= { mssqlDbInfoEntry 11 } + + mssqlDbInfoLogSize OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in KB of the transaction log for the database + associated with this row." + ::= { mssqlDbInfoEntry 12 } + + mssqlDbInfoLogSpaceUsed OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The percentage of transaction log space for the + database associated with this row." + ::= { mssqlDbInfoEntry 13 } + + ---------------------------------------------------------------- + + mssqlDbOptionTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlDbOptionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the list of possible database + options and indicates which are set for a given dastabase." + ::= { mssqlServerObjects 7 } + + mssqlDbOptionEntry OBJECT-TYPE + SYNTAX MssqlDbOptionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlDbOptionTable entries. The dbid of the database + is used as the index value associated with this row." + INDEX { mssqlDbOptionDbId, INTEGER } + ::= { mssqlDbOptionTable 1 } + + MssqlDbOptionEntry ::= + SEQUENCE { + mssqlDbOptionDbId + INTEGER, + mssqlDbOptionDbName + DisplayString, + mssqlDbOptionSetName + DisplayString + } + + mssqlDbOptionDbId OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The dbid of the database associated with this row." + ::= { mssqlDbOptionEntry 1 } + + mssqlDbOptionDbName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the database associated with this row." + ::= { mssqlDbOptionEntry 2 } + + mssqlDbOptionSetName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the database option that is set for + the database associated with this row." + ::= { mssqlDbOptionEntry 3 } + + ---------------------------------------------------------------- + + mssqlDbDeviceTable OBJECT-TYPE + SYNTAX SEQUENCE OF MssqlDbDeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains entries for each device fragment + on which a particular SQL Server database has been + created or altered." + ::= { mssqlServerObjects 8 } + + mssqlDbDeviceEntry OBJECT-TYPE + SYNTAX MssqlDbDeviceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "mssqlDbDeviceTable entries. The dbid of the database + is used as index value associated with this row." + INDEX { mssqlDbDeviceDbId, INTEGER } + ::= { mssqlDbDeviceTable 1 } + + MssqlDbDeviceEntry ::= + SEQUENCE { + mssqlDbDeviceDbId + INTEGER, + mssqlDbDeviceDbName + DisplayString, + mssqlDbDeviceFragmentName + DisplayString, + mssqlDbDeviceFragmentSize + INTEGER, + mssqlDbDeviceFragmentUsage + DisplayString + } + + mssqlDbDeviceDbId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The dbid of the database associated with this row." + ::= { mssqlDbDeviceEntry 1 } + + mssqlDbDeviceDbName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the database associated with this row." + ::= { mssqlDbDeviceEntry 2 } + + mssqlDbDeviceFragmentName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of a device fragment on which the database + has been created or altered." + ::= { mssqlDbDeviceEntry 3 } + + mssqlDbDeviceFragmentSize OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in KB of the device fragment on which the + database has been created or altered." + ::= { mssqlDbDeviceEntry 4 } + + mssqlDbDeviceFragmentUsage OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates if the device fragment contains data, + log, or data and log." + ::= { mssqlDbDeviceEntry 5 } + +---------------------------------------------------------------- + +END diff --git a/pandora_console/attachment/mibs/MTA-MIB b/pandora_console/attachment/mibs/MTA-MIB new file mode 100644 index 0000000000..48f584b863 --- /dev/null +++ b/pandora_console/attachment/mibs/MTA-MIB @@ -0,0 +1,659 @@ +-- Changes to rfc1566 (MTA SNMPv2 MIB): +-- Added the following imports: MODULE-COMPLIANCE and OBJECT-GROUP +-- from SNMPv2-CONF; and MODULE-IDENTITY from SNMPv2-SMI. +-- dperkins@scruznet.com + + + MTA-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE, Counter32, Gauge32, MODULE-IDENTITY + FROM SNMPv2-SMI + DisplayString, TimeInterval + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF + mib-2 + FROM RFC1213-MIB + applIndex + FROM APPLICATION-MIB; + + mta MODULE-IDENTITY + LAST-UPDATED "9311280000Z" + ORGANIZATION "IETF Mail and Directory Management Working Group" + CONTACT-INFO + " Ned Freed + + Postal: Innosoft International, Inc. + 250 West First Street, Suite 240 + Claremont, CA 91711 + US + + Tel: +1 909 624 7907 + Fax: +1 909 621 5319 + + E-Mail: ned@innosoft.com" + DESCRIPTION + "The MIB module describing Message Transfer Agents (MTAs)" + ::= { mib-2 28 } + + mtaTable OBJECT-TYPE + SYNTAX SEQUENCE OF MtaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table holding information specific to an MTA." + ::= {mta 1} + + mtaEntry OBJECT-TYPE + SYNTAX MtaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry associated with each MTA." + INDEX {applIndex} + ::= {mtaTable 1} + + MtaEntry ::= SEQUENCE { + mtaReceivedMessages + Counter32, + mtaStoredMessages + Gauge32, + mtaTransmittedMessages + Counter32, + mtaReceivedVolume + Counter32, + mtaStoredVolume + Gauge32, + mtaTransmittedVolume + Counter32, + mtaReceivedRecipients + Counter32, + mtaStoredRecipients + Gauge32, + mtaTransmittedRecipients + Counter32 + } + + mtaReceivedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages received since MTA initialization." + ::= {mtaEntry 1} + + mtaStoredMessages OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages currently stored in the MTA." + ::= {mtaEntry 2} + + mtaTransmittedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages transmitted since MTA initialization." + ::= {mtaEntry 3} + + mtaReceivedVolume OBJECT-TYPE + SYNTAX Counter32 + UNITS "K-octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total volume of messages received since MTA + initialization, measured in kilo-octets. This volume should + include all transferred data that is logically above the mail + transport protocol level. For example, an SMTP-based MTA + should use the number of kilo-octets in the message header + and body, while an X.400-based MTA should use the number of + kilo-octets of P2 data." + ::= {mtaEntry 4} + + mtaStoredVolume OBJECT-TYPE + SYNTAX Gauge32 + UNITS "K-octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total volume of messages currently stored in the MTA, + measured in kilo-octets. This volume should include all + stored data that is logically above the mail transport + protocol level. For example, an SMTP-based MTA should + use the number of kilo-octets in the message header and + body, while an X.400-based MTA would use the number of + kilo-octets of P2 data." + ::= {mtaEntry 5} + + mtaTransmittedVolume OBJECT-TYPE + SYNTAX Counter32 + UNITS "K-octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total volume of messages transmitted since MTA + initialization, measured in kilo-octets. This volume should + include all transferred data that is logically above the mail + transport protocol level. For example, an SMTP-based MTA + should use the number of kilo-octets in the message header + and body, while an X.400-based MTA should use the number of + kilo-octets of P2 data." + ::= {mtaEntry 6} + + mtaReceivedRecipients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of recipients specified in all messages + received since MTA initialization. Recipients this MTA + had no responsibility for should not be counted even if + information about such recipients is available." + ::= {mtaEntry 7} + + mtaStoredRecipients OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of recipients specified in all messages + currently stored in the MTA. Recipients this MTA had no + responsibility for should not be counted." + ::= {mtaEntry 8} + + mtaTransmittedRecipients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of recipients specified in all messages + transmitted since MTA initialization. Recipients this MTA + had no responsibility for should not be counted." + ::= {mtaEntry 9} + + + -- MTAs typically group inbound reception, queue storage, and + -- outbound transmission in some way. In the most extreme case + -- information will be maintained for each different entity that + -- receives messages and for each entity the MTA stores messages for + -- and delivers messages to. Other MTAs may elect to treat all + -- reception equally, all queue storage equally, all deliveries + -- equally, or some combination of this. + + -- In any case, a grouping abstraction is an extremely useful for + -- breaking down the activities of an MTA. For purposes of labelling + -- this will be called a "group" in this MIB. + + -- Each group contains all the variables needed to monitor all aspects + -- of an MTA's operation. However, the fact that all groups contain + -- all possible variables does not imply that all groups must use all + -- possible variables. For example, a single group might be used to + -- monitor only one kind of event (inbound processing, outbound + -- processing, or storage). In this sort of configuration all unused + -- counters would be inaccessible; e.g., returning either a + -- noSuchName error (for an SNMPv1 get), or a noSuchInstance + -- exception (for an SNMPv2 get). + + -- Groups are not necessarily mutually exclusive. A given event may + -- be recorded by more than one group, a message may be seen as + -- stored by more than one group, and so on. Groups should be all + -- inclusive, however: if groups are implemented all aspects of an + -- MTA's operation should be registered in at least one group. This + -- freedom lets implementors use different sets of groups to + -- provide differents "views" of an MTA. + + -- The possibility of overlap between groups means that summing + -- variables across groups may not produce values equal to those in + -- the mtaTable. mtaTable should always provide accurate information + -- about the MTA as a whole. + + -- The term "channel" is often used in MTA implementations; channels + -- are usually, but not always, equivalent to a group. However, + -- this MIB does not use the term "channel" because there is no + -- requirement that an MTA supporting this MIB has to map its + -- "channel" abstraction one-to-one onto the MIB's group abstration. + + mtaGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF MtaGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table holding information specific to each MTA group." + ::= {mta 2} + + mtaGroupEntry OBJECT-TYPE + SYNTAX MtaGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry associated with each MTA group." + INDEX {applIndex, mtaGroupIndex} + ::= {mtaGroupTable 1} + + MtaGroupEntry ::= SEQUENCE { + mtaGroupIndex + INTEGER, + mtaGroupReceivedMessages + Counter32, + mtaGroupRejectedMessages + Counter32, + mtaGroupStoredMessages + Gauge32, + mtaGroupTransmittedMessages + Counter32, + mtaGroupReceivedVolume + Counter32, + mtaGroupStoredVolume + Gauge32, + mtaGroupTransmittedVolume + Counter32, + mtaGroupReceivedRecipients + Counter32, + mtaGroupStoredRecipients + Gauge32, + mtaGroupTransmittedRecipients + Counter32, + mtaGroupOldestMessageStored + TimeInterval, + mtaGroupInboundAssociations + Gauge32, + mtaGroupOutboundAssociations + Gauge32, + mtaGroupAccumulatedInboundAssociations + Counter32, + mtaGroupAccumulatedOutboundAssociations + Counter32, + mtaGroupLastInboundActivity + TimeInterval, + mtaGroupLastOutboundActivity + TimeInterval, + mtaGroupRejectedInboundAssociations + Counter32, + mtaGroupFailedOutboundAssociations + Counter32, + mtaGroupInboundRejectionReason + DisplayString, + mtaGroupOutboundConnectFailureReason + DisplayString, + mtaGroupScheduledRetry + TimeInterval, + mtaGroupMailProtocol + OBJECT IDENTIFIER, + mtaGroupName + DisplayString + } + + mtaGroupIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index associated with a group for a given MTA." + ::= {mtaGroupEntry 1} + + mtaGroupReceivedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages received to this group since MTA + initialization." + ::= {mtaGroupEntry 2} + + mtaGroupRejectedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages rejected by this group since MTA + initialization." + ::= {mtaGroupEntry 3} + + mtaGroupStoredMessages OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages currently stored in this + group's queue." + ::= {mtaGroupEntry 4} + + mtaGroupTransmittedMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of messages transmitted by this group since MTA + initialization." + ::= {mtaGroupEntry 5} + + mtaGroupReceivedVolume OBJECT-TYPE + SYNTAX Counter32 + UNITS "K-octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total volume of messages received to this group since + MTA initialization, measured in kilo-octets. This volume + should include all transferred data that is logically above + the mail transport protocol level. For example, an + SMTP-based MTA should use the number of kilo-octets in the + message header and body, while an X.400-based MTA should use + the number of kilo-octets of P2 data." + ::= {mtaGroupEntry 6} + + mtaGroupStoredVolume OBJECT-TYPE + SYNTAX Gauge32 + UNITS "K-octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total volume of messages currently stored in this + group's queue, measured in kilo-octets. This volume should + include all stored data that is logically above the mail + transport protocol level. For example, an SMTP-based + MTA should use the number of kilo-octets in the message + header and body, while an X.400-based MTA would use the + number of kilo-octets of P2 data." + ::= {mtaGroupEntry 7} + + mtaGroupTransmittedVolume OBJECT-TYPE + SYNTAX Counter32 + UNITS "K-octets" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total volume of messages transmitted by this group + since MTA initialization, measured in kilo-octets. This + volume should include all transferred data that is logically + above the mail transport protocol level. For example, an + SMTP-based MTA should use the number of kilo-octets in the + message header and body, while an X.400-based MTA should use + the number of kilo-octets of P2 data." + ::= {mtaGroupEntry 8} + + mtaGroupReceivedRecipients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of recipients specified in all messages + received to this group since MTA initialization. + Recipients this MTA had no responsibility for should not + be counted." + ::= {mtaGroupEntry 9} + + mtaGroupStoredRecipients OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of recipients specified in all messages + currently stored in this group's queue. Recipients this + MTA had no responsibility for should not be counted." + ::= {mtaGroupEntry 10} + + mtaGroupTransmittedRecipients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of recipients specified in all messages + transmitted by this group since MTA initialization. + Recipients this MTA had no responsibility for should not + be counted." + ::= {mtaGroupEntry 11} + + mtaGroupOldestMessageStored OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time since the oldest message in this group's queue was + placed in the queue." + ::= {mtaGroupEntry 12} + + mtaGroupInboundAssociations OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current associations to the group, where the + group is the responder." + ::= {mtaGroupEntry 13} + + mtaGroupOutboundAssociations OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current associations to the group, where the + group is the initiator." + ::= {mtaGroupEntry 14} + + mtaGroupAccumulatedInboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of associations to the group since MTA + initialization, where the group is the responder." + ::= {mtaGroupEntry 15} + + mtaGroupAccumulatedOutboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of associations from the group since MTA + initialization, where the group was the initiator." + ::= {mtaGroupEntry 16} + + mtaGroupLastInboundActivity OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time since the last time that this group had an active + inbound association for purposes of message reception." + ::= {mtaGroupEntry 17} + + mtaGroupLastOutboundActivity OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time since the last time that this group had an + outbound association for purposes of message delivery." + ::= {mtaGroupEntry 18} + + mtaGroupRejectedInboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of inbound associations the group has + rejected, since MTA initialization." + ::= {mtaGroupEntry 19} + + mtaGroupFailedOutboundAssociations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number associations where the group was the + initiator and association establishment has failed, + since MTA initialization." + ::= {mtaGroupEntry 20} + + mtaGroupInboundRejectionReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The failure reason, if any, for the last association this + group refused to respond to. An empty string indicates that + the last attempt was successful. If no association attempt + has been made since the MTA was initializaed the value + should be 'never'." + ::= {mtaGroupEntry 21} + + mtaGroupOutboundConnectFailureReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The failure reason, if any, for the last association attempt + this group initiated. An empty string indicates that the last + attempt was successful. If no association attempt has been + made since the MTA was initialized the value should be + 'never'." + ::= {mtaGroupEntry 22} + + mtaGroupScheduledRetry OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time when this group is scheduled to next attempt to + make an association." + ::= {mtaGroupEntry 23} + + mtaGroupMailProtocol OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An identification of the protocol being used by this group. + For an group employing OSI protocols, this will be the + Application Context. For Internet applications, the IANA + maintains a registry of the OIDs which correspond to well-known + message transfer protocols. If the application protocol is + not listed in the registry, an OID value of the form + {applTCPProtoID port} or {applUDProtoID port} are used for + TCP-based and UDP-based protocols, respectively. In either + case 'port' corresponds to the primary port number being + used by the group. applTCPProtoID and applUDPProtoID are + defined in [5]." + ::= {mtaGroupEntry 24} + + mtaGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A descriptive name for the group. If this group connects to + a single remote MTA this should be the name of that MTA. If + this in turn is an Internet MTA this should be the domain name. + For an OSI MTA it should be the string encoded distinguished + name of the managed object using the format defined in RFC-1485. + For X.400(1984) MTAs which do not have a Distinguished Name, + the RFC-1327 syntax 'mta in globalid' should be used." + ::= {mtaGroupEntry 25} + + mtaGroupAssociationTable OBJECT-TYPE + SYNTAX SEQUENCE OF MtaGroupAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table holding information regarding the associations + for each MTA group." + ::= {mta 3} + + mtaGroupAssociationEntry OBJECT-TYPE + SYNTAX MtaGroupAssociationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry holding information regarding the associations + for each MTA group." + INDEX {applIndex, mtaGroupIndex, mtaGroupAssociationIndex} + ::= {mtaGroupAssociationTable 1} + + MtaGroupAssociationEntry ::= SEQUENCE { + mtaGroupAssociationIndex + INTEGER + } + + mtaGroupAssociationIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reference into association table to allow correlation of + this group's active associations with the association table." + ::= {mtaGroupAssociationEntry 1} + + -- Conformance information + + mtaConformance OBJECT IDENTIFIER ::= {mta 4} + + mtaGroups OBJECT IDENTIFIER ::= {mtaConformance 1} + mtaCompliances OBJECT IDENTIFIER ::= {mtaConformance 2} + + + -- Compliance statements + + mtaCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement the Mail Monitoring MIB for basic + monitoring of MTAs." + MODULE -- this module + MANDATORY-GROUPS {mtaGroup} + ::= {mtaCompliances 1} + + + mtaAssocCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement the Mail Monitoring MIB for monitoring of + MTAs and their associations." + MODULE -- this module + MANDATORY-GROUPS {mtaGroup, mtaAssocGroup} + ::= {mtaCompliances 2} + + -- Units of conformance + + mtaGroup OBJECT-GROUP + OBJECTS { + mtaReceivedMessages, mtaStoredMessages, + mtaTransmittedMessages, mtaReceivedVolume, mtaStoredVolume, + mtaTransmittedVolume, mtaReceivedRecipients, + mtaStoredRecipients, mtaTransmittedRecipients, + mtaGroupReceivedMessages, mtaGroupRejectedMessages, + mtaGroupStoredMessages, mtaGroupTransmittedMessages, + mtaGroupReceivedVolume, mtaGroupStoredVolume, + mtaGroupTransmittedVolume, mtaGroupReceivedRecipients, + mtaGroupStoredRecipients, mtaGroupTransmittedRecipients, + mtaGroupOldestMessageStored, mtaGroupInboundAssociations, + mtaGroupOutboundAssociations, + mtaGroupAccumulatedInboundAssociations, + mtaGroupAccumulatedOutboundAssociations, + mtaGroupLastInboundActivity, mtaGroupLastOutboundActivity, + mtaGroupRejectedInboundAssociations, + mtaGroupFailedOutboundAssociations, + mtaGroupInboundRejectionReason, + mtaGroupOutboundConnectFailureReason, + mtaGroupScheduledRetry, mtaGroupMailProtocol, mtaGroupName} + STATUS current + DESCRIPTION + "A collection of objects providing basic monitoring of MTAs." + ::= {mtaGroups 1} + + mtaAssocGroup OBJECT-GROUP + OBJECTS { + mtaGroupAssociationIndex} + STATUS current + DESCRIPTION + "A collection of objects providing monitoring of MTA + associations." + ::= {mtaGroups 2} + + END diff --git a/pandora_console/attachment/mibs/NETAPP-MIB b/pandora_console/attachment/mibs/NETAPP-MIB new file mode 100644 index 0000000000..0ab82784e5 --- /dev/null +++ b/pandora_console/attachment/mibs/NETAPP-MIB @@ -0,0 +1,27966 @@ + -- ======================================================== -- + -- NetApp Custom MIB -- + -- -- + -- This MIB contains only information specific to -- + -- NetApp products. Other supported mibs are -- + -- not included in this file. -- + -- ======================================================= -- + + -- Version 2.0.3, November 2009 (See NOTE below) + + -- Copyright (c) 1995-2008 NetApp, Inc. + -- All rights reserved. + + -- This NetApp SNMP Management Information Base + -- (Specification) embodies NetApp's confidential + -- and proprietary intellectual property. NetApp + -- retains all title and ownership in the Specification, + -- including any revisions. + + -- This Specification is supplied "AS IS," and NetApp + -- makes no warranty, either express or implied, as to the use, + -- operation, condition, or performance of the Specification. + + -- NOTE: Please maintain the format of the line above + -- containing the MIB's version number as: + -- + -- Version , (See NOTE below) + -- + -- This line is parsed during the release process + -- to extract the version of the MIB. + -- Keep the MODULE-IDENTITY in sync with the Version Date. + -- + + -- ======================================================= -- + -- List of modifications for upgrade to SMIv2 (RFC2578): + -- + -- Standardized capitalization for grmMonitor + -- subtyping not allowed in SEQUENCE + -- hyphens not allowed in value types. + -- Changed dmpSubtreeEntry to dmpEntry + -- Removed lastdump and placed entries in dmpEntry + -- Removed lastsuccess and placed entries in dmpEntry + -- Renamed initiatorListMemberEntry to initiatorListEntry + -- Moved enclTempSensorsCurrentTemp to correct location in enclEntry + -- Add enclSASConn... to enclEntry + -- Added Counter64 support + -- Renamed the following netcache OIDS: + -- ncStreamingOndemandBytesToClients to ncStreamingOBTClients + -- ncStreamingOndemandBytesFromClients to ncStreamingOBFClients + -- ncStreamingOndemandBytesToServers to ncStreamingOBTServers + -- ncStreamingOndemandBytesFromServers to ncStreamingOBFServers + -- ncStreamingQuickTimeBytesToClients to ncStreamingQTBTClients + -- ncStreamingQuickTimeBytesFromClients to ncStreamingQTBFClients + -- ncStreamingQuickTimeBytesToServers to ncStreamingQTBTServers + -- ncStreamingQuickTimeBytesFromServers to ncStreamingQTBFServers + -- ncStreamingRtspWMBytesFromClients to ncStreamingRtspWMBFClients + -- ncStreamingRtspWMBytesFromServers to ncStreamingRtspWMBFServers + + -- Conform to RFC3584 "Coexistence between V1, V2, and V3 of + -- the Internet-standard Network Management Framework + -- 2.1.1. Required changes + -- 1 - IMPORTS statement must reference SNMPv2-SMI + -- 2 - The MODULE-IDENTITY macro must be invoked. + -- 3 - SYNTAX Counter32 replaces Counter + -- 4 - SYNTAX Gauge32 replaces Gauge + -- 5 - MAX-ACCESS replaces ACCESS + -- 6 - STATUS current replaces STATUS mandatory + -- STATUS current replaces STATUS optional + -- 2.1.1 - Desirable changes + -- 2 - Integer32 replaces INTEGER in places that don't have ranges + -- 2.1.2 - Trap and Notification Definitions + -- 1 - IMPORTS must reference SMIv2-SMI + -- 2 - ENTERPRISE is removed + -- 3 - VARIABLES clause must be renamed to OBJECTS clause + -- 4 - STATUS clause must be added + + -- Add enclXXXpart + -- ======================================================= -- + + NETAPP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + enterprises, Counter32, IpAddress, TimeTicks, Gauge32, + NOTIFICATION-TYPE, MODULE-IDENTITY, snmpModules, + OBJECT-TYPE, Counter64, Integer32 + FROM SNMPv2-SMI + PhysAddress, DisplayString + FROM RFC1213-MIB; + + -- MIB-II (same prefix as MIB-I) + + netappModuleId MODULE-IDENTITY + LAST-UPDATED "200911010000Z" + ORGANIZATION "NetApp" + CONTACT-INFO "www.netapp.com" + DESCRIPTION "The mib module for netapp SNMPv2 entities" + + ::= { snmpModules 789 } + + -- the NetApp MIB + + -- NetApp conventions + + netapp OBJECT IDENTIFIER ::= { enterprises 789 } + + -- the current netapp mib + + netapp1 OBJECT IDENTIFIER ::= { netapp 1 } + + -- + -- This is the tree under which values for the sysObjectID + -- are allocated. + -- + + netappProducts OBJECT IDENTIFIER ::= { netapp 2 } + + -- + -- This is the tree under which values for the DataFabric Manager + -- are allocated. Those values are defined in separate mib file, + -- distributed with DataFabric Manager product. + -- + + netappDataFabricManager OBJECT IDENTIFIER ::= { netapp 3 } + + -- + -- This is the tree under which values for the NetApp Support Console + -- are allocated. Those values are defined in separate mib file, + -- distributed with the Support Console + -- + + netappSupportConsole OBJECT IDENTIFIER ::= { netapp 4 } + + -- + -- We distinguish between filers and NetCaches. + -- + + netappFiler OBJECT IDENTIFIER ::= { netappProducts 1 } + netappNetCache OBJECT IDENTIFIER ::= { netappProducts 2 } + netappClusteredFiler OBJECT IDENTIFIER ::= { netappProducts 3 } + netappNode OBJECT IDENTIFIER ::= { netappProducts 4 } + + -- top-level netapp groups + + product OBJECT IDENTIFIER ::= { netapp1 1 } + + sysStat OBJECT IDENTIFIER ::= { netapp1 2 } + + nfs OBJECT IDENTIFIER ::= { netapp1 3 } + + quota OBJECT IDENTIFIER ::= { netapp1 4 } + + filesys OBJECT IDENTIFIER ::= { netapp1 5 } + + raid OBJECT IDENTIFIER ::= { netapp1 6 } + + cifs OBJECT IDENTIFIER ::= { netapp1 7 } + + netcache OBJECT IDENTIFIER ::= { netapp1 8 } + + snapmirror OBJECT IDENTIFIER ::= { netapp1 9 } + + ndmp OBJECT IDENTIFIER ::= { netapp1 10 } + + fabric OBJECT IDENTIFIER ::= { netapp1 11 } + + dafs OBJECT IDENTIFIER ::= { netapp1 12 } + + vi OBJECT IDENTIFIER ::= { netapp1 13 } + + backup OBJECT IDENTIFIER ::= { netapp1 14 } + + vfiler OBJECT IDENTIFIER ::= { netapp1 16 } + + blocks OBJECT IDENTIFIER ::= { netapp1 17 } + + nfscache OBJECT IDENTIFIER ::= { netapp1 18 } + + snapvault OBJECT IDENTIFIER ::= { netapp1 19 } + + ftpd OBJECT IDENTIFIER ::= { netapp1 20 } + + storage OBJECT IDENTIFIER ::= { netapp1 21 } + + network OBJECT IDENTIFIER ::= { netapp1 22 } + + sis OBJECT IDENTIFIER ::= { netapp1 23 } + + compress OBJECT IDENTIFIER ::= { netapp1 24 } + + extcache OBJECT IDENTIFIER ::= { netapp1 26 } + + + -- -- -- -- -- -- -- -- + -- the product group -- + -- -- -- -- -- -- -- -- + + productType OBJECT-TYPE + SYNTAX INTEGER { + eisaBased(1), + pciBased(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product type representing the target platform." + ::= { product 1 } + + productVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version String for the Software Running on + this platform." + ::= { product 2 } + + productId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The System ID of this system." + ::= { product 3 } + + productVendor OBJECT-TYPE + SYNTAX INTEGER { + netapp(1), + dell(2), + ibm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor id of this system, indicating the company + that has supplied the product." + ::= { product 4 } + + productModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model name of the system. Examples + are FAS980 and FAS3050." + ::= { product 5 } + + productFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version string for the Firmware running on + this platform." + ::= { product 6 } + + productGuiUrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete URL used to access the administrative GUI + for a browser-based interface." + ::= { product 7 } + + productApiUrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete URL used to access the administrative API + for a programmatic interface." + ::= { product 8 } + + productSerialNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product serial number. Returns unknown if it + cannot be determined." + ::= { product 9 } + + productPartnerSerialNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The partner's serial number, not applicable + if there is no partner, and unknown if it + cannot be determined." + ::= { product 10 } + + productCPUArch OBJECT-TYPE + SYNTAX INTEGER { + x86(1), + alpha(2), + mips(3), + sparc(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU architecture type of this appliance" + + + + ::= { product 11 } + + productTrapData OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This returns a static string. This object is used + as a placeholder for enterprise traps." + ::= { product 12 } + + productMachineType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The machine type of the system. Examples + are FAS980 and FAS3050." + ::= { product 13 } + + productLicenseTable OBJECT-TYPE + SYNTAX SEQUENCE OF ProductLicenseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Returns information about the current list of + licensed services, the type of license, and, + if it is a time limited license, the expiration date. + It also tells the services that are not licensed for + the appliance, or if a time limited licensed service + has expired." + ::= { product 14 } + + productLicenseEntry OBJECT-TYPE + SYNTAX ProductLicenseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of licenses." + INDEX { productLicenseIndex } + ::= { productLicenseTable 1 } + + ProductLicenseEntry ::= + SEQUENCE { + productLicenseIndex + Integer32, + licenseService + DisplayString, + licenseIsLicensed + Integer32, + licenseIsExpired + Integer32, + licenseIsSite + Integer32, + licenseExpirationTimeStamp + Integer32 + } + + productLicenseIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the product license table." + + ::= { productLicenseEntry 1 } + + licenseService OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the service." + + ::= { productLicenseEntry 2 } + + licenseIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if the service is licensed and has not + expired, false otherwise." + + ::= { productLicenseEntry 3 } + + licenseIsExpired OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if the promotional/time-expiring/demo license + has expired, false otherwise." + + ::= { productLicenseEntry 4 } + + licenseIsSite OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if the service is a site license, false + otherwise." + + ::= { productLicenseEntry 5 } + + licenseExpirationTimeStamp OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Expected expiration timestamp in seconds since + January 1, 1970, if it's a promotional/time-expiring + license. 0 for all other licenses." + + ::= { productLicenseEntry 6 } + + -- -- -- -- -- -- -- -- + -- the sysStat group -- + -- -- -- -- -- -- -- -- + + cpu OBJECT IDENTIFIER ::= { sysStat 1 } + + misc OBJECT IDENTIFIER ::= { sysStat 2 } + + cf OBJECT IDENTIFIER ::= { sysStat 3 } + + environment OBJECT IDENTIFIER ::= { sysStat 4 } + + nvram OBJECT IDENTIFIER ::= { sysStat 5 } + + cp OBJECT IDENTIFIER ::= { sysStat 6 } + + autosupport OBJECT IDENTIFIER ::= { sysStat 7 } + + + -- the cpu group for sysStat + + cpuUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) that the + CPU has been up since the last boot." + ::= { cpu 1 } + + cpuBusyTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) that the + CPU has been doing useful work since the last + boot." + ::= { cpu 2 } + + cpuBusyTimePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percent of time that the CPU has been doing + useful work since the last time a client requested + the cpuBusyTimePerCent." + ::= { cpu 3 } + + cpuIdleTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) that the + CPU has been idle since the last boot." + ::= { cpu 4 } + + cpuIdleTimePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percent of time that the CPU has been idle + since the last time a client requested the + cpuBusyTimePerCent." + ::= { cpu 5 } + + cpuCount OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CPUs in the system." + + ::= { cpu 6 } + + cpuSwitchInvocations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of sk_switch invocations." + ::= { cpu 7 } + + cpuContextSwitches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of hardware context switches." + ::= { cpu 8 } + + cpuInterrupts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interrupts during a CP." + ::= { cpu 9 } + + + cpuNonCPInterrupts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interrupts not during a CP." + ::= { cpu 10 } + + cpuCPInterruptPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The percentage of time handling CP interrupts." + ::= { cpu 11 } + + cpuNonCPInterruptPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The percentage of time handling non-cp interrupts." + ::= { cpu 12 } + + cpuTotalDomainSwitches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Domain Switches." + ::= { cpu 13 } + + -- the misc group for sysStat + + miscNfsOps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of Server side NFS calls since + the last boot" + ::= { misc 1 } + + miscNetRcvdKB OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of KBytes received on all the + network interfaces, since the last boot." + ::= { misc 2 } + + miscNetSentKB OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of KBytes transmitted on all the + network interfaces, since the last boot." + ::= { misc 3 } + + miscGlobalStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + ok(3), + nonCritical(4), + critical(5), + nonRecoverable(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates the overall status of the appliance. + The algorithm to determine the value uses both + hardware status (e.g. the number of failed fans) and + volume status (e.g. number of volumes that are full). + The algorithm is subject to change in future releases, + but the range of values will not change." + ::= { misc 4 } + + miscHighNfsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side NFS calls since + the last boot. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 5 } + + miscLowNfsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side NFS calls since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + + ::= { misc 6 } + + miscHighCifsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side CIFS calls since + the last boot. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 7 } + + miscLowCifsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side CIFS calls since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + + ::= { misc 8 } + + miscHighHttpOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of HTTP operations received + since the last boot. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 9 } + + miscLowHttpOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of HTTP operations received + since the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + + ::= { misc 10 } + + + miscHighNetRcvdBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received on all the + network interfaces, since the last boot. This + object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 11 } + + miscLowNetRcvdBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received on all the + network interfaces, since the last boot. This + object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 12 } + + miscHighNetSentBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes transmitted on all the + network interfaces, since the last boot. This + object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 13 } + + miscLowNetSentBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes transmitted on all the + network interfaces, since the last boot. This + object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 14 } + + miscHighDiskReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from disk + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 15 } + + miscLowDiskReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from disk since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 16 } + + + miscHighDiskWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to disk + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 17 } + + miscLowDiskWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to disk since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 18 } + + miscHighTapeReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from tape + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 19 } + + miscLowTapeReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from tape since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 20 } + + miscHighTapeWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to tape + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 21 } + + miscLowTapeWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to tape since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 22 } + + miscCacheAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Age in minutes of the oldest read-only blocks + in the buffer cache. This indicates how fast + read operations are cycling through system + memory; when the appliance is reading very + large files (larger than the machine's memory + size), buffer cache age will be very low." + ::= { misc 23 } + + miscCorrectedMachineChecks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of corrected machine checks since + the last boot." + + ::= { misc 24 } + + miscGlobalStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the global status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(3)." + ::= { misc 25 } + + miscWindowsSetupWizardVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version number of Windows Setup Wizard + required to configure the appliance. Windows + Setup Wizard with a version number lower than + this integer is not capable of configuring the + appliance." + ::= { misc 26 } + + misc64NfsOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side NFS calls since + the last boot. This object returns all of the + 64 bit unsigned integer." + ::= { misc 27 } + + misc64CifsOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side CIFS calls since + the last boot. This object returns all of the + 64 bit unsigned integer." + ::= { misc 28 } + + misc64HttpOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of HTTP operations received + since the last boot. This object returns all of + the 64 bit unsigned integer." + ::= { misc 29 } + + misc64NetRcvdBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received on all the + network interfaces, since the last boot. This + object returns all of the 64 bit unsigned integer." + ::= { misc 30 } + + misc64NetSentBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes transmitted on all the + network interfaces, since the last boot. This + object returns all of the 64 bit unsigned integer." + ::= { misc 31 } + + misc64DiskReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from disk + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 32 } + + misc64DiskWriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to disk + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 33 } + + misc64TapeReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from tape + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 34 } + + misc64TapeWriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to tape + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 35 } + + -- the Clustered Failover group + + cfSettings OBJECT-TYPE + SYNTAX INTEGER { + notConfigured(1), + enabled(2), + disabled(3), + takeoverByPartnerDisabled(4), + thisNodeDead(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Clustered Failover configuration settings. + The value notConfigured(1) indicates that the + cluster is not licensed. The thisNodeDead(5) + setting indicates that this node has been + taken over." + ::= { cf 1 } + + cfState OBJECT-TYPE + SYNTAX INTEGER { + dead(1), + canTakeover(2), + cannotTakeover(3), + takeover(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Clustered Failover state." + ::= { cf 2 } + + cfCannotTakeoverCause OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + unknownReason(2), + disabledByOperator(3), + interconnectOffline(4), + disabledByPartner(5), + takeoverFailed(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason this node cannot takeover its + partner" + ::= { cf 3 } + + cfPartnerStatus OBJECT-TYPE + SYNTAX INTEGER { + maybeDown(1), + ok(2), + dead(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the status last returned by the + Clustered Failover partner." + ::= { cf 4 } + + cfPartnerLastStatusUpdate OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If non-zero, the absolute time of the last + update from the Clustered Failover partner." + ::= { cf 5 } + + cfPartnerName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hostname for Clustered Failover partner." + ::= { cf 6 } + + cfPartnerSysid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System ID for Clustered Failover partner." + ::= { cf 7 } + + cfInterconnectStatus OBJECT-TYPE + SYNTAX INTEGER { + notPresent(1), + down(2), + partialFailure(3), + up(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the interconnect. + The partialFailure(3) status indicates that + one of the links in the interconnect hardware + is down." + ::= { cf 8 } + + -- the environment group for sysStat + + envOverTemperature OBJECT-TYPE + SYNTAX INTEGER { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of whether the hardware is + currently operating outside of its recommended + temperature range. The hardware will shutdown + if the temperature exceeds critical thresholds." + + ::= { environment 1 } + + envFailedFanCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of chassis fans which + are not operating within the recommended + RPM range." + + ::= { environment 2 } + + envFailedFanMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Text message describing the current condition of + chassis fans. This is useful only if + envFailedFanCount is not zero." + + ::= { environment 3 } + + + envFailedPowerSupplyCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of power supplies which + are in degraded mode." + + ::= { environment 4 } + + envFailedPowerSupplyMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Text message describing the state of any + power supplies which are currently degraded. + This is useful only if envFailedPowerSupplyCount + is not zero." + + ::= { environment 5 } + + -- -- -- -- -- -- -- + -- the nvram group for sysStat + + nvramBatteryStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + partiallyDischarged(2), + fullyDischarged(3), + notPresent(4), + nearEndOfLife(5), + atEndOfLife(6), + unknown(7), + overCharged(8), + fullyCharged(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the current status of the + NVRAM battery or batteries. Batteries which + are fully or partially discharged may not + fully protect the system during a crash. + + The end-of-life status values are based on + the manufacturer's recommended life for the + batteries." + + ::= { nvram 1 } + + -- -- -- -- -- -- -- + -- the cp group for sysStat + + cpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) since boot + during which the system has had a consistency point + (cp) operation in progress." + ::= { cp 1 } + + cpFromTimerOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by timer." + ::= { cp 2 } + + cpFromSnapshotOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by snapshot operation." + ::= { cp 3 } + + cpFromLowWaterOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by low water mark." + ::= { cp 4 } + + cpFromHighWaterOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by high water mark." + ::= { cp 5 } + + cpFromLogFullOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by nv-log full." + ::= { cp 6 } + + cpFromCpOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of back to back consistency point + operations since boot." + ::= { cp 7 } + + cpTotalOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of consistency point operations + since boot." + ::= { cp 8 } + + cpFromFlushOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by flushing unlogged write data." + ::= { cp 9 } + + cpFromSyncOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by file system sync requests." + ::= { cp 10 } + + cpFromLowVbufOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by low virtual buffers." + ::= { cp 11 } + + cpFromCpDeferredOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of back to back consistency point + operations since boot that were deferred." + ::= { cp 12 } + + cpFromLowDatavecsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by low datavecs." + ::= { cp 13 } + + -- -- -- -- -- -- -- + -- the autosupport group for sysStat + + autosupportStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + smtpFailure(2), + postFailure(3), + smtpPostFailure(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the current status of + autosupport on the appliance. describes + the success or failure of most recent + attempts to send autosupports." + + ::= { autosupport 1 } + + autosupportStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the autosupport status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(1)." + + ::= { autosupport 2 } + + autosupportSuccessfulSends OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of autosupport messages + successfully sent since the last reset." + + ::= { autosupport 3 } + + autosupportFailedSends OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of autosupport messages + not sent successfully since the last reset." + + ::= { autosupport 4 } + + + -- -- -- -- -- -- -- + -- the NFS group -- + -- -- -- -- -- -- -- + + curNfs OBJECT IDENTIFIER ::= { nfs 1 } + + totNfs OBJECT IDENTIFIER ::= { nfs 2 } + + nfsOptions OBJECT IDENTIFIER ::= { nfs 3 } + + + -- the curNfs group + + -- this group contains NFS statistics since the last + -- time the statistics were cleared + + rpcServ OBJECT IDENTIFIER ::= { curNfs 1 } + + nfsServ OBJECT IDENTIFIER ::= { curNfs 2 } + + nfsPerClient OBJECT IDENTIFIER ::= { curNfs 3 } + + + + -- the rpcServ group + + rpcCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received, since + the last time the statistics were cleared." + ::= { rpcServ 1 } + + rpcBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer, since the last time the statistics were + cleared." + ::= { rpcServ 2 } + + rpcNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call was not available + when it was thought to be received, since the + last time the statistics were cleared." + ::= { rpcServ 3 } + + rpcBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received with a length + shorter than a minimum-sized RPC call, since the + last time the statistics were cleared." + ::= { rpcServ 4 } + + rpcServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received whose header + could not be XDR decoded, since the last time + the statistics were cleared." + ::= { rpcServ 5 } + + rcpTcpCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received for the + TCP protocol, since the last time the statistics + were cleared." + ::= { rpcServ 6 } + + rcpTcpBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer for the TCP protocol, since the last + time the statistics were cleared." + ::= { rpcServ 7 } + + rcpTcpNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call for the TCP + protocol was not available when it was thought + to be received, since the last time the + statistics were cleared." + ::= { rpcServ 8 } + + rcpTcpBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the TCP protocol + received with a length shorter than a minimum-sized + RPC call, since the last time the statistics + were cleared." + ::= { rpcServ 9 } + + rcpTcpServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the TCP protocol + received whose header could not be XDR decoded, + since the last time the statistics were cleared." + ::= { rpcServ 10 } + + rpcUdpCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received for the + UDP protocol, since the last time the statistics + were cleared." + ::= { rpcServ 11 } + + rpcUdpBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer for the UDP protocol, since the last + time the statistics were cleared." + ::= { rpcServ 12 } + + rpcUdpNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call for the UDP + protocol was not available when it was thought + to be received, since the last time the + statistics were cleared." + ::= { rpcServ 13 } + + rpcUdpBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the UDP protocol + received with a length shorter than a minimum-sized + RPC call, since the last time the statistics + were cleared." + ::= { rpcServ 14 } + + rpcUdpServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the UDP protocol + received whose header could not be XDR decoded, + since the last time the statistics were cleared." + ::= { rpcServ 15 } + + + -- the nfsServ group + + nfsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received, since + the last time the statistics were cleared." + ::= { nfsServ 1 } + + nfsServBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received NFS calls rejected, + since the last time the statistics were cleared." + ::= { nfsServ 2 } + + nfsV2 OBJECT IDENTIFIER ::= { nfsServ 3 } + + nfsV3 OBJECT IDENTIFIER ::= { nfsServ 4 } + + replyCache OBJECT IDENTIFIER ::= { nfsServ 5 } + + nfsrwStats OBJECT IDENTIFIER ::= { nfsServ 6 } + + + -- the nfsV2 group + + -- this group contains statistics for NFS + -- Version 2 calls processed since the last + -- time the statistics were cleared + + v2Calls OBJECT IDENTIFIER ::= { nfsV2 1 } + + v2Percent OBJECT IDENTIFIER ::= { nfsV2 2 } + + v2CachedCalls OBJECT IDENTIFIER ::= { nfsV2 3 } + + v2CachedPerCent OBJECT IDENTIFIER ::= { nfsV2 4 } + + + + -- the v2Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure + -- since the last time the statistics were cleared + + v2cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + since the last time the statistics were cleared." + ::= { v2Calls 1 } + + v2cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 2 } + + v2cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 3 } + + v2cRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 4 } + + v2cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 5 } + + v2cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, since the last time the + statistics were cleared." + ::= { v2Calls 6 } + + v2cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 7 } + + v2cWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 8 } + + v2cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 9 } + + v2cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 10 } + + v2cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 11 } + + v2cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 12 } + + v2cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 13 } + + v2cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 14 } + + v2cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 15 } + + v2cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 16 } + + v2cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 17 } + + v2cStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, since the last time + the statistics were cleared." + ::= { v2Calls 18 } + + + + -- the v2Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- as a percentage of total NFS calls received, + -- since the last time the statistics were cleared + + v2pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure + as a percentage of total NFS calls received, + since the last time the statistics were cleared." + ::= { v2Percent 1 } + + v2pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 2 } + + v2pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 3 } + + v2pRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 4 } + + v2pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 5 } + + v2pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure as a percentage of total NFS + calls received, since the last time the + statistics were cleared." + ::= { v2Percent 6 } + + v2pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 7 } + + v2pWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 8 } + + v2pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 9 } + + v2pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 10 } + + v2pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 11 } + + v2pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 12 } + + v2pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 13 } + + v2pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 14 } + + v2pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 15 } + + v2pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 16 } + + v2pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 17 } + + v2pStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure as a percentage of + total NFS calls received, since the last + time the statistics were cleared." + ::= { v2Percent 18 } + + + + -- the v2CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last time the statistics + -- were cleared + + v2ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v2CachedCalls 1 } + + v2ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 2 } + + v2ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 3 } + + v2ccRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 4 } + + v2ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 5 } + + v2ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 6 } + + v2ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 7 } + + v2ccWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 8 } + + v2ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 9 } + + v2ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 10 } + + v2ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 11 } + + v2ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 12 } + + v2ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 13 } + + v2ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 14 } + + v2ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 15 } + + v2ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 16 } + + v2ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 17 } + + v2ccStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from disk, + since the last time the statistics were cleared." + ::= { v2CachedCalls 18 } + + + + -- the v2CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last time the statistics were cleared + + v2cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v2CachedPerCent 1 } + + v2cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 2 } + + v2cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 3 } + + v2cpRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 4 } + + v2cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 5 } + + v2cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 6 } + + v2cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 7 } + + v2cpWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 8 } + + v2cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 9 } + + v2cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 10 } + + v2cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 11 } + + v2cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 12 } + + v2cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 13 } + + v2cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 14 } + + v2cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 15 } + + v2cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 16 } + + v2cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 17 } + + v2cpStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from + disk, as a percentage of the total number + of calls received for this procedure, since + the last time the statistics were cleared." + ::= { v2CachedPerCent 18 } + + + + -- the nfsV3 group + + -- this group contains statistics for NFS + -- Version 3 calls processed since the last + -- time the statistics were cleared + + v3Calls OBJECT IDENTIFIER ::= { nfsV3 1 } + + v3Percent OBJECT IDENTIFIER ::= { nfsV3 2 } + + v3CachedCalls OBJECT IDENTIFIER ::= { nfsV3 3 } + + v3CachedPerCent OBJECT IDENTIFIER ::= { nfsV3 4 } + + + + -- the v3Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure + -- since the last time the statistics were cleared + + v3cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + since the last time the statistics were cleared." + ::= { v3Calls 1 } + + v3cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 2 } + + v3cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 3 } + + v3cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 4 } + + v3cAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 5 } + + v3cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 6 } + + v3cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 7 } + + v3cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 8 } + + v3cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 9 } + + v3cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 10 } + + v3cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 11 } + + v3cMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 12 } + + v3cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 13 } + + v3cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 14 } + + v3cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, since the last time + the statistics were cleared." + ::= { v3Calls 15 } + + v3cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 16 } + + v3cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 17 } + + v3cReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, since the last + time the statistics were cleared." + ::= { v3Calls 18 } + + v3cFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, since the + last time the statistics were cleared." + ::= { v3Calls 19 } + + v3cFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, since the last time + the statistics were cleared." + ::= { v3Calls 20 } + + v3cPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, since the last time + the statistics were cleared." + ::= { v3Calls 21 } + + v3cCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, since + the last time the statistics were cleared." + ::= { v3Calls 22 } + + + + -- the v3Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- as a percentage of total NFS calls received, + -- since the last time the statistics were cleared + + v3pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + as a percentage of the total NFS calls + received, since the last time the statistics + were cleared." + ::= { v3Percent 1 } + + v3pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 2 } + + v3pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 3 } + + v3pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 4 } + + v3pAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access + Permission) procedure, as a percentage of + the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 5 } + + v3pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last time the + statistics were cleared." + ::= { v3Percent 6 } + + v3pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 7 } + + v3pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 8 } + + v3pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 9 } + + v3pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 10 } + + v3pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last time the + statistics were cleared." + ::= { v3Percent 11 } + + v3pMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, as a percentage of the + total NFS calls received, since the last + time the statistics were cleared." + ::= { v3Percent 12 } + + v3pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 13 } + + v3pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 14 } + + v3pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, as a percentage of + the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 15 } + + v3pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, as a percentage of + the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 16 } + + v3pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 17 } + + v3pReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, as a percentage + of the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 18 } + + v3pFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, as a percentage + of the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 19 } + + v3pFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, as a percentage of the + total NFS calls received, since the last time + the statistics were cleared." + ::= { v3Percent 20 } + + v3pPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, as a percentage of the + total NFS calls received, since the last time + the statistics were cleared." + ::= { v3Percent 21 } + + v3pCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, as a + percentage of the total NFS calls received, + since the last time the statistics were cleared." + ::= { v3Percent 22 } + + + + -- the v3CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last time the statistics + -- were cleared + + v3ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 1 } + + v3ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 2 } + + v3ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 3 } + + v3ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 4 } + + v3ccAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 5 } + + v3ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 6 } + + v3ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 7 } + + v3ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 8 } + + v3ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 9 } + + v3ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 10 } + + v3ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 11 } + + v3ccMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 12 } + + v3ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 13 } + + v3ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 14 } + + v3ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 15 } + + v3ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 16 } + + v3ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From + Directory) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 17 } + + v3ccReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 18 } + + v3ccFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last time the statistics + were cleared." + ::= { v3CachedCalls 19 } + + v3ccFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last time the statistics + were cleared." + ::= { v3CachedCalls 20 } + + v3ccPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + since the last time the statistics were cleared." + ::= { v3CachedCalls 21 } + + v3ccCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that did + not result in the filesystem blocking to read + from disk, since the last time the statistics + were cleared." + ::= { v3CachedCalls 22 } + + + + -- the v3CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last time the statistics were cleared + + v3cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 1 } + + v3cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 2 } + + v3cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 3 } + + v3cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 4 } + + v3cpAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 5 } + + v3cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 6 } + + v3cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 7 } + + v3cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 8 } + + v3cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 9 } + + v3cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 10 } + + v3cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 11 } + + v3cpMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 12 } + + v3cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 13 } + + v3cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 14 } + + v3cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 15 } + + v3cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 16 } + + v3cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 17 } + + v3cpReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 18 } + + v3cpFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read from + disk, as a percentage of the total number of + calls received for this procedure, since the + last time the statistics were cleared." + ::= { v3CachedPerCent 19 } + + v3cpFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 20 } + + v3cpPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 21 } + + v3cpCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that + did not result in the filesystem blocking to + read from disk, as a percentage of the total + number of calls received for this procedure, + since the last time the statistics were cleared." + ::= { v3CachedPerCent 22 } + + + + -- the replyCache group + + -- this group contains statistics related to the + -- Reply Cache processing, since the last time the + -- statistics were cleared + + rcInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped, + for calls already in progress, since the last + time the statistics were cleared." + ::= { replyCache 1 } + + rcDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped, + for replies already generated within a short + interval, since the last time the statistics + were cleared. These stats are deprecated. + A value of zero will always be returned + for these stats." + ::= { replyCache 2 } + + rcMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for which + there were no corresponding entries already in + the Reply Cache, since the last time the + statistics were cleared." + ::= { replyCache 3 } + + rcNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received that + resulted in replies being replayed from + the Reply Cache, since the last time the + statistics were cleared." + ::= { replyCache 4 } + + rcNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for calls + that resulted in this request being processed + as a new request even when a corresponding + entry existed in the Reply Cache, since the + last time the statistics were cleared." + ::= { replyCache 5 } + + rcTcpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for calls already in + progress, since the last time the statistics + were cleared." + ::= { replyCache 6 } + + rcTcpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for replies already + generated within a short interval, since the + last time the statistics were cleared. These + stats are deprecated. A value of zero will + always be returned for these stats." + ::= { replyCache 7 } + + rcTcpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for which there were no + corresponding entries already in the Reply + Cache, since the last time the statistics + were cleared." + ::= { replyCache 8 } + + rcTcpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol that resulted in replies being + replayed from the Reply Cache, since the last + time the statistics were cleared." + ::= { replyCache 9 } + + rcTcpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last time the statistics were + cleared." + ::= { replyCache 10 } + + rcUdpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for calls already in + progress, since the last time the statistics + were cleared." + ::= { replyCache 11 } + + rcUdpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for replies already + generated within a short interval, since the + last time the statistics were cleared. These + stats are deprecated. A value of zero will + always be returned for these stats." + ::= { replyCache 12 } + + rcUdpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for which there were no + corresponding entries already in the Reply + Cache, since the last time the statistics + were cleared." + ::= { replyCache 13 } + + rcUdpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol that resulted in replies being + replayed from the Reply Cache, since the last + time the statistics were cleared." + ::= { replyCache 14 } + + rcUdpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last time the statistics were + cleared." + ::= { replyCache 15 } + + -- the nfsrwStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 and 3 read and write calls made + -- since the last time the stats were zeroed. + + v2ReadStats OBJECT IDENTIFIER ::= { nfsrwStats 1 } + + v2WriteStats OBJECT IDENTIFIER ::= { nfsrwStats 2 } + + v3ReadStats OBJECT IDENTIFIER ::= { nfsrwStats 3 } + + v3WriteStats OBJECT IDENTIFIER ::= { nfsrwStats 4 } + + + -- v2ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 read calls since they were last + -- zeroed. + + v2Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 0-511 bytes." + ::= { v2ReadStats 1 } + + v2Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v2ReadStats 2 } + + v2Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v2ReadStats 3 } + + v2Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v2ReadStats 4 } + + v2Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v2ReadStats 5 } + + v2Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v2ReadStats 6 } + + v2Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v2ReadStats 7 } + + v2Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v2ReadStats 8 } + + v2Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v2ReadStats 9 } + + + -- the v2WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 write calls since they were last + -- zeroed. + + v2Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 0-511 bytes." + ::= { v2WriteStats 1 } + + v2Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v2WriteStats 2 } + + v2Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v2WriteStats 3 } + + v2Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v2WriteStats 4 } + + v2Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v2WriteStats 5 } + + v2Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v2WriteStats 6 } + + v2Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v2WriteStats 7 } + + v2Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v2WriteStats 8 } + + v2Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v2WriteStats 9 } + + + -- the v3ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 read calls since they were last + -- zeroed. + + v3Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { v3ReadStats 1 } + + v3Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v3ReadStats 2 } + + v3Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v3ReadStats 3 } + + v3Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v3ReadStats 4 } + + v3Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v3ReadStats 5 } + + v3Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v3ReadStats 6 } + + v3Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v3ReadStats 7 } + + v3Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v3ReadStats 8 } + + v3Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v3ReadStats 9 } + + + -- the v3WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 write calls since they were last + -- zeroed. + + v3Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 0-511 bytes." + ::= { v3WriteStats 1 } + + v3Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v3WriteStats 2 } + + v3Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v3WriteStats 3 } + + v3Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v3WriteStats 4 } + + v3Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v3WriteStats 5 } + + v3Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v3WriteStats 6 } + + v3Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v3WriteStats 7 } + + v3Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v3WriteStats 8 } + + v3Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v3WriteStats 9 } + + + -- the per-client nfs statistics table + + pclTable OBJECT-TYPE + SYNTAX SEQUENCE OF PclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-client NFS statistics + since the last time the statistics were cleared." + ::= { nfsPerClient 1 } + + pclEntry OBJECT-TYPE + SYNTAX PclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of NFS statistics for the + referenced NFS client since the last time the + statistics were cleared." + INDEX { pclIpAddr } + ::= { pclTable 1 } + + PclEntry ::= + SEQUENCE { + pclIpAddr + IpAddress, + pclRpcCalls + Counter32, + pclRpcBadCalls + Counter32, + pclRpcNullRecvs + Counter32, + pclRpcBadLens + Counter32, + pclRpcServXDRCalls + Counter32, + pclNfsCalls + Counter32, + pclNfsServBadCalls + Counter32, + pclNfsV2Nulls + Counter32, + pclNfsV2Getattrs + Counter32, + pclNfsV2Setattrs + Counter32, + pclNfsV2Roots + Counter32, + pclNfsV2Lookups + Counter32, + pclNfsV2Readlinks + Counter32, + pclNfsV2Reads + Counter32, + pclNfsV2Wrcaches + Counter32, + pclNfsV2Writes + Counter32, + pclNfsV2Creates + Counter32, + pclNfsV2Removes + Counter32, + pclNfsV2Renames + Counter32, + pclNfsV2Links + Counter32, + pclNfsV2Symlinks + Counter32, + pclNfsV2Mkdirs + Counter32, + pclNfsV2Rmdirs + Counter32, + pclNfsV2Readdirs + Counter32, + pclNfsV2Statfss + Counter32, + pclNfsV3Nulls + Counter32, + pclNfsV3Getattrs + Counter32, + pclNfsV3Setattrs + Counter32, + pclNfsV3Lookups + Counter32, + pclNfsV3Accesss + Counter32, + pclNfsV3Readlinks + Counter32, + pclNfsV3Reads + Counter32, + pclNfsV3Writes + Counter32, + pclNfsV3Creates + Counter32, + pclNfsV3Mkdirs + Counter32, + pclNfsV3Symlinks + Counter32, + pclNfsV3Mknods + Counter32, + pclNfsV3Removes + Counter32, + pclNfsV3Rmdirs + Counter32, + pclNfsV3Renames + Counter32, + pclNfsV3Links + Counter32, + pclNfsV3Readdirs + Counter32, + pclNfsV3ReaddirPluss + Counter32, + pclNfsV3Fsstats + Counter32, + pclNfsV3Fsinfos + Counter32, + pclNfsV3Pathconfs + Counter32, + pclNfsV3Commits + Counter32, + pclPerCent + Integer32, + pclNfsV2NullPerCent + Integer32, + pclNfsV2GetattrPerCent + Integer32, + pclNfsV2SetattrPerCent + Integer32, + pclNfsV2RootPerCent + Integer32, + pclNfsV2LookupPerCent + Integer32, + pclNfsV2ReadlinkPerCent + Integer32, + pclNfsV2ReadPerCent + Integer32, + pclNfsV2WrcachePerCent + Integer32, + pclNfsV2WritePerCent + Integer32, + pclNfsV2CreatePerCent + Integer32, + pclNfsV2RemovePerCent + Integer32, + pclNfsV2RenamePerCent + Integer32, + pclNfsV2LinkPerCent + Integer32, + pclNfsV2SymlinkPerCent + Integer32, + pclNfsV2MkdirPerCent + Integer32, + pclNfsV2RmdirPerCent + Integer32, + pclNfsV2ReaddirPerCent + Integer32, + pclNfsV2StatfsPerCent + Integer32, + pclNfsV3NullPerCent + Integer32, + pclNfsV3GetattrPerCent + Integer32, + pclNfsV3SetattrPerCent + Integer32, + pclNfsV3LookupPerCent + Integer32, + pclNfsV3AccessPerCent + Integer32, + pclNfsV3ReadlinkPerCent + Integer32, + pclNfsV3ReadPerCent + Integer32, + pclNfsV3WritePerCent + Integer32, + pclNfsV3CreatePerCent + Integer32, + pclNfsV3MkdirPerCent + Integer32, + pclNfsV3SymlinkPerCent + Integer32, + pclNfsV3MknodPerCent + Integer32, + pclNfsV3RemovePerCent + Integer32, + pclNfsV3RmdirPerCent + Integer32, + pclNfsV3RenamePerCent + Integer32, + pclNfsV3LinkPerCent + Integer32, + pclNfsV3ReaddirPerCent + Integer32, + pclNfsV3ReaddirPlusPerCent + Integer32, + pclNfsV3FsstatPerCent + Integer32, + pclNfsV3FsinfoPerCent + Integer32, + pclNfsV3PathconfPerCent + Integer32, + pclNfsV3CommitPerCent + Integer32, + pclNfsV2Read512Calls + Counter32, + pclNfsV2Read1KCalls + Counter32, + pclNfsV2Read2KCalls + Counter32, + pclNfsV2Read4KCalls + Counter32, + pclNfsV2Read8KCalls + Counter32, + pclNfsV2Read16KCalls + Counter32, + pclNfsV2Read32KCalls + Counter32, + pclNfsV2Read64KCalls + Counter32, + pclNfsV2Read128KCalls + Counter32, + pclNfsV2Write512Calls + Counter32, + pclNfsV2Write1KCalls + Counter32, + pclNfsV2Write2KCalls + Counter32, + pclNfsV2Write4KCalls + Counter32, + pclNfsV2Write8KCalls + Counter32, + pclNfsV2Write16KCalls + Counter32, + pclNfsV2Write32KCalls + Counter32, + pclNfsV2Write64KCalls + Counter32, + pclNfsV2Write128KCalls + Counter32, + pclNfsV3Read512Calls + Counter32, + pclNfsV3Read1KCalls + Counter32, + pclNfsV3Read2KCalls + Counter32, + pclNfsV3Read4KCalls + Counter32, + pclNfsV3Read8KCalls + Counter32, + pclNfsV3Read16KCalls + Counter32, + pclNfsV3Read32KCalls + Counter32, + pclNfsV3Read64KCalls + Counter32, + pclNfsV3Read128KCalls + Counter32, + pclNfsV3Write512Calls + Counter32, + pclNfsV3Write1KCalls + Counter32, + pclNfsV3Write2KCalls + Counter32, + pclNfsV3Write4KCalls + Counter32, + pclNfsV3Write8KCalls + Counter32, + pclNfsV3Write16KCalls + Counter32, + pclNfsV3Write32KCalls + Counter32, + pclNfsV3Write64KCalls + Counter32, + pclNfsV3Write128KCalls + Counter32 + } + + pclIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the referenced client." + ::= { pclEntry 1 } + + pclRpcCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received from + the referenced client, since the last time the + statistics were cleared." + ::= { pclEntry 2 } + + pclRpcBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls received from the + referenced client that were rejected by the + RPC layer, since the last time the + statistics were cleared." + ::= { pclEntry 3 } + + pclRpcNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call was not available + when it was thought to be received from + referenced client, since the last time the + statistics were cleared." + ::= { pclEntry 4 } + + pclRpcBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received from the + referenced client with a length shorter + than a minimum-sized RPC call, since the + last time the statistics were cleared." + ::= { pclEntry 5 } + + pclRpcServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received from the + referenced client whose header could not + be XDR decoded, since the last time the + statistics were cleared." + ::= { pclEntry 6 } + + pclNfsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received from + the referenced client, since the last time + the statistics were cleared." + ::= { pclEntry 7 } + + pclNfsServBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received from + the referenced client that were rejected, since + the last time the statistics were cleared." + ::= { pclEntry 8 } + + pclNfsV2Nulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_NULL + (Do Nothing) procedure, since the last time the + statistics were cleared." + ::= { pclEntry 9 } + + pclNfsV2Getattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_GETATTR + (Get File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 10 } + + pclNfsV2Setattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_SETATTR + (Set File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 11 } + + pclNfsV2Roots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_ROOT + (Get Filesystem Root) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 12 } + + pclNfsV2Lookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_LOOKUP + (Look Up File Name) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 13 } + + pclNfsV2Readlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_READLINK + (Read From Symbolic Link) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 14 } + + pclNfsV2Reads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_READ + (Read From File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 15 } + + pclNfsV2Wrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_WRITECACHE + (Write to Cache) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 16 } + + pclNfsV2Writes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_WRITE + (Write to File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 17 } + + pclNfsV2Creates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_CREATE + (Create File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 18 } + + pclNfsV2Removes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_REMOVE + (Remove File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 19 } + + pclNfsV2Renames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_RENAME + (Rename File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 20 } + + pclNfsV2Links OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_LINK + (Create Link to File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 21 } + + pclNfsV2Symlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_SYMLINK + (Create Symbolic Link) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 22 } + + pclNfsV2Mkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_MKDIR + (Create Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 23 } + + pclNfsV2Rmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_RMDIR + (Remove Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 24 } + + pclNfsV2Readdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_READDIR + (Read From Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 25 } + + pclNfsV2Statfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_STATFS + (Get Filesystem Attributes) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 26 } + + pclNfsV3Nulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_NULL + (Do Nothing) procedure, since the last time the + statistics were cleared." + ::= { pclEntry 27 } + + pclNfsV3Getattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_GETATTR + (Get File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 28 } + + pclNfsV3Setattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_SETATTR + (Set File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 29 } + + pclNfsV3Lookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_LOOKUP + (Lookup Filename) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 30 } + + pclNfsV3Accesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_ACCESS + (Check Access Permission) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 31 } + + pclNfsV3Readlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_READLINK + (Read from Symbolic Link) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 32 } + + pclNfsV3Reads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_READ + (Read From File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 33 } + + pclNfsV3Writes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_WRITE + (Write to File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 34 } + + pclNfsV3Creates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_CREATE + (Create a File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 35 } + + pclNfsV3Mkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_MKDIR + (Create a Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 36 } + + pclNfsV3Symlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_SYMLINK + (Create a Symbolic Link) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 37 } + + pclNfsV3Mknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_MKNOD + (Create a Special Device) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 38 } + + pclNfsV3Removes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_REMOVE + (Remove a File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 39 } + + pclNfsV3Rmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_RMDIR + (Remove a Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 40 } + + pclNfsV3Renames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_RENAME + (Rename a File or Directory) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 41 } + + pclNfsV3Links OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_LINK + (Create Link to an Object) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 42 } + + pclNfsV3Readdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_READDIR + (Read From Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 43 } + + pclNfsV3ReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the + NFSPROC3_READDIRPLUS (Extended Read from + Directory) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 44 } + + pclNfsV3Fsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_FSSTAT + (Get Dynamic File System Information) procedure, + since the last time the statistics were cleared." + ::= { pclEntry 45 } + + pclNfsV3Fsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_FSINFO + (Get Static File System Information) procedure, + since the last time the statistics were cleared." + ::= { pclEntry 46 } + + pclNfsV3Pathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_PATHCONF + (Retrieve POSIX Information) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 47 } + + pclNfsV3Commits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_COMMIT + (Commit Cached Data on a Server to Stable Storage) + procedure, since the last time the statistics were + cleared." + ::= { pclEntry 48 } + + pclPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of the total NFS calls for the + referenced client as a percentage of the + total NFS calls received from all + clients, since the last time the + statistics were cleared." + ::= { pclEntry 49 } + + pclNfsV2NullPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_NULL (Do Nothing) procedure, + as a percentage of the total calls + received from this client, since the + last time the statistics were cleared." + ::= { pclEntry 50 } + + pclNfsV2GetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_GETATTR (Get File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 51 } + + pclNfsV2SetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_SETATTR (Set File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 52 } + + pclNfsV2RootPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_ROOT (Get Filesystem Root) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 53 } + + pclNfsV2LookupPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_LOOKUP (Look Up File Name) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 54 } + + pclNfsV2ReadlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_READLINK (Read From Symbolic + Link) procedure, as a percentage of the + total calls received from this client, + since the last time the statistics were + cleared." + ::= { pclEntry 55 } + + pclNfsV2ReadPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_READ (Read From File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 56 } + + pclNfsV2WrcachePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_WRITECACHE (Write to Cache) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 57 } + + pclNfsV2WritePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_WRITE (Write to File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 58 } + + pclNfsV2CreatePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_CREATE (Create File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 59 } + + pclNfsV2RemovePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_REMOVE (Remove File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 60 } + + pclNfsV2RenamePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_RENAME (Rename File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 61 } + + pclNfsV2LinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_LINK (Create Link to File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 62 } + + pclNfsV2SymlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 63 } + + pclNfsV2MkdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_MKDIR (Create Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 64 } + + pclNfsV2RmdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_RMDIR (Remove Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 65 } + + pclNfsV2ReaddirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_READDIR (Read From Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 66 } + + pclNfsV2StatfsPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, as a percentage + of the total calls received from this + client, since the last time the + statistics were cleared." + ::= { pclEntry 67 } + + pclNfsV3NullPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_NULL (Do Nothing) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 68 } + + pclNfsV3GetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_GETATTR (Get File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 69 } + + pclNfsV3SetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_SETATTR (Set File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 70 } + + pclNfsV3LookupPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_LOOKUP (Lookup Filename) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 71 } + + pclNfsV3AccessPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_ACCESS (Check Access Permission) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 72 } + + pclNfsV3ReadlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 73 } + + pclNfsV3ReadPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READ (Read From File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 74 } + + pclNfsV3WritePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_WRITE (Write to File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 75 } + + pclNfsV3CreatePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_CREATE (Create a File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 76 } + + pclNfsV3MkdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_MKDIR (Create a Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 77 } + + pclNfsV3SymlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 78 } + + pclNfsV3MknodPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_MKNOD (Create a Special + Device) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 79 } + + pclNfsV3RemovePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_REMOVE (Remove a File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 80 } + + pclNfsV3RmdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_RMDIR (Remove a Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 81 } + + pclNfsV3RenamePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_RENAME (Rename a File or + Directory) procedure, as a percentage of + the total calls received from this client, + since the last time the statistics were + cleared." + ::= { pclEntry 82 } + + pclNfsV3LinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_LINK (Create Link to an Object) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 83 } + + pclNfsV3ReaddirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READDIR (Read From Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 84 } + + pclNfsV3ReaddirPlusPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READDIRPLUS (Extended Read from + Directory) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 85 } + + pclNfsV3FsstatPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, as a + percentage of the total calls received + from this client, since the last time + the statistics were cleared." + ::= { pclEntry 86 } + + pclNfsV3FsinfoPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_FSINFO (Get Static File System + Information) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 87 } + + pclNfsV3PathconfPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 88 } + + pclNfsV3CommitPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, as + a percentage of the total calls received + from this client, since the last time the + statistics were cleared." + ::= { pclEntry 89 } + + pclNfsV2Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 90 } + + pclNfsV2Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 91 } + + pclNfsV2Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 92 } + + pclNfsV2Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 93 } + + pclNfsV2Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 94 } + + pclNfsV2Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 95 } + + pclNfsV2Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 96 } + + pclNfsV2Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 97 } + + pclNfsV2Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 98 } + + pclNfsV2Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 99 } + + pclNfsV2Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 100 } + + pclNfsV2Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 101 } + + pclNfsV2Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 102 } + + pclNfsV2Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 103 } + + pclNfsV2Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 104 } + + pclNfsV2Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 105 } + + pclNfsV2Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 106 } + + pclNfsV2Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 107 } + + pclNfsV3Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 108 } + + pclNfsV3Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 109 } + + pclNfsV3Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 110 } + + pclNfsV3Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 111 } + + pclNfsV3Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 112 } + + pclNfsV3Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 113 } + + pclNfsV3Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 114 } + + pclNfsV3Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 115 } + + pclNfsV3Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 116 } + + pclNfsV3Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 117 } + + pclNfsV3Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 118 } + + pclNfsV3Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 119 } + + pclNfsV3Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 120 } + + pclNfsV3Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 121 } + + pclNfsV3Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 122 } + + pclNfsV3Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 123 } + + pclNfsV3Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 124 } + + pclNfsV3Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 125 } + + + pclNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the pclTable table." + + ::= { nfsPerClient 2 } + + + + -- the totNfs group + + -- this group contains the NFS statistics since the + -- last boot + + trpcServ OBJECT IDENTIFIER ::= { totNfs 1 } + + tnfsServ OBJECT IDENTIFIER ::= { totNfs 2 } + + + + -- the trpcServ group + + trpcCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received, + since the last boot." + ::= { trpcServ 1 } + + trpcBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer, since the last boot." + ::= { trpcServ 2 } + + trpcNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call was not + available when it was thought to be received, + since the last boot." + ::= { trpcServ 3 } + + trpcBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received with a length + shorter than a minimum-sized RPC call, since + the last boot." + ::= { trpcServ 4 } + + trpcServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received whose header + could not be XDR decoded, since the last boot." + ::= { trpcServ 5 } + + + + -- the tnfsServ group + + tnfsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received, since + last boot." + ::= { tnfsServ 1 } + + tnfsServBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received NFS calls rejected, + since last boot." + ::= { tnfsServ 2 } + + tnfsV2 OBJECT IDENTIFIER ::= { tnfsServ 3 } + + tnfsV3 OBJECT IDENTIFIER ::= { tnfsServ 4 } + + treplyCache OBJECT IDENTIFIER ::= { tnfsServ 5 } + + tnfsrwStats OBJECT IDENTIFIER ::= { tnfsServ 6 } + + + + -- the tnfsV2 group + + -- this group contains statistics for NFS + -- Version 2 calls processed since the last boot + + tv2Calls OBJECT IDENTIFIER ::= { tnfsV2 1 } + + tv2Percent OBJECT IDENTIFIER ::= { tnfsV2 2 } + + tv2CachedCalls OBJECT IDENTIFIER ::= { tnfsV2 3 } + + tv2CachedPerCent OBJECT IDENTIFIER ::= { tnfsV2 4 } + + + -- the tv2Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure + -- since the last boot + + tv2cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + since the last boot." + ::= { tv2Calls 1 } + + tv2cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, since the last boot." + ::= { tv2Calls 2 } + + tv2cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, since the the last boot." + ::= { tv2Calls 3 } + + tv2cRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, since the last boot." + ::= { tv2Calls 4 } + + tv2cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, since the last boot." + ::= { tv2Calls 5 } + + tv2cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, since the last boot." + ::= { tv2Calls 6 } + + tv2cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, since the last boot." + ::= { tv2Calls 7 } + + tv2cWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, since the last boot." + ::= { tv2Calls 8 } + + tv2cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, since the last boot." + ::= { tv2Calls 9 } + + tv2cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, since the last boot." + ::= { tv2Calls 10 } + + tv2cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, since the last boot." + ::= { tv2Calls 11 } + + tv2cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, since the last boot." + ::= { tv2Calls 12 } + + tv2cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, since the last boot." + ::= { tv2Calls 13 } + + tv2cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, since the last boot." + ::= { tv2Calls 14 } + + tv2cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, since the last boot." + ::= { tv2Calls 15 } + + tv2cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, since the last boot." + ::= { tv2Calls 16 } + + tv2cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, since the last boot." + ::= { tv2Calls 17 } + + tv2cStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, since the last boot." + ::= { tv2Calls 18 } + + + + -- the tv2Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- as a percentage of total NFS calls received, + -- since the last boot + + tv2pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure + as a percentage of total NFS calls received, + since the last boot." + ::= { tv2Percent 1 } + + tv2pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 2 } + + tv2pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 3 } + + tv2pRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 4 } + + tv2pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 5 } + + tv2pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure as a percentage of total NFS + calls received, since the last boot." + ::= { tv2Percent 6 } + + tv2pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 7 } + + tv2pWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 8 } + + tv2pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 9 } + + tv2pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 10 } + + tv2pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 11 } + + tv2pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 12 } + + tv2pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 13 } + + tv2pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 14 } + + tv2pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 15 } + + tv2pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 16 } + + tv2pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 17 } + + tv2pStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure as a percentage of + total NFS calls received, since the last boot." + ::= { tv2Percent 18 } + + + + -- the tv2CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last boot + + tv2ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem blocking + to read from disk, since the last boot." + ::= { tv2CachedCalls 1 } + + tv2ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 2 } + + tv2ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 3 } + + tv2ccRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 4 } + + tv2ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 5 } + + tv2ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 6 } + + tv2ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 7 } + + tv2ccWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 8 } + + tv2ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 9 } + + tv2ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 10 } + + tv2ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 11 } + + tv2ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 12 } + + tv2ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 13 } + + tv2ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 14 } + + tv2ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 15 } + + tv2ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 16 } + + tv2ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 17 } + + tv2ccStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 18 } + + + + -- the tv2CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last boot + + tv2cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv2CachedPerCent 1 } + + tv2cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 2 } + + tv2cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 3 } + + tv2cpRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 4 } + + tv2cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 5 } + + tv2cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 6 } + + tv2cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 7 } + + tv2cpWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 8 } + + tv2cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 9 } + + tv2cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 10 } + + tv2cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 11 } + + tv2cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 12 } + + tv2cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 13 } + + tv2cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 14 } + + tv2cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 15 } + + tv2cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 16 } + + tv2cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 17 } + + tv2cpStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from + disk, as a percentage of the total number + of calls received for this procedure, + since the last boot." + ::= { tv2CachedPerCent 18 } + + + -- the tnfsV3 group + + -- this group contains statistics for NFS + -- Version 3 calls processed since the last boot + + tv3Calls OBJECT IDENTIFIER ::= { tnfsV3 1 } + + tv3Percent OBJECT IDENTIFIER ::= { tnfsV3 2 } + + tv3CachedCalls OBJECT IDENTIFIER ::= { tnfsV3 3 } + + tv3CachedPerCent OBJECT IDENTIFIER ::= { tnfsV3 4 } + + + -- the tv3Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure + -- since the last boot + + tv3cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + since the last boot." + ::= { tv3Calls 1 } + + tv3cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, since the last boot." + ::= { tv3Calls 2 } + + tv3cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, since the last boot." + ::= { tv3Calls 3 } + + tv3cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, since the last boot." + ::= { tv3Calls 4 } + + tv3cAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, since the last boot." + ::= { tv3Calls 5 } + + tv3cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, since the last boot." + ::= { tv3Calls 6 } + + tv3cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, since the last boot." + ::= { tv3Calls 7 } + + tv3cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, since the last boot." + ::= { tv3Calls 8 } + + tv3cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, since the last boot." + ::= { tv3Calls 9 } + + tv3cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, since the last boot." + ::= { tv3Calls 10 } + + tv3cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, since the last boot." + ::= { tv3Calls 11 } + + tv3cMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, since the last boot." + ::= { tv3Calls 12 } + + tv3cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, since the last boot." + ::= { tv3Calls 13 } + + tv3cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, since the last boot." + ::= { tv3Calls 14 } + + tv3cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, since the last boot." + ::= { tv3Calls 15 } + + tv3cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, since the last boot." + ::= { tv3Calls 16 } + + tv3cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, since the last boot." + ::= { tv3Calls 17 } + + tv3cReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, since the last boot." + ::= { tv3Calls 18 } + + tv3cFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, since the + last boot." + ::= { tv3Calls 19 } + + tv3cFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, since the last boot." + ::= { tv3Calls 20 } + + tv3cPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, since the last boot." + ::= { tv3Calls 21 } + + tv3cCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, since + the last boot." + ::= { tv3Calls 22 } + + + + -- the tv3Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- as a percentage of total NFS calls received, + -- since the last boot + + tv3pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + as a percentage of the total NFS calls + received, since the last boot." + ::= { tv3Percent 1 } + + tv3pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 2 } + + tv3pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 3 } + + tv3pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 4 } + + tv3pAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access + Permission) procedure, as a percentage of + the total NFS calls received, since the last boot." + ::= { tv3Percent 5 } + + tv3pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last boot." + ::= { tv3Percent 6 } + + tv3pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 7 } + + tv3pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 8 } + + tv3pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 9 } + + tv3pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 10 } + + tv3pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last boot." + ::= { tv3Percent 11 } + + tv3pMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, as a percentage of the + total NFS calls received, since the last boot." + ::= { tv3Percent 12 } + + tv3pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 13 } + + tv3pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 14 } + + tv3pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, as a percentage of + the total NFS calls received, since the + last boot." + ::= { tv3Percent 15 } + + tv3pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, as a percentage of + the total NFS calls received, since the + last boot." + ::= { tv3Percent 16 } + + tv3pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 17 } + + tv3pReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, as a percentage + of the total NFS calls received, since the + last boot." + ::= { tv3Percent 18 } + + tv3pFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, as a percentage + of the total NFS calls received, since the + last boot." + ::= { tv3Percent 19 } + + tv3pFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, as a percentage of the + total NFS calls received, since the last boot." + ::= { tv3Percent 20 } + + tv3pPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, as a percentage of the + total NFS calls received, since the last boot." + ::= { tv3Percent 21 } + + tv3pCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, as a + percentage of the total NFS calls received, + since the last boot." + ::= { tv3Percent 22 } + + + + -- the tv3CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last boot + + tv3ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem blocking + to read from disk, since the last boot." + ::= { tv3CachedCalls 1 } + + tv3ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 2 } + + tv3ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 3 } + + tv3ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 4 } + + tv3ccAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 5 } + + tv3ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last boot." + ::= { tv3CachedCalls 6 } + + tv3ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 7 } + + tv3ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 8 } + + tv3ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 9 } + + tv3ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 10 } + + tv3ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last boot." + ::= { tv3CachedCalls 11 } + + tv3ccMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, since + the last boot." + ::= { tv3CachedCalls 12 } + + tv3ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 13 } + + tv3ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 14 } + + tv3ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 15 } + + tv3ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 16 } + + tv3ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 17 } + + tv3ccReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 18 } + + tv3ccFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last boot." + ::= { tv3CachedCalls 19 } + + tv3ccFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last boot." + ::= { tv3CachedCalls 20 } + + tv3ccPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 21 } + + tv3ccCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that did + not result in the filesystem blocking to read + from disk, since the last boot." + ::= { tv3CachedCalls 22 } + + + + -- the tv3CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last boot + + tv3cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 1 } + + tv3cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 2 } + + tv3cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 3 } + + tv3cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 4 } + + tv3cpAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 5 } + + tv3cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + last boot." + ::= { tv3CachedPerCent 6 } + + tv3cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 7 } + + tv3cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 8 } + + tv3cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 9 } + + tv3cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 10 } + + tv3cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 11 } + + tv3cpMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 12 } + + tv3cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 13 } + + tv3cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 14 } + + tv3cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 15 } + + tv3cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 16 } + + tv3cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 17 } + + tv3cpReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READIRPLUS (Extended Read + from Directory) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 18 } + + tv3cpFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read from + disk, as a percentage of the total number of + calls received for this procedure, since the + last boot." + ::= { tv3CachedPerCent 19 } + + tv3cpFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 20 } + + tv3cpPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 21 } + + tv3cpCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that + did not result in the filesystem blocking to + read from disk, as a percentage of the total + number of calls received for this procedure, + since the last boot." + ::= { tv3CachedPerCent 22 } + + + -- the treplyCache group + + -- this group contains statistics related to the + -- Reply Cache processing, since the last boot + + trcInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped, for + calls already in progress, since the last boot." + ::= { treplyCache 1 } + + trcDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped, + for replies already generated within a short + interval, since the last boot. These stats are + deprecated. A value of zero will always be + returned for these stats." + ::= { treplyCache 2 } + + trcMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for which + there were no corresponding entries already in + the Reply Cache, since the last boot." + ::= { treplyCache 3 } + + trcNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received that + resulted in replies being replayed from + the Reply Cache, since the last boot." + ::= { treplyCache 4 } + + trcNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for calls + that resulted in this request being processed + as a new request even when a corresponding + entry existed in the Reply Cache, since the + last boot." + ::= { treplyCache 5 } + + trcTcpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for calls already in + progress, since the last boot." + ::= { treplyCache 6 } + + trcTcpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for replies already + generated within a short interval, since the + last boot. These stats are deprecated. A value + of zero will always be returned for these stats." + ::= { treplyCache 7 } + + trcTcpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for which there were no corresponding + entries already in the Reply Cache, since the + last boot." + ::= { treplyCache 8 } + + trcTcpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol that resulted in replies being + replayed from the Reply Cache, since the + last boot." + ::= { treplyCache 9 } + + trcTcpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last boot." + ::= { treplyCache 10 } + + trcUdpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for calls already in + progress, since the last boot." + ::= { treplyCache 11 } + + trcUdpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for replies already + generated within a short interval, since the + last boot. These stats are deprecated. A value + of zero will always be returned for these stats." + ::= { treplyCache 12 } + + trcUdpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for which there were no corresponding + entries already in the Reply Cache, since the + last boot." + ::= { treplyCache 13 } + + trcUdpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol that resulted in replies being + replayed from the Reply Cache, since the + last boot." + ::= { treplyCache 14 } + + trcUdpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last boot." + ::= { treplyCache 15 } + + -- the tnfsrwStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 and 3 read and write calls since + -- last boot. + + tv2ReadStats OBJECT IDENTIFIER ::= { tnfsrwStats 1 } + + tv2WriteStats OBJECT IDENTIFIER ::= { tnfsrwStats 2 } + + tv3ReadStats OBJECT IDENTIFIER ::= { tnfsrwStats 3 } + + tv3WriteStats OBJECT IDENTIFIER ::= { tnfsrwStats 4 } + + + -- the tv2ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 read calls since last boot. + + tv2Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv2ReadStats 1 } + + tv2Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv2ReadStats 2 } + + tv2Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv2ReadStats 3 } + + + tv2Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv2ReadStats 4 } + + tv2Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv2ReadStats 5 } + + tv2Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv2ReadStats 6 } + + tv2Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv2ReadStats 7 } + + tv2Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv2ReadStats 8 } + + tv2Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv2ReadStats 9 } + + + -- the tv2WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 write calls since last boot. + + tv2Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv2WriteStats 1 } + + tv2Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv2WriteStats 2 } + + tv2Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv2WriteStats 3 } + + + tv2Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv2WriteStats 4 } + + tv2Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv2WriteStats 5 } + + tv2Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv2WriteStats 6 } + + tv2Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv2WriteStats 7 } + + tv2Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv2WriteStats 8 } + + tv2Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv2WriteStats 9 } + + + -- the tv3ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 read calls since last boot. + + tv3Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv3ReadStats 1 } + + tv3Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv3ReadStats 2 } + + tv3Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv3ReadStats 3 } + + + tv3Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv3ReadStats 4 } + + tv3Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv3ReadStats 5 } + + tv3Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv3ReadStats 6 } + + tv3Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv3ReadStats 7 } + + tv3Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv3ReadStats 8 } + + tv3Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv3ReadStats 9 } + + + -- the tv3WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 write calls since last boot. + + tv3Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv3WriteStats 1 } + + tv3Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv3WriteStats 2 } + + tv3Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv3WriteStats 3 } + + tv3Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv3WriteStats 4 } + + tv3Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv3WriteStats 5 } + + tv3Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv3WriteStats 6 } + + tv3Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv3WriteStats 7 } + + tv3Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv3WriteStats 8 } + + tv3Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv3WriteStats 9 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the nfsOptions group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + nfsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the nfs protocol is licensed on the + filer." + ::= { nfsOptions 1 } + + + -- -- -- -- -- -- -- + -- the quota group -- + -- -- -- -- -- -- -- + + quotaState OBJECT-TYPE + SYNTAX INTEGER { + quotaStateOff(1), + quotaStateOn(2), + quotaStateInit(3) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Indicates whether the root volume's quotas are ON, + OFF or initializing. This object is deprecated - + use qvStateTable.qvStateStat instead." + ::= { quota 1 } + + quotaInitPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Indicates percentage of root volume quota + computation done while quotas are in initializing + state. This object is deprecated - use + qvStateTable.qvInitPercent instead." + ::= { quota 2 } + + + -- the old volume-unaware quota report table. DEPRECATED + + qrTable OBJECT-TYPE + SYNTAX SEQUENCE OF QrEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for each user or group with + a quota in /etc/quotas. All quotas are displayed + regardless of volume, and no volume information + is given. This table is deprecated - use qrVTable + instead." + ::= { quota 3 } + + qrEntry OBJECT-TYPE + SYNTAX QrEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for a referenced entry + with a quota in the file /etc/quotas. + All quotas are displayed regardless of volume, + and no volume information is given. This object is + deprecated - use qrVEntry instead." + + INDEX { qrIndex } + ::= { qrTable 1 } + + QrEntry ::= + SEQUENCE { + qrIndex + Integer32, + qrType + Integer32, + qrId + Integer32, + qrKBytesUsed + Integer32, + qrKBytesLimit + Integer32, + qrFilesUsed + Integer32, + qrFileLimit + Integer32, + qrPathName + DisplayString + } + + qrIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry in the + file /etc/quotas." + ::= { qrEntry 1 } + + qrType OBJECT-TYPE + SYNTAX INTEGER { + qrTypeUser(1), + qrTypeGroup(2), + qrTypeTree(3), + qrTypeUnknown(4) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Identifies the kind of quota for this qrEntry." + ::= { qrEntry 2 } + + qrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The UID (user's numerical ID) or the GID (numerical + ID of the group that a user belongs to), as + applicable, associated with this qrEntry." + ::= { qrEntry 3 } + + qrKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of KBytes used for this + qrEntry." + ::= { qrEntry 4 } + + qrKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of KBytes that can be used for this + qrEntry." + ::= { qrEntry 5 } + + qrFilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of files used for this + qrEntry." + ::= { qrEntry 6 } + + qrFileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of files that can be used for this + qrEntry." + ::= { qrEntry 7 } + + qrPathName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A textual string that contains the path + corresponding to this qrEntry." + ::= { qrEntry 8 } + + -- quota volume state table + + qvStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF QvStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current quota state of + each volume in the system." + ::= { quota 4 } + + qvStateEntry OBJECT-TYPE + SYNTAX QvStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current quota state of + each volume in the system." + INDEX { qvStateVolume } + ::= { qvStateTable 1 } + + QvStateEntry ::= + SEQUENCE { + qvStateVolume + Integer32, + qvStateName + DisplayString, + qvStateStat + Integer32, + qvStateInitPercent + Integer32 + } + + qvStateVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this volume. The mapping + of this number to actual volumes may change if + volumes are added or deleted. Use qvStateName to + unambiguously identify a volume. The mapping + established by this object is the same as + the mapping of qrVVolume (below) to actual volumes. + For instance, if a qvStateVolume value of '5' + represents the volume 'vol2', a value of '5' + in qrVVolume also represents the volume 'vol2'." + ::= { qvStateEntry 1 } + + qvStateName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the name of this volume." + ::= { qvStateEntry 2 } + + qvStateStat OBJECT-TYPE + SYNTAX INTEGER { + quotaStateOff(1), + quotaStateOn(2), + quotaStateInit(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether quotas are ON, OFF or + initializing." + ::= { qvStateEntry 3 } + + qvStateInitPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates percentage of quota computation done + while quotas are in initializing state." + ::= { qvStateEntry 4 } + + + -- multi-volume-aware quota table + -- THIS IS DEPRECATED, please use qrV2Table instead + + qrVTable OBJECT-TYPE + SYNTAX SEQUENCE OF QrVEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for each user or group with + a quota in /etc/quotas." + ::= { quota 5 } + + + qrVEntry OBJECT-TYPE + SYNTAX QrVEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for a referenced entry + with a quota in the file /etc/quotas. Indices + select the volume of the quota and the quota entry + itself." + INDEX { qrVVolume, qrVIndex } + ::= { qrVTable 1 } + + QrVEntry ::= + SEQUENCE { + qrVIndex + Integer32, + qrVType + Integer32, + qrVId + Integer32, + qrVKBytesUsed + Integer32, + qrVKBytesLimit + Integer32, + qrVFilesUsed + Integer32, + qrVFileLimit + Integer32, + qrVPathName + DisplayString, + qrVVolume + Integer32, + qrVTree + DisplayString, + qrVIdType + Integer32, + qrVSid + DisplayString, + qrVKBytesThreshold + Integer32, + qrVKBytesLimitSoft + Integer32, + qrVFileLimitSoft + Integer32 + } + + qrVIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry in the + file /etc/quotas in the given volume." + ::= { qrVEntry 1 } + + qrVType OBJECT-TYPE + SYNTAX INTEGER { + qrVTypeUser(1), + qrVTypeGroup(2), + qrVTypeTree(3), + qrVTypeUserDefault(4), + qrVTypeGroupDefault(5), + qrVTypeUnknown(6) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Identifies the kind of quota for this qrVEntry." + ::= { qrVEntry 2 } + + qrVId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The UID (user's numerical ID) or the GID (numerical + ID of the group that a user belongs to), as + applicable, associated with this qrVEntry. Check + the qrVIdType field to see if this field is valid." + ::= { qrVEntry 3 } + + qrVKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of KBytes used for this + qrVEntry." + ::= { qrVEntry 4 } + + qrVKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of KBytes that can be used for this + qrVEntry." + ::= { qrVEntry 5 } + + qrVFilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of files used for this + qrVEntry." + ::= { qrVEntry 6 } + + qrVFileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of files that can be used for this + qrVEntry." + ::= { qrVEntry 7 } + + qrVPathName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A textual string that contains the path + corresponding to this qrVEntry." + ::= { qrVEntry 8 } + + qrVVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies the volume for which + this quota is in effect on. The volume that this + value represents can be determined by checking + the value of qvStateName (above) with + qvStateVolume set to the value found here." + ::= { qrVEntry 9 } + + qrVTree OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A string that indicates which qtree this quota + belongs to." + ::= { qrVEntry 10 } + + qrVIdType OBJECT-TYPE + SYNTAX INTEGER { + qrVIdValid(1), + qrVSidValid(2) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A value that indicates which ID field is valid." + ::= { qrVEntry 11} + + qrVSid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The one or more IDs associated with this qrVEntry. + If the qrVentry is associated with a Windows ID, the + text form of the Windows ID (the SID) is here. If + the qrVEntry is associated with more than one id, + this contains a blank separated list of those IDs. + Check the qrVIdType field to see if this field is + valid." + ::= { qrVEntry 12 } + + qrVKBytesThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message." + ::= { qrVEntry 13 } + + qrVKBytesLimitSoft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of KBytes that can be used for this + qrVEntry before a warning message and SNMP + trap is produced." + ::= { qrVEntry 14 } + + qrVFileLimitSoft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of files that can be used for this + qrVEntry before a warning message and SNMP + trap is produced." + ::= { qrVEntry 15 } + + -- + -- multi-volume-aware quota table with 64 bit values + -- + + qrV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF QrV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current file and + space consumption for each user or group with + a quota in /etc/quotas." + ::= { quota 6 } + + + qrV2Entry OBJECT-TYPE + SYNTAX QrV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current file and + space consumption for a referenced entry + with a quota in the file /etc/quotas. Indices + select the volume of the quota and the quota entry + itself." + INDEX { qrV2Volume, qrV2Index } + ::= { qrV2Table 1 } + + QrV2Entry ::= + SEQUENCE { + qrV2Index + Integer32, + qrV2Type + Integer32, + qrV2Id + Integer32, + qrV2HighKBytesUsed + Integer32, + qrV2LowKBytesUsed + Integer32, + qrV2QuotaUnlimited + Integer32, + qrV2HighKBytesLimit + Integer32, + qrV2LowKBytesLimit + Integer32, + qrV2FilesUsed + Integer32, + qrV2FileQuotaUnlimited + Integer32, + qrV2FileLimit + Integer32, + qrV2PathName + DisplayString, + qrV2Volume + Integer32, + qrV2Tree + DisplayString, + qrV2IdType + Integer32, + qrV2Sid + DisplayString, + qrV2ThresholdUnlimited + Integer32, + qrV2HighKBytesThreshold + Integer32, + qrV2LowKBytesThreshold + Integer32, + qrV2SoftQuotaUnlimited + Integer32, + qrV2HighKBytesSoftLimit + Integer32, + qrV2LowKBytesSoftLimit + Integer32, + qrV2SoftFileQuotaUnlimited + Integer32, + qrV2SoftFileLimit + Integer32, + qrV264KBytesUsed + Counter64, + qrV264KBytesLimit + Counter64, + qrV264KBytesThreshold + Counter64, + qrV264KBytesSoftLimit + Counter64 + } + + qrV2Index OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry in the + file /etc/quotas in the given volume." + ::= { qrV2Entry 1 } + + qrV2Type OBJECT-TYPE + SYNTAX INTEGER { + qrV2TypeUser(1), + qrV2TypeGroup(2), + qrV2TypeTree(3), + qrV2TypeUserDefault(4), + qrV2TypeGroupDefault(5), + qrV2TypeUnknown(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the kind of quota for this qrV2Entry." + ::= { qrV2Entry 2 } + + qrV2Id OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UID (user's numerical ID) or the GID (numerical + ID of the group that a user belongs to), as + applicable, associated with this qrV2Entry. Check + the qrV2IdType field to see if this field is valid." + ::= { qrV2Entry 3 } + + qrV2HighKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of KBytes used for this + qrV2Entry. This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 4 } + + qrV2LowKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of KBytes used for this + qrV2Entry. This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 5 } + + qrV2QuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + size based quota limit for this qrV2Entry is unlimited. + If false(1) then qrV2*KBytesLimit OID's are valid, + if true(0) then qrV2*KBytesLimit OID's are unused + and will return 0." + ::= { qrV2Entry 6 } + + qrV2HighKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry. This object returns the most significant + 32 bits of the 64 bit unsigned integer. This will + return 0 if qrV2QuotaUnlimited is true." + ::= { qrV2Entry 7 } + + qrV2LowKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry. This object returns the least significant + 32 bits of the 64 bit unsigned integer. This will + return 0 if qrV2QuotaUnlimited is true." + ::= { qrV2Entry 8 } + + qrV2FilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of files used for this + qrV2Entry." + ::= { qrV2Entry 9 } + + qrV2FileQuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + file based quota limit for this qrV2Entry is unlimited. + If false(1) then qrV2FileLimit is valid, if true(0) + qrV2FileLimit will return 0." + ::= { qrV2Entry 10 } + + + qrV2FileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of files that can be used for this + qrV2Entry." + ::= { qrV2Entry 11 } + + qrV2PathName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string that contains the path + corresponding to this qrV2Entry." + ::= { qrV2Entry 12 } + + qrV2Volume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume for which + this quota is in effect on. The volume that this + value represents can be determined by checking + the value of qvStateName (above) with + qvStateVolume set to the value found here." + ::= { qrV2Entry 13 } + + qrV2Tree OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string that indicates which qtree this quota + belongs to." + ::= { qrV2Entry 14 } + + qrV2IdType OBJECT-TYPE + SYNTAX INTEGER { + qrV2IdValid(1), + qrV2SidValid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value that indicates which ID field is valid." + ::= { qrV2Entry 15 } + + qrV2Sid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The one or more IDs associated with this qrV2Entry. + If the qrV2entry is associated with a Windows ID, the + text form of the Windows ID (the SID) is here. If + the qrV2Entry is associated with more than one id, + this contains a blank separated list of those IDs. + Check the qrV2IdType field to see if this field is + valid." + ::= { qrV2Entry 16 } + + qrV2ThresholdUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + size based threshold limit for this qrV2Entry is + unlimited. If false(1) then qrV2*KBytesThreshold OID's + are valid, if true(0) then qrV2*KBytesThreshold OID's + are unused and will return 0." + ::= { qrV2Entry 17 } + + qrV2HighKBytesThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message. This object returns the + most significant 32 bits of the 64 bit unsigned + integer. This will return 0 if qrV2ThresholdUnlimited + is true." + ::= { qrV2Entry 18 } + + qrV2LowKBytesThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message. This object returns the + least significant 32 bits of the 64 bit unsigned + integer. This will return 0 if qrV2ThresholdUnlimited + is true." + ::= { qrV2Entry 19 } + + qrV2SoftQuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + size based soft quota limit for this qrV2Entry is + unlimited. If false(1) then qrV2*KBytesSoftLimit OID's + are valid, if true(0) the qrV2*KBytesSoftLimit OID's + are unused and will return 0." + ::= { qrV2Entry 20 } + + qrV2HighKBytesSoftLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 21 } + + qrV2LowKBytesSoftLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 22 } + + qrV2SoftFileQuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + file based soft quota limit for this qrV2Entry is + unlimited. If false(1) then qrV2SoftFileLimit is valid, + if true(0) qrV2SoftFileLimit is unused and will + return 0." + ::= { qrV2Entry 23 } + + qrV2SoftFileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of files that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This will return 0 if + qrV2SoftFileQuotaUnlimited is true." + ::= { qrV2Entry 24 } + + qrV264KBytesUsed OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of KBytes used for this + qrV2Entry. This object returns all of the 64 bit + unsigned integer." + + ::= { qrV2Entry 25 } + + qrV264KBytesLimit OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry. This object returns all of the 64 + bit unsigned integer. This will return 0 if + qrV2QuotaUnlimited is true." + ::= { qrV2Entry 26 } + + qrV264KBytesThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message. This object returns the + all of the 64 bit unsigned integer. This will return + 0 if qrV2ThresholdUnlimited is true." + ::= { qrV2Entry 27 } + + qrV264KBytesSoftLimit OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This object returns all of the + 64 bit unsigned integer." + ::= { qrV2Entry 28 } + + -- -- -- -- -- -- -- -- -- + -- the file system group -- + -- -- -- -- -- -- -- -- -- + + filesysMaxfilesAvail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The count of the maximum number of + files allowable on the root volume. This + object is deprecated - use + dfEntry.dfMaxFilesAvail instead." + ::= { filesys 1 } + + filesysMaxfilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The count of the number of files + currently in use on the root volume. + This object is deprecated - use + dfEntry.dfMaxFilesUsed instead." + ::= { filesys 2 } + + filesysMaxfilesPossible OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The largest value to which the + filesysMaxfilesAvail parameter above can + be increased by reconfiguration on the + root volume. This object is deprecated - + use dfEntry.dfMaxFilesPossible." + ::= { filesys 3 } + + dfTable OBJECT-TYPE + SYNTAX SEQUENCE OF DfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the available disk space + on the file systems. The tables shows the + available disk space for volumes as well as + aggregates." + ::= { filesys 4 } + + snapshot OBJECT IDENTIFIER ::= { filesys 5 } + + -- the display file system table + + dfEntry OBJECT-TYPE + SYNTAX DfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the available disk space on + the referenced file system." + INDEX { dfIndex } + ::= { dfTable 1 } + + DfEntry ::= + SEQUENCE { + dfIndex + Integer32, + dfFileSys + DisplayString, + dfKBytesTotal + Integer32, + dfKBytesUsed + Integer32, + dfKBytesAvail + Integer32, + dfPerCentKBytesCapacity + Integer32, + dfInodesUsed + Integer32, + dfInodesFree + Integer32, + dfPerCentInodeCapacity + Integer32, + dfMountedOn + DisplayString, + dfMaxFilesAvail + Integer32, + dfMaxFilesUsed + Integer32, + dfMaxFilesPossible + Integer32, + dfHighTotalKBytes + Integer32, + dfLowTotalKBytes + Integer32, + dfHighUsedKBytes + Integer32, + dfLowUsedKBytes + Integer32, + dfHighAvailKBytes + Integer32, + dfLowAvailKBytes + Integer32, + dfStatus + Integer32, + dfMirrorStatus + Integer32, + dfPlexCount + Integer32, + dfType + Integer32, + dfHighSisSharedKBytes + Integer32, + dfLowSisSharedKBytes + Integer32, + dfHighSisSavedKBytes + Integer32, + dfLowSisSavedKBytes + Integer32, + dfPerCentSaved + Integer32, + df64TotalKBytes + Counter64, + df64UsedKBytes + Counter64, + df64AvailKBytes + Counter64, + df64SisSharedKBytes + Counter64, + df64SisSavedKBytes + Counter64 + } + + dfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { dfEntry 1 } + + dfFileSys OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name for the referenced file system." + ::= { dfEntry 2 } + + dfKBytesTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total capacity in KBytes for the + referenced file system." + ::= { dfEntry 3 } + + dfKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system." + ::= { dfEntry 4 } + + dfKBytesAvail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total disk space in KBytes that is + free for use on the referenced file system." + ::= { dfEntry 5 } + + dfPerCentKBytesCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space currently + in use on the referenced file system." + ::= { dfEntry 6 } + + dfInodesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of inodes in use on the + referenced file system." + ::= { dfEntry 7 } + + dfInodesFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of inodes that are + available for use on the referenced + file system." + ::= { dfEntry 8 } + + dfPerCentInodeCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space currently + in use based on inode counts, on the + referenced file system." + ::= { dfEntry 9 } + + dfMountedOn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the file on which this file + system is mounted." + ::= { dfEntry 10 } + + dfMaxFilesAvail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of the maximum number of + files allowable on the referenced file + system." + ::= { dfEntry 11 } + + dfMaxFilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of the number of files + currently in use on the referenced file + system." + ::= { dfEntry 12 } + + dfMaxFilesPossible OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The largest value to which the + filesysMaxfilesAvail parameter above can + be increased by reconfiguration on the + referenced file system." + ::= { dfEntry 13 } + + dfHighTotalKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total capacity in KBytes for the + referenced file system. This object returns + the most significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 14 } + + dfLowTotalKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total capacity in KBytes for the + referenced file system. This object returns + the least significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 15 } + + dfHighUsedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { dfEntry 16 } + + dfLowUsedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { dfEntry 17 } + + dfHighAvailKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is free + for use on the referenced file system. + This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= { dfEntry 18 } + + dfLowAvailKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is free + for use on the referenced file system. + This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= { dfEntry 19 } + + + dfStatus OBJECT-TYPE + SYNTAX INTEGER { + unmounted(1), + mounted(2), + frozen(3), + destroying(4), + creating(5), + mounting(6), + unmounting(7), + nofsinfo(8), + replaying(9), + replayed(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the file system." + ::= { dfEntry 20 } + + dfMirrorStatus OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), + uninitialized(2), + needcpcheck(3), + cpcheckwait(4), + unmirrored(5), + normal(6), + degraded(7), + resyncing(8), + failed(9), + limbo(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Overall mirror status of the file system." + ::= { dfEntry 21 } + + dfPlexCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of plexes in this file system." + ::= { dfEntry 22 } + + dfType OBJECT-TYPE + SYNTAX INTEGER { + traditionalVolume(1), + flexibleVolume(2), + aggregate(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the type of container." + ::= { dfEntry 23 } + + dfHighSisSharedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that is + shared by more that one instance on the + referenced file system. This object returns + the most significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 24 } + + dfLowSisSharedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that is + shared by more that one instance on the + referenced file system. This object returns + the least significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 25 } + + dfHighSisSavedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is saved + by storing only one copy of the duplicated + blocks on the referenced file system. The + object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { dfEntry 26 } + + dfLowSisSavedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is saved + by storing only one copy of the duplicated + blocks on the referenced file system. The + object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { dfEntry 27 } + + dfPerCentSaved OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space saved by + eliminating the duplicated blocks on the + referenced file system." + ::= { dfEntry 28 } + + df64TotalKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total capacity in KBytes for the + referenced file system. This object returns + all of the 64 bit unsigned integer." + ::= { dfEntry 29 } + + df64UsedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns all of the 64 bit unsigned integer." + ::= { dfEntry 30 } + + df64AvailKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is free + for use on the referenced file system. + This object returns all of the 64 bit + unsigned integer." + ::= { dfEntry 31 } + + df64SisSharedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that is + shared by more that one instance on the + referenced file system. This object returns + all of the 64 bit unsigned integer." + ::= { dfEntry 32 } + + df64SisSavedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is saved + by storing only one copy of the duplicated + blocks on the referenced file system. The + object returns all of the 64 bit unsigned + integer." + ::= { dfEntry 33 } + + -- the old single-volume snapshot table. DEPRECATED + + slTable OBJECT-TYPE + SYNTAX SEQUENCE OF SlEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the snapshots on the + root volume. This table is deprecated - use + slVTable instead." + ::= { snapshot 1 } + + slEntry OBJECT-TYPE + SYNTAX SlEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report on a given snapshot on the + root volume. This object is deprecated - use + slVEntry instead." + INDEX { slIndex } + ::= { slTable 1 } + + SlEntry ::= + SEQUENCE { + slIndex + Integer32, + slMonth + Integer32, + slDay + Integer32, + slHour + Integer32, + slMinutes + Integer32, + slName + DisplayString + } + + slIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { slEntry 1 } + + slMonth OBJECT-TYPE + SYNTAX INTEGER { + january(1), + february(2), + march(3), + april(4), + may(5), + june(6), + july(7), + august(8), + september(9), + october(10), + november(11), + december(12) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The month in which the snapshot was created." + ::= { slEntry 2 } + + slDay OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The day on which the snapshot was created." + ::= { slEntry 3 } + + slHour OBJECT-TYPE + SYNTAX Integer32 (0..23) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The hour in which the snapshot was created." + ::= { slEntry 4 } + + slMinutes OBJECT-TYPE + SYNTAX Integer32 (0..59) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The minute in which the snapshot was created." + ::= { slEntry 5 } + + slName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The name of the referenced snapshot." + ::= { slEntry 6 } + + + -- The multivolume / aggregate snapshot table. + + slVTable OBJECT-TYPE + SYNTAX SEQUENCE OF SlVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the snapshots on the + file systems." + ::= { snapshot 2 } + + slVEntry OBJECT-TYPE + SYNTAX SlVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report on a given snapshot on the + file system. Indices select the volume of + the snapshot and the snapshot entry itself." + INDEX { slVVolume, slVIndex } + ::= { slVTable 1 } + + SlVEntry ::= + SEQUENCE { + slVIndex + Integer32, + slVMonth + Integer32, + slVDay + Integer32, + slVHour + Integer32, + slVMinutes + Integer32, + slVName + DisplayString, + slVVolume + Integer32, + slVNumber + Integer32, + slVVolumeName + DisplayString, + slVType + Integer32 + } + + slVIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { slVEntry 1 } + + slVMonth OBJECT-TYPE + SYNTAX INTEGER { + january(1), + february(2), + march(3), + april(4), + may(5), + june(6), + july(7), + august(8), + september(9), + october(10), + november(11), + december(12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The month in which the snapshot was created." + ::= { slVEntry 2 } + + slVDay OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The day on which the snapshot was created." + ::= { slVEntry 3 } + + slVHour OBJECT-TYPE + SYNTAX Integer32 (0..23) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hour in which the snapshot was created." + ::= { slVEntry 4 } + + slVMinutes OBJECT-TYPE + SYNTAX Integer32 (0..59) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minute in which the snapshot was created." + ::= { slVEntry 5 } + + slVName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the referenced snapshot." + ::= { slVEntry 6 } + + slVVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume / aggregate that + contains this snapshot." + ::= { slVEntry 7 } + + slVNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of snapshots for this volume / aggregate." + ::= { slVEntry 8 } + + slVVolumeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume / aggregate. This does not + have a /vol/ prefix." + + ::= { slVEntry 9 } + + slVType OBJECT-TYPE + SYNTAX INTEGER { + traditionalVolume(1), + flexibleVolume(2), + aggregate(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the type of container for this + snapshot." + + ::= { slVEntry 10 } + + + -- The snapshot content table. + + slQTable OBJECT-TYPE + SYNTAX SEQUENCE OF SlQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the snapshots and their contents + on the file systems." + ::= { snapshot 3 } + + slQEntry OBJECT-TYPE + SYNTAX SlQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report on a given snapshot for a given + qtree on the file system. Indices select the volume + and qtree of the snapshot and the snapshot entry + itself." + + INDEX { slQVolume, slQQtree, slQIndex } + ::= { slQTable 1 } + + SlQEntry ::= + SEQUENCE { + slQIndex + Integer32, + slQVolume + Integer32, + slQQtree + Integer32, + slQSnapshotName + DisplayString, + slQSnapshotTime + Integer32, + slQQtreeName + DisplayString, + slQQtreeContent + Integer32, + slQSource + OCTET STRING, + slQSourceTime + Integer32, + slQVolumeName + DisplayString + } + + slQIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { slQEntry 1 } + + slQVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that contains + this snapshot." + ::= { slQEntry 2 } + + slQQtree OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the qtree that contains + this snapshot." + ::= { slQEntry 3 } + + slQSnapshotName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the referenced snapshot." + ::= { slQEntry 4 } + + slQSnapshotTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the snapshot on the system. The time in + seconds since January 1, 1970." + ::= { slQEntry 5 } + + slQQtreeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string that indicates which qtree is in this + snapshot" + ::= { slQEntry 6 } + + slQQtreeContent OBJECT-TYPE + SYNTAX INTEGER { + replica(1), + transitioning(2), + original(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The content of the qtree tree" + ::= { slQEntry 7 } + + slQSource OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source of this qtree for a replicated qtree. + '-' for a original qtree." + ::= { slQEntry 8 } + + slQSourceTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the source snapshot for a replicated qtree. + Time of the current snapshot for an original qtree. + The time in seconds since January 1, 1970. 0 if the + qtree is in a transitioning stage" + + ::= { slQEntry 9 } + + slQVolumeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume. This does not have a /vol/ + prefix." + ::= { slQEntry 10 } + + + dfNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the dfTable table." + + ::= { filesys 6 } + + -- -- -- -- -- -- -- -- -- -- -- -- + -- file system status information -- + -- -- -- -- -- -- -- -- -- -- -- -- + + fsStatus OBJECT IDENTIFIER ::= { filesys 7 } + + fsOverallStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + nearlyFull(2), + full(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of overall file system + health. 'ok' indicates that all file systems + have adequate space. 'nearlyFull' means + that one or more is nearly full (more than + 95% full). 'full' means that one or more + are more than 98% full." + ::= { fsStatus 1 } + + fsStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string indicating any file systems which + are full or nearly full." + ::= { fsStatus 2 } + + fsMaxUsedBytesPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of space currently in use + by the file system which is most full." + ::= { fsStatus 3 } + + fsMaxUsedInodesPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of inodes currently in use + by the file system which is most full." + ::= { fsStatus 4 } + + fsMaxUsedReservedPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of reserved space currently + in use by the file system which is most full." + ::= { fsStatus 5 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- All volumes, including those offline and those + -- owned by the cluster partner. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + volTable OBJECT-TYPE + SYNTAX SEQUENCE OF VolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "List the volumes defined on the system, + including offline volumes." + + ::= { filesys 8 } + + volEntry OBJECT-TYPE + SYNTAX VolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular volume." + INDEX { volIndex } + ::= { volTable 1 } + + VolEntry ::= + SEQUENCE { + volIndex Integer32, + volName DisplayString, + volFSID DisplayString, + volOwningHost Integer32, + volState DisplayString, + volStatus DisplayString, + volOptions DisplayString, + volUUID DisplayString, + volAggrName DisplayString, + volType Integer32, + volClone Integer32, + volCloneOf DisplayString, + volCloneSnap DisplayString + } + + volIndex OBJECT-TYPE + SYNTAX Integer32 (1..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this volume. The + volIndex is not related to any other table + defined in this MIB, and may change as + volumes are created and destroyed." + ::= { volEntry 1 } + + volName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the volume. This includes no /vol/ + prefix." + ::= { volEntry 2 } + + volFSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique identifier for this volume." + ::= { volEntry 3 } + + volOwningHost OBJECT-TYPE + SYNTAX INTEGER { + local(1), + partner(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of which host owns this volume." + ::= { volEntry 4 } + + volState OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of the volume, such as 'online' or + 'offline'." + ::= { volEntry 5 } + + volStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the volume, such as 'normal' or + 'reconstructing'. May include several values + separated by comma and space." + ::= { volEntry 6 } + + volOptions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Options associated with the volume, such + as 'root' and 'nosnapdir=off'. May include + several values separated by comma." + ::= { volEntry 7 } + + volUUID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique id associated with the volume." + ::= { volEntry 8 } + + volAggrName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the aggregate this flexible volume is a + part of." + ::= { volEntry 9 } + + volType OBJECT-TYPE + SYNTAX INTEGER { + traditional(1), + flexible(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this volume, older volumes are + traditional while newer volumes contained in + aggregates are flexible." + ::= { volEntry 10 } + + volClone OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True indicates flexible volume is a clone." + ::= { volEntry 11 } + + volCloneOf OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of flexible volume this flexible volume is + a clone of." + ::= { volEntry 12 } + + volCloneSnap OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of original cloned snapshot." + ::= { volEntry 13 } + + volNumber OBJECT-TYPE + SYNTAX Integer32 (0..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of volumes in the volTable." + + ::= { filesys 9 } + + + qtreeTable OBJECT-TYPE + SYNTAX SEQUENCE OF QtreeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of the qtrees on the system." + + ::= { filesys 10 } + + qtreeEntry OBJECT-TYPE + SYNTAX QtreeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular qtree." + + INDEX { qtreeVolume, qtreeIndex } + ::= { qtreeTable 1 } + + QtreeEntry ::= + SEQUENCE { + qtreeIndex Integer32, + qtreeVolume Integer32, + qtreeVolumeName DisplayString, + qtreeId Integer32, + qtreeName DisplayString, + qtreeStyle Integer32, + qtreeStatus Integer32, + qtreeOplock Integer32 + } + + qtreeIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the qtree table." + + ::= { qtreeEntry 1 } + + qtreeVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that contains + this qtree." + + ::= { qtreeEntry 2 } + + qtreeVolumeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume that contains this qtree. + This includes no /vol/prefix." + + ::= { qtreeEntry 3 } + + qtreeId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Id number of the qtree." + + ::= { qtreeEntry 4 } + + qtreeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the qtree." + + ::= { qtreeEntry 5 } + + qtreeStyle OBJECT-TYPE + SYNTAX INTEGER { + unix(1), + ntfs(2), + mixed(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The security style of the qtree." + + ::= { qtreeEntry 6 } + + qtreeStatus OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + snapmirrored(2), + snapvaulted(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the qtree." + + ::= { qtreeEntry 7 } + + qtreeOplock OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of whether the oplocks is enabled or not + for this qtree." + + ::= { qtreeEntry 8 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- All aggregates, including those offline and those + -- owned by the cluster partner. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + aggrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AggrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "List the aggregates defined on the system, + including offline aggregates." + + ::= { filesys 11 } + + aggrEntry OBJECT-TYPE + SYNTAX AggrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular aggregate." + INDEX { aggrIndex } + ::= { aggrTable 1 } + + AggrEntry ::= + SEQUENCE { + aggrIndex Integer32, + aggrName DisplayString, + aggrFSID DisplayString, + aggrOwningHost Integer32, + aggrState DisplayString, + aggrStatus DisplayString, + aggrOptions DisplayString, + aggrUUID DisplayString, + aggrFlexvollist OCTET STRING, + aggrType Integer32, + aggrRaidType DisplayString + } + + aggrIndex OBJECT-TYPE + SYNTAX Integer32 (1..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this aggregate. The + aggrIndex is not related to any other table + defined in this MIB, and may change as + aggregates are created and destroyed." + ::= { aggrEntry 1 } + + aggrName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the aggregate. This includes no /vol/ + prefix." + ::= { aggrEntry 2 } + + aggrFSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique identifier for this aggregate." + ::= { aggrEntry 3 } + + aggrOwningHost OBJECT-TYPE + SYNTAX INTEGER { + local(1), + partner(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of which host owns this aggregate." + ::= { aggrEntry 4 } + + aggrState OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of the aggregate, such as 'online' or + 'offline'." + ::= { aggrEntry 5 } + + aggrStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the aggregate, such as 'normal' or + 'reconstructing'. May include several values + separated by comma and space." + ::= { aggrEntry 6 } + + aggrOptions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Options associated with the aggregate." + ::= { aggrEntry 7 } + + aggrUUID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique id associated with the aggregate." + ::= { aggrEntry 8 } + + aggrFlexvollist OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "List of all the flexible volumes within this + aggregate." + ::= { aggrEntry 9 } + + aggrType OBJECT-TYPE + SYNTAX INTEGER { + traditional(1), + aggregate(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this container, containers + containing flexible volumes are aggregate." + ::= { aggrEntry 10 } + + aggrRaidType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of raid protection of the aggregate, such as + 'raid0', 'mirrored raid0', 'raid4', 'mirrored raid4', + 'raid_dp', 'mirrored raid_dp'." + ::= { aggrEntry 11 } + + aggrNumber OBJECT-TYPE + SYNTAX Integer32 (0..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of aggregates in the aggrTable." + ::= { filesys 12 } + + -- -- -- -- -- -- -- + -- the RAID group -- + -- -- -- -- -- -- -- + + -- Old root volume raid table. DEPRECATED + + raidTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Display RAID configuration information for the + root volume. This table is deprecated - use + raidVTable instead." + ::= { raid 1 } + + raidEntry OBJECT-TYPE + SYNTAX RaidEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Display RAID configuration information for + the referenced disk drive. This only works for + disks contained within the root volume, and will + include spare drives. This object is + deprecated - use raidVEntry instead." + INDEX { raidIndex } + ::= { raidTable 1 } + + RaidEntry ::= + SEQUENCE { + raidIndex + Integer32, + raidDiskName + DisplayString, + raidStatus + Integer32, + raidDiskId + Integer32, + raidScsiAdapter + DisplayString, + raidScsiId + Integer32, + raidUsedMb + Integer32, + raidUsedBlocks + Integer32, + raidTotalMb + Integer32, + raidTotalBlocks + Integer32, + raidCompletionPerCent + Integer32 + } + + raidIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive." + ::= { raidEntry 1 } + + raidDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The name identifying the referenced disk drive." + ::= { raidEntry 2 } + + raidStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + reconstructionInProgress(2), + parityReconstructionInProgress(3), + parityVerificationInProgress(4), + scrubbingInProgress(5), + failed(6), + addingSpare(7), + spare(8), + prefailed(9), + offline(10) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The status of the referenced disk drive." + ::= { raidEntry 3 } + + raidDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { raidEntry 4 } + + raidScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { raidEntry 5 } + + raidScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { raidEntry 6 } + + raidUsedMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of MBytes currently in use on + the referenced disk drive." + ::= { raidEntry 7 } + + raidUsedBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of Blocks currently in use on + the referenced disk drive." + ::= { raidEntry 8 } + + raidTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { raidEntry 9 } + + raidTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { raidEntry 10 } + + raidCompletionPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "In the case when reconstruction/adding a + spare, verification or scrubbing is in progress, + the percent of such reconstruction, verification + or scrubbing that has been completed on the + referenced disk drive." + ::= { raidEntry 11 } + + + -- Multivolume raidTable. + + + raidVTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information." + ::= { raid 2 } + + raidVEntry OBJECT-TYPE + SYNTAX RaidVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information for + the referenced volume, raid group, and disk drive." + INDEX { raidVVol, raidVGroup, raidVIndex } + ::= { raidVTable 1 } + + RaidVEntry ::= + SEQUENCE { + raidVIndex + Integer32, + raidVDiskName + DisplayString, + raidVStatus + Integer32, + raidVDiskId + Integer32, + raidVScsiAdapter + DisplayString, + raidVScsiId + Integer32, + raidVUsedMb + Integer32, + raidVUsedBlocks + Integer32, + raidVTotalMb + Integer32, + raidVTotalBlocks + Integer32, + raidVCompletionPerCent + Integer32, + raidVVol + Integer32, + raidVGroup + Integer32, + raidVDiskNumber + Integer32, + raidVGroupNumber + Integer32, + raidVDiskPort + Integer32, + raidVSecondaryDiskName + DisplayString, + raidVSecondaryDiskPort + Integer32, + raidVShelf + Integer32, + raidVBay + Integer32, + raidVPlex + Integer32, + raidVPlexGroup + Integer32, + raidVPlexNumber + Integer32, + raidVPlexName + DisplayString, + raidVSectorSize + Integer32, + raidVDiskSerialNumber + DisplayString, + raidVDiskVendor + DisplayString, + raidVDiskModel + DisplayString, + raidVDiskFirmwareRevision + DisplayString, + raidVDiskRPM + DisplayString, + raidVDiskType + DisplayString, + raidVDiskPool + DisplayString, + raidVDiskCopyDestDiskName + DisplayString + } + + raidVIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this disk drive within + the given volume and RAID group." + ::= { raidVEntry 1 } + + raidVDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk drive." + ::= { raidVEntry 2 } + + raidVStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + reconstructionInProgress(2), + parityReconstructionInProgress(3), + parityVerificationInProgress(4), + scrubbingInProgress(5), + failed(6), + prefailed(9), + offline(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced disk drive." + ::= { raidVEntry 3 } + + raidVDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { raidVEntry 4 } + + raidVScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { raidVEntry 5 } + + raidVScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { raidVEntry 6 } + + raidVUsedMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes currently in use on + the referenced disk drive." + ::= { raidVEntry 7 } + + raidVUsedBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks currently in use on + the referenced disk drive." + ::= { raidVEntry 8 } + + raidVTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { raidVEntry 9 } + + raidVTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { raidVEntry 10 } + + raidVCompletionPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In the case when rapid raid recovery, disk copy, + reconstruction/adding a spare, verification or + scrubbing is in progress, the percent of such + copy, reconstruction, verification or scrubbing + that has been completed on the referenced disk + drive." + ::= { raidVEntry 11 } + + raidVVol OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that this entry + belongs to. The first volume is '1'." + ::= { raidVEntry 12 } + + raidVGroup OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the RAID group within the + given volume that this entry belongs to. The + first RAID group is '1', and number across all plexes." + ::= { raidVEntry 13 } + + raidVDiskNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks within this RAID group." + ::= { raidVEntry 14 } + + raidVGroupNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RAID groups within this volume." + ::= { raidVEntry 15 } + + raidVDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidVEntry 16 } + + raidVSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { raidVEntry 17 } + + raidVSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidVEntry 18 } + + raidVShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { raidVEntry 19 } + + raidVBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { raidVEntry 20 } + + + raidVPlex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the plex within the + given volume that this entry belongs to. The + first plex is '1'." + ::= { raidVEntry 21 } + + raidVPlexGroup OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the RAID group within + the given plex that this entry belongs to. The + first RAID group is '1'." + ::= { raidVEntry 22 } + + raidVPlexNumber OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of plexes within this volume. + This number is always 1 or 2." + ::= { raidVEntry 23 } + + raidVPlexName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the plex that this entry + belongs to. A plex name can be anything, but + is usually a string like 'plex0' or 'plex1'." + ::= { raidVEntry 24 } + + raidVSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { raidVEntry 25 } + + raidVDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { raidVEntry 26 } + + raidVDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { raidVEntry 27 } + + raidVDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { raidVEntry 28 } + + raidVDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { raidVEntry 29 } + + raidVDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { raidVEntry 30 } + + raidVDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { raidVEntry 31 } + + raidVDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this entry + belongs to." + ::= { raidVEntry 32 } + + raidVDiskCopyDestDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When raidVStatus value is prefailed, this string identifies + the name of the disk which is the copy target of the + referenced prefailed disk." + ::= { raidVEntry 33 } + + -- Spare disk table. + + spareTable OBJECT-TYPE + SYNTAX SEQUENCE OF SpareEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display spare disk configuration information." + ::= { raid 3 } + + spareEntry OBJECT-TYPE + SYNTAX SpareEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display configuration information for + the referenced spare disk drive." + INDEX { spareIndex } + ::= { spareTable 1 } + + SpareEntry ::= + SEQUENCE { + spareIndex + Integer32, + spareDiskName + DisplayString, + spareStatus + Integer32, + spareDiskId + Integer32, + spareScsiAdapter + DisplayString, + spareScsiId + Integer32, + spareTotalMb + Integer32, + spareTotalBlocks + Integer32, + spareDiskPort + Integer32, + spareSecondaryDiskName + DisplayString, + spareSecondaryDiskPort + Integer32, + spareShelf + Integer32, + spareBay + Integer32, + sparePool + DisplayString, + spareSectorSize + Integer32, + spareDiskSerialNumber + DisplayString, + spareDiskVendor + DisplayString, + spareDiskModel + DisplayString, + spareDiskFirmwareRevision + DisplayString, + spareDiskRPM + DisplayString, + spareDiskType + DisplayString + } + + spareIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive in the list of spare disk + drives." + ::= { spareEntry 1 } + + spareDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced spare disk + drive." + ::= { spareEntry 2 } + + spareStatus OBJECT-TYPE + SYNTAX INTEGER { + spare(1), + addingspare(2), + bypassed(3), + unknown(4), + offline(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced spare disk drive." + ::= { spareEntry 3 } + + spareDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced spare disk + drive." + ::= { spareEntry 4 } + + spareScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced spare disk drive." + ::= { spareEntry 5 } + + spareScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced spare disk drive + on the referenced SCSI adapter." + ::= { spareEntry 6 } + + spareTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced spare disk drive." + ::= { spareEntry 7 } + + spareTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced spare disk drive." + ::= { spareEntry 8 } + + spareDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { spareEntry 9 } + + spareSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { spareEntry 10 } + + spareSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { spareEntry 11 } + + spareShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { spareEntry 12 } + + spareBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { spareEntry 13 } + + sparePool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this + entry belongs to." + ::= { spareEntry 14 } + + spareSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { spareEntry 15 } + + spareDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { spareEntry 16 } + + spareDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { spareEntry 17 } + + spareDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { spareEntry 18 } + + spareDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { spareEntry 19 } + + spareDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { spareEntry 20 } + + spareDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { spareEntry 21 } + + -- Disk summaries + + diskSummary OBJECT IDENTIFIER ::= { raid 4 } + + diskTotalCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of disks on the system." + + ::= { diskSummary 1 } + + diskActiveCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are currently active, + including parity disks." + + ::= { diskSummary 2 } + + diskReconstructingCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are + currently being reconstructed." + + ::= { diskSummary 3 } + + diskReconstructingParityCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of parity disks which are + currently being reconstructed." + + ::= { diskSummary 4 } + + diskVerifyingParityCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of parity disks which are + currently being verified." + + ::= { diskSummary 5 } + + diskScrubbingCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are + currently being scrubbed." + + ::= { diskSummary 6 } + + diskFailedCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are + currently broken." + + ::= { diskSummary 7 } + + diskSpareCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of available spare disks." + + ::= { diskSummary 8 } + + diskAddingSpareCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of spare disks which are + currently being added into a RAID group." + + ::= { diskSummary 9 } + + diskFailedMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If diskFailedCount is non-zero, this is + a string describing the failed disk or + disks. Each failed disk is described with + a sentence like + + Parity disk in volume vol0, RAID group 1, failed. + + or + + Disk on adapter 8a, shelf 1, bay 0, failed." + + ::= { diskSummary 10 } + + diskPrefailedCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are prefailed and marked + for rapid raid recovery." + + ::= { diskSummary 11 } + + raidVNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the raidVTable table. + This is the number of volumes in the system." + + ::= { raid 5 } + + spareNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the spareTable table." + + ::= { raid 6 } + + otherDiskNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the otherDiskTable table." + + ::= { raid 7 } + + raidPNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the raidPTable table. + This is the number of volumes in the system." + + ::= { raid 8 } + + -- Other (out-of-service) disk table. + + otherDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF OtherDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display out-of-service disk configuration information." + ::= { raid 9 } + + otherDiskEntry OBJECT-TYPE + SYNTAX OtherDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display configuration information for + the referenced disk drive." + INDEX { otherDiskIndex } + ::= { otherDiskTable 1 } + + OtherDiskEntry ::= + SEQUENCE { + otherDiskIndex + Integer32, + otherDiskDiskName + DisplayString, + otherDiskStatus + Integer32, + otherDiskDiskId + Integer32, + otherDiskScsiAdapter + DisplayString, + otherDiskScsiId + Integer32, + otherDiskTotalMb + Integer32, + otherDiskTotalBlocks + Integer32, + otherDiskDiskPort + Integer32, + otherDiskSecondaryDiskName + DisplayString, + otherDiskSecondaryDiskPort + Integer32, + otherDiskShelf + Integer32, + otherDiskBay + Integer32, + otherDiskPool + DisplayString, + otherDiskSectorSize + Integer32, + otherDiskSerialNumber + DisplayString, + otherDiskVendor + DisplayString, + otherDiskModel + DisplayString, + otherDiskFirmwareRevision + DisplayString, + otherDiskRPM + DisplayString, + otherDiskType + DisplayString + } + + otherDiskIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive in the list of out-of-service + disk drives. Out-of-service disks include all disks + that are not in service in a raid group or available + as a spare disk." + ::= { otherDiskEntry 1 } + + otherDiskDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk + drive." + ::= { otherDiskEntry 2 } + + otherDiskStatus OBJECT-TYPE + SYNTAX INTEGER { + broken(1), + bypassed(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced disk drive." + ::= { otherDiskEntry 3 } + + otherDiskDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { otherDiskEntry 4 } + + otherDiskScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { otherDiskEntry 5 } + + otherDiskScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { otherDiskEntry 6 } + + otherDiskTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { otherDiskEntry 7 } + + otherDiskTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { otherDiskEntry 8 } + + otherDiskDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { otherDiskEntry 9 } + + otherDiskSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { otherDiskEntry 10 } + + otherDiskSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { otherDiskEntry 11 } + + otherDiskShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { otherDiskEntry 12 } + + otherDiskBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { otherDiskEntry 13 } + + otherDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this + entry belongs to." + ::= { otherDiskEntry 14 } + + otherDiskSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { otherDiskEntry 15 } + + otherDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { otherDiskEntry 16 } + + otherDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { otherDiskEntry 17 } + + otherDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { otherDiskEntry 18 } + + otherDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { otherDiskEntry 19 } + + otherDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { otherDiskEntry 20 } + + otherDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { otherDiskEntry 21 } + + -- Multivolume and multiplex raidTable. + + raidPTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information." + ::= { raid 10 } + + raidPEntry OBJECT-TYPE + SYNTAX RaidPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information for + the referenced volume, plex, raid group, and disk drive." + INDEX { raidPVol, raidPPlex, raidPGroup, raidPIndex } + ::= { raidPTable 1 } + + RaidPEntry ::= + SEQUENCE { + raidPIndex + Integer32, + raidPStatus + Integer32, + raidPVol + Integer32, + raidPPlex + Integer32, + raidPGroup + Integer32, + raidPPlexNumber + Integer32, + raidPGroupNumber + Integer32, + raidPDiskNumber + Integer32, + raidPPlexName + DisplayString, + raidPDiskName + DisplayString, + raidPDiskPort + Integer32, + raidPSecondaryDiskName + DisplayString, + raidPSecondaryDiskPort + Integer32, + raidPScsiAdapter + DisplayString, + raidPScsiId + Integer32, + raidPDiskId + Integer32, + raidPShelf + Integer32, + raidPBay + Integer32, + raidPSectorSize + Integer32, + raidPUsedMb + Integer32, + raidPUsedBlocks + Integer32, + raidPTotalMb + Integer32, + raidPTotalBlocks + Integer32, + raidPCompletionPerCent + Integer32, + raidPDiskSerialNumber + DisplayString, + raidPDiskVendor + DisplayString, + raidPDiskModel + DisplayString, + raidPDiskFirmwareRevision + DisplayString, + raidPDiskRPM + DisplayString, + raidPDiskType + DisplayString, + raidPDiskPool + DisplayString, + raidPDiskCopyDestDiskName + DisplayString + } + + raidPIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this disk drive within + the given volume and RAID group." + ::= { raidPEntry 1 } + + raidPStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + reconstructionInProgress(2), + parityReconstructionInProgress(3), + parityVerificationInProgress(4), + scrubbingInProgress(5), + failed(6), + prefailed(9), + offline(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced disk drive." + ::= { raidPEntry 2 } + + raidPVol OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that this entry + belongs to. The first volume is '1'." + ::= { raidPEntry 3 } + + raidPPlex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the plex that this entry + belongs to. The first plex is '1'." + ::= { raidPEntry 4 } + + raidPGroup OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the RAID group within the + given plex that this entry belongs to. The + first RAID group is '1'." + ::= { raidPEntry 5 } + + raidPPlexNumber OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of plexes within this volume. + This number is always 1 or 2." + ::= { raidPEntry 6 } + + raidPGroupNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RAID groups within this plex." + ::= { raidPEntry 7 } + + raidPDiskNumber OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks within this RAID group." + ::= { raidPEntry 8 } + + raidPPlexName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the plex that this entry + belongs to. A plex name can be anything, but + is usually a string like 'plex0' or 'plex1'." + ::= { raidPEntry 9 } + + raidPDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk drive." + ::= { raidPEntry 10 } + + raidPDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidPEntry 11 } + + raidPSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { raidPEntry 12 } + + raidPSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidPEntry 13 } + + raidPScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { raidPEntry 14 } + + raidPScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { raidPEntry 15 } + + raidPDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { raidPEntry 16 } + + raidPShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { raidPEntry 17 } + + raidPBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { raidPEntry 18 } + + + raidPSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { raidPEntry 19 } + + raidPUsedMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes currently in use on + the referenced disk drive." + ::= { raidPEntry 20 } + + raidPUsedBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks currently in use on + the referenced disk drive." + ::= { raidPEntry 21 } + + raidPTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { raidPEntry 22 } + + raidPTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { raidPEntry 23 } + + raidPCompletionPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In the case when rapid raid recovery, disk copy, + reconstruction or adding a spare, verification or + scrubbing is in progress, the percent of such copy, + reconstruction, verification or scrubbing that has + been completed on the referenced disk drive." + ::= { raidPEntry 24 } + + raidPDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { raidPEntry 25 } + + raidPDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { raidPEntry 26 } + + raidPDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { raidPEntry 27 } + + raidPDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { raidPEntry 28 } + + raidPDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { raidPEntry 29 } + + raidPDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { raidPEntry 30 } + + raidPDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this entry + belongs to." + ::= { raidPEntry 31 } + + raidPDiskCopyDestDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When raidPStatus value is prefailed, this string identifies + the name of the disk which is the copy target of the + referenced prefailed disk." + ::= { raidPEntry 32 } + + -- RAID Plex table. + + plexTable OBJECT-TYPE + SYNTAX SEQUENCE OF PlexEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing plex specific information." + ::= {raid 11} + + -- display plexes + + plexEntry OBJECT-TYPE + SYNTAX PlexEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report on file system plexes." + INDEX { plexIndex } + ::= { plexTable 1 } + + PlexEntry ::= + SEQUENCE { + plexIndex + Integer32, + plexName + DisplayString, + plexVolName + DisplayString, + plexStatus + Integer32, + plexPercentResyncing + Integer32 + } + + plexIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced plex." + ::= { plexEntry 1 } + + plexName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the plex." + ::= { plexEntry 2 } + + plexVolName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The volume to which this plex belongs." + ::= { plexEntry 3 } + + plexStatus OBJECT-TYPE + SYNTAX INTEGER { + offline(1), + resyncing(2), + online(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the plex." + ::= { plexEntry 4 } + + plexPercentResyncing OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If the plex is resyncing, the percent + completion of the resync." + ::= { plexEntry 5 } + + --out-of-dateDisks + + outOfDateDiskCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the outOfDateDiskTable table." + + ::= { raid 12 } + + -- out-of-date disk table. + + outOfDateDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF OutOfDateDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display out-of-date disk information." + ::= { raid 13 } + + outOfDateDiskEntry OBJECT-TYPE + SYNTAX OutOfDateDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display information for the referenced + out-of-date disk." + INDEX { outOfDateDiskIndex } + ::= { outOfDateDiskTable 1 } + + OutOfDateDiskEntry ::= + SEQUENCE { + outOfDateDiskIndex + Integer32, + outOfDateDiskDiskName + DisplayString, + outOfDateDiskDiskId + Integer32, + outOfDateDiskScsiAdapter + DisplayString, + outOfDateDiskScsiId + Integer32, + outOfDateDiskTotalMb + Integer32, + outOfDateDiskTotalBlocks + Integer32, + outOfDateDiskDiskPort + Integer32, + outOfDateDiskSecondaryDiskName + DisplayString, + outOfDateDiskSecondaryDiskPort + Integer32, + outOfDateDiskShelf + Integer32, + outOfDateDiskBay + Integer32, + outOfDateDiskPool + DisplayString, + outOfDateDiskSectorSize + Integer32, + outOfDateDiskSerialNumber + DisplayString, + outOfDateDiskVendor + DisplayString, + outOfDateDiskModel + DisplayString, + outOfDateDiskFirmwareRevision + DisplayString, + outOfDateDiskRPM + DisplayString, + outOfDateDiskType + DisplayString + } + + outOfDateDiskIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive in the list of out-of-date + diskdrives." + ::= { outOfDateDiskEntry 1 } + + outOfDateDiskDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk + drive." + ::= { outOfDateDiskEntry 2 } + + outOfDateDiskDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { outOfDateDiskEntry 3 } + + outOfDateDiskScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { outOfDateDiskEntry 4 } + + outOfDateDiskScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { outOfDateDiskEntry 5 } + + outOfDateDiskTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { outOfDateDiskEntry 6 } + + outOfDateDiskTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { outOfDateDiskEntry 7 } + + outOfDateDiskDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { outOfDateDiskEntry 8 } + + outOfDateDiskSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { outOfDateDiskEntry 9 } + + outOfDateDiskSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { outOfDateDiskEntry 10 } + + outOfDateDiskShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { outOfDateDiskEntry 11 } + + outOfDateDiskBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { outOfDateDiskEntry 12 } + + outOfDateDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this + entry belongs to." + ::= { outOfDateDiskEntry 13 } + + outOfDateDiskSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { outOfDateDiskEntry 14 } + + outOfDateDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { outOfDateDiskEntry 15 } + + outOfDateDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { outOfDateDiskEntry 16 } + + outOfDateDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { outOfDateDiskEntry 17 } + + outOfDateDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { outOfDateDiskEntry 18 } + + outOfDateDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { outOfDateDiskEntry 19 } + + outOfDateDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { outOfDateDiskEntry 20 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the CIFS group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + cifsOptions OBJECT IDENTIFIER ::= { cifs 1 } + + cifsInfo OBJECT IDENTIFIER ::= { cifs 2 } + + cifsStats OBJECT IDENTIFIER ::= { cifs 3 } + + cifsMisc OBJECT IDENTIFIER ::= { cifs 4 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsOptions group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the CIFS protocol is active on the + filer." + ::= { cifsOptions 1 } + + cifsIsLoginEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether new CIFS connections to the filer + are currently allowed." + ::= { cifsOptions 2 } + + + cifsHostName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The host name used by the CIFS protocol on this + filer." + ::= { cifsOptions 3 } + + + cifsAltNames OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alternate names recognized by the filer." + ::= { cifsOptions 4 } + + + cifsDomainJoined OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Has the filer joined an NT domain? + If this value is true, cifsDomainName + will contain the name of the domain. + Otherwise, the filer may have joined + a WorkGroup, and cifsWGName will contain + the name of the WorkGroup. " + ::= { cifsOptions 5 } + + + cifsDomainName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The domain name used by the CIFS + protocol on this filer." + ::= { cifsOptions 6 } + + + cifsWGName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The workgroup name (if any) used by + the CIFS protocol on this filer." + ::= { cifsOptions 7 } + + + cifsDCName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the Domain Controller used by + this filer to authenticate users and file + requests." + ::= { cifsOptions 8 } + + + cifsIsWinsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if WINS name resolution is enabled + on the filer." + ::= { cifsOptions 9 } + + + cifsWinsServers OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name(s) of the WINS servers registered + with the filer." + ::= { cifsOptions 10 } + + + cifsSecurityModel OBJECT-TYPE + SYNTAX INTEGER { + unix(1), + pc(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Which type of authentication semantics + (Unix or PC) are in use for PC access to + Unix files on the filer. If Unix semantics + are in use, no ACL on a Unix file is ever + checked. If PC semantics are in use, the + share level ACL on the share containing the + file is used for authentication instead of + the group portion of the permissions on + the file." + ::= { cifsOptions 11 } + + + cifsPCGenericUser OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the generic PC user, if any. This + username is used for CIFS access by Unix users + who have not authenticated through CIFS or NT." + ::= { cifsOptions 12 } + + + cifsOplocksEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether oplocks are enabled on the filer." + ::= { cifsOptions 15 } + + + cifsLevel2OplocksEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether level 2 oplocks are enabled on the filer." + ::= { cifsOptions 16 } + + + cifsPreserveCase OBJECT-TYPE + SYNTAX INTEGER { + noPreserveCase(1), + preserveCase(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this option is set to preserve-case + (the default), all filename references + will be case preserving. Otherwise, + they are forced to lowercase." + ::= { cifsOptions 17 } + + + cifsSymlinksEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this option is enabled, CIFS accesses will + follow symbolic links using Unix semantics." + ::= { cifsOptions 19 } + + + cifsSymlinkCycleProtEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this option is enabled, CIFS accesses will + through symbolic links will check for cycles + in the link graph." + ::= { cifsOptions 20 } + + + cifsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the CIFS protocol is licensed on the + filer." + ::= { cifsOptions 21 } + + cifsPerClientStatsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True when cifs.per_client_stats are + being collected." + ::= { cifsOptions 22 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsInfo group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsStatus OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Encoding of CIFS startup state on the filer." + ::= { cifsInfo 1 } + + cifsNeedPW OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Does the administrative password need + to be set before start?" + ::= { cifsInfo 2 } + + cifsTimeToShutdown OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time remaining until CIFS shutdown" + ::= { cifsInfo 3 } + + + cifsMaxConnections OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of simultaneous CIFS + connections allowed on the filer." + ::= { cifsInfo 4 } + + cifsMaxTrees OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of simultaneous CIFS + trees allowed on the filer." + ::= { cifsInfo 5 } + + cifsMaxShares OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of simultaneous CIFS + shares allowed on the filer." + ::= { cifsInfo 6 } + + cifsMaxFiles OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of concurrently open CIFS + files and directories allowed on the filer." + ::= { cifsInfo 7 } + + + cifsMaxACLs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is deprecated, and always has a + value of 0." + ::= { cifsInfo 8 } + + + cifsConnectedUsers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of CIFS users on the + filer." + ::= { cifsInfo 9 } + + cifsNTrees OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of CIFS trees on the + filer." + ::= { cifsInfo 10 } + + cifsNShares OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of CIFS shares on the + filer." + ::= { cifsInfo 11 } + + cifsNSessions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of active CIFS sessions + on the filer." + ::= { cifsInfo 12 } + + cifsNOpenFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open CIFS files and directories + on the filer." + ::= { cifsInfo 13 } + + cifsNOpenDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open CIFS directories on the + filer." + ::= { cifsInfo 14 } + + + cifsNOplockBreakWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open files waiting for oplock + break messages to be sent." + ::= { cifsInfo 16 } + + + cifsNOplockAckWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open files waiting for + acknowledgements to oplock break messages." + ::= { cifsInfo 17 } + + cifsSuspectOps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A smoothed average of the number of events + per second of the type frequently seen + during virus attacks." + ::= { cifsInfo 18 } + + cifsNDomainControllers OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Domain Controllers found." + ::= { cifsInfo 19 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsStats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains cifs statistics since the last + -- time the statistics were cleared + + cifsServ OBJECT IDENTIFIER ::= { cifsStats 1 } + + -- cifsPerClient OBJECT IDENTIFIER ::= { cifsStats 2 } + + -- no per-client stats are kept as of the 5.3 release + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsServ group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for CIFS + -- status, and calls processed since the last + -- time the statistics were cleared + + cifsOps OBJECT IDENTIFIER ::= { cifsServ 1 } + + cifsReqs OBJECT IDENTIFIER ::= { cifsServ 2 } + + cifsPercent OBJECT IDENTIFIER ::= { cifsServ 3 } + + cifsObsReqs OBJECT IDENTIFIER ::= { cifsServ 4 } + + cifsObsPercent OBJECT IDENTIFIER ::= { cifsServ 5 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsOps group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsTotalOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS operations done by the filer, + since the last time the statistics were cleared." + ::= { cifsOps 1 } + + cifsTotalCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS calls received, since + the last time the statistics were cleared. This + is the number of cifsTotalOps plus the number of + miscellaneous operations that are not logged + which were received in that time period." + ::= { cifsOps 2 } + + cifsBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received CIFS calls rejected, + since the last time the statistics were cleared." + ::= { cifsOps 3 } + + + cifsGetAttrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS operations to get + the attributes on a file or directory, since + the last time the statistics were reset." + ::= { cifsOps 4 } + + + cifsReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS Read operations on + a file or directory, since the last time the + statistics were reset." + ::= { cifsOps 5 } + + + cifsWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS write operations on + a file or directory, since the last time the + statistics were reset." + ::= { cifsOps 6 } + + + cifsLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS file locking requests + since the last time the statistics were reset." + ::= { cifsOps 7 } + + + cifsOpens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of calls, via CIFS, to open + a file or directory, since the last time + the statistics were reset." + ::= { cifsOps 8 } + + + cifsDirOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS directory operations, + since the last time the statistics were reset." + ::= { cifsOps 9 } + + + cifsOthers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS operations, since the + last time the statistics were reset, that + don't fall into the categories for GetAttr, + SetAttr, Read, Write, Lock, DirOp and Open." + ::= { cifsOps 10 } + + cifsSetAttrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS operations to set + the attributes on a file or directory, since + the last time the statistics were reset." + ::= { cifsOps 11 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsReqs group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for the number of + -- calls received for each CIFS SMB request + -- since the last time the statistics were cleared + + smbNegProts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NEGOTIATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 1 } + + smbSessionSetupAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SESSION_SETUP_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 2 } + + smbLogoffAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOGOFF_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 3 } + + smbTreeConnectAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 4 } + + smbTreeDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_DISCONNECT requests, + since the last time the statistics were cleared." + ::= { cifsReqs 5 } + + smbTrans2QueryFSInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FS_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 6 } + + smbEchos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB ECHO requests, + since the last time the statistics were cleared." + ::= { cifsReqs 7 } + + smbNTCancels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests, since the + last time the statistics were cleared." + ::= { cifsReqs 8 } + + smbNTCreateAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CREATE_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 9 } + + smbNTTransactCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_CREATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 10 } + + smbCreateTemporaries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB CREATE_TEMPORARY operation is not presently + supported, so this value should always be zero." + ::= { cifsReqs 11 } + + smbReadAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 12 } + + smbWriteAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 13 } + + smbLockingAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCKING_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 14 } + + smbSeeks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEEK requests, + since the last time the statistics were cleared." + ::= { cifsReqs 15 } + + smbFlushes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FLUSH requests, + since the last time the statistics were cleared." + ::= { cifsReqs 16 } + + smbCloses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 17 } + + smbDeletes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 18 } + + smbRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB RENAME requests, + since the last time the statistics were cleared." + ::= { cifsReqs 19 } + + smbMoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB MOVE request is not presently supported, + so this value should always be zero." + ::= { cifsReqs 20 } + + smbCopies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB COPY request is not presently supported, + so this value should always be zero." + ::= { cifsReqs 21 } + + smbTrans2QueryPathInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_PATH_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 22 } + + smbTrans2QueryFileInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FILE_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 23 } + + smbTrans2SetPathInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_PATH_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 24 } + + smbTrans2SetFileInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_FILE_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 25 } + + smbDeleteDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE_DIRECTORY requests, + since the last time the statistics were cleared." + ::= { cifsReqs 26 } + + smbCheckDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB COPY request is not presently supported, + so this value should always be zero." + ::= { cifsReqs 27 } + + smbTrans2FindFirst2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_FIRST2 requests, + since the last time the statistics were cleared." + ::= { cifsReqs 28 } + + smbTrans2FindNext2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_NEXT2 requests, + since the last time the statistics were cleared." + ::= { cifsReqs 29 } + + smbFindClose2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FIND_CLOSE2 requests, + since the last time the statistics were cleared." + ::= { cifsReqs 30 } + + smbNTTransactNotifyChgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_NOTIFY_CHANGE + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 31 } + + smbTrans2GetDFSReferrals OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB TRANS2_GET_DFS_REFERRAL request is + not presently supported, so this value should + always be zero." + ::= { cifsReqs 32 } + + smbTrans2ReportDFSIncs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB TRANS2_REPORT_DFS_INCONSISTENCY request is + not presently supported, so this value should + always be zero." + ::= { cifsReqs 33 } + + smbOpenPrintFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB OPEN_PRINT_FILE request is not supported, + so this value should always be zero." + ::= { cifsReqs 34 } + + smbGetPrintQueues OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB GET_PRINT_QUEUE request is not supported, + so this value should always be zero." + ::= { cifsReqs 35 } + + smbNTTransactIoctls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_IOCTL requests, + since the last time the statistics were cleared." + ::= { cifsReqs 36 } + + smbNTTransactQuerySecDescs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_QUERY_SECURITY_DESC + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 37 } + + smbNTTransactSetSecDescs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_SET_SECURITY_DESC + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 38 } + + + smbTrans2CreateDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_CREATE_DIRECTORY + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 39 } + + + smbNTCancelCNs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + change notifications since the last time + the statistics were cleared." + ::= { cifsReqs 40 } + + smbNTCancelOthers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + operations other than change notifications, + since the last time the statistics + were cleared." + ::= { cifsReqs 41 } + + smb2Echos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 ECHO requests, + since the last time the statistics were cleared." + ::= { cifsReqs 42 } + + smb2NegProts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 NEGOTIATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 43 } + + smb2SessionSetups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SESSION_SETUP requests, + since the last time the statistics were cleared." + ::= { cifsReqs 44 } + + smb2Logoffs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 LOGOFF requests, + since the last time the statistics were cleared." + ::= { cifsReqs 45 } + + smb2TreeConnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 TREE_CONNECT requests, + since the last time the statistics were cleared." + ::= { cifsReqs 46 } + + smb2TreeDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 TREE_DISCONNECT requests, + since the last time the statistics were cleared." + ::= { cifsReqs 47 } + + + smb2Cancels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CANCEL requests, + since the last time the statistics were cleared." + ::= { cifsReqs 48 } + + smb2Creates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CREATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 49 } + + smb2IpcCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 IPC CREATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 50 } + + smb2Reads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 READ requests, + since the last time the statistics were cleared." + ::= { cifsReqs 51 } + + smb2Writes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 WRITE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 52 } + + smb2IpcReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 IPC READ requests, + since the last time the statistics were cleared." + ::= { cifsReqs 53 } + + smb2IpcWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 IPC WRITE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 54 } + + smb2Locks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 LOCK requests, + since the last time the statistics were cleared." + ::= { cifsReqs 55 } + + smb2UnLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 UNLOCK requests, + since the last time the statistics were cleared." + ::= { cifsReqs 56 } + + smb2OplkBrkAck OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 Oplock Break Acknowledgements, + since the last time the statistics were cleared." + + ::= { cifsReqs 57 } + + smb2Flushs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FLUSH requests, + since the last time the statistics were cleared." + ::= { cifsReqs 58 } + + smb2Closes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CLOSE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 59 } + + smb2QueryFileBasicInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_BASIC_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 60 } + + + smb2QueryFileStandardInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_STANDARD_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 61 } + + smb2QueryFileInternalInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_INT_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 62 } + + smb2QueryFileEAInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_EA_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 63 } + + smb2QueryFileFullEAInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_FULL_EA_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 64 } + + smb2QueryFileModeInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_MODE_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 65 } + + smb2QueryFileAltNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_ALT_NAME_INFO_ + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 66 } + + smb2QueryFileStreamInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_STREAM_INFO_ + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 67 } + + smb2QueryFileNetOpenInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_NET_OPEN_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 68 } + + smb2QueryFileAttrTagInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_ATTR_TAG_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 69 } + + smb2QueryFileUnsupporteds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 Unsupported QUERY_FILE_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 70 } + + smb2QueryFileInvalids OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 invalid QUERY_FILE_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 71 } + + smb2QueryFsVolInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_VOLUME_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 72 } + + smb2QueryFsSizeInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_SIZE_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 73 } + + smb2QueryFsDeviceInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_DEVICE_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 74 } + + smb2QueryFsAttrInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_ATTR_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 75 } + + smb2QueryFsFullSizeInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_FULL_SIZE_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 76 } + + smb2QueryFsObjectIdInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_OBJECT_ID_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 77 } + + smb2QueryFsInvalids OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 invalid QUERY_FS_INFO + requestd, since the last time the statistics + were cleared." + ::= { cifsReqs 78 } + + smb2SetBasicInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_BASIC_INFO + requesed, since the last time the statistics + were cleared." + ::= { cifsReqs 79 } + + smb2SetRenameInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FILE_RENAME_INFO + requeved, since the last time the statistics + were cleared." + ::= { cifsReqs 80 } + + smb2SetFileLinkInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FILE_LINK_INFO + requived, since the last time the statistics + were cleared." + ::= { cifsReqs 81 } + + smb2SetFileDispInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FILE_DISP_INFO + reqeived, since the last time the statistics + were cleared." + ::= { cifsReqs 82 } + + smb2SetFullEaInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FULL_EA_INFO + received, since the last time the statistics + were cleared." + ::= { cifsReqs 83 } + + smb2SetModeInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_MODE_INFO + received, since the last time the statistics + were cleared." + ::= { cifsReqs 84 } + + smb2SetAllocInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_ALLOC_INFO + received, since the last time the statistics + were cleared." + ::= { cifsReqs 85 } + + smb2SetEofInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_EOF_INFO + received, since the last time the statistics + were cleared." + ::= { cifsReqs 86 } + + smb2SetInfoUnsupporteds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 Unsupported SET_INFO + received, since the last time the statistics + were cleared." + ::= { cifsReqs 87 } + + smb2SetInfoInvalids OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of invalid SMB2 SET_INFO + received, since the last time the statistics + were cleared." + ::= { cifsReqs 88 } + + smb2FsctlPipeTransceives OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_PIPE_TRANSCEIVE + received, since the last time the statistics + were cleared." + ::= { cifsReqs 89 } + + smb2FsctlPipePeeks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_PIPE_PEEK + received, since the last time the statistics + were cleared." + ::= { cifsReqs 90 } + + smb2FsctlEnumSnapshotss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_ENUMERATE_SNAPSHOTS + received, since the last time the statistics + were cleared." + ::= { cifsReqs 91 } + + smb2FsctlDfsReferralss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_DFS_REFERRALS + received, since the last time the statistics + were cleared." + ::= { cifsReqs 92 } + + smb2FsctlSetSparses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_SET_SPARSE + received, since the last time the statistics + were cleared." + ::= { cifsReqs 93 } + + smb2FsctlSecureShares OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_SECURE_SHARE + received, since the last time the statistics + were cleared." + ::= { cifsReqs 94 } + + smb2FsctlFileUnsupporteds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Unsupported SMB2 File FSCTL + received, since the last time the statistics + were cleared." + ::= { cifsReqs 95 } + + smb2FsctlIpcUnsupporteds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Unsupported SMB2 IPC FSCTL + received, since the last time the statistics + were cleared." + ::= { cifsReqs 96 } + + smb2QueryDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_DIR + received, since the last time the statistics + were cleared." + ::= { cifsReqs 97 } + + smb2ChgNfys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CHANGE_NOTIFY + received, since the last time the statistics + were cleared." + ::= { cifsReqs 98 } + + smb2QuerySecurityInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_INFO SECURITY requests + received, since the last time the statistics + were cleared." + ::= { cifsReqs 99 } + + smb2SetSecurityInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_INFO SECURITY requests + received, since the last time the statistics + were cleared." + ::= { cifsReqs 100 } + + smb2QueryFileAccessInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_ACCESS_INFO + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 101 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsObsReqs group + -- (Obsolete SMB requests) + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + obsSmbClosePrintFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE_PRINT_FILE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 1 } + + obsSmbCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 2 } + + obsSmbCreateDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_DIRECTORY requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 3 } + + obsSmbCreateNews OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_NEW requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 4 } + + obsSmbLockAndReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_AND_READ requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 5 } + + obsSmbLockByteRanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_BYTE_RANGE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 6 } + + obsSmbOpens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 7 } + + obsSmbOpenAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 8 } + + obsSmbProcessExits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB PROCESS_EXIT requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 9 } + + obsSmbQueryInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 10 } + + obsSmbQueryInfo2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION2 requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 11 } + + obsSmbReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 12 } + + obsSmbReadMPXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB READ_MPX request is not supported, + so this value should always be zero." + ::= { cifsObsReqs 13 } + + obsSmbReadRaws OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_RAW requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 14 } + + obsSmbSearchs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEARCH requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 15 } + + obsSmbSetInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 16 } + + obsSmbSetInfo2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION2 requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 17 } + + obsSmbQueryInfoDisks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION_DISK + requests, since the last time the statistics + were cleared." + ::= { cifsObsReqs 18 } + + obsSmbTrans2Open2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_OPEN2 requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 19 } + + obsSmbTreeConnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 20 } + + obsSmbUnlockByteRanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB UNLOCK_BYTE_RANGE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 21 } + + obsSmbWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 22 } + + obsSmbWriteAndUnlocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_UNLOCK requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 23 } + + obsSmbWriteAndCloses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_CLOSE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 24 } + + obsSmbWriteMPXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB WRITE_MPX request is not supported, + so this value should always be zero." + ::= { cifsObsReqs 25 } + + obsSmbWritePrintFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB WRITE_PRINT_FILE request is not supported, + so this value should always be zero." + ::= { cifsObsReqs 26 } + + obsSmbWriteRaws OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_RAW requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 27 } + + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsPercent group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for the number of + -- calls received for each CIFS SMB request + -- as a percentage of total CIFS calls received, + -- since the last time the statistics were cleared + + smbNegProtPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NEGOTIATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 1 } + + smbSessionSetupAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SESSION_SETUP_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 2 } + + smbLogoffAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOGOFF_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 3 } + + smbTreeConnectAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 4 } + + smbTreeDisconnectAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_DISCONNECT_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 5 } + + smbTrans2QueryFSInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FS_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 6 } + + smbEchoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB ECHO requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 7 } + + smbNTCancelPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 8 } + + smbCreateAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CREATE_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 9 } + + smbTransactCreatePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_CREATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 10 } + + smbCreateTemporaryPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_TEMPORARY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 11 } + + smbReadAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 12 } + + smbWriteAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 13 } + + smbLockingAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCKING_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 14 } + + smbSeekPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEEK requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 15 } + + smbFlushPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FLUSH requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 16 } + + smbClosePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 17 } + + smbDeletePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 18 } + + smbRenamePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB RENAME requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 19 } + + smbMovePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB MOVE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 20 } + + smbCopyPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB COPY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 21 } + + smbTrans2QueryPathInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_PATH_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 22 } + + smbTrans2QueryFileInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FILE_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 23 } + + smbTrans2SetPathInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_PATH_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 24 } + + smbTrans2SetFileInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_FILE_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 25 } + + smbDeleteDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE_DIRECTORY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 26 } + + smbCheckDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CHECK_DIRECTORY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 27 } + + + smbTrans2FindFirst2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_FIRST2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 28 } + + smbTrans2FindNext2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_NEXT2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 29 } + + smbFindClose2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FIND_CLOSE2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 30 } + + smbNTTransactNotifyChgPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_NOTIFY_CHANGE + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 31 } + + smbTrans2GetDFSReferralPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_GET_DFS_REFERRAL + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 32 } + + smbTrans2ReportDFSIncPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_REPORT_DFS_INCONSISTENCY + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 33 } + + smbOpenPrintFilePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN_PRINT_FILE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 34 } + + smbGetPrintQueuePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB GET_PRINT_QUEUE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 35 } + + smbNTTransactIoctlPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_IOCTL requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 36 } + + smbNTTransactQuerySecDescPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_QUERY_SECURITY_DESC + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 37 } + + smbNTTransactSetSecDescPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_SET_SECURITY_DESC + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 38 } + + + smbTrans2CreateDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_CREATE_DIRECTORY + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 39 } + + + smbNTCancelCNPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + change notifications, as a percentage of + total CIFS calls received, since the last + time the statistics were cleared." + ::= { cifsPercent 40 } + + smbNTCancelOtherPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + calls other than change notifications, as + a percentage of total CIFS calls received, + since the last time the statistics were + cleared." + ::= { cifsPercent 41 } + + smb2EchoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 ECHO requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 42 } + + smb2NegProtPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 NEGOTIATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 43 } + + smb2SessionSetupPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SESSION_SETUP requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 44 } + + smb2LogoffPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 LOGOFF requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 45 } + + smb2TreeConnectPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 TREE_CONNECT requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 46 } + + smb2TreeDisconnectPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 TREE_DISCONNECT requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 47 } + + + smb2CancelPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CANCEL requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 48 } + + smb2CreatePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CREATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 49 } + + smb2IpcCreatePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 IPC CREATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 50 } + + smb2ReadPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 READ requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 51 } + + smb2WritePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 WRITE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 52 } + + smb2IpcReadPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 IPC READ requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 53 } + + smb2IpcWritePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 IPC WRITE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 54 } + + smb2LockPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 LOCK requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 55 } + + smb2UnLockPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 UNLOCK requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 56 } + + smb2OplkBrkAckPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 Oplock Break Acknowledgement, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 57 } + + smb2FlushPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FLUSH requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 58 } + + smb2ClosePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 CLOSE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 59 } + + smb2QueryFileBasicInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_BASIC_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 60 } + + + smb2QueryFileStandardInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_STANDARD_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 61 } + + smb2QueryFileInternalInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_INT_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 62 } + + smb2QueryFileEAInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_EA_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 63 } + + smb2QueryFileFullEAInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_FULL_EA_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 64 } + + smb2QueryFileModeInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_MODE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 65 } + + smb2QueryFileAltNamePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_ALT_NAME_INFO_ + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 66 } + + smb2QueryFileStreamInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_STREAM_INFO_ + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 67 } + + smb2QueryFileNetOpenInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_NET_OPEN_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 68 } + + smb2QueryFileAttrTagInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FILE_ATTR_TAG_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 69 } + + smb2QueryFileUnsupportedPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 Unsupported QUERY_FILE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 70 } + + smb2QueryFileInvalidPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 invalid QUERY_FILE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 71 } + + smb2QueryFsVolInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_VOLUME_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 72 } + + smb2QueryFsSizeInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_SIZE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 73 } + + smb2QueryFsDeviceInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_DEVICE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 74 } + + smb2QueryFsAttrInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_ATTR_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 75 } + + smb2QueryFsFullSizeInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_FULL_SIZE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 76 } + + smb2QueryFsObjectIdInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_FS_OBJECT_ID_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 77 } + + smb2QueryFsInvalidPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 invalid QUERY_FS_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 78 } + + smb2SetBasicInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_BASIC_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 79 } + + smb2SetRenameInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FILE_RENAME_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 80 } + + smb2SetFileLinkInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FILE_LINK_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 81 } + + smb2SetFileDispInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FILE_DISP_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 82 } + + smb2SetFullEaInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_FULL_EA_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 83 } + + smb2SetModeInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_MODE_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 84 } + + smb2SetAllocInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_ALLOC_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 85 } + + smb2SetEofInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 SET_EOF_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 86 } + + smb2SetInfoUnsupportedPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 Unsupported SET_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 87 } + + smb2SetInfoInvalidPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of invalid SMB2 SET_INFO + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 88 } + + smb2FsctlPipeTransceivePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_PIPE_TRANSCEIVE + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 89 } + + smb2FsctlPipePeekPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_PIPE_PEEK + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 90 } + + smb2FsctlEnumSnapshotsPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_ENUMERATE_SNAPSHOTS + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 91 } + + smb2FsctlDfsReferralsPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_DFS_REFERRALS + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 92 } + + smb2FsctlSetSparsePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_SET_SPARSE + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 93 } + + smb2FsctlSecureSharePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 FSCTL_SECURE_SHARE + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 94 } + + smb2FsctlFileUnsupportedPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Unsupported SMB2 File FSCTL + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 95 } + + smb2FsctlIpcUnsupportedPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Unsupported SMB2 IPC FSCTL + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 96 } + + smb2QueryDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB2 QUERY_DIR + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 97 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the obsPct group + -- (Obsolete SMB requests) + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + obsSmbClosePrintFilePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE_PRINT_FILE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 1 } + + obsSmbCreatePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 2 } + + obsSmbCreateDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_DIRECTORY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 3 } + + obsSmbCreateNewPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_NEW requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 4 } + + obsSmbLockAndReadPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_AND_READ requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 5 } + + obsSmbLockByteRangePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_BYTE_RANGE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 6 } + + obsSmbOpenPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 7 } + + obsSmbOpenAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 8 } + + obsSmbProcessExitPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB PROCESS_EXIT requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 9 } + + obsSmbQueryInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 10 } + + obsSmbQueryInfo2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 11 } + + obsSmbReadPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 12 } + + obsSmbReadMPXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_MPX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 13 } + + obsSmbReadRawPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_RAW requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 14 } + + obsSmbSearchPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEARCH requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 15 } + + obsSmbSetInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 16 } + + obsSmbSetInfo2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 17 } + + obsSmbQueryInfoDiskPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION_DISK + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsObsPercent 18 } + + obsSmbTrans2Open2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_OPEN2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 19 } + + obsSmbTreeConnectPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 20 } + + obsSmbUnlockByteRangePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB UNLOCK_BYTE_RANGE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 21 } + + obsSmbWritePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 22 } + + obsSmbWriteAndUnlockPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_UNLOCK requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 23 } + + obsSmbWriteAndClosePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_CLOSE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 24 } + + obsSmbWriteMPXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_MPX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 25 } + + obsSmbWritePrintFilePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_PRINT_FILE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 26 } + + obsSmbWriteRawPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_RAW requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 27 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsMisc group + -- These statistics are primarily of interest to + -- NetApp developers. + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsCancelLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 1 } + + cifsWaitLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 2 } + + cifsCopyToAligns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 3 } + + cifsAlignedSmalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 4 } + + cifsAlignedLarges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 5 } + + cifsAlignedSmallRels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 6 } + + cifsAlignedLargeRels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 7 } + + cifsMbufWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 8 } + + cifsNbtWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 9 } + + cifsCwaWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 10 } + + cifsMultipleVCs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 11 } + + cifsPDCUpcalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 12 } + + cifsQueuedWriteRaws OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 13 } + + cifsNBTDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 14 } + + cifsSMBDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 15 } + + cifsDupDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 16 } + + cifsOpLkBatchToL2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 17 } + + cifsOpLkBatchToNones OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 18 } + + cifsOpLkL2ToNones OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 19 } + + cifsOpLkNoBreakAcks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 20 } + + cifsOpLkIgnoredAcks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 21 } + + cifsOpLkMultiWaiters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 22 } + + cifsSharingErrorRetries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 23 } + + cifsOpLkWaiterTimedOuts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 24 } + + cifsOpLkDelayedBreaks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 25 } + + cifsOpLkEarlyNFSs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 26 } + + cifsOpLkNFSWaiteds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 27 } + + cifsMaxNFSBkWaiterCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 28 } + + cifsClearTextPasswd OBJECT-TYPE + SYNTAX INTEGER { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates whether the cifs clients are + using clear text passwords when authenticating + with the filer. If cifsDomainJoined is false and + this variable is also false, then the filer is + using NT Security from a local user list." + ::= { cifsMisc 29 } + + cifsSmb2MidUsedHash OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 30 } + + cifsSmb2MidUnusedHash OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 31 } + + cifsSmb2MidInvReject OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 32 } + + cifsSmb2DurableCreateReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 33 } + + cifsSmb2DurableCreateSucceeded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 34 } + + cifsSmb2DurableReclaimReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 35 } + + cifsSmb2DurableReclaimSucceeded OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 36 } + + cifsSmb2DurableHandlePreserved OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 37 } + + cifsSmb2DurableHandlePurged OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 38 } + + cifsSmb2DurableHandleExpired OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 39 } + + cifsSmb2FileDirInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 40 } + + cifsSmb2FileFullDirInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 41 } + + cifsSmb2FileIdFullDirInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 42 } + + cifsSmb2FileBothDirInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 43 } + + cifsSmb2FileIdBothDirInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 44 } + + cifsSmb2FileNamesInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 45 } + + cifsSmb2FileDirUnsupported OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 46 } + + cifsSmb2QueryInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 47 } + + cifsSmb2SetInfo OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 48 } + + cifsSmb2Ioctl OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 49 } + + cifsSmb2RelatedCompRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 50 } + + cifsSmb2UnRelatedCompRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 51 } + + cifsSmb2FileRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 52 } + + cifsSmb2PipeRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 53 } + + cifsSmb2Unsupported OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 54 } + + cifsSmb2InvalidSignatures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of CIFS SMB 2.0 messages received + with incorrect signature." + ::= { cifsMisc 55 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncOptions OBJECT IDENTIFIER ::= { netcache 1 } + + ncInfo OBJECT IDENTIFIER ::= { netcache 2 } + + ncStats OBJECT IDENTIFIER ::= { netcache 3 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Netcache is enabled on this system." + ::= { ncOptions 1 } + + ncIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Netcache is licensed on this system." + ::= { ncOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the dns options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncDnsOptions OBJECT IDENTIFIER ::= { ncOptions 3 } + + ncDnsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Domain Name System (DNS) + is enabled on this system." + ::= { ncDnsOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the http options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncHttpOptions OBJECT IDENTIFIER ::= { ncOptions 4 } + + ncHttpIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether HTTP is enabled on this system." + ::= { ncHttpOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the nntp options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNntpOptions OBJECT IDENTIFIER ::= { ncOptions 5 } + + ncNntpIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NNTP is enabled on this system." + ::= { ncNntpOptions 1 } + + ncNntpIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NNTP is licensed on this system." + ::= { ncNntpOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the streaming options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncStreamingOptions OBJECT IDENTIFIER ::= { ncOptions 6 } + + ncStreamingMmsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Media Services (MMS) + is enabled on this system." + ::= { ncStreamingOptions 1 } + + ncStreamingMmsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Windows Media Service (MMS) + is licensed on this system." + ::= { ncStreamingOptions 2 } + + ncStreamingMmsProIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Windows Media Service Pro (MMS) + is licensed on this system." + ::= { ncStreamingOptions 3 } + + ncStreamingRtspIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Real Time Streaming Protocol (RTSP) + is enabled on this system." + ::= { ncStreamingOptions 4 } + + ncStreamingQuickTimeIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether QuickTime is licensed on this system." + ::= { ncStreamingOptions 5 } + + ncStreamingRealIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Real Media streaming is licensed on + this system." + ::= { ncStreamingOptions 6 } + + ncStreamingMmsUltraIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Windows Media Service Ultra (MMS) + is licensed on this system." + ::= { ncStreamingOptions 7 } + + ncStreamingRealProIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Real Media Pro streaming is licensed on + this system." + ::= { ncStreamingOptions 8 } + + ncStreamingRealUltraIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Real Media Ultra streaming is licensed on + this system." + ::= { ncStreamingOptions 9 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the icap options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncIcapOptions OBJECT IDENTIFIER ::= { ncOptions 7 } + + ncIcapIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether ICAP v0.95 is enabled on this system." + ::= { ncIcapOptions 1 } + + ncIcapIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether ICAP is licensed on this system." + ::= { ncIcapOptions 2 } + + ncIcapv1IsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether ICAP v1.0 is enabled on this system." + ::= { ncIcapOptions 3 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the grm options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncGrmOptions OBJECT IDENTIFIER ::= { ncOptions 8 } + + ncGrmServerOptions OBJECT IDENTIFIER ::= { ncGrmOptions 1 } + + ncGrmAgentOptions OBJECT IDENTIFIER ::= { ncGrmOptions 2 } + + ncGrmServerIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Server + is enabled on this system." + ::= { ncGrmServerOptions 1 } + + ncGrmServerIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Server + is licensed on this system." + ::= { ncGrmServerOptions 2 } + + ncGrmAgentIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Agent + enabled on this system." + ::= { ncGrmAgentOptions 1 } + + ncGrmAgentIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Agent + is licensed on this system." + ::= { ncGrmAgentOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the content director options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncCdOptions OBJECT IDENTIFIER ::= { ncOptions 9 } + + ncCdIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Content Director is enabled on this system." + ::= { ncCdOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the https options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncHttpsProxyOptions OBJECT IDENTIFIER ::= { ncOptions 10 } + + ncHttpsProxyIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether HTTPS is enabled on this system." + ::= { ncHttpsProxyOptions 1 } + + ncHttpsProxyIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether HTTPS is licensed on this system." + ::= { ncHttpsProxyOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cms options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + ncCmsOptions OBJECT IDENTIFIER ::= { ncOptions 11 } + + ncCmsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether CMS is enabled on this system." + ::= { ncCmsOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache info group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Netcache version string." + ::= { ncInfo 1 } + + ncAdminPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netcache Admin Port number - this + is the first in the list of admin + ports configured for the NetCache." + ::= { ncInfo 2 } + + + accelmonitor OBJECT IDENTIFIER ::= { ncInfo 3 } + + -- the acceleration monitor group + -- Implementation of the Acceleration Monitor (accelmonitor. + + amNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of entries in the acceleration monitor table." + ::= { accelmonitor 1 } + + amMonitor OBJECT-TYPE + SYNTAX INTEGER { + togglea(1), + toggleb(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Variable for user defined SNMP traps to monitor whether there has been a status change of any of the acceleration + servers that netcache is probing." + ::= { accelmonitor 2 } + + amMonitorString OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Used in conjunction with amMonitor. This returns a string + in format of: 'IP:port status' which reports the status + of all the servers netcache is accelerating as of last + status change." + ::= { accelmonitor 3 } + + -- accelmonitor table + + -- the Acceleration Monitor table contains information of the + -- the acceleration server, port that we are monitoring and its + -- status. + + amTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of acceleration server and port entries. The + number of entries is given by the value of amNumber." + ::= { accelmonitor 4 } + + amEntry OBJECT-TYPE + SYNTAX AmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An acceleration monitor entry contains: the server + IP address, server port and the status." + INDEX { amIndex } + ::= { amTable 1 } + + AmEntry ::= + SEQUENCE { + amIndex + Integer32, + amAddress + IpAddress, + amPort + Integer32, + amStatus + Integer32 + } + + amIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A unique value for each entry in the acceleration monitor + table." + ::= { amEntry 1 } + + amAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the acceleration server the NetCache + is monitoring." + ::= { amEntry 2 } + + amPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The corresponding port on the server that NetCache is + monitoring." + ::= { amEntry 3 } + + amStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + up(2), + down(3), + inactive(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the service running on the server. + active - in queue but no probes done yet. + up - the server is reachable and responding to probes. + down - the server is unreachable. + inactive - monitoring is disabled." + ::= { amEntry 4 } + + ncLocalConfigChanged OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the local configuration file on NetCache + was changed without using DFM configuration management." + ::= { ncInfo 4 } + + ncLocalConfigVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current cache configuration's version." + ::= { ncInfo 5 } + + grmMonitor OBJECT IDENTIFIER ::= { ncInfo 6 } + + -- the GRM monitor group + -- Implementation of the GRM agent monitor + + grmMonitorToggle OBJECT-TYPE + SYNTAX INTEGER { + togglea(1), + toggleb(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Variable for user defined SNMP traps to monitor whether there has been a status change of any of the GRM + agents reporting to this GRM server." + ::= { grmMonitor 1 } + + grmMonitorString OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Used in conjunction with grmMonitor. This returns a string + in format of: 'IP status.' which reports the status + of all the GRM agents reporting to this GRM server as of last + status change." + ::= { grmMonitor 2 } + + takeoverinfo OBJECT IDENTIFIER ::= { ncInfo 7 } + + -- the takeover information group + -- information same as status.takeover.addrs and + -- status.takeover.mode and status.takeover.partner_status + + takeoverAddrs OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the list of interfaces and their corresponding IP + addresses of the partner NetCache that this appliance has taken over." + ::= { takeoverinfo 1 } + + takeoverMode OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + takingover(2), + takenover(3), + giveback(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current takeover mode of this appliance." + ::= { takeoverinfo 2 } + + takeoverStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + unknown(2), + failed(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of the takeover partner of + this appliance. up(1) indicates that the takeover partner is + reachable. unknown(2) indicates that an unknown error occured. + failed(3) indicates that the partner has failed, takeoverAddrs + indicates the partner's IP address this appliance has taken + over." + ::= { takeoverinfo 3 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache stats group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncObjectsStored OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of objects stored currently." + ::= { ncStats 1 } + + ncBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes sent to clients" + ::= { ncStats 2 } + + ncBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes received from clients" + ::= { ncStats 3 } + + ncBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes sent to servers" + ::= { ncStats 4 } + + ncBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes received from servers" + ::= { ncStats 5 } + + ncHttp OBJECT IDENTIFIER ::= { ncStats 6 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the http stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncHttpTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP requests so far" + ::= { ncHttp 1 } + + ncHttpHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP requests that resulted in hits so far" + ::= { ncHttp 2 } + + ncHttpMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP requests that resulted in misses so far" + ::= { ncHttp 3 } + + ncHttpServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to HTTP servers (active and idle)" + ::= { ncHttp 4 } + + ncHttpCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to HTTP clients (active and idle)" + ::= { ncHttp 5 } + + ncHttpBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for HTTP requests" + ::= { ncHttp 6 } + + ncHttpObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate HTTP requests" + ::= { ncHttp 7 } + + ncHttpRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time in milliseconds per byte for HTTP requests." + ::= { ncHttp 8 } + + ncHttpAvgRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for all HTTP requests." + ::= { ncHttp 9 } + + ncHttpAvgHitRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP hit requests." + ::= { ncHttp 10 } + + ncHttpAvgMissRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP miss requests." + ::= { ncHttp 11 } + + ncHttpInstAvgRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for all HTTP requests during the last 60 seconds." + ::= { ncHttp 12 } + + + ncHttpInstAvgHitRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP hit requests during the last 60 seconds." + ::= { ncHttp 13 } + + ncHttpInstAvgMissRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP miss requests during the last 60 seconds." + ::= { ncHttp 14 } + + ncHttpTotalRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP requests" + ::= { ncHttp 15 } + + ncHttpTotalHitRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP HIT requests" + ::= { ncHttp 16 } + + ncHttpTotalMissRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP MISS requests" + ::= { ncHttp 17 } + + ncHttpBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes sent to clients" + ::= { ncHttp 18 } + + ncHttpBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes received from clients" + ::= { ncHttp 19 } + + ncHttpBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes sent to servers" + ::= { ncHttp 20 } + + ncHttpBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes received from servers" + ::= { ncHttp 21 } + + ncHttpHighTotalRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP requests. + This object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 22 } + + ncHttpLowTotalRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP requests. + This object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 23 } + + ncHttpHighTotalHitRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP HIT requests. + This object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 24 } + + ncHttpLowTotalHitRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP HIT requests. + This object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 25 } + + ncHttpHighTotalMissRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP MISS requests. + This object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 26 } + + ncHttpLowTotalMissRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP MISS requests. + This object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 27 } + + ncHttpReqRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Request Rate for HTTP requests" + ::= { ncHttp 28 } + + ncHttpObjHitRateLast1Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP object hit rate in the last 1 minute." + ::= { ncHttp 29 } + + ncHttpObjHitRateLast5Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP object hit rate in the last 5 minutes." + ::= { ncHttp 30 } + + ncHttpByteHitRateLast1Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP byte hit rate in the last 1 minute." + ::= { ncHttp 31 } + + ncHttpByteHitRateLast5Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP byte hit rate in the last 5 minutes." + ::= { ncHttp 32 } + + ncHttpBWSavingsLast1Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for HTTP requests in the last + 1 minute" + ::= { ncHttp 33 } + + ncHttpBWSavingsLast5Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for HTTP requests in the last + 5 minutes" + ::= { ncHttp 34 } + + ncHttpActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to HTTP servers" + ::= { ncHttp 35 } + + ncHttpActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to HTTP clients" + ::= { ncHttp 36 } + + ncHttpAccelTable OBJECT-TYPE + SYNTAX SEQUENCE OF NcHttpAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of kilobytes sent to and recieved from the client side + per acceleration rule" + + ::= { ncHttp 37 } + + ncHttpAccelEntry OBJECT-TYPE + SYNTAX NcHttpAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the number of kilobytes sent and + received to/from the clients side per acceleration + rule" + + INDEX { ncHttpAccelIndex } + ::= { ncHttpAccelTable 1 } + + NcHttpAccelEntry ::= + SEQUENCE { + ncHttpAccelIndex Integer32, + ncHttpAccelKbytesFromClient Counter32, + ncHttpAccelKbytesToClient Counter32, + ncHttpAccelHits Counter32 + } + + ncHttpAccelIndex OBJECT-TYPE + SYNTAX Integer32 (1..513) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each entry in the http acceleration + stats table" + ::= { ncHttpAccelEntry 1 } + + ncHttpAccelKbytesFromClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes received from the client + for this acceleration rule" + ::= { ncHttpAccelEntry 2 } + + ncHttpAccelKbytesToClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes sent to the client for + this acceleration rule" + ::= { ncHttpAccelEntry 3 } + + ncHttpAccelHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of times this acceleration rule has been hit" + ::= { ncHttpAccelEntry 4 } + + ncHttpsAccelTable OBJECT-TYPE + SYNTAX SEQUENCE OF NcHttpsAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of kilobytes sent to and recieved from the client side + per acceleration rule" + + ::= { ncHttp 38 } + + ncHttpsAccelEntry OBJECT-TYPE + SYNTAX NcHttpsAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the number of kilobytes sent and + received to/from the clients side per acceleration + rule" + + INDEX { ncHttpsAccelIndex } + ::= { ncHttpsAccelTable 1 } + + NcHttpsAccelEntry ::= + SEQUENCE { + ncHttpsAccelIndex Integer32, + ncHttpsAccelKbytesFromClient Counter32, + ncHttpsAccelKbytesToClient Counter32, + ncHttpsAccelHits Counter32 + } + + ncHttpsAccelIndex OBJECT-TYPE + SYNTAX Integer32 (1..513) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each entry in the http acceleration + stats table" + ::= { ncHttpsAccelEntry 1 } + + ncHttpsAccelKbytesFromClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes received from the client + for this acceleration rule" + ::= { ncHttpsAccelEntry 2 } + + ncHttpsAccelKbytesToClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes sent to the client for + this acceleration rule" + ::= { ncHttpsAccelEntry 3 } + + ncHttpsAccelHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of times this acceleration rule has been hit" + ::= { ncHttpsAccelEntry 4 } + + + ncNntp OBJECT IDENTIFIER ::= { ncStats 7 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the nntp stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNntpTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NNTP total requests so far" + ::= { ncNntp 1 } + ncNntpCacheableRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NNTP requests that were cacheable" + ::= { ncNntp 2 } + + ncNntpProxyRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NNTP requests that were non-cacheable" + ::= { ncNntp 3 } + + ncNntpServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to NNTP servers (active and idle)" + ::= { ncNntp 4 } + + ncNntpCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to NNTP clients (active and idle)" + ::= { ncNntp 5 } + + ncNntpBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for NNTP requests" + ::= { ncNntp 6 } + + ncNntpRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time per byte for NNTP requests" + ::= { ncNntp 7 } + + ncNntpBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes sent to clients" + ::= { ncNntp 8 } + + ncNntpBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes received from clients" + ::= { ncNntp 9 } + + ncNntpBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes sent to servers" + ::= { ncNntp 10 } + + ncNntpBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes received from servers" + ::= { ncNntp 11 } + + ncNntpObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate of NNTP requests" + ::= { ncNntp 12 } + + ncNntpActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to NNTP servers" + ::= { ncNntp 13 } + + ncNntpActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to NNTP clients" + ::= { ncNntp 14 } + + ncFtp OBJECT IDENTIFIER ::= { ncStats 8 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the ftp stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncFtpTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTP total requests so far" + ::= { ncFtp 1 } + + ncFtpHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTP requests that resulted in hits so far" + ::= { ncFtp 2 } + + ncFtpMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTP requests that resulted in misses so far" + ::= { ncFtp 3 } + + ncFtpServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to FTP servers (active and idle)" + ::= { ncFtp 4 } + + ncFtpCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to FTP clients (active and idle)" + ::= { ncFtp 5 } + + ncFtpBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for FTP requests" + ::= { ncFtp 6 } + + ncFtpRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time per byte for FTP requests" + ::= { ncFtp 7 } + + ncFtpBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes sent to clients" + ::= { ncFtp 8 } + + ncFtpBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes received from clients" + ::= { ncFtp 9 } + + ncFtpBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes sent to servers" + ::= { ncFtp 10 } + + ncFtpBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes received from servers" + ::= { ncFtp 11 } + + ncFtpObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate of FTP requests" + ::= { ncFtp 12 } + + ncFtpActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to FTP servers" + ::= { ncFtp 13 } + + ncFtpActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to FTP clients" + ::= { ncFtp 14 } + + ncStreaming OBJECT IDENTIFIER ::= { ncStats 9 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the streaming stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncStreamingServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to streaming servers (active and idle)" + ::= { ncStreaming 1 } + + ncStreamingCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to streaming clients (active and idle)" + ::= { ncStreaming 2 } + + ncStreamingBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all streaming requests" + ::= { ncStreaming 3 } + + ncStreamingRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time per byte for all streaming requests" + ::= { ncStreaming 4 } + + ncStreamingHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STREAMING requests that resulted in hits so far" + ::= { ncStreaming 5 } + + ncStreamingMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STREAMING requests that resulted in misses so far" + ::= { ncStreaming 6 } + + ncStreamingTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STREAMING total requests so far" + ::= { ncStreaming 7 } + + ncStreamingLiveBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes sent to clients" + ::= { ncStreaming 8 } + + ncStreamingLiveBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes received from clients" + ::= { ncStreaming 9 } + + ncStreamingLiveBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes sent to servers" + ::= { ncStreaming 10 } + + ncStreamingLiveBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes received from servers" + ::= { ncStreaming 11 } + + ncStreamingProxyBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes sent to clients" + ::= { ncStreaming 12 } + + ncStreamingProxyBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes received from clients" + ::= { ncStreaming 13 } + + ncStreamingProxyBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes sent to servers" + ::= { ncStreaming 14 } + + ncStreamingProxyBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes received from servers" + ::= { ncStreaming 15 } + + ncStreamingOBTClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes sent to clients" + ::= { ncStreaming 16 } + + ncStreamingOBFClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes received from clients" + ::= { ncStreaming 17 } + + ncStreamingOBTServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes sent to servers" + ::= { ncStreaming 18 } + + ncStreamingOBFServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes received from servers" + ::= { ncStreaming 19 } + + ncStreamingObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate of Streaming requests" + ::= { ncStreaming 20 } + + ncStreamingRealBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes sent to clients" + ::= { ncStreaming 21 } + + ncStreamingRealBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes received from clients" + ::= { ncStreaming 22 } + + ncStreamingRealBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes sent to servers" + ::= { ncStreaming 23 } + + ncStreamingRealBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes received from servers" + ::= { ncStreaming 24 } + + ncStreamingMmsBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes sent to clients" + ::= { ncStreaming 25 } + + ncStreamingMmsBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes received from clients" + ::= { ncStreaming 26 } + + ncStreamingMmsBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes sent to servers" + ::= { ncStreaming 27 } + + ncStreamingMmsBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes received from servers" + ::= { ncStreaming 28 } + + ncStreamingQTBTClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes sent to clients" + ::= { ncStreaming 29 } + + ncStreamingQTBFClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes received from clients" + ::= { ncStreaming 30 } + + ncStreamingQTBTServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes sent to servers" + ::= { ncStreaming 31 } + + ncStreamingQTBFServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes received from servers" + ::= { ncStreaming 32 } + + ncStreamingLiveBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all Live streaming requests" + ::= { ncStreaming 33 } + + ncStreamingOndemandBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all VOD streaming requests" + ::= { ncStreaming 34 } + + ncStreamingRealBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all Real streaming requests" + ::= { ncStreaming 35 } + + ncStreamingMmsBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all MMS streaming requests" + ::= { ncStreaming 36 } + + ncStreamingQuickTimeBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all QuickTime streaming requests" + ::= { ncStreaming 37 } + + ncStreamingActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to streaming servers" + ::= { ncStreaming 38 } + + ncStreamingActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to streaming clients" + ::= { ncStreaming 39 } + + ncStreamingRtspWMBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes sent to clients" + ::= { ncStreaming 40 } + + ncStreamingRtspWMBFClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes received from clients" + ::= { ncStreaming 41 } + + ncStreamingRtspWMBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes sent to servers" + ::= { ncStreaming 42 } + + ncStreamingRtspWMBFServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes received from servers" + ::= { ncStreaming 43 } + + ncStreamingRtspWMBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all Windows Media RTSP streaming requests" + ::= { ncStreaming 44 } + + ncStreamingAccelTable OBJECT-TYPE + SYNTAX SEQUENCE OF NcStreamingAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of kilobytes sent to and recieved from the + client side per acceleration rule" + + ::= { ncStreaming 45 } + + ncStreamingAccelEntry OBJECT-TYPE + SYNTAX NcStreamingAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the number of kilobytes sent and + received to/from the clients side per acceleration + rule" + + INDEX { ncStreamingAccelIndex } + ::= { ncStreamingAccelTable 1 } + + NcStreamingAccelEntry ::= + SEQUENCE { + ncStreamingAccelIndex Integer32, + ncStreamingAccelKbytesFromClient Counter32, + ncStreamingAccelKbytesToClient Counter32, + ncStreamingAccelHits Counter32 + } + + ncStreamingAccelIndex OBJECT-TYPE + SYNTAX Integer32 (1..513) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each entry in the streaming + acceleration stats table" + ::= { ncStreamingAccelEntry 1 } + + ncStreamingAccelKbytesFromClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes received from the client + for this acceleration rule" + ::= { ncStreamingAccelEntry 2 } + + ncStreamingAccelKbytesToClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes sent to the client for + this acceleration rule" + ::= { ncStreamingAccelEntry 3 } + + ncStreamingAccelHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of times this acceleration rule has + been hit" + ::= { ncStreamingAccelEntry 4 } + + ncStreamingClientsDelayedSW OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of clients delayed because of a Bandwidth Limit" + ::= { ncStreaming 46 } + + ncTotalBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Bandwidth savings for HTTP, FTP, NNTP, and Streaming protocols" + ::= { ncStats 10 } + + ncDns OBJECT IDENTIFIER ::= { ncStats 11 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache dns stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncDnsRequestsReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total DNS requests received from clients" + ::= { ncDns 1 } + + ncDnsCacheHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hits on the DNS cache. This includes hits + for DNS lookups generated by NetCache internally" + ::= { ncDns 2 } + + ncDnsCacheMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Misses on the DNS cache. This includes misses + for DNS lookups generated by NetCache internally" + ::= { ncDns 3 } + + ncDnsSuccessfulForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Forward DNS lookups that are successful" + ::= { ncDns 4 } + + ncDnsFailedForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Forward DNS lookups that failed" + ::= { ncDns 5 } + + ncDnsPendingForwardLookups OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Forward DNS lookups that are in progress" + ::= { ncDns 6 } + + ncDnsSuccessfulReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reverse DNS lookups that are successful" + ::= { ncDns 7 } + + ncDnsFailedReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reverse DNS lookups that failed" + ::= { ncDns 8 } + + ncDnsPendingReverseLookups OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reverse DNS lookups that are in progress" + ::= { ncDns 9 } + + ncDnsIres OBJECT IDENTIFIER ::= { ncDns 10 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache dns ires stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + ncDnsIresIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Has Full Service Resolver been enabled" + ::= { ncDnsIres 1 } + + ncDnsIresIsInitialised OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Has Full Service Resolver initalised" + ::= { ncDnsIres 2 } + + ncDnsIresForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Forward Lookups" + ::= { ncDnsIres 3 } + + ncDnsIresPendingForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Pending Forward Lookups" + ::= { ncDnsIres 4 } + + ncDnsIresReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Reverse Lookups" + ::= { ncDnsIres 5 } + + ncDnsIresPendingReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Pending Reverse Lookups" + ::= { ncDnsIres 6 } + + + ncAuth OBJECT IDENTIFIER ::= { ncStats 12 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache authentication stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNtlm OBJECT IDENTIFIER ::= { ncAuth 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache ntlm stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNtlmPossibleProblem OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether a possible ntlm problem is detected + in the appliance's domain environment." + ::= { ncNtlm 1 } + + + ncRM OBJECT IDENTIFIER ::= { ncStats 13 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache resource management group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncRMMem OBJECT IDENTIFIER ::= { ncRM 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache memory stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + ncRMMemTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total memory in kilobytes available for + allocations after boot. It does not imply + the total system memory." + ::= { ncRMMem 1 } + + ncRMMemFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current free memory in kilobytes available + for allocations." + ::= { ncRMMem 2 } + + -- -- -- -- -- -- -- -- -- + -- the snapmirror group -- + -- -- -- -- -- -- -- -- -- + + snapmirrorOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether snapmirror has been turned on + or not." + ::= { snapmirror 1 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorActiveRestoreCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror restores." + + ::= { snapmirror 2 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorScheduledRestoreCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of scheduled SnapMirror restores." + + ::= { snapmirror 3 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorBackupNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror backups." + + ::= { snapmirror 4 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorBackupSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror backups which completed. + Reset on reboot." + + ::= { snapmirror 5 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorRestoreSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror restores which completed. + Reset on reboot." + + ::= { snapmirror 6 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorBackupAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror backup transfers which have + aborted. Reset on reboot." + + ::= { snapmirror 7 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorRestoreRestartAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror restore temporary aborts. + Reset on reboot." + + ::= { snapmirror 8 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorRestoreWaitAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror restore permanent aborts. + Reset on reboot." + + ::= { snapmirror 9 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorWrittenBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Megabytes written by SnapMirror. + Reset on reboot." + + ::= { snapmirror 10 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Megabytes read by SnapMirror. + Reset on reboot." + + ::= { snapmirror 11 } + + snapmirrorActiveDstNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror destination." + + ::= { snapmirror 12 } + + snapmirrorActiveSrcNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror Source." + + ::= { snapmirror 13 } + + snapmirrorFilerTotalDstSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapmirror transfers to + the destination. Persistent across reboot." + + ::= { snapmirror 14 } + + snapmirrorFilerTotalSrcSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapmirror transfers + from the source. Persistent across reboot." + + ::= { snapmirror 15 } + + snapmirrorFilerTotalSrcFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed SnapMirror transfers on + the source. Persistent across reboot." + + ::= { snapmirror 16 } + + snapmirrorFilerTotalDstFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed SnapMirror transfers on + the destination. Persistent across reboot." + + ::= { snapmirror 17 } + + snapmirrorFilerTotalDstDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferred snapmirror transfer on + the destination. Persistent across reboot." + + ::= { snapmirror 18 } + + snapmirrorIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapmirror is licensed on the filer." + + ::= { snapmirror 19 } + + snapmirrorStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapmirrorStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "provide a list of snapmirror status." + + ::= { snapmirror 20 } + + snapmirrorStatusEntry OBJECT-TYPE + SYNTAX SnapmirrorStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current status of snapmirror." + + INDEX { snapmirrorIndex } + ::= { snapmirrorStatusTable 1 } + + SnapmirrorStatusEntry ::= + SEQUENCE { + snapmirrorIndex + Integer32, + snapmirrorSrc + OCTET STRING, + snapmirrorDst + OCTET STRING, + snapmirrorStatus + Integer32, + snapmirrorState + Integer32, + snapmirrorLag + TimeTicks, + snapmirrorTotalSuccesses + Counter32, + snapmirrorTotalRestartSuccesses + Counter32, + snapmirrorTotalFailures + Counter32, + snapmirrorTotalDeferments + Counter32, + snapmirrorTotalTransMBs + Counter32, + snapmirrorTotalTransTimeSeconds + Counter32, + snapmirrorThrottleValue + Integer32, + snapmirrorMirrorTimestamp + DisplayString, + snapmirrorBaseSnapshot + DisplayString, + snapmirrorLastTransType + DisplayString, + snapmirrorLastTransMBs + Counter32, + snapmirrorLastTransTimeSeconds + Counter32, + snapmirrorSchedule + DisplayString, + snapmirrorScheduleDesc + DisplayString, + snapmirrorArguments + DisplayString, + snapmirrorSyncToAsync + Counter32 + } + + snapmirrorIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapmirror status table." + + ::= { snapmirrorStatusEntry 1 } + + snapmirrorSrc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source of the snapmirror. : or + :/vol/" + + ::= { snapmirrorStatusEntry 2 } + + snapmirrorDst OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Destination of the snapmirror. + : or :/vol/" + + ::= { snapmirrorStatusEntry 3 } + + snapmirrorStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + transferring(2), + pending(3), + aborting(4), + migrating(5), + quiescing(6), + resyncing(7), + waiting(8), + syncing(9), + inSync(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current transfer status of the snapmirror." + + ::= { snapmirrorStatusEntry 4 } + + snapmirrorState OBJECT-TYPE + SYNTAX INTEGER { + uninitialized(1), + snapmirrored(2), + brokenOff(3), + quiesced(4), + source(5), + unknown(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of the snapmirror." + + ::= { snapmirrorStatusEntry 5 } + + snapmirrorLag OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "How far behind from the source the destination is." + + ::= { snapmirrorStatusEntry 6 } + + snapmirrorTotalSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful transfer since the snapmirror + is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 7 } + + snapmirrorTotalRestartSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful restarted transfer since + the snapmirror is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 8 } + + snapmirrorTotalFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed or aborted transfer since + the snapmirror is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 9 } + + snapmirrorTotalDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferment since the snapmirror + is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 10 } + + snapmirrorTotalTransMBs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total transfer size in MB for the snapmirror. + Reset on reboot." + + ::= { snapmirrorStatusEntry 11 } + + snapmirrorTotalTransTimeSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of seconds spent in successful transfer for the + snapmirror. Reset on reboot." + + ::= { snapmirrorStatusEntry 12 } + + snapmirrorThrottleValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current throttle value for the snapmirror." + + ::= { snapmirrorStatusEntry 13 } + + snapmirrorMirrorTimestamp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Timestamp of the last snapshot successfully transferred from + the source to the destination." + + ::= { snapmirrorStatusEntry 14 } + + snapmirrorBaseSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the current base snapshot for the snapmirror." + + ::= { snapmirrorStatusEntry 15 } + + snapmirrorLastTransType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the previous successful transfer." + + ::= { snapmirrorStatusEntry 16 } + + snapmirrorLastTransMBs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last successful transfer size in MB for the snapmirror." + + ::= { snapmirrorStatusEntry 17 } + + snapmirrorLastTransTimeSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Duration of last successful transfer in seconds for the + snapmirror." + + ::= { snapmirrorStatusEntry 18 } + + snapmirrorSchedule OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Update schedule for the snapmirror in conf file format." + + ::= { snapmirrorStatusEntry 19 } + + snapmirrorScheduleDesc OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of the update schedule for the snapmirror." + + ::= { snapmirrorStatusEntry 20 } + + snapmirrorArguments OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Arguments for the snapmirror in conf file format." + + ::= { snapmirrorStatusEntry 21 } + + snapmirrorSyncToAsync OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times changing from sync mode to async mode + since the snapmirror is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 22 } + + snapmirrorConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapmirrorConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of snapmirror connection definitions." + + ::= { snapmirror 21 } + + snapmirrorConnEntry OBJECT-TYPE + SYNTAX SnapmirrorConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of a defined multipath connection." + + INDEX { snapmirrorConnIndex } + ::= { snapmirrorConnTable 1 } + + SnapmirrorConnEntry ::= + SEQUENCE { + snapmirrorConnIndex + Integer32, + snapmirrorConnName + DisplayString, + snapmirrorConnType + Integer32, + snapmirrorConnSrc1 + DisplayString, + snapmirrorConnDst1 + DisplayString, + snapmirrorConnSrc2 + DisplayString, + snapmirrorConnDst2 + DisplayString + } + + snapmirrorConnIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapmirror multipath connection table." + + ::= { snapmirrorConnEntry 1 } + + snapmirrorConnName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the snapmirror multipath connection." + + ::= { snapmirrorConnEntry 2 } + + snapmirrorConnType OBJECT-TYPE + SYNTAX INTEGER { + multi(1), + failover(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the snapmirror multipath connection." + + ::= { snapmirrorConnEntry 3 } + + snapmirrorConnSrc1 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the source for the first path." + + ::= { snapmirrorConnEntry 4 } + + snapmirrorConnDst1 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the destination for the first path." + + ::= { snapmirrorConnEntry 5 } + + snapmirrorConnSrc2 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the source for the second path." + + ::= { snapmirrorConnEntry 6 } + + snapmirrorConnDst2 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the destination for the second path." + + ::= { snapmirrorConnEntry 7 } + + -- -- -- -- -- -- -- -- -- + -- the snapvault group + -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for the whole system + -- unless otherwise specified. + + svOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether snapvault has been turned on + or not." + ::= { snapvault 1 } + + svSystemActiveDstNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active snapvault destionations." + + ::= { snapvault 2 } + + svSystemActiveSrcNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active snapvault sources." + + ::= { snapvault 3 } + + svSystemTotalPrimarySuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapvault transfers + from the snapvault primary. Persistent across reboot." + + ::= { snapvault 4 } + + svSystemTotalSecondarySuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapvault transfers to + the snapvault secondary. Persistent across reboot." + + ::= { snapvault 5 } + + svSystemTotalPrimaryFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed snapvault transfers on + the snapvault primary. Persistent across reboot." + + ::= { snapvault 6 } + + svSystemTotalSecondaryFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed snapvault transfers on + the snapvault secondary. Persistent across reboot." + + ::= { snapvault 7 } + + svSystemTotalSecondaryDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferred snapvault transfers on + the snapvault secondary. Persistent across reboot." + + ::= { snapvault 8 } + + svPrimaryIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapvault_client(primary) is licensed on the filer." + + ::= { snapvault 9 } + + svSecondaryIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapvault_server(secondary) is licensed on the filer." + + ::= { snapvault 10 } + + + + snapvaultStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapvaultStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "provide a list of snapvault status." + + ::= { snapvault 11 } + + snapvaultStatusEntry OBJECT-TYPE + SYNTAX SnapvaultStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current status of snapvault." + + INDEX { svIndex } + ::= { snapvaultStatusTable 1 } + + SnapvaultStatusEntry ::= + SEQUENCE { + svIndex + Integer32, + svSrc + OCTET STRING, + svDst + OCTET STRING, + svStatus + Integer32, + svState + Integer32, + svLag + TimeTicks, + svTotalSuccesses + Counter32, + svTotalRestartSuccesses + Counter32, + svTotalFailures + Counter32, + svTotalDeferments + Counter32, + svTotalTransMBs + Counter32, + svTotalTransTimeSeconds + Counter32, + svThrottleValue + Integer32, + svSrcSnapshotTime + Integer32, + svBaseSnapshot + DisplayString, + svLastTransType + DisplayString, + svLastTransMBs + Integer32, + svLastTransTimeSeconds + Integer32 + } + + svIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapvault status table." + + ::= { snapvaultStatusEntry 1 } + + svSrc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source of the snapvault relationship. + :/vol/" + + ::= { snapvaultStatusEntry 2 } + + svDst OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Destionation of the snapvault relationship. + :/vol/" + + ::= { snapvaultStatusEntry 3 } + + svStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + transferring(2), + pending(3), + aborting(4), + quiescing(6), + resyncing(7), + paused(12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current transfer status of the snapvault relationship." + + ::= { snapvaultStatusEntry 4 } + + svState OBJECT-TYPE + SYNTAX INTEGER { + uninitialized(1), + snapvaulted(2), + brokenOff(3), + quiesced(4), + source(5), + unknown(6), + restoring(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of the snapvault relationship." + + ::= { snapvaultStatusEntry 5 } + + svLag OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "How far behind from the source the destination is." + + ::= { snapvaultStatusEntry 6 } + + svTotalSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful transfer since the snapvault + relationship was established. Persistent across reboot." + + ::= { snapvaultStatusEntry 7 } + + svTotalRestartSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful restarted transfer since + the snapvault relationship was established. Persistent + across reboot." + + ::= { snapvaultStatusEntry 8 } + + svTotalFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed or aborted transfer since + the snapvault relationship was established. Persistent + across reboot." + + ::= { snapvaultStatusEntry 9 } + + svTotalDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferment since the snapvault + relationship was established. Persistent across reboot." + + ::= { snapvaultStatusEntry 10 } + + svTotalTransMBs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total transfer size in MB for the snapvault. + Reset on reboot." + + ::= { snapvaultStatusEntry 11 } + + svTotalTransTimeSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of seconds spent in successful transfer for the + snapvault relationship. Reset on reboot." + + ::= { snapvaultStatusEntry 12 } + + svThrottleValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current throttle value for the snapvault relationship." + + ::= { snapvaultStatusEntry 13 } + + svSrcSnapshotTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time when the source snapshot was created. The time in + seconds since January 1, 1970. The source snapshot here + is the last snapshot successfully transferred from the + source to the destination." + + ::= { snapvaultStatusEntry 14 } + + svBaseSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the current base snapshot for the + snapvault relationship." + + ::= { snapvaultStatusEntry 15 } + + svLastTransType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the previous successful transfer." + + ::= { snapvaultStatusEntry 16 } + + svLastTransMBs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last successful transfer size in MB for the snapvault + relationship." + + ::= { snapvaultStatusEntry 17 } + + svLastTransTimeSeconds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Duration of last successful transfer in seconds for the + snapvault relationship." + + ::= { snapvaultStatusEntry 18 } + + snapvaultHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapvaultHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of remote snapvault hosts." + + ::= { snapvault 12 } + + snapvaultHostEntry OBJECT-TYPE + SYNTAX SnapvaultHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide snapvault statistics for a remote host + which has one or more current established + relationships with the local snapvault system." + + INDEX { svHostIndex } + ::= { snapvaultHostTable 1 } + + SnapvaultHostEntry ::= + SEQUENCE { + svHostIndex + Integer32, + svHostName + DisplayString, + svHostType + Integer32, + svHostTotalSuccesses + Integer32, + svHostTotalFailures + Integer32, + svHostTotalDeferments + Integer32 + } + + svHostIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapvault remote host table." + + ::= { snapvaultHostEntry 1 } + + svHostName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the remote snapvault host." + + ::= { snapvaultHostEntry 2 } + + svHostType OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the remote snapvault host." + + ::= { snapvaultHostEntry 3 } + + svHostTotalSuccesses OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapvault transfers + for all current established relationships between + the local snapvault system and the given remote host." + + ::= { snapvaultHostEntry 4 } + + svHostTotalFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed snapvault transfers + for all current established relationships between + the local snapvault system and the given remote host." + + ::= { snapvaultHostEntry 5 } + + svHostTotalDeferments OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferred snapvault transfers for + all current established relationships between + the local snapvault system and the given remote host. + 0 for snapvault client host." + + ::= { snapvaultHostEntry 6 } + + + snapvaultSchedTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapvaultSchedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of snapvault schedules." + + ::= { snapvault 13 } + + snapvaultSchedEntry OBJECT-TYPE + SYNTAX SnapvaultSchedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of schedules of snapvault." + + INDEX { svSchedIndex } + ::= { snapvaultSchedTable 1 } + + SnapvaultSchedEntry ::= + SEQUENCE { + svSchedIndex + Integer32, + svSchedVolume + DisplayString, + svSchedSnapshot + DisplayString, + svSchedStatus + Integer32, + svSchedType + Integer32, + svSchedSchedule + DisplayString + } + + svSchedIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapvault schedule table." + + ::= { snapvaultSchedEntry 1 } + + svSchedVolume OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume on the snapvault for the + snapvault schedule. This does not have a /vol/ prefix." + + ::= { snapvaultSchedEntry 2 } + + svSchedSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the snapshot for the snapvault schedule." + + ::= { snapvaultSchedEntry 3 } + + svSchedStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + queued(2), + active(3), + aborting(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of the snapvault schedule." + + ::= { snapvaultSchedEntry 4 } + + svSchedType OBJECT-TYPE + SYNTAX INTEGER { + undef(1), + xfer(2), + create(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the snapvault schedule." + + ::= { snapvaultSchedEntry 5 } + + + svSchedSchedule OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The update schedule of the snapvault." + + ::= { snapvaultSchedEntry 6 } + + svDrPrimaryIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapvault disaster recovery primary is + licensed on the filer." + + ::= { snapvault 14 } + + -- -- -- -- -- -- -- -- + -- the ndmpd group -- + -- -- -- -- -- -- -- -- + + ndmpOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether ndmpd has been turned on or not." + ::= { ndmp 1 } + + ndmpSessionOpened OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of ndmpd sessions currently opened. + Sessions may be running backups, restores or neither." + ::= { ndmp 2 } + + ndmpBackupActive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd backups currently active." + ::= { ndmp 3 } + + ndmpRestoreActive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd restores currently active." + ::= { ndmp 4 } + + ndmpTapeActive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of tape drives currently active." + ::= { ndmp 5 } + + ndmpBackupSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd backups that succeeded." + ::= { ndmp 6 } + + ndmpRestoreSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd restores that succeeded." + ::= { ndmp 7 } + + ndmpBackupFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd backups that failed." + ::= { ndmp 8 } + + ndmpRestoreFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd restores that failed." + ::= { ndmp 9 } + + ndmpBackupFailureReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the ndmpBackupFailures value is non-zero, this string + describes the reason for the most recent backup failure." + ::= { ndmp 10 } + + ndmpRestoreFailureReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the ndmpRestoreFailures value is non-zero, this string + describes the reason for the most recent restore failure." + ::= { ndmp 11 } + + -- -- -- -- -- -- -- -- + -- the ftpd group -- + -- -- -- -- -- -- -- -- + + ftpdOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether ftpd has been turned on or not." + ::= { ftpd 1 } + + ftpdCurrentConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to ftp daemon (active and idle)" + ::= { ftpd 2 } + + ftpdMaxConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of maximum simultaneous TCP/IP connections to ftp daemon" + ::= { ftpd 3 } + + ftpdTotalConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of total TCP/IP connections to ftp daemon" + ::= { ftpd 4 } + + -- -- -- -- -- -- -- -- + -- the fabric group -- + -- -- -- -- -- -- -- -- + + fabricInstances OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of distinct fabrics present." + ::= { fabric 1 } + + fabricTable OBJECT-TYPE + SYNTAX SEQUENCE OF FabricEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of fabrics." + ::= { fabric 2 } + + fabricEntry OBJECT-TYPE + SYNTAX FabricEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current configuration and + status of fabrics." + + INDEX { fabricIndex } + ::= { fabricTable 1 } + + FabricEntry ::= + SEQUENCE { + fabricIndex + Integer32, + fabricStatus + Integer32, + fabricStatusMessage + DisplayString, + fabricName + OCTET STRING, + fabricOwner + Integer32 + } + + fabricIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this fabric entry." + ::= { fabricEntry 1 } + + fabricStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + faulty(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates the overall status of the SAN fabric(s)." + ::= { fabricEntry 2 } + + fabricStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the fabric status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(3)." + ::= { fabricEntry 3 } + + fabricName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the fabric." + ::= { fabricEntry 4 } + + fabricOwner OBJECT-TYPE + SYNTAX INTEGER { + netapp(1), + other(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates who owns the management of + the fabric." + ::= { fabricEntry 5 } + + switchTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwitchEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of switches and hubs + connected to the fabric." + ::= { fabric 3 } + + switchEntry OBJECT-TYPE + SYNTAX SwitchEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current configuration and + status of fabric interconnect elements. This + include switches and hubs." + + INDEX { switchFabricIndex, switchIndex } + ::= { switchTable 1 } + + SwitchEntry ::= + SEQUENCE { + switchIndex + Integer32, + switchName + OCTET STRING, + switchSymbolicName + OCTET STRING, + switchType + Integer32, + switchDomain + Integer32, + switchManagementId + Integer32, + switchStatus + Integer32, + switchStatusMessage + DisplayString, + switchLinkSpeed + Integer32, + switchHighPacketsProcessed + Counter32, + switchLowPacketsProcessed + Counter32, + switchHighPacketsRejected + Counter32, + switchLowPacketsRejected + Counter32, + switchFabricIndex + Integer32, + switch64PacketsProcessed + Counter64, + switch64PacketsRejected + Counter64 + } + + switchIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this switch entry." + ::= { switchEntry 1 } + + switchName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the switch." + ::= { switchEntry 2 } + + switchSymbolicName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the symbolic name of the switch." + ::= { switchEntry 3 } + + switchType OBJECT-TYPE + SYNTAX INTEGER { + hub(1), + switch(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the switch." + ::= { switchEntry 4 } + + switchDomain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The domain identifier of the switch." + ::= { switchEntry 5 } + + switchManagementId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The in-band management identifier of the switch." + ::= { switchEntry 6 } + + switchStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + ok(3), + nonCritical(4), + critical(5), + nonRecoverable(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the switch." + ::= { switchEntry 7 } + + switchStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the switch status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(3)." + ::= { switchEntry 8 } + + switchLinkSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link speed of the switch. The value is an integer + whose units are Gbits (for example, a value of 2 represents + a link speed of 2 Gbit)." + ::= { switchEntry 9 } + + switchHighPacketsProcessed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets successfully processed + since the last reboot/reset of the switch. + This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 10 } + + switchLowPacketsProcessed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets successfully processed + since the last reboot/reset of the switch. + This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 11 } + + switchHighPacketsRejected OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets rejected + since the last reboot/reset of the switch. + This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 12 } + + switchLowPacketsRejected OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets rejected + since the last reboot/reset of the switch. + This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 13 } + + switchFabricIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the fabric on which this switch + resides. The value ranges from 1 to the value + of fabricInstances." + ::= { switchEntry 14 } + + switch64PacketsProcessed OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets successfully processed + since the last reboot/reset of the switch. + This object returns all of the 64 bit unsigned + integer." + ::= { switchEntry 15 } + + switch64PacketsRejected OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets rejected since the last + reboot/reset of the switch. This object returns + all of the 64 bit unsigned integer." + ::= { switchEntry 16 } + + portTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of ports + connected to the fabric." + ::= { fabric 4 } + + portEntry OBJECT-TYPE + SYNTAX PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current configuration and + status of ports in the fabric." + + INDEX { portFabricIndex, portSwitchIndex, portIndex } + ::= { portTable 1 } + + PortEntry ::= + SEQUENCE { + portIndex + Integer32, + portName + OCTET STRING, + portSwitchIndex + Integer32, + portSwitchName + OCTET STRING, + portNumber + Integer32, + portType + Integer32, + portState + Integer32, + portFabricIndex + Integer32 + } + + portIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this port entry." + ::= { portEntry 1 } + + portName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the port." + ::= { portEntry 2 } + + portSwitchIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the switch on which this port + resides. The value ranges from 1 to the number of + of switches." + ::= { portEntry 3 } + + portSwitchName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the switch to which + the port is attached." + ::= { portEntry 4 } + + portNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number on the switch." + ::= { portEntry 5 } + + portType OBJECT-TYPE + SYNTAX INTEGER { + unidentified(1), + nPort(2), + nlPort(3), + fPort(4), + flPort(5), + ePort(6), + bPort(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the port." + ::= { portEntry 6 } + + portState OBJECT-TYPE + SYNTAX INTEGER { + online(1), + offline(2), + testing(3), + faulty(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the port." + ::= { portEntry 7 } + + portFabricIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the fabric on which this port + resides. The value ranges from 1 to the value + of fabricInstances." + ::= { portEntry 8 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- + -- The backup(dump/restore) group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- + + dump OBJECT IDENTIFIER ::= { backup 1 } + + restore OBJECT IDENTIFIER ::= { backup 2 } + + -- dump -- + + dmpActives OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active dump." + ::= { dump 1 } + + dmpAttempts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dump attempted." + ::= { dump 2 } + + dmpSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dump succeeded." + ::= { dump 3 } + + dmpFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dump failed." + ::= { dump 4 } + + dmpTable OBJECT-TYPE + SYNTAX SEQUENCE OF DmpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides a report of dumps on each + dump subtree." + ::= { dump 5 } + + -- dmpTable contained two entries named lastdump and lastsuccess that + -- were incompatible with many mib compilers. These are replaced + -- with objects that work better with these compilers. + + dmpEntry OBJECT-TYPE + SYNTAX DmpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Shows statistics of dumps on an unique + dump subtree." + INDEX { dmpIndex } + ::= { dmpTable 1 } + + DmpEntry ::= + SEQUENCE { + dmpIndex + Integer32, + dmpStPath + DisplayString, + dmpStAttempts + Counter32, + dmpStSuccesses + Counter32, + dmpStFailures + Counter32, + dmpTime + Integer32, + dmpStatus + Integer32, +-- lastdump entries + dmpLevel + Integer32, + dmpNumFiles + Integer32, +-- lastsuccess entries + dmpDataAmount + Integer32, + dmpStartTime + Integer32, + dmpDuration + TimeTicks + } + + dmpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the subtree dump table." + ::= { dmpEntry 1 } + + dmpStPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The full path to the dump subtree. In the + format of /vol//..." + ::= { dmpEntry 2 } + + dmpStAttempts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "No. of dump attempted for the subtree." + ::= { dmpEntry 3 } + + dmpStSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "No. of dump succeeded for the subtree." + ::= { dmpEntry 4 } + + dmpStFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "No. of dump failed for the subtree." + ::= { dmpEntry 5 } + + dmpTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start time for the last attempt + to dump the subtree, including the + currently running one. The time in + seconds since January 1, 1970." + ::= { dmpEntry 6 } + + dmpStatus OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The status for the last dump attempt + on the subtree." + ::= { dmpEntry 7 } + + dmpLevel OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level of the dump." + ::= { dmpEntry 8 } + + dmpNumFiles OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of files dumped." + ::= { dmpEntry 9 } + + dmpDataAmount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of data dumped, in Megabytes." + ::= { dmpEntry 10 } + + dmpStartTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start time of the dump. The time is + in seconds since January 1, 1970." + ::= { dmpEntry 11 } + + dmpDuration OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The duration of the dump." + ::= { dmpEntry 12 } + + -- restore -- + + rstActives OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active restore." + ::= { restore 1 } + + rstAttempts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of restore attempted." + ::= { restore 2 } + + rstSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of restore succeeded." + ::= { restore 3 } + + rstFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of restore failed." + ::= { restore 4 } + + -- -- -- -- -- -- -- -- + -- DAFS Option group -- + -- -- -- -- -- -- -- -- + + dafsOptions OBJECT IDENTIFIER ::= {dafs 1} + + dafsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Whether the dafs protocol is licensed on the filer. + Data ONTAP Specific" + ::= { dafsOptions 1 } + + dafsMaxRequestsServer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide maximum number of concurrent requests + Data ONTAP Specific" + ::= { dafsOptions 2 } + + dafsMaxRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server maximum number of concurrent requests per session + Data ONTAP Specific" + ::= { dafsOptions 3 } + + dafsMaxRequestSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Server maximum size of an inline request" + ::= { dafsOptions 4 } + + dafsMaxResponseSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Server maximum size of an inline response" + ::= { dafsOptions 5 } + + + dafsMaxPendingRequestsServer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide maximum number of requests that can queue + waiting for resources Data ONTAP Specific" + ::= { dafsOptions 6 } + + dafsUseChecksums OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Server uses checksums" + ::= { dafsOptions 7 } + + dafsNicNumRequestDemons OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server default number of request demons per Nic. + Data ONTAP Specific" + ::= { dafsOptions 8 } + + dafsAnonymousAuthentication OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Allow the server to acception connections with + authentication type NONE." + ::= { dafsOptions 9 } + + dafsServerEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of the DAFS server. If true, the DAFS + server is running." + ::= { dafsOptions 10 } + + dafsDefaultUid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default client User ID if anonymously connected." + ::= { dafsOptions 11 } + + dafsDefaultGid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default client Group ID if anonymously connected." + ::= { dafsOptions 12 } + + dafsMaxDisconnectedSessions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of disconnected sessions for which the + DAFS server will retain response cache data." + ::= { dafsOptions 13 } + + dafsMaxIdleSeconds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of seconds server will keep a session + open without hearing from the client." + ::= { dafsOptions 14 } + + -- the DAFS VI Nic table + + -- The DAFS VI Nic table contains information about this + -- entity's VI nics attached to DAFS + + dafsNicTable OBJECT-TYPE + SYNTAX SEQUENCE OF DafsNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing DAFS NIC specific + information." + ::= { dafs 2 } + + dafsNicEntry OBJECT-TYPE + SYNTAX DafsNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a particular current DAFS + nic. An object of this type is transient, + in that it ceases to exist when (or soon after) + the nic is detached." + INDEX { dafsNicIndex } + ::= { dafsNicTable 1 } + + DafsNicEntry ::= + SEQUENCE { + dafsNicIndex + Integer32, + dafsNicName + DisplayString, + dafsNicDevice + DisplayString, + dafsNicState + Integer32, + dafsNicListenAddr + OCTET STRING, + dafsNicNumRqstDemons + Integer32, + dafsNicInBytes + Counter32, + dafsNicDirectInBytes + Counter32, + dafsNicOutBytes + Counter32, + dafsNicDirectOutBytes + Counter32 + } + + dafsNicIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each interface. Its value + ranges between 1 and the value of DafsNicNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { dafsNicEntry 1 } + + dafsNicName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing the logical name + under which the nic has been attached." + ::= { dafsNicEntry 2} + + dafsNicDevice OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing the physical name + of the nic that has been attached." + ::= { dafsNicEntry 3} + + dafsNicState OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of DAFS nic" + ::= { dafsNicEntry 4 } + + dafsNicListenAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transport specific address structure giving the + DAFS listen address for this NIC." + ::= { dafsNicEntry 5} + + + dafsNicNumRqstDemons OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Number of request demons assigned to this Nic + to handle Nic related events. Data ONTAP Specific" + ::= { dafsNicEntry 6} + + dafsNicInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, include DMA, received on + this interface" + ::= { dafsNicEntry 7} + + dafsNicDirectInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes read directly from the + peer memory through this interface" + ::= { dafsNicEntry 8} + + dafsNicOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, include DMA, sent on + this interface" + ::= { dafsNicEntry 9} + + dafsNicDirectOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes written directly to the + peer memory through this interface" + ::= { dafsNicEntry 10} + + -- -- -- -- -- -- -- -- -- -- + -- DAFS Server Statistics -- + -- -- -- -- -- -- -- -- -- -- + + curDafs OBJECT IDENTIFIER ::= {dafs 3} + + dafsPendingRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide current number of requests that are + queued waiting for resources Data ONTAP Specific" + ::= { curDafs 1 } + + dafsCurrentRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide current number of active requests + Data ONTAP Specific" + ::= { curDafs 2 } + + totDafs OBJECT IDENTIFIER ::= {dafs 4} + + dafsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of DAFS calls since last reboot" + ::= { totDafs 1 } + + dafsClientAuths OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Client Auth calls since last reboot" + ::= { totDafs 2 } + + dafsClientConnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Client Connect calls since last reboot" + ::= { totDafs 3 } + + dafsClientConnectAuths OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Client Connect Auth calls since last reboot" + ::= { totDafs 4 } + + dafsConnectBinds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Connect Bind calls since last reboot" + ::= { totDafs 5 } + + dafsDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Disconnect calls since last reboot" + ::= { totDafs 6 } + + dafsRegisterCreds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Register Credential calls since last reboot" + ::= { totDafs 7 } + + dafsReleaseCreds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Release Credential calls since last reboot" + ::= { totDafs 8 } + + dafsSecinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Secinfo calls since last reboot" + ::= { totDafs 9 } + + dafsServerAuths OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Server Auth calls since last reboot" + ::= { totDafs 10 } + + dafsCheckResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Check Response calls since last reboot" + ::= { totDafs 11 } + + dafsFetchResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Fetch Response calls since last reboot" + ::= { totDafs 12 } + + dafsDiscardResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Discard Responses calls since last reboot" + ::= { totDafs 13 } + + dafsAccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Access calls since last reboot" + ::= { totDafs 14 } + + dafsCacheHints OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Cache Hint calls since last reboot" + ::= { totDafs 15 } + + dafsCloses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Close calls since last reboot" + ::= { totDafs 16 } + + dafsCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Commit calls since last reboot" + ::= { totDafs 17 } + + dafsCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Create calls since last reboot" + ::= { totDafs 18 } + + dafsDelegPurges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Delegate Purge calls since last reboot" + ::= { totDafs 19 } + + dafsDelegReturns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Delegate Return calls since last reboot" + ::= { totDafs 20 } + + dafsGetFsattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Get Fsattr calls since last reboot" + ::= { totDafs 21 } + + dafsGetRootHandles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Get Root Handle calls since last reboot" + ::= { totDafs 22 } + + dafsGetattrInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Getattr Inline calls since last reboot" + ::= { totDafs 23 } + + dafsGetattrDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Getattr Direct calls since last reboot" + ::= { totDafs 24 } + + dafsLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Link calls since last reboot" + ::= { totDafs 25 } + + dafsLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Lock calls since last reboot" + ::= { totDafs 26 } + + dafsLockts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LockT calls since last reboot" + ::= { totDafs 27} + + dafsLockus OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LockU calls since last reboot" + ::= { totDafs 28 } + + dafsLookUps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LookUp calls since last reboot" + ::= { totDafs 29 } + + dafsLookUpps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LookUpp calls since last reboot" + ::= { totDafs 30 } + + dafsNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Null calls since last reboot" + ::= { totDafs 31 } + + dafsNverifys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Nverify calls since last reboot" + ::= { totDafs 32 } + + dafsOpens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Open calls since last reboot" + ::= { totDafs 33 } + + dafsOpenDowngrades OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Open Downgrade calls since last reboot" + ::= { totDafs 34 } + + dafsOpenattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Openattr calls since last reboot" + ::= { totDafs 35 } + + dafsReadInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Read Inline calls since last reboot" + ::= { totDafs 36 } + + dafsReadDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Read Direct calls since last reboot" + ::= { totDafs 37 } + + dafsReaddirInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readdir Inline calls since last reboot" + ::= { totDafs 38 } + + dafsReaddirDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readdir Direct calls since last reboot" + ::= { totDafs 39 } + + dafsReadlinkInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readlink Inline calls since last reboot" + ::= { totDafs 40 } + + dafsReadlinkDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readlink Direct calls since last reboot" + ::= { totDafs 41 } + + dafsRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Remove calls since last reboot" + ::= { totDafs 42 } + + dafsRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Rename calls since last reboot" + ::= { totDafs 43 } + + dafsSetattrInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Setattr Inline calls since last reboot" + ::= { totDafs 44 } + + dafsSetattrDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Setattr Direct calls since last reboot" + ::= { totDafs 45 } + + dafsVerifys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Verify calls since last reboot" + ::= { totDafs 46 } + + dafsBatchSubmits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Batch Submit calls since last reboot" + ::= { totDafs 47 } + + dafsWriteInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Write Inline calls since last reboot" + ::= { totDafs 48 } + + dafsWriteDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Write Direct calls since last reboot" + ::= { totDafs 49 } + + dafsBcGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Getattr calls since last reboot" + ::= { totDafs 50 } + + dafsBcNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Null calls since last reboot" + ::= { totDafs 51 } + + dafsBcRecalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Recall calls since last reboot" + ::= { totDafs 52 } + + dafsBcBatchCompletions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Batch Completion calls since + last reboot" + ::= { totDafs 53 } + + dafsAppendInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Append Inline calls since + last reboot" + ::= { totDafs 54 } + + dafsAppendDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Append Direct calls since + last reboot" + ::= { totDafs 55 } + + dafsGetFencingLists OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Get Fencing List calls since + last reboot" + ::= { totDafs 56 } + + dafsSetFencingLists OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Set Fencing List calls since + last reboot" + ::= { totDafs 57 } + + dafsHurryUps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Hurry Up calls since + last reboot" + ::= { totDafs 58 } + + dafsInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, including DMA, received since the + last reboot" + ::= { totDafs 59 } + + dafsDirectInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes received directly into memory + since last reboot" + ::= { totDafs 60 } + + dafsOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, including DMA, sent since the + last reboot" + ::= { totDafs 61 } + + dafsDirectOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes sent directly into remote memory since + the last reboot" + ::= { totDafs 62 } + + dafsSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF DafsSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing current DAFS client session + information." + ::= { dafs 5 } + + dafsSessionEntry OBJECT-TYPE + SYNTAX DafsSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a particular DAFS + session. An object of this type is transient, + in that it ceases to exist when (or soon after) + the client disconnects." + + INDEX { dafsSessionIndex } + ::= { dafsSessionTable 1 } + + DafsSessionEntry ::= + SEQUENCE { + dafsSessionIndex + Integer32, + dafsSessionId + OCTET STRING, + dafsSessionEndian + Integer32, + dafsSessionAllowBackChannel + Integer32, + dafsSessionAllowRdmaReadChannel + Integer32, + dafsSessionUseChecksums + Integer32, + dafsSessionMaxCredentials + Integer32, + dafsSessionMaxRequestSize + Integer32, + dafsSessionMaxResponseSize + Integer32, + dafsSessionMaxRequests + Integer32, + dafsSessionInlineWriteHeaderSize + Integer32, + dafsSessionClientIdString + OCTET STRING, + dafsSessionClientVerifier + OCTET STRING, + dafsSessionNumCredentials + Integer32, + dafsSessionNumRequests + Integer32 + } + + dafsSessionIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each session." + ::= { dafsSessionEntry 1 } + + dafsSessionId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session Identifier assigned by the server." + ::= { dafsSessionEntry 2 } + + dafsSessionEndian OBJECT-TYPE + SYNTAX INTEGER { + bigEndian(1), + littleEndian(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Byte order used on this session." + ::= { dafsSessionEntry 3 } + + dafsSessionAllowBackChannel OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session may use a back control channel." + ::= { dafsSessionEntry 4 } + + dafsSessionAllowRdmaReadChannel OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session may use a RDMA read channel." + ::= { dafsSessionEntry 5 } + + dafsSessionUseChecksums OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session uses checksums." + ::= { dafsSessionEntry 6 } + + dafsSessionMaxCredentials OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of credientials that can be registered + on this session." + ::= { dafsSessionEntry 7 } + + dafsSessionMaxRequestSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum size of a DAFS request." + ::= { dafsSessionEntry 8 } + + dafsSessionMaxResponseSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum size of a DAFS response." + ::= { dafsSessionEntry 9 } + + dafsSessionMaxRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of concurrent requests." + ::= { dafsSessionEntry 10 } + + dafsSessionInlineWriteHeaderSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of DAFS headers plus padding to the start of + data. Used to better align inline data." + ::= { dafsSessionEntry 11 } + + dafsSessionClientIdString OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Client ID string supplied by the client. Intended to + uniquely identify that client." + ::= { dafsSessionEntry 12 } + + dafsSessionClientVerifier OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Supplied by the client to uniquely identify an + instnce of a client." + ::= { dafsSessionEntry 13 } + + dafsSessionNumCredentials OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of credentials registered on this + session" + ::= { dafsSessionEntry 14 } + + dafsSessionNumRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of active requests on this session" + ::= { dafsSessionEntry 15 } + + -- the DAFS Export table + + -- The DAFS Export table contains information about this + -- entity's exported filesystems + + dafsExportTable OBJECT-TYPE + SYNTAX SEQUENCE OF DafsExportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing DAFS Export filesystems." + ::= { dafs 6 } + + dafsExportEntry OBJECT-TYPE + SYNTAX DafsExportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a particular current DAFS + export. An object of this type is transient, + in that it ceases to exist when (or soon after) + the export is deleted." + INDEX { dafsExportIndex } + ::= { dafsExportTable 1 } + + DafsExportEntry ::= + SEQUENCE { + dafsExportIndex + Integer32, + dafsExportName + DisplayString, + dafsExportPath + DisplayString, + dafsExportEnabled + Integer32, + dafsExportRwMode + Integer32, + dafsExportAccessList + DisplayString + } + + dafsExportIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each export. Its value + ranges between 1 and the number of exports. The + value for each export must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { dafsExportEntry 1 } + + dafsExportName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + export. This is the logical export name." + ::= { dafsExportEntry 2} + + dafsExportPath OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + export. This is the local filesystem path to + the export." + ::= { dafsExportEntry 3} + + dafsExportEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This export is available for access." + ::= { dafsExportEntry 4 } + + dafsExportRwMode OBJECT-TYPE + SYNTAX INTEGER { + readwrite(1), + readmostly(2), + readonly(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Global export mode. This represents the maximum + access rights." + ::= { dafsExportEntry 5 } + + dafsExportAccessList OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + export. This is the list of hosts that may + access the export. If empty, all hosts may + access the export." + ::= { dafsExportEntry 6 } + + -------------------------- + -- VI interface statistics + -------------------------- + + viaNodeConnection OBJECT IDENTIFIER ::= { vi 1 } + + viaNodeSystemName OBJECT-TYPE + SYNTAX DisplayString(SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string by which the node is identified in the cluster." + ::= { viaNodeConnection 1 } + + viaCreated OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs created." + ::= { viaNodeConnection 2 } + + viaConnectRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times Connect Request call is made." + ::= { viaNodeConnection 3 } + + viaConnectWait OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times Connect wait call is made." + ::= { viaNodeConnection 4 } + + viaDisconnect OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of times VI got disconnected with out any error." + ::= { viaNodeConnection 5 } + + viaConnectTimeOut OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of times VI connect request got timed out." + ::= { viaNodeConnection 6 } + + viaConnected OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of time VI got connected with out any error." + ::= { viaNodeConnection 7 } + + viaCurrConnectPending OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which connect request is pending." + ::= { viaNodeConnection 8 } + + viaCurrConnectWaitPending OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which connect wait request is pending." + ::= { viaNodeConnection 9 } + + viaCurrConnected OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which the current state is CONNECTED." + ::= { viaNodeConnection 10 } + + viaCurrError OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which the current state is ERROR" + ::= { viaNodeConnection 11 } + + viaTotalError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs which encountered error state." + ::= { viaNodeConnection 12 } + + viaInMsgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming Messages received." + ::= { viaNodeConnection 13 } + + viaInRdma OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming RDMA requests received." + ::= { viaNodeConnection 14 } + + viaInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming bytes received, including those + received in error. This count includes bytes received on + currently established connections. This corresponds to the sum + of bytes received through received messages, incoming RDMA writes + and RDMA reads issued" + ::= { viaNodeConnection 15 } + + viaInRDMAReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming bytes received through RDMA read, + including those received in error. This count includes bytes + received on currently established connections." + ::= { viaNodeConnection 16 } + + viaInRDMAWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received through incoming RDMA writes, + including those received in error. This count includes bytes + received on currently established connections." + ::= { viaNodeConnection 17 } + + viaOutMsgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Messages sent." + ::= { viaNodeConnection 18 } + + viaOutRdma OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RDMA requests sent." + ::= { viaNodeConnection 19 } + + viaOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes sent, including those + sent in error. This count includes bytes sent on + currently established connections." + ::= { viaNodeConnection 20 } + + viaOutRDMAReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes sent through an incoming + RDMA read request, including those sent in error. + This count includes bytes sent on currently established + connections." + ::= { viaNodeConnection 21 } + + viaOutRDMAWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes sent through a RDMA write + operation, including those sent in error. This count + includes bytes sent on currently established connections." + ::= { viaNodeConnection 22 } + + + viaConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF ViaConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing via connection specific information." + ::= { viaNodeConnection 23 } + + viaConnEntry OBJECT-TYPE + SYNTAX ViaConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A conceptual row of the viaConnTable containing information + about a particular current via connection. Each row of this + table is transient, and it ceases to exist when the + connection makes transition to the CLOSED state." + INDEX { viaConnVINumber } + ::= { viaConnTable 1 } + + ViaConnEntry ::= SEQUENCE { + viaConnState Integer32, + viaConnVINumber Integer32, + viaConnRemoteNetAddress IpAddress, + viaConnLocalNetAddress IpAddress, + viaConnRemotePortNumber Integer32, + viaConnLocalPortNumber Integer32, + viaConnLocalDescriminator OCTET STRING, + viaConnRemoteDescriminator OCTET STRING, + viaConnLocalMaxTransferSize Integer32, + viaConnRemoteMaxTransferSize Integer32, + viaConnLocalEnableRdmaWrite Integer32, + viaConnLocalEnableRdmaRead Integer32, + viaConnRemoteEnableRdmaWrite Integer32, + viaConnRemoteEnableRdmaRead Integer32, + viaConnSentMessages Counter32, + viaConnSentRdmaReadMessages Counter32, + viaConnSentRdmaWriteMessages Counter32, + viaConnRcvdMessages Counter32, + viaConnRcvdRdmaReadMessages Counter32, + viaConnRcvdRdmaWriteMessages Counter32 + } + + viaConnState OBJECT-TYPE + SYNTAX INTEGER { + idle (1), + pendingConnect(2), + connected(3), + error(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of this via connection + Legal States: + Idle 1 + Pending Connect 2 + Connected 3 + Error 4" + ::= { viaConnEntry 1 } + + viaConnVINumber OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number which uniquely defines a connection." + ::= { viaConnEntry 2 } + + viaConnRemoteNetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the remote system of the connection." + ::= { viaConnEntry 3 } + + viaConnLocalNetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Local IPadress of the connection." + ::= { viaConnEntry 4 } + + viaConnRemotePortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Remote TCP portnumber of the connection." + ::= { viaConnEntry 5 } + + viaConnLocalPortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Local TCP Portnumber of the connection." + ::= { viaConnEntry 6 } + + viaConnLocalDescriminator OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An identifier used by the local process to identify the + VI connection." + ::= { viaConnEntry 7 } + + viaConnRemoteDescriminator OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An identifier used by the remote process to identify the + VI connection." + ::= { viaConnEntry 8 } + + viaConnLocalMaxTransferSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local limit on the maximum packet size that can be + transfered through the connection." + ::= { viaConnEntry 9 } + + viaConnRemoteMaxTransferSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote limit on the maximum packet size that can be + transfered through the connection." + ::= { viaConnEntry 10 } + + viaConnLocalEnableRdmaWrite OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA write is enabled + in the local system otherwise, it is 0." + ::= { viaConnEntry 11 } + + viaConnLocalEnableRdmaRead OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA read is enabled + in the local system otherwise, it is 0." + ::= { viaConnEntry 12 } + + viaConnRemoteEnableRdmaWrite OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA write is enabled + in the remote system otherwise, it is 0." + ::= { viaConnEntry 13 } + + viaConnRemoteEnableRdmaRead OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA read is enabled + in the remote system otherwise, it is 0." + ::= { viaConnEntry 14 } + + viaConnSentMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of messages sent through the connection." + ::= { viaConnEntry 15 } + + viaConnSentRdmaReadMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma read messages sent through the + connection." + ::= { viaConnEntry 16 } + + viaConnSentRdmaWriteMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma write messages sent through the + connection." + ::= { viaConnEntry 17 } + + viaConnRcvdMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of messages received through the connection." + ::= { viaConnEntry 18 } + + viaConnRcvdRdmaReadMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma read messages received through the + connection." + ::= { viaConnEntry 19 } + + viaConnRcvdRdmaWriteMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma write messages received through the + connection." + ::= { viaConnEntry 20 } + + viaErrors OBJECT IDENTIFIER ::= { vi 2 } + + viaErrPostDesc OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of descriptors completed in error + by NIC." + ::= { viaErrors 1 } + + viaErrConnLost OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Lost Connection errors. " + ::= { viaErrors 2 } + + viaErrRecvQEmpty OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors due to an empty receive Queue. " + ::= { viaErrors 3 } + + viaErrRdmawProt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of remote DMA write protection errors. " + ::= { viaErrors 4 } + + viaErrRdmarProt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of remote DMA read protection errors. " + ::= { viaErrors 5 } + + viaErrCompProt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of protection errors. " + ::= { viaErrors 6 } + + viaErrorThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Setting this threshold will cause a trap to be enabled + such that if the total error exceeds error threshold set + a viaNodeErrorsTrap trap will be generated." + ::= { viaErrors 7 } + + viaNicAttributes OBJECT IDENTIFIER ::= { vi 3 } + + viaNicTable OBJECT-TYPE + SYNTAX SEQUENCE OF ViaNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing via NIC-specific information." + ::= { viaNicAttributes 1} + + viaNicEntry OBJECT-TYPE + SYNTAX ViaNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A conceptual row of the viaNicTable containing information + about a particular present VINic." + + INDEX { viaNicIndex } + ::= { viaNicTable 1 } + + ViaNicEntry ::= SEQUENCE { + viaNicIndex Integer32, + viaName DisplayString, + viaHardwareVersion DisplayString, + viaProviderVersion DisplayString, + viaNicAddress PhysAddress, + viaThreadSafe Integer32, + viaMaxDiscriminatorLength Integer32, + viaMaxRegisterBytes Integer32, + viaMaxRegisterRegions Integer32, + viaMaxRegisterBlockBytes Integer32, + viaMaxVI Integer32, + viaMaxDescriptorsPerQueue Integer32, + viaMaxSegmentsPerDesc Integer32, + viaMaxCQ Integer32, + viaMaxCQEntries Integer32, + viaMaxTransferSize Integer32, + viaNativeMTU Integer32, + viaMaxPTags Integer32, + viaCurrRegisterBytes Integer32, + viaCurrRegisterRegions Integer32, + viaCurrVI Integer32, + viaCurrCQ Integer32, + viaCurrPTags Integer32, + viaConnectionListenPort Integer32 + } + + viaNicIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the NIC in the NIC table." + ::= { viaNicEntry 1 } + + viaName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The symbolic name of the NIC device." + ::= { viaNicEntry 2 } + + viaHardwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the VINIC described by this MIB." + ::= { viaNicEntry 3 } + + viaProviderVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the VI provider." + ::= { viaNicEntry 4 } + + viaNicAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Network address of this NIC." + ::= { viaNicEntry 5 } + + viaThreadSafe OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1 if synchronisation model is thread safe else 0." + ::= { viaNicEntry 6 } + + viaMaxDiscriminatorLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of bytes that the VI provider allows + for a connection descriminator." + ::= { viaNicEntry 7 } + + viaMaxRegisterBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of bytes that can be registered." + ::= { viaNicEntry 8 } + + viaMaxRegisterRegions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of memory regions that can be registered." + ::= { viaNicEntry 9 } + + viaMaxRegisterBlockBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Largest contiguous block of memory that can be registered." + ::= { viaNicEntry 10 } + + viaMaxVI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit on the total number of VI instances this entity can + support." + ::= { viaNicEntry 11 } + + viaMaxDescriptorsPerQueue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum Descriptors per VI Work Queue that this VI provider + can support." + ::= { viaNicEntry 12 } + + viaMaxSegmentsPerDesc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of segments per descriptor that this VI provider + can support." + ::= { viaNicEntry 13 } + + viaMaxCQ OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of completion queues this VI provider can support." + ::= { viaNicEntry 14 } + + viaMaxCQEntries OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of Completion queue entries per completion queue + that this VI provider can support." + ::= { viaNicEntry 15 } + + viaMaxTransferSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum transfer size supported by the VI Nic. The maximum + transfer size is the amount of data that can be described by a + single VI descriptor." + ::= { viaNicEntry 16 } + + viaNativeMTU OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The native MTU size of the underlying network. For frame-based + networks, this could reflect its native frame size. For cell-based + networks, it could reflect the MTU of the appropriate abstraction + layer that it supports." + ::= { viaNicEntry 17 } + + viaMaxPTags OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of protection tags that are supported by this + VI provider." + ::= { viaNicEntry 18 } + + viaCurrRegisterBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of bytes registered by the VI user for this + NIC." + ::= { viaNicEntry 19 } + + viaCurrRegisterRegions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of memory regions that is registered by VI user + for this NIC." + ::= { viaNicEntry 20 } + + viaCurrVI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of VI instances for this NIC." + ::= { viaNicEntry 21 } + + viaCurrCQ OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of completion queues this VI provider + has." + ::= { viaNicEntry 22 } + + viaCurrPTags OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current Number of protection tags this VI provider has." + ::= { viaNicEntry 23 } + + viaConnectionListenPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port number on which VI server is listening for VI connection + request." + ::= { viaNicEntry 24 } + + + -- -- -- -- -- -- -- -- + -- VFILER group -- + -- -- -- -- -- -- -- -- + vfilerIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether vfiler is licensed on the + filer." + ::= { vfiler 1 } + + vfFilers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of vfilers in the physical Filer." + ::= { vfiler 2 } + + vfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler general information " + ::= { vfiler 3 } + + vfEntry OBJECT-TYPE + SYNTAX VfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler information" + INDEX { vfIndex} + ::= { vfTable 1 } + + VfEntry ::= + SEQUENCE { + vfIndex + Integer32, + vfName + DisplayString, + vfUuid + OCTET STRING, + vfIpAddresses + Integer32, + vfStoragePaths + Integer32, + vfIpSpace + DisplayString, + vfAllowedProtocols + Integer32, + vfDisallowedProtocols + Integer32, + vfState + Integer32 + } + + vfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the referenced vfiler." + ::= { vfEntry 1 } + + + vfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A textual string that contains the name of the referenced vfiler." + ::= { vfEntry 2 } + + vfUuid OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..36)) + MAX-ACCESS read-only + STATUS current + + DESCRIPTION + "The UUID of the referenced vfiler." + ::= { vfEntry 3 } + + vfIpAddresses OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IP addresses for the referenced vfiler." + ::= { vfEntry 4 } + + + vfStoragePaths OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of storage paths for the referenced vfiler." + ::= { vfEntry 5 } + + vfIpSpace OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A textual string that contains the name of the ipspace that the referenced vfiler belongs to." + ::= { vfEntry 6 } + + vfAllowedProtocols OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of protocols allowed for the referenced vfiler." + ::= { vfEntry 7 } + + vfDisallowedProtocols OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of protocols disallowed for the referenced vfiler." + ::= { vfEntry 8 } + + vfState OBJECT-TYPE + SYNTAX INTEGER { + stopped (1), + running (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the vfiler: Running or stopped." + ::= { vfEntry 9 } + + vfIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler IP addresses information " + ::= { vfiler 4 } + + vfIpEntry OBJECT-TYPE + SYNTAX VfIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler IP addresses information" + INDEX { vfFiIndex, vfIpIndex } + ::= { vfIpTable 1 } + + VfIpEntry ::= + SEQUENCE { + vfFiIndex + Integer32, + vfIpIndex + Integer32, + vfIpAddr + IpAddress + } + + vfFiIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced vfiler." + ::= { vfIpEntry 1 } + + vfIpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies which IP address in the referenced vfiler." + ::= { vfIpEntry 2 } + + vfIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A IP address for the referenced vfiler." + ::= { vfIpEntry 3 } + + vfSpTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfSpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler storage path information " + ::= { vfiler 5 } + + vfSpEntry OBJECT-TYPE + SYNTAX VfSpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler storage path information" + INDEX { vfFsIndex, vfSpIndex } + ::= { vfSpTable 1 } + + VfSpEntry ::= + SEQUENCE { + vfFsIndex + Integer32, + vfSpIndex + Integer32, + vfSpName + OCTET STRING + } + + vfFsIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced vfiler." + ::= { vfSpEntry 1 } + + vfSpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies which storage path in the referenced vfiler." + ::= { vfSpEntry 2 } + + vfSpName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The storage path name for the referenced vfiler." + ::= { vfSpEntry 3 } + + + vfProTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler protocol information " + ::= { vfiler 6 } + + vfProEntry OBJECT-TYPE + SYNTAX VfProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler protocol information" + INDEX { vfFpIndex, vfProIndex } + ::= { vfProTable 1 } + + VfProEntry ::= + SEQUENCE { + vfFpIndex + Integer32, + vfProIndex + Integer32, + vfProName + OCTET STRING, + vfProStatus + Integer32 + } + + vfFpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced vfiler." + ::= { vfProEntry 1 } + + vfProIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a protocol in the referenced vfiler." + ::= { vfProEntry 2 } + + vfProName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string that contains the protocol name for the referenced vfiler." + ::= { vfProEntry 3 } + + vfProStatus OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the referenced vfiler protocol is allowed or disallowed." + ::= { vfProEntry 4 } + + -- -- -- -- -- -- -- -- + -- Block access protocols group -- + -- -- -- -- -- -- -- -- + fcpIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether FCP access protocols are licensed on the + filer." + ::= { blocks 1 } + + iscsiIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether iSCSI access protocols are licensed on the + filer." + ::= { blocks 2 } + + fcpLowReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via FCP + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 3 } + + fcpHighReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via FCP + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 4 } + + + fcpLowWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via FCP + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 5 } + + + fcpHighWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via FCP + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 6 } + + + iscsiLowReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via iSCSI + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 7 } + + + iscsiHighReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via iSCSI + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 8 } + + + iscsiLowWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via iSCSI + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 9 } + + + iscsiHighWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via iSCSI + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 10 } + + + iscsiHighOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of iSCSI ops handled since the + last boot. This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 11} + + iscsiLowOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of iSCSI ops handled since the + last boot. This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 12} + + fcpHighOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of FCP ops handled since the + last boot. This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 13} + + fcpLowOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of FCP ops handled since the + last boot. This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 14} + + lun OBJECT IDENTIFIER ::= {blocks 15 } + + lunCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of LUNs in the Filer." + ::= { lun 1 } + + lunTable OBJECT-TYPE + SYNTAX SEQUENCE OF LunEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-LUN general information " + ::= {lun 2} + + lunEntry OBJECT-TYPE + SYNTAX LunEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-LUN information" + INDEX { lunIndex} + ::= { lunTable 1 } + + LunEntry ::= + SEQUENCE { + lunIndex Integer32, + lunName DisplayString, + lunComment DisplayString, + lunSizeLow Integer32, + lunSizeHigh Integer32, + lunMapped Integer32, + lunSerialNumber DisplayString, + lunQtreeName DisplayString, + lunHighOps Counter32, + lunLowOps Counter32, + lunHighReadBytes Counter32, + lunLowReadBytes Counter32, + lunHighWriteBytes Counter32, + lunLowWriteBytes Counter32, + lunHighErrors Counter32, + lunLowErrors Counter32, + lunOnline Integer32, + lunSnapStatus Integer32, + lunShareStatus Integer32, + lunSpaceReserved Integer32, + lunStatsResetTime Integer32, + lunHighReadOps Counter32, + lunLowReadOps Counter32, + lunHighWriteOps Counter32, + lunLowWriteOps Counter32, + lunHighOtherOps Counter32, + lunLowOtherOps Counter32, + lunSize64 Counter64, + lun64Ops Counter64, + lun64ReadBytes Counter64, + lun64WriteBytes Counter64, + lun64Errors Counter64, + lun64ReadOps Counter64, + lun64WriteOps Counter64, + lun64OtherOps Counter64 + } + + lunIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced LUN." + ::= { lunEntry 1 } + + lunName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the LUN. This is also the path to the LUN + on the filer." + ::= { lunEntry 2 } + + lunComment OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The comment, if any, for this LUN." + ::= { lunEntry 3 } + + lunSizeLow OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of the LUN in bytes. This object returns the + least significant 32 bits of the 64 bit unsigned integer." + ::= { lunEntry 4 } + + lunSizeHigh OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of the LUN in bytes. This object returns the + most significant 32 bits of the 64 bit unsigned integer." + ::= { lunEntry 5 } + + lunMapped OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This LUN has been mapped to at least one initiator group." + ::= { lunEntry 6 } + + lunSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 12 character SCSI serial number of the LUN." + ::= { lunEntry 7 } + + + lunQtreeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string that indicates which qtree this LUN belongs to." + ::= { lunEntry 8 } + + lunHighOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops for + this LUN since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 9} + + lunLowOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops for + this LUN since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 10 } + + lunHighReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from this LUN + since the stats were last reset. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 11 } + + lunLowReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from this LUN + since the stats were last reset. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 12 } + + + lunHighWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to this LUN + since the stats were last reset. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 13 } + + lunLowWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to this LUN + since the stats were last reset. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 14 } + + lunHighErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors seen on this LUN + since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 15 } + + lunLowErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors seen on this LUN + since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 16 } + + lunOnline OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the LUN is online." + ::= { lunEntry 17 } + + lunSnapStatus OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether a snapshot of this LUN can be taken." + ::= { lunEntry 18 } + + + lunShareStatus OBJECT-TYPE + SYNTAX INTEGER { + none(1), + read(2), + write(3), + all(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sharing status for the LUN." + ::= { lunEntry 19 } + + + lunSpaceReserved OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the LUN has space reservation enabled." + ::= { lunEntry 20 } + + lunStatsResetTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of seconds since this LUN's stats were + last reset." + ::= { lunEntry 21 } + + + lunHighReadOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI read ops for + this LUN since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 22} + + lunLowReadOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI read ops for + this LUN since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 23 } + + + lunHighWriteOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI write ops for + this LUN since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 24} + + lunLowWriteOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI write ops for + this LUN since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 25 } + + + lunHighOtherOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops that are not + read or write for this LUN since the stats were last + reset. This object returns the least significant 32 + bits of the 64 bit unsigned integer." + ::= { lunEntry 26} + + lunLowOtherOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops that are not + read or write for this LUN since the stats were last + reset. This object returns the most significant 32 + bits of the 64 bit unsigned integer." + ::= { lunEntry 27 } + + lunSize64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of the LUN in bytes. This object returns all + of the 64 bit unsigned integer." + ::= { lunEntry 28 } + + lun64Ops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops for + this LUN since the stats were last reset. This object + all of the 64 bit unsigned integer." + ::= { lunEntry 29} + + lun64ReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from this LUN + since the stats were last reset. This object returns + all of the 64 bit unsigned integer." + ::= { lunEntry 30 } + + lun64WriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to this LUN + since the stats were last reset. This object returns + all of the 64 bit unsigned integer." + ::= { lunEntry 31 } + + lun64Errors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors seen on this LUN + since the stats were last reset. This object + returns all the 64 bit unsigned integer." + ::= { lunEntry 32 } + + lun64ReadOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI read ops for + this LUN since the stats were last reset. This object + returns all of the 64 bit unsigned integer." + ::= { lunEntry 33} + + lun64WriteOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI write ops for + this LUN since the stats were last reset. This object + returns all of the 64 bit unsigned integer." + ::= { lunEntry 34} + + lun64OtherOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops that are not + read or write for this LUN since the stats were last + reset. This object returns all of the 64 bit + unsigned integer." + ::= { lunEntry 35} + + lunMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF LunMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a table listing the initiator group to + Logical Unit Number mapping for each LUN." + ::= { lun 3 } + + lunMapEntry OBJECT-TYPE + SYNTAX LunMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a per LUN and Initiator group mapping of + SCSI logical unit numbers." + INDEX { lunMapLUNIndex, lunMapInitiatorGroupIndex } + ::= { lunMapTable 1 } + + LunMapEntry ::= + SEQUENCE { + lunMapLUNIndex Integer32, + lunMapInitiatorGroupIndex Integer32, + lunMapLUNName DisplayString, + lunMapInitiatorGroupName DisplayString, + lunMapLogicalUnitNumber Integer32 + } + + lunMapLUNIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the LUN in the table." + ::= { lunMapEntry 1 } + + lunMapInitiatorGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies an initiator group in + the table." + ::= { lunMapEntry 2 } + + lunMapLUNName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the LUN." + ::= { lunMapEntry 3 } + + lunMapInitiatorGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the initiator group that this LUN is + mapped to." + ::= { lunMapEntry 4 } + + lunMapLogicalUnitNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SCSI Logical Unit Number that this LUN is mapped to + for this initiator group." + ::= { lunMapEntry 5 } + + initiator OBJECT IDENTIFIER ::= {blocks 16} + + initiatorGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF InitiatorGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-initiator group general + information " + ::= {initiator 1} + + initiatorGroupEntry OBJECT-TYPE + SYNTAX InitiatorGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-initiator group information" + INDEX { initiatorGroupIndex } + ::= { initiatorGroupTable 1 } + + InitiatorGroupEntry ::= + SEQUENCE { + initiatorGroupIndex Integer32, + initiatorGroupName DisplayString, + initiatorGroupType Integer32, + initiatorGroupOS Integer32, + initiatorGroupThrottleReserve Integer32, + initiatorGroupThrottleBorrow Integer32, + initiatorGroupUsePartner Integer32, + initiatorGroupUseALUA Integer32 + } + + initiatorGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific initiator group." + ::= { initiatorGroupEntry 1 } + + initiatorGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the initiator group" + ::= { initiatorGroupEntry 2 } + + initiatorGroupType OBJECT-TYPE + SYNTAX INTEGER { + fcp(1), + iSCSI(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this initiator group, either iSCSI or FCP" + ::= { initiatorGroupEntry 3 } + + initiatorGroupOS OBJECT-TYPE + SYNTAX INTEGER { + default(1), + solaris(2), + windows(3), + hpux(4), + aix(5), + linux(6), + defaultPartner(7), + netware(8), + vmware(9), + openvms(10), + invalid(256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating system the clients in this initiator + group run. This governs the finer details of + SCSI protocol interaction with these initiators" + ::= { initiatorGroupEntry 4 } + + initiatorGroupThrottleReserve OBJECT-TYPE + SYNTAX Integer32 (0..99) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Percentage of filer scsi command blocks reserved for + this initiator group" + ::= { initiatorGroupEntry 5 } + + + initiatorGroupThrottleBorrow OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if this inititiator group is allowed to + exceed its throttle settings if more resources + are needed and otherwise available. If + initiatorGroupThrottleReserve is 0, this value + is meaningless" + ::= { initiatorGroupEntry 6 } + + initiatorGroupUsePartner OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The takeover mode for the initiator group. This is + only applicable to FCP initiator groups on clustered + filers" + ::= { initiatorGroupEntry 7 } + + initiatorGroupUseALUA OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If true this initiator group supports Asymetric Logical + Unit Access." + ::= { initiatorGroupEntry 8 } + + + initiatorGroupMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF InitiatorGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of individual Initator names in each Initiator + group" + ::= {initiator 2} + + initiatorGroupMemberEntry OBJECT-TYPE + SYNTAX InitiatorGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-initiator group information" + INDEX { initiatorGroupMemberIndex, initiatorGroupMemberNameIndex} + ::= { initiatorGroupMemberTable 1 } + + InitiatorGroupMemberEntry ::= + SEQUENCE { + initiatorGroupMemberIndex + Integer32, + initiatorGroupMemberNameIndex + Integer32, + initiatorName + DisplayString + } + + initiatorGroupMemberIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific initiator group." + ::= { initiatorGroupMemberEntry 1 } + + initiatorGroupMemberNameIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number the identifies the initiator in the group." + ::= { initiatorGroupMemberEntry 2 } + + initiatorName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name for this initiator." + ::= { initiatorGroupMemberEntry 3 } + + initiatorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF InitatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of initiators that are connected to the filer." + ::= { initiator 3 } + + initiatorListEntry OBJECT-TYPE + SYNTAX InitatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-connected-initiator information." + INDEX { initiatorListEntryIndex} + ::= { initiatorListTable 1 } + + InitatorListEntry ::= + SEQUENCE { + initiatorListEntryIndex Integer32, + targetAdapterName DisplayString, + connectedInitiatorNodeName DisplayString, + connectedInitiatorPortName DisplayString, + connectedInitiatorType Integer32, + connectedInitiatorIsid DisplayString, + connectedInitiatorPortalGroup Integer32 + } + + initiatorListEntryIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the initiator connected to + the target adapter." + ::= { initiatorListEntry 1 } + + targetAdapterName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the target adapter in the filer." + ::= { initiatorListEntry 2 } + + connectedInitiatorNodeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name for this initiator node." + ::= { initiatorListEntry 3 } + + connectedInitiatorPortName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FibreChannel device's portname. This is FCP only." + ::= { initiatorListEntry 4 } + + connectedInitiatorType OBJECT-TYPE + SYNTAX INTEGER { + fcp(1), + iSCSI(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this init group, either iSCSI or FCP" + ::= { initiatorListEntry 5 } + + connectedInitiatorIsid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The iSCSI isid (initiator session id) for this initiator. + This is iSCSI only." + ::= { initiatorListEntry 6 } + + connectedInitiatorPortalGroup OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The iSCSI portal group ID for this initiator. + This is iSCSI only." + ::= { initiatorListEntry 7 } + + + fcpTarget OBJECT IDENTIFIER ::= {blocks 17} + + fcpTargetTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcpTargetTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of fcp target adapter general + information " + ::= {fcpTarget 1} + + fcpTargetTableEntry OBJECT-TYPE + SYNTAX FcpTargetTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per fcp target device information" + INDEX { fcpTargetTableIndex } + ::= { fcpTargetTable 1 } + + FcpTargetTableEntry ::= + SEQUENCE { + fcpTargetTableIndex Integer32, + fcpTargetName DisplayString, + fcpTargetNN DisplayString, + fcpTargetPN DisplayString, + fcpTargetSpeed Integer32, + fcpTargetStatus Integer32, + fcpTargetStandby Integer32, + fcpTargetTopology Integer32, + fcpTargetType Integer32 + } + + fcpTargetTableIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific fcp target device." + ::= { fcpTargetTableEntry 1 } + + fcpTargetName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the fcp target device" + ::= { fcpTargetTableEntry 2 } + + fcpTargetNN OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FC WWNN of the fcp target device" + ::= { fcpTargetTableEntry 3 } + + fcpTargetPN OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FC WWPN of the fcp target device" + ::= { fcpTargetTableEntry 4 } + + fcpTargetSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "speed in gigabits per second. 0 is unknown." + ::= { fcpTargetTableEntry 5 } + + fcpTargetStatus OBJECT-TYPE + SYNTAX INTEGER { + startup(1), + uninitialized(2), + initializingFW(3), + linkNotConnected(4), + waitingForLinkUp(5), + online(6), + linkDisconnected(7), + resetting(8), + offline(9), + offlinedByUserSystem(10), + unknown(11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the fcp target adapter" + ::= { fcpTargetTableEntry 6 } + + fcpTargetStandby OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether this target adapter is in standby mode." + ::= { fcpTargetTableEntry 7 } + + fcpTargetTopology OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + fabric(2), + pointToPoint(3), + loop(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "fibre channel topology for this adapter. " + ::= { fcpTargetTableEntry 8 } + + fcpTargetType OBJECT-TYPE + SYNTAX INTEGER { + physical(1), + local(2), + standby(3), + partner(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Responsibility/Type for this adapter." + ::= { fcpTargetTableEntry 9 } + + fcpCfMode OBJECT-TYPE + SYNTAX INTEGER { + mixed(1), + standby(2), + partner(3), + partnerProxy(4), + partnerStandby(5), + localPrimary(6), + dualFabric(7), + ssi(8), + unknown(256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Failover setting for the FCP target cluster." + ::= { blocks 18 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- Port sets + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + pset OBJECT IDENTIFIER ::= {blocks 19} + + psetTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of portset general + information " + ::= {pset 1} + + psetEntry OBJECT-TYPE + SYNTAX PortSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of portset information" + INDEX { psetIndex } + ::= { psetTable 1 } + + PortSetEntry ::= + SEQUENCE { + psetIndex Integer32, + psetName DisplayString, + psetType Integer32 + } + + psetIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific port set." + ::= { psetEntry 1 } + + psetName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the port set" + ::= { psetEntry 2 } + + psetType OBJECT-TYPE + SYNTAX INTEGER { + fcp(1), + iSCSI(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this port set, either iSCSI or FCP" + ::= { psetEntry 3 } + + psetMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF PsetMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of individual Port names in each Port + set" + ::= {pset 2} + + psetMemberEntry OBJECT-TYPE + SYNTAX PsetMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of portset port information" + INDEX { psetMemberIndex, psetMemberNameIndex} + ::= { psetMemberTable 1 } + + PsetMemberEntry ::= + SEQUENCE { + psetMemberIndex + Integer32, + psetMemberNameIndex + Integer32, + psetPortName + DisplayString + } + + psetMemberIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific port set." + ::= { psetMemberEntry 1 } + + psetMemberNameIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number the identifies the port in the set." + ::= { psetMemberEntry 2 } + + psetPortName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name for this port." + ::= { psetMemberEntry 3 } + + -- The rest of the blocks group. + + fcp64ReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via FCP + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 20 } + + fcp64WriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via FCP + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 21 } + + iscsi64ReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via iSCSI + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 22 } + + iscsi64WriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via iSCSI + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 23 } + + iscsi64Ops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of iSCSI ops handled since the + last boot. This object returns all of the 64 bit + unsigned integer." + ::= { blocks 24 } + + fcp64Ops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of FCP ops handled since the + last boot. This object returns all of the 64 bit + unsigned integer." + ::= { blocks 25 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NFS caching group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NFS caching options + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + nfsCacheOptions OBJECT IDENTIFIER ::= { nfscache 1 } + + nfsCacheIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NFS caching is enabled on this system." + ::= { nfsCacheOptions 1 } + + nfsCacheIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NFS caching is licensed on this system." + ::= { nfsCacheOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NFS caching stats + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + nfsCacheStats OBJECT IDENTIFIER ::= { nfscache 2 } + + nfsCacheBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes received from clients" + ::= { nfsCacheStats 1 } + + nfsCacheBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes sent to clients" + ::= { nfsCacheStats 2 } + + nfsCacheBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes received from servers" + ::= { nfsCacheStats 3 } + + nfsCacheBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes sent to servers" + ::= { nfsCacheStats 4 } + + nfsCacheTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS requests received" + ::= { nfsCacheStats 5 } + + nfsCacheHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS requests resulting in cache hits" + ::= { nfsCacheStats 6 } + + nfsCacheMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS requests resulting in cache misses" + ::= { nfsCacheStats 7 } + + nfsCacheMissCacheableRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests that were cacheable misses" + ::= { nfsCacheStats 8 } + + nfsCacheMissUnCacheableRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests that were uncacheable misses" + ::= { nfsCacheStats 9 } + + nfsCacheEjectRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in object eject due to expiration" + ::= { nfsCacheStats 10 } + + nfsCacheVerifyRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in object verification" + ::= { nfsCacheStats 11 } + + nfsCacheRpcRecords OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total RPC records received" + ::= { nfsCacheStats 12 } + + nfsCacheBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for NFS requests" + ::= { nfsCacheStats 13 } + + nfsCacheHighBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from clients. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 14 } + + nfsCacheLowBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from clients. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 15 } + + nfsCacheHighBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to clients. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 16 } + + nfsCacheLowBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to clients. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 17 } + + nfsCacheHighBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from servers. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 18 } + + nfsCacheLowBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from servers. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 19 } + + nfsCacheHighBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to servers. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 20 } + + nfsCacheLowBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to servers. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 21 } + + nfsCacheHighTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests received. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 22 } + + nfsCacheLowTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests received. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 23 } + + nfsCacheHighHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache hits. This + object returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 24 } + + nfsCacheLowHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache hits. This + object returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 25 } + + nfsCacheHighMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache misses. This + object returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 26 } + + nfsCacheLowMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache misses. This + object returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 27 } + + nfsCache64BytesFromClients OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from clients. This object + returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 28 } + + nfsCache64BytesToClients OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to clients. This object returns + all of the 64 bit unsigned integer." + ::= { nfsCacheStats 29 } + + nfsCache64BytesFromServers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from servers. This object + returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 30 } + + nfsCache64BytesToServers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to servers. This object + returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 31 } + + nfsCache64TotalRequests OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests received. This object returns + all of the 64 bit unsigned integer." + ::= { nfsCacheStats 32 } + + nfsCache64HitRequests OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache hits. This + object returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 33 } + + nfsCache64MissRequests OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache misses. This + object returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 34 } + + -- -- -- -- -- -- -- -- + -- the storage group -- + -- -- -- -- -- -- -- -- + + enclosure OBJECT IDENTIFIER ::= { storage 1 } + + -- -- -- -- -- -- -- + -- The enclosure group for storage + + enclNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of storage enclosures in the storage subsystem." + ::= { enclosure 1 } + + enclTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display disk enclosure environmental information for disk + shelves that support SCSI Enclosure Services." + ::= { enclosure 2 } + + enclEntry OBJECT-TYPE + SYNTAX EnclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display disk enclosure (shelf) environmental + information for the referenced disk enclosure." + INDEX { enclIndex } + ::= { enclTable 1 } + + EnclEntry ::= + SEQUENCE { + enclIndex + Integer32, + enclContactState + Integer32, + enclChannelShelfAddr + DisplayString, + enclProductLogicalID + DisplayString, + enclProductID + DisplayString, + enclProductVendor + DisplayString, + enclProductModel + DisplayString, + enclProductRevision + DisplayString, + enclProductSerialNo + DisplayString, + enclNumberDiskBays + Integer32, + enclDisksPresent + DisplayString, + enclPowerSuppliesMaximum + Integer32, + enclPowerSuppliesPresent + DisplayString, + enclPowerSuppliesSerialNos + DisplayString, + enclPowerSuppliesFailed + DisplayString, + enclFansMaximum + Integer32, + enclFansPresent + DisplayString, + enclFansFailed + DisplayString, + enclTempSensorsMaximum + Integer32, + enclTempSensorsPresent + DisplayString, + enclTempSensorsOverTempFail + DisplayString, + enclTempSensorsOverTempWarn + DisplayString, + enclTempSensorsUnderTempFail + DisplayString, + enclTempSensorsUnderTempWarn + DisplayString, + enclTempSensorsCurrentTemp + DisplayString, + enclTempSensorsOverTempFailThr + DisplayString, + enclTempSensorsOverTempWarnThr + DisplayString, + enclTempSensorsUnderTempFailThr + DisplayString, + enclTempSensorsUnderTempWarnThr + DisplayString, + enclElectronicsMaximum + Integer32, + enclElectronicsPresent + DisplayString, + enclElectronicsSerialNos + DisplayString, + enclElectronicsFailed + DisplayString, + enclVoltSensorsMaximum + Integer32, + enclVoltSensorsPresent + DisplayString, + enclVoltSensorsOverVoltFail + DisplayString, + enclVoltSensorsOverVoltWarn + DisplayString, + enclVoltSensorsUnderVoltFail + DisplayString, + enclVoltSensorsUnderVoltWarn + DisplayString, + enclVoltSensorsOverVoltFailThr + DisplayString, + enclVoltSensorsOverVoltWarnThr + DisplayString, + enclVoltSensorsUnderVoltFailThr + DisplayString, + enclVoltSensorsUnderVoltWarnThr + DisplayString, + enclVoltSensorsCurrentVolt + DisplayString, + enclCurSensorsMaximum + Integer32, + enclCurSensorsPresent + DisplayString, + enclCurSensorsOverCurFail + DisplayString, + enclCurSensorsOverCurWarn + DisplayString, + enclCurSensorsOverCurFailThr + DisplayString, + enclCurSensorsOverCurWarnThr + DisplayString, + enclCurSensorsCurrentCur + DisplayString, + enclSASConnectMaximum + Integer32, + enclSASConnectPresent + DisplayString, + enclSASConnectVendor + DisplayString, + enclSASConnectType + DisplayString, + enclSASConnectCableLen + DisplayString, + enclSASConnectCableTech + DisplayString, + enclSASConnectCableEnd + DisplayString, + enclSASConnectSerialNos + DisplayString, + enclSASConnectPartNos + DisplayString, + enclPowerSuppliesPartNos + DisplayString, + enclFansSpeed + DisplayString, + enclElectronicsPartNos + DisplayString, + enclElectronicsCPLDVers + DisplayString + } + + enclIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this enclosure among the + possible monitored enclosures. This number normally + uniquely identifies one shelf within one boot, + but may it change between boots. The number may + also change within a boot if shelves are removed + and added." + ::= { enclEntry 1 } + + enclContactState OBJECT-TYPE + SYNTAX INTEGER { + initializing(1), + transitioning(2), + active(3), + inactive(4), + reconfiguring(5), + nonexistent(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the communication between the filer or storage + engine and the enclosure monitoring device in the enclosure." + ::= { enclEntry 2 } + + enclChannelShelfAddr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The adapter number or switch name and the port number + (together, called the channel), and shelf ID of this + enclosure. Examples are 8a.1 and switch:5.1." + ::= { enclEntry 3 } + + enclProductLogicalID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The logical identifier of this enclosure. This a form of the + World-Wide Name (WWN)." + ::= { enclEntry 4 } + + enclProductID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product ID of the shelf hardware module that provides + the enclosure monitoring function. Example is LRC." + ::= { enclEntry 5 } + + enclProductVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the vendor of this enclosure. Example is Xyratex." + ::= { enclEntry 6 } + + enclProductModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model name of this enclosure. Example is DiskShelf14." + ::= { enclEntry 7 } + + enclProductRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The revision number of this enclosure." + ::= { enclEntry 8 } + + enclProductSerialNo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number of this enclosure." + ::= { enclEntry 9 } + + enclNumberDiskBays OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disk bays in this enclosure." + ::= { enclEntry 10 } + + enclDisksPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of disks present by bay number in this enclosure." + ::= { enclEntry 11 } + + enclPowerSuppliesMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of power supplies in this enclosure." + ::= { enclEntry 12 } + + enclPowerSuppliesPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of power supplies present in the enclosure. + Numbering is from left to right (top supply, then bottom, + on each side, if applicable) in their intended location + in the shelf, while facing the supplies." + ::= { enclEntry 13 } + + enclPowerSuppliesSerialNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of serial numbers of power supplies present + in the enclosure. Not all shelves are able to report the + power supply serial number. Communication errors may + make the serial number unavailable. The order follows that + of enclPowerSuppliesPresent" + ::= { enclEntry 14 } + + enclPowerSuppliesFailed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of failed power supplies in this enclosure, numbered as + in enclPowerSuppliesPresent." + ::= { enclEntry 15 } + + enclFansMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of fans or fan modules monitored by this + enclosure. R100/R150 shelf power supply fans are not included + in this number." + ::= { enclEntry 16 } + + enclFansPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of fans or fan modules present and for which + status is known in this enclosure. Numbering begins with + fans on the front of the enclosure, if applicable. Fans + are numberedleft-to-right (upper fans, then lower, if + applicable) as facing the fans or the modules that + contain them, such as power supply modules. R100/R150 + shelf power supply fans are not included in this list." + ::= { enclEntry 17 } + + enclFansFailed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of failed fans or fan modules in this enclosure. Fans + are numbered as described in enclFansPresent." + ::= { enclEntry 18 } + + enclTempSensorsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of temperature sensors monitored + by this enclosure." + ::= { enclEntry 19 } + + enclTempSensorsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors present and for which + status is known in this enclosure. Temperature sensors are + numbered top-to-bottom and left-to-right, beginning with + the front of the enclosure, then the rear, as the modules + containing them are faced." + ::= { enclEntry 20 } + + enclTempSensorsOverTempFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting + overtemperature failure in this enclosure. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 21 } + + enclTempSensorsOverTempWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting overtemperature + warning in this enclosure. Sensors are numbered as in + TempSensorsPresent." + ::= { enclEntry 22 } + + enclTempSensorsUnderTempFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting undertemperature + failure in this enclosure. Sensors are numbered as in + TempSensorsPresent." + ::= { enclEntry 23 } + + enclTempSensorsUnderTempWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting undertemperature + warning in this enclosure. Sensors are numbered as in + TempSensorsPresent." + ::= { enclEntry 24 } + + enclTempSensorsCurrentTemp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperatures reported by all temperature sensors in + the enclosure, including the ambient temperature. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 25 } + + enclTempSensorsOverTempFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overtemperature failure thresholds for all + temperature sensors in the enclosure. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 26 } + + enclTempSensorsOverTempWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overtemperature warning thresholds for all + temperature sensors in the enclosure. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 27 } + + enclTempSensorsUnderTempFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undertemperature failure thresholds for all + temperature sensors in the enclosure. Sensors are numbered as + in TempSensorsPresent." + ::= { enclEntry 28 } + + enclTempSensorsUnderTempWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undertemperature warning thresholds for all + temperature sensors in the enclosure. Sensors are numbered as + in TempSensorsPresent." + ::= { enclEntry 29 } + + enclElectronicsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of enclosure services electronics modules that it is + possible for this enclosure to detect and/or monitor." + ::= { enclEntry 30 } + + enclElectronicsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list those enclosure services electronics modules present in + this enclosure. Numbering is from left-to-right or top-to-bottom + in their intended location in the shelf, while facing the + electronics modules. It is normal for the R200 FC-AT module to be + reported as the second module." + ::= { enclEntry 31 } + + enclElectronicsSerialNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of serial numbers of the enclosure services electronics + modules present in this enclosure. The order follows that of + enclElectronicsPresent." + ::= { enclEntry 32 } + + enclElectronicsFailed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of failed electronics elements. Valid only if + enclElectronicsPresent shows that some are present." + ::= { enclEntry 33 } + + enclVoltSensorsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of voltage sensors monitored by + this enclosure." + ::= { enclEntry 34 } + + enclVoltSensorsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors present and for which + status is known in this enclosure. Voltage sensors are + numbered top-to-bottom and left-to-right, as the modules + containing them are faced." + ::= { enclEntry 35 } + + enclVoltSensorsOverVoltFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting + overvoltage failure in this enclosure. Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 36 } + + enclVoltSensorsOverVoltWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting overvoltage + warning in this enclosure. Sensors are numbered as in + VoltSensorsPresent." + ::= { enclEntry 37 } + + enclVoltSensorsUnderVoltFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting undervoltage + failure in this enclosure. Sensors are numbered as in + VoltSensorsPresent." + ::= { enclEntry 38 } + + enclVoltSensorsUnderVoltWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting undervoltage + warning in this enclosure. Sensors are numbered as in + VoltSensorsPresent." + ::= { enclEntry 39 } + + enclVoltSensorsCurrentVolt OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltages reported by all voltage sensors in + the enclosure, Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 40 } + + enclVoltSensorsOverVoltFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overvoltage failure thresholds for all + voltage sensors in the enclosure. Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 41 } + + enclVoltSensorsOverVoltWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overvoltage warning thresholds for all + voltage sensors in the enclosure. Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 42 } + + enclVoltSensorsUnderVoltFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undervoltage failure thresholds for all + voltage sensors in the enclosure. Sensors are numbered + as in VoltSensorsPresent." + ::= { enclEntry 43 } + + enclVoltSensorsUnderVoltWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undervoltage warning thresholds for all + voltage sensors in the enclosure. Sensors are numbered as + in VoltSensorsPresent." + ::= { enclEntry 44 } + + enclCurSensorsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current sensors monitored by + this enclosure." + ::= { enclEntry 45 } + + enclCurSensorsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of current sensors present and for which + status is known in this enclosure. Current sensors are + numbered top-to-bottom and left-to-right, beginning with + the front of the enclosure, then the rear, as the modules + containing them are faced." + ::= { enclEntry 46 } + + enclCurSensorsOverCurFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of current sensors reporting + overcurrent failure in this enclosure. Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 47 } + + enclCurSensorsOverCurWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of current sensors reporting overcurrent + warning in this enclosure. Sensors are numbered as in + CurSensorsPresent." + ::= { enclEntry 48 } + + enclCurSensorsCurrentCur OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of currents reported by all current sensors in + the enclosure, Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 49 } + + enclCurSensorsOverCurFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overcurrent failure thresholds for all + current sensors in the enclosure. Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 50 } + + enclCurSensorsOverCurWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overcurrent warning thresholds for all + current sensors in the enclosure. Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 51 } + + enclSASConnectMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of possible SAS connectors monitored + by this enclosure." + ::= { enclEntry 52 } + + enclSASConnectPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of SAS connector numbers in this + enclosure that have cables attached. Connectors + are numbered beginning at one on module one, + counting connectors innermost-to-outermost on the + module, then module two innermost-to-outermost. + Modules are numbered as in enclElectronicsPresent." + ::= { enclEntry 53 } + + enclSASConnectVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of vendors of cables attached to the + SES connectors of the enclosure. If no cable, + is attached, the entry is shown as ." + ::= { enclEntry 54 } + + enclSASConnectType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of connector types of connectors attached + to the enclosure. If no cable is attached, + the entry is shown as ." + ::= { enclEntry 55 } + + enclSASConnectCableLen OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of lengths (in meters) of cables attached + to the the enclosure. If no cable is attached, + the entry is shown as ." + ::= { enclEntry 56 } + + enclSASConnectCableTech OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of cable technologies of connectors attached + to the enclosure. If no cable is attached, the + entry is shown as ." + ::= { enclEntry 57 } + + enclSASConnectCableEnd OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of identifiers of which end of the cable is + attached to the enclosure. If no cable is attached, + the entry is shown as ." + ::= { enclEntry 58 } + + enclSASConnectSerialNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of serial numbers of the SAS cables attached + to this enclosure. If no cable is attached, the + entry is shown as ." + ::= { enclEntry 59 } + + enclSASConnectPartNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of part numbers of the SAS cables attached + to this enclosure. If no cable is attached, the + entry is shown as ." + ::= { enclEntry 60 } + + enclPowerSuppliesPartNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of part numbers of power supplies present + in the enclosure. Not all shelves are able to report the + power supply part number. Communication errors may + make the part number unavailable. The order follows that of + enclPowerSuppliesPresent." + ::= { enclEntry 61 } + + enclFansSpeed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of fan speeds in revolutons per minute (RPM) for fans + or fan modules present and for which speed status + is known in this enclosure. Not all enclosure types report + fan speeds. Fans are numbered as described in enclFansPresent." + ::= { enclEntry 62 } + + enclElectronicsPartNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of part numbers of the enclosure services electronics + modules present in this enclosure. The order follows that of + enclElectronicsPresent." + ::= { enclEntry 63 } + + enclElectronicsCPLDVers OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of CPLDs ('complex programmable logic devices') of the + enclosure services electronics modules present in this enclosure. + Not all module types contain this part. + The order follows that of enclElectronicsPresent." + ::= { enclEntry 64 } + + -- -- -- -- -- -- -- -- + -- the network group + -- -- -- -- -- -- -- -- + + netInterfaces OBJECT IDENTIFIER ::= { network 1 } + + -- The net Interfaces table contains information on the entity's + -- interfaces. + + + netifNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of network interfaces (regardless of + their current state) present on this system." + ::= { netInterfaces 1 } + + netifTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of netifNumber." + ::= { netInterfaces 2 } + + netifEntry OBJECT-TYPE + SYNTAX NetIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { netifIndex } + ::= { netifTable 1 } + + NetIfEntry ::= + SEQUENCE { + netifIndex + Integer32, + netifDescr + DisplayString, + ifHighInOctets + Counter32, + ifLowInOctets + Counter32, + ifHighInUcastPkts + Counter32, + ifLowInUcastPkts + Counter32, + ifHighInNUcastPkts + Counter32, + ifLowInNUcastPkts + Counter32, + ifHighInDiscards + Counter32, + ifLowInDiscards + Counter32, + ifHighInErrors + Counter32, + ifLowInErrors + Counter32, + ifHighInUnknownProtos + Counter32, + ifLowInUnknownProtos + Counter32, + ifHighOutOctets + Counter32, + ifLowOutOctets + Counter32, + ifHighOutUcastPkts + Counter32, + ifLowOutUcastPkts + Counter32, + ifHighOutNUcastPkts + Counter32, + ifLowOutNUcastPkts + Counter32, + ifHighOutDiscards + Counter32, + ifLowOutDiscards + Counter32, + ifHighOutErrors + Counter32, + ifLowOutErrors + Counter32, + if64InOctets + Counter64, + if64InUcastPkts + Counter64, + if64InNUcastPkts + Counter64, + if64InDiscards + Counter64, + if64InErrors + Counter64, + if64InUnknownProtos + Counter64, + if64OutOctets + Counter64, + if64OutUcastPkts + Counter64, + if64OutNUcastPkts + Counter64, + if64OutDiscards + Counter64, + if64OutErrors + Counter64 + } + netifIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each interface. Its value + ranges between 1 and the value of ifNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { netifEntry 1 } + + netifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of + the manufacturer, the product name and the version + of the hardware interface." + ::= { netifEntry 2 } + + ifHighInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the + interface, including framing characters. + This object returns the most significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 3 } + + ifLowInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the + interface, including framing characters. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 4 } + + ifHighInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol. + This object returns the most significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 5 } + + ifLowInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 6 } + + + ifHighInNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol. + This object returns the most significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 7 } + + ifLowInNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 8 } + + ifHighInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 9 } + + ifLowInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 10 } + + ifHighInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol. This object returns the + most significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 11 } + + ifLowInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol. This object returns the + least significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 12 } + + ifHighInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol. This object returns the + most significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 13 } + + ifLowInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol. This object returns the + least significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 14 } + + ifHighOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + This object returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { netifEntry 15 } + + ifLowOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 16 } + + ifHighOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 17 } + + ifLowOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 18 } + + ifHighOutNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 19 } + + ifLowOutNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 20 } + + ifHighOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 21 } + + ifLowOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 22 } + + ifHighOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 23 } + + ifLowOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 24 } + + if64InOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the + interface, including framing characters. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 25 } + + if64InUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 26 } + + if64InNUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 27 } + + if64InDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space. This object returns all of the 64 bit + unsigned integer." + ::= { netifEntry 28 } + + if64InErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol. This object returns all + of the 64 bit unsigned integer." + ::= { netifEntry 29 } + + if64InUnknownProtos OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol. This object returns all + of the 64 bit unsigned integer." + ::= { netifEntry 30 } + + if64OutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 31 } + + if64OutUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 32 } + + if64OutNUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 33 } + + if64OutDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 34 } + + if64OutErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 35 } + + -- -- -- -- -- -- -- -- + -- the sis group + -- -- -- -- -- -- -- -- + + sisIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether Advanced SIS is licensed on the + filer." + ::= { sis 1 } + + sisTable OBJECT-TYPE + SYNTAX SEQUENCE OF SisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of the SIS volumes on the + system." + + ::= { sis 2 } + + sisEntry OBJECT-TYPE + SYNTAX SisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular SIS volume." + + INDEX { sisIndex } + ::= { sisTable 1 } + + SisEntry ::= + SEQUENCE { + sisIndex + Integer32, + sisPath + DisplayString, + sisState + Integer32, + sisStatus + Integer32, + sisProgress + DisplayString, + sisType + Integer32, + sisSchedule + DisplayString, + sisLastOpBeginTime + DisplayString, + sisLastOpEndTime + DisplayString, + sisHighLastOpSize + Integer32, + sisLowLastOpSize + Integer32, + sisLastOpError + DisplayString, + sis64LastOpSize + Counter64 + } + + sisIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + SIS volume." + ::= { sisEntry 1 } + + sisPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The path to the SIS volume." + ::= { sisEntry 2 } + + sisState OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether SIS is enabled on the + volume or not." + ::= { sisEntry 3 } + + sisStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + active(2), + undoing(3), + pending(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of the SIS volume." + ::= { sisEntry 4 } + + sisProgress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The progress of the current SIS operation." + ::= { sisEntry 5 } + + sisType OBJECT-TYPE + SYNTAX INTEGER { + regular(1), + snapvault(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether it is a regular or + snapvaulted SIS volume." + ::= { sisEntry 6 } + + sisSchedule OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The schedule for the SIS opertions." + ::= { sisEntry 7 } + + sisLastOpBeginTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The starting time of the last completed SIS + opertion." + ::= { sisEntry 8 } + + sisLastOpEndTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ending time of the last completed SIS + operation." + ::= { sisEntry 9 } + + sisHighLastOpSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that the + last completed SIS operation had processed. + This object returns the most significant 32 + bits of the 64 bit unsigned integer." + ::= { sisEntry 10 } + + sisLowLastOpSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that the + last completed SIS operation had processed. + This object returns the least significant 32 + bits of the 64 bit unsigned integer." + ::= { sisEntry 11 } + + sisLastOpError OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The error that the last SIS operation + encountered if it failed." + ::= { sisEntry 12 } + + sis64LastOpSize OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that the + last completed SIS operation had processed. + This object returns all of the 64 bit + unsigned integer." + ::= { sisEntry 13 } + + + -- -- -- -- -- -- -- -- -- + -- the compression group + -- -- -- -- -- -- -- -- -- + + compressIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether compression is licensed on + the filer." + ::= { compress 1 } + + compressTable OBJECT-TYPE + SYNTAX SEQUENCE OF CompressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the total space used as + well as the space saved by compression on + volumes." + ::= { compress 2 } + + + -- display the active file system compression statistics + + compressEntry OBJECT-TYPE + SYNTAX CompressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the total space used as + well as the space saved by compression on + the referenced file system." + INDEX { compressIndex } + ::= { compressTable 1 } + + CompressEntry ::= + SEQUENCE { + compressIndex + Integer32, + compressFileSys + DisplayString, + compressHighUsedKBytes + Counter32, + compressLowUsedKBytes + Counter32, + compress64UsedKBytes + Counter64, + compressHighSavedKBytes + Counter32, + compressLowSavedKBytes + Counter32, + compress64SavedKBytes + Counter64, + compressPercentSaved + INTEGER + } + + compressIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { compressEntry 1 } + + compressFileSys OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name for the referenced file system." + ::= { compressEntry 2 } + + compressHighUsedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the most significant 32 bits of the 64 + bit unsigned integer." + ::= { compressEntry 3 } + + compressLowUsedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { compressEntry 4 } + + compress64UsedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns all of the 64 bit unsigned integer." + ::= { compressEntry 5 } + + compressHighSavedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk space in KBytes of disk space that + is saved by compression on the referenced + file system. This object returns the most + significant 32 bits of the 64 bit unsigned + integer." + ::= { compressEntry 6 } + + compressLowSavedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk space in KBytes of disk space that + is saved by compression on the referenced + filesystem. This object returns the least + significant 32 bits of the 64 bit unsigned + integer." + ::= { compressEntry 7 } + + compress64SavedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk space in KBytes of disk space that + is saved by compression on the referenced + filesystem. This object returns all of the + 64 bit unsigned integer." + ::= { compressEntry 8 } + + compressPercentSaved OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space saved by + compression on the referenced filesystem." + ::= { compressEntry 9 } + + -- -- -- -- -- -- -- -- -- + -- the extcache group + -- -- -- -- -- -- -- -- -- + + extcacheType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the type of external cache being used. + Examples are none, PCS, IOMEM." + ::= { extcache 1 } + + extcacheSubType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the sub-type of external cache being used. + Examples are none, PAM1, PAM2." + ::= { extcache 2 } + + extcache64Uptime OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the uptime of the external cache." + ::= { extcache 3 } + + extcache64Size OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates size of the external cache in bytes." + ::= { extcache 4 } + + extcache64Usedsize OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates number of bytes used in the external cache." + ::= { extcache 5 } + + extcache64TotalBuffers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates total number of buffers in the external cache." + ::= { extcache 6 } + + extcacheOptions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates external cache options that are + currently turned on. " + ::= { extcache 7 } + + extcache64Hits OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates number of wafl buffers read from + the external cache" + ::= { extcache 8 } + + extcache64Misses OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of external cache misses" + ::= { extcache 9 } + + extcache64Inserts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates number of wafl buffers inserted + into the external cache" + ::= { extcache 10 } + + extcache64Evicts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of buffers evicted + from the external cache" + ::= { extcache 11 } + + extcache64Invalidates OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of buffers invalidated + in the external cache" + ::= { extcache 12 } + + extcache64BlocksRef0 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of non-referenced buffers + currently in the external cache" + ::= { extcache 13 } + + extcache64HitNormalL0 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of L0 buffers read from + the external cache" + ::= { extcache 14 } + + extcache64MetaData OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the number of metadata buffers + read from the external cache" + ::= { extcache 15 } + + extcache64ReadLatency OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average latency of read IOs + in the external cache" + ::= { extcache 16 } + + extcache64WriteLatency OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average latency of write IOs + in the external cache" + ::= { extcache 17 } + + extcache64RCLength OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average read chain length + in the external cache" + ::= { extcache 18 } + + extcache64WCLength OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the average write chain length + in the external cache" + ::= { extcache 19 } + + extcacheIsFlexShareOn OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether FlexShare is on" + ::= { extcache 20 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NetApp trap definitions + -- See RFC 1215 for instructions on building traps + -- + -- All EnterpiseSpecific Traps of NetApp + -- contain the OIDs 'productTrapData and productSerialNum' + -- except traps with the trap types - + -- globalStatusNonRecoverable + -- globalStatusCritical + -- globalStatusNonCritical + -- globalStatusOk + -- which contain the OIDs 'miscGlobalStatusMessage and productSerialNum' + -- + -- The last digit of a trap contains information about the + -- priority of the trap: + -- + -- 1 emergency + -- 2 alert + -- 3 critical + -- 4 error + -- 5 warning + -- 6 notification + -- 7 information + -- 8 debug + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- A generic, unprioritized, user-defined trap. These + -- are generated in releases prior to 5.4. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + userDefined NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A polling-style trap built using the 'snmp traps' + command on the filer." + + ::= { netapp 0 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- Disk Health Monitor Notices for Disk Fault + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + dhmNoticeDegradedIO NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Disk Health Monitor - + Reported a Disk Degraded-I/O Event" + + ::= { netapp 0 6 } + + dhmNoticePFAEvent NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Disk Health Monitor - + Reported a Disk Predictive-Failure Event" + + ::= { netapp 0 7 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains generic user-defined traps. + -- All user-defined traps with the same priority + -- use the trap for that priority level. + -- + -- For example, all "critical" user-defined traps are + -- sent with ID 13. The string data sent with the + -- trap identifies the specific critical event. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + emergencyTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating an extremely urgent + situation, usually indicating that the system has + failed and is shutting down." + + ::= { netapp 0 11 } + + alertTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating a condition that + should be corrected immediately, such as a failed disk." + + ::= { netapp 0 12 } + + criticalTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating a critical condition, + such as a hard device error." + + ::= { netapp 0 13 } + + errorTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating an error condition, + such as a mistake in a configuration file." + + ::= { netapp 0 14 } + + warningTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating a condition which + is not an error, but which may require special handling." + + ::= { netapp 0 15 } + + notificationTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap meant to provide notification, + such as an hourly uptime message." + + ::= { netapp 0 16 } + + informationalTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap used for informational purposes." + + ::= { netapp 0 17 } + + dbgTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap used for debugging purposes. + This trap was previously mis-documented as being trap + number 17, with the name debugTrap. It has always, + actually, been trap 18. The name change is to avoid + issues with environments that already have a record + for debugTrap." + + ::= { netapp 0 18 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- Specific traps. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + diskFailedShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System is shutting down because the system has been + running in degraded mode for 24 hours. + The trap includes a string describing the failed disk." + + ::= { netapp 0 21 } + + diskFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more disks failed. + The trap includes a string describing the failed disk(s)." + + ::= { netapp 0 22 } + + diskRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The failed disks have been repaired. + This trap is a placeholder - + it is not currently sent by Data ONTAP." + + ::= { netapp 0 26 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- The fan and power supply traps are not supported + -- on all platforms. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + fanFailureShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Critical chassis or cpu fans have failed and the system + is shutting down." + + ::= { netapp 0 31 } + + fanFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis fans failed. + The trap includes a string describing the failed fan(s)." + + ::= { netapp 0 33 } + + fanWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis or cpu fans are in warning state. + The trap includes a string describing the fan(s) in + the warning state." + + ::= { netapp 0 35 } + + fanRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All fans are repaired." + + ::= { netapp 0 36 } + + powerSupplyFailureShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Critical power supplies or power rails failed and + the system is shutting down." + + ::= { netapp 0 41 } + + powerSupplyFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more redundant power supplies failed. + Include in the trap a string describing + the failed power supply(ies)." + + ::= { netapp 0 43 } + + powerSupplyWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more power supplies or power rails in + warning state. Include in the trap a string describing + the power supply(ies) or the power rail(s) in the + warning state." + + ::= { netapp 0 45 } + + powerSupplyRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Previously-failed power supplies or power rails have been + repaired." + + ::= { netapp 0 46 } + + cpuTooBusy NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "CPU utilization exceeds 90%. + This trap is not enabled by default. + To enable this trap set the registry + entry options.monitor.cpu.enable to on. + Note that as the threshold for this trap is + checked once a minute it is possible to receive + multiple instances of this trap in a short time." + + + ::= { netapp 0 55 } + + cpuOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "CPU utilization has dropped back below 90%. + This trap is a placeholder - + it is not currently sent by Data ONTAP." + + ::= { netapp 0 56 } + + nvramBatteryDischarged NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The NVRAM battery is fully discharged." + + ::= { netapp 0 62 } + + nvramBatteryLow NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The charge in the NVRAM battery is low." + + ::= { netapp 0 63 } + + clusterNodeFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A node in a Cluster FailOver configuration failed. + Its partner will assume service for the failed node." + + ::= { netapp 0 72 } + + clusterNodeTakenOver NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The partner has taken over for a failed cluster node." + + ::= { netapp 0 75 } + + clusterNodeRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A cluster node has resumed operation." + + ::= { netapp 0 76 } + + volumeFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "At least one volume is more than 98% full. + The string sent with the trap gives the + name of the volume or volumes which exceed + the volumeFull or volumeNearlyFull thresholds" + + ::= { netapp 0 82 } + + volumeNearlyFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "At least one volume is more than 95% full. + The string sent with the trap gives the + name of the volume or volumes which exceed + the volumeFull or volumeNearlyFull thresholds" + + ::= { netapp 0 85 } + + volumeRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All volumes are now under 95% full." + + ::= { netapp 0 86 } + + volumesStillFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "At least one volume that was full or nearly full is now OK, + but more volumes still exceed the volumeNearlyFull or + volumeFull thresholds. This trap is generally sent within + a short time of when a volume becomes OK, though if two + volumes become OK within this timeframe, only one trap is + sent. The string sent with the trap gives the name of the + volume or volumes which still exceed the volumeFull or + volumeNearlyFull thresholds. It does not send the name of + any volume that is OK." + + ::= { netapp 0 87 } + + overTempShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System temperature is too high to continue + operating. The system is shutting down." + + ::= { netapp 0 91 } + + overTemp NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System temperature is too high and in the + warning level." + + ::= { netapp 0 95 } + + overTempRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System temperature has returned to an + acceptable value." + + ::= { netapp 0 96 } + + shelfFault NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A disk storage shelf reported a fault, probably due + to a problem with drive placement, fans, power, + or temperature." + + ::= { netapp 0 103 } + + + shelfRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A previously-reported shelf fault is now corrected." + + ::= { netapp 0 106 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains "general health" traps, + -- based on changes to the miscGlobalStatus + -- variable. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + globalStatusNonRecoverable NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status changed to + 'nonRecoverable', indicating a problem so severe + that the appliance is shutting down." + + ::= { netapp 0 111 } + + globalStatusCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status changed to 'critical', + indicating a problem that needs immediate attention." + + ::= { netapp 0 113 } + + globalStatusNonCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status changed to 'nonCritical', + indicating a problem that needs attention." + + ::= { netapp 0 115 } + + globalStatusOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status returned to normal." + + ::= { netapp 0 116 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to soft quotas. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + softQuotaExceeded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user has exceeded their soft quota limit." + + ::= { netapp 0 126 } + + softQuotaNormal NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user is safely back under their soft quota limit." + + ::= { netapp 0 127 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to autosupport + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + autosupportSendError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Unable to send autosupport. + The trap includes a string describing the reason for the failure." + + ::= { netapp 0 134 } + + autosupportConfigurationError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Autosupport may be configured incorrectly. + The trap includes a string describing the mis-configuration." + + ::= { netapp 0 135 } + + autosupportSent NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Autosupport was sent successfully." + + ::= { netapp 0 136 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to UPS + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + upsLinePowerOff NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Input line power has failed and UPS is now on battery." + + ::= { netapp 0 142 } + + upsBatteryCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Battery is nearly exhausted, starting graceful shutdown." + + ::= { netapp 0 143 } + + + upsShuttingDown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Shutting down now: Time left on battery is exhuasted." + + ::= { netapp 0 144 } + upsBatteryWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Warning: Time left on battery is getting critical." + + ::= { netapp 0 145 } + + upsLinePowerRetored NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Input line power has been restored and UPS is now off battery." + + ::= { netapp 0 146 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Client Side Applications. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + appEmergency NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application encountered an extremely urgent + situation and requires an immediate response." + + ::= { netapp 0 151 } + + appAlert NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application is in a condition that should + be corrected immediately." + + ::= { netapp 0 152 } + + appCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application encountered a critical condition." + + ::= { netapp 0 153 } + + appError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application encountered an error condition." + + ::= { netapp 0 154 } + + appWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application is in a condition which is not an + error, but which may require special handling." + + ::= { netapp 0 155 } + + appNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application is notifing of a certain event." + + ::= { netapp 0 156 } + + appInfo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application's message is meant for informational + purposes." + + ::= { netapp 0 157 } + + appTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application requires to be debugged." + + ::= { netapp 0 158 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Autosaving NT EVT files. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + alfFilewrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The internal audit file has wrapped. You are currently losing event + records. Warning the user." + + ::= { netapp 0 162 } + + + alfFileSaved NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The internal audit log has been autosaved to an external evt file. + Notifying the user." + + ::= { netapp 0 166 } + + alfFileNearlyFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The internal audit log file is nearly full. The file is going to + wrap. Notifying the user." + + ::= { netapp 0 167 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to generalized quota events. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + quotaExceeded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One of the quota limits has been exceeded. + The trap includes a string describing the specific event + which triggered the trap. The string is structured + in the following form: + + Quota Event: status=exceeded, type={hard|soft|threshold}, + user={username}, volume={volume}, limit_item={files|disk}, + limit_value={#files|#kilobytes} + [ , treeid={tree-id} ] [ , vfiler={vfiler} ] + + An example of a complete message would be: + + Quota Event: status=exceeded, type=soft, + user=admin, volume=vol1, limit_item=disk, limit_value=1000000, + treeid=8 + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 176 } + + quotaNormal NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One of the quota limits has gone back down to a normal level. + The trap includes a string describing the specific event + which triggered the trap. The string is structured + in the following form: + + Quota Event: status=normal, type={hard|soft|threshold}, + user={username}, volume={volume}, limit_item={files|disk}, + limit_value={#files|#kilobytes} + [ , treeid={tree-id} ] [ , vfiler={vfiler} ] + + An example of a complete message would be: + + Quota Event: status=normal, type=soft, + user=admin, volume=vol1, limit_item=disk, limit_value=1000000, + treeid=8 + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 177 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to alerting when 64MB directory + -- limit is nearly reached or has been reached. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + waflDirNearlyFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The directory has surpassed 90% of its sub-directory limit. + The priority of waflDirFull and this trap are out of order + for backwards compatibility." + + ::= { netapp 0 186 } + + waflDirFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The directory has reached its sub-directory limit" + + ::= { netapp 0 187 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Correctable Memory ECC + -- errors + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + eccSummary NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Memory ECC: number of new correctable ECC errors" + + ::= { netapp 0 192 } + + eccMasked NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Memory ECC: High frequency of ECC errors" + + ::= { netapp 0 195 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to ftpd service + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ftpdError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Ftp daemon: service stopped" + + ::= { netapp 0 204 } + + ftpdMaxConnNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Ftp daemon: number of connections hits maximum number" + + ::= { netapp 0 206 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains additional traps related to ftpd service + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ftpdMaxConnThresholdNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Ftp daemon: number of connections nearly hits maximum number" + + ::= { netapp 0 216 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to SCSI Target + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + scsitgtFCPLinkBreak NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "SCSI Target: Link Break on FCP adapter" + + ::= { netapp 0 222 } + + scsitgtPartnerPathMisconfigured NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "SCSI Target: FCP Partner Path Misconfigured" + + ::= { netapp 0 224 } + + scsitgtThrottleNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "SCSI Target: Throttle limit event notification" + + ::= { netapp 0 226 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to VIF Failover & Link Status + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vifPrimaryLinkFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Vif: The primary Interface on a Single mode vif has failed" + + ::= { netapp 0 237 } + + vifAllLinksFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Vif: All the links of the vif have failed" + + ::= { netapp 0 238 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Vfiler status + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vfStopped NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A vFiler has stopped." + + ::= { netapp 0 245 } + + vfStarted NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A vFiler has started." + + ::= { netapp 0 246 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Virus Scanning + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vscanVirusDetectedError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: A virus scanner has detected a virus on the Filer" + + ::= { netapp 0 254 } + + vscanDisConnection NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: A virus scanner has dropped its connection from the Filer" + + ::= { netapp 0 255 } + + vscanConfigurationChange NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: There has been a change to the vscan configuration" + ::= { netapp 0 256 } + + vscanConnection NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: A virus scanner has made a connection to the Filer" + + ::= { netapp 0 257 } + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains additional traps related to Virus Scanning + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vscanServerUpgrade NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: The Vscan server has been upgraded" + + ::= { netapp 0 266 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to volume status being offline, + -- online or restricted + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeRestrictedByMirrorBigIo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A volume that experienced a medium error during reconstruction + is restricted and marked wafl-inconsistent, but starting + wafliron has failed. This trap is issued to alert operator + that a volume is not accessible and wafliron must be started + to allow access to it." + + ::= { netapp 0 272 } + + volumeInconsistentUmount NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when we unmount a volume due to an + inconsistency." + + ::= { netapp 0 274 } + + volumeStateChanged NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is being taken offline or being restricted. + The string sent with trap specifies name of affected volume + and its state." + + ::= { netapp 0 275 } + + volumeOnline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is online now. The string sent with trap specifies + name of volume which is online now." + + ::= { netapp 0 276 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to remote management + -- controller (RMC) card status + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + rmcCardNeedsReplacement NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Remote Management Controller card needs replacement. The trap + includes a string specifying the reason for replacement" + + ::= { netapp 0 283 } + + rmcCardMissingCables NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Remote Management Controller card is missing its internal + cable, or LAN cable or power supply cable. The trap includes + a string specifing the missing component." + + ::= { netapp 0 284 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to remote volume + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeRemoteUnreachable NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Local volume encountered an error while communicating + to remote volume." + + ::= { netapp 0 294 } + + volumeRemoteOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The communication between remote volume and local volume + returned to normal." + + ::= { netapp 0 296 } + + volumeRemoteRestored NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The data on remote volume has been fully restored to local + volume." + + ::= { netapp 0 297 } + + volumeRemoteRestoreBegin NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The data on remote volume has started being restored to local + volume by Restore-on-Demand." + + ::= { netapp 0 298 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains more traps related to volume status being + -- offline, online or restricted + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeRestrictedRootConflict NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is restricted due to a root volume conflict. The + string sent with trap specifies name of conflicting volume + which is being restricted." + + ::= { netapp 0 304 } + + volumeOfflineTooBig NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume can not be brought online because its raw size is + larger than maximum allowed size. The string sent with trap + specifies name of affected volume and its raw size, and + maximum allowed size." + + ::= { netapp 0 314 } + + volumeOffline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is being taken offline. The string sent with trap + specifies name of affected volume and reason for being + taken offline." + + ::= { netapp 0 324 } + + volumeRestricted NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is being restricted. The string sent with trap + specifies name of affected volume and reason for being + restricted." + + ::= { netapp 0 334 } + + volumeDegradedDirty NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is degraded and has dirty parity. WAFL_check must be + run on this volume before it can be brought online. The string + sent with trap specifies name of affected volume." + + ::= { netapp 0 344 } + + volumeError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when a volume can not be brought online + due to an error. The string sent with trap specifies name of + affected volume and error description." + + ::= { netapp 0 354 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to synchronous SnapMirror + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + snapmirrorSyncFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Synchronous SnapMirror failed and went into asynchronous mode." + ::= { netapp 0 364 } + + snapmirrorSyncOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Synchronous SnapMirror went into synchronous mode." + ::= { netapp 0 366 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- New environmental traps + -- + -- A series of new environmental traps are constructed + -- to disambiguate many of the older traps (which are antiquated + -- but remain until they are completely removed from EMS usage). + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Chassis Temperature + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisTemperatureShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is extreme. The appliance has + initiated a shutdown to protect itself. The operating + environment should be monitored and corrected before + restarting the appliance." + + ::= { netapp 0 371 } + + chassisTemperatureWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is either too high or too low. + The temperature should be monitored and, if possible, corrected." + + ::= { netapp 0 372 } + + chassisTemperatureUnknown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is unknown, because reading can't be + obtained from the chassis temperature sensor." + + ::= { netapp 0 375 } + + chassisTemperatureOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is OK." + + ::= { netapp 0 376 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- CPU Fans + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisCPUFanStopped NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more CPU fans have stopped. The appliance + has initiated a shutdown to protect itself. A new + motherboard may be required to correct the fan. + Contact NetApp for direction." + + ::= { netapp 0 381 } + + chassisCPUFanSlow NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A CPU fan is spinning too slowly. A new motherboard + may be required to correct the fan. Contact NetApp + for direction." + + ::= { netapp 0 383 } + + chassisCPUFanOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All CPU fan(s) are properly functioning." + + ::= { netapp 0 386 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Power Supplies + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisPowerSuppliesFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multiple chassis power supplies failed." + + ::= { netapp 0 391 } + + chassisPowerSupplyDegraded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis power supplies are degraded. + A description of the degraded state has been + logged to the console and message log file." + + ::= { netapp 0 392 } + + chassisPowerSupplyFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One chassis power supply failed." + + ::= { netapp 0 393 } + + chassisPowerSupplyRemoved NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis power supplies are removed." + + ::= { netapp 0 394 } + + chassisPowerSupplyOff NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis power supplies are off." + + ::= { netapp 0 395 } + + chassisPowerSuppliesOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis power supplies are all functioning properly." + + ::= { netapp 0 396 } + + chassisPowerSupplyOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This chassis power supply is functioning properly." + + ::= { netapp 0 397 } + + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Power Rails + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisPowerDegraded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The power within the chassis is degraded. + A description of the degraded state has been + logged to the console and message log file." + + ::= { netapp 0 403 } + + chassisPowerOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The power within the chassis is functioning properly." + + ::= { netapp 0 406 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Chassis Fans + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisFanDegraded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A chassis fan has been degraded." + + ::= { netapp 0 412 } + + chassisFanRemoved NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A chassis fan FRU has been removed." + + ::= { netapp 0 413 } + + chassisFanStopped NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis fans have stopped." + + ::= { netapp 0 414 } + + chassisFanWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis fans is spinning slowly or too fast." + + ::= { netapp 0 415 } + + chassisFanOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All chassis fans are functioning properly." + + ::= { netapp 0 416 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Volume SnapValidator errors + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + writeVerificationFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A write has failed a verification test + on a SnapValidator enabled volume." + ::= { netapp 0 424 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- CIFS domain controller-related traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + prefDCDisconnect NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All connections to domain controllers in the preferred domain + controllers list have been lost." + ::= { netapp 0 434 } + + domainControllerDisconnect NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A CIFS domain controller connection to the filer has failed." + ::= { netapp 0 435 } + + dcPasswdChangeFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "An attempt to change the filer's password with the domain + controller has failed." + ::= { netapp 0 436 } + + domainControllerConnected NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A CIFS domain controller connection to the filer has been + established." + ::= { netapp 0 437 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- This section contains traps related to plex state + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + plexFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when one plex of a mirrored + traditional volume or aggregate is failed. The string + sent with this trap specifies name of affected plex or + mirrored traditional volume or aggregate." + ::= { netapp 0 444 } + + plexOffline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when a plex becomes offline. + The string sent with this trap specifies name of + affected plex or mirrored traditional volume or aggregate." + ::= { netapp 0 454 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- This section contains traps related to shelf Electronics Elements + -- and intelligent fibre channel interface modules such as LRC, + -- ESH, AT-FC, and AT-FCX. + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + shelfSESElectronicsFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more of the enclosure services devices in a + disk shelf has failed. Some shelf designs combine + the enclosure monitoring hardware function into the + module that provides the storage interface to + the shelf. A failure in the enclosure monitoring + section of these combined modules does not necessarily + indicate a failure in disk or loop or bus operation, + which may be able to continue." + ::= { netapp 0 464 } + + shelfSESElectronicsInfo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A previously reported failure of an enclosure + services device in a disk shelf has been corrected, + or the device has reported information that does not + necessarily require customer action." + ::= { netapp 0 467 } + + shelfIFModuleFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more of the storage interface modules in a + disk shelf has failed. Some shelf designs combine the + enclosure monitoring hardware function into the module + that operates the fibre channel loop or SCSI in the + shelf. This failure is of the storage interface + itself, not a failure of the enclosure monitoring, + which may be able to continue. This failure may make + one or more disks in the shelf or in the loop or bus + unavailable." + ::= { netapp 0 473 } + + shelfIFModuleWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more of the storage interface modules in a + disk shelf has a warning condition. Some shelf designs combine the + enclosure monitoring hardware function into the module + that operates the fibre channel loop or SCSI in the + shelf. This warning condition is of the storage interface + itself, not a failure of the enclosure monitoring, + which may be able to continue." + ::= { netapp 0 475 } + + shelfIFModuleInfo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A previously reported failure of a disk shelf + interface module has been corrected, or the module has + reported information that does not necessarily require + customer action." + ::= { netapp 0 477 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- This section contains traps related to maxdirsize. + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + maxDirSizeAlert NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A directory has reached its maxdirsize limit. Either + increase the maxdirsize or clean up the directory." + ::= { netapp 0 482 } + + maxDirSizeWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A directory is getting close to its maxdirsize limit. Either + increase the maxdirsize or clean up the directory." + ::= { netapp 0 485 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- CIFS statistics related traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + cifsStatsExhaustMemCtrlBlk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A request for a CIFS control block can not be granted. All + control blocks are in use." + ::= { netapp 0 497 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- New Environmental Subsystem Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + + chassisPSRemovedxMinShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Power Supply Unit is removed from the system. System will + be shutdown in x minutes if it is not put back." + + ::= { netapp 0 501 } + + chassisPSUsMismatch NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Power Supply Units in the system are of different type. + Please replace them with correct Power Supply Units." + + ::= { netapp 0 505 } + + chassisFanFailxMinShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multiple chassis fan failure. System will + shut down in a few minutes if not corrected." + + ::= { netapp 0 511 } + + chassisPSUwrongInput NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Power Supply Unit (PSU) in the system is connected to an + incompatible external power source. Please change + the power source being used or replace the PSU + with one that matches the current power source." + + ::= { netapp 0 515 } + + powerSupplyFanFailxMinShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multiple power supply fans failure. + System will shut down in a few minutes if not corrected." + + ::= { netapp 0 521 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- New Remote Management Subsystem Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + remoteSystemMgtAlert NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "system remote management detected a system down event. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={post_error|watchdog_reset|power_loss|abnormal_reboot}, + key=value + + An example of a complete message would be: + Remote Management Event: type=system_down, severity=alert, + event=watchdog_reset, ss=16bytes + + Additional key=value items may, in the future, be appended + to this message. + + The events that would generate this trap would be: + post_error: Fatal POST error on boot + power_loss: Loss of power to system + abnormal_reboot: + l2_watchdog_reset" + + ::= { netapp 0 532 } + + remoteSystemMgmtWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "system remote management detected a system down event. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={loss-of-heartbeat}, + key=value + + An example of a complete message would be: + Remote Management Event: type=system_down, severity=warning, + event=loss_of_heartbeat, ss=16bytes + + Additional key=value items may, in the future, be appended + to this message. + + The events that would generate this trap would be: + loss_of_heartbeat: Loss of heartbeat to the RLM." + + ::= { netapp 0 535 } + + remoteSystemMgmtNotification NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "system remote management detected a system down event. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={power_off_via_rlm,power_cycle_via_rlm,reset_via_rlm}, + key=value + + An example of a complete message would be: + Remote Management Event: type=system_down, severity=notice, + event=power_off_via_rlm, ss=16bytes + + Additional key=value items may, in the future, be appended + to this message. + + The events that would generate this trap would be: + power_off_via_rlm: This indicates system power off + power_cycle_via_rlm: This indicates system power cycle + reset_via_rlm: This indicates system reset." + + ::= { netapp 0 536 } + + remoteSystemMgmtPeriodic NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This is a periodic keep alive from system remote management. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={periodic_message} + + An example of a complete message would be: + Remote Management Event: type=keep_alive, severity=info, + event=periodic_message + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 547 } + + remotesystemMgmtTest NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This is a test trap from system remote management. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={periodic_message} + + An example of a complete message would be: + Remote Management Event: type=test, severity=notice, event=test + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 556 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Disk Multipath Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + diskMultipathOneSwitch NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A multipathed disk is only connected to one switch." + + ::= { netapp 0 562 } + + diskMultipathNoTakeover NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multipath disks or luns could not be detected for the partner. + The node will be unable to takeover correctly." + + ::= { netapp 0 563 } + + diskMultipathWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Synchronous mirroring is enabled, even though disks are not + multipathed." + + ::= { netapp 0 565 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Disk Disable Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + driveDisableErr NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A drive has been disabled by the shelf module due to + hardware errors. If it is the only drive in the shelf + that is disabled, replace the drive." + + ::= { netapp 0 574 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- HBA Offline Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + hbaOfflineInformation NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A host bus adapter (HBA) port has been disabled. + This state may be caused either by user command or by + errors that make the interface unable to communicate + with attached devices." + + ::= { netapp 0 587 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- LUN Snap Restore Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + lunSnapRestoreStatus NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Status of the Snap Restore" + + ::= { netapp 0 606 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- LUN Clone Create Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + lunCloneCreate NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Created a LUN Clone" + + ::= { netapp 0 616 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- LUN Clone Split Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + lunCloneSplitStart NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "LUN Clone Split started" + + ::= { netapp 0 626 } + + lunCloneSplitComplete NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "LUN Clone Split completed" + + ::= { netapp 0 627 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Flex Clone Split Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + flexCloneSplitStart NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Flex Clone Split started" + + ::= { netapp 0 636 } + + flexCloneSplitComplete NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Flex Clone Split completed" + + ::= { netapp 0 637 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Volume Clone Create Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeCloneCreate NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Created a Volume Clone" + + ::= { netapp 0 646 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Snap Autodelete Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + snapAutoDelete NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Snapshot Autodeleted" + + ::= { netapp 0 656 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Volume Autogrow Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeAutogrow NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is Autogrown" + + ::= { netapp 0 666 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- External cache device error Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + extcacheCardError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "External cache card failure" + + ::= { netapp 0 676 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- External cache offline Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + extcacheCardOffline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "External cache is taken offline" + + ::= { netapp 0 686 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to snapvault + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- SnapVault Snapshot limit warning + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + svBackupSnapWarningLimit NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The remaining number of Snapshot copies for a backup + schedule is below warning limit specified." + + ::= { netapp 0 695 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- End of NetApp trap definitions + -- + -- Note: Please update this comment when adding a new NOTIFICATION-TYPE. + -- The next trap set range should be: 70x + -- + -- The 10xxx trap range is used by DataFabric Manager + -- (netappDataFabricManager) see the DFM MIB for further + -- information. + -- + -- The 20xxx trap range is used by the NetApp Support Console + -- (netappSupportConsole) see the NASC MIB for further + -- information. + -- + -- The 'ones' digit of the trap contains the priority of the trap: + -- + -- 1 emergency + -- 2 alert + -- 3 critical + -- 4 error + -- 5 warning + -- 6 notification + -- 7 information + -- 8 debug + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + END + diff --git a/pandora_console/attachment/mibs/NETWORK-APPLIANCE-MIB.mib b/pandora_console/attachment/mibs/NETWORK-APPLIANCE-MIB.mib new file mode 100644 index 0000000000..5316779fbe --- /dev/null +++ b/pandora_console/attachment/mibs/NETWORK-APPLIANCE-MIB.mib @@ -0,0 +1,26053 @@ + -- ======================================================== -- + -- Network Appliance Custom MIB -- + -- -- + -- This MIB contains only information specific to -- + -- Network Appliance products. Other supported mibs are -- + -- not included in this file. -- + -- ======================================================= -- + + -- Version 2.0, December 2007 (See NOTE below) + + -- Copyright (c) 1995-2007 Network Appliance, Inc. + -- All rights reserved. + + -- This Network Appliance SNMP Management Information Base + -- (Specification) embodies Network Appliance's confidential + -- and proprietary intellectual property. Network Appliance + -- retains all title and ownership in the Specification, + -- including any revisions. + + -- This Specification is supplied "AS IS," and Network Appliance + -- makes no warranty, either express or implied, as to the use, + -- operation, condition, or performance of the Specification. + + -- NOTE: Please maintain the format of the line above + -- containing the MIB's version number as: + -- + -- Version , (See NOTE below) + -- + -- This line is parsed during the release process + -- to extract the version of the MIB. + -- Keep the MODULE-IDENTITY in sync with the Version Date. + -- + + -- ======================================================= -- + -- List of modifications for upgrade to SMIv2 (RFC2578): + -- + -- Standardized capitalization for grmMonitor + -- subtyping not allowed in SEQUENCE + -- hyphens not allowed in value types. + -- Changed dmpSubtreeEntry to dmpEntry + -- Removed lastdump and placed entries in dmpEntry + -- Removed lastsuccess and placed entries in dmpEntry + -- Renamed initiatorListMemberEntry to initiatorListEntry + -- Moved enclTempSensorsCurrentTemp to correct location in enclEntry + -- Added Counter64 support + -- Renamed the following netcache OIDS: + -- ncStreamingOndemandBytesToClients to ncStreamingOBTClients + -- ncStreamingOndemandBytesFromClients to ncStreamingOBFClients + -- ncStreamingOndemandBytesToServers to ncStreamingOBTServers + -- ncStreamingOndemandBytesFromServers to ncStreamingOBFServers + -- ncStreamingQuickTimeBytesToClients to ncStreamingQTBTClients + -- ncStreamingQuickTimeBytesFromClients to ncStreamingQTBFClients + -- ncStreamingQuickTimeBytesToServers to ncStreamingQTBTServers + -- ncStreamingQuickTimeBytesFromServers to ncStreamingQTBFServers + -- ncStreamingRtspWMBytesFromClients to ncStreamingRtspWMBFClients + -- ncStreamingRtspWMBytesFromServers to ncStreamingRtspWMBFServers + + -- Conform to RFC3584 "Coexistence between V1, V2, and V3 of + -- the Internet-standard Network Management Framework + -- 2.1.1. Required changes + -- 1 - IMPORTS statement must reference SNMPv2-SMI + -- 2 - The MODULE-IDENTITY macro must be invoked. + -- 3 - SYNTAX Counter32 replaces Counter + -- 4 - SYNTAX Gauge32 replaces Gauge + -- 5 - MAX-ACCESS replaces ACCESS + -- 6 - STATUS current replaces STATUS mandatory + -- STATUS current replaces STATUS optional + -- 2.1.1 - Desirable changes + -- 2 - Integer32 replaces INTEGER in places that don't have ranges + -- 2.1.2 - Trap and Notification Definitions + -- 1 - IMPORTS must reference SMIv2-SMI + -- 2 - ENTERPRISE is removed + -- 3 - VARIABLES clause must be renamed to OBJECTS clause + -- 4 - STATUS clause must be added + -- ======================================================= -- + + NETWORK-APPLIANCE-MIB DEFINITIONS ::= BEGIN + + IMPORTS + enterprises, Counter32, IpAddress, TimeTicks, Gauge32, + NOTIFICATION-TYPE, MODULE-IDENTITY, snmpModules, + OBJECT-TYPE, Counter64, Integer32 + FROM SNMPv2-SMI + PhysAddress, DisplayString + FROM RFC1213-MIB; + + -- MIB-II (same prefix as MIB-I) + + netappModuleId MODULE-IDENTITY + LAST-UPDATED "200703010000Z" + ORGANIZATION "Network Appliance" + CONTACT-INFO "www.netapp.com" + DESCRIPTION "The mib module for netapp SNMPv2 entities" + + ::= { snmpModules 789 } + + -- the Network Appliance MIB + + -- NetApp conventions + + netapp OBJECT IDENTIFIER ::= { enterprises 789 } + + -- the current netapp mib + + netapp1 OBJECT IDENTIFIER ::= { netapp 1 } + + -- + -- This is the tree under which values for the sysObjectID + -- are allocated. + -- + + netappProducts OBJECT IDENTIFIER ::= { netapp 2 } + + -- + -- This is the tree under which values for the DataFabric Manager + -- are allocated. Those values are defined in separate mib file, + -- distributed with DataFabric Manager product. + -- + + netappDataFabricManager OBJECT IDENTIFIER ::= { netapp 3 } + + -- + -- This is the tree under which values for the NetApp Support Console + -- are allocated. Those values are defined in separate mib file, + -- distributed with the Support Console + -- + + netappSupportConsole OBJECT IDENTIFIER ::= { netapp 4 } + + -- + -- We distinguish between filers and NetCaches. + -- + + netappFiler OBJECT IDENTIFIER ::= { netappProducts 1 } + netappNetCache OBJECT IDENTIFIER ::= { netappProducts 2 } + netappClusteredFiler OBJECT IDENTIFIER ::= { netappProducts 3 } + netappNode OBJECT IDENTIFIER ::= { netappProducts 4 } + + -- top-level netapp groups + + product OBJECT IDENTIFIER ::= { netapp1 1 } + + sysStat OBJECT IDENTIFIER ::= { netapp1 2 } + + nfs OBJECT IDENTIFIER ::= { netapp1 3 } + + quota OBJECT IDENTIFIER ::= { netapp1 4 } + + filesys OBJECT IDENTIFIER ::= { netapp1 5 } + + raid OBJECT IDENTIFIER ::= { netapp1 6 } + + cifs OBJECT IDENTIFIER ::= { netapp1 7 } + + netcache OBJECT IDENTIFIER ::= { netapp1 8 } + + snapmirror OBJECT IDENTIFIER ::= { netapp1 9 } + + ndmp OBJECT IDENTIFIER ::= { netapp1 10 } + + fabric OBJECT IDENTIFIER ::= { netapp1 11 } + + dafs OBJECT IDENTIFIER ::= { netapp1 12 } + + vi OBJECT IDENTIFIER ::= { netapp1 13 } + + backup OBJECT IDENTIFIER ::= { netapp1 14 } + + vfiler OBJECT IDENTIFIER ::= { netapp1 16 } + + blocks OBJECT IDENTIFIER ::= { netapp1 17 } + + nfscache OBJECT IDENTIFIER ::= { netapp1 18 } + + snapvault OBJECT IDENTIFIER ::= { netapp1 19 } + + ftpd OBJECT IDENTIFIER ::= { netapp1 20 } + + storage OBJECT IDENTIFIER ::= { netapp1 21 } + + network OBJECT IDENTIFIER ::= { netapp1 22 } + + sis OBJECT IDENTIFIER ::= { netapp1 23 } + + compress OBJECT IDENTIFIER ::= { netapp1 24 } + + -- -- -- -- -- -- -- -- + -- the product group -- + -- -- -- -- -- -- -- -- + + productType OBJECT-TYPE + SYNTAX INTEGER { + eisaBased(1), + pciBased(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product type representing the target platform." + ::= { product 1 } + + productVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version String for the Software Running on + this platform." + ::= { product 2 } + + productId OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The System ID of this system." + ::= { product 3 } + + productVendor OBJECT-TYPE + SYNTAX INTEGER { + netapp(1), + dell(2), + ibm(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor id of this system, indicating the company + that has supplied the product." + ::= { product 4 } + + productModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model name of the system. Examples + are FAS980 and FAS3050." + ::= { product 5 } + + productFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Version string for the Firmware running on + this platform." + ::= { product 6 } + + productGuiUrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete URL used to access the administrative GUI + for a browser-based interface." + ::= { product 7 } + + productApiUrl OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The complete URL used to access the administrative API + for a programmatic interface." + ::= { product 8 } + + productSerialNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product serial number. Returns unknown if it + cannot be determined." + ::= { product 9 } + + productPartnerSerialNum OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The partner's serial number, not applicable + if there is no partner, and unknown if it + cannot be determined." + ::= { product 10 } + + productCPUArch OBJECT-TYPE + SYNTAX INTEGER { + x86(1), + alpha(2), + mips(3), + sparc(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU architecture type of this appliance" + + + + ::= { product 11 } + + productTrapData OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This returns a static string. This object is used + as a placeholder for enterprise traps." + ::= { product 12 } + + productMachineType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The machine type of the system. Examples + are FAS980 and FAS3050." + ::= { product 13 } + + -- -- -- -- -- -- -- -- + -- the sysStat group -- + -- -- -- -- -- -- -- -- + + cpu OBJECT IDENTIFIER ::= { sysStat 1 } + + misc OBJECT IDENTIFIER ::= { sysStat 2 } + + cf OBJECT IDENTIFIER ::= { sysStat 3 } + + environment OBJECT IDENTIFIER ::= { sysStat 4 } + + nvram OBJECT IDENTIFIER ::= { sysStat 5 } + + cp OBJECT IDENTIFIER ::= { sysStat 6 } + + autosupport OBJECT IDENTIFIER ::= { sysStat 7 } + + + -- the cpu group for sysStat + + cpuUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) that the + CPU has been up since the last boot." + ::= { cpu 1 } + + cpuBusyTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) that the + CPU has been doing useful work since the last + boot." + ::= { cpu 2 } + + cpuBusyTimePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percent of time that the CPU has been doing + useful work since the last time a client requested + the cpuBusyTimePerCent." + ::= { cpu 3 } + + cpuIdleTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) that the + CPU has been idle since the last boot." + ::= { cpu 4 } + + cpuIdleTimePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percent of time that the CPU has been idle + since the last time a client requested the + cpuBusyTimePerCent." + ::= { cpu 5 } + + cpuCount OBJECT-TYPE + SYNTAX Integer32 (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CPUs in the system." + + ::= { cpu 6 } + + cpuSwitchInvocations OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of sk_switch invocations." + ::= { cpu 7 } + + cpuContextSwitches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of hardware context switches." + ::= { cpu 8 } + + cpuInterrupts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interrupts during a CP." + ::= { cpu 9 } + + + cpuNonCPInterrupts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of interrupts not during a CP." + ::= { cpu 10 } + + cpuCPInterruptPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The percentage of time handling CP interrupts." + ::= { cpu 11 } + + cpuNonCPInterruptPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The percentage of time handling non-cp interrupts." + ::= { cpu 12 } + + cpuTotalDomainSwitches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The total number of Domain Switches." + ::= { cpu 13 } + + -- the misc group for sysStat + + miscNfsOps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of Server side NFS calls since + the last boot" + ::= { misc 1 } + + miscNetRcvdKB OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of KBytes received on all the + network interfaces, since the last boot." + ::= { misc 2 } + + miscNetSentKB OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total number of KBytes transmitted on all the + network interfaces, since the last boot." + ::= { misc 3 } + + miscGlobalStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + ok(3), + nonCritical(4), + critical(5), + nonRecoverable(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates the overall status of the appliance. + The algorithm to determine the value uses both + hardware status (e.g. the number of failed fans) and + volume status (e.g. number of volumes that are full). + The algorithm is subject to change in future releases, + but the range of values will not change." + ::= { misc 4 } + + miscHighNfsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side NFS calls since + the last boot. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 5 } + + miscLowNfsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side NFS calls since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + + ::= { misc 6 } + + miscHighCifsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side CIFS calls since + the last boot. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 7 } + + miscLowCifsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side CIFS calls since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + + ::= { misc 8 } + + miscHighHttpOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of HTTP operations received + since the last boot. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 9 } + + miscLowHttpOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of HTTP operations received + since the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + + ::= { misc 10 } + + + miscHighNetRcvdBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received on all the + network interfaces, since the last boot. This + object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 11 } + + miscLowNetRcvdBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received on all the + network interfaces, since the last boot. This + object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 12 } + + miscHighNetSentBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes transmitted on all the + network interfaces, since the last boot. This + object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 13 } + + miscLowNetSentBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes transmitted on all the + network interfaces, since the last boot. This + object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { misc 14 } + + miscHighDiskReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from disk + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 15 } + + miscLowDiskReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from disk since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 16 } + + + miscHighDiskWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to disk + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 17 } + + miscLowDiskWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to disk since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 18 } + + miscHighTapeReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from tape + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 19 } + + miscLowTapeReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from tape since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 20 } + + miscHighTapeWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to tape + since the last boot. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { misc 21 } + + miscLowTapeWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to tape since + the last boot. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { misc 22 } + + miscCacheAge OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Age in minutes of the oldest read-only blocks + in the buffer cache. This indicates how fast + read operations are cycling through system + memory; when the appliance is reading very + large files (larger than the machine's memory + size), buffer cache age will be very low." + ::= { misc 23 } + + miscCorrectedMachineChecks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of corrected machine checks since + the last boot." + + ::= { misc 24 } + + miscGlobalStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the global status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(3)." + ::= { misc 25 } + + miscWindowsSetupWizardVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version number of Windows Setup Wizard + required to configure the appliance. Windows + Setup Wizard with a version number lower than + this integer is not capable of configuring the + appliance." + ::= { misc 26 } + + misc64NfsOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side NFS calls since + the last boot. This object returns all of the + 64 bit unsigned integer." + ::= { misc 27 } + + misc64CifsOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Server side CIFS calls since + the last boot. This object returns all of the + 64 bit unsigned integer." + ::= { misc 28 } + + misc64HttpOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of HTTP operations received + since the last boot. This object returns all of + the 64 bit unsigned integer." + ::= { misc 29 } + + misc64NetRcvdBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received on all the + network interfaces, since the last boot. This + object returns all of the 64 bit unsigned integer." + ::= { misc 30 } + + misc64NetSentBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes transmitted on all the + network interfaces, since the last boot. This + object returns all of the 64 bit unsigned integer." + ::= { misc 31 } + + misc64DiskReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from disk + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 32 } + + misc64DiskWriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to disk + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 33 } + + misc64TapeReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from tape + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 34 } + + misc64TapeWriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to tape + since the last boot. This object returns + all of the 64 bit unsigned integer." + ::= { misc 35 } + + -- the Clustered Failover group + + cfSettings OBJECT-TYPE + SYNTAX INTEGER { + notConfigured(1), + enabled(2), + disabled(3), + takeoverByPartnerDisabled(4), + thisNodeDead(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Clustered Failover configuration settings. + The value notConfigured(1) indicates that the + cluster is not licensed. The thisNodeDead(5) + setting indicates that this node has been + taken over." + ::= { cf 1 } + + cfState OBJECT-TYPE + SYNTAX INTEGER { + dead(1), + canTakeover(2), + cannotTakeover(3), + takeover(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Clustered Failover state." + ::= { cf 2 } + + cfCannotTakeoverCause OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + unknownReason(2), + disabledByOperator(3), + interconnectOffline(4), + disabledByPartner(5), + takeoverFailed(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The reason this node cannot takeover its + partner" + ::= { cf 3 } + + cfPartnerStatus OBJECT-TYPE + SYNTAX INTEGER { + maybeDown(1), + ok(2), + dead(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the status last returned by the + Clustered Failover partner." + ::= { cf 4 } + + cfPartnerLastStatusUpdate OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If non-zero, the absolute time of the last + update from the Clustered Failover partner." + ::= { cf 5 } + + cfPartnerName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hostname for Clustered Failover partner." + ::= { cf 6 } + + cfPartnerSysid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "System ID for Clustered Failover partner." + ::= { cf 7 } + + cfInterconnectStatus OBJECT-TYPE + SYNTAX INTEGER { + notPresent(1), + down(2), + partialFailure(3), + up(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the interconnect. + The partialFailure(3) status indicates that + one of the links in the interconnect hardware + is down." + ::= { cf 8 } + + -- the environment group for sysStat + + envOverTemperature OBJECT-TYPE + SYNTAX INTEGER { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of whether the hardware is + currently operating outside of its recommended + temperature range. The hardware will shutdown + if the temperature exceeds critical thresholds." + + ::= { environment 1 } + + envFailedFanCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of chassis fans which + are not operating within the recommended + RPM range." + + ::= { environment 2 } + + envFailedFanMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Text message describing the current condition of + chassis fans. This is useful only if + envFailedFanCount is not zero." + + ::= { environment 3 } + + + envFailedPowerSupplyCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of power supplies which + are in degraded mode." + + ::= { environment 4 } + + envFailedPowerSupplyMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Text message describing the state of any + power supplies which are currently degraded. + This is useful only if envFailedPowerSupplyCount + is not zero." + + ::= { environment 5 } + + -- -- -- -- -- -- -- + -- the nvram group for sysStat + + nvramBatteryStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + partiallyDischarged(2), + fullyDischarged(3), + notPresent(4), + nearEndOfLife(5), + atEndOfLife(6), + unknown(7), + overCharged(8), + fullyCharged(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the current status of the + NVRAM battery or batteries. Batteries which + are fully or partially discharged may not + fully protect the system during a crash. + + The end-of-life status values are based on + the manufacturer's recommended life for the + batteries." + + ::= { nvram 1 } + + -- -- -- -- -- -- -- + -- the cp group for sysStat + + cpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) since boot + during which the system has had a consistency point + (cp) operation in progress." + ::= { cp 1 } + + cpFromTimerOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by timer." + ::= { cp 2 } + + cpFromSnapshotOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by snapshot operation." + ::= { cp 3 } + + cpFromLowWaterOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by low water mark." + ::= { cp 4 } + + cpFromHighWaterOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by high water mark." + ::= { cp 5 } + + cpFromLogFullOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by nv-log full." + ::= { cp 6 } + + cpFromCpOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of back to back consistency point + operations since boot." + ::= { cp 7 } + + cpTotalOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of consistency point operations + since boot." + ::= { cp 8 } + + cpFromFlushOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by flushing unlogged write data." + ::= { cp 9 } + + cpFromSyncOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by file system sync requests." + ::= { cp 10 } + + cpFromLowVbufOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by low virtual buffers." + ::= { cp 11 } + + cpFromCpDeferredOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of back to back consistency point + operations since boot that were deferred." + ::= { cp 12 } + + cpFromLowDatavecsOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of consistency point operations since boot + that were caused by low datavecs." + ::= { cp 13 } + + -- -- -- -- -- -- -- + -- the autosupport group for sysStat + + autosupportStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + smtpFailure(2), + postFailure(3), + smtpPostFailure(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of the current status of + autosupport on the appliance. describes + the success or failure of most recent + attempts to send autosupports." + + ::= { autosupport 1 } + + autosupportStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the autosupport status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(1)." + + ::= { autosupport 2 } + + autosupportSuccessfulSends OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of autosupport messages + successfully sent since the last reset." + + ::= { autosupport 3 } + + autosupportFailedSends OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Count of the number of autosupport messages + not sent successfully since the last reset." + + ::= { autosupport 4 } + + + -- -- -- -- -- -- -- + -- the NFS group -- + -- -- -- -- -- -- -- + + curNfs OBJECT IDENTIFIER ::= { nfs 1 } + + totNfs OBJECT IDENTIFIER ::= { nfs 2 } + + nfsOptions OBJECT IDENTIFIER ::= { nfs 3 } + + + -- the curNfs group + + -- this group contains NFS statistics since the last + -- time the statistics were cleared + + rpcServ OBJECT IDENTIFIER ::= { curNfs 1 } + + nfsServ OBJECT IDENTIFIER ::= { curNfs 2 } + + nfsPerClient OBJECT IDENTIFIER ::= { curNfs 3 } + + + + -- the rpcServ group + + rpcCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received, since + the last time the statistics were cleared." + ::= { rpcServ 1 } + + rpcBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer, since the last time the statistics were + cleared." + ::= { rpcServ 2 } + + rpcNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call was not available + when it was thought to be received, since the + last time the statistics were cleared." + ::= { rpcServ 3 } + + rpcBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received with a length + shorter than a minimum-sized RPC call, since the + last time the statistics were cleared." + ::= { rpcServ 4 } + + rpcServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received whose header + could not be XDR decoded, since the last time + the statistics were cleared." + ::= { rpcServ 5 } + + rcpTcpCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received for the + TCP protocol, since the last time the statistics + were cleared." + ::= { rpcServ 6 } + + rcpTcpBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer for the TCP protocol, since the last + time the statistics were cleared." + ::= { rpcServ 7 } + + rcpTcpNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call for the TCP + protocol was not available when it was thought + to be received, since the last time the + statistics were cleared." + ::= { rpcServ 8 } + + rcpTcpBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the TCP protocol + received with a length shorter than a minimum-sized + RPC call, since the last time the statistics + were cleared." + ::= { rpcServ 9 } + + rcpTcpServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the TCP protocol + received whose header could not be XDR decoded, + since the last time the statistics were cleared." + ::= { rpcServ 10 } + + rpcUdpCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received for the + UDP protocol, since the last time the statistics + were cleared." + ::= { rpcServ 11 } + + rpcUdpBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer for the UDP protocol, since the last + time the statistics were cleared." + ::= { rpcServ 12 } + + rpcUdpNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call for the UDP + protocol was not available when it was thought + to be received, since the last time the + statistics were cleared." + ::= { rpcServ 13 } + + rpcUdpBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the UDP protocol + received with a length shorter than a minimum-sized + RPC call, since the last time the statistics + were cleared." + ::= { rpcServ 14 } + + rpcUdpServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls for the UDP protocol + received whose header could not be XDR decoded, + since the last time the statistics were cleared." + ::= { rpcServ 15 } + + + -- the nfsServ group + + nfsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received, since + the last time the statistics were cleared." + ::= { nfsServ 1 } + + nfsServBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received NFS calls rejected, + since the last time the statistics were cleared." + ::= { nfsServ 2 } + + nfsV2 OBJECT IDENTIFIER ::= { nfsServ 3 } + + nfsV3 OBJECT IDENTIFIER ::= { nfsServ 4 } + + replyCache OBJECT IDENTIFIER ::= { nfsServ 5 } + + nfsrwStats OBJECT IDENTIFIER ::= { nfsServ 6 } + + + -- the nfsV2 group + + -- this group contains statistics for NFS + -- Version 2 calls processed since the last + -- time the statistics were cleared + + v2Calls OBJECT IDENTIFIER ::= { nfsV2 1 } + + v2Percent OBJECT IDENTIFIER ::= { nfsV2 2 } + + v2CachedCalls OBJECT IDENTIFIER ::= { nfsV2 3 } + + v2CachedPerCent OBJECT IDENTIFIER ::= { nfsV2 4 } + + + + -- the v2Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure + -- since the last time the statistics were cleared + + v2cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + since the last time the statistics were cleared." + ::= { v2Calls 1 } + + v2cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 2 } + + v2cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 3 } + + v2cRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 4 } + + v2cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 5 } + + v2cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, since the last time the + statistics were cleared." + ::= { v2Calls 6 } + + v2cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 7 } + + v2cWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 8 } + + v2cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 9 } + + v2cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 10 } + + v2cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 11 } + + v2cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 12 } + + v2cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 13 } + + v2cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 14 } + + v2cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 15 } + + v2cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 16 } + + v2cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, since the last time the statistics + were cleared." + ::= { v2Calls 17 } + + v2cStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, since the last time + the statistics were cleared." + ::= { v2Calls 18 } + + + + -- the v2Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- as a percentage of total NFS calls received, + -- since the last time the statistics were cleared + + v2pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure + as a percentage of total NFS calls received, + since the last time the statistics were cleared." + ::= { v2Percent 1 } + + v2pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 2 } + + v2pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 3 } + + v2pRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 4 } + + v2pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 5 } + + v2pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure as a percentage of total NFS + calls received, since the last time the + statistics were cleared." + ::= { v2Percent 6 } + + v2pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 7 } + + v2pWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 8 } + + v2pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 9 } + + v2pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 10 } + + v2pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 11 } + + v2pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 12 } + + v2pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 13 } + + v2pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 14 } + + v2pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 15 } + + v2pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 16 } + + v2pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure as a percentage of total NFS calls + received, since the last time the statistics + were cleared." + ::= { v2Percent 17 } + + v2pStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure as a percentage of + total NFS calls received, since the last + time the statistics were cleared." + ::= { v2Percent 18 } + + + + -- the v2CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last time the statistics + -- were cleared + + v2ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v2CachedCalls 1 } + + v2ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 2 } + + v2ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 3 } + + v2ccRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 4 } + + v2ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 5 } + + v2ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 6 } + + v2ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 7 } + + v2ccWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 8 } + + v2ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 9 } + + v2ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 10 } + + v2ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 11 } + + v2ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 12 } + + v2ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 13 } + + v2ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 14 } + + v2ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 15 } + + v2ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 16 } + + v2ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v2CachedCalls 17 } + + v2ccStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from disk, + since the last time the statistics were cleared." + ::= { v2CachedCalls 18 } + + + + -- the v2CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last time the statistics were cleared + + v2cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v2CachedPerCent 1 } + + v2cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 2 } + + v2cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 3 } + + v2cpRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 4 } + + v2cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 5 } + + v2cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 6 } + + v2cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 7 } + + v2cpWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 8 } + + v2cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 9 } + + v2cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 10 } + + v2cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 11 } + + v2cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 12 } + + v2cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 13 } + + v2cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 14 } + + v2cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 15 } + + v2cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 16 } + + v2cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v2CachedPerCent 17 } + + v2cpStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from + disk, as a percentage of the total number + of calls received for this procedure, since + the last time the statistics were cleared." + ::= { v2CachedPerCent 18 } + + + + -- the nfsV3 group + + -- this group contains statistics for NFS + -- Version 3 calls processed since the last + -- time the statistics were cleared + + v3Calls OBJECT IDENTIFIER ::= { nfsV3 1 } + + v3Percent OBJECT IDENTIFIER ::= { nfsV3 2 } + + v3CachedCalls OBJECT IDENTIFIER ::= { nfsV3 3 } + + v3CachedPerCent OBJECT IDENTIFIER ::= { nfsV3 4 } + + + + -- the v3Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure + -- since the last time the statistics were cleared + + v3cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + since the last time the statistics were cleared." + ::= { v3Calls 1 } + + v3cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 2 } + + v3cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 3 } + + v3cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 4 } + + v3cAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 5 } + + v3cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 6 } + + v3cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 7 } + + v3cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 8 } + + v3cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 9 } + + v3cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 10 } + + v3cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 11 } + + v3cMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 12 } + + v3cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 13 } + + v3cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 14 } + + v3cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, since the last time + the statistics were cleared." + ::= { v3Calls 15 } + + v3cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, since the last time the + statistics were cleared." + ::= { v3Calls 16 } + + v3cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, since the last time the statistics + were cleared." + ::= { v3Calls 17 } + + v3cReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, since the last + time the statistics were cleared." + ::= { v3Calls 18 } + + v3cFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, since the + last time the statistics were cleared." + ::= { v3Calls 19 } + + v3cFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, since the last time + the statistics were cleared." + ::= { v3Calls 20 } + + v3cPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, since the last time + the statistics were cleared." + ::= { v3Calls 21 } + + v3cCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, since + the last time the statistics were cleared." + ::= { v3Calls 22 } + + + + -- the v3Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- as a percentage of total NFS calls received, + -- since the last time the statistics were cleared + + v3pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + as a percentage of the total NFS calls + received, since the last time the statistics + were cleared." + ::= { v3Percent 1 } + + v3pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 2 } + + v3pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 3 } + + v3pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 4 } + + v3pAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access + Permission) procedure, as a percentage of + the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 5 } + + v3pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last time the + statistics were cleared." + ::= { v3Percent 6 } + + v3pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 7 } + + v3pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 8 } + + v3pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 9 } + + v3pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 10 } + + v3pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last time the + statistics were cleared." + ::= { v3Percent 11 } + + v3pMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, as a percentage of the + total NFS calls received, since the last + time the statistics were cleared." + ::= { v3Percent 12 } + + v3pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 13 } + + v3pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 14 } + + v3pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, as a percentage of + the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 15 } + + v3pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, as a percentage of + the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 16 } + + v3pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, as a percentage of the total NFS + calls received, since the last time the + statistics were cleared." + ::= { v3Percent 17 } + + v3pReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, as a percentage + of the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 18 } + + v3pFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, as a percentage + of the total NFS calls received, since the + last time the statistics were cleared." + ::= { v3Percent 19 } + + v3pFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, as a percentage of the + total NFS calls received, since the last time + the statistics were cleared." + ::= { v3Percent 20 } + + v3pPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, as a percentage of the + total NFS calls received, since the last time + the statistics were cleared." + ::= { v3Percent 21 } + + v3pCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, as a + percentage of the total NFS calls received, + since the last time the statistics were cleared." + ::= { v3Percent 22 } + + + + -- the v3CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last time the statistics + -- were cleared + + v3ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 1 } + + v3ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 2 } + + v3ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 3 } + + v3ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 4 } + + v3ccAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 5 } + + v3ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 6 } + + v3ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 7 } + + v3ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 8 } + + v3ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 9 } + + v3ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the filesystem + blocking to read from disk, since the last + time the statistics were cleared." + ::= { v3CachedCalls 10 } + + v3ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 11 } + + v3ccMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 12 } + + v3ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 13 } + + v3ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 14 } + + v3ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 15 } + + v3ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 16 } + + v3ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From + Directory) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 17 } + + v3ccReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, that did not result in + the filesystem blocking to read from disk, since + the last time the statistics were cleared." + ::= { v3CachedCalls 18 } + + v3ccFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last time the statistics + were cleared." + ::= { v3CachedCalls 19 } + + v3ccFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last time the statistics + were cleared." + ::= { v3CachedCalls 20 } + + v3ccPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + since the last time the statistics were cleared." + ::= { v3CachedCalls 21 } + + v3ccCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that did + not result in the filesystem blocking to read + from disk, since the last time the statistics + were cleared." + ::= { v3CachedCalls 22 } + + + + -- the v3CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last time the statistics were cleared + + v3cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 1 } + + v3cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 2 } + + v3cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 3 } + + v3cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 4 } + + v3cpAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last time the + statistics were cleared." + ::= { v3CachedPerCent 5 } + + v3cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 6 } + + v3cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 7 } + + v3cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 8 } + + v3cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 9 } + + v3cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 10 } + + v3cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 11 } + + v3cpMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 12 } + + v3cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 13 } + + v3cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 14 } + + v3cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 15 } + + v3cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 16 } + + v3cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 17 } + + v3cpReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 18 } + + v3cpFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read from + disk, as a percentage of the total number of + calls received for this procedure, since the + last time the statistics were cleared." + ::= { v3CachedPerCent 19 } + + v3cpFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 20 } + + v3cpPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last + time the statistics were cleared." + ::= { v3CachedPerCent 21 } + + v3cpCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that + did not result in the filesystem blocking to + read from disk, as a percentage of the total + number of calls received for this procedure, + since the last time the statistics were cleared." + ::= { v3CachedPerCent 22 } + + + + -- the replyCache group + + -- this group contains statistics related to the + -- Reply Cache processing, since the last time the + -- statistics were cleared + + rcInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped, + for calls already in progress, since the last + time the statistics were cleared." + ::= { replyCache 1 } + + rcDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped, + for replies already generated within a short + interval, since the last time the statistics + were cleared. These stats are deprecated. + A value of zero will always be returned + for these stats." + ::= { replyCache 2 } + + rcMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for which + there were no corresponding entries already in + the Reply Cache, since the last time the + statistics were cleared." + ::= { replyCache 3 } + + rcNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received that + resulted in replies being replayed from + the Reply Cache, since the last time the + statistics were cleared." + ::= { replyCache 4 } + + rcNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for calls + that resulted in this request being processed + as a new request even when a corresponding + entry existed in the Reply Cache, since the + last time the statistics were cleared." + ::= { replyCache 5 } + + rcTcpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for calls already in + progress, since the last time the statistics + were cleared." + ::= { replyCache 6 } + + rcTcpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for replies already + generated within a short interval, since the + last time the statistics were cleared. These + stats are deprecated. A value of zero will + always be returned for these stats." + ::= { replyCache 7 } + + rcTcpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for which there were no + corresponding entries already in the Reply + Cache, since the last time the statistics + were cleared." + ::= { replyCache 8 } + + rcTcpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol that resulted in replies being + replayed from the Reply Cache, since the last + time the statistics were cleared." + ::= { replyCache 9 } + + rcTcpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last time the statistics were + cleared." + ::= { replyCache 10 } + + rcUdpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for calls already in + progress, since the last time the statistics + were cleared." + ::= { replyCache 11 } + + rcUdpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for replies already + generated within a short interval, since the + last time the statistics were cleared. These + stats are deprecated. A value of zero will + always be returned for these stats." + ::= { replyCache 12 } + + rcUdpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for which there were no + corresponding entries already in the Reply + Cache, since the last time the statistics + were cleared." + ::= { replyCache 13 } + + rcUdpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol that resulted in replies being + replayed from the Reply Cache, since the last + time the statistics were cleared." + ::= { replyCache 14 } + + rcUdpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last time the statistics were + cleared." + ::= { replyCache 15 } + + -- the nfsrwStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 and 3 read and write calls made + -- since the last time the stats were zeroed. + + v2ReadStats OBJECT IDENTIFIER ::= { nfsrwStats 1 } + + v2WriteStats OBJECT IDENTIFIER ::= { nfsrwStats 2 } + + v3ReadStats OBJECT IDENTIFIER ::= { nfsrwStats 3 } + + v3WriteStats OBJECT IDENTIFIER ::= { nfsrwStats 4 } + + + -- v2ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 read calls since they were last + -- zeroed. + + v2Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 0-511 bytes." + ::= { v2ReadStats 1 } + + v2Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v2ReadStats 2 } + + v2Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v2ReadStats 3 } + + v2Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v2ReadStats 4 } + + v2Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v2ReadStats 5 } + + v2Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v2ReadStats 6 } + + v2Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v2ReadStats 7 } + + v2Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v2ReadStats 8 } + + v2Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v2ReadStats 9 } + + + -- the v2WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 write calls since they were last + -- zeroed. + + v2Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 0-511 bytes." + ::= { v2WriteStats 1 } + + v2Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v2WriteStats 2 } + + v2Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v2WriteStats 3 } + + v2Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v2WriteStats 4 } + + v2Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v2WriteStats 5 } + + v2Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v2WriteStats 6 } + + v2Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v2WriteStats 7 } + + v2Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v2WriteStats 8 } + + v2Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v2WriteStats 9 } + + + -- the v3ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 read calls since they were last + -- zeroed. + + v3Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { v3ReadStats 1 } + + v3Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v3ReadStats 2 } + + v3Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v3ReadStats 3 } + + v3Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v3ReadStats 4 } + + v3Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v3ReadStats 5 } + + v3Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v3ReadStats 6 } + + v3Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v3ReadStats 7 } + + v3Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v3ReadStats 8 } + + v3Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v3ReadStats 9 } + + + -- the v3WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 write calls since they were last + -- zeroed. + + v3Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 0-511 bytes." + ::= { v3WriteStats 1 } + + v3Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 512-1023 bytes." + ::= { v3WriteStats 2 } + + v3Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 1K-2047 bytes." + ::= { v3WriteStats 3 } + + v3Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 2K-4095 bytes." + ::= { v3WriteStats 4 } + + v3Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 4K-8191 bytes." + ::= { v3WriteStats 5 } + + v3Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 8K-16383 bytes." + ::= { v3WriteStats 6 } + + v3Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 16K-32767 bytes." + ::= { v3WriteStats 7 } + + v3Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 32K-65535 bytes." + ::= { v3WriteStats 8 } + + v3Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last zeroing + with request sizes between 64K-131071 bytes." + ::= { v3WriteStats 9 } + + + -- the per-client nfs statistics table + + pclTable OBJECT-TYPE + SYNTAX SEQUENCE OF PclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-client NFS statistics + since the last time the statistics were cleared." + ::= { nfsPerClient 1 } + + pclEntry OBJECT-TYPE + SYNTAX PclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of NFS statistics for the + referenced NFS client since the last time the + statistics were cleared." + INDEX { pclIpAddr } + ::= { pclTable 1 } + + PclEntry ::= + SEQUENCE { + pclIpAddr + IpAddress, + pclRpcCalls + Counter32, + pclRpcBadCalls + Counter32, + pclRpcNullRecvs + Counter32, + pclRpcBadLens + Counter32, + pclRpcServXDRCalls + Counter32, + pclNfsCalls + Counter32, + pclNfsServBadCalls + Counter32, + pclNfsV2Nulls + Counter32, + pclNfsV2Getattrs + Counter32, + pclNfsV2Setattrs + Counter32, + pclNfsV2Roots + Counter32, + pclNfsV2Lookups + Counter32, + pclNfsV2Readlinks + Counter32, + pclNfsV2Reads + Counter32, + pclNfsV2Wrcaches + Counter32, + pclNfsV2Writes + Counter32, + pclNfsV2Creates + Counter32, + pclNfsV2Removes + Counter32, + pclNfsV2Renames + Counter32, + pclNfsV2Links + Counter32, + pclNfsV2Symlinks + Counter32, + pclNfsV2Mkdirs + Counter32, + pclNfsV2Rmdirs + Counter32, + pclNfsV2Readdirs + Counter32, + pclNfsV2Statfss + Counter32, + pclNfsV3Nulls + Counter32, + pclNfsV3Getattrs + Counter32, + pclNfsV3Setattrs + Counter32, + pclNfsV3Lookups + Counter32, + pclNfsV3Accesss + Counter32, + pclNfsV3Readlinks + Counter32, + pclNfsV3Reads + Counter32, + pclNfsV3Writes + Counter32, + pclNfsV3Creates + Counter32, + pclNfsV3Mkdirs + Counter32, + pclNfsV3Symlinks + Counter32, + pclNfsV3Mknods + Counter32, + pclNfsV3Removes + Counter32, + pclNfsV3Rmdirs + Counter32, + pclNfsV3Renames + Counter32, + pclNfsV3Links + Counter32, + pclNfsV3Readdirs + Counter32, + pclNfsV3ReaddirPluss + Counter32, + pclNfsV3Fsstats + Counter32, + pclNfsV3Fsinfos + Counter32, + pclNfsV3Pathconfs + Counter32, + pclNfsV3Commits + Counter32, + pclPerCent + Integer32, + pclNfsV2NullPerCent + Integer32, + pclNfsV2GetattrPerCent + Integer32, + pclNfsV2SetattrPerCent + Integer32, + pclNfsV2RootPerCent + Integer32, + pclNfsV2LookupPerCent + Integer32, + pclNfsV2ReadlinkPerCent + Integer32, + pclNfsV2ReadPerCent + Integer32, + pclNfsV2WrcachePerCent + Integer32, + pclNfsV2WritePerCent + Integer32, + pclNfsV2CreatePerCent + Integer32, + pclNfsV2RemovePerCent + Integer32, + pclNfsV2RenamePerCent + Integer32, + pclNfsV2LinkPerCent + Integer32, + pclNfsV2SymlinkPerCent + Integer32, + pclNfsV2MkdirPerCent + Integer32, + pclNfsV2RmdirPerCent + Integer32, + pclNfsV2ReaddirPerCent + Integer32, + pclNfsV2StatfsPerCent + Integer32, + pclNfsV3NullPerCent + Integer32, + pclNfsV3GetattrPerCent + Integer32, + pclNfsV3SetattrPerCent + Integer32, + pclNfsV3LookupPerCent + Integer32, + pclNfsV3AccessPerCent + Integer32, + pclNfsV3ReadlinkPerCent + Integer32, + pclNfsV3ReadPerCent + Integer32, + pclNfsV3WritePerCent + Integer32, + pclNfsV3CreatePerCent + Integer32, + pclNfsV3MkdirPerCent + Integer32, + pclNfsV3SymlinkPerCent + Integer32, + pclNfsV3MknodPerCent + Integer32, + pclNfsV3RemovePerCent + Integer32, + pclNfsV3RmdirPerCent + Integer32, + pclNfsV3RenamePerCent + Integer32, + pclNfsV3LinkPerCent + Integer32, + pclNfsV3ReaddirPerCent + Integer32, + pclNfsV3ReaddirPlusPerCent + Integer32, + pclNfsV3FsstatPerCent + Integer32, + pclNfsV3FsinfoPerCent + Integer32, + pclNfsV3PathconfPerCent + Integer32, + pclNfsV3CommitPerCent + Integer32, + pclNfsV2Read512Calls + Counter32, + pclNfsV2Read1KCalls + Counter32, + pclNfsV2Read2KCalls + Counter32, + pclNfsV2Read4KCalls + Counter32, + pclNfsV2Read8KCalls + Counter32, + pclNfsV2Read16KCalls + Counter32, + pclNfsV2Read32KCalls + Counter32, + pclNfsV2Read64KCalls + Counter32, + pclNfsV2Read128KCalls + Counter32, + pclNfsV2Write512Calls + Counter32, + pclNfsV2Write1KCalls + Counter32, + pclNfsV2Write2KCalls + Counter32, + pclNfsV2Write4KCalls + Counter32, + pclNfsV2Write8KCalls + Counter32, + pclNfsV2Write16KCalls + Counter32, + pclNfsV2Write32KCalls + Counter32, + pclNfsV2Write64KCalls + Counter32, + pclNfsV2Write128KCalls + Counter32, + pclNfsV3Read512Calls + Counter32, + pclNfsV3Read1KCalls + Counter32, + pclNfsV3Read2KCalls + Counter32, + pclNfsV3Read4KCalls + Counter32, + pclNfsV3Read8KCalls + Counter32, + pclNfsV3Read16KCalls + Counter32, + pclNfsV3Read32KCalls + Counter32, + pclNfsV3Read64KCalls + Counter32, + pclNfsV3Read128KCalls + Counter32, + pclNfsV3Write512Calls + Counter32, + pclNfsV3Write1KCalls + Counter32, + pclNfsV3Write2KCalls + Counter32, + pclNfsV3Write4KCalls + Counter32, + pclNfsV3Write8KCalls + Counter32, + pclNfsV3Write16KCalls + Counter32, + pclNfsV3Write32KCalls + Counter32, + pclNfsV3Write64KCalls + Counter32, + pclNfsV3Write128KCalls + Counter32 + } + + pclIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the referenced client." + ::= { pclEntry 1 } + + pclRpcCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received from + the referenced client, since the last time the + statistics were cleared." + ::= { pclEntry 2 } + + pclRpcBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls received from the + referenced client that were rejected by the + RPC layer, since the last time the + statistics were cleared." + ::= { pclEntry 3 } + + pclRpcNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call was not available + when it was thought to be received from + referenced client, since the last time the + statistics were cleared." + ::= { pclEntry 4 } + + pclRpcBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received from the + referenced client with a length shorter + than a minimum-sized RPC call, since the + last time the statistics were cleared." + ::= { pclEntry 5 } + + pclRpcServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received from the + referenced client whose header could not + be XDR decoded, since the last time the + statistics were cleared." + ::= { pclEntry 6 } + + pclNfsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received from + the referenced client, since the last time + the statistics were cleared." + ::= { pclEntry 7 } + + pclNfsServBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received from + the referenced client that were rejected, since + the last time the statistics were cleared." + ::= { pclEntry 8 } + + pclNfsV2Nulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_NULL + (Do Nothing) procedure, since the last time the + statistics were cleared." + ::= { pclEntry 9 } + + pclNfsV2Getattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_GETATTR + (Get File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 10 } + + pclNfsV2Setattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_SETATTR + (Set File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 11 } + + pclNfsV2Roots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_ROOT + (Get Filesystem Root) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 12 } + + pclNfsV2Lookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_LOOKUP + (Look Up File Name) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 13 } + + pclNfsV2Readlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_READLINK + (Read From Symbolic Link) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 14 } + + pclNfsV2Reads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_READ + (Read From File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 15 } + + pclNfsV2Wrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_WRITECACHE + (Write to Cache) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 16 } + + pclNfsV2Writes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_WRITE + (Write to File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 17 } + + pclNfsV2Creates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_CREATE + (Create File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 18 } + + pclNfsV2Removes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_REMOVE + (Remove File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 19 } + + pclNfsV2Renames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_RENAME + (Rename File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 20 } + + pclNfsV2Links OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_LINK + (Create Link to File) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 21 } + + pclNfsV2Symlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_SYMLINK + (Create Symbolic Link) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 22 } + + pclNfsV2Mkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_MKDIR + (Create Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 23 } + + pclNfsV2Rmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_RMDIR + (Remove Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 24 } + + pclNfsV2Readdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_READDIR + (Read From Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 25 } + + pclNfsV2Statfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + from the referenced client for the NFSPROC_STATFS + (Get Filesystem Attributes) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 26 } + + pclNfsV3Nulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_NULL + (Do Nothing) procedure, since the last time the + statistics were cleared." + ::= { pclEntry 27 } + + pclNfsV3Getattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_GETATTR + (Get File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 28 } + + pclNfsV3Setattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_SETATTR + (Set File Attributes) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 29 } + + pclNfsV3Lookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_LOOKUP + (Lookup Filename) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 30 } + + pclNfsV3Accesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_ACCESS + (Check Access Permission) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 31 } + + pclNfsV3Readlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_READLINK + (Read from Symbolic Link) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 32 } + + pclNfsV3Reads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_READ + (Read From File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 33 } + + pclNfsV3Writes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_WRITE + (Write to File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 34 } + + pclNfsV3Creates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_CREATE + (Create a File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 35 } + + pclNfsV3Mkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_MKDIR + (Create a Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 36 } + + pclNfsV3Symlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_SYMLINK + (Create a Symbolic Link) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 37 } + + pclNfsV3Mknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_MKNOD + (Create a Special Device) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 38 } + + pclNfsV3Removes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_REMOVE + (Remove a File) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 39 } + + pclNfsV3Rmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_RMDIR + (Remove a Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 40 } + + pclNfsV3Renames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_RENAME + (Rename a File or Directory) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 41 } + + pclNfsV3Links OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_LINK + (Create Link to an Object) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 42 } + + pclNfsV3Readdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_READDIR + (Read From Directory) procedure, since the last + time the statistics were cleared." + ::= { pclEntry 43 } + + pclNfsV3ReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the + NFSPROC3_READDIRPLUS (Extended Read from + Directory) procedure, since the last time + the statistics were cleared." + ::= { pclEntry 44 } + + pclNfsV3Fsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_FSSTAT + (Get Dynamic File System Information) procedure, + since the last time the statistics were cleared." + ::= { pclEntry 45 } + + pclNfsV3Fsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_FSINFO + (Get Static File System Information) procedure, + since the last time the statistics were cleared." + ::= { pclEntry 46 } + + pclNfsV3Pathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_PATHCONF + (Retrieve POSIX Information) procedure, since the + last time the statistics were cleared." + ::= { pclEntry 47 } + + pclNfsV3Commits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + from the referenced client for the NFSPROC3_COMMIT + (Commit Cached Data on a Server to Stable Storage) + procedure, since the last time the statistics were + cleared." + ::= { pclEntry 48 } + + pclPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of the total NFS calls for the + referenced client as a percentage of the + total NFS calls received from all + clients, since the last time the + statistics were cleared." + ::= { pclEntry 49 } + + pclNfsV2NullPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_NULL (Do Nothing) procedure, + as a percentage of the total calls + received from this client, since the + last time the statistics were cleared." + ::= { pclEntry 50 } + + pclNfsV2GetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_GETATTR (Get File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 51 } + + pclNfsV2SetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_SETATTR (Set File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 52 } + + pclNfsV2RootPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_ROOT (Get Filesystem Root) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 53 } + + pclNfsV2LookupPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_LOOKUP (Look Up File Name) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 54 } + + pclNfsV2ReadlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_READLINK (Read From Symbolic + Link) procedure, as a percentage of the + total calls received from this client, + since the last time the statistics were + cleared." + ::= { pclEntry 55 } + + pclNfsV2ReadPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_READ (Read From File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 56 } + + pclNfsV2WrcachePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_WRITECACHE (Write to Cache) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 57 } + + pclNfsV2WritePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_WRITE (Write to File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 58 } + + pclNfsV2CreatePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_CREATE (Create File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 59 } + + pclNfsV2RemovePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_REMOVE (Remove File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 60 } + + pclNfsV2RenamePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_RENAME (Rename File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 61 } + + pclNfsV2LinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_LINK (Create Link to File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 62 } + + pclNfsV2SymlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 63 } + + pclNfsV2MkdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_MKDIR (Create Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 64 } + + pclNfsV2RmdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_RMDIR (Remove Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 65 } + + pclNfsV2ReaddirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_READDIR (Read From Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 66 } + + pclNfsV2StatfsPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls + received from the referenced client for + the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, as a percentage + of the total calls received from this + client, since the last time the + statistics were cleared." + ::= { pclEntry 67 } + + pclNfsV3NullPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_NULL (Do Nothing) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 68 } + + pclNfsV3GetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_GETATTR (Get File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 69 } + + pclNfsV3SetattrPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_SETATTR (Set File Attributes) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 70 } + + pclNfsV3LookupPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_LOOKUP (Lookup Filename) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 71 } + + pclNfsV3AccessPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_ACCESS (Check Access Permission) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 72 } + + pclNfsV3ReadlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 73 } + + pclNfsV3ReadPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READ (Read From File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 74 } + + pclNfsV3WritePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_WRITE (Write to File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 75 } + + pclNfsV3CreatePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_CREATE (Create a File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 76 } + + pclNfsV3MkdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_MKDIR (Create a Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 77 } + + pclNfsV3SymlinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 78 } + + pclNfsV3MknodPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_MKNOD (Create a Special + Device) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 79 } + + pclNfsV3RemovePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_REMOVE (Remove a File) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 80 } + + pclNfsV3RmdirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_RMDIR (Remove a Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 81 } + + pclNfsV3RenamePerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_RENAME (Rename a File or + Directory) procedure, as a percentage of + the total calls received from this client, + since the last time the statistics were + cleared." + ::= { pclEntry 82 } + + pclNfsV3LinkPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_LINK (Create Link to an Object) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 83 } + + pclNfsV3ReaddirPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READDIR (Read From Directory) + procedure, as a percentage of the total + calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 84 } + + pclNfsV3ReaddirPlusPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_READDIRPLUS (Extended Read from + Directory) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 85 } + + pclNfsV3FsstatPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, as a + percentage of the total calls received + from this client, since the last time + the statistics were cleared." + ::= { pclEntry 86 } + + pclNfsV3FsinfoPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_FSINFO (Get Static File System + Information) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 87 } + + pclNfsV3PathconfPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, as a percentage of the + total calls received from this client, since + the last time the statistics were cleared." + ::= { pclEntry 88 } + + pclNfsV3CommitPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls + received from the referenced client for + the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, as + a percentage of the total calls received + from this client, since the last time the + statistics were cleared." + ::= { pclEntry 89 } + + pclNfsV2Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 90 } + + pclNfsV2Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 91 } + + pclNfsV2Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 92 } + + pclNfsV2Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 93 } + + pclNfsV2Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 94 } + + pclNfsV2Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 95 } + + pclNfsV2Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 96 } + + pclNfsV2Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 97 } + + pclNfsV2Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 98 } + + pclNfsV2Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 99 } + + pclNfsV2Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 100 } + + pclNfsV2Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 101 } + + pclNfsV2Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 102 } + + pclNfsV2Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 103 } + + pclNfsV2Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 104 } + + pclNfsV2Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 105 } + + pclNfsV2Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 106 } + + pclNfsV2Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 107 } + + pclNfsV3Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 108 } + + pclNfsV3Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 109 } + + pclNfsV3Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 110 } + + pclNfsV3Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 111 } + + pclNfsV3Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 112 } + + pclNfsV3Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 113 } + + pclNfsV3Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 114 } + + pclNfsV3Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 115 } + + pclNfsV3Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 116 } + + pclNfsV3Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 0-511 bytes + received from this client." + ::= { pclEntry 117 } + + pclNfsV3Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 512-1023 bytes + received from this client." + ::= { pclEntry 118 } + + pclNfsV3Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 1K-2047 bytes + received from this client." + ::= { pclEntry 119 } + + pclNfsV3Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 2K-4095 bytes + received from this client." + ::= { pclEntry 120 } + + pclNfsV3Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 4K-8191 bytes + received from this client." + ::= { pclEntry 121 } + + pclNfsV3Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 8K-16383 bytes + received from this client." + ::= { pclEntry 122 } + + pclNfsV3Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 16K-32767 bytes + received from this client." + ::= { pclEntry 123 } + + pclNfsV3Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 32K-65535 bytes + received from this client." + ::= { pclEntry 124 } + + pclNfsV3Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + with request sizes between 64K-131071 bytes + received from this client." + ::= { pclEntry 125 } + + + pclNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the pclTable table." + + ::= { nfsPerClient 2 } + + + + -- the totNfs group + + -- this group contains the NFS statistics since the + -- last boot + + trpcServ OBJECT IDENTIFIER ::= { totNfs 1 } + + tnfsServ OBJECT IDENTIFIER ::= { totNfs 2 } + + + + -- the trpcServ group + + trpcCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RPC calls received, + since the last boot." + ::= { trpcServ 1 } + + trpcBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of calls rejected by the RPC + layer, since the last boot." + ::= { trpcServ 2 } + + trpcNullRecvs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times an RPC call was not + available when it was thought to be received, + since the last boot." + ::= { trpcServ 3 } + + trpcBadLens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received with a length + shorter than a minimum-sized RPC call, since + the last boot." + ::= { trpcServ 4 } + + trpcServXDRCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RPC calls received whose header + could not be XDR decoded, since the last boot." + ::= { trpcServ 5 } + + + + -- the tnfsServ group + + tnfsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of NFS calls received, since + last boot." + ::= { tnfsServ 1 } + + tnfsServBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received NFS calls rejected, + since last boot." + ::= { tnfsServ 2 } + + tnfsV2 OBJECT IDENTIFIER ::= { tnfsServ 3 } + + tnfsV3 OBJECT IDENTIFIER ::= { tnfsServ 4 } + + treplyCache OBJECT IDENTIFIER ::= { tnfsServ 5 } + + tnfsrwStats OBJECT IDENTIFIER ::= { tnfsServ 6 } + + + + -- the tnfsV2 group + + -- this group contains statistics for NFS + -- Version 2 calls processed since the last boot + + tv2Calls OBJECT IDENTIFIER ::= { tnfsV2 1 } + + tv2Percent OBJECT IDENTIFIER ::= { tnfsV2 2 } + + tv2CachedCalls OBJECT IDENTIFIER ::= { tnfsV2 3 } + + tv2CachedPerCent OBJECT IDENTIFIER ::= { tnfsV2 4 } + + + -- the tv2Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure + -- since the last boot + + tv2cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + since the last boot." + ::= { tv2Calls 1 } + + tv2cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, since the last boot." + ::= { tv2Calls 2 } + + tv2cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, since the the last boot." + ::= { tv2Calls 3 } + + tv2cRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, since the last boot." + ::= { tv2Calls 4 } + + tv2cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, since the last boot." + ::= { tv2Calls 5 } + + tv2cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, since the last boot." + ::= { tv2Calls 6 } + + tv2cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, since the last boot." + ::= { tv2Calls 7 } + + tv2cWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, since the last boot." + ::= { tv2Calls 8 } + + tv2cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, since the last boot." + ::= { tv2Calls 9 } + + tv2cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, since the last boot." + ::= { tv2Calls 10 } + + tv2cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, since the last boot." + ::= { tv2Calls 11 } + + tv2cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, since the last boot." + ::= { tv2Calls 12 } + + tv2cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, since the last boot." + ::= { tv2Calls 13 } + + tv2cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, since the last boot." + ::= { tv2Calls 14 } + + tv2cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, since the last boot." + ::= { tv2Calls 15 } + + tv2cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, since the last boot." + ::= { tv2Calls 16 } + + tv2cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, since the last boot." + ::= { tv2Calls 17 } + + tv2cStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, since the last boot." + ::= { tv2Calls 18 } + + + + -- the tv2Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- as a percentage of total NFS calls received, + -- since the last boot + + tv2pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure + as a percentage of total NFS calls received, + since the last boot." + ::= { tv2Percent 1 } + + tv2pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 2 } + + tv2pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 3 } + + tv2pRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 4 } + + tv2pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 5 } + + tv2pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure as a percentage of total NFS + calls received, since the last boot." + ::= { tv2Percent 6 } + + tv2pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 7 } + + tv2pWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 8 } + + tv2pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 9 } + + tv2pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 10 } + + tv2pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 11 } + + tv2pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 12 } + + tv2pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 13 } + + tv2pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 14 } + + tv2pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 15 } + + tv2pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 16 } + + tv2pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure as a percentage of total NFS calls + received, since the last boot." + ::= { tv2Percent 17 } + + tv2pStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure as a percentage of + total NFS calls received, since the last boot." + ::= { tv2Percent 18 } + + + + -- the tv2CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last boot + + tv2ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem blocking + to read from disk, since the last boot." + ::= { tv2CachedCalls 1 } + + tv2ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 2 } + + tv2ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 3 } + + tv2ccRoots OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 4 } + + tv2ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 5 } + + tv2ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 6 } + + tv2ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 7 } + + tv2ccWrcaches OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 8 } + + tv2ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 9 } + + tv2ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 10 } + + tv2ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 11 } + + tv2ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 12 } + + tv2ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 13 } + + tv2ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic Link) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 14 } + + tv2ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 15 } + + tv2ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 16 } + + tv2ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 17 } + + tv2ccStatfss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from disk, + since the last boot." + ::= { tv2CachedCalls 18 } + + + + -- the tv2CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 2 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last boot + + tv2cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv2CachedPerCent 1 } + + tv2cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_GETATTR (Get File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 2 } + + tv2cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SETATTR (Set File Attributes) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 3 } + + tv2cpRoots OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_ROOT (Get Filesystem Root) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 4 } + + tv2cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LOOKUP (Look Up File Name) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 5 } + + tv2cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READLINK (Read From Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 6 } + + tv2cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 7 } + + tv2cpWrcaches OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITECACHE (Write to Cache) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 8 } + + tv2cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 9 } + + tv2cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_CREATE (Create File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 10 } + + tv2cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_REMOVE (Remove File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 11 } + + tv2cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RENAME (Rename File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 12 } + + tv2cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_LINK (Create Link to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 13 } + + tv2cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_SYMLINK (Create Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 14 } + + tv2cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_MKDIR (Create Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 15 } + + tv2cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_RMDIR (Remove Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 16 } + + tv2cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv2CachedPerCent 17 } + + tv2cpStatfss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 calls received + for the NFSPROC_STATFS (Get Filesystem + Attributes) procedure, that did not result + in the filesystem blocking to read from + disk, as a percentage of the total number + of calls received for this procedure, + since the last boot." + ::= { tv2CachedPerCent 18 } + + + -- the tnfsV3 group + + -- this group contains statistics for NFS + -- Version 3 calls processed since the last boot + + tv3Calls OBJECT IDENTIFIER ::= { tnfsV3 1 } + + tv3Percent OBJECT IDENTIFIER ::= { tnfsV3 2 } + + tv3CachedCalls OBJECT IDENTIFIER ::= { tnfsV3 3 } + + tv3CachedPerCent OBJECT IDENTIFIER ::= { tnfsV3 4 } + + + -- the tv3Calls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure + -- since the last boot + + tv3cNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + since the last boot." + ::= { tv3Calls 1 } + + tv3cGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, since the last boot." + ::= { tv3Calls 2 } + + tv3cSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, since the last boot." + ::= { tv3Calls 3 } + + tv3cLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, since the last boot." + ::= { tv3Calls 4 } + + tv3cAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, since the last boot." + ::= { tv3Calls 5 } + + tv3cReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, since the last boot." + ::= { tv3Calls 6 } + + tv3cReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, since the last boot." + ::= { tv3Calls 7 } + + tv3cWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, since the last boot." + ::= { tv3Calls 8 } + + tv3cCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, since the last boot." + ::= { tv3Calls 9 } + + tv3cMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, since the last boot." + ::= { tv3Calls 10 } + + tv3cSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, since the last boot." + ::= { tv3Calls 11 } + + tv3cMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, since the last boot." + ::= { tv3Calls 12 } + + tv3cRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, since the last boot." + ::= { tv3Calls 13 } + + tv3cRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, since the last boot." + ::= { tv3Calls 14 } + + tv3cRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, since the last boot." + ::= { tv3Calls 15 } + + tv3cLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, since the last boot." + ::= { tv3Calls 16 } + + tv3cReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, since the last boot." + ::= { tv3Calls 17 } + + tv3cReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, since the last boot." + ::= { tv3Calls 18 } + + tv3cFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, since the + last boot." + ::= { tv3Calls 19 } + + tv3cFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, since the last boot." + ::= { tv3Calls 20 } + + tv3cPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, since the last boot." + ::= { tv3Calls 21 } + + tv3cCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, since + the last boot." + ::= { tv3Calls 22 } + + + + -- the tv3Percent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- as a percentage of total NFS calls received, + -- since the last boot + + tv3pNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + as a percentage of the total NFS calls + received, since the last boot." + ::= { tv3Percent 1 } + + tv3pGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 2 } + + tv3pSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 3 } + + tv3pLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 4 } + + tv3pAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access + Permission) procedure, as a percentage of + the total NFS calls received, since the last boot." + ::= { tv3Percent 5 } + + tv3pReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last boot." + ::= { tv3Percent 6 } + + tv3pReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 7 } + + tv3pWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 8 } + + tv3pCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 9 } + + tv3pMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 10 } + + tv3pSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, as a percentage of the total + NFS calls received, since the last boot." + ::= { tv3Percent 11 } + + tv3pMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, as a percentage of the + total NFS calls received, since the last boot." + ::= { tv3Percent 12 } + + tv3pRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 13 } + + tv3pRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 14 } + + tv3pRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, as a percentage of + the total NFS calls received, since the + last boot." + ::= { tv3Percent 15 } + + tv3pLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, as a percentage of + the total NFS calls received, since the + last boot." + ::= { tv3Percent 16 } + + tv3pReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, as a percentage of the total NFS + calls received, since the last boot." + ::= { tv3Percent 17 } + + tv3pReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, as a percentage + of the total NFS calls received, since the + last boot." + ::= { tv3Percent 18 } + + tv3pFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, as a percentage + of the total NFS calls received, since the + last boot." + ::= { tv3Percent 19 } + + tv3pFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, as a percentage of the + total NFS calls received, since the last boot." + ::= { tv3Percent 20 } + + tv3pPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, as a percentage of the + total NFS calls received, since the last boot." + ::= { tv3Percent 21 } + + tv3pCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, as a + percentage of the total NFS calls received, + since the last boot." + ::= { tv3Percent 22 } + + + + -- the tv3CachedCalls group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, since the last boot + + tv3ccNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem blocking + to read from disk, since the last boot." + ::= { tv3CachedCalls 1 } + + tv3ccGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 2 } + + tv3ccSetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 3 } + + tv3ccLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 4 } + + tv3ccAccesss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 5 } + + tv3ccReadlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last boot." + ::= { tv3CachedCalls 6 } + + tv3ccReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 7 } + + tv3ccWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 8 } + + tv3ccCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 9 } + + tv3ccMkdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the filesystem + blocking to read from disk, since the last boot." + ::= { tv3CachedCalls 10 } + + tv3ccSymlinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, since + the last boot." + ::= { tv3CachedCalls 11 } + + tv3ccMknods OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, since + the last boot." + ::= { tv3CachedCalls 12 } + + tv3ccRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 13 } + + tv3ccRmdirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 14 } + + tv3ccRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 15 } + + tv3ccLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 16 } + + tv3ccReaddirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 17 } + + tv3ccReaddirPluss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIRPLUS (Extended Read + from Directory) procedure, that did not result in + the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 18 } + + tv3ccFsstats OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last boot." + ::= { tv3CachedCalls 19 } + + tv3ccFsinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File + System Information) procedure, that did not + result in the filesystem blocking to read + from disk, since the last boot." + ::= { tv3CachedCalls 20 } + + tv3ccPathconfs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + since the last boot." + ::= { tv3CachedCalls 21 } + + tv3ccCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that did + not result in the filesystem blocking to read + from disk, since the last boot." + ::= { tv3CachedCalls 22 } + + + + -- the tv3CachedPerCent group + + -- this group contains statistics for the number of + -- calls received for each NFS Version 3 procedure, + -- that did not result in the filesystem blocking to + -- read from disk, as a percentage of the total + -- number of calls received for that procedure, + -- since the last boot + + tv3cpNulls OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_NULL (Do Nothing) procedure, + that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 1 } + + tv3cpGetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_GETATTR (Get File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 2 } + + tv3cpSetattrs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SETATTR (Set File Attributes) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 3 } + + tv3cpLookups OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LOOKUP (Lookup Filename) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 4 } + + tv3cpAccesss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_ACCESS (Check Access Permission) + procedure, that did not result in the filesystem + blocking to read from disk, as a percentage + of the total number of calls received for + this procedure, since the last boot." + ::= { tv3CachedPerCent 5 } + + tv3cpReadlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READLINK (Read from Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last + last boot." + ::= { tv3CachedPerCent 6 } + + tv3cpReads OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READ (Read From File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 7 } + + tv3cpWrites OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_WRITE (Write to File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 8 } + + tv3cpCreates OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_CREATE (Create a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 9 } + + tv3cpMkdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKDIR (Create a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 10 } + + tv3cpSymlinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_SYMLINK (Create a Symbolic + Link) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 11 } + + tv3cpMknods OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_MKNOD (Create a Special + Device) procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 12 } + + tv3cpRemoves OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_REMOVE (Remove a File) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 13 } + + tv3cpRmdirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RMDIR (Remove a Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 14 } + + tv3cpRenames OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_RENAME (Rename a File or + Directory) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 15 } + + tv3cpLinks OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_LINK (Create Link to an + Object) procedure, that did not result in + the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 16 } + + tv3cpReaddirs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READDIR (Read From Directory) + procedure, that did not result in the + filesystem blocking to read from disk, as a + percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 17 } + + tv3cpReaddirPluss OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_READIRPLUS (Extended Read + from Directory) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 18 } + + tv3cpFsstats OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSSTAT (Get Dynamic File + System Information) procedure, that did not + result in the filesystem blocking to read from + disk, as a percentage of the total number of + calls received for this procedure, since the + last boot." + ::= { tv3CachedPerCent 19 } + + tv3cpFsinfos OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_FSINFO (Get Static File System + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 20 } + + tv3cpPathconfs OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_PATHCONF (Retrieve POSIX + Information) procedure, that did not result + in the filesystem blocking to read from disk, + as a percentage of the total number of calls + received for this procedure, since the last boot." + ::= { tv3CachedPerCent 21 } + + tv3cpCommits OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 calls received + for the NFSPROC3_COMMIT (Commit Cached Data on + a Server to Stable Storage) procedure, that + did not result in the filesystem blocking to + read from disk, as a percentage of the total + number of calls received for this procedure, + since the last boot." + ::= { tv3CachedPerCent 22 } + + + -- the treplyCache group + + -- this group contains statistics related to the + -- Reply Cache processing, since the last boot + + trcInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped, for + calls already in progress, since the last boot." + ::= { treplyCache 1 } + + trcDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped, + for replies already generated within a short + interval, since the last boot. These stats are + deprecated. A value of zero will always be + returned for these stats." + ::= { treplyCache 2 } + + trcMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for which + there were no corresponding entries already in + the Reply Cache, since the last boot." + ::= { treplyCache 3 } + + trcNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received that + resulted in replies being replayed from + the Reply Cache, since the last boot." + ::= { treplyCache 4 } + + trcNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for calls + that resulted in this request being processed + as a new request even when a corresponding + entry existed in the Reply Cache, since the + last boot." + ::= { treplyCache 5 } + + trcTcpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for calls already in + progress, since the last boot." + ::= { treplyCache 6 } + + trcTcpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the TCP protocol, for replies already + generated within a short interval, since the + last boot. These stats are deprecated. A value + of zero will always be returned for these stats." + ::= { treplyCache 7 } + + trcTcpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for which there were no corresponding + entries already in the Reply Cache, since the + last boot." + ::= { treplyCache 8 } + + trcTcpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol that resulted in replies being + replayed from the Reply Cache, since the + last boot." + ::= { treplyCache 9 } + + trcTcpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + TCP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last boot." + ::= { treplyCache 10 } + + trcUdpInProgressHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for calls already in + progress, since the last boot." + ::= { treplyCache 11 } + + trcUdpDelayHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of NFS requests that were dropped + for the UDP protocol, for replies already + generated within a short interval, since the + last boot. These stats are deprecated. A value + of zero will always be returned for these stats." + ::= { treplyCache 12 } + + trcUdpMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for which there were no corresponding + entries already in the Reply Cache, since the + last boot." + ::= { treplyCache 13 } + + trcUdpNonIdemDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol that resulted in replies being + replayed from the Reply Cache, since the + last boot." + ::= { treplyCache 14 } + + trcUdpNonIdemNotDoneHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS requests received for the + UDP protocol for calls that resulted in this + request being processed as a new request even + when a corresponding entry existed in the Reply + Cache, since the last boot." + ::= { treplyCache 15 } + + -- the tnfsrwStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 and 3 read and write calls since + -- last boot. + + tv2ReadStats OBJECT IDENTIFIER ::= { tnfsrwStats 1 } + + tv2WriteStats OBJECT IDENTIFIER ::= { tnfsrwStats 2 } + + tv3ReadStats OBJECT IDENTIFIER ::= { tnfsrwStats 3 } + + tv3WriteStats OBJECT IDENTIFIER ::= { tnfsrwStats 4 } + + + -- the tv2ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 read calls since last boot. + + tv2Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv2ReadStats 1 } + + tv2Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv2ReadStats 2 } + + tv2Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv2ReadStats 3 } + + + tv2Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv2ReadStats 4 } + + tv2Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv2ReadStats 5 } + + tv2Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv2ReadStats 6 } + + tv2Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv2ReadStats 7 } + + tv2Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv2ReadStats 8 } + + tv2Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 read calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv2ReadStats 9 } + + + -- the tv2WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 2 write calls since last boot. + + tv2Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv2WriteStats 1 } + + tv2Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv2WriteStats 2 } + + tv2Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv2WriteStats 3 } + + + tv2Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv2WriteStats 4 } + + tv2Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv2WriteStats 5 } + + tv2Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv2WriteStats 6 } + + tv2Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv2WriteStats 7 } + + tv2Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv2WriteStats 8 } + + tv2Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 2 write calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv2WriteStats 9 } + + + -- the tv3ReadStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 read calls since last boot. + + tv3Read512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv3ReadStats 1 } + + tv3Read1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv3ReadStats 2 } + + tv3Read2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv3ReadStats 3 } + + + tv3Read4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv3ReadStats 4 } + + tv3Read8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv3ReadStats 5 } + + tv3Read16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv3ReadStats 6 } + + tv3Read32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv3ReadStats 7 } + + tv3Read64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv3ReadStats 8 } + + tv3Read128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 read calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv3ReadStats 9 } + + + -- the tv3WriteStats group + + -- this group contains statistics for the sizes of + -- NFS version 3 write calls since last boot. + + tv3Write512Calls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 0-511 bytes." + ::= { tv3WriteStats 1 } + + tv3Write1KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 512-1023 bytes." + ::= { tv3WriteStats 2 } + + tv3Write2KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 1K-2047 bytes." + ::= { tv3WriteStats 3 } + + tv3Write4KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 2K-4095 bytes." + ::= { tv3WriteStats 4 } + + tv3Write8KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 4K-8191 bytes." + ::= { tv3WriteStats 5 } + + tv3Write16KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 8K-16383 bytes." + ::= { tv3WriteStats 6 } + + tv3Write32KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 16K-32767 bytes." + ::= { tv3WriteStats 7 } + + tv3Write64KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 32K-65535 bytes." + ::= { tv3WriteStats 8 } + + tv3Write128KCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of NFS Version 3 write calls + received by the server since last boot + with request sizes between 64K-131071 bytes." + ::= { tv3WriteStats 9 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the nfsOptions group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + nfsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the nfs protocol is licensed on the + filer." + ::= { nfsOptions 1 } + + + -- -- -- -- -- -- -- + -- the quota group -- + -- -- -- -- -- -- -- + + quotaState OBJECT-TYPE + SYNTAX INTEGER { + quotaStateOff(1), + quotaStateOn(2), + quotaStateInit(3) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Indicates whether the root volume's quotas are ON, + OFF or initializing. This object is deprecated - + use qvStateTable.qvStateStat instead." + ::= { quota 1 } + + quotaInitPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Indicates percentage of root volume quota + computation done while quotas are in initializing + state. This object is deprecated - use + qvStateTable.qvInitPercent instead." + ::= { quota 2 } + + + -- the old volume-unaware quota report table. DEPRECATED + + qrTable OBJECT-TYPE + SYNTAX SEQUENCE OF QrEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for each user or group with + a quota in /etc/quotas. All quotas are displayed + regardless of volume, and no volume information + is given. This table is deprecated - use qrVTable + instead." + ::= { quota 3 } + + qrEntry OBJECT-TYPE + SYNTAX QrEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for a referenced entry + with a quota in the file /etc/quotas. + All quotas are displayed regardless of volume, + and no volume information is given. This object is + deprecated - use qrVEntry instead." + + INDEX { qrIndex } + ::= { qrTable 1 } + + QrEntry ::= + SEQUENCE { + qrIndex + Integer32, + qrType + Integer32, + qrId + Integer32, + qrKBytesUsed + Integer32, + qrKBytesLimit + Integer32, + qrFilesUsed + Integer32, + qrFileLimit + Integer32, + qrPathName + DisplayString + } + + qrIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry in the + file /etc/quotas." + ::= { qrEntry 1 } + + qrType OBJECT-TYPE + SYNTAX INTEGER { + qrTypeUser(1), + qrTypeGroup(2), + qrTypeTree(3), + qrTypeUnknown(4) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Identifies the kind of quota for this qrEntry." + ::= { qrEntry 2 } + + qrId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The UID (user's numerical ID) or the GID (numerical + ID of the group that a user belongs to), as + applicable, associated with this qrEntry." + ::= { qrEntry 3 } + + qrKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of KBytes used for this + qrEntry." + ::= { qrEntry 4 } + + qrKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of KBytes that can be used for this + qrEntry." + ::= { qrEntry 5 } + + qrFilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of files used for this + qrEntry." + ::= { qrEntry 6 } + + qrFileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of files that can be used for this + qrEntry." + ::= { qrEntry 7 } + + qrPathName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A textual string that contains the path + corresponding to this qrEntry." + ::= { qrEntry 8 } + + -- quota volume state table + + qvStateTable OBJECT-TYPE + SYNTAX SEQUENCE OF QvStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current quota state of + each volume in the system." + ::= { quota 4 } + + qvStateEntry OBJECT-TYPE + SYNTAX QvStateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current quota state of + each volume in the system." + INDEX { qvStateVolume } + ::= { qvStateTable 1 } + + QvStateEntry ::= + SEQUENCE { + qvStateVolume + Integer32, + qvStateName + DisplayString, + qvStateStat + Integer32, + qvStateInitPercent + Integer32 + } + + qvStateVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this volume. The mapping + of this number to actual volumes may change if + volumes are added or deleted. Use qvStateName to + unambiguously identify a volume. The mapping + established by this object is the same as + the mapping of qrVVolume (below) to actual volumes. + For instance, if a qvStateVolume value of '5' + represents the volume 'vol2', a value of '5' + in qrVVolume also represents the volume 'vol2'." + ::= { qvStateEntry 1 } + + qvStateName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the name of this volume." + ::= { qvStateEntry 2 } + + qvStateStat OBJECT-TYPE + SYNTAX INTEGER { + quotaStateOff(1), + quotaStateOn(2), + quotaStateInit(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether quotas are ON, OFF or + initializing." + ::= { qvStateEntry 3 } + + qvStateInitPercent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates percentage of quota computation done + while quotas are in initializing state." + ::= { qvStateEntry 4 } + + + -- multi-volume-aware quota table + -- THIS IS DEPRECATED, please use qrV2Table instead + + qrVTable OBJECT-TYPE + SYNTAX SEQUENCE OF QrVEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for each user or group with + a quota in /etc/quotas." + ::= { quota 5 } + + + qrVEntry OBJECT-TYPE + SYNTAX QrVEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the current file and + space consumption for a referenced entry + with a quota in the file /etc/quotas. Indices + select the volume of the quota and the quota entry + itself." + INDEX { qrVVolume, qrVIndex } + ::= { qrVTable 1 } + + QrVEntry ::= + SEQUENCE { + qrVIndex + Integer32, + qrVType + Integer32, + qrVId + Integer32, + qrVKBytesUsed + Integer32, + qrVKBytesLimit + Integer32, + qrVFilesUsed + Integer32, + qrVFileLimit + Integer32, + qrVPathName + DisplayString, + qrVVolume + Integer32, + qrVTree + DisplayString, + qrVIdType + Integer32, + qrVSid + DisplayString, + qrVKBytesThreshold + Integer32, + qrVKBytesLimitSoft + Integer32, + qrVFileLimitSoft + Integer32 + } + + qrVIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry in the + file /etc/quotas in the given volume." + ::= { qrVEntry 1 } + + qrVType OBJECT-TYPE + SYNTAX INTEGER { + qrVTypeUser(1), + qrVTypeGroup(2), + qrVTypeTree(3), + qrVTypeUserDefault(4), + qrVTypeGroupDefault(5), + qrVTypeUnknown(6) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Identifies the kind of quota for this qrVEntry." + ::= { qrVEntry 2 } + + qrVId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The UID (user's numerical ID) or the GID (numerical + ID of the group that a user belongs to), as + applicable, associated with this qrVEntry. Check + the qrVIdType field to see if this field is valid." + ::= { qrVEntry 3 } + + qrVKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of KBytes used for this + qrVEntry." + ::= { qrVEntry 4 } + + qrVKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of KBytes that can be used for this + qrVEntry." + ::= { qrVEntry 5 } + + qrVFilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The current number of files used for this + qrVEntry." + ::= { qrVEntry 6 } + + qrVFileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of files that can be used for this + qrVEntry." + ::= { qrVEntry 7 } + + qrVPathName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A textual string that contains the path + corresponding to this qrVEntry." + ::= { qrVEntry 8 } + + qrVVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies the volume for which + this quota is in effect on. The volume that this + value represents can be determined by checking + the value of qvStateName (above) with + qvStateVolume set to the value found here." + ::= { qrVEntry 9 } + + qrVTree OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A string that indicates which qtree this quota + belongs to." + ::= { qrVEntry 10 } + + qrVIdType OBJECT-TYPE + SYNTAX INTEGER { + qrVIdValid(1), + qrVSidValid(2) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A value that indicates which ID field is valid." + ::= { qrVEntry 11} + + qrVSid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The one or more IDs associated with this qrVEntry. + If the qrVentry is associated with a Windows ID, the + text form of the Windows ID (the SID) is here. If + the qrVEntry is associated with more than one id, + this contains a blank separated list of those IDs. + Check the qrVIdType field to see if this field is + valid." + ::= { qrVEntry 12 } + + qrVKBytesThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message." + ::= { qrVEntry 13 } + + qrVKBytesLimitSoft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of KBytes that can be used for this + qrVEntry before a warning message and SNMP + trap is produced." + ::= { qrVEntry 14 } + + qrVFileLimitSoft OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The limit of files that can be used for this + qrVEntry before a warning message and SNMP + trap is produced." + ::= { qrVEntry 15 } + + -- + -- multi-volume-aware quota table with 64 bit values + -- + + qrV2Table OBJECT-TYPE + SYNTAX SEQUENCE OF QrV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current file and + space consumption for each user or group with + a quota in /etc/quotas." + ::= { quota 6 } + + + qrV2Entry OBJECT-TYPE + SYNTAX QrV2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the current file and + space consumption for a referenced entry + with a quota in the file /etc/quotas. Indices + select the volume of the quota and the quota entry + itself." + INDEX { qrV2Volume, qrV2Index } + ::= { qrV2Table 1 } + + QrV2Entry ::= + SEQUENCE { + qrV2Index + Integer32, + qrV2Type + Integer32, + qrV2Id + Integer32, + qrV2HighKBytesUsed + Integer32, + qrV2LowKBytesUsed + Integer32, + qrV2QuotaUnlimited + Integer32, + qrV2HighKBytesLimit + Integer32, + qrV2LowKBytesLimit + Integer32, + qrV2FilesUsed + Integer32, + qrV2FileQuotaUnlimited + Integer32, + qrV2FileLimit + Integer32, + qrV2PathName + DisplayString, + qrV2Volume + Integer32, + qrV2Tree + DisplayString, + qrV2IdType + Integer32, + qrV2Sid + DisplayString, + qrV2ThresholdUnlimited + Integer32, + qrV2HighKBytesThreshold + Integer32, + qrV2LowKBytesThreshold + Integer32, + qrV2SoftQuotaUnlimited + Integer32, + qrV2HighKBytesSoftLimit + Integer32, + qrV2LowKBytesSoftLimit + Integer32, + qrV2SoftFileQuotaUnlimited + Integer32, + qrV2SoftFileLimit + Integer32, + qrV264KBytesUsed + Counter64, + qrV264KBytesLimit + Counter64, + qrV264KBytesThreshold + Counter64, + qrV264KBytesSoftLimit + Counter64 + } + + qrV2Index OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry in the + file /etc/quotas in the given volume." + ::= { qrV2Entry 1 } + + qrV2Type OBJECT-TYPE + SYNTAX INTEGER { + qrV2TypeUser(1), + qrV2TypeGroup(2), + qrV2TypeTree(3), + qrV2TypeUserDefault(4), + qrV2TypeGroupDefault(5), + qrV2TypeUnknown(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identifies the kind of quota for this qrV2Entry." + ::= { qrV2Entry 2 } + + qrV2Id OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UID (user's numerical ID) or the GID (numerical + ID of the group that a user belongs to), as + applicable, associated with this qrV2Entry. Check + the qrV2IdType field to see if this field is valid." + ::= { qrV2Entry 3 } + + qrV2HighKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of KBytes used for this + qrV2Entry. This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 4 } + + qrV2LowKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of KBytes used for this + qrV2Entry. This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 5 } + + qrV2QuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + size based quota limit for this qrV2Entry is unlimited. + If false(1) then qrV2*KBytesLimit OID's are valid, + if true(0) then qrV2*KBytesLimit OID's are unused + and will return 0." + ::= { qrV2Entry 6 } + + qrV2HighKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry. This object returns the most significant + 32 bits of the 64 bit unsigned integer. This will + return 0 if qrV2QuotaUnlimited is true." + ::= { qrV2Entry 7 } + + qrV2LowKBytesLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry. This object returns the least significant + 32 bits of the 64 bit unsigned integer. This will + return 0 if qrV2QuotaUnlimited is true." + ::= { qrV2Entry 8 } + + qrV2FilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of files used for this + qrV2Entry." + ::= { qrV2Entry 9 } + + qrV2FileQuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + file based quota limit for this qrV2Entry is unlimited. + If false(1) then qrV2FileLimit is valid, if true(0) + qrV2FileLimit will return 0." + ::= { qrV2Entry 10 } + + + qrV2FileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of files that can be used for this + qrV2Entry." + ::= { qrV2Entry 11 } + + qrV2PathName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string that contains the path + corresponding to this qrV2Entry." + ::= { qrV2Entry 12 } + + qrV2Volume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume for which + this quota is in effect on. The volume that this + value represents can be determined by checking + the value of qvStateName (above) with + qvStateVolume set to the value found here." + ::= { qrV2Entry 13 } + + qrV2Tree OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string that indicates which qtree this quota + belongs to." + ::= { qrV2Entry 14 } + + qrV2IdType OBJECT-TYPE + SYNTAX INTEGER { + qrV2IdValid(1), + qrV2SidValid(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value that indicates which ID field is valid." + ::= { qrV2Entry 15 } + + qrV2Sid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The one or more IDs associated with this qrV2Entry. + If the qrV2entry is associated with a Windows ID, the + text form of the Windows ID (the SID) is here. If + the qrV2Entry is associated with more than one id, + this contains a blank separated list of those IDs. + Check the qrV2IdType field to see if this field is + valid." + ::= { qrV2Entry 16 } + + qrV2ThresholdUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + size based threshold limit for this qrV2Entry is + unlimited. If false(1) then qrV2*KBytesThreshold OID's + are valid, if true(0) then qrV2*KBytesThreshold OID's + are unused and will return 0." + ::= { qrV2Entry 17 } + + qrV2HighKBytesThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message. This object returns the + most significant 32 bits of the 64 bit unsigned + integer. This will return 0 if qrV2ThresholdUnlimited + is true." + ::= { qrV2Entry 18 } + + qrV2LowKBytesThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message. This object returns the + least significant 32 bits of the 64 bit unsigned + integer. This will return 0 if qrV2ThresholdUnlimited + is true." + ::= { qrV2Entry 19 } + + qrV2SoftQuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + size based soft quota limit for this qrV2Entry is + unlimited. If false(1) then qrV2*KBytesSoftLimit OID's + are valid, if true(0) the qrV2*KBytesSoftLimit OID's + are unused and will return 0." + ::= { qrV2Entry 20 } + + qrV2HighKBytesSoftLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 21 } + + qrV2LowKBytesSoftLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { qrV2Entry 22 } + + qrV2SoftFileQuotaUnlimited OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This flag designates whether or not the + file based soft quota limit for this qrV2Entry is + unlimited. If false(1) then qrV2SoftFileLimit is valid, + if true(0) qrV2SoftFileLimit is unused and will + return 0." + ::= { qrV2Entry 23 } + + qrV2SoftFileLimit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of files that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This will return 0 if + qrV2SoftFileQuotaUnlimited is true." + ::= { qrV2Entry 24 } + + qrV264KBytesUsed OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of KBytes used for this + qrV2Entry. This object returns all of the 64 bit + unsigned integer." + + ::= { qrV2Entry 25 } + + qrV264KBytesLimit OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry. This object returns all of the 64 + bit unsigned integer. This will return 0 if + qrV2QuotaUnlimited is true." + ::= { qrV2Entry 26 } + + qrV264KBytesThreshold OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number of KBytes that when used by this entry + produces a warning message. This object returns the + all of the 64 bit unsigned integer. This will return + 0 if qrV2ThresholdUnlimited is true." + ::= { qrV2Entry 27 } + + qrV264KBytesSoftLimit OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit of KBytes that can be used for this + qrV2Entry before a warning message and SNMP + trap is produced. This object returns all of the + 64 bit unsigned integer." + ::= { qrV2Entry 28 } + + -- -- -- -- -- -- -- -- -- + -- the file system group -- + -- -- -- -- -- -- -- -- -- + + filesysMaxfilesAvail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The count of the maximum number of + files allowable on the root volume. This + object is deprecated - use + dfEntry.dfMaxFilesAvail instead." + ::= { filesys 1 } + + filesysMaxfilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The count of the number of files + currently in use on the root volume. + This object is deprecated - use + dfEntry.dfMaxFilesUsed instead." + ::= { filesys 2 } + + filesysMaxfilesPossible OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The largest value to which the + filesysMaxfilesAvail parameter above can + be increased by reconfiguration on the + root volume. This object is deprecated - + use dfEntry.dfMaxFilesPossible." + ::= { filesys 3 } + + dfTable OBJECT-TYPE + SYNTAX SEQUENCE OF DfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the available disk space + on the file systems. The tables shows the + available disk space for volumes as well as + aggregates." + ::= { filesys 4 } + + snapshot OBJECT IDENTIFIER ::= { filesys 5 } + + -- the display file system table + + dfEntry OBJECT-TYPE + SYNTAX DfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the available disk space on + the referenced file system." + INDEX { dfIndex } + ::= { dfTable 1 } + + DfEntry ::= + SEQUENCE { + dfIndex + Integer32, + dfFileSys + DisplayString, + dfKBytesTotal + Integer32, + dfKBytesUsed + Integer32, + dfKBytesAvail + Integer32, + dfPerCentKBytesCapacity + Integer32, + dfInodesUsed + Integer32, + dfInodesFree + Integer32, + dfPerCentInodeCapacity + Integer32, + dfMountedOn + DisplayString, + dfMaxFilesAvail + Integer32, + dfMaxFilesUsed + Integer32, + dfMaxFilesPossible + Integer32, + dfHighTotalKBytes + Integer32, + dfLowTotalKBytes + Integer32, + dfHighUsedKBytes + Integer32, + dfLowUsedKBytes + Integer32, + dfHighAvailKBytes + Integer32, + dfLowAvailKBytes + Integer32, + dfStatus + Integer32, + dfMirrorStatus + Integer32, + dfPlexCount + Integer32, + dfType + Integer32, + dfHighSisSharedKBytes + Integer32, + dfLowSisSharedKBytes + Integer32, + dfHighSisSavedKBytes + Integer32, + dfLowSisSavedKBytes + Integer32, + dfPerCentSaved + Integer32, + df64TotalKBytes + Counter64, + df64UsedKBytes + Counter64, + df64AvailKBytes + Counter64, + df64SisSharedKBytes + Counter64, + df64SisSavedKBytes + Counter64 + } + + dfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { dfEntry 1 } + + dfFileSys OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name for the referenced file system." + ::= { dfEntry 2 } + + dfKBytesTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total capacity in KBytes for the + referenced file system." + ::= { dfEntry 3 } + + dfKBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system." + ::= { dfEntry 4 } + + dfKBytesAvail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The total disk space in KBytes that is + free for use on the referenced file system." + ::= { dfEntry 5 } + + dfPerCentKBytesCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space currently + in use on the referenced file system." + ::= { dfEntry 6 } + + dfInodesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of inodes in use on the + referenced file system." + ::= { dfEntry 7 } + + dfInodesFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of inodes that are + available for use on the referenced + file system." + ::= { dfEntry 8 } + + dfPerCentInodeCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space currently + in use based on inode counts, on the + referenced file system." + ::= { dfEntry 9 } + + dfMountedOn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the file on which this file + system is mounted." + ::= { dfEntry 10 } + + dfMaxFilesAvail OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of the maximum number of + files allowable on the referenced file + system." + ::= { dfEntry 11 } + + dfMaxFilesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of the number of files + currently in use on the referenced file + system." + ::= { dfEntry 12 } + + dfMaxFilesPossible OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The largest value to which the + filesysMaxfilesAvail parameter above can + be increased by reconfiguration on the + referenced file system." + ::= { dfEntry 13 } + + dfHighTotalKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total capacity in KBytes for the + referenced file system. This object returns + the most significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 14 } + + dfLowTotalKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total capacity in KBytes for the + referenced file system. This object returns + the least significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 15 } + + dfHighUsedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { dfEntry 16 } + + dfLowUsedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { dfEntry 17 } + + dfHighAvailKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is free + for use on the referenced file system. + This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= { dfEntry 18 } + + dfLowAvailKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is free + for use on the referenced file system. + This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= { dfEntry 19 } + + + dfStatus OBJECT-TYPE + SYNTAX INTEGER { + unmounted(1), + mounted(2), + frozen(3), + destroying(4), + creating(5), + mounting(6), + unmounting(7), + nofsinfo(8), + replaying(9), + replayed(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the file system." + ::= { dfEntry 20 } + + dfMirrorStatus OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), + uninitialized(2), + needcpcheck(3), + cpcheckwait(4), + unmirrored(5), + normal(6), + degraded(7), + resyncing(8), + failed(9), + limbo(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Overall mirror status of the file system." + ::= { dfEntry 21 } + + dfPlexCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of plexes in this file system." + ::= { dfEntry 22 } + + dfType OBJECT-TYPE + SYNTAX INTEGER { + traditionalVolume(1), + flexibleVolume(2), + aggregate(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the type of container." + ::= { dfEntry 23 } + + dfHighSisSharedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that is + shared by more that one instance on the + referenced file system. This object returns + the most significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 24 } + + dfLowSisSharedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that is + shared by more that one instance on the + referenced file system. This object returns + the least significant 32 bits of the 64 bit + unsigned integer." + ::= { dfEntry 25 } + + dfHighSisSavedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is saved + by storing only one copy of the duplicated + blocks on the referenced file system. The + object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { dfEntry 26 } + + dfLowSisSavedKBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is saved + by storing only one copy of the duplicated + blocks on the referenced file system. The + object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { dfEntry 27 } + + dfPerCentSaved OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space saved by + eliminating the duplicated blocks on the + referenced file system." + ::= { dfEntry 28 } + + df64TotalKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total capacity in KBytes for the + referenced file system. This object returns + all of the 64 bit unsigned integer." + ::= { dfEntry 29 } + + df64UsedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns all of the 64 bit unsigned integer." + ::= { dfEntry 30 } + + df64AvailKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is free + for use on the referenced file system. + This object returns all of the 64 bit + unsigned integer." + ::= { dfEntry 31 } + + df64SisSharedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that is + shared by more that one instance on the + referenced file system. This object returns + all of the 64 bit unsigned integer." + ::= { dfEntry 32 } + + df64SisSavedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is saved + by storing only one copy of the duplicated + blocks on the referenced file system. The + object returns all of the 64 bit unsigned + integer." + ::= { dfEntry 33 } + + -- the old single-volume snapshot table. DEPRECATED + + slTable OBJECT-TYPE + SYNTAX SEQUENCE OF SlEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report of the snapshots on the + root volume. This table is deprecated - use + slVTable instead." + ::= { snapshot 1 } + + slEntry OBJECT-TYPE + SYNTAX SlEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Provide a report on a given snapshot on the + root volume. This object is deprecated - use + slVEntry instead." + INDEX { slIndex } + ::= { slTable 1 } + + SlEntry ::= + SEQUENCE { + slIndex + Integer32, + slMonth + Integer32, + slDay + Integer32, + slHour + Integer32, + slMinutes + Integer32, + slName + DisplayString + } + + slIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { slEntry 1 } + + slMonth OBJECT-TYPE + SYNTAX INTEGER { + january(1), + february(2), + march(3), + april(4), + may(5), + june(6), + july(7), + august(8), + september(9), + october(10), + november(11), + december(12) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The month in which the snapshot was created." + ::= { slEntry 2 } + + slDay OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The day on which the snapshot was created." + ::= { slEntry 3 } + + slHour OBJECT-TYPE + SYNTAX Integer32 (0..23) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The hour in which the snapshot was created." + ::= { slEntry 4 } + + slMinutes OBJECT-TYPE + SYNTAX Integer32 (0..59) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The minute in which the snapshot was created." + ::= { slEntry 5 } + + slName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The name of the referenced snapshot." + ::= { slEntry 6 } + + + -- The multivolume / aggregate snapshot table. + + slVTable OBJECT-TYPE + SYNTAX SEQUENCE OF SlVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the snapshots on the + file systems." + ::= { snapshot 2 } + + slVEntry OBJECT-TYPE + SYNTAX SlVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report on a given snapshot on the + file system. Indices select the volume of + the snapshot and the snapshot entry itself." + INDEX { slVVolume, slVIndex } + ::= { slVTable 1 } + + SlVEntry ::= + SEQUENCE { + slVIndex + Integer32, + slVMonth + Integer32, + slVDay + Integer32, + slVHour + Integer32, + slVMinutes + Integer32, + slVName + DisplayString, + slVVolume + Integer32, + slVNumber + Integer32, + slVVolumeName + DisplayString, + slVType + Integer32 + } + + slVIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { slVEntry 1 } + + slVMonth OBJECT-TYPE + SYNTAX INTEGER { + january(1), + february(2), + march(3), + april(4), + may(5), + june(6), + july(7), + august(8), + september(9), + october(10), + november(11), + december(12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The month in which the snapshot was created." + ::= { slVEntry 2 } + + slVDay OBJECT-TYPE + SYNTAX Integer32 (1..31) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The day on which the snapshot was created." + ::= { slVEntry 3 } + + slVHour OBJECT-TYPE + SYNTAX Integer32 (0..23) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The hour in which the snapshot was created." + ::= { slVEntry 4 } + + slVMinutes OBJECT-TYPE + SYNTAX Integer32 (0..59) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minute in which the snapshot was created." + ::= { slVEntry 5 } + + slVName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the referenced snapshot." + ::= { slVEntry 6 } + + slVVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume / aggregate that + contains this snapshot." + ::= { slVEntry 7 } + + slVNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of snapshots for this volume / aggregate." + ::= { slVEntry 8 } + + slVVolumeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume / aggregate. This does not + have a /vol/ prefix." + + ::= { slVEntry 9 } + + slVType OBJECT-TYPE + SYNTAX INTEGER { + traditionalVolume(1), + flexibleVolume(2), + aggregate(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the type of container for this + snapshot." + + ::= { slVEntry 10 } + + + -- The snapshot content table. + + slQTable OBJECT-TYPE + SYNTAX SEQUENCE OF SlQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the snapshots and their contents + on the file systems." + ::= { snapshot 3 } + + slQEntry OBJECT-TYPE + SYNTAX SlQEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report on a given snapshot for a given + qtree on the file system. Indices select the volume + and qtree of the snapshot and the snapshot entry + itself." + + INDEX { slQVolume, slQQtree, slQIndex } + ::= { slQTable 1 } + + SlQEntry ::= + SEQUENCE { + slQIndex + Integer32, + slQVolume + Integer32, + slQQtree + Integer32, + slQSnapshotName + DisplayString, + slQSnapshotTime + Integer32, + slQQtreeName + DisplayString, + slQQtreeContent + Integer32, + slQSource + OCTET STRING, + slQSourceTime + Integer32, + slQVolumeName + DisplayString + } + + slQIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { slQEntry 1 } + + slQVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that contains + this snapshot." + ::= { slQEntry 2 } + + slQQtree OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the qtree that contains + this snapshot." + ::= { slQEntry 3 } + + slQSnapshotName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the referenced snapshot." + ::= { slQEntry 4 } + + slQSnapshotTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the snapshot on the system. The time in + seconds since January 1, 1970." + ::= { slQEntry 5 } + + slQQtreeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string that indicates which qtree is in this + snapshot" + ::= { slQEntry 6 } + + slQQtreeContent OBJECT-TYPE + SYNTAX INTEGER { + replica(1), + transitioning(2), + original(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The content of the qtree tree" + ::= { slQEntry 7 } + + slQSource OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The source of this qtree for a replicated qtree. + '-' for a original qtree." + ::= { slQEntry 8 } + + slQSourceTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time of the source snapshot for a replicated qtree. + Time of the current snapshot for an original qtree. + The time in seconds since January 1, 1970. 0 if the + qtree is in a transitioning stage" + + ::= { slQEntry 9 } + + slQVolumeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume. This does not have a /vol/ + prefix." + ::= { slQEntry 10 } + + + dfNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the dfTable table." + + ::= { filesys 6 } + + -- -- -- -- -- -- -- -- -- -- -- -- + -- file system status information -- + -- -- -- -- -- -- -- -- -- -- -- -- + + fsStatus OBJECT IDENTIFIER ::= { filesys 7 } + + fsOverallStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + nearlyFull(2), + full(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of overall file system + health. 'ok' indicates that all file systems + have adequate space. 'nearlyFull' means + that one or more is nearly full (more than + 95% full). 'full' means that one or more + are more than 98% full." + ::= { fsStatus 1 } + + fsStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string indicating any file systems which + are full or nearly full." + ::= { fsStatus 2 } + + fsMaxUsedBytesPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of space currently in use + by the file system which is most full." + ::= { fsStatus 3 } + + fsMaxUsedInodesPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of inodes currently in use + by the file system which is most full." + ::= { fsStatus 4 } + + fsMaxUsedReservedPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of reserved space currently + in use by the file system which is most full." + ::= { fsStatus 5 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- All volumes, including those offline and those + -- owned by the cluster partner. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + volTable OBJECT-TYPE + SYNTAX SEQUENCE OF VolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "List the volumes defined on the system, + including offline volumes." + + ::= { filesys 8 } + + volEntry OBJECT-TYPE + SYNTAX VolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular volume." + INDEX { volIndex } + ::= { volTable 1 } + + VolEntry ::= + SEQUENCE { + volIndex Integer32, + volName DisplayString, + volFSID DisplayString, + volOwningHost Integer32, + volState DisplayString, + volStatus DisplayString, + volOptions DisplayString, + volUUID DisplayString, + volAggrName DisplayString, + volType Integer32, + volClone Integer32, + volCloneOf DisplayString, + volCloneSnap DisplayString + } + + volIndex OBJECT-TYPE + SYNTAX Integer32 (1..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this volume. The + volIndex is not related to any other table + defined in this MIB, and may change as + volumes are created and destroyed." + ::= { volEntry 1 } + + volName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the volume. This includes no /vol/ + prefix." + ::= { volEntry 2 } + + volFSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique identifier for this volume." + ::= { volEntry 3 } + + volOwningHost OBJECT-TYPE + SYNTAX INTEGER { + local(1), + partner(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of which host owns this volume." + ::= { volEntry 4 } + + volState OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of the volume, such as 'online' or + 'offline'." + ::= { volEntry 5 } + + volStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the volume, such as 'normal' or + 'reconstructing'. May include several values + separated by comma and space." + ::= { volEntry 6 } + + volOptions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Options associated with the volume, such + as 'root' and 'nosnapdir=off'. May include + several values separated by comma." + ::= { volEntry 7 } + + volUUID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique id associated with the volume." + ::= { volEntry 8 } + + volAggrName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the aggregate this flexible volume is a + part of." + ::= { volEntry 9 } + + volType OBJECT-TYPE + SYNTAX INTEGER { + traditional(1), + flexible(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this volume, older volumes are + traditional while newer volumes contained in + aggregates are flexible." + ::= { volEntry 10 } + + volClone OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True indicates flexible volume is a clone." + ::= { volEntry 11 } + + volCloneOf OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of flexible volume this flexible volume is + a clone of." + ::= { volEntry 12 } + + volCloneSnap OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of original cloned snapshot." + ::= { volEntry 13 } + + volNumber OBJECT-TYPE + SYNTAX Integer32 (0..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of volumes in the volTable." + + ::= { filesys 9 } + + + qtreeTable OBJECT-TYPE + SYNTAX SEQUENCE OF QtreeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of the qtrees on the system." + + ::= { filesys 10 } + + qtreeEntry OBJECT-TYPE + SYNTAX QtreeEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular qtree." + + INDEX { qtreeVolume, qtreeIndex } + ::= { qtreeTable 1 } + + QtreeEntry ::= + SEQUENCE { + qtreeIndex Integer32, + qtreeVolume Integer32, + qtreeVolumeName DisplayString, + qtreeId Integer32, + qtreeName DisplayString, + qtreeStyle Integer32, + qtreeStatus Integer32, + qtreeOplock Integer32 + } + + qtreeIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the qtree table." + + ::= { qtreeEntry 1 } + + qtreeVolume OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that contains + this qtree." + + ::= { qtreeEntry 2 } + + qtreeVolumeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume that contains this qtree. + This includes no /vol/prefix." + + ::= { qtreeEntry 3 } + + qtreeId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Id number of the qtree." + + ::= { qtreeEntry 4 } + + qtreeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the qtree." + + ::= { qtreeEntry 5 } + + qtreeStyle OBJECT-TYPE + SYNTAX INTEGER { + unix(1), + ntfs(2), + mixed(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The security style of the qtree." + + ::= { qtreeEntry 6 } + + qtreeStatus OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + snapmirrored(2), + snapvaulted(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the qtree." + + ::= { qtreeEntry 7 } + + qtreeOplock OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An indication of whether the oplocks is enabled or not + for this qtree." + + ::= { qtreeEntry 8 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- All aggregates, including those offline and those + -- owned by the cluster partner. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + aggrTable OBJECT-TYPE + SYNTAX SEQUENCE OF AggrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "List the aggregates defined on the system, + including offline aggregates." + + ::= { filesys 11 } + + aggrEntry OBJECT-TYPE + SYNTAX AggrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular aggregate." + INDEX { aggrIndex } + ::= { aggrTable 1 } + + AggrEntry ::= + SEQUENCE { + aggrIndex Integer32, + aggrName DisplayString, + aggrFSID DisplayString, + aggrOwningHost Integer32, + aggrState DisplayString, + aggrStatus DisplayString, + aggrOptions DisplayString, + aggrUUID DisplayString, + aggrFlexvollist OCTET STRING, + aggrType Integer32, + aggrRaidType DisplayString + } + + aggrIndex OBJECT-TYPE + SYNTAX Integer32 (1..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this aggregate. The + aggrIndex is not related to any other table + defined in this MIB, and may change as + aggregates are created and destroyed." + ::= { aggrEntry 1 } + + aggrName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the aggregate. This includes no /vol/ + prefix." + ::= { aggrEntry 2 } + + aggrFSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unique identifier for this aggregate." + ::= { aggrEntry 3 } + + aggrOwningHost OBJECT-TYPE + SYNTAX INTEGER { + local(1), + partner(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indication of which host owns this aggregate." + ::= { aggrEntry 4 } + + aggrState OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "State of the aggregate, such as 'online' or + 'offline'." + ::= { aggrEntry 5 } + + aggrStatus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the aggregate, such as 'normal' or + 'reconstructing'. May include several values + separated by comma and space." + ::= { aggrEntry 6 } + + aggrOptions OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Options associated with the aggregate." + ::= { aggrEntry 7 } + + aggrUUID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique id associated with the aggregate." + ::= { aggrEntry 8 } + + aggrFlexvollist OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "List of all the flexible volumes within this + aggregate." + ::= { aggrEntry 9 } + + aggrType OBJECT-TYPE + SYNTAX INTEGER { + traditional(1), + aggregate(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this container, containers + containing flexible volumes are aggregate." + ::= { aggrEntry 10 } + + aggrRaidType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of raid protection of the aggregate, such as + 'raid0', 'mirrored raid0', 'raid4', 'mirrored raid4', + 'raid_dp', 'mirrored raid_dp'." + ::= { aggrEntry 11 } + + aggrNumber OBJECT-TYPE + SYNTAX Integer32 (0..2048) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of aggregates in the aggrTable." + ::= { filesys 12 } + + -- -- -- -- -- -- -- + -- the RAID group -- + -- -- -- -- -- -- -- + + -- Old root volume raid table. DEPRECATED + + raidTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Display RAID configuration information for the + root volume. This table is deprecated - use + raidVTable instead." + ::= { raid 1 } + + raidEntry OBJECT-TYPE + SYNTAX RaidEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Display RAID configuration information for + the referenced disk drive. This only works for + disks contained within the root volume, and will + include spare drives. This object is + deprecated - use raidVEntry instead." + INDEX { raidIndex } + ::= { raidTable 1 } + + RaidEntry ::= + SEQUENCE { + raidIndex + Integer32, + raidDiskName + DisplayString, + raidStatus + Integer32, + raidDiskId + Integer32, + raidScsiAdapter + DisplayString, + raidScsiId + Integer32, + raidUsedMb + Integer32, + raidUsedBlocks + Integer32, + raidTotalMb + Integer32, + raidTotalBlocks + Integer32, + raidCompletionPerCent + Integer32 + } + + raidIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive." + ::= { raidEntry 1 } + + raidDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The name identifying the referenced disk drive." + ::= { raidEntry 2 } + + raidStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + reconstructionInProgress(2), + parityReconstructionInProgress(3), + parityVerificationInProgress(4), + scrubbingInProgress(5), + failed(6), + addingSpare(7), + spare(8), + prefailed(9), + offline(10) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The status of the referenced disk drive." + ::= { raidEntry 3 } + + raidDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { raidEntry 4 } + + raidScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { raidEntry 5 } + + raidScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { raidEntry 6 } + + raidUsedMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of MBytes currently in use on + the referenced disk drive." + ::= { raidEntry 7 } + + raidUsedBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of Blocks currently in use on + the referenced disk drive." + ::= { raidEntry 8 } + + raidTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { raidEntry 9 } + + raidTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { raidEntry 10 } + + raidCompletionPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "In the case when reconstruction/adding a + spare, verification or scrubbing is in progress, + the percent of such reconstruction, verification + or scrubbing that has been completed on the + referenced disk drive." + ::= { raidEntry 11 } + + + -- Multivolume raidTable. + + + raidVTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information." + ::= { raid 2 } + + raidVEntry OBJECT-TYPE + SYNTAX RaidVEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information for + the referenced volume, raid group, and disk drive." + INDEX { raidVVol, raidVGroup, raidVIndex } + ::= { raidVTable 1 } + + RaidVEntry ::= + SEQUENCE { + raidVIndex + Integer32, + raidVDiskName + DisplayString, + raidVStatus + Integer32, + raidVDiskId + Integer32, + raidVScsiAdapter + DisplayString, + raidVScsiId + Integer32, + raidVUsedMb + Integer32, + raidVUsedBlocks + Integer32, + raidVTotalMb + Integer32, + raidVTotalBlocks + Integer32, + raidVCompletionPerCent + Integer32, + raidVVol + Integer32, + raidVGroup + Integer32, + raidVDiskNumber + Integer32, + raidVGroupNumber + Integer32, + raidVDiskPort + Integer32, + raidVSecondaryDiskName + DisplayString, + raidVSecondaryDiskPort + Integer32, + raidVShelf + Integer32, + raidVBay + Integer32, + raidVPlex + Integer32, + raidVPlexGroup + Integer32, + raidVPlexNumber + Integer32, + raidVPlexName + DisplayString, + raidVSectorSize + Integer32, + raidVDiskSerialNumber + DisplayString, + raidVDiskVendor + DisplayString, + raidVDiskModel + DisplayString, + raidVDiskFirmwareRevision + DisplayString, + raidVDiskRPM + DisplayString, + raidVDiskType + DisplayString, + raidVDiskPool + DisplayString, + raidVDiskCopyDestDiskName + DisplayString + } + + raidVIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this disk drive within + the given volume and RAID group." + ::= { raidVEntry 1 } + + raidVDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk drive." + ::= { raidVEntry 2 } + + raidVStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + reconstructionInProgress(2), + parityReconstructionInProgress(3), + parityVerificationInProgress(4), + scrubbingInProgress(5), + failed(6), + prefailed(9), + offline(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced disk drive." + ::= { raidVEntry 3 } + + raidVDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { raidVEntry 4 } + + raidVScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { raidVEntry 5 } + + raidVScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { raidVEntry 6 } + + raidVUsedMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes currently in use on + the referenced disk drive." + ::= { raidVEntry 7 } + + raidVUsedBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks currently in use on + the referenced disk drive." + ::= { raidVEntry 8 } + + raidVTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { raidVEntry 9 } + + raidVTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { raidVEntry 10 } + + raidVCompletionPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In the case when rapid raid recovery, disk copy, + reconstruction/adding a spare, verification or + scrubbing is in progress, the percent of such + copy, reconstruction, verification or scrubbing + that has been completed on the referenced disk + drive." + ::= { raidVEntry 11 } + + raidVVol OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that this entry + belongs to. The first volume is '1'." + ::= { raidVEntry 12 } + + raidVGroup OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the RAID group within the + given volume that this entry belongs to. The + first RAID group is '1', and number across all plexes." + ::= { raidVEntry 13 } + + raidVDiskNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks within this RAID group." + ::= { raidVEntry 14 } + + raidVGroupNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RAID groups within this volume." + ::= { raidVEntry 15 } + + raidVDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidVEntry 16 } + + raidVSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { raidVEntry 17 } + + raidVSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidVEntry 18 } + + raidVShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { raidVEntry 19 } + + raidVBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { raidVEntry 20 } + + + raidVPlex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the plex within the + given volume that this entry belongs to. The + first plex is '1'." + ::= { raidVEntry 21 } + + raidVPlexGroup OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the RAID group within + the given plex that this entry belongs to. The + first RAID group is '1'." + ::= { raidVEntry 22 } + + raidVPlexNumber OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of plexes within this volume. + This number is always 1 or 2." + ::= { raidVEntry 23 } + + raidVPlexName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the plex that this entry + belongs to. A plex name can be anything, but + is usually a string like 'plex0' or 'plex1'." + ::= { raidVEntry 24 } + + raidVSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { raidVEntry 25 } + + raidVDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { raidVEntry 26 } + + raidVDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { raidVEntry 27 } + + raidVDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { raidVEntry 28 } + + raidVDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { raidVEntry 29 } + + raidVDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { raidVEntry 30 } + + raidVDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { raidVEntry 31 } + + raidVDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this entry + belongs to." + ::= { raidVEntry 32 } + + raidVDiskCopyDestDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When raidVStatus value is prefailed, this string identifies + the name of the disk which is the copy target of the + referenced prefailed disk." + ::= { raidVEntry 33 } + + -- Spare disk table. + + spareTable OBJECT-TYPE + SYNTAX SEQUENCE OF SpareEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display spare disk configuration information." + ::= { raid 3 } + + spareEntry OBJECT-TYPE + SYNTAX SpareEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display configuration information for + the referenced spare disk drive." + INDEX { spareIndex } + ::= { spareTable 1 } + + SpareEntry ::= + SEQUENCE { + spareIndex + Integer32, + spareDiskName + DisplayString, + spareStatus + Integer32, + spareDiskId + Integer32, + spareScsiAdapter + DisplayString, + spareScsiId + Integer32, + spareTotalMb + Integer32, + spareTotalBlocks + Integer32, + spareDiskPort + Integer32, + spareSecondaryDiskName + DisplayString, + spareSecondaryDiskPort + Integer32, + spareShelf + Integer32, + spareBay + Integer32, + sparePool + DisplayString, + spareSectorSize + Integer32, + spareDiskSerialNumber + DisplayString, + spareDiskVendor + DisplayString, + spareDiskModel + DisplayString, + spareDiskFirmwareRevision + DisplayString, + spareDiskRPM + DisplayString, + spareDiskType + DisplayString + } + + spareIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive in the list of spare disk + drives." + ::= { spareEntry 1 } + + spareDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced spare disk + drive." + ::= { spareEntry 2 } + + spareStatus OBJECT-TYPE + SYNTAX INTEGER { + spare(1), + addingspare(2), + bypassed(3), + unknown(4), + offline(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced spare disk drive." + ::= { spareEntry 3 } + + spareDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced spare disk + drive." + ::= { spareEntry 4 } + + spareScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced spare disk drive." + ::= { spareEntry 5 } + + spareScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced spare disk drive + on the referenced SCSI adapter." + ::= { spareEntry 6 } + + spareTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced spare disk drive." + ::= { spareEntry 7 } + + spareTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced spare disk drive." + ::= { spareEntry 8 } + + spareDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { spareEntry 9 } + + spareSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { spareEntry 10 } + + spareSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { spareEntry 11 } + + spareShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { spareEntry 12 } + + spareBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { spareEntry 13 } + + sparePool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this + entry belongs to." + ::= { spareEntry 14 } + + spareSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { spareEntry 15 } + + spareDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { spareEntry 16 } + + spareDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { spareEntry 17 } + + spareDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { spareEntry 18 } + + spareDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { spareEntry 19 } + + spareDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { spareEntry 20 } + + spareDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { spareEntry 21 } + + -- Disk summaries + + diskSummary OBJECT IDENTIFIER ::= { raid 4 } + + diskTotalCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of disks on the system." + + ::= { diskSummary 1 } + + diskActiveCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are currently active, + including parity disks." + + ::= { diskSummary 2 } + + diskReconstructingCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are + currently being reconstructed." + + ::= { diskSummary 3 } + + diskReconstructingParityCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of parity disks which are + currently being reconstructed." + + ::= { diskSummary 4 } + + diskVerifyingParityCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of parity disks which are + currently being verified." + + ::= { diskSummary 5 } + + diskScrubbingCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are + currently being scrubbed." + + ::= { diskSummary 6 } + + diskFailedCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are + currently broken." + + ::= { diskSummary 7 } + + diskSpareCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of available spare disks." + + ::= { diskSummary 8 } + + diskAddingSpareCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of spare disks which are + currently being added into a RAID group." + + ::= { diskSummary 9 } + + diskFailedMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If diskFailedCount is non-zero, this is + a string describing the failed disk or + disks. Each failed disk is described with + a sentence like + + Parity disk in volume vol0, RAID group 1, failed. + + or + + Disk on adapter 8a, shelf 1, bay 0, failed." + + ::= { diskSummary 10 } + + diskPrefailedCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks which are prefailed and marked + for rapid raid recovery." + + ::= { diskSummary 11 } + + raidVNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the raidVTable table. + This is the number of volumes in the system." + + ::= { raid 5 } + + spareNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the spareTable table." + + ::= { raid 6 } + + otherDiskNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the otherDiskTable table." + + ::= { raid 7 } + + raidPNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the raidPTable table. + This is the number of volumes in the system." + + ::= { raid 8 } + + -- Other (out-of-service) disk table. + + otherDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF OtherDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display out-of-service disk configuration information." + ::= { raid 9 } + + otherDiskEntry OBJECT-TYPE + SYNTAX OtherDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display configuration information for + the referenced disk drive." + INDEX { otherDiskIndex } + ::= { otherDiskTable 1 } + + OtherDiskEntry ::= + SEQUENCE { + otherDiskIndex + Integer32, + otherDiskDiskName + DisplayString, + otherDiskStatus + Integer32, + otherDiskDiskId + Integer32, + otherDiskScsiAdapter + DisplayString, + otherDiskScsiId + Integer32, + otherDiskTotalMb + Integer32, + otherDiskTotalBlocks + Integer32, + otherDiskDiskPort + Integer32, + otherDiskSecondaryDiskName + DisplayString, + otherDiskSecondaryDiskPort + Integer32, + otherDiskShelf + Integer32, + otherDiskBay + Integer32, + otherDiskPool + DisplayString, + otherDiskSectorSize + Integer32, + otherDiskSerialNumber + DisplayString, + otherDiskVendor + DisplayString, + otherDiskModel + DisplayString, + otherDiskFirmwareRevision + DisplayString, + otherDiskRPM + DisplayString, + otherDiskType + DisplayString + } + + otherDiskIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive in the list of out-of-service + diskdrives. Out-of-service disks include all disks + that are not in service in a raid group or available + as a spare disk." + ::= { otherDiskEntry 1 } + + otherDiskDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk + drive." + ::= { otherDiskEntry 2 } + + otherDiskStatus OBJECT-TYPE + SYNTAX INTEGER { + broken(1), + bypassed(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced disk drive." + ::= { otherDiskEntry 3 } + + otherDiskDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { otherDiskEntry 4 } + + otherDiskScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { otherDiskEntry 5 } + + otherDiskScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { otherDiskEntry 6 } + + otherDiskTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { otherDiskEntry 7 } + + otherDiskTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { otherDiskEntry 8 } + + otherDiskDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { otherDiskEntry 9 } + + otherDiskSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { otherDiskEntry 10 } + + otherDiskSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { otherDiskEntry 11 } + + otherDiskShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { otherDiskEntry 12 } + + otherDiskBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { otherDiskEntry 13 } + + otherDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this + entry belongs to." + ::= { otherDiskEntry 14 } + + otherDiskSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { otherDiskEntry 15 } + + otherDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { otherDiskEntry 16 } + + otherDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { otherDiskEntry 17 } + + otherDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { otherDiskEntry 18 } + + otherDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { otherDiskEntry 19 } + + otherDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { otherDiskEntry 20 } + + otherDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { otherDiskEntry 21 } + + -- Multivolume and multiplex raidTable. + + raidPTable OBJECT-TYPE + SYNTAX SEQUENCE OF RaidPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information." + ::= { raid 10 } + + raidPEntry OBJECT-TYPE + SYNTAX RaidPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display RAID configuration information for + the referenced volume, plex, raid group, and disk drive." + INDEX { raidPVol, raidPPlex, raidPGroup, raidPIndex } + ::= { raidPTable 1 } + + RaidPEntry ::= + SEQUENCE { + raidPIndex + Integer32, + raidPStatus + Integer32, + raidPVol + Integer32, + raidPPlex + Integer32, + raidPGroup + Integer32, + raidPPlexNumber + Integer32, + raidPGroupNumber + Integer32, + raidPDiskNumber + Integer32, + raidPPlexName + DisplayString, + raidPDiskName + DisplayString, + raidPDiskPort + Integer32, + raidPSecondaryDiskName + DisplayString, + raidPSecondaryDiskPort + Integer32, + raidPScsiAdapter + DisplayString, + raidPScsiId + Integer32, + raidPDiskId + Integer32, + raidPShelf + Integer32, + raidPBay + Integer32, + raidPSectorSize + Integer32, + raidPUsedMb + Integer32, + raidPUsedBlocks + Integer32, + raidPTotalMb + Integer32, + raidPTotalBlocks + Integer32, + raidPCompletionPerCent + Integer32, + raidPDiskSerialNumber + DisplayString, + raidPDiskVendor + DisplayString, + raidPDiskModel + DisplayString, + raidPDiskFirmwareRevision + DisplayString, + raidPDiskRPM + DisplayString, + raidPDiskType + DisplayString, + raidPDiskPool + DisplayString, + raidPDiskCopyDestDiskName + DisplayString + } + + raidPIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this disk drive within + the given volume and RAID group." + ::= { raidPEntry 1 } + + raidPStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + reconstructionInProgress(2), + parityReconstructionInProgress(3), + parityVerificationInProgress(4), + scrubbingInProgress(5), + failed(6), + prefailed(9), + offline(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the referenced disk drive." + ::= { raidPEntry 2 } + + raidPVol OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the volume that this entry + belongs to. The first volume is '1'." + ::= { raidPEntry 3 } + + raidPPlex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the plex that this entry + belongs to. The first plex is '1'." + ::= { raidPEntry 4 } + + raidPGroup OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the RAID group within the + given plex that this entry belongs to. The + first RAID group is '1'." + ::= { raidPEntry 5 } + + raidPPlexNumber OBJECT-TYPE + SYNTAX Integer32 (1..2) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of plexes within this volume. + This number is always 1 or 2." + ::= { raidPEntry 6 } + + raidPGroupNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RAID groups within this plex." + ::= { raidPEntry 7 } + + raidPDiskNumber OBJECT-TYPE + SYNTAX Integer32 (1..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disks within this RAID group." + ::= { raidPEntry 8 } + + raidPPlexName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the plex that this entry + belongs to. A plex name can be anything, but + is usually a string like 'plex0' or 'plex1'." + ::= { raidPEntry 9 } + + raidPDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk drive." + ::= { raidPEntry 10 } + + raidPDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidPEntry 11 } + + raidPSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { raidPEntry 12 } + + raidPSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { raidPEntry 13 } + + raidPScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { raidPEntry 14 } + + raidPScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { raidPEntry 15 } + + raidPDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { raidPEntry 16 } + + raidPShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { raidPEntry 17 } + + raidPBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { raidPEntry 18 } + + + raidPSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { raidPEntry 19 } + + raidPUsedMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes currently in use on + the referenced disk drive." + ::= { raidPEntry 20 } + + raidPUsedBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks currently in use on + the referenced disk drive." + ::= { raidPEntry 21 } + + raidPTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { raidPEntry 22 } + + raidPTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { raidPEntry 23 } + + raidPCompletionPerCent OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "In the case when rapid raid recovery, disk copy, + reconstruction or adding a spare, verification or + scrubbing is in progress, the percent of such copy, + reconstruction, verification or scrubbing that has + been completed on the referenced disk drive." + ::= { raidPEntry 24 } + + raidPDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { raidPEntry 25 } + + raidPDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { raidPEntry 26 } + + raidPDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { raidPEntry 27 } + + raidPDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { raidPEntry 28 } + + raidPDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { raidPEntry 29 } + + raidPDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { raidPEntry 30 } + + raidPDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this entry + belongs to." + ::= { raidPEntry 31 } + + raidPDiskCopyDestDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When raidPStatus value is prefailed, this string identifies + the name of the disk which is the copy target of the + referenced prefailed disk." + ::= { raidPEntry 32 } + + -- RAID Plex table. + + plexTable OBJECT-TYPE + SYNTAX SEQUENCE OF PlexEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing plex specific information." + ::= {raid 11} + + -- display plexes + + plexEntry OBJECT-TYPE + SYNTAX PlexEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report on file system plexes." + INDEX { plexIndex } + ::= { plexTable 1 } + + PlexEntry ::= + SEQUENCE { + plexIndex + Integer32, + plexName + DisplayString, + plexVolName + DisplayString, + plexStatus + Integer32, + plexPercentResyncing + Integer32 + } + + plexIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced plex." + ::= { plexEntry 1 } + + plexName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the plex." + ::= { plexEntry 2 } + + plexVolName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The volume to which this plex belongs." + ::= { plexEntry 3 } + + plexStatus OBJECT-TYPE + SYNTAX INTEGER { + offline(1), + resyncing(2), + online(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the plex." + ::= { plexEntry 4 } + + plexPercentResyncing OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If the plex is resyncing, the percent + completion of the resync." + ::= { plexEntry 5 } + + --out-of-dateDisks + + outOfDateDiskCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of entries in the outOfDateDiskTable table." + + ::= { raid 12 } + + -- out-of-date disk table. + + outOfDateDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF OutOfDateDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display out-of-date disk information." + ::= { raid 13 } + + outOfDateDiskEntry OBJECT-TYPE + SYNTAX OutOfDateDiskEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display information for the referenced + out-of-date disk." + INDEX { outOfDateDiskIndex } + ::= { outOfDateDiskTable 1 } + + OutOfDateDiskEntry ::= + SEQUENCE { + outOfDateDiskIndex + Integer32, + outOfDateDiskDiskName + DisplayString, + outOfDateDiskDiskId + Integer32, + outOfDateDiskScsiAdapter + DisplayString, + outOfDateDiskScsiId + Integer32, + outOfDateDiskTotalMb + Integer32, + outOfDateDiskTotalBlocks + Integer32, + outOfDateDiskDiskPort + Integer32, + outOfDateDiskSecondaryDiskName + DisplayString, + outOfDateDiskSecondaryDiskPort + Integer32, + outOfDateDiskShelf + Integer32, + outOfDateDiskBay + Integer32, + outOfDateDiskPool + DisplayString, + outOfDateDiskSectorSize + Integer32, + outOfDateDiskSerialNumber + DisplayString, + outOfDateDiskVendor + DisplayString, + outOfDateDiskModel + DisplayString, + outOfDateDiskFirmwareRevision + DisplayString, + outOfDateDiskRPM + DisplayString, + outOfDateDiskType + DisplayString + } + + outOfDateDiskIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced disk drive in the list of out-of-date + diskdrives." + ::= { outOfDateDiskEntry 1 } + + outOfDateDiskDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the referenced disk + drive." + ::= { outOfDateDiskEntry 2 } + + outOfDateDiskDiskId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk identifier for the referenced disk + drive." + ::= { outOfDateDiskEntry 3 } + + outOfDateDiskScsiAdapter OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier of the SCSI adapter for the + referenced disk drive." + ::= { outOfDateDiskEntry 4 } + + outOfDateDiskScsiId OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The identifier for the referenced disk drive + on the referenced SCSI adapter." + ::= { outOfDateDiskEntry 5 } + + outOfDateDiskTotalMb OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of MBytes physically available + on the referenced disk drive." + ::= { outOfDateDiskEntry 6 } + + outOfDateDiskTotalBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Blocks physically available + on the referenced disk drive." + ::= { outOfDateDiskEntry 7 } + + outOfDateDiskDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the primary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { outOfDateDiskEntry 8 } + + outOfDateDiskSecondaryDiskName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name identifying the secondary path to + the referenced disk drive." + ::= { outOfDateDiskEntry 9 } + + outOfDateDiskSecondaryDiskPort OBJECT-TYPE + SYNTAX INTEGER { + portA(1), + portB(2), + portSingle(3), + portNone(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that indicates which port of the + disk is being used by the secondary path to the disk. + For a dual-ported disk, values of portA and portB + indicate which port is being used. + If the disk only has a single port, the value + is portSingle, and if the port is not active, + the value is portNone." + ::= { outOfDateDiskEntry 10 } + + outOfDateDiskShelf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the shelf where the disk + is located." + ::= { outOfDateDiskEntry 11 } + + outOfDateDiskBay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number identifying the disk bay within + the shelf where the disk is located." + ::= { outOfDateDiskEntry 12 } + + outOfDateDiskPool OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A name that identifies the disk pool that this + entry belongs to." + ::= { outOfDateDiskEntry 13 } + + outOfDateDiskSectorSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that specifies bytes per sector + for this entry. Values are '512' or '520'." + ::= { outOfDateDiskEntry 14 } + + outOfDateDiskSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Serial number of the referenced disk drive." + ::= { outOfDateDiskEntry 15 } + + outOfDateDiskVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor of the referenced disk drive." + ::= { outOfDateDiskEntry 16 } + + outOfDateDiskModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model string of the referenced disk drive." + ::= { outOfDateDiskEntry 17 } + + outOfDateDiskFirmwareRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Firmware revision number of the referenced disk drive." + ::= { outOfDateDiskEntry 18 } + + outOfDateDiskRPM OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "RPM of the referenced disk drive." + ::= { outOfDateDiskEntry 19 } + + outOfDateDiskType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Interface type of the referenced disk drive. e.g SCSI, + or ATA." + ::= { outOfDateDiskEntry 20 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the CIFS group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + cifsOptions OBJECT IDENTIFIER ::= { cifs 1 } + + cifsInfo OBJECT IDENTIFIER ::= { cifs 2 } + + cifsStats OBJECT IDENTIFIER ::= { cifs 3 } + + cifsMisc OBJECT IDENTIFIER ::= { cifs 4 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsOptions group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the CIFS protocol is active on the + filer." + ::= { cifsOptions 1 } + + cifsIsLoginEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether new CIFS connections to the filer + are currently allowed." + ::= { cifsOptions 2 } + + + cifsHostName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The host name used by the CIFS protocol on this + filer." + ::= { cifsOptions 3 } + + + cifsAltNames OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Alternate names recognized by the filer." + ::= { cifsOptions 4 } + + + cifsDomainJoined OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Has the filer joined an NT domain? + If this value is true, cifsDomainName + will contain the name of the domain. + Otherwise, the filer may have joined + a WorkGroup, and cifsWGName will contain + the name of the WorkGroup. " + ::= { cifsOptions 5 } + + + cifsDomainName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The domain name used by the CIFS + protocol on this filer." + ::= { cifsOptions 6 } + + + cifsWGName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The workgroup name (if any) used by + the CIFS protocol on this filer." + ::= { cifsOptions 7 } + + + cifsDCName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the Domain Controller used by + this filer to authenticate users and file + requests." + ::= { cifsOptions 8 } + + + cifsIsWinsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if WINS name resolution is enabled + on the filer." + ::= { cifsOptions 9 } + + + cifsWinsServers OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name(s) of the WINS servers registered + with the filer." + ::= { cifsOptions 10 } + + + cifsSecurityModel OBJECT-TYPE + SYNTAX INTEGER { + unix(1), + pc(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Which type of authentication semantics + (Unix or PC) are in use for PC access to + Unix files on the filer. If Unix semantics + are in use, no ACL on a Unix file is ever + checked. If PC semantics are in use, the + share level ACL on the share containing the + file is used for authentication instead of + the group portion of the permissions on + the file." + ::= { cifsOptions 11 } + + + cifsPCGenericUser OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the generic PC user, if any. This + username is used for CIFS access by Unix users + who have not authenticated through CIFS or NT." + ::= { cifsOptions 12 } + + + cifsOplocksEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether oplocks are enabled on the filer." + ::= { cifsOptions 15 } + + + cifsLevel2OplocksEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether level 2 oplocks are enabled on the filer." + ::= { cifsOptions 16 } + + + cifsPreserveCase OBJECT-TYPE + SYNTAX INTEGER { + noPreserveCase(1), + preserveCase(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this option is set to preserve-case + (the default), all filename references + will be case preserving. Otherwise, + they are forced to lowercase." + ::= { cifsOptions 17 } + + + cifsSymlinksEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this option is enabled, CIFS accesses will + follow symbolic links using Unix semantics." + ::= { cifsOptions 19 } + + + cifsSymlinkCycleProtEnabled OBJECT-TYPE + SYNTAX INTEGER { + notEnabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If this option is enabled, CIFS accesses will + through symbolic links will check for cycles + in the link graph." + ::= { cifsOptions 20 } + + + cifsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the CIFS protocol is licensed on the + filer." + ::= { cifsOptions 21 } + + cifsPerClientStatsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True when cifs.per_client_stats are + being collected." + ::= { cifsOptions 22 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsInfo group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsStatus OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Encoding of CIFS startup state on the filer." + ::= { cifsInfo 1 } + + cifsNeedPW OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Does the administrative password need + to be set before start?" + ::= { cifsInfo 2 } + + cifsTimeToShutdown OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time remaining until CIFS shutdown" + ::= { cifsInfo 3 } + + + cifsMaxConnections OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of simultaneous CIFS + connections allowed on the filer." + ::= { cifsInfo 4 } + + cifsMaxTrees OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of simultaneous CIFS + trees allowed on the filer." + ::= { cifsInfo 5 } + + cifsMaxShares OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of simultaneous CIFS + shares allowed on the filer." + ::= { cifsInfo 6 } + + cifsMaxFiles OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of concurrently open CIFS + files and directories allowed on the filer." + ::= { cifsInfo 7 } + + + cifsMaxACLs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object is deprecated, and always has a + value of 0." + ::= { cifsInfo 8 } + + + cifsConnectedUsers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of CIFS users on the + filer." + ::= { cifsInfo 9 } + + cifsNTrees OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of CIFS trees on the + filer." + ::= { cifsInfo 10 } + + cifsNShares OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of CIFS shares on the + filer." + ::= { cifsInfo 11 } + + cifsNSessions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of active CIFS sessions + on the filer." + ::= { cifsInfo 12 } + + cifsNOpenFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open CIFS files and directories + on the filer." + ::= { cifsInfo 13 } + + cifsNOpenDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open CIFS directories on the + filer." + ::= { cifsInfo 14 } + + + cifsNOplockBreakWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open files waiting for oplock + break messages to be sent." + ::= { cifsInfo 16 } + + + cifsNOplockAckWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of open files waiting for + acknowledgements to oplock break messages." + ::= { cifsInfo 17 } + + cifsSuspectOps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A smoothed average of the number of events + per second of the type frequently seen + during virus attacks." + ::= { cifsInfo 18 } + + cifsNDomainControllers OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Domain Controllers found." + ::= { cifsInfo 19 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsStats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains cifs statistics since the last + -- time the statistics were cleared + + cifsServ OBJECT IDENTIFIER ::= { cifsStats 1 } + + -- cifsPerClient OBJECT IDENTIFIER ::= { cifsStats 2 } + + -- no per-client stats are kept as of the 5.3 release + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsServ group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for CIFS + -- status, and calls processed since the last + -- time the statistics were cleared + + cifsOps OBJECT IDENTIFIER ::= { cifsServ 1 } + + cifsReqs OBJECT IDENTIFIER ::= { cifsServ 2 } + + cifsPercent OBJECT IDENTIFIER ::= { cifsServ 3 } + + cifsObsReqs OBJECT IDENTIFIER ::= { cifsServ 4 } + + cifsObsPercent OBJECT IDENTIFIER ::= { cifsServ 5 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsOps group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsTotalOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS operations done by the filer, + since the last time the statistics were cleared." + ::= { cifsOps 1 } + + cifsTotalCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS calls received, since + the last time the statistics were cleared. This + is the number of cifsTotalOps plus the number of + miscellaneous operations that are not logged + which were received in that time period." + ::= { cifsOps 2 } + + cifsBadCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of received CIFS calls rejected, + since the last time the statistics were cleared." + ::= { cifsOps 3 } + + + cifsGetAttrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS operations to get + the attributes on a file or directory, since + the last time the statistics were reset." + ::= { cifsOps 4 } + + + cifsReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS Read operations on + a file or directory, since the last time the + statistics were reset." + ::= { cifsOps 5 } + + + cifsWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of CIFS write operations on + a file or directory, since the last time the + statistics were reset." + ::= { cifsOps 6 } + + + cifsLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS file locking requests + since the last time the statistics were reset." + ::= { cifsOps 7 } + + + cifsOpens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of calls, via CIFS, to open + a file or directory, since the last time + the statistics were reset." + ::= { cifsOps 8 } + + + cifsDirOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS directory operations, + since the last time the statistics were reset." + ::= { cifsOps 9 } + + + cifsOthers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of CIFS operations, since the + last time the statistics were reset, that + don't fall into the categories for GetAttr, + Read, Write, Lock, DirOp and Open." + ::= { cifsOps 10 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsReqs group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for the number of + -- calls received for each CIFS SMB request + -- since the last time the statistics were cleared + + smbNegProts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NEGOTIATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 1 } + + smbSessionSetupAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SESSION_SETUP_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 2 } + + smbLogoffAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOGOFF_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 3 } + + smbTreeConnectAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 4 } + + smbTreeDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_DISCONNECT requests, + since the last time the statistics were cleared." + ::= { cifsReqs 5 } + + smbTrans2QueryFSInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FS_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 6 } + + smbEchos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB ECHO requests, + since the last time the statistics were cleared." + ::= { cifsReqs 7 } + + smbNTCancels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests, since the + last time the statistics were cleared." + ::= { cifsReqs 8 } + + smbNTCreateAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CREATE_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 9 } + + smbNTTransactCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_CREATE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 10 } + + smbCreateTemporaries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB CREATE_TEMPORARY operation is not presently + supported, so this value should always be zero." + ::= { cifsReqs 11 } + + smbReadAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 12 } + + smbWriteAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 13 } + + smbLockingAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCKING_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsReqs 14 } + + smbSeeks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEEK requests, + since the last time the statistics were cleared." + ::= { cifsReqs 15 } + + smbFlushes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FLUSH requests, + since the last time the statistics were cleared." + ::= { cifsReqs 16 } + + smbCloses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 17 } + + smbDeletes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE requests, + since the last time the statistics were cleared." + ::= { cifsReqs 18 } + + smbRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB RENAME requests, + since the last time the statistics were cleared." + ::= { cifsReqs 19 } + + smbMoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB MOVE request is not presently supported, + so this value should always be zero." + ::= { cifsReqs 20 } + + smbCopies OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB COPY request is not presently supported, + so this value should always be zero." + ::= { cifsReqs 21 } + + smbTrans2QueryPathInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_PATH_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 22 } + + smbTrans2QueryFileInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FILE_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 23 } + + smbTrans2SetPathInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_PATH_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 24 } + + smbTrans2SetFileInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_FILE_INFORMATION + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 25 } + + smbDeleteDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE_DIRECTORY requests, + since the last time the statistics were cleared." + ::= { cifsReqs 26 } + + smbCheckDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB COPY request is not presently supported, + so this value should always be zero." + ::= { cifsReqs 27 } + + smbTrans2FindFirst2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_FIRST2 requests, + since the last time the statistics were cleared." + ::= { cifsReqs 28 } + + smbTrans2FindNext2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_NEXT2 requests, + since the last time the statistics were cleared." + ::= { cifsReqs 29 } + + smbFindClose2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FIND_CLOSE2 requests, + since the last time the statistics were cleared." + ::= { cifsReqs 30 } + + smbNTTransactNotifyChgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_NOTIFY_CHANGE + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 31 } + + smbTrans2GetDFSReferrals OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB TRANS2_GET_DFS_REFERRAL request is + not presently supported, so this value should + always be zero." + ::= { cifsReqs 32 } + + smbTrans2ReportDFSIncs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB TRANS2_REPORT_DFS_INCONSISTENCY request is + not presently supported, so this value should + always be zero." + ::= { cifsReqs 33 } + + smbOpenPrintFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB OPEN_PRINT_FILE request is not supported, + so this value should always be zero." + ::= { cifsReqs 34 } + + smbGetPrintQueues OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB GET_PRINT_QUEUE request is not supported, + so this value should always be zero." + ::= { cifsReqs 35 } + + smbNTTransactIoctls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_IOCTL requests, + since the last time the statistics were cleared." + ::= { cifsReqs 36 } + + smbNTTransactQuerySecDescs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_QUERY_SECURITY_DESC + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 37 } + + smbNTTransactSetSecDescs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_SET_SECURITY_DESC + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 38 } + + + smbTrans2CreateDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_CREATE_DIRECTORY + requests, since the last time the statistics + were cleared." + ::= { cifsReqs 39 } + + + smbNTCancelCNs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + change notifications since the last time + the statistics were cleared." + ::= { cifsReqs 40 } + + smbNTCancelOthers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + operations other than change notifications, + since the last time the statistics + were cleared." + ::= { cifsReqs 41 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsObsReqs group + -- (Obsolete SMB requests) + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + obsSmbClosePrintFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE_PRINT_FILE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 1 } + + obsSmbCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 2 } + + obsSmbCreateDirs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_DIRECTORY requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 3 } + + obsSmbCreateNews OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_NEW requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 4 } + + obsSmbLockAndReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_AND_READ requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 5 } + + obsSmbLockByteRanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_BYTE_RANGE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 6 } + + obsSmbOpens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 7 } + + obsSmbOpenAndXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN_ANDX requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 8 } + + obsSmbProcessExits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB PROCESS_EXIT requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 9 } + + obsSmbQueryInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 10 } + + obsSmbQueryInfo2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION2 requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 11 } + + obsSmbReads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 12 } + + obsSmbReadMPXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB READ_MPX request is not supported, + so this value should always be zero." + ::= { cifsObsReqs 13 } + + obsSmbReadRaws OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_RAW requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 14 } + + obsSmbSearchs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEARCH requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 15 } + + obsSmbSetInfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 16 } + + obsSmbSetInfo2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION2 requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 17 } + + obsSmbQueryInfoDisks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION_DISK + requests, since the last time the statistics + were cleared." + ::= { cifsObsReqs 18 } + + obsSmbTrans2Open2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_OPEN2 requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 19 } + + obsSmbTreeConnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 20 } + + obsSmbUnlockByteRanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB UNLOCK_BYTE_RANGE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 21 } + + obsSmbWrites OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 22 } + + obsSmbWriteAndUnlocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_UNLOCK requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 23 } + + obsSmbWriteAndCloses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_CLOSE requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 24 } + + obsSmbWriteMPXs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB WRITE_MPX request is not supported, + so this value should always be zero." + ::= { cifsObsReqs 25 } + + obsSmbWritePrintFiles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMB WRITE_PRINT_FILE request is not supported, + so this value should always be zero." + ::= { cifsObsReqs 26 } + + obsSmbWriteRaws OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_RAW requests, + since the last time the statistics were cleared." + ::= { cifsObsReqs 27 } + + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsPercent group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for the number of + -- calls received for each CIFS SMB request + -- as a percentage of total CIFS calls received, + -- since the last time the statistics were cleared + + smbNegProtPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NEGOTIATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 1 } + + smbSessionSetupAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SESSION_SETUP_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 2 } + + smbLogoffAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOGOFF_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 3 } + + smbTreeConnectAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 4 } + + smbTreeDisconnectAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_DISCONNECT_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 5 } + + smbTrans2QueryFSInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FS_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 6 } + + smbEchoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB ECHO requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 7 } + + smbNTCancelPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 8 } + + smbCreateAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CREATE_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 9 } + + smbTransactCreatePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_CREATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 10 } + + smbCreateTemporaryPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_TEMPORARY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 11 } + + smbReadAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 12 } + + smbWriteAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 13 } + + smbLockingAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCKING_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 14 } + + smbSeekPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEEK requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 15 } + + smbFlushPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FLUSH requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 16 } + + smbClosePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 17 } + + smbDeletePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 18 } + + smbRenamePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB RENAME requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 19 } + + smbMovePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB MOVE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 20 } + + smbCopyPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB COPY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 21 } + + smbTrans2QueryPathInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_PATH_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 22 } + + smbTrans2QueryFileInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_QUERY_FILE_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 23 } + + smbTrans2SetPathInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_PATH_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 24 } + + smbTrans2SetFileInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_SET_FILE_INFORMATION + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 25 } + + smbDeleteDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB DELETE_DIRECTORY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 26 } + + smbCheckDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CHECK_DIRECTORY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 27 } + + + smbTrans2FindFirst2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_FIRST2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 28 } + + smbTrans2FindNext2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_FIND_NEXT2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 29 } + + smbFindClose2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB FIND_CLOSE2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 30 } + + smbNTTransactNotifyChgPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_NOTIFY_CHANGE + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 31 } + + smbTrans2GetDFSReferralPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_GET_DFS_REFERRAL + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 32 } + + smbTrans2ReportDFSIncPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_REPORT_DFS_INCONSISTENCY + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 33 } + + smbOpenPrintFilePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN_PRINT_FILE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 34 } + + smbGetPrintQueuePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB GET_PRINT_QUEUE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 35 } + + smbNTTransactIoctlPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_IOCTL requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsPercent 36 } + + smbNTTransactQuerySecDescPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_QUERY_SECURITY_DESC + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 37 } + + smbNTTransactSetSecDescPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_TRANSACT_SET_SECURITY_DESC + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 38 } + + + smbTrans2CreateDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_CREATE_DIRECTORY + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsPercent 39 } + + + smbNTCancelCNPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + change notifications, as a percentage of + total CIFS calls received, since the last + time the statistics were cleared." + ::= { cifsPercent 40 } + + smbNTCancelOtherPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB NT_CANCEL requests against + calls other than change notifications, as + a percentage of total CIFS calls received, + since the last time the statistics were + cleared." + ::= { cifsPercent 41 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the obsPct group + -- (Obsolete SMB requests) + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + obsSmbClosePrintFilePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CLOSE_PRINT_FILE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 1 } + + obsSmbCreatePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 2 } + + obsSmbCreateDirPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_DIRECTORY requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 3 } + + obsSmbCreateNewPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB CREATE_NEW requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 4 } + + obsSmbLockAndReadPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_AND_READ requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 5 } + + obsSmbLockByteRangePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB LOCK_BYTE_RANGE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 6 } + + obsSmbOpenPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 7 } + + obsSmbOpenAndXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB OPEN_ANDX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 8 } + + obsSmbProcessExitPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB PROCESS_EXIT requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 9 } + + obsSmbQueryInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 10 } + + obsSmbQueryInfo2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 11 } + + obsSmbReadPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 12 } + + obsSmbReadMPXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_MPX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 13 } + + obsSmbReadRawPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB READ_RAW requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 14 } + + obsSmbSearchPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SEARCH requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 15 } + + obsSmbSetInfoPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 16 } + + obsSmbSetInfo2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB SET_INFORMATION2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 17 } + + obsSmbQueryInfoDiskPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB QUERY_INFORMATION_DISK + requests, as a percentage of total CIFS calls + received, since the last time the statistics + were cleared." + ::= { cifsObsPercent 18 } + + obsSmbTrans2Open2Pct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TRANS2_OPEN2 requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 19 } + + obsSmbTreeConnectPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB TREE_CONNECT requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 20 } + + obsSmbUnlockByteRangePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB UNLOCK_BYTE_RANGE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 21 } + + obsSmbWritePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 22 } + + obsSmbWriteAndUnlockPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_UNLOCK requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 23 } + + obsSmbWriteAndClosePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_AND_CLOSE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 24 } + + obsSmbWriteMPXPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_MPX requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 25 } + + obsSmbWritePrintFilePct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_PRINT_FILE requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 26 } + + obsSmbWriteRawPct OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SMB WRITE_RAW requests, + as a percentage of total CIFS calls received, + since the last time the statistics were cleared." + ::= { cifsObsPercent 27 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cifsMisc group + -- These statistics are primarily of interest to + -- NetApp developers. + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + cifsCancelLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 1 } + + cifsWaitLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 2 } + + cifsCopyToAligns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 3 } + + cifsAlignedSmalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 4 } + + cifsAlignedLarges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 5 } + + cifsAlignedSmallRels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 6 } + + cifsAlignedLargeRels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 7 } + + cifsMbufWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 8 } + + cifsNbtWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 9 } + + cifsCwaWaits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 10 } + + cifsMultipleVCs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 11 } + + cifsPDCUpcalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 12 } + + cifsQueuedWriteRaws OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 13 } + + cifsNBTDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 14 } + + cifsSMBDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 15 } + + cifsDupDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 16 } + + cifsOpLkBatchToL2s OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 17 } + + cifsOpLkBatchToNones OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 18 } + + cifsOpLkL2ToNones OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 19 } + + cifsOpLkNoBreakAcks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 20 } + + cifsOpLkIgnoredAcks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 21 } + + cifsOpLkMultiWaiters OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 22 } + + cifsSharingErrorRetries OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 23 } + + cifsOpLkWaiterTimedOuts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 24 } + + cifsOpLkDelayedBreaks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 25 } + + cifsOpLkEarlyNFSs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 26 } + + cifsOpLkNFSWaiteds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 27 } + + cifsMaxNFSBkWaiterCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Undocumented" + ::= { cifsMisc 28 } + + cifsClearTextPasswd OBJECT-TYPE + SYNTAX INTEGER { + no(1), + yes(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates whether the cifs clients are + using clear text passwords when authenticating + with the filer. If cifsDomainJoined is false and + this variable is also false, then the filer is + using NT Security from a local user list." + ::= { cifsMisc 29 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncOptions OBJECT IDENTIFIER ::= { netcache 1 } + + ncInfo OBJECT IDENTIFIER ::= { netcache 2 } + + ncStats OBJECT IDENTIFIER ::= { netcache 3 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Netcache is enabled on this system." + ::= { ncOptions 1 } + + ncIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Netcache is licensed on this system." + ::= { ncOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the dns options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncDnsOptions OBJECT IDENTIFIER ::= { ncOptions 3 } + + ncDnsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Domain Name System (DNS) + is enabled on this system." + ::= { ncDnsOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the http options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncHttpOptions OBJECT IDENTIFIER ::= { ncOptions 4 } + + ncHttpIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether HTTP is enabled on this system." + ::= { ncHttpOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the nntp options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNntpOptions OBJECT IDENTIFIER ::= { ncOptions 5 } + + ncNntpIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NNTP is enabled on this system." + ::= { ncNntpOptions 1 } + + ncNntpIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NNTP is licensed on this system." + ::= { ncNntpOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the streaming options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncStreamingOptions OBJECT IDENTIFIER ::= { ncOptions 6 } + + ncStreamingMmsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Media Services (MMS) + is enabled on this system." + ::= { ncStreamingOptions 1 } + + ncStreamingMmsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Windows Media Service (MMS) + is licensed on this system." + ::= { ncStreamingOptions 2 } + + ncStreamingMmsProIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Windows Media Service Pro (MMS) + is licensed on this system." + ::= { ncStreamingOptions 3 } + + ncStreamingRtspIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Real Time Streaming Protocol (RTSP) + is enabled on this system." + ::= { ncStreamingOptions 4 } + + ncStreamingQuickTimeIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether QuickTime is licensed on this system." + ::= { ncStreamingOptions 5 } + + ncStreamingRealIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Real Media streaming is licensed on + this system." + ::= { ncStreamingOptions 6 } + + ncStreamingMmsUltraIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Microsoft Windows Media Service Ultra (MMS) + is licensed on this system." + ::= { ncStreamingOptions 7 } + + ncStreamingRealProIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Real Media Pro streaming is licensed on + this system." + ::= { ncStreamingOptions 8 } + + ncStreamingRealUltraIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Real Media Ultra streaming is licensed on + this system." + ::= { ncStreamingOptions 9 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the icap options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncIcapOptions OBJECT IDENTIFIER ::= { ncOptions 7 } + + ncIcapIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether ICAP v0.95 is enabled on this system." + ::= { ncIcapOptions 1 } + + ncIcapIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether ICAP is licensed on this system." + ::= { ncIcapOptions 2 } + + ncIcapv1IsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether ICAP v1.0 is enabled on this system." + ::= { ncIcapOptions 3 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the grm options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncGrmOptions OBJECT IDENTIFIER ::= { ncOptions 8 } + + ncGrmServerOptions OBJECT IDENTIFIER ::= { ncGrmOptions 1 } + + ncGrmAgentOptions OBJECT IDENTIFIER ::= { ncGrmOptions 2 } + + ncGrmServerIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Server + is enabled on this system." + ::= { ncGrmServerOptions 1 } + + ncGrmServerIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Server + is licensed on this system." + ::= { ncGrmServerOptions 2 } + + ncGrmAgentIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Agent + enabled on this system." + ::= { ncGrmAgentOptions 1 } + + ncGrmAgentIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the Global Request Manager (GRM) Agent + is licensed on this system." + ::= { ncGrmAgentOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the content director options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncCdOptions OBJECT IDENTIFIER ::= { ncOptions 9 } + + ncCdIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether Content Director is enabled on this system." + ::= { ncCdOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the https options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncHttpsProxyOptions OBJECT IDENTIFIER ::= { ncOptions 10 } + + ncHttpsProxyIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether HTTPS is enabled on this system." + ::= { ncHttpsProxyOptions 1 } + + ncHttpsProxyIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether HTTPS is licensed on this system." + ::= { ncHttpsProxyOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the cms options group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + ncCmsOptions OBJECT IDENTIFIER ::= { ncOptions 11 } + + ncCmsIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether CMS is enabled on this system." + ::= { ncCmsOptions 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache info group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Netcache version string." + ::= { ncInfo 1 } + + ncAdminPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Netcache Admin Port number - this + is the first in the list of admin + ports configured for the NetCache." + ::= { ncInfo 2 } + + + accelmonitor OBJECT IDENTIFIER ::= { ncInfo 3 } + + -- the acceleration monitor group + -- Implementation of the Acceleration Monitor (accelmonitor. + + amNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of entries in the acceleration monitor table." + ::= { accelmonitor 1 } + + amMonitor OBJECT-TYPE + SYNTAX INTEGER { + togglea(1), + toggleb(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Variable for user defined SNMP traps to monitor whether there has been a status change of any of the acceleration + servers that netcache is probing." + ::= { accelmonitor 2 } + + amMonitorString OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Used in conjunction with amMonitor. This returns a string + in format of: 'IP:port status' which reports the status + of all the servers netcache is accelerating as of last + status change." + ::= { accelmonitor 3 } + + -- accelmonitor table + + -- the Acceleration Monitor table contains information of the + -- the acceleration server, port that we are monitoring and its + -- status. + + amTable OBJECT-TYPE + SYNTAX SEQUENCE OF AmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of acceleration server and port entries. The + number of entries is given by the value of amNumber." + ::= { accelmonitor 4 } + + amEntry OBJECT-TYPE + SYNTAX AmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An acceleration monitor entry contains: the server + IP address, server port and the status." + INDEX { amIndex } + ::= { amTable 1 } + + AmEntry ::= + SEQUENCE { + amIndex + Integer32, + amAddress + IpAddress, + amPort + Integer32, + amStatus + Integer32 + } + + amIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A unique value for each entry in the acceleration monitor + table." + ::= { amEntry 1 } + + amAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of the acceleration server the NetCache + is monitoring." + ::= { amEntry 2 } + + amPort OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The corresponding port on the server that NetCache is + monitoring." + ::= { amEntry 3 } + + amStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + up(2), + down(3), + inactive(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of the service running on the server. + active - in queue but no probes done yet. + up - the server is reachable and responding to probes. + down - the server is unreachable. + inactive - monitoring is disabled." + ::= { amEntry 4 } + + ncLocalConfigChanged OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the local configuration file on NetCache + was changed without using DFM configuration management." + ::= { ncInfo 4 } + + ncLocalConfigVersion OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current cache configuration's version." + ::= { ncInfo 5 } + + grmMonitor OBJECT IDENTIFIER ::= { ncInfo 6 } + + -- the GRM monitor group + -- Implementation of the GRM agent monitor + + grmMonitorToggle OBJECT-TYPE + SYNTAX INTEGER { + togglea(1), + toggleb(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Variable for user defined SNMP traps to monitor whether there has been a status change of any of the GRM + agents reporting to this GRM server." + ::= { grmMonitor 1 } + + grmMonitorString OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Used in conjunction with grmMonitor. This returns a string + in format of: 'IP status.' which reports the status + of all the GRM agents reporting to this GRM server as of last + status change." + ::= { grmMonitor 2 } + + takeoverinfo OBJECT IDENTIFIER ::= { ncInfo 7 } + + -- the takeover information group + -- information same as status.takeover.addrs and + -- status.takeover.mode and status.takeover.partner_status + + takeoverAddrs OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the list of interfaces and their corresponding IP + addresses of the partner NetCache that this appliance has taken over." + ::= { takeoverinfo 1 } + + takeoverMode OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + takingover(2), + takenover(3), + giveback(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current takeover mode of this appliance." + ::= { takeoverinfo 2 } + + takeoverStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + unknown(2), + failed(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates the current status of the takeover partner of + this appliance. up(1) indicates that the takeover partner is + reachable. unknown(2) indicates that an unknown error occured. + failed(3) indicates that the partner has failed, takeoverAddrs + indicates the partner's IP address this appliance has taken + over." + ::= { takeoverinfo 3 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache stats group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncObjectsStored OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of objects stored currently." + ::= { ncStats 1 } + + ncBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes sent to clients" + ::= { ncStats 2 } + + ncBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes received from clients" + ::= { ncStats 3 } + + ncBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes sent to servers" + ::= { ncStats 4 } + + ncBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total bytes received from servers" + ::= { ncStats 5 } + + ncHttp OBJECT IDENTIFIER ::= { ncStats 6 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the http stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncHttpTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP requests so far" + ::= { ncHttp 1 } + + ncHttpHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP requests that resulted in hits so far" + ::= { ncHttp 2 } + + ncHttpMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP requests that resulted in misses so far" + ::= { ncHttp 3 } + + ncHttpServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to HTTP servers (active and idle)" + ::= { ncHttp 4 } + + ncHttpCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to HTTP clients (active and idle)" + ::= { ncHttp 5 } + + ncHttpBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for HTTP requests" + ::= { ncHttp 6 } + + ncHttpObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate HTTP requests" + ::= { ncHttp 7 } + + ncHttpRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time in milliseconds per byte for HTTP requests." + ::= { ncHttp 8 } + + ncHttpAvgRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for all HTTP requests." + ::= { ncHttp 9 } + + ncHttpAvgHitRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP hit requests." + ::= { ncHttp 10 } + + ncHttpAvgMissRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP miss requests." + ::= { ncHttp 11 } + + ncHttpInstAvgRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for all HTTP requests during the last 60 seconds." + ::= { ncHttp 12 } + + + ncHttpInstAvgHitRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP hit requests during the last 60 seconds." + ::= { ncHttp 13 } + + ncHttpInstAvgMissRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Average response time in milliseconds for HTTP miss requests during the last 60 seconds." + ::= { ncHttp 14 } + + ncHttpTotalRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP requests" + ::= { ncHttp 15 } + + ncHttpTotalHitRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP HIT requests" + ::= { ncHttp 16 } + + ncHttpTotalMissRespTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP MISS requests" + ::= { ncHttp 17 } + + ncHttpBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes sent to clients" + ::= { ncHttp 18 } + + ncHttpBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes received from clients" + ::= { ncHttp 19 } + + ncHttpBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes sent to servers" + ::= { ncHttp 20 } + + ncHttpBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total HTTP bytes received from servers" + ::= { ncHttp 21 } + + ncHttpHighTotalRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP requests. + This object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 22 } + + ncHttpLowTotalRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP requests. + This object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 23 } + + ncHttpHighTotalHitRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP HIT requests. + This object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 24 } + + ncHttpLowTotalHitRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP HIT requests. + This object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 25 } + + ncHttpHighTotalMissRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP MISS requests. + This object returns the most significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 26 } + + ncHttpLowTotalMissRespTimes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total fetch time in milliseconds for HTTP MISS requests. + This object returns the least significant 32 bits + of the 64 bit unsigned integer." + ::= { ncHttp 27 } + + ncHttpReqRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Request Rate for HTTP requests" + ::= { ncHttp 28 } + + ncHttpObjHitRateLast1Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP object hit rate in the last 1 minute." + ::= { ncHttp 29 } + + ncHttpObjHitRateLast5Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP object hit rate in the last 5 minutes." + ::= { ncHttp 30 } + + ncHttpByteHitRateLast1Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP byte hit rate in the last 1 minute." + ::= { ncHttp 31 } + + ncHttpByteHitRateLast5Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "HTTP byte hit rate in the last 5 minutes." + ::= { ncHttp 32 } + + ncHttpBWSavingsLast1Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for HTTP requests in the last + 1 minute" + ::= { ncHttp 33 } + + ncHttpBWSavingsLast5Min OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for HTTP requests in the last + 5 minutes" + ::= { ncHttp 34 } + + ncHttpActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to HTTP servers" + ::= { ncHttp 35 } + + ncHttpActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to HTTP clients" + ::= { ncHttp 36 } + + ncHttpAccelTable OBJECT-TYPE + SYNTAX SEQUENCE OF NcHttpAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of kilobytes sent to and recieved from the client side + per acceleration rule" + + ::= { ncHttp 37 } + + ncHttpAccelEntry OBJECT-TYPE + SYNTAX NcHttpAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the number of kilobytes sent and + received to/from the clients side per acceleration + rule" + + INDEX { ncHttpAccelIndex } + ::= { ncHttpAccelTable 1 } + + NcHttpAccelEntry ::= + SEQUENCE { + ncHttpAccelIndex Integer32, + ncHttpAccelKbytesFromClient Counter32, + ncHttpAccelKbytesToClient Counter32, + ncHttpAccelHits Counter32 + } + + ncHttpAccelIndex OBJECT-TYPE + SYNTAX Integer32 (1..513) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each entry in the http acceleration + stats table" + ::= { ncHttpAccelEntry 1 } + + ncHttpAccelKbytesFromClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes received from the client + for this acceleration rule" + ::= { ncHttpAccelEntry 2 } + + ncHttpAccelKbytesToClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes sent to the client for + this acceleration rule" + ::= { ncHttpAccelEntry 3 } + + ncHttpAccelHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of times this acceleration rule has been hit" + ::= { ncHttpAccelEntry 4 } + + ncHttpsAccelTable OBJECT-TYPE + SYNTAX SEQUENCE OF NcHttpsAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of kilobytes sent to and recieved from the client side + per acceleration rule" + + ::= { ncHttp 38 } + + ncHttpsAccelEntry OBJECT-TYPE + SYNTAX NcHttpsAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the number of kilobytes sent and + received to/from the clients side per acceleration + rule" + + INDEX { ncHttpsAccelIndex } + ::= { ncHttpsAccelTable 1 } + + NcHttpsAccelEntry ::= + SEQUENCE { + ncHttpsAccelIndex Integer32, + ncHttpsAccelKbytesFromClient Counter32, + ncHttpsAccelKbytesToClient Counter32, + ncHttpsAccelHits Counter32 + } + + ncHttpsAccelIndex OBJECT-TYPE + SYNTAX Integer32 (1..513) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each entry in the http acceleration + stats table" + ::= { ncHttpsAccelEntry 1 } + + ncHttpsAccelKbytesFromClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes received from the client + for this acceleration rule" + ::= { ncHttpsAccelEntry 2 } + + ncHttpsAccelKbytesToClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes sent to the client for + this acceleration rule" + ::= { ncHttpsAccelEntry 3 } + + ncHttpsAccelHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of times this acceleration rule has been hit" + ::= { ncHttpsAccelEntry 4 } + + + ncNntp OBJECT IDENTIFIER ::= { ncStats 7 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the nntp stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNntpTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NNTP total requests so far" + ::= { ncNntp 1 } + ncNntpCacheableRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NNTP requests that were cacheable" + ::= { ncNntp 2 } + + ncNntpProxyRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "NNTP requests that were non-cacheable" + ::= { ncNntp 3 } + + ncNntpServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to NNTP servers (active and idle)" + ::= { ncNntp 4 } + + ncNntpCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to NNTP clients (active and idle)" + ::= { ncNntp 5 } + + ncNntpBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for NNTP requests" + ::= { ncNntp 6 } + + ncNntpRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time per byte for NNTP requests" + ::= { ncNntp 7 } + + ncNntpBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes sent to clients" + ::= { ncNntp 8 } + + ncNntpBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes received from clients" + ::= { ncNntp 9 } + + ncNntpBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes sent to servers" + ::= { ncNntp 10 } + + ncNntpBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NNTP bytes received from servers" + ::= { ncNntp 11 } + + ncNntpObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate of NNTP requests" + ::= { ncNntp 12 } + + ncNntpActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to NNTP servers" + ::= { ncNntp 13 } + + ncNntpActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to NNTP clients" + ::= { ncNntp 14 } + + ncFtp OBJECT IDENTIFIER ::= { ncStats 8 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the ftp stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncFtpTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTP total requests so far" + ::= { ncFtp 1 } + + ncFtpHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTP requests that resulted in hits so far" + ::= { ncFtp 2 } + + ncFtpMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "FTP requests that resulted in misses so far" + ::= { ncFtp 3 } + + ncFtpServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to FTP servers (active and idle)" + ::= { ncFtp 4 } + + ncFtpCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to FTP clients (active and idle)" + ::= { ncFtp 5 } + + ncFtpBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for FTP requests" + ::= { ncFtp 6 } + + ncFtpRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time per byte for FTP requests" + ::= { ncFtp 7 } + + ncFtpBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes sent to clients" + ::= { ncFtp 8 } + + ncFtpBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes received from clients" + ::= { ncFtp 9 } + + ncFtpBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes sent to servers" + ::= { ncFtp 10 } + + ncFtpBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total FTP bytes received from servers" + ::= { ncFtp 11 } + + ncFtpObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate of FTP requests" + ::= { ncFtp 12 } + + ncFtpActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to FTP servers" + ::= { ncFtp 13 } + + ncFtpActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to FTP clients" + ::= { ncFtp 14 } + + ncStreaming OBJECT IDENTIFIER ::= { ncStats 9 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the streaming stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncStreamingServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to streaming servers (active and idle)" + ::= { ncStreaming 1 } + + ncStreamingCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to streaming clients (active and idle)" + ::= { ncStreaming 2 } + + ncStreamingBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all streaming requests" + ::= { ncStreaming 3 } + + ncStreamingRespTimePerByte OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Response time per byte for all streaming requests" + ::= { ncStreaming 4 } + + ncStreamingHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STREAMING requests that resulted in hits so far" + ::= { ncStreaming 5 } + + ncStreamingMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STREAMING requests that resulted in misses so far" + ::= { ncStreaming 6 } + + ncStreamingTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "STREAMING total requests so far" + ::= { ncStreaming 7 } + + ncStreamingLiveBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes sent to clients" + ::= { ncStreaming 8 } + + ncStreamingLiveBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes received from clients" + ::= { ncStreaming 9 } + + ncStreamingLiveBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes sent to servers" + ::= { ncStreaming 10 } + + ncStreamingLiveBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Live bytes received from servers" + ::= { ncStreaming 11 } + + ncStreamingProxyBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes sent to clients" + ::= { ncStreaming 12 } + + ncStreamingProxyBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes received from clients" + ::= { ncStreaming 13 } + + ncStreamingProxyBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes sent to servers" + ::= { ncStreaming 14 } + + ncStreamingProxyBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Proxy bytes received from servers" + ::= { ncStreaming 15 } + + ncStreamingOBTClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes sent to clients" + ::= { ncStreaming 16 } + + ncStreamingOBFClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes received from clients" + ::= { ncStreaming 17 } + + ncStreamingOBTServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes sent to servers" + ::= { ncStreaming 18 } + + ncStreamingOBFServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Ondemand bytes received from servers" + ::= { ncStreaming 19 } + + ncStreamingObjHitrate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Object Hitrate of Streaming requests" + ::= { ncStreaming 20 } + + ncStreamingRealBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes sent to clients" + ::= { ncStreaming 21 } + + ncStreamingRealBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes received from clients" + ::= { ncStreaming 22 } + + ncStreamingRealBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes sent to servers" + ::= { ncStreaming 23 } + + ncStreamingRealBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Real bytes received from servers" + ::= { ncStreaming 24 } + + ncStreamingMmsBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes sent to clients" + ::= { ncStreaming 25 } + + ncStreamingMmsBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes received from clients" + ::= { ncStreaming 26 } + + ncStreamingMmsBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes sent to servers" + ::= { ncStreaming 27 } + + ncStreamingMmsBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Mms bytes received from servers" + ::= { ncStreaming 28 } + + ncStreamingQTBTClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes sent to clients" + ::= { ncStreaming 29 } + + ncStreamingQTBFClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes received from clients" + ::= { ncStreaming 30 } + + ncStreamingQTBTServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes sent to servers" + ::= { ncStreaming 31 } + + ncStreamingQTBFServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming QuickTime bytes received from servers" + ::= { ncStreaming 32 } + + ncStreamingLiveBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all Live streaming requests" + ::= { ncStreaming 33 } + + ncStreamingOndemandBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all VOD streaming requests" + ::= { ncStreaming 34 } + + ncStreamingRealBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all Real streaming requests" + ::= { ncStreaming 35 } + + ncStreamingMmsBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all MMS streaming requests" + ::= { ncStreaming 36 } + + ncStreamingQuickTimeBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all QuickTime streaming requests" + ::= { ncStreaming 37 } + + ncStreamingActiveServConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to streaming servers" + ::= { ncStreaming 38 } + + ncStreamingActiveCliConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently active TCP/IP connections to streaming clients" + ::= { ncStreaming 39 } + + ncStreamingRtspWMBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes sent to clients" + ::= { ncStreaming 40 } + + ncStreamingRtspWMBFClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes received from clients" + ::= { ncStreaming 41 } + + ncStreamingRtspWMBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes sent to servers" + ::= { ncStreaming 42 } + + ncStreamingRtspWMBFServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Streaming Windows Media RTSP bytes received from servers" + ::= { ncStreaming 43 } + + ncStreamingRtspWMBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for all Windows Media RTSP streaming requests" + ::= { ncStreaming 44 } + + ncStreamingAccelTable OBJECT-TYPE + SYNTAX SEQUENCE OF NcStreamingAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Number of kilobytes sent to and recieved from the + client side per acceleration rule" + + ::= { ncStreaming 45 } + + ncStreamingAccelEntry OBJECT-TYPE + SYNTAX NcStreamingAccelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Each entry contains the number of kilobytes sent and + received to/from the clients side per acceleration + rule" + + INDEX { ncStreamingAccelIndex } + ::= { ncStreamingAccelTable 1 } + + NcStreamingAccelEntry ::= + SEQUENCE { + ncStreamingAccelIndex Integer32, + ncStreamingAccelKbytesFromClient Counter32, + ncStreamingAccelKbytesToClient Counter32, + ncStreamingAccelHits Counter32 + } + + ncStreamingAccelIndex OBJECT-TYPE + SYNTAX Integer32 (1..513) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each entry in the streaming + acceleration stats table" + ::= { ncStreamingAccelEntry 1 } + + ncStreamingAccelKbytesFromClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes received from the client + for this acceleration rule" + ::= { ncStreamingAccelEntry 2 } + + ncStreamingAccelKbytesToClient OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of kilobytes sent to the client for + this acceleration rule" + ::= { ncStreamingAccelEntry 3 } + + ncStreamingAccelHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " The number of times this acceleration rule has + been hit" + ::= { ncStreamingAccelEntry 4 } + + ncStreamingClientsDelayedSW OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of clients delayed because of a Bandwidth Limit" + ::= { ncStreaming 46 } + + ncTotalBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total Bandwidth savings for HTTP, FTP, NNTP, and Streaming protocols" + ::= { ncStats 10 } + + ncDns OBJECT IDENTIFIER ::= { ncStats 11 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache dns stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncDnsRequestsReceived OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total DNS requests received from clients" + ::= { ncDns 1 } + + ncDnsCacheHits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hits on the DNS cache. This includes hits + for DNS lookups generated by NetCache internally" + ::= { ncDns 2 } + + ncDnsCacheMisses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Misses on the DNS cache. This includes misses + for DNS lookups generated by NetCache internally" + ::= { ncDns 3 } + + ncDnsSuccessfulForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Forward DNS lookups that are successful" + ::= { ncDns 4 } + + ncDnsFailedForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Forward DNS lookups that failed" + ::= { ncDns 5 } + + ncDnsPendingForwardLookups OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Forward DNS lookups that are in progress" + ::= { ncDns 6 } + + ncDnsSuccessfulReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reverse DNS lookups that are successful" + ::= { ncDns 7 } + + ncDnsFailedReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reverse DNS lookups that failed" + ::= { ncDns 8 } + + ncDnsPendingReverseLookups OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Reverse DNS lookups that are in progress" + ::= { ncDns 9 } + + ncDnsIres OBJECT IDENTIFIER ::= { ncDns 10 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache dns ires stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + ncDnsIresIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Has Full Service Resolver been enabled" + ::= { ncDnsIres 1 } + + ncDnsIresIsInitialised OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Has Full Service Resolver initalised" + ::= { ncDnsIres 2 } + + ncDnsIresForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Forward Lookups" + ::= { ncDnsIres 3 } + + ncDnsIresPendingForwardLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Pending Forward Lookups" + ::= { ncDnsIres 4 } + + ncDnsIresReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Reverse Lookups" + ::= { ncDnsIres 5 } + + ncDnsIresPendingReverseLookups OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Full Service Resolver's Pending Reverse Lookups" + ::= { ncDnsIres 6 } + + + ncAuth OBJECT IDENTIFIER ::= { ncStats 12 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache authentication stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNtlm OBJECT IDENTIFIER ::= { ncAuth 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache ntlm stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncNtlmPossibleProblem OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether a possible ntlm problem is detected + in the appliance's domain environment." + ::= { ncNtlm 1 } + + + ncRM OBJECT IDENTIFIER ::= { ncStats 13 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache resource management group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ncRMMem OBJECT IDENTIFIER ::= { ncRM 1 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- the netcache memory stats group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + ncRMMemTotal OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total memory in kilobytes available for + allocations after boot. It does not imply + the total system memory." + ::= { ncRMMem 1 } + + ncRMMemFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current free memory in kilobytes available + for allocations." + ::= { ncRMMem 2 } + + -- -- -- -- -- -- -- -- -- + -- the snapmirror group -- + -- -- -- -- -- -- -- -- -- + + snapmirrorOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether snapmirror has been turned on + or not." + ::= { snapmirror 1 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorActiveRestoreCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror restores." + + ::= { snapmirror 2 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorScheduledRestoreCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of scheduled SnapMirror restores." + + ::= { snapmirror 3 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorBackupNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror backups." + + ::= { snapmirror 4 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorBackupSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror backups which completed. + Reset on reboot." + + ::= { snapmirror 5 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorRestoreSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror restores which completed. + Reset on reboot." + + ::= { snapmirror 6 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorBackupAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror backup transfers which have + aborted. Reset on reboot." + + ::= { snapmirror 7 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorRestoreRestartAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror restore temporary aborts. + Reset on reboot." + + ::= { snapmirror 8 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorRestoreWaitAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of SnapMirror restore permanent aborts. + Reset on reboot." + + ::= { snapmirror 9 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorWrittenBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Megabytes written by SnapMirror. + Reset on reboot." + + ::= { snapmirror 10 } + + -- the old active snapmirror destination count, new name is + -- snapmirrorActiveDstNumber. DEPRECATED + snapmirrorReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Megabytes read by SnapMirror. + Reset on reboot." + + ::= { snapmirror 11 } + + snapmirrorActiveDstNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror destination." + + ::= { snapmirror 12 } + + snapmirrorActiveSrcNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active SnapMirror Source." + + ::= { snapmirror 13 } + + snapmirrorFilerTotalDstSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapmirror transfers to + the destination. Persistent across reboot." + + ::= { snapmirror 14 } + + snapmirrorFilerTotalSrcSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapmirror transfers + from the source. Persistent across reboot." + + ::= { snapmirror 15 } + + snapmirrorFilerTotalSrcFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed SnapMirror transfers on + the source. Persistent across reboot." + + ::= { snapmirror 16 } + + snapmirrorFilerTotalDstFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed SnapMirror transfers on + the destination. Persistent across reboot." + + ::= { snapmirror 17 } + + snapmirrorFilerTotalDstDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferred snapmirror transfer on + the destination. Persistent across reboot." + + ::= { snapmirror 18 } + + snapmirrorIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapmirror is licensed on the filer." + + ::= { snapmirror 19 } + + snapmirrorStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapmirrorStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "provide a list of snapmirror status." + + ::= { snapmirror 20 } + + snapmirrorStatusEntry OBJECT-TYPE + SYNTAX SnapmirrorStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current status of snapmirror." + + INDEX { snapmirrorIndex } + ::= { snapmirrorStatusTable 1 } + + SnapmirrorStatusEntry ::= + SEQUENCE { + snapmirrorIndex + Integer32, + snapmirrorSrc + OCTET STRING, + snapmirrorDst + OCTET STRING, + snapmirrorStatus + Integer32, + snapmirrorState + Integer32, + snapmirrorLag + TimeTicks, + snapmirrorTotalSuccesses + Counter32, + snapmirrorTotalRestartSuccesses + Counter32, + snapmirrorTotalFailures + Counter32, + snapmirrorTotalDeferments + Counter32, + snapmirrorTotalTransMBs + Counter32, + snapmirrorTotalTransTimeSeconds + Counter32, + snapmirrorThrottleValue + Integer32, + snapmirrorMirrorTimestamp + DisplayString, + snapmirrorBaseSnapshot + DisplayString, + snapmirrorLastTransType + DisplayString, + snapmirrorLastTransMBs + Counter32, + snapmirrorLastTransTimeSeconds + Counter32, + snapmirrorSchedule + DisplayString, + snapmirrorScheduleDesc + DisplayString, + snapmirrorArguments + DisplayString, + snapmirrorSyncToAsync + Counter32 + } + + snapmirrorIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapmirror status table." + + ::= { snapmirrorStatusEntry 1 } + + snapmirrorSrc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source of the snapmirror. : or + :/vol/" + + ::= { snapmirrorStatusEntry 2 } + + snapmirrorDst OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Destination of the snapmirror. + : or :/vol/" + + ::= { snapmirrorStatusEntry 3 } + + snapmirrorStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + transferring(2), + pending(3), + aborting(4), + migrating(5), + quiescing(6), + resyncing(7), + waiting(8), + syncing(9), + inSync(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current transfer status of the snapmirror." + + ::= { snapmirrorStatusEntry 4 } + + snapmirrorState OBJECT-TYPE + SYNTAX INTEGER { + uninitialized(1), + snapmirrored(2), + brokenOff(3), + quiesced(4), + source(5), + unknown(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of the snapmirror." + + ::= { snapmirrorStatusEntry 5 } + + snapmirrorLag OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "How far behind from the source the destination is." + + ::= { snapmirrorStatusEntry 6 } + + snapmirrorTotalSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful transfer since the snapmirror + is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 7 } + + snapmirrorTotalRestartSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful restarted transfer since + the snapmirror is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 8 } + + snapmirrorTotalFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed or aborted transfer since + the snapmirror is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 9 } + + snapmirrorTotalDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferment since the snapmirror + is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 10 } + + snapmirrorTotalTransMBs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total transfer size in MB for the snapmirror. + Reset on reboot." + + ::= { snapmirrorStatusEntry 11 } + + snapmirrorTotalTransTimeSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of seconds spent in successful transfer for the + snapmirror. Reset on reboot." + + ::= { snapmirrorStatusEntry 12 } + + snapmirrorThrottleValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current throttle value for the snapmirror." + + ::= { snapmirrorStatusEntry 13 } + + snapmirrorMirrorTimestamp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Timestamp of the last snapshot successfully transferred from + the source to the destination." + + ::= { snapmirrorStatusEntry 14 } + + snapmirrorBaseSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the current base snapshot for the snapmirror." + + ::= { snapmirrorStatusEntry 15 } + + snapmirrorLastTransType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the previous successful transfer." + + ::= { snapmirrorStatusEntry 16 } + + snapmirrorLastTransMBs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last successful transfer size in MB for the snapmirror." + + ::= { snapmirrorStatusEntry 17 } + + snapmirrorLastTransTimeSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Duration of last successful transfer in seconds for the + snapmirror." + + ::= { snapmirrorStatusEntry 18 } + + snapmirrorSchedule OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Update schedule for the snapmirror in conf file format." + + ::= { snapmirrorStatusEntry 19 } + + snapmirrorScheduleDesc OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Description of the update schedule for the snapmirror." + + ::= { snapmirrorStatusEntry 20 } + + snapmirrorArguments OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Arguments for the snapmirror in conf file format." + + ::= { snapmirrorStatusEntry 21 } + + snapmirrorSyncToAsync OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times changing from sync mode to async mode + since the snapmirror is initialized. Persistent across reboot." + + ::= { snapmirrorStatusEntry 22 } + + snapmirrorConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapmirrorConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of snapmirror connection definitions." + + ::= { snapmirror 21 } + + snapmirrorConnEntry OBJECT-TYPE + SYNTAX SnapmirrorConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of a defined multipath connection." + + INDEX { snapmirrorConnIndex } + ::= { snapmirrorConnTable 1 } + + SnapmirrorConnEntry ::= + SEQUENCE { + snapmirrorConnIndex + Integer32, + snapmirrorConnName + DisplayString, + snapmirrorConnType + Integer32, + snapmirrorConnSrc1 + DisplayString, + snapmirrorConnDst1 + DisplayString, + snapmirrorConnSrc2 + DisplayString, + snapmirrorConnDst2 + DisplayString + } + + snapmirrorConnIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapmirror multipath connection table." + + ::= { snapmirrorConnEntry 1 } + + snapmirrorConnName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the snapmirror multipath connection." + + ::= { snapmirrorConnEntry 2 } + + snapmirrorConnType OBJECT-TYPE + SYNTAX INTEGER { + multi(1), + failover(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the snapmirror multipath connection." + + ::= { snapmirrorConnEntry 3 } + + snapmirrorConnSrc1 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the source for the first path." + + ::= { snapmirrorConnEntry 4 } + + snapmirrorConnDst1 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the destination for the first path." + + ::= { snapmirrorConnEntry 5 } + + snapmirrorConnSrc2 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the source for the second path." + + ::= { snapmirrorConnEntry 6 } + + snapmirrorConnDst2 OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the destination for the second path." + + ::= { snapmirrorConnEntry 7 } + + -- -- -- -- -- -- -- -- -- + -- the snapvault group + -- -- -- -- -- -- -- -- -- + + -- this group contains statistics for the whole system + -- unless otherwise specified. + + svOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether snapvault has been turned on + or not." + ::= { snapvault 1 } + + svSystemActiveDstNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active snapvault destionations." + + ::= { snapvault 2 } + + svSystemActiveSrcNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active snapvault sources." + + ::= { snapvault 3 } + + svSystemTotalPrimarySuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapvault transfers + from the snapvault primary. Persistent across reboot." + + ::= { snapvault 4 } + + svSystemTotalSecondarySuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapvault transfers to + the snapvault secondary. Persistent across reboot." + + ::= { snapvault 5 } + + svSystemTotalPrimaryFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed snapvault transfers on + the snapvault primary. Persistent across reboot." + + ::= { snapvault 6 } + + svSystemTotalSecondaryFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed snapvault transfers on + the snapvault secondary. Persistent across reboot." + + ::= { snapvault 7 } + + svSystemTotalSecondaryDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferred snapvault transfers on + the snapvault secondary. Persistent across reboot." + + ::= { snapvault 8 } + + svPrimaryIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapvault_client(primary) is licensed on the filer." + + ::= { snapvault 9 } + + svSecondaryIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapvault_server(secondary) is licensed on the filer." + + ::= { snapvault 10 } + + + + snapvaultStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapvaultStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "provide a list of snapvault status." + + ::= { snapvault 11 } + + snapvaultStatusEntry OBJECT-TYPE + SYNTAX SnapvaultStatusEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current status of snapvault." + + INDEX { svIndex } + ::= { snapvaultStatusTable 1 } + + SnapvaultStatusEntry ::= + SEQUENCE { + svIndex + Integer32, + svSrc + OCTET STRING, + svDst + OCTET STRING, + svStatus + Integer32, + svState + Integer32, + svLag + TimeTicks, + svTotalSuccesses + Counter32, + svTotalRestartSuccesses + Counter32, + svTotalFailures + Counter32, + svTotalDeferments + Counter32, + svTotalTransMBs + Counter32, + svTotalTransTimeSeconds + Counter32, + svThrottleValue + Integer32, + svSrcSnapshotTime + Integer32, + svBaseSnapshot + DisplayString, + svLastTransType + DisplayString, + svLastTransMBs + Integer32, + svLastTransTimeSeconds + Integer32 + } + + svIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapvault status table." + + ::= { snapvaultStatusEntry 1 } + + svSrc OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Source of the snapvault relationship. + :/vol/" + + ::= { snapvaultStatusEntry 2 } + + svDst OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Destionation of the snapvault relationship. + :/vol/" + + ::= { snapvaultStatusEntry 3 } + + svStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + transferring(2), + pending(3), + aborting(4), + quiescing(6), + resyncing(7), + paused(12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current transfer status of the snapvault relationship." + + ::= { snapvaultStatusEntry 4 } + + svState OBJECT-TYPE + SYNTAX INTEGER { + uninitialized(1), + snapvaulted(2), + brokenOff(3), + quiesced(4), + source(5), + unknown(6), + restoring(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of the snapvault relationship." + + ::= { snapvaultStatusEntry 5 } + + svLag OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "How far behind from the source the destination is." + + ::= { snapvaultStatusEntry 6 } + + svTotalSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful transfer since the snapvault + relationship was established. Persistent across reboot." + + ::= { snapvaultStatusEntry 7 } + + svTotalRestartSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful restarted transfer since + the snapvault relationship was established. Persistent + across reboot." + + ::= { snapvaultStatusEntry 8 } + + svTotalFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed or aborted transfer since + the snapvault relationship was established. Persistent + across reboot." + + ::= { snapvaultStatusEntry 9 } + + svTotalDeferments OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferment since the snapvault + relationship was established. Persistent across reboot." + + ::= { snapvaultStatusEntry 10 } + + svTotalTransMBs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total transfer size in MB for the snapvault. + Reset on reboot." + + ::= { snapvaultStatusEntry 11 } + + svTotalTransTimeSeconds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of seconds spent in successful transfer for the + snapvault relationship. Reset on reboot." + + ::= { snapvaultStatusEntry 12 } + + svThrottleValue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current throttle value for the snapvault relationship." + + ::= { snapvaultStatusEntry 13 } + + svSrcSnapshotTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Time when the source snapshot was created. The time in + seconds since January 1, 1970. The source snapshot here + is the last snapshot successfully transferred from the + source to the destination." + + ::= { snapvaultStatusEntry 14 } + + svBaseSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the current base snapshot for the + snapvault relationship." + + ::= { snapvaultStatusEntry 15 } + + svLastTransType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the previous successful transfer." + + ::= { snapvaultStatusEntry 16 } + + svLastTransMBs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Last successful transfer size in MB for the snapvault + relationship." + + ::= { snapvaultStatusEntry 17 } + + svLastTransTimeSeconds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Duration of last successful transfer in seconds for the + snapvault relationship." + + ::= { snapvaultStatusEntry 18 } + + snapvaultHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapvaultHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of remote snapvault hosts." + + ::= { snapvault 12 } + + snapvaultHostEntry OBJECT-TYPE + SYNTAX SnapvaultHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide snapvault statistics for a remote host + which has one or more current established + relationships with the local snapvault system." + + INDEX { svHostIndex } + ::= { snapvaultHostTable 1 } + + SnapvaultHostEntry ::= + SEQUENCE { + svHostIndex + Integer32, + svHostName + DisplayString, + svHostType + Integer32, + svHostTotalSuccesses + Integer32, + svHostTotalFailures + Integer32, + svHostTotalDeferments + Integer32 + } + + svHostIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapvault remote host table." + + ::= { snapvaultHostEntry 1 } + + svHostName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the remote snapvault host." + + ::= { snapvaultHostEntry 2 } + + svHostType OBJECT-TYPE + SYNTAX INTEGER { + primary(1), + secondary(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the remote snapvault host." + + ::= { snapvaultHostEntry 3 } + + svHostTotalSuccesses OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of successful snapvault transfers + for all current established relationships between + the local snapvault system and the given remote host." + + ::= { snapvaultHostEntry 4 } + + svHostTotalFailures OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of failed snapvault transfers + for all current established relationships between + the local snapvault system and the given remote host." + + ::= { snapvaultHostEntry 5 } + + svHostTotalDeferments OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of deferred snapvault transfers for + all current established relationships between + the local snapvault system and the given remote host. + 0 for snapvault client host." + + ::= { snapvaultHostEntry 6 } + + + snapvaultSchedTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnapvaultSchedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of snapvault schedules." + + ::= { snapvault 13 } + + snapvaultSchedEntry OBJECT-TYPE + SYNTAX SnapvaultSchedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of schedules of snapvault." + + INDEX { svSchedIndex } + ::= { snapvaultSchedTable 1 } + + SnapvaultSchedEntry ::= + SEQUENCE { + svSchedIndex + Integer32, + svSchedVolume + DisplayString, + svSchedSnapshot + DisplayString, + svSchedStatus + Integer32, + svSchedType + Integer32, + svSchedSchedule + DisplayString + } + + svSchedIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the snapvault schedule table." + + ::= { snapvaultSchedEntry 1 } + + svSchedVolume OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the volume on the snapvault for the + snapvault schedule. This does not have a /vol/ prefix." + + ::= { snapvaultSchedEntry 2 } + + svSchedSnapshot OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the snapshot for the snapvault schedule." + + ::= { snapvaultSchedEntry 3 } + + svSchedStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + queued(2), + active(3), + aborting(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of the snapvault schedule." + + ::= { snapvaultSchedEntry 4 } + + svSchedType OBJECT-TYPE + SYNTAX INTEGER { + undef(1), + xfer(2), + create(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the snapvault schedule." + + ::= { snapvaultSchedEntry 5 } + + + svSchedSchedule OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The update schedule of the snapvault." + + ::= { snapvaultSchedEntry 6 } + + svDrPrimaryIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the snapvault disaster recovery primary is + licensed on the filer." + + ::= { snapvault 14 } + + -- -- -- -- -- -- -- -- + -- the ndmpd group -- + -- -- -- -- -- -- -- -- + + ndmpOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether ndmpd has been turned on or not." + ::= { ndmp 1 } + + ndmpSessionOpened OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of ndmpd sessions currently opened. + Sessions may be running backups, restores or neither." + ::= { ndmp 2 } + + ndmpBackupActive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd backups currently active." + ::= { ndmp 3 } + + ndmpRestoreActive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd restores currently active." + ::= { ndmp 4 } + + ndmpTapeActive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of tape drives currently active." + ::= { ndmp 5 } + + ndmpBackupSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd backups that succeeded." + ::= { ndmp 6 } + + ndmpRestoreSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd restores that succeeded." + ::= { ndmp 7 } + + ndmpBackupFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd backups that failed." + ::= { ndmp 8 } + + ndmpRestoreFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of ndmpd restores that failed." + ::= { ndmp 9 } + + ndmpBackupFailureReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the ndmpBackupFailures value is non-zero, this string + describes the reason for the most recent backup failure." + ::= { ndmp 10 } + + ndmpRestoreFailureReason OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "When the ndmpRestoreFailures value is non-zero, this string + describes the reason for the most recent restore failure." + ::= { ndmp 11 } + + -- -- -- -- -- -- -- -- + -- the ftpd group -- + -- -- -- -- -- -- -- -- + + ftpdOn OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether ftpd has been turned on or not." + ::= { ftpd 1 } + + ftpdCurrentConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of currently open TCP/IP connections to ftp daemon (active and idle)" + ::= { ftpd 2 } + + ftpdMaxConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of maximum simultaneous TCP/IP connections to ftp daemon" + ::= { ftpd 3 } + + ftpdTotalConns OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of total TCP/IP connections to ftp daemon" + ::= { ftpd 4 } + + -- -- -- -- -- -- -- -- + -- the fabric group -- + -- -- -- -- -- -- -- -- + + fabricInstances OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of distinct fabrics present." + ::= { fabric 1 } + + fabricTable OBJECT-TYPE + SYNTAX SEQUENCE OF FabricEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of fabrics." + ::= { fabric 2 } + + fabricEntry OBJECT-TYPE + SYNTAX FabricEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current configuration and + status of fabrics." + + INDEX { fabricIndex } + ::= { fabricTable 1 } + + FabricEntry ::= + SEQUENCE { + fabricIndex + Integer32, + fabricStatus + Integer32, + fabricStatusMessage + DisplayString, + fabricName + OCTET STRING, + fabricOwner + Integer32 + } + + fabricIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this fabric entry." + ::= { fabricEntry 1 } + + fabricStatus OBJECT-TYPE + SYNTAX INTEGER { + ok(1), + faulty(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates the overall status of the SAN fabric(s)." + ::= { fabricEntry 2 } + + fabricStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the fabric status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(3)." + ::= { fabricEntry 3 } + + fabricName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the fabric." + ::= { fabricEntry 4 } + + fabricOwner OBJECT-TYPE + SYNTAX INTEGER { + netapp(1), + other(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This indicates who owns the management of + the fabric." + ::= { fabricEntry 5 } + + switchTable OBJECT-TYPE + SYNTAX SEQUENCE OF SwitchEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of switches and hubs + connected to the fabric." + ::= { fabric 3 } + + switchEntry OBJECT-TYPE + SYNTAX SwitchEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current configuration and + status of fabric interconnect elements. This + include switches and hubs." + + INDEX { switchFabricIndex, switchIndex } + ::= { switchTable 1 } + + SwitchEntry ::= + SEQUENCE { + switchIndex + Integer32, + switchName + OCTET STRING, + switchSymbolicName + OCTET STRING, + switchType + Integer32, + switchDomain + Integer32, + switchManagementId + Integer32, + switchStatus + Integer32, + switchStatusMessage + DisplayString, + switchLinkSpeed + Integer32, + switchHighPacketsProcessed + Counter32, + switchLowPacketsProcessed + Counter32, + switchHighPacketsRejected + Counter32, + switchLowPacketsRejected + Counter32, + switchFabricIndex + Integer32, + switch64PacketsProcessed + Counter64, + switch64PacketsRejected + Counter64 + } + + switchIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this switch entry." + ::= { switchEntry 1 } + + switchName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the switch." + ::= { switchEntry 2 } + + switchSymbolicName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the symbolic name of the switch." + ::= { switchEntry 3 } + + switchType OBJECT-TYPE + SYNTAX INTEGER { + hub(1), + switch(2), + unknown(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the switch." + ::= { switchEntry 4 } + + switchDomain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The domain identifier of the switch." + ::= { switchEntry 5 } + + switchManagementId OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The in-band management identifier of the switch." + ::= { switchEntry 6 } + + switchStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + unknown(2), + ok(3), + nonCritical(4), + critical(5), + nonRecoverable(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the switch." + ::= { switchEntry 7 } + + switchStatusMessage OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string describing the switch status, + including a description of the condition (if + any) that caused the status to be anything + other than ok(3)." + ::= { switchEntry 8 } + + switchLinkSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The link speed of the switch. The value is an integer + whose units are Gbits (for example, a value of 2 represents + a link speed of 2 Gbit)." + ::= { switchEntry 9 } + + switchHighPacketsProcessed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets successfully processed + since the last reboot/reset of the switch. + This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 10 } + + switchLowPacketsProcessed OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets successfully processed + since the last reboot/reset of the switch. + This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 11 } + + switchHighPacketsRejected OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets rejected + since the last reboot/reset of the switch. + This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 12 } + + switchLowPacketsRejected OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets rejected + since the last reboot/reset of the switch. + This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { switchEntry 13 } + + switchFabricIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the fabric on which this switch + resides. The value ranges from 1 to the value + of fabricInstances." + ::= { switchEntry 14 } + + switch64PacketsProcessed OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets successfully processed + since the last reboot/reset of the switch. + This object returns all of the 64 bit unsigned + integer." + ::= { switchEntry 15 } + + switch64PacketsRejected OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of Packets rejected since the last + reboot/reset of the switch. This object returns + all of the 64 bit unsigned integer." + ::= { switchEntry 16 } + + portTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of ports + connected to the fabric." + ::= { fabric 4 } + + portEntry OBJECT-TYPE + SYNTAX PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of current configuration and + status of ports in the fabric." + + INDEX { portFabricIndex, portSwitchIndex, portIndex } + ::= { portTable 1 } + + PortEntry ::= + SEQUENCE { + portIndex + Integer32, + portName + OCTET STRING, + portSwitchIndex + Integer32, + portSwitchName + OCTET STRING, + portNumber + Integer32, + portType + Integer32, + portState + Integer32, + portFabricIndex + Integer32 + } + + portIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this port entry." + ::= { portEntry 1 } + + portName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the port." + ::= { portEntry 2 } + + portSwitchIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the switch on which this port + resides. The value ranges from 1 to the number of + of switches." + ::= { portEntry 3 } + + portSwitchName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This is the WWN of the switch to which + the port is attached." + ::= { portEntry 4 } + + portNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port number on the switch." + ::= { portEntry 5 } + + portType OBJECT-TYPE + SYNTAX INTEGER { + unidentified(1), + nPort(2), + nlPort(3), + fPort(4), + flPort(5), + ePort(6), + bPort(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the port." + ::= { portEntry 6 } + + portState OBJECT-TYPE + SYNTAX INTEGER { + online(1), + offline(2), + testing(3), + faulty(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the port." + ::= { portEntry 7 } + + portFabricIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the fabric on which this port + resides. The value ranges from 1 to the value + of fabricInstances." + ::= { portEntry 8 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- + -- The backup(dump/restore) group -- + -- -- -- -- -- -- -- -- -- -- -- -- -- + + dump OBJECT IDENTIFIER ::= { backup 1 } + + restore OBJECT IDENTIFIER ::= { backup 2 } + + -- dump -- + + dmpActives OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active dump." + ::= { dump 1 } + + dmpAttempts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dump attempted." + ::= { dump 2 } + + dmpSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dump succeeded." + ::= { dump 3 } + + dmpFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of dump failed." + ::= { dump 4 } + + dmpTable OBJECT-TYPE + SYNTAX SEQUENCE OF DmpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provides a report of dumps on each + dump subtree." + ::= { dump 5 } + + -- dmpTable contained two entries named lastdump and lastsuccess that + -- were incompatible with many mib compilers. These are replaced + -- with objects that work better with these compilers. + + dmpEntry OBJECT-TYPE + SYNTAX DmpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Shows statistics of dumps on an unique + dump subtree." + INDEX { dmpIndex } + ::= { dmpTable 1 } + + DmpEntry ::= + SEQUENCE { + dmpIndex + Integer32, + dmpStPath + DisplayString, + dmpStAttempts + Counter32, + dmpStSuccesses + Counter32, + dmpStFailures + Counter32, + dmpTime + Integer32, + dmpStatus + Integer32, +-- lastdump entries + dmpLevel + Integer32, + dmpNumFiles + Integer32, +-- lastsuccess entries + dmpDataAmount + Integer32, + dmpStartTime + Integer32, + dmpDuration + TimeTicks + } + + dmpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Index into the subtree dump table." + ::= { dmpEntry 1 } + + dmpStPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The full path to the dump subtree. In the + format of /vol//..." + ::= { dmpEntry 2 } + + dmpStAttempts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "No. of dump attempted for the subtree." + ::= { dmpEntry 3 } + + dmpStSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "No. of dump succeeded for the subtree." + ::= { dmpEntry 4 } + + dmpStFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "No. of dump failed for the subtree." + ::= { dmpEntry 5 } + + dmpTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start time for the last attempt + to dump the subtree, including the + currently running one. The time in + seconds since January 1, 1970." + ::= { dmpEntry 6 } + + dmpStatus OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The status for the last dump attempt + on the subtree." + ::= { dmpEntry 7 } + + dmpLevel OBJECT-TYPE + SYNTAX Integer32 (0..9) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level of the dump." + ::= { dmpEntry 8 } + + dmpNumFiles OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of files dumped." + ::= { dmpEntry 9 } + + dmpDataAmount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of data dumped, in Megabytes." + ::= { dmpEntry 10 } + + dmpStartTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The start time of the dump. The time is + in seconds since January 1, 1970." + ::= { dmpEntry 11 } + + dmpDuration OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The duration of the dump." + ::= { dmpEntry 12 } + + -- restore -- + + rstActives OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of active restore." + ::= { restore 1 } + + rstAttempts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of restore attempted." + ::= { restore 2 } + + rstSuccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of restore succeeded." + ::= { restore 3 } + + rstFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of restore failed." + ::= { restore 4 } + + -- -- -- -- -- -- -- -- + -- DAFS Option group -- + -- -- -- -- -- -- -- -- + + dafsOptions OBJECT IDENTIFIER ::= {dafs 1} + + dafsIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Whether the dafs protocol is licensed on the filer. + Data ONTAP Specific" + ::= { dafsOptions 1 } + + dafsMaxRequestsServer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide maximum number of concurrent requests + Data ONTAP Specific" + ::= { dafsOptions 2 } + + dafsMaxRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server maximum number of concurrent requests per session + Data ONTAP Specific" + ::= { dafsOptions 3 } + + dafsMaxRequestSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Server maximum size of an inline request" + ::= { dafsOptions 4 } + + dafsMaxResponseSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Server maximum size of an inline response" + ::= { dafsOptions 5 } + + + dafsMaxPendingRequestsServer OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide maximum number of requests that can queue + waiting for resources Data ONTAP Specific" + ::= { dafsOptions 6 } + + dafsUseChecksums OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Server uses checksums" + ::= { dafsOptions 7 } + + dafsNicNumRequestDemons OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server default number of request demons per Nic. + Data ONTAP Specific" + ::= { dafsOptions 8 } + + dafsAnonymousAuthentication OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Allow the server to acception connections with + authentication type NONE." + ::= { dafsOptions 9 } + + dafsServerEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of the DAFS server. If true, the DAFS + server is running." + ::= { dafsOptions 10 } + + dafsDefaultUid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default client User ID if anonymously connected." + ::= { dafsOptions 11 } + + dafsDefaultGid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Default client Group ID if anonymously connected." + ::= { dafsOptions 12 } + + dafsMaxDisconnectedSessions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of disconnected sessions for which the + DAFS server will retain response cache data." + ::= { dafsOptions 13 } + + dafsMaxIdleSeconds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of seconds server will keep a session + open without hearing from the client." + ::= { dafsOptions 14 } + + -- the DAFS VI Nic table + + -- The DAFS VI Nic table contains information about this + -- entity's VI nics attached to DAFS + + dafsNicTable OBJECT-TYPE + SYNTAX SEQUENCE OF DafsNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing DAFS NIC specific + information." + ::= { dafs 2 } + + dafsNicEntry OBJECT-TYPE + SYNTAX DafsNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a particular current DAFS + nic. An object of this type is transient, + in that it ceases to exist when (or soon after) + the nic is detached." + INDEX { dafsNicIndex } + ::= { dafsNicTable 1 } + + DafsNicEntry ::= + SEQUENCE { + dafsNicIndex + Integer32, + dafsNicName + DisplayString, + dafsNicDevice + DisplayString, + dafsNicState + Integer32, + dafsNicListenAddr + OCTET STRING, + dafsNicNumRqstDemons + Integer32, + dafsNicInBytes + Counter32, + dafsNicDirectInBytes + Counter32, + dafsNicOutBytes + Counter32, + dafsNicDirectOutBytes + Counter32 + } + + dafsNicIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each interface. Its value + ranges between 1 and the value of DafsNicNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { dafsNicEntry 1 } + + dafsNicName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing the logical name + under which the nic has been attached." + ::= { dafsNicEntry 2} + + dafsNicDevice OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing the physical name + of the nic that has been attached." + ::= { dafsNicEntry 3} + + dafsNicState OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current state of DAFS nic" + ::= { dafsNicEntry 4 } + + dafsNicListenAddr OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Transport specific address structure giving the + DAFS listen address for this NIC." + ::= { dafsNicEntry 5} + + + dafsNicNumRqstDemons OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Number of request demons assigned to this Nic + to handle Nic related events. Data ONTAP Specific" + ::= { dafsNicEntry 6} + + dafsNicInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, include DMA, received on + this interface" + ::= { dafsNicEntry 7} + + dafsNicDirectInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes read directly from the + peer memory through this interface" + ::= { dafsNicEntry 8} + + dafsNicOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, include DMA, sent on + this interface" + ::= { dafsNicEntry 9} + + dafsNicDirectOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes written directly to the + peer memory through this interface" + ::= { dafsNicEntry 10} + + -- -- -- -- -- -- -- -- -- -- + -- DAFS Server Statistics -- + -- -- -- -- -- -- -- -- -- -- + + curDafs OBJECT IDENTIFIER ::= {dafs 3} + + dafsPendingRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide current number of requests that are + queued waiting for resources Data ONTAP Specific" + ::= { curDafs 1 } + + dafsCurrentRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Server wide current number of active requests + Data ONTAP Specific" + ::= { curDafs 2 } + + totDafs OBJECT IDENTIFIER ::= {dafs 4} + + dafsCalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of DAFS calls since last reboot" + ::= { totDafs 1 } + + dafsClientAuths OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Client Auth calls since last reboot" + ::= { totDafs 2 } + + dafsClientConnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Client Connect calls since last reboot" + ::= { totDafs 3 } + + dafsClientConnectAuths OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Client Connect Auth calls since last reboot" + ::= { totDafs 4 } + + dafsConnectBinds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Connect Bind calls since last reboot" + ::= { totDafs 5 } + + dafsDisconnects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Disconnect calls since last reboot" + ::= { totDafs 6 } + + dafsRegisterCreds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Register Credential calls since last reboot" + ::= { totDafs 7 } + + dafsReleaseCreds OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Release Credential calls since last reboot" + ::= { totDafs 8 } + + dafsSecinfos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Secinfo calls since last reboot" + ::= { totDafs 9 } + + dafsServerAuths OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Server Auth calls since last reboot" + ::= { totDafs 10 } + + dafsCheckResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Check Response calls since last reboot" + ::= { totDafs 11 } + + dafsFetchResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Fetch Response calls since last reboot" + ::= { totDafs 12 } + + dafsDiscardResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Discard Responses calls since last reboot" + ::= { totDafs 13 } + + dafsAccesses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Access calls since last reboot" + ::= { totDafs 14 } + + dafsCacheHints OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Cache Hint calls since last reboot" + ::= { totDafs 15 } + + dafsCloses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Close calls since last reboot" + ::= { totDafs 16 } + + dafsCommits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Commit calls since last reboot" + ::= { totDafs 17 } + + dafsCreates OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Create calls since last reboot" + ::= { totDafs 18 } + + dafsDelegPurges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Delegate Purge calls since last reboot" + ::= { totDafs 19 } + + dafsDelegReturns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Delegate Return calls since last reboot" + ::= { totDafs 20 } + + dafsGetFsattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Get Fsattr calls since last reboot" + ::= { totDafs 21 } + + dafsGetRootHandles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Get Root Handle calls since last reboot" + ::= { totDafs 22 } + + dafsGetattrInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Getattr Inline calls since last reboot" + ::= { totDafs 23 } + + dafsGetattrDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Getattr Direct calls since last reboot" + ::= { totDafs 24 } + + dafsLinks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Link calls since last reboot" + ::= { totDafs 25 } + + dafsLocks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Lock calls since last reboot" + ::= { totDafs 26 } + + dafsLockts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LockT calls since last reboot" + ::= { totDafs 27} + + dafsLockus OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LockU calls since last reboot" + ::= { totDafs 28 } + + dafsLookUps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LookUp calls since last reboot" + ::= { totDafs 29 } + + dafsLookUpps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of LookUpp calls since last reboot" + ::= { totDafs 30 } + + dafsNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Null calls since last reboot" + ::= { totDafs 31 } + + dafsNverifys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Nverify calls since last reboot" + ::= { totDafs 32 } + + dafsOpens OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Open calls since last reboot" + ::= { totDafs 33 } + + dafsOpenDowngrades OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Open Downgrade calls since last reboot" + ::= { totDafs 34 } + + dafsOpenattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Openattr calls since last reboot" + ::= { totDafs 35 } + + dafsReadInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Read Inline calls since last reboot" + ::= { totDafs 36 } + + dafsReadDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Read Direct calls since last reboot" + ::= { totDafs 37 } + + dafsReaddirInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readdir Inline calls since last reboot" + ::= { totDafs 38 } + + dafsReaddirDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readdir Direct calls since last reboot" + ::= { totDafs 39 } + + dafsReadlinkInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readlink Inline calls since last reboot" + ::= { totDafs 40 } + + dafsReadlinkDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Readlink Direct calls since last reboot" + ::= { totDafs 41 } + + dafsRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Remove calls since last reboot" + ::= { totDafs 42 } + + dafsRenames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Rename calls since last reboot" + ::= { totDafs 43 } + + dafsSetattrInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Setattr Inline calls since last reboot" + ::= { totDafs 44 } + + dafsSetattrDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Setattr Direct calls since last reboot" + ::= { totDafs 45 } + + dafsVerifys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Verify calls since last reboot" + ::= { totDafs 46 } + + dafsBatchSubmits OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Batch Submit calls since last reboot" + ::= { totDafs 47 } + + dafsWriteInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Write Inline calls since last reboot" + ::= { totDafs 48 } + + dafsWriteDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Write Direct calls since last reboot" + ::= { totDafs 49 } + + dafsBcGetattrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Getattr calls since last reboot" + ::= { totDafs 50 } + + dafsBcNulls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Null calls since last reboot" + ::= { totDafs 51 } + + dafsBcRecalls OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Recall calls since last reboot" + ::= { totDafs 52 } + + dafsBcBatchCompletions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of BC Batch Completion calls since + last reboot" + ::= { totDafs 53 } + + dafsAppendInlines OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Append Inline calls since + last reboot" + ::= { totDafs 54 } + + dafsAppendDirects OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Append Direct calls since + last reboot" + ::= { totDafs 55 } + + dafsGetFencingLists OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Get Fencing List calls since + last reboot" + ::= { totDafs 56 } + + dafsSetFencingLists OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Set Fencing List calls since + last reboot" + ::= { totDafs 57 } + + dafsHurryUps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of Hurry Up calls since + last reboot" + ::= { totDafs 58 } + + dafsInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, including DMA, received since the + last reboot" + ::= { totDafs 59 } + + dafsDirectInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes received directly into memory + since last reboot" + ::= { totDafs 60 } + + dafsOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes, including DMA, sent since the + last reboot" + ::= { totDafs 61 } + + dafsDirectOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of bytes sent directly into remote memory since + the last reboot" + ::= { totDafs 62 } + + dafsSessionTable OBJECT-TYPE + SYNTAX SEQUENCE OF DafsSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing current DAFS client session + information." + ::= { dafs 5 } + + dafsSessionEntry OBJECT-TYPE + SYNTAX DafsSessionEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a particular DAFS + session. An object of this type is transient, + in that it ceases to exist when (or soon after) + the client disconnects." + + INDEX { dafsSessionIndex } + ::= { dafsSessionTable 1 } + + DafsSessionEntry ::= + SEQUENCE { + dafsSessionIndex + Integer32, + dafsSessionId + OCTET STRING, + dafsSessionEndian + Integer32, + dafsSessionAllowBackChannel + Integer32, + dafsSessionAllowRdmaReadChannel + Integer32, + dafsSessionUseChecksums + Integer32, + dafsSessionMaxCredentials + Integer32, + dafsSessionMaxRequestSize + Integer32, + dafsSessionMaxResponseSize + Integer32, + dafsSessionMaxRequests + Integer32, + dafsSessionInlineWriteHeaderSize + Integer32, + dafsSessionClientIdString + OCTET STRING, + dafsSessionClientVerifier + OCTET STRING, + dafsSessionNumCredentials + Integer32, + dafsSessionNumRequests + Integer32 + } + + dafsSessionIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each session." + ::= { dafsSessionEntry 1 } + + dafsSessionId OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session Identifier assigned by the server." + ::= { dafsSessionEntry 2 } + + dafsSessionEndian OBJECT-TYPE + SYNTAX INTEGER { + bigEndian(1), + littleEndian(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Byte order used on this session." + ::= { dafsSessionEntry 3 } + + dafsSessionAllowBackChannel OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session may use a back control channel." + ::= { dafsSessionEntry 4 } + + dafsSessionAllowRdmaReadChannel OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session may use a RDMA read channel." + ::= { dafsSessionEntry 5 } + + dafsSessionUseChecksums OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Session uses checksums." + ::= { dafsSessionEntry 6 } + + dafsSessionMaxCredentials OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of credientials that can be registered + on this session." + ::= { dafsSessionEntry 7 } + + dafsSessionMaxRequestSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum size of a DAFS request." + ::= { dafsSessionEntry 8 } + + dafsSessionMaxResponseSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum size of a DAFS response." + ::= { dafsSessionEntry 9 } + + dafsSessionMaxRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of concurrent requests." + ::= { dafsSessionEntry 10 } + + dafsSessionInlineWriteHeaderSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of DAFS headers plus padding to the start of + data. Used to better align inline data." + ::= { dafsSessionEntry 11 } + + dafsSessionClientIdString OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Client ID string supplied by the client. Intended to + uniquely identify that client." + ::= { dafsSessionEntry 12 } + + dafsSessionClientVerifier OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Supplied by the client to uniquely identify an + instnce of a client." + ::= { dafsSessionEntry 13 } + + dafsSessionNumCredentials OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of credentials registered on this + session" + ::= { dafsSessionEntry 14 } + + dafsSessionNumRequests OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of active requests on this session" + ::= { dafsSessionEntry 15 } + + -- the DAFS Export table + + -- The DAFS Export table contains information about this + -- entity's exported filesystems + + dafsExportTable OBJECT-TYPE + SYNTAX SEQUENCE OF DafsExportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing DAFS Export filesystems." + ::= { dafs 6 } + + dafsExportEntry OBJECT-TYPE + SYNTAX DafsExportEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a particular current DAFS + export. An object of this type is transient, + in that it ceases to exist when (or soon after) + the export is deleted." + INDEX { dafsExportIndex } + ::= { dafsExportTable 1 } + + DafsExportEntry ::= + SEQUENCE { + dafsExportIndex + Integer32, + dafsExportName + DisplayString, + dafsExportPath + DisplayString, + dafsExportEnabled + Integer32, + dafsExportRwMode + Integer32, + dafsExportAccessList + DisplayString + } + + dafsExportIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each export. Its value + ranges between 1 and the number of exports. The + value for each export must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { dafsExportEntry 1 } + + dafsExportName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + export. This is the logical export name." + ::= { dafsExportEntry 2} + + dafsExportPath OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + export. This is the local filesystem path to + the export." + ::= { dafsExportEntry 3} + + dafsExportEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This export is available for access." + ::= { dafsExportEntry 4 } + + dafsExportRwMode OBJECT-TYPE + SYNTAX INTEGER { + readwrite(1), + readmostly(2), + readonly(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Global export mode. This represents the maximum + access rights." + ::= { dafsExportEntry 5 } + + dafsExportAccessList OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + export. This is the list of hosts that may + access the export. If empty, all hosts may + access the export." + ::= { dafsExportEntry 6 } + + -------------------------- + -- VI interface statistics + -------------------------- + + viaNodeConnection OBJECT IDENTIFIER ::= { vi 1 } + + viaNodeSystemName OBJECT-TYPE + SYNTAX DisplayString(SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string by which the node is identified in the cluster." + ::= { viaNodeConnection 1 } + + viaCreated OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs created." + ::= { viaNodeConnection 2 } + + viaConnectRequest OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times Connect Request call is made." + ::= { viaNodeConnection 3 } + + viaConnectWait OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times Connect wait call is made." + ::= { viaNodeConnection 4 } + + viaDisconnect OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of times VI got disconnected with out any error." + ::= { viaNodeConnection 5 } + + viaConnectTimeOut OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of times VI connect request got timed out." + ::= { viaNodeConnection 6 } + + viaConnected OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of time VI got connected with out any error." + ::= { viaNodeConnection 7 } + + viaCurrConnectPending OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which connect request is pending." + ::= { viaNodeConnection 8 } + + viaCurrConnectWaitPending OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which connect wait request is pending." + ::= { viaNodeConnection 9 } + + viaCurrConnected OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which the current state is CONNECTED." + ::= { viaNodeConnection 10 } + + viaCurrError OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs for which the current state is ERROR" + ::= { viaNodeConnection 11 } + + viaTotalError OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of VIs which encountered error state." + ::= { viaNodeConnection 12 } + + viaInMsgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming Messages received." + ::= { viaNodeConnection 13 } + + viaInRdma OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming RDMA requests received." + ::= { viaNodeConnection 14 } + + viaInBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming bytes received, including those + received in error. This count includes bytes received on + currently established connections. This corresponds to the sum + of bytes received through received messages, incoming RDMA writes + and RDMA reads issued" + ::= { viaNodeConnection 15 } + + viaInRDMAReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of incoming bytes received through RDMA read, + including those received in error. This count includes bytes + received on currently established connections." + ::= { viaNodeConnection 16 } + + viaInRDMAWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes received through incoming RDMA writes, + including those received in error. This count includes bytes + received on currently established connections." + ::= { viaNodeConnection 17 } + + viaOutMsgs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Messages sent." + ::= { viaNodeConnection 18 } + + viaOutRdma OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of RDMA requests sent." + ::= { viaNodeConnection 19 } + + viaOutBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes sent, including those + sent in error. This count includes bytes sent on + currently established connections." + ::= { viaNodeConnection 20 } + + viaOutRDMAReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes sent through an incoming + RDMA read request, including those sent in error. + This count includes bytes sent on currently established + connections." + ::= { viaNodeConnection 21 } + + viaOutRDMAWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes sent through a RDMA write + operation, including those sent in error. This count + includes bytes sent on currently established connections." + ::= { viaNodeConnection 22 } + + + viaConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF ViaConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing via connection specific information." + ::= { viaNodeConnection 23 } + + viaConnEntry OBJECT-TYPE + SYNTAX ViaConnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A conceptual row of the viaConnTable containing information + about a particular current via connection. Each row of this + table is transient, and it ceases to exist when the + connection makes transition to the CLOSED state." + INDEX { viaConnVINumber } + ::= { viaConnTable 1 } + + ViaConnEntry ::= SEQUENCE { + viaConnState Integer32, + viaConnVINumber Integer32, + viaConnRemoteNetAddress IpAddress, + viaConnLocalNetAddress IpAddress, + viaConnRemotePortNumber Integer32, + viaConnLocalPortNumber Integer32, + viaConnLocalDescriminator OCTET STRING, + viaConnRemoteDescriminator OCTET STRING, + viaConnLocalMaxTransferSize Integer32, + viaConnRemoteMaxTransferSize Integer32, + viaConnLocalEnableRdmaWrite Integer32, + viaConnLocalEnableRdmaRead Integer32, + viaConnRemoteEnableRdmaWrite Integer32, + viaConnRemoteEnableRdmaRead Integer32, + viaConnSentMessages Counter32, + viaConnSentRdmaReadMessages Counter32, + viaConnSentRdmaWriteMessages Counter32, + viaConnRcvdMessages Counter32, + viaConnRcvdRdmaReadMessages Counter32, + viaConnRcvdRdmaWriteMessages Counter32 + } + + viaConnState OBJECT-TYPE + SYNTAX INTEGER { + idle (1), + pendingConnect(2), + connected(3), + error(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of this via connection + Legal States: + Idle 1 + Pending Connect 2 + Connected 3 + Error 4" + ::= { viaConnEntry 1 } + + viaConnVINumber OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number which uniquely defines a connection." + ::= { viaConnEntry 2 } + + viaConnRemoteNetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "IP address of the remote system of the connection." + ::= { viaConnEntry 3 } + + viaConnLocalNetAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Local IPadress of the connection." + ::= { viaConnEntry 4 } + + viaConnRemotePortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Remote TCP portnumber of the connection." + ::= { viaConnEntry 5 } + + viaConnLocalPortNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Local TCP Portnumber of the connection." + ::= { viaConnEntry 6 } + + viaConnLocalDescriminator OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An identifier used by the local process to identify the + VI connection." + ::= { viaConnEntry 7 } + + viaConnRemoteDescriminator OBJECT-TYPE + SYNTAX OCTET STRING + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An identifier used by the remote process to identify the + VI connection." + ::= { viaConnEntry 8 } + + viaConnLocalMaxTransferSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local limit on the maximum packet size that can be + transfered through the connection." + ::= { viaConnEntry 9 } + + viaConnRemoteMaxTransferSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The remote limit on the maximum packet size that can be + transfered through the connection." + ::= { viaConnEntry 10 } + + viaConnLocalEnableRdmaWrite OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA write is enabled + in the local system otherwise, it is 0." + ::= { viaConnEntry 11 } + + viaConnLocalEnableRdmaRead OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA read is enabled + in the local system otherwise, it is 0." + ::= { viaConnEntry 12 } + + viaConnRemoteEnableRdmaWrite OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA write is enabled + in the remote system otherwise, it is 0." + ::= { viaConnEntry 13 } + + viaConnRemoteEnableRdmaRead OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value is 1 if remote DMA read is enabled + in the remote system otherwise, it is 0." + ::= { viaConnEntry 14 } + + viaConnSentMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of messages sent through the connection." + ::= { viaConnEntry 15 } + + viaConnSentRdmaReadMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma read messages sent through the + connection." + ::= { viaConnEntry 16 } + + viaConnSentRdmaWriteMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma write messages sent through the + connection." + ::= { viaConnEntry 17 } + + viaConnRcvdMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of messages received through the connection." + ::= { viaConnEntry 18 } + + viaConnRcvdRdmaReadMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma read messages received through the + connection." + ::= { viaConnEntry 19 } + + viaConnRcvdRdmaWriteMessages OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of rdma write messages received through the + connection." + ::= { viaConnEntry 20 } + + viaErrors OBJECT IDENTIFIER ::= { vi 2 } + + viaErrPostDesc OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of descriptors completed in error + by NIC." + ::= { viaErrors 1 } + + viaErrConnLost OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Lost Connection errors. " + ::= { viaErrors 2 } + + viaErrRecvQEmpty OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors due to an empty receive Queue. " + ::= { viaErrors 3 } + + viaErrRdmawProt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of remote DMA write protection errors. " + ::= { viaErrors 4 } + + viaErrRdmarProt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of remote DMA read protection errors. " + ::= { viaErrors 5 } + + viaErrCompProt OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of protection errors. " + ::= { viaErrors 6 } + + viaErrorThreshold OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Setting this threshold will cause a trap to be enabled + such that if the total error exceeds error threshold set + a viaNodeErrorsTrap trap will be generated." + ::= { viaErrors 7 } + + viaNicAttributes OBJECT IDENTIFIER ::= { vi 3 } + + viaNicTable OBJECT-TYPE + SYNTAX SEQUENCE OF ViaNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing via NIC-specific information." + ::= { viaNicAttributes 1} + + viaNicEntry OBJECT-TYPE + SYNTAX ViaNicEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A conceptual row of the viaNicTable containing information + about a particular present VINic." + + INDEX { viaNicIndex } + ::= { viaNicTable 1 } + + ViaNicEntry ::= SEQUENCE { + viaNicIndex Integer32, + viaName DisplayString, + viaHardwareVersion DisplayString, + viaProviderVersion DisplayString, + viaNicAddress PhysAddress, + viaThreadSafe Integer32, + viaMaxDiscriminatorLength Integer32, + viaMaxRegisterBytes Integer32, + viaMaxRegisterRegions Integer32, + viaMaxRegisterBlockBytes Integer32, + viaMaxVI Integer32, + viaMaxDescriptorsPerQueue Integer32, + viaMaxSegmentsPerDesc Integer32, + viaMaxCQ Integer32, + viaMaxCQEntries Integer32, + viaMaxTransferSize Integer32, + viaNativeMTU Integer32, + viaMaxPTags Integer32, + viaCurrRegisterBytes Integer32, + viaCurrRegisterRegions Integer32, + viaCurrVI Integer32, + viaCurrCQ Integer32, + viaCurrPTags Integer32, + viaConnectionListenPort Integer32 + } + + viaNicIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The index of the NIC in the NIC table." + ::= { viaNicEntry 1 } + + viaName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The symbolic name of the NIC device." + ::= { viaNicEntry 2 } + + viaHardwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the VINIC described by this MIB." + ::= { viaNicEntry 3 } + + viaProviderVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the VI provider." + ::= { viaNicEntry 4 } + + viaNicAddress OBJECT-TYPE + SYNTAX PhysAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Network address of this NIC." + ::= { viaNicEntry 5 } + + viaThreadSafe OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "1 if synchronisation model is thread safe else 0." + ::= { viaNicEntry 6 } + + viaMaxDiscriminatorLength OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of bytes that the VI provider allows + for a connection descriminator." + ::= { viaNicEntry 7 } + + viaMaxRegisterBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of bytes that can be registered." + ::= { viaNicEntry 8 } + + viaMaxRegisterRegions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of memory regions that can be registered." + ::= { viaNicEntry 9 } + + viaMaxRegisterBlockBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Largest contiguous block of memory that can be registered." + ::= { viaNicEntry 10 } + + viaMaxVI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The limit on the total number of VI instances this entity can + support." + ::= { viaNicEntry 11 } + + viaMaxDescriptorsPerQueue OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum Descriptors per VI Work Queue that this VI provider + can support." + ::= { viaNicEntry 12 } + + viaMaxSegmentsPerDesc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of segments per descriptor that this VI provider + can support." + ::= { viaNicEntry 13 } + + viaMaxCQ OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of completion queues this VI provider can support." + ::= { viaNicEntry 14 } + + viaMaxCQEntries OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of Completion queue entries per completion queue + that this VI provider can support." + ::= { viaNicEntry 15 } + + viaMaxTransferSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum transfer size supported by the VI Nic. The maximum + transfer size is the amount of data that can be described by a + single VI descriptor." + ::= { viaNicEntry 16 } + + viaNativeMTU OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The native MTU size of the underlying network. For frame-based + networks, this could reflect its native frame size. For cell-based + networks, it could reflect the MTU of the appropriate abstraction + layer that it supports." + ::= { viaNicEntry 17 } + + viaMaxPTags OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of protection tags that are supported by this + VI provider." + ::= { viaNicEntry 18 } + + viaCurrRegisterBytes OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of bytes registered by the VI user for this + NIC." + ::= { viaNicEntry 19 } + + viaCurrRegisterRegions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of memory regions that is registered by VI user + for this NIC." + ::= { viaNicEntry 20 } + + viaCurrVI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current number of VI instances for this NIC." + ::= { viaNicEntry 21 } + + viaCurrCQ OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current number of completion queues this VI provider + has." + ::= { viaNicEntry 22 } + + viaCurrPTags OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current Number of protection tags this VI provider has." + ::= { viaNicEntry 23 } + + viaConnectionListenPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Port number on which VI server is listening for VI connection + request." + ::= { viaNicEntry 24 } + + + -- -- -- -- -- -- -- -- + -- VFILER group -- + -- -- -- -- -- -- -- -- + vfilerIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether vfiler is licensed on the + filer." + ::= { vfiler 1 } + + vfFilers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of vfilers in the physical Filer." + ::= { vfiler 2 } + + vfTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler general information " + ::= { vfiler 3 } + + vfEntry OBJECT-TYPE + SYNTAX VfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler information" + INDEX { vfIndex} + ::= { vfTable 1 } + + VfEntry ::= + SEQUENCE { + vfIndex + Integer32, + vfName + DisplayString, + vfUuid + OCTET STRING, + vfIpAddresses + Integer32, + vfStoragePaths + Integer32, + vfIpSpace + DisplayString, + vfAllowedProtocols + Integer32, + vfDisallowedProtocols + Integer32, + vfState + Integer32 + } + + vfIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the referenced vfiler." + ::= { vfEntry 1 } + + + vfName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A textual string that contains the name of the referenced vfiler." + ::= { vfEntry 2 } + + vfUuid OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..36)) + MAX-ACCESS read-only + STATUS current + + DESCRIPTION + "The UUID of the referenced vfiler." + ::= { vfEntry 3 } + + vfIpAddresses OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of IP addresses for the referenced vfiler." + ::= { vfEntry 4 } + + + vfStoragePaths OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of storage paths for the referenced vfiler." + ::= { vfEntry 5 } + + vfIpSpace OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A textual string that contains the name of the ipspace that the referenced vfiler belongs to." + ::= { vfEntry 6 } + + vfAllowedProtocols OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of protocols allowed for the referenced vfiler." + ::= { vfEntry 7 } + + vfDisallowedProtocols OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of protocols disallowed for the referenced vfiler." + ::= { vfEntry 8 } + + vfState OBJECT-TYPE + SYNTAX INTEGER { + stopped (1), + running (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the vfiler: Running or stopped." + ::= { vfEntry 9 } + + vfIpTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler IP addresses information " + ::= { vfiler 4 } + + vfIpEntry OBJECT-TYPE + SYNTAX VfIpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler IP addresses information" + INDEX { vfFiIndex, vfIpIndex } + ::= { vfIpTable 1 } + + VfIpEntry ::= + SEQUENCE { + vfFiIndex + Integer32, + vfIpIndex + Integer32, + vfIpAddr + IpAddress + } + + vfFiIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced vfiler." + ::= { vfIpEntry 1 } + + vfIpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies which IP address in the referenced vfiler." + ::= { vfIpEntry 2 } + + vfIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A IP address for the referenced vfiler." + ::= { vfIpEntry 3 } + + vfSpTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfSpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler storage path information " + ::= { vfiler 5 } + + vfSpEntry OBJECT-TYPE + SYNTAX VfSpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler storage path information" + INDEX { vfFsIndex, vfSpIndex } + ::= { vfSpTable 1 } + + VfSpEntry ::= + SEQUENCE { + vfFsIndex + Integer32, + vfSpIndex + Integer32, + vfSpName + OCTET STRING + } + + vfFsIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced vfiler." + ::= { vfSpEntry 1 } + + vfSpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies which storage path in the referenced vfiler." + ::= { vfSpEntry 2 } + + vfSpName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The storage path name for the referenced vfiler." + ::= { vfSpEntry 3 } + + + vfProTable OBJECT-TYPE + SYNTAX SEQUENCE OF VfProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler protocol information " + ::= { vfiler 6 } + + vfProEntry OBJECT-TYPE + SYNTAX VfProEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-vfiler protocol information" + INDEX { vfFpIndex, vfProIndex } + ::= { vfProTable 1 } + + VfProEntry ::= + SEQUENCE { + vfFpIndex + Integer32, + vfProIndex + Integer32, + vfProName + OCTET STRING, + vfProStatus + Integer32 + } + + vfFpIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced vfiler." + ::= { vfProEntry 1 } + + vfProIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a protocol in the referenced vfiler." + ::= { vfProEntry 2 } + + vfProName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..1024)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string that contains the protocol name for the referenced vfiler." + ::= { vfProEntry 3 } + + vfProStatus OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the referenced vfiler protocol is allowed or disallowed." + ::= { vfProEntry 4 } + + -- -- -- -- -- -- -- -- + -- Block access protocols group -- + -- -- -- -- -- -- -- -- + fcpIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether FCP access protocols are licensed on the + filer." + ::= { blocks 1 } + + iscsiIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether iSCSI access protocols are licensed on the + filer." + ::= { blocks 2 } + + fcpLowReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via FCP + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 3 } + + fcpHighReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via FCP + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 4 } + + + fcpLowWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via FCP + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 5 } + + + fcpHighWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via FCP + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 6 } + + + iscsiLowReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via iSCSI + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 7 } + + + iscsiHighReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via iSCSI + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 8 } + + + iscsiLowWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via iSCSI + since the last boot. This object returns the + least significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 9 } + + + iscsiHighWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via iSCSI + since the last boot. This object returns the + most significant 32 bits of the 64 bit unsigned + integer." + ::= { blocks 10 } + + + iscsiHighOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of iSCSI ops handled since the + last boot. This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 11} + + iscsiLowOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of iSCSI ops handled since the + last boot. This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 12} + + fcpHighOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of FCP ops handled since the + last boot. This object returns the most significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 13} + + fcpLowOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of FCP ops handled since the + last boot. This object returns the least significant + 32 bits of the 64 bit unsigned integer." + ::= {blocks 14} + + lun OBJECT IDENTIFIER ::= {blocks 15 } + + lunCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of LUNs in the Filer." + ::= { lun 1 } + + lunTable OBJECT-TYPE + SYNTAX SEQUENCE OF LunEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-LUN general information " + ::= {lun 2} + + lunEntry OBJECT-TYPE + SYNTAX LunEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-LUN information" + INDEX { lunIndex} + ::= { lunTable 1 } + + LunEntry ::= + SEQUENCE { + lunIndex Integer32, + lunName DisplayString, + lunComment DisplayString, + lunSizeLow Integer32, + lunSizeHigh Integer32, + lunMapped Integer32, + lunSerialNumber DisplayString, + lunQtreeName DisplayString, + lunHighOps Counter32, + lunLowOps Counter32, + lunHighReadBytes Counter32, + lunLowReadBytes Counter32, + lunHighWriteBytes Counter32, + lunLowWriteBytes Counter32, + lunHighErrors Counter32, + lunLowErrors Counter32, + lunOnline Integer32, + lunSnapStatus Integer32, + lunShareStatus Integer32, + lunSpaceReserved Integer32, + lunStatsResetTime Integer32, + lunHighReadOps Counter32, + lunLowReadOps Counter32, + lunHighWriteOps Counter32, + lunLowWriteOps Counter32, + lunHighOtherOps Counter32, + lunLowOtherOps Counter32, + lunSize64 Counter64, + lun64Ops Counter64, + lun64ReadBytes Counter64, + lun64WriteBytes Counter64, + lun64Errors Counter64, + lun64ReadOps Counter64, + lun64WriteOps Counter64, + lun64OtherOps Counter64 + } + + lunIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the referenced LUN." + ::= { lunEntry 1 } + + lunName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the LUN. This is also the path to the LUN + on the filer." + ::= { lunEntry 2 } + + lunComment OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The comment, if any, for this LUN." + ::= { lunEntry 3 } + + lunSizeLow OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of the LUN in bytes. This object returns the + least significant 32 bits of the 64 bit unsigned integer." + ::= { lunEntry 4 } + + lunSizeHigh OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of the LUN in bytes. This object returns the + most significant 32 bits of the 64 bit unsigned integer." + ::= { lunEntry 5 } + + lunMapped OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This LUN has been mapped to at least one initiator group." + ::= { lunEntry 6 } + + lunSerialNumber OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 12 character SCSI serial number of the LUN." + ::= { lunEntry 7 } + + + lunQtreeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string that indicates which qtree this LUN belongs to." + ::= { lunEntry 8 } + + lunHighOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops for + this LUN since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 9} + + lunLowOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops for + this LUN since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 10 } + + lunHighReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from this LUN + since the stats were last reset. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 11 } + + lunLowReadBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from this LUN + since the stats were last reset. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 12 } + + + lunHighWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to this LUN + since the stats were last reset. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 13 } + + lunLowWriteBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to this LUN + since the stats were last reset. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { lunEntry 14 } + + lunHighErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors seen on this LUN + since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 15 } + + lunLowErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors seen on this LUN + since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 16 } + + lunOnline OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the LUN is online." + ::= { lunEntry 17 } + + lunSnapStatus OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether a snapshot of this LUN can be taken." + ::= { lunEntry 18 } + + + lunShareStatus OBJECT-TYPE + SYNTAX INTEGER { + none(1), + read(2), + write(3), + all(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sharing status for the LUN." + ::= { lunEntry 19 } + + + lunSpaceReserved OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether the LUN has space reservation enabled." + ::= { lunEntry 20 } + + lunStatsResetTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of seconds since this LUN's stats were + last reset." + ::= { lunEntry 21 } + + + lunHighReadOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI read ops for + this LUN since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 22} + + lunLowReadOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI read ops for + this LUN since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 23 } + + + lunHighWriteOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI write ops for + this LUN since the stats were last reset. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 24} + + lunLowWriteOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI write ops for + this LUN since the stats were last reset. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { lunEntry 25 } + + + lunHighOtherOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops that are not + read or write for this LUN since the stats were last + reset. This object returns the least significant 32 + bits of the 64 bit unsigned integer." + ::= { lunEntry 26} + + lunLowOtherOps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops that are not + read or write for this LUN since the stats were last + reset. This object returns the most significant 32 + bits of the 64 bit unsigned integer." + ::= { lunEntry 27 } + + lunSize64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Size of the LUN in bytes. This object returns all + of the 64 bit unsigned integer." + ::= { lunEntry 28 } + + lun64Ops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops for + this LUN since the stats were last reset. This object + all of the 64 bit unsigned integer." + ::= { lunEntry 29} + + lun64ReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read from this LUN + since the stats were last reset. This object returns + all of the 64 bit unsigned integer." + ::= { lunEntry 30 } + + lun64WriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written to this LUN + since the stats were last reset. This object returns + all of the 64 bit unsigned integer." + ::= { lunEntry 31 } + + lun64Errors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of errors seen on this LUN + since the stats were last reset. This object + returns all the 64 bit unsigned integer." + ::= { lunEntry 32 } + + lun64ReadOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI read ops for + this LUN since the stats were last reset. This object + returns all of the 64 bit unsigned integer." + ::= { lunEntry 33} + + lun64WriteOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI write ops for + this LUN since the stats were last reset. This object + returns all of the 64 bit unsigned integer." + ::= { lunEntry 34} + + lun64OtherOps OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Target side SCSI ops that are not + read or write for this LUN since the stats were last + reset. This object returns all of the 64 bit + unsigned integer." + ::= { lunEntry 35} + + lunMapTable OBJECT-TYPE + SYNTAX SEQUENCE OF LunMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a table listing the initiator group to + Logical Unit Number mapping for each LUN." + ::= { lun 3 } + + lunMapEntry OBJECT-TYPE + SYNTAX LunMapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a per LUN and Initiator group mapping of + SCSI logical unit numbers." + INDEX { lunMapLUNIndex, lunMapInitiatorGroupIndex } + ::= { lunMapTable 1 } + + LunMapEntry ::= + SEQUENCE { + lunMapLUNIndex Integer32, + lunMapInitiatorGroupIndex Integer32, + lunMapLUNName DisplayString, + lunMapInitiatorGroupName DisplayString, + lunMapLogicalUnitNumber Integer32 + } + + lunMapLUNIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the LUN in the table." + ::= { lunMapEntry 1 } + + lunMapInitiatorGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies an initiator group in + the table." + ::= { lunMapEntry 2 } + + lunMapLUNName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the LUN." + ::= { lunMapEntry 3 } + + lunMapInitiatorGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the initiator group that this LUN is + mapped to." + ::= { lunMapEntry 4 } + + lunMapLogicalUnitNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "SCSI Logical Unit Number that this LUN is mapped to + for this initiator group." + ::= { lunMapEntry 5 } + + initiator OBJECT IDENTIFIER ::= {blocks 16} + + initiatorGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF InitiatorGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-initiator group general + information " + ::= {initiator 1} + + initiatorGroupEntry OBJECT-TYPE + SYNTAX InitiatorGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-initiator group information" + INDEX { initiatorGroupIndex } + ::= { initiatorGroupTable 1 } + + InitiatorGroupEntry ::= + SEQUENCE { + initiatorGroupIndex Integer32, + initiatorGroupName DisplayString, + initiatorGroupType Integer32, + initiatorGroupOS Integer32, + initiatorGroupThrottleReserve Integer32, + initiatorGroupThrottleBorrow Integer32, + initiatorGroupUsePartner Integer32, + initiatorGroupUseALUA Integer32 + } + + initiatorGroupIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific initiator group." + ::= { initiatorGroupEntry 1 } + + initiatorGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the initiator group" + ::= { initiatorGroupEntry 2 } + + initiatorGroupType OBJECT-TYPE + SYNTAX INTEGER { + fcp(1), + iSCSI(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this initiator group, either iSCSI or FCP" + ::= { initiatorGroupEntry 3 } + + initiatorGroupOS OBJECT-TYPE + SYNTAX INTEGER { + default(1), + solaris(2), + windows(3), + hpux(4), + aix(5), + linux(6), + defaultPartner(7), + netware(8), + vmware(9), + openvms(10), + invalid(256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Operating system the clients in this initiator + group run. This governs the finer details of + SCSI protocol interaction with these initiators" + ::= { initiatorGroupEntry 4 } + + initiatorGroupThrottleReserve OBJECT-TYPE + SYNTAX Integer32 (0..99) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Percentage of filer scsi command blocks reserved for + this initiator group" + ::= { initiatorGroupEntry 5 } + + + initiatorGroupThrottleBorrow OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "True if this inititiator group is allowed to + exceed it's throttle settings if more resources + are needed and otherwise available. If + initiatorGroupThrottleReserve is 0, this value + is meaningless" + ::= { initiatorGroupEntry 6 } + + initiatorGroupUsePartner OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The takeover mode for the initiator group. This is + only applicable to FCP initiator groups on clustered + filers" + ::= { initiatorGroupEntry 7 } + + initiatorGroupUseALUA OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If true this initiator group supports Asymetric Logical + Unit Access." + ::= { initiatorGroupEntry 8 } + + + initiatorGroupMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF InitiatorGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of individual Initator names in each Initiator + group" + ::= {initiator 2} + + initiatorGroupMemberEntry OBJECT-TYPE + SYNTAX InitiatorGroupMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-initiator group information" + INDEX { initiatorGroupMemberIndex, initiatorGroupMemberNameIndex} + ::= { initiatorGroupMemberTable 1 } + + InitiatorGroupMemberEntry ::= + SEQUENCE { + initiatorGroupMemberIndex + Integer32, + initiatorGroupMemberNameIndex + Integer32, + initiatorName + DisplayString + } + + initiatorGroupMemberIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific initiator group." + ::= { initiatorGroupMemberEntry 1 } + + initiatorGroupMemberNameIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number the identifies the initiator in the group." + ::= { initiatorGroupMemberEntry 2 } + + initiatorName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name for this initiator." + ::= { initiatorGroupMemberEntry 3 } + + initiatorListTable OBJECT-TYPE + SYNTAX SEQUENCE OF InitatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of initiators that are connected to the filer." + ::= { initiator 3 } + + initiatorListEntry OBJECT-TYPE + SYNTAX InitatorListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per-connected-initiator information." + INDEX { initiatorListEntryIndex} + ::= { initiatorListTable 1 } + + InitatorListEntry ::= + SEQUENCE { + initiatorListEntryIndex Integer32, + targetAdapterName DisplayString, + connectedInitiatorNodeName DisplayString, + connectedInitiatorPortName DisplayString, + connectedInitiatorType Integer32, + connectedInitiatorIsid DisplayString, + connectedInitiatorPortalGroup Integer32 + } + + initiatorListEntryIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies the initiator connected to + the target adapter." + ::= { initiatorListEntry 1 } + + targetAdapterName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the target adapter in the filer." + ::= { initiatorListEntry 2 } + + connectedInitiatorNodeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name for this initiator node." + ::= { initiatorListEntry 3 } + + connectedInitiatorPortName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FibreChannel device's portname. This is FCP only." + ::= { initiatorListEntry 4 } + + connectedInitiatorType OBJECT-TYPE + SYNTAX INTEGER { + fcp(1), + iSCSI(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this init group, either iSCSI or FCP" + ::= { initiatorListEntry 5 } + + connectedInitiatorIsid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The iSCSI isid (initiator session id) for this initiator. + This is iSCSI only." + ::= { initiatorListEntry 6 } + + connectedInitiatorPortalGroup OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The iSCSI portal group ID for this initiator. + This is iSCSI only." + ::= { initiatorListEntry 7 } + + + fcpTarget OBJECT IDENTIFIER ::= {blocks 17} + + fcpTargetTable OBJECT-TYPE + SYNTAX SEQUENCE OF FcpTargetTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of fcp target adapter general + information " + ::= {fcpTarget 1} + + fcpTargetTableEntry OBJECT-TYPE + SYNTAX FcpTargetTableEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of per fcp target device information" + INDEX { fcpTargetTableIndex } + ::= { fcpTargetTable 1 } + + FcpTargetTableEntry ::= + SEQUENCE { + fcpTargetTableIndex Integer32, + fcpTargetName DisplayString, + fcpTargetNN DisplayString, + fcpTargetPN DisplayString, + fcpTargetSpeed Integer32, + fcpTargetStatus Integer32, + fcpTargetStandby Integer32, + fcpTargetTopology Integer32, + fcpTargetType Integer32 + } + + fcpTargetTableIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific fcp target device." + ::= { fcpTargetTableEntry 1 } + + fcpTargetName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the fcp target device" + ::= { fcpTargetTableEntry 2 } + + fcpTargetNN OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FC WWNN of the fcp target device" + ::= { fcpTargetTableEntry 3 } + + fcpTargetPN OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The FC WWPN of the fcp target device" + ::= { fcpTargetTableEntry 4 } + + fcpTargetSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "speed in gigabits per second. 0 is unknown." + ::= { fcpTargetTableEntry 5 } + + fcpTargetStatus OBJECT-TYPE + SYNTAX INTEGER { + startup(1), + uninitialized(2), + initializingFW(3), + linkNotConnected(4), + waitingForLinkUp(5), + online(6), + linkDisconnected(7), + resetting(8), + offline(9), + offlinedByUserSystem(10), + unknown(11) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Status of the fcp target adapter" + ::= { fcpTargetTableEntry 6 } + + fcpTargetStandby OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether this target adapter is in standby mode." + ::= { fcpTargetTableEntry 7 } + + fcpTargetTopology OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + fabric(2), + pointToPoint(3), + loop(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "fibre channel topology for this adapter. " + ::= { fcpTargetTableEntry 8 } + + fcpTargetType OBJECT-TYPE + SYNTAX INTEGER { + physical(1), + local(2), + standby(3), + partner(4), + unknown(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Responsibility/Type for this adapter." + ::= { fcpTargetTableEntry 9 } + + fcpCfMode OBJECT-TYPE + SYNTAX INTEGER { + mixed(1), + standby(2), + partner(3), + partnerProxy(4), + partnerStandby(5), + localPrimary(6), + dualFabric(7), + ssi(8), + unknown(256) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Failover setting for the FCP target cluster." + ::= { blocks 18 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- Port sets + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + pset OBJECT IDENTIFIER ::= {blocks 19} + + psetTable OBJECT-TYPE + SYNTAX SEQUENCE OF PortSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of portset general + information " + ::= {pset 1} + + psetEntry OBJECT-TYPE + SYNTAX PortSetEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of portset information" + INDEX { psetIndex } + ::= { psetTable 1 } + + PortSetEntry ::= + SEQUENCE { + psetIndex Integer32, + psetName DisplayString, + psetType Integer32 + } + + psetIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific port set." + ::= { psetEntry 1 } + + psetName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the port set" + ::= { psetEntry 2 } + + psetType OBJECT-TYPE + SYNTAX INTEGER { + fcp(1), + iSCSI(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Type of this port set, either iSCSI or FCP" + ::= { psetEntry 3 } + + psetMemberTable OBJECT-TYPE + SYNTAX SEQUENCE OF PsetMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Table of individual Port names in each Port + set" + ::= {pset 2} + + psetMemberEntry OBJECT-TYPE + SYNTAX PsetMemberEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of portset port information" + INDEX { psetMemberIndex, psetMemberNameIndex} + ::= { psetMemberTable 1 } + + PsetMemberEntry ::= + SEQUENCE { + psetMemberIndex + Integer32, + psetMemberNameIndex + Integer32, + psetPortName + DisplayString + } + + psetMemberIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies a specific port set." + ::= { psetMemberEntry 1 } + + psetMemberNameIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number the identifies the port in the set." + ::= { psetMemberEntry 2 } + + psetPortName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual name for this port." + ::= { psetMemberEntry 3 } + + -- The rest of the blocks group. + + fcp64ReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via FCP + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 20 } + + fcp64WriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via FCP + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 21 } + + iscsi64ReadBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes read via iSCSI + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 22 } + + iscsi64WriteBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of bytes written via iSCSI + since the last boot. This object returns all + of the 64 bit unsigned integer." + ::= { blocks 23 } + + iscsi64Ops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of iSCSI ops handled since the + last boot. This object returns all of the 64 bit + unsigned integer." + ::= { blocks 24 } + + fcp64Ops OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of FCP ops handled since the + last boot. This object returns all of the 64 bit + unsigned integer." + ::= { blocks 25 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NFS caching group + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NFS caching options + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + nfsCacheOptions OBJECT IDENTIFIER ::= { nfscache 1 } + + nfsCacheIsEnabled OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NFS caching is enabled on this system." + ::= { nfsCacheOptions 1 } + + nfsCacheIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Whether NFS caching is licensed on this system." + ::= { nfsCacheOptions 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NFS caching stats + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + nfsCacheStats OBJECT IDENTIFIER ::= { nfscache 2 } + + nfsCacheBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes received from clients" + ::= { nfsCacheStats 1 } + + nfsCacheBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes sent to clients" + ::= { nfsCacheStats 2 } + + nfsCacheBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes received from servers" + ::= { nfsCacheStats 3 } + + nfsCacheBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS bytes sent to servers" + ::= { nfsCacheStats 4 } + + nfsCacheTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS requests received" + ::= { nfsCacheStats 5 } + + nfsCacheHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS requests resulting in cache hits" + ::= { nfsCacheStats 6 } + + nfsCacheMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "Total NFS requests resulting in cache misses" + ::= { nfsCacheStats 7 } + + nfsCacheMissCacheableRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests that were cacheable misses" + ::= { nfsCacheStats 8 } + + nfsCacheMissUnCacheableRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests that were uncacheable misses" + ::= { nfsCacheStats 9 } + + nfsCacheEjectRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in object eject due to expiration" + ::= { nfsCacheStats 10 } + + nfsCacheVerifyRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in object verification" + ::= { nfsCacheStats 11 } + + nfsCacheRpcRecords OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total RPC records received" + ::= { nfsCacheStats 12 } + + nfsCacheBWSavings OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Bandwidth savings for NFS requests" + ::= { nfsCacheStats 13 } + + nfsCacheHighBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from clients. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 14 } + + nfsCacheLowBytesFromClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from clients. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 15 } + + nfsCacheHighBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to clients. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 16 } + + nfsCacheLowBytesToClients OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to clients. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 17 } + + nfsCacheHighBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from servers. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 18 } + + nfsCacheLowBytesFromServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from servers. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 19 } + + nfsCacheHighBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to servers. This object + returns the most significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 20 } + + nfsCacheLowBytesToServers OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to servers. This object + returns the least significant 32 bits of the 64 bit + unsigned integer." + ::= { nfsCacheStats 21 } + + nfsCacheHighTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests received. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 22 } + + nfsCacheLowTotalRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests received. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { nfsCacheStats 23 } + + nfsCacheHighHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache hits. This + object returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 24 } + + nfsCacheLowHitRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache hits. This + object returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 25 } + + nfsCacheHighMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache misses. This + object returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 26 } + + nfsCacheLowMissRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache misses. This + object returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { nfsCacheStats 27 } + + nfsCache64BytesFromClients OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from clients. This object + returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 28 } + + nfsCache64BytesToClients OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to clients. This object returns + all of the 64 bit unsigned integer." + ::= { nfsCacheStats 29 } + + nfsCache64BytesFromServers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes received from servers. This object + returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 30 } + + nfsCache64BytesToServers OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS bytes sent to servers. This object + returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 31 } + + nfsCache64TotalRequests OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests received. This object returns + all of the 64 bit unsigned integer." + ::= { nfsCacheStats 32 } + + nfsCache64HitRequests OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache hits. This + object returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 33 } + + nfsCache64MissRequests OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total NFS requests resulting in cache misses. This + object returns all of the 64 bit unsigned integer." + ::= { nfsCacheStats 34 } + + -- -- -- -- -- -- -- -- + -- the storage group -- + -- -- -- -- -- -- -- -- + + enclosure OBJECT IDENTIFIER ::= { storage 1 } + + -- -- -- -- -- -- -- + -- The enclosure group for storage + + enclNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of storage enclosures in the storage subsystem." + ::= { enclosure 1 } + + enclTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display disk enclosure environmental information for fiber + channel shelves and NearStore SCSI shelves. Shelves that do not + support SCSI Enclosure Services, such as DEC Storage Shelf, + Eurologic XL8 are not supported." + ::= { enclosure 2 } + + enclEntry OBJECT-TYPE + SYNTAX EnclEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Display disk enclosure (shelf) environmental + information for the referenced disk enclosure." + INDEX { enclIndex } + ::= { enclTable 1 } + + EnclEntry ::= + SEQUENCE { + enclIndex + Integer32, + enclContactState + Integer32, + enclChannelShelfAddr + DisplayString, + enclProductLogicalID + DisplayString, + enclProductID + DisplayString, + enclProductVendor + DisplayString, + enclProductModel + DisplayString, + enclProductRevision + DisplayString, + enclProductSerialNo + DisplayString, + enclNumberDiskBays + Integer32, + enclDisksPresent + DisplayString, + enclPowerSuppliesMaximum + Integer32, + enclPowerSuppliesPresent + DisplayString, + enclPowerSuppliesSerialNos + DisplayString, + enclPowerSuppliesFailed + DisplayString, + enclFansMaximum + Integer32, + enclFansPresent + DisplayString, + enclFansFailed + DisplayString, + enclTempSensorsMaximum + Integer32, + enclTempSensorsPresent + DisplayString, + enclTempSensorsOverTempFail + DisplayString, + enclTempSensorsOverTempWarn + DisplayString, + enclTempSensorsUnderTempFail + DisplayString, + enclTempSensorsUnderTempWarn + DisplayString, + enclTempSensorsCurrentTemp + DisplayString, + enclTempSensorsOverTempFailThr + DisplayString, + enclTempSensorsOverTempWarnThr + DisplayString, + enclTempSensorsUnderTempFailThr + DisplayString, + enclTempSensorsUnderTempWarnThr + DisplayString, + enclElectronicsMaximum + Integer32, + enclElectronicsPresent + DisplayString, + enclElectronicsSerialNos + DisplayString, + enclElectronicsFailed + DisplayString, + enclVoltSensorsMaximum + Integer32, + enclVoltSensorsPresent + DisplayString, + enclVoltSensorsOverVoltFail + DisplayString, + enclVoltSensorsOverVoltWarn + DisplayString, + enclVoltSensorsUnderVoltFail + DisplayString, + enclVoltSensorsUnderVoltWarn + DisplayString, + enclVoltSensorsOverVoltFailThr + DisplayString, + enclVoltSensorsOverVoltWarnThr + DisplayString, + enclVoltSensorsUnderVoltFailThr + DisplayString, + enclVoltSensorsUnderVoltWarnThr + DisplayString, + enclVoltSensorsCurrentVolt + DisplayString, + enclCurSensorsMaximum + Integer32, + enclCurSensorsPresent + DisplayString, + enclCurSensorsOverCurFail + DisplayString, + enclCurSensorsOverCurWarn + DisplayString, + enclCurSensorsOverCurFailThr + DisplayString, + enclCurSensorsOverCurWarnThr + DisplayString, + enclCurSensorsCurrentCur + DisplayString + } + + enclIndex OBJECT-TYPE + SYNTAX Integer32 (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this enclosure among the + possible monitored enclosures. This number normally + uniquely identifies one shelf within one boot, + but may it change between boots. The number may + also change within a boot if shelves are removed + and added." + ::= { enclEntry 1 } + + enclContactState OBJECT-TYPE + SYNTAX INTEGER { + initializing(1), + transitioning(2), + active(3), + inactive(4), + reconfiguring(5), + nonexistent(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the communication between the filer or storage + engine and the enclosure monitoring device in the enclosure." + ::= { enclEntry 2 } + + enclChannelShelfAddr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The adapter number or switch name and the port number + (together, called the channel), and shelf ID of this + enclosure. Examples are 8a.1 and switch:5.1." + ::= { enclEntry 3 } + + enclProductLogicalID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The logical identifier of this enclosure. This a form of the + World-Wide Name (WWN)." + ::= { enclEntry 4 } + + enclProductID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The product ID of the shelf hardware module that provides + the enclosure monitoring function. Example is LRC." + ::= { enclEntry 5 } + + enclProductVendor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the vendor of this enclosure. Example is Xyratex." + ::= { enclEntry 6 } + + enclProductModel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model name of this enclosure. Example is DiskShelf14." + ::= { enclEntry 7 } + + enclProductRevision OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The revision number of this enclosure." + ::= { enclEntry 8 } + + enclProductSerialNo OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number of this enclosure." + ::= { enclEntry 9 } + + enclNumberDiskBays OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of disk bays in this enclosure." + ::= { enclEntry 10 } + + enclDisksPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of disks present by bay number in this enclosure." + ::= { enclEntry 11 } + + enclPowerSuppliesMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of power supplies in this enclosure." + ::= { enclEntry 12 } + + enclPowerSuppliesPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of power supplies present in the enclosure. + Numbering is from left to right in their intended location + in the shelf, while facing the supplies." + ::= { enclEntry 13 } + + enclPowerSuppliesSerialNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of serial numbers of power supplies present + in the enclosure. Not all shelves are able to report the + power supply serial number. Communication errors may + make the serial number unavailable. Numbering is from left + to right in their intended location in the shelf, while + facing the supplies." + ::= { enclEntry 14 } + + enclPowerSuppliesFailed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of failed power supplies in this enclosure, numbered as + in enclPowerSuppliesPresent." + ::= { enclEntry 15 } + + enclFansMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of fans or fan modules monitored by this + enclosure. R100/R150 shelf power supply fans are not included + in this number." + ::= { enclEntry 16 } + + enclFansPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of fans or fan modules present and for which status + is known in this enclosure. Fans are numbered left-to-right as + facing the fans. R100/R150 shelf power supply fans are + not included in this list." + ::= { enclEntry 17 } + + enclFansFailed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of failed fans or fan modules in this enclosure. Fans + are numbered as described in enclFansPresent." + ::= { enclEntry 18 } + + enclTempSensorsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum number of temperature sensors monitored + by this enclosure." + ::= { enclEntry 19 } + + enclTempSensorsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors present and for which + status is known in this enclosure. Temperature sensors are + numbered top-to-bottom and left-to-right, beginning with + the front of the enclosure, then the rear, as the modules + containing them are faced." + ::= { enclEntry 20 } + + enclTempSensorsOverTempFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting + overtemperature failure in this enclosure. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 21 } + + enclTempSensorsOverTempWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting overtemperature + warning in this enclosure. Sensors are numbered as in + TempSensorsPresent." + ::= { enclEntry 22 } + + enclTempSensorsUnderTempFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting undertemperature + failure in this enclosure. Sensors are numbered as in + TempSensorsPresent." + ::= { enclEntry 23 } + + enclTempSensorsUnderTempWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperature sensors reporting undertemperature + warning in this enclosure. Sensors are numbered as in + TempSensorsPresent." + ::= { enclEntry 24 } + + enclTempSensorsCurrentTemp OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of temperatures reported by all temperature sensors in + the enclosure, including the ambient temperature. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 25 } + + enclTempSensorsOverTempFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overtemperature failure thresholds for all + temperature sensors in the enclosure. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 26 } + + enclTempSensorsOverTempWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overtemperature warning thresholds for all + temperature sensors in the enclosure. Sensors are + numbered as in TempSensorsPresent." + ::= { enclEntry 27 } + + enclTempSensorsUnderTempFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undertemperature failure thresholds for all + temperature sensors in the enclosure. Sensors are numbered as + in TempSensorsPresent." + ::= { enclEntry 28 } + + enclTempSensorsUnderTempWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undertemperature warning thresholds for all + temperature sensors in the enclosure. Sensors are numbered as + in TempSensorsPresent." + ::= { enclEntry 29 } + + enclElectronicsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of enclosure services electronics modules that it is + possible for this enclosure to detect and/or monitor." + ::= { enclEntry 30 } + + enclElectronicsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list those enclosure services electronics modules present in + this enclosure. Numbering is from left-to-right or top-to-bottom + in their intended location in the shelf, while facing the + electronics modules. It is normal for the R200 FC-AT module to be + reported as the second module." + ::= { enclEntry 31 } + + enclElectronicsSerialNos OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of serial numbers of the enclosure services electronics + modules present in this enclosure. The order follows that of + enclElectronicsPresent." + ::= { enclEntry 32 } + + enclElectronicsFailed OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of failed electronics elements. Valid only if + enclElectronicsPresent shows that some are present." + ::= { enclEntry 33 } + + enclVoltSensorsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of voltage sensors monitored by + this enclosure." + ::= { enclEntry 34 } + + enclVoltSensorsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors present and for which + status is known in this enclosure. Voltage sensors are + numbered top-to-bottom and left-to-right, beginning with + the front of the enclosure, then the rear, as the modules + containing them are faced." + ::= { enclEntry 35 } + + enclVoltSensorsOverVoltFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting + overvoltage failure in this enclosure. Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 36 } + + enclVoltSensorsOverVoltWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting overvoltage + warning in this enclosure. Sensors are numbered as in + VoltSensorsPresent." + ::= { enclEntry 37 } + + enclVoltSensorsUnderVoltFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting undervoltage + failure in this enclosure. Sensors are numbered as in + VoltSensorsPresent." + ::= { enclEntry 38 } + + enclVoltSensorsUnderVoltWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltage sensors reporting undervoltage + warning in this enclosure. Sensors are numbered as in + VoltSensorsPresent." + ::= { enclEntry 39 } + + enclVoltSensorsCurrentVolt OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of voltages reported by all voltage sensors in + the enclosure, Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 40 } + + enclVoltSensorsOverVoltFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overvoltage failure thresholds for all + voltage sensors in the enclosure. Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 41 } + + enclVoltSensorsOverVoltWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overvoltage warning thresholds for all + voltage sensors in the enclosure. Sensors are + numbered as in VoltSensorsPresent." + ::= { enclEntry 42 } + + enclVoltSensorsUnderVoltFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undervoltage failure thresholds for all + voltage sensors in the enclosure. Sensors are numbered as + in VoltSensorsPresent." + ::= { enclEntry 43 } + + enclVoltSensorsUnderVoltWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of undervoltage warning thresholds for all + voltage sensors in the enclosure. Sensors are numbered as + in VoltSensorsPresent." + ::= { enclEntry 44 } + + enclCurSensorsMaximum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of current sensors monitored by + this enclosure." + ::= { enclEntry 45 } + + enclCurSensorsPresent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of current sensors present and for which + status is known in this enclosure. Current sensors are + numbered top-to-bottom and left-to-right, beginning with + the front of the enclosure, then the rear, as the modules + containing them are faced." + ::= { enclEntry 46 } + + enclCurSensorsOverCurFail OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of current sensors reporting + overcurrent failure in this enclosure. Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 47 } + + enclCurSensorsOverCurWarn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of current sensors reporting overcurrent + warning in this enclosure. Sensors are numbered as in + CurSensorsPresent." + ::= { enclEntry 48 } + + enclCurSensorsCurrentCur OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of currents reported by all current sensors in + the enclosure, Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 49 } + + enclCurSensorsOverCurFailThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overcurrent failure thresholds for all + current sensors in the enclosure. Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 50 } + + enclCurSensorsOverCurWarnThr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The list of overcurrent warning thresholds for all + current sensors in the enclosure. Sensors are + numbered as in CurSensorsPresent." + ::= { enclEntry 51 } + + -- -- -- -- -- -- -- -- + -- the network group + -- -- -- -- -- -- -- -- + + netInterfaces OBJECT IDENTIFIER ::= { network 1 } + + -- The net Interfaces table contains information on the entity's + -- interfaces. + + + netifNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of network interfaces (regardless of + their current state) present on this system." + ::= { netInterfaces 1 } + + netifTable OBJECT-TYPE + SYNTAX SEQUENCE OF NetIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of netifNumber." + ::= { netInterfaces 2 } + + netifEntry OBJECT-TYPE + SYNTAX NetIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An interface entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { netifIndex } + ::= { netifTable 1 } + + NetIfEntry ::= + SEQUENCE { + netifIndex + Integer32, + netifDescr + DisplayString, + ifHighInOctets + Counter32, + ifLowInOctets + Counter32, + ifHighInUcastPkts + Counter32, + ifLowInUcastPkts + Counter32, + ifHighInNUcastPkts + Counter32, + ifLowInNUcastPkts + Counter32, + ifHighInDiscards + Counter32, + ifLowInDiscards + Counter32, + ifHighInErrors + Counter32, + ifLowInErrors + Counter32, + ifHighInUnknownProtos + Counter32, + ifLowInUnknownProtos + Counter32, + ifHighOutOctets + Counter32, + ifLowOutOctets + Counter32, + ifHighOutUcastPkts + Counter32, + ifLowOutUcastPkts + Counter32, + ifHighOutNUcastPkts + Counter32, + ifLowOutNUcastPkts + Counter32, + ifHighOutDiscards + Counter32, + ifLowOutDiscards + Counter32, + ifHighOutErrors + Counter32, + ifLowOutErrors + Counter32, + if64InOctets + Counter64, + if64InUcastPkts + Counter64, + if64InNUcastPkts + Counter64, + if64InDiscards + Counter64, + if64InErrors + Counter64, + if64InUnknownProtos + Counter64, + if64OutOctets + Counter64, + if64OutUcastPkts + Counter64, + if64OutNUcastPkts + Counter64, + if64OutDiscards + Counter64, + if64OutErrors + Counter64 + } + netifIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each interface. Its value + ranges between 1 and the value of ifNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { netifEntry 1 } + + netifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of + the manufacturer, the product name and the version + of the hardware interface." + ::= { netifEntry 2 } + + ifHighInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the + interface, including framing characters. + This object returns the most significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 3 } + + ifLowInOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the + interface, including framing characters. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 4 } + + ifHighInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol. + This object returns the most significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 5 } + + ifLowInUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 6 } + + + ifHighInNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol. + This object returns the most significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 7 } + + ifLowInNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 8 } + + ifHighInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space. This object returns the most + significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 9 } + + ifLowInDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space. This object returns the least + significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 10 } + + ifHighInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol. This object returns the + most significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 11 } + + ifLowInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol. This object returns the + least significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 12 } + + ifHighInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol. This object returns the + most significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 13 } + + ifLowInUnknownProtos OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol. This object returns the + least significant 32 bits of the 64 bit unsigned integer." + ::= { netifEntry 14 } + + ifHighOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + This object returns the most significant 32 bits of the + 64 bit unsigned integer." + ::= { netifEntry 15 } + + ifLowOutOctets OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + This object returns the least significant 32 bits of + the 64 bit unsigned integer." + ::= { netifEntry 16 } + + ifHighOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 17 } + + ifLowOutUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 18 } + + ifHighOutNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 19 } + + ifLowOutNUcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 20 } + + ifHighOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 21 } + + ifLowOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 22 } + + ifHighOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors. This object returns + the most significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 23 } + + ifLowOutErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors. This object returns + the least significant 32 bits of the 64 bit unsigned + integer." + ::= { netifEntry 24 } + + if64InOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets received on the + interface, including framing characters. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 25 } + + if64InUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 26 } + + if64InNUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 27 } + + if64InDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space. This object returns all of the 64 bit + unsigned integer." + ::= { netifEntry 28 } + + if64InErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol. This object returns all + of the 64 bit unsigned integer." + ::= { netifEntry 29 } + + if64InUnknownProtos OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol. This object returns all + of the 64 bit unsigned integer." + ::= { netifEntry 30 } + + if64OutOctets OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters. + This object returns all of the 64 bit unsigned integer." + ::= { netifEntry 31 } + + if64OutUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 32 } + + if64OutNUcastPkts OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 33 } + + if64OutDiscards OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 34 } + + if64OutErrors OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors. This object returns + all of the 64 bit unsigned integer." + ::= { netifEntry 35 } + + -- -- -- -- -- -- -- -- + -- the sis group + -- -- -- -- -- -- -- -- + + sisIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether Advanced SIS is licensed on the + filer." + ::= { sis 1 } + + sisTable OBJECT-TYPE + SYNTAX SEQUENCE OF SisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a list of the SIS volumes on the + system." + + ::= { sis 2 } + + sisEntry OBJECT-TYPE + SYNTAX SisEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide details about a particular SIS volume." + + INDEX { sisIndex } + ::= { sisTable 1 } + + SisEntry ::= + SEQUENCE { + sisIndex + Integer32, + sisPath + DisplayString, + sisState + Integer32, + sisStatus + Integer32, + sisProgress + DisplayString, + sisType + Integer32, + sisSchedule + DisplayString, + sisLastOpBeginTime + DisplayString, + sisLastOpEndTime + DisplayString, + sisHighLastOpSize + Integer32, + sisLowLastOpSize + Integer32, + sisLastOpError + DisplayString, + sis64LastOpSize + Counter64 + } + + sisIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + SIS volume." + ::= { sisEntry 1 } + + sisPath OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The path to the SIS volume." + ::= { sisEntry 2 } + + sisState OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabled(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether SIS is enabled on the + volume or not." + ::= { sisEntry 3 } + + sisStatus OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + active(2), + undoing(3), + pending(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Current status of the SIS volume." + ::= { sisEntry 4 } + + sisProgress OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The progress of the current SIS operation." + ::= { sisEntry 5 } + + sisType OBJECT-TYPE + SYNTAX INTEGER { + regular(1), + snapvault(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether it is a regular or + snapvaulted SIS volume." + ::= { sisEntry 6 } + + sisSchedule OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The schedule for the SIS opertions." + ::= { sisEntry 7 } + + sisLastOpBeginTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The starting time of the last completed SIS + opertion." + ::= { sisEntry 8 } + + sisLastOpEndTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ending time of the last completed SIS + operation." + ::= { sisEntry 9 } + + sisHighLastOpSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that the + last completed SIS operation had processed. + This object returns the most significant 32 + bits of the 64 bit unsigned integer." + ::= { sisEntry 10 } + + sisLowLastOpSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that the + last completed SIS operation had processed. + This object returns the least significant 32 + bits of the 64 bit unsigned integer." + ::= { sisEntry 11 } + + sisLastOpError OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The error that the last SIS operation + encountered if it failed." + ::= { sisEntry 12 } + + sis64LastOpSize OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total amount of data in KBytes that the + last completed SIS operation had processed. + This object returns all of the 64 bit + unsigned integer." + ::= { sisEntry 13 } + + + -- -- -- -- -- -- -- -- -- + -- the compression group + -- -- -- -- -- -- -- -- -- + + compressIsLicensed OBJECT-TYPE + SYNTAX INTEGER { + false(1), + true(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether compression is licensed on + the filer." + ::= { compress 1 } + + compressTable OBJECT-TYPE + SYNTAX SEQUENCE OF CompressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the total space used as + well as the space saved by compression on + volumes." + ::= { compress 2 } + + + -- display the active file system compression statistics + + compressEntry OBJECT-TYPE + SYNTAX CompressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Provide a report of the total space used as + well as the space saved by compression on + the referenced file system." + INDEX { compressIndex } + ::= { compressTable 1 } + + CompressEntry ::= + SEQUENCE { + compressIndex + Integer32, + compressFileSys + DisplayString, + compressHighUsedKBytes + Counter32, + compressLowUsedKBytes + Counter32, + compress64UsedKBytes + Counter64, + compressHighSavedKBytes + Counter32, + compressLowSavedKBytes + Counter32, + compress64SavedKBytes + Counter64, + compressPercentSaved + INTEGER + } + + compressIndex OBJECT-TYPE + SYNTAX Integer32 (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A number that identifies this entry for the + referenced file system." + ::= { compressEntry 1 } + + compressFileSys OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name for the referenced file system." + ::= { compressEntry 2 } + + compressHighUsedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the most significant 32 bits of the 64 + bit unsigned integer." + ::= { compressEntry 3 } + + compressLowUsedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns the least significant 32 bits of the + 64 bit unsigned integer." + ::= { compressEntry 4 } + + compress64UsedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total disk space in KBytes that is in use + on the referenced file system. This object + returns all of the 64 bit unsigned integer." + ::= { compressEntry 5 } + + compressHighSavedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk space in KBytes of disk space that + is saved by compression on the referenced + file system. This object returns the most + significant 32 bits of the 64 bit unsigned + integer." + ::= { compressEntry 6 } + + compressLowSavedKBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk space in KBytes of disk space that + is saved by compression on the referenced + filesystem. This object returns the least + significant 32 bits of the 64 bit unsigned + integer." + ::= { compressEntry 7 } + + compress64SavedKBytes OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The disk space in KBytes of disk space that + is saved by compression on the referenced + filesystem. This object returns all of the + 64 bit unsigned integer." + ::= { compressEntry 8 } + + compressPercentSaved OBJECT-TYPE + SYNTAX INTEGER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of disk space saved by + compression on the referenced filesystem." + ::= { compressEntry 9 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- NetApp trap definitions + -- See RFC 1215 for instructions on building traps + -- + -- All EnterpiseSpecific Traps of Network Appliance + -- contain the OIDs 'productTrapData and productSerialNum' + -- except traps with the trap types - + -- globalStatusNonRecoverable + -- globalStatusCritical + -- globalStatusNonCritical + -- globalStatusOk + -- which contain the OIDs 'miscGlobalStatusMessage and productSerialNum' + -- + -- The last digit of a trap contains information about the + -- priority of the trap: + -- + -- 1 emergency + -- 2 alert + -- 3 critical + -- 4 error + -- 5 warning + -- 6 notification + -- 7 information + -- 8 debug + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- A generic, unprioritized, user-defined trap. These + -- are generated in releases prior to 5.4. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + userDefined NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A polling-style trap built using the 'snmp traps' + command on the filer." + + ::= { netapp 0 2 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- Disk Health Monitor Notices for Disk Fault + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + dhmNoticeDegradedIO NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Disk Health Monitor - + Reported a Disk Degraded-I/O Event" + + ::= { netapp 0 6 } + + dhmNoticePFAEvent NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Disk Health Monitor - + Reported a Disk Predictive-Failure Event" + + ::= { netapp 0 7 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains generic user-defined traps. + -- All user-defined traps with the same priority + -- use the trap for that priority level. + -- + -- For example, all "critical" user-defined traps are + -- sent with ID 13. The string data sent with the + -- trap identifies the specific critical event. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + emergencyTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating an extremely urgent + situation, usually indicating that the system has + failed and is shutting down." + + ::= { netapp 0 11 } + + alertTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating a condition that + should be corrected immediately, such as a failed disk." + + ::= { netapp 0 12 } + + criticalTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating a critical condition, + such as a hard device error." + + ::= { netapp 0 13 } + + errorTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating an error condition, + such as a mistake in a configuration file." + + ::= { netapp 0 14 } + + warningTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap indicating a condition which + is not an error, but which may require special handling." + + ::= { netapp 0 15 } + + notificationTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap meant to provide notification, + such as an hourly uptime message." + + ::= { netapp 0 16 } + + informationalTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap used for informational purposes." + + ::= { netapp 0 17 } + + dbgTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user-defined trap used for debugging purposes. + This trap was previously mis-documented as being trap + number 17, with the name debugTrap. It has always, + actually, been trap 18. The name change is to avoid + issues with environments that already have a record + for debugTrap." + + ::= { netapp 0 18 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- Specific traps. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + + diskFailedShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System is shutting down because the system has been + running in degraded mode for 24 hours. + The trap includes a string describing the failed disk." + + ::= { netapp 0 21 } + + diskFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more disks failed. + The trap includes a string describing the failed disk(s)." + + ::= { netapp 0 22 } + + diskRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The failed disks have been repaired. + This trap is a placeholder - + it is not currently sent by Data ONTAP." + + ::= { netapp 0 26 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- The fan and power supply traps are not supported + -- on all platforms. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + fanFailureShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Critical chassis or cpu fans have failed and the system + is shutting down." + + ::= { netapp 0 31 } + + fanFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis fans failed. + The trap includes a string describing the failed fan(s)." + + ::= { netapp 0 33 } + + fanWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis or cpu fans are in warning state. + The trap includes a string describing the fan(s) in + the warning state." + + ::= { netapp 0 35 } + + fanRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All fans are repaired." + + ::= { netapp 0 36 } + + powerSupplyFailureShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Critical power supplies or power rails failed and + the system is shutting down." + + ::= { netapp 0 41 } + + powerSupplyFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more redundant power supplies failed. + Include in the trap a string describing + the failed power supply(ies)." + + ::= { netapp 0 43 } + + powerSupplyWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more power supplies or power rails in + warning state. Include in the trap a string describing + the power supply(ies) or the power rail(s) in the + warning state." + + ::= { netapp 0 45 } + + powerSupplyRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Previously-failed power supplies or power rails have been + repaired." + + ::= { netapp 0 46 } + + cpuTooBusy NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "CPU utilization exceeds 90%. + This trap is not enabled by default. + To enable this trap set the registry + entry options.monitor.cpu.enable to on. + Note that as the threshold for this trap is + checked once a minute it is possible to receive + multiple instances of this trap in a short time." + + + ::= { netapp 0 55 } + + cpuOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "CPU utilization has dropped back below 90%. + This trap is a placeholder - + it is not currently sent by Data ONTAP." + + ::= { netapp 0 56 } + + nvramBatteryDischarged NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The NVRAM battery is fully discharged." + + ::= { netapp 0 62 } + + nvramBatteryLow NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The charge in the NVRAM battery is low." + + ::= { netapp 0 63 } + + clusterNodeFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A node in a Cluster FailOver configuration failed. + Its partner will assume service for the failed node." + + ::= { netapp 0 72 } + + clusterNodeTakenOver NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The partner has taken over for a failed cluster node." + + ::= { netapp 0 75 } + + clusterNodeRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A cluster node has resumed operation." + + ::= { netapp 0 76 } + + volumeFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "At least one volume is more than 98% full. + The string sent with the trap gives the + name of the volume or volumes which exceed + the volumeFull or volumeNearlyFull thresholds" + + ::= { netapp 0 82 } + + volumeNearlyFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "At least one volume is more than 95% full. + The string sent with the trap gives the + name of the volume or volumes which exceed + the volumeFull or volumeNearlyFull thresholds" + + ::= { netapp 0 85 } + + volumeRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All volumes are now under 95% full." + + ::= { netapp 0 86 } + + volumesStillFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "At least one volume that was full or nearly full is now OK, + but more volumes still exceed the volumeNearlyFull or + volumeFull thresholds. This trap is generally sent within + a short time of when a volume becomes OK, though if two + volumes become OK within this timeframe, only one trap is + sent. The string sent with the trap gives the name of the + volume or volumes which still exceed the volumeFull or + volumeNearlyFull thresholds. It does not send the name of + any volume that is OK." + + ::= { netapp 0 87 } + + overTempShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System temperature is too high to continue + operating. The system is shutting down." + + ::= { netapp 0 91 } + + overTemp NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System temperature is too high and in the + warning level." + + ::= { netapp 0 95 } + + overTempRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "System temperature has returned to an + acceptable value." + + ::= { netapp 0 96 } + + shelfFault NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A disk storage shelf reported a fault, probably due + to a problem with drive placement, fans, power, + or temperature." + + ::= { netapp 0 103 } + + + shelfRepaired NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A previously-reported shelf fault is now corrected." + + ::= { netapp 0 106 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains "general health" traps, + -- based on changes to the miscGlobalStatus + -- variable. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + globalStatusNonRecoverable NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status changed to + 'nonRecoverable', indicating a problem so severe + that the appliance is shutting down." + + ::= { netapp 0 111 } + + globalStatusCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status changed to 'critical', + indicating a problem that needs immediate attention." + + ::= { netapp 0 113 } + + globalStatusNonCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status changed to 'nonCritical', + indicating a problem that needs attention." + + ::= { netapp 0 115 } + + globalStatusOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The appliance's overall status returned to normal." + + ::= { netapp 0 116 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to soft quotas. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + softQuotaExceeded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user has exceeded their soft quota limit." + + ::= { netapp 0 126 } + + softQuotaNormal NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A user is safely back under their soft quota limit." + + ::= { netapp 0 127 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to autosupport + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + autosupportSendError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Unable to send autosupport. + The trap includes a string describing the reason for the failure." + + ::= { netapp 0 134 } + + autosupportConfigurationError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Autosupport may be configured incorrectly. + The trap includes a string describing the mis-configuration." + + ::= { netapp 0 135 } + + autosupportSent NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Autosupport was sent successfully." + + ::= { netapp 0 136 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to UPS + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + upsLinePowerOff NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Input line power has failed and UPS is now on battery." + + ::= { netapp 0 142 } + + upsBatteryCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Battery is nearly exhausted, starting graceful shutdown." + + ::= { netapp 0 143 } + + + upsShuttingDown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Shutting down now: Time left on battery is exhuasted." + + ::= { netapp 0 144 } + upsBatteryWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Warning: Time left on battery is getting critical." + + ::= { netapp 0 145 } + + upsLinePowerRetored NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "UPS: Input line power has been restored and UPS is now off battery." + + ::= { netapp 0 146 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Client Side Applications. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + appEmergency NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application encountered an extremely urgent + situation and requires an immediate response." + + ::= { netapp 0 151 } + + appAlert NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application is in a condition that should + be corrected immediately." + + ::= { netapp 0 152 } + + appCritical NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application encountered a critical condition." + + ::= { netapp 0 153 } + + appError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application encountered an error condition." + + ::= { netapp 0 154 } + + appWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application is in a condition which is not an + error, but which may require special handling." + + ::= { netapp 0 155 } + + appNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application is notifing of a certain event." + + ::= { netapp 0 156 } + + appInfo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application's message is meant for informational + purposes." + + ::= { netapp 0 157 } + + appTrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The application requires to be debugged." + + ::= { netapp 0 158 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Autosaving NT EVT files. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + alfFilewrap NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The internal audit file has wrapped. You are currently losing event + records. Warning the user." + + ::= { netapp 0 162 } + + + alfFileSaved NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The internal audit log has been autosaved to an external evt file. + Notifying the user." + + ::= { netapp 0 166 } + + alfFileNearlyFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The internal audit log file is nearly full. The file is going to + wrap. Notifying the user." + + ::= { netapp 0 167 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to generalized quota events. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + quotaExceeded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One of the quota limits has been exceeded. + The trap includes a string describing the specific event + which triggered the trap. The string is structured + in the following form: + + Quota Event: status=exceeded, type={hard|soft|threshold}, + user={username}, volume={volume}, limit_item={files|disk}, + limit_value={#files|#kilobytes} + [ , treeid={tree-id} ] [ , vfiler={vfiler} ] + + An example of a complete message would be: + + Quota Event: status=exceeded, type=soft, + user=admin, volume=vol1, limit_item=disk, limit_value=1000000, + treeid=8 + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 176 } + + quotaNormal NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One of the quota limits has gone back down to a normal level. + The trap includes a string describing the specific event + which triggered the trap. The string is structured + in the following form: + + Quota Event: status=normal, type={hard|soft|threshold}, + user={username}, volume={volume}, limit_item={files|disk}, + limit_value={#files|#kilobytes} + [ , treeid={tree-id} ] [ , vfiler={vfiler} ] + + An example of a complete message would be: + + Quota Event: status=normal, type=soft, + user=admin, volume=vol1, limit_item=disk, limit_value=1000000, + treeid=8 + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 177 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to alerting when 64MB directory + -- limit is nearly reached or has been reached. + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + waflDirNearlyFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The directory has surpassed 90% of its sub-directory limit. + The priority of waflDirFull and this trap are out of order + for backwards compatibility." + + ::= { netapp 0 186 } + + waflDirFull NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The directory has reached its sub-directory limit" + + ::= { netapp 0 187 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Correctable Memory ECC + -- errors + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + eccSummary NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Memory ECC: number of new correctable ECC errors" + + ::= { netapp 0 192 } + + eccMasked NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Memory ECC: High frequency of ECC errors" + + ::= { netapp 0 195 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to ftpd service + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ftpdError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Ftp daemon: service stopped" + + ::= { netapp 0 204 } + + ftpdMaxConnNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Ftp daemon: number of connections hits maximum number" + + ::= { netapp 0 206 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains additional traps related to ftpd service + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + ftpdMaxConnThresholdNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Ftp daemon: number of connections nearly hits maximum number" + + ::= { netapp 0 216 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to SCSI Target + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + scsitgtFCPLinkBreak NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "SCSI Target: Link Break on FCP adapter" + + ::= { netapp 0 222 } + + scsitgtPartnerPathMisconfigured NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "SCSI Target: FCP Partner Path Misconfigured" + + ::= { netapp 0 224 } + + scsitgtThrottleNotice NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "SCSI Target: Throttle limit event notification" + + ::= { netapp 0 226 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to VIF Failover & Link Status + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vifPrimaryLinkFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Vif: The primary Interface on a Single mode vif has failed" + + ::= { netapp 0 237 } + + vifAllLinksFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Vif: All the links of the vif have failed" + + ::= { netapp 0 238 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Vfiler status + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vfStopped NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A vFiler has stopped." + + ::= { netapp 0 245 } + + vfStarted NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A vFiler has started." + + ::= { netapp 0 246 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains traps related to Virus Scanning + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vscanVirusDetectedError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: A virus scanner has detected a virus on the Filer" + + ::= { netapp 0 254 } + + vscanDisConnection NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: A virus scanner has dropped its connection from the Filer" + + ::= { netapp 0 255 } + + vscanConfigurationChange NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: There has been a change to the vscan configuration" + ::= { netapp 0 256 } + + vscanConnection NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: A virus scanner has made a connection to the Filer" + + ::= { netapp 0 257 } + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + -- + -- This section contains additional traps related to Virus Scanning + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- + + vscanServerUpgrade NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "VScan: The Vscan server has been upgraded" + + ::= { netapp 0 266 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to volume status being offline, + -- online or restricted + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeRestrictedByMirrorBigIo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A volume that experienced a medium error during reconstruction + is restricted and marked wafl-inconsistent, but starting + wafliron has failed. This trap is issued to alert operator + that a volume is not accessible and wafliron must be started + to allow access to it." + + ::= { netapp 0 272 } + + volumeInconsistentUmount NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when we unmount a volume due to an + inconsistency." + + ::= { netapp 0 274 } + + volumeStateChanged NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is being taken offline or being restricted. + The string sent with trap specifies name of affected volume + and its state." + + ::= { netapp 0 275 } + + volumeOnline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is online now. The string sent with trap specifies + name of volume which is online now." + + ::= { netapp 0 276 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to remote management + -- controller (RMC) card status + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + rmcCardNeedsReplacement NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Remote Management Controller card needs replacement. The trap + includes a string specifying the reason for replacement" + + ::= { netapp 0 283 } + + rmcCardMissingCables NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Remote Management Controller card is missing its internal + cable, or LAN cable or power supply cable. The trap includes + a string specifing the missing component." + + ::= { netapp 0 284 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to remote volume + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeRemoteUnreachable NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Local volume encountered an error while communicating + to remote volume." + + ::= { netapp 0 294 } + + volumeRemoteOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The communication between remote volume and local volume + returned to normal." + + ::= { netapp 0 296 } + + volumeRemoteRestored NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The data on remote volume has been fully restored to local + volume." + + ::= { netapp 0 297 } + + volumeRemoteRestoreBegin NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The data on remote volume has started being restored to local + volume by Restore-on-Demand." + + ::= { netapp 0 298 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains more traps related to volume status being + -- offline, online or restricted + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeRestrictedRootConflict NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is restricted due to a root volume conflict. The + string sent with trap specifies name of conflicting volume + which is being restricted." + + ::= { netapp 0 304 } + + volumeOfflineTooBig NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume can not be brought online because its raw size is + larger than maximum allowed size. The string sent with trap + specifies name of affected volume and its raw size, and + maximum allowed size." + + ::= { netapp 0 314 } + + volumeOffline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is being taken offline. The string sent with trap + specifies name of affected volume and reason for being + taken offline." + + ::= { netapp 0 324 } + + volumeRestricted NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is being restricted. The string sent with trap + specifies name of affected volume and reason for being + restricted." + + ::= { netapp 0 334 } + + volumeDegradedDirty NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is degraded and has dirty parity. WAFL_check must be + run on this volume before it can be brought online. The string + sent with trap specifies name of affected volume." + + ::= { netapp 0 344 } + + volumeError NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when a volume can not be brought online + due to an error. The string sent with trap specifies name of + affected volume and error description." + + ::= { netapp 0 354 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- This section contains traps related to synchronous SnapMirror + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + snapmirrorSyncFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Synchronous SnapMirror failed and went into asynchronous mode." + ::= { netapp 0 364 } + + snapmirrorSyncOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Synchronous SnapMirror went into synchronous mode." + ::= { netapp 0 366 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- + -- New environmental traps + -- + -- A series of new environmental traps are constructed + -- to disambiguate many of the older traps (which are antiquated + -- but remain until they are completely removed from EMS usage). + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Chassis Temperature + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisTemperatureShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is extreme. The appliance has + initiated a shutdown to protect itself. The operating + environment should be monitored and corrected before + restarting the appliance." + + ::= { netapp 0 371 } + + chassisTemperatureWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is either too high or too low. + The temperature should be monitored and, if possible, corrected." + + ::= { netapp 0 372 } + + chassisTemperatureUnknown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is unknown, because reading can't be + obtained from the chassis temperature sensor." + + ::= { netapp 0 375 } + + chassisTemperatureOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis temperature is OK." + + ::= { netapp 0 376 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- CPU Fans + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisCPUFanStopped NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more CPU fans have stopped. The appliance + has initiated a shutdown to protect itself. A new + motherboard may be required to correct the fan. + Contact Network Appliance for direction." + + ::= { netapp 0 381 } + + chassisCPUFanSlow NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A CPU fan is spinning too slowly. A new motherboard + may be required to correct the fan. Contact Network + Appliance for direction." + + ::= { netapp 0 383 } + + chassisCPUFanOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All CPU fan(s) are properly functioning." + + ::= { netapp 0 386 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Power Supplies + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisPowerSuppliesFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multiple chassis power supplies failed." + + ::= { netapp 0 391 } + + chassisPowerSupplyDegraded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis power supplies are degraded. + A description of the degraded state has been + logged to the console and message log file." + + ::= { netapp 0 392 } + + chassisPowerSupplyFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One chassis power supply failed." + + ::= { netapp 0 393 } + + chassisPowerSupplyRemoved NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis power supplies are removed." + + ::= { netapp 0 394 } + + chassisPowerSupplyOff NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis power supplies are off." + + ::= { netapp 0 395 } + + chassisPowerSuppliesOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The chassis power supplies are all functioning properly." + + ::= { netapp 0 396 } + + chassisPowerSupplyOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This chassis power supply is functioning properly." + + ::= { netapp 0 397 } + + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Power Rails + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisPowerDegraded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The power within the chassis is degraded. + A description of the degraded state has been + logged to the console and message log file." + + ::= { netapp 0 403 } + + chassisPowerOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "The power within the chassis is functioning properly." + + ::= { netapp 0 406 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Chassis Fans + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + chassisFanDegraded NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A chassis fan has been degraded." + + ::= { netapp 0 412 } + + chassisFanRemoved NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A chassis fan FRU has been removed." + + ::= { netapp 0 413 } + + chassisFanStopped NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis fans have stopped." + + ::= { netapp 0 414 } + + chassisFanWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more chassis fans is spinning slowly or too fast." + + ::= { netapp 0 415 } + + chassisFanOk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "All chassis fans are functioning properly." + + ::= { netapp 0 416 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Volume SnapValidator errors + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + writeVerificationFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A write has failed a verification test + on a SnapValidator enabled volume." + ::= { netapp 0 424 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- CIFS domain controller-related traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + domainControllerDisconnect NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A CIFS domain controller connection to the filer has failed." + ::= { netapp 0 435 } + + dcPasswdChangeFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "An attempt to change the filer's password with the domain + controller has failed." + ::= { netapp 0 436 } + + domainControllerConnected NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A CIFS domain controller connection to the filer has been + established." + ::= { netapp 0 437 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- This section contains traps related to plex state + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + plexFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when one plex of a mirrored + traditional volume or aggregate is failed. The string + sent with this trap specifies name of affected plex or + mirrored traditional volume or aggregate." + ::= { netapp 0 444 } + + plexOffline NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This trap is issued when a plex becomes offline. + The string sent with this trap specifies name of + affected plex or mirrored traditional volume or aggregate." + ::= { netapp 0 454 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- This section contains traps related to shelf Electronics Elements + -- and intelligent fibre channel interface modules such as LRC, + -- ESH, AT-FC, and AT-FCX. + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + shelfSESElectronicsFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more of the enclosure services devices in a + disk shelf has failed. Some shelf designs combine + the enclosure monitoring hardware function into the + module that provides the storage interface to + the shelf. A failure in the enclosure monitoring + section of these combined modules does not necessarily + indicate a failure in disk or loop or bus operation, + which may be able to continue." + ::= { netapp 0 464 } + + shelfSESElectronicsInfo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A previously reported failure of an enclosure + services device in a disk shelf has been corrected, + or the device has reported information that does not + necessarily require customer action." + ::= { netapp 0 467 } + + shelfIFModuleFailed NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more of the storage interface modules in a + disk shelf has failed. Some shelf designs combine the + enclosure monitoring hardware function into the module + that operates the fibre channel loop or SCSI in the + shelf. This failure is of the storage interface + itself, not a failure of the enclosure monitoring, + which may be able to continue. This failure may make + one or more disks in the shelf or in the loop or bus + unavailable." + ::= { netapp 0 473 } + + shelfIFModuleWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "One or more of the storage interface modules in a + disk shelf has a warning condition. Some shelf designs combine the + enclosure monitoring hardware function into the module + that operates the fibre channel loop or SCSI in the + shelf. This warning condition is of the storage interface + itself, not a failure of the enclosure monitoring, + which may be able to continue." + ::= { netapp 0 475 } + + shelfIFModuleInfo NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A previously reported failure of a disk shelf + interface module has been corrected, or the module has + reported information that does not necessarily require + customer action." + ::= { netapp 0 477 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- This section contains traps related to maxdirsize. + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + maxDirSizeAlert NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A directory has reached it's maxdirsize limit. Either + increase the maxdirsize or clean up the directory." + ::= { netapp 0 482 } + + maxDirSizeWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A directory is getting close to it's maxdirsize limit. Either + increase the maxdirsize or clean up the directory." + ::= { netapp 0 485 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- CIFS statistics related traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + cifsStatsExhaustMemCtrlBlk NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A request for a CIFS control block can not be granted. All + control blocks are in use." + ::= { netapp 0 497 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- New Environmental Subsystem Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + + chassisPSRemovedxMinShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Power Supply Unit is removed from the system. System will + be shutdown in x minutes if it is not put back." + + ::= { netapp 0 501 } + + chassisPSUsMismatch NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Power Supply Units in the system are of different type. + Please replace them with correct Power Supply Units." + + ::= { netapp 0 505 } + + chassisFanFailxMinShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multiple chassis fan failure. System will + shut down in a few minutes if not corrected." + + ::= { netapp 0 511 } + + chassisPSUwrongInput NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Power Supply Unit (PSU) in the system is connected to an + incompatible external power source. Please change + the power source being used or replace the PSU + with one that matches the current power source." + + ::= { netapp 0 515 } + + powerSupplyFanFailxMinShutdown NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multiple power supply fans failure. + System will shut down in a few minutes if not corrected." + + ::= { netapp 0 521 } + + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- New Remote Management Subsystem Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + remoteSystemMgtAlert NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "system remote management detected a system down event. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={post_error|watchdog_reset|power_loss|abnormal_reboot}, + key=value + + An example of a complete message would be: + Remote Management Event: type=system_down, severity=alert, + event=watchdog_reset, ss=16bytes + + Additional key=value items may, in the future, be appended + to this message. + + The events that would generate this trap would be: + post_error: Fatal POST error on boot + power_loss: Loss of power to system + abnormal_reboot: + l2_watchdog_reset" + + ::= { netapp 0 532 } + + remoteSystemMgmtWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "system remote management detected a system down event. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={loss-of-heartbeat}, + key=value + + An example of a complete message would be: + Remote Management Event: type=system_down, severity=warning, + event=loss_of_heartbeat, ss=16bytes + + Additional key=value items may, in the future, be appended + to this message. + + The events that would generate this trap would be: + loss_of_heartbeat: Loss of heartbeat to the RLM." + + ::= { netapp 0 535 } + + remoteSystemMgmtNotification NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "system remote management detected a system down event. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={power_off_via_rlm,power_cycle_via_rlm,reset_via_rlm}, + key=value + + An example of a complete message would be: + Remote Management Event: type=system_down, severity=notice, + event=power_off_via_rlm, ss=16bytes + + Additional key=value items may, in the future, be appended + to this message. + + The events that would generate this trap would be: + power_off_via_rlm: This indicates system power off + power_cycle_via_rlm: This indicates system power cycle + reset_via_rlm: This indicates system reset." + + ::= { netapp 0 536 } + + remoteSystemMgmtPeriodic NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This is a periodic keep alive from system remote management. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={periodic_message} + + An example of a complete message would be: + Remote Management Event: type=keep_alive, severity=info, + event=periodic_message + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 547 } + + remotesystemMgmtTest NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "This is a test trap from system remote management. + The trap includes a string describing the specific event + which triggered the trap. The string is structured in the + following form: + Remote Management Event: type={system_down|system_up|test|keep_alive}, + severity={alert|warning|notice|normal|debug|info}, + event={periodic_message} + + An example of a complete message would be: + Remote Management Event: type=test, severity=notice, event=test + + Additional key=value items may, in the future, be appended + to this message." + + ::= { netapp 0 556 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Disk Multipath Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + diskMultipathOneSwitch NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A multipathed disk is only connected to one switch." + + ::= { netapp 0 562 } + + diskMultipathNoTakeover NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Multipath disks or luns could not be detected for the partner. + The node will be unable to takeover correctly." + + ::= { netapp 0 563 } + + diskMultipathWarning NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Synchronous mirroring is enabled, even though disks are not + multipathed." + + ::= { netapp 0 565 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Disk Disable Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + driveDisableErr NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A drive has been disabled by the shelf module due to + hardware errors. If it is the only drive in the shelf + that is disabled, replace the drive." + + ::= { netapp 0 574 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- HBA Offline Traps + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + hbaOfflineInformation NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "A host bus adapter (HBA) port has been disabled. + This state may be caused either by user command or by + errors that make the interface unable to communicate + with attached devices." + + ::= { netapp 0 587 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- LUN Snap Restore Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + lunSnapRestoreStatus NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Status of the Snap Restore" + + ::= { netapp 0 606 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- LUN Clone Create Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + lunCloneCreate NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Created a LUN Clone" + + ::= { netapp 0 616 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- LUN Clone Split Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + lunCloneSplitStart NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "LUN Clone Split started" + + ::= { netapp 0 626 } + + lunCloneSplitComplete NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "LUN Clone Split completed" + + ::= { netapp 0 627 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Flex Clone Split Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + flexCloneSplitStart NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Flex Clone Split started" + + ::= { netapp 0 636 } + + flexCloneSplitComplete NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Flex Clone Split completed" + + ::= { netapp 0 637 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Volume Clone Create Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeCloneCreate NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Created a Volume Clone" + + ::= { netapp 0 646 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Snap Autodelete Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + snapAutoDelete NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Snapshot Autodeleted" + + ::= { netapp 0 656 } + + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- Volume Autogrow Notice + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + volumeAutogrow NOTIFICATION-TYPE + OBJECTS {productTrapData, productSerialNum} + STATUS current + DESCRIPTION + "Volume is Autogrown" + + ::= { netapp 0 666 } + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + -- End of NetApp trap definitions + -- + -- Note: Please update this comment when adding a new NOTIFICATION-TYPE. + -- The next trap set range should be: 67x + -- + -- The 10xxx trap range is used by DataFabric Manager + -- (netappDataFabricManager) see the DFM MIB for further + -- information. + -- + -- The 20xxx trap range is used by the NetApp Support Console + -- (netappSupportConsole) see the NASC MIB for further + -- information. + -- + -- The 'ones' digit of the trap contains the priority of the trap: + -- + -- 1 emergency + -- 2 alert + -- 3 critical + -- 4 error + -- 5 warning + -- 6 notification + -- 7 information + -- 8 debug + -- + -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- - + + END diff --git a/pandora_console/attachment/mibs/OLD-CISCO-CHASSIS-MIB b/pandora_console/attachment/mibs/OLD-CISCO-CHASSIS-MIB new file mode 100644 index 0000000000..36f4b75d5a --- /dev/null +++ b/pandora_console/attachment/mibs/OLD-CISCO-CHASSIS-MIB @@ -0,0 +1,1659 @@ +-- ***************************************************************** +-- OLD-CISCO-CHASSIS-MIB.my: Cisco Chassis MIB file +-- +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-2001, 2002, 2003, 2004 by cisco Systems, Inc. +-- All rights reserved. +-- +-- NOTE WELL +-- Starting with IOS 12.0, all objects defined in this mib have been +-- deprecated. They have been replaces with objects defined in the +-- ENTITY-MIB.my document. Management applications should no longer +-- be examining the objects defined in this document. +-- NOTE WELL +-- +-- ***************************************************************** +-- +-- + OLD-CISCO-CHASSIS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB + temporary + FROM CISCO-SMI; + + chassis OBJECT IDENTIFIER ::= { temporary 6 } + + -- Temporary Chassis Section + + + -- (not the same as the IETF Chassis MIB) + + -- This group is present in all products. + + chassisType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1) + ,multibus(2) + ,agsplus(3) + ,igs(4) + ,c2000(5) + ,c3000(6) + ,c4000(7) + ,c7000(8) + ,cs500(9) + ,c7010(10) + ,c2500(11) + ,c4500(12) + ,c2102(13) + ,c2202(14) + ,c2501(15) + ,c2502(16) + ,c2503(17) + ,c2504(18) + ,c2505(19) + ,c2506(20) + ,c2507(21) + ,c2508(22) + ,c2509(23) + ,c2510(24) + ,c2511(25) + ,c2512(26) + ,c2513(27) + ,c2514(28) + ,c2515(29) + ,c3101(30) + ,c3102(31) + ,c3103(32) + ,c3104(33) + ,c3202(34) + ,c3204(35) + ,accessProRC(36) + ,accessProEC(37) + ,c1000(38) + ,c1003(39) + ,c1004(40) + ,c2516(41) + ,c7507(42) + ,c7513(43) + ,c7506(44) + ,c7505(45) + ,c1005(46) + ,c4700(47) + ,c2517(48) + ,c2518(49) + ,c2519(50) + ,c2520(51) + ,c2521(52) + ,c2522(53) + ,c2523(54) + ,c2524(55) + ,c2525(56) + ,c4700S(57) + ,c7206(58) + ,c3640(59) + ,as5200(60) + ,c1601(61) + ,c1602(62) + ,c1603(63) + ,c1604(64) + ,c7204(65) + ,c3620(66) + ,wsx3011(68) + ,mc3810(69) + ,c1503(72) + ,as5300(73) + ,as2509RJ(74) + ,as2511RJ(75) + ,c2501FRADFX(77) + ,c2501LANFRADFX(78) + ,c2502LANFRADFX(79) + ,wsx5302(80) + ,c1605(81) + ,c12012(82) + ,c12008(85) + ,ubr7246(86) -- Universal Broadband Router + ,c2610(87) -- c2600 with 1 integrated ethernet interface + ,c2612(88) -- c2600 with an integrated ethernet and token ring interface + ,c2611(89) -- c2600 with 2 integrated ethernet interfaces + ,ubr904(90) -- Cisco Cable Modem (ubr - universal broadband router) + ,c6200(91) -- Digital Subscriber Line Access Multiplexer(DSLAM) + ,c3660(92) -- Six slot MARS Router + ,c7202(94) -- Modular two slot router in the cisco7200 family + ,c2620(95) -- c2600 platform with an onboard fast ethernet + ,c2621(96) -- c2600 platform with two onboard fast ethernets + ,rpm(99) -- Router Processor Module + ,c1710(100) -- VPN(Virtual Private Network) Security Router with 1 FastEthernet and 1 Ethernet interface onboard + ,c1720(101) + ,c7576(102) -- Dual Independent RSP platform, 13 slots + ,c1401(103) -- Router with 1 ethernet and 1 ATM25 interface + ,c2613(104) -- c2600 with 1 integrated token ring interface + ,ubr7223(105) -- Universal Broadband Router + ,c6400Nrp(106) -- c6400 Network Routing Processor + ,c801(107) -- Cisco 800 platform with 1 ethernet and 1 BRI/ST + ,c802(108) -- Cisco 800 platform with 1 ethernet and 1 BRI U + ,c803(109) -- Cisco 800 platform with 1 ethernet 4-port hub, 1 BRI S/T, and 2 POTs + ,c804(110) -- Cisco 800 platform with 1 ethernet 4-port hub, 1 BRI U, and 2 POTs + ,c7206VXR(111) -- Cisco 7200 platform, VXR series chassis with 6 slots + ,c7204VXR(112) -- Cisco 7200 platform, VXR series chassis with 4 slots + ,c1750(113) -- VoIP (Voice over IP) capable Cisco 1700 platform with 2 WIC/VIC slots and 1 VIC-only slot + ,mgx8850(114) -- Cisco MGX8850 Multiservice Gigabit Switch with 32 half height slots + ,c805(116) -- Cisco 800 platform with 1 ethernet and 1 serial WIC + ,ws-c3508g-xl(117) -- Cisco Catalyst 3508G-XL switch with 8 GBIC Gigabit ports, can run Standard or Enterprise edition software. + ,ws-c3512-xl(118) -- Cisco Catalyst 3512XL switch with 12 10/100BaseTX ports and 2 GBIC Gigabit ports, can run Standard or Enterprise edition software. + ,ws-c3524-xl(119) -- Cisco Catalyst 3524XL switch with 24 10/100BaseTX ports and 2 GBIC Gigabit ports, can run Standard or Enterprise edition software. + ,ws-c2908-xl(120) -- Cisco Catalyst 2900XL series 8 port 10/100BaseTX switch + ,ws-c2916m-xl(121) -- Cisco Catalyst 2916M-XL switch with 16 10/100BaseTX ports and 2 uplink slots. + ,ws-c2924-xl-v(122) -- Cisco Catalyst 2924XL switch with 24 autosensing 10/100BaseTX ports; supports port-based VLANs; can run Standard or Enterprise edition software. + ,ws-c2924c-xl-v(123) -- Cisco Catalyst 2924C-XL switch with 22 autosensing 10/100BaseTX ports and 2 100BaseFX ports; supports port-based VLANs, can run Standard or Enterprise edition software. + ,ws-c2912-xl(124) -- Cisco Catalyst 2912XL switch with 12 autosensing 10/100BaseTX ports, can run Standard or Enterprise edition software. + ,ws-c2924m-xl(125) -- Cisco Catalyst 2924M-XL switch with 24 autosensing 10/100BaseTX ports and 2 uplink slots, can run Standard or Enterprise edition software. + ,ws-c2912mf-xl(126) -- Cisco Catalyst 2912MF-XL switch with 12 100BaseFX ports and 2 uplink slots; can only run Enterprise edition software. + ,c1417(128) -- Cisco 1400 series router with 1 Ethernet and 1 ADSL interface, with 1417 chipset + ,cOpticalRegenerator(129) -- Cisco Optical Regenerator + ,ws-c2924-xl(130) -- Cisco Catalyst 2924XL with 24 10/100BaseTX switch ports; doesn't support port-based VLANs. + ,ws-c2924c-xl(131) -- Cisco Catalyst 2924C-XL; doesn't support port-based VLANs. + ,ubr924(132) -- Cisco UBR Cable Modem which is a UBR904 with 2 FXS Voice ports + ,ws-x6302-msm(133) -- Catalyst 6000 or 6500 Series Multilayer Switch Module WS-X6302-MSM that directly interfaces to the switch's backplane to provide layer 3 switching. + ,cat5k-rsfc(134) -- Router Switching Feature Card for the Catalyst 5000 that is treated as a standalone system by the NMS + ,c7120-quadt1(136) -- 7120 Series chassis with 2 10/100 FE interfaces, 4 T1/E1 interfaces + ,c7120-t3(137) -- 7120 Series chassis with 2 10/100 FE interfaces, 1 T3 interface + ,c7120-e3(138) -- 7120 Series chassis with 2 10/100 FE interfaces, 1 E3 interface + ,c7120-at3(139) -- 7120 Series chassis with 2 10/100 FE interfaces, 1 T3 ATM interface + ,c7120-ae3(140) -- 7120 Series chassis with 2 10/100 FE interfaces, 1 E3 ATM interface + ,c7120-smi3(141) -- 7120 Series chassis with 2 10/100 FE interfaces, 1 OC3SMI ATM interface + ,c7140-dualt3(142) -- 7140 Series chassis with 2 10/100 FE interfaces, 2 T3 interfaces + ,c7140-duale3(143) -- 7140 Series chassis with 2 10/100 FE interfaces, 2 E3 interfaces + ,c7140-dualat3(144) -- 7140 Series chassis with 2 10/100 FE interfaces, 2 T3 ATM interfaces + ,c7140-dualae3(145) -- 7140 Series chassis with 2 10/100 FE interfaces, 2 E3 ATM interfaces + ,c7140-dualmm3(146) -- 7140 Series chassis with 2 10/100 FE interfaces, 2 OC3MM ATM interfaces + ,c12016(150) -- Cisco 12000 platform with 16 slots + ,c7140-octt1(152) -- 7140 Series chassis with 8 integrated T1/E1 serial ports + ,c7140-dualfe(153) -- 7140 Series chassis with 2 integrated 10/100 FE interfaces + ,cat3548xl(154) -- Catalyst 3548XL switch (WS-C3548-XL) + ,cat6006(155) -- Catalyst 6000 with 6 slots + ,cat6009(156) -- Catalyst 6000 with 9 slots + ,cat6506(157) -- Catalyst 6000 Plus with 6 slots + ,cat6509(158) -- Catalyst 6000 Plus with 9 slots + ,mc3810-v3(160) -- Cisco MC3810-V3, capable of data, voice and video. Supports 2 additional ports than the MC3810-V, used for optional access cards. + ,c7507z(162) -- Cisco 7507z chassis, Czbus capable, 7 slots + ,c7513z(163) -- Cisco 7513z chassis, Czbus capable, 13 slots + ,c7507mx(164) -- Cisco 7507mx chassis, Czbus capable, TDM (Time Division Multiplexing) backplane support, 7 slots + ,c7513mx(165) -- Cisco 7513mx chassis, Czbus capable, TDM (Time Division Multiplexing) backplane support, 13 slots + ,ubr912-c(166) -- Cisco uBR912-C Cable Modem with CSU/DSU WIC + ,ubr912-s(167) -- Cisco uBR912-S Cable Modem with Serial WIC + ,ubr914(168) -- Cisco uBR914 Cable Modem with removable WIC + ,cat4232-l3(173) -- Cisco Catalyst 4232-L3 layer 3 line card that is treated as a standalone system by the NMS + ,cOpticalRegeneratorDCPower(174) -- Cisco Optical Regenerator with DC power supply + ,cva122(180) -- Cisco CVA122 Cable Voice Adapter (Residential Cable Modem with two Voice Ports) + ,cva124(181) -- Cisco CVA124 Cable Voice Adapter (Residential Cable Modem with four Voice Ports) + ,as5850(182) -- High End Dial Access Server + ,mgx8240(185) -- High Density Circuit Emulation Service Gateway chassis with two shelf controller slots and fifteen Service Modulesfor Private Line Service + ,ubr925(191) -- Cisco UBR925 Cable Modem/Router with VOIP and hardware accelerated IPSEC + ,ubr10012(192) -- Cisco uBR10000 platform with 8 broadband slots and 4 WAN slots + ,c12016-8r(194) -- Teracore ready 8 rail chassis for Cisco 12000 platform + ,c2650(195) -- c2650 platform with 1 integrated fast ethernet interface + ,c2651(196) -- c2650 platform with 2 integrated fast ethernet interfaces + ,c1751(202) -- Digital voice capable Cisco 1700 platform with 2 WIC/VIC slots and 1 VIC-only slot + ,c626(205) -- Cisco 600 DSL CPE pltaform with ADSL, DMT issue 1, 25M ATM interface + ,c627(206) -- Cisco 600 DSL CPE pltaform with ADSL, DMT issue 2, 25M ATM interface + ,c633(207) -- Cisco 600 DSL CPE platform with SDSL, 2B1Q line coding, serial interface (V.35/X.21) + ,c673(208) -- Cisco 600 DSL CPE platform with SDSL, 2B1Q line coding, ethernet interface + ,c675(209) -- Cisco 600 DSL CPE platform with ADSL, CAP, ethernet interface, POTS connector + ,c675e(210) -- Cisco 600 DSL CPE platform with ADSL, CAP, ethernet interface, universal power supply + ,c676(211) -- Cisco 600 DSL CPE platform with ADSL, DMT issue 1, ethernet interface + ,c677(212) -- Cisco 600 DSL CPE platform with ADSL, DMT issue 2, ethernet interface + ,c678(213) -- Cisco 600 DSL CPE platform with ADSL, CAP/DMT/G.Lite, ethernet interface + ,c3661-ac(214) -- 1 Fast Ethernet version of c3660 with a AC power supply + ,c3661-dc(215) -- 1 Fast Ethernet version of c3660 with a DC power supply + ,c3662-ac(216) -- 2 Fast Ethernet version of c3660 with a AC power supply + ,c3662-dc(217) -- 2 Fast Ethernet version of c3660 with a DC power supply + ,c3662-ac-co(218) -- 2 Fast Ethernet version of c3660 with a AC power supply for Telco's + ,c3662-dc-co(219) -- 2 Fast Ethernet version of c3660 with a DC power supply for Telco's + ,ubr7111(220) -- Low-end version of the Universal Broadband Router with 1 PA slot, 1 fixed RF line card (MC11C) and integrated upconvertor, designed for hotels, MDUs and smaller cable operators + ,ubr7114(222) -- Low-end version of the Universal Broadband Router with 1 PA slot, 1 fixed RF line card (MC14C) and integrated upconvertor, designed for hotels, MDUs and smaller cable operators + ,c12010(224) -- Cisco 12000 platform with 10 slots + ,c8110(225) -- Cisco 8110 (ATM network termination device) with 3 Line Interface module slots + ,ubr905(227) -- Cisco uBR905 Cable Modem with hardware accelerated IPSEC + ,c7150-dualfe(231) -- 7150 Series chassis with 2 integrated 10/100 FE interfaces + ,c7150-octt1(232) -- 7150 Series chassis with 8 integrated T1/E1 serial ports + ,c7150-dualt3(233) -- 7150 Series chassis with 2 10/100 FE interfaces, 2 T3 interfaces + ,cvps1110(236) -- Cisco VLAN Policy Server 1110 manages VLAN-based policies to control user access to a LAN, leveraging existing authentication mechanisms such as Windows Domain Controllers and Novell's NDS. This policy server is part of CiscoWorks2000 User Registration Tool product. + ,ccontentengine(237) -- Cisco Content Engine Chassis. The Cisco Content Engine is a Content Networking product that accelerates content delivery, ensuring maximum scalability and availability of content. The Content Engines offer caching, Content Delivery Network (CDN) services, employee internet management (e.g., URL filtering) and proxy services + ,ciad2420(238) -- Integrated Access Device 2420 (IAD2420) chassis with Analog (8/16) FXS ports with T1 or ADSL (Asymmetrical Digital Subscriber Line) Uplinks + ,c677i(239) -- Cisco 600 DSL CPE platform with ASDL, DMT issue 2 over ISDN, ethernet interface + ,c674(240) -- Cisco 600 DSL CPE platform with G.SHDSL, ethernet interface + ,cdpa7630(241) -- The Cisco Digital PBX Adapter (DPA) enables the integration of Cisco Call Manager with Octel voice mail systems + ,cat2924-lre-xl(245) -- Cisco Catalyst c2924XL switch (WS-C2924-LRE-XL) with 24 10BaseS VDSL ports and 4 10/100BaseTX ports + ,cat2912-lre-xl(246) -- Cisco Catalyst c2912XL switch (WS-C2912-LRE-XL) with 12 10BaseS VDSL ports and 4 10/100BaseTX ports + ,cva122e(247) -- Cisco CVA122-e Cable Voice Adapter(Residential Cable Modem with two voice ports)- European version + ,cva124e(248) -- Cisco CVA124-e Cable Voice Adapter(Residential Cable Modem with four voice ports)- European version + ,curm(249) -- Universal Router Module for the IGX platform + ,curm2fe(250) -- Universal router module with 2 Fast Ethernet interfaces for IGX platform + ,curm2fe2v(251) -- Universal Router Module, with 2 Fast Ethernet ports, and 2 digital voice ports (T1 or E1) + ,c7401VXR(252) -- Cisco 7400 Family, 1 Slot router + ,cap340(255) -- Aironet Wireless LAN Access Point 340 series + ,cap350(256) -- Cisco Wireless LAN Access Point 350 series + ,cdpa7610(257) -- The Cisco Digital PBX Adapter (DPA) enables the integration of Cisco Call Manager with Octel voice mail systems + ,c12416(261) -- Cisco 12000 platform with 16 slots and 10G Fabric card + ,ws-c2948g-l3-dc(262) -- A fixed-configuration Layer 3 Ethernet switch featuring IP, IPX, and IP mulitcast with 48 10/100BaseTX ports and 2 GBIC Gigabit ports using DC power + ,ws-c4908g-l3-dc(263) -- A fixed-configuration L3 Ethernet switch featuring IP,IPX and IP multicast with 8 GBIC ports using DC power + ,c12406(264) -- Cisco 12400 platform with 6 slots + ,pix-firewall506(265) -- Cisco PIX Firewall 506 + ,pix-firewall515(266) -- Cisco PIX Firewall 515 + ,pix-firewall520(267) -- Cisco PIX Firewall 520 + ,pix-firewall525(268) -- Cisco PIX Firewall 525 + ,pix-firewall535(269) -- Cisco PIX Firewall 535 + ,c12410(270) -- Cisco 12410 platform with 10 slots + ,c811(271) -- ISDN router for Japan with 1 10BaseT Ethernet port, 1 ISDN BRI(Basic Rate Interface) U, integrated DSU(Data Service Unit) + ,c813(272) -- ISDN router for Japan with 10 BaseT 4 ports hub , 1 ISDN BRI(Basic Rate Interface) U, integrated DSU(Data Service Unit) and 2 RJ-11 + ,c10720(273) -- IP + Optical Access Router + ,cMWR1900(274) -- The Mobile Wireless router is a router targeted at application in a cell site Base Transciever Station (BTS) providing T1/E1 backhaul connections to the aggregation node in Radio Access Networks (RAN) + ,c4224(275) -- A standalone 24 port powered Ethernet switch, router and voice gateway + ,cWSC6513(276) -- Catalyst 6000 series chassis with 13 slots + ,c7603(277) -- Cisco Internet Router 7600 Series Chassis with 3 slots + ,c7606(278) -- Cisco Internet Router 7600 Series Chassis with 6 slots + ,c7401ASR(279) -- Cisco 7400 platform, ASR series with 1 slot + ,cVG248(280) -- Cisco VoIP Voice Gateway for connecting analog telephones fax machines to a Cisco Call Manager based system + ,c1105(281) -- CiscoWorks network management chassis + ,cCe507(284) -- Cisco Content Engine Model 507 + ,cCe560(285) -- Cisco Content Engine Model 560 + ,cCe590(286) -- Cisco Content Engine Model 590 + ,cCe7320(287) -- Cisco Content Engine Model 7320 + ,c2691(288) -- One Network Module slot, three WIC slot, two Fast Ethernet port MARS router + ,c3725(289) -- Two Network Module slot, three WIC slot, two Fast Ethernet port MARS router + ,pix-firewall501(292) -- Cisco PIX Firewall 501 + ,c2610M(293) -- c2600M chassis with 1 integrated ethernet interface + ,c2611M(294) -- c2600M chassis with 2 integrated ethernet interfaces + ,c12404(298) -- Cisco 12400 platform with 4 slots + ,c9004(299) -- Cisco 9000 Chassis + ,cCe507av(307) -- Cisco Content Engine Model 507-AV + ,cCe560av(308) -- Cisco Content Engine Model 560-AV + ,cIe2105(309) -- The Cisco Intelligence Engine 2100 series is a new form of network device that provides intelligent network interface to applications and users + ,c7304(313) -- Cisco 7300 Chassis + ,cWSC6503(322) -- Catalyst 6000 series chassis with 3 slots + ,ccontentengine2636(326) -- Cisco Content Engine Module for 26xx and 36xx series platforms + ,ccontentengine-dw2636(327) -- Double Wide Cisco Content Engine Module for 26xx and 36xx series + ,c6400-uac(332) -- Cisco 6400 Universal Access Concentrator + ,c2610XM(334) -- Cisco 2610XM platform with 1 integrated fast ethernet interfaces with SDRAM + ,c2611XM(335) -- Cisco 2611XM platform with 2 integrated fast ethernet interfaces with SDRAM + ,c2620XM(336) -- Cisco 2620XM platform with 1 integrated fast ethernet interfaces with SDRAM + ,c2621XM(337) -- Cisco 2621XM platform with 2 integrated fast ethernet interfaces with SDRAM + ,c2650XM(338) -- Cisco 2650XM platform with 1 integrated fast ethernet interfaces with SDRAM + ,c2651XM(339) -- Cisco 2651XM platform with 2 integrated fast ethernet interfaces with SDRAM + ,cat295024sx(350) -- Cisco Catalyst c2950 switch with 24 10/100 BaseTX ports and 2 fixed 1000Base Multimode fiber (SX) ports (WS-C2950SX-24) + ,as5400-hpx(353) -- chassis for cisco As5400HPX + ,c7609(365) -- 9 slots chassis in Cisco 7600 family + ,cVG200(372) -- The Cisco VG200 chassis for Voice-over-IP (VoIP) Gateway + ,airap1210(373) -- 1200 series WLAN Access Point on Cisco IOS platform with 1 10/100TX port, 1 CardBus slot, 1 Mini PCI slot + ,c7613(377) -- Cisco Internet router 7600 Series Chassis with 13 slots + ,airbr-1410(380) -- 1410 Series Wireless LAN Bridge on Cisco IOS platform with 1 10/100Tx port and 1 5-GHz radio + ,c1701(384) -- c1701 is a re-packaging of existing products to create a fixed configuration sku. It has ADSLoPOTs WIC and ISDN BRI (S/T) WIC riveted into it. + ,cat29408TT(385) -- Catalyst 2940 L2 switch with 8 10/100 copper ports and 1 10/100/1000 copper uplink port. + ,cat29408TF(386) -- Catalyst 2940 L2 switch with 8 10/100 copper ports, 1 100 FX Uplink port and 1 Gigabit SFP Module slot. + ,airap350ios(394) -- Cisco Wireless LAN Access Point 350 series on IOS platform with 1 10/100TX port, 1 IEEE 802.11 radio port + ,cat295024-lre-st-997(396) -- Cisco Catalyst2905 Long Reach Ethernet switch that confirms to ETSI 997 with 24 LRE interfaces, 2 10/100/1000 Small form factor copper interfaces and DC power supply(WS-C2905ST-24-LRE-997) + ,airbr-1300(404) -- Cisco Aironet 1300 Series Wireless Bridge with 1 10/100 TX Ethernet port, 1 IEEE 802.11g radio port + ,c2811(413) -- 2800 Family Router with two integrated fast ethernets and integrated VPN + ,c2821(414) -- 2800 Family Router with two integrated gigabit ethernets and integrated VPN + ,c2851(415) -- 2800 Family Router with two integrated gigabit ethernets and integrated VPN + ,cat3750g-16td(420) -- Cisco Catalyst 3750 switch with 16 gigabit and one 10G ethernet port (WS-C3750G-16TD) + ,cigesm(422) -- Cisco Systems Intelligent Gigabit Ethernet Switch Module for IBM eServer BladeCenter (OS-CIGESM-18TT-E) + + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Chassis type." + ::= { chassis 1 } + + chassisVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Chassis hardware revision level, or an empty + string if unavailable." + ::= { chassis 2 } + + chassisId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS deprecated + DESCRIPTION + "Unique ID string. Defaults to chassis serial + number if available, otherwise empty. Can + also be set with 'snmp-server chassis-id'." + ::= { chassis 3 } + + romVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS deprecated + DESCRIPTION + "ROM monitor version." + ::= { chassis 4 } + + romSysVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS deprecated + DESCRIPTION + "ROM system software version, or an empty + string if unavailable." + ::= { chassis 5 } + + processorRam OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Bytes of RAM available to CPU." + ::= { chassis 6 } + + nvRAMSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Bytes of non-volatile configuration memory." + ::= { chassis 7 } + + nvRAMUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Bytes of non-volatile configuration memory + in use." + ::= { chassis 8 } + + configRegister OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Value of configuration register." + ::= { chassis 9 } + + configRegNext OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Value of configuration register at next + reload." + ::= { chassis 10 } + + cardTable OBJECT-TYPE + SYNTAX SEQUENCE OF CardTableEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Chassis card table." + ::= { chassis 11 } + + cardTableEntry OBJECT-TYPE + SYNTAX CardTableEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Chassis card table." + INDEX { cardIndex } + ::= { cardTable 1 } + + CardTableEntry ::= + SEQUENCE { + cardIndex + INTEGER, + cardType + INTEGER, + cardDescr + DisplayString, + cardSerial + INTEGER, + cardHwVersion + DisplayString, + cardSwVersion + DisplayString, + cardSlotNumber + INTEGER, + cardContainedByIndex + INTEGER, + cardOperStatus + INTEGER, + cardSlots + INTEGER + } + + + -- The following section describes the components of the + -- table. + + cardIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Index into cardTable (not physical chassis + slot number)." + ::= { cardTableEntry 1 } + + +-- The expansions for some acronyms used for cardType enumerations are: +-- CSU : Channel Service Unit +-- DSU : Dial Service Unit +-- FT1 : Fractional T1 +-- WIC : Wan Interface Card +-- DTR : Dedicated Token Ring +-- PM : Port Module +-- PA : Port Adapter + + cardType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1) + ,csc1(2) + ,csc2(3) + ,csc3(4) + ,csc4(5) + ,rp(6) + ,cpu-igs(7) + ,cpu-2500(8) + ,cpu-3000(9) + ,cpu-3100(10) + ,cpu-accessPro(11) + ,cpu-4000(12) + ,cpu-4000m(13) + ,cpu-4500(14) + ,rsp1(15) + ,rsp2(16) + ,cpu-4500m(17) + ,cpu-1003(18) + ,cpu-4700(19) + ,csc-m(20) + ,csc-mt(21) + ,csc-mc(22) + ,csc-mcplus(23) + ,csc-envm(24) + ,chassisInterface(25) + ,cpu-4700S(26) + ,cpu-7200-npe100(27) + ,rsp7000(28) + ,chassisInterface7000(29) + ,rsp4(30) + ,cpu-3600(31) + ,cpu-as5200(32) + ,c7200-io1fe(33) + ,cpu-4700m(34) + ,cpu-1600(35) + ,c7200-io(36) + ,cpu-1503(37) + ,cpu-1502(38) + ,cpu-as5300(39) + ,csc-16(40) + ,csc-p(41) + ,csc-a(50) + ,csc-e1(51) + ,csc-e2(52) + ,csc-y(53) + ,csc-s(54) + ,csc-t(55) + ,csc-r(80) + ,csc-r16(81) + ,csc-r16m(82) + ,csc-1r(83) + ,csc-2r(84) + ,sci4s(56) + ,sci2s2t(57) + ,sci4t(58) + ,mci1t(59) + ,mci2t(60) + ,mci1s(61) + ,mci1s1t(62) + ,mci2s(63) + ,mci1e(64) + ,mci1e1t(65) + ,mci1e2t(66) + ,mci1e1s(67) + ,mci1e1s1t(68) + ,mci1e2s(69) + ,mci2e(70) + ,mci2e1t(71) + ,mci2e2t(72) + ,mci2e1s(73) + ,mci2e1s1t(74) + ,mci2e2s(75) + ,csc-cctl1(100) + ,csc-cctl2(101) + ,csc-mec2(110) + ,csc-mec4(111) + ,csc-mec6(112) + ,csc-fci(113) + ,csc-fcit(114) + ,csc-hsci(115) + ,csc-ctr(116) + ,cpu-7200-npe150(121) + ,cpu-7200-npe200(122) + ,cpu-wsx5302(123) + ,gsr-rp(124) + ,cpu-3810(126) + ,cpu-2600(127) + ,cpu-rpm(128) + ,cpu-ubr904(129) -- CPU card for Cisco Cable Modem (ubr - universal broadband router) + ,cpu-6200-mpc(130) -- Maintenance processor card for c6200 + ,cpu-1700(131) -- CPU for Cisco 1700 series + ,cpu-7200-npe300(132) -- Network processing engine (CPU card) for 7200 series + ,cpu-1400(133) -- CPU for Cisco 1400 series + ,cpu-800(134) -- CPU for Cisco 800 series products + ,cpu-psm-1gbps(135) -- Processor Switch Module 1 with 1.2Gbps switching capacity for MGX 8800 series chassis + ,cpu-7200-npe175(137) -- Network processing engine (CPU card) for 7200 series + ,cpu-7200-npe225(138) -- Network processing engine (CPU card) for 7200 series + ,cpu-1417(140) -- CPU for Cisco 1417 only + ,cpu-psm1-1oc12(141) -- Cisco MGX8800 Processor Switch Module 1 with 1 622Mbps port + ,cpu-optical-regenerator(142) -- CPU for the Cisco Optical Regenerator chassis + ,cpu-ubr924(143) -- CPU for the UBR924 Cisco Cable Modem + ,cpu-7120(144) -- CPU for the Cisco 7120 series + ,cpu-7140(145) -- CPU for the Cisco 7140 series + ,cpu-psm1-2t3e3(146) -- Cisco MGX8800 Processor Switch Module 1 with 2 T3/E3 ports + ,cpu-psm1-4oc3(147) -- Cisco MGX8800 Processor Switch Module 1 with 4 155Mbps ports + ,cpu-ubr91x(149) -- CPU card for the UBR91X family of Cable Modems (912-c, 912-s, 914) + ,sp(150) + ,eip(151) + ,fip(152) + ,hip(153) + ,sip(154) + ,trip(155) + ,fsip(156) + ,aip(157) + ,mip(158) + ,ssp(159) + ,cip(160) + ,srs-fip(161) + ,srs-trip(162) + ,feip(163) + ,vip(164) + ,vip2(165) + ,ssip(166) + ,smip(167) + ,posip(168) + ,feip-tx(169) + ,feip-fx(170) + ,cbrt1(178) + ,cbr120e1(179) + ,cbr75e(180) + ,vip2-50(181) + ,feip2(182) + ,acip(183) + ,mc11(184) -- cable card 1 downstream 1 upstream + ,mc12a(185) -- cable card 1 downstream 2 upstream + ,io1fe-tx-isl(186) -- Fast Ethernet I/O Controller which provides RJ45 and MII Connectors + ,geip(187) -- Gigabit Ethernet Interface Processor + ,vip4(188) -- 4th Generation Versatile Interface Processor for the c7500 router + ,mc14a(189) -- cable card 1 downstream 4 upstream + ,mc16a(190) -- cable card 1 downstream 6 upstream + ,mc11a(191) -- modem card 1 downstream 1 upstream (ASIC) + ,cip2(192) -- channel interface processor 2 for the 7500 router family. supports IBM ESCON and IBM Parallel (Bus & Tag) interface types. + ,mc28(194) -- cable card 2 downstream 8 upstream + ,vip4-80(195) -- 4th Generation Versatile Interface Processor for the c7500 router + ,vip4-50(196) -- 4th Generation Versatile Interface Processor for the c7500 router, lower performance than vip4-80 card + ,io-e-ge(197) -- C7200 I/O Controller with GE(1000Mbps) + E(10Mbps) interface + ,io-2fe(198) -- C7200 I/O Controller with 2FE (10/100Mbps) interface + ,npm-4000-fddi-sas(200) + ,npm-4000-fddi-das(201) + ,npm-4000-1e(202) + ,npm-4000-1r(203) + ,npm-4000-2s(204) + ,npm-4000-2e1(205) + ,npm-4000-2e(206) + ,npm-4000-2r1(207) + ,npm-4000-2r(208) + ,npm-4000-4t(209) + ,npm-4000-4b(210) + ,npm-4000-8b(211) + ,npm-4000-ct1(212) + ,npm-4000-ce1(213) + ,npm-4000-1a(214) + ,npm-4000-6e-pci(215) + ,npm-4000-1fe(217) + ,npm-4000-1hssi(218) + ,npm-4000-2e-pci(219) + ,npm-4000-4gb(220) -- 4-Port Serial E1/G.703 + + ,pa-1fe(230) + ,pa-8e(231) + ,pa-4e(232) + ,pa-5e(233) + ,pa-4t(234) + ,pa-4r(235) + ,pa-fddi(236) + ,sa-encryption(237) + ,pa-ah1t(238) + ,pa-ah2t(239) + ,pa-a8t-v35(241) + ,pa-1fe-tx-isl(242) + ,pa-1fe-fx-isl(243) + ,pa-1fe-tx-nisl(244) + ,sa-compression(245) + ,pa-atm-lite-1(246) + ,pa-ct3(247) + ,pa-oc3sm-mux-cbrt1(248) + ,pa-oc3sm-mux-cbr120e1(249) + ,pa-ds3-mux-cbrt1(254) + ,pa-e3-mux-cbr120e1(255) + ,pa-8b-st(257) + ,pa-4b-u(258) + ,pa-fddi-fd(259) + ,pm-cpm-1e2w(260) + ,pm-cpm-2e2w(261) + ,pm-cpm-1e1r2w(262) + ,pm-ct1-csu(263) + ,pm-2ct1-csu(264) + ,pm-ct1-dsx1(265) + ,pm-2ct1-dsx1(266) + ,pm-ce1-balanced(267) + ,pm-2ce1-balanced(268) + ,pm-ce1-unbalanced(269) + ,pm-2ce1-unbalanced(270) + ,pm-4b-u(271) + ,pm-4b-st(272) + ,pm-8b-u(273) + ,pm-8b-st(274) + ,pm-4as(275) + ,pm-8as(276) + ,pm-4e(277) + ,pm-1e(278) + ,pm-m4t(280) + ,pm-16a(281) + ,pm-32a(282) + ,pm-c3600-1fe-tx(283) + ,pm-c3600-compression(284) + ,pm-dmodem(285) + ,pm-8admodem(286) + ,pm-16admodem(287) + ,pm-c3600-1fe-fx(288) + ,pm-1fe-2t1-csu(289) -- Port Module with 1 Fast Ethernet, 2 T1 with CSU + ,as5200-carrier(290) + ,as5200-2ct1(291) + ,as5200-2ce1(292) + ,as5200-dtd-carrier(293) + ,pm-as5xxx-12m(310) + ,pm-as5xxx-12m-56k(311) + ,pm-as5xxx-12m-v110(312) +-- The expansions for some acronyms used in this section are given below: +-- CSU - Channel Service Unit +-- DSU - Dial Service Unit +-- FT1 - Fractional T1 +-- WIC - Wan Interface Card + ,wm-c2500-5in1(330) + ,wm-c2500-t1-csudsu(331) + ,wm-c2500-sw56-2wire-csudsu(332) + ,wm-c2500-sw56-4wire-csudsu(333) + ,wm-c2500-bri(334) + ,wm-c2500-bri-nt1(335) + ,wic-serial-1t(360) + ,wic-serial-2t(361) + ,wic-csu-dsu-4(363) + ,wic-s-t-3420(364) + ,wic-s-t-2186(365) + ,wic-u-3420(366) + ,wic-u-2091(367) + ,wic-u-2091-2081(368) + ,wic-s-t-2186-leased(369) + ,wic-t1-csudsu(370) -- FT1 CSU/DSU Wan Interface Card + ,wic-serial-2as(371) -- WAN Interface Card - 2 port Async/Sync + ,aim-compression(372) -- Compression Advanced Interface Module (AIM) + ,c3660-2fe-tx(373) -- c3660 onboard 2FE(TX) version + ,pm-oc3mm(374) -- ATM OC3 multimode Port Module + ,pm-oc3mm-vpd(375) -- ATM OC3 multimode Port Module with Voice Processing Deck + ,pm-oc3smi-vpd(376) -- ATM OC3 single mode intermediate reach Port Module with Voice Processing Deck + ,pm-oc3sml-vpd(377) -- ATM OC3 single mode long reach Port Module with Voice Processing Deck + ,pm-oc3sml(378) -- ATM OC3 single mode long reach Port Module + ,pm-oc3smi(379) -- ATM OC3 single mode intermediate reach Port Module + ,pm-ima-4t1(380) -- 4 port T1 IMA (Inverse Mux for ATM) port module + ,pm-ima-8t1(381) -- 8 port T1 IMA (Inverse Mux for ATM) port module + ,pm-ima-4e1(382) -- 4 port E1 IMA (Inverse Mux for ATM) port module + ,pm-ima-8e1(383) -- 8 port E1 IMA (Inverse Mux for ATM) port module + ,nm-1fe-2w(384) -- Network Module with 1 Fast Ethernet and 2 WIC/VIC interfaces + ,nm-2fe-2w(385) -- Network Module with 2 Fast Ethernet and 2 WIC/VIC interfaces + ,nm-1fe-1r-2w(386) -- Network Module with 1 Fast Ethernet, 1 token ring, and 2 WIC/VIC interfaces + ,nm-2w(387) -- Network Module with 2 WIC/VIC interfaces + ,c36xx-1fe-tx(389) -- Onboard 1FE Interface for the c3660 chassis + ,pa-jt2(400) + ,pa-posdw(401) + ,pa-4me1-bal(402) + ,pa-2ce1-balanced(403) + ,pa-2ct1(404) + ,pa-1vg(405) + ,pa-atmdx-ds3(406) + ,pa-atmdx-e3(407) + ,pa-atmdx-sml-oc3(408) + ,pa-atmdx-smi-oc3(409) + ,pa-atmdx-mm-oc3(410) + ,pa-a8t-x21(414) + ,pa-a8t-rs232(415) + ,pa-4me1-unbal(416) + ,pa-4r-fdx(417) + ,pa-1e3(418) + ,pa-2e3(419) + ,pa-1t3(420) + ,pa-2t3(421) + ,pa-2ce1-unbalanced(422) + ,pa-14e-switch(423) + ,pa-1fe-fx-nisl(424) + ,pa-esc-channel(425) + ,pa-par-channel(426) + ,pa-ge(427) -- Gigabit Ethernet Port Adapter + ,pa-4ct1-csu(428) -- 8 Port Channelized T1 with CSU + ,pa-8ct1-csu(429) -- 8 Port Channelized T1 with CSU + ,c3800-vdm(430) + ,c3800-vdm-dc-2t1e1(431) + ,c3800-vdm-dc-1t1e1-enet(432) + ,pa-2feisl-tx(433) + ,pa-2feisl-fx(434) + ,mc3810-dcm(435) + ,mc3810-mfm-e1balanced-bri(436) + ,mc3810-mfm-e1unbalanced-bri(437) + ,mc3810-mfm-e1-unbalanced(438) + ,mc3810-mfm-dsx1-bri(439) + ,mc3810-mfm-dsx1-csu(440) + ,mc3810-vcm(441) + ,mc3810-avm(442) + ,mc3810-avm-fxs(443) + ,mc3810-avm-fxo(444) + ,mc3810-avm-em(445) + ,mc3810-vcm3(446) -- MC3810 Voice Compression Module with 3 DSPs (Digital Signal Processor) + ,mc3810-bvm(447) -- MC3810 Basic Voice Module + ,mc3810-avm-fxo-uk(448) -- MC3810 Analog Voice Module UK Foreign eXchange Office + ,mc3810-avm-fxo-ger(449) -- MC3810 Analog Voice Module Germany Foreign eXchange Office + ,mc3810-hcm2(450) -- MC3810 High (Voice) Compression Module with 2 DSPs (Digital Signal Processor) + ,mc3810-hcm6(451) -- MC3810 High (Voice) Compression Module with 6 DSPs (Digital Signal Processor) + ,mc3810-avm-fxo-pr3(452) -- MC3810 Analog Voice Module Singapore or Japan Foreign eXchange Office + ,mc3810-avm-fxo-pr2(453) -- MC3810 Analog Voice Module Australia or New Zealand Foreign eXchange Office + ,mc3810-vdm(454) -- MC3810 Video Dial-up Module + ,mc3810-apm-fxs-did(455) -- MC3810 Foreign Exchange Station (FXS) Direct Inward Dialing (DID) Analog Personality Module + ,mc3810-bvm-nt-te(456) -- 4 ports NT or TE BRI Voice Module on MC3810 + ,mc3810-hcm1(457) -- High performance compression module for the MC3810 platform equipped with one TI 549 DSP + ,mc3810-hcm3(458) -- High performance compression module for the MC3810 platform equipped with three TI 549 DSPs + ,mc3810-hcm4(459) -- High performance compression module for the MC3810 platform equipped with four TI 549 DSPs +-- 460 available + ,pm-dtd-6m(461) + ,pm-dtd-12m(462) -- mica 12 modem module + ,as5300-4ct1(480) + ,as5300-4ce1(481) + ,as5300-carrier(482) + ,as5300-dtd-carrier(484) + ,as5300-8ct1-4t(485) -- Channelized octal T1 and 4 serial card + ,as5300-8ce1-4t(486) -- Channelized octal E1 and 4 serial card + ,as5300-4ct1-4t(487) -- Channelized quad T1 and 4 serial card + ,as5300-4ce1-4t(488) -- Channelized quad E1 and 4 serial card + ,as5300-amazon2-carrier(489) -- Amazon II mica carrier card + ,vic-em(500) + ,vic-fxo(501) + ,vic-fxs(502) + ,vpm-2v(503) + ,vpm-4v(504) + ,dsp-vfc30(505) + ,dspm-c542(507) -- DSP (Digital Signal Processor) C542 module for the AS5300 and AS5800 series + ,vic-2fxo-eu(508) -- 2 port Foreign eXchange Office Voice Interface Cards for most of Europe + ,vic-2fxo-m3(509) -- 2 port Foreign eXchange Office Voice Interface Cards for Australia + ,vic-2fxo-m4(510) -- 2 port Foreign eXchange Office Voice Interface Cards for Germany + ,vic-2fxo-m5(511) -- 2 port Foreign eXchange Office Voice Interface Cards for France + ,vic-2fxo-m6(512) -- 2 port Foreign eXchange Office Voice Interface Cards for Italy + ,vic-2fxo-m7(513) -- 2 port Foreign eXchange Office Voice Interface Cards for Portugal + ,vic-2fxo-m8(514) -- 2 port Foreign eXchange Office Voice Interface Cards for Singapore + ,vic-2st-2086(515) -- 2 port Terminal Endpoint BRI S/T Voice interface daughter card + ,hdv(516) -- High Density Voice over IP network module + ,dspm-6c549(517) -- DSP (Digital Signal Processor) module that contains 6 C549 DSPs, used in AS5300 and AS5800 + ,wvic-1dsu-t1(518)-- WAN Voice Interface Card with a single port T1 DSU for 1600, 1700, 2600, or 3600 series + ,wvic-1dsu-e1(519) -- WAN Voice Interface Card with a single port E1 DSU for 1600, 1700, 2600, or 3600 series + ,wvic-2dsu-t1(520) -- WAN Voice Interface Card with a dual port T1 DSU for 1600, 1700, 2600, or 3600 series + ,wvic-2dsu-e1(521) -- WAN Voice Interface Card with a dual port E1 DSU for 1600, 1700, 2600, or 3600 series + ,wvic-2dsu-t1-di(522) -- WAN Voice Interface Card with a dual port T1 DSU with Drop and Insert for 1600, 1700, 2600, or 3600 series + ,wvic-2dsu-e1-di(523) -- WAN Voice Interface Card with a dual port E1 DSU with Drop and Insert for 1600, 1700, 2600, or 3600 series + ,vic-2fxo-m2(525) -- 2 port Foreign eXchange Office Voice Interface Cards (Module 2) for Europe/Australia/New Zealand + ,hda-nm-4fxs(528) -- High Density Analog Voice Module + + ,pos-qoc3-mm(530) + ,pos-qoc3-sm(531) + ,pos-oc12-mm(532) + ,pos-oc12-sm(533) + ,atm-oc12-mm(534) + ,atm-oc12-sm(535) + ,pos-oc48-mm-l(536) + ,pos-oc48-sm-lr-fc(537) -- GSR 1 port Packet Over Sonet OC-48, single mode, long reach, FC connector card + ,gsr-sfc(538) + ,gsr-csc(539) + ,gsr-csc4(540) + ,gsr-csc8(541) + ,gsr-sfc8(542) + ,atm-qoc3-sm(543) -- Quad OC3 Line Card ATM Singlemode Fiber Ports + ,atm-qoc3-mm(544) -- Quad OC3 Line Card ATM Multimode Fiber Ports + ,gsr-oc12chds3-mm(545) -- OC12 channelised to DS3 multimode + ,gsr-oc12chds3-sm(546) -- OC12 channelised to DS3 singlemode + ,gsr-1ge(547) -- GSR 1 Port Gigabit Ethernet Line Card + ,gsr-oc12chsts3-mm(548) -- GSR OC12 channelized to STS-3c/STM-1 multi-mode line card + ,gsr-oc12chsts3-sm(549) -- GSR OC12 channelized to STS-3c/STM-1 single-mode line card + ,pos-oc48-sm-sr-fc(552) -- GSR 1 Port Packet Over SONET OC-48c/STM-16 Single Mode Short Reach with FC connector + ,pos-qoc3-sm-l(553) -- GSR 4 Port Packet Over SONET OC-3c/STM-1 Single Mode Long Reach + ,pos-8oc3-mm(554) -- GSR 8 port OC3 Multimode POS + ,pos-8oc3-ir(555) -- GSR 8 port OC3 SM intermediate reach POS + ,pos-8oc3-lr(556) -- GSR 8 port OC3 SM long reach POS + ,pos-16oc3-mm(557) -- GSR 16 port OC3 multimode POS + ,pos-16oc3-ir(558) -- GSR 16 port OC3 SM intermediate reach POS + ,pos-16oc3-lr(559) -- GSR 16 port OC3 SM long reach POS + ,pa-8ct1(560) -- 8 Port Channelized T1 + ,pa-8ce1(561) -- 8 Port Channelized E1 + ,pa-ce3(562) -- Channelized E3 Port Adapter + ,pa-4r-dtr(563) -- 4 port Dedicated Token Ring port adapter + ,pa-possw-sm(564) -- Single Width POS (Packet Over Sonet) Port Adapter with Singlemode Fiber + ,pa-possw-mm(565) -- Single Width POS (Packet Over Sonet) Port Adapter with Multimode Fiber + ,pa-possw-lr(566) -- Single Width POS (Packet Over Sonet) Port Adapter with Long Range Fiber + ,pa-1t3-plus(567) -- Improved one port serial T3 plus port adapter + ,pa-2t3-plus(568) -- Improved 2 port serial T3 plus port adapter + ,pa-ima-t1(569) -- Implements IMA functionality for the 7200/7500 platform for a T1 + ,pa-ima-e1(570) -- Implements IMA functionality for the 7200/7500 platform for an E1 + ,pa-2ct1-csu(571) -- 2 port multichannel T1 port adapter with built in csu/dsu for the 7200, 7500, and rsp7000 platforms + ,pa-2ce1(572) -- 2 port multichannel E1 port adapter for the 7200, 7500, and rsp7000 platforms + ,pa-2fe-tx(573) -- 2-port FastEthernet port adapter with two RJ-45 interfaces + ,pa1-esc4-channel(575) -- High Performance ESCON Channel Port Adapter Version 4 + ,pa2-oc3-pos-sw(576) -- Dual Port OC-3c Packet Over Sonet(POS) Single Wide Adapter Card + ,pa-4dtr(577) -- Four port dedicated tokenring adapter + ,pa-vm-hda-8fxs-did(578) -- High density analog voice/fax voice module with 8 FXS/DID + + ,pm-1fe-1t1(600) -- Port Module with 1 Fast Ethernet, 1 T1 + ,pm-1fe-2t1(601) -- Port Module with 1 Fast Ethernet, 2 T1 + ,pm-1fe-1e1(602) -- Port Module with 1 Fast Ethernet, 1 E1 + ,pm-1fe-2e1(603) -- Port Module with 1 Fast Ethernet, 2 E1 + ,pm-1fe-1t1-csu(604) -- Port Module with 1 Fast Ethernet, 1 T1 with CSU + ,pm-atm25(605) -- 25 Mbits/sec ATM Port Module + ,pm-hssi(606) -- HSSI Card Port Module + ,as5800-dsc(630) + ,as5800-12t1(631) + ,as5800-12e1(632) + ,as5800-mica-hmm(633) + ,as5800-t3(634) -- T3 trunk card + ,as5800-1fe-dsi(635) + ,as5800-mica-dmm(636) -- Mica Double density Modem Module + ,as5800-vcc(637) -- Voice Carrier Card for the AS5800 + ,as5800-dspm-6c549(638) -- Digital Signal Processor Module with 6 C549's Voice Feature Card for the AS5800 + ,as5800-dsp(639) -- Digital Signal Processor Voice Feature Card for the AS5800 +-- 650-699: c6xxx cards + ,slc-cap8(650) -- Subscriber line card for c6200 - Carrierless Amplitude and Phase modulation - 8 port variation + ,ntc-oc3si(651) -- Network Trunk card for c6200 - Optical Carrier 3, single-mode, intermediate reach variation + ,ntc-oc3mm(652) -- Network Trunk card for c6200 - Optical Carrier 3, multi-mode reach variation + ,ntc-stm1si(653) -- Network Trunk card for c6200 - Synchronous Transport Module level 1, single-mode, intermediate reach variation + ,ntc-stm1mm(654) -- Network Trunk card for c6200 - Synchronous Transport Module level 1, multi-mode variation + ,slc-dmt8(655) -- Subscriber line card for c6200 - Discrete Multi-Tone 8 port variation + ,slc-dmt16(656) -- Subscriber line card for c6200 - Discrete Multi-Tone 16 port variation + ,ntc-ds3(657) -- Network Trunk card for c6200 - DS3 + ,osm-1oc48-pos-ss(659) -- Optical Service Module, 1-Port OC48 POS SS w/ 4 GE + ,osm-1oc48-pos-sl(660) -- Optical Service Module, 1-Port OC48 POS SL w/ 4 GE + ,osm-1oc48-pos-si(661) -- Optical Service Module, 1-Port OC48 POS SI w/ 4 GE + ,osm-2oc12-pos-sl(664) -- Optical Service Module, 2-Port OC12 POS SL w/ 4 GE + ,osm-4oc12-pos-sl(665) -- Optical Service Module, 4-Port OC12 POS SL w/ 4 GE + ,osm-2oc12-pos-mm(666) -- Optical Service Module, 2-Port OC12 POS MM w/ 4 GE + ,osm-4oc12-pos-mm(667) -- Optical Service Module, 4-Port OC12 POS MM w/ 4 GE + ,osm-2oc12-pos-si(668) -- Optical Service Module, 2-Port OC12 POS SI w/ 4 GE + ,osm-4oc12-pos-si(669) -- Optical Service Module, 4-Port OC12 POS SI w/ 4 GE + ,osm-8oc3-pos-si(670) -- Optical Service Module, 8-Port OC3 POS SI w/ 4 GE + ,osm-16oc3-pos-si(671) -- Optical Service Module, 16-Port OC3 POS SI w/ 4 GE + ,osm-8oc3-pos-mm(672) -- Optical Service Module, 8-Port OC3 POS MM w/ 4 GE + ,osm-16oc3-pos-mm(673) -- Optical Service Module, 16-Port OC3 POS MM w/ 4 GE + ,osm-8oc3-pos-sl(674) -- Optical Service Module, 8-Port OC3 POS SL w/ 4 GE + ,osm-16oc3-pos-sl(675) -- Optical Service Module, 16-Port OC3 POS SL w/ 4 GE + ,osm-4ge-wan-gbic(676) -- Optical Service Module, 4-Port GE w/ WAN services + ,osm-4ge-4oc12-chds3-sm-ir(680) -- Optical Service Module, 4-Port OC12 channelized down to DS3 Singlemode Intermediate range with 4 GE + ,osm-4ge-8oc12-chds3-sm-ir(681) -- Optical Service Module, 8-Port OC12 channelized down to DS3 Singlemode Intermediate range with 4 GE + ,osm-4ge-oc48-chds3-sm-sr(682) -- Optical Service Module, 1-Port OC48 channelized down to DS3 Singlemode Short range with 4 GE + ,osm-4ge-2oc48-chds3-sm-sr(683) -- Optical Service Module, 2-Port 0C48 channelized down to DS3 Singlemode Short range with 4 GE + ,osm-4ge-oc48-chds3-sm-ir(684) -- Optical Service Module, 1-Port OC48 channelized down to DS3 Singlemode Intermediate range with 4 GE + ,osm-4ge-2oc48-chds3-sm-ir(685) -- Optical Service Module, 2-Port OC48 channelized down to DS3 Singlemode Intermediate range with 4 GE + ,osm-4ge-oc12-chds3-sm-ir(686) -- Optical Service Module, 1-Port OC12 channelized down to DS3 Single Mode Intermediate range with 4 GE + ,osm-4ge-2oc12-chds3-sm-ir(687) -- Optical Service Module, 2-Port OC12 channelized down to DS3 Single Mode Intermediate range with 4 GE + + ,atmdx-rpm(750) -- RPM Cell Bus Interface + ,pa-atm-oc12-mm(802) -- Multimode ATM OC-12 Port Adapter + ,pa-atm-oc12-smi(803) -- Singlemode ATM OC-12 Intermediate reach Port Adapter + ,pa-mct3(804) -- Multichannel DS3 single port adapter + ,pa-mc2t3(805) -- Multichannel DS3 dual port adapter + ,pa-pos-oc12-mm(806) -- OC-12 Packet Over SONET Port Adapter, Multi-Mode fiber + ,pa-pos-oc12-sm(807) -- OC-12 Packet Over SONET Port Adapter, Single Mode fiber + ,srp-pa-oc12-mm(808) -- SRP OC-12/STM-4 Multimode Port Adapter for 7000 series + ,srp-pa-oc12-sm-ir(809) -- SRP OC-12/STM-4 Single Mode Intermediate Reach Port Adapter for 7000 series + ,srp-pa-oc12-lr(810) -- SRP OC-12/STM-4 Single Mode Long Reach Port Adapter for 7000 series + ,pa-mcx-2te1(811) -- 2 port, software configurable Multichannel T1/E1 with TDM Port Adapter + ,pa-mcx-4te1(812) -- 4 port, software configurable Multichannel T1/E1 with TDM Port Adapter + ,pa-mcx-8te1(813) -- 8 port, software configurable Multichannel T1/E1 with TDM Port Adapter + ,srp-pa-oc12-sm-xr(814) -- SRP OC-12/STM-4 Single Mode Extended Reach Port Adapter for 7000 series + ,pa-dual-wide-ge(819) -- Dual Wide Enhanced Gigabit Ethernet Port Adapter + ,pa-vxa-1t1e1-24(820) -- 1 port T1/E1 voice port adapter w/ 7 DSPs + ,pa-vxa-1t1e1-30(821) -- 1 port T1/E1 voice port adapter w/ 8 DSPs + ,pa-mc-8t1e1(822) -- Multichannel T1/E1 (without TDM) Port Adapter + ,pa-mcx-8te1-m(824) -- 8 port, software configurable Multichannel T1/E1 SS7 with TDM Port Adapter + ,ausm-8t1(850) -- ATM User Network Interface Service Module with 8 T1 ports + ,ausm-8e1(851) -- ATM User Network Interface Service Module with 8 E1 ports + ,cesm-8t1(852) -- Circuit Emulation Service Module with 8 T1 ports + ,cesm-8e1(853) -- Circuit Emulation Service Module with 8 E1 ports + ,frsm-8t1(854) -- Frame Relay Service Module with 8 T1 ports + ,frsm-8e1(855) -- Frame Relay Service Module with 8 E1 ports + ,frsm-4x21(856) -- Frame Relay Service Module supporting 4 high speed X.21 ports + ,frsm-2hssi(857) -- Frame Relay Service Module supporting 2 high speed HSSI ports + ,cesm-1t3(858) -- Circuit Emulation Service Module (CESM) with one T3 port + ,cesm-1e3(859) -- Circuit Emulation Service Module (CESM) with one E3 port + ,vism-8t1(860) -- Voice Interworking Service Module (VISM) with 8 T1 ports + ,vism-8e1(861) -- Voice Interworking Service Module (VISM) with 8 E1 ports + ,mgx-rpm(862) -- MGX8800 Route Processor Module having the functionality of a C7200 router + ,mgx-srm-3t3(863) -- MGX8800 Service Redundancy Module supporting 3 T3 ports on back card, used for providing 1:N redundancy for T1 modules + ,vism-pr-8t1(899) -- Voice Interworking Service Module Premium Card (VISM-PR)with 8 T1 ports + ,wsx-2914(900) -- 4 port 10/100BaseTX module for Catalyst 2900XL series + ,wsx-2922(901) -- 2 port 100BaseFX module for Catalyst 2900XL series + ,wsx-2914-v(902) -- 4 port 10/100BaseTX ISL module for Catalyst 2900XL series + ,wsx-2922-v(903) -- 2 port 100BaseFX ISL module for Catalyst 2900XL series + ,wsx-2924-v(904) -- 4 port 100BaseFX module for Catalyst 2900XL series + ,wsx-2951(905) -- ATM UTP module for Catalyst 2900XL series + ,wsx-2961(906) -- ATM MMF module for Catalyst 2900XL series + ,wsx-2971(907) -- ATM SMF-MR module for Catalyst 2900XL series + ,wsx-2972(908) -- ATM SMF-LR module for Catalyst 2900XL series + ,wsx-2931(909) -- GBIC Gigabit module for Catalyst 2900XL series + ,lm-bnc-2t3(950) -- Two T3 75-ohm BNC back card + ,lm-bnc-2e3(951) -- Two E3 75-ohm BNC back card + ,lm-db15-4x21(952) -- Four X.21 DB-15 back card + ,lm-scsi2-2hssi(953) -- Two HSSI SCSI-2 back card + ,lm-rj48-8t1(954) -- Eight T1 RJ48 back card + ,lm-rj48-8t1-r(955) -- Eight T1 RJ48 redundancy back card + ,lm-rj48-8e1(956) -- Eight E1 RJ48 back card + ,lm-rj48-8e1-r(957) -- Eight E1 RJ48 redundancy back card + ,lm-smb-8e1(958) -- Eight E1 SMB back card + ,lm-smb-8e1-r(959) -- Eight E1 SMB redundancy back card + ,lm-psm-ui(960) -- User Interface back card containing 2 RS-232 ports and one ethernet port, T1/E1 timing reference ports for Processor Switch Modules + ,lm-mmf-4oc3(961) -- 4 port 155Mbps back card, MMF, SC connectors + ,lm-smfir-4oc3(962) -- 4 port 155Mbps back card, SMF-IR, SC connectors + ,lm-smflr-4oc3(963) -- 4 port 155Mbps back card, SMF-LR, SC connectors + ,lm-smfir-1oc12(964) -- 1 port 622Mbps back card, SMF-IR, FC connectors + ,lm-smflr-1oc12(965) -- 1 port 622Mbps back card, SMF-LR, FC connectors + ,lm-s3-ui(966) -- Processor Switch Module (PXM) Stratum 3 User Interface back card for PXM1 or PXM2 + ,lm-1fe-tx(967) -- 1 port Fast Ethernet RJ45 connector back card for MGX8800 RPM module + ,lm-1fe-fx(968) -- 1 port Fast Ethernet MMF connector back card for MGX8800 RPM module + ,lm-1mmf-fddi(969) -- 1 port FDDI MMF connector back card for MGX8800 RPM module + ,lm-1smf-fddi(970) -- 1 port FDDI SMF connector back card for MGX8800 RPM module + ,lm-rj45-4e(971) -- 4 port Ethernet (10BaseT) RJ45 connector back card for MGX8800 RPM module + ,lm-bnc-3t3(985) -- 3 T3 Back Card , BNC Connector + ,ubr-mc16s(1001) -- Cable card 1 downstream 6 upstream for Spectrum management + ,ubr-mc11(1002) -- Cable linecard 1 downstream, 1 upstream, FPGA + ,ubr-mc11c(1003) -- Cable linecard 1 downstream, 1 upstream, ASIC C + ,ubr-mc12c(1004) -- Cable linecard 1 downstream, 2 upstream, ASIC C + ,ubr-mc14c(1005) -- Cable linecard 1 downstream, 4 upstream, ASIC C + ,ubr-mc16a(1006) -- Cable linecard 1 downstream, 6 upstream, ASIC A + ,ubr-mc16b(1007) -- Cable linecard 1 downstream, 6 upstream, ASIC B + ,ubr-mc16c(1008) -- Cable linecard 1 downstream, 6 upstream, ASIC C + ,ubr-mc16e(1009) -- Cable linecard 1 downstream, 6 upstream, ASIC for Europe + ,ubr-mc28c(1010) -- Cable linecard 2 downstream, 8 upstream + ,ubr-mc26(1011) -- Cable linecard 2 downstream, 6 upstream + ,ubr-912c(1012) -- Cisco uBR912-C Cable Modem Card with CSU/DSU WIC + ,ubr-912s(1013) -- Cisco uBR912-S Cable Modem Card with Serial WIC + ,ubr-914r(1014) -- Cisco uBR914 Cable Modem with removable WIC + ,ubr-clk(1015) -- Cisco Cable Clock Card that provides the national clock signal to Cisco uBR7200 VXR + ,ubr-925(1016) -- Cisco UBR925 Cable Modem/Router with VOIP and hardware accelerated IPSEC + ,ubr-mc26c(1017) -- Cable linecard 2 downstream, 6 upstream + ,ubr-mc28cf(1020) -- Cable linecard 2 downstream, 8 upstream, with F connector + ,ubr-mc28c-bnc(1021) -- Cable linecard 2 downstream, 8 upstream, with BNC connector + ,ubr-mc26cf(1022) -- Cable linecard 2 downstream, 6 upstream, with F connector + ,ubr-mc26c-bnc(1023) -- Cable linecard 2 downstream, 6 upstream, with BNC connector + ,ubr-905(1024) -- Cisco uBR905 Cable Modem with hardware accelerated IPSEC + ,ubr-dlc24(1025) -- DLC24 is a Digital Video Broadcasting (DVB) Linecard which supports the DVB in-band (IB) and out-of-band (OOB) standards, as well as the DAVIC OOB standard. It has 2 downstream channels, 4 upstream channels, and 1 ASI interface port + ,ubr-mc520s-f(1029) -- Cable linecard, 5 downstreams, 20 upstreams, with Spectrum Management, with F connector + ,ubr-mc520s-bnc(1030) -- Cable linecard, 5 downstreams, 20 upstreams, with Spectrum Management, with BNC connector + + ,gsr-8fe-tx(1050) -- GSR 8 port Fast Ethernet card with Copper interface + ,gsr-8fe-fx(1051) -- GSR 8 port Fast Ethernet card with Fiber interface + ,ssrp-oc48-sm-sr(1052) -- GSR 1 port SONET based SRP OC-48c/STM-16 Single Mode, Short Reach + ,ssrp-oc48-sm-lr(1053) -- GSR 1 port SONET based SRP OC-48c/STM-16 Single Mode, Long Reach + ,pos-qoc12-sm-lr(1054) -- GSR 4 port (Quad) OC-12 POS card, single mode, long reach + ,pos-qoc12-mm-sr(1055) -- GSR 4 port (Quad) OC-12 POS card, multi mode, short reach + ,pos-oc48-sm-lr-sc(1056) -- GSR 1 port Packet Over Sonet OC-48, single mode, long reach, SC connector card + ,pos-oc48-sm-sr-sc(1057) -- GSR 1 port Packet Over Sonet OC-48, single mode, short reach, SC connector card + ,srp-oc12-sm-ir(1058) -- GSR 1 port single mode SRP OC-12/STM-4 intermediate reach module + ,srp-oc12-sm-lr(1059) -- GSR 1 port single mode SRP OC-12/STM-4 long reach module + ,srp-oc12-mm(1060) -- GSR 1 port SRP OC-12/STM-4 Multimode Ring line card + ,pos-en-oc48-sr-sc(1061) -- GSR enhanced OC-48 short reach SC connector line card + ,pos-en-oc48-sr-fc(1062) -- GSR enhanced OC-48 short reach FC connector line card + ,pos-en-oc48-lr-sc(1063) -- GSR enhanced OC-48 long reach SC connector line card + ,pos-en-oc48-lr-fc(1064) -- GSR enhanced OC-48 long reach FC connector line card + ,pos-en-qoc12-sr(1065) -- GSR enhanced 4 port OC-12 short reach line card + ,pos-en-qoc12-ir(1066) -- GSR enhanced 4 port OC-12 intermediate reach line card + ,copper-6ds3(1067) -- GSR 6 port copper DS3 interface line card + ,copper-12ds3(1068) -- GSR 12 port copper DS3 interface line card + ,gsr-sfc16(1073) -- GSR Switch Fabric Card for 12016 + ,gsr-csc16(1074) -- GSR 12016 Clock Scheduler Card + ,gsr-3ge(1075) -- GSR 3 Port Gigabit Ethernet Line Card + ,gsr-alarm16(1076) -- GSR Alarm module + ,gsr-bus-board16(1077) -- GSR Bus Board for Power distribution + ,srp-oc12-sm-xr(1078) -- GSR 1 port single mode SRP OC-12/STM-4 extra long reach module + ,pos-en-qoc12-mm(1079) -- GSR enhanced 4 port OC-12 multimode line card + ,pos-en-qoc48-sm-sr-fc(1080) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Short Reach, FC Connector Card + ,pos-en-qoc48-sm-sr-sc(1081) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Short Reach, SC Connector Card + ,pos-en-qoc48-sm-lr-sc(1082) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Long Reach, SC Connector Card + ,pos-en-qoc48-sm-lr-fc(1083) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Long Reach, FC Connector Card + ,gsr-6ct3(1084) -- GSR 6 Port Channelized T3 Line Card + ,pos-en-oc192-sm-lr-fc(1085) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Long Reach, FC Connector Card + ,pos-en-oc192-sm-lr-sc(1086) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Long Reach, SC Connector Card + ,pos-en-oc192-sm-vsr-sc(1087) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Very Short Reach, SC Connector Card + ,pos-en-oc192-sm-vsr-fc(1088) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Very Short Reach, FC Connector Card + ,gsr-sfc16-oc192(1091) -- GSR 12016 OC192 Switch Fabric Card + ,gsr-csc16-oc192(1092) -- GSR 12016 OC192 Clock Scheduler Card + ,gsr-qoc12-chstsds3-sm-ir-sc(1094) -- GSR 4 port OC12 channelized to STS-12c/STM-4, STS-3c/STM1, or DS-3, Single Mode, Intermediate Reach and SC connector line card + ,gsr-qoc12-chstsds3-mm-sr-sc(1095) -- GSR 4 port OC12 channelized to STS-12c/STM-4, STS-3c/STM1, or DS-3, Multi Mode, Short Reach and SC connector line card + ,gsr-oc48-chstsds3-mm-sr-sc(1096) -- GSR 1 port OC48 channelized to STS-48c/STM16, STS-12c/STM-4, STS-3c/STM1 or DS-3, Multi Mode, Short Reach and SC connector line card + ,gsr-oc48-chstsds3-sm-ir-sc(1097) -- GSR 1 port OC48 channelized to STS-48c/STM16, STS-12c/STM-4, STS-3c/STM1 or DS-3, Single Mode, Intermediate Reach and SC connector line card + ,gsr-oc48-chstsds3-sm-lr-sc(1098) -- GSR 1 port OC48 channelized to STS-48c/STM16, STS-12c/STM-4, STS-3c/STM1 or DS-3, Single Mode, Long Reach and SC connector line card + ,gsr-16oc3-chstsds3-mm-sr-sc(1099) -- GSR 16 port OC3 channelized to STS-3c/STM-1 or DS-3; Multi Mode fiber, Short Reach, SC connector line card + ,aim-lc-4e1-compression(1100) -- Lowcost 4 E-1 Compression AIM + ,wic-csu-dsu-ft1(1105) -- Wan Interface Card with 1 Fractional T1 DSU/CSU port for 2600, 3600 series + ,pm-ds3(1106) -- ATM DS3 port module for 2600, 3600 series + ,pm-e3(1107) -- ATM E3 port module for 2600, 3600 series + ,vic-2vp-fxs-did(1111) -- 2 Port Voice Interface Card for 26/3600 Platforms. Ports can function as Foreign Exchange Station (FXS)or Direct Inward Dialing (DID) Voice Ports (VP) + ,wic-serial-1t-12in1(1112) -- WAN Interface Card card including 1 port serial interface, 12 in 1 connector type + ,vic-2st-2086-nt-te(1113) -- Two port NT or TE Endpoint BRI S/T voice interface daughtercard + ,nm-aic64(1114) -- The new alarm interface card (AIC) network module with 64 monitoring points on the C26xx/C3600 platform + ,mix3660-64(1115) -- TDM Module that enables TDM switching on C3660 platform + ,wic-async-1am(1116) -- WAN Interface Card - 1 Port Analog Modem + ,wic-async-2am(1117) -- WAN Interface Card - Dual Analog Modem + ,hdv-4fxs(1120) -- 4-Port FXS High Density Analog Voice Module + ,c2610m(1121) -- c2600M with 1 integrated ethernet interface + ,c2611m(1122) -- c2600M with 2 integrated ethernet interfaces + ,wic-ethernet(1124) -- WIC-1ENET card for 17xx platforms + ,nm-1t3e3(1130) -- One port Clear T3/E3 Network Module + ,nm-1ct3e3(1131) -- One port Channelized T3/E3 Network Module + ,nm-8ct1e1(1132) -- Eight port Channelized T1/E1 Network Module + ,hda-em-4fxo(1133) -- 4-port FXO Expansion Module for High Density Analog Voice Interface Daughtercard + ,c2610xm-1fe(1134) -- Card with 1 integrated fast ethernet interface with SDRAM for Cisco 2610XM platform + ,c2611xm-2fe(1135) -- Card with 2 integrated fast ethernet interfaces with SDRAM for Cisco 2611XM platform + ,c2620xm-1fe(1136) -- Card with 1 integrated fast ethernet interface with SDRAM for Cisco 2620XM platform + ,c2621xm-2fe(1137) -- Card with 2 integrated fast ethernet interfaces with SDRAM for Cisco 2621XM platform + ,c2650xm-1fe(1138) -- Card with 1 integrated fast ethernet interface with SDRAM for Cisco 2650XM platform + ,c2651xm-2fe(1139) -- Card with 2 integrated fast ethernet interfaces with SDRAM for Cisco 2651XM platform + ,nm-1ct1e1-pri(1147) -- One port Primary Rate Interface (PRI) Channelized T1/E1 Network Module + ,nm-2ct1e1-pri(1148) -- Two port Primary Rate Interface (PRI) Channelized T1/E1 Network Module + + ,io-2fe-tx-isl(1150) -- I/O card Dual 10/100 Fast Ethernet ISL card for the 7100 series + ,ism-ipsec-mppe(1151) -- Integrated Service Module, used only in slot 5 of the 7100 series, is a hardware accelerator for IPSEC Encryption and Compression, and MPPE encryption. + ,vpn-accelerator(1152) -- VPN Encryption Accelerator Engine + ,vpn-accelerator-module2(1153) -- VPN Encryption Accelerator Engine 2 + ,vpn-accelerator-AES(1154) -- VPN Encryption Accelerator Engine with AES Support + ,cre-rp(1180) -- Central Routing Engine - Route Processor for Cisco 10000 series + ,cpu-as5400(1182) -- CPU card for AS5400 + ,cpu-mc3810-v3(1185) -- CPU card for the MC3810-V3; higher performance than MC3810 with NEBs compliant changes. + ,cpu-7200-nse1(1186) -- CPU card for use in the 7200 series, Network Service Engine 1. Contains a PXF (Parallel Express Forwarding) processor to accelerate layer 3-7 IP features. + ,cpu-as5850(1187) -- CPU card for AS5850 + ,cpu-7200-npe400(1188) -- Network processing engine (CPU card) for 7200 series + ,cpu-7150(1191) -- CPU for the 7150 series + ,cpu-7401-nse(1193) -- Cisco 7401 Network Processing Engine + ,cpu-gsr-prp1(1196) -- GSR Performance Route Processor 1 + ,cpu-c2691-2fe(1204) -- c2691 Motherboard with Fast Ethernet + ,cpu-c3745-2fe(1205) -- c3745 Motherboard with Fast Ethernet + ,cpu-c3725-2fe(1206) -- c3725 Motherboard with Fast Ethernet + ,cpu-c3631-1fe(1207) -- c3631 Motherboard with Fast Ethernet + ,cpu-6400-nsp(1209) -- Cisco 6400 Node Switch Processor + ,cpu-6400-nrp(1210) -- Cisco 6400 Node Route Processor + ,cpu-6400-nrp2(1211) -- Cisco 6400 Node Route Processor 2 + ,cpu-6400-nrp2-sv(1212) -- Cisco 6400 Node Route Processor 2 with Shaped VCs + ,cpu-as5400-hpx(1217) -- CPU card for AS5400HPX + ,cpu-vg224(1224) -- Line Side Analog Gateway with 24FXS Analog ports + ,cpu-gsr-prp2(1228) -- GSR Performance Route Processor 2 + + ,acc-24fe-tx(1307) -- c10720 24 ports fast ethernet Tx access card + ,acc-24fe-fx-mm(1308) -- c10720 24 ports fast ethernet FX MM (2km) access card + ,acc-24fe-fx-sm(1309) -- c10720 24 ports fast ethernet FX SM (15km) access card + ,srp-oc48-sr(1310) -- c10720 1 port OC-48c SRP SM short reach uplink card + ,srp-oc48-ir(1311) -- c10720 1 port OC-48c SRP SM intermediate reach uplink card + ,atm-4oc3(1313) -- 4 port OC3 ATM line card with single mode, intermediate reach optics for the C10000 platform + ,acc-4ge8fe-tx(1323) -- c10720 4 port gigabit ethernet + 8 port fast ethernet access card + ,acc-4ge8fe-fx-mm(1324) -- c10720 4 port gigabit ethernet + 8 port fast ethernet FX MM (2km) access card + ,acc-4ge8fe-fx-sm(1325) -- c10720 4 port gigabit ethernet + 8 port fast ethernet FX SM (15km) access card + ,ul-srp48-lr1(1326) -- c10720 1 port OC-48c SRP SM Long Reach (40Km) uplink card + ,ul-srp48-lr2(1327) -- c10720 1 port OC-48c SRP SM Long Reach (80Km) uplink card + ,c10720-mnt(1330) -- C10720 Maintenance card + ,ul-pos-srp48-sm-sr(1332) -- c10720 OC-48c POS/SRP SM short reach uplink card + ,ul-pos-srp48-sm-ir(1333) -- c10720 OC-48c POS/SRP SM intermediate reach uplink card + ,ul-pos-srp48-sm-lr1(1334) -- c10720 OC-48c POS/SRP SM Long Reach (40Km) uplink card + ,ul-pos-srp48-sm-lr2(1335) -- c10720 OC-48c POS/SRP SM Long Reach (80Km) uplink card + ,acc-24fe-tx-b(1336) -- c10720 24 ports fast ethernet Tx access card revB. + ,acc-4ge8fe-tx-b(1337) -- c10720 4 port gigabit ethernet + 8 port fast ethernet access card revB. + ,c10k-spa-jacket(1338) -- the Shared Port Adaptor (SPA) jacket (or host) card for the c10k. It can host up to 2 SPAs. + + + ,as5400-dfc-carrier(1350) -- Carrier card that holds Dial Feature Cards for the AS5400 platform + ,as5400-dfc-np348(1351) -- Nextport (np) Modem Dial Feature Card consisting of 3 modem modules, 2 of which have 120 modems and that has 108, for a total of 348 modems per card, used in AS5400 and AS5350 platforms + ,as5400-dfc-np192(1352) -- Nextport (np) Modem Dial Feature Card consisting of 2 modem modules, 1 of which has 120 modems the other 72, for a total of 192 modems per card, used in AS5400 and AS5350 platforms + ,dfc-8ce1(1450) -- 8 Primary Rate Interface (PRI) Channelized E1 (ce1) Dial Feature Card used in AS5400 and AS5800 platforms + ,dfc-8ct1(1451) -- 8 Primary Rate Interface (PRI) Channelized T1 (ct1) Dial Feature Card used in AS5400 and AS5800 platforms + ,dfc-ct3(1452) -- Channelized T3 (ct3) Dial Feature Card used in AS5400 and AS5800 platforms + ,dfc-np108(1453) -- Nextport (np) Modem Dial Feature Card consisting of 3 modem modules, each module has 36 modems, for a total of 108 modems per card, used in AS5400 and AS5800 platforms + ,isa-ipsec-mppe(1454) -- Integrated Service Port Adapter, used in the 7100 and 7200 series as a module, and in the 7500 series as a Port Adapter. Hardware Accelerator for IPSEC Encryption and Compression, and MPPE encryption. May not be used in slot 5 of the 7100. + ,wic-dslsar-20150(1455) -- DSLSAR ADSL WIC (Wan Interface Card) used in 1720, 1750, 2600 and 3600 series. DSLSAR - SAR (Segmentation & Reassembly) of ATM cells and can be used with any DSL (Digital Subscriber Line). Uses ADSL (Asymmetric Digital Subscriber Line) as the physical layer. + ,wvic-2dsu-t1-dir(1462) -- WAN Voice Interface Cards with a dual port T1 DSU with drop & insert and protection switching relay for MWR1900 + ,wvic-2dsu-e1-dir(1463) -- WAN Voice Interface Cards with a dual port E1 DSU with drop & insert and protection switching relay for MWR1900 + ,vic-4vp-fxs-did(1464) -- 4 port Voice Interface Card; Each port can function as Foreign Exchange Station(FXS) or Direct Inward Dialing (DID) Voice Port + ,vic-4fxo-us-m1(1465) -- Four port Foreign Exchange Office Voice Interface Card for US/North America or M1 interface + ,vic-4fxo-m2-m3(1466) -- Four port Foreign Exchange Office Voice Interface Card for M2 or M3 interface (software selectable on a card basis) + ,vic-4fxo-cama(1467) -- Four port Foreign Exchange Office Voice Interface Card for US/North America with CAMA (Centralized Automated Message Accounting) 911 signalling support (software selectable per port basis) + ,nm-se(1477) -- service engine network module + ,aim-se(1478) -- service engine Advanced Interface Module + ,wic-se(1479) -- service engine WIC + ,ipsec-sw-spa(1482) --IP Security Single-Wide Shared Port Adaptor (SW-SPA). Provides hardware acceleration for IPSec encryption/decryption and IKE + ,oc3-atm2-spa(1483) -- 2 port OC-3c/STM-1 ATM Shared Port Adapter (SPA) + ,oc3-atm4-spa(1484) -- 4 port OC-3c/STM-1 ATM Shared Port Adapter (SPA) + ,oc12-atm1-spa(1485) -- 1 port OC-12c/STM-4 ATM Shared Port Adapter (SPA) + ,oc12-atm2-spa(1486) -- 2 port OC-12c/STM-4 ATM Shared Port Adapter (SPA) + ,oc48-atm1-spa(1487) -- 1 port OC-48c/STM-16 ATM Shared Port Adapter (SPA) + ,t3e3-atm2-spa(1488) -- 2 port T3/E3 ATM Versitile Port Adapter (SPA) + ,t3e3-atm4-spa(1489) -- 4 port T3/E3 ATM Versitile Port Adapter (SPA) + ,oc192-pos-rpr1-xfp-spa(1498) -- 1 port OC-192c/STM-64 POS/RPR Shared Port Adapter (SPA) with XFP + ,oc192-pos-rpr1-sm-ir-spa(1499) -- 1 port OC-192c/STM-64 POS/RPR single mode intermediate reach Shared Port Adapter (SPA) + ,oc192-pos-rpr1-sm-sr-spa(1500) -- 1 port OC-192c/STM-64 POS/RPR single mode short reach Shared Port Adapter (SPA) + + + ,cat6k-wsx-sup-12ge(1502) -- Supervisor with 2 Gigabit Ethernet ports for the Catalyst 6000 series + ,cat6k-wsx-6408-gbic(1503) -- Card with 8 Gigabit Ethernet ports for the Catalyst 6000 series + ,cat6k-wsx-6224-100fx-mt(1504) -- Card with 24 port 100BaseFX MM (MT-RJ) for the Catalyst 6000 series + ,cat6k-wsx-6248-rj45(1505) -- Card with 48 10/100 RJ45 Fast Ethernet ports for the Catalyst 6000 series + ,cat6k-wsx-6248-tel(1506) -- Card with 48 10/100 RJ21 Fast Ethernet ports for the Catalyst 6000 series + ,cat6k-wsx-6302-msm(1507) -- Multilayer Switch Module for the Catalyst 6000 series + ,cat6k-wsx-6024-mtrj(1509) -- Card with 24 10/100 MTRJ Fast Ethernet ports for the Catalyst 6000 series + ,cat6k-msfc2(1510) -- Multilevel Switching Feature Card Version 2 for the Catalyst 6000 series + ,cat6k-wsx-6316-ge-tx(1511) -- 16-port RJ-45 Gigabit ethernet module + ,cat6k-wsx-6416-gbic(1512) -- 16-port GBIC Gigabit ethernet module + ,cat6k-wsx-6324-100fx(1513) -- 24-port 100FX multimode MT-RJ with 128K per-port packet buffer + ,cat6k-wsx-6348-rj45(1514) -- 48-port 10/100 ethernet module + ,cat6k-wsx-6502-10ge(1515) -- 10 Gigabit Ethernet Base Module + ,cat6k-wsx-6066-slb-apc(1516) -- Venus: Server Load Balancing Application Processor Complex + ,cat6k-wsx-6548-rj45(1518) -- 48 port 10/100 Hydra2+/Hydra2V+ + ,cat6k-wsx-6248a-tel(1519) -- Card for C6K with 48 10/100 RJ21 ports with enhanched QoS a.k.a Indus w/ Enhanced QoS + ,cat6k-wsx-sup2-2ge(1520) -- Supervisor 2 with 2 Gigabit Ethernet ports + ,cat6k-wsc-6500-sfm(1521) -- Catalyst 6500 Switch Fabric Module + ,cat6k-wsc-6500-sfm2(1522) --Catalyst 6500 Switch Fabric Module II + ,cat6k-wsx-6816-gbic(1523) -- Catalyst 6500 16 port 1000BaseX (Layer 3) + ,cat6k-wsx-6348-rj21(1528) -- Catalyst 6500 48 port 10/100BaseTX (RJ-21) + ,cat6k-wsx-6516-gbic(1529) -- Catalyst 6500 16 port 1000BaseX GBIC + ,cat6k-wsx-sup1a-2ge(1530) -- Catalyst 6500 2 port 1000BaseX Supervisor module (GBIC) + ,cat6k-wsx-6548-rj21(1531) -- Catalyst 6500 48 port 10/100BaseTX (RJ-21) + ,cat6k-wsx-6416-gemt(1532) -- Catalyst 6500 16 port 1000BaseSX (MT-RJ) + ,cat6k-wsx-6380-nam(1533) -- Catalyst 6500 Network Analysis Module + ,cat6k-wsx-6248a-rj45(1534) -- Catalyst 6500 48 port 10/100BaseTX (RJ-45) + ,cat6k-wsx-6408a-gbic(1535) -- Catalyst 6500 8 port 1000BaseX (GBIC), Enhanced QoS module + ,cat6k-wsx-6381-ids(1536) -- Catalyst 6500 Intrusion Detection module + ,cat6k-wsx-6524-mmmt(1537) -- Catalyst 6500 24 port 100BaseX MM (MT-RJ) module + ,cat6k-wsx-6516-getx(1538) -- Catalyst 6500 16 port 10/100/1000BaseT (RJ-45) module + ,cat6k-wsx-6501-10gex4(1539) -- Catalyst 6500 1 port 10 Gigabit Ethernet (EX4) module + ,cat6k-wsf-6kvpwr(1541) -- Catalyst 6500 inline power card + ,cat6k-ws-svc-nam1(1542) -- Catalyst 6500 Network Analysis Module + ,cat6k-ws-svc-nam2(1543) -- Catalyst 6500 Network Analysis Module + ,cat6k-ws-svc-fwm1(1544) -- Catalyst 6500 Firewall Module + ,cat6k-ws-svc-ssl1(1545) -- Catalyst 6500 SSL Module + ,ipsec-vpnsm(1549) -- Gigabit IPsec VPN Service Module for the Catalyst 6500 and 7600 + ,dspm-pvdm3(1556) -- Packet Voice DSP module with 3 C549 DSP's used by 17x0, 26x0, and 36x0 platforms + ,dspm-pvdm1(1561) -- Packet Voice DSP module with 1 C549 DSP used by 17x0, 26x0, and 36x0 platforms + ,dspm-pvdm2(1562) -- Packet Voice DSP module with 2 C549 DSPs used by 17x0, 26x0, and 36x0 platforms + ,dspm-pvdm4(1563) -- Packet Voice DSP module with 4 C549 DSPs used by 17x0, 26x0, and 36x0 platforms + ,dspm-pvdm5(1564) -- Packet Voice DSP module with 5 C549 DSPs used by 17x0, 26x0, and 36x0 platforms + ,hda-em-4dsp(1590) -- 4-C5421 DSP Daughtercard + ,hda-em-10fxs(1591) -- 10-port FXS Voice Interface Daughtercard + ,wic-sh-dsl(1565) -- A WIC (Wan Interface Card) providing Symmetrical HIgh bit rate Digital Subscriber line (SHDSL) for 2600, 3620, 3640 and 3660 platforms + ,hdv-8fxs(1566) -- 8-Port FXS Voice Interface Daughtercard + ,hdv-4dsp(1567) -- 4-chip DSP Daughtercard + ,vic-4vp-fxs-4did(1573) -- 4-port Direct Inward Dialing (DID) and 4-port Foreign Exchange Station (FXS) Voice Interface Daughtercard + ,em-4fxs-4fxo(1581) -- 8-port voice/fax expansion module - 4FXS/4FXO + ,em-6fxo(1582) -- 6-port voice/fax expansion module - FXO + ,em-4bri-nt-te(1583) -- 4-port voice/fax expansion module - BRI + ,vic2-mft1-t1e1(1594) -- 1-Port RJ-48 Multiflex Voice Trunk - T1/E1 + ,vic2-mft2-t1e1(1595) -- 2-Port RJ-48 Multiflex Voice Trunk - T1/E1 + + ,ituc-1p8(1611) -- ITU-C octal-line module + ,atuc-1p8-dmt(1618) -- ATU-C octal-line DMT module + ,stuc-1p8(1619) -- STU-C octal-line module + ,atuc-1p8-dmt-itemp(1620) -- ATU-C octal-line DMT module industrial temperature grade + ,stuc-1p8-itemp(1621) -- STU-C octal-line shdsl module industrial temperature grade + ,cva122(1700) -- Cisco CVA122 Cable Voice Adapter (Residential Cable Modem with two Voice Ports) + ,cva124(1701) -- Cisco CVA124 Cable Voice Adapter (Residential Cable Modem with four Voice Ports) + ,cva122e(1702) -- Cisco CVA122 Cable Voice Adapter (Residential Cable Modem with two voice ports) - European version + ,cva124e(1703) -- Cisco CVA124 Cable Voice Adapter (Residential Cable Modem with four voice ports) - European version + ,as5850-epm-2ge(1750) -- Route Switch Controller Card with 2 port Gigabit Ethernet + ,as5850-ct3-216up(1751) -- Feature Card with Channelized T3 and 216 Universal Ports + ,as58xx-324up(1753) -- Feature Card with 324 Universal Ports + ,as5850-24e1(1754) -- Feature Card with 24 port Channelized E1 for the AS5850 platform + ,gsr-16oc3-chstsds3-sm-ir-sc(1900) -- GSR 16 port OC3 channelized to STS-3c/STM-1 or DS-3; Single Mode fiber, Intermediate Reach, SC connector line card + ,gsr-16oc3-chstsds3-sm-lr-sc(1901) -- GSR 16 port OC3 channelized to STS-3c/STM-1 or DS-3; Single Mode fiber, Long Reach, SC connector line card + ,gsr-2oc3-chds1(1905) -- GSR platform card, 2 ports of OC3 (Sonet/SDH); each port is channelized to DS1 level + ,ssrp-oc192-sm-lr(1906) -- GSR 1 port SONET based SRP OC-192c/STM-64 single mode long reach line card + ,ssrp-oc192-sm-ir(1907) -- GSR 1 port SONET based SRP OC-192c/STM-64 single mode intermediate reach line card + ,ssrp-oc192-sm-sr(1908) -- GSR 1 port SONET based SRP OC-192c/STM-64 single mode short reach line card + ,ssrp-oc192-sm-vsr(1909) -- GSR 1 port SONET based SRP OC-192c/STM-64 single mode very short reach line card + ,gsr-sfc10(1912) -- GSR Switch Fabric Card for 12010 + ,gsr-csc10(1913) -- Clock Scheduler Card for GSR 12010 + ,gsr-alarm10(1914) -- GSR Alarm module + ,gsr-bus-board10(1915) -- GSR Bus Board for Power distribution + ,gsr-oc48-chstsds3-sm-sr-sc(1916) -- GSR 1-port-OC48, channelized to to STS-48c/STM-16, STS-12c/STM-4, STS-3c/STM-1 or DS3, single mode, short-reach, SC connector + ,gsr-e48-pos-oc48-sm-sr-sc(1917) -- GSR, Edge Engine 48, (concatenated) 1 port OC48 POS, single mode, short-reach, SC connector + ,gsr-e48-pos-oc48-sm-lr-sc(1918) -- GSR, Edge Engine 48, (concatenated) 1 port OC48 POS, single mode, short-reach, SC connector + ,gsr-e48-pos-qoc12-sm-ir-sc(1919) -- GSR, Edge Engine 48, 4 port (concatenated) OC12 POS, single mode, intermediate reach, SC connector + ,gsr-e48-pos-16oc3-sm-ir-sc(1920) -- GSR, Edge Engine 48, 16 port (concatenated) OC3 POS, single mode, intermediate reach, SC connector + ,copper-6e3(1921) -- GSR 6 port copper E3 interface line card + ,copper-12e3(1922) -- GSR 12 port copper E3 interface line card + ,gsr-e48-pos-16oc3-sm-ir-lc(1926) -- GSR, Edge Engine 48, 16 port (concatenated) OC3 POS, single mode, intermediate reach, LC connector + ,gsr-16oc3-chstsds3-sm-ir-lc(1927) -- GSR 16 port OC3 channelized to STS-3c/STM-1 or DS-3; single mode fiber, intermediate reach, LC connector + ,gsr-sfc6(1929) -- GSR 12406 Switch Fabric Card + ,gsr-csc6(1930) -- GSR 12406 Clock Scheduler Card + ,gsr-alarm6(1931) -- GSR 12406 Alarm Module + ,pos-en-qoc48-vsr(1932) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Very Short Reach Card + ,pos-en-qoc48-mm-sr-sc(1933) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Multi Mode, Short Reach, SC Connector Card + ,pos-en-qoc48-sm-ir-sc(1934) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Intermediate Reach, SC Connector Card + ,pos-en-qoc48-sm-ir-fc(1935) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Intermediate Reach, FC Connector Card + ,pos-en-qoc48-sm-vlr-sc(1936) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Very Long Reach, SC Connector Card + ,pos-en-qoc48-sm-vlr-fc(1937) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Very Long Reach, FC Connector Card + ,pos-en-qoc48-sm-elr-sc(1938) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Extremely Long Reach, SC Connector Card + ,pos-en-qoc48-sm-elr-fc(1939) -- GSR enhanced 4 Port Packet Over Sonet OC-48, Single Mode, Extremely Long Reach, FC Connector Card + ,pos-en-oc192-vsr(1940) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Very Short Reach Card + ,pos-en-oc192-sm-sr2-sc(1941) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Short Reach 2, SC Connector Card + ,pos-en-oc192-sm-sr2-fc(1942) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Short Reach 2, FC Connector Card + ,pos-en-oc192-sm-vlr-sc(1943) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Very Long Reach, SC Connector Card + ,pos-en-oc192-sm-vlr-fc(1944) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Very Long Reach, FC Connector Card + ,pos-en-oc192-sm-elr-sc(1945) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Extremely Long Reach, SC Connector Card + ,pos-en-oc192-sm-elr-fc(1946) -- GSR enhanced 1 Port Packet Over Sonet OC-192, Single Mode, Extremely Long Reach, FC Connector Card + ,gsr-sfc12410(1947) -- GSR 12410 Switch Fabric Card + ,gsr-csc12410(1948) -- GSR 12410 Clock Scheduler Card + ,iad2420-vm-8fxs(1950) -- This card provides 8 analog Foreign eXchange Stations (FXS) in the Integrated Access Device 2420 (IAD2420) chassis + ,iad2420-16fxs(1951) -- This card provides 16 analog Foreign eXchange Stations (FXS) in the Integrated Access Device 2420 (IAD2420) chassis + ,iad2420-vm-pwr(1952) -- This card provides power supply to high density analog FXS voice module in the Integrated Access Device 2420 (IAD2420) chassis + ,iad2420-adsl(1953) -- This card provides access to ADSL (Asymmetrical Digital Subscriber Line) over ATM (Asynchronous Transfer Mode) AAL2 (ATM Adaptation Layer 2), AAL5 (ATM Adaptation Layer 5) and various class of QoS (Quality of Service) for both voice and data service on the Integrated Access Device 2420 (IAD2420) chassis + ,iad2420-hcm1(1954) -- High performance compression module for the IAD2420 platform equipped with one TI 549 DSP + ,iad2420-hcm2(1955) -- High performance compression module for the IAD2420 platform equipped with two TI 549 DSPs + ,iad2420-hcm3(1956) -- High performance compression module for the IAD2420 platform equipped with three TI 549 DSPs + ,iad2420-hcm4(1957) -- High performance compression module for the IAD2420 platform equipped with four TI 549 DSPs + ,iad2420-hcm5(1958) -- High performance compression module for the IAD2420 platform equipped with five TI 549 DSPs + ,iad2420-hcm6(1959) -- High performance compression module for the IAD2420 platform equipped with six TI 549 DSPs + ,iad2420-cpu(1960) -- CPU card for IAD2420 + ,iad2420-mfm-e1-unbalanced(1961) -- IAD2420 E1 75 ohms unbalanced + ,iad2420-mfm-e1-dsx1-csu(1962) -- IAD2420 E1 100/120 ohms balanced + ,iad2420-mfm-t1-dsx1-csu(1963) -- IAD2420 T1 100/120 ohms balanced only + ,iad2420-8fxo(1964) -- High density 8 analog Foreign eXchange Office (FXO) module + ,iad2420-16fxs-off-premise(1967) -- IAD2420 Sixteen FXS Off Premise Analog Voice Module + ,gsr-atm-en-8oc3-mm(1968) -- GSR enhanced 8 port OC3c/STM-1 Multimode ATM LC + ,iad2430-ob-8fxs(1983) -- This card provides 8 on-board analog Foreign Exchange Stations (FXS) in the Integrated Access Device 2430 (IAD2430) chassis + ,iad2430-ob-16fxs(1984) -- This card provides 16 on-board analog Foreign Exchange Stations (FXS) in the Integrated Access Device 2430 (IAD2430) chassis + ,iad2430-ob-24fxs(1985) -- This card provides 24 on-board analog Foreign Exchange Stations (FXS) in the Integrated Access Device 2430 (IAD2430) chassis + ,iad2430-ob-t1e1(1986) -- This card provides on-board T1/E1 in the Integrated Access Device 2430 (IAD2430) chassis. + + ,mc3810-hcm5(2000) -- High performance compression module for the MC3810 platform equipped with five TI 549 DSPs + ,m10000base-lx4(2051) -- Cisco Wide-WDM 1310nm Laser 10 gigabit ethernet port adapter + ,m10000base-ex4(2052) -- Cisco Wide-WDM 1550nm Laser 10 gigabit ethernet port adapter + ,m10000base-lr(2053) -- Cisco Serial 1310nm Laser 10 gigabit ethernet port adapter + ,m10000base-er(2054) -- Cisco Serial 1550nm Laser 10 gigabit ethernet port adapter + ,m10000base-sx4(2055) -- Cisco Wide-WDM 850nm Laser 10 gigabit ethernet port adapter + + ,c7401(2100) -- Cisco 7400 Family, 1 Slot Router + ,io-c7401-ge(2101) -- Cisco 7401 I/O Controller with dual 10/100/1000Mbps GE interfaces + ,c7411-npeg1(2128) -- Cisco 7400 Family, 1 Slot Router + ,io-c7411-ge(2129) -- Cisco 7411 I/O Controller with three 10/100/1000Mbps GE interfaces + ,vip6-80(2132) -- A new VIP card to be used in 7500 box. this card is same as VIP4-80 but with a higher speed CPU. + ,pa-a6-mm-oc3(2133) -- ATM WAN OC3 MM Port Adapter. + ,pa-a6-smi-oc3(2134) -- ATM WAN OC3 SMI Port Adapter. + ,pa-a6-sml-oc3(2135) -- ATM WAN OC3 SML Port Adapter. + ,pa-a6-ds3(2136) -- ATM WAN OC3 DS3 Port Adapter. + ,pa-a6-e3(2137) -- ATM WAN OC3 E3 Port Adapter. + ,c7300-cc-pa(2138) -- Port Adaptor Carrier Card for Cisco 7304 + + ,gsr-e48-pos-oc48-sm-ir-sc(2201) -- GSR, Edge Engine, OC48 POS, Single Mode, Intermediate Reach, SC Connector + ,gsr-e-oc192-sm-lr-sc(2203) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Long Reach, SC Connector card + ,gsr-e-oc192-sm-vsr-sc(2204) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Very Short Reach, SC Connector card + ,gsr-e-oc192-sm-vsr-fc(2205) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Very Short Reach, FC Connector card + ,gsr-e-oc192-sm-sr-fc(2206) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Short Reach, FC Connector card + ,gsr-e-oc192-sm-sr-sc(2207) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Short Reach, SC Connector card + ,gsr-e-oc192-sm-lr-fc(2208) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Long Reach, FC Connector card + ,gsr-e-qoc48-sm-lr-fc(2209) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Long Reach, FC Connector card + ,gsr-e-qoc48-sm-lr-sc(2210) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Long Reach, SC Connector card + ,gsr-e-qoc48-sm-vsr-sc(2211) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Very Short Reach, SC Connector card + ,gsr-e-qoc48-sm-vsr-fc(2212) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Very Short Reach, FC Connector card + ,gsr-e-qoc48-sm-sr-fc(2213) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Short Reach, FC Connector card + ,gsr-e-qoc48-sm-sr-sc(2214) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Short Reach, SC Connector card + ,gsr-e-qoc48-vsr(2215) -- GSR Edge 4 Port Packet over Sonet OC-48, Very Short Reach + ,gsr-e-qoc48-sm-sr2-sc(2216) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Short Reach 2, SC Connector card + ,gsr-e-qoc48-sm-sr2-fc(2217) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Short Reach 2, FC Connector card + ,gsr-e-qoc48-mm-sr-sc(2218) -- GSR Edge 4 Port Packet over Sonet OC-48, Multi Mode, Short Reach, SC Connector card + ,gsr-e-qoc48-sm-ir-sc(2219) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Intermediate Reach, SC Connector card + ,gsr-e-qoc48-sm-ir-fc(2220) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Intermediate Reach, FC Connector card + ,gsr-e-qoc48-sm-vlr-sc(2221) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Very Long Reach, SC Connector card + ,gsr-e-qoc48-sm-vlr-fc(2222) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Very Long Reach, FC Connector card + ,gsr-e-qoc48-sm-elr-sc(2223) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Extremely Long Reach, SC Connector card + ,gsr-e-qoc48-sm-elr-fc(2224) -- GSR Edge 4 Port Packet over Sonet OC-48, Single Mode, Extremely Long Reach, FC Connector card + ,gsr-e-oc192-vsr(2225) -- GSR Edge 1 Port Packet over Sonet OC-192, Very Short Reach + ,gsr-e-oc192-sm-sr2-sc(2226) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Short Reach 2, SC Connector card + ,gsr-e-oc192-sm-sr2-fc(2227) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Short Reach 2, FC Connector card + ,gsr-e-oc192-mm-sr-sc(2228) -- GSR Edge 1 Port Packet over Sonet OC-192, Multi Mode, Short Reach, SC Connector card + ,gsr-e-oc192-sm-ir-sc(2229) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Intermediate Reach, SC Connector card + ,gsr-e-oc192-sm-ir-fc(2230) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Intermediate Reach, FC Connector card + ,gsr-e-oc192-sm-vlr-sc(2231) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Very Long Reach, SC Connector card + ,gsr-e-oc192-sm-vlr-fc(2232) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Very Long Reach, FC Connector card + ,gsr-e-oc192-sm-elr-sc(2233) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Extremely Long Reach, SC Connector card + ,gsr-e-oc192-sm-elr-fc(2234) -- GSR Edge 1 Port Packet over Sonet OC-192, Single Mode, Extremely Long Reach, FC Connector card + ,ssrp-2oc48-srp-sm-sr-lc(2236) -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, SRP Mode, Single Mode, Short Reach, LC Connector card + ,ssrp-2oc48-srp-sm-ir-lc(2237) -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, SRP Mode, Single Mode, Intermediate Reach, LC Connector card + ,ssrp-2oc48-srp-sm-lr-lc(2238) -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, SRP Mode, Single Mode, Long Reach, LC Connector card + ,ssrp-2oc48-pos-sm-sr-lc(2239) -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, POS Mode, Single Mode, Short Reach, LC Connector card + ,ssrp-2oc48-pos-sm-ir-lc(2240) -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, POS Mode, Single Mode, Intermediate Reach, LC Connector card + ,ssrp-2oc48-pos-sm-lr-lc(2241) -- GSR 2 port SONET dual SRP/POS OC-48c/STM-16, POS Mode, Single Mode, Long Reach, LC Connector card + ,gsr-gefe(2244) -- Modular Gigabit/Fast Ethernet card for GSR + ,gsr-pa-3ge(2246) -- 3 Port Gigabit Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR + ,gsr-pa-24fe(2247) -- 24 Port Fast Ethernet Port Adapter Of Modular Gigabit/Fast Ethernet card for GSR + ,gsr-e48-atm-4oc12-sm-ir-sc(2248) -- Edge Engine 48, ATM, 4 ports OC12/STM4, Single Mode, Intermediate Reach, SC connector + ,gsr-e48-atm-4oc12-mm-sr-sc(2249) -- GSR, Edge Engine 48, ATM, 4 ports OC12/STM4, Multi Mode, Short Reach, SC connector + ,ssrp-e48-2oc12-sm-ir(3008) -- GSR 2 port SONET based SRP OC-12c/STM-4 Single mode Intermediate reach line card + ,ssrp-e48-2oc12-sm-xr(3009) -- GSR 2 port SONET based SRP OC-12c/STM-4 Single mode Extented reach line card + ,ssrp-e48-1oc12-sm-ir(3010) -- GSR 1 port SONET based SRP OC-12c/STM-4 Single mode Intermediate reach line card + ,ssrp-e48-1oc12-sm-xr(3011) -- GSR 1 port SONET based SRP OC-12c/STM-4 Single mode Extented reach line card + ,gsr-6ds3e3-smb(3028) -- GSR 6 Port DS3/E3 Clear Channel, SMB Connector line card + ,gsr-6ds3e3ct3-smb(3029) -- GSR 6 Port DS3/E3 Clear channel and/or Channelized to DS1/E1, SMB Connector line card + ,gsr-2oc3-chds1ds3e3-sm-ir-sc(3030) -- GSR 2 Port STM-1/OC-3 Channelized to DS3/E3/DS1/E1, Single Mode, Intermediate Reach and SC Connector line card + + ,vism-pr-8e1(3050) -- Voice Interworking Service Module Premium Card (VISM-PR) with 8 E1 ports + ,vxsm-4oc3(3051) -- Voice switch service module, 4 port OC3/STM-1 compliant + ,mgx-srm-4oc3(3052) -- MGX88xx voice service redundancy module, used to providing 1:N redundancy for 4 OC3 + + ,hd-dsp(4015) -- 5510 Digital Signal Processor on NM-HD-1V,NM-HD-2V and NM-HD-2VE + ,nm-8am-v2(4020) -- 8 Port Analog Modem Network Module Version 2 + ,nm-16am-v2(4021) -- 16 Port Analog Modem Network Module Version 2 + ,cpu-c2811-2fe(4023) -- 2811 Motherboard with two integrated fast ethernets and integrated VPN + ,cpu-c2821-2ge(4024) -- 2821 Motherboard with two integrated gigabit ethets and integrated VPN + ,cpu-c2851-2ge(4025) -- 2851 Motherboard with two integrated gigabit ethernets and integrated VPN + + ,cat6k-wsf-6k-pfc(4058) -- Catalyst 6500 L3 switching engine + ,cat6k-wsf-6k-pfc2(4059) -- Catalyst 6500 L3 switching engine II + ,cat6k-wsf-6k-dfc(4060) -- Catalyst 6500 distributed switching engine + ,cat6k-wsx-6148-ge-tx(4063) -- Catalyst 6000 48 port10/100/1000BaseT(RJ-45) module + ,cat6k-wsx-6148-rj21(4064) -- Catalyst 6000 48 port10/100BaseTX(RJ-21) module + ,cat6k-wsx-6148-rj45(4065) -- Catalyst 6000 48 port10/100BaseTX(RJ-45) module + ,cat6k-wsf-6700-dfc3a(4067) -- Catalyst 6500 Distributed L3 switching engine IIIa + ,cat6k-ws-svc-idsm2(4069) -- Catalyst 6500 Intrusion Detection Module + ,cat6k-ws-svc-idsupg(4070) -- Catalyst 6500 IDS 2 accelerator board + + ,oc3-sfp(4100) -- Oc3 Small Form Factor Pluggable Optics(SFP) + ,oc12-sfp(4101) -- Oc12 Small Form Factor Pluggable Optics(SFP) + ,osm-2oc48-pos-ss(4102) -- Optical Service Module, 2-Port OC48 POS, Single-mode, Short-reach with 4 Gigabit Ethernet ports + ,osm-2oc48-pos-si(4103) -- Optical Service Module, 2-Port OC48 POS Single-mode, Intermediate-reach with 4 Gigabit Ethernet ports + ,osm-2oc48-pos-sl(4104) -- Optical Service Module, 2-Port OC48 POS Single-mode, Long-reach with 4 Gigabit Ethernet ports + ,osm-1oc48-srp-ss(4105) -- Optical Service Module, 1-Port OC48 SONET based SRP,Single-mode, Short-reach with 4 Gigabit Ethernet ports + ,osm-1oc48-srp-si(4106) -- Optical Service Module, 1-Port OC48 SONET based SRP,Single-mode, Intermediate-reach with 4 Gigabit Ethernet ports + ,osm-1oc48-srp-sl(4107) -- Optical Service Module, 1-Port OC48 SONET based SRP,Single-mode, Long-reach with 4 Gigabit Ethernet ports + ,pwr-ac-465w(4113) -- Cisco 465W AC Power Supply. + ,oc192-xfp-smsr1(4128) -- OC192 XFP Single Mode Short Reach 1 (2km) + ,oc192-xfp-smir2(4129) -- OC192 XFP Single Mode Intermediate Reach 2 (40km) + ,oc192-xfp-smlr2(4130) -- OC192 XFP Single Mode Long Reach 2 (80km) + + + + ,oc192-pos-rpr1-sm-vsr-spa(4201) -- 1 port OC-192c/STM-64 POS/RPR single mode very short reach Shared Port Adapter (SPA) + + + + + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Functional type of this card." + ::= { cardTableEntry 2 } + + cardDescr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Text description of this card." + ::= { cardTableEntry 3 } + + cardSerial OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The serial number of this card, or zero if + unavailable." + ::= { cardTableEntry 4 } + + cardHwVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Hardware revision level of this card, or an + empty string if unavailable." + ::= { cardTableEntry 5 } + + cardSwVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Version of the firmware or microcode + installed on this card, or an empty string if + unavailable." + ::= { cardTableEntry 6 } + + cardSlotNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Slot number relative to the containing card or + chassis, or -1 if neither applicable nor + determinable." + ::= { cardTableEntry 7 } + + cardContainedByIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "cardIndex of the parent card which + directly contains this card, or 0 if + contained by the chassis, or -1 if not + applicable nor determinable." + ::= { cardTableEntry 8 } + + cardOperStatus OBJECT-TYPE + SYNTAX INTEGER { + not-specified(1), + up(2), + down(3), + standby(4) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "The operational status of the card. + cardOperStatus is up when a card is + recognized by the device and is enabled for + operation. cardOperStatus is down if the + card is not recognized by the device, or if + it is not enabled for operation. + cardOperStatus is standby if the card is + enabled and acting as a standby slave" + ::= { cardTableEntry 9 } + + cardSlots OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Number of slots on this card, or 0 if no + slots or not applicable, or -1 if not + determinable." + ::= { cardTableEntry 10 } + + -- End of table + + + chassisSlots OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Number of slots in this chassis, or -1 of + neither applicable nor determinable." + ::= { chassis 12 } + + cardIfIndexTable OBJECT-TYPE + SYNTAX SEQUENCE OF CardIfIndexEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Chassis card table." + ::= { chassis 13 } + + cardIfIndexEntry OBJECT-TYPE + SYNTAX CardIfIndexEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Chassis card table." + INDEX { cardIfIndex } + ::= { cardIfIndexTable 1 } + + CardIfIndexEntry ::= + SEQUENCE { + cardIfIndex + INTEGER, + cardIfSlotNumber + INTEGER, + cardIfPortNumber + INTEGER, + cardIfCardIndex + INTEGER, + cardIfConnectorTypeEnabled + INTEGER + } + + cardIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "matches RFC1213 ifTable IfIndex" + ::= { cardIfIndexEntry 1 } + + cardIfSlotNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Chassis slot number, or -1 if neither + applicable nor determinable." + ::= { cardIfIndexEntry 2 } + + cardIfPortNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Chassis port number, unique per port on a + given card if available. If cardIfPortNumber is not + applicable to the card, then the object instance + won't be populated" + ::= { cardIfIndexEntry 3 } + + cardIfCardIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS deprecated + DESCRIPTION + "cardIndex of the card in the Chassis + cardTable which contains this interface, or -1 if + not applicable." + ::= { cardIfIndexEntry 4 } + + cardIfConnectorTypeEnabled OBJECT-TYPE + SYNTAX INTEGER { + not-specified(1), + none (2), + rj-45 (3), + db-40 (4), + db-15 (5), + auto-select (6), + gbic-sx (7), + gbic-lx (8), + gbic-lh (9), + gbic-cx (10), + gbic-zx (11), + missing (12), + mmf-st (13), + mmf-sc (14), + rj-11 (15), + rj-48s (16), + rj-48c (17), + db-60 (18), + gbic-stack(19), + gbic-1000baset(20) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Interface connector type currently + enabled. Value will be 1 if not known or not + used, or 2 if none of this ports' interface + connectors are enabled." + ::= { cardIfIndexEntry 5 } + + -- End of table + + chassisPartner OBJECT-TYPE + SYNTAX INTEGER { + cisco(1) + ,synoptics(2) + ,chipcom(3) + ,cabletron(4) + ,dec(5) + ,ncr(6) + ,usrobotics(7) + ,alcatel(8) + ,nec(9) + ,dsc(10) + ,microcom(11) + ,oki(12) + ,ubn(13) + ,hp(14) + ,samsung(15) + ,mitsubishi(16) + } + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Used to determine if this is a partner + variant of a product." + ::= { chassis 14 } + + sysUpTimeAtLastChassisChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS deprecated + DESCRIPTION + "Time in seconds/100 from the last cold + start to the last change in the chassis' + configuration. This value will be updated + whenever the chassis experiences a change + in the count, type, or slot position of + a card in cardTable." + ::= { chassis 15 } + + + + + + + END + diff --git a/pandora_console/attachment/mibs/OLD-CISCO-CPU-MIB b/pandora_console/attachment/mibs/OLD-CISCO-CPU-MIB new file mode 100644 index 0000000000..2f2cbdcb24 --- /dev/null +++ b/pandora_console/attachment/mibs/OLD-CISCO-CPU-MIB @@ -0,0 +1,70 @@ +-- ***************************************************************** +-- OLD-CISCO-CPU-MIB.my: Old Cisco Cpu MIB file +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- + + OLD-CISCO-CPU-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + local + FROM CISCO-SMI; + +-- lcpu is the same as lsystem +-- name changed to support separate compilation with mibcomp + + lcpu OBJECT IDENTIFIER ::= { local 1 } + + busyPer OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CPU busy percentage in the last 5 second + period. Not the last 5 realtime seconds but + the last 5 second period in the scheduler." + ::= { lcpu 56 } + + avgBusy1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1 minute exponentially-decayed moving + average of the CPU busy percentage." + ::= { lcpu 57 } + + avgBusy5 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5 minute exponentially-decayed moving + average of the CPU busy percentage." + ::= { lcpu 58 } + + idleCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "cisco internal variable. not to be used" + ::= { lcpu 59 } + + idleWired OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "cisco internal variable. not to be used" + ::= { lcpu 60 } + +END + diff --git a/pandora_console/attachment/mibs/OLD-CISCO-FLASH-MIB b/pandora_console/attachment/mibs/OLD-CISCO-FLASH-MIB new file mode 100644 index 0000000000..2b552dd5c8 --- /dev/null +++ b/pandora_console/attachment/mibs/OLD-CISCO-FLASH-MIB @@ -0,0 +1,278 @@ +-- ***************************************************************** +-- OLD-CISCO-FLASH-MIB.my: Old Cisco Flash MIB file +-- +-- Copyright (c) 1994,1997 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- + + OLD-CISCO-FLASH-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB + local + FROM CISCO-SMI; + + lflash OBJECT IDENTIFIER ::= { local 10 } + + -- Local cisco Flash Group + + -- This group is present in all products which contain flash" + + flashSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total Size in Octets of Flash memory" + ::= { lflash 1 } + + flashFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unused Size in Octets of Flash memory" + ::= { lflash 2 } + + flashController OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the type of Flash controller + (either CCTL or CCTL2) installed in the + router." + ::= { lflash 3 } + + flashCard OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Provides the type of Flash Card installed + in the router. For example, the type of + Flash Card could be either CSC-MS or + CSC-MC+." + ::= { lflash 4 } + + flashVPP OBJECT-TYPE + SYNTAX INTEGER { + installed(1), + missing(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State of the VPP DIP jumper on the Flash + memory card. Files can be written to the + Flash memory card only if the VPP DIP + jumper is turned on." + ::= { lflash 5 } + + flashErase OBJECT-TYPE + SYNTAX INTEGER + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Request to erase flash memory" + ::= { lflash 6 } + + flashEraseTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the value of sysUptime the last + time Flash memory was erased. If the flash + had not been erased after powerup it has a + value of 0 days 00:00:00." + ::= { lflash 7 } + + flashEraseStatus OBJECT-TYPE + SYNTAX INTEGER { + flashOpInProgress(1), + flashOpSuccess(2), + flashOpFailure(3), + flashReadOnly(4), + flashOpenFailure(5), + bufferAllocationFailure(6), + noOpAfterPowerOn(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status of current or last flash erasing" + ::= { lflash 8 } + + flashToNet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Write flash entry to tftp server. Value + should be the name of the flash entry to + send. Instance is the IP address of the tftp + host." + ::= { lflash 9 } + + flashToNetTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the value of sysUpTime the last + time a file was transfered from Flash memory + on the router to a TFTP host. Returns + 0 days 00:00:00 if there had been no transfer + since powerup." + ::= { lflash 10 } + + flashToNetStatus OBJECT-TYPE + SYNTAX INTEGER { + flashOpInProgress(1), + flashOpSuccess(2), + flashOpFailure(3), + flashReadOnly(4), + flashOpenFailure(5), + bufferAllocationFailure(6), + noOpAfterPowerOn(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status of current or last flash to net + transfer" + ::= { lflash 11 } + + netToFlash OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Write flash entry from tftp server. Value + should be the name of the flash entry to + write. Instance is the IP address of the tftp + host." + ::= { lflash 12 } + + netToFlashTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the value of sysUpTime the last + time file was copied from a Trivial File + Transfer Protocol(TFTP) server to the Flash + memory on the router. Returns 0 days 00:00:00 + if there had been no transfers since powerup." + ::= { lflash 13 } + + netToFlashStatus OBJECT-TYPE + SYNTAX INTEGER { + flashOpInProgress(1), + flashOpSuccess(2), + flashOpFailure(3), + flashReadOnly(4), + flashOpenFailure(5), + bufferAllocationFailure(6), + noOpAfterPowerOn(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status of current or last net to flash + transfer" + ::= { lflash 14 } + + flashStatus OBJECT-TYPE + SYNTAX INTEGER { + busy(1), + available(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Status of the availability of flash" + ::= { lflash 15 } + + flashEntries OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of entries in the flash directory" + ::= { lflash 16 } + + + -- Local Flash file Table + + -- This group contains information on a per file basis + + lflashFileDirTable OBJECT-TYPE + SYNTAX SEQUENCE OF LflashFileDirEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + " A list of flash file entries." + ::= { lflash 17 } + + lflashFileDirEntry OBJECT-TYPE + SYNTAX LflashFileDirEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of flash eprom objects" + INDEX { flashEntries } + ::= { lflashFileDirTable 1 } + + LflashFileDirEntry ::= + SEQUENCE { + flashDirName + DisplayString, + flashDirSize + INTEGER, + flashDirStatus + INTEGER + } + + -- The following section describes the components of the + -- table. + + flashDirName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name associated with the flash entry" + ::= { lflashFileDirEntry 1 } + + flashDirSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size in Octets of a flash entry" + ::= { lflashFileDirEntry 2 } + + flashDirStatus OBJECT-TYPE + SYNTAX INTEGER { + valid(1), + deleted(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the status of the entry" + ::= { lflashFileDirEntry 3 } + + -- End of table + + +END diff --git a/pandora_console/attachment/mibs/OLD-CISCO-INTERFACES-MIB b/pandora_console/attachment/mibs/OLD-CISCO-INTERFACES-MIB new file mode 100644 index 0000000000..2497959647 --- /dev/null +++ b/pandora_console/attachment/mibs/OLD-CISCO-INTERFACES-MIB @@ -0,0 +1,1405 @@ +-- ***************************************************************** +-- OLD-CISCO-INTERFACES-MIB.my: Cisco Interfaces MIB file +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994,1997 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- + + OLD-CISCO-INTERFACES-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString, ifIndex + FROM RFC1213-MIB + local + FROM CISCO-SMI; + + linterfaces OBJECT IDENTIFIER ::= { local 2 } + + + -- Local Interface Group + + -- This group is present in all products. + + + -- Local Interface Table + + -- This group provides additional objects to the table + -- defined by RFC1156. + + lifTable OBJECT-TYPE + SYNTAX SEQUENCE OF LifEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries." + ::= { linterfaces 1 } + + lifEntry OBJECT-TYPE + SYNTAX LifEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of additional objects in the + cisco interface." + INDEX { ifIndex } + ::= { lifTable 1 } + + LifEntry ::= + SEQUENCE { + locIfHardType + DisplayString, + locIfLineProt + INTEGER, + locIfLastIn + INTEGER, + locIfLastOut + INTEGER, + locIfLastOutHang + INTEGER, + locIfInBitsSec + INTEGER, + locIfInPktsSec + INTEGER, + locIfOutBitsSec + INTEGER, + locIfOutPktsSec + INTEGER, + locIfInRunts + INTEGER, + locIfInGiants + INTEGER, + locIfInCRC + INTEGER, + locIfInFrame + INTEGER, + locIfInOverrun + INTEGER, + locIfInIgnored + INTEGER, + locIfInAbort + INTEGER, + locIfResets + INTEGER, + locIfRestarts + INTEGER, + locIfKeep + INTEGER, + locIfReason + DisplayString, + locIfCarTrans + INTEGER, + locIfReliab + INTEGER, + locIfDelay + INTEGER, + locIfLoad + INTEGER, + locIfCollisions + INTEGER, + locIfInputQueueDrops + INTEGER, + locIfOutputQueueDrops + INTEGER, + locIfDescr + DisplayString, + locIfSlowInPkts + Counter, + locIfSlowOutPkts + Counter, + locIfSlowInOctets + Counter, + locIfSlowOutOctets + Counter, + locIfFastInPkts + Counter, + locIfFastOutPkts + Counter, + locIfFastInOctets + Counter, + locIfFastOutOctets + Counter, + locIfotherInPkts + Counter, + locIfotherOutPkts + Counter, + locIfotherInOctets + Counter, + locIfotherOutOctets + Counter, + locIfipInPkts + Counter, + locIfipOutPkts + Counter, + locIfipInOctets + Counter, + locIfipOutOctets + Counter, + locIfdecnetInPkts + Counter, + locIfdecnetOutPkts + Counter, + locIfdecnetInOctets + Counter, + locIfdecnetOutOctets + Counter, + locIfxnsInPkts + Counter, + locIfxnsOutPkts + Counter, + locIfxnsInOctets + Counter, + locIfxnsOutOctets + Counter, + locIfclnsInPkts + Counter, + locIfclnsOutPkts + Counter, + locIfclnsInOctets + Counter, + locIfclnsOutOctets + Counter, + locIfappletalkInPkts + Counter, + locIfappletalkOutPkts + Counter, + locIfappletalkInOctets + Counter, + locIfappletalkOutOctets + Counter, + locIfnovellInPkts + Counter, + locIfnovellOutPkts + Counter, + locIfnovellInOctets + Counter, + locIfnovellOutOctets + Counter, + locIfapolloInPkts + Counter, + locIfapolloOutPkts + Counter, + locIfapolloInOctets + Counter, + locIfapolloOutOctets + Counter, + locIfvinesInPkts + Counter, + locIfvinesOutPkts + Counter, + locIfvinesInOctets + Counter, + locIfvinesOutOctets + Counter, + locIfbridgedInPkts + Counter, + locIfbridgedOutPkts + Counter, + locIfbridgedInOctets + Counter, + locIfbridgedOutOctets + Counter, + locIfsrbInPkts + Counter, + locIfsrbOutPkts + Counter, + locIfsrbInOctets + Counter, + locIfsrbOutOctets + Counter, + locIfchaosInPkts + Counter, + locIfchaosOutPkts + Counter, + locIfchaosInOctets + Counter, + locIfchaosOutOctets + Counter, + locIfpupInPkts + Counter, + locIfpupOutPkts + Counter, + locIfpupInOctets + Counter, + locIfpupOutOctets + Counter, + locIfmopInPkts + Counter, + locIfmopOutPkts + Counter, + locIfmopInOctets + Counter, + locIfmopOutOctets + Counter, + locIflanmanInPkts + Counter, + locIflanmanOutPkts + Counter, + locIflanmanInOctets + Counter, + locIflanmanOutOctets + Counter, + locIfstunInPkts + Counter, + locIfstunOutPkts + Counter, + locIfstunInOctets + Counter, + locIfstunOutOctets + Counter, + locIfspanInPkts + Counter, + locIfspanOutPkts + Counter, + locIfspanInOctets + Counter, + locIfspanOutOctets + Counter, + locIfarpInPkts + Counter, + locIfarpOutPkts + Counter, + locIfarpInOctets + Counter, + locIfarpOutOctets + Counter, + locIfprobeInPkts + Counter, + locIfprobeOutPkts + Counter, + locIfprobeInOctets + Counter, + locIfprobeOutOctets + Counter, + locIfDribbleInputs + Counter + } + + + -- The following section describes the components of the + -- table. + + locIfHardType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Returns the type of interface." + ::= { lifEntry 1 } + + locIfLineProt OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether interface line protocol is + up or not." + ::= { lifEntry 2 } + + locIfLastIn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Elapsed time in milliseconds since last line + protocol input packet was received." + ::= { lifEntry 3 } + + locIfLastOut OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Elapsed time in milliseconds since last line + protocol output packet was transmitted." + ::= { lifEntry 4 } + + locIfLastOutHang OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Elapsed time in milliseconds since last line + protocol output packet could not be + successfully transmitted." + ::= { lifEntry 5 } + + locIfInBitsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute exponentially-decayed moving + average of input bits per second." + ::= { lifEntry 6 } + + locIfInPktsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute exponentially-decayed moving + average of input packets per second." + ::= { lifEntry 7 } + + locIfOutBitsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute exponentially-decayed moving + average of output bits per second." + ::= { lifEntry 8 } + + locIfOutPktsSec OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Five minute exponentially-decayed moving + average of output packets per second." + ::= { lifEntry 9 } + + locIfInRunts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of packets input which were smaller + then the allowable physical media permitted." + ::= { lifEntry 10 } + + locIfInGiants OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which were larger + then the physical media permitted." + ::= { lifEntry 11 } + + locIfInCRC OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which had cyclic + redundancy checksum errors." + ::= { lifEntry 12 } + + locIfInFrame OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packet which were + misaligned." + ::= { lifEntry 13 } + + locIfInOverrun OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of input which arrived too quickly for + the to hardware receive." + ::= { lifEntry 14 } + + locIfInIgnored OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which were simply + ignored by this interface." + ::= { lifEntry 15 } + + locIfInAbort OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of input packets which were aborted." + ::= { lifEntry 16 } + + locIfResets OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the interface internally + reset." + ::= { lifEntry 17 } + + locIfRestarts OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times interface needed to be + completely restarted." + ::= { lifEntry 18 } + + locIfKeep OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Boolean whether keepalives are enabled on + this interface." + ::= { lifEntry 19 } + + locIfReason OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Reason for interface last status change." + ::= { lifEntry 20 } + + locIfCarTrans OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times interface saw the carrier + signal transition." + ::= { lifEntry 21 } + + locIfReliab OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The reliability of the interface. Used by + IGRP." + ::= { lifEntry 22 } + + locIfDelay OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of delay in microseconds of the + interface. Used by IGRP." + ::= { lifEntry 23 } + + locIfLoad OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The loading factor of the interface. Used by + IGRP." + ::= { lifEntry 24 } + + locIfCollisions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of output collisions detected on + this interface." + ::= { lifEntry 25 } + + locIfInputQueueDrops OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets dropped because the + input queue was full." + ::= { lifEntry 26 } + + locIfOutputQueueDrops OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets dropped because the + output queue was full." + ::= { lifEntry 27 } + + locIfDescr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "User configurable interface description." + ::= { lifEntry 28 } + + locIfSlowInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Packet count for Inbound traffic routed with + slow switching" + ::= { lifEntry 30 } + + locIfSlowOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Packet count for Outbound traffic routed + with slow switching" + ::= { lifEntry 31 } + + locIfSlowInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Octet count for Inbound traffic routed with + slow switching" + ::= { lifEntry 32 } + + locIfSlowOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Octet count for Outbound traffic routed with + slow switching" + ::= { lifEntry 33 } + + locIfFastInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Packet count for Inbound traffic routed with + fast switching" + ::= { lifEntry 34 } + + locIfFastOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Packet count for Outbound traffic routed + with fast switching" + ::= { lifEntry 35 } + + locIfFastInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Octet count for Inbound traffic routed with + fast switching" + ::= { lifEntry 36 } + + locIfFastOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Octet count for Outbound traffic routed with + fast switching" + ::= { lifEntry 37 } + + locIfotherInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Other protocol input packet count" + ::= { lifEntry 38 } + + locIfotherOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Other protocol output packet count" + ::= { lifEntry 39 } + + locIfotherInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Other protocol input octet count" + ::= { lifEntry 40 } + + locIfotherOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Other protocol output octet count" + ::= { lifEntry 41 } + + locIfipInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "ip protocol input packet count" + ::= { lifEntry 42 } + + locIfipOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "ip protocol output packet count" + ::= { lifEntry 43 } + + locIfipInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "ip protocol input octet count" + ::= { lifEntry 44 } + + locIfipOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "ip protocol output octet count" + ::= { lifEntry 45 } + + locIfdecnetInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Decnet protocol input packet count" + ::= { lifEntry 46 } + + locIfdecnetOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Decnet protocol output packet count" + ::= { lifEntry 47 } + + locIfdecnetInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Decnet protocol input byte count" + ::= { lifEntry 48 } + + locIfdecnetOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Decnet protocol output byte count" + ::= { lifEntry 49 } + + locIfxnsInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "XNS protocol input packet count" + ::= { lifEntry 50 } + + locIfxnsOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "XNS protocol output packet count" + ::= { lifEntry 51 } + + locIfxnsInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "XNS protocol input byte count" + ::= { lifEntry 52 } + + locIfxnsOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "XNS protocol output byte count" + ::= { lifEntry 53 } + + locIfclnsInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CLNS protocol input packet count" + ::= { lifEntry 54 } + + locIfclnsOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CLNS protocol output packet count" + ::= { lifEntry 55 } + + locIfclnsInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CLNS protocol input byte count" + ::= { lifEntry 56 } + + locIfclnsOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CLNS protocol output byte count" + ::= { lifEntry 57 } + + locIfappletalkInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Appletalk protocol input packet count" + ::= { lifEntry 58 } + + locIfappletalkOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Appletalk protocol output packet count" + ::= { lifEntry 59 } + + locIfappletalkInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Appletalk protocol input octet count" + ::= { lifEntry 60 } + + locIfappletalkOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Appletalk protocol output octet count" + ::= { lifEntry 61 } + + locIfnovellInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Novell protocol input packet count" + ::= { lifEntry 62 } + + locIfnovellOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Novell protocol output packet count" + ::= { lifEntry 63 } + + locIfnovellInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Novell protocol input octet count" + ::= { lifEntry 64 } + + locIfnovellOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Novell protocol output octet count" + ::= { lifEntry 65 } + + locIfapolloInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Apollo protocol input packet count" + ::= { lifEntry 66 } + + locIfapolloOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Apollo protocol output packet count" + ::= { lifEntry 67 } + + locIfapolloInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Apollo protocol input octet count" + ::= { lifEntry 68 } + + locIfapolloOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Apollo protocol output octet count" + ::= { lifEntry 69 } + + locIfvinesInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Vines protocol input packet count" + ::= { lifEntry 70 } + + locIfvinesOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Vines protocol output packet count" + ::= { lifEntry 71 } + + locIfvinesInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Vines protocol input octet count" + ::= { lifEntry 72 } + + locIfvinesOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Vines protocol output octet count" + ::= { lifEntry 73 } + + locIfbridgedInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bridged protocol input packet count" + ::= { lifEntry 74 } + + locIfbridgedOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bridged protocol output packet count" + ::= { lifEntry 75 } + + locIfbridgedInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bridged protocol input octet count" + ::= { lifEntry 76 } + + locIfbridgedOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Bridged protocol output octet count" + ::= { lifEntry 77 } + + locIfsrbInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SRB protocol input packet count" + ::= { lifEntry 78 } + + locIfsrbOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SRB protocol output packet count" + ::= { lifEntry 79 } + + locIfsrbInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SRB protocol input octet count" + ::= { lifEntry 80 } + + locIfsrbOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "SRB protocol output octet count" + ::= { lifEntry 81 } + + locIfchaosInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Choas protocol input packet count" + ::= { lifEntry 82 } + + locIfchaosOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Choas protocol output packet count" + ::= { lifEntry 83 } + + locIfchaosInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Choas protocol input octet count" + ::= { lifEntry 84 } + + locIfchaosOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Choas protocol output octet count" + ::= { lifEntry 85 } + + locIfpupInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "PUP protocol input packet count" + ::= { lifEntry 86 } + + locIfpupOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "PUP protocol output packet count" + ::= { lifEntry 87 } + + locIfpupInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "PUP protocol input octet count" + ::= { lifEntry 88 } + + locIfpupOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "PUP protocol output octet count" + ::= { lifEntry 89 } + + locIfmopInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MOP protocol input packet count" + ::= { lifEntry 90 } + + locIfmopOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MOP protocol output packet count" + ::= { lifEntry 91 } + + locIfmopInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MOP protocol input octet count" + ::= { lifEntry 92 } + + locIfmopOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "MOP protocol output octet count" + ::= { lifEntry 93 } + + locIflanmanInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "LanMan protocol input packet count" + ::= { lifEntry 94 } + + locIflanmanOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "LanMan protocol output packet count" + ::= { lifEntry 95 } + + locIflanmanInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "LanMan protocol input octet count" + ::= { lifEntry 96 } + + locIflanmanOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "LanMan protocol output octet count" + ::= { lifEntry 97 } + + locIfstunInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "STUN protocol input packet count" + ::= { lifEntry 98 } + + locIfstunOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "STUN protocol output packet count" + ::= { lifEntry 99 } + + locIfstunInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "STUN protocol input octet count" + ::= { lifEntry 100 } + + locIfstunOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "STUN protocol output octet count" + ::= { lifEntry 101 } + + locIfspanInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Spanning tree input protocol packet count" + ::= { lifEntry 102 } + + locIfspanOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Spanning tree output protocol packet count" + ::= { lifEntry 103 } + + locIfspanInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Spanning tree input octet packet count" + ::= { lifEntry 104 } + + locIfspanOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Spanning tree output octet packet count" + ::= { lifEntry 105 } + + locIfarpInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Arp protocol input packet count" + ::= { lifEntry 106 } + + locIfarpOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Arp protocol output packet count" + ::= { lifEntry 107 } + + locIfarpInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Arp protocol input octet count" + ::= { lifEntry 108 } + + locIfarpOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Arp protocol output octet count" + ::= { lifEntry 109 } + + locIfprobeInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Probe protocol input packet count" + ::= { lifEntry 110 } + + locIfprobeOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Probe protocol output packet count" + ::= { lifEntry 111 } + + locIfprobeInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Probe protocol input octet count" + ::= { lifEntry 112 } + + locIfprobeOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Probe protocol output octet count" + ::= { lifEntry 113 } + + locIfDribbleInputs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of good packets received with the + dribble condition present" + ::= { lifEntry 114 } + + -- End of table + + + + -- Local FSIP card Table, also used for 4T, HSSI, Mx serial + + -- This group provides additional objects to the table + -- defined by RFC1156. + + lFSIPTable OBJECT-TYPE + SYNTAX SEQUENCE OF LFSIPEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of card entries for 4T, HSSI, + Mx serial or FSIP." + ::= { linterfaces 2 } + + lFSIPEntry OBJECT-TYPE + SYNTAX LFSIPEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of objects specific to 4T, + HSSI, Mx serial or FSIP." + INDEX { locIfFSIPIndex } + ::= { lFSIPTable 1 } + + LFSIPEntry ::= + SEQUENCE { + locIfFSIPIndex + INTEGER, + locIfFSIPtype + INTEGER, + locIfFSIPrts + INTEGER, + locIfFSIPcts + INTEGER, + locIfFSIPdtr + INTEGER, + locIfFSIPdcd + INTEGER, + locIfFSIPdsr + INTEGER, + locIfFSIPrxClockrate + INTEGER, + locIfFSIPrxClockrateHi + INTEGER, + locIfFSIPportType + INTEGER + } + + + -- The following section describes the components of the + -- table. + + locIfFSIPIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Interface index of this card corresponding + to its ifIndex" + ::= { lFSIPEntry 1 } + + locIfFSIPtype OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + dte(2), + dce(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this FSIP line DCE or DTE" + ::= { lFSIPEntry 2 } + + locIfFSIPrts OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + up(2), + down(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is the RTS signal up or down" + ::= { lFSIPEntry 3 } + + locIfFSIPcts OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + up(2), + down(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is the CTS signal up or down" + ::= { lFSIPEntry 4 } + + locIfFSIPdtr OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + up(2), + down(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is the DTR signal up or down" + ::= { lFSIPEntry 5 } + + locIfFSIPdcd OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + up(2), + down(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is the DCD signal up or down" + ::= { lFSIPEntry 6 } + + locIfFSIPdsr OBJECT-TYPE + SYNTAX INTEGER { + notAvailable(1), + up(2), + down(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is the DSR signal up or down" + ::= { lFSIPEntry 7 } + + locIfFSIPrxClockrate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Received clock rate" + ::= { lFSIPEntry 8 } + + locIfFSIPrxClockrateHi OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Use when received clock rate + is greater than 2^32 (gigabits)." + ::= { lFSIPEntry 9 } + + -- PortType is modeled after rs232PortType + -- in RS-232-MIB.my + + locIfFSIPportType OBJECT-TYPE + SYNTAX INTEGER { + noCable(1), + rs232(2), + rs422(3), + rs423(4), + v35(5), + x21(6), + rs449(7), + rs530(8), + hssi(9) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Cable Type of 4T, HSSI, Mx serial or FSIP" + ::= { lFSIPEntry 10 } + + -- End of table + + +END diff --git a/pandora_console/attachment/mibs/OLD-CISCO-SYS-MIB b/pandora_console/attachment/mibs/OLD-CISCO-SYS-MIB new file mode 100644 index 0000000000..fcf85c02ff --- /dev/null +++ b/pandora_console/attachment/mibs/OLD-CISCO-SYS-MIB @@ -0,0 +1,1043 @@ +-- ***************************************************************** +-- OLD-CISCO-SYS-MIB.my: Cisco System MIB file +-- +-- July 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-1996 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- +-- Prior to 10.2, Cisco's lsystem mib group contained a curious +-- assortment of mib objects. For 10.2, in order to allow similar +-- objects to be compiled separately with the mib compiler, the +-- lsystem group was separated into an envmon group (lenv), a cpu +-- group (lcpu), a memory group (lmem), and a system group (lsystem). +-- In order to preserve the OBJECT IDENTIFIERS from release 10.1 to +-- 10.2, however, all four groups are still based at { local 1 }. +-- This is fine from the mib compiler point-of-view, but causes +-- problems for some test tools which don't like the fact that +-- lsystem, lenv, lmem, and lcpu all have the same OBJECT IDENTIFIER. +-- In order to work around this problem, this file exists which +-- is a combination of the four 10.2 "system" mibs, with everything +-- falling under the lsystem group (as it did in 10.1). +-- +-- This mib should only be used as a replacement for the four separate +-- system mibs (OLD-CISCO-CPU.my, OLD-CISCO-ENVMON-MIB.my, +-- OLD-CISCO-MEMORY-MIB.my, OLD-CISCO-SYSTEM-MIB.my) in test tool +-- environments. The aforementioned mibs should always be used in +-- code generation + + OLD-CISCO-SYS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + IpAddress + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB + local + FROM CISCO-SMI; + + lsystem OBJECT IDENTIFIER ::= { local 1 } + + -- Local Variable Section + + -- This section describes the local variables within the cisco + -- product line. Groups may or may not be present depending + -- on the software options present in the managed device. + + + -- Local System Group + + -- This group is present in all products. + + romId OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains a printable octet + string which contains the System Bootstrap + description and version identification." + ::= { lsystem 1 } + + whyReload OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains a printable octet + string which contains the reason why the + system was last restarted." + ::= { lsystem 2 } + + hostName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable represents the name of the + host in printable ascii characters." + ::= { lsystem 3 } + + domainName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable is the domain portion of the + domain name of the host." + ::= { lsystem 4 } + + authAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains the last SNMP + authorization failure IP address." + ::= { lsystem 5 } + + bootHost OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the IP address of the host that + supplied the currently running software." + ::= { lsystem 6 } + + ping OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS obsolete + DESCRIPTION + "The ping mib object is obsolete as of IOS 10.2 + It has been superseded by the Cisco Ping MIB" + ::= { lsystem 7 } + + freeMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "The freeMem mib object is obsolete as of IOS 11.1 + It has been replaced with the cisco memory pool mib" + ::= { lsystem 8 } + + bufferElFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free buffer + elements." + ::= { lsystem 9 } + + bufferElMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of buffer + elements." + ::= { lsystem 10 } + + bufferElHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of buffer element hits." + ::= { lsystem 11 } + + bufferElMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of buffer element + misses." + ::= { lsystem 12 } + + bufferElCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of buffer element + creates." + ::= { lsystem 13 } + + bufferSmSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of small buffers." + ::= { lsystem 14 } + + bufferSmTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of small buffers." + ::= { lsystem 15 } + + bufferSmFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free small buffers." + ::= { lsystem 16 } + + bufferSmMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of small + buffers." + ::= { lsystem 17 } + + bufferSmHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer hits." + ::= { lsystem 18 } + + bufferSmMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer misses." + ::= { lsystem 19 } + + bufferSmTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer trims." + ::= { lsystem 20 } + + bufferSmCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of small buffer + creates." + ::= { lsystem 21 } + + bufferMdSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of medium buffers." + ::= { lsystem 22 } + + bufferMdTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of medium + buffers." + ::= { lsystem 23 } + + bufferMdFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free medium buffers." + ::= { lsystem 24 } + + bufferMdMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of medium + buffers." + ::= { lsystem 25 } + + bufferMdHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer hits." + ::= { lsystem 26 } + + bufferMdMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer + misses." + ::= { lsystem 27 } + + bufferMdTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer trims." + ::= { lsystem 28 } + + bufferMdCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of medium buffer + creates." + ::= { lsystem 29 } + + bufferBgSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of big buffers." + ::= { lsystem 30 } + + bufferBgTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of big buffers." + ::= { lsystem 31 } + + bufferBgFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free big buffers." + ::= { lsystem 32 } + + bufferBgMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of big buffers." + ::= { lsystem 33 } + + bufferBgHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer hits." + ::= { lsystem 34 } + + bufferBgMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer misses." + ::= { lsystem 35 } + + bufferBgTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer trims." + ::= { lsystem 36 } + + bufferBgCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of big buffer creates." + ::= { lsystem 37 } + + bufferLgSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of large buffers." + ::= { lsystem 38 } + + bufferLgTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of large buffers." + ::= { lsystem 39 } + + bufferLgFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free large buffers." + ::= { lsystem 40 } + + bufferLgMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of large + buffers." + ::= { lsystem 41 } + + bufferLgHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer hits." + ::= { lsystem 42 } + + bufferLgMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer misses." + ::= { lsystem 43 } + + bufferLgTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer trims." + ::= { lsystem 44 } + + bufferLgCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of large buffer + creates." + ::= { lsystem 45 } + + bufferFail OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of the number of buffer allocation + failures." + ::= { lsystem 46 } + + bufferNoMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Count of the number of buffer create + failures due to no free memory." + ::= { lsystem 47 } + + netConfigAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the address of the host that supplied + the network-confg file." + ::= { lsystem 48 } + + netConfigName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the name of the network configuration + file." + ::= { lsystem 49 } + + netConfigSet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Cause the loading of a new network-confg + file using TFTP." + ::= { lsystem 50 } + + hostConfigAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Contains the address of the host that + provided the host-config file." + ::= { lsystem 51 } + + hostConfigName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "Contains the name of the last configured + host-confg file." + ::= { lsystem 52 } + + hostConfigSet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS obsolete + DESCRIPTION + "Cause the loading of a new host-confg file + using TFTP." + ::= { lsystem 53 } + + writeMem OBJECT-TYPE + SYNTAX INTEGER + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Write configuration into non-volatile memory + / erase config memory if 0." + ::= { lsystem 54 } + + writeNet OBJECT-TYPE + SYNTAX DisplayString + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Write configuration to host using TFTP." + ::= { lsystem 55 } + + busyPer OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "CPU busy percentage in the last 5 second + period. Not the last 5 realtime seconds but + the last 5 second period in the scheduler." + ::= { lsystem 56 } + + avgBusy1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "1 minute exponentially-decayed moving + average of the CPU busy percentage." + ::= { lsystem 57 } + + avgBusy5 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "5 minute exponentially-decayed moving + average of the CPU busy percentage." + ::= { lsystem 58 } + + idleCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "cisco internal variable. not to be used" + ::= { lsystem 59 } + + idleWired OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "cisco internal variable. not to be used" + ::= { lsystem 60 } + + ciscoContactInfo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "cisco's name and address" + ::= { lsystem 61 } + + bufferHgSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the size of huge buffers." + ::= { lsystem 62 } + + bufferHgTotal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the total number of huge buffers." + ::= { lsystem 63 } + + bufferHgFree OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of free huge buffers." + ::= { lsystem 64 } + + bufferHgMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the maximum number of huge + buffers." + ::= { lsystem 65 } + + bufferHgHit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer hits." + ::= { lsystem 66 } + + bufferHgMiss OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer misses." + ::= { lsystem 67 } + + bufferHgTrim OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer trims." + ::= { lsystem 68 } + + bufferHgCreate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Contains the number of huge buffer creates." + ::= { lsystem 69 } + + netConfigProto OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the protocol that supplied the + network-confg file." + ::= { lsystem 70 } + + hostConfigProto OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the protocol that supplied the host- + confg file." + ::= { lsystem 71 } + + sysConfigAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the address of the host that supplied + the system boot image." + ::= { lsystem 72 } + + sysConfigName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the name of the system boot image." + ::= { lsystem 73 } + + sysConfigProto OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Holds the protocol that supplied the system + boot image." + ::= { lsystem 74 } + + sysClearARP OBJECT-TYPE + SYNTAX INTEGER + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Perform a clearing of the entire ARP cache + and invalidation of route caches." + ::= { lsystem 75 } + + sysClearInt OBJECT-TYPE + SYNTAX INTEGER + ACCESS write-only + STATUS mandatory + DESCRIPTION + "Clear interface given IfIndex as value." + ::= { lsystem 76 } + + envPresent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is there an environmental monitor card in + this box?, 0 - No, 1-AGS card present, wrong + firmware, 2-AGS CARD present, firmware ok, + 3-7000 support" + ::= { lsystem 77 } + + envTestPt1Descr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the test point 1. Typically + ambient air or the temperature of air + entering the router" + ::= { lsystem 78 } + + envTestPt1Measure OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current value of test point 1. Typically a + temperature in centigrade." + ::= { lsystem 79 } + + envTestPt2Descr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the test point 2. Typically + airflow or the temperature of air leaving the + router" + ::= { lsystem 80 } + + envTestPt2Measure OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current value of test point 2. Typically a + temperature in centigrade." + ::= { lsystem 81 } + + envTestPt3Descr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the test point 3. Typically + +5 volt" + ::= { lsystem 82 } + + envTestPt3Measure OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current value of test point 3. Typically the + value in millivolts of the +5v supply" + ::= { lsystem 83 } + + envTestPt4Descr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the test point 4. Typically + +12 volt" + ::= { lsystem 84 } + + envTestPt4Measure OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current value of test point 4. Typically the + value in millivolts of the +12v supply" + ::= { lsystem 85 } + + envTestPt5Descr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the test point 5. Typically + -12 volt" + ::= { lsystem 86 } + + envTestPt5Measure OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current value of test point 5. Typically the + value in millivolts of the -12v supply" + ::= { lsystem 87 } + + envTestPt6Descr OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of the test point 6. Typically + -5 volt" + ::= { lsystem 88 } + + envTestPt6Measure OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current value of test point 6. Typically the + value in millivolts of the -5v supply" + ::= { lsystem 89 } + + envTestPt1MarginVal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value at which the router will shutdown. + Typically the ambient air temperature that + will shut the router down. (e.g. 43)" + ::= { lsystem 90 } + + envTestPt2MarginVal OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value at which the router will shutdown. + Typically the airflow air temperature that + will shut the router down. (e.g. 58)" + ::= { lsystem 91 } + + envTestPt3MarginPercent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "+/- Percentage that will shut the router + down, (e.g. 10%) typically +5 volt" + ::= { lsystem 92 } + + envTestPt4MarginPercent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "+/- Percentage that will shut the router + down, (e.g. 15%) typically +12 volt" + ::= { lsystem 93 } + + envTestPt5MarginPercent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "+/- Percentage that will shut the router + down, (e.g. 15%) typically -12 volt" + ::= { lsystem 94 } + + envTestPt6MarginPercent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "+/- Percentage that will shut the router + down, (e.g. 10%) typically -5 volt" + ::= { lsystem 95 } + + envTestPt1last OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value of TestPt1 when last shutdown + occurred." + ::= { lsystem 96 } + + envTestPt2last OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value of TestPt2 when last shutdown + occurred." + ::= { lsystem 97 } + + envTestPt3last OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value of TestPt3 when last shutdown + occurred." + ::= { lsystem 98 } + + envTestPt4last OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value of TestPt4 when last shutdown + occurred." + ::= { lsystem 99 } + + envTestPt5last OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value of TestPt5 when last shutdown + occurred." + ::= { lsystem 100 } + + envTestPt6last OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Value of TestPt6 when last shutdown + occurred." + ::= { lsystem 101 } + + envTestPt1warn OBJECT-TYPE + SYNTAX INTEGER { + warning(1), + noWarning(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this test point at a warning level?" + ::= { lsystem 102 } + + envTestPt2warn OBJECT-TYPE + SYNTAX INTEGER { + warning(1), + noWarning(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this test point at a warning level?" + ::= { lsystem 103 } + + envTestPt3warn OBJECT-TYPE + SYNTAX INTEGER { + warning(1), + noWarning(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this test point at a warning level?" + ::= { lsystem 104 } + + envTestPt4warn OBJECT-TYPE + SYNTAX INTEGER { + warning(1), + noWarning(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this test point at a warning level?" + ::= { lsystem 105 } + + envTestPt5warn OBJECT-TYPE + SYNTAX INTEGER { + warning(1), + noWarning(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this test point at a warning level?" + ::= { lsystem 106 } + + envTestPt6warn OBJECT-TYPE + SYNTAX INTEGER { + warning(1), + noWarning(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Is this test point at a warning level?" + ::= { lsystem 107 } + + envFirmVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Description of Environmental Card firmware" + ::= { lsystem 108 } + + envTechnicianID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Technician ID" + ::= { lsystem 109 } + + envType OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of environmental card" + ::= { lsystem 110 } + + envBurnDate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The calibration / burn in date" + ::= { lsystem 111 } + + envSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Serial Number of environmental monitor card" + ::= { lsystem 112 } + + + END diff --git a/pandora_console/attachment/mibs/OPMANAGER-MIB b/pandora_console/attachment/mibs/OPMANAGER-MIB new file mode 100644 index 0000000000..a8cacdf895 --- /dev/null +++ b/pandora_console/attachment/mibs/OPMANAGER-MIB @@ -0,0 +1,367 @@ + +-- File Name : OPMANAGER-MIB +-- This is used for Trap Notification in OpManager + + +ADVENTNET-OPMANAGER-MIB DEFINITIONS ::= BEGIN + IMPORTS + DisplayString + FROM SNMPv2-TC + DisplayString + FROM RFC1213-MIB + org, MODULE-IDENTITY, OBJECT-TYPE, IpAddress, NOTIFICATION-TYPE + FROM SNMPv2-SMI; + + org OBJECT IDENTIFIER + ::= { iso 3 } + + dod OBJECT IDENTIFIER + ::= { org 6 } + + internet OBJECT IDENTIFIER + ::= { dod 1 } + + private OBJECT IDENTIFIER + ::= { internet 4 } + + enterprises OBJECT IDENTIFIER + ::= { private 1 } + + adventnet OBJECT IDENTIFIER + ::= { enterprises 2162 } + + adventnetMibs OBJECT IDENTIFIER + ::= { adventnet 100 } + + adventnetOpManagerMIB OBJECT IDENTIFIER + ::= { adventnetMibs 5 } + + adventnetOpManagerMIBObjects OBJECT IDENTIFIER + ::= { adventnetOpManagerMIB 1 } + + opManagerNotifications OBJECT IDENTIFIER + ::= { adventnetOpManagerMIBObjects 1 } + + alertInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 1 } + + deviceInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 2 } + + intfInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 3 } + + customInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 4 } + + customIntfInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 5 } + + monitorInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 6 } + + nfaAlertInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 7 } + + fwaAlertInfo OBJECT IDENTIFIER + ::= { opManagerNotifications 8 } + + message OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "message of the alarm generated in OpManager" + ::= { alertInfo 1 } + + deviceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "name of device in which alarm generated" + ::= { alertInfo 2 } + + category OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "category name of the device" + ::= { alertInfo 3 } + + stringseverity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "severity of the alarm as a string value" + ::= { alertInfo 4 } + + strModTime OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "time when the alarm was generated" + ::= { alertInfo 5 } + + alarmid OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "alarm id in Alert Table" + ::= { alertInfo 6 } + + eventType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "eventType of generated alarm" + ::= { alertInfo 7 } + + entity OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "entity of generated alarm" + ::= { alertInfo 8 } + + lastPolledValue OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "lastPolledValue of generated alarm for threshold violated monitors" + ::= { alertInfo 9 } + + type OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "device type" + ::= { deviceInfo 1 } + + ipAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "ipAddress of the device" + ::= { deviceInfo 2 } + + isSNMP OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "device supports snmp protocol or not" + ::= { deviceInfo 3 } + + dependent OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "dependency on other devices" + ::= { deviceInfo 4 } + + hardDiskSiz OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "hard Disk Size of the device" + ::= { deviceInfo 5 } + + ramSize OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "RAM memory of the device" + ::= { deviceInfo 6 } + + probeName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Probe name to which the device belongs" + ::= { deviceInfo 7 } + + ifDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "descriptor of the interface as reported by the SNMP agent" + ::= { intfInfo 1 } + + displayName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "displayName of the interface" + ::= { intfInfo 2 } + + ifAlias OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "alias name of the interface" + ::= { intfInfo 3 } + + ifName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "name of the interface" + ::= { intfInfo 4 } + + ifIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "ipAddress of the interface" + ::= { intfInfo 5 } + + physMedia OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "physical media of the interface" + ::= { intfInfo 6 } + + ifIndex OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "interface index reported by the SNMP agent" + ::= { intfInfo 7 } + + ifCircuitID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "interface circiutID" + ::= { intfInfo 8 } + + ifSpeedIn OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "In speed of the interface as reported by the SNMP agent" + ::= { intfInfo 9 } + + ifSpeedOut OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Out speed of the interface as reported by the SNMP agent" + ::= { intfInfo 10 } + + customField OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "custom fields for devices in OpManager" + ::= { customInfo 1 } + + customIntfField OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "custom fields for interfaces in OpManager" + ::= { customIntfInfo 1 } + + monitorName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of the Monitor in which the alarm generated" + ::= { monitorInfo 1 } + + instance OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Instance of the Monitor in which the alarm generated" + ::= { monitorInfo 2 } + + protocol OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Protocol of the Monitor in which the alarm generated" + ::= { monitorInfo 3 } + + sourceType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Source Type in NetFlow" + ::= { nfaAlertInfo 1 } + + sourceName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Source Name in NetFlow" + ::= { nfaAlertInfo 2 } + + alertName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alert Profile Name in NetFlow" + ::= { nfaAlertInfo 3 } + + alertType OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alert Profile Type in NetFlow" + ::= { nfaAlertInfo 4 } + + criteria OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Alert criteria in NetFlow" + ::= { nfaAlertInfo 5 } + + profileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Name of the Profile created in Firewall Module" + ::= { fwaAlertInfo 1 } + + criteria OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Profile criteria specified in Firewall Module" + ::= { fwaAlertInfo 2 } + + alertMsg OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Details of Alert in Firewall Module" + ::= { fwaAlertInfo 3 } + + + + +-- Trap Definitions + +opmAlertNotifications OBJECT IDENTIFIER ::= { adventnetOpManagerMIBObjects 2 } + +trapNotifications NOTIFICATION-GROUP + NOTIFICATIONS { opManagerTrapNotification } + STATUS current + DESCRIPTION + "The basic notifications implemented by an SNMP entity + supporting command responder applications." + ::= { adventnetOpManagerMIBObjects 2 } + + +-- Notification types: + +opManagerTrapNotification NOTIFICATION-TYPE + OBJECTS { message, deviceName, category, stringseverity, strModTime,alarmid, eventType, entity, lastPolledValue, type, ipAddress, isSNMP, dependent, hardDiskSiz, ramSize, ifDescr, displayName, ifAlias, ifName, ifIpAddress, physMedia, ifIndex, ifCircuitID, ifSpeedIn, ifSpeedOut, customField, customIntfField} + STATUS current + DESCRIPTION + "A notification about a change in the alert of OpManager." + ::= { opmAlertNotifications 1 } + +END diff --git a/pandora_console/attachment/mibs/ORADB-MIB b/pandora_console/attachment/mibs/ORADB-MIB new file mode 100644 index 0000000000..aba7259f42 --- /dev/null +++ b/pandora_console/attachment/mibs/ORADB-MIB @@ -0,0 +1,1179 @@ + +ORADB-MIB DEFINITIONS ::= BEGIN + + +IMPORTS + DisplayString + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212 + Counter, experimental, enterprises + FROM RFC1155-SMI + rdbmsDbIndex + FROM RDBMS-MIB + applIndex + FROM APPLICATION-MIB; + +DateAndTime ::= OCTET STRING (SIZE (8 .. 11)) +TruthValue ::= INTEGER { true(1), false(2) } + +oracle OBJECT IDENTIFIER ::= { enterprises 111 } + +oraDbMIB OBJECT IDENTIFIER ::= { oracle 4 } + +oraDbObjects OBJECT IDENTIFIER ::= { oraDbMIB 1 } + +oraDbSysTable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbSysEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Oracle-specific performance information global to a database." + ::= { oraDbObjects 1 } + +oraDbSysEntry OBJECT-TYPE + SYNTAX OraDbSysEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Selected info from the v$sysstat table on instance performance. + Variables are included here + because they have been found particularly useful in + tuning an Oracle instance. In many cases, the variable should + only be considered in conjunction with other variables, often + as a ratio. Frequently, hints on these are given in the + descriptions, but Oracle tuning documentation should always + be consulted, particularly the Oracle University course on + tuning V7 applications." + INDEX { applIndex } + ::= { oraDbSysTable 1 } + +OraDbSysEntry ::= + SEQUENCE { + oraDbSysConsistentChanges + Counter, + + oraDbSysConsistentGets + Counter, + + oraDbSysDbBlockChanges + Counter, + + oraDbSysDbBlockGets + Counter, + + oraDbSysFreeBufferInspected + Counter, + + oraDbSysFreeBufferRequested + Counter, + + oraDbSysParseCount + Counter, + + oraDbSysPhysReads + Counter, + + oraDbSysPhysWrites + Counter, + + oraDbSysRedoEntries + Counter, + + oraDbSysRedoLogSpaceRequests + Counter, + + oraDbSysRedoSyncWrites + Counter, + + oraDbSysSortsDisk + Counter, + + oraDbSysSortsMemory + Counter, + + oraDbSysSortsRows + Counter, + + oraDbSysTableFetchRowid + Counter, + + oraDbSysTableFetchContinuedRow + Counter, + + oraDbSysTableScanBlocks + Counter, + + oraDbSysTableScanRows + Counter, + + oraDbSysTableScansLong + Counter, + + oraDbSysTableScansShort + Counter, + + oraDbSysUserCalls + Counter, + + oraDbSysUserCommits + Counter, + + oraDbSysUserRollbacks + Counter, + + oraDbSysWriteRequests + Counter + } + +oraDbSysConsistentChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'consistent changes' parameter from v$sysstat" + ::= { oraDbSysEntry 1 } + +oraDbSysConsistentGets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'consistent gets' parameter from v$sysstat" + ::= { oraDbSysEntry 2 } + +oraDbSysDbBlockChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'Db block changes' parameter from v$sysstat" + ::= { oraDbSysEntry 3 } + +oraDbSysDbBlockGets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'db block gets' parameter from v$sysstat" + ::= { oraDbSysEntry 4 } + +oraDbSysFreeBufferInspected OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'free buffer inspected' parameter from v$sysstat" + ::= { oraDbSysEntry 5 } + +oraDbSysFreeBufferRequested OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'free buffer requested' parameter from v$sysstat" + ::= { oraDbSysEntry 6 } + +oraDbSysParseCount OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'parse count' parameter from v$sysstat" + ::= { oraDbSysEntry 7 } + +oraDbSysPhysReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'physical reads' parameter from v$sysstat" + ::= { oraDbSysEntry 8 } + +oraDbSysPhysWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'physical writes' parameter from v$sysstat" + ::= { oraDbSysEntry 9 } + +oraDbSysRedoEntries OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'redo entries' parameter from v$sysstat" + ::= { oraDbSysEntry 10 } + +oraDbSysRedoLogSpaceRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'redo log space requests' parameter from v$sysstat" + ::= { oraDbSysEntry 11 } + +oraDbSysRedoSyncWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'redo synch writes' parameter from v$sysstat" + ::= { oraDbSysEntry 12 } + +oraDbSysSortsDisk OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'sorts (disk)' parameter from v$sysstat" + ::= { oraDbSysEntry 13 } + +oraDbSysSortsMemory OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'sorts (memory)' parameter from v$sysstat" + ::= { oraDbSysEntry 14 } + +oraDbSysSortsRows OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'sorts (rows)' parameter from v$sysstat" + ::= { oraDbSysEntry 15 } + +oraDbSysTableFetchRowid OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'table fetch by rowid' parameter from v$sysstat" + ::= { oraDbSysEntry 16 } + +oraDbSysTableFetchContinuedRow OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'table fetch continued row' parameter from v$sysstat" + ::= { oraDbSysEntry 17 } + +oraDbSysTableScanBlocks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'table scan blocks gotten' parameter from v$sysstat" + ::= { oraDbSysEntry 18 } + +oraDbSysTableScanRows OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'table scan rows gotten' parameter from v$sysstat" + ::= { oraDbSysEntry 19 } + +oraDbSysTableScansLong OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'table scans (long tables)' parameter from v$sysstat" + ::= { oraDbSysEntry 20 } + +oraDbSysTableScansShort OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'table scans (short tables)' parameter from v$sysstat" + ::= { oraDbSysEntry 21 } + +oraDbSysUserCalls OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'user calls' parameter from v$sysstat" + ::= { oraDbSysEntry 22 } + +oraDbSysUserCommits OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'user commits' parameter from v$sysstat" + ::= { oraDbSysEntry 23 } + +oraDbSysUserRollbacks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'user rollbacks' parameter from v$sysstat" + ::= { oraDbSysEntry 24 } + +oraDbSysWriteRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "the 'write requests' parameter from v$sysstat" + ::= { oraDbSysEntry 25 } + +oraDbTablespaceTable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbTablespaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information on tablespaces within an Oracle database." + ::= { oraDbObjects 2 } + +oraDbTablespaceEntry OBJECT-TYPE + SYNTAX OraDbTablespaceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information for each tablespace within an Oracle database." + INDEX { rdbmsDbIndex, oraDbTablespaceIndex } + ::= { oraDbTablespaceTable 1 } + +OraDbTablespaceEntry ::= + SEQUENCE { + oraDbTablespaceIndex + INTEGER, + + oraDbTablespaceName + DisplayString, + + oraDbTablespaceSizeAllocated + INTEGER (-2147483648..2147483647), + + oraDbTablespaceSizeUsed + INTEGER (-2147483648..2147483647), + + oraDbTablespaceState + INTEGER, + + oraDbTablespaceLargestAvailableChunk + INTEGER (-2147483648..2147483647) + } + +oraDbTablespaceIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A numeric index, unique among tablespaces within a single + Oracle database." + ::= { oraDbTablespaceEntry 1 } + +oraDbTablespaceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of this tablespace." + ::= { oraDbTablespaceEntry 2 } + +oraDbTablespaceSizeAllocated OBJECT-TYPE + SYNTAX INTEGER (-2147483648..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of disk space, in kilobytes, allocated for this + tablespace. This is the sum of the sizes of the data files + associated with the tablespace." + ::= { oraDbTablespaceEntry 3 } + +oraDbTablespaceSizeUsed OBJECT-TYPE + SYNTAX INTEGER (-2147483648..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount of disk space, in kilobytes, which is actually in + use for storing data." + ::= { oraDbTablespaceEntry 4 } + +oraDbTablespaceState OBJECT-TYPE + SYNTAX INTEGER { + online(1), + offline(2), + invalid(3) +} + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current accessibility of this tablespace. If a + tablespace is offline(2), then SQL statements cannot + reference objects contained in the tablespace. An invalid(3) + tablespace is one that has been dropped." + ::= { oraDbTablespaceEntry 5 } + +oraDbTablespaceLargestAvailableChunk OBJECT-TYPE + SYNTAX INTEGER (-2147483648..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size, in kilobytes, of the largest contiguous set of free + data blocks in the tablespace." + ::= { oraDbTablespaceEntry 6 } + +oraDbDataFileTable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbDataFileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information on data files within an Oracle database." + ::= { oraDbObjects 3 } + +oraDbDataFileEntry OBJECT-TYPE + SYNTAX OraDbDataFileEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information for each data file within an Oracle database." + INDEX { rdbmsDbIndex, oraDbDataFileIndex } + ::= { oraDbDataFileTable 1 } + +OraDbDataFileEntry ::= + SEQUENCE { + oraDbDataFileIndex + INTEGER, + + oraDbDataFileName + DisplayString, + + oraDbDataFileSizeAllocated + INTEGER (-2147483648..2147483647), + + oraDbDataFileDiskReads + Counter, + + oraDbDataFileDiskWrites + Counter, + + oraDbDataFileDiskReadBlocks + Counter, + + oraDbDataFileDiskWrittenBlocks + Counter, + + oraDbDataFileDiskReadTimeTicks + Counter, + + oraDbDataFileDiskWriteTimeTicks + Counter + } + +oraDbDataFileIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A numeric index, unique among data files associated with a + single tablespace." + ::= { oraDbDataFileEntry 1 } + +oraDbDataFileName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fully-qualified name of this datafile." + ::= { oraDbDataFileEntry 2 } + +oraDbDataFileSizeAllocated OBJECT-TYPE + SYNTAX INTEGER (-2147483648..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The allocated size, in kilobytes, of this data file." + ::= { oraDbDataFileEntry 3 } + +oraDbDataFileDiskReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of reads issued against this data file since + startup." + ::= { oraDbDataFileEntry 4 } + +oraDbDataFileDiskWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of writes issued against this data file since + startup." + ::= { oraDbDataFileEntry 5 } + +oraDbDataFileDiskReadBlocks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of physical blocks read from this data file + since startup." + ::= { oraDbDataFileEntry 6 } + +oraDbDataFileDiskWrittenBlocks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of physical blocks written to this data file + since startup." + ::= { oraDbDataFileEntry 7 } + +oraDbDataFileDiskReadTimeTicks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time spent reading from this data file since startup IF + the database parameter TIMED_STATISTICS is TRUE. If + TIMED_STATISTICS is FALSE, then the value will be zero." + ::= { oraDbDataFileEntry 8 } + +oraDbDataFileDiskWriteTimeTicks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time spent writing to this data file since startup IF + the database parameter TIMED_STATISTICS is TRUE. If + TIMED_STATISTICS is FALSE, then the value will be zero." + ::= { oraDbDataFileEntry 9 } + +oraDbLibraryCacheTable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbLibraryCacheEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information on libraryCache performance." + ::= { oraDbObjects 4 } + +oraDbLibraryCacheEntry OBJECT-TYPE + SYNTAX OraDbLibraryCacheEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "LibraryCache information for each Oracle database." + INDEX { applIndex, oraDbLibraryCacheIndex } + ::= { oraDbLibraryCacheTable 1 } + +OraDbLibraryCacheEntry ::= + SEQUENCE { + oraDbLibraryCacheIndex + INTEGER, + + oraDbLibraryCacheNameSpace + DisplayString, + + oraDbLibraryCacheGets + Counter, + + oraDbLibraryCacheGetHits + Counter, + + oraDbLibraryCachePins + Counter, + + oraDbLibraryCachePinHits + Counter, + + oraDbLibraryCacheReloads + Counter, + + oraDbLibraryCacheInvalidations + Counter + } + +oraDbLibraryCacheIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique integer for each row of the table." + ::= { oraDbLibraryCacheEntry 1 } + +oraDbLibraryCacheNameSpace OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The namespace of the v$librarycache table that this + row relates to." + ::= { oraDbLibraryCacheEntry 2 } + +oraDbLibraryCacheGets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the system requests handles to library + objects in this namespace." + ::= { oraDbLibraryCacheEntry 3 } + +oraDbLibraryCacheGetHits OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the handles are already allocated in + the cache." + ::= { oraDbLibraryCacheEntry 4 } + +oraDbLibraryCachePins OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the system issues pin requests + for objects in the cache in order to access them." + ::= { oraDbLibraryCacheEntry 5 } + +oraDbLibraryCachePinHits OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the objects the system is pinning + are already allocated and initialized in the cache." + ::= { oraDbLibraryCacheEntry 6 } + +oraDbLibraryCacheReloads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the library objects have to be reinitialized + and reloaded with data because they have been aged out or + invalidated" + ::= { oraDbLibraryCacheEntry 7 } + +oraDbLibraryCacheInvalidations OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times that non-persistent library objects + (like shared SQL areas) have been invalidated." + ::= { oraDbLibraryCacheEntry 8 } + +oraDbLibraryCacheSumTable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbLibraryCacheSumEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information on library cache performance, summed over all + library caches in a single database instance." + ::= { oraDbObjects 5 } + +oraDbLibraryCacheSumEntry OBJECT-TYPE + SYNTAX OraDbLibraryCacheSumEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "LibraryCache information, summed over all library caches, + for each Oracle database." + INDEX { applIndex } + ::= { oraDbLibraryCacheSumTable 1 } + +OraDbLibraryCacheSumEntry ::= + SEQUENCE { + oraDbLibraryCacheSumGets + Counter, + + oraDbLibraryCacheSumGetHits + Counter, + + oraDbLibraryCacheSumPins + Counter, + + oraDbLibraryCacheSumPinHits + Counter, + + oraDbLibraryCacheSumReloads + Counter, + + oraDbLibraryCacheSumInvalidations + Counter + } + +oraDbLibraryCacheSumGets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the system requests handles to library + objects, summed over all library caches in the instance." + ::= { oraDbLibraryCacheSumEntry 1 } + +oraDbLibraryCacheSumGetHits OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the handles are already allocated in + the cache, summed over all library caches in the instance." + ::= { oraDbLibraryCacheSumEntry 2 } + +oraDbLibraryCacheSumPins OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the system issues pin requests + for objects in a cache in order to access them, + summed over all library caches in the instance." + ::= { oraDbLibraryCacheSumEntry 3 } + +oraDbLibraryCacheSumPinHits OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the objects the system is pinning + are already allocated and initialized in a cache, + summed over all library caches in the instance." + ::= { oraDbLibraryCacheSumEntry 4 } + +oraDbLibraryCacheSumReloads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times the library objects have to be reinitialized + and reloaded with data because they have been aged out or + invalidated, summed over all library caches in the instance." + ::= { oraDbLibraryCacheSumEntry 5 } + +oraDbLibraryCacheSumInvalidations OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of times that non-persistent library objects + (like shared SQL areas) have been invalidated, summed over + all library caches in the instance." + ::= { oraDbLibraryCacheSumEntry 6 } + +oraDbSGATable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbSGAEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Summary information on the System Global Area" + ::= { oraDbObjects 6 } + +oraDbSGAEntry OBJECT-TYPE + SYNTAX OraDbSGAEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A single entry from the v$sga table" + INDEX { applIndex } + ::= { oraDbSGATable 1 } + +OraDbSGAEntry ::= + SEQUENCE { + oraDbSGAFixedSize + INTEGER, + + oraDbSGAVariableSize + INTEGER, + + oraDbSGADatabaseBuffers + INTEGER, + + oraDbSGARedoBuffers + INTEGER + } + +oraDbSGAFixedSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "" + ::= { oraDbSGAEntry 1 } + +oraDbSGAVariableSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "" + ::= { oraDbSGAEntry 2 } + +oraDbSGADatabaseBuffers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "" + ::= { oraDbSGAEntry 3 } + +oraDbSGARedoBuffers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "" + ::= { oraDbSGAEntry 4 } + +oraDbConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF OraDbConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Oracle-specific configuration information global to a database." + ::= { oraDbObjects 7 } + +oraDbConfigEntry OBJECT-TYPE + SYNTAX OraDbConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Oracle-specific configuration information. This table only + lists a few init.ora parameters that are particularly + relevant to the task of monitoring database performance. By + giving them easy-to-use, fixed object-ids, we make it easier + to graph them along with the dynamic performance values that + they affect. A complete list of parameters can be found in + the Internet standard MIB 'rdbmsSrvParam' objects." + INDEX { applIndex } + ::= { oraDbConfigTable 1 } + +OraDbConfigEntry ::= + SEQUENCE { + oraDbConfigDbBlockBuffers + INTEGER, + + oraDbConfigDbBlockCkptBatch + INTEGER, + + oraDbConfigDbBlockSize + INTEGER, + + oraDbConfigDbFileSimWrites + INTEGER, + + oraDbConfigDbMultiBlockReadCount + INTEGER, + + oraDbConfigDistLockTimeout + INTEGER, + + oraDbConfigDistRecoveryConnectHold + INTEGER, + + oraDbConfigDistTransactions + INTEGER, + + oraDbConfigLogArchiveBufferSize + INTEGER, + + oraDbConfigLogArchiveBuffers + INTEGER, + + oraDbConfigLogBuffer + INTEGER, + + oraDbConfigLogCheckpointInterval + INTEGER, + + oraDbConfigLogCheckpointTimeout + INTEGER, + + oraDbConfigLogFiles + INTEGER, + + oraDbConfigMaxRollbackSegments + INTEGER, + + oraDbConfigMTSMaxDispatchers + INTEGER, + + oraDbConfigMTSMaxServers + INTEGER, + + oraDbConfigMTSServers + INTEGER, + + oraDbConfigOpenCursors + INTEGER, + + oraDbConfigOpenLinks + INTEGER, + + oraDbConfigOptimizerMode + DisplayString, + + oraDbConfigProcesses + INTEGER, + + oraDbConfigSerializable + TruthValue, + + oraDbConfigSessions + INTEGER, + + oraDbConfigSharedPool + INTEGER, + + oraDbConfigSortAreaRetainedSize + INTEGER, + + oraDbConfigSortAreaSize + INTEGER, + + oraDbConfigTransactions + INTEGER, + + oraDbConfigTransactionsPerRollback + INTEGER + } + +oraDbConfigDbBlockBuffers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DB_BLOCK_BUFFERS parameter from the init.ora file " + ::= { oraDbConfigEntry 1 } + +oraDbConfigDbBlockCkptBatch OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DB_BLOCK_CHECKPOINT_BATCH parameter from the init.ora file " + ::= { oraDbConfigEntry 2 } + +oraDbConfigDbBlockSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DB_BLOCK_SIZE parameter from the init.ora file " + ::= { oraDbConfigEntry 3 } + +oraDbConfigDbFileSimWrites OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DB_FILE_SIMULTANEOUS_WRITES parameter from the init.ora file " + ::= { oraDbConfigEntry 4 } + +oraDbConfigDbMultiBlockReadCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DB_MULTIBLOCK_READ_COUNT parameter from the init.ora file " + ::= { oraDbConfigEntry 5 } + +oraDbConfigDistLockTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DISTRIBUTED_LOCK_TIMEOUT parameter from the init.ora file " + ::= { oraDbConfigEntry 6 } + +oraDbConfigDistRecoveryConnectHold OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DISTRIBUTED_RECOVERY_CONNECT_HOLD parameter from the + init.ora file " + ::= { oraDbConfigEntry 7 } + +oraDbConfigDistTransactions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The DISTRIBUTED_TRANSACTIONS parameter from the init.ora file " + ::= { oraDbConfigEntry 8 } + +oraDbConfigLogArchiveBufferSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LOG_ARCHIVE_BUFFER_SIZE parameter from the init.ora file " + ::= { oraDbConfigEntry 9 } + +oraDbConfigLogArchiveBuffers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LOG_ARCHIVE_BUFFERS parameter from the init.ora file " + ::= { oraDbConfigEntry 10 } + +oraDbConfigLogBuffer OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LOG_BUFFER parameter from the init.ora file " + ::= { oraDbConfigEntry 11 } + +oraDbConfigLogCheckpointInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LOG_CHECKPOINT_INTERVAL parameter from the init.ora file " + ::= { oraDbConfigEntry 12 } + +oraDbConfigLogCheckpointTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LOG_CHECKPOINT_TIMEOUT parameter from the init.ora file " + ::= { oraDbConfigEntry 13 } + +oraDbConfigLogFiles OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LOG_FILES parameter from the init.ora file " + ::= { oraDbConfigEntry 14 } + +oraDbConfigMaxRollbackSegments OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAX_ROLLBACK_SEGMENTS parameter from the init.ora file " + ::= { oraDbConfigEntry 15 } + +oraDbConfigMTSMaxDispatchers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MTS_MAX_DISPATCHERS parameter from the init.ora file " + ::= { oraDbConfigEntry 16 } + +oraDbConfigMTSMaxServers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MTS_MAX_SERVERS parameter from the init.ora file " + ::= { oraDbConfigEntry 17 } + +oraDbConfigMTSServers OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MTS_SERVERS parameter from the init.ora file " + ::= { oraDbConfigEntry 18 } + +oraDbConfigOpenCursors OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The OPEN_CURSORS parameter from the init.ora file " + ::= { oraDbConfigEntry 19 } + +oraDbConfigOpenLinks OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The OPEN_LINKS parameter from the init.ora file " + ::= { oraDbConfigEntry 20 } + +oraDbConfigOptimizerMode OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The OPTIMIZER_MODE parameter from the init.ora file " + ::= { oraDbConfigEntry 21 } + +oraDbConfigProcesses OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PROCESSES parameter from the init.ora file " + ::= { oraDbConfigEntry 22 } + +oraDbConfigSerializable OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SERIALIZABLE parameter from the init.ora file " + ::= { oraDbConfigEntry 23 } + +oraDbConfigSessions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SESSIONS parameter from the init.ora file " + ::= { oraDbConfigEntry 24 } + +oraDbConfigSharedPool OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SHARED_POOL parameter from the init.ora file " + ::= { oraDbConfigEntry 25 } + +oraDbConfigSortAreaSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SORT_AREA_SIZE parameter from the init.ora file " + ::= { oraDbConfigEntry 26 } + +oraDbConfigSortAreaRetainedSize OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SORT_AREA_RETAINED_SIZE parameter from the init.ora file " + ::= { oraDbConfigEntry 27 } + +oraDbConfigTransactions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The TRANSACTIONS parameter from the init.ora file " + ::= { oraDbConfigEntry 28 } + +oraDbConfigTransactionsPerRollback OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The TRANSACTIONS_PER_ROLLBACK parameter from the init.ora file " + ::= { oraDbConfigEntry 29 } + +END diff --git a/pandora_console/attachment/mibs/OSPF-MIB b/pandora_console/attachment/mibs/OSPF-MIB new file mode 100644 index 0000000000..9ca0001e62 --- /dev/null +++ b/pandora_console/attachment/mibs/OSPF-MIB @@ -0,0 +1,2738 @@ +-- Changes to rfc1850a - OSPF-MIB +-- Extracted from rfc1850 - the combined OSPF-MIB and +-- OSPF-TRAP-MIB +-- Some work needs to be done to fix the compliances +-- for ospfAuthType! +-- dperkins@scruznet.com + +OSPF-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, Gauge32, + Integer32, IpAddress + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, TruthValue, RowStatus + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + mib-2 FROM RFC1213-MIB; + +-- This MIB module uses the extended OBJECT-TYPE macro as +-- defined in [9]. + +ospf MODULE-IDENTITY + LAST-UPDATED "9501201225Z" -- Fri Jan 20 12:25:50 PST 1995 + ORGANIZATION "IETF OSPF Working Group" + CONTACT-INFO + " Fred Baker + Postal: Cisco Systems + 519 Lado Drive + Santa Barbara, California 93111 + Tel: +1 805 681 0115 + E-Mail: fred@cisco.com + + Rob Coltun + Postal: RainbowBridge Communications + Tel: (301) 340-9416 + E-Mail: rcoltun@rainbow-bridge.com" + DESCRIPTION + "The MIB module to describe the OSPF Version 2 + Protocol" + ::= { mib-2 14 } + +-- The Area ID, in OSPF, has the same format as an IP Address, +-- but has the function of defining a summarization point for +-- Link State Advertisements + +AreaID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "An OSPF Area Identifier." + SYNTAX IpAddress + + +-- The Router ID, in OSPF, has the same format as an IP Address, +-- but identifies the router independent of its IP Address. + +RouterID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A OSPF Router Identifier." + SYNTAX IpAddress + + +-- The OSPF Metric is defined as an unsigned value in the range + +Metric ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The OSPF Internal Metric." + SYNTAX Integer32 (0..'FFFF'h) + +BigMetric ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The OSPF External Metric." + SYNTAX Integer32 (0..'FFFFFF'h) + +-- Status Values + +Status ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The status of an interface: 'enabled' indicates that + it is willing to communicate with other OSPF Routers, + while 'disabled' indicates that it is not." + SYNTAX INTEGER { enabled (1), disabled (2) } + +-- Time Durations measured in seconds + +PositiveInteger ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A positive integer. Values in excess are precluded as + unnecessary and prone to interoperability issues." + SYNTAX Integer32 (0..'7FFFFFFF'h) + +HelloRange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The range of intervals on which hello messages are + exchanged." + SYNTAX Integer32 (1..'FFFF'h) + +UpToMaxAge ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The values that one might find or configure for + variables bounded by the maximum age of an LSA." + SYNTAX Integer32 (0..3600) + + +-- The range of ifIndex + +InterfaceIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The range of ifIndex." + SYNTAX Integer32 + + +-- Potential Priorities for the Designated Router Election + +DesignatedRouterPriority ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The values defined for the priority of a system for + becoming the designated router." + SYNTAX Integer32 (0..'FF'h) + +TOSType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Type of Service is defined as a mapping to the IP Type of + Service Flags as defined in the IP Forwarding Table MIB + + +-----+-----+-----+-----+-----+-----+-----+-----+ + | | | | + | PRECEDENCE | TYPE OF SERVICE | 0 | + | | | | + +-----+-----+-----+-----+-----+-----+-----+-----+ + + IP TOS IP TOS + Field Policy Field Policy + + Contents Code Contents Code + 0 0 0 0 ==> 0 0 0 0 1 ==> 2 + 0 0 1 0 ==> 4 0 0 1 1 ==> 6 + 0 1 0 0 ==> 8 0 1 0 1 ==> 10 + 0 1 1 0 ==> 12 0 1 1 1 ==> 14 + 1 0 0 0 ==> 16 1 0 0 1 ==> 18 + 1 0 1 0 ==> 20 1 0 1 1 ==> 22 + 1 1 0 0 ==> 24 1 1 0 1 ==> 26 + 1 1 1 0 ==> 28 1 1 1 1 ==> 30 + + The remaining values are left for future definition." + SYNTAX Integer32 (0..30) + + +-- OSPF General Variables + +-- These parameters apply globally to the Router's +-- OSPF Process. + +ospfGeneralGroup OBJECT IDENTIFIER ::= { ospf 1 } + + + ospfRouterId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying the + router in the Autonomous System. + + By convention, to ensure uniqueness, this + should default to the value of one of the + router's IP interface addresses." + REFERENCE + "OSPF Version 2, C.1 Global parameters" + ::= { ospfGeneralGroup 1 } + + + ospfAdminStat OBJECT-TYPE + SYNTAX Status + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The administrative status of OSPF in the + router. The value 'enabled' denotes that the + OSPF Process is active on at least one inter- + face; 'disabled' disables it on all inter- + faces." + ::= { ospfGeneralGroup 2 } + + ospfVersionNumber OBJECT-TYPE + SYNTAX INTEGER { version2 (2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current version number of the OSPF proto- + col is 2." + REFERENCE + "OSPF Version 2, Title" + ::= { ospfGeneralGroup 3 } + + + ospfAreaBdrRtrStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A flag to note whether this router is an area + border router." + REFERENCE + "OSPF Version 2, Section 3 Splitting the AS into + Areas" + ::= { ospfGeneralGroup 4 } + + + ospfASBdrRtrStatus OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A flag to note whether this router is config- + ured as an Autonomous System border router." + REFERENCE + "OSPF Version 2, Section 3.3 Classification of + routers" + ::= { ospfGeneralGroup 5 } + + ospfExternLsaCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of external (LS type 5) link-state + advertisements in the link-state database." + REFERENCE + "OSPF Version 2, Appendix A.4.5 AS external link + advertisements" + ::= { ospfGeneralGroup 6 } + + + ospfExternLsaCksumSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32-bit unsigned sum of the LS checksums of + the external link-state advertisements con- + tained in the link-state database. This sum + can be used to determine if there has been a + change in a router's link state database, and + to compare the link-state database of two + routers." + ::= { ospfGeneralGroup 7 } + + + ospfTOSSupport OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The router's support for type-of-service rout- + ing." + REFERENCE + "OSPF Version 2, Appendix F.1.2 Optional TOS + support" + ::= { ospfGeneralGroup 8 } + + ospfOriginateNewLsas OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of new link-state advertisements + that have been originated. This number is in- + cremented each time the router originates a new + LSA." + ::= { ospfGeneralGroup 9 } + + + ospfRxNewLsas OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of link-state advertisements re- + ceived determined to be new instantiations. + This number does not include newer instantia- + tions of self-originated link-state advertise- + ments." + ::= { ospfGeneralGroup 10 } + + ospfExtLsdbLimit OBJECT-TYPE + SYNTAX Integer32 (-1..'7FFFFFFF'h) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum number of non-default AS- + external-LSAs entries that can be stored in the + link-state database. If the value is -1, then + there is no limit. + + When the number of non-default AS-external-LSAs + in a router's link-state database reaches + ospfExtLsdbLimit, the router enters Overflow- + State. The router never holds more than + ospfExtLsdbLimit non-default AS-external-LSAs + in its database. OspfExtLsdbLimit MUST be set + identically in all routers attached to the OSPF + backbone and/or any regular OSPF area. (i.e., + OSPF stub areas and NSSAs are excluded)." + DEFVAL { -1 } + ::= { ospfGeneralGroup 11 } + + ospfMulticastExtensions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A Bit Mask indicating whether the router is + forwarding IP multicast (Class D) datagrams + based on the algorithms defined in the Multi- + cast Extensions to OSPF. + + Bit 0, if set, indicates that the router can + forward IP multicast datagrams in the router's + directly attached areas (called intra-area mul- + ticast routing). + + Bit 1, if set, indicates that the router can + forward IP multicast datagrams between OSPF + areas (called inter-area multicast routing). + + Bit 2, if set, indicates that the router can + forward IP multicast datagrams between Auto- + nomous Systems (called inter-AS multicast rout- + ing). + + Only certain combinations of bit settings are + allowed, namely: 0 (no multicast forwarding is + enabled), 1 (intra-area multicasting only), 3 + (intra-area and inter-area multicasting), 5 + (intra-area and inter-AS multicasting) and 7 + (multicasting everywhere). By default, no mul- + ticast forwarding is enabled." + DEFVAL { 0 } + ::= { ospfGeneralGroup 12 } + + ospfExitOverflowInterval OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of seconds that, after entering + OverflowState, a router will attempt to leave + OverflowState. This allows the router to again + originate non-default AS-external-LSAs. When + set to 0, the router will not leave Overflow- + State until restarted." + DEFVAL { 0 } + ::= { ospfGeneralGroup 13 } + + + ospfDemandExtensions OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The router's support for demand routing." + REFERENCE + "OSPF Version 2, Appendix on Demand Routing" + ::= { ospfGeneralGroup 14 } + + +-- The OSPF Area Data Structure contains information +-- regarding the various areas. The interfaces and +-- virtual links are configured as part of these areas. +-- Area 0.0.0.0, by definition, is the Backbone Area + + + ospfAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfAreaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the configured parame- + ters and cumulative statistics of the router's + attached areas." + REFERENCE + "OSPF Version 2, Section 6 The Area Data Struc- + ture" + ::= { ospf 2 } + + + ospfAreaEntry OBJECT-TYPE + SYNTAX OspfAreaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information describing the configured parame- + ters and cumulative statistics of one of the + router's attached areas." + INDEX { ospfAreaId } + ::= { ospfAreaTable 1 } + +OspfAreaEntry ::= + SEQUENCE { + ospfAreaId + AreaID, + ospfAuthType + Integer32, + ospfImportAsExtern + INTEGER, + ospfSpfRuns + Counter32, + ospfAreaBdrRtrCount + Gauge32, + ospfAsBdrRtrCount + Gauge32, + ospfAreaLsaCount + Gauge32, + ospfAreaLsaCksumSum + Integer32, + ospfAreaSummary + INTEGER, + ospfAreaStatus + RowStatus + } + + ospfAreaId OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying an area. + Area ID 0.0.0.0 is used for the OSPF backbone." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaEntry 1 } + + + ospfAuthType OBJECT-TYPE + SYNTAX Integer32 + -- none (0), + -- simplePassword (1) + -- md5 (2) + -- reserved for specification by IANA (> 2) + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The authentication type specified for an area. + Additional authentication types may be assigned + locally on a per Area basis." + REFERENCE + "OSPF Version 2, Appendix E Authentication" + DEFVAL { 0 } -- no authentication, by default + ::= { ospfAreaEntry 2 } + + ospfImportAsExtern OBJECT-TYPE + SYNTAX INTEGER { + importExternal (1), + importNoExternal (2), + importNssa (3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The area's support for importing AS external + link- state advertisements." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + DEFVAL { importExternal } + ::= { ospfAreaEntry 3 } + + + ospfSpfRuns OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times that the intra-area route + table has been calculated using this area's + link-state database. This is typically done + using Dijkstra's algorithm." + ::= { ospfAreaEntry 4 } + + + ospfAreaBdrRtrCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of area border routers reach- + able within this area. This is initially zero, + and is calculated in each SPF Pass." + ::= { ospfAreaEntry 5 } + + ospfAsBdrRtrCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of Autonomous System border + routers reachable within this area. This is + initially zero, and is calculated in each SPF + Pass." + ::= { ospfAreaEntry 6 } + + + ospfAreaLsaCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of link-state advertisements + in this area's link-state database, excluding + AS External LSA's." + ::= { ospfAreaEntry 7 } + + + ospfAreaLsaCksumSum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32-bit unsigned sum of the link-state ad- + vertisements' LS checksums contained in this + area's link-state database. This sum excludes + external (LS type 5) link-state advertisements. + The sum can be used to determine if there has + been a change in a router's link state data- + base, and to compare the link-state database of + two routers." + DEFVAL { 0 } + ::= { ospfAreaEntry 8 } + + ospfAreaSummary OBJECT-TYPE + SYNTAX INTEGER { + noAreaSummary (1), + sendAreaSummary (2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The variable ospfAreaSummary controls the im- + port of summary LSAs into stub areas. It has + no effect on other areas. + + If it is noAreaSummary, the router will neither + originate nor propagate summary LSAs into the + stub area. It will rely entirely on its de- + fault route. + + If it is sendAreaSummary, the router will both + summarize and propagate summary LSAs." + DEFVAL { noAreaSummary } + ::= { ospfAreaEntry 9 } + + + ospfAreaStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfAreaEntry 10 } + + +-- OSPF Area Default Metric Table + +-- The OSPF Area Default Metric Table describes the metrics +-- that a default Area Border Router will advertise into a +-- Stub area. + + + ospfStubAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfStubAreaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The set of metrics that will be advertised by + a default Area Border Router into a stub area." + REFERENCE + "OSPF Version 2, Appendix C.2, Area Parameters" + ::= { ospf 3 } + + + ospfStubAreaEntry OBJECT-TYPE + SYNTAX OspfStubAreaEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The metric for a given Type of Service that + will be advertised by a default Area Border + Router into a stub area." + REFERENCE + "OSPF Version 2, Appendix C.2, Area Parameters" + INDEX { ospfStubAreaId, ospfStubTOS } + ::= { ospfStubAreaTable 1 } + +OspfStubAreaEntry ::= + SEQUENCE { + ospfStubAreaId + AreaID, + ospfStubTOS + TOSType, + ospfStubMetric + BigMetric, + ospfStubStatus + RowStatus, + ospfStubMetricType + INTEGER + } + + ospfStubAreaId OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit identifier for the Stub Area. On + creation, this can be derived from the in- + stance." + ::= { ospfStubAreaEntry 1 } + + + ospfStubTOS OBJECT-TYPE + SYNTAX TOSType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Type of Service associated with the + metric. On creation, this can be derived from + the instance." + ::= { ospfStubAreaEntry 2 } + + + ospfStubMetric OBJECT-TYPE + SYNTAX BigMetric + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The metric value applied at the indicated type + of service. By default, this equals the least + metric at the type of service among the inter- + faces to other areas." + ::= { ospfStubAreaEntry 3 } + + + ospfStubStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfStubAreaEntry 4 } + + ospfStubMetricType OBJECT-TYPE + SYNTAX INTEGER { + ospfMetric (1), -- OSPF Metric + comparableCost (2), -- external type 1 + nonComparable (3) -- external type 2 + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the type of metric ad- + vertised as a default route." + DEFVAL { ospfMetric } + ::= { ospfStubAreaEntry 5 } + + +-- OSPF Link State Database + +-- The Link State Database contains the Link State +-- Advertisements from throughout the areas that the +-- device is attached to. + + + ospfLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Process's Link State Database." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements" + ::= { ospf 4 } + + + ospfLsdbEntry OBJECT-TYPE + SYNTAX OspfLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single Link State Advertisement." + INDEX { ospfLsdbAreaId, ospfLsdbType, + ospfLsdbLsid, ospfLsdbRouterId } + ::= { ospfLsdbTable 1 } + +OspfLsdbEntry ::= + SEQUENCE { + ospfLsdbAreaId + AreaID, + ospfLsdbType + INTEGER, + ospfLsdbLsid + IpAddress, + ospfLsdbRouterId + RouterID, + ospfLsdbSequence + Integer32, + ospfLsdbAge + Integer32, + ospfLsdbChecksum + Integer32, + ospfLsdbAdvertisement + OCTET STRING + } + + ospfLsdbAreaId OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit identifier of the Area from which + the LSA was received." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfLsdbEntry 1 } + +-- External Link State Advertisements are permitted +-- for backward compatibility, but should be displayed in +-- the ospfExtLsdbTable rather than here. + + ospfLsdbType OBJECT-TYPE + SYNTAX INTEGER { + routerLink (1), + networkLink (2), + summaryLink (3), + asSummaryLink (4), + asExternalLink (5), -- but see ospfExtLsdbTable + multicastLink (6), + nssaExternalLink (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the link state advertisement. + Each link state type has a separate advertise- + ment format." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header" + ::= { ospfLsdbEntry 2 } + + ospfLsdbLsid OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Link State ID is an LS Type Specific field + containing either a Router ID or an IP Address; + it identifies the piece of the routing domain + that is being described by the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.4 Link State ID" + ::= { ospfLsdbEntry 3 } + + ospfLsdbRouterId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit number that uniquely identifies the + originating router in the Autonomous System." + REFERENCE + "OSPF Version 2, Appendix C.1 Global parameters" + ::= { ospfLsdbEntry 4 } + +-- Note that the OSPF Sequence Number is a 32 bit signed +-- integer. It starts with the value '80000001'h, +-- or -'7FFFFFFF'h, and increments until '7FFFFFFF'h +-- Thus, a typical sequence number will be very negative. + + ospfLsdbSequence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number field is a signed 32-bit + integer. It is used to detect old and dupli- + cate link state advertisements. The space of + sequence numbers is linearly ordered. The + larger the sequence number the more recent the + advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.6 LS sequence + number" + ::= { ospfLsdbEntry 5 } + + + ospfLsdbAge OBJECT-TYPE + SYNTAX Integer32 -- Should be 0..MaxAge + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the age of the link state adver- + tisement in seconds." + REFERENCE + "OSPF Version 2, Section 12.1.1 LS age" + ::= { ospfLsdbEntry 6 } + + ospfLsdbChecksum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the checksum of the complete + contents of the advertisement, excepting the + age field. The age field is excepted so that + an advertisement's age can be incremented + without updating the checksum. The checksum + used is the same that is used for ISO connec- + tionless datagrams; it is commonly referred to + as the Fletcher checksum." + REFERENCE + "OSPF Version 2, Section 12.1.7 LS checksum" + ::= { ospfLsdbEntry 7 } + + + ospfLsdbAdvertisement OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (1..65535)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The entire Link State Advertisement, including + its header." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements" + ::= { ospfLsdbEntry 8 } + + +-- Address Range Table + +-- The Address Range Table acts as an adjunct to the Area +-- Table; It describes those Address Range Summaries that +-- are configured to be propagated from an Area to reduce +-- the amount of information about it which is known beyond +-- its borders. + + ospfAreaRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfAreaRangeEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A range if IP addresses specified by an IP + address/IP network mask pair. For example, + class B address range of X.X.X.X with a network + mask of 255.255.0.0 includes all IP addresses + from X.X.0.0 to X.X.255.255" + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospf 5 } + + ospfAreaRangeEntry OBJECT-TYPE + SYNTAX OspfAreaRangeEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A range if IP addresses specified by an IP + address/IP network mask pair. For example, + class B address range of X.X.X.X with a network + mask of 255.255.0.0 includes all IP addresses + from X.X.0.0 to X.X.255.255" + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + INDEX { ospfAreaRangeAreaId, ospfAreaRangeNet } + ::= { ospfAreaRangeTable 1 } + +OspfAreaRangeEntry ::= + SEQUENCE { + ospfAreaRangeAreaId + AreaID, + ospfAreaRangeNet + IpAddress, + ospfAreaRangeMask + IpAddress, + ospfAreaRangeStatus + RowStatus, + ospfAreaRangeEffect + INTEGER + } + + ospfAreaRangeAreaId OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The Area the Address Range is to be found + within." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaRangeEntry 1 } + + + ospfAreaRangeNet OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The IP Address of the Net or Subnet indicated + by the range." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaRangeEntry 2 } + + + ospfAreaRangeMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "The Subnet Mask that pertains to the Net or + Subnet." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaRangeEntry 3 } + + ospfAreaRangeStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfAreaRangeEntry 4 } + + + ospfAreaRangeEffect OBJECT-TYPE + SYNTAX INTEGER { + advertiseMatching (1), + doNotAdvertiseMatching (2) + } + MAX-ACCESS read-create + STATUS obsolete + DESCRIPTION + "Subnets subsumed by ranges either trigger the + advertisement of the indicated summary (adver- + tiseMatching), or result in the subnet's not + being advertised at all outside the area." + DEFVAL { advertiseMatching } + ::= { ospfAreaRangeEntry 5 } + + + +-- OSPF Host Table + +-- The Host/Metric Table indicates what hosts are directly +-- attached to the Router, and what metrics and types of +-- service should be advertised for them. + + ospfHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The list of Hosts, and their metrics, that the + router will advertise as host routes." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route param- + eters" + ::= { ospf 6 } + + + ospfHostEntry OBJECT-TYPE + SYNTAX OspfHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A metric to be advertised, for a given type of + service, when a given host is reachable." + INDEX { ospfHostIpAddress, ospfHostTOS } + ::= { ospfHostTable 1 } + +OspfHostEntry ::= + SEQUENCE { + ospfHostIpAddress + IpAddress, + ospfHostTOS + TOSType, + ospfHostMetric + Metric, + ospfHostStatus + RowStatus, + ospfHostAreaID + AreaID + } + + ospfHostIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP Address of the Host." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parame- + ters" + ::= { ospfHostEntry 1 } + + + ospfHostTOS OBJECT-TYPE + SYNTAX TOSType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Type of Service of the route being config- + ured." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parame- + ters" + ::= { ospfHostEntry 2 } + + + ospfHostMetric OBJECT-TYPE + SYNTAX Metric + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Metric to be advertised." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parame- + ters" + ::= { ospfHostEntry 3 } + + ospfHostStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfHostEntry 4 } + + + ospfHostAreaID OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Area the Host Entry is to be found within. + By default, the area that a subsuming OSPF in- + terface is in, or 0.0.0.0" + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfHostEntry 5 } + + +-- OSPF Interface Table + +-- The OSPF Interface Table augments the ipAddrTable +-- with OSPF specific information. + + ospfIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Interface Table describes the inter- + faces from the viewpoint of OSPF." + REFERENCE + "OSPF Version 2, Appendix C.3 Router interface + parameters" + ::= { ospf 7 } + + + ospfIfEntry OBJECT-TYPE + SYNTAX OspfIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Interface Entry describes one inter- + face from the viewpoint of OSPF." + INDEX { ospfIfIpAddress, ospfAddressLessIf } + ::= { ospfIfTable 1 } + +OspfIfEntry ::= + SEQUENCE { + ospfIfIpAddress + IpAddress, + ospfAddressLessIf + Integer32, + ospfIfAreaId + AreaID, + ospfIfType + INTEGER, + ospfIfAdminStat + Status, + ospfIfRtrPriority + DesignatedRouterPriority, + ospfIfTransitDelay + UpToMaxAge, + ospfIfRetransInterval + UpToMaxAge, + ospfIfHelloInterval + HelloRange, + ospfIfRtrDeadInterval + PositiveInteger, + ospfIfPollInterval + PositiveInteger, + ospfIfState + INTEGER, + ospfIfDesignatedRouter + IpAddress, + ospfIfBackupDesignatedRouter + IpAddress, + ospfIfEvents + Counter32, + ospfIfAuthType + INTEGER, + ospfIfAuthKey + OCTET STRING, + ospfIfStatus + RowStatus, + ospfIfMulticastForwarding + INTEGER, + ospfIfDemand + TruthValue + } + + ospfIfIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of this OSPF interface." + ::= { ospfIfEntry 1 } + + ospfAddressLessIf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For the purpose of easing the instancing of + addressed and addressless interfaces; This + variable takes the value 0 on interfaces with + IP Addresses, and the corresponding value of + ifIndex for interfaces having no IP Address." + ::= { ospfIfEntry 2 } + + ospfIfAreaId OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying the area + to which the interface connects. Area ID + 0.0.0.0 is used for the OSPF backbone." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { ospfIfEntry 3 } + + ospfIfType OBJECT-TYPE + SYNTAX INTEGER { + broadcast (1), + nbma (2), + pointToPoint (3), + pointToMultipoint (5) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The OSPF interface type. + + By way of a default, this field may be intuited + from the corresponding value of ifType. Broad- + cast LANs, such as Ethernet and IEEE 802.5, + take the value 'broadcast', X.25 and similar + technologies take the value 'nbma', and links + that are definitively point to point take the + value 'pointToPoint'." + ::= { ospfIfEntry 4 } + + + ospfIfAdminStat OBJECT-TYPE + SYNTAX Status + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The OSPF interface's administrative status. + The value formed on the interface, and the in- + terface will be advertised as an internal route + to some area. The value 'disabled' denotes + that the interface is external to OSPF." + DEFVAL { enabled } + ::= { ospfIfEntry 5 } + + ospfIfRtrPriority OBJECT-TYPE + SYNTAX DesignatedRouterPriority + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The priority of this interface. Used in + multi-access networks, this field is used in + the designated router election algorithm. The + value 0 signifies that the router is not eligi- + ble to become the designated router on this + particular network. In the event of a tie in + this value, routers will use their Router ID as + a tie breaker." + DEFVAL { 1 } + ::= { ospfIfEntry 6 } + + + ospfIfTransitDelay OBJECT-TYPE + SYNTAX UpToMaxAge + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The estimated number of seconds it takes to + transmit a link state update packet over this + interface." + DEFVAL { 1 } + ::= { ospfIfEntry 7 } + + + ospfIfRetransInterval OBJECT-TYPE + SYNTAX UpToMaxAge + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The number of seconds between link-state ad- + vertisement retransmissions, for adjacencies + belonging to this interface. This value is + also used when retransmitting database descrip- + tion and link-state request packets." + DEFVAL { 5 } + ::= { ospfIfEntry 8 } + + + ospfIfHelloInterval OBJECT-TYPE + SYNTAX HelloRange + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The length of time, in seconds, between the + Hello packets that the router sends on the in- + terface. This value must be the same for all + routers attached to a common network." + DEFVAL { 10 } + ::= { ospfIfEntry 9 } + + + ospfIfRtrDeadInterval OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The number of seconds that a router's Hello + packets have not been seen before it's neigh- + bors declare the router down. This should be + some multiple of the Hello interval. This + value must be the same for all routers attached + to a common network." + DEFVAL { 40 } + ::= { ospfIfEntry 10 } + + + ospfIfPollInterval OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The larger time interval, in seconds, between + the Hello packets sent to an inactive non- + broadcast multi- access neighbor." + DEFVAL { 120 } + ::= { ospfIfEntry 11 } + + + ospfIfState OBJECT-TYPE + SYNTAX INTEGER { + down (1), + loopback (2), + waiting (3), + pointToPoint (4), + designatedRouter (5), + backupDesignatedRouter (6), + otherDesignatedRouter (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The OSPF Interface State." + DEFVAL { down } + ::= { ospfIfEntry 12 } + + + ospfIfDesignatedRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP Address of the Designated Router." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { ospfIfEntry 13 } + + + ospfIfBackupDesignatedRouter OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP Address of the Backup Designated + Router." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { ospfIfEntry 14 } + + ospfIfEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this OSPF interface has + changed its state, or an error has occurred." + ::= { ospfIfEntry 15 } + + + ospfIfAuthKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The Authentication Key. If the Area's Author- + ization Type is simplePassword, and the key + length is shorter than 8 octets, the agent will + left adjust and zero fill to 8 octets. + + Note that unauthenticated interfaces need no + authentication key, and simple password authen- + tication cannot use a key of more than 8 oc- + tets. Larger keys are useful only with authen- + tication mechanisms not specified in this docu- + ment. + + When read, ospfIfAuthKey always returns an Oc- + tet String of length zero." + REFERENCE + "OSPF Version 2, Section 9 The Interface Data + Structure" + DEFVAL { '0000000000000000'H } -- 0.0.0.0.0.0.0.0 + ::= { ospfIfEntry 16 } + + ospfIfStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfIfEntry 17 } + + + ospfIfMulticastForwarding OBJECT-TYPE + SYNTAX INTEGER { + blocked (1), -- no multicast forwarding + multicast (2), -- using multicast address + unicast (3) -- to each OSPF neighbor + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The way multicasts should forwarded on this + interface; not forwarded, forwarded as data + link multicasts, or forwarded as data link uni- + casts. Data link multicasting is not meaning- + ful on point to point and NBMA interfaces, and + setting ospfMulticastForwarding to 0 effective- + ly disables all multicast forwarding." + DEFVAL { blocked } + ::= { ospfIfEntry 18 } + + + ospfIfDemand OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Indicates whether Demand OSPF procedures (hel- + lo supression to FULL neighbors and setting the + DoNotAge flag on proogated LSAs) should be per- + formed on this interface." + DEFVAL { false } + ::= { ospfIfEntry 19 } + + + ospfIfAuthType OBJECT-TYPE + SYNTAX INTEGER (0..255) + -- none (0), + -- simplePassword (1) + -- md5 (2) + -- reserved for specification by IANA (> 2) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The authentication type specified for an in- + terface. Additional authentication types may + be assigned locally." + REFERENCE + "OSPF Version 2, Appendix E Authentication" + DEFVAL { 0 } -- no authentication, by default + ::= { ospfIfEntry 20 } + + +-- OSPF Interface Metric Table + +-- The Metric Table describes the metrics to be advertised +-- for a specified interface at the various types of service. +-- As such, this table is an adjunct of the OSPF Interface +-- Table. + +-- Types of service, as defined by RFC 791, have the ability +-- to request low delay, high bandwidth, or reliable linkage. + +-- For the purposes of this specification, the measure of +-- bandwidth + +-- Metric = 10^8 / ifSpeed + +-- is the default value. For multiple link interfaces, note +-- that ifSpeed is the sum of the individual link speeds. +-- This yields a number having the following typical values: + +-- Network Type/bit rate Metric + +-- >= 100 MBPS 1 +-- Ethernet/802.3 10 +-- E1 48 +-- T1 (ESF) 65 +-- 64 KBPS 1562 +-- 56 KBPS 1785 +-- 19.2 KBPS 5208 +-- 9.6 KBPS 10416 + +-- Routes that are not specified use the default (TOS 0) metric + + ospfIfMetricTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfIfMetricEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The TOS metrics for a non-virtual interface + identified by the interface index." + REFERENCE + "OSPF Version 2, Appendix C.3 Router interface + parameters" + ::= { ospf 8 } + + ospfIfMetricEntry OBJECT-TYPE + SYNTAX OspfIfMetricEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A particular TOS metric for a non-virtual in- + terface identified by the interface index." + REFERENCE + "OSPF Version 2, Appendix C.3 Router interface + parameters" + INDEX { ospfIfMetricIpAddress, + ospfIfMetricAddressLessIf, + ospfIfMetricTOS } + ::= { ospfIfMetricTable 1 } + +OspfIfMetricEntry ::= + SEQUENCE { + ospfIfMetricIpAddress + IpAddress, + ospfIfMetricAddressLessIf + Integer32, + ospfIfMetricTOS + TOSType, + ospfIfMetricValue + Metric, + ospfIfMetricStatus + RowStatus + } + + ospfIfMetricIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address of this OSPF interface. On row + creation, this can be derived from the in- + stance." + ::= { ospfIfMetricEntry 1 } + + ospfIfMetricAddressLessIf OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For the purpose of easing the instancing of + addressed and addressless interfaces; This + variable takes the value 0 on interfaces with + IP Addresses, and the value of ifIndex for in- + terfaces having no IP Address. On row crea- + tion, this can be derived from the instance." + ::= { ospfIfMetricEntry 2 } + + + ospfIfMetricTOS OBJECT-TYPE + SYNTAX TOSType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of service metric being referenced. + On row creation, this can be derived from the + instance." + ::= { ospfIfMetricEntry 3 } + + + ospfIfMetricValue OBJECT-TYPE + SYNTAX Metric + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The metric of using this type of service on + this interface. The default value of the TOS 0 + Metric is 10^8 / ifSpeed." + ::= { ospfIfMetricEntry 4 } + + ospfIfMetricStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfIfMetricEntry 5 } + + +-- OSPF Virtual Interface Table + +-- The Virtual Interface Table describes the virtual +-- links that the OSPF Process is configured to +-- carry on. + + ospfVirtIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfVirtIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about this router's virtual inter- + faces." + REFERENCE + "OSPF Version 2, Appendix C.4 Virtual link + parameters" + ::= { ospf 9 } + + + ospfVirtIfEntry OBJECT-TYPE + SYNTAX OspfVirtIfEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a single Virtual Interface." + INDEX { ospfVirtIfAreaId, ospfVirtIfNeighbor } + ::= { ospfVirtIfTable 1 } + +OspfVirtIfEntry ::= + SEQUENCE { + ospfVirtIfAreaId + AreaID, + ospfVirtIfNeighbor + RouterID, + ospfVirtIfTransitDelay + UpToMaxAge, + ospfVirtIfRetransInterval + UpToMaxAge, + ospfVirtIfHelloInterval + HelloRange, + ospfVirtIfRtrDeadInterval + PositiveInteger, + ospfVirtIfState + INTEGER, + ospfVirtIfEvents + Counter32, + ospfVirtIfAuthType + INTEGER, + ospfVirtIfAuthKey + OCTET STRING, + ospfVirtIfStatus + RowStatus + } + + ospfVirtIfAreaId OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Transit Area that the Virtual Link + traverses. By definition, this is not 0.0.0.0" + ::= { ospfVirtIfEntry 1 } + + + ospfVirtIfNeighbor OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Router ID of the Virtual Neighbor." + ::= { ospfVirtIfEntry 2 } + + + ospfVirtIfTransitDelay OBJECT-TYPE + SYNTAX UpToMaxAge + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The estimated number of seconds it takes to + transmit a link- state update packet over this + interface." + DEFVAL { 1 } + ::= { ospfVirtIfEntry 3 } + + ospfVirtIfRetransInterval OBJECT-TYPE + SYNTAX UpToMaxAge + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The number of seconds between link-state ad- + vertisement retransmissions, for adjacencies + belonging to this interface. This value is + also used when retransmitting database descrip- + tion and link-state request packets. This + value should be well over the expected round- + trip time." + DEFVAL { 5 } + ::= { ospfVirtIfEntry 4 } + + + ospfVirtIfHelloInterval OBJECT-TYPE + SYNTAX HelloRange + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The length of time, in seconds, between the + Hello packets that the router sends on the in- + terface. This value must be the same for the + virtual neighbor." + DEFVAL { 10 } + ::= { ospfVirtIfEntry 5 } + + + ospfVirtIfRtrDeadInterval OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The number of seconds that a router's Hello + packets have not been seen before it's neigh- + bors declare the router down. This should be + some multiple of the Hello interval. This + value must be the same for the virtual neigh- + bor." + DEFVAL { 60 } + ::= { ospfVirtIfEntry 6 } + + + ospfVirtIfState OBJECT-TYPE + SYNTAX INTEGER { + down (1), -- these use the same encoding + pointToPoint (4) -- as the ospfIfTable + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "OSPF virtual interface states." + DEFVAL { down } + ::= { ospfVirtIfEntry 7 } + + + ospfVirtIfEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of state changes or error events on + this Virtual Link" + ::= { ospfVirtIfEntry 8 } + + + ospfVirtIfAuthKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "If Authentication Type is simplePassword, the + device will left adjust and zero fill to 8 oc- + tets. + + Note that unauthenticated interfaces need no + authentication key, and simple password authen- + tication cannot use a key of more than 8 oc- + tets. Larger keys are useful only with authen- + tication mechanisms not specified in this docu- + ment. + + When read, ospfVifAuthKey always returns a + string of length zero." + REFERENCE + "OSPF Version 2, Section 9 The Interface Data + Structure" + DEFVAL { '0000000000000000'H } -- 0.0.0.0.0.0.0.0 + ::= { ospfVirtIfEntry 9 } + + + ospfVirtIfStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfVirtIfEntry 10 } + + + ospfVirtIfAuthType OBJECT-TYPE + SYNTAX INTEGER (0..255) + -- none (0), + -- simplePassword (1) + -- md5 (2) + -- reserved for specification by IANA (> 2) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The authentication type specified for a virtu- + al interface. Additional authentication types + may be assigned locally." + REFERENCE + "OSPF Version 2, Appendix E Authentication" + DEFVAL { 0 } -- no authentication, by default + ::= { ospfVirtIfEntry 11 } + + +-- OSPF Neighbor Table + +-- The OSPF Neighbor Table describes all neighbors in +-- the locality of the subject router. + + ospfNbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfNbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of non-virtual neighbor information." + REFERENCE + "OSPF Version 2, Section 10 The Neighbor Data + Structure" + ::= { ospf 10 } + + + ospfNbrEntry OBJECT-TYPE + SYNTAX OspfNbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The information regarding a single neighbor." + REFERENCE + "OSPF Version 2, Section 10 The Neighbor Data + Structure" + INDEX { ospfNbrIpAddr, ospfNbrAddressLessIndex } + ::= { ospfNbrTable 1 } + +OspfNbrEntry ::= + SEQUENCE { + ospfNbrIpAddr + IpAddress, + ospfNbrAddressLessIndex + InterfaceIndex, + ospfNbrRtrId + RouterID, + ospfNbrOptions + Integer32, + ospfNbrPriority + DesignatedRouterPriority, + ospfNbrState + INTEGER, + ospfNbrEvents + Counter32, + ospfNbrLsRetransQLen + Gauge32, + ospfNbmaNbrStatus + RowStatus, + ospfNbmaNbrPermanence + INTEGER, + ospfNbrHelloSuppressed + TruthValue + } + + ospfNbrIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address this neighbor is using in its + IP Source Address. Note that, on addressless + links, this will not be 0.0.0.0, but the ad- + dress of another of the neighbor's interfaces." + ::= { ospfNbrEntry 1 } + + + ospfNbrAddressLessIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "On an interface having an IP Address, zero. + On addressless interfaces, the corresponding + value of ifIndex in the Internet Standard MIB. + On row creation, this can be derived from the + instance." + ::= { ospfNbrEntry 2 } + + + ospfNbrRtrId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A 32-bit integer (represented as a type IpAd- + dress) uniquely identifying the neighboring + router in the Autonomous System." + DEFVAL { '00000000'H } -- 0.0.0.0 + ::= { ospfNbrEntry 3 } + + + ospfNbrOptions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A Bit Mask corresponding to the neighbor's op- + tions field. + + Bit 0, if set, indicates that the system will + operate on Type of Service metrics other than + TOS 0. If zero, the neighbor will ignore all + metrics except the TOS 0 metric. + + Bit 1, if set, indicates that the associated + area accepts and operates on external informa- + tion; if zero, it is a stub area. + + Bit 2, if set, indicates that the system is ca- + pable of routing IP Multicast datagrams; i.e., + that it implements the Multicast Extensions to + OSPF. + + Bit 3, if set, indicates that the associated + area is an NSSA. These areas are capable of + carrying type 7 external advertisements, which + are translated into type 5 external advertise- + ments at NSSA borders." + REFERENCE + "OSPF Version 2, Section 12.1.2 Options" + DEFVAL { 0 } + ::= { ospfNbrEntry 4 } + + + ospfNbrPriority OBJECT-TYPE + SYNTAX DesignatedRouterPriority + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The priority of this neighbor in the designat- + ed router election algorithm. The value 0 sig- + nifies that the neighbor is not eligible to be- + come the designated router on this particular + network." + DEFVAL { 1 } + ::= { ospfNbrEntry 5 } + + + ospfNbrState OBJECT-TYPE + SYNTAX INTEGER { + down (1), + attempt (2), + init (3), + twoWay (4), + exchangeStart (5), + exchange (6), + loading (7), + full (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The State of the relationship with this Neigh- + bor." + REFERENCE + "OSPF Version 2, Section 10.1 Neighbor States" + DEFVAL { down } + ::= { ospfNbrEntry 6 } + + + ospfNbrEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this neighbor relationship + has changed state, or an error has occurred." + ::= { ospfNbrEntry 7 } + + + ospfNbrLsRetransQLen OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current length of the retransmission + queue." + ::= { ospfNbrEntry 8 } + + + ospfNbmaNbrStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfNbrEntry 9 } + + + ospfNbmaNbrPermanence OBJECT-TYPE + SYNTAX INTEGER { + dynamic (1), -- learned through protocol + permanent (2) -- configured address + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. 'dynamic' and 'permanent' refer to how + the neighbor became known." + DEFVAL { permanent } + ::= { ospfNbrEntry 10 } + + + ospfNbrHelloSuppressed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether Hellos are being suppressed + to the neighbor" + ::= { ospfNbrEntry 11 } + + +-- OSPF Virtual Neighbor Table + +-- This table describes all virtual neighbors. +-- Since Virtual Links are configured in the +-- virtual interface table, this table is read-only. + + ospfVirtNbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfVirtNbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of virtual neighbor information." + REFERENCE + "OSPF Version 2, Section 15 Virtual Links" + ::= { ospf 11 } + + + ospfVirtNbrEntry OBJECT-TYPE + SYNTAX OspfVirtNbrEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Virtual neighbor information." + INDEX { ospfVirtNbrArea, ospfVirtNbrRtrId } + ::= { ospfVirtNbrTable 1 } + +OspfVirtNbrEntry ::= + SEQUENCE { + ospfVirtNbrArea + AreaID, + ospfVirtNbrRtrId + RouterID, + ospfVirtNbrIpAddr + IpAddress, + ospfVirtNbrOptions + Integer32, + ospfVirtNbrState + INTEGER, + ospfVirtNbrEvents + Counter32, + ospfVirtNbrLsRetransQLen + Gauge32, + ospfVirtNbrHelloSuppressed + TruthValue + } + + ospfVirtNbrArea OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Transit Area Identifier." + ::= { ospfVirtNbrEntry 1 } + + + ospfVirtNbrRtrId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A 32-bit integer uniquely identifying the + neighboring router in the Autonomous System." + ::= { ospfVirtNbrEntry 2 } + + + ospfVirtNbrIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address this Virtual Neighbor is us- + ing." + ::= { ospfVirtNbrEntry 3 } + + + ospfVirtNbrOptions OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A Bit Mask corresponding to the neighbor's op- + tions field. + + Bit 1, if set, indicates that the system will + operate on Type of Service metrics other than + TOS 0. If zero, the neighbor will ignore all + metrics except the TOS 0 metric. + + Bit 2, if set, indicates that the system is + Network Multicast capable; ie, that it imple- + ments OSPF Multicast Routing." + ::= { ospfVirtNbrEntry 4 } + + + ospfVirtNbrState OBJECT-TYPE + SYNTAX INTEGER { + down (1), + attempt (2), + init (3), + twoWay (4), + exchangeStart (5), + exchange (6), + loading (7), + full (8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The state of the Virtual Neighbor Relation- + ship." + ::= { ospfVirtNbrEntry 5 } + + + ospfVirtNbrEvents OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this virtual link has + changed its state, or an error has occurred." + ::= { ospfVirtNbrEntry 6 } + + + ospfVirtNbrLsRetransQLen OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current length of the retransmission + queue." + ::= { ospfVirtNbrEntry 7 } + + + ospfVirtNbrHelloSuppressed OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether Hellos are being suppressed + to the neighbor" + ::= { ospfVirtNbrEntry 8 } + + +-- OSPF Link State Database, External + +-- The Link State Database contains the Link State +-- Advertisements from throughout the areas that the +-- device is attached to. + +-- This table is identical to the OSPF LSDB Table in +-- format, but contains only External Link State +-- Advertisements. The purpose is to allow external +-- LSAs to be displayed once for the router rather +-- than once in each non-stub area. + + ospfExtLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfExtLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The OSPF Process's Links State Database." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements" + ::= { ospf 12 } + + + ospfExtLsdbEntry OBJECT-TYPE + SYNTAX OspfExtLsdbEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A single Link State Advertisement." + INDEX { ospfExtLsdbType, ospfExtLsdbLsid, ospfExtLsdbRouterId } + ::= { ospfExtLsdbTable 1 } + +OspfExtLsdbEntry ::= + SEQUENCE { + ospfExtLsdbType + INTEGER, + ospfExtLsdbLsid + IpAddress, + ospfExtLsdbRouterId + RouterID, + ospfExtLsdbSequence + Integer32, + ospfExtLsdbAge + Integer32, + ospfExtLsdbChecksum + Integer32, + ospfExtLsdbAdvertisement + OCTET STRING + } + + ospfExtLsdbType OBJECT-TYPE + SYNTAX INTEGER { + asExternalLink (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the link state advertisement. + Each link state type has a separate advertise- + ment format." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header" + ::= { ospfExtLsdbEntry 1 } + + + ospfExtLsdbLsid OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Link State ID is an LS Type Specific field + containing either a Router ID or an IP Address; + it identifies the piece of the routing domain + that is being described by the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.4 Link State ID" + ::= { ospfExtLsdbEntry 2 } + + + ospfExtLsdbRouterId OBJECT-TYPE + SYNTAX RouterID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The 32 bit number that uniquely identifies the + originating router in the Autonomous System." + REFERENCE + "OSPF Version 2, Appendix C.1 Global parameters" + ::= { ospfExtLsdbEntry 3 } + +-- Note that the OSPF Sequence Number is a 32 bit signed +-- integer. It starts with the value '80000001'h, +-- or -'7FFFFFFF'h, and increments until '7FFFFFFF'h +-- Thus, a typical sequence number will be very negative. + + ospfExtLsdbSequence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sequence number field is a signed 32-bit + integer. It is used to detect old and dupli- + cate link state advertisements. The space of + sequence numbers is linearly ordered. The + larger the sequence number the more recent the + advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.6 LS sequence + number" + ::= { ospfExtLsdbEntry 4 } + + + ospfExtLsdbAge OBJECT-TYPE + SYNTAX Integer32 -- Should be 0..MaxAge + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the age of the link state adver- + tisement in seconds." + REFERENCE + "OSPF Version 2, Section 12.1.1 LS age" + ::= { ospfExtLsdbEntry 5 } + + + ospfExtLsdbChecksum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This field is the checksum of the complete + contents of the advertisement, excepting the + age field. The age field is excepted so that + an advertisement's age can be incremented + without updating the checksum. The checksum + used is the same that is used for ISO connec- + tionless datagrams; it is commonly referred to + as the Fletcher checksum." + REFERENCE + "OSPF Version 2, Section 12.1.7 LS checksum" + ::= { ospfExtLsdbEntry 6 } + + + ospfExtLsdbAdvertisement OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(36)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The entire Link State Advertisement, including + its header." + REFERENCE + "OSPF Version 2, Section 12 Link State Adver- + tisements" + ::= { ospfExtLsdbEntry 7 } + + +-- OSPF Use of the CIDR Route Table + +ospfRouteGroup OBJECT IDENTIFIER ::= { ospf 13 } + +-- The IP Forwarding Table defines a number of objects for use by +-- the routing protocol to externalize its information. Most of +-- the variables (ipForwardDest, ipForwardMask, ipForwardPolicy, +-- ipForwardNextHop, ipForwardIfIndex, ipForwardType, +-- ipForwardProto, ipForwardAge, and ipForwardNextHopAS) are +-- defined there. + +-- Those that leave some discretion are defined here. + +-- ipCidrRouteProto is, of course, ospf (13). + +-- ipCidrRouteAge is the time since the route was first calculated, +-- as opposed to the time since the last SPF run. + +-- ipCidrRouteInfo is an OBJECT IDENTIFIER for use by the routing +-- protocol. The following values shall be found there depending +-- on the way the route was calculated. + +ospfIntraArea OBJECT IDENTIFIER ::= { ospfRouteGroup 1 } +ospfInterArea OBJECT IDENTIFIER ::= { ospfRouteGroup 2 } +ospfExternalType1 OBJECT IDENTIFIER ::= { ospfRouteGroup 3 } +ospfExternalType2 OBJECT IDENTIFIER ::= { ospfRouteGroup 4 } + +-- ipCidrRouteMetric1 is, by definition, the primary routing +-- metric. Therefore, it should be the metric that route +-- selection is based on. For intra-area and inter-area routes, +-- it is an OSPF metric. For External Type 1 (comparable value) +-- routes, it is an OSPF metric plus the External Metric. For +-- external Type 2 (non-comparable value) routes, it is the +-- external metric. + +-- ipCidrRouteMetric2 is, by definition, a secondary routing +-- metric. Therefore, it should be the metric that breaks a tie +-- among routes having equal metric1 values and the same +-- calculation rule. For intra-area, inter-area routes, and +-- External Type 1 (comparable value) routes, it is unused. For +-- external Type 2 (non-comparable value) routes, it is the metric +-- to the AS border router. + +-- ipCidrRouteMetric3, ipCidrRouteMetric4, and ipCidrRouteMetric5 are +-- unused. + +-- +-- The OSPF Area Aggregate Table +-- +-- This table replaces the OSPF Area Summary Table, being an +-- extension of that for CIDR routers. + + ospfAreaAggregateTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfAreaAggregateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A range of IP addresses specified by an IP + address/IP network mask pair. For example, + class B address range of X.X.X.X with a network + mask of 255.255.0.0 includes all IP addresses + from X.X.0.0 to X.X.255.255. Note that if + ranges are configured such that one range sub- + sumes another range (e.g., 10.0.0.0 mask + 255.0.0.0 and 10.1.0.0 mask 255.255.0.0), the + most specific match is the preferred one." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospf 14 } + + + ospfAreaAggregateEntry OBJECT-TYPE + SYNTAX OspfAreaAggregateEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A range of IP addresses specified by an IP + address/IP network mask pair. For example, + class B address range of X.X.X.X with a network + mask of 255.255.0.0 includes all IP addresses + from X.X.0.0 to X.X.255.255. Note that if + ranges are range configured such that one range + subsumes another range (e.g., 10.0.0.0 mask + 255.0.0.0 and 10.1.0.0 mask 255.255.0.0), the + most specific match is the preferred one." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + INDEX { ospfAreaAggregateAreaID, ospfAreaAggregateLsdbType, + ospfAreaAggregateNet, ospfAreaAggregateMask } + ::= { ospfAreaAggregateTable 1 } + + +OspfAreaAggregateEntry ::= + SEQUENCE { + ospfAreaAggregateAreaID + AreaID, + ospfAreaAggregateLsdbType + INTEGER, + ospfAreaAggregateNet + IpAddress, + ospfAreaAggregateMask + IpAddress, + ospfAreaAggregateStatus + RowStatus, + ospfAreaAggregateEffect + INTEGER + } + + ospfAreaAggregateAreaID OBJECT-TYPE + SYNTAX AreaID + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Area the Address Aggregate is to be found + within." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaAggregateEntry 1 } + + + ospfAreaAggregateLsdbType OBJECT-TYPE + SYNTAX INTEGER { + summaryLink (3), + nssaExternalLink (7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the Address Aggregate. This field + specifies the Lsdb type that this Address Ag- + gregate applies to." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header" + ::= { ospfAreaAggregateEntry 2 } + + + ospfAreaAggregateNet OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP Address of the Net or Subnet indicated + by the range." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaAggregateEntry 3 } + + + ospfAreaAggregateMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The Subnet Mask that pertains to the Net or + Subnet." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaAggregateEntry 4 } + + + ospfAreaAggregateStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This variable displays the status of the en- + try. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect + (row removal) is implementation dependent." + ::= { ospfAreaAggregateEntry 5 } + + + ospfAreaAggregateEffect OBJECT-TYPE + SYNTAX INTEGER { + advertiseMatching (1), + doNotAdvertiseMatching (2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "Subnets subsumed by ranges either trigger the + advertisement of the indicated aggregate (ad- + vertiseMatching), or result in the subnet's not + being advertised at all outside the area." + DEFVAL { advertiseMatching } + ::= { ospfAreaAggregateEntry 6 } + + +-- conformance information + +ospfConformance OBJECT IDENTIFIER ::= { ospf 15 } + +ospfGroups OBJECT IDENTIFIER ::= { ospfConformance 1 } +ospfCompliances OBJECT IDENTIFIER ::= { ospfConformance 2 } + +-- compliance statements + + ospfCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement " + MODULE -- this module + MANDATORY-GROUPS { + ospfBasicGroup, + ospfAreaGroup, + ospfStubAreaGroup, + ospfIfGroup, + ospfIfMetricGroup, + ospfVirtIfGroup, + ospfNbrGroup, + ospfVirtNbrGroup, + ospfAreaAggregateGroup + } + ::= { ospfCompliances 1 } + + +-- units of conformance + + ospfBasicGroup OBJECT-GROUP + OBJECTS { + ospfRouterId, + ospfAdminStat, + ospfVersionNumber, + ospfAreaBdrRtrStatus, + ospfASBdrRtrStatus, + ospfExternLsaCount, + ospfExternLsaCksumSum, + ospfTOSSupport, + ospfOriginateNewLsas, + ospfRxNewLsas, + ospfExtLsdbLimit, + ospfMulticastExtensions, + ospfExitOverflowInterval, + ospfDemandExtensions + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 1 } + + + ospfAreaGroup OBJECT-GROUP + OBJECTS { + ospfAreaId, + ospfImportAsExtern, + ospfSpfRuns, + ospfAreaBdrRtrCount, + ospfAsBdrRtrCount, + ospfAreaLsaCount, + ospfAreaLsaCksumSum, + ospfAreaSummary, + ospfAreaStatus + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems + supporting areas." + ::= { ospfGroups 2 } + + + ospfStubAreaGroup OBJECT-GROUP + OBJECTS { + ospfStubAreaId, + ospfStubTOS, + ospfStubMetric, + ospfStubStatus, + ospfStubMetricType + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems + supporting stub areas." + ::= { ospfGroups 3 } + + + ospfLsdbGroup OBJECT-GROUP + OBJECTS { + ospfLsdbAreaId, + ospfLsdbType, + ospfLsdbLsid, + ospfLsdbRouterId, + ospfLsdbSequence, + ospfLsdbAge, + ospfLsdbChecksum, + ospfLsdbAdvertisement + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems + that display their link state database." + ::= { ospfGroups 4 } + + + ospfAreaRangeGroup OBJECT-GROUP + OBJECTS { + ospfAreaRangeAreaId, + ospfAreaRangeNet, + ospfAreaRangeMask, + ospfAreaRangeStatus, + ospfAreaRangeEffect + } + STATUS obsolete + DESCRIPTION + "These objects are required for non-CIDR OSPF + systems that support multiple areas." + ::= { ospfGroups 5 } + + + ospfHostGroup OBJECT-GROUP + OBJECTS { + ospfHostIpAddress, + ospfHostTOS, + ospfHostMetric, + ospfHostStatus, + ospfHostAreaID + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems + that support attached hosts." + ::= { ospfGroups 6 } + + + ospfIfGroup OBJECT-GROUP + OBJECTS { + ospfIfIpAddress, + ospfAddressLessIf, + ospfIfAreaId, + ospfIfType, + ospfIfAdminStat, + ospfIfRtrPriority, + ospfIfTransitDelay, + ospfIfRetransInterval, + ospfIfHelloInterval, + ospfIfRtrDeadInterval, + ospfIfPollInterval, + ospfIfState, + ospfIfDesignatedRouter, + ospfIfBackupDesignatedRouter, + ospfIfEvents, + ospfIfAuthType, + ospfIfAuthKey, + ospfIfStatus, + ospfIfMulticastForwarding, + ospfIfDemand + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 7 } + + + ospfIfMetricGroup OBJECT-GROUP + OBJECTS { + ospfIfMetricIpAddress, + ospfIfMetricAddressLessIf, + ospfIfMetricTOS, + ospfIfMetricValue, + ospfIfMetricStatus + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 8 } + + + ospfVirtIfGroup OBJECT-GROUP + OBJECTS { + ospfVirtIfAreaId, + ospfVirtIfNeighbor, + ospfVirtIfTransitDelay, + ospfVirtIfRetransInterval, + ospfVirtIfHelloInterval, + ospfVirtIfRtrDeadInterval, + ospfVirtIfState, + ospfVirtIfEvents, + ospfVirtIfAuthType, + ospfVirtIfAuthKey, + ospfVirtIfStatus + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 9 } + + + ospfNbrGroup OBJECT-GROUP + OBJECTS { + ospfNbrIpAddr, + ospfNbrAddressLessIndex, + ospfNbrRtrId, + ospfNbrOptions, + ospfNbrPriority, + ospfNbrState, + ospfNbrEvents, + ospfNbrLsRetransQLen, + ospfNbmaNbrStatus, + ospfNbmaNbrPermanence, + ospfNbrHelloSuppressed + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 10 } + + + ospfVirtNbrGroup OBJECT-GROUP + OBJECTS { + ospfVirtNbrArea, + ospfVirtNbrRtrId, + ospfVirtNbrIpAddr, + ospfVirtNbrOptions, + ospfVirtNbrState, + ospfVirtNbrEvents, + ospfVirtNbrLsRetransQLen, + ospfVirtNbrHelloSuppressed + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 11 } + + + ospfExtLsdbGroup OBJECT-GROUP + OBJECTS { + ospfExtLsdbType, + ospfExtLsdbLsid, + ospfExtLsdbRouterId, + ospfExtLsdbSequence, + ospfExtLsdbAge, + ospfExtLsdbChecksum, + ospfExtLsdbAdvertisement + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems + that display their link state database." + ::= { ospfGroups 12 } + + + ospfAreaAggregateGroup OBJECT-GROUP + OBJECTS { + ospfAreaAggregateAreaID, + ospfAreaAggregateLsdbType, + ospfAreaAggregateNet, + ospfAreaAggregateMask, + ospfAreaAggregateStatus, + ospfAreaAggregateEffect + } + STATUS current + DESCRIPTION + "These objects are required for OSPF systems." + ::= { ospfGroups 13 } + +END diff --git a/pandora_console/attachment/mibs/P-BRIDGE-MIB b/pandora_console/attachment/mibs/P-BRIDGE-MIB new file mode 100644 index 0000000000..3109a4b94c --- /dev/null +++ b/pandora_console/attachment/mibs/P-BRIDGE-MIB @@ -0,0 +1,963 @@ +-- extracted from rfc2674.txt +-- at Mon Nov 15 17:12:07 1999 + +P-BRIDGE-MIB DEFINITIONS ::= BEGIN + +-- ------------------------------------------------------------- +-- MIB for IEEE 802.1p devices +-- ------------------------------------------------------------- + +IMPORTS +MODULE-IDENTITY, OBJECT-TYPE, Counter32, Counter64 +FROM SNMPv2-SMI +TruthValue, TimeInterval, MacAddress, TEXTUAL-CONVENTION +FROM SNMPv2-TC +MODULE-COMPLIANCE, OBJECT-GROUP +FROM SNMPv2-CONF +dot1dTp, dot1dTpPort, dot1dBridge, +dot1dBasePortEntry, dot1dBasePort +FROM BRIDGE-MIB; + +pBridgeMIB MODULE-IDENTITY +LAST-UPDATED "9908250000Z" +ORGANIZATION "IETF Bridge MIB Working Group" +CONTACT-INFO +" Les Bell +Postal: 3Com Europe Ltd. +3Com Centre, Boundary Way +Hemel Hempstead, Herts. HP2 7YU +UK +Phone: +44 1442 438025 +Email: Les_Bell@3Com.com + +Andrew Smith +Postal: Extreme Networks +3585 Monroe St. +Santa Clara CA 95051 +USA +Phone: +1 408 579 2821 +Email: andrew@extremenetworks.com + +Paul Langille +Postal: Newbridge Networks +5 Corporate Drive +Andover, MA 01810 +USA +Phone: +1 978 691 4665 +Email: langille@newbridge.com + +Anil Rijhsinghani +Postal: Cabletron Systems +50 Minuteman Road +Andover, MA 01810 +USA +Phone: +1 978 684 1295 +Email: anil@cabletron.com + +Keith McCloghrie +Postal: cisco Systems, Inc. +170 West Tasman Drive +San Jose, CA 95134-1706 +USA +Phone: +1 408 526 5260 +Email: kzm@cisco.com" + +DESCRIPTION +"The Bridge MIB Extension module for managing Priority +and Multicast Filtering, defined by IEEE 802.1D-1998." + +-- revision history + +REVISION "9908250000Z" +DESCRIPTION +"Initial version, published as RFC 2674." + +::= { dot1dBridge 6 } + +pBridgeMIBObjects OBJECT IDENTIFIER ::= { pBridgeMIB 1 } + +-- ------------------------------------------------------------- +-- Textual Conventions +-- ------------------------------------------------------------- + +EnabledStatus ::= TEXTUAL-CONVENTION +STATUS current +DESCRIPTION +"A simple status value for the object." +SYNTAX INTEGER { enabled(1), disabled(2) } + +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- groups in the P-BRIDGE MIB +-- ------------------------------------------------------------- + +dot1dExtBase OBJECT IDENTIFIER ::= { pBridgeMIBObjects 1 } +dot1dPriority OBJECT IDENTIFIER ::= { pBridgeMIBObjects 2 } +dot1dGarp OBJECT IDENTIFIER ::= { pBridgeMIBObjects 3 } +dot1dGmrp OBJECT IDENTIFIER ::= { pBridgeMIBObjects 4 } + +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- the dot1dExtBase group +-- ------------------------------------------------------------- + +dot1dDeviceCapabilities OBJECT-TYPE +SYNTAX BITS { +dot1dExtendedFilteringServices(0), +-- can perform filtering of +-- individual multicast addresses +-- controlled by GMRP. +dot1dTrafficClasses(1), +-- can map user priority to +-- multiple traffic classes. + +dot1qStaticEntryIndividualPort(2), +-- dot1qStaticUnicastReceivePort & +-- dot1qStaticMulticastReceivePort +-- can represent non-zero entries. +dot1qIVLCapable(3), -- Independent VLAN Learning. +dot1qSVLCapable(4), -- Shared VLAN Learning. +dot1qHybridCapable(5), +-- both IVL & SVL simultaneously. +dot1qConfigurablePvidTagging(6), +-- whether the implementation +-- supports the ability to +-- override the default PVID +-- setting and its egress status +-- (VLAN-Tagged or Untagged) on +-- each port. +dot1dLocalVlanCapable(7) +-- can support multiple local +-- bridges, outside of the scope +-- of 802.1Q defined VLANs. +} +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"Indicates the optional parts of IEEE 802.1D and 802.1Q +that are implemented by this device and are manageable +through this MIB. Capabilities that are allowed on a +per-port basis are indicated in dot1dPortCapabilities." +REFERENCE +"ISO/IEC 15802-3 Section 5.2, +IEEE 802.1Q/D11 Section 5.2, 12.10.1.1.3/b/2" +::= { dot1dExtBase 1 } + +dot1dTrafficClassesEnabled OBJECT-TYPE +SYNTAX TruthValue +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The value true(1) indicates that Traffic Classes are +enabled on this bridge. When false(2), the bridge +operates with a single priority level for all traffic." +DEFVAL { true } +::= { dot1dExtBase 2 } + +dot1dGmrpStatus OBJECT-TYPE +SYNTAX EnabledStatus +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The administrative status requested by management for +GMRP. The value enabled(1) indicates that GMRP should +be enabled on this device, in all VLANs, on all ports +for which it has not been specifically disabled. When +disabled(2), GMRP is disabled, in all VLANs, on all +ports and all GMRP packets will be forwarded +transparently. This object affects both Applicant and +Registrar state machines. A transition from disabled(2) +to enabled(1) will cause a reset of all GMRP state +machines on all ports." +DEFVAL { enabled } +::= { dot1dExtBase 3 } + +-- ------------------------------------------------------------- +-- Port Capabilities Table +-- ------------------------------------------------------------- + +dot1dPortCapabilitiesTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dPortCapabilitiesEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table that contains capabilities information about +every port that is associated with this bridge." +::= { dot1dExtBase 4 } + +dot1dPortCapabilitiesEntry OBJECT-TYPE +SYNTAX Dot1dPortCapabilitiesEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A set of capabilities information about this port +indexed by dot1dBasePort." +AUGMENTS { dot1dBasePortEntry } +::= { dot1dPortCapabilitiesTable 1 } + +Dot1dPortCapabilitiesEntry ::= +SEQUENCE { +dot1dPortCapabilities +BITS +} + +dot1dPortCapabilities OBJECT-TYPE +SYNTAX BITS { +dot1qDot1qTagging(0), -- supports 802.1Q VLAN tagging of +-- frames and GVRP. +dot1qConfigurableAcceptableFrameTypes(1), +-- allows modified values of +-- dot1qPortAcceptableFrameTypes. +dot1qIngressFiltering(2) +-- supports the discarding of any +-- frame received on a Port whose +-- VLAN classification does not +-- include that Port in its Member +-- set. +} +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"Indicates the parts of IEEE 802.1D and 802.1Q that are +optional on a per-port basis that are implemented by +this device and are manageable through this MIB." +REFERENCE +"ISO/IEC 15802-3 Section 5.2, +IEEE 802.1Q/D11 Section 5.2" +::= { dot1dPortCapabilitiesEntry 1 } + +-- ------------------------------------------------------------- +-- the dot1dPriority group +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- Port Priority Table +-- ------------------------------------------------------------- + +dot1dPortPriorityTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dPortPriorityEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table that contains information about every port that +is associated with this transparent bridge." +::= { dot1dPriority 1 } + +dot1dPortPriorityEntry OBJECT-TYPE +SYNTAX Dot1dPortPriorityEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A list of Default User Priorities for each port of a +transparent bridge. This is indexed by dot1dBasePort." +AUGMENTS { dot1dBasePortEntry } +::= { dot1dPortPriorityTable 1 } + +Dot1dPortPriorityEntry ::= +SEQUENCE { +dot1dPortDefaultUserPriority +INTEGER, +dot1dPortNumTrafficClasses +INTEGER +} + +dot1dPortDefaultUserPriority OBJECT-TYPE +SYNTAX INTEGER (0..7) +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The default ingress User Priority for this port. This +only has effect on media, such as Ethernet, that do not +support native User Priority." +::= { dot1dPortPriorityEntry 1 } + +dot1dPortNumTrafficClasses OBJECT-TYPE +SYNTAX INTEGER (1..8) +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The number of egress traffic classes supported on this +port. This object may optionally be read-only." +::= { dot1dPortPriorityEntry 2 } + +-- ------------------------------------------------------------- +-- User Priority Regeneration Table +-- ------------------------------------------------------------- + +dot1dUserPriorityRegenTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dUserPriorityRegenEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A list of Regenerated User Priorities for each received +User Priority on each port of a bridge. The Regenerated +User Priority value may be used to index the Traffic +Class Table for each input port. This only has effect +on media that support native User Priority. The default +values for Regenerated User Priorities are the same as +the User Priorities." +REFERENCE +"ISO/IEC 15802-3 Section 6.4" +::= { dot1dPriority 2 } + +dot1dUserPriorityRegenEntry OBJECT-TYPE +SYNTAX Dot1dUserPriorityRegenEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A mapping of incoming User Priority to a Regenerated +User Priority." +INDEX { dot1dBasePort, dot1dUserPriority } +::= { dot1dUserPriorityRegenTable 1 } + +Dot1dUserPriorityRegenEntry ::= +SEQUENCE { +dot1dUserPriority +INTEGER, +dot1dRegenUserPriority +INTEGER +} + +dot1dUserPriority OBJECT-TYPE +SYNTAX INTEGER (0..7) +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The User Priority for a frame received on this port." +::= { dot1dUserPriorityRegenEntry 1 } + +dot1dRegenUserPriority OBJECT-TYPE +SYNTAX INTEGER (0..7) +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The Regenerated User Priority the incoming User +Priority is mapped to for this port." +::= { dot1dUserPriorityRegenEntry 2 } + +-- ------------------------------------------------------------- +-- Traffic Class Table +-- ------------------------------------------------------------- + +dot1dTrafficClassTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dTrafficClassEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table mapping evaluated User Priority to Traffic +Class, for forwarding by the bridge. Traffic class is a +number in the range (0..(dot1dPortNumTrafficClasses-1))." +REFERENCE +"ISO/IEC 15802-3 Table 7-2" +::= { dot1dPriority 3 } + +dot1dTrafficClassEntry OBJECT-TYPE +SYNTAX Dot1dTrafficClassEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"User Priority to Traffic Class mapping." +INDEX { dot1dBasePort, dot1dTrafficClassPriority } +::= { dot1dTrafficClassTable 1 } + +Dot1dTrafficClassEntry ::= +SEQUENCE { +dot1dTrafficClassPriority +INTEGER, +dot1dTrafficClass +INTEGER +} + +dot1dTrafficClassPriority OBJECT-TYPE +SYNTAX INTEGER (0..7) +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The Priority value determined for the received frame. +This value is equivalent to the priority indicated in +the tagged frame received, or one of the evaluated +priorities, determined according to the media-type. + +For untagged frames received from Ethernet media, this +value is equal to the dot1dPortDefaultUserPriority value +for the ingress port. + +For untagged frames received from non-Ethernet media, +this value is equal to the dot1dRegenUserPriority value +for the ingress port and media-specific user priority." +::= { dot1dTrafficClassEntry 1 } + +dot1dTrafficClass OBJECT-TYPE +SYNTAX INTEGER (0..7) +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The Traffic Class the received frame is mapped to." +::= { dot1dTrafficClassEntry 2 } + +-- ------------------------------------------------------------- +-- Outbound Access Priority Table +-- ------------------------------------------------------------- + +dot1dPortOutboundAccessPriorityTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dPortOutboundAccessPriorityEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table mapping Regenerated User Priority to Outbound +Access Priority. This is a fixed mapping for all port +types, with two options for 802.5 Token Ring." +REFERENCE +"ISO/IEC 15802-3 Table 7-3" +::= { dot1dPriority 4 } + +dot1dPortOutboundAccessPriorityEntry OBJECT-TYPE +SYNTAX Dot1dPortOutboundAccessPriorityEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Regenerated User Priority to Outbound Access Priority +mapping." +INDEX { dot1dBasePort, dot1dRegenUserPriority } +::= { dot1dPortOutboundAccessPriorityTable 1 } + +Dot1dPortOutboundAccessPriorityEntry ::= +SEQUENCE { +dot1dPortOutboundAccessPriority +INTEGER +} + +dot1dPortOutboundAccessPriority OBJECT-TYPE +SYNTAX INTEGER (0..7) +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The Outbound Access Priority the received frame is +mapped to." +::= { dot1dPortOutboundAccessPriorityEntry 1 } + +-- ------------------------------------------------------------- +-- the dot1dGarp group +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- The GARP Port Table +-- ------------------------------------------------------------- +dot1dPortGarpTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dPortGarpEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table of GARP control information about every bridge +port. This is indexed by dot1dBasePort." +::= { dot1dGarp 1 } + +dot1dPortGarpEntry OBJECT-TYPE +SYNTAX Dot1dPortGarpEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"GARP control information for a bridge port." +AUGMENTS { dot1dBasePortEntry } +::= { dot1dPortGarpTable 1 } + +Dot1dPortGarpEntry ::= +SEQUENCE { +dot1dPortGarpJoinTime +TimeInterval, +dot1dPortGarpLeaveTime +TimeInterval, +dot1dPortGarpLeaveAllTime +TimeInterval +} + +dot1dPortGarpJoinTime OBJECT-TYPE +SYNTAX TimeInterval +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The GARP Join time, in centiseconds." +DEFVAL { 20 } +::= { dot1dPortGarpEntry 1 } + +dot1dPortGarpLeaveTime OBJECT-TYPE +SYNTAX TimeInterval +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The GARP Leave time, in centiseconds." +DEFVAL { 60 } +::= { dot1dPortGarpEntry 2 } + +dot1dPortGarpLeaveAllTime OBJECT-TYPE +SYNTAX TimeInterval +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The GARP LeaveAll time, in centiseconds." +DEFVAL { 1000 } +::= { dot1dPortGarpEntry 3 } + +-- ------------------------------------------------------------- +-- The GMRP Port Configuration and Status Table +-- ------------------------------------------------------------- + +dot1dPortGmrpTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dPortGmrpEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table of GMRP control and status information about +every bridge port. Augments the dot1dBasePortTable." +::= { dot1dGmrp 1 } + +dot1dPortGmrpEntry OBJECT-TYPE +SYNTAX Dot1dPortGmrpEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"GMRP control and status information for a bridge port." +AUGMENTS { dot1dBasePortEntry } +::= { dot1dPortGmrpTable 1 } + +Dot1dPortGmrpEntry ::= +SEQUENCE { +dot1dPortGmrpStatus +EnabledStatus, +dot1dPortGmrpFailedRegistrations +Counter32, +dot1dPortGmrpLastPduOrigin +MacAddress +} + +dot1dPortGmrpStatus OBJECT-TYPE +SYNTAX EnabledStatus +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The administrative state of GMRP operation on this port. The +value enabled(1) indicates that GMRP is enabled on this port +in all VLANs as long as dot1dGmrpStatus is also enabled(1). +A value of disabled(2) indicates that GMRP is disabled on +this port in all VLANs: any GMRP packets received will +be silently discarded and no GMRP registrations will be +propagated from other ports. Setting this to a value of +enabled(1) will be stored by the agent but will only take +effect on the GMRP protocol operation if dot1dGmrpStatus +also indicates the value enabled(1). This object affects +all GMRP Applicant and Registrar state machines on this +port. A transition from disabled(2) to enabled(1) will +cause a reset of all GMRP state machines on this port." +DEFVAL { enabled } +::= { dot1dPortGmrpEntry 1 } + +dot1dPortGmrpFailedRegistrations OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The total number of failed GMRP registrations, for any +reason, in all VLANs, on this port." +::= { dot1dPortGmrpEntry 2 } + +dot1dPortGmrpLastPduOrigin OBJECT-TYPE +SYNTAX MacAddress +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The Source MAC Address of the last GMRP message +received on this port." +::= { dot1dPortGmrpEntry 3 } + +-- ------------------------------------------------------------- +-- High Capacity Port Table for Transparent Bridges +-- ------------------------------------------------------------- + +dot1dTpHCPortTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dTpHCPortEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table that contains information about every high +capacity port that is associated with this transparent +bridge." +::= { dot1dTp 5 } + +dot1dTpHCPortEntry OBJECT-TYPE +SYNTAX Dot1dTpHCPortEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Statistics information for each high capacity port of a +transparent bridge." +INDEX { dot1dTpPort } +::= { dot1dTpHCPortTable 1 } + +Dot1dTpHCPortEntry ::= +SEQUENCE { +dot1dTpHCPortInFrames +Counter64, +dot1dTpHCPortOutFrames +Counter64, +dot1dTpHCPortInDiscards +Counter64 +} + +dot1dTpHCPortInFrames OBJECT-TYPE +SYNTAX Counter64 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of frames that have been received by this +port from its segment. Note that a frame received on +the interface corresponding to this port is only counted +by this object if and only if it is for a protocol being +processed by the local bridging function, including +bridge management frames." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1dTpHCPortEntry 1 } + +dot1dTpHCPortOutFrames OBJECT-TYPE +SYNTAX Counter64 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of frames that have been transmitted by this +port to its segment. Note that a frame transmitted on +the interface corresponding to this port is only counted +by this object if and only if it is for a protocol being +processed by the local bridging function, including +bridge management frames." + +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1dTpHCPortEntry 2 } + +dot1dTpHCPortInDiscards OBJECT-TYPE +SYNTAX Counter64 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"Count of valid frames that have been received by this +port from its segment which were discarded (i.e., +filtered) by the Forwarding Process." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1dTpHCPortEntry 3 } + +-- ---------------------------------------------------- +-- Upper part of High Capacity Port Table for Transparent Bridges +-- ---------------------------------------------------- + +dot1dTpPortOverflowTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1dTpPortOverflowEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table that contains the most-significant bits of +statistics counters for ports that are associated with this +transparent bridge that are on high capacity interfaces, as +defined in the conformance clauses for this table. This table +is provided as a way to read 64-bit counters for agents which +support only SNMPv1. + +Note that the reporting of most-significant and +least-significant counter bits separately runs the risk of +missing an overflow of the lower bits in the interval between +sampling. The manager must be aware of this possibility, even +within the same varbindlist, when interpreting the results of +a request or asynchronous notification." +::= { dot1dTp 6 } + +dot1dTpPortOverflowEntry OBJECT-TYPE +SYNTAX Dot1dTpPortOverflowEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The most significant bits of statistics counters for a high +capacity interface of a transparent bridge. Each object is +associated with a corresponding object in dot1dTpPortTable +which indicates the least significant bits of the counter." +INDEX { dot1dTpPort } +::= { dot1dTpPortOverflowTable 1 } + +Dot1dTpPortOverflowEntry ::= +SEQUENCE { +dot1dTpPortInOverflowFrames +Counter32, +dot1dTpPortOutOverflowFrames +Counter32, +dot1dTpPortInOverflowDiscards +Counter32 +} + +dot1dTpPortInOverflowFrames OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times the associated dot1dTpPortInFrames +counter has overflowed." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1dTpPortOverflowEntry 1 } + +dot1dTpPortOutOverflowFrames OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times the associated dot1dTpPortOutFrames +counter has overflowed." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1dTpPortOverflowEntry 2 } + +dot1dTpPortInOverflowDiscards OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times the associated +dot1dTpPortInDiscards counter has overflowed." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1dTpPortOverflowEntry 3 } + +-- ------------------------------------------------------------- +-- IEEE 802.1p MIB - Conformance Information +-- ------------------------------------------------------------- + +pBridgeConformance OBJECT IDENTIFIER ::= { pBridgeMIB 2 } + +pBridgeGroups OBJECT IDENTIFIER ::= { pBridgeConformance 1 } + +pBridgeCompliances OBJECT IDENTIFIER +::= { pBridgeConformance 2 } + +-- ------------------------------------------------------------- +-- units of conformance +-- ------------------------------------------------------------- + +pBridgeExtCapGroup OBJECT-GROUP +OBJECTS { +dot1dDeviceCapabilities, +dot1dPortCapabilities +} +STATUS current +DESCRIPTION +"A collection of objects indicating the optional +capabilites of the device." +::= { pBridgeGroups 1 } + +pBridgeDeviceGmrpGroup OBJECT-GROUP +OBJECTS { +dot1dGmrpStatus +} +STATUS current +DESCRIPTION +"A collection of objects providing device-level control +for the Multicast Filtering extended bridge services." +::= { pBridgeGroups 2 } + +pBridgeDevicePriorityGroup OBJECT-GROUP +OBJECTS { +dot1dTrafficClassesEnabled +} +STATUS current +DESCRIPTION +"A collection of objects providing device-level control +for the Priority services." +::= { pBridgeGroups 3 } + +pBridgeDefaultPriorityGroup OBJECT-GROUP +OBJECTS { +dot1dPortDefaultUserPriority +} +STATUS current +DESCRIPTION +"A collection of objects defining the User Priority +applicable to each port for media which do not support +native User Priority." +::= { pBridgeGroups 4 } + +pBridgeRegenPriorityGroup OBJECT-GROUP +OBJECTS { +dot1dRegenUserPriority +} +STATUS current +DESCRIPTION +"A collection of objects defining the User Priorities +applicable to each port for media which support native +User Priority." +::= { pBridgeGroups 5 } + +pBridgePriorityGroup OBJECT-GROUP +OBJECTS { +dot1dPortNumTrafficClasses, +dot1dTrafficClass +} +STATUS current +DESCRIPTION +"A collection of objects defining the traffic classes +within a bridge for each evaluated User Priority." +::= { pBridgeGroups 6 } + +pBridgeAccessPriorityGroup OBJECT-GROUP +OBJECTS { +dot1dPortOutboundAccessPriority +} +STATUS current +DESCRIPTION +"A collection of objects defining the media dependent +outbound access level for each priority." +::= { pBridgeGroups 7 } + +pBridgePortGarpGroup OBJECT-GROUP +OBJECTS { +dot1dPortGarpJoinTime, +dot1dPortGarpLeaveTime, +dot1dPortGarpLeaveAllTime +} +STATUS current +DESCRIPTION +"A collection of objects providing port level control +and status information for GARP operation." +::= { pBridgeGroups 8 } + +pBridgePortGmrpGroup OBJECT-GROUP +OBJECTS { +dot1dPortGmrpStatus, +dot1dPortGmrpFailedRegistrations, +dot1dPortGmrpLastPduOrigin +} +STATUS current +DESCRIPTION +"A collection of objects providing port level control +and status information for GMRP operation." +::= { pBridgeGroups 9 } + +pBridgeHCPortGroup OBJECT-GROUP +OBJECTS { +dot1dTpHCPortInFrames, +dot1dTpHCPortOutFrames, +dot1dTpHCPortInDiscards +} +STATUS current +DESCRIPTION +"A collection of objects providing 64-bit statistics +counters for high capacity bridge ports." +::= { pBridgeGroups 10 } + +pBridgePortOverflowGroup OBJECT-GROUP +OBJECTS { +dot1dTpPortInOverflowFrames, +dot1dTpPortOutOverflowFrames, +dot1dTpPortInOverflowDiscards +} +STATUS current +DESCRIPTION +"A collection of objects providing overflow statistics +counters for high capacity bridge ports." +::= { pBridgeGroups 11 } + +-- ------------------------------------------------------------- +-- compliance statements +-- ------------------------------------------------------------- + +pBridgeCompliance MODULE-COMPLIANCE +STATUS current +DESCRIPTION +"The compliance statement for device support of Priority +and Multicast Filtering extended bridging services." + +MODULE +MANDATORY-GROUPS { pBridgeExtCapGroup } + +GROUP pBridgeDeviceGmrpGroup +DESCRIPTION +"This group is mandatory for devices supporting the GMRP +application, defined by IEEE 802.1D Extended Filtering +Services." + +GROUP pBridgeDevicePriorityGroup +DESCRIPTION +"This group is mandatory only for devices supporting +the priority forwarding operations defined by IEEE +802.1D." + +GROUP pBridgeDefaultPriorityGroup +DESCRIPTION +"This group is mandatory only for devices supporting +the priority forwarding operations defined by the +extended bridge services with media types, such as +Ethernet, that do not support native User Priority." + +GROUP pBridgeRegenPriorityGroup +DESCRIPTION +"This group is mandatory only for devices supporting +the priority forwarding operations defined by IEEE 802.1D +and which have interface media types that support +native User Priority e.g. IEEE 802.5." + +GROUP pBridgePriorityGroup +DESCRIPTION +"This group is mandatory only for devices supporting +the priority forwarding operations defined by IEEE 802.1D." + +GROUP pBridgeAccessPriorityGroup +DESCRIPTION +"This group is optional and is relevant only for devices +supporting the priority forwarding operations defined by +IEEE 802.1D and which have interface media types that support +native Access Priority e.g. IEEE 802.5." + +GROUP pBridgePortGarpGroup +DESCRIPTION +"This group is mandatory for devices supporting any +of the GARP applications: e.g. GMRP, defined by the +extended filtering services of 802.1D; or GVRP, +defined by 802.1Q (refer to the Q-BRIDGE-MIB for +conformance statements for GVRP)." + +GROUP pBridgePortGmrpGroup +DESCRIPTION +"This group is mandatory for devices supporting the +GMRP application, as defined by IEEE 802.1D Extended +Filtering Services." + +GROUP pBridgeHCPortGroup +DESCRIPTION +"Support for this group in a device is mandatory for those +bridge ports which map to network interfaces that have the +value of the corresponding instance of ifSpeed +greater than 650,000,000 bits/second." + +GROUP pBridgePortOverflowGroup +DESCRIPTION +"Support for this group in a device is mandatory for those +bridge ports which map to network interfaces that have the +value of the corresponding instance of ifSpeed +greater than 650,000,000 bits/second." + +OBJECT dot1dPortNumTrafficClasses +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required." + +OBJECT dot1dTrafficClass +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required." + +OBJECT dot1dRegenUserPriority +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required." + +::= { pBridgeCompliances 1 } + +END \ No newline at end of file diff --git a/pandora_console/attachment/mibs/PARALLEL-MIB b/pandora_console/attachment/mibs/PARALLEL-MIB new file mode 100644 index 0000000000..592e754461 --- /dev/null +++ b/pandora_console/attachment/mibs/PARALLEL-MIB @@ -0,0 +1,298 @@ +-- Changes to RFC1660 - PARALLEL-MIB +-- Removed unused IMPORT of NOTIFICATION-TYPE +-- dperkins@scruznet.com + + PARALLEL-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Integer32 + FROM SNMPv2-SMI + InterfaceIndex + FROM IF-MIB + transmission + FROM RFC1213-MIB + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + + + para MODULE-IDENTITY + LAST-UPDATED "9405261700Z" + ORGANIZATION "IETF Character MIB Working Group" + CONTACT-INFO + " Bob Stewart + Postal: Xyplex, Inc. + 295 Foster Street + Littleton, MA 01460 + + Tel: 508-952-4816 + Fax: 508-952-4887 + E-mail: rlstewart@eng.xyplex.com" + DESCRIPTION + "The MIB module for Parallel-printer-like hardware devices." + ::= { transmission 34 } + + + -- Generic Parallel-printer-like information + + paraNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ports (regardless of their current + state) in the Parallel-printer-like port table." + ::= { para 1 } + + + -- the Parallel-printer-like Port table + + paraPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParaPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port entries. The number of entries is + given by the value of paraNumber." + ::= { para 2 } + + paraPortEntry OBJECT-TYPE + SYNTAX ParaPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status and parameter values for a port." + INDEX { paraPortIndex } + ::= { paraPortTable 1 } + + ParaPortEntry ::= + SEQUENCE { + paraPortIndex + InterfaceIndex, + paraPortType + INTEGER, + paraPortInSigNumber + Integer32, + paraPortOutSigNumber + Integer32 + } + + paraPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of ifIndex for the port. By convention + and if possible, hardware port numbers map directly + to external connectors. The value for each port must + remain constant at least from one re-initialization + of the network management agent to the next." + ::= { paraPortEntry 1 } + + paraPortType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + centronics(2), + dataproducts(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port's hardware type." + ::= { paraPortEntry 2 } + + paraPortInSigNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input signals for the port in the + input signal table (paraPortInSigTable). The table + contains entries only for those signals the software + can detect and that are useful to observe." + ::= { paraPortEntry 3 } + + paraPortOutSigNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of output signals for the port in the + output signal table (paraPortOutSigTable). The + table contains entries only for those signals the + software can assert and that are useful to observe." + ::= { paraPortEntry 4 } + + + -- Parallel-printer-like Input Signal Table + + paraInSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParaInSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port input control signal entries." + ::= { para 3 } + + paraInSigEntry OBJECT-TYPE + SYNTAX ParaInSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Input control signal status for a hardware port." + INDEX { paraInSigPortIndex, paraInSigName } + ::= { paraInSigTable 1 } + + ParaInSigEntry ::= + SEQUENCE { + paraInSigPortIndex + InterfaceIndex, + paraInSigName + INTEGER, + paraInSigState + INTEGER, + paraInSigChanges + Counter32 + } + + paraInSigPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of paraPortIndex for the port to which + this entry belongs." + ::= { paraInSigEntry 1 } + + paraInSigName OBJECT-TYPE + SYNTAX INTEGER { power(1), online(2), busy(3), + paperout(4), fault(5) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identification of a hardware signal." + ::= { paraInSigEntry 2 } + + paraInSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current signal state." + ::= { paraInSigEntry 3 } + + paraInSigChanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { paraInSigEntry 4 } + + + -- Output Signal Table + + paraOutSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParaOutSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port output control signal entries." + ::= { para 4 } + + paraOutSigEntry OBJECT-TYPE + SYNTAX ParaOutSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Output control signal status for a hardware port." + INDEX { paraOutSigPortIndex, paraOutSigName } + ::= { paraOutSigTable 1 } + + ParaOutSigEntry ::= + SEQUENCE { + paraOutSigPortIndex + InterfaceIndex, + paraOutSigName + INTEGER, + paraOutSigState + INTEGER, + paraOutSigChanges + Counter32 + } + + paraOutSigPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of paraPortIndex for the port to which + this entry belongs." + ::= { paraOutSigEntry 1 } + + paraOutSigName OBJECT-TYPE + SYNTAX INTEGER { power(1), online(2), busy(3), + paperout(4), fault(5) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identification of a hardware signal." + ::= { paraOutSigEntry 2 } + + paraOutSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current signal state." + ::= { paraOutSigEntry 3 } + + paraOutSigChanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { paraOutSigEntry 4 } + + + -- conformance information + + paraConformance OBJECT IDENTIFIER ::= { para 5 } + + paraGroups OBJECT IDENTIFIER ::= { paraConformance 1 } + paraCompliances OBJECT IDENTIFIER ::= { paraConformance 2 } + + + -- compliance statements + + paraCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which have Parallel-printer-like hardware + interfaces." + + MODULE -- this module + MANDATORY-GROUPS { paraGroup } + ::= { paraCompliances 1 } + + + -- units of conformance + + paraGroup OBJECT-GROUP + OBJECTS { paraNumber, paraPortIndex, paraPortType, + paraPortInSigNumber, paraPortOutSigNumber, + paraInSigPortIndex, paraInSigName, + paraInSigState, paraInSigChanges, + paraOutSigPortIndex, paraOutSigName, + paraOutSigState, paraOutSigChanges } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to all Parallel-printer-like interfaces." + ::= { paraGroups 1 } + + END diff --git a/pandora_console/attachment/mibs/PPP-LCP-MIB b/pandora_console/attachment/mibs/PPP-LCP-MIB new file mode 100644 index 0000000000..5bc6fb85fd --- /dev/null +++ b/pandora_console/attachment/mibs/PPP-LCP-MIB @@ -0,0 +1,765 @@ +-- Changes for RFC 1471 (PPP LCP MIB) +-- ** No changes needed ** +-- dperkins@scruznet.com + +PPP-LCP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + ifIndex, transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- PPP MIB + + ppp OBJECT IDENTIFIER ::= { transmission 23 } + + pppLcp OBJECT IDENTIFIER ::= { ppp 1 } + + + -- The individual groups within the PPP-LCP-MIB + + pppLink OBJECT IDENTIFIER ::= { pppLcp 1 } + pppLqr OBJECT IDENTIFIER ::= { pppLcp 2 } + pppTests OBJECT IDENTIFIER ::= { pppLcp 3 } + + -- 4.1. PPP Link Group + + -- + -- The PPP Link Group. Implementation of this + -- group is mandatory for all PPP entities. + -- + + -- The following object reflect the values of the option + -- parameters used in the PPP Link Control Protocol + -- pppLinkStatusLocalMRU + -- pppLinkStatusRemoteMRU + -- pppLinkStatusLocalToPeerACCMap + -- pppLinkStatusPeerToLocalACCMap + -- pppLinkStatusLocalToRemoteProtocolCompression + -- pppLinkStatusRemoteToLocalProtocolCompression + -- pppLinkStatusLocalToRemoteACCompression + -- pppLinkStatusRemoteToLocalACCompression + -- pppLinkStatusTransmitFcsSize + -- pppLinkStatusReceiveFcsSize + -- + -- These values are not available until after the PPP Option + -- negotiation has completed, which is indicated by the link + -- reaching the open state (i.e., ifOperStatus is set to + -- up). + -- + -- Therefore, when ifOperStatus is not up + -- the contents of these objects is undefined. The value + -- returned when accessing the objects is an implementation + -- dependent issue. + + pppLinkStatusTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppLinkStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing PPP-link specific variables + for this PPP implementation." + ::= { pppLink 1 } + + pppLinkStatusEntry OBJECT-TYPE + SYNTAX PppLinkStatusEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Management information about a particular PPP + Link." + INDEX { ifIndex } + ::= { pppLinkStatusTable 1 } + + PppLinkStatusEntry ::= SEQUENCE { + pppLinkStatusPhysicalIndex + INTEGER, + pppLinkStatusBadAddresses + Counter, + pppLinkStatusBadControls + Counter, + pppLinkStatusPacketTooLongs + Counter, + pppLinkStatusBadFCSs + Counter, + pppLinkStatusLocalMRU + INTEGER, + pppLinkStatusRemoteMRU + INTEGER, + pppLinkStatusLocalToPeerACCMap + OCTET STRING, + pppLinkStatusPeerToLocalACCMap + OCTET STRING, + pppLinkStatusLocalToRemoteProtocolCompression + INTEGER, + pppLinkStatusRemoteToLocalProtocolCompression + INTEGER, + pppLinkStatusLocalToRemoteACCompression + INTEGER, + pppLinkStatusRemoteToLocalACCompression + INTEGER, + pppLinkStatusTransmitFcsSize + INTEGER, + pppLinkStatusReceiveFcsSize + INTEGER + } + + pppLinkStatusPhysicalIndex OBJECT-TYPE + SYNTAX INTEGER(0..2147483647) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of ifIndex that identifies the + lower-level interface over which this PPP Link + is operating. This interface would usually be + an HDLC or RS-232 type of interface. If there + is no lower-layer interface element, or there + is no ifEntry for the element, or the element + can not be identified, then the value of this + object is 0. For example, suppose that PPP is + operating over a serial port. This would use + two entries in the ifTable. The PPP could be + running over `interface' number 123 and the + serial port could be running over `interface' + number 987. Therefore, ifSpecific.123 would + contain the OBJECT IDENTIFIER ppp + pppLinkStatusPhysicalIndex.123 would contain + 987, and ifSpecific.987 would contain the + OBJECT IDENTIFIER for the serial-port's media- + specific MIB." + ::= { pppLinkStatusEntry 1 } + + pppLinkStatusBadAddresses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received with an + incorrect Address Field. This counter is a + component of the ifInErrors variable that is + associated with the interface that represents + this PPP Link." + REFERENCE + "Section 3.1, Address Field, of RFC1331." + ::= { pppLinkStatusEntry 2 } + + pppLinkStatusBadControls OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received on this link + with an incorrect Control Field. This counter + is a component of the ifInErrors variable that + is associated with the interface that + represents this PPP Link." + REFERENCE + "Section 3.1, Control Field, of RFC1331." + ::= { pppLinkStatusEntry 3 } + + pppLinkStatusPacketTooLongs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received packets that have been + discarded because their length exceeded the + MRU. This counter is a component of the + ifInErrors variable that is associated with the + interface that represents this PPP Link. NOTE, + packets which are longer than the MRU but which + are successfully received and processed are NOT + included in this count." + ::= { pppLinkStatusEntry 4 } + + pppLinkStatusBadFCSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received packets that have been + discarded due to having an incorrect FCS. This + counter is a component of the ifInErrors + variable that is associated with the interface + that represents this PPP Link." + ::= { pppLinkStatusEntry 5 } + + pppLinkStatusLocalMRU OBJECT-TYPE + SYNTAX INTEGER(1..2147483648) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value of the MRU for the local PPP + Entity. This value is the MRU that the remote + entity is using when sending packets to the + local PPP entity. The value of this object is + meaningful only when the link has reached the + open state (ifOperStatus is up)." + ::= { pppLinkStatusEntry 6 } + + pppLinkStatusRemoteMRU OBJECT-TYPE + SYNTAX INTEGER(1..2147483648) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value of the MRU for the remote + PPP Entity. This value is the MRU that the + local entity is using when sending packets to + the remote PPP entity. The value of this object + is meaningful only when the link has reached + the open state (ifOperStatus is up)." + ::= { pppLinkStatusEntry 7 } + + pppLinkStatusLocalToPeerACCMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value of the ACC Map used for + sending packets from the local PPP entity to + the remote PPP entity. The value of this object + is meaningful only when the link has reached + the open state (ifOperStatus is up)." + ::= { pppLinkStatusEntry 8 } + + pppLinkStatusPeerToLocalACCMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ACC Map used by the remote PPP entity when + transmitting packets to the local PPP entity. + The value of this object is meaningful only + when the link has reached the open state + (ifOperStatus is up)." + ::= { pppLinkStatusEntry 9 } + + pppLinkStatusLocalToRemoteProtocolCompression + OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the local PPP entity will + use Protocol Compression when transmitting + packets to the remote PPP entity. The value of + this object is meaningful only when the link + has reached the open state (ifOperStatus is + up)." + ::= { pppLinkStatusEntry 10 } + + pppLinkStatusRemoteToLocalProtocolCompression + OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the remote PPP entity will + use Protocol Compression when transmitting + packets to the local PPP entity. The value of + this object is meaningful only when the link + has reached the open state (ifOperStatus is + up)." + ::= { pppLinkStatusEntry 11 } + + pppLinkStatusLocalToRemoteACCompression OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the local PPP entity will + use Address and Control Compression when + transmitting packets to the remote PPP entity. + The value of this object is meaningful only + when the link has reached the open state + (ifOperStatus is up)." + ::= { pppLinkStatusEntry 12 } + + pppLinkStatusRemoteToLocalACCompression OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the remote PPP entity will + use Address and Control Compression when + transmitting packets to the local PPP entity. + The value of this object is meaningful only + when the link has reached the open state + (ifOperStatus is up)." + ::= { pppLinkStatusEntry 13 } + + pppLinkStatusTransmitFcsSize OBJECT-TYPE + SYNTAX INTEGER (0..128) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the Frame Check Sequence (FCS) in + bits that the local node will generate when + sending packets to the remote node. The value + of this object is meaningful only when the link + has reached the open state (ifOperStatus is + up)." + ::= { pppLinkStatusEntry 14 } + + pppLinkStatusReceiveFcsSize OBJECT-TYPE + SYNTAX INTEGER (0..128) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the Frame Check Sequence (FCS) in + bits that the remote node will generate when + sending packets to the local node. The value of + this object is meaningful only when the link + has reached the open state (ifOperStatus is + up)." + ::= { pppLinkStatusEntry 15 } + + pppLinkConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppLinkConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing the LCP configuration + parameters for this PPP Link. These variables + represent the initial configuration of the PPP + Link. The actual values of the parameters may + be changed when the link is brought up via the + LCP options negotiation mechanism." + ::= { pppLink 2 } + + pppLinkConfigEntry OBJECT-TYPE + SYNTAX PppLinkConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Configuration information about a particular + PPP Link." + INDEX { ifIndex } + ::= { pppLinkConfigTable 1 } + + PppLinkConfigEntry ::= SEQUENCE { + pppLinkConfigInitialMRU + INTEGER, + pppLinkConfigReceiveACCMap + OCTET STRING, + pppLinkConfigTransmitACCMap + OCTET STRING, + pppLinkConfigMagicNumber + INTEGER, + pppLinkConfigFcsSize + INTEGER + } + + pppLinkConfigInitialMRU OBJECT-TYPE + SYNTAX INTEGER(0..2147483647) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The initial Maximum Receive Unit (MRU) that + the local PPP entity will advertise to the + remote entity. If the value of this variable is + 0 then the local PPP entity will not advertise + any MRU to the remote entity and the default + MRU will be assumed. Changing this object will + have effect when the link is next restarted." + REFERENCE + "Section 7.2, Maximum Receive Unit of RFC1331." + DEFVAL { 1500 } + ::= { pppLinkConfigEntry 1 } + + pppLinkConfigReceiveACCMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Asynchronous-Control-Character-Map (ACC) + that the local PPP entity requires for use on + its receive side. In effect, this is the ACC + Map that is required in order to ensure that + the local modem will successfully receive all + characters. The actual ACC map used on the + receive side of the link will be a combination + of the local node's pppLinkConfigReceiveACCMap + and the remote node's + pppLinkConfigTransmitACCMap. Changing this + object will have effect when the link is next + restarted." + REFERENCE + "Section 7.3, page 4, Async-Control-Character- + Map of RFC1331." + DEFVAL { 'ffffffff'h } + ::= { pppLinkConfigEntry 2 } + + pppLinkConfigTransmitACCMap OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (4)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Asynchronous-Control-Character-Map (ACC) + that the local PPP entity requires for use on + its transmit side. In effect, this is the ACC + Map that is required in order to ensure that + all characters can be successfully transmitted + through the local modem. The actual ACC map + used on the transmit side of the link will be a + combination of the local node's + pppLinkConfigTransmitACCMap and the remote + node's pppLinkConfigReceiveACCMap. Changing + this object will have effect when the link is + next restarted." + REFERENCE + "Section 7.3, page 4, Async-Control-Character- + Map of RFC1331." + DEFVAL { 'ffffffff'h } + ::= { pppLinkConfigEntry 3 } + + pppLinkConfigMagicNumber OBJECT-TYPE + SYNTAX INTEGER {false (1), true (2)} + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If true(2) then the local node will attempt to + perform Magic Number negotiation with the + remote node. If false(1) then this negotiation + is not performed. In any event, the local node + will comply with any magic number negotiations + attempted by the remote node, per the PPP + specification. Changing this object will have + effect when the link is next restarted." + REFERENCE + "Section 7.6, Magic Number, of RFC1331." + DEFVAL { false } + ::= { pppLinkConfigEntry 4 } + + pppLinkConfigFcsSize OBJECT-TYPE + SYNTAX INTEGER (0..128) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The size of the FCS, in bits, the local node + will attempt to negotiate for use with the + remote node. Regardless of the value of this + object, the local node will comply with any FCS + size negotiations initiated by the remote node, + per the PPP specification. Changing this object + will have effect when the link is next + restarted." + DEFVAL { 16 } + ::= { pppLinkConfigEntry 5 } + + -- 4.2. PPP LQR Group + + -- + -- The PPP LQR Group. + -- Implementation of this group is mandatory for all + -- PPP implementations that implement LQR. + -- + + pppLqrTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppLqrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table containing the LQR parameters and + statistics for the local PPP entity." + ::= { pppLqr 1 } + + pppLqrEntry OBJECT-TYPE + SYNTAX PppLqrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "LQR information for a particular PPP link. A + PPP link will have an entry in this table if + and only if LQR Quality Monitoring has been + successfully negotiated for said link." + INDEX { ifIndex } + ::= { pppLqrTable 1 } + + PppLqrEntry ::= SEQUENCE { + pppLqrQuality + INTEGER, + pppLqrInGoodOctets + Counter, + pppLqrLocalPeriod + INTEGER, + pppLqrRemotePeriod + INTEGER, + pppLqrOutLQRs + Counter, + pppLqrInLQRs + Counter + } + + pppLqrQuality OBJECT-TYPE + SYNTAX INTEGER { + good(1), + bad(2), + not-determined(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current quality of the link as declared by + the local PPP entity's Link-Quality Management + modules. No effort is made to define good or + bad, nor the policy used to determine it. The + not-determined value indicates that the entity + does not actually evaluate the link's quality. + This value is used to disambiguate the + `determined to be good' case from the `no + determination made and presumed to be good' + case." + ::= { pppLqrEntry 1 } + + pppLqrInGoodOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LQR InGoodOctets counter for this link." + REFERENCE + "Section 2.2, Counters, of RFC1333." + ::= { pppLqrEntry 2 } + + pppLqrLocalPeriod OBJECT-TYPE + SYNTAX INTEGER(1..2147483648) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LQR reporting period, in hundredths of a + second that is in effect for the local PPP + entity." + REFERENCE + "Section 2.5, Configuration Option Format, of + RFC1333." + ::= { pppLqrEntry 3 } + + pppLqrRemotePeriod OBJECT-TYPE + SYNTAX INTEGER(1..2147483648) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The LQR reporting period, in hundredths of a + second, that is in effect for the remote PPP + entity." + REFERENCE + "Section 2.5, Configuration Option Format, of + RFC1333." + ::= { pppLqrEntry 4 } + + pppLqrOutLQRs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the OutLQRs counter on the local + node for the link identified by ifIndex." + REFERENCE + "Section 2.2, Counters, of RFC1333." + ::= { pppLqrEntry 5 } + + pppLqrInLQRs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the InLQRs counter on the local + node for the link identified by ifIndex." + REFERENCE + "Section 2.2, Counters, of RFC1333." + ::= { pppLqrEntry 6 } + + -- + -- The PPP LQR Configuration table. + -- + + pppLqrConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppLqrConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table containing the LQR Configuration + parameters for the local PPP entity." + ::= { pppLqr 2 } + + pppLqrConfigEntry OBJECT-TYPE + SYNTAX PppLqrConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "LQR configuration information for a particular + PPP link." + INDEX { ifIndex } + ::= { pppLqrConfigTable 1 } + + PppLqrConfigEntry ::= SEQUENCE { + pppLqrConfigPeriod + INTEGER, + pppLqrConfigStatus + INTEGER + } + + pppLqrConfigPeriod OBJECT-TYPE + SYNTAX INTEGER(0..2147483647) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The LQR Reporting Period that the local PPP + entity will attempt to negotiate with the + remote entity, in units of hundredths of a + second. Changing this object will have effect + when the link is next restarted." + REFERENCE + "Section 2.5, Configuration Option Format, of + RFC1333." + DEFVAL { 0 } + ::= { pppLqrConfigEntry 1 } + + pppLqrConfigStatus OBJECT-TYPE + SYNTAX INTEGER {disabled (1), enabled (2)} + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If enabled(2) then the local node will attempt + to perform LQR negotiation with the remote + node. If disabled(1) then this negotiation is + not performed. In any event, the local node + will comply with any magic number negotiations + attempted by the remote node, per the PPP + specification. Changing this object will have + effect when the link is next restarted. + Setting this object to the value disabled(1) + has the effect of invalidating the + corresponding entry in the pppLqrConfigTable + object. It is an implementation-specific matter + as to whether the agent removes an invalidated + entry from the table. Accordingly, management + stations must be prepared to receive tabular + information from agents that corresponds to + entries not currently in use." + REFERENCE + "Section 7.6, Magic Number, of RFC1331." + DEFVAL { enabled } + ::= { pppLqrConfigEntry 2 } + + -- 4.3. PPP LQR Extensions Group + + -- + -- The PPP LQR Extensions Group. + -- Implementation of this group is optional. + -- + -- The intent of this group is to allow external + -- implementation of the policy mechanisms that + -- are used to declare a link to be "bad" or not. + -- + -- It is not practical to examine the MIB objects + -- which are used to generate LQR packets since + -- LQR policies tend to require synchronization of + -- the values of all data used to determine Link + -- Quality; i.e. the values of the relevant counters + -- must all be taken at the same instant in time. + -- + + pppLqrExtnsTable OBJECT-TYPE + SYNTAX SEQUENCE OF PppLqrExtnsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Table containing additional LQR information + for the local PPP entity." + ::= { pppLqr 3 } + + pppLqrExtnsEntry OBJECT-TYPE + SYNTAX PppLqrExtnsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Extended LQR information for a particular PPP + link. Assuming that this group has been + implemented, a PPP link will have an entry in + this table if and only if LQR Quality + Monitoring has been successfully negotiated for + said link." + INDEX { ifIndex } + ::= { pppLqrExtnsTable 1 } + + PppLqrExtnsEntry ::= SEQUENCE { + pppLqrExtnsLastReceivedLqrPacket + OCTET STRING(SIZE(68)) + } + + pppLqrExtnsLastReceivedLqrPacket OBJECT-TYPE + SYNTAX OCTET STRING(SIZE(68)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains the most recently + received LQR packet. The format of the packet + is as described in the LQM Protocol + specificiation. All fields of the packet, + including the `save' fields, are stored in this + object. + + The LQR packet is stored in network byte order. + The LAP-B and PPP headers are not stored in + this object; the first four octets of this + variable contain the Magic-Number field, the + second four octets contain the LastOutLQRs + field and so on. The last four octets of this + object contain the SaveInOctets field of the + LQR packet." + REFERENCE + "Section 2.6, Packet Format, of RFC1333" + ::= { pppLqrExtnsEntry 1 } + + -- 4.4. PPP Tests + + -- The extensions to the interface table in RFC1229 define a + -- table through which the network manager can instruct the + -- managed object to perform various tests of the interface. This + -- is the ifExtnsTestTable. + + -- The PPP MIB defines two such tests. + + -- 4.4.1. PPP Echo Test + + -- The PPP Echo Test is defined as + + pppEchoTest OBJECT IDENTIFIER ::= { pppTests 1 } + + -- Invoking this test causes a PPP Echo Packet to be sent on the + -- line. ifExtnsTestResult returns success(2) if the echo + -- response came back properly. It returns failed(7) if the + -- response did not properly return. The definition of "proper" + -- in this context is left to the discretion of the implementor. + + -- 4.4.2. PPP Discard Test + + -- The PPP Discard Test is defined as + + pppDiscardTest OBJECT IDENTIFIER ::= { pppTests 2 } + + -- Invoking this test causes a PPP Discard Packet to be sent on + -- the line. ifExtnsTestResult returns success(2) if the discard + -- packet was successfully transmitted and failed(7) if an error + -- was detected on transmission. The definition of "transmission + -- error" in this context is left to the discretion of the + -- implementor. + +END diff --git a/pandora_console/attachment/mibs/Printer-MIB b/pandora_console/attachment/mibs/Printer-MIB new file mode 100644 index 0000000000..0759d3484d --- /dev/null +++ b/pandora_console/attachment/mibs/Printer-MIB @@ -0,0 +1,3664 @@ +Printer-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, experimental, Counter32, Integer32, + TimeTicks, NOTIFICATION-TYPE, OBJECT-IDENTITY FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + hrDeviceIndex, hrStorageIndex FROM HOST-RESOURCES-MIB; + +printmib MODULE-IDENTITY + LAST-UPDATED "9411250000Z" + ORGANIZATION "IETF Printer MIB Working Group" + CONTACT-INFO + " Steven Waldbusser + Postal: Carnegie Mellon University + 4910 Forbes Ave + Pittsburgh, PA, 15213 + + Tel: 412-268-6628 + Fax: 412-268-4987 + E-mail: waldbusser@cmu.edu" + DESCRIPTION + "The MIB module for management of printers." + ::= { mib-2 43 } + +-- Textual conventions for this MIB module + +MediaUnit ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Units of measure for media dimensions." + -- This is a type 1 enumeration. + SYNTAX INTEGER { + tenThousandthsOfInches(3), -- .0001 + micrometers(4) + + } + +CapacityUnit ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Units of measure for media capacity." + -- This is a type 1 enumeration. + SYNTAX INTEGER { + tenThousandthsOfInches(3), -- .0001 + micrometers(4), + sheets(8), + feet(16), + meters(17) + } + +SubUnitStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Status of a printer sub-unit. + + The SubUnitStatus is an integer that is the sum of 5 + distinct values, Availability, Non-Critical, Critical, + On-line, and Transitioning. These values are: + + Availability value + + Available and Idle 0 000'b + Available and Standby 2 010'b + Available and Active 4 100'b + Available and Busy 6 110'b + Unavailable and OnRequest 1 001'b + Unavailable because Broken 3 011'b + Unknown 5 101'b + + Non-Critical + + No Non-Critical Alerts 0 + Non-Critical Alerts 8 + + Critical + + No Critical Alerts 0 + Critical Alerts 16 + + On-Line + + Intended state is On-Line 0 + Intended state is Off-Line 32 + + Transitioning + + At intended state 0 + Transitioning to intended state 64 + " + + SYNTAX INTEGER (0..126) + +PresentOnOff ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Presence and configuration of a device or feature." + -- This is a type 1 enumeration. + SYNTAX INTEGER { + other(1), + on(3), + off(4), + notPresent(5) + } + + CodedCharSet ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A coded character set value that specifies both a set of + characters that may be used and an encoding (as one or more + octets) that is used to represent the characters in the + set. These values are to be used to identify the encoding + employed for strings in the MIB where this is not fixed by + the MIB. + + Some objects that allow a choice of coded character set + are: the prtLocalizationCharacterSet object in the + LocalizationTable and prtInterpreterDefaultCharSetIn. + The prtGeneralCurrentLocalization and prtConsoleLocalization + objects in turn contain the index in the LocalizationTable + of the current localization (country, language, and coded + character set) of the `description' objects and the console, + respectively. + + The space of the coded character set enumeration has been + divide into three regions. The first region (3-999) consists + of coded character sets that have been standardized by some + standard setting organization. This region is intended for + standards that do not have subset implementations. The + second region (1000-1999) is for the Unicode and ISO/IEC 10646 + coded character sets together with a specification of a (set + of) sub-repetoires that may occur. The third region (>1999) + is intended for vendor specific coded character sets. + + NOTE: Unicode and ISO 10646 character coded data may be + + processed and stored in either Big Endian (most significant + octet first) or Little Endian (least significant octet + first) order. Intel x86, VAX, and Alpha/AXP architectures are + examples of Little Endian processor architectures. + Furthermore, in environments where either order may occur, + so-called Unicode BYTE ORDER MARK (BOM) character (which is + ISO 10646 ZERO WIDTH NO BREAK SPACE), coded as FEFF in two + octets and 0000FEFF in four octets is used at the beginning + of the data as a signature to indicate the order of the + following data (See ISO 10646 Annex F). Thus either + ordering and BOM may occur in print data streams sent to the + interpreter. However, ISO 8824/8825 (ASN.1/BER) used by + SNMP is quite clear that Big Endian order shall be used and + BOM shall NOT be used in transmission in the protocol. + Transmitting Unicode in Big Endian order in SNMP should + not prove to be a hardship for Little Endian machines, + since SNMP ASN.1/BER requires integers to be transmitted + in Big Endian order as well. So SNMP implementations on + Little Endian machines are already reversing the order of + integers to make them Big Endian for transmission via + SNMP. Also Unicode characters are usually treated as + two-octet integers, not short text strings, so that it will + be straightforward for Little Endian machines to reverse the + order of Unicode character octets as well before + transmitting them and after receiving them via the SNMP + protocol. + + Where a given coded character set may be known by more than + one name, the most commonly known name is used as the name + of the enumeration and other names are shown in the + comments. The comments also indicate where to find detailed + information on the coded character set and briefly + characterize its relationship to other similar coded + character sets. + + The current list of character sets and their enumerated + values used to reference them is contained in the IANA + Character Set registry. The enum value is indicated by + the MIBenum entry in the registry. The enum symbol is + indicated by the Alias that starts with `cs' for character + set. + + The IANA character sets registry is available via + anonymous ftp. + + The ftp server is ftp.isi.edu. + The subdirectory is /in-notes/iana/assignments/. + + The file name is character-sets. + + To add a character set to the IANA Registry: + + 1. Format an entry like those in the current list, + omitting the MIBenum value. + 2. Send the entry with a request to add the entry + to the character set list to iana@ISI.EDU. + 3. The IANA will supply a unique MIBenum value + and update the list." + + -- This is a type 3 enumeration. + + SYNTAX INTEGER { + other(1) -- used if the designated coded + -- character set is not currently in + -- the enumeration + + -- See IANA Registry for standard character sets in the + -- MIBenum range of 3-999. + + -- See IANA Registry for Unicode and vendor-supplied + -- combinations of ISO collections and character sets based + -- on Unicode in the MIBenum range of 1000-1999. + -- See IANA Registry for vendor developed character sets + -- in the MIBenum range of 2000-xxxx. + } + +-- The General Printer Group +-- +-- The general printer sub-unit is responsible for the overall control +-- and status of the printer. There is exactly one general printer +-- sub-unit in a printer. +-- +-- Implementation of every object in this group is mandatory. + +prtGeneral OBJECT IDENTIFIER ::= { printmib 5 } + +prtGeneralTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of general information per printer. + Objects in this table are defined in various + places in the MIB, nearby the groups to + which they apply. They are all defined + + here to minimize the number of tables that would + + otherwise need to exist." + ::= { prtGeneral 1 } + +prtGeneralEntry OBJECT-TYPE + SYNTAX PrtGeneralEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry exists in this table for each + device entry in the hostmib device table who's type + is `printer'" + INDEX { hrDeviceIndex } + ::= { prtGeneralTable 1 } + +PrtGeneralEntry ::= SEQUENCE { + -- Note that not all of the objects in this sequence are in the + -- general printer group. + prtGeneralConfigChanges Counter32, + prtGeneralCurrentLocalization Integer32, + prtGeneralReset INTEGER, + prtGeneralCurrentOperator OCTET STRING, + prtGeneralServicePerson OCTET STRING, + prtInputDefaultIndex Integer32, + prtOutputDefaultIndex Integer32, + prtMarkerDefaultIndex Integer32, + prtMediaPathDefaultIndex Integer32, + prtConsoleLocalization Integer32, + prtConsoleNumberOfDisplayLines Integer32, + prtConsoleNumberOfDisplayChars Integer32, + prtConsoleDisable INTEGER +} + +prtGeneralConfigChanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Counts configuration changes that change the capabilities of + a printer, such as the addition/deletion of input/output bins, + the addition/deletion of interpreters, or changes in media + size. Such changes will often affect the capability of the + printer to service certain types of print jobs. + + Management applications may cache infrequently changed + configuration information about sub-units on the printer. + This object should be incremented whenever the agent wishes + such applications to invalidate that cache and re-download + + all of this configuration information, thereby signalling a + + change in the printer's configuration. + + For example, if an input tray that contained paper of + different dimensions was added, this counter would be + incremented. + + As an additional example, this counter would not be + incremented when an input tray is removed or the level of an + input device changes." + ::= { prtGeneralEntry 1 } + +prtGeneralCurrentLocalization OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of the prtLocalizationIndex corresponding to the + current language, country, and character set to be used for + localized string values that are identified as being dependent + on the value of this object. Note that this object does not + apply to localized strings in the prtConsole group or any + object that is not identified as above." + ::= { prtGeneralEntry 2 } + +prtGeneralReset OBJECT-TYPE + -- This value is a type 3 enumeration + SYNTAX INTEGER { + notResetting(3), + powerCycleReset(4), -- Cold Start + resetToNVRAM(5), -- Warm Start + resetToFactoryDefaults(6) -- Reset contents of + -- NVRAM to factory defaults + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this value to `powerCycleReset', `resetToNVRAM', or + `resetToFactoryDefaults' will result in the resetting of the + printer. When read, this object will always have the value + `notResetting(3)', and a SET of the value `notResetting' shall + have no effect on the printer. Some of the defined values are + optional. However, every implementation must support at least + the values `notResetting' and resetToNVRAM'." + ::= { prtGeneralEntry 3 } + +-- The Cover Table + +-- +-- The cover portion of the General print sub-unit describes the +-- covers and interlocks of the printer. The Cover Table has an +-- entry for each cover and interlock. + +prtCover OBJECT IDENTIFIER ::= { printmib 6 } + +prtCoverTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtCoverEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the covers and interlocks of the printer." + ::= { prtCover 1 } + +prtCoverEntry OBJECT-TYPE + SYNTAX PrtCoverEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Information about a cover or interlock. + Entries may exist in the table for each device + index whose device type is `printer'." + INDEX { hrDeviceIndex, prtCoverIndex } + ::= { prtCoverTable 1 } + +PrtCoverEntry ::= SEQUENCE { + prtCoverIndex Integer32, + prtCoverDescription OCTET STRING, + prtCoverStatus INTEGER +} + +prtCoverIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this Cover + sub-unit. Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new + cover sub-units to the printer), values are expected to + remain stable across successive printer power cycles." + ::= { prtCoverEntry 1 } + +prtCoverDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + + STATUS current + + DESCRIPTION + "The manufacturer provided cover sub-mechanism name in the + localization specified by prtGeneralCurrentLocalization." + ::= { prtCoverEntry 2 } + +prtCoverStatus OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + doorOpen(3), + doorClosed(4), + interlockOpen(5), + interlockClosed(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The status of this cover sub-unit." + ::= { prtCoverEntry 3 } + +-- The Localization Table +-- + +-- The localization portion of the General printer sub-unit is + +-- responsible for identifying the natural language, country, and +-- character set in which character strings are expressed. There +-- may be one or more localizations supported per printer. The +-- available localizations are represented by the Localization table. + +prtLocalization OBJECT IDENTIFIER ::= { printmib 7 } + +prtLocalizationTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtLocalizationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The available localizations in this printer." + ::= { prtLocalization 1 } + +prtLocalizationEntry OBJECT-TYPE + SYNTAX PrtLocalizationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A description of a localization. + + Entries may exist in the table for each device + + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtLocalizationIndex } + ::= { prtLocalizationTable 1 } + +PrtLocalizationEntry ::= SEQUENCE { + prtLocalizationIndex Integer32, + prtLocalizationLanguage OCTET STRING, + prtLocalizationCountry OCTET STRING, + prtLocalizationCharacterSet CodedCharSet +} + +prtLocalizationIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this + localization entry. Although these values may change due to a + major reconfiguration of the device (e.g., the addition of new + Cover sub-units to the printer), values are expected to remain + stable across successive printer power cycles." + ::= { prtLocalizationEntry 1 } + +prtLocalizationLanguage OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A two character language code from ISO 639. Examples EN, GB, + CA, FR, DE." + ::= { prtLocalizationEntry 2 } + +prtLocalizationCountry OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..2)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A two character country code from ISO 3166, a blank string + (two space characters) shall indicate that the country is + not defined. Examples: US, FR, DE, ..." + ::= { prtLocalizationEntry 3 } + +prtLocalizationCharacterSet OBJECT-TYPE + SYNTAX CodedCharSet + MAX-ACCESS read-only + STATUS current + DESCRIPTION + + "The coded character set used for this localization." + + ::= { prtLocalizationEntry 4 } + +-- The System Resources Tables + +-- The Printer MIB makes use of the Host MIB to +-- define system resources by referencing the storage +-- and device groups of the print group. In order to +-- determine, amongst multiple printers serviced by +-- one agent, which printer owns a particular +-- resource, the prtStorageRef and prtDeviceRef tables +-- associate particular storage and device entries to +-- printers. + +prtStorageRefTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtStorageRefEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtGeneral 2 } + +prtStorageRefEntry OBJECT-TYPE + SYNTAX PrtStorageRefEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table will have an entry for each entry in + the host MIB storage table that represents storage associated + with a printer managed by this agent." + INDEX { hrStorageIndex, prtStorageRefSeqNumber } + ::= { prtStorageRefTable 1 } + +PrtStorageRefEntry ::= SEQUENCE { + prtStorageRefSeqNumber Integer32, + prtStorageRefIndex Integer32 +} + +prtStorageRefSeqNumber OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This value will be unique amongst all entries with a common + value of hrStorageIndex. + + This object allows a storage entry to point to the multiple + printer devices with which it is associated." + + ::= { prtStorageRefEntry 1 } + +prtStorageRefIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the hrDeviceIndex of the printer device that this + storageEntry is associated with." + ::= { prtStorageRefEntry 2 } + +prtDeviceRefTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtDeviceRefEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtGeneral 3 } + +prtDeviceRefEntry OBJECT-TYPE + SYNTAX PrtDeviceRefEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table will have an entry for each entry in + the host MIB device table that represents a device associated + with a printer managed by this agent." + INDEX { hrDeviceIndex, prtDeviceRefSeqNumber } + ::= { prtDeviceRefTable 1 } + +PrtDeviceRefEntry ::= SEQUENCE { + prtDeviceRefSeqNumber Integer32, + prtDeviceRefIndex Integer32 +} + +prtDeviceRefSeqNumber OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This value will be unique amongst all entries with a common + value of hrDeviceIndex. + + This object allows a device entry to point to the multiple + printer devices with which it is associated." + ::= { prtDeviceRefEntry 1 } + +prtDeviceRefIndex OBJECT-TYPE + + SYNTAX Integer32 (0..65535) + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of the hrDeviceIndex of the printer device that this + deviceEntry is associated with." + ::= { prtDeviceRefEntry 2 } + +-- The Responsible Party group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtGeneralCurrentOperator OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name of the current human operator responsible for + operating this printer. It is suggested that this string + include information that would enable other humans to reach + the operator, such as a phone number." + ::= { prtGeneralEntry 4 } + +prtGeneralServicePerson OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..127)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name of the last human responsible for servicing + this printer. It is suggested that this string + include information that would enable other humans to reach + the service person, such as a phone number." + ::= { prtGeneralEntry 5 } + +-- The Input Group +-- +-- Input sub-units are managed as a tabular, indexed collection of +-- possible devices capable of providing media for input to the printing +-- process. Input sub-units typically have a location, a type, an +-- identifier, a set of constraints on possible media sizes and +-- potentially other media characteristics, and may be capable of +-- indicating current status or capacity. +-- +-- Implementation of every object in this group is mandatory. + +prtInput OBJECT IDENTIFIER ::= { printmib 8 } + +prtInputDefaultIndex OBJECT-TYPE + + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of prtInputIndex corresponding to the default input + sub-unit: that is, this object selects the default source of + input media." + ::= { prtGeneralEntry 6 } + +prtInputTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtInputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the devices capable of providing media for input + to the printing process." + ::= { prtInput 2 } + +prtInputEntry OBJECT-TYPE + SYNTAX PrtInputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes of a device capable of providing media for input + to the printing process. + + Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtInputIndex } + ::= { prtInputTable 1 } + +PrtInputEntry ::= SEQUENCE { + prtInputIndex Integer32, + prtInputType INTEGER, + prtInputDimUnit MediaUnit, + prtInputMediaDimFeedDirDeclared Integer32, + prtInputMediaDimXFeedDirDeclared Integer32, + prtInputMediaDimFeedDirChosen Integer32, + prtInputMediaDimXFeedDirChosen Integer32, + prtInputCapacityUnit CapacityUnit, + prtInputMaxCapacity Integer32, + prtInputCurrentLevel Integer32, + prtInputStatus SubUnitStatus, + prtInputMediaName OCTET STRING, + prtInputName OCTET STRING, + prtInputVendorName OCTET STRING, + prtInputModel OCTET STRING, + + prtInputVersion OCTET STRING, + + prtInputSerialNumber OCTET STRING, + prtInputDescription OCTET STRING, + prtInputSecurity PresentOnOff, + prtInputMediaWeight Integer32, + prtInputMediaType OCTET STRING, + prtInputMediaColor OCTET STRING, + prtInputMediaFormParts Integer32 +} + +prtInputIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this input + sub-unit. Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new + input sub-units to the printer), values are expected to + remain stable across successive printer power cycles." + ::= { prtInputEntry 1 } + +prtInputType OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + sheetFeedAutoRemovableTray(3), + sheetFeedAutoNonRemovableTray(4), + sheetFeedManual(5), + continuousRoll(6), + continuousFanFold(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of technology (discriminated primarily according to + feeder mechanism type) employed by the input sub-unit. Note, + the Optional Input Class provides for a descriptor field to + further qualify the other choice." + ::= { prtInputEntry 2 } + +prtInputDimUnit OBJECT-TYPE + SYNTAX MediaUnit + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit of measurement for use calculating and relaying + + dimensional values for this input sub-unit." + + ::= { prtInputEntry 3 } + +prtInputMediaDimFeedDirDeclared OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object provides the value of the declared dimension, in + the feed direction, of the media that is (or, if empty, was or + will be) in this input sub-unit. The feed direction is the + direction in which the media is fed on this sub-unit. This + dimension is measured in input sub-unit dimensional units + (prtInputDimUnit). If this input sub-unit can reliably sense + this value, the value is sensed by the printer and may not be + changed by management requests. Otherwise, the value may be + changed. The value (-1) means other and specifically means + that this sub-unit places no restriction on this parameter. + The value (-2) indicates unknown." + ::= { prtInputEntry 4 } + +prtInputMediaDimXFeedDirDeclared OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object provides the value of the declared dimension, in + the cross feed direction, of the media that is (or, if empty, + was or will be) in this input sub-unit. The cross feed + direction is ninety degrees relative to the feed direction + associated with this sub-unit. This dimension is measured in + input sub-unit dimensional units (prtInputDimUnit). If this + input sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed by management + requests. Otherwise, the value may be changed. The value (-1) + means other and specifically means that this sub-unit places + no restriction on this parameter. The value (-2) indicates + unknown." + ::= { prtInputEntry 5 } + +prtInputMediaDimFeedDirChosen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The printer will act as if media of the chosen dimension (in + the feed direction) is present in this input source. Note + that this value will be used even if the input tray is empty. + + Feed dimension measurements + + are taken parallel relative to the feed direction + associated with that sub-unit and are in input sub-unit + dimensional units (DimUnit). If the printer supports the + declared dimension, the granted dimension is the same as + the declared dimension. If not, the granted dimension is + set to the closest dimension that the printer supports + when the declared dimension is set. The value (-1) means + other and specifically indicates that this sub-unit + places no restriction on this parameter. The value (-2) + indicates unknown." + ::= { prtInputEntry 6 } + +prtInputMediaDimXFeedDirChosen OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The printer will act as if media of the chosen dimension (in + the cross feed direction) is present in this input source. + Note that this value will be used even if the input tray is + empty. The cross feed direction is ninety degrees relative + to the feed direction associated with this sub-unit. This + dimension is measured in input sub-unit dimensional units + (DimUnit). If the printer supports the declared + dimension, the granted dimension is the same as the + declared dimension. If not, the granted dimension is set + to the closest dimension that the printer supports when + the declared dimension is set. The value (-1) means other + and specifically indicates that this sub-unit places no + restriction on this parameter. The value (-2) indicates + unknown." + ::= { prtInputEntry 7 } + +prtInputCapacityUnit OBJECT-TYPE + SYNTAX CapacityUnit + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit of measurement for use in calculating and relaying + capacity values for this input sub-unit." + ::= { prtInputEntry 8 } + +prtInputMaxCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + + "The maximum capacity of the input sub-unit in input + + sub-unit capacity units (CapacityUnit). There is no + convention associated with the media itself so this value + reflects claimed capacity. If this input sub-unit can + reliably sense this value, the value is sensed by the + printer and may not be changed by management requests; + otherwise, the value may be written (by a Remote + Contol Panel or a Management Application). + The value (-1) means other and specifically + indicates that the sub-unit places no restrictions + on this parameter. The value (-2) means unknown." + ::= { prtInputEntry 9 } + +prtInputCurrentLevel OBJECT-TYPE + SYNTAX Integer32 -- in capacity units (CapacityUnit). + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current capacity of the input sub-unit in input + sub-unit capacity units (CapacityUnit). If this input + sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed by + management requests; otherwise, the value may + be written (by a Remote Contol Panel or a + Management Application). The value (-1) means other and + specifically indicates that the sub-unit places no + restrictions on this parameter. The value (-2) means unknown. + The value (-3) means that the printer knows that at least one + unit remains." + ::= { prtInputEntry 10 } + +prtInputStatus OBJECT-TYPE + SYNTAX SubUnitStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of this input sub-unit." + ::= { prtInputEntry 11 } + +prtInputMediaName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A description of the media contained in this input sub-unit; + This description is intended for display to a human operator. + This description is not processed by the printer. It is used + to provide information not expressible in terms of the other + + media attributes (e.g. prtInputMediaDimFeedDirChosen, + + prtInputMediaDimXFeedDirChosen, prtInputMediaWeight, + prtInputMediaType). An example would be `legal tender bond + paper'." + ::= { prtInputEntry 12 } + +-- INPUT MEASUREMENT +-- +-- _______ | | +-- ^ | | +-- | | | | +-- | |_ _ _ _ _ _ _ _ _ _ _| _________________ |direction +-- | | | ^ v +-- MaxCapacity | | | +-- | | Sheets left in tray | CurrentLevel +-- | | | | +-- v | | v +-- _______ +_____________________+ _______ + +-- The Extended Input Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtInputName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name assigned to this input sub-unit." + ::= { prtInputEntry 13 } + +prtInputVendorName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor name of this input sub-unit." + ::= { prtInputEntry 14 } + +prtInputModel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The model name of this input sub-unit." + ::= { prtInputEntry 15 } + +prtInputVersion OBJECT-TYPE + + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of this input sub-unit." + ::= { prtInputEntry 16 } + +prtInputSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number assigned to this input sub-unit." + ::= { prtInputEntry 17 } + +prtInputDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A free-form text description of this input + sub-unit in the localization specified by + prtGeneralCurrentLocalization." + ::= { prtInputEntry 18 } + +prtInputSecurity OBJECT-TYPE + SYNTAX PresentOnOff + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates if this input sub-unit has some security + associated with it." + ::= { prtInputEntry 19 } + +-- The Input Media Group +-- +-- The Input Media Group supports identification of media installed +-- or available for use on a printing device. Medium resources are +-- identified by name, and include a collection of characteristic +-- attributes that may further be used for selection and management +-- of them. The Input Media group consists of a set of optional +-- "columns" in the Input Table. In this manner, a minimally +-- conforming implementation may choose to not support reporting +-- of media resources if it cannot do so. +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtInputMediaWeight OBJECT-TYPE + + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The weight of the medium associated with this input + sub-unit in grams / per meter squared. The value (-2) means + unknown." + ::= { prtInputEntry 20 } + +prtInputMediaType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name of the type of medium associated with this input + sub-unit. This name need not be processed by the printer; it + might simply be displayed to an operator. The standardized + string values from ISO 10175 (DPA) and ISO 10180 (SPDL) are: + + stationery Separately cut sheets of an opaque material + transparency Separately cut sheets of a transparent material + envelope Envelopes that can be used for conventional + mailing purposes + envelope-plain Envelopes that are not preprinted and have no + windows + envelope-window Envelopes that have windows for addressing + purposes + continuous-long Continuously connected sheets of an opaque + material connected along the long edge + continuous-short Continuously connected sheets of an opaque + material connected along the short edge + tab-stock Media with tabs + multi-part-form Form medium composed of multiple layers not + pre-attached to one another; each sheet may be + drawn separately from an input source + labels Label stock + multi-layer Form medium composed of multiple layers which + are pre-attached to one another; e.g., for + use with impact printers" + ::= { prtInputEntry 21 } + +prtInputMediaColor OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name of the color of the medium associated with + + this input sub-unit using standardized string values + + from ISO 10175 (DPA) and ISO 10180 (SPDL) which are: + + other + unknown + white + pink + yellow + buff + goldenrod + blue + green + transparent + + Implementors may add additional string values. The naming + conventions in ISO 9070 are recommended in order to avoid + potential name clashes." + ::= { prtInputEntry 22 } + +prtInputMediaFormParts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The number of parts associated with the medium + associated with this input sub-unit if the medium is a + multi-part form. The value (-1) means other and + specifically indicates that the device places no + restrictions on this parameter. The value (-2) means + unknown." + ::= { prtInputEntry 23 } + +-- The Output Group +-- +-- Output sub-units are managed as a tabular, indexed collection of +-- possible devices capable of receiving media delivered from the +-- printing process. Output sub-units typically have a location, +-- a type, an identifier, a set of constraints on possible media +-- sizes and potentially other characteristics, and may be capable +-- of indicating current status or capacity. +-- +-- Implementation of every object in this group is mandatory. + +prtOutput OBJECT IDENTIFIER ::= { printmib 9 } + +prtOutputDefaultIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + + STATUS current + + DESCRIPTION + "The value of prtOutputIndex corresponding to the default + output sub-unit; that is, this object selects the default + output destination." + ::= { prtGeneralEntry 7 } + +prtOutputTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtOutputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the devices capable of receiving media delivered + from the printing process." + ::= { prtOutput 2 } + +prtOutputEntry OBJECT-TYPE + SYNTAX PrtOutputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes of a device capable of receiving media delivered + from the printing process. + + Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtOutputIndex } + ::= { prtOutputTable 1 } + +PrtOutputEntry ::= SEQUENCE { + prtOutputIndex Integer32, + prtOutputType INTEGER, + prtOutputCapacityUnit CapacityUnit, + prtOutputMaxCapacity Integer32, + prtOutputRemainingCapacity Integer32, + prtOutputStatus SubUnitStatus, + prtOutputName OCTET STRING, + prtOutputVendorName OCTET STRING, + prtOutputModel OCTET STRING, + prtOutputVersion OCTET STRING, + prtOutputSerialNumber OCTET STRING, + prtOutputDescription OCTET STRING, + prtOutputSecurity PresentOnOff, + prtOutputDimUnit MediaUnit, + prtOutputMaxDimFeedDir Integer32, + prtOutputMaxDimXFeedDir Integer32, + prtOutputMinDimFeedDir Integer32, + prtOutputMinDimXFeedDir Integer32, + + prtOutputStackingOrder INTEGER, + + prtOutputPageDeliveryOrientation INTEGER, + prtOutputBursting PresentOnOff, + prtOutputDecollating PresentOnOff, + prtOutputPageCollated PresentOnOff, + prtOutputOffsetStacking PresentOnOff +} + +prtOutputIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by this printer to identify this + output sub-unit. Although these values may change due + to a major reconfiguration of the sub-unit (e.g. the + addition of new output devices to the printer), values + are expected to remain stable across successive printer + power cycles." + ::= { prtOutputEntry 1 } + +prtOutputType OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + removableBin(3), + unRemovableBin(4), + continuousRollDevice(5), + mailBox(6), + continuousFanFold(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of technology supported by this output sub-unit." + ::= { prtOutputEntry 2 } + +prtOutputCapacityUnit OBJECT-TYPE + SYNTAX CapacityUnit + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit of measurement for use in calculating and relaying + capacity values for this output sub-unit." + ::= { prtOutputEntry 3 } + +prtOutputMaxCapacity OBJECT-TYPE + + SYNTAX Integer32 + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum capacity of this output sub-unit in output + sub-unit capacity units (CapacityUnit). There is no + convention associated with the media itself so this value + essentially reflects claimed capacity. If this output + sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed by management + requests; otherwise, the value may be written + (by a Remote Contol Panel or a Management Application). + The value (-1) means other and specifically indicates + that the sub-unit places no restrictions on this parameter. + The value (-2) means unknown." + ::= { prtOutputEntry 4 } + +prtOutputRemainingCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The remaining capacity of the possible output sub-unit + capacity in output sub-unit capacity units (CapacityUnit) + of this output sub-unit. If this output sub-unit can + reliably sense this value, the value is sensed by the + printer and may not be modified by management requests; + otherwise, the value may be written (by + a Remote Contol Panel or a Management + Application). The value (-1) means other and + specifically indicates that the sub-unit places no + restrictions on this parameter. The value (-2) means + unknown. The value (-3) means that the printer knows that + there remains capacity for at least one unit." + ::= { prtOutputEntry 5 } + +prtOutputStatus OBJECT-TYPE + SYNTAX SubUnitStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of this output sub-unit." + ::= { prtOutputEntry 6 } + +-- OUTPUT MEASUREMENT + +-- +-- _______ | | _______ +-- ^ | | ^ +-- | | | | +-- | | | RemainingCapacity +-- MaxCapacity | | | +-- | | | v ^ +-- | |_ _ _ _ _ _ _ _ _ _ _| ___________________ |direction +-- | | | | +-- | | Sheets in output | +-- v | | +-- _______ +_____________________+ + +-- The Extended Output Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtOutputName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The name assigned to this output sub-unit." + ::= { prtOutputEntry 7 } + +prtOutputVendorName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor name of this output sub-unit." + ::= { prtOutputEntry 8 } + +prtOutputModel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name assigned to this output sub-unit." + ::= { prtOutputEntry 9 } + +prtOutputVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + + "The version of this output sub-unit." + + ::= { prtOutputEntry 10 } + +prtOutputSerialNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number assigned to this output sub-unit." + ::= { prtOutputEntry 11 } + +prtOutputDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " A free-form text description of this output sub-unit in the + localization specified by prtGeneralCurrentLocalization." + ::= { prtOutputEntry 12 } + +prtOutputSecurity OBJECT-TYPE + SYNTAX PresentOnOff + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates if this output sub-unit has some security associated + with it and if that security is enabled or not." + ::= { prtOutputEntry 13 } + +-- The Output Dimensions Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtOutputDimUnit OBJECT-TYPE + SYNTAX MediaUnit + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit of measurement for use in calculating and relaying + dimensional values for this output sub-unit." + ::= { prtOutputEntry 14 } + +prtOutputMaxDimFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + + "The maximum dimensions supported by this output sub-unit + + for measurements taken parallel relative to the feed + direction associated with that sub-unit in output + sub-unit dimensional units (DimUnit). If this output + sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed with + management protocol operations." + ::= { prtOutputEntry 15 } + +prtOutputMaxDimXFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum dimensions supported by this output sub-unit + for measurements taken ninety degrees relative to the + feed direction associated with that sub-unit in output + sub-unit dimensional units (DimUnit). If this output + sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed with + management protocol operations." + ::= { prtOutputEntry 16 } + +prtOutputMinDimFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum dimensions supported by this output sub-unit + for measurements taken parallel relative to the feed + direction associated with that sub-unit in output + sub-unit dimensional units (DimUnit). If this output + sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed with + management protocol operations." + ::= { prtOutputEntry 17 } + +prtOutputMinDimXFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum dimensions supported by this output sub-unit + for measurements taken ninety degrees relative to the + feed direction associated with that sub-unit in output + sub-unit dimensional units (DimUnit). If this output + sub-unit can reliably sense this value, the value is + sensed by the printer and may not be changed with + + management protocol operations." + + ::= { prtOutputEntry 18 } + +-- The Output Features Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtOutputStackingOrder OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + unknown(2), + firstToLast(3), + lastToFirst(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current state of the stacking order for the + associated output sub-unit. `FirstToLast' means + that as pages are output the front of the next page is + placed against the back of the previous page. + `LasttoFirst' means that as pages are output the back + of the next page is placed against the front of the + previous page." + ::= { prtOutputEntry 19 } + +prtOutputPageDeliveryOrientation OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + faceUp(3), + faceDown(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The reading surface that will be `up' when pages are + delivered to the associated output sub-unit. Values are + Face-Up and Face-Down. (Note: interpretation of these + values is in general context-dependent based on locale; + presentation of these values to an end-user should be + normalized to the expectations of the user)." + ::= { prtOutputEntry 20 } + +prtOutputBursting OBJECT-TYPE + SYNTAX PresentOnOff + MAX-ACCESS read-write + STATUS current + + DESCRIPTION + + "This object indicates that the outputing sub-unit + supports bursting, and if so, whether the feature is enabled. + Bursting is the process by which continuous media is separated + into individual sheets, typically by bursting along pre-formed + perforations." + ::= { prtOutputEntry 21 } + +prtOutputDecollating OBJECT-TYPE + SYNTAX PresentOnOff + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the output supports + supports decollating, and if so, whether the feature + is enabled. Decollating is the process by which the + individual parts within a multi-part form are separated + and sorted into separate stacks for each part." + ::= { prtOutputEntry 22 } + +prtOutputPageCollated OBJECT-TYPE + SYNTAX PresentOnOff + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the output sub-unit + supports page collation, and if so, whether the feature is + enabled." + ::= { prtOutputEntry 23 } + +prtOutputOffsetStacking OBJECT-TYPE + SYNTAX PresentOnOff + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object indicates that the output supports + supports offset stacking, and if so, whether the feature is + enabled." + ::= { prtOutputEntry 24 } + +-- The Marker Group +-- +-- A marker is the mechanism that produces marks on the print media. The +-- marker sub-units and their associated supplies are represented by the +-- Marker Group in the model. A printer can contain one or more marking +-- mechanisms. Some examples of multiple marker sub-units are: a printer +-- with separate markers for normal and magnetic ink or an imagesetter +-- that can output to both a proofing device and final film. Each marking + +-- device can have its own set of characteristics associated with it, + +-- such as marking technology and resolution. +-- +-- Implementation of every object in this group is mandatory. + +prtMarker OBJECT IDENTIFIER ::= { printmib 10 } + +prtMarkerDefaultIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of prtMarkerIndex corresponding to the + default markersub-unit; that is, this object selects the + default marker." + ::= { prtGeneralEntry 8 } + +-- The printable area margins as listed below define an area of the print +-- media which is guaranteed to be printable for all combinations of +-- input, media paths, and interpreters for this marker. + +prtMarkerTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtMarkerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtMarker 2 } + +prtMarkerEntry OBJECT-TYPE + SYNTAX PrtMarkerEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtMarkerIndex } + ::= { prtMarkerTable 1 } + +PrtMarkerEntry ::= SEQUENCE { + prtMarkerIndex Integer32, + prtMarkerMarkTech INTEGER, + prtMarkerCounterUnit INTEGER, + prtMarkerLifeCount Counter32, + prtMarkerPowerOnCount Counter32, + prtMarkerProcessColorants Integer32, + prtMarkerSpotColorants Integer32, + + prtMarkerAddressabilityUnit INTEGER, + + prtMarkerAddressabilityFeedDir Integer32, + prtMarkerAddressabilityXFeedDir Integer32, + prtMarkerNorthMargin Integer32, + prtMarkerSouthMargin Integer32, + prtMarkerWestMargin Integer32, + prtMarkerEastMargin Integer32, + prtMarkerStatus SubUnitStatus +} + +prtMarkerIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this marking + SubUnitStatus. Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new marking + sub-units to the printer), values are expected to remain + stable across successive printer power cycles." + ::= { prtMarkerEntry 1 } + +prtMarkerMarkTech OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + electrophotographicLED(3), + electrophotographicLaser(4), + electrophotographicOther(5), + impactMovingHeadDotMatrix9pin(6), + impactMovingHeadDotMatrix24pin(7), + impactMovingHeadDotMatrixOther(8), + impactMovingHeadFullyFormed(9), + impactBand(10), + impactOther(11), + inkjetAqueous(12), + inkjetSolid(13), + inkjetOther(14), + pen(15), + thermalTransfer(16), + thermalSensitive(17), + thermalDiffusion(18), + thermalOther(19), + electroerosion(20), + electrostatic(21), + photographicMicrofiche(22), + + photographicImagesetter(23), + + photographicOther(24), + ionDeposition(25), + eBeam(26), + typesetter(27) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of marking technology used for this marking sub-unit." + ::= { prtMarkerEntry 2 } + +prtMarkerCounterUnit OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + tenThousandthsOfInches(3), -- .0001 + micrometers(4), + characters(5), + lines(6), + impressions(7), + sheets(8), + dotRow(9), + hours(11), + feet(16), + meters(17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit that will be used by the printer when reporting + counter values for this marking sub-unit. The + time units of measure are provided for a device like a + strip recorder that does not or cannot track the physical + dimensions of the media and does not use characters, + lines or sheets." + ::= { prtMarkerEntry 3} + +prtMarkerLifeCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of the number of units of measure counted during + the life of printer using units of measure as specified by + CounterUnit." + ::= { prtMarkerEntry 4 } + +prtMarkerPowerOnCount OBJECT-TYPE + + SYNTAX Counter32 + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The count of the number of units of measure counted since the + equipment was most recently powered on using units of measure as + specified by CounterUnit." + ::= { prtMarkerEntry 5 } + +prtMarkerProcessColorants OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of process colors supported by this marker. A + process color of 1 implies monochrome. The value of this + object and SpotColorants cannot both be 0. Must be 0 or + greater." + ::= { prtMarkerEntry 6 } + +prtMarkerSpotColorants OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of spot colors supported by this marker. The + value of this object and ProcessColorants cannot + both be 0. Must be 0 or greater." + ::= { prtMarkerEntry 7 } + +prtMarkerAddressabilityUnit OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + tenThousandthsOfInches(3), -- .0001 + micrometers(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The unit of measure of distances." + ::= { prtMarkerEntry 8 } + +prtMarkerAddressabilityFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of addressable marking positions in the feed + + direction per 10000 units of measure specified by + + AddressabilityUnit. A value of (-1) implies 'other' or + 'infinite' while a value of (-2) implies 'unknown'." + ::= { prtMarkerEntry 9 } + +prtMarkerAddressabilityXFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of addressable marking positions in the cross + feed direction in 10000 units of measure specified by + AddressabilityUnit. A value of (-1) implies 'other' or + 'infinite' while a value of (-2) implies 'unknown'." + ::= { prtMarkerEntry 10 } + +prtMarkerNorthMargin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The margin, in units identified by AddressabilityUnit, + from the leading edge of the medium as the medium flows + throught the marking engine with the side to be imaged + facing the observer. The leading edge is the North edge + and the other edges are defined by the normal compass + layout of directions with the compass facing the + observer. Printing within the area bounded by all four + margins is guaranteed for all interpreters. The value + (-2) means unknown." + ::= { prtMarkerEntry 11 } + +prtMarkerSouthMargin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The margin from the South edge (see NorthMargin) + of the medium in units identified by + AddressabilityUnit. Printing within the area bounded by + all four margins is guaranteed for all interpreters. + The value (-2) means unknown." + ::= { prtMarkerEntry 12 } + +prtMarkerWestMargin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + + DESCRIPTION + + "The margin from the West edge (see NorthMargin) of the + medium in units identified by AddressabilityUnit. + Printing within the area bouned by all four margins is + guaranteed for all interpreters. The value (-2) means + unknown." + ::= { prtMarkerEntry 13 } + +prtMarkerEastMargin OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The margin from the East edge (see NorthMargin) of the + medium in units identified by AddressabilityUnit. + Printing within the area bounded by all four margins is + guaranteed for all interpreters. The value (-2) means + unknown." + ::= { prtMarkerEntry 14 } + +prtMarkerStatus OBJECT-TYPE + SYNTAX SubUnitStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of this marker sub-unit." + ::= { prtMarkerEntry 15 } + +-- The Marker Supplies Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtMarkerSupplies OBJECT IDENTIFIER ::= { printmib 11 } + +prtMarkerSuppliesTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtMarkerSuppliesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of the marker supplies available on this printer." + ::= { prtMarkerSupplies 1 } + +prtMarkerSuppliesEntry OBJECT-TYPE + SYNTAX PrtMarkerSuppliesEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + + "Attributes of a marker supply. + + Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtMarkerSuppliesIndex } + ::= { prtMarkerSuppliesTable 1 } + +PrtMarkerSuppliesEntry ::= SEQUENCE { + prtMarkerSuppliesIndex Integer32, + prtMarkerSuppliesMarkerIndex Integer32, + prtMarkerSuppliesColorantIndex Integer32, + prtMarkerSuppliesClass INTEGER, + prtMarkerSuppliesType INTEGER, + prtMarkerSuppliesDescription OCTET STRING, + prtMarkerSuppliesSupplyUnit INTEGER, + prtMarkerSuppliesMaxCapacity Integer32, + prtMarkerSuppliesLevel Integer32 +} + +prtMarkerSuppliesIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this marker + supply. Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new marker + supplies to the printer), values are expected to remain stable + across successive printer power cycles." + ::= { prtMarkerSuppliesEntry 1 } + +prtMarkerSuppliesMarkerIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of prtMarkerIndex corresponding to the + marking sub-unit with which this marker supply + sub-unit is associated." + ::= { prtMarkerSuppliesEntry 2 } + +prtMarkerSuppliesColorantIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of prtMarkerColorantIndex + + corresponding to the colorant with which this + + marker supply sub-unit is associated. This value + shall be 0 if there is no colorant table." + ::= { prtMarkerSuppliesEntry 3 } + +prtMarkerSuppliesClass OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + other(1), + supplyThatIsConsumed(3), + receptacleThatIsFilled(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Indicates whether this supply entity represents a supply + container that is consumed or a receptacle that is filled." + ::= { prtMarkerSuppliesEntry 4 } + +prtMarkerSuppliesType OBJECT-TYPE + -- This value is a type 3 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + toner(3), + wasteToner(4), + ink(5), + inkCartridge(6), + inkRibbon(7), + wasteInk(8), + opc(9), + developer(10), + fuserOil(11), + solidWax(12), + ribbonWax(13), + wasteWax(14) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of this supply." + ::= { prtMarkerSuppliesEntry 5 } + +prtMarkerSuppliesDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + + "The description of this supply container/receptacle in the + + localization specified by prtGeneralCurrentLocalization." + ::= { prtMarkerSuppliesEntry 6 } + +prtMarkerSuppliesSupplyUnit OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + tenThousandthsOfInches(3), -- .0001 + micrometers(4), + thousandthsOfOunces(12), + tenthsOfGrams(13), + hundrethsOfFluidOunces(14), + tenthsOfMilliliters(15) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Unit of this marker supply container/receptacle." + ::= { prtMarkerSuppliesEntry 7 } + +prtMarkerSuppliesMaxCapacity OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum capacity of this supply container/receptacle + expressed in SupplyUnit. If this supply + container/receptacle can reliably sense this value, the + value is sensed by the printer and is read-only; + otherwise, the value may be written (by a Remote Contol + Panel or a Management Application). The value (-1) means + other and specifically indicates that the sub-unit places + no restrictions on this parameter. The value (-2) means + unknown." + ::= { prtMarkerSuppliesEntry 8 } + +prtMarkerSuppliesLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current level if this supply is a container; the + remaining space if this supply is a receptacle. If this + supply container/receptacle can reliably sense this + value, the value is sensed by the printer and is + read-only; otherwise, the value may be written (by a + Remote Contol Panel or a Management Application). The + value (-1) means other and specifically indicates that + + the sub-unit places no restrictions on this parameter. + + The value (-2) means unknown. A value of (-3) means that the + printer knows that there is some supply/remaining space, + respectively." + ::= { prtMarkerSuppliesEntry 9 } + +-- The Marker Colorant Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtMarkerColorant OBJECT IDENTIFIER ::= { printmib 12 } + +prtMarkerColorantTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtMarkerColorantEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table of all of the colorants available on the printer." + ::= { prtMarkerColorant 1 } + +prtMarkerColorantEntry OBJECT-TYPE + SYNTAX PrtMarkerColorantEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Attributes of a colorant available on the printer. + + Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtMarkerColorantIndex } + ::= { prtMarkerColorantTable 1 } + +PrtMarkerColorantEntry ::= SEQUENCE { + prtMarkerColorantIndex Integer32, + prtMarkerColorantMarkerIndex Integer32, + prtMarkerColorantRole INTEGER, + prtMarkerColorantValue OCTET STRING, + prtMarkerColorantTonality Integer32 +} + +prtMarkerColorantIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this colorant. + Although these values may change due to a major + + reconfiguration of the device (e.g. the addition of new + + colorants to the printer), values are expected to remain + stable across successive printer power cycles." + ::= { prtMarkerColorantEntry 1 } + +prtMarkerColorantMarkerIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of prtMarkerIndex corresponding to the + marker sub-unit with which this colorant entry is + associated." + ::= { prtMarkerColorantEntry 2 } + +prtMarkerColorantRole OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { -- Colorant Role + other(1), + process(3), + spot(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The role played by this colorant." + ::= { prtMarkerColorantEntry 3 } + +prtMarkerColorantValue OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the color of this The name of the color of this + colorant using standardized string names from ISO 10175 (DPA) + and ISO 10180 (SPDL) which are: + other + unknown + white + red + green + blue + cyan + magenta + yellow + black + Implementors may add additional string values. The naming + conventions in ISO 9070 are recommended in order to avoid + + potential name clashes" + + ::= { prtMarkerColorantEntry 4 } + +prtMarkerColorantTonality OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The distinct levels of tonality realizable by a marking + sub-unit when using this colorant. This value does not + include the number of levels of tonal difference that an + interpreter can obtain by techniques such as half toning. + This value must be at least 2." + ::= { prtMarkerColorantEntry 5 } + +-- The Media Path Group +-- +-- The media paths encompass the mechanisms in the printer that move the +-- media through the printer and connect all other media related sub- +-- units: inputs, outputs, markers and finishers. A printer contains one +-- or more media paths. These are represented by the Media Path Group in +-- the model. The Media Path group has some attributes that apply to all +-- paths plus a table of the separate media paths. + +prtMediaPath OBJECT IDENTIFIER ::= { printmib 13 } + +prtMediaPathDefaultIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of prtMediaPathIndex corresponding to + the default media path; that is, the selection of the + default media path." + ::= { prtGeneralEntry 9 } + +prtMediaPathTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtMediaPathEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtMediaPath 4 } + +prtMediaPathEntry OBJECT-TYPE + SYNTAX PrtMediaPathEntry + MAX-ACCESS not-accessible + STATUS current + + DESCRIPTION + + "Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtMediaPathIndex } + ::= { prtMediaPathTable 1 } + +PrtMediaPathEntry ::= SEQUENCE { + prtMediaPathIndex Integer32, + prtMediaPathMaxSpeedPrintUnit INTEGER, + prtMediaPathMediaSizeUnit MediaUnit, + prtMediaPathMaxSpeed Integer32, + prtMediaPathMaxMediaFeedDir Integer32, + prtMediaPathMaxMediaXFeedDir Integer32, + prtMediaPathMinMediaFeedDir Integer32, + prtMediaPathMinMediaXFeedDir Integer32, + prtMediaPathType INTEGER, + prtMediaPathDescription OCTET STRING, + prtMediaPathStatus SubUnitStatus +} + +prtMediaPathIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this media + path. Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new + media paths to the printer), values are expected to remain + stable across successive printer power + cycles." + ::= { prtMediaPathEntry 1 } + +prtMediaPathMaxSpeedPrintUnit OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + tenThousandthsOfInchesPerHour(3), -- .0001/hour + micrometersPerHour(4), + charactersPerHour(5), + linesPerHour(6), + impressionsPerHour(7), + sheetsPerHour(8), + dotRowPerHour(9), + feetPerHour(16), + metersPerHour(17) + } + MAX-ACCESS read-only + + STATUS current + + DESCRIPTION + "The unit of measure used in specifying the speed of all media + paths in the printer." + ::= { prtMediaPathEntry 2 } + +prtMediaPathMediaSizeUnit OBJECT-TYPE + SYNTAX MediaUnit + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The units of measure of media size for use in calculating and + relaying dimensional values for all media paths in the printer." + ::= { prtMediaPathEntry 3 } + +prtMediaPathMaxSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum printing speed of this media path expressed in + prtMediaPathMaxSpeedUnit's. A value of (-1) implies + 'other'." + ::= { prtMediaPathEntry 4 } + +prtMediaPathMaxMediaFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum physical media size in the feed direction of this + media path expressed in units of measure specified by + MediaSizeUnit. A value of (-1) implies 'unlimited'. A value + of (-2) implies 'unknown'" + ::= { prtMediaPathEntry 5 } + +prtMediaPathMaxMediaXFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum physical media size across the feed direction of + this media path expressed in units of measure specified by + MediaSizeUnit. A value of (-2) implies 'unknown'." + ::= { prtMediaPathEntry 6 } + +prtMediaPathMinMediaFeedDir OBJECT-TYPE + SYNTAX Integer32 + + MAX-ACCESS read-only + + STATUS current + DESCRIPTION + "The minimum physical media size in the feed direction of this + media path expressed in units of measure specified by + MediaSizeUnit. A value of (-2) implies 'unknown'." + ::= { prtMediaPathEntry 7 } + +prtMediaPathMinMediaXFeedDir OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The minimum physical media size across the feed direction of + this media path expressed in units of measure specified by + MediaSizeUnit. A value of (-2) implies 'unknown'." + ::= { prtMediaPathEntry 8 } + +prtMediaPathType OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + longEdgeBindingDuplex(3), + shortEdgeBindingDuplex(4), + simplex(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of the media path for this media path." + ::= { prtMediaPathEntry 9 } + +prtMediaPathDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The manufacturer-provided description of this media path in + the localization specified by prtGeneralCurrentLocalization." + ::= { prtMediaPathEntry 10 } + +prtMediaPathStatus OBJECT-TYPE + SYNTAX SubUnitStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of this media path." + + ::= { prtMediaPathEntry 11 } + +-- The Channel Group +-- +-- Implementation of every object in this group is mandatory. + +-- Channels are independent sources of print data. Here, +-- print data is the term used for the information that is +-- used to construct printed pages and may have both data +-- and control aspects. The output of a channel is in a form +-- suitable for input to one of the interpreters as a +-- stream. A channel may be independently enabled (allowing +-- print data to flow) or disabled (stopping the flow of +-- print data). A printer may have one or more channels. +-- +-- Basically, the channel abstraction is intended to cover +-- all the aspects of getting the print data to an +-- interpreter. This might include transporting the data +-- from one place to another, it might include (invisible) +-- compression, it might include encoding or packetizing to +-- provide multiple information sources over a single +-- physical interface and it might include filtering +-- characters that were destined for another kind of +-- channel. All of these aspects are hidden in the channel +-- abstraction.(Note some Page Description Languages have +-- compression built into them so "invisible" compression +-- refers to compression done by the transport medium and +-- removed before the data is presented to the interpreter.) +-- +-- There are many kinds of channels;some of which are based +-- on networks and others which are not. For example, a +-- channel can be a serial (or parallel) connection; it can +-- be a service, such as the Unix Line Printer Daemon (LPD), +-- offering itself over a network connection (interface); or +-- it could be a disk drive into which a floppy disks with +-- the print data is inserted. Each channel is typically +-- identified by the electronic path and/or service protocol +-- used to deliver print data to the printer. +-- +-- Channel example Implementation +-- +-- serial port channel bi-directional data channel +-- parallel port channel often uni-directional channel +-- IEEE 1284 port channel bi-directional channel +-- SCSI port channel bi-directional +-- Apple PAP channel may be based on Local-, Ether-or +-- TokenTalk +-- LPD Server channel typically TCP/IP based, port 515 + +-- Novell Remote Printer typically SPX/IPX based channel + +-- Novell Print Server typically SPX/IPX based channel +-- port 9100 channel HP and friends +-- Adobe AppSocket(9101) channel a bi-directional extension of LPD +-- +-- It is easy to note that this is a mixed bag. There are +-- some physical connections over which no (or very meager) +-- protocols are run (e.g. the serial or old parallel ports) +-- and there are services which often have elaborate +-- protocols that run over a number of protocol stacks. In +-- the end what is important is the delivery of print data +-- thru the channel. +-- +-- The channel sub-units are represented by the Channel +-- Group in the Model. It has a current Control Language +-- which can be used to specify which interpreter is to be +-- used for the print data and to query and change +-- environment variables used by the interpreters (and +-- Mangement Applications). There is also a default +-- interpreter that is to be used if an interpreter is not +-- explicitly specified using the Control Language. Channel +-- sub-units are based on an underlying interface. + +-- The channel table and its underlying structure +-- +-- The first seven items in the Channel Table define the +-- "channel" itself. A channel typically depends on other +-- protocols and interfaces to provide the data that flows +-- thru the channel. It is necessary to provide control of +-- the (perhaps complex) process by which print data arrives +-- at an interpreter. Control is largely limited to enabling +-- or disabling the whole channel. It is likely, however, +-- that more control of the process of accessing print data +-- will be needed over time. Thus, the ChannelType will +-- allow type specific data to be associated with each +-- channel (using ChannelType specific groups in a fashion +-- analogous to the media specific MIBs that are associated +-- with the IANAIfType in the Interfaces Table). As a first +-- step in this direction, each channel will identify the +-- underlying Interface on which it is based. This is the +-- eighth object in each row of the table. + +-- Some examples of the kind of control are where +-- compression or encoding is used; and whether the data is +-- filtered to remove file storage anomolies such as those +-- created by using MS-DOS/PC-DOS LPT1:. +-- + +-- The Channel Table + +-- +-- The prtChannelTable represents the set of input data sources which +-- can provide print data to one or more of the interpreters +-- available on a printer + +prtChannel OBJECT IDENTIFIER ::= { printmib 14 } + +prtChannelTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtChannelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtChannel 1 } + +prtChannelEntry OBJECT-TYPE + SYNTAX PrtChannelEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtChannelIndex } + ::= { prtChannelTable 1 } + +PrtChannelEntry ::= SEQUENCE { + prtChannelIndex Integer32, + prtChannelType INTEGER, + prtChannelProtocolVersion OCTET STRING, + prtChannelCurrentJobCntlLangIndex Integer32, + prtChannelDefaultPageDescLangIndex Integer32, + prtChannelState INTEGER, + prtChannelIfIndex Integer32, + prtChannelStatus SubUnitStatus +} + +prtChannelIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this data + channel. Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new data + channels to the printer), values are expected to remain + stable across successive printer power cycles." + + ::= { prtChannelEntry 1 } + +prtChannelType OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + chSerialPort(3), + chParallelPort(4), + chIEEE1284Port(5), + chSCSIPort(6), + chAppleTalkPAP(7), -- AppleTalk Printer Achess Protocol + chLPDServer(8), + chNetwareRPrinter(9), -- Netware + chNetwarePServer(10), -- Netware + chPort9100(11), + chAppSocket(12), -- a bi-directional, LPD-like + -- protocol using 9101 for + -- control and 9100 for data. + -- Adobe Systems, Inc. + chFTP(13), -- FTP "PUT" to printer + chTFTP(14), + chDLCLLCPort(15), + chIBM3270(16), + chIBM5250(17), + chFax(18), + chIEEE1394(19), + chTransport1(20), -- port 35 + chCPAP(21), -- port 170 + chDCERemoteProcCall(22), -- OSF + chONCRemoteProcCall(23), -- Sun Microsystems + chOLE(24), -- Microsoft + chNamedPipe(25), + chPCPrint(26), -- Banyan + chServerMessageBlock(27), + -- File/Print sharing protocol used by + -- various network operating systems + -- from IBM 3Com, Microsoft and others + chDPMF(28), -- Distributed Print Mgt. Framework, IBM + chDLLAPI(29), -- Microsoft + chVxDAPI(30), -- Microsoft + chSystemObjectManager(31), -- IBM + chDECLAT(32), -- Digital Equipment Corp. + chNPAP(33) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of this print data channel. This + + object provides the linkage to ChannelType-specific + + groups that may (conceptually) extend the prtChannelTable + with additional details about that channel." + ::= { prtChannelEntry 2 } + +prtChannelProtocolVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The version of the protocol used on this + channel. The format used for version numbering depends + on prtChannelType." + ::= { prtChannelEntry 3 } + +prtChannelCurrentJobCntlLangIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of prtInterpreterIndex corresponding to the + Control Language Interpreter for this channel. This + interpreter defines the syntax used for control + functions, such as querying or changing environment + variables and identifying job boundaries (e.g. PJL, + PostScript, NPAP). Must be 1 or greater." + ::= { prtChannelEntry 4 } + +prtChannelDefaultPageDescLangIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of prtInterpreterIndex corresponding to the + Page Description Language Interpreter for this channel. + This interpreter defines the default Page Description + Language interpreter to be used for the print data unless + the Control Language is used to select a specific + interpreter (e.g., PCL, PostScript Language, + auto-sense). Must be 1 or greater." + ::= { prtChannelEntry 5 } + +prtChannelState OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + other(1), + printDataAccepted(3), + noDataAccepted(4) + + } + + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The state of this print data channel. The value determines + whether control information and print data is allowed through + this channel or not." + ::= { prtChannelEntry 6 } + +prtChannelIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of ifIndex (in the ifTable; see the interface + section of MIB-2/RFC 1213) which corresponds to this channel. + When more than one row of the ifTable is relevant, this is + the index of the row representing the topmost layer in the + interface hierarchy. A value of zero indicates that no + interface is associated with this channel." + ::= { prtChannelEntry 7 } + +prtChannelStatus OBJECT-TYPE + SYNTAX SubUnitStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current status of the channel." + ::= { prtChannelEntry 8 } + +-- The Interpreter Group +-- +-- The interpreter sub-units are responsible for the conversion of a +-- description of intended print instances into images that are to be +-- marked on the media. A printer may have one or more interpreters. The +-- interpreter sub-units are represented by the Interpreter Group in the +-- Model. Each interpreter is generally implemented with software running +-- on the System Controller sub-unit. The Interpreter Table has one entry +-- per interpreter where the interpreters include both Page Description +-- Language (PDL) Interpreters and Control Language Interpreters. +-- +-- Implementation of every object in this group is mandatory. + +prtInterpreter OBJECT IDENTIFIER ::= { printmib 15 } + +-- Interpreter Table +-- + +-- The prtInterpreterTable is a table representing the interpreters in + +-- the printer. An entry shall be placed in the interpreter table for +-- each interpreter on the printer. + +prtInterpreterTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtInterpreterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtInterpreter 1 } + +prtInterpreterEntry OBJECT-TYPE + SYNTAX PrtInterpreterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtInterpreterIndex } + ::= { prtInterpreterTable 1 } + +PrtInterpreterEntry ::= SEQUENCE { + prtInterpreterIndex Integer32, + prtInterpreterLangFamily INTEGER, + prtInterpreterLangLevel OCTET STRING, + prtInterpreterLangVersion OCTET STRING, + prtInterpreterDescription OCTET STRING, + prtInterpreterVersion OCTET STRING, + prtInterpreterDefaultOrientation INTEGER, + prtInterpreterFeedAddressability Integer32, + prtInterpreterXFeedAddressability Integer32, + prtInterpreterDefaultCharSetIn CodedCharSet, + prtInterpreterDefaultCharSetOut CodedCharSet, + prtInterpreterTwoWay INTEGER +} + +prtInterpreterIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each PDL or control language for which + there exists an interpreter or emulator in the printer. The + value is used to identify this interpreter. Although these + values may change due to a major reconfiguration of the device + (e.g. the addition of new interpreters to the printer), values + are expected to remain stable across successive printer power + + cycles." + + ::= { prtInterpreterEntry 1 } + +prtInterpreterLangFamily OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + langPCL(3), -- PCL. Starting with PCL version 5, + -- HP-GL/2 is included as part of the + -- PCL language. + -- PCL and HP-GL/2 are registered + -- trademarks of Hewlett-Packard Company. + langHPGL(4), -- Hewlett-Packard Graphics Language. + -- HP-GL is a registered trademark of + -- Hewlett-Packard Company. + langPJL(5), -- Peripheral Job Language. Appears in the + -- data stream between data intended for a + -- page description language. + -- Hewlett-Packard Co. + langPS(6), -- PostScript Language (tm) + -- Postscript - a trademark of Adobe + -- Systems Incorporated which may be + -- registered in certain jurisdictions + langPSPrinter(42), -- The PostScript Language used for + -- control (with any PDLs) + -- Adobe Systems Incorporated + langIPDS(7), -- Intelligent Printer Data Stream + -- Bi-directional print data stream for + -- documents consisting of data objects + -- (text, image, graphics, bar codes), + -- resources (fonts, overlays) and page, + -- form and finishing instructions. + -- Facilitates system level device + -- control, document tracking and error + -- recovery throughout the print process. + -- Pennant Systems, IBM + langPPDS(8), -- IBM Personal Printer Data Stream. + -- Originally called IBM ASCII, the name + -- was changed to PPDS when the Laser + -- Printer was introduced in 1989. + -- Lexmark International, Inc. + langEscapeP(9), + langEpson(10), + langDDIF(11), -- Digital Document Interchange Format + -- Digital Equipment Corp., Maynard MA + langInterpress(12), + langISO6429(13), -- ISO 6429. Control functions for Coded + -- Character Sets (has ASCII control + + -- characters, plus additional controls for + + -- character imaging devices.) + -- ISO Standard, Geneva, Switzerland + langLineData(14), -- line-data: Lines of data as separate + -- ASCII or EBCDIC records and containing + -- no control functions (no CR, LF, HT, FF, + -- etc.). For use with traditional line + -- printers. May use CR and/or LF to + -- delimit lines, instead of records. See + -- ISO 10175 Document Printing Application + -- (DPA) + -- ISO standard, Geneva, Switzerland + langMODCA(15), -- Mixed Object Document Content Architecture + -- Definitions that allow the composition, + -- interchange, and presentation of final + -- form documents as a collection of data + -- objects (text, image, graphics, bar + -- codes), resources (fonts, overlays) and + -- page, form and finishing instructions. + -- Pennant Systems, IBM + langREGIS(16), -- Remote Graphics Instruction Set, + -- Digital Equipment Corp., Maynard MA + langSCS(17), -- SNA Character String + -- Bi-directional print data stream for SNA + -- LU-1 mode of communications + -- IBM + langSPDL(18), -- ISO 10180 Standard Page Description + -- Language + -- ISO Standard + langTEK4014(19), + langPDS(20), + langIGP(21), + langCodeV(22), -- Magnum Code-V, Image and printer control + -- language used to control impact/dot- + -- matrix printers. + -- QMS, Inc., Mobile AL + langDSCDSE(23), -- DSC-DSE: Data Stream Compatible and + -- Emulation Bi-directional print data + -- stream for non-SNA (DSC) and SNA LU-3 + -- 3270 controller (DSE) communications + -- IBM + langWPS(24), -- Windows Printing System, Resource based + -- command/data stream used by Microsoft At + -- Work Peripherals. + -- Developed by the Microsoft Corporation. + langLN03(25), -- Early DEC-PPL3, Digital Equipment Corp. + langCCITT(26), + langQUIC(27), -- QUIC (Quality Information Code), Page + + -- Description Language for laser printers. + + -- Included graphics, printer control + -- capability and emulation of other well- + -- known printer . + -- QMS, Inc. + langCPAP(28), -- Common Printer Access Protocol + -- Digital Equipment Corp. + langDecPPL(29), -- Digital ANSI-Compliant Printing Protocol + -- (DEC-PPL) + -- Digital Equipment Corp. + langSimpleText(30),-- simple-text: character coded data, + -- including NUL, CR , LF, HT, and FF + -- control characters. See ISO 10175 + -- Document Printing Application (DPA) + -- ISO standard, Geneva, Switzerland + langNPAP(31), -- Network Printer Alliance Protocol + -- IEEE 1284.1 + langDOC(32), -- Document Option Commands, Appears in the + -- data stream between data intended for a + -- page description . + -- QMS, Inc. + langimPress(33), -- imPRESS, Page description language + -- originally developed for the ImageServer + -- line of systems. A binary language + -- providing representations for text, + -- simple graphics (rules, lines, conic + -- sections), and some large forms (simple + -- bit-map and CCITT group 3/4 encoded).The + -- language was intended to be sent over an + -- 8-bit channel and supported early + -- document preparation languages (e.g. TeX + -- and TROFF). + -- QMS, Inc. + langPinwriter(34), -- 24 wire dot matrix printer for + -- USA, Europe, and Asia except Japan. + -- More widely used in Germany, and some + -- Asian countries than in US. + -- NEC + langNPDL(35), -- Page printer for Japanese + -- market. + -- NEC + langNEC201PL(36), -- Serial printer language used in the + -- Japanese market. + -- NEC + langAutomatic(37), -- Automatic PDL sensing. Automatic + -- sensing of the interpreter language + -- family by the printer examining the + -- document content. Which actual + + -- interpreter language families are sensed + + -- depends on the printer implementation. + langPages(38), -- Page printer Advanced Graphic Escape Set + -- IBM Japan + langLIPS(39), -- LBP Image Processing System + langTIFF(40), -- Tagged Image File Format (Aldus) + langDiagnostic(41),-- A hex dump of the input to the + -- interpreter + langCaPSL(43), -- Canon Print Systems Language + langEXCL(44), -- Extended Command Language + -- Talaris Systems Inc. + langLCDS(45), -- Line Conditioned Data Stream + -- Xerox Corporation + langXES(46) -- Xerox Escape Sequences + -- Xerox Corporation + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The family name of a Page Description Language (PDL) or + control language which this interpreter in the printer can + interpret or emulate. This type 2 list of enumerations + requires review before additional entries are made." + ::= { prtInterpreterEntry 2 } + +prtInterpreterLangLevel OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level of the language which this interpreter is + interpreting or emulating. This might contain a value like + '5e' for an interpreter which is emulating level 5e of the PCL + language. It might contain '2' for an interpreter which is + emulating level 2 of the PostScript language. Similarly it + might contain '2' for an interpreter which is emulating level + 2 of the HPGL language." + ::= { prtInterpreterEntry 3 } + +prtInterpreterLangVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The date code or version of the language which this interpreter + is interpreting or emulating." + ::= { prtInterpreterEntry 4 } + +prtInterpreterDescription OBJECT-TYPE + + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A string to identify this interpreter in the localization + specified by prtGeneralCurrentLocalization as opposed to the + language which is being interpreted. It is anticipated that + this string will allow manufacturers to unambiguously identify + their interpreters." + ::= { prtInterpreterEntry 5 } + +prtInterpreterVersion OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The date code, version number, or other product specific + information tied to this interpreter. This value is + associated with the interpreter, rather than with the version + of the language which is being interpreted or emulated." + ::= { prtInterpreterEntry 6 } + +prtInterpreterDefaultOrientation OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + other(1), + portrait(3), + landscape(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The current orientation default for this interpreter. This + value may be overridden for a particular job (e.g., by a + command in the input data stream)." + ::= { prtInterpreterEntry 7 } + +prtInterpreterFeedAddressability OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum interpreter addressability in the feed + direction in 10000 prtMarkerAddressabilityUnit s (see + prtMarkerAddressabilityFeedDir ) for this interpreter. + The value (-1) means other and specifically indicates + that the sub-unit places no restrictions on this parameter." + + ::= { prtInterpreterEntry 8 } + +prtInterpreterXFeedAddressability OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum interpreter addressability in the cross feed + direction in 10000 prtMarkerAddressabilityUnit s (see + prtMarkerAddressabilityXFeedDir) for this interpreter. + The value (-1) means other and specifically indicates + that the sub-unit places no restrictions on this + parameter." + ::= { prtInterpreterEntry 9 } + +prtInterpreterDefaultCharSetIn OBJECT-TYPE + SYNTAX CodedCharSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default coded character set for input octets + encountered outside a context in which the Page + Description Language established the interpretation + of the octets. + + This value shall be (2) if there is no default." + ::= { prtInterpreterEntry 10 } + +prtInterpreterDefaultCharSetOut OBJECT-TYPE + SYNTAX CodedCharSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The default character set for data coming from this interpreter + through the printer's output channel. + + This value shall be (2) if there is no default." + ::= { prtInterpreterEntry 11 } + +prtInterpreterTwoWay OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + yes(3), + no(4) + } + MAX-ACCESS read-only + STATUS current + + DESCRIPTION + + "Indicates whether or not this interpreter returns information + back to the host." + ::= { prtInterpreterEntry 12 } + +-- The Console Group +-- +-- Many printers have a console on the printer, the operator console, +-- that is used to display and modify the state of the printer. The +-- console can be as simple as a few indicators and switches or as +-- complicated as full screen displays and keyboards. There can be +-- at most one such console. +-- +-- Implementation of every object in this group is mandatory. + +prtConsoleLocalization OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of the prtLocalizationIndex corresponding to + the language, country, and character set to be used for the + console. This localization applies both to the actual display + on the console as well as the encoding of these console + objects in management operations." + ::= { prtGeneralEntry 10 } + +prtConsoleNumberOfDisplayLines OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of lines on the printer's physical + display. This value is 0 if there are no lines on the + physical display or if there is no physical display" + ::= { prtGeneralEntry 11 } + +prtConsoleNumberOfDisplayChars OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of characters per line displayed on the physical + display. This value is 0 if there are no lines on the + physical display or if there is no physical display" + ::= { prtGeneralEntry 12 } + +prtConsoleDisable OBJECT-TYPE + + SYNTAX INTEGER { + + enabled(3), + disabled(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object enables or disables manual input from the + operators console." + ::= { prtGeneralEntry 13 } + +-- The Display Buffer Table + +prtConsoleDisplayBuffer OBJECT IDENTIFIER ::= { printmib 16 } + +prtConsoleDisplayBufferTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtConsoleDisplayBufferEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtConsoleDisplayBuffer 5 } + +prtConsoleDisplayBufferEntry OBJECT-TYPE + SYNTAX PrtConsoleDisplayBufferEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains one entry for each physical line on + the display. Lines cannot be added or deleted. + + Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtConsoleDisplayBufferIndex } + ::= { prtConsoleDisplayBufferTable 1 } + +PrtConsoleDisplayBufferEntry ::= SEQUENCE { + prtConsoleDisplayBufferIndex Integer32, + prtConsoleDisplayBufferText OCTET STRING +} + +prtConsoleDisplayBufferIndex OBJECT-TYPE + SYNTAX Integer32 (1..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value for each console line in the printer. The + value is used to identify this console line. Although + + these values may change due to a major reconfiguration of + + the device (e.g. the addition of new console lines to the + printer), values are expected to remain stable across + successive printer power cycles." + ::= { prtConsoleDisplayBufferEntry 1 } + +prtConsoleDisplayBufferText OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The content of a line in the logical display buffer of + the operator's console of the printer. When a write + operation occurs, normally a critical message, to one of + the LineText strings, the agent should make that line + displayable if a physical display is present. Writing + a zero length string clears the line. It is an + implementation-specific matter as to whether the agent allows + a line to be overwritten before it has been cleared. + Printer generated strings shall be in the localization + specified by ConsoleLocalization. Management Application + generated strings should be localized by the Management + Application." + ::= { prtConsoleDisplayBufferEntry 2 } + +-- The Console Light Table + +prtConsoleLights OBJECT IDENTIFIER ::= { printmib 17 } + +prtConsoleLightTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtConsoleLightEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtConsoleLights 6 } + +prtConsoleLightEntry OBJECT-TYPE + SYNTAX PrtConsoleLightEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtConsoleLightIndex } + ::= { prtConsoleLightTable 1 } + +PrtConsoleLightEntry ::= SEQUENCE { + + prtConsoleLightIndex Integer32, + + prtConsoleOnTime Integer32, + prtConsoleOffTime Integer32, + prtConsoleColor INTEGER, + prtConsoleDescription OCTET STRING +} + +prtConsoleLightIndex OBJECT-TYPE + SYNTAX Integer32 (0..65535) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique value used by the printer to identify this light. + Although these values may change due to a major + reconfiguration of the device (e.g. the addition of new lights + to the printer), values are expected to remain stable across + successive printer power cycles." + ::= { prtConsoleLightEntry 1 } + +prtConsoleOnTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The on time in milliseconds of blinking of this light; 0 + indicates off always. If both prtConsoleOnTime + and prtConsoleOffTime are 0, then the light is + always off." + ::= { prtConsoleLightEntry 2 } + +prtConsoleOffTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The off time in milliseconds of blinking of this light; 0 + indicates on always. If both prtConsoleOnTime + and prtConsoleOffTime are 0, then the light is + always off." + ::= { prtConsoleLightEntry 3 } + +prtConsoleColor OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + white(3), + red(4), + + green(5), + + blue(6), + cyan(7), + magenta(8), + yellow(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The color of this light." + ::= { prtConsoleLightEntry 4 } + +prtConsoleDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor description or label of this light in the + localization specified by prtConsoleLocalization." + ::= { prtConsoleLightEntry 5 } + +-- The Alerts Group +-- +-- The prtAlertTable lists all the critical and non-critical alerts +-- currently active in the printer. A critical alert is one that stops +-- the printer from printing immediately and printing can not continue +-- until the critical alert condition is eliminated. Non-critical +-- alerts are those items that do not stop printing but may at some +-- future time. +-- The table contains information on the severity, component, detail +-- location within the component, alert code and description of each +-- critical alert that is currently active within the printer. See +-- 2.2.13 for a more complete description of the alerts table and +-- its management. +-- +-- Implementation of every object in this group is mandatory. + +prtAlert OBJECT IDENTIFIER ::= { printmib 18 } + +prtAlertTable OBJECT-TYPE + SYNTAX SEQUENCE OF PrtAlertEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "" + ::= { prtAlert 1 } + +prtAlertEntry OBJECT-TYPE + + SYNTAX PrtAlertEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entries may exist in the table for each device + index who's device type is `printer'." + INDEX { hrDeviceIndex, prtAlertIndex } + ::= { prtAlertTable 1 } + +PrtAlertEntry ::= SEQUENCE { + prtAlertIndex Integer32, + prtAlertSeverityLevel INTEGER, + prtAlertTrainingLevel INTEGER, + prtAlertGroup INTEGER, + prtAlertGroupIndex Integer32, + prtAlertLocation Integer32, + prtAlertCode INTEGER, + prtAlertDescription OCTET STRING, + prtAlertTime TimeTicks +} + +prtAlertIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The index value used to determine which alerts + have been added or removed from the alert table. + This is an incrementing integer starting from zero + every time the printer is reset. When the printer + adds an alert to the table, that alert is assigned + the next higher integer value from the last item + entered into the table. If the index value reaches + its maximum value, the next item entered will cause + the index value to roll over and start at zero + again. The first event placed in the alert table + after a reset of the printer shall + have an index value of 1. NOTE: The management + application will read the alert table when a trap + or event notification occurs or at a periodic rate + and then parse the table to determine if any new + entries were added by comparing the last known index + value with the current highest index value. The + management application will then update its copy of + the alert table. When the printer discovers that + an alert is no longer active, the printer shall + remove the row for that alert from the table and + + shall reduce the number of rows in the table. The + + printer may add or delete any number of rows from + the table at any time. The management station + can detect when binary alerts have been deleted by + requesting an attribute of each alert, and noting + alerts as deleted when that retrieval is not possible." + ::= { prtAlertEntry 1 } + +prtAlertSeverityLevel OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + other(1), + critical(3), + warning(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level of severity of this alert table entry. The printer + determines the severity level assigned to each entry into the + table." + ::= { prtAlertEntry 2 } + +prtAlertTrainingLevel OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + untrained(3), + trained(4), + fieldService(5), + management(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The level of training required to handle this alert. The + training level is an enumeration that is determined and + assigned by the printer manufacturer based on the information + or the training required to handle this alert. The printer + will break alerts into these different training levels. It is + the responsibility of the management application in the system + to determine how a particular alert is handled and how and to + whom that alert is routed. The following are the four + training levels of alerts: + + Field Service - Alerts that typically require advanced + training and technical knowledge of the printer + + and its sub-units. An example of a technical + + person would be a manufacture's Field Service + representative, or other person formally + trained by the manufacturer or similar + representative. + Trained - Alerts that require an intermediate or moderate + level of knowledge of the printer and its + sub-units. A typical examples of alerts that + a trained operator can handle is replacing + toner cartridges. + Untrained - Alerts that can be fixed without prior + training either because the action to correct + the alert is obvious or the printer can help the + untrained person fix the problem. A typical + example of such an alert is reloading paper + trays and emptying output bins on a low end + printer. + Management - Alerts that have to do with overall + operation of and configuration of the printer. + Examples of management events are configuration + change of sub-units." + ::= { prtAlertEntry 3 } + +prtAlertGroup OBJECT-TYPE + -- This value is a type 1 enumeration + SYNTAX INTEGER { + other(1), + hostResourcesMIBStorageTable(3), + hostResourcesMIBDeviceTable(4), + generalPrinter(5), + cover(6), + localization(7), + input(8), + output(9), + marker(10), + markerSupplies(11), + markerColorant(12), + mediaPath(13), + channel(14), + interpreter(15), + consoleDisplayBuffer(16), + consoleLights(17) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of sub-unit within the printer model that this alert + is related. Input, output, and markers are examples of + + printer model groups, i.e., examples of types of sub-units. + + Whereever possible, these enumerations match the + sub-identifier that identifies the relevant table in the + printmib." + ::= { prtAlertEntry 4 } + +prtAlertGroupIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An index of the row within the principle table in the + group identified by prtAlertGroup that represents the + sub-unit of the printer that caused this alert. The + combination of the Group and the GroupIndex defines + exactly which printer sub-unit caused the alert.; for + example, Input #3, Output #2, and Marker #1. + + Every object in this MIB is indexed with hrDeviceIndex and + optionally, another index variable. If this other index + variable is present in the table that generated the alert, it + will be used as the value for this object. Otherwise, this + value shall be -1." + ::= { prtAlertEntry 5 } + +prtAlertLocation OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The sub-unit location that is defined by the printer + manufacturer to further refine the location of this alert + within the designated sub-unit. The location is used in + conjunction with the Group and GroupIndex values; for + example, there is an alert in Input #2 at location number 7." + ::= { prtAlertEntry 6 } + +prtAlertCode OBJECT-TYPE + -- This value is a type 2 enumeration + SYNTAX INTEGER { + other(1), + unknown(2), + -- codes common to serveral groups + coverOpen(3), + coverClosed(4), + interlockOpen(5), + interlockClosed(6), + + configurationChange(7), + + jam(8), + -- general Printer group + doorOpen(501), + doorClosed(502), + powerUp(503), + powerDown(504), + -- Input Group + inputMediaTrayMissing(801), + inputMediaSizeChange(802), + inputMediaWeightChange(803), + inputMediaTypeChange(804), + inputMediaColorChange(805), + inputMediaFormPartsChange(806), + inputMediaSupplyLow(807), + inputMediaSupplyEmpty(808), + -- Output Group + outputMediaTrayMissing(901), + outputMediaTrayAlmostFull(902), + outputMediaTrayFull(903), + -- Marker group + markerFuserUnderTemperature(1001), + markerFuserOverTemperature(1002), + -- Marker Supplies group + markerTonerEmpty(1101), + markerInkEmpty(1102), + markerPrintRibbonEmpty(1103), + markerTonerAlmostEmpty(1104), + markerInkAlmostEmpty(1105), + markerPrintRibbonAlmostEmpty(1106), + markerWasteTonerReceptacleAlmostFull(1107), + markerWasteInkReceptacleAlmostFull(1108), + markerWasteTonerReceptacleFull(1109), + markerWasteInkReceptacleFull(1110), + markerOpcLifeAlmostOver(1111), + markerOpcLifeOver(1112), + markerDeveloperAlmostEmpty(1113), + markerDeveloperEmpty(1114), + -- Media Path Device Group + mediaPathMediaTrayMissing(1301), + mediaPathMediaTrayAlmostFull(1302), + mediaPathMediaTrayFull(1303), + -- interpreter Group + interpreterMemoryIncrease(1501), + interpreterMemoryDecrease(1502), + interpreterCartridgeAdded(1503), + interpreterCartridgeDeleted(1504), + interpreterResourceAdded(1505), + + interpreterResourceDeleted(1506), + + interpreterResourceUnavailable(1507) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The code that describes the type of alert for this entry in + the table. There are different codes for each + sub-unit type: for example, Media Supply Low and Media + Supply Empty are Aler codes for the Input sub-unit." + ::= { prtAlertEntry 7} + +prtAlertDescription OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A description of this alert entry in the localization + specified by prtGeneralCurrentLocalization. The description is + provided by the printer to further elaborate on the enumerated + alert or provide information in the case where the code is + classified ask `other' or `unknown'. The printer is required + to return a description string but the string may be a null + string." + ::= { prtAlertEntry 8 } + +printerV1Alert OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The value of the enterprise-specific oid in a SNMPv1 trap sent + signalling a critical event in the prtAlertTable." + ::= { prtAlert 2 } + +printerV2AlertPrefix OBJECT IDENTIFIER ::= { printerV1Alert 0 } + +printerV2Alert NOTIFICATION-TYPE + OBJECTS { prtAlertIndex, prtAlertSeverityLevel, prtAlertGroup, + prtAlertGroupIndex, prtAlertLocation, prtAlertCode } + STATUS current + DESCRIPTION + "This trap is sent whenever a critical event is added to the + prtAlertTable." + ::= { printerV2AlertPrefix 1 } + +-- Note that the SNMPv2 to SNMPv1 translation rules dictate that the +-- preceding structure will result in SNMPv1 traps of the following +-- form: +-- + +-- printerAlert TRAP-TYPE + +-- ENTERPRISE printerV1Alert +-- VARIABLES { prtAlertIndex, prtAlertSeverityLevel, prtAlertGroup, +-- prtAlertGroupIndex, prtAlertLocation, prtAlertCode } +-- DESCRIPTION +-- "This trap is sent whenever a critical event is added to the +-- prtAlertTable." +-- ::= 1 + +-- The Alert Time Group +-- +-- This group is optional. However, to claim conformance to this +-- group, it is necessary to implement every object in the group. + +prtAlertTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time that this alert was + generated." + ::= { prtAlertEntry 9 } + +-- Conformance Information + +prtMIBConformance OBJECT IDENTIFIER ::= { printmib 2 } + +-- compliance statements +prtMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for agents that implement the + printer MIB." + MODULE -- this module + MANDATORY-GROUPS { prtGeneralGroup, prtInputGroup, prtOutputGroup, + prtMarkerGroup, prtMediaPathGroup, + prtChannelGroup, prtInterpreterGroup, + prtConsoleGroup, prtAlertTableGroup } + + OBJECT prtGeneralReset + SYNTAX INTEGER { + notResetting(3), + resetToNVRAM(5) + } + DESCRIPTION + + "It is conformant to implement just these two states in + + this object. Any additional states are optional." + + OBJECT prtConsoleOnTime + MIN-ACCESS read-only + DESCRIPTION + "It is conformant to implement this object as read-only." + + OBJECT prtConsoleOffTime + MIN-ACCESS read-only + DESCRIPTION + "It is conformant to implement this object as read-only." + + -- the prtResponsiblePartyGroup, prtExtendedInputGroup, + -- prtInputMediaGroup, prtExtendedOutputGroup, + -- prtOutputDimensionsGroup, prtOutputFeaturesGroup, + -- prtMarkerSuppliesGroup, prtMarkerColorantGroup, + -- and the prtAlertTimeGroup are completely optional. + ::= { prtMIBConformance 1 } + +prtMIBGroups OBJECT IDENTIFIER ::= { prtMIBConformance 2 } + +prtGeneralGroup OBJECT-GROUP + OBJECTS { prtGeneralConfigChanges, prtGeneralCurrentLocalization, + prtGeneralReset, prtCoverDescription, prtCoverStatus, + prtLocalizationLanguage, prtLocalizationCountry, + prtLocalizationCharacterSet, prtStorageRefIndex, + prtDeviceRefIndex } + STATUS current + DESCRIPTION + "The general printer group." + ::= { prtMIBGroups 1 } + +prtResponsiblePartyGroup OBJECT-GROUP + OBJECTS { prtGeneralCurrentOperator, prtGeneralServicePerson } + STATUS current + DESCRIPTION + "The responsible party group contains contact information for + humans responsible for the printer." + ::= { prtMIBGroups 2 } + +prtInputGroup OBJECT-GROUP + OBJECTS { prtInputDefaultIndex, prtInputType, prtInputDimUnit, + prtInputMediaDimFeedDirDeclared, + prtInputMediaDimXFeedDirDeclared, + prtInputMediaDimFeedDirChosen, + prtInputMediaDimXFeedDirChosen, prtInputCapacityUnit, + prtInputMaxCapacity, prtInputCurrentLevel, + + prtInputStatus, prtInputMediaName } + + STATUS current + DESCRIPTION + "The input group." + ::= { prtMIBGroups 3 } + +prtExtendedInputGroup OBJECT-GROUP + OBJECTS { prtInputName, prtInputVendorName, prtInputModel, + prtInputVersion, prtInputSerialNumber, + prtInputDescription, prtInputSecurity } + STATUS current + DESCRIPTION + "The extended input group." + ::= { prtMIBGroups 4 } + +prtInputMediaGroup OBJECT-GROUP + OBJECTS { prtInputMediaWeight, prtInputMediaType, + prtInputMediaColor, prtInputMediaFormParts } + STATUS current + DESCRIPTION + "The input media group." + ::= { prtMIBGroups 5 } + +prtOutputGroup OBJECT-GROUP + OBJECTS { prtOutputDefaultIndex, prtOutputType, + prtOutputCapacityUnit, prtOutputMaxCapacity, + prtOutputRemainingCapacity, prtOutputStatus } + STATUS current + DESCRIPTION + "The output group." + ::= { prtMIBGroups 6 } + +prtExtendedOutputGroup OBJECT-GROUP + OBJECTS { prtOutputName, prtOutputVendorName, prtOutputModel, + prtOutputVersion, prtOutputSerialNumber, + prtOutputDescription, prtOutputSecurity } + STATUS current + DESCRIPTION + "The extended output group." + ::= { prtMIBGroups 7 } + +prtOutputDimensionsGroup OBJECT-GROUP + OBJECTS { prtOutputDimUnit, prtOutputMaxDimFeedDir, + prtOutputMaxDimXFeedDir, prtOutputMinDimFeedDir, + prtOutputMinDimXFeedDir } + STATUS current + DESCRIPTION + "The output dimensions group" + + ::= { prtMIBGroups 8 } + +prtOutputFeaturesGroup OBJECT-GROUP + OBJECTS { prtOutputStackingOrder, + prtOutputPageDeliveryOrientation, prtOutputBursting, + prtOutputDecollating, prtOutputPageCollated, + prtOutputOffsetStacking } + STATUS current + DESCRIPTION + "The output features group." + ::= { prtMIBGroups 9 } + +prtMarkerGroup OBJECT-GROUP + OBJECTS { prtMarkerDefaultIndex, prtMarkerMarkTech, + prtMarkerCounterUnit, prtMarkerLifeCount, + prtMarkerPowerOnCount, prtMarkerProcessColorants, + prtMarkerSpotColorants, prtMarkerAddressabilityUnit, + prtMarkerAddressabilityFeedDir, + prtMarkerAddressabilityXFeedDir, prtMarkerNorthMargin, + prtMarkerSouthMargin, prtMarkerWestMargin, + prtMarkerEastMargin, prtMarkerStatus } + STATUS current + DESCRIPTION + "The marker group." + ::= { prtMIBGroups 10 } + +prtMarkerSuppliesGroup OBJECT-GROUP + OBJECTS { prtMarkerSuppliesMarkerIndex, + prtMarkerSuppliesColorantIndex, prtMarkerSuppliesClass, + prtMarkerSuppliesType, prtMarkerSuppliesDescription, + prtMarkerSuppliesSupplyUnit, + prtMarkerSuppliesMaxCapacity, prtMarkerSuppliesLevel } + STATUS current + DESCRIPTION + "The marker supplies group." + ::= { prtMIBGroups 11 } + +prtMarkerColorantGroup OBJECT-GROUP + OBJECTS { prtMarkerColorantMarkerIndex, prtMarkerColorantRole, + prtMarkerColorantValue, prtMarkerColorantTonality } + STATUS current + DESCRIPTION + "The marker colorant group." + ::= { prtMIBGroups 12 } + +prtMediaPathGroup OBJECT-GROUP + OBJECTS { prtMediaPathDefaultIndex, prtMediaPathMaxSpeedPrintUnit, + prtMediaPathMediaSizeUnit, prtMediaPathMaxSpeed, + + prtMediaPathMaxMediaFeedDir, + + prtMediaPathMaxMediaXFeedDir, + prtMediaPathMinMediaFeedDir, + prtMediaPathMinMediaXFeedDir, prtMediaPathType, + prtMediaPathDescription, prtMediaPathStatus} + STATUS current + DESCRIPTION + "The media path group." + ::= { prtMIBGroups 13 } + +prtChannelGroup OBJECT-GROUP + OBJECTS { prtChannelType, prtChannelProtocolVersion, + prtChannelCurrentJobCntlLangIndex, + prtChannelDefaultPageDescLangIndex, prtChannelState, + prtChannelIfIndex, prtChannelStatus } + STATUS current + DESCRIPTION + "The channel group." + ::= { prtMIBGroups 14 } + +prtInterpreterGroup OBJECT-GROUP + OBJECTS { prtInterpreterLangFamily, prtInterpreterLangLevel, + prtInterpreterLangVersion, prtInterpreterDescription, + prtInterpreterVersion, prtInterpreterDefaultOrientation, + prtInterpreterFeedAddressability, + prtInterpreterXFeedAddressability, + prtInterpreterDefaultCharSetIn, + prtInterpreterDefaultCharSetOut, prtInterpreterTwoWay } + STATUS current + DESCRIPTION + "The interpreter group." + ::= { prtMIBGroups 15 } + +prtConsoleGroup OBJECT-GROUP + OBJECTS { prtConsoleLocalization, prtConsoleNumberOfDisplayLines, + prtConsoleNumberOfDisplayChars, prtConsoleDisable, + prtConsoleDisplayBufferText, prtConsoleOnTime, + prtConsoleOffTime, prtConsoleColor, + prtConsoleDescription } + STATUS current + DESCRIPTION + "The console group." + ::= { prtMIBGroups 16 } + +prtAlertTableGroup OBJECT-GROUP + OBJECTS { prtAlertSeverityLevel, prtAlertTrainingLevel, + prtAlertGroup, prtAlertGroupIndex, prtAlertLocation, + prtAlertCode, prtAlertDescription } + + STATUS current + + DESCRIPTION + "The alert table group." + ::= { prtMIBGroups 17 } + +prtAlertTimeGroup OBJECT-GROUP + OBJECTS { prtAlertTime } + STATUS current + DESCRIPTION + "The alert time group." + ::= { prtMIBGroups 18 } + +END diff --git a/pandora_console/attachment/mibs/Q-BRIDGE-MIB b/pandora_console/attachment/mibs/Q-BRIDGE-MIB new file mode 100644 index 0000000000..4938751ffa --- /dev/null +++ b/pandora_console/attachment/mibs/Q-BRIDGE-MIB @@ -0,0 +1,1876 @@ +-- extracted from rfc2674.txt +-- at Mon Nov 15 17:12:07 1999 + +Q-BRIDGE-MIB DEFINITIONS ::= BEGIN + +-- ------------------------------------------------------------- +-- MIB for IEEE 802.1Q Devices +-- ------------------------------------------------------------- + +IMPORTS +MODULE-IDENTITY, OBJECT-TYPE, +Counter32, Counter64, Unsigned32, TimeTicks +FROM SNMPv2-SMI +RowStatus, TruthValue, TEXTUAL-CONVENTION, MacAddress +FROM SNMPv2-TC +SnmpAdminString +FROM SNMP-FRAMEWORK-MIB +MODULE-COMPLIANCE, OBJECT-GROUP +FROM SNMPv2-CONF +dot1dBridge, dot1dBasePortEntry, dot1dBasePort +FROM BRIDGE-MIB +EnabledStatus +FROM P-BRIDGE-MIB +TimeFilter +FROM RMON2-MIB; + +qBridgeMIB MODULE-IDENTITY +LAST-UPDATED "9908250000Z" +ORGANIZATION "IETF Bridge MIB Working Group" +CONTACT-INFO +" Les Bell +Postal: 3Com Europe Ltd. +3Com Centre, Boundary Way +Hemel Hempstead, Herts. HP2 7YU +UK +Phone: +44 1442 438025 +Email: Les_Bell@3Com.com + +Andrew Smith +Postal: Extreme Networks +3585 Monroe St. +Santa Clara CA 95051 +USA +Phone: +1 408 579 2821 +Email: andrew@extremenetworks.com + +Paul Langille +Postal: Newbridge Networks +5 Corporate Drive +Andover, MA 01810 +USA +Phone: +1 978 691 4665 +Email: langille@newbridge.com + +Anil Rijhsinghani +Postal: Cabletron Systems +50 Minuteman Road +Andover, MA 01810 +USA +Phone: +1 978 684 1295 +Email: anil@cabletron.com + +Keith McCloghrie +Postal: cisco Systems, Inc. +170 West Tasman Drive +San Jose, CA 95134-1706 +USA +Phone: +1 408 526 5260 +Email: kzm@cisco.com" +DESCRIPTION +"The VLAN Bridge MIB module for managing Virtual Bridged +Local Area Networks, as defined by IEEE 802.1Q-1998." + +-- revision history + +REVISION "9908250000Z" +DESCRIPTION +"Initial version, published as RFC 2674." + +::= { dot1dBridge 7 } + +qBridgeMIBObjects OBJECT IDENTIFIER ::= { qBridgeMIB 1 } + +-- ------------------------------------------------------------- +-- Textual Conventions +-- ------------------------------------------------------------- + +PortList ::= TEXTUAL-CONVENTION +STATUS current +DESCRIPTION +"Each octet within this value specifies a set of eight +ports, with the first octet specifying ports 1 through +8, the second octet specifying ports 9 through 16, etc. +Within each octet, the most significant bit represents +the lowest numbered port, and the least significant bit +represents the highest numbered port. Thus, each port +of the bridge is represented by a single bit within the +value of this object. If that bit has a value of '1' +then that port is included in the set of ports; the port +is not included if its bit has a value of '0'." +SYNTAX OCTET STRING + +VlanIndex ::= TEXTUAL-CONVENTION +STATUS current +DESCRIPTION +"A value used to index per-VLAN tables: values of 0 and +4095 are not permitted; if the value is between 1 and +4094 inclusive, it represents an IEEE 802.1Q VLAN-ID with +global scope within a given bridged domain (see VlanId +textual convention). If the value is greater than 4095 +then it represents a VLAN with scope local to the +particular agent, i.e. one without a global VLAN-ID +assigned to it. Such VLANs are outside the scope of +IEEE 802.1Q but it is convenient to be able to manage them +in the same way using this MIB." +SYNTAX Unsigned32 + +VlanId ::= TEXTUAL-CONVENTION +STATUS current +DESCRIPTION +"A 12-bit VLAN ID used in the VLAN Tag header." +SYNTAX INTEGER (1..4094) + +-- ------------------------------------------------------------- +-- groups in the Q-BRIDGE MIB +-- ------------------------------------------------------------- + +dot1qBase OBJECT IDENTIFIER ::= { qBridgeMIBObjects 1 } +dot1qTp OBJECT IDENTIFIER ::= { qBridgeMIBObjects 2 } +dot1qStatic OBJECT IDENTIFIER ::= { qBridgeMIBObjects 3 } +dot1qVlan OBJECT IDENTIFIER ::= { qBridgeMIBObjects 4 } + +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- dot1qBase group +-- ------------------------------------------------------------- + +dot1qVlanVersionNumber OBJECT-TYPE +SYNTAX INTEGER { +version1(1) +} +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The version number of IEEE 802.1Q that this device +supports." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.1.1" +::= { dot1qBase 1 } + +dot1qMaxVlanId OBJECT-TYPE +SYNTAX VlanId +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The maximum IEEE 802.1Q VLAN ID that this device +supports." +REFERENCE +"IEEE 802.1Q/D11 Section 9.3.2.3" +::= { dot1qBase 2 } + +dot1qMaxSupportedVlans OBJECT-TYPE +SYNTAX Unsigned32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The maximum number of IEEE 802.1Q VLANs that this +device supports." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.1.1" +::= { dot1qBase 3 } + +dot1qNumVlans OBJECT-TYPE +SYNTAX Unsigned32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The current number of IEEE 802.1Q VLANs that are +configured in this device." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.1.1" +::= { dot1qBase 4 } + +dot1qGvrpStatus OBJECT-TYPE +SYNTAX EnabledStatus +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The administrative status requested by management for +GVRP. The value enabled(1) indicates that GVRP should +be enabled on this device, on all ports for which it has +not been specifically disabled. When disabled(2), GVRP +is disabled on all ports and all GVRP packets will be +forwarded transparently. This object affects all GVRP +Applicant and Registrar state machines. A transition +from disabled(2) to enabled(1) will cause a reset of all +GVRP state machines on all ports." +DEFVAL { enabled } +::= { dot1qBase 5 } + +-- ------------------------------------------------------------- +-- the dot1qTp group +-- ------------------------------------------------------------- + +-- ------------------------------------------------------------- +-- the current Filtering Database Table +-- ------------------------------------------------------------- +dot1qFdbTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qFdbEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table that contains configuration and control +information for each Filtering Database currently +operating on this device. Entries in this table appear +automatically when VLANs are assigned FDB IDs in the +dot1qVlanCurrentTable." +::= { dot1qTp 1 } + +dot1qFdbEntry OBJECT-TYPE +SYNTAX Dot1qFdbEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Information about a specific Filtering Database." +INDEX { dot1qFdbId } +::= { dot1qFdbTable 1 } + +Dot1qFdbEntry ::= +SEQUENCE { +dot1qFdbId +Unsigned32, +dot1qFdbDynamicCount +Counter32 +} + +dot1qFdbId OBJECT-TYPE +SYNTAX Unsigned32 +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The identity of this Filtering Database." +::= { dot1qFdbEntry 1 } + +dot1qFdbDynamicCount OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The current number of dynamic entries in this +Filtering Database." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.1.1.3" +::= { dot1qFdbEntry 2 } + +-- ------------------------------------------------------------- +-- Multiple Forwarding Databases for 802.1Q Transparent devices +-- This table is an alternative to the dot1dTpFdbTable, +-- previously defined for 802.1D devices which only support a +-- single Forwarding Database. +-- ------------------------------------------------------------- + +dot1qTpFdbTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qTpFdbEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table that contains information about unicast entries +for which the device has forwarding and/or filtering +information. This information is used by the +transparent bridging function in determining how to +propagate a received frame." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.7" +::= { dot1qTp 2 } + +dot1qTpFdbEntry OBJECT-TYPE +SYNTAX Dot1qTpFdbEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Information about a specific unicast MAC address for +which the device has some forwarding and/or filtering +information." +INDEX { dot1qFdbId, dot1qTpFdbAddress } +::= { dot1qTpFdbTable 1 } + +Dot1qTpFdbEntry ::= +SEQUENCE { +dot1qTpFdbAddress +MacAddress, +dot1qTpFdbPort +INTEGER, +dot1qTpFdbStatus +INTEGER +} + +dot1qTpFdbAddress OBJECT-TYPE +SYNTAX MacAddress +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A unicast MAC address for which the device has +forwarding and/or filtering information." +::= { dot1qTpFdbEntry 1 } + +dot1qTpFdbPort OBJECT-TYPE +SYNTAX INTEGER (0..65535) +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"Either the value '0', or the port number of the port on +which a frame having a source address equal to the value +of the corresponding instance of dot1qTpFdbAddress has +been seen. A value of '0' indicates that the port +number has not been learned but that the device does +have some forwarding/filtering information about this +address (e.g. in the dot1qStaticUnicastTable). +Implementors are encouraged to assign the port value to +this object whenever it is learned even for addresses +for which the corresponding value of dot1qTpFdbStatus is +not learned(3)." +::= { dot1qTpFdbEntry 2 } + +dot1qTpFdbStatus OBJECT-TYPE +SYNTAX INTEGER { +other(1), +invalid(2), +learned(3), +self(4), +mgmt(5) +} +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The status of this entry. The meanings of the values +are: +other(1) - none of the following. This may include +the case where some other MIB object (not the +corresponding instance of dot1qTpFdbPort, nor an +entry in the dot1qStaticUnicastTable) is being +used to determine if and how frames addressed to +the value of the corresponding instance of +dot1qTpFdbAddress are being forwarded. +invalid(2) - this entry is no longer valid (e.g., it +was learned but has since aged out), but has not +yet been flushed from the table. +learned(3) - the value of the corresponding instance +of dot1qTpFdbPort was learned and is being used. + +self(4) - the value of the corresponding instance of +dot1qTpFdbAddress represents one of the device's +addresses. The corresponding instance of +dot1qTpFdbPort indicates which of the device's +ports has this address. +mgmt(5) - the value of the corresponding instance of +dot1qTpFdbAddress is also the value of an +existing instance of dot1qStaticAddress." +::= { dot1qTpFdbEntry 3 } + +-- ------------------------------------------------------------- +-- Dynamic Group Registration Table +-- ------------------------------------------------------------- + +dot1qTpGroupTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qTpGroupEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing filtering information for VLANs +configured into the bridge by (local or network) +management, or learnt dynamically, specifying the set of +ports to which frames received on a VLAN for this FDB +and containing a specific Group destination address are +allowed to be forwarded." +::= { dot1qTp 3 } + +dot1qTpGroupEntry OBJECT-TYPE +SYNTAX Dot1qTpGroupEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Filtering information configured into the bridge by +management, or learnt dynamically, specifying the set of +ports to which frames received on a VLAN and containing +a specific Group destination address, are allowed to be +forwarded. The subset of these ports learnt dynamically +is also provided." +INDEX { dot1qVlanIndex, dot1qTpGroupAddress } +::= { dot1qTpGroupTable 1 } + +Dot1qTpGroupEntry ::= +SEQUENCE { +dot1qTpGroupAddress +MacAddress, +dot1qTpGroupEgressPorts +PortList, +dot1qTpGroupLearnt +PortList +} + +dot1qTpGroupAddress OBJECT-TYPE +SYNTAX MacAddress +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The destination Group MAC address in a frame to which +this entry's filtering information applies." +::= { dot1qTpGroupEntry 1 } + +dot1qTpGroupEgressPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The complete set of ports, in this VLAN, to which +frames destined for this Group MAC address are currently +being explicitly forwarded. This does not include ports +for which this address is only implicitly forwarded, in +the dot1qForwardAllPorts list." +::= { dot1qTpGroupEntry 2 } + +dot1qTpGroupLearnt OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The subset of ports in dot1qTpGroupEgressPorts which +were learnt by GMRP or some other dynamic mechanism, in +this Filtering database." +::= { dot1qTpGroupEntry 3 } + +-- ------------------------------------------------------------- +-- Service Requirements Group +-- ------------------------------------------------------------- + +dot1qForwardAllTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qForwardAllEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing forwarding information for each +VLAN, specifying the set of ports to which forwarding of +all multicasts applies, configured statically by +management or dynamically by GMRP. An entry appears in +this table for all VLANs that are currently +instantiated." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.2, 12.7.7" +::= { dot1qTp 4 } + +dot1qForwardAllEntry OBJECT-TYPE +SYNTAX Dot1qForwardAllEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Forwarding information for a VLAN, specifying the set +of ports to which all multicasts should be forwarded, +configured statically by management or dynamically by +GMRP." +INDEX { dot1qVlanIndex } +::= { dot1qForwardAllTable 1 } + +Dot1qForwardAllEntry ::= +SEQUENCE { +dot1qForwardAllPorts +PortList, +dot1qForwardAllStaticPorts +PortList, +dot1qForwardAllForbiddenPorts +PortList +} + +dot1qForwardAllPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The complete set of ports in this VLAN to which all +multicast group-addressed frames are to be forwarded. +This includes ports for which this need has been +determined dynamically by GMRP, or configured statically +by management." +::= { dot1qForwardAllEntry 1 } + +dot1qForwardAllStaticPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports configured by management in this VLAN +to which all multicast group-addressed frames are to be +forwarded. Ports entered in this list will also appear +in the complete set shown by dot1qForwardAllPorts. This +value will be restored after the device is reset. This +only applies to ports that are members of the VLAN, +defined by dot1qVlanCurrentEgressPorts. A port may not +be added in this set if it is already a member of the +set of ports in dot1qForwardAllForbiddenPorts. The +default value is a string of ones of appropriate length, +to indicate standard non-EFS behaviour, i.e. forward +all multicasts to all ports." +::= { dot1qForwardAllEntry 2 } + +dot1qForwardAllForbiddenPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports configured by management in this VLAN +for which the Service Requirement attribute Forward All +Multicast Groups may not be dynamically registered by +GMRP. This value will be restored after the device is +reset. A port may not be added in this set if it is +already a member of the set of ports in +dot1qForwardAllStaticPorts. The default value is a +string of zeros of appropriate length." +::= { dot1qForwardAllEntry 3 } + +dot1qForwardUnregisteredTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qForwardUnregisteredEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing forwarding information for each +VLAN, specifying the set of ports to which forwarding of +multicast group-addressed frames for which there is no +more specific forwarding information applies. This is +configured statically by management and determined +dynamically by GMRP. An entry appears in this table for +all VLANs that are currently instantiated." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.2, 12.7.7" +::= { dot1qTp 5 } + +dot1qForwardUnregisteredEntry OBJECT-TYPE +SYNTAX Dot1qForwardUnregisteredEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Forwarding information for a VLAN, specifying the set +of ports to which all multicasts for which there is no +more specific forwarding information shall be forwarded. +This is configured statically by management or +dynamically by GMRP." +INDEX { dot1qVlanIndex } +::= { dot1qForwardUnregisteredTable 1 } + +Dot1qForwardUnregisteredEntry ::= +SEQUENCE { +dot1qForwardUnregisteredPorts +PortList, +dot1qForwardUnregisteredStaticPorts +PortList, +dot1qForwardUnregisteredForbiddenPorts +PortList +} + +dot1qForwardUnregisteredPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The complete set of ports in this VLAN to which +multicast group-addressed frames for which there is no +more specific forwarding information will be forwarded. +This includes ports for which this need has been +determined dynamically by GMRP, or configured statically +by management." +::= { dot1qForwardUnregisteredEntry 1 } + +dot1qForwardUnregisteredStaticPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports configured by management, in this +VLAN, to which multicast group-addressed frames for +which there is no more specific forwarding information +are to be forwarded. Ports entered in this list will +also appear in the complete set shown by +dot1qForwardUnregisteredPorts. This value will be +restored after the device is reset. A port may not be +added in this set if it is already a member of the set +of ports in dot1qForwardUnregisteredForbiddenPorts. The +default value is a string of zeros of appropriate +length, although this has no effect with the default +value of dot1qForwardAllStaticPorts." +::= { dot1qForwardUnregisteredEntry 2 } + +dot1qForwardUnregisteredForbiddenPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports configured by management in this VLAN +for which the Service Requirement attribute Forward +Unregistered Multicast Groups may not be dynamically +registered by GMRP. This value will be restored after +the device is reset. A port may not be added in this +set if it is already a member of the set of ports in +dot1qForwardUnregisteredStaticPorts. The default value +is a string of zeros of appropriate length." +::= { dot1qForwardUnregisteredEntry 3 } + +-- ------------------------------------------------------------- +-- The Static (Destination-Address Filtering) Database +-- ------------------------------------------------------------- + +dot1qStaticUnicastTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qStaticUnicastEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing filtering information for Unicast +MAC addresses for each Filtering Database, configured +into the device by (local or network) management +specifying the set of ports to which frames received +from specific ports and containing specific unicast +destination addresses are allowed to be forwarded. A +value of zero in this table as the port number from +which frames with a specific destination address are +received, is used to specify all ports for which there +is no specific entry in this table for that particular +destination address. Entries are valid for unicast +addresses only." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.7, +ISO/IEC 15802-3 Section 7.9.1" +::= { dot1qStatic 1 } + +dot1qStaticUnicastEntry OBJECT-TYPE +SYNTAX Dot1qStaticUnicastEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Filtering information configured into the device by +(local or network) management specifying the set of +ports to which frames received from a specific port and +containing a specific unicast destination address are +allowed to be forwarded." +INDEX { +dot1qFdbId, +dot1qStaticUnicastAddress, +dot1qStaticUnicastReceivePort +} +::= { dot1qStaticUnicastTable 1 } + +Dot1qStaticUnicastEntry ::= +SEQUENCE { +dot1qStaticUnicastAddress +MacAddress, +dot1qStaticUnicastReceivePort +INTEGER, +dot1qStaticUnicastAllowedToGoTo +PortList, +dot1qStaticUnicastStatus +INTEGER +} + +dot1qStaticUnicastAddress OBJECT-TYPE +SYNTAX MacAddress +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The destination MAC address in a frame to which this +entry's filtering information applies. This object must +take the value of a unicast address." +::= { dot1qStaticUnicastEntry 1 } + +dot1qStaticUnicastReceivePort OBJECT-TYPE +SYNTAX INTEGER (0..65535) +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Either the value '0', or the port number of the port +from which a frame must be received in order for this +entry's filtering information to apply. A value of zero +indicates that this entry applies on all ports of the +device for which there is no other applicable entry." +::= { dot1qStaticUnicastEntry 2 } + +dot1qStaticUnicastAllowedToGoTo OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports for which a frame with a specific +unicast address will be flooded in the event that it +has not been learned. It also specifies the set of +ports a specific unicast address may be dynamically +learnt on. The dot1qTpFdbTable will have an equivalent +entry with a dot1qTpFdbPort value of '0' until this +address has been learnt, when it will be updated with +the port the address has been seen on. This only +applies to ports that are members of the VLAN, defined +by dot1qVlanCurrentEgressPorts. The default value of +this object is a string of ones of appropriate length." +REFERENCE +"IEEE 802.1Q/D11 Table 8-5, ISO/IEC 15802-3 Table 7-5" +::= { dot1qStaticUnicastEntry 3 } + +dot1qStaticUnicastStatus OBJECT-TYPE +SYNTAX INTEGER { +other(1), +invalid(2), +permanent(3), +deleteOnReset(4), +deleteOnTimeout(5) +} +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"This object indicates the status of this entry. +other(1) - this entry is currently in use but +the conditions under which it will remain +so differ from the following values. +invalid(2) - writing this value to the object +removes the corresponding entry. +permanent(3) - this entry is currently in use +and will remain so after the next reset of +the bridge. +deleteOnReset(4) - this entry is currently in +use and will remain so until the next +reset of the bridge. + +deleteOnTimeout(5) - this entry is currently in +use and will remain so until it is aged out." +DEFVAL { permanent } +::= { dot1qStaticUnicastEntry 4 } + +dot1qStaticMulticastTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qStaticMulticastEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing filtering information for Multicast +and Broadcast MAC addresses for each VLAN, configured +into the device by (local or network) management +specifying the set of ports to which frames received +from specific ports and containing specific Multicast +and Broadcast destination addresses are allowed to be +forwarded. A value of zero in this table as the port +number from which frames with a specific destination +address are received, is used to specify all ports for +which there is no specific entry in this table for that +particular destination address. Entries are valid for +Multicast and Broadcast addresses only." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.7, +ISO/IEC 15802-3 Section 7.9.1" +::= { dot1qStatic 2 } + +dot1qStaticMulticastEntry OBJECT-TYPE +SYNTAX Dot1qStaticMulticastEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Filtering information configured into the device by +(local or network) management specifying the set of +ports to which frames received from this specific port +for this VLAN and containing this Multicast or Broadcast +destination address are allowed to be forwarded." +INDEX { +dot1qVlanIndex, +dot1qStaticMulticastAddress, +dot1qStaticMulticastReceivePort +} +::= { dot1qStaticMulticastTable 1 } + +Dot1qStaticMulticastEntry ::= +SEQUENCE { +dot1qStaticMulticastAddress +MacAddress, +dot1qStaticMulticastReceivePort +INTEGER, +dot1qStaticMulticastStaticEgressPorts +PortList, +dot1qStaticMulticastForbiddenEgressPorts +PortList, +dot1qStaticMulticastStatus +INTEGER +} + +dot1qStaticMulticastAddress OBJECT-TYPE +SYNTAX MacAddress +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The destination MAC address in a frame to which this +entry's filtering information applies. This object must +take the value of a Multicast or Broadcast address." +::= { dot1qStaticMulticastEntry 1 } + +dot1qStaticMulticastReceivePort OBJECT-TYPE +SYNTAX INTEGER (0..65535) +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Either the value '0', or the port number of the port +from which a frame must be received in order for this +entry's filtering information to apply. A value of zero +indicates that this entry applies on all ports of the +device for which there is no other applicable entry." +::= { dot1qStaticMulticastEntry 2 } + +dot1qStaticMulticastStaticEgressPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports to which frames received from a +specific port and destined for a specific Multicast or +Broadcast MAC address must be forwarded, regardless of +any dynamic information e.g. from GMRP. A port may not +be added in this set if it is already a member of the +set of ports in dot1qStaticMulticastForbiddenEgressPorts. +The default value of this object is a string of ones of +appropriate length." +::= { dot1qStaticMulticastEntry 3 } + +dot1qStaticMulticastForbiddenEgressPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The set of ports to which frames received from a +specific port and destined for a specific Multicast or +Broadcast MAC address must not be forwarded, regardless +of any dynamic information e.g. from GMRP. A port may +not be added in this set if it is already a member of the +set of ports in dot1qStaticMulticastStaticEgressPorts. +The default value of this object is a string of zeros of +appropriate length." +::= { dot1qStaticMulticastEntry 4 } + +dot1qStaticMulticastStatus OBJECT-TYPE +SYNTAX INTEGER { +other(1), +invalid(2), +permanent(3), +deleteOnReset(4), +deleteOnTimeout(5) +} +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"This object indicates the status of this entry. +other(1) - this entry is currently in use but +the conditions under which it will remain +so differ from the following values. +invalid(2) - writing this value to the object +removes the corresponding entry. +permanent(3) - this entry is currently in use +and will remain so after the next reset of +the bridge. + +deleteOnReset(4) - this entry is currently in +use and will remain so until the next +reset of the bridge. +deleteOnTimeout(5) - this entry is currently in +use and will remain so until it is aged out." +DEFVAL { permanent } +::= { dot1qStaticMulticastEntry 5 } + +-- ------------------------------------------------------------- +-- The Current VLAN Database +-- ------------------------------------------------------------- + +dot1qVlanNumDeletes OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times a VLAN entry has been deleted from +the dot1qVlanCurrentTable (for any reason). If an entry +is deleted, then inserted, and then deleted, this +counter will be incremented by 2." +::= { dot1qVlan 1 } + +dot1qVlanCurrentTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qVlanCurrentEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing current configuration information +for each VLAN currently configured into the device by +(local or network) management, or dynamically created +as a result of GVRP requests received." +::= { dot1qVlan 2 } + +dot1qVlanCurrentEntry OBJECT-TYPE +SYNTAX Dot1qVlanCurrentEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Information for a VLAN configured into the device by +(local or network) management, or dynamically created +as a result of GVRP requests received." +INDEX { dot1qVlanTimeMark, dot1qVlanIndex } +::= { dot1qVlanCurrentTable 1 } + +Dot1qVlanCurrentEntry ::= +SEQUENCE { +dot1qVlanTimeMark +TimeFilter, +dot1qVlanIndex +VlanIndex, +dot1qVlanFdbId +Unsigned32, +dot1qVlanCurrentEgressPorts +PortList, +dot1qVlanCurrentUntaggedPorts +PortList, +dot1qVlanStatus +INTEGER, +dot1qVlanCreationTime +TimeTicks +} + +dot1qVlanTimeMark OBJECT-TYPE +SYNTAX TimeFilter +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A TimeFilter for this entry. See the TimeFilter +textual convention to see how this works." +::= { dot1qVlanCurrentEntry 1 } + +dot1qVlanIndex OBJECT-TYPE +SYNTAX VlanIndex +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The VLAN-ID or other identifier refering to this VLAN." +::= { dot1qVlanCurrentEntry 2 } + +dot1qVlanFdbId OBJECT-TYPE +SYNTAX Unsigned32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The Filtering Database used by this VLAN. This is one +of the dot1qFdbId values in the dot1qFdbTable. This +value is allocated automatically by the device whenever +the VLAN is created: either dynamically by GVRP, or by +management, in dot1qVlanStaticTable. Allocation of this +value follows the learning constraints defined for this +VLAN in dot1qLearningConstraintsTable." +::= { dot1qVlanCurrentEntry 3 } + +dot1qVlanCurrentEgressPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The set of ports which are transmitting traffic for +this VLAN as either tagged or untagged frames." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.2.1" +::= { dot1qVlanCurrentEntry 4 } + +dot1qVlanCurrentUntaggedPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The set of ports which are transmitting traffic for +this VLAN as untagged frames." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.2.1" +::= { dot1qVlanCurrentEntry 5 } + +dot1qVlanStatus OBJECT-TYPE +SYNTAX INTEGER { +other(1), +permanent(2), +dynamicGvrp(3) +} +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"This object indicates the status of this entry. +other(1) - this entry is currently in use but the +conditions under which it will remain so differ +from the following values. +permanent(2) - this entry, corresponding to an entry +in dot1qVlanStaticTable, is currently in use and +will remain so after the next reset of the +device. The port lists for this entry include +ports from the equivalent dot1qVlanStaticTable +entry and ports learnt dynamically. +dynamicGvrp(3) - this entry is currently in use +and will remain so until removed by GVRP. There +is no static entry for this VLAN and it will be +removed when the last port leaves the VLAN." +::= { dot1qVlanCurrentEntry 6 } + +dot1qVlanCreationTime OBJECT-TYPE +SYNTAX TimeTicks +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The value of sysUpTime when this VLAN was created." +::= { dot1qVlanCurrentEntry 7 } + +-- ------------------------------------------------------------- +-- The Static VLAN Database +-- ------------------------------------------------------------- + +dot1qVlanStaticTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qVlanStaticEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing static configuration information for +each VLAN configured into the device by (local or +network) management. All entries are permanent and will +be restored after the device is reset." +::= { dot1qVlan 3 } + +dot1qVlanStaticEntry OBJECT-TYPE +SYNTAX Dot1qVlanStaticEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Static information for a VLAN configured into the +device by (local or network) management." +INDEX { dot1qVlanIndex } +::= { dot1qVlanStaticTable 1 } + +Dot1qVlanStaticEntry ::= +SEQUENCE { +dot1qVlanStaticName +SnmpAdminString, +dot1qVlanStaticEgressPorts +PortList, +dot1qVlanForbiddenEgressPorts +PortList, + +dot1qVlanStaticUntaggedPorts +PortList, +dot1qVlanStaticRowStatus +RowStatus +} + +dot1qVlanStaticName OBJECT-TYPE +SYNTAX SnmpAdminString (SIZE (0..32)) +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"An administratively assigned string, which may be used +to identify the VLAN." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.2.1" +::= { dot1qVlanStaticEntry 1 } + +dot1qVlanStaticEgressPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"The set of ports which are permanently assigned to the +egress list for this VLAN by management. Changes to a +bit in this object affect the per-port per-VLAN +Registrar control for Registration Fixed for the +relevant GVRP state machine on each port. A port may +not be added in this set if it is already a member of +the set of ports in dot1qVlanForbiddenEgressPorts. The +default value of this object is a string of zeros of +appropriate length, indicating not fixed." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3" +::= { dot1qVlanStaticEntry 2 } + +dot1qVlanForbiddenEgressPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"The set of ports which are prohibited by management +from being included in the egress list for this VLAN. +Changes to this object that cause a port to be included +or excluded affect the per-port per-VLAN Registrar +control for Registration Forbidden for the relevant GVRP +state machine on each port. A port may not be added in +this set if it is already a member of the set of ports +in dot1qVlanStaticEgressPorts. The default value of +this object is a string of zeros of appropriate length, +excluding all ports from the forbidden set." +REFERENCE +"IEEE 802.1Q/D11 Section 12.7.7.3, 11.2.3.2.3" +::= { dot1qVlanStaticEntry 3 } + +dot1qVlanStaticUntaggedPorts OBJECT-TYPE +SYNTAX PortList +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"The set of ports which should transmit egress packets +for this VLAN as untagged. The default value of this +object for the default VLAN (dot1qVlanIndex = 1) is a string +of appropriate length including all ports. There is no +specified default for other VLANs. If a device agent cannot +support the set of ports being set then it will reject the +set operation with an error. An example might be if a +manager attempts to set more than one VLAN to be untagged +on egress where the device does not support this IEEE 802.1Q +option." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.2.1" +::= { dot1qVlanStaticEntry 4 } + +dot1qVlanStaticRowStatus OBJECT-TYPE +SYNTAX RowStatus +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"This object indicates the status of this entry." +::= { dot1qVlanStaticEntry 5 } + +dot1qNextFreeLocalVlanIndex OBJECT-TYPE +SYNTAX INTEGER (0|4096..2147483647) +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The next available value for dot1qVlanIndex of a local +VLAN entry in dot1qVlanStaticTable. This will report +values >=4096 if a new Local VLAN may be created or else +the value 0 if this is not possible. +A row creation operation in this table for an entry with a local +VlanIndex value may fail if the current value of this object +is not used as the index. Even if the value read is used, +there is no guarantee that it will still be the valid index +when the create operation is attempted - another manager may +have already got in during the intervening time interval. +In this case, dot1qNextFreeLocalVlanIndex should be re-read +and the creation re-tried with the new value. + +This value will automatically change when the current value is +used to create a new row." +::= { dot1qVlan 4 } + +-- ------------------------------------------------------------- +-- The VLAN Port Configuration Table +-- ------------------------------------------------------------- + +dot1qPortVlanTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qPortVlanEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing per port control and status +information for VLAN configuration in the device." +::= { dot1qVlan 5 } + +dot1qPortVlanEntry OBJECT-TYPE +SYNTAX Dot1qPortVlanEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Information controlling VLAN configuration for a port +on the device. This is indexed by dot1dBasePort." +AUGMENTS { dot1dBasePortEntry } +::= { dot1qPortVlanTable 1 } + +Dot1qPortVlanEntry ::= +SEQUENCE { +dot1qPvid +VlanIndex, +dot1qPortAcceptableFrameTypes +INTEGER, +dot1qPortIngressFiltering +TruthValue, +dot1qPortGvrpStatus +EnabledStatus, + +dot1qPortGvrpFailedRegistrations +Counter32, +dot1qPortGvrpLastPduOrigin +MacAddress +} + +dot1qPvid OBJECT-TYPE +SYNTAX VlanIndex +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The PVID, the VLAN ID assigned to untagged frames or +Priority-Tagged frames received on this port." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.1.1" +DEFVAL { 1 } +::= { dot1qPortVlanEntry 1 } + +dot1qPortAcceptableFrameTypes OBJECT-TYPE +SYNTAX INTEGER { +admitAll(1), +admitOnlyVlanTagged(2) +} +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"When this is admitOnlyVlanTagged(2) the device will +discard untagged frames or Priority-Tagged frames +received on this port. When admitAll(1), untagged +frames or Priority-Tagged frames received on this port +will be accepted and assigned to the PVID for this port. + +This control does not affect VLAN independent BPDU +frames, such as GVRP and STP. It does affect VLAN +dependent BPDU frames, such as GMRP." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.1.3" +DEFVAL { admitAll } +::= { dot1qPortVlanEntry 2 } + +dot1qPortIngressFiltering OBJECT-TYPE +SYNTAX TruthValue +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"When this is true(1) the device will discard incoming +frames for VLANs which do not include this Port in its +Member set. When false(2), the port will accept all +incoming frames. + +This control does not affect VLAN independent BPDU +frames, such as GVRP and STP. It does affect VLAN +dependent BPDU frames, such as GMRP." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.1.4" +DEFVAL { false } +::= { dot1qPortVlanEntry 3 } + +dot1qPortGvrpStatus OBJECT-TYPE +SYNTAX EnabledStatus +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The state of GVRP operation on this port. The value +enabled(1) indicates that GVRP is enabled on this port, +as long as dot1qGvrpStatus is also enabled for this +device. When disabled(2) but dot1qGvrpStatus is still +enabled for the device, GVRP is disabled on this port: +any GVRP packets received will be silently discarded and +no GVRP registrations will be propagated from other +ports. This object affects all GVRP Applicant and +Registrar state machines on this port. A transition +from disabled(2) to enabled(1) will cause a reset of all +GVRP state machines on this port." +DEFVAL { enabled } +::= { dot1qPortVlanEntry 4 } + +dot1qPortGvrpFailedRegistrations OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The total number of failed GVRP registrations, for any +reason, on this port." +::= { dot1qPortVlanEntry 5 } + +dot1qPortGvrpLastPduOrigin OBJECT-TYPE +SYNTAX MacAddress +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The Source MAC Address of the last GVRP message +received on this port." +::= { dot1qPortVlanEntry 6 } + +-- ------------------------------------------------------------- +-- Per port VLAN Statistics Table +-- ------------------------------------------------------------- + +dot1qPortVlanStatisticsTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qPortVlanStatisticsEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing per-port, per-VLAN statistics for +traffic received. Separate objects are provided for both the +most-significant and least-significant bits of statistics +counters for ports that are associated with this transparent +bridge. The most-significant bit objects are only required on +high capacity interfaces, as defined in the conformance clauses +for these objects. This mechanism is provided as a way to read +64-bit counters for agents which support only SNMPv1. + +Note that the reporting of most-significant and least- +significant counter bits separately runs the risk of missing +an overflow of the lower bits in the interval between sampling. +The manager must be aware of this possibility, even within the +same varbindlist, when interpreting the results of a request or +asynchronous notification." +::= { dot1qVlan 6 } + +dot1qPortVlanStatisticsEntry OBJECT-TYPE +SYNTAX Dot1qPortVlanStatisticsEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Traffic statistics for a VLAN on an interface." +INDEX { dot1dBasePort, dot1qVlanIndex } +::= { dot1qPortVlanStatisticsTable 1 } + +Dot1qPortVlanStatisticsEntry ::= +SEQUENCE { +dot1qTpVlanPortInFrames +Counter32, +dot1qTpVlanPortOutFrames +Counter32, +dot1qTpVlanPortInDiscards +Counter32, +dot1qTpVlanPortInOverflowFrames +Counter32, +dot1qTpVlanPortOutOverflowFrames +Counter32, +dot1qTpVlanPortInOverflowDiscards +Counter32 +} + +dot1qTpVlanPortInFrames OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of valid frames received by this port from +its segment which were classified as belonging to this +VLAN. Note that a frame received on this port is +counted by this object if and only if it is for a +protocol being processed by the local forwarding process +for this VLAN. This object includes received bridge +management frames classified as belonging to this VLAN +(e.g. GMRP, but not GVRP or STP)." +REFERENCE +"IEEE 802.1Q/D11 Section 12.6.1.1.3(a)" +::= { dot1qPortVlanStatisticsEntry 1 } + +dot1qTpVlanPortOutFrames OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of valid frames transmitted by this port to +its segment from the local forwarding process for this +VLAN. This includes bridge management frames originated +by this device which are classified as belonging to this +VLAN (e.g. GMRP, but not GVRP or STP)." +REFERENCE +"IEEE 802.1Q/D11 Section 12.6.1.1.3(d)" +::= { dot1qPortVlanStatisticsEntry 2 } + +dot1qTpVlanPortInDiscards OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of valid frames received by this port from +its segment which were classified as belonging to this +VLAN which were discarded due to VLAN related reasons. +Specifically, the IEEE 802.1Q counters for Discard +Inbound and Discard on Ingress Filtering." +REFERENCE +"IEEE 802.1Q/D11 Section 12.6.1.1.3" +::= { dot1qPortVlanStatisticsEntry 3 } + +dot1qTpVlanPortInOverflowFrames OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times the associated +dot1qTpVlanPortInFrames counter has overflowed." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1qPortVlanStatisticsEntry 4 } + +dot1qTpVlanPortOutOverflowFrames OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times the associated +dot1qTpVlanPortOutFrames counter has overflowed." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1qPortVlanStatisticsEntry 5 } + +dot1qTpVlanPortInOverflowDiscards OBJECT-TYPE +SYNTAX Counter32 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of times the associated +dot1qTpVlanPortInDiscards counter has overflowed." +REFERENCE +"ISO/IEC 15802-3 Section 14.6.1.1.3" +::= { dot1qPortVlanStatisticsEntry 6 } + +dot1qPortVlanHCStatisticsTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qPortVlanHCStatisticsEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing per port, per VLAN statistics for +traffic on high capacity interfaces." +::= { dot1qVlan 7 } + +dot1qPortVlanHCStatisticsEntry OBJECT-TYPE +SYNTAX Dot1qPortVlanHCStatisticsEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"Traffic statistics for a VLAN on a high capacity +interface." +INDEX { dot1dBasePort, dot1qVlanIndex } +::= { dot1qPortVlanHCStatisticsTable 1 } + +Dot1qPortVlanHCStatisticsEntry ::= +SEQUENCE { +dot1qTpVlanPortHCInFrames +Counter64, +dot1qTpVlanPortHCOutFrames +Counter64, +dot1qTpVlanPortHCInDiscards +Counter64 +} + +dot1qTpVlanPortHCInFrames OBJECT-TYPE +SYNTAX Counter64 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of valid frames received by this port from +its segment which were classified as belonging to this +VLAN. Note that a frame received on this port is +counted by this object if and only if it is for a +protocol being processed by the local forwarding process +for this VLAN. This object includes received bridge +management frames classified as belonging to this VLAN +(e.g. GMRP, but not GVRP or STP)." +REFERENCE +"IEEE 802.1Q/D11 Section 12.6.1.1.3(a)" +::= { dot1qPortVlanHCStatisticsEntry 1 } + +dot1qTpVlanPortHCOutFrames OBJECT-TYPE +SYNTAX Counter64 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of valid frames transmitted by this port to +its segment from the local forwarding process for this +VLAN. This includes bridge management frames originated +by this device which are classified as belonging to this +VLAN (e.g. GMRP, but not GVRP or STP)." +REFERENCE +"IEEE 802.1Q/D11 Section 12.6.1.1.3(d)" +::= { dot1qPortVlanHCStatisticsEntry 2 } + +dot1qTpVlanPortHCInDiscards OBJECT-TYPE +SYNTAX Counter64 +MAX-ACCESS read-only +STATUS current +DESCRIPTION +"The number of valid frames received by this port from +its segment which were classified as belonging to this +VLAN which were discarded due to VLAN related reasons. +Specifically, the IEEE 802.1Q counters for Discard +Inbound and Discard on Ingress Filtering." +REFERENCE +"IEEE 802.1Q/D11 Section 12.6.1.1.3" +::= { dot1qPortVlanHCStatisticsEntry 3 } + +-- ------------------------------------------------------------- +-- The VLAN Learning Constraints Table +-- ------------------------------------------------------------- + +dot1qLearningConstraintsTable OBJECT-TYPE +SYNTAX SEQUENCE OF Dot1qLearningConstraintsEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A table containing learning constraints for sets of +Shared and Independendent VLANs." +REFERENCE +"IEEE 802.1Q/D11 Section 12.10.3.1" +::= { dot1qVlan 8 } + +dot1qLearningConstraintsEntry OBJECT-TYPE +SYNTAX Dot1qLearningConstraintsEntry +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"A learning constraint defined for a VLAN." +INDEX { dot1qConstraintVlan, dot1qConstraintSet } +::= { dot1qLearningConstraintsTable 1 } + +Dot1qLearningConstraintsEntry ::= +SEQUENCE { +dot1qConstraintVlan +VlanIndex, +dot1qConstraintSet +INTEGER, +dot1qConstraintType +INTEGER, +dot1qConstraintStatus +RowStatus +} + +dot1qConstraintVlan OBJECT-TYPE +SYNTAX VlanIndex +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The index of the row in dot1qVlanCurrentTable for the +VLAN constrained by this entry." +::= { dot1qLearningConstraintsEntry 1 } + +dot1qConstraintSet OBJECT-TYPE +SYNTAX INTEGER (0..65535) +MAX-ACCESS not-accessible +STATUS current +DESCRIPTION +"The identity of the constraint set to which +dot1qConstraintVlan belongs. These values may be chosen +by the management station." +::= { dot1qLearningConstraintsEntry 2 } + +dot1qConstraintType OBJECT-TYPE +SYNTAX INTEGER { +independent(1), +shared(2) +} +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"The type of constraint this entry defines. +independent(1) - the VLAN, dot1qConstraintVlan, +uses an independent filtering database from all +other VLANs in the same set, defined by +dot1qConstraintSet. +shared(2) - the VLAN, dot1qConstraintVlan, shares +the same filtering database as all other VLANs +in the same set, defined by dot1qConstraintSet." +::= { dot1qLearningConstraintsEntry 3 } + +dot1qConstraintStatus OBJECT-TYPE +SYNTAX RowStatus +MAX-ACCESS read-create +STATUS current +DESCRIPTION +"The status of this entry." +::= { dot1qLearningConstraintsEntry 4 } + +dot1qConstraintSetDefault OBJECT-TYPE +SYNTAX INTEGER (0..65535) +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The identity of the constraint set to which a VLAN +belongs, if there is not an explicit entry for that VLAN +in dot1qLearningConstraintsTable." +::= { dot1qVlan 9 } + +dot1qConstraintTypeDefault OBJECT-TYPE +SYNTAX INTEGER { +independent(1), +shared(2) +} +MAX-ACCESS read-write +STATUS current +DESCRIPTION +"The type of constraint set to which a VLAN belongs, if +there is not an explicit entry for that VLAN in +dot1qLearningConstraintsTable. The types are as defined +for dot1qConstraintType." +::= { dot1qVlan 10 } + +-- ------------------------------------------------------------- +-- IEEE 802.1Q MIB - Conformance Information +-- ------------------------------------------------------------- + +qBridgeConformance OBJECT IDENTIFIER ::= { qBridgeMIB 2 } + +qBridgeGroups OBJECT IDENTIFIER ::= { qBridgeConformance 1 } + +qBridgeCompliances OBJECT IDENTIFIER +::= { qBridgeConformance 2 } + +-- ------------------------------------------------------------- +-- units of conformance +-- ------------------------------------------------------------- + +qBridgeBaseGroup OBJECT-GROUP +OBJECTS { +dot1qVlanVersionNumber, +dot1qMaxVlanId, +dot1qMaxSupportedVlans, +dot1qNumVlans, +dot1qGvrpStatus +} +STATUS current +DESCRIPTION +"A collection of objects providing device level control +and status information for the Virtual LAN bridge +services." +::= { qBridgeGroups 1 } + +qBridgeFdbUnicastGroup OBJECT-GROUP +OBJECTS { +dot1qFdbDynamicCount, +dot1qTpFdbPort, +dot1qTpFdbStatus +} +STATUS current +DESCRIPTION +"A collection of objects providing information about all +unicast addresses, learnt dynamically or statically +configured by management, in each Filtering Database." +::= { qBridgeGroups 2 } + +qBridgeFdbMulticastGroup OBJECT-GROUP +OBJECTS { +dot1qTpGroupEgressPorts, +dot1qTpGroupLearnt +} +STATUS current +DESCRIPTION +"A collection of objects providing information about all +multicast addresses, learnt dynamically or statically +configured by management, in each Filtering Database." +::= { qBridgeGroups 3 } + +qBridgeServiceRequirementsGroup OBJECT-GROUP +OBJECTS { +dot1qForwardAllPorts, +dot1qForwardAllStaticPorts, +dot1qForwardAllForbiddenPorts, +dot1qForwardUnregisteredPorts, +dot1qForwardUnregisteredStaticPorts, +dot1qForwardUnregisteredForbiddenPorts +} +STATUS current +DESCRIPTION +"A collection of objects providing information about +service requirements, learnt dynamically or statically +configured by management, in each Filtering Database." +::= { qBridgeGroups 4 } + +qBridgeFdbStaticGroup OBJECT-GROUP +OBJECTS { +dot1qStaticUnicastAllowedToGoTo, +dot1qStaticUnicastStatus, +dot1qStaticMulticastStaticEgressPorts, +dot1qStaticMulticastForbiddenEgressPorts, +dot1qStaticMulticastStatus +} +STATUS current +DESCRIPTION +"A collection of objects providing information about +unicast and multicast addresses statically configured by +management, in each Filtering Database or VLAN." +::= { qBridgeGroups 5 } + +qBridgeVlanGroup OBJECT-GROUP +OBJECTS { +dot1qVlanNumDeletes, +dot1qVlanFdbId, +dot1qVlanCurrentEgressPorts, +dot1qVlanCurrentUntaggedPorts, +dot1qVlanStatus, +dot1qVlanCreationTime +} +STATUS current +DESCRIPTION +"A collection of objects providing information about +all VLANs currently configured on this device." +::= { qBridgeGroups 6 } + +qBridgeVlanStaticGroup OBJECT-GROUP +OBJECTS { +dot1qVlanStaticName, +dot1qVlanStaticEgressPorts, +dot1qVlanForbiddenEgressPorts, +dot1qVlanStaticUntaggedPorts, +dot1qVlanStaticRowStatus, +dot1qNextFreeLocalVlanIndex +} +STATUS current +DESCRIPTION +"A collection of objects providing information about +VLANs statically configured by management." +::= { qBridgeGroups 7 } + +qBridgePortGroup OBJECT-GROUP +OBJECTS { +dot1qPvid, +dot1qPortAcceptableFrameTypes, +dot1qPortIngressFiltering, +dot1qPortGvrpStatus, +dot1qPortGvrpFailedRegistrations, +dot1qPortGvrpLastPduOrigin +} +STATUS current +DESCRIPTION +"A collection of objects providing port level VLAN +control and status information for all ports." +::= { qBridgeGroups 8 } + +qBridgeVlanStatisticsGroup OBJECT-GROUP +OBJECTS { +dot1qTpVlanPortInFrames, +dot1qTpVlanPortOutFrames, +dot1qTpVlanPortInDiscards +} +STATUS current +DESCRIPTION +"A collection of objects providing per-port packet +statistics for all VLANs currently configured on this +device." +::= { qBridgeGroups 9 } + +qBridgeVlanStatisticsOverflowGroup OBJECT-GROUP +OBJECTS { +dot1qTpVlanPortInOverflowFrames, +dot1qTpVlanPortOutOverflowFrames, +dot1qTpVlanPortInOverflowDiscards +} +STATUS current +DESCRIPTION +"A collection of objects providing overflow counters for +per-port packet statistics for all VLANs currently configured +on this device for high capacity interfaces, defined as those +that have the value of the corresponding instance of +ifSpeed greater than 650,000,000 bits/second." +::= { qBridgeGroups 10 } + +qBridgeVlanHCStatisticsGroup OBJECT-GROUP +OBJECTS { +dot1qTpVlanPortHCInFrames, +dot1qTpVlanPortHCOutFrames, +dot1qTpVlanPortHCInDiscards +} +STATUS current +DESCRIPTION +"A collection of objects providing per-port packet +statistics for all VLANs currently configured on this +device for high capacity interfaces, defined as those +that have the value of the corresponding instance of +ifSpeed greater than 650,000,000 bits/second." +::= { qBridgeGroups 11 } + +qBridgeLearningConstraintsGroup OBJECT-GROUP +OBJECTS { +dot1qConstraintType, +dot1qConstraintStatus +} +STATUS current +DESCRIPTION +"A collection of objects defining the Filtering Database +constraints all VLANs have with each other." +::= { qBridgeGroups 12 } + +qBridgeLearningConstraintDefaultGroup OBJECT-GROUP +OBJECTS { +dot1qConstraintSetDefault, +dot1qConstraintTypeDefault +} +STATUS current +DESCRIPTION +"A collection of objects defining the default Filtering +Database constraints for VLANs which have no specific +constraints defined." +::= { qBridgeGroups 13 } + +-- ------------------------------------------------------------- +-- compliance statements +-- ------------------------------------------------------------- + +qBridgeCompliance MODULE-COMPLIANCE +STATUS current +DESCRIPTION +"The compliance statement for device support of Virtual +LAN Bridge services." + +MODULE +MANDATORY-GROUPS { +qBridgeBaseGroup, +qBridgeVlanGroup, +qBridgeVlanStaticGroup, +qBridgePortGroup +} + +GROUP qBridgeFdbUnicastGroup +DESCRIPTION +"This group is mandatory for bridges that implement +802.1Q transparent bridging." + +GROUP qBridgeFdbMulticastGroup +DESCRIPTION +"This group is mandatory for bridges that implement +802.1Q transparent bridging." + +GROUP qBridgeServiceRequirementsGroup +DESCRIPTION +"This group is mandatory for bridges that implement +extended filtering services. All objects must be +read-write if extended-filtering services are +enabled." + +GROUP qBridgeFdbStaticGroup +DESCRIPTION +"This group is optional." + +GROUP qBridgeVlanStatisticsGroup +DESCRIPTION +"This group is optional as there may be significant +implementation cost associated with its support." + +GROUP qBridgeVlanStatisticsOverflowGroup +DESCRIPTION +"This group is optional as there may be significant +implementation cost associated with its support. It is most +relevant for high capacity interfaces where the SNMP agent +supports only SNMPv1." + +GROUP qBridgeVlanHCStatisticsGroup +DESCRIPTION +"This group is optional as there may be significant +implementation cost associated with its support. It is most +relevant for high capacity interfaces." + +GROUP qBridgeLearningConstraintsGroup +DESCRIPTION +"This group is mandatory for devices implementing +both Independent VLAN Learning (IVL) and Shared +VLAN Learning (SVL) modes of operation of the +filtering database, as defined by IEEE 802.1Q." + +GROUP qBridgeLearningConstraintDefaultGroup +DESCRIPTION +"This group is mandatory for devices implementing +both Independent VLAN Learning (IVL) and Shared +VLAN Learning (SVL) modes of operation of the +filtering database, as defined by IEEE 802.1Q." + +OBJECT dot1qPortAcceptableFrameTypes +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required as this is an optional +capability in IEEE 802.1Q." + +OBJECT dot1qPortIngressFiltering +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required as this is an optional +capability in IEEE 802.1Q." + +OBJECT dot1qConstraintSetDefault +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required as this is an optional +capability in IEEE 802.1Q." + +OBJECT dot1qConstraintTypeDefault +MIN-ACCESS read-only +DESCRIPTION +"Write access is not required as this is an optional +capability in IEEE 802.1Q." + +::= { qBridgeCompliances 1 } + +END diff --git a/pandora_console/attachment/mibs/RAPID-CITY.mib b/pandora_console/attachment/mibs/RAPID-CITY.mib new file mode 100644 index 0000000000..87fc26969f --- /dev/null +++ b/pandora_console/attachment/mibs/RAPID-CITY.mib @@ -0,0 +1,4649 @@ +RAPID-CITY DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Gauge32, Counter32, Integer32, + enterprises, IpAddress, TimeTicks + FROM SNMPv2-SMI + TEXTUAL-CONVENTION, RowStatus, TruthValue, MacAddress, DisplayString + FROM SNMPv2-TC + InterfaceIndex + FROM IF-MIB + SnmpAdminString,SnmpSecurityLevel,SnmpSecurityModel + FROM SNMP-FRAMEWORK-MIB + InetAddressType, InetAddress, InetPortNumber, InetAddressPrefixLength + FROM INET-ADDRESS-MIB + Ipv6Address + FROM IPV6-TC; + +rapidCity MODULE-IDENTITY + LAST-UPDATED "200510210000Z" + ORGANIZATION "Bay Networks, Rapid-City Group" + CONTACT-INFO "Yu-Ten Lee + Postal: Nortel Networks, Inc. + 4655 Great America Parkway + Santa Clara, CA 95052-8185 + + Tel: 408-495-2560 + Fax: 408-495-6680 + E-mail: ylee@baynetworks.com" + + DESCRIPTION "Enterprise MIB for the Accelar product family." + + REVISION "200510210000Z" + DESCRIPTION "Verion 46: Added new mibs rcFlowClassifier for 1600" + + REVISION "200509300000Z" -- 30 Sep 2005 + DESCRIPTION "Version 45: Modified rcSysDnsServerListTable, sorted objects in rcChassis, & added rcChasSystemMonitorEnable" + + REVISION "200509200000Z" -- 20 Sep 2005 + DESCRIPTION "Version 44: Added Ipv6 attributes to various tables" + + REVISION "200509090000Z" -- 09 Sep 2005 + DESCRIPTION "Version 43: Added rcSysVirtualIpv6PrefixLength & rcSysVirtualIpv6Addr" + + REVISION "200508290000Z" -- 29 Aug 2005 + DESCRIPTION "Version 42: Added rcIsis & rcSlpp" + + REVISION "200507270000Z" -- 27 July 2005 + DESCRIPTION "Version 41. Increased range for rcCardIndex" + + REVISION "200507190000Z" -- 19 Jul 2005 + DESCRIPTION "Version 40. Added rcSysAccPolSnmpGrpTable.Included snmp-v3 under + access policy service, removed the default value" + + REVISION "200506020000Z" -- 02 Jun 2005 + DESCRIPTION "Version 39. Added rcChasMcastCheckPktEnable." + + REVISION "200505060000Z" -- 06 May 2005 + DESCRIPTION "Version 39. Added rcSysFrcMsgControlTable." + + REVISION "200504270000Z" -- 27 Apr 2005 + DESCRIPTION "Version 38. Allow 0 length rsa and dsa key sizes." + + REVISION "200504210000Z" -- 21 Apr 2005 + DESCRIPTION "Version 37. Fixed typos, added rcIpfix." + + REVISION "200504140000Z" -- 14 Apr 2005 + DESCRIPTION "Version 36. Modified rcSysAccessPolicyService & + rcSyslogHostSeverity mib objects." + + REVISION "200503210000Z" -- 21 Mar 2005 + DESCRIPTION "Version 35: added rcLacpGlobalVlacpMulticastMACAddress." + + REVISION "200502220000Z" -- 22 Feb 2005 + DESCRIPTION "Version 34: Changed PortSet definition" + + REVISION "200502181200Z" -- 18 Feb 2005 + DESCRIPTION "Version 33: Added support for Tacacs" + + REVISION "200502171200Z" -- 17 Feb 2005 + DESCRIPTION "Version 32: Updated teritory to tertiary" + + REVISION "200502150000Z" -- 15 Feb 2005 + DESCRIPTION "Version 31: Added rcEsu1800dc" + + REVISION "200502110000Z" -- 11 Feb 2005 + DESCRIPTION "Version 30: Added rcSystem 92 & 93" + + REVISION "200502040000Z" -- 04 Feb 2005 + DESCRIPTION "Version 29: Changed range of rcSysVersion, rcCardSerialNumber, + rcChasPowerSupplyDetailSerialNumber, + rcChasPowerSupplyDetailHardwareRevision, + rcChasPowerSupplyDetailPartNumber, + rcCardSerialNumber" + + REVISION "200501160000Z" -- 16 January 2005 + DESCRIPTION "Version 28: Added rcSysPowerUsage and rcSysPowerAvailable" + + REVISION "200412210000Z" -- 21 December 2004 + DESCRIPTION "Version 27: Deprecated rcSysAction. Added + rcSysExtCplimitSysOctapidCongested, + rcSysExtCplimitPortsMonitored, + rcSysExtCplimitPortsShutDown, + rcSysActionL1, rcSysActionL2, + rcSysActionL3, rcSysActionRwa " + + REVISION "200411230000Z" -- 23 November 2004 + DESCRIPTION "Version 26: Added rcEsu1850 and rcEsu1850dc for ESU device" + + REVISION "200411110000Z" -- 11 November 2004 + DESCRIPTION "Version 25: Cleaned up REVISIONs and fixed typo." + + REVISION "200411040000Z" -- 04 November 2004 + DESCRIPTION "Version 24: Added rcSysExtCplimitEnable,rcSysExtCplimitMinCongTime, + rcSysExtCplimitMaxPorts, rcSysExtCplimitPortCongTime, + rcSysExtCplimitTrapLevel." + + REVISION "200409300000Z" -- 30 September 2004 + DESCRIPTION "Version 22: Fixed type mismatch for mib + rcSysDnsServerListRequestCount/SuccessCount" + + REVISION "200409280000Z" -- 28 September 2004 + DESCRIPTION "Version 21: Update enum value for mib rcSysDnsServerListType, + update syntax type for RequestCount, SuccessCount, + change rcRepeaterTable OID and add new mib + rcChasNewGlobalFilterOrderingEnable." + + REVISION "200409230000Z" -- 23 September 2004 + DESCRIPTION "Version 20: Add range for rcAgentId." + + REVISION "200409210000Z" -- 21 September 2004 + DESCRIPTION "Version 19: Remove range for rcAgentId." + + REVISION "200409130001Z" -- 13 September 2004 + DESCRIPTION "Version 18: Added rcCliRWEnable, rcCliRWL1Enable, rcCliRWL2Enable, + rcCliRWL3Enable, rcCliROEnable." + + REVISION "200409130000Z" -- 13 September 2004 + DESCRIPTION "Version 17: Added rcSysAutoRecoverDelay, rcSysMacFlapLimitTime, + rcSysMacFlapLimitCount" + + REVISION "200408310000Z" -- 31 August 2004 + DESCRIPTION "Version 16: Change rcVlacpPeerMacAddressMltIds to + rcVlacpPeerMacAddressMltId with SYNTAX INTEGER and + rcVlacpPeerMacAddressPort with SYNTAX InterfaceIndex" + + REVISION "200407070000Z" -- 07 July 2004 + DESCRIPTION "Version 15: Added rcVlacpPeerMacAddressTable" + + REVISION "200407060000Z" -- 06 July 2004 + DESCRIPTION "Version 14: Added Poe card type poe1400WPS(0x109e3100)" + + REVISION "200406240000Z" -- 24 June 2004 + DESCRIPTION "Version 13: Added rcSysSpanningTreeOperMode and + rcSysSpanningTreeAdminMode" + + REVISION "200406110000Z" -- 11 June 2004 + DESCRIPTION "Version 12: Added rcChasRspMode, rcChasRspOperMode, + and rcChasRspModeError objects" + + ::= { enterprises 2272 } + +-- +-- Textual Conventions +-- + +EnableValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "Enable/Disable value." + SYNTAX INTEGER { enable(1), disable(2) } + +PortSet ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The string is 88 octets long, for a total of 704 bits. Each bit + corresponds to a port, as represented by its ifIndex value . When a + bit has the value one(1), the corresponding port is a member of the + set. When a bit has the value zero(0), the corresponding port is not + a member of the set. The encoding is such that the most significant + bit of octet #1 corresponds to ifIndex 0, while the least significant + bit of octet #88 corresponds to ifIndex 703. In order to accommodate + future uses of this the string has a max size of 255 bytes." + SYNTAX OCTET STRING (SIZE (0..255)) + +IdList ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "" + SYNTAX OCTET STRING (SIZE(0..8192)) + + +-- +-- Enterprise specific MIB groups +-- +rcMgmt OBJECT IDENTIFIER ::= { rapidCity 1 } +rcA1100 OBJECT IDENTIFIER ::= { rapidCity 2 } +rcA1250 OBJECT IDENTIFIER ::= { rapidCity 6 } +rcA1150 OBJECT IDENTIFIER ::= { rapidCity 7 } +rcA1200 OBJECT IDENTIFIER ::= { rapidCity 8 } +rcA1050 OBJECT IDENTIFIER ::= { rapidCity 9 } +rcA740 OBJECT IDENTIFIER ::= { rapidCity 20 } +rcA750 OBJECT IDENTIFIER ::= { rapidCity 21 } +rcA790 OBJECT IDENTIFIER ::= { rapidCity 22 } +rcA750S OBJECT IDENTIFIER ::= { rapidCity 23 } +rcA8003 OBJECT IDENTIFIER ::= { rapidCity 280887555 } +rcA8006 OBJECT IDENTIFIER ::= { rapidCity 280887558 } +rcA8010 OBJECT IDENTIFIER ::= { rapidCity 280887562 } +rcA8010co OBJECT IDENTIFIER ::= { rapidCity 1623064842 } +rcA8610 OBJECT IDENTIFIER ::= { rapidCity 30 } +rcA8606 OBJECT IDENTIFIER ::= { rapidCity 31 } +rcA8110 OBJECT IDENTIFIER ::= { rapidCity 32 } +rcA8106 OBJECT IDENTIFIER ::= { rapidCity 33 } +rcA8603 OBJECT IDENTIFIER ::= { rapidCity 34 } +rcA8103 OBJECT IDENTIFIER ::= { rapidCity 35 } +rcA8110co OBJECT IDENTIFIER ::= { rapidCity 36 } +rcA8610co OBJECT IDENTIFIER ::= { rapidCity 37 } +-- This is a place holder for OM 2.0 chassises +-- NOTE that { rapidCity 40 } is also used for the rcBayStack branch, +-- and so we must be sure that nothing ever gets defined under rcAom8003 +-- in order to avoid any conflicts. +--rcAom8010 OBJECT IDENTIFIER ::= { rapidCity 38 } +--rcAom8010co OBJECT IDENTIFIER ::= { rapidCity 39 } +rcBayStack OBJECT IDENTIFIER ::= { rapidCity 40 } +--rcAom8006 OBJECT IDENTIFIER ::= { rapidCity 41 } +rcA1424 OBJECT IDENTIFIER ::= { rapidCity 42 } +rcA1648 OBJECT IDENTIFIER ::= { rapidCity 43 } +rcA1612 OBJECT IDENTIFIER ::= { rapidCity 44 } +rcA1624 OBJECT IDENTIFIER ::= { rapidCity 45 } +rcRBS2402 OBJECT IDENTIFIER ::= { rapidCity 46 } +rcAtr8310 OBJECT IDENTIFIER ::= { rapidCity 47 } +rcAtr8306 OBJECT IDENTIFIER ::= { rapidCity 48 } +rcAtr8010 OBJECT IDENTIFIER ::= { rapidCity 49 } +rcAtr8006 OBJECT IDENTIFIER ::= { rapidCity 50 } +rcEsu1850 OBJECT IDENTIFIER ::= { rapidCity 51 } +rcEsu1850dc OBJECT IDENTIFIER ::= { rapidCity 52 } +rcEsu1800dc OBJECT IDENTIFIER ::= { rapidCity 53 } + +-- From rapidCity 100 to rapidCity 200 is reserved for OM chassises + +-- +-- MIB groups. Note that the ones that are commented out are now defined in +-- separate MIB files. These are kept as placeholders here. +-- +rcSystem OBJECT IDENTIFIER ::= { rcMgmt 1 } +rcTftp OBJECT IDENTIFIER ::= { rcMgmt 2 } +rcVlan OBJECT IDENTIFIER ::= { rcMgmt 3 } +rcChassis OBJECT IDENTIFIER ::= { rcMgmt 4 } +rcMirror OBJECT IDENTIFIER ::= { rcMgmt 5 } +rcDipSwitch OBJECT IDENTIFIER ::= { rcMgmt 6 } +rcTblSize OBJECT IDENTIFIER ::= { rcMgmt 7 } +rcIp OBJECT IDENTIFIER ::= { rcMgmt 8 } +rcArp OBJECT IDENTIFIER ::= { rcMgmt 9 } +rcRip OBJECT IDENTIFIER ::= { rcMgmt 10 } +rcTest OBJECT IDENTIFIER ::= { rcMgmt 11 } +rcStat OBJECT IDENTIFIER ::= { rcMgmt 12 } +rcStg OBJECT IDENTIFIER ::= { rcMgmt 13 } +rcBridge OBJECT IDENTIFIER ::= { rcMgmt 14 } +rcBoot OBJECT IDENTIFIER ::= { rcMgmt 15 } +rcDevice OBJECT IDENTIFIER ::= { rcMgmt 16 } +rcMlt OBJECT IDENTIFIER ::= { rcMgmt 17 } +rcWeb OBJECT IDENTIFIER ::= { rcMgmt 18 } +rcCli OBJECT IDENTIFIER ::= { rcMgmt 19 } +rcError OBJECT IDENTIFIER ::= { rcMgmt 20 } +rcTraps OBJECT IDENTIFIER ::= { rcMgmt 21 } +rcSyslog OBJECT IDENTIFIER ::= { rcMgmt 22 } +rcDiag OBJECT IDENTIFIER ::= { rcMgmt 23 } +rcIpx OBJECT IDENTIFIER ::= { rcMgmt 24 } +rcPos OBJECT IDENTIFIER ::= { rcMgmt 26 } +rcLinkFlapDetect OBJECT IDENTIFIER ::= { rcMgmt 27 } +rcV1Traps OBJECT IDENTIFIER ::= { rcMgmt 28 } +rcRadius OBJECT IDENTIFIER ::= { rcMgmt 29 } +rcIgmp OBJECT IDENTIFIER ::= { rcMgmt 30 } +rcUserSetTime OBJECT IDENTIFIER ::= { rcMgmt 31 } +rcL2Redundancy OBJECT IDENTIFIER ::= { rcMgmt 32 } +rcNtp OBJECT IDENTIFIER ::= { rcMgmt 33 } +rcSsh OBJECT IDENTIFIER ::= { rcMgmt 34 } +rcSvlan OBJECT IDENTIFIER ::= { rcMgmt 35 } +rcOpm OBJECT IDENTIFIER ::= { rcMgmt 36 } +rcVpn OBJECT IDENTIFIER ::= { rcMgmt 37 } +rcOeAdm OBJECT IDENTIFIER ::= { rcMgmt 38 } +rcTlsVpn OBJECT IDENTIFIER ::= { rcMgmt 39 } +rcTls OBJECT IDENTIFIER ::= { rcMgmt 40 } +rcCos OBJECT IDENTIFIER ::= { rcMgmt 41 } +rcBanRing OBJECT IDENTIFIER ::= { rcMgmt 42 } +rcTengEnet OBJECT IDENTIFIER ::= { rcMgmt 50 } +rcRec OBJECT IDENTIFIER ::= { rcMgmt 51 } +rcTdc OBJECT IDENTIFIER ::= { rcMgmt 52 } +rcLacp OBJECT IDENTIFIER ::= { rcMgmt 53 } +rcQos OBJECT IDENTIFIER ::= { rcMgmt 54 } +rcFilter OBJECT IDENTIFIER ::= { rcMgmt 55 } +rcLicense OBJECT IDENTIFIER ::= { rcMgmt 56 } +rcEap OBJECT IDENTIFIER ::= { rcMgmt 57 } +rcMcast OBJECT IDENTIFIER ::= { rcMgmt 58 } +rcOspf OBJECT IDENTIFIER ::= { rcMgmt 59 } +rcFdb OBJECT IDENTIFIER ::= { rcMgmt 60 } +rcIgap OBJECT IDENTIFIER ::= { rcMgmt 61 } +rcIpv6 OBJECT IDENTIFIER ::= { rcMgmt 62 } +rcIsis OBJECT IDENTIFIER ::= { rcMgmt 63 } +rcSlpp OBJECT IDENTIFIER ::= { rcMgmt 64 } +rcTacacs OBJECT IDENTIFIER ::= { rcMgmt 65 } +rcIpfix OBJECT IDENTIFIER ::= { rcMgmt 66 } +rcOspfv3 OBJECT IDENTIFIER ::= { rcMgmt 67 } +rcFlowClassifier OBJECT IDENTIFIER ::= { rcMgmt 68 } +rc2k OBJECT IDENTIFIER ::= { rcMgmt 100 } +rcOm8k OBJECT IDENTIFIER ::= { rcMgmt 200 } +cobra OBJECT IDENTIFIER ::= { rcMgmt 201 } +rcPowerRanger OBJECT IDENTIFIER ::= { rcMgmt 202 } + +-- LOGICAL (System) Elements + +rcSysIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This entity's IP address." + ::= { rcSystem 1 } + +rcSysNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This entity's subnet mask." + ::= { rcSystem 2 } + +rcSysBroadcast OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This entity's broadcast address." + ::= { rcSystem 3 } + +-- Community Strings + +rcSysCommReadWriteAll OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, the + community string in the message is compared with this + string first. If it matches, read-write access is + granted to all items in the MIB. If it doesn't + match, the rcSysCommReadWrite string is compared next." + ::= { rcSystem 4 } + +rcSysCommReadWrite OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, the + community string in the message is compared with this + string second. If it matches, read-write access is + granted to all items in the MIB except community + strings. (Community strings appear empty when read + and return a no such name error when an attempt is + made to write them.) If it doesn't match, the + rcSysCommReadWriteLayer3 string is compared next." + ::= { rcSystem 5 } + +rcSysCommReadOnly OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, the + community string in the message is compared with this + string third. If it matches, read-only access is + granted to all items in the MIB except community + strings. (Community strings appear empty when read.) + If it doesn't match, no access is granted, no + response is sent back to the SNMP requester, and + SNMP traps are sent to the SNMP trap receiver(s) if + configured." + ::= { rcSystem 6 } + +-- Other + +rcSysVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Software version running on device" + ::= { rcSystem 7 } + +rcSysAction OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- none of the following + hardReset(2), -- power on tests + softReset(3), -- reset w/o power on tests + saveToNVRAM(4), -- save current config to NVRAM + resetCounters(5), -- reset all statistic counters + saveToStandbyNVRAM(6), -- save config to slave NVRAM + cpuSwitchOver(7), -- CPU board switch-over + checkSwInFlash(8), + checkSwInPcmcia(9), + resetConsole(10), + resetModem(11), + flushIpRouteTbl(12), + saveRuntimeConfig(13), -- 8k only + saveRuntimeConfigToSlave(14), -- 8k only + saveBootConfig(15), -- 8k only + saveSlaveBootConfig(16), -- 8k only + resetIstStatCounters(17), +-- being used in rel2.2(18) +-- being used in rel2.2(19) +-- reserve(20) +-- reserve(21) + resetEsmPortStats(22) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Initiate a system action." + DEFVAL { none } + ::= { rcSystem 8 } + +rcSysResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- none of the following + inProgress(2), -- in progress + success(3), -- success + fail(4), -- failure + flashReadFailed(5), -- could not read from flash + pcmciaReadFailed(6), -- could not read from pcmcia + crcCheckFailed(7), + noStandbyCpu(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Result from the last system action." + DEFVAL { none } + ::= { rcSystem 9 } + +rcSysLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Last management initiated configuration + change since sysUpTime." + ::= { rcSystem 10 } + +rcSysLastVlanChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Last management initiated VLAN configuration + change since sysUpTime." + ::= { rcSystem 11 } + +rcSysLastStatisticsReset OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Last management initiated statistics reset + since sysUpTime." + ::= { rcSystem 12 } + +-- Global Statistics + +rcSysBufferUtil OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Buffer utilization as a percentage of the + total amount of buffer space in the system. + A high value indicates congestion." + ::= { rcSystem 13 } + +rcSysBufferUtilPeak OBJECT-TYPE + SYNTAX INTEGER (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The largest buffer utilization since sysUpTime" + ::= { rcSystem 14 } + +rcSysBufferUtilPeakTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Timestamp for rcSysPeakBandwidth" + ::= { rcSystem 15 } + +rcSysNVRamSize OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Total Non-volatile RAM in Kbytes" + ::= { rcSystem 16 } + +rcSysNVRamUsed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Non-volatile RAM in use in Kbytes" + ::= { rcSystem 17 } + +rcSysLastSaveToNVRam OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "SysUpTime of the last time when NVRAM was + written to. This could be a save of the system + configuration or via a file transfer of a + configuration file." + ::= { rcSystem 18 } + +rcSysLastSaveToStandbyNVRam OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "SysUpTime of the last time when the standby NVRAM + (on the back-up CPU board) was written to." + ::= { rcSystem 19 } + +rcSysCpuUtil OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Percentage of CPU utilization" + ::= { rcSystem 20 } + +rcSysSwitchFabricUtil OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Percentage of Switching Fabric utilization" + ::= { rcSystem 21 } + +rcSysRmonMemSize OBJECT-TYPE + SYNTAX INTEGER (250000..4000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Amount of RAM in bytes to allocate for RMON + to use when rcSysRmonEnable is TRUE." + ::= { rcSystem 22 } + +rcSysRmonEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Control whether the RMON feature should be + enabled. + + To enable the RMON feature, set this variable to + true. The RMON agent in the device will get + started immediately if the amount of memory + specified by rcSysRmonMemSize is currently + available in the device. + + To disable the RMON feature, set this variable to + false, save the new setting to NVRAM, and reboot + the device. After the device is rebooted the + RMON agent will not be operational." + ::= { rcSystem 23 } + +rcSysRmonSaveConfig OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Control whether RMON configuration information + should be saved to NVRAM so RMON settings can + be automatically reinstalled after a system + reboot. + + Setting rcSysRmonSaveConfig to true does not + immediately save the configuration information. + The save happens when the rcSysAction variable + is set to 'saveToNVRAM(4)'. + + This option is only meaningful when the + rcSysRmonEnable variable is set to true." + ::= { rcSystem 24 } + +rcSysRmonTrapOption OBJECT-TYPE + SYNTAX INTEGER { + toOwner(1), + toAll(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate whether RMON traps should be + sent to only the owner of the RMON alarm (i.e., + the manager that created the alarm entry) or + all trap recipients in the system trap receiver + table." + DEFVAL { toOwner } + ::= { rcSystem 25 } + +rcSysSupportRouting OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate whether routing is supported + in this product." + ::= { rcSystem 26 } + +rcSysSupportWebServer OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate whether WebServer is supported + in this product." + ::= { rcSystem 27 } + +rcSysLastIpAddrChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Last management initiated IP address change + since sysUpTime. Any addition or deletion of + an IP address to a single routable port or + a VLAN is time-stamped by this variable." + ::= { rcSystem 28 } + +rcSysCommReadWriteLayer3 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, the + community string in the message is compared with this + string third. If it matches, read-write access is + granted to all Layer-3 items in the MIB except community + strings. (Community strings appear empty when read + and return a no such name error when an attempt is + made to write them.) If it doesn't match, the + rcSysCommReadWriteLayer2 string is compared next." + ::= { rcSystem 29 } + +rcSysCommReadWriteLayer2 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When an SNMP message is received by this entity, the + community string in the message is compared with this + string fourth. If it matches, read-write access is + granted to all Layer-2 items in the MIB except community + strings. (Community strings appear empty when read + and return a no such name error when an attempt is + made to write them.) If it doesn't match, the + rcSysCommReadOnly string is compared next." + ::= { rcSystem 30 } + +rcSysAccessPolicyEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to configure the system access policy feature. + if 'true', the rcSysAccessPolicyTable is examined to + determine which packets should be allowed or denied + access to this device." + DEFVAL { false } + ::= { rcSystem 31 } + +rcSysDefaultRuntimeConfigFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "default config." + ::= { rcSystem 32 } + +rcSysDefaultBootConfigFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "default boot config." + ::= { rcSystem 33 } + +rcSysConfigFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "File name used in conjunction with rcSysAction. + + If rcSysAction is set to 'saveRuntimeConfig' or + 'saveRuntimeConfigToSlave' then this file name + will be used instead of the file name specified + in rcSysDefaultRuntimeConfigFileName. + + If rcSysAction is set to 'saveBootConfig' or + 'saveBootConfigToSlave' then this file name will + be used insteaad of the file name specified in + rcSysDefaultBootConfigFileName. + + If the file name is blank (i.e., nothing is + entered) then the default file name will be + used." + ::= { rcSystem 34 } + +rcSysLastRunTimeConfigSave OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "SysUpTime of the last time when the run time + configuration was written to." + ::= { rcSystem 35 } + +rcSysLastRunTimeConfigSaveToSlave OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "SysUpTime of the last time when the run time + configuration was written to slave NVRAM." + ::= { rcSystem 36 } + +rcSysLastBootConfigSave OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "SysUpTime of the last time when the boot + configuration was written to." + ::= { rcSystem 37 } + +rcSysLastBootConfigSaveOnSlave OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "SysUpTime of the last time when the boot + configuration was written on the slave NVRAM." + ::= { rcSystem 38 } + +rcSysRmonUtilizationMethod OBJECT-TYPE --excluded + SYNTAX INTEGER { + halfDuplex(1), + fullDuplex(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to control whether RMON should use a half-duplex + or full-duplex formula to calculate port utilization. + When set to 'halfDuplex', RMON will use InOctets and + the port's speed to calculate port utilization (this + is the standard RMON rfc1271 convention). + When set to 'fullDuplex', RMON will use InOctets and + OutOctets and 2X the port's speed to calculate port + utilization. Furthermore, if this variable is set to + 'fullDuplex', but the port is operating in a + half-duplex mode, the calculation defaults back to + the rfc1271 convention." + DEFVAL { halfDuplex } + ::= { rcSystem 39 } + +rcSysCommReadWriteLayer1 OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "read-write L1 access" + ::= { rcSystem 40 } + +rcSysOtherBufferUtil OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "bw currently consumed" + ::= { rcSystem 41 } + +rcSysOtherBufferUtilPeak OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "peak bw since reset" + ::= { rcSystem 42 } + +rcSysOtherBufferUtilPeakTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "timestamp for rcSysPeakBw" + ::= { rcSystem 43 } + +rcSysOtherCpuUtil OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "% cpu utilization" + ::= { rcSystem 44 } + +rcSysOtherSwitchFabricUtil OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "% switch fabric util" + ::= { rcSystem 45 } + +rcSysDramSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Dram size in mega-bytes" + ::= { rcSystem 46 } + +rcSysDramUsed OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Dram used in percentage" + ::= { rcSystem 47 } + +rcSysDramFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Dram free size in kilo-bytes" + ::= { rcSystem 48 } + +rcSysDramMaxBlockFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Dram max block free size in kilo-bytes" + ::= { rcSystem 49 } + +rcSysVirtualIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Virtual IP is an IP address that owned and + advertised only by the master CPU. So whichever + CPU is master registers this IP address. Unlike the + management IP address, this address goes in the + switch config file and not the boot config" + ::= { rcSystem 51 } + +rcSysVirtualNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Net mask of the management virtual Ip address" + ::= { rcSystem 52 } + +rcSysReadWriteLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The status of the read/write level" + ::= { rcSystem 53 } + +rcSysMTUSize OBJECT-TYPE + SYNTAX INTEGER { + mtu1950(1), + mtu9600(2), + mtu1522(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is the maximum transmission size of frames that all + the ports on the chassis support." + DEFVAL { mtu1950 } + ::= { rcSystem 55 } + +rcSysClockSyncTime OBJECT-TYPE + SYNTAX INTEGER (15..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Time interval at which RTC and system clocks are + synchronized." + DEFVAL { 60 } + ::= { rcSystem 56 } + +rcSysForceTrapSender OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is a flag that if user wants to configured + CLIP (Circuit Less IP) as trap originator." + ::= { rcSystem 57 } + +rcSysMrouteStrLimit OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "enable or disable mroute stream limit in system." + DEFVAL { false } + ::= { rcSystem 58 } + +-- Trap Receiver Table + +rcSysTrapRecvTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysTrapRecvEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "The trap receiver table (0 to 25 entries). This + table lists the addresses of Network Management + Stations that should receive trap messages from + this entity when an exception condition occurs." + ::= { rcSystem 60 } + +rcSysTrapRecvEntry OBJECT-TYPE + SYNTAX RcSysTrapRecvEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "A trap receiver table entry." + INDEX { rcSysTrapRecvAddress } + ::= { rcSysTrapRecvTable 1 } + +RcSysTrapRecvEntry ::= + SEQUENCE { + rcSysTrapRecvAddress IpAddress, + rcSysTrapRecvVersion INTEGER, + rcSysTrapRecvCommunity DisplayString, + rcSysTrapRecvSrcAddress IpAddress, + rcSysTrapRecvRowStatus RowStatus + } + +rcSysTrapRecvAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "IP address for trap receiver." + ::= { rcSysTrapRecvEntry 1 } + +rcSysTrapRecvVersion OBJECT-TYPE + SYNTAX INTEGER { + v1(1), + v2c(2) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The version of trap receiver." + DEFVAL { v1 } + ::= { rcSysTrapRecvEntry 2 } + +rcSysTrapRecvCommunity OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Community string used for trap messages to this + trap receiver." + ::= { rcSysTrapRecvEntry 3 } + +rcSysTrapRecvSrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Source IP address to use when sending traps. + This IP address will be inserted into the + source IP address field in the UDP trap packet." + ::= { rcSysTrapRecvEntry 4 } + +rcSysTrapRecvRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to create/delete entries" + ::= { rcSysTrapRecvEntry 5 } + + +-- Access Policy Table + +rcSysAccessPolicyTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysAccesspolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Management access policy table. This table is + used to permit or deny access to this device via + the specified source Id." + ::= { rcSystem 61 } + +rcSysAccessPolicyEntry OBJECT-TYPE + SYNTAX RcSysAccesspolicyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An access policy table entry." + INDEX { rcSysAccessPolicyId } + ::= { rcSysAccessPolicyTable 1 } + +RcSysAccesspolicyEntry ::= + SEQUENCE { + rcSysAccessPolicyId INTEGER, + rcSysAccessPolicyName DisplayString, + rcSysAccessPolicyPolicyEnable TruthValue, + rcSysAccessPolicyMode INTEGER, + rcSysAccessPolicyService INTEGER, + rcSysAccessPolicyPrecedence INTEGER, + rcSysAccessPolicyNetAddr IpAddress, + rcSysAccessPolicyNetMask IpAddress, + rcSysAccessPolicyTrustedHostAddr IpAddress, + rcSysAccessPolicyTrustedHostUserName DisplayString, + rcSysAccessPolicyAccessLevel INTEGER, + rcSysAccessPolicyLog TruthValue, + rcSysAccessPolicyUsage Counter32, + rcSysAccessPolicyRowStatus RowStatus, + rcSysAccessPolicyAccessStrict TruthValue, + rcSysAccessPolicyNetInetAddrType InetAddressType, + rcSysAccessPolicyNetInetAddress InetAddress, + rcSysAccessPolicyNetInetAddrPrefixLen InetAddressPrefixLength, + rcSysAccessPolicyTrustedHostInetAddress InetAddress + } + +rcSysAccessPolicyId OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Policy Id." + ::= { rcSysAccessPolicyEntry 1 } + +rcSysAccessPolicyName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..15)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Name of this policy." + ::= { rcSysAccessPolicyEntry 2 } + +rcSysAccessPolicyPolicyEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether this policy is currently + active." + DEFVAL { true } + ::= { rcSysAccessPolicyEntry 3 } + +rcSysAccessPolicyMode OBJECT-TYPE + SYNTAX INTEGER { + allow(1), + deny(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate whether a packet having a + source IP address that matches this entry + should be permitted to enter the device or + denied access." + DEFVAL { allow } + ::= { rcSysAccessPolicyEntry 4 } + +rcSysAccessPolicyService OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Is represented as bitset to indicate which protocol + this entry should be applied to. + Value is one of multiple(logical 'OR') + of the following values: + telnet(1): enables telnet service + snmp(2): enables snmp service + tftp(4): enables tftp service + ftp(8): enables ftp service + http(16): enables http service + rlogin(32): enables rlogin service + ssh(64): enables ssh service + snmp-v3(128): enables snmp service for v3 groups." + ::= { rcSysAccessPolicyEntry 5 } + +rcSysAccessPolicyPrecedence OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate the precedence of this policy. + The Lower the number the higher the precedence." + DEFVAL { 10 } + ::= { rcSysAccessPolicyEntry 6 } + +rcSysAccessPolicyNetAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Source network IP address." + ::= { rcSysAccessPolicyEntry 7 } + +rcSysAccessPolicyNetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Source network mask." + ::= { rcSysAccessPolicyEntry 8 } + +rcSysAccessPolicyTrustedHostAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Trusted IP address of host performing a rlogin + into the device." + ::= { rcSysAccessPolicyEntry 9 } + +rcSysAccessPolicyTrustedHostUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..30)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name on the trusted host performing a rlogin + into the device." + ::= { rcSysAccessPolicyEntry 10 } + +rcSysAccessPolicyAccessLevel OBJECT-TYPE + SYNTAX INTEGER { + readOnly(1), + readWrite(2), + readWriteAll(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Access level of trusted host." + DEFVAL { readOnly } + ::= { rcSysAccessPolicyEntry 11 } + +rcSysAccessPolicyLog OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate whether logging should be + performed if this policy was applied." + DEFVAL { false } + ::= { rcSysAccessPolicyEntry 12 } + +rcSysAccessPolicyUsage OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Usage Counter" + ::= { rcSysAccessPolicyEntry 13 } + +rcSysAccessPolicyRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to create/delete an entry" + ::= { rcSysAccessPolicyEntry 14 } + +rcSysAccessPolicyAccessStrict OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to restrict the access level specified in + the system access policy table to exactly the + same access level as specified by user. If TRUE + then only the access level in the policy table + is allowed access. If FALSE, then the default + behavior is to assume the access level specified + in policy table as the floor." + DEFVAL { false } + ::= { rcSysAccessPolicyEntry 15 } + +rcSysAccessPolicyNetInetAddrType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Source network Inet Address Type." + ::= { rcSysAccessPolicyEntry 16 } + +rcSysAccessPolicyNetInetAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Source network Inet Address (prefix/network)." + ::= { rcSysAccessPolicyEntry 17 } + +rcSysAccessPolicyNetInetAddrPrefixLen OBJECT-TYPE + SYNTAX InetAddressPrefixLength + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Source network Inet Address Prefix-Length/Mask." + ::= { rcSysAccessPolicyEntry 18 } + +rcSysAccessPolicyTrustedHostInetAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Trusted Inet address of host performing a rlogin + into the device." + ::= { rcSysAccessPolicyEntry 19 } + + +-- Trap Sender Address Table + +rcSysTrapSenderTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysTrapSenderEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The trap sender table (0 to 25 entries). This + table lists the addresses of Network Management + Stations and the Source Address that should receive + trap messages from this entity when an exception + condition occurs." + ::= { rcSystem 62 } + +rcSysTrapSenderEntry OBJECT-TYPE + SYNTAX RcSysTrapSenderEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A trap sender table entry." + INDEX { rcSysTrapSenderRecvAddress } + ::= { rcSysTrapSenderTable 1 } + +RcSysTrapSenderEntry ::= + SEQUENCE { + rcSysTrapSenderRecvAddress IpAddress, + rcSysTrapSenderSrcAddress IpAddress + } + +rcSysTrapSenderRecvAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "IP address for trap receiver." + ::= { rcSysTrapSenderEntry 1 } + +rcSysTrapSenderSrcAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "IP address for trap sender." + ::= { rcSysTrapSenderEntry 2 } + + +-- DNS Server List Mibs + +rcSysDnsServerListTableSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries in the + table." + ::= { rcSystem 63 } + +rcSysDnsServerListTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysDnsServerListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "DNS serever list table used to store the + details of the DNS server configured." + ::= { rcSystem 64 } + +rcSysDnsServerListEntry OBJECT-TYPE + SYNTAX RcSysDnsServerListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "table entry." + INDEX {rcSysDnsServerListType} + ::= { rcSysDnsServerListTable 1 } + +RcSysDnsServerListEntry ::= + SEQUENCE { + rcSysDnsServerListType INTEGER, + rcSysDnsServerListIp IpAddress, -- deprecated + rcSysDnsServerListStatus INTEGER, + rcSysDnsServerListRequestCount Counter32, + rcSysDnsServerListSuccessCount Counter32, + rcSysDnsServerListRowStatus RowStatus, + rcSysDnsServerListAddressType InetAddressType, + rcSysDnsServerListAddress InetAddress + } + +rcSysDnsServerListType OBJECT-TYPE + SYNTAX INTEGER { + primary(0), + secondary(1), + tertiary(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Type of the DNS server" + ::= { rcSysDnsServerListEntry 1 } + +rcSysDnsServerListIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "IP address of the DNS server" + ::= { rcSysDnsServerListEntry 2 } + +rcSysDnsServerListStatus OBJECT-TYPE + SYNTAX INTEGER { + active(0), + in-active(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Status of DNS server" + ::= { rcSysDnsServerListEntry 3 } + +rcSysDnsServerListRequestCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of request send to this server" + ::= { rcSysDnsServerListEntry 4 } + +rcSysDnsServerListSuccessCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of request send to this server which + are successful" + ::= { rcSysDnsServerListEntry 5 } + +rcSysDnsServerListRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to create/delete DNS server entries + in rcSysDnsServerListTable." + ::= { rcSysDnsServerListEntry 6 } + +rcSysDnsServerListAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The type of ip address configured by the DNS server" + ::= { rcSysDnsServerListEntry 7 } + +rcSysDnsServerListAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The ip address configured by the DNS server" + ::= { rcSysDnsServerListEntry 8 } + +-- DNS Host Table + +rcSysDnsHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysDnsHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "DNS Host table." + ::= { rcSystem 65 } + +rcSysDnsHostEntry OBJECT-TYPE + SYNTAX RcSysDnsHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "table entry." + INDEX { rcSysDnsHostData } + ::= { rcSysDnsHostTable 1 } + +RcSysDnsHostEntry ::= + SEQUENCE { + rcSysDnsHostData OCTET STRING, + rcSysDnsHostName OCTET STRING, + rcSysDnsHostIpAddress IpAddress, -- deprecated + rcSysDnsHostSource OCTET STRING, + rcSysDnsHostAddressType InetAddressType, + rcSysDnsHostAddress InetAddress + } + +rcSysDnsHostData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Host Name or Host IP Address." + ::= { rcSysDnsHostEntry 1 } + +rcSysDnsHostName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Host Name." + ::= { rcSysDnsHostEntry 2 } + +rcSysDnsHostIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Host IP Address." + ::= { rcSysDnsHostEntry 3 } + +rcSysDnsHostSource OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..256)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "DNS Server IP or /etc/host file." + ::= { rcSysDnsHostEntry 4 } + +rcSysDnsHostAddressType OBJECT-TYPE + SYNTAX InetAddressType + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The type of ip address for the DNS host" + ::= { rcSysDnsHostEntry 5 } + +rcSysDnsHostAddress OBJECT-TYPE + SYNTAX InetAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The ip address of the DNS host" + ::= { rcSysDnsHostEntry 6 } + +rcSysMsgLogFrequency OBJECT-TYPE + SYNTAX INTEGER (2..500) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to specify the maximum frequency/count + of the occurence of the Log Message." + ::= { rcSystem 66 } + +rcSysMsgLogText OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A textual string containing the first four + characters of the Log Message." + ::= { rcSystem 67 } + +rcSysForceIpHdrSender OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Flag to decide if IP header source address will + be matched with SNMP header sender networks." + DEFVAL { false } + ::= { rcSystem 68 } + +rcSysVlanMaxId OBJECT-TYPE + SYNTAX INTEGER { + maxId2000(2000), + maxId4000(4000) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The maximum vlan Id that supported" + DEFVAL { maxId2000 } + ::= { rcSystem 69 } + +rcSysDnsDomainName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Default domain used for querying the DNS Server." + ::= { rcSystem 70 } + + +rcSysDnsServerListIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "DNS server's IP address " + ::= { rcSystem 71 } + +rcSysDnsRequestType OBJECT-TYPE + SYNTAX INTEGER { + request (0), + response (1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "DNS Type: Whether it was Dns Request or a Response" + ::= { rcSystem 72 } + + +rcSysSpanningTreeOperMode OBJECT-TYPE + SYNTAX INTEGER { + nortelStpg(1), + pvst(2), + rstp(3), + mstp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This object indicates the current spanning-tree mode of the system. . + The meaning of specific values is: + nortelStpg(1) .. The older proprietary mode which supports multiple spanning tree groups. + pvst(2) ........ Emulation of C***O spanning tree mode + rstp(3) ........ IEEE 802.1w mode + mstp(4) ........ IEEE 802.1s mode ." + DEFVAL { nortelStpg } + ::= { rcSystem 73} + +rcSysSpanningTreeAdminMode OBJECT-TYPE + SYNTAX INTEGER { + nortelStpg(1), + pvst(2), + rstp(3), + mstp(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This object indicates the desired spanning-tree mode of the system. + The meaning of specific values is: + nortelStpg(1) .. The older proprietary mode which supports multiple spanning tree groups. + pvst(2) ........ Emulation of C***O spanning tree mode + rstp(3) ........ IEEE 802.1w mode + mstp(4) ........ IEEE 802.1s mode + + Note that depending on the current value of rcSysSpanningTreeOperMode and + the value to which this object is set, the operational mode may be immediately changed, + or the change may not take effect until the next system reboot." + DEFVAL { nortelStpg } + ::= { rcSystem 74} + +rcSysAutoRecoverDelay OBJECT-TYPE + SYNTAX INTEGER (5..3600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Time interval in seconds after which auto-recovery + runs on ports to clear action taken by cp-limit, + link flap or loop detect" + ::= { rcSystem 75 } + +rcSysMacFlapLimitTime OBJECT-TYPE + SYNTAX INTEGER (10..5000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Time limit in milliseconds for MAC flapping for + loop-detect feature" + ::= { rcSystem 76 } + +rcSysMacFlapLimitCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of times mac flapping can happen for loop-detect + feature" + ::= { rcSystem 77 } + +rcSysExtCplimitEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "enable or disable extended CP-LIMIT in system." + DEFVAL { false } + ::= { rcSystem 78 } + +rcSysExtCplimitMinCongTime OBJECT-TYPE + SYNTAX INTEGER (100..6000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Minimum time for which System octapid should be + congested to trigger congestion algorithm for extended + CP-LIMIT in mSecs" + DEFVAL { 3000 } + ::= { rcSystem 79 } + +rcSysExtCplimitMaxPorts OBJECT-TYPE + SYNTAX INTEGER (0..512) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Maximum number of ports which need to be monitored + for congestion in Extended CP-LIMIT" + DEFVAL { 0 } + ::= { rcSystem 80 } + +rcSysExtCplimitPortCongTime OBJECT-TYPE + SYNTAX INTEGER (1..600) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Minimum time for which ingress traffic utilization rate + of a monitored port should stay more than the allowed limits + in order to disable the port for extended CP-LIMIT in Secs" + DEFVAL { 300 } + ::= { rcSystem 81 } + +rcSysExtCplimitTrapLevel OBJECT-TYPE + SYNTAX INTEGER { + none(1), + normal(2), + verbose(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the trap level for extended CP-LIMIT" + DEFVAL { none } + ::= { rcSystem 82 } + +rcSysExtCplimitSysOctapidCongested OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether system octapid congestion detected for + extended cp-limit" + DEFVAL { false } + ::= {rcSystem 83 } + + rcSysExtCplimitPortsMonitored OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether ports has been shutdown due to extended + cp-limit" + DEFVAL { false } + ::= {rcSystem 84 } + + rcSysExtCplimitPortsShutDown OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Indicates whether ports has been shutdown due to + extended Cp-limit" + DEFVAL { false } + ::= {rcSystem 85 } + +rcSysActionL1 OBJECT-TYPE + SYNTAX INTEGER { + none(1), + resetCounters(2), -- reset all statistic counters + saveToNVRAM(3), + saveToStandbyNVRAM(4), -- save config to slave NVRAM + checkSwInFlash(5), + checkSwInPcmcia(6), + saveRuntimeConfig(7), -- 8k only + saveRuntimeConfigToSlave(8), -- 8k only + saveBootConfig(9), -- 8k only + saveSlaveBootConfig(10) -- 8k only + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Initiate a system action for layer1 user" + DEFVAL { none } + ::= { rcSystem 86 } + +rcSysActionL2 OBJECT-TYPE + SYNTAX INTEGER { + none(1), + resetIstStatCounters(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Initiate a system action for layer2 user" + DEFVAL { none } + ::= { rcSystem 87 } + +rcSysActionL3 OBJECT-TYPE + SYNTAX INTEGER { + none(1), + flushIpRouteTbl(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Initiate a system action for layer2 user" + DEFVAL { none } + ::= { rcSystem 88 } + +rcSysActionRwa OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- none of the following + hardReset(2), -- power on tests + softReset(3), -- reset w/o power on tests + cpuSwitchOver(4), -- CPU board switch-over + resetConsole(5), + resetModem(6) +-- being used in rel2.2(7) +-- being used in rel2.2(8) +-- reserve(9) +-- reserve(10) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Initiate a system action." + DEFVAL { none } + ::= { rcSystem 89 } + +rcSysPowerUsage OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The current power usage for the whole chassis." + ::= { rcSystem 90 } + +rcSysPowerAvailable OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The current power available for the whole chassis." + ::= { rcSystem 91 } + +rcSysBpduStartMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Starting Multicast MAC address for BPDUs" + ::= { rcSystem 92 } + +rcSysBpduMacAddressMask OBJECT-TYPE + SYNTAX INTEGER (1..48) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "BPDU MAC address Mask" + ::= { rcSystem 93 } + +rcSysFrcMsgControlTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysFrcMsgControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Management Force-msg Control table. This table is used to + specify the pattern for Force-msg Control" + ::= { rcSystem 94 } + +rcSysFrcMsgControlEntry OBJECT-TYPE + SYNTAX RcSysFrcMsgControlEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A Force-msg Control table entry." + INDEX { rcSysFrcMsgControlPatternId } + ::= { rcSysFrcMsgControlTable 1 } + +RcSysFrcMsgControlEntry ::= + SEQUENCE { + rcSysFrcMsgControlPatternId Integer32, + rcSysFrcMsgControlPattern DisplayString, + rcSysFrcMsgControlRowStatus RowStatus + } + +rcSysFrcMsgControlPatternId OBJECT-TYPE + SYNTAX Integer32 (1..32) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Pattern Id." + ::= { rcSysFrcMsgControlEntry 1 } + + +rcSysFrcMsgControlPattern OBJECT-TYPE + SYNTAX DisplayString (SIZE (4)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Pattern for filtering the force-msg for msg control" + ::= { rcSysFrcMsgControlEntry 2 } + +rcSysFrcMsgControlRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to create/delete an entry" + ::= { rcSysFrcMsgControlEntry 3 } + +rcSysAccPolSnmpGrpTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSysAccPolSnmpGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "SNMP group list for access policy" + ::= { rcSystem 95 } + +rcSysAccPolSnmpGrpEntry OBJECT-TYPE + SYNTAX RcSysAccPolSnmpGrpEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table entry which covers the groups under snmp service." + INDEX { rcSysAccessPolicyId, rcSysAccPolSnmpGrpName, rcSysAccPolSnmpGrpModel} + ::= { rcSysAccPolSnmpGrpTable 1 } + +RcSysAccPolSnmpGrpEntry ::= + SEQUENCE { + rcSysAccPolSnmpGrpName SnmpAdminString, + rcSysAccPolSnmpGrpModel SnmpSecurityModel, + rcSysAccPolSnmpGrpRowStatus RowStatus + } + +rcSysAccPolSnmpGrpName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The snmp-v3 group name" + ::= { rcSysAccPolSnmpGrpEntry 1 } + +rcSysAccPolSnmpGrpModel OBJECT-TYPE + SYNTAX SnmpSecurityModel + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The snmp model" + ::= { rcSysAccPolSnmpGrpEntry 2 } + +rcSysAccPolSnmpGrpRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Row status" + ::= { rcSysAccPolSnmpGrpEntry 3 } + +rcSysVirtualIpv6Addr OBJECT-TYPE + SYNTAX Ipv6Address + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The virtual ipv6 address that is owned, advertised, and registered by the master CPU only. Unlike the net management IP address this address is configured in the switch config file as opposed to the boot config." + ::= { rcSystem 96 } + +rcSysVirtualIpv6PrefixLength OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The length of the virtual ipv6 addr prefix (in bits)." + ::= { rcSystem 97 } + +-- TFTP Upload/Download + +rcTftpHost OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Name of source/destination host for the TFTP + transfer." + ::= { rcTftp 1 } + +rcTftpFile OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Name of file for the TFTP transfer." + ::= { rcTftp 2 } + +rcTftpAction OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- none of the following + downloadConfig(2), + uploadConfig(3), + downloadSwToFlash(4), + downloadSwToPcmcia(5), + uploadSw(6), + downloadSwToDram(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The action for the TFTP transfer." + DEFVAL { none } + ::= { rcTftp 3 } + +rcTftpResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), + inProgress(2), + noResponse(3), + fileAccessError(4), + badFlash(5), + flashEraseFailed(6), + pcmciaEraseFailed(7), + success(8), + fail(9), + writeToNvramFailed(10), + flashWriteFailed(11), + pcmciaWriteFailed(12), + configFileTooBig(13), + imageFileTooBig(14), + noPcmciaDetect(15), + pcmciaNotSupported(16), + invalidFile(17), + noMemory(18), + xferError(19), + crcError(20), + readNvramFailed(21), + pcmciaWriteProtect(22) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Contains result of the last Tftp action request." + ::= { rcTftp 4 } + + +-- PHYSICAL Elements + +rcChasType OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), -- unknown chassis + a1100(2), -- 3 slot chassis (1/2, 1/2, full) + a1250(6), -- 4 slot chassis (full, ... , full) + a1150(7), -- 3 slot chassis (1/2, 1/2, full) + a1200(8), -- 8 slot chassis (full, ... , full) + a1050(9), -- 2 slot chassis (seahawk) + a8006(280887558), -- 6 slot chassis (raptillion) + a8010(280887562), -- 10 slot chassis (raptillion) + a8010co(1623064842), -- 10 slot Central Office Chassis + a8003(280887555), -- 3 slot chassis (raptillion) + a1612G(1086197761), -- 1 slot 12 port cobra (0x40be1001) + a1624G(1086201857), -- 1 slot 24 port cobra (0x40be2001) + a1648T(1086210049), -- 1 slot 52 port cobra (0x40be4001) + a8306(1354629382), -- 6 slot 8300 POE chassis (0x50be0106) + a8310(1354629386) -- 10 slot 8300 POE chassis (0x50be010a) + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Chassis Type" + ::= { rcChassis 1 } + +rcChasSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unique serial number for this chassis." + ::= { rcChassis 2 } + +rcChasHardwareRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Device hardware revision level" + ::= { rcChassis 3 } + +rcChasNumSlots OBJECT-TYPE + SYNTAX INTEGER (1..16) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of slots in the chassis available for + plug-in cards." + ::= { rcChassis 4 } + +rcChasNumPorts OBJECT-TYPE + SYNTAX INTEGER (0..255) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of ports currently installed in + the chassis." + ::= { rcChassis 5 } + +-- TBD FIXME : We need to get the final list from Hardware +rcChasTestResult OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ok(2), + crceeprom(3), + timer(4), + procdram(5), + led(6), + formaccpuaccess(7), + asiccpuaccess(8), + memory(9), + loopback(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Chassis start-up diagnostic tests." + ::= { rcChassis 6 } + +rcChasFan OBJECT IDENTIFIER ::= { rcChassis 7 } + +rcChasFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcChasFanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains information about Fans" + ::= { rcChasFan 1 } + +rcChasFanEntry OBJECT-TYPE + SYNTAX RcChasFanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Contains information regarding a Fan Unit" + INDEX { rcChasFanId } + ::= { rcChasFanTable 1 } + +RcChasFanEntry ::= + SEQUENCE { + rcChasFanId INTEGER, + rcChasFanOperStatus INTEGER, + rcChasFanAmbientTemperature Gauge32 + } + +rcChasFanId OBJECT-TYPE + SYNTAX INTEGER(1..4) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The chassis fan Id." + ::= { rcChasFanEntry 1 } + +rcChasFanOperStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + up(2), + down(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Actual status of the Fan: + - unknown(1) - status can not be determined. + - up(2) - present and supplying power. + - down(3) - present, but failure indicated." + ::= { rcChasFanEntry 2 } + +rcChasFanAmbientTemperature OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the temperature of the air + entering the fan." + ::= { rcChasFanEntry 3 } + +rcChasPowerSupply OBJECT IDENTIFIER ::= { rcChassis 8 } + +rcChasPowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcChasPowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains information about power + supplies." + ::= { rcChasPowerSupply 1 } + +rcChasPowerSupplyEntry OBJECT-TYPE + SYNTAX RcChasPowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Contains information regarding a power supply + unit." + INDEX { rcChasPowerSupplyId } + ::= { rcChasPowerSupplyTable 1 } + +RcChasPowerSupplyEntry ::= + SEQUENCE { + rcChasPowerSupplyId INTEGER, + rcChasPowerSupplyOperStatus INTEGER + } + +rcChasPowerSupplyId OBJECT-TYPE + SYNTAX INTEGER(1..3) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The power supply Id." + ::= { rcChasPowerSupplyEntry 1 } + + +rcChasPowerSupplyOperStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + empty(2), + up(3), + down(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Actual status of the power supply: + - unknown(1) - status can not be determined. + - empty(2) - power supply not installed. + - up(3) - present and supplying power. + - down(4) - present, but failure indicated." + ::= { rcChasPowerSupplyEntry 2 } + + +rcChasPowerSupplyDetailTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcChasPowerSupplyDetailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table contains detailed information about + power supplies." + ::= { rcChasPowerSupply 2 } + +rcChasPowerSupplyDetailEntry OBJECT-TYPE + SYNTAX RcChasPowerSupplyDetailEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Contains detailed info regarding a power supply + unit." + INDEX { rcChasPowerSupplyDetailId } + ::= { rcChasPowerSupplyDetailTable 1 } + +RcChasPowerSupplyDetailEntry ::= + SEQUENCE { + rcChasPowerSupplyDetailId INTEGER, + rcChasPowerSupplyDetailType INTEGER, + rcChasPowerSupplyDetailSerialNumber DisplayString, + rcChasPowerSupplyDetailHardwareRevision DisplayString, + rcChasPowerSupplyDetailPartNumber DisplayString, + rcChasPowerSupplyDetailDescription DisplayString, + rcChasPowerSupplyDetailPsePower INTEGER + } + +rcChasPowerSupplyDetailId OBJECT-TYPE + SYNTAX INTEGER(1..3) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The power supply Id." + ::= { rcChasPowerSupplyDetailEntry 1 } + +rcChasPowerSupplyDetailType OBJECT-TYPE + SYNTAX INTEGER { + unknown(0), + ac(1), + dc(2), + poe(278798592) , -- 8300 110/200 V AC/DC PoE(0x109e2100) + poe1400WPS(278802688) -- 8300 110/200 V 850W/1400W AC/DC PoE(0x109e3100) + + + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The power supply type." + ::= { rcChasPowerSupplyDetailEntry 2 } + +rcChasPowerSupplyDetailSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The power supply serial number." + ::= { rcChasPowerSupplyDetailEntry 3 } + +rcChasPowerSupplyDetailHardwareRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The hardware revision of the power supply." + ::= { rcChasPowerSupplyDetailEntry 4 } + +rcChasPowerSupplyDetailPartNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The power supply part number." + ::= { rcChasPowerSupplyDetailEntry 5 } + +rcChasPowerSupplyDetailDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The detail description of power supply." + ::= { rcChasPowerSupplyDetailEntry 6 } + +rcChasPowerSupplyDetailPsePower OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The nominal power of the PSE expressed in Watts." + ::= { rcChasPowerSupplyDetailEntry 7 } + +rcCard OBJECT IDENTIFIER ::= { rcChassis 9 } + +rcCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table that contains information about the + cards in this chassis. For those slots that + do not contain a physical card, the table may + be implemented to contain a conceptual row + with the type of physical module set to + 'chasCardEmpty', or it may be implemented to + have no conceptual row instance." + ::= { rcCard 1 } + +rcCardEntry OBJECT-TYPE + SYNTAX RcCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Card attributes" + INDEX { rcCardIndex } + ::= { rcCardTable 1 } + +RcCardEntry ::= + SEQUENCE { + rcCardIndex INTEGER, + rcCardType INTEGER, + rcCardSerialNumber DisplayString, + rcCardHardwareRevision DisplayString, + rcCardAdminStatus INTEGER, + rcCardOperStatus INTEGER, + rcCardPCMCIAType INTEGER, + rcCardPartNumber DisplayString + } + +rcCardIndex OBJECT-TYPE + SYNTAX INTEGER (1..10) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A unique value for each module within the chassis. + This value is determined by the chassis slot number + where the module is inserted. Valid entries are 1 + to the value of rcChasNumSlots" + ::= { rcCardEntry 1 } + +rcCardType OBJECT-TYPE + SYNTAX INTEGER + { + other(1), -- no card installed + rcCPU(2), -- [1200] CPU Card (A1200) + rc8x100BaseTX(3), -- [1208TX] 8 port (cat 5) (A1200) + rc8x100BaseT2(4), -- [] 8 port (cat 3) (A1200) + rc8x100BaseF(5), -- [1208FX] 8 port fiber (A1200) + rc16x100BaseTX(6), -- [1216TX] 16 port (cat 5) (A1200) + rc8x100BaseTXWG(12), -- [1108TX] 8 port (half width) (A1100) + rc16x100BaseTXWG(13), -- [1100] 16 port + CPU (A1100) + rc4x100BaseFWG(14), -- [1104FX] 4 port (half width) (A1100) + rc12x100BaseTXWG(15), -- [1050] 12 port + CPU (A1050) + rc12x100BaseFBB(16), -- [] 12 port (A1200) + rc8x100BaseFWG(17), -- [1108FX] 8 port (A1100) + rc12x100BaseTX-2x100BaseFBB(18), -- [] 12 port + 2 port (A1200) + rc2x155BaseFBB(19), -- [] 2 sonet port (A1200) + rc4x155BaseFBB(20), -- [] 4 sonet port (A1200) + rc16x100BaseFBB(21), -- [1216FX] 16 port fiber (A1200) + rc14x100BaseTX-2x100BaseFBB(22), -- [1216TF] 14 port + 2 port (A1200) + rc8x10BaseFBB(23), -- [1208FL] 8 port fiber low-speed (A1200) + rc4xOC3(24), -- [1200xx] 4 port OC3 (A1200) + rc1xOC12(25), -- [1200xx] 1 port OC12 (A1200) + rcRMON(26), -- [1200xx] RMON (A1200) + rc1xOC12POSBaseMMF(27), -- [1200xx] 1 port OC12 POS (A1200) + rc1xOC12POSBaseSMF(28), -- [1200xx] 1 port OC12 POS (A1200) + rc4x1000BaseSXWG(1028), -- [1150] 1 0 00 000 0100 + CPU (A1150) + rc1x1000BaseSXWG(1025), -- [1101SX] 1 0 00 000 0001 + rc2x1000BaseSXWG(1026), -- [1102SX] 1 0 00 000 0010 + rc1x1000BaseSXRWG(1537), -- [1101SR] 1 1 00 000 0001 + rc2x1000BaseSXRWG(1538), -- [1102SR] 1 1 00 000 0010 + rc1x1000BaseLXWG(1153), -- [1101LX] 1 0 01 000 0001 + rc2x1000BaseLXWG(1154), -- [1102LX] 1 0 01 000 0010 + rc2x1000BaseXDWG(1282), -- [1102XD] 1 0 10 000 0010 + rc1x1000BaseLXRWG(1665), -- [1101LR] 1 1 01 000 0001 + rc2x1000BaseLXRWG(1666), -- [1102LR] 1 1 01 000 0010 + rc1x1000BaseSXBB(1041), -- [1201SX] 1 0 00 001 0001 + rc2x1000BaseSXBB(1042), -- [1202SX] 1 0 00 001 0010 + rc1x1000BaseSXRBB(1553), -- [1201SR] 1 1 00 001 0001 + rc2x1000BaseSXRBB(1554), -- [1202SR] 1 1 00 001 0010 + rc1x1000BaseLXBB(1169), -- [1201LX] 1 0 01 001 0001 + rc2x1000BaseLXBB(1170), -- [1202LX] 1 0 01 001 0010 + rc2x1000BaseXDBB(1298), -- [1202XD] 1 0 10 001 0010 + rc1x1000BaseLXRBB(1681), -- [1201LR] 1 1 01 001 0001 + rc2x1000BaseLXRBB(1682) -- [1202LR] 1 1 01 001 0010 + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate a card types in the Accelar + 1000 product families. + + For Accelar 1000 devices, gigabit cards use + an encoded value according to the following rule: + + +-----+--+-+---+---+---+ + bits : |31-11|10|9|8-7|6-4|3-0| + +-----+--+-+---+---+---+ + field : | a | b|c| d | e | f | + +-----+--+-+---+---+---+ + + a : not-used + b : 1=gigabit + c : 0=non-redundant, + 1=redundant + d : 0=short-haul, + 1=long-haul, + 2=extra-distance, + e : 0=work-group(a1100 and a1150) + 1=back-bone(a1200, f1250, and f2000), + f : 1=1-port, 2=2-port, 4=4-port, 8=8-port + " + ::= { rcCardEntry 2 } + +rcCardSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..16)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Unique serial number for this card." + ::= { rcCardEntry 3 } + +rcCardHardwareRevision OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Hardware Version" + ::= { rcCardEntry 4 } + +rcCardAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate the administrative status of this + card" + ::= { rcCardEntry 5 } + +rcCardOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), + down(2), + testing(3), + unknown(4), + dormant(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the operational status of this card." + ::= { rcCardEntry 6 } + +rcCardPCMCIAType OBJECT-TYPE + SYNTAX INTEGER { + none(1), + modem28kbs(2), + flash2meg(3), + flash4meg(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the type of PCMCIA card currently + installed in this CPU card, if any. + + For non-CPU cards, this variable has no meaning and + will always be set to none." + DEFVAL { none } + ::= { rcCardEntry 7 } + +rcCardPartNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Card Part Number" + ::= { rcCardEntry 8 } + +rcPort OBJECT IDENTIFIER ::= { rcChassis 10 } -- defined in rcPortXXX.mib + +-- Additional Chassis Group Variables + +rcChasAruMode OBJECT-TYPE + SYNTAX INTEGER + { + aruOne(1), + aruTwo(2), + aruThree(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The ARU mode the chassis is operating in." + ::= { rcChassis 12 } + +rcChasQuidMode OBJECT-TYPE + SYNTAX INTEGER + { + quidMixed(1), + quidTwo(2), + quidThree(3), + quidFour(4), + quidFive(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The Quid mode the chassis is operating in." + ::= { rcChassis 13 } + +rcChasEocModeAdminStatus OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + aru1Quid4(1), + aru2Quid4(2), + aru2Quid5(3), + aru3Quid4(4), + aru3Quid5(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to specify the Enforce Operational + Configuration Mode(EOC) of the system. When a + device is configured with hardware of different + revisions, the system will initialize in some + deterministic manner (e.g., the lowest common + denominator that makes sense based on the hardware + configuration). This is the 'default(0)' mode. + The user can override this behavior by manually + specifying the EOC Mode they would like." + ::= { rcChassis 14 } + +-- Agent Table + +rcAgentTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Agents in a chassis table" + ::= { rcChassis 16 } + +rcAgentEntry OBJECT-TYPE + SYNTAX RcAgentEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing info. for a particular agent" + INDEX { rcAgentId } + ::= { rcAgentTable 1 } + +RcAgentEntry ::= SEQUENCE { + rcAgentId Integer32, + rcAgentSlot Integer32, + rcAgentIpAddr IpAddress + } + +rcAgentId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "entry id" + ::= { rcAgentEntry 1 } + +rcAgentSlot OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "slot agent is in." + ::= { rcAgentEntry 2 } + +rcAgentIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "agent's ip address." + ::= { rcAgentEntry 3 } + +rcChasEocModeOperStatus OBJECT-TYPE + SYNTAX INTEGER + { + default(0), + aru1Quid4(1), + aru2Quid4(2), + aru2Quid5(3), + aru3Quid4(4), + aru3Quid5(5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the Enforce Operational + Configuration Mode(EOC) of the system." + ::= { rcChassis 15 } + +rcChasBrouterPorts OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate which ports in the system are + configured as Brouter ports." + ::= { rcChassis 17 } + +rcChasGlobalFilterEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable global filters in the + system. This variable is currently not supported." + DEFVAL { false } + ::= { rcChassis 18 } + +rcChasVlanBySrcMacEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable source MAC based VLANs + in the system." + DEFVAL { false } + ::= { rcChassis 19 } + +rcChasDiffServEcnCompatibilityEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable the Explicit Congestion + Notification(ECN) compatibility feature. + When set to FALSE , the system will mask the ECN bits + in the DS field while re-marking DSCP and will not match + on ECN capable flows if filter is set on DSmatch. + When set to TRUE, it will preserve the ECN bits in the DS + field while re-marking and will match on full 8-bit DS field." + DEFVAL { false } + ::= { rcChassis 20 } + + +rcChasNewEnhancedOperMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enhanced operational mode." + ::= { rcChassis 21 } + +rcChasNewEMMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This configuration is for enabling/disabling 128K + mode. The change will take effect upon reboot." + ::= { rcChassis 22 } + +rcChasEmModeError OBJECT-TYPE + SYNTAX INTEGER { + none(1), + non128KCardOffLine(2), + checkSlaveConfigNResetForEmMMode(3), + mismatchResetForEmMode(4), + mismatchEmModeMasterSlave(5), + incompatMasterResetForEmMode(6), + putSlaveOffEmImcompat(7), + slave8690EmIncompatGoingOffline(8), + cpu8690DisableEm(9) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the Em-mode error status" + ::= { rcChassis 23 } + +rcChasEnhancedOperMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Enhanced Operational mode the switch currently has + booted and will remain the same unitl the next reboot." + ::= { rcChassis 24 } + +rcChasEMMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "EM mode the switch currently has booted and + will remain the same unitl the next reboot." + ::= { rcChassis 25 } + +rcChasFtpDaemonInSecondaryCpu OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable FTP daemon in 2nd cpu." + DEFVAL { false } + ::= { rcChassis 26 } + +rcChasSmltOnSingleCpEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable SMLT on single CP feature in the switch" + ::= { rcChassis 27 } + +rcChasNewVlanOptmMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Vlan Optimization mode." + ::= { rcChassis 28 } + +rcChasVlanOptmMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Vlan Optimization mode the switch currently has + booted and will remain the same unitl the next + reboot." + ::= { rcChassis 29 } + +-- defined in rcLaunchPadXXX.mib +rcLaunchPad OBJECT IDENTIFIER ::= { rcChassis 30 } +rcChasNaapEnable OBJECT-TYPE + SYNTAX EnableValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "To enable/disbale to napp feature." + ::= { rcChassis 31 } + +rcChasGlobalFilterOrderingEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable global filter ordering + in the system." + DEFVAL { false } + ::= { rcChassis 32 } + +rcChasNewGlobalFilterOrderingEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This configuration is for enabling/disabling + global filter ordering. The change will take + effect upon reboot." + DEFVAL { false } + ::= { rcChassis 33 } + +rcChasWsmDirectMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is for enabling/disabling configuration of same + community strings on the WSM and 8600. This if for + allowing users to connect directly via SNMP to the WSM + blade." + DEFVAL { false } + ::= { rcChassis 34 } + +rcChasRspMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This configuration is for enabling/disabling 256K + mode. The change will take effect upon reboot." + ::= { rcChassis 35 } + +rcChasRspOperMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "R-mode the switch currently has booted and + will remain the same until the next reboot." + ::= { rcChassis 36 } + +rcChasRspModeError OBJECT-TYPE + SYNTAX INTEGER { + none(1), + non256KCardOffLine(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the r-mode error status" + ::= { rcChassis 37 } + +rcChasPOE OBJECT IDENTIFIER ::= { rcChassis 38 } + +rcChasPOEPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total PoE power which this chassis + supports (Unit in Watts)." + ::= { rcChasPOE 1 } + +rcChasPOEAllocatedPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total PoE power allocated for PoE modules + installed in this chassis (Unit in Watts)." + ::= { rcChasPOE 2 } + +rcChasPOEAvailablePower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total PoE power available for any + additional PoE power request or allocation + (Unit in Watts)." + ::= { rcChasPOE 3 } + +rcChasPOEBackUpPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total PoE power reserved for backup or + redundancy (Unit in Watts)." + ::= { rcChasPOE 4 } + +-- rcRepeater + +rcRepeater OBJECT IDENTIFIER ::= { rcChassis 39 } + +rcRepeaterTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcRepeaterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Port repeater table" + ::= { rcRepeater 1 } + +rcRepeaterEntry OBJECT-TYPE + SYNTAX RcRepeaterEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing info. for a particular repeater" + INDEX { rcRepeaterId } + ::= { rcRepeaterTable 1 } + +RcRepeaterEntry ::= SEQUENCE { + rcRepeaterId INTEGER, + rcRepeaterFirstPort InterfaceIndex, + rcRepeaterSecondPort InterfaceIndex, + rcRepeaterVlanId INTEGER, + rcRepeaterName DisplayString, + rcRepeaterRowStatus RowStatus + } + +rcRepeaterId OBJECT-TYPE + SYNTAX INTEGER(1..32) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that uniquely identifies the repeater." + ::= { rcRepeaterEntry 1 } + +rcRepeaterFirstPort OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION "First port member of the Repeater" + ::= { rcRepeaterEntry 2 } + +rcRepeaterSecondPort OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Second port member of the Repeater" + ::= { rcRepeaterEntry 3 } + +rcRepeaterVlanId OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A value that uniquely identifies the Virtual LAN + associated with first port" + ::= { rcRepeaterEntry 4 } + +rcRepeaterName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An administratively-assigned name for this repeater." + ::= { rcRepeaterEntry 5 } + +rcRepeaterRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to create/delete entries in the rcRepeater." + ::= { rcRepeaterEntry 6 } + +rcChasMcastCheckPktEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable Multicast check packet in the + system. This change will take effect upon reboot. " + DEFVAL { true } + ::= { rcChassis 40 } + +rcChasSystemMonitorEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable System monitoring in the switch" + DEFVAL { true } + ::= { rcChassis 41 } + +-- Dip-Switch Group + +rcIsolateUnconfigPorts OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate whether ports that are unconfigured + should be assigned to the 'isolated' VLAN. Ports + assigned to the 'isolated' VLAN can only communicate + with the CP port. If this option is not specified, + unconfigured ports will be assigned to the 'default' + VLAN" + ::= { rcDipSwitch 1 } + +rcUseFactorySettings OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate whether the system should ignore + the configuration information stored in NVRAM when + the system is booted." + ::= { rcDipSwitch 2 } + +rcHighPriorityMode OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate whether the system is configured + to operate in a high priority mode. The switch can + operate in either a 'best effort' or 'high priority' + mode. In the 'best effort' setting, the maximum + queue thresholds for the QUIDs are set to 768/768 + buffers. In the 'high priority' mode the setting + is 512/768. This means that in 'high priority' mode + the normal priority queue can't have more than 512 + buffers, while the high priority queue can have up + to 768." + ::= { rcDipSwitch 3 } + +-- Table Size Group + +rcTblRmonStatSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the current size of the RMON + Statistic table." + ::= { rcTblSize 1 } + +rcTblRmonHistoryControlSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the current size of the RMON + History Control table." + ::= { rcTblSize 2 } + +rcTblRmonHistoryEnetSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the current size of the RMON + History Ethernet table." + ::= { rcTblSize 3 } + +rcTblRmonAlarmSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the current size of the RMON + Alarm table." + ::= { rcTblSize 4 } + +rcTblRmonEventSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the current size of the RMON + Event table." + ::= { rcTblSize 5 } + +rcTblRmonLogSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the current size of the RMON + Log table." + ::= { rcTblSize 6 } + +rcTblArTblSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the size of the Address + Translation (AR) table." + ::= { rcTblSize 7 } + + +rcTblArFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of free + entries that are available in the Address + Translation (AR) table." + ::= { rcTblSize 8 } + +rcTblArNoSpace OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries that could + not be added to the Address Translation (AR) table + due to lack of space." + ::= { rcTblSize 9 } + +rcTblArAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries added to + the Address Translation (AR) table." + ::= { rcTblSize 10 } + +rcTblArDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries deleted to + the Address Translation (AR) table." + ::= { rcTblSize 11 } + +rcTblArMacAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of MAC entries added to + the Address Translation (AR) table." + ::= { rcTblSize 12 } + +rcTblArMacDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of MAC entries deleted to + the Address Translation (AR) table." + ::= { rcTblSize 13 } + +rcTblArMacMoved OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of MAC entries moved in + the Address Translation (AR) table." + ::= { rcTblSize 14 } + +rcTblArIpAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of IP entries added to + the Address Translation (AR) table." + ::= { rcTblSize 15 } + +rcTblArIpDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of IP entries deleted to + the Address Translation (AR) table." + ::= { rcTblSize 16 } + +rcTblArMcastTblSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the size of the Multicast + Address Translation (AR) table." + ::= { rcTblSize 17 } + + +rcTblArFreeMcastGroups OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of free multicast + groups availabe in the Address Translation (AR) + table." + ::= { rcTblSize 18 } + +rcTblArIpMcastAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of Ip multicast + entries that are added to the Address + Translation (AR) table." + ::= { rcTblSize 19 } + +rcTblArIpMcastDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of Ip multicast + entries that are deleted from the Address + Translation (AR) table." + ::= { rcTblSize 20 } + +rcTblArVlanByPortAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of VLAN by port + entries that are added to the Address + Translation (AR) table." + ::= { rcTblSize 21 } + +rcTblArVlanByPortDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of VLAN by port + entries that are deleted from the Address + Translation (AR) table." + ::= { rcTblSize 22 } + +rcTblArVlanByProtocolAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of Vlans by + Protocol Type entries that are added to + the Address Translation (AR) table." + ::= { rcTblSize 23 } + +rcTblArVlanByProtocolDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of Vlans by + Protocol Type entries that are deleted from + the Address Translation (AR) table." + ::= { rcTblSize 24 } + +rcTblArVlanByIpSubnetAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of VLAN by Ip + entries that are added to the Address + Translation (AR) table." + ::= { rcTblSize 25 } + +rcTblArVlanByIpSubnetDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of VLAN by Ip + entries that are deleted from the Address + Translation (AR) table." + ::= { rcTblSize 26 } + +rcTblArIpSubnetsAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of Ip subnet + entries that are added to the Address + Translation (AR) table." + ::= { rcTblSize 27 } + +rcTblArIpSubnetsDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of Ip subnet + entries that are deleted from the Address + Translation (AR) table." + ::= { rcTblSize 28 } + +rcTblArRsvpsAdded OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of RSVP + entries that are added to the Address + Translation (AR) table." + ::= { rcTblSize 29 } + +rcTblArRsvpsDeleted OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of RSVP + entries that are deleted from the Address + Translation (AR) table." + ::= { rcTblSize 30 } + + +rcTblBrdgFdbSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries in the + dot1d forwarding database table." + ::= { rcTblSize 31 } + +rcTblBrdgStaticSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries in the + dot1d Static Address Filtering table." + ::= { rcTblSize 32 } + +rcTblIpAddrSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries in the + IP Address table." + ::= { rcTblSize 33 } + +rcTblIpForwardingSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries in the + IP Forwarding/Best Route table." + ::= { rcTblSize 34 } + +rcTblIpNetToMediaSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of entries in the + IP Net-to-media table." + ::= { rcTblSize 35 } + +rcTblIpBestPlusAltRouteSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { rcTblSize 36 } + +rcTblIpBestPathSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { rcTblSize 37 } + +rcTblIpBestPlusAltPathSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "" + ::= { rcTblSize 38 } + + +-- rcBoot Group + +rcBootFlashSwVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION "BootFlashSwVersion indicates the software + version in the Flash." + ::= { rcBoot 1 } + +rcBootPcmciaSwVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION "BootPcmciaSwVersion indicate the software + version in the Pcmcia card." + ::= { rcBoot 2 } + + +rcBootLastBootSource OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION "Indicates the boot source of the last + the system boot." + ::= { rcBoot 3 } + +rcBootPrimary OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + net(3), + skip(4) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION "BootPrimary is indicator for the + primary source to boot the system." + DEFVAL { flash } + ::= { rcBoot 4 } + +rcBootSecondary OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + net(3), + skip(4) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION "BootSecondary indicates the second choice + of the boot source." + DEFVAL { pcmcia } + ::= { rcBoot 5 } + +rcBootTertiary OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + net(3), + skip(4) + } + MAX-ACCESS read-write + STATUS obsolete + DESCRIPTION "BootTertiary indicates the third choice + of boot source." + DEFVAL { net } + ::= { rcBoot 6 } + + +-- rcDevice Group +rcDeviceLastBootSource OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the source of the software + image the system was last booted with." + ::= { rcDevice 1 } + +rcDevicePrimarySource OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + net(3), + skip(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate the primary choice to get + a system software image." + ::= { rcDevice 2 } + +rcDevicePrimarySourceFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate a file number, if applicable." + ::= { rcDevice 3 } + +rcDeviceSecondarySource OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + net(3), + skip(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate the secondary choice to get + a system software image." + ::= { rcDevice 4 } + +rcDeviceSecondarySourceFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate a file name, if applicable." + ::= { rcDevice 5 } + +rcDeviceTertiarySource OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + net(3), + skip(4) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate the tertiary choice to get + a system software image." + ::= { rcDevice 6 } + +rcDeviceTertiarySourceFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate a file name, if applicable." + ::= { rcDevice 7 } + +rcDeviceConfigSource OBJECT-TYPE + SYNTAX INTEGER { + flash(1), + pcmcia(2), + nvram(5) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate the location to get a system + configuration file during system boot." + ::= { rcDevice 8 } + +rcDeviceConfigSourceFileName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..255)) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to indicate a file name, if applicable." + ::= { rcDevice 9 } + +rcDeviceFlashBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the number of bytes used in the + system's configuration flash device." + ::= { rcDevice 10 } + +rcDeviceFlashBytesFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the number of bytes available in + the system's configuration flash device." + ::= { rcDevice 11 } + +rcDevicePcmciaBytesUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the number of bytes used in the + system's PCMCIA device." + ::= { rcDevice 12 } + +rcDevicePcmciaBytesFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the number of bytes available in + the system's PCMCIA device." + ::= { rcDevice 13 } + +rcDeviceAction OBJECT-TYPE + SYNTAX INTEGER { + none(1), + squeezeFlash(2), + squeezePcmcia(3), + formatFlash(4), + formatPcmcia(5), + recoverFlash(6), + recoverPcmcia(7) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to specify a particular action to perform on + one of the system's device." + ::= { rcDevice 14 } + +rcDeviceResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), + inProgress(2), + success(3), + fail(4) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the result of the last action + performed on one of the system's device." + ::= { rcDevice 15 } + +rcDeviceFlashNumFiles OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the number of files available in + the system's configuration flash device." + ::= { rcDevice 16 } + +rcDevicePcmciaNumFiles OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the number of files available in + the system's PCMCIA device." + ::= { rcDevice 17 } + + +-- The Device Flash Table + +rcDeviceFlashTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcDeviceFlashEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "Flash table." + ::= { rcDevice 25 } + +rcDeviceFlashEntry OBJECT-TYPE + SYNTAX RcDeviceFlashEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "An entry in the system's flash table." + INDEX { rcDeviceFlashFileNum } + ::= { rcDeviceFlashTable 1 } + +RcDeviceFlashEntry ::= + SEQUENCE { + rcDeviceFlashFileNum INTEGER, + rcDeviceFlashFileName DisplayString, + rcDeviceFlashFileVersion DisplayString, + rcDeviceFlashFileType INTEGER, + rcDeviceFlashFileMode INTEGER, + rcDeviceFlashFileSize Integer32, + rcDeviceFlashFileCrc Integer32, + rcDeviceFlashFileStatus INTEGER, + rcDeviceFlashRowStatus RowStatus + } + +rcDeviceFlashFileNum OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate a particular file in flash." + ::= { rcDeviceFlashEntry 1 } + +rcDeviceFlashFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate a flash file's name." + ::= { rcDeviceFlashEntry 2 } + +rcDeviceFlashFileVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the flash file's version." + ::= { rcDeviceFlashEntry 3 } + +rcDeviceFlashFileType OBJECT-TYPE + SYNTAX INTEGER { + config(1), + log(2), + trace(3), + executable(4) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the flash file's type." + ::= { rcDeviceFlashEntry 4 } + +rcDeviceFlashFileMode OBJECT-TYPE + SYNTAX INTEGER { + compressed(1), + uncompressed(2) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the flash file's mode." + ::= { rcDeviceFlashEntry 5 } + +rcDeviceFlashFileSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the flash file's size." + ::= { rcDeviceFlashEntry 6 } + +rcDeviceFlashFileCrc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the flash file's CRC." + ::= { rcDeviceFlashEntry 7 } + +rcDeviceFlashFileStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + deleted(2) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the flash file's status. + A file that has been marked for deletion, but + who's space has not been reclaimed yet is marked + as 'deleted'." + ::= { rcDeviceFlashEntry 8 } + +rcDeviceFlashRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Row status." + ::= { rcDeviceFlashEntry 9 } + + +-- The Device Pcmcia Table + +rcDevicePcmciaTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcDevicePcmciaEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "PCMCIA table." + ::= { rcDevice 26 } + +rcDevicePcmciaEntry OBJECT-TYPE + SYNTAX RcDevicePcmciaEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "An entry in the system's PCMCIA table." + INDEX { rcDevicePcmciaFileNum } + ::= { rcDevicePcmciaTable 1 } + +RcDevicePcmciaEntry ::= + SEQUENCE { + rcDevicePcmciaFileNum INTEGER, + rcDevicePcmciaFileName DisplayString, + rcDevicePcmciaFileVersion DisplayString, + rcDevicePcmciaFileType INTEGER, + rcDevicePcmciaFileMode INTEGER, + rcDevicePcmciaFileSize Integer32, + rcDevicePcmciaFileCrc Integer32, + rcDevicePcmciaFileStatus INTEGER, + rcDevicePcmciaRowStatus RowStatus + } + +rcDevicePcmciaFileNum OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate a particular file in PCMCIA." + ::= { rcDevicePcmciaEntry 1 } + +rcDevicePcmciaFileName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the PCMCIA file's name." + ::= { rcDevicePcmciaEntry 2 } + +rcDevicePcmciaFileVersion OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the PCMCIA file's version." + ::= { rcDevicePcmciaEntry 3 } + +rcDevicePcmciaFileType OBJECT-TYPE + SYNTAX INTEGER { + config(1), + log(2), + trace(3), + executable(4) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the PCMCIA file's type." + ::= { rcDevicePcmciaEntry 4 } + +rcDevicePcmciaFileMode OBJECT-TYPE + SYNTAX INTEGER { + compressed(1), + uncompressed(2) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate a particular file in mode." + ::= { rcDevicePcmciaEntry 5 } + +rcDevicePcmciaFileSize OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the PCMCIA file's size." + ::= { rcDevicePcmciaEntry 6 } + +rcDevicePcmciaFileCrc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the PCMCIA file's CRC." + ::= { rcDevicePcmciaEntry 7 } + +rcDevicePcmciaFileStatus OBJECT-TYPE + SYNTAX INTEGER { + active(1), + deleted(2) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Used to indicate the PCMCIA file's status. + A file that has been marked for deletion, but + who's space has not been reclaimed yet is marked + as 'deleted'." + ::= { rcDevicePcmciaEntry 8 } + +rcDevicePcmciaRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Row status." + ::= { rcDevicePcmciaEntry 9 } + +-- rcWeb related information + +rcWebEnableServer OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Control whether the web server should be enabled. + Setting this variable to true will make the server + operational. Setting this variable to false will + disable server." + DEFVAL { false } + ::= { rcWeb 1 } + +rcWebRWAUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write-all web-server account." + ::= { rcWeb 2 } + +rcWebRWAPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write-all web-server account." + ::= { rcWeb 3 } + +rcWebRWUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write web-server account." + ::= { rcWeb 4 } + +rcWebRWPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write web-server account." + ::= { rcWeb 5 } + +rcWebROUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-only web-server account." + ::= { rcWeb 6 } + +rcWebROPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-only web-server account." + ::= { rcWeb 7 } + +rcWebLastChange OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Last web-browser initiated configuration + change since sysUpTime." + ::= { rcWeb 8 } + +rcWebNumHits OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of hits to the web-server" + ::= { rcWeb 9 } + +rcWebNumAccessChecks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of access checks performed by the web-server" + ::= { rcWeb 10 } + +rcWebNumAccessBlocks OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of accesses blocked by the web-server" + ::= { rcWeb 11 } + +rcWebNumRxErrors OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of receive errors encountered by the web-server" + ::= { rcWeb 12 } + +rcWebNumTxErrors OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of transmit errors encountered by the web-server" + ::= { rcWeb 13 } + +rcWebNumSetRequest OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of set-request to the web-server" + ::= { rcWeb 14 } + +rcWebPrimaryHtmlSourceDir OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "primary html source directory" + DEFVAL { "local" } + ::= { rcWeb 15 } + +rcWebSecondaryHtmlSourceDir OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "secondary html source directory" + DEFVAL { "pcmcia" } + ::= { rcWeb 16 } + +rcWebTertiaryHtmlSourceDir OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "tertiary html source directory" + ::= { rcWeb 17 } + +rcWebRWL3UserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "user name for the L3 web server account" + ::= { rcWeb 18 } + +rcWebRWL3Password OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "password for the L3 web server account" + ::= { rcWeb 19 } + +rcWebRWL2UserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "user name for the L2 web server account" + ::= { rcWeb 20 } + +rcWebRWL2Password OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "password for the L2 web server account" + ::= { rcWeb 21 } + +rcWebDefaultDisplayRows OBJECT-TYPE + SYNTAX INTEGER (10..100) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "default display rows in html page." + DEFVAL { 48 } + ::= { rcWeb 22 } + +rcWebLastHostAccessBlocked OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "last host access blocked" + ::= { rcWeb 23 } + +rcWebHelpTftpSourceDir OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..256)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "tftp source directory for help files" + ::= { rcWeb 24 } + +rcWebHttpPort OBJECT-TYPE + SYNTAX INTEGER (1..49151) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "the HTTP port for web access" + DEFVAL { 80 } + ::= { rcWeb 25 } + + +-- rcCli related information + +rcCliRWAUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write-all CLI account." + ::= { rcCli 1 } + +rcCliRWAPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write-all CLI account." + ::= { rcCli 2 } + +rcCliRWUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write CLI account." + ::= { rcCli 3 } + +rcCliRWPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write CLI account." + ::= { rcCli 4 } + +rcCliRWL3UserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write layer-3 CLI account." + ::= { rcCli 5 } + +rcCliRWL3Password OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write layer-3 CLI account." + ::= { rcCli 6 } + +rcCliRWL2UserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write layer-2 CLI account." + ::= { rcCli 7 } + +rcCliRWL2Password OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write layer-2 CLI account." + ::= { rcCli 8 } + +rcCliROUserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-only CLI account." + ::= { rcCli 9 } + +rcCliROPassword OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-only CLI account." + ::= { rcCli 10 } + +rcCliMaxTelnetSessions OBJECT-TYPE + SYNTAX INTEGER (0..8) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate the maximum number of telnet + sessions the system will support." + DEFVAL { 8 } + ::= { rcCli 11 } + +rcCliMaxRloginSessions OBJECT-TYPE + SYNTAX INTEGER (0..8) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate the maximum number of rlogin + sessions the system will support." + DEFVAL { 8 } + ::= { rcCli 12 } + +rcCliTimeout OBJECT-TYPE + SYNTAX INTEGER (30..65535) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to indicate the amount of idle time, in + seconds to wait before timing out telnet and + rlogin sessions." + DEFVAL { 900 } + ::= { rcCli 13 } + +rcCliNumAccessViolations OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of CLI access + violations detected by the system." + ::= { rcCli 14 } + +rcCliRWL1UserName OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "User name for the read-write layer-1 CLI account." + ::= { rcCli 15 } + +rcCliRWL1Password OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..20)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Password for the read-write layer-1 CLI account." + ::= { rcCli 16 } + +rcCliPasswordChange OBJECT-TYPE + SYNTAX INTEGER { + ro(1), + l1(2), + l2(3), + l3(4), + rw(5), + rwa(6), + slboper(7), + l4oper(8), + oper(9), + slbadmin(10), + l4admin(11), + ssladmin(12), + commStrRo(13), + commStrRw(14), + commStrl3(15), + commStrl2(16), + commStrl1(17), + webPassWdRo(18) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indication which password is changed when + sending a rcCliPasswordChange trap." + ::= { rcCli 17 } + +rcCliPassChangeResult OBJECT-TYPE + SYNTAX INTEGER { + success(1), + fail(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indication the result of changing password when + sending a rcPasswordChange trap." + ::= { rcCli 18 } + +rcCliRWEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable for the read-write CLI account." + DEFVAL { true } + ::= { rcCli 19 } + +rcCliRWL1Enable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable for the read-write-layer1 CLI + account." + DEFVAL { true } + ::= { rcCli 20 } + +rcCliRWL2Enable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable for the read-write-layer2 CLI + account." + DEFVAL { true } + ::= { rcCli 21 } + +rcCliRWL3Enable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable for the read-write-layer3 CLI + account." + DEFVAL { true } + ::= { rcCli 22 } + +rcCliROEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable for the read-only CLI account." + DEFVAL { true } + ::= { rcCli 23 } + + +-- Syslog Group + +rcSyslogGlobal OBJECT IDENTIFIER ::= { rcSyslog 1 } + +rcSyslogGlobalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to enable/disable the SysLog feature. When + enabled this feature will send a message to a server + on a network that this configured to receive and + store diagnostic messages from this device. The + type of messages sent is user configurable." + DEFVAL { true } + ::= { rcSyslogGlobal 1 } + +rcSyslogGlobalMaxHosts OBJECT-TYPE + SYNTAX INTEGER (0..10) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Maximun number of remote hosts considered 'active' + and able to receive messages from the Syslog service + on the router." + DEFVAL { 5 } + ::= { rcSyslogGlobal 2 } + +rcSyslogGlobalOperState OBJECT-TYPE + SYNTAX INTEGER { + active(1), + inactive(2), + emptyHostTbl(3), + allHostDisabled(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The operational state of the syslog service + on the router." + DEFVAL { active } + ::= { rcSyslogGlobal 3 } + +rcSyslogHostTbl OBJECT-TYPE + SYNTAX SEQUENCE OF RcSyslogHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Table of remote host destinations for syslog." + ::= { rcSyslog 2 } + +rcSyslogHostEntry OBJECT-TYPE + SYNTAX RcSyslogHostEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing information for a particular + entry in rcSyslogHostTable." + INDEX { rcSyslogHostId } + ::= { rcSyslogHostTbl 1 } + +RcSyslogHostEntry ::= SEQUENCE { + rcSyslogHostId INTEGER, + rcSyslogHostIpAddr IpAddress, + rcSyslogHostUdpPort INTEGER, + rcSyslogHostFacility INTEGER, + rcSyslogHostModuleId INTEGER, + rcSyslogHostModuleId2 Integer32, + rcSyslogHostSeverity INTEGER, + rcSyslogHostMapInfoSeverity INTEGER, + rcSyslogHostMapWarningSeverity INTEGER, + rcSyslogHostMapErrorSeverity INTEGER, + rcSyslogHostMapMfgSeverity INTEGER, + rcSyslogHostMapFatalSeverity INTEGER, + rcSyslogHostMapTraceMsg INTEGER, + rcSyslogHostMapTrapMsg INTEGER, + rcSyslogHostLogTraceMsgs TruthValue, + rcSyslogHostLogTrapMsgs TruthValue, + rcSyslogHostEnable TruthValue, + rcSyslogHostRowStatus RowStatus + } + +rcSyslogHostId OBJECT-TYPE + SYNTAX INTEGER (1..10) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Host Id." + ::= { rcSyslogHostEntry 1 } + +rcSyslogHostIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Host Ip Address" + ::= { rcSyslogHostEntry 2 } + +rcSyslogHostUdpPort OBJECT-TYPE + SYNTAX INTEGER (514..530) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the UDP port to use to send syslog + messages to the host." + DEFVAL { 514 } + ::= { rcSyslogHostEntry 3 } + +rcSyslogHostFacility OBJECT-TYPE + SYNTAX INTEGER { + local0(128), + local1(136), + local2(144), + local3(152), + local4(160), + local5(168), + local6(176), + local7(184) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the UNIX facility used in messages + to the syslog host. Default is LOCAL7." + DEFVAL { local7 } + ::= { rcSyslogHostEntry 4 } + +rcSyslogHostModuleId OBJECT-TYPE + SYNTAX INTEGER { + common (1), -- '00000001'H + snmp (2), -- '00000002'H + rmon (4), -- '00000004'H + portmgr (8), -- '00000008'H + chasmgr (16), -- '00000010'H + bridge (32), -- '00000020'H + ospf (64), -- '00000040'H + hwif (128), -- '00000080'H + sim (256), -- '00000100'H + cpp (512), -- '00000200'H + netdrv (1024), -- '00000400'H + vlanmgr (2048), -- '00000800'H + cli (4096), -- '00001000'H + main (8192), -- '00002000'H + p2ip (16384), -- '00004000'H + rcip (32768), -- '00008000'H + rompager (65536), -- '00010000'H + acif (131072), -- '00020000'H + gbip (262144), -- '00040000'H + wdt (524288), -- '00080000'H + tdp (1048576), -- '00100000'H + mandiag (2097152), -- '00200000'H + mantest (4194304), -- '00400000'H + igmp (8388608), -- '00800000'H + ipfil (16777216), -- '01000000'H + mlt (33554432), -- '02000000'H + ippolicy(67108864), -- '04000000'H + ipmc (134217728), -- '08000000'H + syslog (268435456) -- '10000000'H + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies for which modules/tasks syslog messages + should be sent. Default is all modules/tasks." + ::= { rcSyslogHostEntry 5 } + +rcSyslogHostModuleId2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies for which modules/tasks syslog messages + should be sent. Default is all modules/tasks." + ::= { rcSyslogHostEntry 6 } + +rcSyslogHostSeverity OBJECT-TYPE + SYNTAX INTEGER (1..31) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the severity level for which syslog messages + should be sent for the modules specifies in + 'SyslogHostModule'. + Value is one of multiple (logical 'OR') of the following: + info(1), + warning(2), + error(4), + mfg(8), + fatal(16)." + DEFVAL { 1 } + ::= { rcSyslogHostEntry 7 } + +rcSyslogHostMapInfoSeverity OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the syslog severity to use for Accelar + INFO messages. Default is INFO." + DEFVAL { info } + ::= { rcSyslogHostEntry 8 } + +rcSyslogHostMapWarningSeverity OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the syslog severity to use for Accelar + WARNING messages. Default is WARNING. Should be + less than or equal to INFO." + DEFVAL { warning } + ::= { rcSyslogHostEntry 9 } + +rcSyslogHostMapErrorSeverity OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the syslog severity to use for Accelar + ERROR messages. Default is ERROR. Should be + less than or equal to WARNING." + DEFVAL { error } + ::= { rcSyslogHostEntry 10 } + +rcSyslogHostMapMfgSeverity OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the syslog severity to use for Accelar + Manufactoring messages. Dafault is ERROR." + DEFVAL { error } + ::= { rcSyslogHostEntry 11 } + +rcSyslogHostMapFatalSeverity OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the syslog severity to use for Accelar + FATAL messages. Default is EMERGENCY. Should be + less than or equal to ERROR." + DEFVAL { emergency } + ::= { rcSyslogHostEntry 12 } + +rcSyslogHostMapTraceMsg OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the syslog severity to use for syslog + trace messages. Default is DEBUG." + ::= { rcSyslogHostEntry 13 } + +rcSyslogHostMapTrapMsg OBJECT-TYPE + SYNTAX INTEGER { + emergency(1), + alert(2), + critical(3), + error(4), + warning(5), + notice(6), + info(7), + debug(8) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Specifies the UNIX severity code to use for syslog + messages for SNMP traps sent to the syslog host. + Default is INFO." + ::= { rcSyslogHostEntry 14 } + +rcSyslogHostLogTraceMsgs OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether to activate the host to log the + syslog trace messages." + ::= { rcSyslogHostEntry 15 } + +rcSyslogHostLogTrapMsgs OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicate whether to activate the host to log the + syslog messages for SNMP traps." + ::= { rcSyslogHostEntry 16 } + +rcSyslogHostEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/Disable messages to be sent to syslog host." + DEFVAL { false } + ::= { rcSyslogHostEntry 17 } + +rcSyslogHostRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to create/delete entries in the rcSyslogTable." + ::= { rcSyslogHostEntry 18 } + +-- System Time Grp + +rcUserSetTimeYear OBJECT-TYPE + SYNTAX INTEGER (1998..2097) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Year of the time." + DEFVAL {1998} + ::= { rcUserSetTime 1 } + +rcUserSetTimeMonth OBJECT-TYPE + SYNTAX INTEGER (1..12) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Month of the time." + DEFVAL {1} + ::= { rcUserSetTime 2 } + +rcUserSetTimeDate OBJECT-TYPE + SYNTAX INTEGER (1..31) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Date of the time." + DEFVAL {1} + ::= { rcUserSetTime 3 } + +rcUserSetTimeHour OBJECT-TYPE + SYNTAX INTEGER (0..23) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Hour of the time." + DEFVAL {0} + ::= { rcUserSetTime 4 } + +rcUserSetTimeMinute OBJECT-TYPE + SYNTAX INTEGER (0..59) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Minute of the time." + DEFVAL {0} + ::= { rcUserSetTime 5 } + +rcUserSetTimeSecond OBJECT-TYPE + SYNTAX INTEGER (0..59) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Second of the time." + DEFVAL {0} + ::= { rcUserSetTime 6 } + + +-- RecRecord + +rcRecReservTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcRecReservEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table would display the statistics of several HW + record type used. This will also let the user reserve + certain number of records for each type." + ::= { rcRec 1 } + +rcRecReservTablEntry OBJECT-TYPE + SYNTAX RcRecReservEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "" + INDEX { rcRecReservRecordType } + ::= { rcRecReservTable 1 } + +RcRecReservEntry ::= + SEQUENCE { + rcRecReservRecordType INTEGER, + rcRecReservUsed Integer32, + rcRecReservReserved Integer32, + rcRecReservNewReserved Integer32, + rcRecReservDefReserved Integer32 + } + +rcRecReservRecordType OBJECT-TYPE + SYNTAX INTEGER { + filter(1), + ipmc(2), + local(3), + mac(4), + static(5), + vrrp(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "." + ::= { rcRecReservTablEntry 1 } + +rcRecReservUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Displayes the number of HW records actually usee + by the recordType." + ::= { rcRecReservTablEntry 2 } + +rcRecReservReserved OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Displayes the number of HW records reserved for + the recordType." + ::= { rcRecReservTablEntry 3 } + +rcRecReservNewReserved OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Displayes the number of HW records that w ill + be reserved for this recordType after reset if the + configuration is saved." + ::= { rcRecReservTablEntry 4 } + +rcRecReservDefReserved OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Number of records reserved for this recordType + if loaded with factory default." + ::= { rcRecReservTablEntry 5 } + +-- SSH Group +-- SSH Global Information. All requires RWA access. + +rcSshGlobal OBJECT IDENTIFIER ::= { rcSsh 1 } + +rcSshGlobalVersion OBJECT-TYPE + SYNTAX INTEGER { + v2only(1), + both(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "SSH version" + DEFVAL { v2only } + ::= { rcSshGlobal 1 } + +rcSshGlobalPort OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "SSH connection port." + DEFVAL { 22 } + ::= { rcSshGlobal 2 } + +rcSshGlobalMaxSession OBJECT-TYPE + SYNTAX INTEGER (0..8) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Number of session allowed." + DEFVAL { 4 } + ::= { rcSshGlobal 3 } + +rcSshGlobalTimeout OBJECT-TYPE + SYNTAX INTEGER (1..120) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "SSH connection timeout in seconds." + DEFVAL { 60 } + ::= { rcSshGlobal 4 } + +rcSshGlobalRsaKeySize OBJECT-TYPE + SYNTAX INTEGER (0|512..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "SSH Rsa key size." + DEFVAL { 1024 } + ::= { rcSshGlobal 5 } + +rcSshGlobalDsaKeySize OBJECT-TYPE + SYNTAX INTEGER (0|512..1024) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "SSH Dsa key size." + DEFVAL { 1024 } + ::= { rcSshGlobal 6 } + +rcSshGlobalRsaAuth OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable SSH RSA authentication" + DEFVAL { true } + ::= { rcSshGlobal 7 } + +rcSshGlobalDsaAuth OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable SSH DSA authentication" + DEFVAL { true } + ::= { rcSshGlobal 8 } + +rcSshGlobalPassAuth OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable SSH RSA authentication" + DEFVAL { true } + ::= { rcSshGlobal 9 } + +rcSshGlobalKeyAction OBJECT-TYPE + SYNTAX INTEGER { + none(0), + generateDsa(1), + generateRsa(2), + deleteDsa(3), + deleteRsa(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "SSH key action." + ::= { rcSshGlobal 10 } + +rcSshGlobalEnable OBJECT-TYPE + SYNTAX INTEGER { + false(0), + true(1), + secure(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable, or securely enable SSH. Securely enable + turns off other daemon flag, and it takes ffect afte reboot" + DEFVAL { false } + ::= { rcSshGlobal 11 } + +rcSshGlobalHostIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "current remote ip addr" + ::= { rcSshGlobal 12 } + +rcSslMipTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSslMipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table would display the MIP of the SSL blade + according to the slot number." + ::= { rcSsh 2 } + +rcSslMipTableEntry OBJECT-TYPE + SYNTAX RcSslMipEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table get the MIP of the SSL blade on which + the blade is in different cluster." + INDEX { rcSslMipSlot } + ::= { rcSslMipTable 1 } + +RcSslMipEntry ::= + SEQUENCE { + rcSslMipSlot Integer32, + rcSslMipMip DisplayString + } + +rcSslMipSlot OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used as an index to find out the MIP of SSL blade." + ::= { rcSslMipTableEntry 1 } + +rcSslMipMip OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Master IP of the SSL blade." + ::= { rcSslMipTableEntry 2 } + +-- LACP Group +-- LACP Global Information. + +rcLacpGlobal OBJECT IDENTIFIER ::= { rcLacp 1 } + +rcLacpGlobalEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "globally enable/disable LACP" + DEFVAL { false } + ::= { rcLacpGlobal 1 } + +rcLacpGlobalSystemPriority OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "set system priority to all the LACP enabled aggregators + and prots" + DEFVAL { 32768 } + ::= { rcLacpGlobal 2 } + +rcLacpGlobalFastPeriodicTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The number of miliseconds between periodic + transmissions using Short Timeouts. Set this + value to all LACP enabled ports." + DEFVAL { 1000 } + ::= { rcLacpGlobal 3 } + +rcLacpGlobalSlowPeriodicTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The number of miliseconds between periodic + transmissions using LONG Timeouts. Set this + value to all LACP enabled ports." + DEFVAL { 30000 } + ::= { rcLacpGlobal 4 } + +rcLacpGlobalTimeoutScale OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Scalar value used to calculate timeout time from + periodic time. Set this value to all LACP enabled ports." + DEFVAL { 3 } + ::= { rcLacpGlobal 5 } + +rcLacpGlobalAggrWaitTime OBJECT-TYPE + SYNTAX INTEGER (200..2000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The number of mili seconds to delay aggregation + to allow multiple links to aggregate simultaneously." + DEFVAL { 2000 } + ::= { rcLacpGlobal 6 } + +rcLacpGlobalVlacpEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "globally enable/disable Virtual LACP" + DEFVAL { false } + ::= { rcLacpGlobal 7 } + +rcLacpGlobalVlacpMulticastMACAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Virtual LACP multicast MAC address" + ::= { rcLacpGlobal 8 } + +-- rcVlacpPeerMacAddressTable + +rcVlacpPeerMacAddressTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlacpPeerMacAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION " Virtual LACP Peer Mac Address table" + ::= { rcLacp 2 } + +rcVlacpPeerMacAddressEntry OBJECT-TYPE + SYNTAX RcVlacpPeerMacAddressEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing info. for a particular peer" + INDEX { rcVlacpPeerMacAddressMAC } + ::= { rcVlacpPeerMacAddressTable 1 } + +RcVlacpPeerMacAddressEntry ::= SEQUENCE { + rcVlacpPeerMacAddressMAC MacAddress, + rcVlacpPeerMacAddressMltId INTEGER, + rcVlacpPeerMacAddressPort InterfaceIndex, + rcVlacpPeerMacAddressIpAddr IpAddress, + rcVlacpPeerMacAddressRowStatus RowStatus + } + +rcVlacpPeerMacAddressMAC OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Virtual LACP peer mac address on a port/MLT" + ::= { rcVlacpPeerMacAddressEntry 1 } + +rcVlacpPeerMacAddressMltId OBJECT-TYPE + SYNTAX INTEGER(1..32) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "MLT Id on which Virtual LACP peer mac address is + directly or indirectly connected" + ::= { rcVlacpPeerMacAddressEntry 2 } + +rcVlacpPeerMacAddressPort OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Ports on which Virtual LACP peer mac address is + directly or indirectly connected" + ::= { rcVlacpPeerMacAddressEntry 3 } + +rcVlacpPeerMacAddressIpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Virtual LACP peer Ip Address on port/MLT" + ::= { rcVlacpPeerMacAddressEntry 4 } + +rcVlacpPeerMacAddressRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Used to create/delete entries in the peer address table" + ::= { rcVlacpPeerMacAddressEntry 5 } + +END + diff --git a/pandora_console/attachment/mibs/RC-VLAN-MIB.mib b/pandora_console/attachment/mibs/RC-VLAN-MIB.mib new file mode 100644 index 0000000000..528401e3cd --- /dev/null +++ b/pandora_console/attachment/mibs/RC-VLAN-MIB.mib @@ -0,0 +1,1477 @@ +RC-VLAN-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Integer32, IpAddress + FROM SNMPv2-SMI + DisplayString, TruthValue, MacAddress, RowStatus + FROM SNMPv2-TC + InterfaceIndex, InterfaceIndexOrZero + FROM IF-MIB + rcVlan, rcSvlan, IdList, PortSet, EnableValue + FROM RAPID-CITY; + +rcVlanMib MODULE-IDENTITY + LAST-UPDATED "200511220000Z" + ORGANIZATION "Bay Networks, Rapid-City Group" + CONTACT-INFO " + Edwin Tsang + Postal: Bay Networks, Inc. + 4401 Great America Parkway + Santa Clara, CA 95052-8185 + + Tel: 408-495-6159 + Fax: 408-495-5215 + E-mail: edwin_tsang@baynetworks.com + " + DESCRIPTION "Enterprise MIB for the Accelar product family." + + REVISION "200511220000Z" -- 22 Nov 2005 + DESCRIPTION "Version 24: Updated rcVlanPortPerformTagging to match + existing implementations. Restored lost + revision history." + + REVISION "200508150000Z" -- 15 Aug 2005 + DESCRIPTION "Version 23: Added rcVlanOspfPassivePortMember to rcVlanEntry." + + REVISION "200508100000Z" -- 10 Aug 2005 + DESCRIPTION "Version 22: Added rcVlanUnkDstMacDiscard to rcVlanTable." + + REVISION "200504270000Z" -- 27 Apr 2005 + DESCRIPTION "Version 21: Allow rcVlanIgmpSnoopQuerierPort to have value 0." + + REVISION "200503140000Z" -- 14 Mar 2005 + DESCRIPTION "Version 20: Added rcVlanPortSpoofDetect" + + REVISION "200502040000Z" -- 04 Feb 2005 + DESCRIPTION "Version 19: changed ranges of rcVlanAgingTime, rcVlanPortVlanIds" + + REVISION "200501040000Z" -- 04 January 2005 + DESCRIPTION "Version 18: added new mib rcVlanPortArpDetect" + + REVISION "200412030000Z" -- 03 December 2004 + DESCRIPTION "Version 17: increased the range of rcVlanName to (0..64) characters" + + REVISION "200411290000Z" -- 29 November 2004 + DESCRIPTION "Version 16: Cleaned up REVISION info." + + REVISION "200411240000Z" -- 24 November 2004 + DESCRIPTION "Version 15: removed rcVlanNewName & changed the range + for rcVlanName." + + REVISION "200411200000Z" -- 20 November 2004 + DESCRIPTION "Version 14: added new mib rcVlanNewName & made + rcVlanName obsolete." + + REVISION "200410040000Z" -- 04 October 2004 + DESCRIPTION "Version 13: add the range for + rcVlanNewLoopDetectedVlanId." + + REVISION "200409280000Z" -- 28 September 2004 + DESCRIPTION "Version 12: Increase the range for + rvVlanFirwallClusterId." + + REVISION "200409230000Z" -- 23 September 2004 + DESCRIPTION "Version 11: Add range for mib rcVlanPortIndex, + rcVlanMacVlanId, rcVlanLoopDetectedPortIndex, + rcVlanLoopDetectedVlanId." + + REVISION "200409210000Z" -- 21 September 2004 + DESCRIPTION "Version 10: Remove range for mib rcVlanPortIndex, + rcVlanMacVlanId, rcVlanLoopDetectedPortIndex, + rcVlanLoopDetectedVlanId." + + REVISION "200409080000Z" -- 08 September 2004 + DESCRIPTION "Version 9: Added rcVlanNewLoopDetectedTable. Changed + rcVlanPortLoopDetectAction." + + REVISION "200408250000Z" -- 25 August 2004 + DESCRIPTION "Version 8: Added rcVlanFirewallClusterId in rcVlanTable" + + REVISION "200407130000Z" -- 13 July 2004 + DESCRIPTION "Version 7: Added rcVlanTlsIpmc" + + REVISION "200406220000Z" -- 22 June 2004 + DESCRIPTION "Version 6: Added rcVlanPortLoopDetectAction" + + REVISION "200406160000Z" -- 16 June 2004 + DESCRIPTION "Version 5: Added rcVlanIgmpVer1SnoopMRouterPorts and + rcVlanIgmpVer2SnoopMRouterPorts" + + ::= { rcVlan 0 } + +-- VLAN Table + +rcVlanNumVlans OBJECT-TYPE + SYNTAX INTEGER (1..128) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of VLANs currently defined in the switch." + ::= { rcVlan 1 } + +rcVlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of Virtual LAN entries. The number of entries + is given by rcVlanNumVlans." + ::= { rcVlan 2 } + +rcVlanEntry OBJECT-TYPE + SYNTAX RcVlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing configuration information for a + particular Virtual LAN. + + The relationship between the various port sets in a + VLAN Entry are : + + o The set of ports defined by PortMembers must be a + subset of the set of ports in the underlying STG of + the VLAN. + + o The bitwise AND of PortMembers and NotAllowToJoin must + be the empty set. + + o The bitwise OR of PortMembers and NotAllowToJoin must + be the set of ports in the underlying STG of the VLAN. + + o The set of ports defined by StaticMembers must be a + subset of the set of ports defined by PortMembers. + + o The bitwise XOR of PortMembers and StaticMembers defines + the set of dynamic (potential) members of the VLAN. + + o The set of ports defined by ActiveMembers must be a subset + of the set of ports defined by PortMembers. + " + INDEX { rcVlanId } + ::= { rcVlanTable 1 } + +RcVlanEntry ::= SEQUENCE { + rcVlanId INTEGER, + rcVlanName DisplayString, + rcVlanColor INTEGER, + rcVlanHighPriority TruthValue, --excluded + rcVlanRoutingEnable TruthValue, --excluded + rcVlanIfIndex InterfaceIndex, + rcVlanAction INTEGER, + rcVlanResult INTEGER, + rcVlanStgId INTEGER, + rcVlanType INTEGER, + rcVlanPortMembers PortSet, + rcVlanActiveMembers PortSet, + rcVlanStaticMembers PortSet, + rcVlanNotAllowToJoin PortSet, + rcVlanProtocolId INTEGER, + rcVlanSubnetAddr IpAddress, + rcVlanSubnetMask IpAddress, + rcVlanAgingTime INTEGER, + rcVlanMacAddress MacAddress, + rcVlanRowStatus RowStatus, + rcVlanIgmpSnoopEnable TruthValue, + rcVlanIgmpSnoopReportProxyEnable TruthValue, + rcVlanIgmpSnoopRobustness INTEGER, + rcVlanIgmpSnoopQueryInterval INTEGER, + rcVlanIgmpSnoopMRouterPorts PortSet, + rcVlanUserDefinedPid Integer32, + rcVlanIgmpSnoopActiveMRouterPorts PortSet, + rcVlanProtocolIds Integer32, + rcVlanIgmpSnoopActiveQuerier IpAddress, + rcVlanIgmpSnoopMRouterExpiration Integer32, + rcVlanIgmpSnoopQuerierPort InterfaceIndexOrZero, + rcVlanUserPriority INTEGER, + rcVlanQosLevel INTEGER, + rcVlanTosValue INTEGER, + rcVlanEncap INTEGER, + rcVlanFirewallVlanType INTEGER, + rcVlanFdbAging INTEGER, + rcVlanUpdateDynamicMacQosLevel EnableValue, + rcVlanUserDefinedPidList OCTET STRING, + rcVlanIgmpVer1SnoopMRouterPorts PortSet, + rcVlanIgmpVer2SnoopMRouterPorts PortSet, + rcVlanTlsIpmc EnableValue, + rcVlanFirewallClusterId INTEGER, + rcVlanOspfPassivePortMember PortSet + } + +rcVlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that uniquely identifies the Virtual LAN + associated with this entry. This value corresponds + to the lower 12 bits in the IEEE 802.1Q VLAN Tag." + ::= { rcVlanEntry 1 } + +rcVlanName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An administratively-assigned name for this VLAN." + ::= { rcVlanEntry 2 } + +rcVlanColor OBJECT-TYPE + SYNTAX INTEGER (0..32) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An administratively-assigned color code for this + VLAN. The value of this object is used by the VLAN + Manager GUI tool to select a color when it draws + this VLAN on the screen." + ::= { rcVlanEntry 3 } + +rcVlanHighPriority OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "A flag to note whether frames in this VLAN should + be assigned a high switching priority." + DEFVAL { false } + ::= { rcVlanEntry 4 } + +rcVlanRoutingEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "A flag to note whether IP routing is enabled in + this VLAN." + DEFVAL { false } + ::= { rcVlanEntry 5 } + +rcVlanIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "When rcVlanRoutingEnable is set to true(1), this + value indicates the 'logical' ifIndex assigned to + this VLAN. Otherwise, this value is meaningless + and should be set to zero." + ::= { rcVlanEntry 6 } + +rcVlanAction OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- none of the following + flushMacFdb(2), -- flush MAC forwarding table + flushArp(3), -- flush ARP table + flushIp(4), -- flush IP route table + flushDynMemb(5), -- flush Dynamic Members + all(6), -- flush all tables + flushSnoopMemb(7), -- flush IGMP Snoop Members + triggerRipUpdate(8), -- manually trigger rip update + flushSnoopMRtr(9) -- flush snoop multicast router + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "VLAN related actions." + DEFVAL { none } + ::= { rcVlanEntry 7 } + +rcVlanResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- none of the following + inProgress(2), -- in progress + success(3), -- success + fail(4) -- failure + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The result from the last VLAN action." + DEFVAL { none } + ::= { rcVlanEntry 8 } + +rcVlanStgId OBJECT-TYPE + SYNTAX INTEGER (0..128) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Indicates the Spanning Tree Group (STG) used by + this VLAN to determine the state of its ports. + If this VLAN is not associated with any STG, this + value should be set to zero." + DEFVAL { 1 } + ::= { rcVlanEntry 9 } + +rcVlanType OBJECT-TYPE + SYNTAX INTEGER { + byPort(1), -- VLAN by Port + byIpSubnet(2), -- VLAN by IP subnet + byProtocolId(3), -- VLAN by Protocol Id + bySrcMac(4), -- VLAN by Src MAC address + byDstMcast(5), -- VLAN by Dst MultiCast + bySvlan(6), -- VLAN by Stacked Vlan + byIds(7) -- VLAN by IDS Vlan + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The type of VLAN, distinguished according to the + policy used to define its port membership." + ::= { rcVlanEntry 10 } + +rcVlanPortMembers OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The set of ports that are members (static or + dynamic) of this VLAN." + ::= { rcVlanEntry 11 } + +rcVlanActiveMembers OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The set of ports that are currently active in + this VLAN. Active ports include all static ports + and any dynamic ports where the VLAN policy was + met." + ::= { rcVlanEntry 12 } + +rcVlanStaticMembers OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The set of ports that are static members of this + VLAN. A static member of a VLAN is always active + and is never aged out." + ::= { rcVlanEntry 13 } + +rcVlanNotAllowToJoin OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The set of ports that are not allowed to become + members of this VLAN." + ::= { rcVlanEntry 14 } + +rcVlanProtocolId OBJECT-TYPE + SYNTAX INTEGER { + none(0), + ip(1), + ipx802dot3(2), + ipx802dot2(3), + ipxSnap(4), + ipxEthernet2(5), + appleTalk(6), + decLat(7), + decOther(8), + sna802dot2(9), + snaEthernet2(10), + netBios(11), + xns(12), + vines(13), + ipV6(14), + usrDefined(15), + rarp(16), + pPPoE(17) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The protocol identifier of this VLAN. This value + is meaningful only if rcVlanType is equal to + byProtocolId(3). For other VLAN types it should + have the value none(0)." + ::= { rcVlanEntry 15 } + +rcVlanSubnetAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The IP subnet address of this VLAN. This value + is meaningful only if rcVlanType is equal to + byIpSubnet(2). For other VLAN types it should + have the value 0.0.0.0." + ::= { rcVlanEntry 16 } + +rcVlanSubnetMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The IP subnet mask of this VLAN. This value + is meaningful only if rcVlanType is equal to + byIpSubnet(2). For other VLAN types it should + have the value 0.0.0.0." + ::= { rcVlanEntry 17 } + +rcVlanAgingTime OBJECT-TYPE + SYNTAX INTEGER (0 | 10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The timeout period (in seconds) used for aging + out dynamic members of this VLAN. This field is + only relevant for policy-based VLANs." + DEFVAL { 600 } + ::= { rcVlanEntry 18 } + +rcVlanMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The MAC address assigned to the virtual router + interface of this VLAN. This field is meaningful + only if rcVlanRoutingEnable is equal to true(1)." + ::= { rcVlanEntry 19 } + +rcVlanRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to create/delete entries in the rcVlanTable." + ::= { rcVlanEntry 20 } + +rcVlanIgmpSnoopEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "A flag to note whether IGMP Snooping is enabled + on this VLAN." + DEFVAL { false } + ::= { rcVlanEntry 21 } + +rcVlanIgmpSnoopReportProxyEnable OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "A flag to note whether IGMP Report Proxy is + enabled on this VLAN." + DEFVAL { true } + ::= { rcVlanEntry 22 } + +rcVlanIgmpSnoopRobustness OBJECT-TYPE + SYNTAX INTEGER (1..255) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "This variable allows tuning for the expected + packet loss on a subnet. If a subnet is expected + to be lossy, the Robustness variable may be + increased. IGMP is robust to (Robustness - 1) + packet losses." + DEFVAL { 2 } + ::= { rcVlanEntry 23 } + +rcVlanIgmpSnoopQueryInterval OBJECT-TYPE + SYNTAX INTEGER (1..65535) + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The interval (in seconds) between IGMP Host-Query + packets transmitted on this interface." + DEFVAL { 125 } + ::= { rcVlanEntry 24 } + +rcVlanIgmpSnoopMRouterPorts OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The set of ports in this VLAN that provide + connectivity to an IP Multicast router." + ::= { rcVlanEntry 25 } + +rcVlanUserDefinedPid OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "When rcVlanProtocolId is set to usrDefined(15) + in a protocol-based VLAN, this field represents + the 16-bit user defined protocol identifier." + ::= { rcVlanEntry 26 } + +rcVlanIgmpSnoopActiveMRouterPorts OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Active ports." + ::= { rcVlanEntry 27 } + +rcVlanProtocolIds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Bitfield of protocol ids." + ::= { rcVlanEntry 28 } + +rcVlanIgmpSnoopActiveQuerier OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "IP address of multicast querier router." + ::= { rcVlanEntry 29 } + +rcVlanIgmpSnoopMRouterExpiration OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "Multicast querier router aging time out." + ::= { rcVlanEntry 30 } + +rcVlanIgmpSnoopQuerierPort OBJECT-TYPE + SYNTAX InterfaceIndexOrZero + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The port on which the multicast querier router + was heard." + ::= { rcVlanEntry 31 } + +rcVlanUserPriority OBJECT-TYPE + SYNTAX INTEGER { + level0(0), + level1(1), + level2(2), + level3(3), + level4(4), + level5(5), + level6(6), + level7(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "User priority level." + ::= { rcVlanEntry 32 } + +rcVlanQosLevel OBJECT-TYPE + SYNTAX INTEGER { + level0(0), + level1(1), + level2(2), + level3(3), + level4(4), + level5(5), + level6(6), + level7(7) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Used to specify the Qos level packets, carried in this + VLAN, should be processed with." + DEFVAL { level1 } + ::= { rcVlanEntry 33 } + +rcVlanTosValue OBJECT-TYPE + SYNTAX INTEGER (1..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Tos value." + DEFVAL { 1 } + ::= { rcVlanEntry 34 } + +rcVlanEncap OBJECT-TYPE + SYNTAX INTEGER { + ethernet2(1), + llc(2), + snap(3), + all(4), + notapplicable(5) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is the encapsulation type for userdefined protocol + based vlans. This is not meaningful for other types of + vlan. The default value is null." + DEFVAL { notapplicable } + ::= { rcVlanEntry 35 } + +rcVlanFirewallVlanType OBJECT-TYPE + SYNTAX INTEGER { + none(1), + naap(2), + enforceable(3), + peering(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This is the firewall vlan type for port based + vlans." + DEFVAL { none } + ::= { rcVlanEntry 36 } + +rcVlanFdbAging OBJECT-TYPE + SYNTAX INTEGER (10..1000000) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The timeout required to." + DEFVAL { 300 } + ::= { rcVlanEntry 37 } + +rcVlanUpdateDynamicMacQosLevel OBJECT-TYPE + SYNTAX EnableValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "It is used to indicate whether to update qos + level for dynamic learned mac add resses + associated with a subnet-based or protocol-based + vlan when vlan qos level changes. If it is set + to TRUE, qos level for all dynamic learned mac + addresses will be changed upon changing vlan qos + level. If it is set to DISABLE, once a mac address + is learned, qos level will not updated when vlan + qos level changes." + DEFVAL { disable } + ::= { rcVlanEntry 38 } + +rcVlanUserDefinedPidList OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A list of Protocol Id to usrDefined in a protocol-based + VLAN, this field represents the list user defined protocol identifier." + ::= { rcVlanEntry 39 } + +rcVlanIgmpVer1SnoopMRouterPorts OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The set of ports in this VLAN that provide connectivity + to an IP Multicast router using IGMP Version 1." + ::= { rcVlanEntry 40 } + +rcVlanIgmpVer2SnoopMRouterPorts OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The set of ports in this VLAN that provide connectivity + to an IP Multicast router using IGMP version 2." + ::= { rcVlanEntry 41 } + +rcVlanTlsIpmc OBJECT-TYPE + SYNTAX EnableValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable the IP Mcast for this SP IP service Vlan for + TLS OE feature" + DEFVAL { disable } + ::= { rcVlanEntry 42 } + +rcVlanFirewallClusterId OBJECT-TYPE + SYNTAX INTEGER (0..64) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Firewall cluster Id" + DEFVAL { 1 } + ::= { rcVlanEntry 43 } + +rcVlanOspfPassivePortMember OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The set of ports in the vlan that are designated as ospf passive." + ::= { rcVlanEntry 44 } + +-- VLAN Port Table + +rcVlanPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlanPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table used to maintain VLAN port related + information." + ::= { rcVlan 3 } + +rcVlanPortEntry OBJECT-TYPE + SYNTAX RcVlanPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing VLAN information regarding a + particular port." + INDEX { rcVlanPortIndex } + ::= { rcVlanPortTable 1 } + +RcVlanPortEntry ::= SEQUENCE { + rcVlanPortIndex Integer32, + rcVlanPortNumVlanIds Integer32, + rcVlanPortVlanIds IdList, + rcVlanPortType INTEGER, + rcVlanPortDiscardTaggedFrames TruthValue, + rcVlanPortDiscardUntaggedFrames TruthValue, + rcVlanPortDefaultVlanId INTEGER, + rcVlanPortPerformTagging INTEGER, + rcVlanPortSVlanPortType INTEGER, + rcVlanPortLoopDetect TruthValue, + rcVlanPortFirstPortInOpid InterfaceIndex, + rcVlanPortLastPortInOpid InterfaceIndex, + rcVlanPortUntagDefaultVlan TruthValue, + rcVlanPortLoopDetectAction INTEGER, + rcVlanPortArpDetect TruthValue, + rcVlanPortSpoofDetect TruthValue + + } + +rcVlanPortIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An unique index used to identify a particular + port in the system. This index is equal to the + ifIndex of the port." + ::= { rcVlanPortEntry 1 } + +rcVlanPortNumVlanIds OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Used to indicate the number of VLAN IDs that + are stored in the rcVlanPortVlanIds variable." + ::= { rcVlanPortEntry 2 } + +rcVlanPortVlanIds OBJECT-TYPE + SYNTAX IdList (SIZE (0..4096)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An array used to identify which VLANs this port + is assigned to. Each VLAN ID is stored as a two + octet value. The first octet in the pair holds + bits 15-8 of the VLAN ID, while the second octet + holds bits 7-0 of the VLAN ID." + ::= { rcVlanPortEntry 3 } + +rcVlanPortType OBJECT-TYPE + SYNTAX INTEGER { + access(1), -- access port type + trunk(2) -- trunk port type + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The type of port: access(1) or trunk(2)." + DEFVAL { access } + ::= { rcVlanPortEntry 4 } + +rcVlanPortDiscardTaggedFrames OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A flag used to determine how to process tagged + frames received on this access port. When the + flag is set, these frames are discarded by the + forwarding process. When the flag is reset, these + frames are processed normally. + + This field is meaningless when the port is not + an access port and should be set to false(2)." + DEFVAL { false } + ::= { rcVlanPortEntry 5 } + +rcVlanPortDiscardUntaggedFrames OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "A flag used to determine how to process untagged + frames received on this trunk port. When the flag + is set, these frames are discarded by the + forwarding process. When the flag is reset, these + frames are assigned to the VLAN specified by + rcVlanPortDefaultVlanId. + + This field is meaningless when the port is not + a trunk port and should be set to false(2)." + DEFVAL { false } + ::= { rcVlanPortEntry 6 } + +rcVlanPortDefaultVlanId OBJECT-TYPE + SYNTAX INTEGER (0..4094) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The VLAN ID assigned to untagged frames received + on this trunk port. + + This field is meaningless when the port is not + a trunk port." + DEFVAL { 1 } + ::= { rcVlanPortEntry 7 } + +rcVlanPortPerformTagging OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2), + tagPvidOnly(3), + untagPvidOnly(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable the port on the current vlan to + perform tagging on the incoming and outgoing traffic." + DEFVAL { false } + ::= { rcVlanPortEntry 8 } + +rcVlanPortSVlanPortType OBJECT-TYPE + SYNTAX INTEGER { + normal(1), + uni(2), + nni(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The type of port." + DEFVAL { normal } + ::= { rcVlanPortEntry 9 } + +rcVlanPortLoopDetect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable loop detection on this port" + DEFVAL { false } + ::= { rcVlanPortEntry 10 } + +rcVlanPortFirstPortInOpid OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This value gives the IfIndex of the first port in the + octapid. This value is used to generate an error message + when changing port type from normal to uni/nni and + viceversa" + ::= { rcVlanPortEntry 11 } + +rcVlanPortLastPortInOpid OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This value gives the IfIndex of the first port in the + octapid. This value is used to generate an error message + when changing port type from normal to uni/nni and + viceversa" + ::= { rcVlanPortEntry 12 } + +rcVlanPortUntagDefaultVlan OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "enable/disable Egress Tagging on the Default Vlan + of the port." + DEFVAL { false } + ::= { rcVlanPortEntry 13 } + + +rcVlanPortLoopDetectAction OBJECT-TYPE + SYNTAX INTEGER { + portDown(1), + vlanBlock(2), + macDiscard(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION "This value is used to specify the action which needs to be + taken once a loop is detected on a specific port." + DEFVAL { portDown } + ::= { rcVlanPortEntry 14 } + +rcVlanPortArpDetect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable Arp detection on this port" + DEFVAL { false } + ::= { rcVlanPortEntry 15 } + +rcVlanPortSpoofDetect OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Enable/disable spoof detection on this port" + DEFVAL { false } + ::= { rcVlanPortEntry 16 } + + + +-- VLAN MAC Table + +rcVlanMacTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlanMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table used to maintain MAC addresses assigned + to a particular VLAN by MAC address." + ::= { rcVlan 4 } + +rcVlanMacEntry OBJECT-TYPE + SYNTAX RcVlanMacEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Entry containing VLAN information regarding a + particular port." + INDEX { rcVlanMacVlanId, rcVlanMacAddr } + ::= { rcVlanMacTable 1 } + +RcVlanMacEntry ::= SEQUENCE { + rcVlanMacVlanId Integer32, + rcVlanMacAddr MacAddress, + rcVlanMacRowStatus RowStatus + } + +rcVlanMacVlanId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An unique index used to identify a VLAN (by MAC + address) in the system." + ::= { rcVlanMacEntry 1 } + +rcVlanMacAddr OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An unique index used to identify a MAC address + assigned to a particular VLAN." + ::= { rcVlanMacEntry 2 } + +rcVlanMacRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Row status for this entry." + ::= { rcVlanMacEntry 3 } + + +-- VLAN IGMP Snoop Table + +rcVlanIgmpSnoopNumGroups OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of entries (rows) in the + rcVlanIgmpSnoopTable." + ::= { rcVlan 5 } + +rcVlanIgmpSnoopTable OBJECT-TYPE --excluded + SYNTAX SEQUENCE OF RcVlanIgmpSnoopEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "The (conceptual) table listing the IP multicast + groups for which there are members on a particular + interface on a particular VLAN (i.e., a list + known multicast receivers). + + A row is created by the system when it receives + an IGMP Join messages on a port." + ::= { rcVlan 6 } + +rcVlanIgmpSnoopEntry OBJECT-TYPE + SYNTAX RcVlanIgmpSnoopEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "An entry (row) in the rcVlanIgmpSnoopTable." + INDEX { rcVlanIgmpSnoopVlanId, rcVlanIgmpSnoopIpAddress, + rcVlanIgmpSnoopIfIndex, rcVlanIgmpSnoopMember } + ::= { rcVlanIgmpSnoopTable 1 } + +RcVlanIgmpSnoopEntry ::= SEQUENCE { + rcVlanIgmpSnoopVlanId INTEGER, + rcVlanIgmpSnoopIpAddress IpAddress, + rcVlanIgmpSnoopIfIndex InterfaceIndex, + rcVlanIgmpSnoopMember IpAddress, + rcVlanIgmpSnoopExpiration Integer32, + rcVlanIgmpSnoopType INTEGER + } + +rcVlanIgmpSnoopVlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The VLAN for which this entry contains + information." + ::= { rcVlanIgmpSnoopEntry 1 } + +rcVlanIgmpSnoopIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP multicast group address for which this + entry contains information." + ::= { rcVlanIgmpSnoopEntry 2 } + +rcVlanIgmpSnoopIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The interface for which this entry contains + information for this IP multicast group address + (i.e., the port the Join message was received)." + ::= { rcVlanIgmpSnoopEntry 3 } + +rcVlanIgmpSnoopMember OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP Address of the source of the membership + report received for this IP Multicast group address + on this interface (i.e., the address of the host + sending the Join message)." + ::= { rcVlanIgmpSnoopEntry 4 } + +rcVlanIgmpSnoopExpiration OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The minimum amount of time remaining before this + entry will be aged out." + ::= { rcVlanIgmpSnoopEntry 5 } + +rcVlanIgmpSnoopType OBJECT-TYPE + SYNTAX INTEGER { + dynamic(1), -- created via IGMP + static(2), -- created via management + blocked(3) + } + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The type of entry: dynamic(1) entries are + created by snooping IGMP messages, static(2) + entries are created via management." + ::= { rcVlanIgmpSnoopEntry 6 } + + +-- VLAN IGMP Snoop Static Table + +rcVlanIgmpSnoopStaticTable OBJECT-TYPE --excluded + SYNTAX SEQUENCE OF RcVlanIgmpSnoopStaticEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "The (conceptual) table listing the statically- + defined IP multicast groups for which there are + members on a particular interface on a particular + VLAN." + ::= { rcVlan 7 } + +rcVlanIgmpSnoopStaticEntry OBJECT-TYPE + SYNTAX RcVlanIgmpSnoopStaticEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "An entry (row) in the rcVlanIgmpSnoopStaticTable." + INDEX { rcVlanIgmpSnoopStaticVlanId, rcVlanIgmpSnoopStaticIpAddress } + ::= { rcVlanIgmpSnoopStaticTable 1 } + +RcVlanIgmpSnoopStaticEntry ::= SEQUENCE { + rcVlanIgmpSnoopStaticVlanId INTEGER, + rcVlanIgmpSnoopStaticIpAddress IpAddress, + rcVlanIgmpSnoopStaticMemberPorts PortSet, + rcVlanIgmpSnoopStaticRowStatus RowStatus, + rcVlanIgmpSnoopStaticNotAllowedToJoin PortSet + } + +rcVlanIgmpSnoopStaticVlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The VLAN for which this entry contains information." + ::= { rcVlanIgmpSnoopStaticEntry 1 } + +rcVlanIgmpSnoopStaticIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP multicast group address for which this + entry contains information. The address must + fall within 224.0.1.0 to 239.255.255.255." + ::= { rcVlanIgmpSnoopStaticEntry 2 } + +rcVlanIgmpSnoopStaticMemberPorts OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "The set of ports in this VLAN multicast traffic + for the rcVlanIgmpSnoopStaticIpAddress is to be + forwarded to." + ::= { rcVlanIgmpSnoopStaticEntry 3 } + +rcVlanIgmpSnoopStaticRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to create/delete entries in the + rcVlanIgmpSnoopStaticTable." + ::= { rcVlanIgmpSnoopStaticEntry 4 } + +rcVlanIgmpSnoopStaticNotAllowedToJoin OBJECT-TYPE + SYNTAX PortSet + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Not allowed to join" + ::= { rcVlanIgmpSnoopStaticEntry 5 } + + +-- VLAN IGMP Snoop Access Table + +rcVlanIgmpSnoopAccessTable OBJECT-TYPE --excluded + SYNTAX SEQUENCE OF RcVlanIgmpSnoopAccessEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "Table used to specify which host(s) can send + and/or receive IP Multicast traffic." + ::= { rcVlan 8 } + +rcVlanIgmpSnoopAccessEntry OBJECT-TYPE + SYNTAX RcVlanIgmpSnoopAccessEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "An entry (row) in the rcVlanIgmpSnoopAccessTable." + INDEX { rcVlanIgmpSnoopAccessVlanId, + rcVlanIgmpSnoopAccessGrpAddr, + rcVlanIgmpSnoopAccessHostAddr, + rcVlanIgmpSnoopAccessHostMask } + ::= { rcVlanIgmpSnoopAccessTable 1 } + + +RcVlanIgmpSnoopAccessEntry ::= SEQUENCE { + rcVlanIgmpSnoopAccessVlanId INTEGER, + rcVlanIgmpSnoopAccessGrpAddr IpAddress, + rcVlanIgmpSnoopAccessHostAddr IpAddress, + rcVlanIgmpSnoopAccessHostMask IpAddress, + rcVlanIgmpSnoopAccessMode INTEGER, + rcVlanIgmpSnoopAccessRowStatus RowStatus + } + +rcVlanIgmpSnoopAccessVlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The VLAN for which this entry contains information." + ::= { rcVlanIgmpSnoopAccessEntry 1 } + +rcVlanIgmpSnoopAccessGrpAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP multicast group address for which this + entry contains information." + ::= { rcVlanIgmpSnoopAccessEntry 2 } + +rcVlanIgmpSnoopAccessHostAddr OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP address of a host for which this + entry contains information." + ::= { rcVlanIgmpSnoopAccessEntry 3 } + +rcVlanIgmpSnoopAccessHostMask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP netmask of a host for which this + entry contains information." + ::= { rcVlanIgmpSnoopAccessEntry 4 } + +rcVlanIgmpSnoopAccessMode OBJECT-TYPE + SYNTAX INTEGER { + denyTx(1), + denyRx(2), + denyBoth(3) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to specify whether the host identified by + rcVlanIgmpSnoopAccessHostAddr should be denied + IP multicast transmit, receive, or both." + ::= { rcVlanIgmpSnoopAccessEntry 5 } + +rcVlanIgmpSnoopAccessRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Row status" + ::= { rcVlanIgmpSnoopAccessEntry 6 } + + +-- VLAN IGMP Snoop Sender Table + +rcVlanIgmpSnoopSenderTable OBJECT-TYPE --excluded + SYNTAX SEQUENCE OF RcVlanIgmpSnoopSenderEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "The (conceptual) table listing the IP multicast + groups for which there are members on a particular + interface on a particular VLAN (i.e., a list + known multicast senders). + + A row is created by the system when it receives + an IGMP Join messages on a port." + ::= { rcVlan 9 } + +rcVlanIgmpSnoopSenderEntry OBJECT-TYPE + SYNTAX RcVlanIgmpSnoopSenderEntry + MAX-ACCESS not-accessible + STATUS deprecated + DESCRIPTION "An entry (row) in the rcVlanIgmpSnoopSenderTable." + INDEX { rcVlanIgmpSnoopSenderVlanId, + rcVlanIgmpSnoopSenderIpAddress, + rcVlanIgmpSnoopSenderIfIndex, + rcVlanIgmpSnoopSenderMember } + ::= { rcVlanIgmpSnoopSenderTable 1 } + + +RcVlanIgmpSnoopSenderEntry ::= SEQUENCE { + rcVlanIgmpSnoopSenderVlanId INTEGER, + rcVlanIgmpSnoopSenderIpAddress IpAddress, + rcVlanIgmpSnoopSenderIfIndex InterfaceIndex, + rcVlanIgmpSnoopSenderMember IpAddress, + rcVlanIgmpSnoopSenderAction INTEGER + } + +rcVlanIgmpSnoopSenderVlanId OBJECT-TYPE + SYNTAX INTEGER (1..4094) + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The VLAN for which this entry contains information." + ::= { rcVlanIgmpSnoopSenderEntry 1 } + +rcVlanIgmpSnoopSenderIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP multicast group address for which this + entry contains information." + ::= { rcVlanIgmpSnoopSenderEntry 2 } + +rcVlanIgmpSnoopSenderIfIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The interface for which this entry contains + information for this IP multicast group address + (i.e., the port the multicast traffic was received)." + ::= { rcVlanIgmpSnoopSenderEntry 3 } + +rcVlanIgmpSnoopSenderMember OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION "The IP Address of the host sending the multicast + traffic." + ::= { rcVlanIgmpSnoopSenderEntry 4 } + +rcVlanIgmpSnoopSenderAction OBJECT-TYPE + SYNTAX INTEGER { + none(0), + flushEntry(1), + flushGrp(2) + } + MAX-ACCESS read-write + STATUS deprecated + DESCRIPTION "Used to specify an action to perform on this group." + ::= { rcVlanIgmpSnoopSenderEntry 5 } + +-- Vlan Loop Detected Table + +rcVlanLoopDetectedTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlanLoopDetectedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of Vlans the port belongs to +and the + corresponding loop detected status." + ::= { rcVlan 10 } + +rcVlanLoopDetectedEntry OBJECT-TYPE + SYNTAX RcVlanLoopDetectedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Loop-Detected Entry." + INDEX { rcVlanLoopDetectedPortIndex, rcVlanLoopDetectedVlanId } + ::= { rcVlanLoopDetectedTable 1 } + +RcVlanLoopDetectedEntry ::= SEQUENCE { + rcVlanLoopDetectedPortIndex Integer32, + rcVlanLoopDetectedVlanId Integer32, + rcVlanLoopDetectedValue INTEGER + } + +rcVlanLoopDetectedPortIndex OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Port Number." + ::= { rcVlanLoopDetectedEntry 1 } + +rcVlanLoopDetectedVlanId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Gives the VlanId to which the port belongs." + ::= { rcVlanLoopDetectedEntry 2 } + +rcVlanLoopDetectedValue OBJECT-TYPE + SYNTAX INTEGER { + no(0), -- loop not detected + yes(1) -- loop detected + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Gives the Loop Detected status of the port + in a vlan." + DEFVAL { no } + ::= { rcVlanLoopDetectedEntry 3 } + +-- Vlan Dsap Ssap Table + +rcVlanDsapSsapTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlanDsapSsapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A table used to maintain DSAP/SSAP values + assigned to a sna802dot2 or userdefined vlan." + ::= { rcVlan 11 } + +rcVlanDsapSsapEntry OBJECT-TYPE + SYNTAX RcVlanDsapSsapEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in the rcVlanDsapSsap table." + INDEX { rcVlanDsapSsapVlanId, rcVlanDsapSsapPid } + ::= { rcVlanDsapSsapTable 1 } + +RcVlanDsapSsapEntry ::= SEQUENCE { + rcVlanDsapSsapVlanId INTEGER, + rcVlanDsapSsapPid INTEGER, + rcVlanDsapSsapRowStatus RowStatus + } + +rcVlanDsapSsapVlanId OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A unique index to identify a vlan." + ::= { rcVlanDsapSsapEntry 1 } + +rcVlanDsapSsapPid OBJECT-TYPE + SYNTAX INTEGER (0..'ffff'h) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Values of DSAP/SSAP assigned to a particular + vlan." + ::= { rcVlanDsapSsapEntry 2 } + +rcVlanDsapSsapRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Row Status." + ::= { rcVlanDsapSsapEntry 3 } + +-- Vlan New Loop Detect + +rcVlanNewLoopDetectedTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcVlanNewLoopDetectedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of Vlans the port belongs to and the + corresponding loop detected status." + ::= { rcVlan 12 } + +rcVlanNewLoopDetectedEntry OBJECT-TYPE + SYNTAX RcVlanNewLoopDetectedEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Loop-Detected Entry." + INDEX { rcVlanNewLoopDetectedPortIndex, + rcVlanNewLoopDetectedVlanId, + rcVlanNewLoopDetectedMac } + ::= { rcVlanNewLoopDetectedTable 1 } + +RcVlanNewLoopDetectedEntry ::= SEQUENCE { + rcVlanNewLoopDetectedPortIndex InterfaceIndex, + rcVlanNewLoopDetectedVlanId Integer32, + rcVlanNewLoopDetectedMac MacAddress, + rcVlanNewLoopDetectedAction INTEGER, + rcVlanNewLoopDetectedSmltRemote TruthValue + } + +rcVlanNewLoopDetectedPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Port Number." + ::= { rcVlanNewLoopDetectedEntry 1 } + +rcVlanNewLoopDetectedVlanId OBJECT-TYPE + SYNTAX Integer32 (0..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Gives the VlanId to which the port belongs." + ::= { rcVlanNewLoopDetectedEntry 2 } + +rcVlanNewLoopDetectedMac OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Mac address" + ::= {rcVlanNewLoopDetectedEntry 3} + +rcVlanNewLoopDetectedAction OBJECT-TYPE + SYNTAX INTEGER { + portDown(1), + vlanBlock(2), + macDiscard(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION "This value is used to specify the action which + needs to be taken once a loop is detected on a + specific port." + DEFVAL { portDown } + ::= { rcVlanNewLoopDetectedEntry 4 } + +rcVlanNewLoopDetectedSmltRemote OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A MAC address indicate for remote learnt, + either local or remote." + ::= { rcVlanNewLoopDetectedEntry 5 } + +-- Stack Vlan Group Information + +rcSvlanGlobal OBJECT IDENTIFIER ::= { rcSvlan 1 } + +rcSvlanActiveLevel OBJECT-TYPE + SYNTAX INTEGER (0..7) + MAX-ACCESS read-write + STATUS current + DESCRIPTION "Stacked Vlan active level." + DEFVAL { 0 } + ::= { rcSvlanGlobal 1 } + +-- Stacked Vlan Table Information + +rcSvlanTable OBJECT-TYPE + SYNTAX SEQUENCE OF RcSvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A list of possible levels and their corresponding ether type. + The number of entries is eight." + ::= { rcSvlan 2 } + +rcSvlanEntry OBJECT-TYPE + SYNTAX RcSvlanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A Stacked Vlan table entry." + INDEX { rcSvlanId } + ::= { rcSvlanTable 1 } + +RcSvlanEntry ::= + SEQUENCE { + rcSvlanId INTEGER, + rcSvlanLevel Integer32, + rcSvlanEtherType Integer32 + } + +rcSvlanId OBJECT-TYPE + SYNTAX INTEGER (1..8) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "Row Index." + ::= { rcSvlanEntry 1 } + +rcSvlanLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A value that identifies the switch level associated + with this entry." + ::= { rcSvlanEntry 2 } + +rcSvlanEtherType OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION "The ether type value is used for svlan tagging." + ::= { rcSvlanEntry 3 } + + +END diff --git a/pandora_console/attachment/mibs/RDBMS-MIB b/pandora_console/attachment/mibs/RDBMS-MIB new file mode 100644 index 0000000000..723efeb6f5 --- /dev/null +++ b/pandora_console/attachment/mibs/RDBMS-MIB @@ -0,0 +1,1305 @@ + +RDBMS-MIB DEFINITIONS ::= BEGIN + + +IMPORTS + AutonomousType + FROM RFC1316-MIB + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212 + Gauge, Counter + FROM RFC1155-SMI + mib-2 + FROM RFC1213-MIB + applGroup, applIndex + FROM APPLICATION-MIB; + +DateAndTime ::= OCTET STRING (SIZE (8 .. 11)) + +rdbmsMIB OBJECT IDENTIFIER ::= { mib-2 39 } + +rdbmsObjects OBJECT IDENTIFIER ::= { rdbmsMIB 1 } + +rdbmsDbTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of databases installed on a system." + ::= { rdbmsObjects 1 } + +rdbmsDbEntry OBJECT-TYPE + SYNTAX RdbmsDbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single database on the host. Whether a + particular database is represented by a row in rdbmsDbTable + may be dependent on the activity level of that database, + according to the product's implementation. An instance of + rdbmsRelState having the value active, other, or restricted + implies that an entry, corresponding to that instance, will + be present." + INDEX { rdbmsDbIndex } + ::= { rdbmsDbTable 1 } + +RdbmsDbEntry ::= + SEQUENCE { + rdbmsDbIndex + INTEGER, + + rdbmsDbPrivateMibOID + OBJECT IDENTIFIER, + + rdbmsDbVendorName + DisplayString, + + rdbmsDbName + DisplayString, + + rdbmsDbContact + DisplayString + } + +rdbmsDbIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A numeric index, unique among all the databases from all + products on this host. This value is a surrogate for the + conceptually unique key, which is {PrivateMibOID, + databasename}" + ::= { rdbmsDbEntry 1 } + +rdbmsDbPrivateMibOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The authoritative identification for the private MIB for + this database, presumably based on the vendor, e.g., { + enterprises 111 } for Oracle + databases, {enterprises 757 } for + Ingres databases, { enterprises 897 } for Sybase databases, etc. + + If no OBJECT IDENTIFIER exists for the private MIB, attempts + to access this object will return noSuchName (SNMPv1) + or noSuchInstance (SNMPv2)." + ::= { rdbmsDbEntry 2 } + +rdbmsDbVendorName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the vendor whose RDBMS manages this database, + for informational purposes." + ::= { rdbmsDbEntry 3 } + +rdbmsDbName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of this database, in a product specific format. The + product may need to qualify the name in some way to resolve + conflicts if it is possible for a database name to be + duplicated on a host. It might be necessary to construct a + hierarchical name embedding the RDBMS instance/installation + on the host, and/or the owner of the database. For instance, + '/test-installation/database-owner/database-name'." + ::= { rdbmsDbEntry 4 } + +rdbmsDbContact OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The textual identification of the contact person for this + managed database, together with information on how to contact + this person. + + Note: if there is no server associated with this database, an + agent may need to keep this in other persistent storage, + e.g., a configuration file. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbEntry 5 } + +rdbmsDbInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of additional information about databases present + on the host." + ::= { rdbmsObjects 2 } + +rdbmsDbInfoEntry OBJECT-TYPE + SYNTAX RdbmsDbInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information that must be present if the database is actively + opened. If the database is not actively opened, then + attempts to access corresponding instances in this table may + result in either noSuchName (SNMPv1) or noSuchInstance + (SNMPv2). 'Actively opened' means at least one of the + rdbmsRelState entries for this database in the rdbmsRelTable + is active(2)." + INDEX { rdbmsDbIndex } + ::= { rdbmsDbInfoTable 1 } + +RdbmsDbInfoEntry ::= + SEQUENCE { + rdbmsDbInfoProductName + DisplayString, + + rdbmsDbInfoVersion + DisplayString, + + rdbmsDbInfoSizeUnits + INTEGER, + + rdbmsDbInfoSizeAllocated + INTEGER, + + rdbmsDbInfoSizeUsed + INTEGER, + + rdbmsDbInfoLastBackup + DateAndTime + } + +rdbmsDbInfoProductName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The textual product name of the server that created or last + restructured this database. The format is product specific." + ::= { rdbmsDbInfoEntry 1 } + +rdbmsDbInfoVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version number of the server that created or last + restructured this database. The format is product specific." + ::= { rdbmsDbInfoEntry 2 } + +rdbmsDbInfoSizeUnits OBJECT-TYPE + SYNTAX INTEGER { + bytes(1), + kbytes(2), + mbytes(3), + gbytes(4), + tbytes(5) +} + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identification of the units used to measure the size of this + database in rdbmsDbInfoSizeAllocated and rdbmsDbInfoSizeUsed. + bytes(1) indicates individual bytes, kbytes(2) indicates + units of kilobytes, mbytes(3) indicates units of megabytes, + gbytes(4) indicates units of gigabytes, and tbytes(5) + indicates units of terabytes. All are binary multiples -- 1K + = 1024. If writable, changes here are reflected in the get + values of the associated objects." + ::= { rdbmsDbInfoEntry 3 } + +rdbmsDbInfoSizeAllocated OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The estimated size of this database (in + rdbmsDbInfoSizeUnits), which is the disk space that has been + allocated to it and is no longer available to users on this + host. rdbmsDbInfoSize does not necessarily indicate the + amount of space actually in use for database data. Some + databases may support extending allocated size, and others + may not. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbInfoEntry 4 } + +rdbmsDbInfoSizeUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The estimated size of this database, in rdbmsDbInfoSizeUnits, + which is actually in use for database data." + ::= { rdbmsDbInfoEntry 5 } + +rdbmsDbInfoLastBackup OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time that the latest complete or partial backup + of the database was taken. If a database has never been + backed up, then attempts to access this object will + result in either noSuchName (SNMPv1) or noSuchInstance + (SNMPv2)." + ::= { rdbmsDbInfoEntry 6 } + +rdbmsDbParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of configuration parameters for a database. + Entries should be populated according to the following + guidelines: + (1) The value should be specified through administrative + (human) intervention. + (2) It should be configured on a per-database basis. + (3) One of the following is true: + (a) The parameter has a non-numeric value; + (b) The current value is numeric, but it only changes due + to human intervention; + (c) The current value is numeric and dynamic, but the + RDBMS does not track access/allocation failures + related to the parameter; + (d) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, but the failure has no + significant impact on RDBMS performance or + availability. + (e) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, the failure has + significant impact on RDBMS performance or + availability, and is shown in the + rdbmsDbLimitedResource table." + ::= { rdbmsObjects 3 } + +rdbmsDbParamEntry OBJECT-TYPE + SYNTAX RdbmsDbParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single configuration parameter for a database. + Parameters with single values have a subindex value of one. + If the parameter is naturally considered to contain a + variable number of members of a class, e.g. members of the + DBA user group, or files which are part of the database, then + it must be presented as a set of rows. If, on the other + hand, the parameter represents a set of choices from a class, + e.g. the permissions on a file or the options chosen out of + the set of all options allowed, AND is guaranteed to always + fit in the 255 character length of a DisplayString, then it + may be presented as a comma separated list with a subindex + value of one. Zero may not be used as a subindex value. + + If the database is not actively opened, then attempts + to access corresponding instances in this table may result in + either noSuchName (SNMPv1) or noSuchInstance (SNMPv2). + 'Actively opened' means at least one of the + rdbmsRelState entries for this database in the rdbmsRelTable + is active(2)." + INDEX { rdbmsDbIndex, rdbmsDbParamName, rdbmsDbParamSubIndex } + ::= { rdbmsDbParamTable 1 } + +RdbmsDbParamEntry ::= + SEQUENCE { + rdbmsDbParamName + DisplayString, + + rdbmsDbParamSubIndex + INTEGER, + + rdbmsDbParamID + AutonomousType, + + rdbmsDbParamCurrValue + DisplayString, + + rdbmsDbParamComment + DisplayString + } + +rdbmsDbParamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of a configuration parameter for a database. This + name is product-specific. The length is limited to 64 + characters to constrain the number of sub-identifiers needed + for instance identification (and to minimize network + traffic)." + ::= { rdbmsDbParamEntry 1 } + +rdbmsDbParamSubIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The subindex value for this parameter. If the parameter is + naturally considered to contain a variable number of members + of a class, e.g. members of the DBA user group, or files + which are part of the database, then it must be presented as + a set of rows. If, on the other hand, the parameter + represents a set of choices from a class, e.g. the + permissions on a file or the options chosen out of the set of + all options allowed, AND is guaranteed to always fit in the + 255 character length of a DisplayString, then it may be + presented as a comma separated list with a subindex value of + one. Zero may not be used as a value." + ::= { rdbmsDbParamEntry 2 } + +rdbmsDbParamID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the parameter which may be described in some other + MIB (e.g., an enterprise-specific MIB module). If there is + no ID for this rdbmsDbParamName, attempts to access this + object will return noSuchName (SNMPv1) or noSuchInstance + (SNMPv2)." + ::= { rdbmsDbParamEntry 3 } + +rdbmsDbParamCurrValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value for a configuration parameter now in effect, the + actual setting for the database. While there may multiple + values in the temporal domain of interest (for instance, the + value to take effect at the next restart), this is the + current setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbParamEntry 4 } + +rdbmsDbParamComment OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Annotation which describes the purpose of a configuration + parameter or the reason for a particular parameter's + setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbParamEntry 5 } + +rdbmsDbLimitedResourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of limited resources that are kept per-database." + ::= { rdbmsObjects 4 } + +rdbmsDbLimitedResourceEntry OBJECT-TYPE + SYNTAX RdbmsDbLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single limited resource kept per-database. + A limited resource has maximum use determined by a parameter + that might or might not be changeable at run time, or visible + in the rdbmsDbParamTable. Examples would be the number of + available locks, or disk space on a partition. Arrays of + resources are supported through an integer sub index, which + should have the value of one for single-instance names. + + Limited resources that are shared across databases, are best + put in the rdbmsSvrLimitedResourceTable instead of this one. + If the database is not actively opened, then attempts to + access corresponding instances in this table may result in + either noSuchName (SNMPv1) or noSuchInstance (SNMPv2). + 'Actively opened' means at least one of the rdbmsRelState + entries for this database in the rdbmsRelTable is active(2)." + INDEX { rdbmsDbIndex, rdbmsDbLimitedResourceName } + ::= { rdbmsDbLimitedResourceTable 1 } + +RdbmsDbLimitedResourceEntry ::= + SEQUENCE { + rdbmsDbLimitedResourceName + DisplayString, + + rdbmsDbLimitedResourceID + AutonomousType, + + rdbmsDbLimitedResourceLimit + INTEGER, + + rdbmsDbLimitedResourceCurrent + INTEGER, + + rdbmsDbLimitedResourceHighwater + INTEGER, + + rdbmsDbLimitedResourceFailures + Counter, + + rdbmsDbLimitedResourceDescription + DisplayString + } + +rdbmsDbLimitedResourceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of the resource, for instance 'global locks' or + 'locks for the FOO database', or 'data space on /dev/rdsk/5s0 + for FOO'. The length is limited to 64 characters to constrain + the number of sub-identifiers needed for instance + identification (and to minimize network traffic)." + ::= { rdbmsDbLimitedResourceEntry 1 } + +rdbmsDbLimitedResourceID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the resource which may be described in some other + MIB (e.g., an enterprise-specific MIB module). If there is + no ID for this rdbmsDbLimitedResourceName, attempts to access + this object will return noSuchName (SNMPv1) or noSuchInstance + (SNMPv2)." + ::= { rdbmsDbLimitedResourceEntry 2 } + +rdbmsDbLimitedResourceLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum value the resource use may attain. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbLimitedResourceEntry 3 } + +rdbmsDbLimitedResourceCurrent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value for the resource." + ::= { rdbmsDbLimitedResourceEntry 4 } + +rdbmsDbLimitedResourceHighwater OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum value of the resource seen since applUpTime + was reset for the earliest server which has the database + actively opened. + + If there are two servers with the database open, and the + oldest one dies, the proper way to invalidate the value is by + resetting sysUpTime." + ::= { rdbmsDbLimitedResourceEntry 5 } + +rdbmsDbLimitedResourceFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the system wanted to exceed the limit of + the resource since applUpTime was reset for the earliest + server which has the database actively opened. + + If there are two servers with the DB open, and the + oldest one dies, the proper way to invalidate the value is by + resetting sysUpTime." + ::= { rdbmsDbLimitedResourceEntry 6 } + +rdbmsDbLimitedResourceDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A description of the resource and the meaning of the integer + units used for Limit, Current, and Highwater. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbLimitedResourceEntry 7 } + +rdbmsSrvTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of database servers running or installed + on a system." + ::= { rdbmsObjects 5 } + +rdbmsSrvEntry OBJECT-TYPE + SYNTAX RdbmsSrvEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single database server. A server is an + independent entity that provides access to one or more + databases. Failure of one does not affect access to + databases through any other servers. There might be one or + more servers providing access to a database. A server may be + a 'process' or collection of 'processes', as interpreted by + the product." + INDEX { applIndex } + ::= { rdbmsSrvTable 1 } + +RdbmsSrvEntry ::= + SEQUENCE { + rdbmsSrvPrivateMibOID + OBJECT IDENTIFIER, + + rdbmsSrvVendorName + DisplayString, + + rdbmsSrvProductName + DisplayString, + + rdbmsSrvContact + DisplayString + } + +rdbmsSrvPrivateMibOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The authoritative identification for the private MIB for this + server, presumably based on the vendor, e.g., { enterprises + 111 } for Oracle servers, { + enterprises 757 } for Ingres + servers, { enterprises 897 } for + Sybase servers, etc. + + If no OBJECT IDENTIFIER exists for the private MIB, attempts + to access this object will return noSuchName (SNMPv1) + or noSuchInstance (SNMPv2)." + ::= { rdbmsSrvEntry 1 } + +rdbmsSrvVendorName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the vendor whose RDBMS manages this database, + for informational purposes." + ::= { rdbmsSrvEntry 2 } + +rdbmsSrvProductName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product name of this server. This is normally the + vendor's formal name for the product, in product specific + format." + ::= { rdbmsSrvEntry 3 } + +rdbmsSrvContact OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The textual identification of the contact person for this + managed server, together with information on how to contact + this person. + + Note: if there is no active server associated with this + object, an agent may need to keep this in other persistent + storage, e.g., a configuration file. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvEntry 4 } + +rdbmsSrvInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of additional information about database servers. + + Entries in this table correspond to applications in the + APPLICATION-MIB applTable. Some objects in that table are + application-specific. When they are associated with an RDBMS + server in this table, the objects have the following + meanings. + + applName - The name of this server, i.e., the process or + group of processes providing access to this database. The + exact format will be product and host specific. + + applVersion - The version number of this server, in product + specific format. + + applOperStatus - up(1) means operational and available for + general use. down(2) means the server is not available for + use, but is known to the agent. The other states have broad + meaning, and may need to be supplemented by the vendor + private MIB. Halted(3) implies an administrative state of + unavailability. Congested(4) implies a resource or or + administrative limit is prohibiting new inbound associations. + The 'available soon' description of restarting(5) may include + an indeterminate amount of recovery. + + applLastChange is the time the agent noticed the most recent + change to applOperStatus. + + applInboundAssociation is the number of currently active + local and remote conversations (usually SQL connects). + + applOutboundAssociations is not provided by this MIB. + + applAccumulatedInboundAssociations is the total number of + local and remote conversations started since the server came + up. + + applAccumulatedOutbound associations is not provided by this + MIB. + + applLastInboundActivity is the time the most recent local or + remote conversation was attempted or disconnected. + + applLastOutboundActivity is not provided by this MIB. + + applRejectedInboundAssociations is the number of local or + remote conversations rejected by the server for + administrative reasons or because of resource limitations. + + applFailedOutboundAssociations is not provided by this MIB." + ::= { rdbmsObjects 6 } + +rdbmsSrvInfoEntry OBJECT-TYPE + SYNTAX RdbmsSrvInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information that must be present for a single 'up' database + server, with visibility determined by the value of the + corresponding applOperStatus object. If an instance of + applOperStatus is not up(1), then attempts to access + corresponding instances in this table may result in either + noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned + by the agent." + INDEX { applIndex } + ::= { rdbmsSrvInfoTable 1 } + +RdbmsSrvInfoEntry ::= + SEQUENCE { + rdbmsSrvInfoStartupTime + DateAndTime, + + rdbmsSrvInfoFinishedTransactions + Gauge, + + rdbmsSrvInfoDiskReads + Counter, + + rdbmsSrvInfoDiskWrites + Counter, + + rdbmsSrvInfoLogicalReads + Counter, + + rdbmsSrvInfoLogicalWrites + Counter, + + rdbmsSrvInfoPageWrites + Counter, + + rdbmsSrvInfoPageReads + Counter, + + rdbmsSrvInfoDiskOutOfSpaces + Counter, + + rdbmsSrvInfoHandledRequests + Counter, + + rdbmsSrvInfoRequestRecvs + Counter, + + rdbmsSrvInfoRequestSends + Counter, + + rdbmsSrvInfoHighwaterInboundAssociations + Gauge, + + rdbmsSrvInfoMaxInboundAssociations + Gauge + } + +rdbmsSrvInfoStartupTime OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time at which this server was last started." + ::= { rdbmsSrvInfoEntry 1 } + +rdbmsSrvInfoFinishedTransactions OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of transactions visible to this server that have + been completed by either commit or abort. Some database + operations, such as read-only queries, may not result in the + creation of a transaction." + ::= { rdbmsSrvInfoEntry 2 } + +rdbmsSrvInfoDiskReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of reads of database files issued to the + operating system by this server since startup. Numbers are + not comparable between products. What constitutes a + readand how it is accounted is product-specific." + ::= { rdbmsSrvInfoEntry 3 } + +rdbmsSrvInfoLogicalReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of logical reads of database files made + internally by this server since startup. The values of this + object and those of rdbmsSrvInfoDiskReads reveal the effect + of caching on read operation. Numbers are not comparable + between products, and may only be meaningful when aggregated + across all servers sharing a common cache." + ::= { rdbmsSrvInfoEntry 4 } + +rdbmsSrvInfoDiskWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of writes to database files issued to the + operating system by this server since startup. Numbers are + not comparable between products." + ::= { rdbmsSrvInfoEntry 5 } + +rdbmsSrvInfoLogicalWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of times parts of the database files have + been marked 'dirty' and in need of writing to the disk. This + value and rdbmsSrvInfoDiskWrites give some indication of the + effect of 'write-behind' strategies in reducing the number of + disk writes compared to database operations. Because the + writes may be done by servers other than those marking the + parts of the database files dirty, these values may only be + meaningful when aggregated across all servers sharing a + common cache. Numbers are not comparable between products." + ::= { rdbmsSrvInfoEntry 6 } + +rdbmsSrvInfoPageReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of pages in database files read by this + server since startup. 'Pages' are product specific units of + disk i/o operations. This value, along with + rdbmsSrvInfoDiskReads, reveals the effect of any grouping + read-ahead that may be used to enhance performance of some + queries, such as scans." + ::= { rdbmsSrvInfoEntry 7 } + +rdbmsSrvInfoPageWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of pages in database files written by this + server since startup. Pages are product-specific units of + disk I/O. This value, with rdbmsSrvInfoDiskWrites, shows the + effect of write strategies that collapse logical writes of + contiguous pages into single calls to the operating system." + ::= { rdbmsSrvInfoEntry 8 } + +rdbmsSrvInfoDiskOutOfSpaces OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of times the server has been unable to + obtain disk space that it wanted, since server startup. This + would be inspected by an agent on receipt of an + rdbmsOutOfSpace trap." + ::= { rdbmsSrvInfoEntry 9 } + +rdbmsSrvInfoHandledRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of requests made to the server on inbound + associations. The meaning of 'requests' is product specific, + and is not comparable between products. + + This is intended to encapsulate high level semantic + operations between clients and servers, or between peers. + For instance, one request might correspond to a 'select' or + an 'insert' statement. It is not intended to capture disk + i/o described in rdbmsSrvInfoDiskReads and + rdbmsSrvInfoDiskWrites." + ::= { rdbmsSrvInfoEntry 10 } + +rdbmsSrvInfoRequestRecvs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of receive operations made processing any requests + on inbound associations. The meaning of operations is product + specific, and is not comparable between products. + + This is intended to capture lower-level i/o operations than + shown by HandledRequests, between clients and servers, or + between peers. For instance, it might roughly correspond to + the amount of data given with an 'insert' statement. It is + not intended to capture disk i/o described in + rdbmsSrvInfoDiskReads and rdbmsSrvInfoDiskWrites." + ::= { rdbmsSrvInfoEntry 11 } + +rdbmsSrvInfoRequestSends OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of send operations made processing requests + handled on inbound associations. The meaning of operations + is product specific, and is not comparable between products. + This is intended to capture lower-level i/o operations than + shown by HandledRequests, between between clients and + servers, or between peers. It might roughly correspond to + the number of rows returned by a 'select' statement. It is + not intended to capture disk i/o described in DiskReads." + ::= { rdbmsSrvInfoEntry 12 } + +rdbmsSrvInfoHighwaterInboundAssociations OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The greatest number of inbound associations that have been + simultaneously open to this server since startup." + ::= { rdbmsSrvInfoEntry 13 } + +rdbmsSrvInfoMaxInboundAssociations OBJECT-TYPE + SYNTAX Gauge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The greatest number of inbound associations that can be + simultaneously open with this server. If there is no limit, + then the value should be zero. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvInfoEntry 14 } + +rdbmsSrvParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of configuration parameters for a server. Entries + should be populated according to the following guidelines: + (1) The value should be specified through administrative + (human) intervention. + (2) It should be configured on a per-server or a more global + basis, with duplicate entries for each server sharing + use of the parameter. + (3) One of the following is true: + (a) The parameter has a non-numeric value; + (b) The current value is numeric, but it only changes due + to human intervention; + (c) The current value is numeric and dynamic, but the + RDBMS does not track access/allocation failures + related to the parameter; + (d) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, but the failure has no + significant impact on RDBMS performance or + availability. + (e) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, the failure has + significant impact on RDBMS performance or + availability, and is shown in the + rdbmsSrvLimitedResource table." + ::= { rdbmsObjects 7 } + +rdbmsSrvParamEntry OBJECT-TYPE + SYNTAX RdbmsSrvParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single configuration parameter for a server. + Parameters with single values have a subindex value of one. + If the parameter is naturally considered to contain a + variable number of members of a class, e.g. members of the + DBA user group, or tracepoints active in the server, then it + must be presented as a set of rows. If, on the other hand, + the parameter represents a set of choices from a class, + e.g. the permissions on a file or the options chosen out of + the set of all options allowed, AND is guaranteed to always + fit in the 255 character length of a DisplayString, then it + may be presented as a comma separated list with a subindex + value of one. Zero may not be used as a subindex value. + + Entries for a server must be present if the value of the + corresponding applOperStatus object is up(1). If an instance + of applOperStatus is not up(1), then attempts to access + corresponding instances in this table may result in either + noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned + by the agent." + INDEX { applIndex, rdbmsSrvParamName, rdbmsSrvParamSubIndex } + ::= { rdbmsSrvParamTable 1 } + +RdbmsSrvParamEntry ::= + SEQUENCE { + rdbmsSrvParamName + DisplayString, + + rdbmsSrvParamSubIndex + INTEGER, + + rdbmsSrvParamID + AutonomousType, + + rdbmsSrvParamCurrValue + DisplayString, + + rdbmsSrvParamComment + DisplayString + } + +rdbmsSrvParamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of a configuration parameter for a server. This + name is product-specific. The length is limited to 64 + characters to constrain the number of sub-identifiers needed + for instance identification (and to minimize network + traffic)." + ::= { rdbmsSrvParamEntry 1 } + +rdbmsSrvParamSubIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The subindex value for this parameter. If the parameter is + naturally considered to contain a variable number of members + of a class, e.g. members of the DBA user group, or files + which are part of the database, then it must be presented as + a set of rows. If, on the other hand, the parameter + represents a set of choices from a class, e.g. the + permissions on a file or the options chosen out of the set of + all options allowed, AND is guaranteed to always fit in the + 255 character length of a DisplayString, then it may be + presented as a comma separated list with a subindex value of + one. Zero may not be used as a value." + ::= { rdbmsSrvParamEntry 2 } + +rdbmsSrvParamID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the parameter which may be described in some + other MIB. If there is no ID for this rdbmsSrvParamName, + attempts to access this object will return noSuchName + (SNMPv1) or noSuchInstance (SNMPv2)." + ::= { rdbmsSrvParamEntry 3 } + +rdbmsSrvParamCurrValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value for a configuration parameter now in effect, the + actual setting for the server. While there may multiple + values in the temporal domain of interest (for instance, the + value to take effect at the next restart), this is the + current setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvParamEntry 4 } + +rdbmsSrvParamComment OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Annotation which describes the purpose of a configuration + parameter or the reason for a particular parameter's + setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvParamEntry 5 } + +rdbmsSrvLimitedResourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of limited resources relevant to a server." + ::= { rdbmsObjects 8 } + +rdbmsSrvLimitedResourceEntry OBJECT-TYPE + SYNTAX RdbmsSrvLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single limited resource kept by the server. + A limited resource has maximum use determined by a parameter + that might or might not changeable at run time, or visible in + the rbmsSrvParamTable. Examples would be the number of + available locks, or number of concurrent executions allowed + in a server. Arrays of resources are supported through an + integer subindex, which should have the value of one for + single-instance names. + + Limited resources that are shared across servers or databases + are best duplicated in this table across + all servers accessing the resource." + INDEX { applIndex, rdbmsSrvLimitedResourceName } + ::= { rdbmsSrvLimitedResourceTable 1 } + +RdbmsSrvLimitedResourceEntry ::= + SEQUENCE { + rdbmsSrvLimitedResourceName + DisplayString, + + rdbmsSrvLimitedResourceID + AutonomousType, + + rdbmsSrvLimitedResourceLimit + INTEGER, + + rdbmsSrvLimitedResourceCurrent + INTEGER, + + rdbmsSrvLimitedResourceHighwater + INTEGER, + + rdbmsSrvLimitedResourceFailures + Counter, + + rdbmsSrvLimitedResourceDescription + DisplayString + } + +rdbmsSrvLimitedResourceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of the resource, for instance 'threads' or + 'semaphores', or 'buffer pages'" + ::= { rdbmsSrvLimitedResourceEntry 1 } + +rdbmsSrvLimitedResourceID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the resource which may be described in some other + MIB. If there is no ID for this rdbmsSrvLimitedResourceName, + attempts to access this object will return noSuchName + (SNMPv1) or noSuchInstance (SNMPv2)." + ::= { rdbmsSrvLimitedResourceEntry 2 } + +rdbmsSrvLimitedResourceLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum value the resource use may attain. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvLimitedResourceEntry 3 } + +rdbmsSrvLimitedResourceCurrent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value for the resource." + ::= { rdbmsSrvLimitedResourceEntry 4 } + +rdbmsSrvLimitedResourceHighwater OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum value of the resource seen since applUpTime + was reset." + ::= { rdbmsSrvLimitedResourceEntry 5 } + +rdbmsSrvLimitedResourceFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the system wanted to exceed the limit of + the resource since applUpTime was reset." + ::= { rdbmsSrvLimitedResourceEntry 6 } + +rdbmsSrvLimitedResourceDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A description of the resource and the meaning of the integer + units used for Limit, Current, and Highwater. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvLimitedResourceEntry 7 } + +rdbmsRelTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsRelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table relating databases and servers present on a host." + ::= { rdbmsObjects 9 } + +rdbmsRelEntry OBJECT-TYPE + SYNTAX RdbmsRelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry relating a single database server to a single + database to which it may provide access. The table is + indexed first by the index of rdbmsDbTable, and then + rdbmsSrvTable, so that all servers capable of providing + access to a given database may be found by SNMP traversal + operations (get-next and get-bulk). The makeup of this table + depends on the product's architecture, e.g. if it is one + server - many databases, then each server will appear n + times, where n is the number of databases it may access, and + each database will appear once. If the architecture is one + database - many servers, then each server will appear once + and each database will appear n times, where n is the number + of servers that may be accessing it." + INDEX { rdbmsDbIndex, applIndex } + ::= { rdbmsRelTable 1 } + +RdbmsRelEntry ::= + SEQUENCE { + rdbmsRelState + INTEGER, + + rdbmsRelActiveTime + DateAndTime + } + +rdbmsRelState OBJECT-TYPE + SYNTAX INTEGER { + other(1), + active(2), + available(3), + restricted(4), + unavailable(5) +} + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of this server's access to this database. + Active(2) means the server is actively using the database. + Available(3) means the server could use the database if + necessary. Restricted(4) means the database is in some + administratively determined state of less-than-complete + availability. Unavailable(5) means the database is not + available through this server. Other(1) means the + database/server is in some other condition, possibly + described in the vendor private MIB." + ::= { rdbmsRelEntry 1 } + +rdbmsRelActiveTime OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time the database was made active by the server. If an + instance of rdbmsRelState is not active(1), then attempts to + access the corresponding instance of this object may result + in either noSuchName (SNMPv1) or noSuchInstance (SNMPv2) + being returned by the agent." + ::= { rdbmsRelEntry 2 } + +rdbmsWellKnownLimitedResources OBJECT IDENTIFIER ::= { rdbmsObjects 10 } + +rdbmsLogSpace OBJECT IDENTIFIER ::= { rdbmsWellKnownLimitedResources 1 } + +rdbmsTraps OBJECT IDENTIFIER ::= { rdbmsMIB 2 } + +rdbmsStateChange TRAP-TYPE + ENTERPRISE rdbmsTraps + VARIABLES { rdbmsRelState } + DESCRIPTION + "An rdbmsStateChange trap signifies that one of the database + server/databases managed by this agent has changed its + rdbmsRelState in a way that makes it less accessible for use. + For these purposes, both active(2) and available(3) are + considered fully accessible. The state sent with the trap is + the new, less accessible state." + ::= 1 + +rdbmsOutOfSpace TRAP-TYPE + ENTERPRISE rdbmsTraps + VARIABLES { rdbmsSrvInfoDiskOutOfSpaces } + DESCRIPTION + "An rdbmsOutOfSpace trap signifies that one of the database + servers managed by this agent has been unable to allocate + space for one of the databases managed by this agent. Care + should be taken to avoid flooding the network with these + traps." + ::= 2 + +rdbmsConformance OBJECT IDENTIFIER ::= { rdbmsMIB 3 } + +rdbmsCompliances OBJECT IDENTIFIER ::= { rdbmsConformance 1 } + +rdbmsGroups OBJECT IDENTIFIER ::= { rdbmsConformance 2 } + +rdbmsCompliance OBJECT IDENTIFIER ::= { rdbmsCompliances 1 } + +rdbmsGroup OBJECT IDENTIFIER ::= { rdbmsGroups 1 } + +END diff --git a/pandora_console/attachment/mibs/RFC1155-SMI b/pandora_console/attachment/mibs/RFC1155-SMI new file mode 100644 index 0000000000..14c5a75262 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1155-SMI @@ -0,0 +1,27 @@ +RFC1155-SMI DEFINITIONS ::= BEGIN +-- These are all loaded by default - so this is just a shell for IMPORTS to work + + internet OBJECT IDENTIFIER ::= { iso org(3) dod(6) 1 } + + directory OBJECT IDENTIFIER ::= { internet 1 } + mgmt OBJECT IDENTIFIER ::= { internet 2 } + + experimental OBJECT IDENTIFIER ::= { internet 3 } + + private OBJECT IDENTIFIER ::= { internet 4 } + enterprises OBJECT IDENTIFIER ::= { private 1 } + + +-- NetworkAddress ::= + +-- IpAddress ::= + +-- Counter ::= + +-- Gauge ::= + +-- TimeTicks ::= + +-- Opaque ::= + +END diff --git a/pandora_console/attachment/mibs/RFC1158-MIB b/pandora_console/attachment/mibs/RFC1158-MIB new file mode 100644 index 0000000000..0576296abc --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1158-MIB @@ -0,0 +1,1521 @@ +-- Changes to RFC1158 (obsolete MIB-II): +-- Changed OBJECT-TYPE to be imported from RFC1212. +-- Changed ACCESS for all tables and rows to not-accessable. +-- Added INDEX clauses for all rows. +-- Changed name of ipRoutingTable to ipRouteTable. +-- Added DisplayString definition. +-- Removed definition of nullSpecific. +-- Added missing comma in ipRouteProto enumerations. +-- Fixed misspellings of ipAdEntReasmMaxSiz and ipNetoToMediaType. +-- dperkins@scruznet.com + + + RFC1158-MIB DEFINITIONS ::= BEGIN + + IMPORTS + mgmt, NetworkAddress, IpAddress, + Counter, Gauge, TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212; + + DisplayString ::= + OCTET STRING + + + mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } -- MIB-II + -- (same prefix as MIB-I) + + system OBJECT IDENTIFIER ::= { mib-2 1 } + interfaces OBJECT IDENTIFIER ::= { mib-2 2 } + at OBJECT IDENTIFIER ::= { mib-2 3 } + ip OBJECT IDENTIFIER ::= { mib-2 4 } + icmp OBJECT IDENTIFIER ::= { mib-2 5 } + tcp OBJECT IDENTIFIER ::= { mib-2 6 } + udp OBJECT IDENTIFIER ::= { mib-2 7 } + egp OBJECT IDENTIFIER ::= { mib-2 8 } + -- cmot OBJECT IDENTIFIER ::= { mib-2 9 } + transmission OBJECT IDENTIFIER ::= { mib-2 10 } + snmp OBJECT IDENTIFIER ::= { mib-2 11 } + + + -- object types + + -- the System group + + sysDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + ::= { system 1 } + + sysObjectID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + ::= { system 2 } + + sysUpTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + ::= { system 3 } + + sysContact OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + ::= { system 4 } + + sysName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + ::= { system 5 } + + sysLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + ::= { system 6 } + + sysServices OBJECT-TYPE + SYNTAX INTEGER (0..127) + ACCESS read-only + STATUS mandatory + ::= { system 7 } + + + -- the Interfaces group + + ifNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { interfaces 1 } + + -- the Interfaces table + + ifTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfEntry + ACCESS not-accessible + STATUS mandatory + ::= { interfaces 2 } + + ifEntry OBJECT-TYPE + SYNTAX IfEntry + ACCESS not-accessible + STATUS mandatory + INDEX { ifIndex } + ::= { ifTable 1 } + + IfEntry ::= SEQUENCE { + ifIndex + INTEGER, + ifDescr + DisplayString, + ifType + INTEGER, + ifMtu + INTEGER, + ifSpeed + Gauge, + ifPhysAddress + OCTET STRING, + ifAdminStatus + INTEGER, + ifOperStatus + INTEGER, + ifLastChange + TimeTicks, + ifInOctets + Counter, + ifInUcastPkts + Counter, + ifInNUcastPkts + Counter, + ifInDiscards + Counter, + ifInErrors + Counter, + ifInUnknownProtos + Counter, + ifOutOctets + Counter, + ifOutUcastPkts + Counter, + ifOutNUcastPkts + Counter, + ifOutDiscards + Counter, + ifOutErrors + Counter, + ifOutQLen + Gauge, + ifSpecific + OBJECT IDENTIFIER + } + + ifIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { ifEntry 1 } + + ifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + ::= { ifEntry 2 } + + ifType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the + -- following + regular1822(2), + hdh1822(3), + ddn-x25(4), + rfc877-x25(5), + ethernet-csmacd(6), + iso88023-csmacd(7), + iso88024-tokenBus(8), + iso88025-tokenRing(9), + iso88026-man(10), + starLan(11), + proteon-10Mbit(12), + proteon-80Mbit(13), + hyperchannel(14), + fddi(15), + lapb(16), + sdlc(17), + t1-carrier(18), + cept(19), -- european + --equivalent of T-1 + basicISDN(20), + primaryISDN(21), + -- proprietary + -- serial + propPointToPointSerial(22), + terminalServer-asyncPort(23), + softwareLoopback(24), + eon(25), -- CLNP over IP + ethernet-3Mbit(26), + nsip(27), -- XNS over IP + slip(28) -- generic SLIP + } + ACCESS read-only + STATUS mandatory + ::= { ifEntry 3 } + + ifMtu OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { ifEntry 4 } + + ifSpeed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + ::= { ifEntry 5 } + + ifPhysAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + ::= { ifEntry 6 } + + ifAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + ACCESS read-write + STATUS mandatory + ::= { ifEntry 7 } + + ifOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + ACCESS read-only + STATUS mandatory + ::= { ifEntry 8 } + + ifLastChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + ::= { ifEntry 9 } + + ifInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 10 } + + ifInUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 11 } + + ifInNUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 12 } + + ifInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 13 } + + ifInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 14 } + + ifInUnknownProtos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 15 } + + ifOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 16 } + + ifOutUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 17 } + + ifOutNUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 18 } + + ifOutDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 19 } + + ifOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ifEntry 20 } + + ifOutQLen OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + ::= { ifEntry 21 } + + ifSpecific OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + ::= { ifEntry 22 } + +-- nullSpecific OBJECT IDENTIFIER ::= { 0 0 } + + -- the Address Translation group (deprecated) + + atTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtEntry + ACCESS not-accessible + STATUS deprecated + ::= { at 1 } + + atEntry OBJECT-TYPE + SYNTAX AtEntry + ACCESS not-accessible + STATUS deprecated + INDEX { atIfIndex, + atNetAddress } + ::= { atTable 1 } + + AtEntry ::= SEQUENCE { + atIfIndex + INTEGER, + atPhysAddress + OCTET STRING, + atNetAddress + NetworkAddress + } + + atIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS deprecated + ::= { atEntry 1 } + + atPhysAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS deprecated + ::= { atEntry 2 } + + atNetAddress OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-write + STATUS deprecated + ::= { atEntry 3 } + + + -- the IP group + + ipForwarding OBJECT-TYPE + SYNTAX INTEGER { + gateway(1), -- entity forwards + -- datagrams + host(2) -- entity does NOT + -- forward datagrams + } + ACCESS read-write + STATUS mandatory + ::= { ip 1 } + + ipDefaultTTL OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ip 2 } + + ipInReceives OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 3 } + + ipInHdrErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 4 } + + ipInAddrErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 5 } + + ipForwDatagrams OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 6 } + + ipInUnknownProtos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 7 } + + ipInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 8 } + + ipInDelivers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 9 } + + ipOutRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 10 } + + ipOutDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 11 } + + ipOutNoRoutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 12 } + + ipReasmTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { ip 13 } + + ipReasmReqds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 14 } + + ipReasmOKs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 15 } + + ipReasmFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 16 } + + ipFragOKs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 17 } + + ipFragFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 18 } + + ipFragCreates OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { ip 19 } + + -- the IP Interface table + + ipAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpAddrEntry + ACCESS not-accessible + STATUS mandatory + ::= { ip 20 } + + ipAddrEntry OBJECT-TYPE + SYNTAX IpAddrEntry + ACCESS not-accessible + STATUS mandatory + INDEX { ipAdEntAddr } + ::= { ipAddrTable 1 } + + IpAddrEntry ::= SEQUENCE { + ipAdEntAddr + IpAddress, + ipAdEntIfIndex + INTEGER, + ipAdEntNetMask + IpAddress, + ipAdEntBcastAddr + INTEGER, + ipAdEntReasmMaxSize + INTEGER (0..65535) + } + + ipAdEntAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + ::= { ipAddrEntry 1 } + + ipAdEntIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { ipAddrEntry 2 } + + ipAdEntNetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + ::= { ipAddrEntry 3 } + + ipAdEntBcastAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { ipAddrEntry 4 } + + ipAdEntReasmMaxSize OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + ::= { ipAddrEntry 5 } + + -- the IP Routing table + + ipRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpRouteEntry + ACCESS not-accessible + STATUS mandatory + ::= { ip 21 } + + ipRouteEntry OBJECT-TYPE + SYNTAX IpRouteEntry + ACCESS not-accessible + STATUS mandatory + INDEX { ipRouteDest } + ::= { ipRouteTable 1 } + + IpRouteEntry ::= SEQUENCE { + ipRouteDest + IpAddress, + ipRouteIfIndex + INTEGER, + ipRouteMetric1 + INTEGER, + ipRouteMetric2 + INTEGER, + ipRouteMetric3 + INTEGER, + ipRouteMetric4 + INTEGER, + ipRouteNextHop + IpAddress, + ipRouteType + INTEGER, + ipRouteProto + INTEGER, + ipRouteAge + INTEGER, + ipRouteMask + IpAddress + } + + ipRouteDest OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 1 } + + ipRouteIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 2 } + + ipRouteMetric1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 3 } + + ipRouteMetric2 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 4 } + + ipRouteMetric3 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 5 } + + ipRouteMetric4 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 6 } + + ipRouteNextHop OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 7 } + + ipRouteType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + invalid(2), -- an invalidated route + + -- route to directly + direct(3), -- connected + -- (sub-)network + + -- route to a non-local + remote(4) -- host/network/ + -- sub-network + } + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 8 } + + ipRouteProto OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + -- non-protocol + -- information + + -- e.g., manually + local(2), -- configured entries + + -- set via a network + netmgmt(3), -- management protocol + + -- obtained via ICMP, + icmp(4), -- e.g., Redirect + + -- the following are + -- gateway routing + -- protocols + egp(5), + ggp(6), + hello(7), + rip(8), + is-is(9), + es-is(10), + ciscoIgrp(11), + bbnSpfIgp(12), + ospf(13), + bgp(14) + } + ACCESS read-only + STATUS mandatory + ::= { ipRouteEntry 9 } + + ipRouteAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 10 } + + ipRouteMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + ::= { ipRouteEntry 11 } + + -- the IP Address Translation tables + + ipNetToMediaTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpNetToMediaEntry + ACCESS not-accessible + STATUS mandatory + ::= { ip 22 } + + ipNetToMediaEntry OBJECT-TYPE + SYNTAX IpNetToMediaEntry + ACCESS not-accessible + STATUS mandatory + INDEX { ipNetToMediaIfIndex, + ipNetToMediaNetAddress } + ::= { ipNetToMediaTable 1 } + + IpNetToMediaEntry ::= SEQUENCE { + ipNetToMediaIfIndex + INTEGER, + ipNetToMediaPhysAddress + OCTET STRING, + ipNetToMediaNetAddress + IpAddress, + ipNetToMediaType + INTEGER + } + + ipNetToMediaIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + ::= { ipNetToMediaEntry 1 } + + ipNetToMediaPhysAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + ::= { ipNetToMediaEntry 2 } + + ipNetToMediaNetAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + ::= { ipNetToMediaEntry 3 } + + ipNetToMediaType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + invalid(2), -- an invalidated mapping + dynamic(3), -- connected (sub-)network + + static(4) + } + ACCESS read-write + STATUS mandatory + ::= { ipNetToMediaEntry 4 } + + -- the ICMP group + + icmpInMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 1 } + + icmpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 2 } + + icmpInDestUnreachs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 3 } + + icmpInTimeExcds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 4 } + + icmpInParmProbs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 5 } + + icmpInSrcQuenchs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 6 } + + icmpInRedirects OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 7 } + + icmpInEchos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 8 } + + icmpInEchoReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 9 } + + icmpInTimestamps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 10 } + + icmpInTimestampReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 11 } + + icmpInAddrMasks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 12 } + + icmpInAddrMaskReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 13 } + + icmpOutMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 14 } + + icmpOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 15 } + + icmpOutDestUnreachs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 16 } + + icmpOutTimeExcds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 17 } + + icmpOutParmProbs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 18 } + + icmpOutSrcQuenchs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 19 } + + icmpOutRedirects OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 20 } + + icmpOutEchos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 21 } + + icmpOutEchoReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 22 } + + icmpOutTimestamps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 23 } + + icmpOutTimestampReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 24 } + + icmpOutAddrMasks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 25 } + + icmpOutAddrMaskReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { icmp 26 } + + + -- the TCP group + + tcpRtoAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + constant(2), -- a constant rto + rsre(3), -- MIL-STD-1778, + -- Appendix B + vanj(4) -- Van Jacobson's + -- algorithm + } + ACCESS read-only + STATUS mandatory + ::= { tcp 1 } + + tcpRtoMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { tcp 2 } + + tcpRtoMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { tcp 3 } + + tcpMaxConn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { tcp 4 } + + tcpActiveOpens OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 5 } + + tcpPassiveOpens OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 6 } + + tcpAttemptFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 7 } + + tcpEstabResets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 8 } + + tcpCurrEstab OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + ::= { tcp 9 } + + tcpInSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 10 } + + tcpOutSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 11 } + + tcpRetransSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 12 } + + -- the TCP connections table + + tcpConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF TcpConnEntry + ACCESS not-accessible + STATUS mandatory + ::= { tcp 13 } + + tcpConnEntry OBJECT-TYPE + SYNTAX TcpConnEntry + ACCESS not-accessible + STATUS mandatory + INDEX { tcpConnLocalAddress, + tcpConnLocalPort, + tcpConnRemAddress, + tcpConnRemPort } + ::= { tcpConnTable 1 } + + TcpConnEntry ::= SEQUENCE { + tcpConnState + INTEGER, + tcpConnLocalAddress + IpAddress, + tcpConnLocalPort + INTEGER (0..65535), + tcpConnRemAddress + IpAddress, + tcpConnRemPort + INTEGER (0..65535) + } + + tcpConnState OBJECT-TYPE + SYNTAX INTEGER { + closed(1), + listen(2), + synSent(3), + synReceived(4), + established(5), + finWait1(6), + finWait2(7), + closeWait(8), + lastAck(9), + closing(10), + timeWait(11) + } + ACCESS read-only + STATUS mandatory + ::= { tcpConnEntry 1 } + + tcpConnLocalAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + ::= { tcpConnEntry 2 } + + tcpConnLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + ::= { tcpConnEntry 3 } + + tcpConnRemAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + ::= { tcpConnEntry 4 } + + tcpConnRemPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + ::= { tcpConnEntry 5 } + + -- additional TCP variables + + tcpInErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 14 } + + tcpOutRsts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { tcp 15 } + + + -- the UDP group + + udpInDatagrams OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { udp 1 } + + udpNoPorts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { udp 2 } + + udpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { udp 3 } + + udpOutDatagrams OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { udp 4 } + + -- the UDP listener table + + udpTable OBJECT-TYPE + SYNTAX SEQUENCE OF UdpEntry + ACCESS not-accessible + STATUS mandatory + ::= { udp 5 } + + udpEntry OBJECT-TYPE + SYNTAX UdpEntry + ACCESS not-accessible + STATUS mandatory + INDEX { udpLocalAddress, udpLocalPort } + ::= { udpTable 1 } + + UdpEntry ::= SEQUENCE { + udpLocalAddress + IpAddress, + udpLocalPort + INTEGER (0..65535) + } + + udpLocalAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + ::= { udpEntry 1 } + + udpLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + ::= { udpEntry 2 } + + -- the EGP group + + egpInMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egp 1 } + + egpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egp 2 } + + egpOutMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egp 3 } + + egpOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egp 4 } + + -- the EGP Neighbor table + + egpNeighTable OBJECT-TYPE + SYNTAX SEQUENCE OF EgpNeighEntry + ACCESS not-accessible + STATUS mandatory + ::= { egp 5 } + + egpNeighEntry OBJECT-TYPE + SYNTAX EgpNeighEntry + ACCESS not-accessible + STATUS mandatory + INDEX { egpNeighAddr } + ::= { egpNeighTable 1 } + + EgpNeighEntry ::= SEQUENCE { + egpNeighState + INTEGER, + egpNeighAddr + IpAddress, + egpNeighAs + INTEGER, + egpNeighInMsgs + Counter, + egpNeighInErrs + Counter, + egpNeighOutMsgs + Counter, + egpNeighOutErrs + Counter, + egpNeighInErrMsgs + Counter, + egpNeighOutErrMsgs + Counter, + egpNeighStateUps + Counter, + egpNeighStateDowns + Counter, + egpNeighIntervalHello + INTEGER, + egpNeighIntervalPoll + INTEGER, + egpNeighMode + INTEGER, + egpNeighEventTrigger + INTEGER + } + + egpNeighState OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + acquisition(2), + down(3), + up(4), + cease(5) + } + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 1 } + + egpNeighAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 2 } + + egpNeighAs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 3 } + + egpNeighInMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 4 } + + egpNeighInErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 5 } + + egpNeighOutMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 6 } + + egpNeighOutErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 7 } + + egpNeighInErrMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 8 } + + egpNeighOutErrMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 9 } + + egpNeighStateUps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 10 } + + egpNeighStateDowns OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 11 } + + egpNeighIntervalHello OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 12 } + + egpNeighIntervalPoll OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 13 } + + egpNeighMode OBJECT-TYPE + SYNTAX INTEGER { + active(1), + passive(2) + } + ACCESS read-only + STATUS mandatory + ::= { egpNeighEntry 14 } + + egpNeighEventTrigger OBJECT-TYPE + SYNTAX INTEGER { + start(1), + stop(2) + } + ACCESS read-write + STATUS mandatory + ::= { egpNeighEntry 15 } + + -- additional EGP variables + + egpAs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + ::= { egp 6 } + + + -- the Transmission group (empty at present) + + -- the SNMP group + + snmpInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 1 } + + snmpOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 2 } + + snmpInBadVersions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 3 } + + snmpInBadCommunityNames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 4 } + + snmpInBadCommunityUses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 5 } + + snmpInASNParseErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 6 } + + snmpInBadTypes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 7 } + + snmpInTooBigs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 8 } + + snmpInNoSuchNames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 9 } + + snmpInBadValues OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 10 } + + snmpInReadOnlys OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 11 } + + snmpInGenErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 12 } + + snmpInTotalReqVars OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 13 } + + snmpInTotalSetVars OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 14 } + + snmpInGetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 15 } + + snmpInGetNexts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 16 } + + snmpInSetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 17 } + + snmpInGetResponses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 18 } + + snmpInTraps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 19 } + + snmpOutTooBigs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 20 } + + snmpOutNoSuchNames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 21 } + + snmpOutBadValues OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 22 } + + snmpOutReadOnlys OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 23 } + + snmpOutGenErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 24 } + + snmpOutGetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 25 } + + snmpOutGetNexts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 26 } + + snmpOutSetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 27 } + + snmpOutGetResponses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 28 } + + snmpOutTraps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + ::= { snmp 29 } + + snmpEnableAuthTraps OBJECT-TYPE + SYNTAX INTEGER { + enabled(1), + disabled(2) + } + ACCESS read-write + STATUS mandatory + ::= { snmp 30 } + + END diff --git a/pandora_console/attachment/mibs/RFC1213-MIB b/pandora_console/attachment/mibs/RFC1213-MIB new file mode 100644 index 0000000000..f5fd1bb57e --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1213-MIB @@ -0,0 +1,2640 @@ + RFC1213-MIB DEFINITIONS ::= BEGIN + + IMPORTS + mgmt, NetworkAddress, IpAddress, Counter, Gauge, + TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212; + + mgmt OBJECT IDENTIFIER ::= { iso org(3) dod(6) internet(1) mgmt(2) } + directory OBJECT IDENTIFIER ::= { internet 1 } + experimental OBJECT IDENTIFIER ::= { internet 3 } + private OBJECT IDENTIFIER ::= { internet 4 } + enterprises OBJECT IDENTIFIER ::= { private 1 } + + -- This MIB module uses the extended OBJECT-TYPE macro as + -- defined in [14]; + + + -- MIB-II (same prefix as MIB-I) + + mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } + + -- textual conventions + + DisplayString ::= + OCTET STRING + -- This data type is used to model textual information taken + -- from the NVT ASCII character set. By convention, objects + -- with this syntax are declared as having + -- + (SIZE (0..255)) + + PhysAddress ::= + OCTET STRING + -- This data type is used to model media addresses. For many + -- types of media, this will be in a binary representation. + -- For example, an ethernet address would be represented as + -- a string of 6 octets. + + + -- groups in MIB-II + + system OBJECT IDENTIFIER ::= { mib-2 1 } + + interfaces OBJECT IDENTIFIER ::= { mib-2 2 } + + at OBJECT IDENTIFIER ::= { mib-2 3 } + + ip OBJECT IDENTIFIER ::= { mib-2 4 } + + icmp OBJECT IDENTIFIER ::= { mib-2 5 } + + tcp OBJECT IDENTIFIER ::= { mib-2 6 } + + udp OBJECT IDENTIFIER ::= { mib-2 7 } + + egp OBJECT IDENTIFIER ::= { mib-2 8 } + + -- historical (some say hysterical) + -- cmot OBJECT IDENTIFIER ::= { mib-2 9 } + + transmission OBJECT IDENTIFIER ::= { mib-2 10 } + + snmp OBJECT IDENTIFIER ::= { mib-2 11 } + + + -- the System group + + -- Implementation of the System group is mandatory for all + -- systems. If an agent is not configured to have a value + -- for any of these variables, a string of length 0 is + -- returned. + + sysDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DEFVAL "Test Agent Simulator" + DESCRIPTION + "A textual description of the entity. This value + should include the full name and version + identification of the system's hardware type, + software operating-system, and networking + software. It is mandatory that this only contain + printable ASCII characters." + ::= { system 1 } + + sysObjectID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The vendor's authoritative identification of the + network management subsystem contained in the + entity. This value is allocated within the SMI + enterprises subtree (1.3.6.1.4.1) and provides an + easy and unambiguous means for determining `what + kind of box' is being managed. For example, if + vendor `Flintstones, Inc.' was assigned the + subtree 1.3.6.1.4.1.4242, it could assign the + identifier 1.3.6.1.4.1.4242.1.1 to its `Fred + Router'." + ::= { system 2 } + + sysUpTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time (in hundredths of a second) since the + network management portion of the system was last + re-initialized." + ::= { system 3 } + + sysContact OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The textual identification of the contact person + for this managed node, together with information + on how to contact this person." + ::= { system 4 } + + sysName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An administratively-assigned name for this + managed node. By convention, this is the node's + fully-qualified domain name." + ::= { system 5 } + + sysLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The physical location of this node (e.g., + `telephone closet, 3rd floor')." + ::= { system 6 } + + sysServices OBJECT-TYPE + SYNTAX INTEGER (0..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value which indicates the set of services that + this entity primarily offers. + + The value is a sum. This sum initially takes the + value zero, Then, for each layer, L, in the range + 1 through 7, that this node performs transactions + for, 2 raised to (L - 1) is added to the sum. For + example, a node which performs primarily routing + functions would have a value of 4 (2^(3-1)). In + contrast, a node which is a host offering + application services would have a value of 72 + (2^(4-1) + 2^(7-1)). Note that in the context of + the Internet suite of protocols, values should be + calculated accordingly: + + layer functionality + 1 physical (e.g., repeaters) + 2 datalink/subnetwork (e.g., bridges) + 3 internet (e.g., IP gateways) + 4 end-to-end (e.g., IP hosts) + 7 applications (e.g., mail relays) + + For systems including OSI protocols, layers 5 and + 6 may also be counted." + ::= { system 7 } + + -- the Interfaces group + + -- Implementation of the Interfaces group is mandatory for + -- all systems. + + ifNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DEFVAL 1 + DESCRIPTION + "The number of network interfaces (regardless of + their current state) present on this system." + ::= { interfaces 1 } + + + -- the Interfaces table + + -- The Interfaces table contains information on the entity's + -- interfaces. Each interface is thought of as being + -- attached to a `subnetwork'. Note that this term should + -- not be confused with `subnet' which refers to an + -- addressing partitioning scheme used in the Internet suite + -- of protocols. + + ifTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interface entries. The number of + entries is given by the value of ifNumber." + ::= { interfaces 2 } + + ifEntry OBJECT-TYPE + SYNTAX IfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An interface entry containing objects at the + subnetwork layer and below for a particular + interface." + INDEX { ifIndex } + ::= { ifTable 1 } + + IfEntry ::= + SEQUENCE { + ifIndex + INTEGER, + ifDescr + DisplayString, + ifType + INTEGER, + ifMtu + INTEGER, + ifSpeed + Gauge, + ifPhysAddress + PhysAddress, + ifAdminStatus + INTEGER, + ifOperStatus + INTEGER, + ifLastChange + TimeTicks, + ifInOctets + Counter, + ifInUcastPkts + Counter, + ifInNUcastPkts + Counter, + ifInDiscards + Counter, + ifInErrors + Counter, + ifInUnknownProtos + Counter, + ifOutOctets + Counter, + ifOutUcastPkts + Counter, + ifOutNUcastPkts + Counter, + ifOutDiscards + Counter, + ifOutErrors + Counter, + ifOutQLen + Gauge, + ifSpecific + OBJECT IDENTIFIER + } + + ifIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each interface. Its value + ranges between 1 and the value of ifNumber. The + value for each interface must remain constant at + least from one re-initialization of the entity's + network management system to the next re- + initialization." + ::= { ifEntry 1 } + + ifDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DEFVAL "Test Interface" + DESCRIPTION + "A textual string containing information about the + interface. This string should include the name of + the manufacturer, the product name and the version + of the hardware interface." + ::= { ifEntry 2 } + + ifType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + regular1822(2), + hdh1822(3), + ddn-x25(4), + rfc877-x25(5), + ethernet-csmacd(6), + iso88023-csmacd(7), + iso88024-tokenBus(8), + iso88025-tokenRing(9), + iso88026-man(10), + starLan(11), + proteon-10Mbit(12), + proteon-80Mbit(13), + hyperchannel(14), + fddi(15), + lapb(16), + sdlc(17), + ds1(18), -- T-1 + e1(19), -- european equiv. of T-1 + basicISDN(20), + primaryISDN(21), -- proprietary serial + propPointToPointSerial(22), + ppp(23), + softwareLoopback(24), + eon(25), -- CLNP over IP [11] + ethernet-3Mbit(26), + nsip(27), -- XNS over IP + slip(28), -- generic SLIP + ultra(29), -- ULTRA technologies + ds3(30), -- T-3 + sip(31), -- SMDS + frame-relay(32) + } + ACCESS read-only + STATUS mandatory + DEFVAL 32 + DESCRIPTION + "The type of interface, distinguished according to + the physical/link protocol(s) immediately `below' + the network layer in the protocol stack." + ::= { ifEntry 3 } + + ifMtu OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the largest datagram which can be + sent/received on the interface, specified in + octets. For interfaces that are used for + transmitting network datagrams, this is the size + of the largest network datagram that can be sent + on the interface." + ::= { ifEntry 4 } + + ifSpeed OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An estimate of the interface's current bandwidth + in bits per second. For interfaces which do not + vary in bandwidth or for those where no accurate + estimation can be made, this object should contain + the nominal bandwidth." + ::= { ifEntry 5 } + + ifPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The interface's address at the protocol layer + immediately `below' the network layer in the + protocol stack. For interfaces which do not have + such an address (e.g., a serial line), this object + should contain an octet string of zero length." + ::= { ifEntry 6 } + + ifAdminStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The desired state of the interface. The + testing(3) state indicates that no operational + packets can be passed." + ::= { ifEntry 7 } + + ifOperStatus OBJECT-TYPE + SYNTAX INTEGER { + up(1), -- ready to pass packets + down(2), + testing(3) -- in some test mode + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operational state of the interface. + The testing(3) state indicates that no operational + packets can be passed." + ::= { ifEntry 8 } + + ifLastChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at the time the interface + entered its current operational state. If the + current state was entered prior to the last re- + initialization of the local network management + subsystem, then this object contains a zero + value." + ::= { ifEntry 9 } + + ifInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets received on the + interface, including framing characters." + ::= { ifEntry 10 } + + ifInUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of subnetwork-unicast packets + delivered to a higher-layer protocol." + ::= { ifEntry 11 } + + ifInNUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of non-unicast (i.e., subnetwork- + broadcast or subnetwork-multicast) packets + delivered to a higher-layer protocol." + ::= { ifEntry 12 } + + ifInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of inbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being deliverable to a + higher-layer protocol. One possible reason for + discarding such a packet could be to free up + buffer space." + ::= { ifEntry 13 } + + ifInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of inbound packets that contained + errors preventing them from being deliverable to a + higher-layer protocol." + ::= { ifEntry 14 } + + ifInUnknownProtos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received via the interface + which were discarded because of an unknown or + unsupported protocol." + ::= { ifEntry 15 } + + ifOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of octets transmitted out of the + interface, including framing characters." + ::= { ifEntry 16 } + + ifOutUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a + subnetwork-unicast address, including those that + were discarded or not sent." + ::= { ifEntry 17 } + + ifOutNUcastPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of packets that higher-level + protocols requested be transmitted to a non- + unicast (i.e., a subnetwork-broadcast or + subnetwork-multicast) address, including those + that were discarded or not sent." + ::= { ifEntry 18 } + + ifOutDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of outbound packets which were chosen + to be discarded even though no errors had been + detected to prevent their being transmitted. One + possible reason for discarding such a packet could + be to free up buffer space." + ::= { ifEntry 19 } + + ifOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of outbound packets that could not be + transmitted because of errors." + ::= { ifEntry 20 } + + ifOutQLen OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The length of the output packet queue (in + packets)." + ::= { ifEntry 21 } + + ifSpecific OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A reference to MIB definitions specific to the + particular media being used to realize the + interface. For example, if the interface is + realized by an ethernet, then the value of this + object refers to a document defining objects + specific to ethernet. If this information is not + present, its value should be set to the OBJECT + IDENTIFIER { 0 0 }, which is a syntatically valid + object identifier, and any conformant + implementation of ASN.1 and BER must be able to + generate and recognize this value." + ::= { ifEntry 22 } + + + -- the Address Translation group + + -- Implementation of the Address Translation group is + -- mandatory for all systems. Note however that this group + -- is deprecated by MIB-II. That is, it is being included + -- solely for compatibility with MIB-I nodes, and will most + -- likely be excluded from MIB-III nodes. From MIB-II and + -- onwards, each network protocol group contains its own + -- address translation tables. + + -- The Address Translation group contains one table which is + -- the union across all interfaces of the translation tables + -- for converting a NetworkAddress (e.g., an IP address) into + -- a subnetwork-specific address. For lack of a better term, + -- this document refers to such a subnetwork-specific address + -- as a `physical' address. + + -- Examples of such translation tables are: for broadcast + -- media where ARP is in use, the translation table is + -- equivalent to the ARP cache; or, on an X.25 network where + -- non-algorithmic translation to X.121 addresses is + -- required, the translation table contains the + -- NetworkAddress to X.121 address equivalences. + + atTable OBJECT-TYPE + SYNTAX SEQUENCE OF AtEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "The Address Translation tables contain the + NetworkAddress to `physical' address equivalences. + Some interfaces do not use translation tables for + determining address equivalences (e.g., DDN-X.25 + has an algorithmic method); if all interfaces are + of this type, then the Address Translation table + is empty, i.e., has zero entries." + ::= { at 1 } + + atEntry OBJECT-TYPE + SYNTAX AtEntry + ACCESS not-accessible + STATUS deprecated + DESCRIPTION + "Each entry contains one NetworkAddress to + `physical' address equivalence." + INDEX { atIfIndex, + atNetAddress } + ::= { atTable 1 } + + AtEntry ::= + SEQUENCE { + atIfIndex + INTEGER, + atPhysAddress + PhysAddress, + atNetAddress + NetworkAddress + } + + atIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS deprecated + DESCRIPTION + "The interface on which this entry's equivalence + is effective. The interface identified by a + particular value of this index is the same + interface as identified by the same value of + ifIndex." + ::= { atEntry 1 } + + atPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS deprecated + DESCRIPTION + "The media-dependent `physical' address. + + Setting this object to a null string (one of zero + length) has the effect of invaliding the + corresponding entry in the atTable object. That + is, it effectively dissasociates the interface + identified with said entry from the mapping + identified with said entry. It is an + implementation-specific matter as to whether the + agent removes an invalidated entry from the table. + Accordingly, management stations must be prepared + to receive tabular information from agents that + corresponds to entries not currently in use. + Proper interpretation of such entries requires + examination of the relevant atPhysAddress object." + ::= { atEntry 2 } + + atNetAddress OBJECT-TYPE + SYNTAX NetworkAddress + ACCESS read-write + STATUS deprecated + DESCRIPTION + "The NetworkAddress (e.g., the IP address) + corresponding to the media-dependent `physical' + address." + ::= { atEntry 3 } + + + -- the IP group + + -- Implementation of the IP group is mandatory for all + -- systems. + + ipForwarding OBJECT-TYPE + SYNTAX INTEGER { + forwarding(1), -- acting as a gateway + not-forwarding(2) -- NOT acting as a gateway + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The indication of whether this entity is acting + as an IP gateway in respect to the forwarding of + datagrams received by, but not addressed to, this + entity. IP gateways forward datagrams. IP hosts + do not (except those source-routed via the host). + + Note that for some managed nodes, this object may + take on only a subset of the values possible. + Accordingly, it is appropriate for an agent to + return a `badValue' response if a management + station attempts to change this object to an + inappropriate value." + ::= { ip 1 } + + ipDefaultTTL OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default value inserted into the Time-To-Live + field of the IP header of datagrams originated at + this entity, whenever a TTL value is not supplied + by the transport layer protocol." + ::= { ip 2 } + + ipInReceives OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of input datagrams received from + interfaces, including those received in error." + ::= { ip 3 } + + ipInHdrErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input datagrams discarded due to + errors in their IP headers, including bad + checksums, version number mismatch, other format + errors, time-to-live exceeded, errors discovered + in processing their IP options, etc." + ::= { ip 4 } + + ipInAddrErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input datagrams discarded because + the IP address in their IP header's destination + field was not a valid address to be received at + this entity. This count includes invalid + addresses (e.g., 0.0.0.0) and addresses of + unsupported Classes (e.g., Class E). For entities + which are not IP Gateways and therefore do not + forward datagrams, this counter includes datagrams + discarded because the destination address was not + a local address." + ::= { ip 5 } + + ipForwDatagrams OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input datagrams for which this + entity was not their final IP destination, as a + result of which an attempt was made to find a + route to forward them to that final destination. + In entities which do not act as IP Gateways, this + counter will include only those packets which were + Source-Routed via this entity, and the Source- + Route option processing was successful." + ::= { ip 6 } + + ipInUnknownProtos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of locally-addressed datagrams + received successfully but discarded because of an + unknown or unsupported protocol." + ::= { ip 7 } + + ipInDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input IP datagrams for which no + problems were encountered to prevent their + continued processing, but which were discarded + (e.g., for lack of buffer space). Note that this + counter does not include any datagrams discarded + while awaiting re-assembly." + ::= { ip 8 } + + ipInDelivers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of input datagrams successfully + delivered to IP user-protocols (including ICMP)." + ::= { ip 9 } + + ipOutRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of IP datagrams which local IP + user-protocols (including ICMP) supplied to IP in + requests for transmission. Note that this counter + does not include any datagrams counted in + ipForwDatagrams." + ::= { ip 10 } + + ipOutDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of output IP datagrams for which no + problem was encountered to prevent their + transmission to their destination, but which were + discarded (e.g., for lack of buffer space). Note + that this counter would include datagrams counted + in ipForwDatagrams if any such packets met this + (discretionary) discard criterion." + ::= { ip 11 } + + ipOutNoRoutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of IP datagrams discarded because no + route could be found to transmit them to their + destination. Note that this counter includes any + packets counted in ipForwDatagrams which meet this + `no-route' criterion. Note that this includes any + datagarms which a host cannot route because all of + its default gateways are down." + ::= { ip 12 } + + ipReasmTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of seconds which received + fragments are held while they are awaiting + reassembly at this entity." + ::= { ip 13 } + + ipReasmReqds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of IP fragments received which needed + to be reassembled at this entity." + ::= { ip 14 } + + ipReasmOKs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of IP datagrams successfully re- + assembled." + ::= { ip 15 } + + ipReasmFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of failures detected by the IP re- + assembly algorithm (for whatever reason: timed + out, errors, etc). Note that this is not + necessarily a count of discarded IP fragments + since some algorithms (notably the algorithm in + RFC 815) can lose track of the number of fragments + by combining them as they are received." + ::= { ip 16 } + + ipFragOKs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of IP datagrams that have been + successfully fragmented at this entity." + ::= { ip 17 } + + ipFragFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of IP datagrams that have been + discarded because they needed to be fragmented at + this entity but could not be, e.g., because their + Don't Fragment flag was set." + ::= { ip 18 } + + ipFragCreates OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of IP datagram fragments that have + been generated as a result of fragmentation at + this entity." + ::= { ip 19 } + + -- the IP address table + + -- The IP address table contains this entity's IP addressing + -- information. + + ipAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of addressing information relevant to + this entity's IP addresses." + ::= { ip 20 } + + ipAddrEntry OBJECT-TYPE + SYNTAX IpAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The addressing information for one of this + entity's IP addresses." + INDEX { ipAdEntAddr } + ::= { ipAddrTable 1 } + + IpAddrEntry ::= + SEQUENCE { + ipAdEntAddr + IpAddress, + ipAdEntIfIndex + INTEGER, + ipAdEntNetMask + IpAddress, + ipAdEntBcastAddr + INTEGER, + ipAdEntReasmMaxSize + INTEGER (0..65535) + } + + ipAdEntAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address to which this entry's addressing + information pertains." + ::= { ipAddrEntry 1 } + + ipAdEntIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + interface to which this entry is applicable. The + interface identified by a particular value of this + index is the same interface as identified by the + same value of ifIndex." + ::= { ipAddrEntry 2 } + + ipAdEntNetMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The subnet mask associated with the IP address of + this entry. The value of the mask is an IP + address with all the network bits set to 1 and all + the hosts bits set to 0." + ::= { ipAddrEntry 3 } + + ipAdEntBcastAddr OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of the least-significant bit in the IP + broadcast address used for sending datagrams on + the (logical) interface associated with the IP + address of this entry. For example, when the + Internet standard all-ones broadcast address is + used, the value will be 1. This value applies to + both the subnet and network broadcasts addresses + used by the entity on this (logical) interface." + ::= { ipAddrEntry 4 } + + ipAdEntReasmMaxSize OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the largest IP datagram which this + entity can re-assemble from incoming IP fragmented + datagrams received on this interface." + ::= { ipAddrEntry 5 } + + -- the IP routing table + + -- The IP routing table contains an entry for each route + -- presently known to this entity. + + ipRouteTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpRouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This entity's IP Routing table." + ::= { ip 21 } + + ipRouteEntry OBJECT-TYPE + SYNTAX IpRouteEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A route to a particular destination." + INDEX { ipRouteDest } + ::= { ipRouteTable 1 } + + IpRouteEntry ::= + SEQUENCE { + ipRouteDest + IpAddress, + ipRouteIfIndex + INTEGER, + ipRouteMetric1 + INTEGER, + ipRouteMetric2 + INTEGER, + ipRouteMetric3 + INTEGER, + ipRouteMetric4 + INTEGER, + ipRouteNextHop + IpAddress, + ipRouteType + INTEGER, + ipRouteProto + INTEGER, + ipRouteAge + INTEGER, + ipRouteMask + IpAddress, + ipRouteMetric5 + INTEGER, + ipRouteInfo + OBJECT IDENTIFIER + } + + ipRouteDest OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The destination IP address of this route. An + entry with a value of 0.0.0.0 is considered a + default route. Multiple routes to a single + destination can appear in the table, but access to + such multiple entries is dependent on the table- + access mechanisms defined by the network + management protocol in use." + ::= { ipRouteEntry 1 } + + ipRouteIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + local interface through which the next hop of this + route should be reached. The interface identified + by a particular value of this index is the same + interface as identified by the same value of + ifIndex." + ::= { ipRouteEntry 2 } + + ipRouteMetric1 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The primary routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + ipRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { ipRouteEntry 3 } + + ipRouteMetric2 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + ipRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { ipRouteEntry 4 } + + ipRouteMetric3 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + ipRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { ipRouteEntry 5 } + + ipRouteMetric4 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + ipRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { ipRouteEntry 6 } + + ipRouteNextHop OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP address of the next hop of this route. + (In the case of a route bound to an interface + which is realized via a broadcast media, the value + of this field is the agent's IP address on that + interface.)" + ::= { ipRouteEntry 7 } + + ipRouteType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + invalid(2), -- an invalidated route + + -- route to directly + direct(3), -- connected (sub-)network + + -- route to a non-local + indirect(4) -- host/network/sub-network + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of route. Note that the values + direct(3) and indirect(4) refer to the notion of + direct and indirect routing in the IP + architecture. + + Setting this object to the value invalid(2) has + the effect of invalidating the corresponding entry + in the ipRouteTable object. That is, it + effectively dissasociates the destination + identified with said entry from the route + identified with said entry. It is an + implementation-specific matter as to whether the + agent removes an invalidated entry from the table. + Accordingly, management stations must be prepared + to receive tabular information from agents that + corresponds to entries not currently in use. + Proper interpretation of such entries requires + examination of the relevant ipRouteType object." + ::= { ipRouteEntry 8 } + + ipRouteProto OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + -- non-protocol information, + -- e.g., manually configured + local(2), -- entries + + -- set via a network + netmgmt(3), -- management protocol + + -- obtained via ICMP, + icmp(4), -- e.g., Redirect + + -- the remaining values are + -- all gateway routing + -- protocols + egp(5), + ggp(6), + hello(7), + rip(8), + is-is(9), + es-is(10), + ciscoIgrp(11), + bbnSpfIgp(12), + ospf(13), + bgp(14) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The routing mechanism via which this route was + learned. Inclusion of values for gateway routing + protocols is not intended to imply that hosts + should support those protocols." + ::= { ipRouteEntry 9 } + + ipRouteAge OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds since this route was last + updated or otherwise determined to be correct. + Note that no semantics of `too old' can be implied + except through knowledge of the routing protocol + by which the route was learned." + ::= { ipRouteEntry 10 } + + ipRouteMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicate the mask to be logical-ANDed with the + destination address before being compared to the + value in the ipRouteDest field. For those systems + that do not support arbitrary subnet masks, an + agent constructs the value of the ipRouteMask by + determining whether the value of the correspondent + ipRouteDest field belong to a class-A, B, or C + network, and then using one of: + + mask network + 255.0.0.0 class-A + 255.255.0.0 class-B + 255.255.255.0 class-C + + If the value of the ipRouteDest is 0.0.0.0 (a + default route), then the mask value is also + 0.0.0.0. It should be noted that all IP routing + subsystems implicitly use this mechanism." + ::= { ipRouteEntry 11 } + + ipRouteMetric5 OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An alternate routing metric for this route. The + semantics of this metric are determined by the + routing-protocol specified in the route's + ipRouteProto value. If this metric is not used, + its value should be set to -1." + ::= { ipRouteEntry 12 } + + ipRouteInfo OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A reference to MIB definitions specific to the + particular routing protocol which is responsible + for this route, as determined by the value + specified in the route's ipRouteProto value. If + this information is not present, its value should + be set to the OBJECT IDENTIFIER { 0 0 }, which is + a syntatically valid object identifier, and any + conformant implementation of ASN.1 and BER must be + able to generate and recognize this value." + ::= { ipRouteEntry 13 } + + + -- the IP Address Translation table + + -- The IP address translation table contain the IpAddress to + -- `physical' address equivalences. Some interfaces do not + -- use translation tables for determining address + -- equivalences (e.g., DDN-X.25 has an algorithmic method); + -- if all interfaces are of this type, then the Address + -- Translation table is empty, i.e., has zero entries. + + ipNetToMediaTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpNetToMediaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The IP Address Translation table used for mapping + from IP addresses to physical addresses." + ::= { ip 22 } + + ipNetToMediaEntry OBJECT-TYPE + SYNTAX IpNetToMediaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Each entry contains one IpAddress to `physical' + address equivalence." + INDEX { ipNetToMediaIfIndex, + ipNetToMediaNetAddress } + ::= { ipNetToMediaTable 1 } + + IpNetToMediaEntry ::= + SEQUENCE { + ipNetToMediaIfIndex + INTEGER, + ipNetToMediaPhysAddress + PhysAddress, + ipNetToMediaNetAddress + IpAddress, + ipNetToMediaType + INTEGER + } + + ipNetToMediaIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The interface on which this entry's equivalence + is effective. The interface identified by a + particular value of this index is the same + interface as identified by the same value of + ifIndex." + ::= { ipNetToMediaEntry 1 } + + ipNetToMediaPhysAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The media-dependent `physical' address." + ::= { ipNetToMediaEntry 2 } + + ipNetToMediaNetAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IpAddress corresponding to the media- + dependent `physical' address." + ::= { ipNetToMediaEntry 3 } + + ipNetToMediaType OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + invalid(2), -- an invalidated mapping + dynamic(3), + static(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of mapping. + + Setting this object to the value invalid(2) has + the effect of invalidating the corresponding entry + in the ipNetToMediaTable. That is, it effectively + dissasociates the interface identified with said + entry from the mapping identified with said entry. + It is an implementation-specific matter as to + whether the agent removes an invalidated entry + from the table. Accordingly, management stations + must be prepared to receive tabular information + from agents that corresponds to entries not + currently in use. Proper interpretation of such + entries requires examination of the relevant + ipNetToMediaType object." + ::= { ipNetToMediaEntry 4 } + + + -- additional IP objects + + ipRoutingDiscards OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of routing entries which were chosen + to be discarded even though they are valid. One + possible reason for discarding such an entry could + be to free-up buffer space for other routing + entries." + ::= { ip 23 } + + + -- the ICMP group + + -- Implementation of the ICMP group is mandatory for all + -- systems. + + icmpInMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of ICMP messages which the + entity received. Note that this counter includes + all those counted by icmpInErrors." + ::= { icmp 1 } + + icmpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP messages which the entity + received but determined as having ICMP-specific + errors (bad ICMP checksums, bad length, etc.)." + ::= { icmp 2 } + + icmpInDestUnreachs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Destination Unreachable + messages received." + ::= { icmp 3 } + + icmpInTimeExcds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Time Exceeded messages + received." + ::= { icmp 4 } + + icmpInParmProbs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Parameter Problem messages + received." + ::= { icmp 5 } + + icmpInSrcQuenchs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Source Quench messages + received." + ::= { icmp 6 } + + icmpInRedirects OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Redirect messages received." + ::= { icmp 7 } + + icmpInEchos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Echo (request) messages + received." + ::= { icmp 8 } + + icmpInEchoReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Echo Reply messages received." + ::= { icmp 9 } + + icmpInTimestamps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Timestamp (request) messages + received." + ::= { icmp 10 } + + icmpInTimestampReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Timestamp Reply messages + received." + ::= { icmp 11 } + + icmpInAddrMasks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Address Mask Request messages + received." + ::= { icmp 12 } + + icmpInAddrMaskReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Address Mask Reply messages + received." + ::= { icmp 13 } + + icmpOutMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of ICMP messages which this + entity attempted to send. Note that this counter + includes all those counted by icmpOutErrors." + ::= { icmp 14 } + + icmpOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP messages which this entity did + not send due to problems discovered within ICMP + such as a lack of buffers. This value should not + include errors discovered outside the ICMP layer + such as the inability of IP to route the resultant + datagram. In some implementations there may be no + types of error which contribute to this counter's + value." + ::= { icmp 15 } + + icmpOutDestUnreachs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Destination Unreachable + messages sent." + ::= { icmp 16 } + + icmpOutTimeExcds OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Time Exceeded messages sent." + ::= { icmp 17 } + + icmpOutParmProbs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Parameter Problem messages + sent." + ::= { icmp 18 } + + icmpOutSrcQuenchs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Source Quench messages sent." + ::= { icmp 19 } + + icmpOutRedirects OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Redirect messages sent. For a + host, this object will always be zero, since hosts + do not send redirects." + ::= { icmp 20 } + + icmpOutEchos OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Echo (request) messages sent." + ::= { icmp 21 } + + icmpOutEchoReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Echo Reply messages sent." + ::= { icmp 22 } + + icmpOutTimestamps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Timestamp (request) messages + sent." + ::= { icmp 23 } + + icmpOutTimestampReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Timestamp Reply messages + sent." + ::= { icmp 24 } + + icmpOutAddrMasks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Address Mask Request messages + sent." + ::= { icmp 25 } + + icmpOutAddrMaskReps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ICMP Address Mask Reply messages + sent." + ::= { icmp 26 } + + + -- the TCP group + + -- Implementation of the TCP group is mandatory for all + -- systems that implement the TCP. + + -- Note that instances of object types that represent + -- information about a particular TCP connection are + -- transient; they persist only as long as the connection + -- in question. + + tcpRtoAlgorithm OBJECT-TYPE + SYNTAX INTEGER { + other(1), -- none of the following + + constant(2), -- a constant rto + rsre(3), -- MIL-STD-1778, Appendix B + vanj(4) -- Van Jacobson's algorithm [10] + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The algorithm used to determine the timeout value + used for retransmitting unacknowledged octets." + ::= { tcp 1 } + + tcpRtoMin OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum value permitted by a TCP + implementation for the retransmission timeout, + measured in milliseconds. More refined semantics + for objects of this type depend upon the algorithm + used to determine the retransmission timeout. In + particular, when the timeout algorithm is rsre(3), + an object of this type has the semantics of the + LBOUND quantity described in RFC 793." + ::= { tcp 2 } + + + tcpRtoMax OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum value permitted by a TCP + implementation for the retransmission timeout, + measured in milliseconds. More refined semantics + for objects of this type depend upon the algorithm + used to determine the retransmission timeout. In + particular, when the timeout algorithm is rsre(3), + an object of this type has the semantics of the + UBOUND quantity described in RFC 793." + ::= { tcp 3 } + + tcpMaxConn OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The limit on the total number of TCP connections + the entity can support. In entities where the + maximum number of connections is dynamic, this + object should contain the value -1." + ::= { tcp 4 } + + tcpActiveOpens OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times TCP connections have made a + direct transition to the SYN-SENT state from the + CLOSED state." + ::= { tcp 5 } + + tcpPassiveOpens OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times TCP connections have made a + direct transition to the SYN-RCVD state from the + LISTEN state." + ::= { tcp 6 } + + tcpAttemptFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times TCP connections have made a + direct transition to the CLOSED state from either + the SYN-SENT state or the SYN-RCVD state, plus the + number of times TCP connections have made a direct + transition to the LISTEN state from the SYN-RCVD + state." + ::= { tcp 7 } + + tcpEstabResets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times TCP connections have made a + direct transition to the CLOSED state from either + the ESTABLISHED state or the CLOSE-WAIT state." + ::= { tcp 8 } + + tcpCurrEstab OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of TCP connections for which the + current state is either ESTABLISHED or CLOSE- + WAIT." + ::= { tcp 9 } + + tcpInSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of segments received, including + those received in error. This count includes + segments received on currently established + connections." + ::= { tcp 10 } + + tcpOutSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of segments sent, including + those on current connections but excluding those + containing only retransmitted octets." + ::= { tcp 11 } + + tcpRetransSegs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of segments retransmitted - that + is, the number of TCP segments transmitted + containing one or more previously transmitted + octets." + ::= { tcp 12 } + + + -- the TCP Connection table + + -- The TCP connection table contains information about this + -- entity's existing TCP connections. + + tcpConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF TcpConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing TCP connection-specific + information." + ::= { tcp 13 } + + tcpConnEntry OBJECT-TYPE + SYNTAX TcpConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular current TCP + connection. An object of this type is transient, + in that it ceases to exist when (or soon after) + the connection makes the transition to the CLOSED + state." + INDEX { tcpConnLocalAddress, + tcpConnLocalPort, + tcpConnRemAddress, + tcpConnRemPort } + ::= { tcpConnTable 1 } + + TcpConnEntry ::= + SEQUENCE { + tcpConnState + INTEGER, + tcpConnLocalAddress + IpAddress, + tcpConnLocalPort + INTEGER (0..65535), + tcpConnRemAddress + IpAddress, + tcpConnRemPort + INTEGER (0..65535) + } + + tcpConnState OBJECT-TYPE + SYNTAX INTEGER { + closed(1), + listen(2), + synSent(3), + synReceived(4), + established(5), + finWait1(6), + finWait2(7), + closeWait(8), + lastAck(9), + closing(10), + timeWait(11), + deleteTCB(12) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of this TCP connection. + + The only value which may be set by a management + station is deleteTCB(12). Accordingly, it is + appropriate for an agent to return a `badValue' + response if a management station attempts to set + this object to any other value. + + If a management station sets this object to the + value deleteTCB(12), then this has the effect of + deleting the TCB (as defined in RFC 793) of the + corresponding connection on the managed node, + resulting in immediate termination of the + connection. + + As an implementation-specific option, a RST + segment may be sent from the managed node to the + other TCP endpoint (note however that RST segments + are not sent reliably)." + ::= { tcpConnEntry 1 } + + tcpConnLocalAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local IP address for this TCP connection. In + the case of a connection in the listen state which + is willing to accept connections for any IP + interface associated with the node, the value + 0.0.0.0 is used." + ::= { tcpConnEntry 2 } + + tcpConnLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local port number for this TCP connection." + ::= { tcpConnEntry 3 } + + tcpConnRemAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remote IP address for this TCP connection." + ::= { tcpConnEntry 4 } + + tcpConnRemPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remote port number for this TCP connection." + ::= { tcpConnEntry 5 } + + + -- additional TCP objects + + tcpInErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of segments received in error + (e.g., bad TCP checksums)." + ::= { tcp 14 } + + tcpOutRsts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of TCP segments sent containing the + RST flag." + ::= { tcp 15 } + + + -- the UDP group + + -- Implementation of the UDP group is mandatory for all + -- systems which implement the UDP. + + udpInDatagrams OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of UDP datagrams delivered to + UDP users." + ::= { udp 1 } + + udpNoPorts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of received UDP datagrams for + which there was no application at the destination + port." + ::= { udp 2 } + + udpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received UDP datagrams that could + not be delivered for reasons other than the lack + of an application at the destination port." + ::= { udp 3 } + + udpOutDatagrams OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of UDP datagrams sent from this + entity." + ::= { udp 4 } + + + -- the UDP Listener table + + -- The UDP listener table contains information about this + -- entity's UDP end-points on which a local application is + -- currently accepting datagrams. + + udpTable OBJECT-TYPE + SYNTAX SEQUENCE OF UdpEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing UDP listener information." + ::= { udp 5 } + + udpEntry OBJECT-TYPE + SYNTAX UdpEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular current UDP + listener." + INDEX { udpLocalAddress, udpLocalPort } + ::= { udpTable 1 } + + UdpEntry ::= + SEQUENCE { + udpLocalAddress + IpAddress, + udpLocalPort + INTEGER (0..65535) + } + + udpLocalAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local IP address for this UDP listener. In + the case of a UDP listener which is willing to + accept datagrams for any IP interface associated + with the node, the value 0.0.0.0 is used." + ::= { udpEntry 1 } + + udpLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local port number for this UDP listener." + ::= { udpEntry 2 } + + + -- the EGP group + + -- Implementation of the EGP group is mandatory for all + -- systems which implement the EGP. + + egpInMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP messages received without + error." + ::= { egp 1 } + + egpInErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP messages received that proved + to be in error." + ::= { egp 2 } + + egpOutMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of locally generated EGP + messages." + ::= { egp 3 } + + egpOutErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of locally generated EGP messages not + sent due to resource limitations within an EGP + entity." + ::= { egp 4 } + + + -- the EGP Neighbor table + + -- The EGP neighbor table contains information about this + -- entity's EGP neighbors. + + egpNeighTable OBJECT-TYPE + SYNTAX SEQUENCE OF EgpNeighEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The EGP neighbor table." + ::= { egp 5 } + + egpNeighEntry OBJECT-TYPE + SYNTAX EgpNeighEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about this entity's relationship with + a particular EGP neighbor." + INDEX { egpNeighAddr } + ::= { egpNeighTable 1 } + + EgpNeighEntry ::= + SEQUENCE { + egpNeighState + INTEGER, + egpNeighAddr + IpAddress, + egpNeighAs + INTEGER, + egpNeighInMsgs + Counter, + egpNeighInErrs + Counter, + egpNeighOutMsgs + Counter, + egpNeighOutErrs + Counter, + egpNeighInErrMsgs + Counter, + egpNeighOutErrMsgs + Counter, + egpNeighStateUps + Counter, + egpNeighStateDowns + Counter, + egpNeighIntervalHello + INTEGER, + egpNeighIntervalPoll + INTEGER, + egpNeighMode + INTEGER, + egpNeighEventTrigger + INTEGER + } + + egpNeighState OBJECT-TYPE + SYNTAX INTEGER { + idle(1), + acquisition(2), + down(3), + up(4), + cease(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The EGP state of the local system with respect to + this entry's EGP neighbor. Each EGP state is + represented by a value that is one greater than + the numerical value associated with said state in + RFC 904." + ::= { egpNeighEntry 1 } + + egpNeighAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address of this entry's EGP neighbor." + ::= { egpNeighEntry 2 } + + egpNeighAs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The autonomous system of this EGP peer. Zero + should be specified if the autonomous system + number of the neighbor is not yet known." + ::= { egpNeighEntry 3 } + + egpNeighInMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP messages received without error + from this EGP peer." + ::= { egpNeighEntry 4 } + + egpNeighInErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP messages received from this EGP + peer that proved to be in error (e.g., bad EGP + checksum)." + ::= { egpNeighEntry 5 } + + egpNeighOutMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of locally generated EGP messages to + this EGP peer." + ::= { egpNeighEntry 6 } + + egpNeighOutErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of locally generated EGP messages not + sent to this EGP peer due to resource limitations + within an EGP entity." + ::= { egpNeighEntry 7 } + + egpNeighInErrMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP-defined error messages received + from this EGP peer." + ::= { egpNeighEntry 8 } + + egpNeighOutErrMsgs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP-defined error messages sent to + this EGP peer." + ::= { egpNeighEntry 9 } + + egpNeighStateUps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP state transitions to the UP + state with this EGP peer." + ::= { egpNeighEntry 10 } + + egpNeighStateDowns OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of EGP state transitions from the UP + state to any other state with this EGP peer." + ::= { egpNeighEntry 11 } + + egpNeighIntervalHello OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The interval between EGP Hello command + retransmissions (in hundredths of a second). This + represents the t1 timer as defined in RFC 904." + ::= { egpNeighEntry 12 } + + egpNeighIntervalPoll OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The interval between EGP poll command + retransmissions (in hundredths of a second). This + represents the t3 timer as defined in RFC 904." + ::= { egpNeighEntry 13 } + + egpNeighMode OBJECT-TYPE + SYNTAX INTEGER { active(1), passive(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The polling mode of this EGP entity, either + passive or active." + ::= { egpNeighEntry 14 } + + egpNeighEventTrigger OBJECT-TYPE + SYNTAX INTEGER { start(1), stop(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A control variable used to trigger operator- + initiated Start and Stop events. When read, this + variable always returns the most recent value that + egpNeighEventTrigger was set to. If it has not + been set since the last initialization of the + network management subsystem on the node, it + returns a value of `stop'. + + When set, this variable causes a Start or Stop + event on the specified neighbor, as specified on + pages 8-10 of RFC 904. Briefly, a Start event + causes an Idle peer to begin neighbor acquisition + and a non-Idle peer to reinitiate neighbor + acquisition. A stop event causes a non-Idle peer + to return to the Idle state until a Start event + occurs, either via egpNeighEventTrigger or + otherwise." + ::= { egpNeighEntry 15 } + + + -- additional EGP objects + + egpAs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The autonomous system number of this EGP entity." + ::= { egp 6 } + + -- the Transmission group + + -- Based on the transmission media underlying each interface + -- on a system, the corresponding portion of the Transmission + -- group is mandatory for that system. + + -- When Internet-standard definitions for managing + -- transmission media are defined, the transmission group is + -- used to provide a prefix for the names of those objects. + + -- Typically, such definitions reside in the experimental + -- portion of the MIB until they are "proven", then as a + -- part of the Internet standardization process, the + -- definitions are accordingly elevated and a new object + -- identifier, under the transmission group is defined. By + -- convention, the name assigned is: + -- + -- type OBJECT IDENTIFIER ::= { transmission number } + -- + -- where "type" is the symbolic value used for the media in + -- the ifType column of the ifTable object, and "number" is + -- the actual integer value corresponding to the symbol. + + + -- the SNMP group + + -- Implementation of the SNMP group is mandatory for all + -- systems which support an SNMP protocol entity. Some of + -- the objects defined below will be zero-valued in those + -- SNMP implementations that are optimized to support only + -- those functions specific to either a management agent or + -- a management station. In particular, it should be + -- observed that the objects below refer to an SNMP entity, + -- and there may be several SNMP entities residing on a + -- managed node (e.g., if the node is hosting acting as + -- a management station). + + snmpInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of Messages delivered to the + SNMP entity from the transport service." + ::= { snmp 1 } + + snmpOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Messages which were + passed from the SNMP protocol entity to the + transport service." + ::= { snmp 2 } + + snmpInBadVersions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Messages which were + delivered to the SNMP protocol entity and were for + an unsupported SNMP version." + ::= { snmp 3 } + + snmpInBadCommunityNames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Messages delivered to + the SNMP protocol entity which used a SNMP + community name not known to said entity." + ::= { snmp 4 } + + snmpInBadCommunityUses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Messages delivered to + the SNMP protocol entity which represented an SNMP + operation which was not allowed by the SNMP + community named in the Message." + ::= { snmp 5 } + + snmpInASNParseErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of ASN.1 or BER errors + encountered by the SNMP protocol entity when + decoding received SNMP Messages." + ::= { snmp 6 } + + -- { snmp 7 } is not used + + snmpInTooBigs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `tooBig'." + ::= { snmp 8 } + + snmpInNoSuchNames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `noSuchName'." + ::= { snmp 9 } + + snmpInBadValues OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `badValue'." + ::= { snmp 10 } + + snmpInReadOnlys OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number valid SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `readOnly'. It should be noted that it is a + protocol error to generate an SNMP PDU which + contains the value `readOnly' in the error-status + field, as such this object is provided as a means + of detecting incorrect implementations of the + SNMP." + ::= { snmp 11 } + + snmpInGenErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `genErr'." + ::= { snmp 12 } + + snmpInTotalReqVars OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of MIB objects which have been + retrieved successfully by the SNMP protocol entity + as the result of receiving valid SNMP Get-Request + and Get-Next PDUs." + ::= { snmp 13 } + + snmpInTotalSetVars OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of MIB objects which have been + altered successfully by the SNMP protocol entity + as the result of receiving valid SNMP Set-Request + PDUs." + ::= { snmp 14 } + + snmpInGetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Get-Request PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 15 } + + snmpInGetNexts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Get-Next PDUs which have + been accepted and processed by the SNMP protocol + entity." + ::= { snmp 16 } + + snmpInSetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Set-Request PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 17 } + + snmpInGetResponses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Get-Response PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 18 } + + snmpInTraps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Trap PDUs which have + been accepted and processed by the SNMP protocol + entity." + ::= { snmp 19 } + + snmpOutTooBigs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `tooBig.'" + ::= { snmp 20 } + + snmpOutNoSuchNames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status is + `noSuchName'." + ::= { snmp 21 } + + snmpOutBadValues OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `badValue'." + ::= { snmp 22 } + + -- { snmp 23 } is not used + + snmpOutGenErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `genErr'." + ::= { snmp 24 } + + snmpOutGetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Get-Request PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 25 } + + snmpOutGetNexts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Get-Next PDUs which have + been generated by the SNMP protocol entity." + ::= { snmp 26 } + + snmpOutSetRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Set-Request PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 27 } + + snmpOutGetResponses OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Get-Response PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 28 } + + snmpOutTraps OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SNMP Trap PDUs which have + been generated by the SNMP protocol entity." + ::= { snmp 29 } + + snmpEnableAuthenTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates whether the SNMP agent process is + permitted to generate authentication-failure + traps. The value of this object overrides any + configuration information; as such, it provides a + means whereby all authentication-failure traps may + be disabled. + + Note that it is strongly recommended that this + object be stored in non-volatile memory so that it + remains constant between re-initializations of the + network management system." + ::= { snmp 30 } + + egpNeighborLoss TRAP-TYPE + ENTERPRISE snmp + VARIABLES { egpNeighAddr } + DESCRIPTION + "An egpNeighborLoss trap signifies that an EGP + neighbor for whom the sending protocol entity + was an EGP peer has been marked down and the + peer relationship no longer obtains." + ::= 5 + + END diff --git a/pandora_console/attachment/mibs/RFC1215-TRAP b/pandora_console/attachment/mibs/RFC1215-TRAP new file mode 100644 index 0000000000..4a65305f82 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1215-TRAP @@ -0,0 +1,77 @@ +-- Changes for rfc1215 (SNMP generic traps): +-- Added MODULE definition. +-- Added IMPORTS. +-- dperkins@scruznet.com + + +RFC1215-TRAP DEFINITIONS ::= BEGIN + + + IMPORTS + snmp, ifIndex, egpNeighAddr + FROM RFC1213-MIB + TRAP-TYPE + FROM RFC-1215; + + coldStart TRAP-TYPE + ENTERPRISE snmp + DESCRIPTION + "A coldStart trap signifies that the sending + protocol entity is reinitializing itself such + that the agent's configuration or the protocol + entity implementation may be altered." + ::= 0 + + warmStart TRAP-TYPE + ENTERPRISE snmp + DESCRIPTION + "A warmStart trap signifies that the sending + protocol entity is reinitializing itself such + that neither the agent configuration nor the + protocol entity implementation is altered." + ::= 1 + + linkDown TRAP-TYPE + ENTERPRISE snmp + VARIABLES { ifIndex } + DESCRIPTION + "A linkDown trap signifies that the sending + protocol entity recognizes a failure in one of + the communication links represented in the + agent's configuration." + ::= 2 + + linkUp TRAP-TYPE + ENTERPRISE snmp + VARIABLES { ifIndex } + DESCRIPTION + "A linkUp trap signifies that the sending + protocol entity recognizes that one of the + communication links represented in the agent's + configuration has come up." + ::= 3 + + authenticationFailure TRAP-TYPE + ENTERPRISE snmp + DESCRIPTION + "An authenticationFailure trap signifies that + the sending protocol entity is the addressee + of a protocol message that is not properly + authenticated. While implementations of the + SNMP must be capable of generating this trap, + they must also be capable of suppressing the + emission of such traps via an + implementation-specific mechanism." + ::= 4 + + egpNeighborLoss TRAP-TYPE + ENTERPRISE snmp + VARIABLES { egpNeighAddr } + DESCRIPTION + "An egpNeighborLoss trap signifies that an EGP + neighbor for whom the sending protocol entity + was an EGP peer has been marked down and the + peer relationship no longer obtains." + ::= 5 + +END diff --git a/pandora_console/attachment/mibs/RFC1229-MIB b/pandora_console/attachment/mibs/RFC1229-MIB new file mode 100644 index 0000000000..1bcdd4c65b --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1229-MIB @@ -0,0 +1,473 @@ +-- Changes to RFC1229 (Interface Extensions MIB): +-- Changes from RFC-1239 applied which include: +-- removing import of experimental, +-- adding import of mib-2, changing +-- ifExtensions to be { mib-2 12 } +-- instead of { experimental 6 } +-- dperkins@scruznet.com + + + RFC1229-MIB DEFINITIONS ::= BEGIN + + -- RFC1229 + -- May 91 + + -- Extensions to MIB-II's Generic Interface Table + + IMPORTS + Counter FROM RFC1155-SMI + mib-2, DisplayString, PhysAddress + FROM RFC1213-MIB + OBJECT-TYPE FROM RFC-1212; + + + ifExtensions OBJECT IDENTIFIER ::= { mib-2 12 } + + + -- Generic Interface Extension Table + -- + -- This group of objects is mandatory for all types of + -- subnetwork interface. + + ifExtnsTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfExtnsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of interfaces extension entries. + The number of entries is given by the value + of ifNumber, defined in [4,6]." + ::= { ifExtensions 1 } + + ifExtnsEntry OBJECT-TYPE + SYNTAX IfExtnsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An extension to the interfaces entry, + defined in [4,6], containing additional + objects at the subnetwork layer and below + for a particular interface." + INDEX { ifExtnsIfIndex } + ::= { ifExtnsTable 1 } + + IfExtnsEntry ::= + SEQUENCE { + ifExtnsIfIndex + INTEGER, + ifExtnsChipSet + OBJECT IDENTIFIER, + ifExtnsRevWare + DisplayString, + ifExtnsMulticastsTransmittedOks + Counter, + ifExtnsBroadcastsTransmittedOks + Counter, + ifExtnsMulticastsReceivedOks + Counter, + ifExtnsBroadcastsReceivedOks + Counter, + ifExtnsPromiscuous + INTEGER + } + + ifExtnsIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains + extended management information. The value + of this object for a particular interface + has the same value as the ifIndex object, + defined in [4,6], for the same interface." + ::= { ifExtnsEntry 1 } + + ifExtnsChipSet OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object identifies the hardware chip + set being used in the interface. The + assignment of OBJECT IDENTIFIERs to various + types of hardware chip sets is managed + by the IANA. If the hardware chip set is + unknown, the object identifier + + unknownChipSet OBJECT IDENTIFIER ::= { 0 0 } + + is returned. Note that unknownChipSet is a + syntactically valid object identifier, and + any conformant implementation of ASN.1 and + the BER must be able to generate and + recognize this value." + ::= { ifExtnsEntry 2 } + + ifExtnsRevWare OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An arbitrary octet string that describes + the firmware version of this interface. + It is intended that this should be human + readable. It must only contain ASCII + printable characters. Typically this + will be the firmware version of the main + interface software." + ::= { ifExtnsEntry 3 } + + ifExtnsMulticastsTransmittedOks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The count of frames successfully + transmitted to a subnetwork or link-layer + multicast destination address other than a + broadcast address. For a MAC layer protocol, + this includes both Group and Functional + addresses." + ::= { ifExtnsEntry 4 } + + ifExtnsBroadcastsTransmittedOks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The count of frames successfully + transmitted to a subnetwork or link-layer + broadcast addresses. It does not include + frames sent to a multicast address." + ::= { ifExtnsEntry 5 } + + ifExtnsMulticastsReceivedOks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The count of frames successfully received + that are directed to an active subnetwork + or link-layer multicast address (for a MAC + layer protocol, this includes both Group and + Functional addresses). This does not include + frames directed to a broadcast address, nor + frames received with errors." + ::= { ifExtnsEntry 6 } + + ifExtnsBroadcastsReceivedOks OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The count of frames successfully received + that are directed to a subnetwork or + link-layer broadcast address. This does not + include frames received with errors." + ::= { ifExtnsEntry 7 } + + ifExtnsPromiscuous OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + ACCESS read-only -- Note: agent implementors are + -- encouraged to extend this + -- access to read-write if that + -- makes sense in their agent. + STATUS mandatory + DESCRIPTION + "This object has a value of false(2) if + this interface only accepts packets/frames + that are addressed to this station. This + object has a value of true(1) when the + station accepts all packets/frames + transmitted on the media. The value + true(1) is only legal on certain types of + media. If legal, setting this object to a + value of true(1) may require the interface + to be reset before becoming effective." + ::= { ifExtnsEntry 8 } + + -- + -- Generic Interface Test Table + -- + -- This group of objects is optional, but if the table is + -- implemented, all objects in the table must be implemented. + + ifExtnsTestTable OBJECT-TYPE + + SYNTAX SEQUENCE OF IfExtnsTestEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains one entry per interface." + ::= { ifExtensions 2 } + + ifExtnsTestEntry OBJECT-TYPE + SYNTAX IfExtnsTestEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry containing objects for invoking + tests on an interface." + INDEX { ifExtnsTestIfIndex } + ::= { ifExtnsTestTable 1 } + + IfExtnsTestEntry ::= + SEQUENCE { + ifExtnsTestIfIndex + INTEGER, + ifExtnsTestCommunity + OCTET STRING, + ifExtnsTestRequestId + INTEGER, + ifExtnsTestType + OBJECT IDENTIFIER, + ifExtnsTestResult + INTEGER, + ifExtnsTestCode + OBJECT IDENTIFIER + } + + ifExtnsTestIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains + information on interface tests. The value + of this object for a particular interface + has the same value as the ifIndex object, + defined in [4,6], for the same interface." + ::= { ifExtnsTestEntry 1 } + + ifExtnsTestCommunity OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains the name of the SNMP + authentication community [5] which was used + to authenticate the SNMP Message which invoked + the current or most recent test on this + interface. If the authentication community + is unknown or undefined, this value contains + the zero-length string." + ::= { ifExtnsTestEntry 2 } + + ifExtnsTestRequestId OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains the value of the + request-id field in the SNMP PDU [5] which + invoked the current or most recent test on + this interface. If the request-id is + unknown or undefined, this value contains + the value zero." + ::= { ifExtnsTestEntry 3 } + + ifExtnsTestType OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A control variable used to start and stop + operator-initiated interface tests. + Most OBJECT IDENTIFIER values assigned + to tests are defined elsewhere, in associ- + ation with specific types of interface. + However, this document assigns a value for + a full-duplex loopback test, and defines the + special meanings of the subject identifier: + + noTest OBJECT IDENTIFIER ::= { 0 0 } + + When the value noTest is written to this + object, no action is taken unless a test is + in progress, in which case the test is + aborted. Writing any other value to this + object is only valid when no test is + currently in progress, in which case the + indicated test is initiated. + Note that noTest is a syntactically valid + object identifier, and any conformant + implementation of ASN.1 and BER must be able + to generate and recognize this value. + When read, this object always returns + the most recent value that ifExtnsTestType + was set to. If it has not been set since + the last initialization of the network + management subsystem on the agent, a value + of noTest is returned." + ::= { ifExtnsTestEntry 4 } + + wellKnownTests OBJECT IDENTIFIER ::= { ifExtensions 4 } + + -- full-duplex loopback test + testFullDuplexLoopBack OBJECT IDENTIFIER ::= + { wellKnownTests 1 } + + ifExtnsTestResult OBJECT-TYPE + SYNTAX INTEGER { + none(1), -- no test yet requested + success(2), + inProgress(3), + notSupported(4), + unAbleToRun(5), -- due to state of system + aborted(6), + failed(7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains the result of the most + recently requested test, or the value + none(1) if no tests have been requested since + the last reset. Note that this facility + provides no provision for saving the results + of one test when starting another, as could + be required if used by multiple managers + concurrently." + ::= { ifExtnsTestEntry 5 } + + ifExtnsTestCode OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object contains a code which contains + more specific information on the test result, + for example an error-code after a failed + test. Error codes and other values this + object may take are specific to the type of + interface and/or test. However, one subject + identifier: + + testCodeUnknown OBJECT IDENTIFIER ::= { 0 0 } + + for use if no additional result code is + available. + Note that testCodeUnknown is a + syntactically valid object identifier, and + any conformant implementation of ASN.1 and + the BER must be able to generate and + recognize this value." + ::= { ifExtnsTestEntry 6 } + + + -- Generic Receive Address Table + -- + -- This group of objects is mandatory for all types of + -- interfaces which can receive packets/frames addressed to + -- more than one address. + + ifExtnsRcvAddrTable OBJECT-TYPE + SYNTAX SEQUENCE OF IfExtnsRcvAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains an entry for each + address (broadcast, multicast, or uni-cast) + for which the system will receive packets/ + frames on a particular interface. When an + interface is operating in promiscuous mode, + entries are only required for those addresses + for which the system would receive frames + were it not operating in promiscuous mode." + ::= { ifExtensions 3 } + + ifExtnsRcvAddrEntry OBJECT-TYPE + SYNTAX IfExtnsRcvAddrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of objects identifying an address + for which the system will accept packets/ + frames on a particular interface." + INDEX { ifExtnsRcvAddrIfIndex, ifExtnsRcvAddress } + ::= { ifExtnsRcvAddrTable 1 } + + IfExtnsRcvAddrEntry ::= + SEQUENCE { + ifExtnsRcvAddrIfIndex + INTEGER, + ifExtnsRcvAddress + PhysAddress, + ifExtnsRcvAddrStatus + INTEGER + } + + ifExtnsRcvAddrIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of ifIndex, defined in [4,6], of an + interface which recognizes this entry's + address." + ::= { ifExtnsRcvAddrEntry 1 } + + ifExtnsRcvAddress OBJECT-TYPE + SYNTAX PhysAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An address for which the system will accept + packets/frames on this entry's interface." + ::= { ifExtnsRcvAddrEntry 2 } + + ifExtnsRcvAddrStatus OBJECT-TYPE + SYNTAX INTEGER { + other(1), + invalid(2), + volatile(3), + nonVolatile(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object has the value nonVolatile(4) + for those entries in the table which are + valid and will not be deleted by the next + restart of the managed system. Entries + having the value volatile(3) are valid + and exist, but have not been saved, so + that will not exist after the next + restart of the managed system. Entries + having the value other(1) are valid and + exist but are not classified as to whether + they will continue to exist after the next + restart. Entries having the value invalid(2) + are invalid and do not represent an address + for which an interface accepts frames. + Setting an object instance to one of + the values other(1), volatile(3), or + nonVolatile(4) causes the corresponding + entry to exist or continue to exist, and + to take on the respective status as regards + the next restart of the managed system. + Setting an object instance to the value + invalid(2) causes the corresponding entry + to become invalid or cease to exist. + It is an implementation-specific matter + as to whether the agent removes an + invalidated entry from the table. + Accordingly, management stations must be + prepared to receive tabular information + from agents that corresponds to entries not + currently in use. Proper interpretation of + such entries requires examination of the + relevant ifExtnsRcvAddrStatus object + instance." + DEFVAL { volatile } + ::= { ifExtnsRcvAddrEntry 3 } + + END + + diff --git a/pandora_console/attachment/mibs/RFC1231-MIB b/pandora_console/attachment/mibs/RFC1231-MIB new file mode 100644 index 0000000000..2d2277b25d --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1231-MIB @@ -0,0 +1,869 @@ +-- Changes for RFC1231 (Token Ring MIB): +-- Changes from RFC-1239 applied which include: +-- removing import of experimental, +-- adding import of transmission, changing +-- dot5 to be { transmission 9 } +-- instead of { experimental 4 } +-- Added import for Counter. +-- Changed the status from optional to mandatory for +-- dot5StatsFreqErrors. +-- dperkins@scruznet.com + + RFC1231-MIB DEFINITIONS ::= BEGIN + + -- RFC1231 + -- May 91 + + -- IEEE 802.5 Token Ring MIB + + IMPORTS + Counter + FROM RFC1155-SMI + transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + + dot5 OBJECT IDENTIFIER ::= { transmission 9 } + + + -- All representations of MAC addresses in this MIB Module + -- use, as a textual convention (i.e. this convention does + -- not affect their encoding), the data type: + + MacAddress ::= OCTET STRING (SIZE (6)) -- a 6 octet + -- address in the + -- "canonical" order + -- defined by IEEE 802.1a, i.e., as if it were transmitted + -- least significant bit first, even though 802.5 (in + -- contrast to other 802.x protocols) requires MAC addresses + -- to be transmitted most significant bit first. + -- + -- 16-bit addresses, if needed, are represented by setting + -- their upper 4 octets to all 0's, i.e., AAFF would be + -- represented as 00000000AAFF. + + + + -- The Interface Table + + -- This table contains state and parameter information which + -- is specific to 802.5 interfaces. It is mandatory that + -- systems having 802.5 interfaces implement this table in + -- addition to the generic interfaces table [4,6] and its + -- generic extensions [11]. + + dot5Table OBJECT-TYPE + SYNTAX SEQUENCE OF Dot5Entry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains Token Ring interface + parameters and state variables, one entry + per 802.5 interface." + ::= { dot5 1 } + + dot5Entry OBJECT-TYPE + SYNTAX Dot5Entry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of Token Ring status and parameter + values for an 802.5 interface." + INDEX { dot5IfIndex } + ::= { dot5Table 1 } + + Dot5Entry + ::= SEQUENCE { + dot5IfIndex + INTEGER, + dot5Commands + INTEGER, + dot5RingStatus + INTEGER, + dot5RingState + INTEGER, + dot5RingOpenStatus + INTEGER, + dot5RingSpeed + INTEGER, + dot5UpStream + MacAddress, + dot5ActMonParticipate + INTEGER, + dot5Functional + MacAddress + } + + dot5IfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the + 802.5 interface for which this entry + contains management information. The + value of this object for a particular + interface has the same value as the + ifIndex object, defined in [4,6], + for the same interface." + ::= { dot5Entry 1 } + + dot5Commands OBJECT-TYPE + SYNTAX INTEGER { + no-op(1), + open(2), + reset(3), + close(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When this object is set to the value of + open(2), the station should go into the + open state. The progress and success of + the open is given by the values of the + objects dot5RingState and + dot5RingOpenStatus. + When this object is set to the value + of reset(3), then the station should do + a reset. On a reset, all MIB counters + should retain their values, if possible. + Other side affects are dependent on the + hardware chip set. + When this object is set to the value + of close(4), the station should go into + the stopped state by removing itself + from the ring. + Setting this object to a value of + no-op(1) has no effect. + When read, this object always has a + value of no-op(1)." + ::= { dot5Entry 2 } + + dot5RingStatus OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current interface status which can + be used to diagnose fluctuating problems + that can occur on token rings, after a + station has successfully been added to + the ring. + Before an open is completed, this + object has the value for the 'no status' + condition. The dot5RingState and + dot5RingOpenStatus objects provide for + debugging problems when the station + can not even enter the ring. + The object's value is a sum of + values, one for each currently applicable + condition. The following values are + defined for various conditions: + + 0 = No Problems detected + 32 = Ring Recovery + 64 = Single Station + 256 = Remove Received + 512 = reserved + 1024 = Auto-Removal Error + 2048 = Lobe Wire Fault + 4096 = Transmit Beacon + 8192 = Soft Error + 16384 = Hard Error + 32768 = Signal Loss + 131072 = no status, open not completed." + ::= { dot5Entry 3 } + + dot5RingState OBJECT-TYPE + SYNTAX INTEGER { + opened(1), + closed(2), + opening(3), + closing(4), + openFailure(5), + ringFailure(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current interface state with respect + to entering or leaving the ring." + ::= { dot5Entry 4 } + + dot5RingOpenStatus OBJECT-TYPE + SYNTAX INTEGER { + noOpen(1), -- no open attempted + badParam(2), + lobeFailed(3), + signalLoss(4), + insertionTimeout(5), + ringFailed(6), + beaconing(7), + duplicateMAC(8), + requestFailed(9), + removeReceived(10), + open(11) -- last open successful + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object indicates the success, or the + reason for failure, of the station's most + recent attempt to enter the ring." + ::= { dot5Entry 5 } + + dot5RingSpeed OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + oneMegabit(2), + fourMegabit(3), + sixteenMegabit(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The ring's bandwidth." + ::= { dot5Entry 6 } + + dot5UpStream OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MAC-address of the up stream neighbor + station in the ring." + ::= { dot5Entry 7 } + + dot5ActMonParticipate OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If this object has a value of true(1) then + this interface will participate in the + active monitor selection process. If the + value is false(2) then it will not. + Setting this object might not have an + effect until the next time the interface + is opened." + ::= { dot5Entry 8 } + + dot5Functional OBJECT-TYPE + SYNTAX MacAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The bit mask of all Token Ring functional + addresses for which this interface will + accept frames." + ::= { dot5Entry 9 } + + + + -- The Statistics Table + + -- This table contains statistics and error counter which are + -- specific to 802.5 interfaces. It is mandatory that systems + -- having 802.5 interfaces implement this table. + + dot5StatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot5StatsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing Token Ring statistics, + one entry per 802.5 interface. + All the statistics are defined using + the syntax Counter as 32-bit wrap around + counters. Thus, if an interface's + hardware maintains these statistics in + 16-bit counters, then the agent must read + the hardware's counters frequently enough + to prevent loss of significance, in order + to maintain 32-bit counters in software." + ::= { dot5 2 } + + dot5StatsEntry OBJECT-TYPE + SYNTAX Dot5StatsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry contains the 802.5 statistics + for a particular interface." + INDEX { dot5StatsIfIndex } + ::= { dot5StatsTable 1 } + + Dot5StatsEntry + ::= SEQUENCE { + dot5StatsIfIndex + INTEGER, + dot5StatsLineErrors + Counter, + dot5StatsBurstErrors + Counter, + dot5StatsACErrors + Counter, + dot5StatsAbortTransErrors + Counter, + dot5StatsInternalErrors + Counter, + dot5StatsLostFrameErrors + Counter, + dot5StatsReceiveCongestions + Counter, + dot5StatsFrameCopiedErrors + Counter, + dot5StatsTokenErrors + Counter, + dot5StatsSoftErrors + Counter, + dot5StatsHardErrors + Counter, + dot5StatsSignalLoss + Counter, + dot5StatsTransmitBeacons + Counter, + dot5StatsRecoverys + Counter, + dot5StatsLobeWires + Counter, + dot5StatsRemoves + Counter, + dot5StatsSingles + Counter, + dot5StatsFreqErrors + Counter + } + + + dot5StatsIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the + 802.5 interface for which this entry + contains management information. The + value of this object for a particular + interface has the same value as the + ifIndex object, defined in [4,6], for + the same interface." + ::= { dot5StatsEntry 1 } + + dot5StatsLineErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a frame + or token is copied or repeated by a + station, the E bit is zero in the frame + or token and one of the following + conditions exists: 1) there is a + non-data bit (J or K bit) between the SD + and the ED of the frame or token, or + 2) there is an FCS error in the frame." + ::= { dot5StatsEntry 2 } + + dot5StatsBurstErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + detects the absence of transitions for five + half-bit timers (burst-five error)." + ::= { dot5StatsEntry 3 } + + dot5StatsACErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + receives an AMP or SMP frame in which A is + equal to C is equal to 0, and then receives + another SMP frame with A is equal to C is + equal to 0 without first receiving an AMP + frame. It denotes a station that cannot set + the AC bits properly." + ::= { dot5StatsEntry 4 } + + dot5StatsAbortTransErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + transmits an abort delimiter while + transmitting." + ::= { dot5StatsEntry 5 } + + dot5StatsInternalErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + recognizes an internal error." + ::= { dot5StatsEntry 6 } + + dot5StatsLostFrameErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + is transmitting and its TRR timer expires. + This condition denotes a condition where a + transmitting station in strip mode does not + receive the trailer of the frame before the + TRR timer goes off." + ::= { dot5StatsEntry 7 } + + dot5StatsReceiveCongestions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + recognizes a frame addressed to its + specific address, but has no available + buffer space indicating that the station + is congested." + ::= { dot5StatsEntry 8 } + + dot5StatsFrameCopiedErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + recognizes a frame addressed to its + specific address and detects that the FS + field A bits are set to 1 indicating a + possible line hit or duplicate address." + ::= { dot5StatsEntry 9 } + + dot5StatsTokenErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This counter is incremented when a station + acting as the active monitor recognizes an + error condition that needs a token + transmitted." + ::= { dot5StatsEntry 10 } + + dot5StatsSoftErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Soft Errors the interface + has detected. It directly corresponds to + the number of Report Error MAC frames + that this interface has transmitted. + Soft Errors are those which are + recoverable by the MAC layer protocols." + ::= { dot5StatsEntry 11 } + + dot5StatsHardErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this interface has + detected an immediately recoverable + fatal error. It denotes the number of + times this interface is either + transmitting or receiving beacon MAC + frames." + ::= { dot5StatsEntry 12 } + + dot5StatsSignalLoss OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this interface has + detected the loss of signal condition from + the ring." + ::= { dot5StatsEntry 13 } + + dot5StatsTransmitBeacons OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this interface has + transmitted a beacon frame." + ::= { dot5StatsEntry 14 } + + dot5StatsRecoverys OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Claim Token MAC frames + received or transmitted after the interface + has received a Ring Purge MAC frame. This + counter signifies the number of times the + ring has been purged and is being recovered + back into a normal operating state." + ::= { dot5StatsEntry 15 } + + dot5StatsLobeWires OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the interface has + detected an open or short circuit in the + lobe data path. The adapter will be closed + and dot5RingState will signify this + condition." + ::= { dot5StatsEntry 16 } + + dot5StatsRemoves OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the interface has + received a Remove Ring Station MAC frame + request. When this frame is received + the interface will enter the close state + and dot5RingState will signify this + condition." + ::= { dot5StatsEntry 17 } + + dot5StatsSingles OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the interface has + sensed that it is the only station on the + ring. This will happen if the interface + is the first one up on a ring, or if + there is a hardware problem." + ::= { dot5StatsEntry 18 } + + dot5StatsFreqErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the interface has + detected that the frequency of the + incoming signal differs from the expected + frequency by more than that specified by + the IEEE 802.5 standard, see chapter 7 + in [10]." + ::= { dot5StatsEntry 19 } + + + -- The Timer Table + + -- This group contains the values of the timers defined in + -- [10] for 802.5 interfaces. It is optional that systems + -- having 802.5 interfaces implement this group. + + dot5TimerTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot5TimerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains Token Ring interface + timer values, one entry per 802.5 + interface." + ::= { dot5 5 } + + dot5TimerEntry OBJECT-TYPE + SYNTAX Dot5TimerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of Token Ring timer values for an + 802.5 interface." + INDEX { dot5TimerIfIndex } + ::= { dot5TimerTable 1 } + + Dot5TimerEntry + ::= SEQUENCE { + dot5TimerIfIndex + INTEGER, + dot5TimerReturnRepeat + INTEGER, + dot5TimerHolding + INTEGER, + dot5TimerQueuePDU + INTEGER, + dot5TimerValidTransmit + INTEGER, + dot5TimerNoToken + INTEGER, + dot5TimerActiveMon + INTEGER, + dot5TimerStandbyMon + INTEGER, + dot5TimerErrorReport + INTEGER, + dot5TimerBeaconTransmit + INTEGER, + dot5TimerBeaconReceive + INTEGER + } + + dot5TimerIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the + 802.5 interface for which this entry + contains timer values. The value of + this object for a particular interface + has the same value as the ifIndex + object, defined in [4,6], for the same + interface." + ::= { dot5TimerEntry 1 } + + dot5TimerReturnRepeat OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value used to ensure the + interface will return to Repeat State, in + units of 100 micro-seconds. The value + should be greater than the maximum ring + latency. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 2 } + + dot5TimerHolding OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Maximum period of time a station is + permitted to transmit frames after capturing + a token, in units of 100 micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 3 } + + dot5TimerQueuePDU OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value for enqueuing of an SMP + PDU after reception of an AMP or SMP + frame in which the A and C bits were + equal to 0, in units of 100 + micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 4 } + + dot5TimerValidTransmit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value used by the active + monitor to detect the absence of valid + transmissions, in units of 100 + micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 5 } + + dot5TimerNoToken OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value used to recover from + various-related error situations [9]. + If N is the maximum number of stations on + the ring, the value of this timer is + normally: + dot5TimerReturnRepeat + N*dot5TimerHolding. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 6 } + + dot5TimerActiveMon OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value used by the active + monitor to stimulate the enqueuing of an + AMP PDU for transmission, in units of + 100 micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 7 } + + dot5TimerStandbyMon OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value used by the stand-by + monitors to ensure that there is an active + monitor on the ring and to detect a + continuous stream of tokens, in units of + 100 micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 8 } + + dot5TimerErrorReport OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value which determines how + often a station shall send a Report Error + MAC frame to report its error counters, + in units of 100 micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 9 } + + dot5TimerBeaconTransmit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value which determines how + long a station shall remain in the state + of transmitting Beacon frames before + entering the Bypass state, in units of + 100 micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 10 } + + dot5TimerBeaconReceive OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time-out value which determines how + long a station shall receive Beacon + frames from its downstream neighbor + before entering the Bypass state, in + units of 100 micro-seconds. + Implementors are encouraged to provide + read-write access to this object if that is + possible/useful in their system, but giving + due consideration to the dangers of + write-able timers." + ::= { dot5TimerEntry 11 } + + + -- 802.5 Interface Tests + + dot5Tests OBJECT IDENTIFIER ::= { dot5 3 } + + -- The extensions to the interfaces table proposed in [11] + -- define a table object, ifExtnsTestTable, through which a + -- network manager can instruct an agent to test an interface + -- for various faults. A test to be performed is identified + -- (as the value of ifExtnsTestType) via an OBJECT IDENTIFIER. + -- + -- The Full-Duplex Loop Back Test is a common test, defined + -- in [11] as: + -- + -- testFullDuplexLoopBack + -- + -- Invoking this test on a 802.5 interface causes the + -- interface to check the path from memory through the + -- chip set's internal logic and back to memory, thus + -- checking the proper functioning of the systems's + -- interface to the chip set. + + -- The Insert Function test is defined by: + + testInsertFunc OBJECT IDENTIFIER ::= { dot5Tests 1 } + + -- Invoking this test causes the station to test the insert + -- ring logic of the hardware if the station's lobe media + -- cable is connected to a wiring concentrator. Note that + -- this command inserts the station into the network, and + -- thus, could cause problems if the station is connected + -- to a operational network. + + + -- 802.5 Hardware Chip Sets + + dot5ChipSets OBJECT IDENTIFIER ::= { dot5 4 } + + -- The extensions to the interfaces table proposed in [11] + -- define an object, ifExtnsChipSet, with the syntax of + -- OBJECT IDENTIFIER, to identify the hardware chip set in + -- use by an interface. That definition specifies just + -- one applicable object identifier: + -- + -- unknownChipSet + -- + -- for use as the value of ifExtnsChipSet when the specific + -- chip set is unknown. + -- + -- This MIB defines the following for use as values of + -- ifExtnsChipSet: + + -- IBM 16/4 Mb/s + chipSetIBM16 OBJECT IDENTIFIER ::= { dot5ChipSets 1 } + + -- TI 4Mb/s + chipSetTItms380 OBJECT IDENTIFIER ::= { dot5ChipSets 2 } + + -- TI 16/4 Mb/s + chipSetTItms380c16 OBJECT IDENTIFIER ::= { dot5ChipSets 3 } + + END + + diff --git a/pandora_console/attachment/mibs/RFC1232-MIB b/pandora_console/attachment/mibs/RFC1232-MIB new file mode 100644 index 0000000000..2013c60fc1 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1232-MIB @@ -0,0 +1,890 @@ +-- Changes for RFC1232 (DS1 MIB): +-- Changes from RFC-1239 applied which include: +-- removing import of experimental, +-- adding import of transmission, changing +-- ds1 to be { transmission 10 } +-- instead of { experimental 2 } +-- Changed defintions and references from "DS1" to "Ds1" for +-- the following: DS1ConfigEntry, DS1IntervalEntry, +-- DS1CurrentEntry, DS1TotalEntry, DS1FracEntry +-- dperkins@scruznet.com + + RFC1232-MIB DEFINITIONS ::= BEGIN + + -- RFC1232 + -- May 91 + + IMPORTS + Counter + FROM RFC1155-SMI + DisplayString, transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + + -- this is the MIB module for ds1 objects + + ds1 OBJECT IDENTIFIER ::= { transmission 18 } + + -- the DS1 Configuration group + + -- Although the objects in this group are read-only, at the + -- agent's discretion they may be made read-write so that the + -- management station, when appropriately authorized, may + -- change the behavior of the CSU, e.g., to place the device + -- into a loopback state or emit a QRSS BER test. + + -- Implementation of this group is mandatory for all systems + -- that attach to a ds1. + + ds1ConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds1ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Configuration table." + ::= { ds1 1 } + + ds1ConfigEntry OBJECT-TYPE + SYNTAX Ds1ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Configuration table." + INDEX { ds1CSUIndex } + ::= { ds1ConfigTable 1 } + + Ds1ConfigEntry ::= + SEQUENCE { + ds1CSUIndex + INTEGER, + ds1Index + INTEGER, + ds1TimeElapsed + INTEGER (1..900), + ds1ValidIntervals + INTEGER (0..96), + ds1LineType + INTEGER, + ds1ZeroCoding + INTEGER, + ds1Loopback + INTEGER, + ds1SendCode + INTEGER, + ds1YellowAlarm + INTEGER, + ds1RedAlarm + INTEGER, + ds1CircuitIdentifier + DisplayString (SIZE (0..255)) + } + + ds1CSUIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable." + ::= { ds1ConfigEntry 1 } + + ds1Index OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index value that uniquely identifies an + interface to a ds1. The interface identified by a + particular value of this index is the same + interface as identified by the same value an + ifIndex object instance." + ::= { ds1ConfigEntry 2 } + + ds1TimeElapsed OBJECT-TYPE + SYNTAX INTEGER (1..900) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds that have elapsed since the + beginning of the current error-measurement period. + Any fraction is rounded up." + ::= { ds1ConfigEntry 3 } + + ds1ValidIntervals OBJECT-TYPE + SYNTAX INTEGER (0..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of previous intervals for which valid + data was collected. The value will be 96 unless + the CSU device was brought online within the last + 24 hours, in which case the value will be the + number of complete 15 minute intervals the CSU has + been online." + ::= { ds1ConfigEntry 4 } + + ds1LineType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ds1ESF(2), + ds1D4(3), + ds1ANSI-ESF(4), + ds1G704(5), + ds1G704-CRC(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the variety of DS1 Line + implementing this circuit. The type of circuit + affects the number of bits per second that the + circuit can reasonably carry, as well as the + interpretation of the usage and error statistics. + + The values, in sequence, describe: + TITLE: SPECIFICATION: + ds1ESF AT&T Extended SuperFrame DS1 [10] + ds1D4 AT&T D4 format DS1 [16], [17] + ds1ANSI-ESF ANSI Extended SuperFrame format [14] + ds1G704 CCITT Recommendation G.704 [12] + (section 2.1.3.2) + ds1G704-CRC CCITT Recommendation G.704 [12] + (section 2.1.3.1) + " + ::= { ds1ConfigEntry 5 } + + ds1ZeroCoding OBJECT-TYPE + SYNTAX INTEGER { + ds1JammedBit(1), + ds1B8ZS(2), + ds1InvertedHDLC(3), + ds1HDB3(4), + ds1ZBTSI(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable describes the variety of Zero Code + Suppression used on the link, which in turn + affects a number of its characteristics. + + ds1JammedBit refers the Jammed bit Zero Encoding, + in which the AT&T specification of at least one + pulse every 8 bit periods is literally implemented + by forcing a pulse in bit 8 of each channel. + Thus, only seven bits per channel, or 1.344 Mbps, + is available for data. + + ds1B8ZS refers to the use of a specified pattern + of normal bits and bipolar violations which are + used to replace a sequence of eight zero bits (see + [14]). In this context, all eight bits in a + channel are technically available for data, but + care must be taken with D4 encoded data to avoid + having HDLC Flag streams imitate spurious Yellow + Alarm conditions. Typically, one bit per frame is + ignored to force flag streams to rotate, thereby + avoiding this error type. CCITT Recommendation + G.703 [11] may be referred to for further + definition of these. + + ds1InvertedHDLC refers to the practice, common on + HDLC encoded DS1 data links, of inverting the data + between the serial interface chip and the CSU. + Since HDLC guarantees one zero every 6 bits in the + worst case, while the standards call for (in + effect) at least one pulse every eight, inverted + HDLC enjoys 4/24 one's density on the line, which + may improve the effective clock stability of a DS1 + line. As with B8ZS, all eight bits in a channel + are technically available for data, but care must + be taken with D4 encoded data to avoid having HDLC + Flag streams imitate spurious Yellow Alarm + conditions. Typically, one bit per frame is + ignored to force flag streams to rotate, thereby + avoiding this error type. + + ANSI Clear Channels may use ds1ZBTSI, or Zero Byte + Time Slot Interchange (see [14]). + + G.704 links, with or without CRC, use ds1HDB3 (see + [11]). " + ::= { ds1ConfigEntry 6 } + + ds1Loopback OBJECT-TYPE + SYNTAX INTEGER { + ds1NoLoop(1), + ds1LocalLoopbackLocalSide(2), + ds1LocalLoopbackRemoteSide(3), + ds1RemoteLoopbackLocalSide(4), + ds1RemoteLoopbackRemoteSide(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable represents the loopback state of + the CSU. Devices supporting read/write access + should return badValue in response to a requested + loopback state that the CSU does not support. The + values mean: + + ds1NoLoop + + Not in the loopback state. A device that is + not capable of performing a loopback on either + interface shall always return this as it's + value. + + ds1LocalLoopbackLocalSide + + Signal received from the local side of the + device is looped back at the local connector + (eg, without involving the CSU). + + ds1LocalLoopbackRemoteSide + + Signal received from the local side of the + device is looped back at the remote connector + (eg, through the CSU). + + ds1RemoteLoopbackLocalSide + + Signal received from the remote side of the + device is looped back at the local connector + (eg, through the CSU). + + ds1RemoteLoopbackRemoteSide + + Signal received from the remote side of the + device is looped back at the remote connector + (eg, without involving the CSU)." + ::= { ds1ConfigEntry 7 } + + ds1SendCode OBJECT-TYPE + SYNTAX INTEGER { + ds1OtherTest(1), + ds1SendNoCode(2), + ds1SendSetCode(3), + ds1SendResetCode(4), + ds1SendQRSS(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates what type of code is + being sent across the DS1 circuit by the CSU. The + values mean: + + ds1SendNoCode sending looped or normal data + ds1SendSetCode sending a loopback request + ds1SendResetCode sending a loopback termination request + ds1SendQRSS sending the BERT pattern described in + ANSI T1.403-1989 section 5.6 + ds1OtherTest sending a different BERT/BLERT pattern, + such as all zeroes, all ones, etc." + ::= { ds1ConfigEntry 8 } + + ds1YellowAlarm OBJECT-TYPE + SYNTAX INTEGER { + ds1NoYellowAlarm (1), + ds1YellowAlarm (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates if a Yellow Alarm + condition exists. + + Note that G.704 interfaces do not support Yellow + Alarms. Accordingly, such agents should return + the value ds1NoYellowAlarm." + ::= { ds1ConfigEntry 9 } + + ds1RedAlarm OBJECT-TYPE + SYNTAX INTEGER { + ds1NoRedAlarm (1), + ds1RedAlarm (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates if a Red Alarm condition + exists. + + Note that G.704 interfaces do not support Red + Alarms. Accordingly, such agents should return + the value ds1NoRedAlarm." + ::= { ds1ConfigEntry 10 } + + ds1CircuitIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains the transmission vendor's + circuit identifier, for the purpose of + facilitating troubleshooting." + ::= { ds1ConfigEntry 11 } + + + -- the DS1 Interval group + + -- Implementation of this group is mandatory for all systems + -- that attach to a ds1. + + -- It is recognized that some currently deployed CSUs do not + -- record the entire set of statistics specified in this + -- group. Accordingly, some agents queried for these objects + -- may treat these objects as having an ACCESS clause value + -- of not-accessible. + + -- The DS1 Interval Table contains various statistics + -- collected by each CSU over the previous 24 hours of + -- operation. The past 24 hours are broken into 96 completed + -- 15 minute intervals. + + ds1IntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds1IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Interval table." + ::= { ds1 2 } + + ds1IntervalEntry OBJECT-TYPE + SYNTAX Ds1IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Interval table." + INDEX { ds1IntervalIndex, ds1IntervalNumber } + ::= { ds1IntervalTable 1 } + + Ds1IntervalEntry ::= + SEQUENCE { + ds1IntervalIndex + INTEGER, + ds1IntervalNumber + INTEGER (1..96), + ds1IntervalESs + Counter, + ds1IntervalSESs + Counter, + ds1IntervalSEFSs + Counter, + ds1IntervalUASs + Counter, + ds1IntervalCSSs + Counter, + ds1IntervalBPVs + Counter, + ds1IntervalCVs + Counter + } + + ds1IntervalIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an ds1CSUIndex object instance." + ::= { ds1IntervalEntry 1 } + + ds1IntervalNumber OBJECT-TYPE + SYNTAX INTEGER (1..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number between 1 and 96, where 1 is the most + recently completed 15 minute interval and 96 is + the least recently completed 15 minute interval + (assuming that all 96 intervals are valid)." + ::= { ds1IntervalEntry 2 } + + ds1IntervalESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Errored + Seconds, as defined by ANSI Draft Standard + T1M1.3/90 - 027R2[15], encountered by a DS1 CSU + during one of the previous 96 fifteen minute + intervals." + ::= { ds1IntervalEntry 3 } + + ds1IntervalSESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU during one of the previous 96 fifteen + minute intervals." + ::= { ds1IntervalEntry 4 } + + ds1IntervalSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, as defined by + ANSI Draft Standard T1M1.3/90 - 027R2[15], + encountered by a DS1 CSU during one of the + previous 96 fifteen minute intervals." + ::= { ds1IntervalEntry 5 } + + ds1IntervalUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU during one of the previous 96 fifteen + minute intervals." + ::= { ds1IntervalEntry 6 } + + ds1IntervalCSSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Controlled Slip Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU during one of the previous 96 fifteen + minute intervals." + ::= { ds1IntervalEntry 7 } + + ds1IntervalBPVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Bipolar + Violations, as defined by ANSI Draft Standard + T1M1.3/90 - 027R2[15], encountered by a DS1 CSU + during one of the previous 96 fifteen minute + intervals." + ::= { ds1IntervalEntry 8 } + + ds1IntervalCVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Code + Violation Error Events, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU during one of the previous 96 fifteen + minute intervals. + + Note that D4 and G.704 (section 2.1.3.2) + interfaces do not support Code Violation Error + Events. Accordingly, such agents may treat this + object as having an ACCESS clause value of not- + accessible." + ::= { ds1IntervalEntry 9 } + + + -- the DS1 Current group + + -- Implementation of this group is mandatory for all systems + -- that attach to a ds1. + + -- It is recognized that some currently deployed CSUs do not + -- record the entire set of statistics specified in this + -- group. Accordingly, some agents queried for these objects + -- may treat these objects as having an ACCESS clause value + -- of not-accessible. + + -- The DS1 current table contains various statistics being + -- collected for the current 15 minute interval. + + ds1CurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds1CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Current table." + ::= { ds1 3 } + + ds1CurrentEntry OBJECT-TYPE + SYNTAX Ds1CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Current table." + INDEX { ds1CurrentIndex } + ::= { ds1CurrentTable 1 } + + Ds1CurrentEntry ::= + SEQUENCE { + ds1CurrentIndex + INTEGER, + ds1CurrentESs + Counter, + ds1CurrentSESs + Counter, + ds1CurrentSEFSs + Counter, + ds1CurrentUASs + Counter, + ds1CurrentCSSs + Counter, + ds1CurrentBPVs + Counter, + ds1CurrentCVs + Counter + } + + ds1CurrentIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an ds1CSUIndex object instance." + ::= { ds1CurrentEntry 1 } + + ds1CurrentESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Errored + Seconds, as defined by ANSI Draft Standard + T1M1.3/90 - 027R2[15], encountered by a DS1 CSU in + the current 15 minute interval." + ::= { ds1CurrentEntry 2 } + + ds1CurrentSESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the current 15 minute interval." + ::= { ds1CurrentEntry 3 } + + ds1CurrentSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, as defined by + ANSI Draft Standard T1M1.3/90 - 027R2[15], + encountered by a DS1 CSU in the current 15 minute + interval." + ::= { ds1CurrentEntry 4 } + + ds1CurrentUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the current 15 minute interval." + ::= { ds1CurrentEntry 5 } + + ds1CurrentCSSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Controlled Slip Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the current 15 minute interval." + ::= { ds1CurrentEntry 6 } + + ds1CurrentBPVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Bipolar + Violations, as defined by ANSI Draft Standard + T1M1.3/90 - 027R2[15], encountered by a DS1 CSU in + the current 15 minute interval." + ::= { ds1CurrentEntry 7 } + + ds1CurrentCVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Code + Violation Error Events, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the current 15 minute interval. + + Note that D4 and G.704 (section 2.1.3.2) + interfaces do not support Code Violation Error + Events. Accordingly, such agents may treat this + object as having an ACCESS clause value of not- + accessible." + ::= { ds1CurrentEntry 8 } + + + -- the DS1 Total group + + -- Implementation of this group is mandatory for all systems + -- that attach to a ds1. + + -- It is recognized that some currently deployed CSUs do not + -- record the entire set of statistics specified in this + -- group. Accordingly, some agents queried for these objects + -- may treat these objects as having an ACCESS clause value + -- of not-accessible. + + -- The DS1 Total Table contains the cumulative sum of the + -- various statistics for the 24 hour interval preceding the + -- first valid interval in the ds1CurrentTable. + + ds1TotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds1TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Total table. 24 hour interval." + ::= { ds1 4 } + + ds1TotalEntry OBJECT-TYPE + SYNTAX Ds1TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Total table." + INDEX { ds1TotalIndex } + ::= { ds1TotalTable 1 } + + Ds1TotalEntry ::= + SEQUENCE { + ds1TotalIndex + INTEGER, + ds1TotalESs + Counter, + ds1TotalSESs + Counter, + ds1TotalSEFSs + Counter, + ds1TotalUASs + Counter, + ds1TotalCSSs + Counter, + ds1TotalBPVs + Counter, + ds1TotalCVs + Counter + } + + ds1TotalIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an ds1CSUIndex object instance." + ::= { ds1TotalEntry 1 } + + ds1TotalESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Errored + Seconds, as defined by ANSI Draft Standard + T1M1.3/90 - 027R2[15], encountered by a DS1 CSU in + the previous 24 hour interval" + ::= { ds1TotalEntry 2 } + + ds1TotalSESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the previous 24 hour interval." + ::= { ds1TotalEntry 3 } + + ds1TotalSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, as defined by + ANSI Draft Standard T1M1.3/90 - 027R2[15], + encountered by a DS1 CSU in the previous 24 hour + interval." + ::= { ds1TotalEntry 4 } + + ds1TotalUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the previous 24 hour interval." + ::= { ds1TotalEntry 5 } + + ds1TotalCSSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Controlled Slip Seconds, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the previous 24 hour interval." + ::= { ds1TotalEntry 6 } + + ds1TotalBPVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Bipolar + Violations, as defined by ANSI Draft Standard + T1M1.3/90 - 027R2[15], encountered by a DS1 CSU in + the previous 24 hour interval." + ::= { ds1TotalEntry 7 } + + ds1TotalCVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Code + Violation Error Events, as defined by ANSI Draft + Standard T1M1.3/90 - 027R2[15], encountered by a + DS1 CSU in the previous 24 hour interval. + + Note that D4 and G.704 (section 2.1.3.2) + interfaces do not support Code Violation Error + Events. Accordingly, such agents may treat this + object as having an ACCESS clause value of not- + accessible." + ::= { ds1TotalEntry 8 } + + + -- the DS1 Fractional group + + -- Implementation of this group is mandatory for those + -- systems utilizing a fractional DS1 capability + + + -- The DS1 fractional table contains identifies which DS1 + -- channels associated with a CSU are being used to support a + -- logical interface, i.e., an entry in the interfaces table + -- from the Internet-standard MIB. For Clear Channel + -- implementations, exactly one ifTable entry corresponds to + -- the CSU being managed. In this very typical case, the + -- variable ds1Index indicates the value of ifIndex which + -- corresponds to the interface being supported by a + -- particular CSU. + + -- However, for fractional DS1 implementations, the + -- correspondent value of ds1Index is 0, and for each DS1 + -- channel supporting a logical interface, there is an entry + -- in the DS1 fractional table which names a value for + -- ifIndex. + -- + -- For ds1ESF, ds1D4, and ds1ANSI-ESF, there are 24 legal + -- channels, numbered 1 through 24. + -- + -- For G.704, there are 32 legal channels, numbered 1 + -- through 32. ds1G704 can carry user data in channels 2 + -- through 32, channel 1 being an overhead channel. + -- ds1G704-CRC can carry user data in channels 2 through + -- 16 and 18 through 32, channels 1 and 17 being overhead + -- channels. + + ds1FracTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds1FracEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Fractional table." + ::= { ds1 5 } + + ds1FracEntry OBJECT-TYPE + SYNTAX Ds1FracEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Fractional table." + INDEX { ds1FracIndex, ds1FracNumber } + ::= { ds1FracTable 1 } + + Ds1FracEntry ::= + SEQUENCE { + ds1FracIndex + INTEGER, + ds1FracNumber + INTEGER (1..32), + ds1FracIfIndex + INTEGER + } + + ds1FracIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an ds1CSUIndex object instance." + ::= { ds1FracEntry 1 } + + ds1FracNumber OBJECT-TYPE + SYNTAX INTEGER (1..32) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number for this entry." + ::= { ds1FracEntry 2 } + + ds1FracIfIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index value that uniquely identifies an + interface to a ds1. The interface identified by a + particular value of this index is the same + interface as identified by the same value an + ifIndex object instance." + ::= { ds1FracEntry 3 } + + END + diff --git a/pandora_console/attachment/mibs/RFC1233-MIB b/pandora_console/attachment/mibs/RFC1233-MIB new file mode 100644 index 0000000000..4334119f11 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1233-MIB @@ -0,0 +1,729 @@ +-- Changes for RFC1233 (DS3 MIB): +-- Changes from RFC-1239 applied which include: +-- removing import of experimental, +-- adding import of transmission, changing +-- ds3 to be { transmission 30 } +-- instead of { experimental 15 } +-- Changed defintions and references from "DS3" to "Ds3" for +-- the following: DS3ConfigEntry, DS3IntervalEntry, +-- DS3CurrentEntry, DS3TotalEntry +-- Question: should the description for ds3SendCode say +-- "DS3" instead of "DS1"? +-- dperkins@scruznet.com + + RFC1233-MIB DEFINITIONS ::= BEGIN + + -- RFC1233 + -- May 91 + + IMPORTS + Counter + FROM RFC1155-SMI + DisplayString, transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + + -- this is the MIB module for the DS3 objects + + ds3 OBJECT IDENTIFIER ::= { transmission 30 } + + -- the DS3 Configuration group + + -- Although the objects in this group are read-only, at + -- the agent's discretion they may be made read-write + -- so that the management station, when appropriately + -- authorized, may change the behavior of the CSU, + -- e.g., to place the device into a loopback state. + + -- Implementation of this group is mandatory for all + -- systems that attach to a DS3 Interface. + + ds3ConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds3ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Ds3 Configuration table." + ::= { ds3 1 } + + ds3ConfigEntry OBJECT-TYPE + SYNTAX Ds3ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Ds3 Configuration table." + INDEX { ds3CSUIndex } + ::= { ds3ConfigTable 1 } + + Ds3ConfigEntry ::= + SEQUENCE { + ds3CSUIndex + INTEGER, + ds3Index + INTEGER, + ds3TimeElapsed + INTEGER (1..900), + ds3ValidIntervals + INTEGER (0..96), + ds3LineType + INTEGER, + ds3ZeroCoding + INTEGER, + ds3Loopback + INTEGER, + ds3SendCode + INTEGER, + ds3YellowAlarm + INTEGER, + ds3RedAlarm + INTEGER, + ds3CircuitIdentifier + DisplayString (SIZE (0..255)) + } + + ds3CSUIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + CSU to which this entry is applicable." + ::= { ds3ConfigEntry 1 } + + ds3Index OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index value that uniquely identifies a DS3 + Interface. The interface identified by a + particular value of this index is the same + interface as identified by the same value an + ifIndex object instance." + ::= { ds3ConfigEntry 2 } + + ds3TimeElapsed OBJECT-TYPE + SYNTAX INTEGER (1..900) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds, including partial + seconds, that have elapsed since the beginning of + the current error-measurement period." + ::= { ds3ConfigEntry 3 } + + ds3ValidIntervals OBJECT-TYPE + SYNTAX INTEGER (0..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of previous intervals for which valid + data was collected. The value will be 96 unless + the CSU device was brought online within the last + 24 hours, in which case the value will be the + number of complete 15 minute intervals the CSU has + been online." + ::= { ds3ConfigEntry 4 } + + ds3LineType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + ds3M23(2), + ds3SYNTRAN(3), + ds3CbitParity(4), + ds3ClearChannel(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the variety of DS3 C-bit + application implementing this circuit. The type + of circuit affects the interpretation of the usage + and error statistics. The rate of all of them is + 44.736 Mbps. + + The values, in sequence, describe: + TITLE: SPECIFICATION: + ds3M23 ANSI T1.107-1988 [10] + ds3SYNTRAN ANSI T1.107-1988 [10] + ds3C-bitParity ANSI T1.107a-1989 [10a] + ds3ClearChannel ANSI T1.102-1987 [9] + " + ::= { ds3ConfigEntry 5 } + + ds3ZeroCoding OBJECT-TYPE + SYNTAX INTEGER { + ds3other(1), + ds3B3ZS(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable describes the variety of Zero Code + Suppression used on the link, which in turn + affects a number of its characteristics. + ds3B3ZS refers to the use of specified patterns of + normal bits and bipolar violations which are used + to replace sequences of zero bits of a specified + length." + ::= { ds3ConfigEntry 6 } + + ds3Loopback OBJECT-TYPE + SYNTAX INTEGER { + ds3NoLoop(1), + ds3LocalLoopbackLocalSide(2), + ds3LocalLoopbackRemoteSide(3), + ds3RemoteLoopbackLocalSide(4), + ds3RemoteLoopbackRemoteSide(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable represents the loopback state of + the CSU. Devices supporting read/write access + should return badValue in response to a requested + loopback state that the CSU does not support. The + values mean: + + ds3NoLoop + Not in the loopback state. A device that is + not capable of performing a loopback on + either interface shall always return this as + it's value. + + ds3LocalLoopbackLocalSide + Signal received from the local side of the + device is looped back at the local connector + (eg, without involving the CSU). + + ds3LocalLoopbackRemoteSide + Signal received from the local side of the + device is looped back at the remote connector + (eg, through the CSU). + + ds3RemoteLoopbackLocalSide + Signal received from the remote side of the + device is looped back at the local connector + (eg, through the CSU). + + ds3RemoteLoopbackRemoteSide + Signal received from the remote side of the + device is looped back at the remote connector + (eg, without involving the CSU). + + Note that M23 and ClearChannel interfaces do not + support the Loopback managed object." + ::= { ds3ConfigEntry 7 } + + + ds3SendCode OBJECT-TYPE + SYNTAX INTEGER { + ds3SendTestMessage(1), + ds3SendNoCode(2), + ds3SendSetCode(3), + ds3SendLoopbackCode(4), + ds3SendResetCode(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates what type of code is + being sent across the DS1 circuit by the CSU. The + values mean: + + ds3SendNoCode + sending looped or normal data + + ds3SendSetCode + sending a loopback request + + ds3SendLoopbackCode + sending the code to choose a specific + loopback + + ds3SendResetCode + sending a loopback termination request + + ds3SendTestMessage + sending a Test pattern as defined in + T1.107a-1989 [10a]. + " + ::= { ds3ConfigEntry 8 } + + ds3YellowAlarm OBJECT-TYPE + SYNTAX INTEGER { + ds3YellowAlarm(1), + ds3NoYellowAlarm(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates if a Yellow + Alarm condition exists." + ::= { ds3ConfigEntry 9 } + + ds3RedAlarm OBJECT-TYPE + SYNTAX INTEGER { + ds3RedAlarm(1), + ds3NoRedAlarm(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates if a Red Alarm + condition exists." + ::= { ds3ConfigEntry 10 } + + ds3CircuitIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable contains the transmission + vendor's circuit identifier, for the + purpose of facilitating troubleshooting." + ::= { ds3ConfigEntry 11 } + + + -- the DS3 Interval group + + -- Implementation of this group is mandatory for all + -- systems that attach to a DS3 interface. + + -- The DS3 Interval Table contains various statistics + -- collected by each CSU over the previous 24 hours of + -- operation. The past 24 hours are broken into 96 + -- completed 15 minute intervals. + + ds3IntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds3IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Interval table." + ::= { ds3 2 } + + ds3IntervalEntry OBJECT-TYPE + SYNTAX Ds3IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Interval table." + INDEX { ds3IntervalIndex, ds3IntervalNumber } + ::= { ds3IntervalTable 1 } + + Ds3IntervalEntry ::= + SEQUENCE { + ds3IntervalIndex + INTEGER, + ds3IntervalNumber + INTEGER (1..96), + ds3IntervalESs + Counter, + ds3IntervalSESs + Counter, + ds3IntervalSEFSs + Counter, + ds3IntervalUASs + Counter, + ds3IntervalCSSs + Counter, + ds3IntervalBPVs + Counter, + ds3IntervalCVs + Counter + } + + ds3IntervalIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + CSU to which this entry is applicable. The + interface identified by a particular value of + this index is the same interface as identified + by the same value an DS3CSUIndex object + instance." + ::= { ds3IntervalEntry 1 } + + ds3IntervalNumber OBJECT-TYPE + SYNTAX INTEGER (1..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number between 1 and 96, where 1 is the most + recently completed 15 minute interval and 96 is + the least recently completed 15 minutes + interval (assuming that all 96 intervals are + valid)." + ::= { ds3IntervalEntry 2 } + + + ds3IntervalESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Errored Seconds, as defined by [12], encountered + by a DS3 CSU in one of the previous 96, + individual 15 minute, intervals." + ::= { ds3IntervalEntry 3 } + + ds3IntervalSESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Seconds, as defined by [12], + encountered by a DS3 CSU in one of the previous + 96, individual 15 minute, intervals." + ::= { ds3IntervalEntry 4 } + + ds3IntervalSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, as defined by + [12], encountered by a DS3 CSU in one of the + previous 96, individual 15 minute, intervals." + ::= { ds3IntervalEntry 5 } + + ds3IntervalUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by [12], + encountered by a DS3 CSU in one of the previous + 96, individual 15 minute, intervals." + ::= { ds3IntervalEntry 6 } + + ds3IntervalCSSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Controlled Slip Seconds, as defined by [12], + encountered by a DS3 CSU in one of the previous + 96, individual 15 minute, intervals. + + Note that SYNTRAN interfaces are the only + interfaces that support the Controlled Slip + Seconds managed object. Accordingly, agents + configured with non-SYNTRAN interfaces may treat + this object as having an ACCESS clause value of + not-accessible." + ::= { ds3IntervalEntry 7} + + ds3IntervalBPVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Bipolar + Violations, as defined by [12], encountered by a + DS3 CSU in one of the previous 96, individual 15 + minute, intervals." + ::= { ds3IntervalEntry 8 } + + ds3IntervalCVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Coding + Violations, as defined by [12], encountered by a + DS3 CSU in one of the previous 96, individual 15 + minute, intervals." + ::= { ds3IntervalEntry 9 } + + + -- the DS3 Current group + + -- Implementation of this group is mandatory for all systems + -- that attach to a DS3 Interface. + + -- The DS3 current table contains various statistics being + -- collected for the current 15 minute interval. + + + ds3CurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds3CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Current table." + ::= { ds3 3 } + + ds3CurrentEntry OBJECT-TYPE + SYNTAX Ds3CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Current table." + INDEX { ds3CurrentIndex } + ::= { ds3CurrentTable 1 } + + Ds3CurrentEntry ::= + SEQUENCE { + ds3CurrentIndex + INTEGER, + ds3CurrentESs + Counter, + ds3CurrentSESs + Counter, + ds3CurrentSEFSs + Counter, + ds3CurrentUASs + Counter, + ds3CurrentCSSs + Counter, + ds3CurrentBPVs + Counter, + ds3CurrentCVs + Counter + } + + ds3CurrentIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an DS3CSUIndex object instance." + ::= { ds3CurrentEntry 1 } + + ds3CurrentESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Errored + Seconds, as defined by [12], encountered by a DS3 + CSU in the current 15 minute interval." + ::= { ds3CurrentEntry 2 } + + ds3CurrentSESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Seconds, as defined by [12], + encountered by a DS3 CSU in the current 15 minute + interval." + ::= { ds3CurrentEntry 3 } + + ds3CurrentSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, as defined by + [12], encountered by a DS3 CSU in the current 15 + minute interval." + ::= { ds3CurrentEntry 4 } + + ds3CurrentUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by [12], + encountered by a DS3 CSU in the current 15 minute + interval." + ::= { ds3CurrentEntry 5 } + + ds3CurrentCSSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Controlled Slip Seconds, as defined by [12], + encountered by a DS3 CSU in the current 15 minute + interval. + + Note that SYNTRAN interfaces are the only + interfaces that support the Controlled Slip + Seconds managed object. Accordingly, agents + configured with non-SYNTRAN interfaces may treat + this object as having an ACCESS clause value of + not-accessible." + ::= { ds3CurrentEntry 6 } + + ds3CurrentBPVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Bipolar + Violations, as defined by [12], encountered by a + DS3 CSU in the current 15 minute interval." + ::= { ds3CurrentEntry 7} + + ds3CurrentCVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Coding + Violations, as defined by [12], encountered by a + DS3 CSU in the current 15 minute interval." + ::= { ds3CurrentEntry 8 } + + + -- the DS3 Total group + + -- Implementation of this group is mandatory for all systems + -- that attach to a DS3. + + -- The DS3 Total Table contains the cumulative sum of the + -- various statistics for the 24 hour interval preceding the + -- first valid interval in the DS3CurrentTable. + + ds3TotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Ds3TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Total table. 24 hour interval." + ::= { ds3 4 } + + ds3TotalEntry OBJECT-TYPE + SYNTAX Ds3TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Total table." + INDEX { ds3TotalIndex } + ::= { ds3TotalTable 1 } + + Ds3TotalEntry ::= + SEQUENCE { + ds3TotalIndex + INTEGER, + ds3TotalESs + Counter, + ds3TotalSESs + Counter, + ds3TotalSEFSs + Counter, + ds3TotalUASs + Counter, + ds3TotalCSSs + Counter, + ds3TotalBPVs + Counter, + ds3TotalCVs + Counter + } + + ds3TotalIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the CSU + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an DS3CSUIndex object instance." + ::= { ds3TotalEntry 1 } + + ds3TotalESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Errored + Seconds, as defined by [12], encountered by a DS3 + CSU in the previous 24 hour interval." + ::= { ds3TotalEntry 2 } + + ds3TotalSESs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Seconds, as defined by [12], + encountered by a DS3 CSU in the previous 24 hour + interval." + ::= { ds3TotalEntry 3 } + + ds3TotalSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, as defined by + [12], encountered by a DS3 CSU in the previous 24 + hour interval." + ::= { ds3TotalEntry 4 } + + ds3TotalUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by [12], + encountered by a DS3 CSU in the previous 24 hour + interval." + ::= { ds3TotalEntry 5 } + + ds3TotalCSSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Controlled Slip Seconds, as defined by [12], + encountered by a DS3 CSU in the previous 24 hour + interval. + Note that SYNTRAN interfaces are the only + interfaces that support the Controlled Slip + Seconds managed object. Accordingly, agents + configured with non-SYNTRAN interfaces may treat + this object as having an ACCESS clause value of + not-accessible." + ::= { ds3TotalEntry 6 } + + ds3TotalBPVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Bipolar + Violations, as defined by [12], encountered by a + DS3 CSU in the previous 24 hour interval." + ::= { ds3TotalEntry 7 } + + ds3TotalCVs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Coding + Violations, as defined by [12], encountered by a + DS3 CSU in the previous 24 hour interval." + ::= { ds3TotalEntry 8 } + + END + diff --git a/pandora_console/attachment/mibs/RFC1253-MIB b/pandora_console/attachment/mibs/RFC1253-MIB new file mode 100644 index 0000000000..4d2acb5204 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1253-MIB @@ -0,0 +1,1608 @@ +-- Changes to rfc1253 (OSPF MIB): +-- Changed ospfAreaID in index clause for ospfAreaEntry to +-- ospfAreaId. +-- Changed ospfLSACount in definition for sequence OspfAreaEntry +-- to ospfAreaLSACount. +-- Suggestion: the DEFVAL clauses should be removed from +-- the objects that are counters. Some objects that +-- are gauges should probably not have DEFVAL clauses. +-- dperkins@scruznet.com + + RFC1253-MIB DEFINITIONS ::= BEGIN + + -- RFC1253 + -- August 91 + + IMPORTS + Counter, Gauge, IpAddress + FROM RFC1155-SMI + mib-2 + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- This MIB module uses the extended OBJECT-TYPE macro as + -- defined in [9]. + + ospf OBJECT IDENTIFIER ::= { mib-2 14 } + + -- The Area ID, in OSPF, has the same format as an IP Address, + -- but has the function of defining a summarization point for + -- Link State Advertisements + + AreaID ::= IpAddress + + -- The Router ID, in OSPF, has the same format as an IP Address, + -- but identifies the router independent of its IP Address. + + RouterID ::= IpAddress + + -- The OSPF Metric is defined as an unsigned value in the range + + Metric ::= INTEGER (1..'FFFF'h) + BigMetric ::= INTEGER (1..'FFFFFF'h) + + -- Boolean Values + + TruthValue ::= INTEGER { true (1), false (2) } + + -- Status Values + + Status ::= INTEGER { enabled (1), disabled (2) } + + -- Row Creation/Deletion Values + + Validation ::= INTEGER { valid (1), invalid (2) } + + -- Time Durations measured in seconds + + PositiveInteger ::= INTEGER (1..'FFFFFFFF'h) + HelloRange ::= INTEGER (1..'FFFF'h) + UpToMaxAge ::= INTEGER (1..3600) + + -- The range of ifIndex, i.e. (1..ifNumber) + + InterfaceIndex ::= INTEGER + + -- Potential Priorities for the Designated Router Election + + DesignatedRouterPriority ::= INTEGER (0..'FF'h) + + -- Type of Service is defined as a mapping to the IP Type of + -- Service Flags as defined in the Router Requirements + -- Document: + -- + -- D => Low Delay R => Reliable Route + -- T => High Bandwidth + + -- D T R TOS D T R TOS + -- 0 0 0 => 0 0 0 1 => 4 + -- 0 1 0 => 8 0 1 1 => 12 + -- 1 0 0 => 16 1 0 1 => 20 + -- 1 1 0 => 24 1 1 1 => 28 + + -- The remaining values are left for future definition. + + TOSType ::= INTEGER (0..31) + + -- OSPF General Variables + + -- These parameters apply globally to the Router's + -- OSPF Process. + + ospfGeneralGroup OBJECT IDENTIFIER ::= { ospf 1 } + + ospfRouterId OBJECT-TYPE + SYNTAX RouterID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A 32-bit integer uniquely identifying the router in + the Autonomous System. + + By convention, to ensure uniqueness, this should + default to the value of one of the router's IP + interface addresses." + REFERENCE + "OSPF Version 2, C.1 Global parameters" + ::= { ospfGeneralGroup 1 } + + ospfAdminStat OBJECT-TYPE + SYNTAX Status + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The administrative status of OSPF in the router. The + value 'enabled' denotes that the OSPF Process is active + on at least one interface; 'disabled' disables it on + all interfaces." + ::= { ospfGeneralGroup 2 } + + ospfVersionNumber OBJECT-TYPE + SYNTAX INTEGER { version2 (2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current version number of the OSPF protocol is 2." + REFERENCE + "OSPF Version 2, Title" + ::= { ospfGeneralGroup 3 } + + ospfAreaBdrRtrStatus OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A flag to note whether this router is an area border + router." + REFERENCE + "OSPF Version 2, Section 3 Splitting the AS into Areas" + ::= { ospfGeneralGroup 4 } + + ospfASBdrRtrStatus OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A flag to note whether this router is an Autonomous + System border router." + REFERENCE + "OSPF Version 2, Section 3.3 Classification of routers" + ::= { ospfGeneralGroup 5 } + + ospfExternLSACount OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of external (LS type 5) link-state + advertisements in the link-state database." + REFERENCE + "OSPF Version 2, Appendix A.4.5 AS external link + advertisements" + ::= { ospfGeneralGroup 6 } + + ospfExternLSACksumSum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The 32-bit unsigned sum of the LS checksums of the + external link-state advertisements contained in the + link-state database. This sum can be used to determine + if there has been a change in a router's link state + database, and to compare the link-state database of two + routers." + ::= { ospfGeneralGroup 7 } + + ospfTOSSupport OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The router's support for type-of-service routing." + REFERENCE + "OSPF Version 2, Appendix F.1.2 Optional TOS support" + ::= { ospfGeneralGroup 8 } + + ospfOriginateNewLSAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of new link-state advertisements that have + been originated. This number is incremented each time + the router originates a new LSA." + ::= { ospfGeneralGroup 9 } + + ospfRxNewLSAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of link-state advertisements received + determined to be new instantiations. This number does + not include newer instantiations of self-originated + link-state advertisements." + ::= { ospfGeneralGroup 10 } + + + -- The OSPF Area Data Structure contains information + -- regarding the various areas. The interfaces and + -- virtual links are configured as part of these areas. + -- Area 0.0.0.0, by definition, is the Backbone Area + + ospfAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfAreaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information describing the configured parameters and + cumulative statistics of the router's attached areas." + REFERENCE + "OSPF Version 2, Section 6 The Area Data Structure" + ::= { ospf 2 } + + ospfAreaEntry OBJECT-TYPE + SYNTAX OspfAreaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information describing the configured parameters and + cumulative statistics of one of the router's attached + areas." + INDEX { ospfAreaId } + ::= { ospfAreaTable 1 } + + OspfAreaEntry ::= + SEQUENCE { + ospfAreaId + AreaID, + ospfAuthType + INTEGER, + ospfImportASExtern + TruthValue, + ospfSpfRuns + Counter, + ospfAreaBdrRtrCount + Gauge, + ospfASBdrRtrCount + Gauge, + ospfAreaLSACount + Gauge, + ospfAreaLSACksumSum + INTEGER + } + + ospfAreaId OBJECT-TYPE + SYNTAX AreaID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A 32-bit integer uniquely identifying an area. Area + ID 0.0.0.0 is used for the OSPF backbone." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaEntry 1 } + + ospfAuthType OBJECT-TYPE + SYNTAX INTEGER + -- none (0), + -- simplePassword (1) + -- reserved for specification by IANA (> 1) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The authentication type specified for an area. + Additional authentication types may be assigned locally + on a per Area basis." + REFERENCE + "OSPF Version 2, Appendix E Authentication" + DEFVAL { 0 } -- no authentication, by default + ::= { ospfAreaEntry 2 } + + ospfImportASExtern OBJECT-TYPE + SYNTAX TruthValue + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The area's support for importing AS external link- + state advertisements." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + DEFVAL { true } + ::= { ospfAreaEntry 3 } + + ospfSpfRuns OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times that the intra-area route table + has been calculated using this area's link-state + database. This is typically done using Dijkstra's + algorithm." + DEFVAL { 0 } + ::= { ospfAreaEntry 4 } + + ospfAreaBdrRtrCount OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of area border routers reachable + within this area. This is initially zero, and is + calculated in each SPF Pass." + DEFVAL { 0 } + ::= { ospfAreaEntry 5 } + + ospfASBdrRtrCount OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of Autonomous System border routers + reachable within this area. This is initially zero, + and is calculated in each SPF Pass." + DEFVAL { 0 } + ::= { ospfAreaEntry 6 } + + ospfAreaLSACount OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of link-state advertisements in this + area's link-state database, excluding AS External + LSA's." + DEFVAL { 0 } + ::= { ospfAreaEntry 7 } + + ospfAreaLSACksumSum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The 32-bit unsigned sum of the link-state + advertisements' LS checksums contained in this area's + link-state database. This sum excludes external (LS + type 5) link-state advertisements. The sum can be used + to determine if there has been a change in a router's + link state database, and to compare the link-state + database of two routers." + DEFVAL { 0 } + ::= { ospfAreaEntry 8 } + + + -- OSPF Area Default Metric Table + + -- The OSPF Area Default Metric Table describes the metrics + -- that a default Area Border Router will advertise into a + -- Stub area. + + ospfStubAreaTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfStubAreaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The set of metrics that will be advertised by a + default Area Border Router into a stub area." + REFERENCE + "OSPF Version 2, Appendix C.2, Area Parameters" + ::= { ospf 3 } + + ospfStubAreaEntry OBJECT-TYPE + SYNTAX OspfStubAreaEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The metric for a given Type of Service that will be + advertised by a default Area Border Router into a stub + area." + REFERENCE + "OSPF Version 2, Appendix C.2, Area Parameters" + INDEX { ospfStubAreaID, ospfStubTOS } + ::= { ospfStubAreaTable 1 } + + OspfStubAreaEntry ::= + SEQUENCE { + ospfStubAreaID + AreaID, + ospfStubTOS + TOSType, + ospfStubMetric + BigMetric, + ospfStubStatus + Validation + } + + ospfStubAreaID OBJECT-TYPE + SYNTAX AreaID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The 32 bit identifier for the Stub Area. On creation, + this can be derived from the instance." + ::= { ospfStubAreaEntry 1 } + + ospfStubTOS OBJECT-TYPE + SYNTAX TOSType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Type of Service associated with the metric. On + creation, this can be derived from the instance." + + ::= { ospfStubAreaEntry 2 } + + ospfStubMetric OBJECT-TYPE + SYNTAX BigMetric + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The metric value applied at the indicated type of + service. By default, this equals the least metric at + the type of service among the interfaces to other + areas." + ::= { ospfStubAreaEntry 3 } + + ospfStubStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable displays the validity or invalidity of + the entry. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect (row + removal) is implementation dependent." + DEFVAL { valid } + ::= { ospfStubAreaEntry 4 } + + + -- OSPF Link State Database + + -- The Link State Database contains the Link State + -- Advertisements from throughout the areas that the + -- device is attached to. + + ospfLsdbTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfLsdbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The OSPF Process's Links State Database." + REFERENCE + "OSPF Version 2, Section 12 Link State Advertisements" + ::= { ospf 4 } + + ospfLsdbEntry OBJECT-TYPE + SYNTAX OspfLsdbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A single Link State Advertisement." + INDEX { ospfLsdbAreaId, ospfLsdbType, + ospfLsdbLSID, ospfLsdbRouterId } + ::= { ospfLsdbTable 1 } + + OspfLsdbEntry ::= + SEQUENCE { + ospfLsdbAreaId + AreaID, + ospfLsdbType + INTEGER, + ospfLsdbLSID + IpAddress, + ospfLsdbRouterId + RouterID, + ospfLsdbSequence + INTEGER, + ospfLsdbAge + INTEGER, + ospfLsdbChecksum + INTEGER, + ospfLsdbAdvertisement + OCTET STRING + } + + ospfLsdbAreaId OBJECT-TYPE + SYNTAX AreaID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The 32 bit identifier of the Area from which the LSA + was received." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfLsdbEntry 1 } + + ospfLsdbType OBJECT-TYPE + SYNTAX INTEGER { + routerLink (1), + networkLink (2), + summaryLink (3), + asSummaryLink (4), + asExternalLink (5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the link state advertisement. Each link + state type has a separate advertisement format." + REFERENCE + "OSPF Version 2, Appendix A.4.1 The Link State + Advertisement header" + ::= { ospfLsdbEntry 2 } + + ospfLsdbLSID OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Link State ID is an LS Type Specific field + containing either a Router ID or an IP Address; it + identifies the piece of the routing domain that is + being described by the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.4 Link State ID" + ::= { ospfLsdbEntry 3 } + + ospfLsdbRouterId OBJECT-TYPE + SYNTAX RouterID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The 32 bit number that uniquely identifies the + originating router in the Autonomous System." + REFERENCE + "OSPF Version 2, Appendix C.1 Global parameters" + ::= { ospfLsdbEntry 4 } + + -- Note that the OSPF Sequence Number is a 32 bit signed + -- integer. It starts with the value '80000001'h, + -- or -'7FFFFFFF'h, and increments until '7FFFFFFF'h + -- Thus, a typical sequence number will be very negative. + + ospfLsdbSequence OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The sequence number field is a signed 32-bit integer. + It is used to detect old and duplicate link state + advertisements. The space of sequence numbers is + linearly ordered. The larger the sequence number the + more recent the advertisement." + REFERENCE + "OSPF Version 2, Section 12.1.6 LS sequence number" + ::= { ospfLsdbEntry 5 } + + ospfLsdbAge OBJECT-TYPE + SYNTAX INTEGER -- Should be 0..MaxAge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field is the age of the link state advertisement + in seconds." + REFERENCE + "OSPF Version 2, Section 12.1.1 LS age" + ::= { ospfLsdbEntry 6 } + + ospfLsdbChecksum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This field is the checksum of the complete contents of + the advertisement, excepting the age field. The age + field is excepted so that an advertisement's age can be + incremented without updating the checksum. The + checksum used is the same that is used for ISO + connectionless datagrams; it is commonly referred to as + the Fletcher checksum." + REFERENCE + "OSPF Version 2, Section 12.1.7 LS checksum" + ::= { ospfLsdbEntry 7 } + + ospfLsdbAdvertisement OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The entire Link State Advertisement, including its + header." + REFERENCE + "OSPF Version 2, Section 12 Link State Advertisements" + ::= { ospfLsdbEntry 8 } + + + -- Address Range Table + + -- The Address Range Table acts as an adjunct to the Area + -- Table; It describes those Address Range Summaries that + -- are configured to be propagated from an Area to reduce + -- the amount of information about it which is known beyond + -- its borders. + + ospfAreaRangeTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfAreaRangeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A range if IP addresses specified by an IP address/IP + network mask pair. For example, class B address range + of X.X.X.X with a network mask of 255.255.0.0 includes + all IP addresses from X.X.0.0 to X.X.255.255" + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospf 5 } + + ospfAreaRangeEntry OBJECT-TYPE + SYNTAX OspfAreaRangeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A range if IP addresses specified by an IP address/IP + network mask pair. For example, class B address range + of X.X.X.X with a network mask of 255.255.0.0 includes + all IP addresses from X.X.0.0 to X.X.255.255" + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + INDEX { ospfAreaRangeAreaID, ospfAreaRangeNet } + ::= { ospfAreaRangeTable 1 } + + OspfAreaRangeEntry ::= + SEQUENCE { + ospfAreaRangeAreaID + AreaID, + ospfAreaRangeNet + IpAddress, + ospfAreaRangeMask + IpAddress, + ospfAreaRangeStatus + Validation + } + + ospfAreaRangeAreaID OBJECT-TYPE + SYNTAX AreaID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Area the Address Range is to be found within." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaRangeEntry 1 } + + ospfAreaRangeNet OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP Address of the Net or Subnet indicated by the + range." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaRangeEntry 2 } + + ospfAreaRangeMask OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Subnet Mask that pertains to the Net or Subnet." + REFERENCE + "OSPF Version 2, Appendix C.2 Area parameters" + ::= { ospfAreaRangeEntry 3 } + + ospfAreaRangeStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable displays the validity or invalidity of + the entry. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect (row + removal) is implementation dependent." + DEFVAL { valid } + ::= { ospfAreaRangeEntry 4 } + + + -- OSPF Host Table + + -- The Host/Metric Table indicates what hosts are directly + -- attached to the Router, and what metrics and types of + -- service should be advertised for them. + + ospfHostTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfHostEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The list of Hosts, and their metrics, that the router + will advertise as host routes." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parameters" + ::= { ospf 6 } + + ospfHostEntry OBJECT-TYPE + SYNTAX OspfHostEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A metric to be advertised, for a given type of service, + when a given host is reachable." + INDEX { ospfHostIpAddress, ospfHostTOS } + ::= { ospfHostTable 1 } + + OspfHostEntry ::= + SEQUENCE { + ospfHostIpAddress + IpAddress, + ospfHostTOS + TOSType, + ospfHostMetric + Metric, + ospfHostStatus + Validation + } + + ospfHostIpAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP Address of the Host." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parameters" + ::= { ospfHostEntry 1 } + + ospfHostTOS OBJECT-TYPE + SYNTAX TOSType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Type of Service of the route being configured." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parameters" + ::= { ospfHostEntry 2 } + + ospfHostMetric OBJECT-TYPE + SYNTAX Metric + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Metric to be advertised." + REFERENCE + "OSPF Version 2, Appendix C.6 Host route parameters" + ::= { ospfHostEntry 3 } + + ospfHostStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable displays the validity or invalidity of + the entry. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect (row + removal) is implementation dependent." + DEFVAL { valid } + ::= { ospfHostEntry 4 } + + -- OSPF Interface Table + + -- The OSPF Interface Table augments the ifTable with OSPF + -- specific information. + + ospfIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfIfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The OSPF Interface Table describes the interfaces from + the viewpoint of OSPF." + REFERENCE + "OSPF Version 2, Appendix C.3 Router interface + parameters" + ::= { ospf 7 } + + ospfIfEntry OBJECT-TYPE + SYNTAX OspfIfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The OSPF Interface Entry describes one interface from + the viewpoint of OSPF." + INDEX { ospfIfIpAddress, ospfAddressLessIf } + ::= { ospfIfTable 1 } + + OspfIfEntry ::= + SEQUENCE { + ospfIfIpAddress + IpAddress, + ospfAddressLessIf + INTEGER, + ospfIfAreaId + AreaID, + ospfIfType + INTEGER, + ospfIfAdminStat + Status, + ospfIfRtrPriority + DesignatedRouterPriority, + ospfIfTransitDelay + UpToMaxAge, + ospfIfRetransInterval + UpToMaxAge, + ospfIfHelloInterval + HelloRange, + ospfIfRtrDeadInterval + PositiveInteger, + ospfIfPollInterval + PositiveInteger, + ospfIfState + INTEGER, + ospfIfDesignatedRouter + IpAddress, + ospfIfBackupDesignatedRouter + IpAddress, + ospfIfEvents + Counter, + ospfIfAuthKey + OCTET STRING + } + + ospfIfIpAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP address of this OSPF interface." + ::= { ospfIfEntry 1 } + + ospfAddressLessIf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For the purpose of easing the instancing of addressed + and addressless interfaces; This variable takes the + value 0 on interfaces with IP Addresses, and the + corresponding value of ifIndex for interfaces having no + IP Address." + ::= { ospfIfEntry 2 } + + ospfIfAreaId OBJECT-TYPE + SYNTAX AreaID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A 32-bit integer uniquely identifying the area to + which the interface connects. Area ID 0.0.0.0 is used + for the OSPF backbone." + DEFVAL { '00000000'h } -- 0.0.0.0 + ::= { ospfIfEntry 3 } + + ospfIfType OBJECT-TYPE + SYNTAX INTEGER { + broadcast (1), + nbma (2), + pointToPoint (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The OSPF interface type. + + By way of a default, this field may be intuited from + the corresponding value of ifType. Broadcast LANs, + such as Ethernet and IEEE 802.5, take the value + 'broadcast', X.25, Frame Relay, and similar + technologies take the value 'nbma', and links that are + definitively point to point take the value + 'pointToPoint'." + ::= { ospfIfEntry 4 } + + ospfIfAdminStat OBJECT-TYPE + SYNTAX Status + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The OSPF interface's administrative status. The value + 'enabled' denotes that neighbor relationships may be + formed on the interface, and the interface will be + advertised as an internal route to some area. The + value 'disabled' denotes that the interface is external + to OSPF." + DEFVAL { enabled } + ::= { ospfIfEntry 5 } + + ospfIfRtrPriority OBJECT-TYPE + SYNTAX DesignatedRouterPriority + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The priority of this interface. Used in multi-access + networks, this field is used in the designated router + election algorithm. The value 0 signifies that the + router is not eligible to become the designated router + on this particular network. In the event of a tie in + this value, routers will use their router id as a tie + breaker." + DEFVAL { 1 } + ::= { ospfIfEntry 6 } + + ospfIfTransitDelay OBJECT-TYPE + SYNTAX UpToMaxAge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The estimated number of seconds it takes to transmit a + link- state update packet over this interface." + DEFVAL { 1 } + ::= { ospfIfEntry 7 } + + ospfIfRetransInterval OBJECT-TYPE + SYNTAX UpToMaxAge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds between link-state advertisement + retransmissions, for adjacencies belonging to this + interface. This value is also used when retransmitting + database description and link-state request packets." + DEFVAL { 5 } + ::= { ospfIfEntry 8 } + + ospfIfHelloInterval OBJECT-TYPE + SYNTAX HelloRange + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The length of time, in seconds, between the Hello + packets that the router sends on the interface. This + value must be the same for all routers attached to a + common network." + DEFVAL { 10 } + ::= { ospfIfEntry 9 } + + ospfIfRtrDeadInterval OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds that a router's Hello packets + have not been seen before it's neighbors declare the + router down. This should be some multiple of the Hello + interval. This value must be the same for all routers + attached to a common network." + DEFVAL { 40 } + ::= { ospfIfEntry 10 } + + ospfIfPollInterval OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The larger time interval, in seconds, between the + Hello packets sent to an inactive non-broadcast multi- + access neighbor." + DEFVAL { 120 } + ::= { ospfIfEntry 11 } + + ospfIfState OBJECT-TYPE + SYNTAX INTEGER { + down (1), + loopback (2), + waiting (3), + pointToPoint (4), + designatedRouter (5), + backupDesignatedRouter (6), + otherDesignatedRouter (7) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The OSPF Interface State." + DEFVAL { down } + ::= { ospfIfEntry 12 } + + ospfIfDesignatedRouter OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP Address of the Designated Router." + DEFVAL { '00000000'h } -- 0.0.0.0 + ::= { ospfIfEntry 13 } + + ospfIfBackupDesignatedRouter OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP Address of the Backup Designated Router." + DEFVAL { '00000000'h } -- 0.0.0.0 + ::= { ospfIfEntry 14 } + + ospfIfEvents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this OSPF interface has changed + its state, or an error has occurred." + DEFVAL { 0 } + ::= { ospfIfEntry 15 } + + ospfIfAuthKey OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Authentication Key. If the Area's Authorization + Type is simplePassword, and the key length is shorter + than 8 octets, the agent will left adjust and zero fill + to 8 octets. + + When read, ospfIfAuthKey always returns an Octet String + of length zero." + REFERENCE + "OSPF Version 2, Section 9 The Interface Data + Structure" + DEFVAL { '0000000000000000'h } -- 0.0.0.0.0.0.0.0 + ::= { ospfIfEntry 16 } + + + -- OSPF Interface Metric Table + + -- The Metric Table describes the metrics to be advertised + -- for a specified interface at the various types of service. + -- As such, this table is an adjunct of the OSPF Interface + -- Table. + + -- Types of service, as defined by RFC 791, have the ability + -- to request low delay, high bandwidth, or reliable linkage. + + -- For the purposes of this specification, the measure of + -- bandwidth + + -- Metric = 10^8 / ifSpeed + + -- is the default value. For multiple link interfaces, note + -- that ifSpeed is the sum of the individual link speeds. + -- This yields a number having the following typical values: + + -- Network Type/bit rate Metric + + -- >= 100 MBPS 1 + -- Ethernet/802.3 10 + -- E1 48 + -- T1 (ESF) 65 + -- 64 KBPS 1562 + -- 56 KBPS 1785 + -- 19.2 KBPS 5208 + -- 9.6 KBPS 10416 + + -- Routes that are not specified use the default (TOS 0) metric + + ospfIfMetricTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfIfMetricEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The TOS metrics for a non-virtual interface identified + by the interface index." + REFERENCE + "OSPF Version 2, Appendix C.3 Router interface + parameters" + ::= { ospf 8 } + + ospfIfMetricEntry OBJECT-TYPE + SYNTAX OspfIfMetricEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A particular TOS metric for a non-virtual interface + identified by the interface index." + REFERENCE + "OSPF Version 2, Appendix C.3 Router interface + parameters" + INDEX { ospfIfMetricIpAddress, + ospfIfMetricAddressLessIf, + ospfIfMetricTOS } + ::= { ospfIfMetricTable 1 } + + OspfIfMetricEntry ::= + SEQUENCE { + ospfIfMetricIpAddress + IpAddress, + ospfIfMetricAddressLessIf + INTEGER, + ospfIfMetricTOS + TOSType, + ospfIfMetricMetric + Metric, + ospfIfMetricStatus + Validation + } + + ospfIfMetricIpAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP address of this OSPF interface. On row + creation, this can be derived from the instance." + ::= { ospfIfMetricEntry 1 } + + ospfIfMetricAddressLessIf OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For the purpose of easing the instancing of addressed + and addressless interfaces; This variable takes the + value 0 on interfaces with IP Addresses, and the value + of ifIndex for interfaces having no IP Address. On row + creation, this can be derived from the instance." + ::= { ospfIfMetricEntry 2 } + + ospfIfMetricTOS OBJECT-TYPE + SYNTAX TOSType + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of service metric being referenced. On row + creation, this can be derived from the instance." + ::= { ospfIfMetricEntry 3 } + + ospfIfMetricMetric OBJECT-TYPE + SYNTAX Metric + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The metric of using this type of service on this + interface. The default value of the TOS 0 Metric is + 10^8 / ifSpeed. + + The value FFFF is distinguished to mean 'no route via + this TOS'." + ::= { ospfIfMetricEntry 4 } + + ospfIfMetricStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable displays the validity or invalidity of + the entry. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect (row + removal) is implementation dependent." + DEFVAL { valid } + ::= { ospfIfMetricEntry 5 } + + + -- OSPF Virtual Interface Table + + -- The Virtual Interface Table describes the virtual + -- links that the OSPF Process is configured to + -- carry on. + + ospfVirtIfTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfVirtIfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about this router's virtual interfaces." + REFERENCE + "OSPF Version 2, Appendix C.4 Virtual link parameters" + ::= { ospf 9 } + + ospfVirtIfEntry OBJECT-TYPE + SYNTAX OspfVirtIfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a single Virtual Interface." + INDEX { ospfVirtIfAreaID, ospfVirtIfNeighbor } + ::= { ospfVirtIfTable 1 } + + OspfVirtIfEntry ::= + SEQUENCE { + ospfVirtIfAreaID + AreaID, + ospfVirtIfNeighbor + RouterID, + ospfVirtIfTransitDelay + UpToMaxAge, + ospfVirtIfRetransInterval + UpToMaxAge, + ospfVirtIfHelloInterval + HelloRange, + ospfVirtIfRtrDeadInterval + PositiveInteger, + ospfVirtIfState + INTEGER, + ospfVirtIfEvents + Counter, + ospfVirtIfAuthKey + OCTET STRING, + ospfVirtIfStatus + Validation + } + + ospfVirtIfAreaID OBJECT-TYPE + SYNTAX AreaID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Transit Area that the Virtual Link traverses. By + definition, this is not 0.0.0.0" + ::= { ospfVirtIfEntry 1 } + + ospfVirtIfNeighbor OBJECT-TYPE + SYNTAX RouterID + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Router ID of the Virtual Neighbor." + ::= { ospfVirtIfEntry 2 } + + ospfVirtIfTransitDelay OBJECT-TYPE + SYNTAX UpToMaxAge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The estimated number of seconds it takes to transmit a + link- state update packet over this interface." + DEFVAL { 1 } + ::= { ospfVirtIfEntry 3 } + + ospfVirtIfRetransInterval OBJECT-TYPE + SYNTAX UpToMaxAge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds between link-state advertisement + retransmissions, for adjacencies belonging to this + interface. This value is also used when retransmitting + database description and link-state request packets. + This value should be well over the expected round-trip + time." + DEFVAL { 5 } + ::= { ospfVirtIfEntry 4 } + + ospfVirtIfHelloInterval OBJECT-TYPE + SYNTAX HelloRange + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The length of time, in seconds, between the Hello + packets that the router sends on the interface. This + value must be the same for the virtual neighbor." + DEFVAL { 10 } + ::= { ospfVirtIfEntry 5 } + + ospfVirtIfRtrDeadInterval OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of seconds that a router's Hello packets + have not been seen before it's neighbors declare the + router down. This should be some multiple of the Hello + interval. This value must be the same for the virtual + neighbor." + DEFVAL { 60 } + ::= { ospfVirtIfEntry 6 } + + ospfVirtIfState OBJECT-TYPE + SYNTAX INTEGER { + down (1), -- these use the same encoding + pointToPoint (4) -- as the ospfIfTable + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "OSPF virtual interface states." + DEFVAL { down } + ::= { ospfVirtIfEntry 7 } + + ospfVirtIfEvents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of state changes or error events on this + Virtual Link" + DEFVAL { 0 } + ::= { ospfVirtIfEntry 8 } + + ospfVirtIfAuthKey OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-write + STATUS mandatory + DESCRIPTION + "If Authentication Type is simplePassword, the device + will left adjust and zero fill to 8 octets. + + When read, ospfVifAuthKey always returns a string of + length zero." + REFERENCE + "OSPF Version 2, Section 9 The Interface Data + Structure" + DEFVAL { '0000000000000000'h } -- 0.0.0.0.0.0.0.0 + ::= { ospfVirtIfEntry 9 } + + ospfVirtIfStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable displays the validity or invalidity of + the entry. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect (row + removal) is implementation dependent." + DEFVAL { valid } + ::= { ospfVirtIfEntry 10 } + + + -- OSPF Neighbor Table + + -- The OSPF Neighbor Table describes all neighbors in + -- the locality of the subject router. + + ospfNbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfNbrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of non-virtual neighbor information." + REFERENCE + "OSPF Version 2, Section 10 The Neighbor Data + Structure" + ::= { ospf 10 } + + ospfNbrEntry OBJECT-TYPE + SYNTAX OspfNbrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The information regarding a single neighbor." + REFERENCE + "OSPF Version 2, Section 10 The Neighbor Data + Structure" + INDEX { ospfNbrIpAddr, ospfNbrAddressLessIndex } + ::= { ospfNbrTable 1 } + + OspfNbrEntry ::= + SEQUENCE { + ospfNbrIpAddr + IpAddress, + ospfNbrAddressLessIndex + InterfaceIndex, + ospfNbrRtrId + RouterID, + ospfNbrOptions + INTEGER, + ospfNbrPriority + DesignatedRouterPriority, + ospfNbrState + INTEGER, + ospfNbrEvents + Counter, + ospfNbrLSRetransQLen + Gauge, + ospfNBMANbrStatus + Validation + } + + ospfNbrIpAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The IP address of this neighbor." + ::= { ospfNbrEntry 1 } + + ospfNbrAddressLessIndex OBJECT-TYPE + SYNTAX InterfaceIndex + ACCESS read-write + STATUS mandatory + DESCRIPTION + " On an interface having an IP Address, zero. On + addressless interfaces, the corresponding value of + ifIndex in the Internet Standard MIB. On row creation, + this can be derived from the instance." + ::= { ospfNbrEntry 2 } + + ospfNbrRtrId OBJECT-TYPE + SYNTAX RouterID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A 32-bit integer (represented as a type IpAddress) + uniquely identifying the neighboring router in the + Autonomous System." + DEFVAL { '00000000'h } -- 0.0.0.0 + ::= { ospfNbrEntry 3 } + + ospfNbrOptions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A Bit Mask corresponding to the neighbor's options + field. + + Bit 0, if set, indicates that the area accepts and + operates on external information; if zero, it is a stub + area. + + Bit 1, if set, indicates that the system will operate + on Type of Service metrics other than TOS 0. If zero, + the neighbor will ignore all metrics except the TOS 0 + metric." + REFERENCE + "OSPF Version 2, Section 12.1.2 Options" + DEFVAL { 0 } + ::= { ospfNbrEntry 4 } + + ospfNbrPriority OBJECT-TYPE + SYNTAX DesignatedRouterPriority + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The priority of this neighbor in the designated router + election algorithm. The value 0 signifies that the + neighbor is not eligible to become the designated + router on this particular network." + DEFVAL { 1 } + ::= { ospfNbrEntry 5 } + + ospfNbrState OBJECT-TYPE + SYNTAX INTEGER { + down (1), + attempt (2), + init (3), + twoWay (4), + exchangeStart (5), + exchange (6), + loading (7), + full (8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The State of the relationship with this Neighbor." + REFERENCE + "OSPF Version 2, Section 10.1 Neighbor States" + DEFVAL { down } + ::= { ospfNbrEntry 6 } + + ospfNbrEvents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this neighbor relationship has + changed state, or an error has occurred." + DEFVAL { 0 } + ::= { ospfNbrEntry 7 } + + ospfNbrLSRetransQLen OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current length of the retransmission queue." + DEFVAL { 0 } + ::= { ospfNbrEntry 8 } + + ospfNBMANbrStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable displays the validity or invalidity of + the entry. Setting it to 'invalid' has the effect of + rendering it inoperative. The internal effect (row + removal) is implementation dependent." + DEFVAL { valid } + ::= { ospfNbrEntry 9 } + + + -- OSPF Virtual Neighbor Table + + -- This table describes all virtual neighbors. + -- Since Virtual Links are configured in the + -- virtual interface table, this table is read-only. + + ospfVirtNbrTable OBJECT-TYPE + SYNTAX SEQUENCE OF OspfVirtNbrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of virtual neighbor information." + REFERENCE + "OSPF Version 2, Section 15 Virtual Links" + ::= { ospf 11 } + + ospfVirtNbrEntry OBJECT-TYPE + SYNTAX OspfVirtNbrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Virtual neighbor information." + INDEX { ospfVirtNbrArea, ospfVirtNbrRtrId } + ::= { ospfVirtNbrTable 1 } + + OspfVirtNbrEntry ::= + SEQUENCE { + ospfVirtNbrArea + AreaID, + ospfVirtNbrRtrId + RouterID, + ospfVirtNbrIpAddr + IpAddress, + ospfVirtNbrOptions + INTEGER, + ospfVirtNbrState + INTEGER, + ospfVirtNbrEvents + Counter, + ospfVirtNbrLSRetransQLen + Gauge + } + + ospfVirtNbrArea OBJECT-TYPE + SYNTAX AreaID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Transit Area Identifier." + ::= { ospfVirtNbrEntry 1 } + + ospfVirtNbrRtrId OBJECT-TYPE + SYNTAX RouterID + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A 32-bit integer uniquely identifying the neighboring + router in the Autonomous System." + ::= { ospfVirtNbrEntry 2 } + + ospfVirtNbrIpAddr OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address this Virtual Neighbor is using." + ::= { ospfVirtNbrEntry 3 } + + ospfVirtNbrOptions OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A bit map corresponding to the neighbor's options + field. Thus, Bit 1, if set, indicates that the + neighbor supports Type of Service Routing; if zero, no + metrics other than TOS 0 are in use by the neighbor." + ::= { ospfVirtNbrEntry 4 } + + ospfVirtNbrState OBJECT-TYPE + SYNTAX INTEGER { + down (1), + attempt (2), + init (3), + twoWay (4), + exchangeStart (5), + exchange (6), + loading (7), + full (8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the Virtual Neighbor Relationship." + ::= { ospfVirtNbrEntry 5 } + + ospfVirtNbrEvents OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this virtual link has changed its + state, or an error has occurred." + ::= { ospfVirtNbrEntry 6 } + + ospfVirtNbrLSRetransQLen OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current length of the retransmission queue." + ::= { ospfVirtNbrEntry 7 } + + END diff --git a/pandora_console/attachment/mibs/RFC1304-MIB b/pandora_console/attachment/mibs/RFC1304-MIB new file mode 100644 index 0000000000..61f2f99872 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1304-MIB @@ -0,0 +1,913 @@ +-- Changes for RFC1304 (SIP MIB) +-- no changes needed. +-- dperkins@scruznet.com + + + RFC1304-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter, TimeTicks, IpAddress + FROM RFC1155-SMI + transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- This MIB module uses the extended OBJECT-TYPE macro + -- as defined in RFC-1212. + + -- This is the MIB module for the SIP objects. + + + sip OBJECT IDENTIFIER ::= { transmission 31 } + + -- All representations of SMDS addresses in this MIB + -- module use, as a textual convention (i.e., this + -- convention does not affect their encoding), the + -- data type: + + SMDSAddress ::= OCTET STRING (SIZE (8)) + -- the 60-bit SMDS address, preceded by 4 bits with the + -- following values: + -- "1100" when representing an individual address + -- "1110" when representing a group address + + + -- The SIP Level 3 group + -- Implementation of the SIP Level 3 group is mandatory + -- for all systems implementing SIP Level 3. + + sipL3Table OBJECT-TYPE + SYNTAX SEQUENCE OF SipL3Entry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains SIP L3 parameters and + state variables, one entry per SIP port." + ::= { sip 1 } + + sipL3Entry OBJECT-TYPE + SYNTAX SipL3Entry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This list contains SIP L3 parameters and + state variables." + INDEX { sipL3Index } + ::= { sipL3Table 1 } + + SipL3Entry ::= SEQUENCE { + sipL3Index + INTEGER, + sipL3ReceivedIndividualDAs + Counter, + sipL3ReceivedGAs + Counter, + sipL3UnrecognizedIndividualDAs + Counter, + sipL3UnrecognizedGAs + Counter, + sipL3SentIndividualDAs + Counter, + sipL3SentGAs + Counter, + sipL3Errors + Counter, + sipL3InvalidSMDSAddressTypes + Counter, + sipL3VersionSupport + INTEGER + } + + sipL3Index OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the SIP + port interface for which this entry contains + management information. The value of this + object for a particular interface has the same + value as the ifIndex object, defined in RFC + 1156 and RFC 1213, for the same interface." + ::= { sipL3Entry 1 } + + sipL3ReceivedIndividualDAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of individually addressed SIP + Level 3 PDUs received from the remote system + across the SNI. The total includes only + unerrored L3PDUs." + ::= { sipL3Entry 2 } + + sipL3ReceivedGAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of group addressed SIP Level 3 + PDUs received from the remote system across the + SNI. The total includes only unerrored L3PDUs." + ::= { sipL3Entry 3 } + + sipL3UnrecognizedIndividualDAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of SIP Level 3 PDUs received from the + remote system with invalid or unknown individual + destination addresses (Destination Address + Screening violations are not included). See SMDS + Subscription MIB module." + ::= { sipL3Entry 4 } + + sipL3UnrecognizedGAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of SIP Level 3 PDUs received from the + remote system with invalid or unknown group + addresses. (Destination Address Screening + violations are not included). See SMDS + Subscription MIB module." + ::= { sipL3Entry 5 } + + sipL3SentIndividualDAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of individually addressed SIP Level 3 + PDUs that have been sent by this system across the + SNI." + ::= { sipL3Entry 6 } + + sipL3SentGAs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of group addressed SIP L3PDUs that + have been sent by this system across the SNI." + ::= { sipL3Entry 7 } + + -- The total number of SIP L3PDU errors can be calculated as + -- (Syntactic errors + Semantic Service errors ) + -- Syntactic errors include: + -- sipL3Errors + -- Latest occurrences of syntactic error types are logged in + -- sipL3PDUErrorTable. + -- Semantic Service errors include: + -- sipL3UnrecognizedIndividualDAs + -- sipL3UnrecognizedGAs + -- sipL3InvalidSMDSAddressTypes + -- Note that public networks supporting SMDS may discard + -- SIP L3PDUs due to subscription violations. Related + -- managed objects are defined in Definitions of Managed + -- Objects for SMDS Subscription. + + + sipL3Errors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of SIP Level 3 PDUs received + from the remote system that were discovered to + have errors (including protocol processing and bit + errors but excluding addressing-related errors) + and were discarded. Includes both group addressed + L3PDUs and L3PDUs containing an individual + destination address." + ::= { sipL3Entry 8 } + + sipL3InvalidSMDSAddressTypes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of SIP Level 3 PDUs received from the + remote system that had the Source or Destination + Address_Type subfields, (the four most significant + bits of the 64 bit address field), not equal to + the value 1100 or 1110. Also, an error is + considered to have occurred if the Address_Type + field for a Source Address, the four most + significant bits of the 64 bits, is equal to 1110 + (a group address)." + ::= { sipL3Entry 9 } + + sipL3VersionSupport OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value which indicates the version(s) of SIP + that this interface supports. The value is a sum. + This sum initially takes the value zero. For each + version, V, that this interface supports, 2 raised + to (V - 1) is added to the sum. For example, a + port supporting versions 1 and 2 would have a + value of (2^(1-1)+2^(2-1))=3. The + sipL3VersionSupport is effectively a bit mask with + Version 1 equal to the least significant bit + (LSB)." + ::= { sipL3Entry 10 } + + + -- The SIP Level 2 group + -- Implementation of the SIP Level 2 group is mandatory + -- for all systems implementing SIP Level 2. + + + sipL2Table OBJECT-TYPE + SYNTAX SEQUENCE OF SipL2Entry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains SIP L2PDU parameters and + state variables, one entry per SIP port." + ::= { sip 2 } + + sipL2Entry OBJECT-TYPE + SYNTAX SipL2Entry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This list contains SIP L2 parameters and state + variables." + INDEX { sipL2Index } + ::= { sipL2Table 1 } + + SipL2Entry ::= SEQUENCE { + sipL2Index + INTEGER, + sipL2ReceivedCounts + Counter, + sipL2SentCounts + Counter, + sipL2HcsOrCRCErrors + Counter, + sipL2PayloadLengthErrors + Counter, + sipL2SequenceNumberErrors + Counter, + sipL2MidCurrentlyActiveErrors + Counter, + sipL2BomOrSSMsMIDErrors + Counter, + sipL2EomsMIDErrors + Counter + } + + sipL2Index OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the SIP port + interface for which this entry contains management + information. The value of this object for a + particular interface has the same value as the + ifIndex object, defined in RFC 1156 and RFC 1213, + for the same interface." + ::= { sipL2Entry 1 } + + sipL2ReceivedCounts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of SIP Level 2 PDUs received from the + remote system across the SNI. The total includes + only unerrored L2PDUs." + ::= { sipL2Entry 2 } + + sipL2SentCounts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of SIP Level 2 PDUs that have been + sent by this system across the SNI." + ::= { sipL2Entry 3 } + + -- The total number of SIP L2PDU errors can be calculated as + -- the sum of: + -- sipL2HcsOrCRCErrors + -- sipL2PayloadLengthErrors + -- sipL2SequenceNumberErrors + -- sipL2MidCurrentlyActiveErrors + -- sipL2BomOrSSMsMIDErrors + -- sipL2EomsMIDErrors + + sipL2HcsOrCRCErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received SIP Level 2 PDUs that were + discovered to have either a Header Check Sequence + error or a Payload CRC violation." + ::= { sipL2Entry 4 } + + sipL2PayloadLengthErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received SIP Level 2 PDUs that had + Payload Length errors that fall in the following + specifications: + - SSM L2_PDU payload length field value less + - than 28 octets or greater than 44 octets, + + - BOM or COM L2_PDU payload length field not + - equal to 44 octets, + + - EOM L2_PDU payload length field value less + - than 4 octets or greater than 44 octets." + ::= { sipL2Entry 5 } + + sipL2SequenceNumberErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received SIP Level 2 PDUs that had + a sequence number within the L2PDU not equal to + the expected sequence number of the SMDS SS + receive process." + ::= { sipL2Entry 6 } + + sipL2MidCurrentlyActiveErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received SIP Level 2 PDUs that are + BOMs for which an active receive process is + already started." + ::= { sipL2Entry 7 } + + sipL2BomOrSSMsMIDErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received SIP Level 2 PDUs that are + SSMs with a MID not equal to zero or are BOMs with + MIDs equal to zero." + ::= { sipL2Entry 8 } + + sipL2EomsMIDErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of received SIP Level 2 PDUs that are + EOMs for which there is no active receive process + for the MID (i.e., the receipt of an EOM which + does not correspond to a BOM) OR the EOM has a MID + equal to zero." + ::= { sipL2Entry 9 } + + -- The SIP PLCP group + -- Implementation of one of these groups is mandatory + -- if the PLCP is implemented. + + sipPLCP OBJECT IDENTIFIER ::= { sip 3 } + + + -- The SIP DS1 PLCP group + -- Implementation of this group is mandatory + -- if the DS1 PLCP is implemented. + + sipDS1PLCPTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipDS1PLCPEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains SIP DS1 PLCP parameters and + state variables, one entry per SIP port." + ::= { sipPLCP 1 } + + sipDS1PLCPEntry OBJECT-TYPE + SYNTAX SipDS1PLCPEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This list contains SIP DS1 PLCP parameters and + state variables." + INDEX { sipDS1PLCPIndex } + ::= { sipDS1PLCPTable 1 } + + SipDS1PLCPEntry ::= SEQUENCE { + sipDS1PLCPIndex + INTEGER, + sipDS1PLCPSEFSs + Counter, + sipDS1PLCPAlarmState + INTEGER, + sipDS1PLCPUASs + Counter + } + + + sipDS1PLCPIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the SIP port + interface for which this entry contains management + information. The value of this object for a + particular interface has the same value as the + ifIndex object, defined in RFC 1156 and RFC 1213, + for the same interface." + ::= { sipDS1PLCPEntry 1 } + + + sipDS1PLCPSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A DS1 Severely Errored Framing Second (SEFS) is a + count of one-second intervals containing one or + more SEF events. A Severely Errored Framing (SEF) + event is declared when an error in the A1 octet + and an error in the A2 octet of a framing octet + pair (i.e., errors in both framing octets), or two + consecutive invalid and/or nonsequential Path + Overhead Identifier octets are detected." + ::= { sipDS1PLCPEntry 2 } + + sipDS1PLCPAlarmState OBJECT-TYPE + SYNTAX INTEGER { + noAlarm (1), + receivedFarEndAlarm (2), + incomingLOF (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates if there is an alarm + present for the DS1 PLCP. The value + receivedFarEndAlarm means that the DS1 PLCP has + received an incoming Yellow Signal, the value + incomingLOF means that the DS1 PLCP has declared a + loss of frame (LOF) failure condition, and the + value noAlarm means that there are no alarms + present. See TR-TSV-000773 for a description of + alarm states." + ::= { sipDS1PLCPEntry 3 } + + + sipDS1PLCPUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by TR-TSV-000773, + encountered by the PLCP." + ::= { sipDS1PLCPEntry 4 } + + + -- The SIP DS3 PLCP group + -- Implementation of this group is mandatory + -- if the DS3 PLCP is implemented. + + sipDS3PLCPTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipDS3PLCPEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains SIP DS3 PLCP parameters and + state variables, one entry per SIP port." + ::= { sipPLCP 2 } + + sipDS3PLCPEntry OBJECT-TYPE + SYNTAX SipDS3PLCPEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This list contains SIP DS3 PLCP parameters and + state variables." + INDEX { sipDS3PLCPIndex } + ::= { sipDS3PLCPTable 1 } + + SipDS3PLCPEntry ::= SEQUENCE { + sipDS3PLCPIndex + INTEGER, + sipDS3PLCPSEFSs + Counter, + sipDS3PLCPAlarmState + INTEGER, + sipDS3PLCPUASs + Counter + } + + + sipDS3PLCPIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the SIP port + interface for which this entry contains management + information. The value of this object for a + particular interface has the same value as the + ifIndex object, defined in RFC 1156 and RFC 1213, + for the same interface." + ::= { sipDS3PLCPEntry 1 } + + sipDS3PLCPSEFSs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A DS3 Severely Errored Framing Second (SEFS) is a + count of one-second intervals containing one or + more SEF events. A Severely Errored Framing (SEF) + event is declared when an error in the A1 octet + and an error in the A2 octet of a framing octet + pair (i.e., errors in both framing octets), or two + consecutive invalid and/or nonsequential Path + Overhead Identifier octets are detected." + ::= { sipDS3PLCPEntry 2 } + + sipDS3PLCPAlarmState OBJECT-TYPE + SYNTAX INTEGER { + noAlarm (1), + receivedFarEndAlarm (2), + incomingLOF (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates if there is an alarm + present for the DS3 PLCP. The value + receivedFarEndAlarm means that the DS3 PLCP has + received an incoming Yellow Signal, the value + incomingLOF means that the DS3 PLCP has declared a + loss of frame (LOF) failure condition, and the + value noAlarm means that there are no alarms + present. See TR-TSV-000773 for a description of + alarm states." + ::= { sipDS3PLCPEntry 3 } + + + sipDS3PLCPUASs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by TR-TSV-000773, + encountered by the PLCP." + ::= { sipDS3PLCPEntry 4 } + + + -- The SMDS Applications group + -- Applications that have been identified for this group are: + -- * IP-over-SMDS (details are specified in RFC 1209) + -- Implementation of this group is mandatory for systems + -- that implement IP-over-SMDS Interface Protocol. + + smdsApplications OBJECT IDENTIFIER ::= { sip 4 } + + ipOverSMDS OBJECT IDENTIFIER ::= { smdsApplications 1 } + + -- Although the objects in this group are read-only, at the + -- agent's discretion they may be made read-write so that the + -- management station, when appropriately authorized, may + -- change the addressing information related to the + -- configuration of a logical IP subnetwork implemented on + -- top of SMDS. + + -- This table is necessary to support RFC1209 (IP-over-SMDS) + -- and gives information on the Group Addresses and ARP + -- Addresses used in the Logical IP subnetwork. + -- One SMDS address may be associated with multiple IP + -- addresses. One SNI may be associated with multiple LISs. + + ipOverSMDSTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpOverSMDSEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of addressing information relevant to + this entity's IP addresses." + ::= { ipOverSMDS 1 } + + ipOverSMDSEntry OBJECT-TYPE + SYNTAX IpOverSMDSEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The addressing information for one of this + entity's IP addresses." + INDEX { ipOverSMDSIndex, ipOverSMDSAddress } + ::= { ipOverSMDSTable 1 } + + IpOverSMDSEntry ::= + SEQUENCE { + ipOverSMDSIndex + INTEGER, + ipOverSMDSAddress + IpAddress, + ipOverSMDSHA + SMDSAddress, + ipOverSMDSLISGA + SMDSAddress, + ipOverSMDSARPReq + SMDSAddress + } + + ipOverSMDSIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the SIP port + interface for which this entry contains management + information. The value of this object for a + particular interface has the same value as the + ifIndex object, defined in RFC 1156 and RFC 1213, + for the same interface." + ::= { ipOverSMDSEntry 1 } + + ipOverSMDSAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP address to which this entry's addressing + information pertains." + ::= { ipOverSMDSEntry 2 } + + ipOverSMDSHA OBJECT-TYPE + SYNTAX SMDSAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SMDS Individual address of the IP station." + ::= { ipOverSMDSEntry 3 } + + ipOverSMDSLISGA OBJECT-TYPE + SYNTAX SMDSAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SMDS Group Address that has been configured + to identify the SMDS Subscriber-Network Interfaces + (SNIs) of all members of the Logical IP Subnetwork + (LIS) connected to the network supporting SMDS." + ::= { ipOverSMDSEntry 4 } + + ipOverSMDSARPReq OBJECT-TYPE + SYNTAX SMDSAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SMDS address (individual or group) to which + ARP Requests are to be sent." + ::= { ipOverSMDSEntry 5 } + + + -- The SMDS Carrier Selection group + -- This group is used as a place holder + -- for carrier selection objects. + + smdsCarrierSelection OBJECT IDENTIFIER ::= { sip 5} + + + -- The SIP Error Log + -- Implementation of this group is mandatory + -- for all systems that implement SIP Level 3. + + sipErrorLog OBJECT IDENTIFIER ::= { sip 6 } + + sipL3PDUErrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipL3PDUErrorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table that contains the latest occurrence of + the following syntactical SIP L3PDU errors: + + - Destination Address Field Format Error, + + The following pertains to the 60 least significant + bits of the 64 bit address field. The 60 bits + contained in the address subfield can be used to + represent addresses up to 15 decimal digits. Each + decimal digit shall be encoded into four bits + using Binary Coded Decimal (BCD), with the most + significant digit occurring left-most. If not all + 15 digits are required, then the remainder of this + field shall be padded on the right with bits set + to one. An error is considered to have occurred: + a). if the first four bits of the address + subfield are not BCD, OR b). if the first four + bits of the address subfield are populated with + the country code value 0001, AND the 40 bits which + follow are not Binary Coded Decimal (BCD) encoded + values of the 10 digit addresses, OR the remaining + 16 least significant bits are not populated with + 1's, OR c). if the address subfield is not + correct according to another numbering plan which + is dependent upon the carrier assigning the + numbers and offering SMDS. + + - Source Address Field Format Error, + + The description of this parameter is the same as + the description of the Destination Address Field + Format Error. + + - Invalid BAsize Field Value, + + An error is considered to have occurred when the + BAsize field of an SIP L3PDU contains a value less + that 32, greater than 9220 octets without the + CRC32 field present, greater than 9224 octets with + the CRC32 field present, or not equal to a + multiple of 4 octets, + + - Invalid Header Extension Length Field Value, + + An error is considered to have occurred when the + Header Extension Length field value is not equal + 3. + + - Invalid Header Extension - Element Length, + + An error is considered to have occurred when the + Header Extension - Element Length is greater than + 12. + + - Invalid Header Extension - Version Element + Position, Length, or Value, + + An error is considered to have occurred when a + Version element with Length=3, Type=0, and Value=1 + does not appear first within the Header Extension, + or an element Type=0 appears somewhere other than + within the first three octets in the Header + Extension. + + - Invalid Header Extension - Carrier Selection + Element Position, Length, Value or Format, + + An error is considered to have occurred when a + Carrier Selection element does not appear second + within the Header Extension, if the Element Type + does not equal 1, the Element Length does not + equal 4, 6, or 8, the Element Value field is not + four BCD encoded decimal digits used in specifying + the Carrier Identification Code (CIC), or the + identified CIC code is invalid. + + - Header Extension PAD Error + + An error is considered to have occurred when the + Header Extension PAD is 9 octets in length, or if + the Header Extension PAD is greater than zero + octets in length and the Header Extension PAD does + not follow all Header Extension elements or does + not begin with at least one octet of all zeros. + + - BEtag Mismatch Error, + + An error is considered to have occurred when the + Beginning-End Tags in the SIP L3PDU header and + trailer are not equal. + + - BAsize Field not equal to Length Field Error, + + An error is considered to have occurred when the + value of the BAsize Field does not equal the value + of the Length Field. + + - Incorrect Length Error, and + + An error is considered to have occurred when the + the Length field value is not equal to the portion + of the SIP L3PDU which extends from the + Destination Address field up to and including the + CRC32 field (if present) or up to and including + the PAD field (if the CRC32 field is not present). + As an optional check, an error is considered to + have occurred when the length of a partially + received SIP L3PDU exceeds the BAsize value. + + - MRI Timeout Error. + + An error is considered to have occurred when the + elapsed time between receipt of BOM and + corresponding EOM exceeds the value of the MRI + (Message Receive Interval) for a particular + transport signal format. + + An entry is indexed by interface number and error + type, and contains Source Address, Destination + Address and a timestamp. All these errors are + counted in the sipL3Errors counter. When + sipL3PDUErrorTimeStamp is equal to zero, the + SipL3PDUErrorEntry does not contain any valid + information." + ::= { sipErrorLog 1 } + + sipL3PDUErrorEntry OBJECT-TYPE + SYNTAX SipL3PDUErrorEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the service disagreement table." + INDEX { sipL3PDUErrorIndex, sipL3PDUErrorType } + ::= { sipL3PDUErrorTable 1 } + + SipL3PDUErrorEntry ::= SEQUENCE { + sipL3PDUErrorIndex + INTEGER, + sipL3PDUErrorType + INTEGER, + sipL3PDUErrorSA + SMDSAddress, + sipL3PDUErrorDA + SMDSAddress, + sipL3PDUErrorTimeStamp + TimeTicks + } + + sipL3PDUErrorIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of this object identifies the SIP port + interface for which this entry contains management + information. The value of this object for a + particular interface has the same value as the + ifIndex object, defined in RFC 1156 and RFC 1213, + for the same interface." + ::= { sipL3PDUErrorEntry 1 } + + sipL3PDUErrorType OBJECT-TYPE + SYNTAX INTEGER { + erroredDAFieldFormat (1), + erroredSAFieldFormat (2), + invalidBAsizeFieldValue (3), + invalidHdrExtLength (4), + invalidHdrExtElementLength (5), + invalidHdrExtVersionElementPositionLenthOrValue (6), + invalidHdrExtCarSelectElementPositionLenghtValueOrFormat (7), + hePADError (8), + beTagMismatch (9), + baSizeFieldNotEqualToLengthField (10), + incorrectLength (11), + mriTimeout (12) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of error." + ::= { sipL3PDUErrorEntry 2 } + + sipL3PDUErrorSA OBJECT-TYPE + SYNTAX SMDSAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A rejected SMDS source address." + ::= { sipL3PDUErrorEntry 3 } + + sipL3PDUErrorDA OBJECT-TYPE + SYNTAX SMDSAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A rejected SMDS destination address." + ::= { sipL3PDUErrorEntry 4 } + + sipL3PDUErrorTimeStamp OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The timestamp for the service disagreement. The + timestamp contains the value of sysUpTime at the + latest occurrence of this type of service + disagreement. See textual description under + sipL3PDUErrorTable for boundary conditions." + ::= { sipL3PDUErrorEntry 5 } + + END diff --git a/pandora_console/attachment/mibs/RFC1315-FRAME b/pandora_console/attachment/mibs/RFC1315-FRAME new file mode 100644 index 0000000000..22341ed08f --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1315-FRAME @@ -0,0 +1,634 @@ + RFC1315-FRAME DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + transmission + FROM RFC1213-MIB + TimeTicks + FROM RFC-1155 + TRAP-TYPE + FROM RFC-1215; + + -- Frame Relay DTE MIB + + frame-relay OBJECT IDENTIFIER ::= { transmission 32 } + + -- + -- the range of ifIndex + -- + Index ::= INTEGER -- 1..ifNumber + + -- + -- the range of a Data Link Connection Identifier + -- + DLCI ::= INTEGER -- 0..DLCINumber + + + -- Data Link Connection Management Interface + + -- The variables that configure the DLC Management Interface. + + frDlcmiTable OBJECT-TYPE + SYNTAX SEQUENCE OF FrDlcmiEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Parameters for the Data Link Connection Management + Interface for the frame relay service on this + interface." + REFERENCE + "Draft American National Standard T1.617-1991, Annex D" + ::= { frame-relay 1 } + + frDlcmiEntry OBJECT-TYPE + SYNTAX FrDlcmiEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Parameters for a particular Data Link Con- + nection Management Interface." + INDEX { frDlcmiIfIndex } + ::= { frDlcmiTable 1 } + + FrDlcmiEntry ::= + SEQUENCE { + frDlcmiIfIndex + Index, + frDlcmiState + INTEGER, + frDlcmiAddress + INTEGER, + frDlcmiAddressLen + INTEGER, + frDlcmiPollingInterval + INTEGER, + frDlcmiFullEnquiryInterval + INTEGER, + frDlcmiErrorThreshold + INTEGER, + frDlcmiMonitoredEvents + INTEGER, + frDlcmiMaxSupportedVCs + INTEGER, + frDlcmiMulticast + INTEGER + } + + + + frDlcmiIfIndex OBJECT-TYPE + SYNTAX Index + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value of the corresponding ifEn- + try." + ::= { frDlcmiEntry 1 } + + frDlcmiState OBJECT-TYPE + SYNTAX INTEGER { + noLmiConfigured (1), + lmiRev1 (2), + ansiT1-617-D (3), -- ANSI T1.617 Annex D + ansiT1-617-B (4) -- ANSI T1.617 Annex B + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable states which Data Link Connec- + tion Management scheme is active (and by impli- + cation, what DLCI it uses) on the Frame Relay + interface." + REFERENCE + "Draft American National Standard T1.617-1991" + ::= { frDlcmiEntry 2 } + + + + frDlcmiAddress OBJECT-TYPE + SYNTAX INTEGER { + q921 (1), -- 13 bit DLCI + q922March90 (2), -- 11 bit DLCI + q922November90 (3), -- 10 bit DLCI + q922 (4) -- Final Standard + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable states which address format is + in use on the Frame Relay interface." + ::= { frDlcmiEntry 3 } + + + frDlcmiAddressLen OBJECT-TYPE + SYNTAX INTEGER { + two-octets (2), + three-octets (3), + four-octets (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable states which address length in + octets. In the case of Q922 format, the length + indicates the entire length of the address in- + cluding the control portion." + ::= { frDlcmiEntry 4 } + + + + frDlcmiPollingInterval OBJECT-TYPE + SYNTAX INTEGER (5..30) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the number of seconds between succes- + sive status enquiry messages." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.7 Timer T391." + DEFVAL { 10 } + ::= { frDlcmiEntry 5 } + + + frDlcmiFullEnquiryInterval OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number of status enquiry intervals that pass + before issuance of a full status enquiry mes- + sage." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.7 Counter N391." + DEFVAL { 6 } + ::= { frDlcmiEntry 6 } + + + + frDlcmiErrorThreshold OBJECT-TYPE + SYNTAX INTEGER (1..10) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the maximum number of unanswered + Status Enquiries the equipment shall accept be- + fore declaring the interface down." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.5.1 Counter N392." + DEFVAL { 3 } + ::= { frDlcmiEntry 7 } + + frDlcmiMonitoredEvents OBJECT-TYPE + SYNTAX INTEGER (1..10) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the number of status polling intervals + over which the error threshold is counted. For + example, if within 'MonitoredEvents' number of + events the station receives 'ErrorThreshold' + number of errors, the interface is marked as + down." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.5.2 Counter N393." + DEFVAL { 4 } + ::= { frDlcmiEntry 8 } + + + + frDlcmiMaxSupportedVCs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of Virtual Circuits allowed + for this interface. Usually dictated by the + Frame Relay network. + + In response to a SET, if a value less than zero + or higher than the agent's maximal capability + is configured, the agent should respond bad- + Value" + ::= { frDlcmiEntry 9 } + + + frDlcmiMulticast OBJECT-TYPE + SYNTAX INTEGER { + nonBroadcast (1), + broadcast (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This indicates whether the Frame Relay inter- + face is using a multicast service." + ::= { frDlcmiEntry 10 } + + -- A Frame Relay service is a multiplexing service. Data + -- Link Connection Identifiers enumerate virtual circuits + -- (permanent or dynamic) which are layered onto the underlying + -- circuit, represented by ifEntry. Therefore, each of the entries + -- in the Standard MIB's Interface Table with an IfType of + -- Frame Relay represents a Q.922 interface. Zero or more + -- virtual circuits are layered onto this interface and provide + -- interconnection with various remote destinations. + -- Each such virtual circuit is represented by an entry in the + -- circuit table. + + -- Circuit Table + + -- The table describing the use of the DLCIs attached to + -- each Frame Relay Interface. + + frCircuitTable OBJECT-TYPE + SYNTAX SEQUENCE OF FrCircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing information about specific Data + Link Connection Identifiers and corresponding virtual + circuits." + ::= { frame-relay 2 } + + frCircuitEntry OBJECT-TYPE + SYNTAX FrCircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The information regarding a single Data Link + Connection Identifier." + INDEX { frCircuitIfIndex, frCircuitDlci } + ::= { frCircuitTable 1 } + + + FrCircuitEntry ::= + SEQUENCE { + frCircuitIfIndex + Index, + frCircuitDlci + DLCI, + frCircuitState + INTEGER, + frCircuitReceivedFECNs + Counter, + frCircuitReceivedBECNs + Counter, + frCircuitSentFrames + Counter, + frCircuitSentOctets + Counter, + frCircuitReceivedFrames + Counter, + frCircuitReceivedOctets + Counter, + frCircuitCreationTime + TimeTicks, + frCircuitLastTimeChange + TimeTicks, + frCircuitCommittedBurst + INTEGER, + frCircuitExcessBurst + INTEGER, + frCircuitThroughput + INTEGER + } + + + + frCircuitIfIndex OBJECT-TYPE + SYNTAX Index + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex Value of the ifEntry this virtual + circuit is layered onto." + ::= { frCircuitEntry 1 } + + + frCircuitDlci OBJECT-TYPE + SYNTAX DLCI + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Data Link Connection Identifier for this + virtual circuit." + REFERENCE + "Draft American National Standard T1.618-1991, + Section 3.3.6" + ::= { frCircuitEntry 2 } + + frCircuitState OBJECT-TYPE + SYNTAX INTEGER { + invalid (1), + active (2), + inactive (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates whether the particular virtual cir- + cuit is operational. In the absence of a Data + Link Connection Management Interface, virtual + circuit entries (rows) may be created by set- + ting virtual circuit state to 'active', or + deleted by changing Circuit state to 'invalid'. + Whether or not the row actually disappears is + left to the implementation, so this object may + actually read as 'invalid' for some arbitrary + length of time. It is also legal to set the + state of a virtual circuit to 'inactive' to + temporarily disable a given circuit." + DEFVAL { active } + ::= { frCircuitEntry 3 } + + + frCircuitReceivedFECNs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames received from the network in- + dicating forward congestion since the virtual + circuit was created." + REFERENCE + "Draft American National Standard T1.618-1991, + Section 3.3.3" + ::= { frCircuitEntry 4 } + + + + frCircuitReceivedBECNs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames received from the network in- + dicating backward congestion since the virtual + circuit was created." + REFERENCE + "Draft American National Standard T1.618-1991, + Section 3.3.4" + ::= { frCircuitEntry 5 } + + + + frCircuitSentFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames sent from this virtual + circuit since it was created." + ::= { frCircuitEntry 6 } + + + + frCircuitSentOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of octets sent from this virtual + circuit since it was created." + ::= { frCircuitEntry 7 } + + + + frCircuitReceivedFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames received over this virtual + circuit since it was created." + ::= { frCircuitEntry 8 } + + + + frCircuitReceivedOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of octets received over this virtual + circuit since it was created." + ::= { frCircuitEntry 9 } + + frCircuitCreationTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the virtual cir- + cuit was created, whether by the Data Link Con- + nection Management Interface or by a SetRe- + quest." + ::= { frCircuitEntry 10 } + + + + frCircuitLastTimeChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when last there was a + change in the virtual circuit state" + ::= { frCircuitEntry 11 } + + + + frCircuitCommittedBurst OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the maximum amount of + data, in bits, that the network agrees to + transfer under normal conditions, during the + measurement interval." + REFERENCE + "Draft American National Standard T1.617-1991, + Section 6.5.19" + DEFVAL { 0 } -- the default indicates no commitment + ::= { frCircuitEntry 12 } + + + + frCircuitExcessBurst OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the maximum amount of + uncommitted data bits that the network will at- + tempt to deliver over the measurement interval. + + By default, if not configured when creating the + entry, the Excess Information Burst Size is set + to the value of ifSpeed." + REFERENCE + "Draft American National Standard T1.617-1991, + Section 6.5.19" + ::= { frCircuitEntry 13 } + + + + frCircuitThroughput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Throughput is the average number of 'Frame Re- + lay Information Field' bits transferred per + second across a user network interface in one + direction, measured over the measurement inter- + val. + + If the configured committed burst rate and + throughput are both non-zero, the measurement + interval + T=frCircuitCommittedBurst/frCircuitThroughput. + + If the configured committed burst rate and + throughput are both zero, the measurement in- + terval + T=frCircuitExcessBurst/ifSpeed." + REFERENCE + "Draft American National Standard T1.617-1991, + Section 6.5.19" + DEFVAL {0} -- the default value of Throughput is + -- "no commitment". + ::= { frCircuitEntry 14 } + + + -- Error Table + + -- The table describing errors encountered on each Frame + -- Relay Interface. + + frErrTable OBJECT-TYPE + SYNTAX SEQUENCE OF FrErrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing information about Errors on the + Frame Relay interface." + ::= { frame-relay 3 } + + frErrEntry OBJECT-TYPE + SYNTAX FrErrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The error information for a single frame relay + interface." + INDEX { frErrIfIndex } + ::= { frErrTable 1 } + + + + FrErrEntry ::= + SEQUENCE { + frErrIfIndex + Index, + frErrType + INTEGER, + frErrData + OCTET STRING, + frErrTime + TimeTicks + } + + + + frErrIfIndex OBJECT-TYPE + SYNTAX Index + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex Value of the corresponding ifEn- + try." + ::= { frErrEntry 1 } + + + + frErrType OBJECT-TYPE + SYNTAX INTEGER { + unknownError(1), + receiveShort(2), + receiveLong(3), + illegalDLCI(4), + unknownDLCI(5), + dlcmiProtoErr(6), + dlcmiUnknownIE(7), + dlcmiSequenceErr(8), + dlcmiUnknownRpt(9), + noErrorSinceReset(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of error that was last seen on this + interface." + ::= { frErrEntry 2 } + + + + frErrData OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An octet string containing as much of the er- + ror packet as possible. As a minimum, it must + contain the Q.922 Address or as much as was + delivered. It is desirable to include all in- + formation up to the PDU." + ::= { frErrEntry 3 } + + + + frErrTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at which the error was + detected." + ::= { frErrEntry 4 } + + + -- Frame Relay Globals + + frame-relay-globals OBJECT IDENTIFIER ::= { frame-relay 4 } + + frTrapState OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether the system + produces the frDLCIStatusChange trap." + DEFVAL { disabled } + ::= { frame-relay-globals 1 } + + + -- Data Link Connection Management Interface Related Traps + + frDLCIStatusChange TRAP-TYPE + ENTERPRISE frame-relay + VARIABLES { frCircuitIfIndex, frCircuitDlci, frCircuitState } + DESCRIPTION + "This trap indicates that the indicated Virtual + Circuit has changed state. It has either been + created or invalidated, or has toggled between + the active and inactive states." + ::= 1 + + END diff --git a/pandora_console/attachment/mibs/RFC1315-MIB b/pandora_console/attachment/mibs/RFC1315-MIB new file mode 100644 index 0000000000..77702c7480 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1315-MIB @@ -0,0 +1,634 @@ + RFC1315-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + transmission + FROM RFC1213-MIB + TimeTicks + FROM RFC-1155 + TRAP-TYPE + FROM RFC-1215; + + -- Frame Relay DTE MIB + + frame-relay OBJECT IDENTIFIER ::= { transmission 32 } + + -- + -- the range of ifIndex + -- + Index ::= INTEGER -- 1..ifNumber + + -- + -- the range of a Data Link Connection Identifier + -- + DLCI ::= INTEGER -- 0..DLCINumber + + + -- Data Link Connection Management Interface + + -- The variables that configure the DLC Management Interface. + + frDlcmiTable OBJECT-TYPE + SYNTAX SEQUENCE OF FrDlcmiEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Parameters for the Data Link Connection Management + Interface for the frame relay service on this + interface." + REFERENCE + "Draft American National Standard T1.617-1991, Annex D" + ::= { frame-relay 1 } + + frDlcmiEntry OBJECT-TYPE + SYNTAX FrDlcmiEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The Parameters for a particular Data Link Con- + nection Management Interface." + INDEX { frDlcmiIfIndex } + ::= { frDlcmiTable 1 } + + FrDlcmiEntry ::= + SEQUENCE { + frDlcmiIfIndex + Index, + frDlcmiState + INTEGER, + frDlcmiAddress + INTEGER, + frDlcmiAddressLen + INTEGER, + frDlcmiPollingInterval + INTEGER, + frDlcmiFullEnquiryInterval + INTEGER, + frDlcmiErrorThreshold + INTEGER, + frDlcmiMonitoredEvents + INTEGER, + frDlcmiMaxSupportedVCs + INTEGER, + frDlcmiMulticast + INTEGER + } + + + + frDlcmiIfIndex OBJECT-TYPE + SYNTAX Index + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value of the corresponding ifEn- + try." + ::= { frDlcmiEntry 1 } + + frDlcmiState OBJECT-TYPE + SYNTAX INTEGER { + noLmiConfigured (1), + lmiRev1 (2), + ansiT1-617-D (3), -- ANSI T1.617 Annex D + ansiT1-617-B (4) -- ANSI T1.617 Annex B + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable states which Data Link Connec- + tion Management scheme is active (and by impli- + cation, what DLCI it uses) on the Frame Relay + interface." + REFERENCE + "Draft American National Standard T1.617-1991" + ::= { frDlcmiEntry 2 } + + + + frDlcmiAddress OBJECT-TYPE + SYNTAX INTEGER { + q921 (1), -- 13 bit DLCI + q922March90 (2), -- 11 bit DLCI + q922November90 (3), -- 10 bit DLCI + q922 (4) -- Final Standard + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable states which address format is + in use on the Frame Relay interface." + ::= { frDlcmiEntry 3 } + + + frDlcmiAddressLen OBJECT-TYPE + SYNTAX INTEGER { + two-octets (2), + three-octets (3), + four-octets (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable states which address length in + octets. In the case of Q922 format, the length + indicates the entire length of the address in- + cluding the control portion." + ::= { frDlcmiEntry 4 } + + + + frDlcmiPollingInterval OBJECT-TYPE + SYNTAX INTEGER (5..30) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the number of seconds between succes- + sive status enquiry messages." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.7 Timer T391." + DEFVAL { 10 } + ::= { frDlcmiEntry 5 } + + + frDlcmiFullEnquiryInterval OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Number of status enquiry intervals that pass + before issuance of a full status enquiry mes- + sage." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.7 Counter N391." + DEFVAL { 6 } + ::= { frDlcmiEntry 6 } + + + + frDlcmiErrorThreshold OBJECT-TYPE + SYNTAX INTEGER (1..10) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the maximum number of unanswered + Status Enquiries the equipment shall accept be- + fore declaring the interface down." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.5.1 Counter N392." + DEFVAL { 3 } + ::= { frDlcmiEntry 7 } + + frDlcmiMonitoredEvents OBJECT-TYPE + SYNTAX INTEGER (1..10) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the number of status polling intervals + over which the error threshold is counted. For + example, if within 'MonitoredEvents' number of + events the station receives 'ErrorThreshold' + number of errors, the interface is marked as + down." + REFERENCE + "Draft American National Standard T1.617-1991, + Section D.5.2 Counter N393." + DEFVAL { 4 } + ::= { frDlcmiEntry 8 } + + + + frDlcmiMaxSupportedVCs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of Virtual Circuits allowed + for this interface. Usually dictated by the + Frame Relay network. + + In response to a SET, if a value less than zero + or higher than the agent's maximal capability + is configured, the agent should respond bad- + Value" + ::= { frDlcmiEntry 9 } + + + frDlcmiMulticast OBJECT-TYPE + SYNTAX INTEGER { + nonBroadcast (1), + broadcast (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This indicates whether the Frame Relay inter- + face is using a multicast service." + ::= { frDlcmiEntry 10 } + + -- A Frame Relay service is a multiplexing service. Data + -- Link Connection Identifiers enumerate virtual circuits + -- (permanent or dynamic) which are layered onto the underlying + -- circuit, represented by ifEntry. Therefore, each of the entries + -- in the Standard MIB's Interface Table with an IfType of + -- Frame Relay represents a Q.922 interface. Zero or more + -- virtual circuits are layered onto this interface and provide + -- interconnection with various remote destinations. + -- Each such virtual circuit is represented by an entry in the + -- circuit table. + + -- Circuit Table + + -- The table describing the use of the DLCIs attached to + -- each Frame Relay Interface. + + frCircuitTable OBJECT-TYPE + SYNTAX SEQUENCE OF FrCircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing information about specific Data + Link Connection Identifiers and corresponding virtual + circuits." + ::= { frame-relay 2 } + + frCircuitEntry OBJECT-TYPE + SYNTAX FrCircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The information regarding a single Data Link + Connection Identifier." + INDEX { frCircuitIfIndex, frCircuitDlci } + ::= { frCircuitTable 1 } + + + FrCircuitEntry ::= + SEQUENCE { + frCircuitIfIndex + Index, + frCircuitDlci + DLCI, + frCircuitState + INTEGER, + frCircuitReceivedFECNs + Counter, + frCircuitReceivedBECNs + Counter, + frCircuitSentFrames + Counter, + frCircuitSentOctets + Counter, + frCircuitReceivedFrames + Counter, + frCircuitReceivedOctets + Counter, + frCircuitCreationTime + TimeTicks, + frCircuitLastTimeChange + TimeTicks, + frCircuitCommittedBurst + INTEGER, + frCircuitExcessBurst + INTEGER, + frCircuitThroughput + INTEGER + } + + + + frCircuitIfIndex OBJECT-TYPE + SYNTAX Index + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex Value of the ifEntry this virtual + circuit is layered onto." + ::= { frCircuitEntry 1 } + + + frCircuitDlci OBJECT-TYPE + SYNTAX DLCI + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Data Link Connection Identifier for this + virtual circuit." + REFERENCE + "Draft American National Standard T1.618-1991, + Section 3.3.6" + ::= { frCircuitEntry 2 } + + frCircuitState OBJECT-TYPE + SYNTAX INTEGER { + invalid (1), + active (2), + inactive (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Indicates whether the particular virtual cir- + cuit is operational. In the absence of a Data + Link Connection Management Interface, virtual + circuit entries (rows) may be created by set- + ting virtual circuit state to 'active', or + deleted by changing Circuit state to 'invalid'. + Whether or not the row actually disappears is + left to the implementation, so this object may + actually read as 'invalid' for some arbitrary + length of time. It is also legal to set the + state of a virtual circuit to 'inactive' to + temporarily disable a given circuit." + DEFVAL { active } + ::= { frCircuitEntry 3 } + + + frCircuitReceivedFECNs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames received from the network in- + dicating forward congestion since the virtual + circuit was created." + REFERENCE + "Draft American National Standard T1.618-1991, + Section 3.3.3" + ::= { frCircuitEntry 4 } + + + + frCircuitReceivedBECNs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames received from the network in- + dicating backward congestion since the virtual + circuit was created." + REFERENCE + "Draft American National Standard T1.618-1991, + Section 3.3.4" + ::= { frCircuitEntry 5 } + + + + frCircuitSentFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of frames sent from this virtual + circuit since it was created." + ::= { frCircuitEntry 6 } + + + + frCircuitSentOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of octets sent from this virtual + circuit since it was created." + ::= { frCircuitEntry 7 } + + + + frCircuitReceivedFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames received over this virtual + circuit since it was created." + ::= { frCircuitEntry 8 } + + + + frCircuitReceivedOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of octets received over this virtual + circuit since it was created." + ::= { frCircuitEntry 9 } + + frCircuitCreationTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the virtual cir- + cuit was created, whether by the Data Link Con- + nection Management Interface or by a SetRe- + quest." + ::= { frCircuitEntry 10 } + + + + frCircuitLastTimeChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when last there was a + change in the virtual circuit state" + ::= { frCircuitEntry 11 } + + + + frCircuitCommittedBurst OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the maximum amount of + data, in bits, that the network agrees to + transfer under normal conditions, during the + measurement interval." + REFERENCE + "Draft American National Standard T1.617-1991, + Section 6.5.19" + DEFVAL { 0 } -- the default indicates no commitment + ::= { frCircuitEntry 12 } + + + + frCircuitExcessBurst OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the maximum amount of + uncommitted data bits that the network will at- + tempt to deliver over the measurement interval. + + By default, if not configured when creating the + entry, the Excess Information Burst Size is set + to the value of ifSpeed." + REFERENCE + "Draft American National Standard T1.617-1991, + Section 6.5.19" + ::= { frCircuitEntry 13 } + + + + frCircuitThroughput OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Throughput is the average number of 'Frame Re- + lay Information Field' bits transferred per + second across a user network interface in one + direction, measured over the measurement inter- + val. + + If the configured committed burst rate and + throughput are both non-zero, the measurement + interval + T=frCircuitCommittedBurst/frCircuitThroughput. + + If the configured committed burst rate and + throughput are both zero, the measurement in- + terval + T=frCircuitExcessBurst/ifSpeed." + REFERENCE + "Draft American National Standard T1.617-1991, + Section 6.5.19" + DEFVAL {0} -- the default value of Throughput is + -- "no commitment". + ::= { frCircuitEntry 14 } + + + -- Error Table + + -- The table describing errors encountered on each Frame + -- Relay Interface. + + frErrTable OBJECT-TYPE + SYNTAX SEQUENCE OF FrErrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing information about Errors on the + Frame Relay interface." + ::= { frame-relay 3 } + + frErrEntry OBJECT-TYPE + SYNTAX FrErrEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The error information for a single frame relay + interface." + INDEX { frErrIfIndex } + ::= { frErrTable 1 } + + + + FrErrEntry ::= + SEQUENCE { + frErrIfIndex + Index, + frErrType + INTEGER, + frErrData + OCTET STRING, + frErrTime + TimeTicks + } + + + + frErrIfIndex OBJECT-TYPE + SYNTAX Index + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex Value of the corresponding ifEn- + try." + ::= { frErrEntry 1 } + + + + frErrType OBJECT-TYPE + SYNTAX INTEGER { + unknownError(1), + receiveShort(2), + receiveLong(3), + illegalDLCI(4), + unknownDLCI(5), + dlcmiProtoErr(6), + dlcmiUnknownIE(7), + dlcmiSequenceErr(8), + dlcmiUnknownRpt(9), + noErrorSinceReset(10) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of error that was last seen on this + interface." + ::= { frErrEntry 2 } + + + + frErrData OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An octet string containing as much of the er- + ror packet as possible. As a minimum, it must + contain the Q.922 Address or as much as was + delivered. It is desirable to include all in- + formation up to the PDU." + ::= { frErrEntry 3 } + + + + frErrTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at which the error was + detected." + ::= { frErrEntry 4 } + + + -- Frame Relay Globals + + frame-relay-globals OBJECT IDENTIFIER ::= { frame-relay 4 } + + frTrapState OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether the system + produces the frDLCIStatusChange trap." + DEFVAL { disabled } + ::= { frame-relay-globals 1 } + + + -- Data Link Connection Management Interface Related Traps + + frDLCIStatusChange TRAP-TYPE + ENTERPRISE frame-relay + VARIABLES { frCircuitIfIndex, frCircuitDlci, frCircuitState } + DESCRIPTION + "This trap indicates that the indicated Virtual + Circuit has changed state. It has either been + created or invalidated, or has toggled between + the active and inactive states." + ::= 1 + + END diff --git a/pandora_console/attachment/mibs/RFC1316-MIB b/pandora_console/attachment/mibs/RFC1316-MIB new file mode 100644 index 0000000000..8734fd9410 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1316-MIB @@ -0,0 +1,519 @@ +-- Changes for RFC1316 (Character MIB) +-- Added IMPORT for mib-2. +-- dperkins@scruznet.com + + + RFC1316-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter, TimeTicks, Gauge + FROM RFC1155-SMI + mib-2, DisplayString + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- this is the MIB module for character stream devices + + char OBJECT IDENTIFIER ::= { mib-2 19 } + + -- Textual Conventions + + AutonomousType ::= OBJECT IDENTIFIER + + -- The object identifier is an independently extensible type + -- identification value. It may, for example indicate a + -- particular sub-tree with further MIB definitions, or + -- define something like a protocol type or type of + -- hardware. + + InstancePointer ::= OBJECT IDENTIFIER + + -- The object identifier is a pointer to a specific instance + -- of a MIB object in this agent's implemented MIB. By + -- convention, it is the first object in the conceptual row + -- for the instance. + + + -- the generic Character group + + -- Implementation of this group is mandatory for all + -- systems that offer character ports + + charNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of entries in charPortTable, regardless + of their current state." + ::= { char 1 } + + + -- the Character Port table + + charPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF CharPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port entries. The number of entries is + given by the value of charNumber." + ::= { char 2 } + + charPortEntry OBJECT-TYPE + SYNTAX CharPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Status and parameter values for a character port." + INDEX { charPortIndex } + ::= { charPortTable 1 } + + CharPortEntry ::= + SEQUENCE { + charPortIndex + INTEGER, + charPortName + DisplayString, + charPortType + INTEGER, + charPortHardware + AutonomousType, + charPortReset + INTEGER, + charPortAdminStatus + INTEGER, + charPortOperStatus + INTEGER, + charPortLastChange + TimeTicks, + charPortInFlowType + INTEGER, + charPortOutFlowType + INTEGER, + charPortInFlowState + INTEGER, + charPortOutFlowState + INTEGER, + charPortInCharacters + Counter, + charPortOutCharacters + Counter, + charPortAdminOrigin + INTEGER, + charPortSessionMaximum + INTEGER, + charPortSessionNumber + Gauge, + charPortSessionIndex + INTEGER + } + + charPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each character port. Its value + ranges between 1 and the value of charNumber. By + convention and if possible, hardware port numbers + come first, with a simple, direct mapping. The + value for each port must remain constant at least + from one re-initialization of the network management + agent to the next." + ::= { charPortEntry 1 } + + charPortName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..32)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An administratively assigned name for the port, + typically with some local significance." + ::= { charPortEntry 2 } + + charPortType OBJECT-TYPE + SYNTAX INTEGER { physical(1), virtual(2) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port's type, 'physical' if the port represents + an external hardware connector, 'virtual' if it does + not." + ::= { charPortEntry 3 } + + charPortHardware OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A reference to hardware MIB definitions specific to + a physical port's external connector. For example, + if the connector is RS-232, then the value of this + object refers to a MIB sub-tree defining objects + specific to RS-232. If an agent is not configured + to have such values, the agent returns the object + identifier: + + nullHardware OBJECT IDENTIFIER ::= { 0 0 } + " + ::= { charPortEntry 4 } + + charPortReset OBJECT-TYPE + SYNTAX INTEGER { ready(1), execute(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A control to force the port into a clean, initial + state, both hardware and software, disconnecting all + the port's existing sessions. In response to a + get-request or get-next-request, the agent always + returns 'ready' as the value. Setting the value to + 'execute' causes a reset." + ::= { charPortEntry 5 } + + charPortAdminStatus OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2), off(3), + maintenance(4) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's desired state, independent of flow + control. 'enabled' indicates that the port is + allowed to pass characters and form new sessions. + 'disabled' indicates that the port is allowed to + pass characters but not form new sessions. 'off' + indicates that the port is not allowed to pass + characters or have any sessions. 'maintenance' + indicates a maintenance mode, exclusive of normal + operation, such as running a test." + ::= { charPortEntry 6 } + + charPortOperStatus OBJECT-TYPE + SYNTAX INTEGER { up(1), down(2), + maintenance(3), absent(4), active(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port's actual, operational state, independent + of flow control. 'up' indicates able to function + normally. 'down' indicates inability to function + for administrative or operational reasons. + 'maintenance' indicates a maintenance mode, + exclusive of normal operation, such as running a + test. 'absent' indicates that port hardware is not + present. 'active' indicates up with a user present + (e.g. logged in)." + ::= { charPortEntry 7 } + + charPortLastChange OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime at the time the port entered + its current operational state. If the current state + was entered prior to the last reinitialization of + the local network management subsystem, then this + object contains a zero value." + ::= { charPortEntry 8 } + + charPortInFlowType OBJECT-TYPE + SYNTAX INTEGER { none(1), xonXoff(2), hardware(3), + ctsRts(4), dsrDtr(5) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's type of input flow control. 'none' + indicates no flow control at this level or below. + 'xonXoff' indicates software flow control by + recognizing XON and XOFF characters. 'hardware' + indicates flow control delegated to the lower level, + for example a parallel port. + + 'ctsRts' and 'dsrDtr' are specific to RS-232-like + ports. Although not architecturally pure, they are + included here for simplicity's sake." + ::= { charPortEntry 9 } + + charPortOutFlowType OBJECT-TYPE + SYNTAX INTEGER { none(1), xonXoff(2), hardware(3), + ctsRts(4), dsrDtr(5) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's type of output flow control. 'none' + indicates no flow control at this level or below. + 'xonXoff' indicates software flow control by + recognizing XON and XOFF characters. 'hardware' + indicates flow control delegated to the lower level, + for example a parallel port. + + 'ctsRts' and 'dsrDtr' are specific to RS-232-like + ports. Although not architecturally pure, they are + included here for simplicy's sake." + ::= { charPortEntry 10 } + + charPortInFlowState OBJECT-TYPE + SYNTAX INTEGER { none(1), unknown(2), stop(3), go(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operational state of input flow control + on the port. 'none' indicates not applicable. + 'unknown' indicates this level does not know. + 'stop' indicates flow not allowed. 'go' indicates + flow allowed." + ::= { charPortEntry 11 } + + charPortOutFlowState OBJECT-TYPE + SYNTAX INTEGER { none(1), unknown(2), stop(3), go(4) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operational state of output flow + control on the port. 'none' indicates not + applicable. 'unknown' indicates this level does not + know. 'stop' indicates flow not allowed. 'go' + indicates flow allowed." + ::= { charPortEntry 12 } + + charPortInCharacters OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of characters detected as input from + the port since system re-initialization and while + the port operational state was 'up', 'active', or + 'maintenance', including, for example, framing, flow + control (i.e. XON and XOFF), each occurrence of a + BREAK condition, locally-processed input, and input + sent to all sessions." + ::= { charPortEntry 13 } + + charPortOutCharacters OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of characters detected as output to + the port since system re-initialization and while + the port operational state was 'up', 'active', or + 'maintenance', including, for example, framing, flow + control (i.e. XON and XOFF), each occurrence of a + BREAK condition, locally-created output, and output + received from all sessions." + ::= { charPortEntry 14 } + + charPortAdminOrigin OBJECT-TYPE + SYNTAX INTEGER { dynamic(1), network(2), local(3), + none(4) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The administratively allowed origin for + establishing session on the port. 'dynamic' allows + 'network' or 'local' session establishment. 'none' + disallows session establishment." + ::= { charPortEntry 15 } + + charPortSessionMaximum OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of concurrent sessions allowed + on the port. A value of -1 indicates no maximum. + Setting the maximum to less than the current number + of sessions has unspecified results." + ::= { charPortEntry 16 } + + charPortSessionNumber OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of open sessions on the port that are in + the connecting, connected, or disconnecting state." + ::= { charPortEntry 17 } + + charPortSessionIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of charSessIndex for the port's first or + only active session. If the port has no active + session, the agent returns the value zero." + ::= { charPortEntry 18 } + + + -- the Character Session table + + charSessTable OBJECT-TYPE + SYNTAX SEQUENCE OF CharSessEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port session entries." + ::= { char 3 } + + charSessEntry OBJECT-TYPE + SYNTAX CharSessEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Status and parameter values for a character port + session." + INDEX { charSessPortIndex, charSessIndex } + ::= { charSessTable 1 } + + CharSessEntry ::= + SEQUENCE { + charSessPortIndex + INTEGER, + charSessIndex + INTEGER, + charSessKill + INTEGER, + charSessState + INTEGER, + charSessProtocol + AutonomousType, + charSessOperOrigin + INTEGER, + charSessInCharacters + Counter, + charSessOutCharacters + Counter, + charSessConnectionId + InstancePointer, + charSessStartTime + TimeTicks + } + + charSessPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of charPortIndex for the port to which + this session belongs." + ::= { charSessEntry 1 } + + charSessIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The session index in the context of the port, a + non-zero positive integer. Session indexes within a + port need not be sequential. Session indexes may be + reused for different ports. For example, port 1 and + port 3 may both have a session 2 at the same time. + Session indexes may have any valid integer value, + with any meaning convenient to the agent + implementation." + ::= { charSessEntry 2 } + + charSessKill OBJECT-TYPE + SYNTAX INTEGER { ready(1), execute(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A control to terminate the session. In response to + a get-request or get-next-request, the agent always + returns 'ready' as the value. Setting the value to + 'execute' causes termination." + ::= { charSessEntry 3 } + + charSessState OBJECT-TYPE + SYNTAX INTEGER { connecting(1), connected(2), + disconnecting(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operational state of the session, + disregarding flow control. 'connected' indicates + that character data could flow on the network side + of session. 'connecting' indicates moving from + nonexistent toward 'connected'. 'disconnecting' + indicates moving from 'connected' or 'connecting' to + nonexistent." + ::= { charSessEntry 4 } + + charSessProtocol OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The network protocol over which the session is + running. Other OBJECT IDENTIFIER values may be + defined elsewhere, in association with specific + protocols. However, this document assigns those of + known interest as of this writing." + ::= { charSessEntry 5 } + + wellKnownProtocols OBJECT IDENTIFIER ::= { char 4 } + + protocolOther OBJECT IDENTIFIER ::= {wellKnownProtocols 1} + protocolTelnet OBJECT IDENTIFIER ::= {wellKnownProtocols 2} + protocolRlogin OBJECT IDENTIFIER ::= {wellKnownProtocols 3} + protocolLat OBJECT IDENTIFIER ::= {wellKnownProtocols 4} + protocolX29 OBJECT IDENTIFIER ::= {wellKnownProtocols 5} + protocolVtp OBJECT IDENTIFIER ::= {wellKnownProtocols 6} + + charSessOperOrigin OBJECT-TYPE + SYNTAX INTEGER { unknown(1), network(2), local(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The session's source of establishment." + ::= { charSessEntry 6 } + + charSessInCharacters OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This session's subset of charPortInCharacters." + ::= { charSessEntry 7 } + + charSessOutCharacters OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This session's subset of charPortOutCharacters." + ::= { charSessEntry 8 } + + charSessConnectionId OBJECT-TYPE + SYNTAX InstancePointer + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A reference to additional local MIB information. + This should be the highest available related MIB, + corresponding to charSessProtocol, such as Telnet. + For example, the value for a TCP connection (in the + absence of a Telnet MIB) is the object identifier of + tcpConnState. If an agent is not configured to have + such values, the agent returns the object + identifier: + + nullConnectionId OBJECT IDENTIFIER ::= { 0 0 } + " + ::= { charSessEntry 9 } + + charSessStartTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime in MIB-2 when the session + entered connecting state." + ::= { charSessEntry 10 } + + END diff --git a/pandora_console/attachment/mibs/RFC1317-MIB b/pandora_console/attachment/mibs/RFC1317-MIB new file mode 100644 index 0000000000..5ea6dab0b3 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1317-MIB @@ -0,0 +1,548 @@ +-- Changes for RFC1317 (RS-232 MIB) +-- No changes needed. +-- dperkins@scruznet.com + + + RFC1317-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- this is the MIB module for RS-232-like hardware devices + + rs232 OBJECT IDENTIFIER ::= { transmission 33 } + + + -- the generic RS-232-like group + + -- Implementation of this group is mandatory for all + -- systems that have RS-232-like hardware ports + -- supporting higher level services such as character + -- streams or network interfaces + + rs232Number OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ports (regardless of their current + state) in the RS-232-like general port table." + ::= { rs232 1 } + + + -- the RS-232-like general Port table + + rs232PortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232PortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port entries. The number of entries is + given by the value of rs232Number." + ::= { rs232 2 } + + rs232PortEntry OBJECT-TYPE + SYNTAX Rs232PortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Status and parameter values for a port." + INDEX { rs232PortIndex } + ::= { rs232PortTable 1 } + + Rs232PortEntry ::= + SEQUENCE { + rs232PortIndex + INTEGER, + rs232PortType + INTEGER, + rs232PortInSigNumber + INTEGER, + rs232PortOutSigNumber + INTEGER, + rs232PortInSpeed + INTEGER, + rs232PortOutSpeed + INTEGER } + + rs232PortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each port. Its value ranges + between 1 and the value of rs232Number. By + convention and if possible, hardware port numbers + map directly to external connectors. The value for + each port must remain constant at least from one + re-initialization of the network management agent to + the next." + ::= { rs232PortEntry 1 } + + rs232PortType OBJECT-TYPE + SYNTAX INTEGER { other(1), rs232(2), rs422(3), + rs423(4), v35(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port's hardware type." + ::= { rs232PortEntry 2 } + + rs232PortInSigNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input signals for the port in the + input signal table (rs232PortInSigTable). The table + contains entries only for those signals the software + can detect." + ::= { rs232PortEntry 3 } + + rs232PortOutSigNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of output signals for the port in the + output signal table (rs232PortOutSigTable). The + table contains entries only for those signals the + software can assert." + ::= { rs232PortEntry 4 } + + rs232PortInSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's input speed in bits per second." + ::= { rs232PortEntry 5 } + + rs232PortOutSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's output speed in bits per second." + ::= { rs232PortEntry 6 } + + + -- the RS-232-like Asynchronous Port group + + -- Implementation of this group is mandatory if the system + -- has any asynchronous ports. Otherwise it is not + -- present. + + rs232AsyncPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232AsyncPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of asynchronous port entries. The maximum + entry number is given by the value of rs232Number. + Entries need not exist for synchronous ports." + ::= { rs232 3 } + + rs232AsyncPortEntry OBJECT-TYPE + SYNTAX Rs232AsyncPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Status and parameter values for an asynchronous + port." + INDEX { rs232AsyncPortIndex } + ::= { rs232AsyncPortTable 1 } + + Rs232AsyncPortEntry ::= + SEQUENCE { + rs232AsyncPortIndex + INTEGER, + rs232AsyncPortBits + INTEGER, + rs232AsyncPortStopBits + INTEGER, + rs232AsyncPortParity + INTEGER, + rs232AsyncPortAutobaud + INTEGER, + rs232AsyncPortParityErrs + Counter, + rs232AsyncPortFramingErrs + Counter, + rs232AsyncPortOverrunErrs + Counter + + } + + rs232AsyncPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each port. Its value is the + same as rs232PortIndex for the port." + ::= { rs232AsyncPortEntry 1 } + + rs232AsyncPortBits OBJECT-TYPE + SYNTAX INTEGER (5..8) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's number of bits in a character." + ::= { rs232AsyncPortEntry 2 } + + rs232AsyncPortStopBits OBJECT-TYPE + SYNTAX INTEGER { one(1), two(2), + one-and-half(3), dynamic(4) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's number of stop bits." + ::= { rs232AsyncPortEntry 3 } + + rs232AsyncPortParity OBJECT-TYPE + SYNTAX INTEGER { none(1), odd(2), even(3), + mark(4), space(5) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port's sense of a character parity bit." + ::= { rs232AsyncPortEntry 4 } + + rs232AsyncPortAutobaud OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A control for the port's ability to automatically + sense input speed. + + When rs232PortAutoBaud is 'enabled', a port may + autobaud to values different from the set values for + speed, parity, and character size. As a result a + network management system may temporarily observe + values different from what was previously set." + ::= { rs232AsyncPortEntry 5 } + + rs232AsyncPortParityErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of characters with a parity error, + input from the port since system re-initialization + and while the port state was 'up' or 'test'." + ::= { rs232AsyncPortEntry 6 } + + rs232AsyncPortFramingErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of characters with a framing error, + input from the port since system re-initialization + and while the port state was 'up' or 'test'." + ::= { rs232AsyncPortEntry 7 } + + rs232AsyncPortOverrunErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of characters with an overrun error, + input from the port since system re-initialization + and while the port state was 'up' or 'test'." + ::= { rs232AsyncPortEntry 8 } + + + -- the RS-232-like Synchronous Port group + + -- Implementation of this group is mandatory if the system + -- has any synchronous ports. Otherwise it is not + -- present. + + rs232SyncPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232SyncPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of synchronous port entries. The maximum + entry number is given by the value of rs232Number. + Entries need not exist for asynchronous ports." + ::= { rs232 4 } + + rs232SyncPortEntry OBJECT-TYPE + SYNTAX Rs232SyncPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Status and parameter values for a synchronous + port." + INDEX { rs232SyncPortIndex } + ::= { rs232SyncPortTable 1 } + + Rs232SyncPortEntry ::= + SEQUENCE { + rs232SyncPortIndex + INTEGER, + rs232SyncPortClockSource + INTEGER, + rs232SyncPortFrameCheckErrs + Counter, + rs232SyncPortTransmitUnderrunErrs + Counter, + rs232SyncPortReceiveOverrunErrs + Counter, + rs232SyncPortInterruptedFrames + Counter, + rs232SyncPortAbortedFrames + Counter + } + + rs232SyncPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each port. Its value is the + same as rs232PortIndex for the port." + ::= { rs232SyncPortEntry 1 } + + rs232SyncPortClockSource OBJECT-TYPE + SYNTAX INTEGER { internal(1), external(2), split(3) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Source of the port's bit rate clock. 'split' means + the tranmit clock is internal and the receive clock + is external." + ::= { rs232SyncPortEntry 2 } + + rs232SyncPortFrameCheckErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of frames with an invalid frame check + sequence, input from the port since system + re-initialization and while the port state was 'up' + or 'test'." + ::= { rs232SyncPortEntry 3 } + + rs232SyncPortTransmitUnderrunErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of frames that failed to be + transmitted on the port since system + re-initialization and while the port state was 'up' + or 'test' because data was not available to the + transmitter in time." + ::= { rs232SyncPortEntry 4 } + + rs232SyncPortReceiveOverrunErrs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of frames that failed to be received + on the port since system re-initialization and while + the port state was 'up' or 'test' because the + receiver did not accept the data in time." + ::= { rs232SyncPortEntry 5 } + + rs232SyncPortInterruptedFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Total number of frames that failed to be received + or transmitted on the port due to loss of modem + signals since system re-initialization and while the + port state was 'up' or 'test'." + ::= { rs232SyncPortEntry 6 } + + rs232SyncPortAbortedFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of frames aborted on the port due to + receiving an abort sequence since system + re-initialization and while the port state was 'up' + or 'test'." + ::= { rs232SyncPortEntry 7 } + + + -- the Input Signal table + + rs232InSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232InSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port input control signal entries." + ::= { rs232 5 } + + rs232InSigEntry OBJECT-TYPE + SYNTAX Rs232InSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Input control signal status for a hardware port." + INDEX { rs232InSigPortIndex, rs232InSigName } + ::= { rs232InSigTable 1 } + + Rs232InSigEntry ::= + SEQUENCE { + rs232InSigPortIndex + INTEGER, + rs232InSigName + INTEGER, + rs232InSigState + INTEGER, + rs232InSigChanges + Counter + } + + rs232InSigPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of rs232PortIndex for the port to which + this entry belongs." + ::= { rs232InSigEntry 1 } + + rs232InSigName OBJECT-TYPE + SYNTAX INTEGER { rts(1), cts(2), dsr(3), dtr(4), ri(5), + dcd(6), sq(7), srs(8), srts(9), + scts(10), sdcd(11) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identification of a hardware signal, as follows: + + rts Request to Send + cts Clear to Send + dsr Data Set Ready + dtr Data Terminal Ready + ri Ring Indicator + dcd Received Line Signal Detector + sq Signal Quality Detector + srs Data Signaling Rate Selector + srts Secondary Request to Send + scts Secondary Clear to Send + sdcd Secondary Received Line Signal Detector + " + REFERENCE + "EIA Standard RS-232-C, August 1969." + ::= { rs232InSigEntry 2 } + + rs232InSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current signal state." + ::= { rs232InSigEntry 3 } + + rs232InSigChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { rs232InSigEntry 4 } + + + -- the Output Signal table + + rs232OutSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232OutSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port output control signal entries." + ::= { rs232 6 } + + rs232OutSigEntry OBJECT-TYPE + SYNTAX Rs232OutSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Output control signal status for a hardware port." + INDEX { rs232OutSigPortIndex, rs232OutSigName } + ::= { rs232OutSigTable 1 } + + Rs232OutSigEntry ::= + SEQUENCE { + rs232OutSigPortIndex + INTEGER, + rs232OutSigName + INTEGER, + rs232OutSigState + INTEGER, + rs232OutSigChanges + Counter + } + + rs232OutSigPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of rs232PortIndex for the port to which + this entry belongs." + ::= { rs232OutSigEntry 1 } + + rs232OutSigName OBJECT-TYPE + SYNTAX INTEGER { rts(1), cts(2), dsr(3), dtr(4), ri(5), + dcd(6), sq(7), srs(8), srts(9), + scts(10), sdcd(11) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identification of a hardware signal, as follows: + + rts Request to Send + cts Clear to Send + dsr Data Set Ready + dtr Data Terminal Ready + ri Ring Indicator + dcd Received Line Signal Detector + sq Signal Quality Detector + srs Data Signaling Rate Selector + srts Secondary Request to Send + scts Secondary Clear to Send + sdcd Secondary Received Line Signal Detector + " + REFERENCE + "EIA Standard RS-232-C, August 1969." + ::= { rs232OutSigEntry 2 } + + rs232OutSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current signal state." + ::= { rs232OutSigEntry 3 } + + rs232OutSigChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { rs232OutSigEntry 4 } + + END diff --git a/pandora_console/attachment/mibs/RFC1318-MIB b/pandora_console/attachment/mibs/RFC1318-MIB new file mode 100644 index 0000000000..3ae3384874 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1318-MIB @@ -0,0 +1,253 @@ +-- Changes to RFC1318 (Parallel Printer MIB) +-- No changes needed. +-- dperkins@scruznet.com + + + RFC1318-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- this is the MIB module for Parallel-printer-like + -- hardware devices + + para OBJECT IDENTIFIER ::= { transmission 34 } + + -- the generic Parallel-printer-like group + + -- Implementation of this group is mandatory for all + -- systems that have Parallel-printer-like hardware + -- ports supporting higher level services such as + -- character streams + + paraNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of ports (regardless of their current + state) in the Parallel-printer-like port table." + ::= { para 1 } + + + -- the Parallel-printer-like Port table + + paraPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParaPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port entries. The number of entries is + given by the value of paraNumber." + ::= { para 2 } + + + paraPortEntry OBJECT-TYPE + SYNTAX ParaPortEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Status and parameter values for a port." + INDEX { paraPortIndex } + ::= { paraPortTable 1 } + + ParaPortEntry ::= + SEQUENCE { + paraPortIndex + INTEGER, + paraPortType + INTEGER, + paraPortInSigNumber + INTEGER, + paraPortOutSigNumber + INTEGER + } + + paraPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A unique value for each port. Its value ranges + between 1 and the value of paraNumber. By + convention and if possible, hardware port numbers + map directly to external connectors. The value for + each port must remain constant at least from one + re-initialization of the network management agent to + the next." + ::= { paraPortEntry 1 } + + paraPortType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + centronics(2), + dataproducts(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The port's hardware type." + ::= { paraPortEntry 2 } + + paraPortInSigNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of input signals for the port in the + input signal table (paraPortInSigTable). The table + contains entries only for those signals the software + can detect." + ::= { paraPortEntry 3 } + + paraPortOutSigNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of output signals for the port in the + output signal table (paraPortOutSigTable). The + table contains entries only for those signals the + software can assert." + ::= { paraPortEntry 4 } + + + -- the Input Signal table + + paraInSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParaInSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port input control signal entries." + ::= { para 3 } + + paraInSigEntry OBJECT-TYPE + SYNTAX ParaInSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Input control signal status for a hardware port." + INDEX { paraInSigPortIndex, paraInSigName } + ::= { paraInSigTable 1 } + + ParaInSigEntry ::= + SEQUENCE { + paraInSigPortIndex + INTEGER, + paraInSigName + INTEGER, + paraInSigState + INTEGER, + paraInSigChanges + Counter + } + + paraInSigPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of paraPortIndex for the port to which + this entry belongs." + ::= { paraInSigEntry 1 } + + paraInSigName OBJECT-TYPE + SYNTAX INTEGER { power(1), online(2), busy(3), + paperout(4), fault(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identification of a hardware signal." + ::= { paraInSigEntry 2 } + + paraInSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current signal state." + ::= { paraInSigEntry 3 } + + paraInSigChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { paraInSigEntry 4 } + + + -- the Output Signal table + + paraOutSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF ParaOutSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of port output control signal entries." + ::= { para 4 } + + paraOutSigEntry OBJECT-TYPE + SYNTAX ParaOutSigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Output control signal status for a hardware port." + INDEX { paraOutSigPortIndex, paraOutSigName } + ::= { paraOutSigTable 1 } + + ParaOutSigEntry ::= + SEQUENCE { + paraOutSigPortIndex + INTEGER, + paraOutSigName + INTEGER, + paraOutSigState + INTEGER, + paraOutSigChanges + Counter + } + + paraOutSigPortIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of paraPortIndex for the port to which + this entry belongs." + ::= { paraOutSigEntry 1 } + + paraOutSigName OBJECT-TYPE + SYNTAX INTEGER { power(1), online(2), busy(3), + paperout(4), fault(5) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identification of a hardware signal." + ::= { paraOutSigEntry 2 } + + paraOutSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current signal state." + ::= { paraOutSigEntry 3 } + + paraOutSigChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { paraOutSigEntry 4 } + + END diff --git a/pandora_console/attachment/mibs/RFC1381-MIB b/pandora_console/attachment/mibs/RFC1381-MIB new file mode 100644 index 0000000000..65236e2254 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1381-MIB @@ -0,0 +1,1005 @@ +-- Changes to rfc1381 (X.25 LAPB MIB): +-- No changes needed. +-- dperkins@scruznet.com + +RFC1381-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- LAPB MIB + + lapb OBJECT IDENTIFIER ::= { transmission 16 } + + PositiveInteger ::= INTEGER (0..2147483647) + + IfIndexType ::= INTEGER (1..2147483647) + -- IfIndexType specifies an index object for a table + -- with entries that match entries in the MIB-II ifTable. + -- The value of the index for the table will match the + -- ifIndex entry for same interface in the ifTable. + -- The values of this object range from 1 to ifNumber + -- inclusive. + + -- ########################################################### + -- LAPB Admn Table + -- ########################################################### + + -- Support of the lapbAdmnTable is mandatory for all + -- agents of systems that implement LAPB. + + lapbAdmnTable OBJECT-TYPE + SYNTAX SEQUENCE OF LapbAdmnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains objects that can be + changed to manage a LAPB interface. + Changing one of these parameters may take + effect in the operating LAPB immediately or + may wait until the interface is restarted + depending on the details of the + implementation. + + Most of the objects in this read-write table + have corresponding read-only objects in the + lapbOperTable that return the current + operating value. + + The operating values may be different from + these configured values if changed by XID + negotiation or if a configured parameter was + changed after the interface was started." + ::= { lapb 1 } + + lapbAdmnEntry OBJECT-TYPE + SYNTAX LapbAdmnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Configured parameter values for a specific + LAPB." + INDEX { lapbAdmnIndex } + ::= { lapbAdmnTable 1 } + + LapbAdmnEntry ::= SEQUENCE { + lapbAdmnIndex + IfIndexType, + lapbAdmnStationType + INTEGER, + lapbAdmnControlField + INTEGER, + lapbAdmnTransmitN1FrameSize + PositiveInteger, + lapbAdmnReceiveN1FrameSize + PositiveInteger, + lapbAdmnTransmitKWindowSize + INTEGER, + lapbAdmnReceiveKWindowSize + INTEGER, + lapbAdmnN2RxmitCount + INTEGER, + lapbAdmnT1AckTimer + PositiveInteger, + lapbAdmnT2AckDelayTimer + PositiveInteger, + lapbAdmnT3DisconnectTimer + PositiveInteger, + lapbAdmnT4IdleTimer + PositiveInteger, + lapbAdmnActionInitiate + INTEGER, + lapbAdmnActionRecvDM + INTEGER + } + + lapbAdmnIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the LAPB interface." + ::= { lapbAdmnEntry 1 } + + lapbAdmnStationType OBJECT-TYPE + SYNTAX INTEGER { + dte (1), + dce (2), + dxe (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Identifies the desired station type of this + interface." + REFERENCE "ISO 7776 section 3.1" + DEFVAL { dte } + ::= { lapbAdmnEntry 2 } + + lapbAdmnControlField OBJECT-TYPE + SYNTAX INTEGER { + modulo8 (1), + modulo128 (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The desired size of the sequence numbers + used to number frames." + REFERENCE "ISO 8885 Table 3, Name: HDLC Option - 10" + DEFVAL { modulo8 } + ::= { lapbAdmnEntry 3 } + + lapbAdmnTransmitN1FrameSize OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default maximum N1 frame size desired + in number of bits for a frame transmitted by + this DTE. This excludes flags and 0 bits + inserted for transparency." + REFERENCE "ISO 8885 Table 3, + Name: Information Field length" + DEFVAL { 36000 } -- 4500 * 8; 802.5 Frame size + ::= { lapbAdmnEntry 4 } + + lapbAdmnReceiveN1FrameSize OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default maximum N1 frame size desired + in number of bits for a frame the DCE/remote + DTE transmits to this DTE. This excludes + flags and 0 bits inserted for transparency." + DEFVAL { 36000 } -- 4500 * 8; 802.5 Frame size + ::= { lapbAdmnEntry 5 } + + lapbAdmnTransmitKWindowSize OBJECT-TYPE + SYNTAX INTEGER (1..127) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default transmit window size for this + Interface. This is the maximum number of + unacknowledged sequenced PDUs that may be + outstanding from this DTE at any one time." + REFERENCE "ISO 8885 Table 3, Name: Window size" + DEFVAL { 7 } + ::= { lapbAdmnEntry 6 } + + lapbAdmnReceiveKWindowSize OBJECT-TYPE + SYNTAX INTEGER (1..127) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default receive window size for this + Interface. This is the maximum number of + unacknowledged sequenced PDUs that may be + outstanding from the DCE/remote DTE at any + one time." + REFERENCE "ISO 8885 Table 3, Name: Window size" + DEFVAL { 7 } + ::= { lapbAdmnEntry 7 } + + lapbAdmnN2RxmitCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default N2 retry counter for this + interface. This specifies the number of + times a PDU will be resent after the T1 + timer expires without an acknowledgement for + the PDU." + REFERENCE "ISO 8885 Table 3, + Name: Retransmission Attempts" + DEFVAL { 20 } + ::= { lapbAdmnEntry 8 } + + lapbAdmnT1AckTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default T1 timer for this interface. + This specifies the maximum time in + Milliseconds to wait for acknowledgment of a + PDU." + REFERENCE "ISO 8885 Table 3, Name: + Acknowledgement timer" + DEFVAL { 3000 } + ::= { lapbAdmnEntry 9 } + + lapbAdmnT2AckDelayTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The default T2 timer for this interface. + This specifies the maximum time in + Milliseconds to wait before sending an + acknowledgment for a sequenced PDU. A value + of zero means there will be no delay in + acknowledgement generation." + REFERENCE "ISO 8885 Table 3, + Name: Reply delay timer" + DEFVAL { 0 } + ::= { lapbAdmnEntry 10 } + + lapbAdmnT3DisconnectTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T3 timer for this interface. This + specifies the time in Milliseconds to wait + before considering the link disconnected. A + value of zero indicates the link will be + considered disconnected upon completion of + the frame exchange to disconnect the link." + REFERENCE "ISO 7776 section 5.7.1.3" + DEFVAL { 60000 } + ::= { lapbAdmnEntry 11 } + + lapbAdmnT4IdleTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T4 timer for this interface. This + specifies the maximum time in Milliseconds + to allow without frames being exchanged on + the data link. A value of 2147483647 + indicates no idle timer is being kept." + REFERENCE "ISO 7776 section 5.7.1.4" + DEFVAL { 2147483647 } + ::= { lapbAdmnEntry 12 } + + lapbAdmnActionInitiate OBJECT-TYPE + SYNTAX INTEGER { + sendSABM (1), + sendDISC (2), + sendDM (3), + none (4), + other (5) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This identifies the action LAPB will take + to initiate link set-up." + DEFVAL { sendSABM } + ::= { lapbAdmnEntry 13 } + + + lapbAdmnActionRecvDM OBJECT-TYPE + SYNTAX INTEGER { + sendSABM (1), + sendDISC (2), + other (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This identifies the action LAPB will take + when it receives a DM response." + DEFVAL { sendSABM } + ::= { lapbAdmnEntry 14 } + + -- ########################################################### + -- LAPB operating parameters. + -- ########################################################### + + -- Support of the lapbOperTable is mandatory for all + -- agents of systems that implement LAPB. + + lapbOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF LapbOperEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains configuration + information about interface parameters + currently set in the interface. Many of + these objects have corresponding objects in + the lapbAdmnTable." + ::= { lapb 2 } + + lapbOperEntry OBJECT-TYPE + SYNTAX LapbOperEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Currently set parameter values for a + specific LAPB." + INDEX { lapbOperIndex } + ::= { lapbOperTable 1 } + + LapbOperEntry ::= SEQUENCE { + lapbOperIndex + IfIndexType, + lapbOperStationType + INTEGER, + lapbOperControlField + INTEGER, + lapbOperTransmitN1FrameSize + PositiveInteger, + lapbOperReceiveN1FrameSize + PositiveInteger, + lapbOperTransmitKWindowSize + INTEGER, + lapbOperReceiveKWindowSize + INTEGER, + lapbOperN2RxmitCount + INTEGER, + lapbOperT1AckTimer + PositiveInteger, + lapbOperT2AckDelayTimer + PositiveInteger, + lapbOperT3DisconnectTimer + PositiveInteger, + lapbOperT4IdleTimer + PositiveInteger, + lapbOperPortId + OBJECT IDENTIFIER, + lapbOperProtocolVersionId + OBJECT IDENTIFIER + } + + lapbOperIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the LAPB interface." + ::= { lapbOperEntry 1 } + + lapbOperStationType OBJECT-TYPE + SYNTAX INTEGER { + dte (1), + dce (2), + dxe (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the current operating station + type of this interface. A value of dxe (3) + indicates XID negotiation has not yet taken + place." + REFERENCE "ISO 7776 section 3.1" + ::= { lapbOperEntry 2 } + + lapbOperControlField OBJECT-TYPE + SYNTAX INTEGER { + modulo8 (1), + modulo128 (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operating size of the sequence + numbers used to number frames." + REFERENCE "ISO 7776 section 3.3" + ::= { lapbOperEntry 3 } + + lapbOperTransmitN1FrameSize OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current operating N1 frame size used + for the maximum number of bits in a frame + this DTE can transmit. This excludes flags + and 0 bits inserted for transparency." + REFERENCE "ISO 7776 section 5.7.3" + ::= { lapbOperEntry 4 } + + lapbOperReceiveN1FrameSize OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + -- See lapbOperTransmitN1FrameSize above + DESCRIPTION + "The current operating N1 frame size used + for the maximum number of bits in a frame + the DCE/remote DTE can transmit. This + excludes flags and 0 bits inserted for + transparency." + ::= { lapbOperEntry 5 } + + lapbOperTransmitKWindowSize OBJECT-TYPE + SYNTAX INTEGER (1..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current PDU window size this Interface + uses to transmit. This is the maximum + number of unacknowledged sequenced PDUs that + may be outstanding from this DTE at any one + time." + REFERENCE "ISO 7776 section 5.7.4" + ::= { lapbOperEntry 6 } + + lapbOperReceiveKWindowSize OBJECT-TYPE + SYNTAX INTEGER (1..127) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current receive PDU window size for + this Interface. This is the maximum number + of unacknowledged sequenced PDUs that may be + outstanding from the DCE/remote DTE at any + one time." + REFERENCE "ISO 7776 section 5.7.4" + ::= { lapbOperEntry 7 } + + lapbOperN2RxmitCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current N2 retry counter used for this + interface. This specifies the number of + times a PDU will be resent after the T1 + timer expires without an acknowledgement for + the PDU." + REFERENCE "ISO 7776 section 5.7.2" + ::= { lapbOperEntry 8 } + + lapbOperT1AckTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current T1 timer for this interface. + This specifies the maximum time in + Milliseconds to wait for acknowledgment of a + PDU." + REFERENCE "ISO 7776 section 5.7.1.1" + ::= { lapbOperEntry 9 } + + lapbOperT2AckDelayTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current T2 timer for this interface. + This specifies the maximum time in + Milliseconds to wait before sending an + acknowledgment for a sequenced PDU. A value + of zero means there will be no delay in + acknowledgement generation." + REFERENCE "ISO 7776 section 5.7.1.2" + ::= { lapbOperEntry 10 } + + lapbOperT3DisconnectTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current T3 timer for this interface. + This specifies the time in Milliseconds to + wait before considering the link + disconnected. A value of zero indicates the + link will be considered disconnected upon + completion of the frame exchange to + disconnect the link." + REFERENCE "ISO 7776 section 5.7.1.3" + ::= { lapbOperEntry 11 } + + lapbOperT4IdleTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The current T4 timer for this interface. + This specifies the maximum time in + Milliseconds to allow without frames being + exchanged on the data link. A value of + 2147483647 indicates no idle timer is being + kept." + REFERENCE "ISO 7776 section 5.7.1.4" + ::= { lapbOperEntry 12 } + + lapbOperPortId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object identifies an instance of the + index object in the first group of objects + in the MIB specific to the physical device + or interface used to send and receive + frames. If an agent does not support any + such objects, it should return nullSpec + OBJECT IDENTIFIER {0 0}." + ::= { lapbOperEntry 13 } + + lapbOperProtocolVersionId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object identifies the version of the + lapb protocol implemented by this + interface." + ::= { lapbOperEntry 14 } + + -- ########################################################### + -- LAPB Flow Table + -- ########################################################### + + -- Support of the lapbFlowTable is mandatory for all + -- agents of systems that implement LAPB. + + lapbFlowTable OBJECT-TYPE + SYNTAX SEQUENCE OF LapbFlowEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table defines the objects recorded by + LAPB to provide information about the + traffic flow through the interface." + ::= { lapb 3 } + + lapbFlowEntry OBJECT-TYPE + SYNTAX LapbFlowEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The information regarding the effects of + flow controls in LAPB." + INDEX { lapbFlowIfIndex } + ::= { lapbFlowTable 1 } + + LapbFlowEntry ::= SEQUENCE { + lapbFlowIfIndex + IfIndexType, + lapbFlowStateChanges + Counter, + lapbFlowChangeReason + INTEGER, + lapbFlowCurrentMode + INTEGER, + lapbFlowBusyDefers + Counter, + lapbFlowRejOutPkts + Counter, + lapbFlowRejInPkts + Counter, + lapbFlowT1Timeouts + Counter, + lapbFlowFrmrSent + OCTET STRING, + lapbFlowFrmrReceived + OCTET STRING, + lapbFlowXidReceived + OCTET STRING + } + + lapbFlowIfIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the LAPB Interface." + ::= { lapbFlowEntry 1 } + + lapbFlowStateChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of LAPB State Changes, including + resets." + ::= { lapbFlowEntry 2 } + + lapbFlowChangeReason OBJECT-TYPE + SYNTAX INTEGER { + notStarted (1), -- Initial state + abmEntered (2), -- SABM or UA + abmeEntered (3), -- SABME or UA + abmReset (4), -- SABM in ABM + abmeReset (5), -- SABME in ABME + dmReceived (6), -- DM Response + dmSent (7), -- DM sent + discReceived (8), -- DISC Response + discSent (9), -- DISC Sent + frmrReceived (10), -- FRMR Received + frmrSent (11), -- FRMR Sent + n2Timeout (12), -- N2 Timer Expired + other (13) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The reason for the most recent incrementing + of lapbFlowStateChanges. A DM or DISC frame + generated to initiate link set-up does not + alter this object. When the MIB-II object + ifOperStatus does not have a value of + testing, there exists a correlation between + this object and ifOperStatus. IfOperStatus + will have a value of up when this object + contains: abmEntered, abmeEntered, + abmReset, or abmeReset. IfOperStatus will + have a value of down when this object has a + value of notStarted, or dmReceived through + n2Timeout. There is no correlation when + this object has the value other." + ::= { lapbFlowEntry 3 } + + lapbFlowCurrentMode OBJECT-TYPE + SYNTAX INTEGER { + disconnected (1), + -- initial state or DISC received + + linkSetup (2), + -- SABM sent + + frameReject (3), + -- Invalid frame received and + -- FRMR sent + + disconnectRequest (4), + -- DISC sent + + informationTransfer (5), + -- normal information transfer state + -- SABM(E) sent and UA received, or + -- SABM(E) received and UA sent + + rejFrameSent (6), + -- invalid NS received and REJ sent + + waitingAcknowledgement (7), + -- T1 expired and RR sent + + stationBusy (8), + -- RNR sent + + remoteStationBusy (9), + -- RNR received + + bothStationsBusy (10), + -- RNR received and RNR sent + + waitingAckStationBusy (11), + -- T1 expired, RNR sent + + waitingAckRemoteBusy (12), + -- T1 expired, RNR received + + waitingAckBothBusy (13), + -- T1 expired, RNR sent, + -- and RNR received + + rejFrameSentRemoteBusy (14), + -- REJ sent and RNR received + + xidFrameSent (15), + -- XID frame sent + + error (16), + -- An error state other than + -- a one defined above + + other (17) + -- A state not listed above + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the conversation." + ::= { lapbFlowEntry 4 } + + lapbFlowBusyDefers OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times this device was unable + to transmit a frame due to a perceived + remote busy condition. Busy conditions can + result from the receipt of an RNR from the + remote device, the lack of valid sequence + number space (window saturation), or other + conditions." + ::= { lapbFlowEntry 5 } + + lapbFlowRejOutPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of REJ or SREJ frames sent by + this station." + ::= { lapbFlowEntry 6 } + + lapbFlowRejInPkts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of REJ or SREJ frames received + by this station." + ::= { lapbFlowEntry 7 } + + lapbFlowT1Timeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times a re-transmission was + effected by the T1 Timer expiring." + ::= { lapbFlowEntry 8 } + + lapbFlowFrmrSent OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Information Field of the FRMR most + recently sent. If no FRMR has been sent + (the normal case) or the information isn't + available, this will be an OCTET STRING of + zero length." + REFERENCE "ISO 7776 Section 4.3.9, tables 7 and 8" + ::= { lapbFlowEntry 9 } + + lapbFlowFrmrReceived OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..7)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Information Field of the FRMR most + recently received. If no FRMR has been + received (the normal case) or the + information isn't available, this will be an + OCTET STRING of zero length." + REFERENCE "ISO 7776 Section 4.3.9, tables 7 and 8" + ::= { lapbFlowEntry 10 } + + lapbFlowXidReceived OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8206)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Information Field of the XID frame most + recently received. If no XID frame has been + received, this will be an OCTET STRING of + zero length." + REFERENCE "ISO 8885" + ::= { lapbFlowEntry 11 } + + -- ########################################################### + -- LAPB XID Table + -- ########################################################### + + -- Support for the lapbXidTable is mandatory for all agents + -- of systems that have a LAPB implementation using XID + -- negotiation. Agents of systems without XID negotiation + -- support should not implement this table. + + lapbXidTable OBJECT-TYPE + SYNTAX SEQUENCE OF LapbXidEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table defines values to use for XID + negotiation that are not found in the + lapbAdmnTable. This table is optional for + implementations that don't support XID and + mandatory for implementations that do + initiate XID negotiation." + ::= { lapb 4 } + + lapbXidEntry OBJECT-TYPE + SYNTAX LapbXidEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "XId negotiation parameter values for a + specific LAPB." + INDEX { lapbXidIndex } + ::= { lapbXidTable 1 } + + LapbXidEntry ::= SEQUENCE { + lapbXidIndex + IfIndexType, + lapbXidAdRIdentifier + OCTET STRING, + lapbXidAdRAddress + OCTET STRING, + lapbXidParameterUniqueIdentifier + OCTET STRING, + lapbXidGroupAddress + OCTET STRING, + lapbXidPortNumber + OCTET STRING, + lapbXidUserDataSubfield + OCTET STRING + } + + lapbXidIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the LAPB interface." + ::= { lapbXidEntry 1 } + + lapbXidAdRIdentifier OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the Address Resolution + Identifier. A zero length string indicates + no Identifier value has been assigned." + REFERENCE "ISO 8885 Table 2, Name: Identifier" + DEFVAL { ''h } + ::= { lapbXidEntry 2 } + + lapbXidAdRAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the Address Resolution + Address. A zero length string indicates no + Address value has been assigned." + REFERENCE "ISO 8885 Table 2, Name: Address" + DEFVAL { ''h } + ::= { lapbXidEntry 3 } + + lapbXidParameterUniqueIdentifier OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the parameter unique + Identifier. A zero length string indicates + no Unique identifier value has been + assigned." + REFERENCE "ISO 8885 Table 3, Name: Identifier" + DEFVAL { ''h } + ::= { lapbXidEntry 4 } + + lapbXidGroupAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value of the parameter Group address. + A zero length string indicates no Group + address value has been assigned." + REFERENCE "ISO 8885 Table 3, Name: Group address" + DEFVAL { ''h } + ::= { lapbXidEntry 5 } + + lapbXidPortNumber OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The port number assigned for this link. A + zero length string indicates no local port + number identifier has been assigned." + REFERENCE "ISO 8885 Table 3, Name: Port number" + DEFVAL { ''h } + ::= { lapbXidEntry 6 } + + lapbXidUserDataSubfield OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..8206)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A user data subfield, if any, to be + transmitted in an XID frame. A zero length + frame indicates no user data subfield has + been assigned. The octet string should + include both the User data identifier and + User data field as shown in Figures 1 and + 4." + REFERENCE "ISO 8885 section 4.3" + DEFVAL { ''h } + ::= { lapbXidEntry 7 } + + -- ########################################################### + -- LAPB protocol versions + -- ########################################################### + + lapbProtocolVersion OBJECT IDENTIFIER + ::= { lapb 5 } + + lapbProtocolIso7776v1986 OBJECT IDENTIFIER + ::= { lapbProtocolVersion 1 } + + lapbProtocolCcittV1980 OBJECT IDENTIFIER + ::= { lapbProtocolVersion 2 } + + lapbProtocolCcittV1984 OBJECT IDENTIFIER + ::= { lapbProtocolVersion 3 } + + -- The following describes some of the MIB-II interface + -- objects and their relationship with the objects in this + -- MIB extension. + + -- ifDescr: describes the interface. It should include + -- identification information for the physical line and a + -- description of the network. For connections to PDNs, + -- it should name the PDN. + + -- ifMtu: the maximum number of octets an upper layer can + -- pass to this interface as a single frame. + + -- ifSpeed: + + -- ifAdminStatus: + + -- ifOperStatus: + + -- ifLastChange: the last time the state of the interface + -- changed. A reset is considered an instantaneous change to + -- the ndm state and back to abm or abme. This will be the + -- last time that lapbFlowChangeReason and lapbFlowChanges + -- changed. + + -- ifInOctets: contains the number of octets + -- received from the peer LAPB including FCS. + + -- ifInUcastPkts: contains the number of I-frames delivered + -- by this interface to a higher layer interface. + + -- ifInDiscards: contains the number of received + -- frames discarded because of internal conditions + -- (such as lack of buffering). + + -- ifInErrors: contains the number of Invalid frames received. + -- This does not have any relationship with the number REJ, + -- or RNR frames sent or received. + + -- ifInUnknownProtos: contains the number of frames + -- that were correct but were dropped because they + -- were inappropriate for the current state. This + -- includes an invalid Poll bit, an unknown address, + -- or other condition such as an RNR when connection + -- not established. This also includes the number of + -- DISC or other frames that were ignored because the + -- link was not established and this interface was not + -- configured to perform link setup on that type frame. + + -- ifOutOctets: number of octets sent to peer including + -- FCS octets. + + -- ifOutUcastPkts: number of I-frames received from + -- a higher layer for transmission to peer. + + -- ifOutDiscards: number of frames to be sent that were + -- dropped due to internal conditions such as buffering etc. + + -- ifOutErrors: number of transmissions that failed + -- due to errors or were considered invalid by the receiver. + -- This does not have any relationship with the number REJ, + -- or RNR frames sent or received. + + -- ifOutQLen: number of frames waiting to be transmitted. + + -- This MIB does not provide any support for: + -- Multilink procedure (MLP) in ISO 7776 section 6 + -- LLC Pbit timer + -- LLC REJ timer + -- LLC Busy State Timer 7.8.1.4 + + -- ########################################################### + +END diff --git a/pandora_console/attachment/mibs/RFC1382-MIB b/pandora_console/attachment/mibs/RFC1382-MIB new file mode 100644 index 0000000000..670f55473e --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1382-MIB @@ -0,0 +1,2625 @@ +-- Changes to rfc1382 (X.25 Packet Layer MIB): +-- No changes needed. +-- dperkins@scruznet.com + +RFC1382-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter, Gauge, TimeTicks + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString, transmission + FROM RFC1213-MIB + TRAP-TYPE + FROM RFC-1215 + EntryStatus + FROM RFC1271-MIB + PositiveInteger, + IfIndexType + FROM RFC1381-MIB; + + x25 OBJECT IDENTIFIER ::= { transmission 5 } + + -- Support of the X25 subtree and all subtrees under it + -- is mandatory for all agents of system that implement X.25. + + X121Address ::= OCTET STRING (SIZE(0..17)) + -- 0 to 17 bytes in length containing the ASCII + -- characters [0-9], each octet contains one digit + -- of the address. + + -- ########################################################### + -- X.25 Administration Table + -- ########################################################### + + x25AdmnTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25AdmnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "This table contains the administratively + set configuration parameters for an X.25 + Packet Level Entity (PLE). + + Most of the objects in this table have + corresponding objects in the x25OperTable. + This table contains the values as last set + by the administrator. The x25OperTable + contains the values actually in use by an + X.25 PLE. + + Changing an administrative value may or may + not change a current operating value. The + operating value may not change until the + interface is restarted. Some + implementations may change the values + immediately upon changing the administrative + table. All implementations are required to + load the values from the administrative + table when initializing a PLE." + ::= { x25 1 } + + x25AdmnEntry OBJECT-TYPE + SYNTAX X25AdmnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entries of x25AdmnTable." + INDEX { x25AdmnIndex } + ::= { x25AdmnTable 1 } + + X25AdmnEntry ::= SEQUENCE { + x25AdmnIndex + IfIndexType, + x25AdmnInterfaceMode + INTEGER, + x25AdmnMaxActiveCircuits + INTEGER, + x25AdmnPacketSequencing + INTEGER, + x25AdmnRestartTimer + PositiveInteger, + x25AdmnCallTimer + PositiveInteger, + x25AdmnResetTimer + PositiveInteger, + x25AdmnClearTimer + PositiveInteger, + x25AdmnWindowTimer + PositiveInteger, + x25AdmnDataRxmtTimer + PositiveInteger, + x25AdmnInterruptTimer + PositiveInteger, + x25AdmnRejectTimer + PositiveInteger, + x25AdmnRegistrationRequestTimer + PositiveInteger, + x25AdmnMinimumRecallTimer + PositiveInteger, + x25AdmnRestartCount + INTEGER, + x25AdmnResetCount + INTEGER, + x25AdmnClearCount + INTEGER, + x25AdmnDataRxmtCount + INTEGER, + x25AdmnRejectCount + INTEGER, + x25AdmnRegistrationRequestCount + INTEGER, + x25AdmnNumberPVCs + INTEGER, + x25AdmnDefCallParamId + OBJECT IDENTIFIER, + x25AdmnLocalAddress + X121Address, + x25AdmnProtocolVersionSupported + OBJECT IDENTIFIER + } + + x25AdmnIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the X.25 Interface." + ::= { x25AdmnEntry 1 } + + x25AdmnInterfaceMode OBJECT-TYPE + SYNTAX INTEGER { + dte (1), + dce (2), + dxe (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Identifies DCE/DTE mode in which the + interface operates. A value of dxe + indicates the mode will be determined by XID + negotiation." + REFERENCE "10733 5.9 interfaceMode" + ::= { x25AdmnEntry 2 } + + x25AdmnMaxActiveCircuits OBJECT-TYPE + SYNTAX INTEGER (0..4096) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum number of circuits this PLE can + support; including PVCs." + REFERENCE "10733 5.9 maxActiveCircuits; + See ISO 8208, Section 3.7" + ::= { x25AdmnEntry 3 } + + x25AdmnPacketSequencing OBJECT-TYPE + SYNTAX INTEGER { + modulo8 (1), + modulo128 (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The modulus of the packet sequence number + space." + REFERENCE "10733 extendedPacketSequencing; + See ISO 8208 Section 7.1.1" + ::= { x25AdmnEntry 4 } + + x25AdmnRestartTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T20 restart timer in milliseconds." + REFERENCE "10733 5.9 restartTime + See ISO 8208 Section 4.1, table 26" + ::= { x25AdmnEntry 5 } + + + x25AdmnCallTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T21 Call timer in milliseconds." + REFERENCE "10733 callTime; + See ISO 8208 Section 5.2.1, table 26" + ::= { x25AdmnEntry 6 } + + x25AdmnResetTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T22 Reset timer in milliseconds." + REFERENCE "10733 resetTime; + See ISO 8208 Section 8.1, table 26" + ::= { x25AdmnEntry 7 } + + x25AdmnClearTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T23 Clear timer in milliseconds." + REFERENCE "10733 clearTime; + See ISO 8208 Section 5.5.1, table 26" + ::= { x25AdmnEntry 8 } + + x25AdmnWindowTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T24 window status transmission timer in + milliseconds. A value of 2147483647 + indicates no window timer in use." + REFERENCE "10733 5.10.1 windowTime (opt); + See ISO 8208 Section 11.2.2, table 26" + ::= { x25AdmnEntry 9 } + + x25AdmnDataRxmtTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T25 data retransmission timer in + milliseconds. A value of 2147483647 + indicates no data retransmission timer in + use." + REFERENCE "10733 5.10.1 dataRetransmissionTime (opt); + See ISO 8208 Section 11.2.1, table 26" + ::= { x25AdmnEntry 10 } + + x25AdmnInterruptTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T26 interrupt timer in milliseconds. A + value of 2147483647 indicates no interrupt + timer in use." + REFERENCE "10733 interruptTime; + See ISO 8208 Section 6.8.1, table 26" + ::= { x25AdmnEntry 11 } + + x25AdmnRejectTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T27 Reject retransmission timer in + milliseconds. A value of 2147483647 + indicates no reject timer in use." + REFERENCE "10733 5.10.1 dataRejectTime (opt); + See ISO 8208 Section 13.4.1, table 26" + ::= { x25AdmnEntry 12 } + + x25AdmnRegistrationRequestTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The T28 registration timer in milliseconds. + A value of 2147483647 indicates no + registration timer in use." + REFERENCE "10733 5.8.1 registrationRequestTime (opt) + See ISO 8208 Section 13.1.1.1, table 26" + ::= { x25AdmnEntry 13 } + + x25AdmnMinimumRecallTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Minimum time interval between unsuccessful + call attempts in milliseconds." + REFERENCE "10733 5.9 minimum RecallTimer" + ::= { x25AdmnEntry 14 } + + x25AdmnRestartCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The R20 restart retransmission count." + REFERENCE "10733 5.9 restartCount; + See ISO 8208 Section 4.1, table 27" + ::= { x25AdmnEntry 15 } + + x25AdmnResetCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The r22 Reset retransmission count." + REFERENCE "10733 resetCount; + See section ISO 8208 8.1, table 27" + ::= { x25AdmnEntry 16 } + + x25AdmnClearCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The r23 Clear retransmission count." + REFERENCE "10733 clearCount; + See ISO 8208 Section 5.5.1, table 27" + ::= { x25AdmnEntry 17 } + + x25AdmnDataRxmtCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The R25 Data retransmission count. This + value is irrelevant if the + x25AdmnDataRxmtTimer indicates no timer in + use." + REFERENCE "10733 5.10.1 dataRetransmissionCount (opt) + See ISO 8208 Section 11.2.1, table 27" + ::= { x25AdmnEntry 18 } + + + x25AdmnRejectCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The R27 reject retransmission count. This + value is irrelevant if the + x25AdmnRejectTimer indicates no timer in + use." + REFERENCE "10733 5.10.1 dataRejectCount (opt)" + ::= { x25AdmnEntry 19 } + + x25AdmnRegistrationRequestCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The R28 Registration retransmission Count. + This value is irrelevant if the + x25AdmnRegistrationRequestTimer indicates no + timer in use." + REFERENCE "10733 5.8.1 registrationRequestCount (opt); + See ISO 8208 Section 13.1.1.1, table 27" + ::= { x25AdmnEntry 20 } + + x25AdmnNumberPVCs OBJECT-TYPE + SYNTAX INTEGER (0..4096) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The number of PVC configured for this PLE. + The PVCs use channel numbers from 1 to this + number." + ::= { x25AdmnEntry 21 } + + x25AdmnDefCallParamId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This identifies the instance of the + x25CallParmIndex for the entry in the + x25CallParmTable which contains the default + call parameters for this PLE." + ::= { x25AdmnEntry 22 } + + x25AdmnLocalAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The local address for this PLE subnetwork. + A zero length address maybe returned by PLEs + that only support PVCs." + REFERENCE "10733 5.9 localDTEAddress" + ::= { x25AdmnEntry 23 } + + x25AdmnProtocolVersionSupported OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Identifies the version of the X.25 protocol + this interface should support. Object + identifiers for common versions are defined + below in the x25ProtocolVersion subtree." + REFERENCE "10733 5.9 protocolVersionSupported" + ::= { x25AdmnEntry 24 } + + -- ########################################################### + -- X.25 Operational Table + -- ########################################################### + + x25OperTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25OperEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The operation parameters in use by the X.25 + PLE." + ::= { x25 2 } + + x25OperEntry OBJECT-TYPE + SYNTAX X25OperEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entries of x25OperTable." + INDEX { x25OperIndex } + ::= { x25OperTable 1 } + + X25OperEntry ::= SEQUENCE { + x25OperIndex + IfIndexType, + x25OperInterfaceMode + INTEGER, + x25OperMaxActiveCircuits + INTEGER, + x25OperPacketSequencing + INTEGER, + x25OperRestartTimer + PositiveInteger, + x25OperCallTimer + PositiveInteger, + x25OperResetTimer + PositiveInteger, + x25OperClearTimer + PositiveInteger, + x25OperWindowTimer + PositiveInteger, + x25OperDataRxmtTimer + PositiveInteger, + x25OperInterruptTimer + PositiveInteger, + x25OperRejectTimer + PositiveInteger, + x25OperRegistrationRequestTimer + PositiveInteger, + x25OperMinimumRecallTimer + PositiveInteger, + x25OperRestartCount + INTEGER, + x25OperResetCount + INTEGER, + x25OperClearCount + INTEGER, + x25OperDataRxmtCount + INTEGER, + x25OperRejectCount + INTEGER, + x25OperRegistrationRequestCount + INTEGER, + x25OperNumberPVCs + INTEGER, + x25OperDefCallParamId + OBJECT IDENTIFIER, + x25OperLocalAddress + X121Address, + x25OperDataLinkId + OBJECT IDENTIFIER, + x25OperProtocolVersionSupported + OBJECT IDENTIFIER + } + + + x25OperIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the X.25 interface." + ::= { x25OperEntry 1 } + + x25OperInterfaceMode OBJECT-TYPE + SYNTAX INTEGER { + dte (1), + dce (2), + dxe (3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies DCE/DTE mode in which the + interface operates. A value of dxe + indicates the role will be determined by XID + negotiation at the Link Layer and that + negotiation has not yet taken place." + REFERENCE "10733 5.9 interfaceMode" + ::= { x25OperEntry 2 } + + x25OperMaxActiveCircuits OBJECT-TYPE + SYNTAX INTEGER (0..4096) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Maximum number of circuits this PLE can + support." + REFERENCE "10733 5.9 maxActiveCircuits + See ISO 8208, Section 3.7" + ::= { x25OperEntry 3 } + + x25OperPacketSequencing OBJECT-TYPE + SYNTAX INTEGER { + modulo8 (1), + modulo128 (2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The modulus of the packet sequence number + space." + REFERENCE "10733 extendedPacketSequencing; + See ISO 8208 Section 7.1.1" + ::= { x25OperEntry 4 } + + x25OperRestartTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T20 restart timer in milliseconds." + REFERENCE "10733 5.9 restartTime; + See ISO 8208 Section 4.1, table 26" + ::= { x25OperEntry 5 } + + x25OperCallTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T21 Call timer in milliseconds." + REFERENCE "10733 callTime; + See ISO 8208 Section 5.2.1, table 26" + ::= { x25OperEntry 6 } + + x25OperResetTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T22 Reset timer in milliseconds." + REFERENCE "10733 resetTime; + See ISO 8208 Section 8.1, table 26" + ::= { x25OperEntry 7 } + + x25OperClearTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T23 Clear timer in milliseconds." + REFERENCE "10733 clearTime; + See ISO 8208 Section 5.5.1, table 26" + ::= { x25OperEntry 8 } + + x25OperWindowTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T24 window status transmission timer + milliseconds. A value of 2147483647 + indicates no window timer in use." + REFERENCE "10733 5.10.1 windowTime (opt); + See ISO 8208 Section 11.2.2, table 26" + ::= { x25OperEntry 9 } + + x25OperDataRxmtTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T25 Data Retransmission timer in + milliseconds. A value of 2147483647 + indicates no data retransmission timer in + use." + REFERENCE "10733 5.10.1 dataRetransmissionTime (opt); + See ISO 8208 Section 11.2.1, table 26" + ::= { x25OperEntry 10 } + + x25OperInterruptTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T26 Interrupt timer in milliseconds. A + value of 2147483647 indicates interrupts are + not being used." + REFERENCE "10733 interruptTime; + See ISO 8208 Section 6.8.1, table 26" + ::= { x25OperEntry 11 } + + x25OperRejectTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T27 Reject retransmission timer in + milliseconds. A value of 2147483647 + indicates no reject timer in use." + REFERENCE "10733 5.10.1 dataRejectTime (opt); + See ISO 8208 Section 13.4.1, table 26" + ::= { x25OperEntry 12 } + + x25OperRegistrationRequestTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The T28 registration timer in milliseconds. + A value of 2147483647 indicates no + registration timer in use." + REFERENCE "10733 5.8.1 registrationRequestTime (opt); + See ISO 8208 Section 13.1.1.1, table 26" + ::= { x25OperEntry 13 } + + x25OperMinimumRecallTimer OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Minimum time interval between unsuccessful + call attempts in milliseconds." + REFERENCE "10733 5.9 minimum RecallTimer" + ::= { x25OperEntry 14 } + + x25OperRestartCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The R20 restart retransmission count." + REFERENCE "10733 5.9 restartCount + See ISO 8208 Section 4.1, table 27" + ::= { x25OperEntry 15 } + + x25OperResetCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The r22 Reset retransmission count." + REFERENCE "10733 resetCount; + See section ISO 8208 8.1, table 27" + ::= { x25OperEntry 16 } + + x25OperClearCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The r23 Clear retransmission count." + REFERENCE "10733 clearCount; + See ISO 8208 Section 5.5.1, table 27" + ::= { x25OperEntry 17 } + + x25OperDataRxmtCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The R25 Data retransmission count. This + value is undefined if the + x25OperDataRxmtTimer indicates no timer in + use." + REFERENCE "10733 5.10.1 dataRetransmissionCount (opt); + See ISO 8208 Section 11.2.1, table 27" + ::= { x25OperEntry 18 } + + x25OperRejectCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The R27 reject retransmission count. This + value is undefined if the x25OperRejectTimer + indicates no timer in use." + REFERENCE "10733 5.10.1 dataRejectCount (opt)" + ::= { x25OperEntry 19 } + + x25OperRegistrationRequestCount OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The R28 Registration retransmission Count. + This value is undefined if the + x25OperREgistrationRequestTimer indicates no + timer in use." + REFERENCE "10733 5.8.1 registrationRequestCount (opt); + See ISO 8208 Section 13.1.1.1, table 27" + ::= { x25OperEntry 20 } + + x25OperNumberPVCs OBJECT-TYPE + SYNTAX INTEGER (0..4096) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of PVC configured for this PLE. + The PVCs use channel numbers from 1 to this + number." + ::= { x25OperEntry 21 } + + x25OperDefCallParamId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This identifies the instance of the + x25CallParmIndex for the entry in the + x25CallParmTable that contains the default + call parameters for this PLE." + ::= { x25OperEntry 22 } + + x25OperLocalAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local address for this PLE subnetwork. + A zero length address maybe returned by PLEs + that only support PVCs." + REFERENCE "10733 5.9 localDTEAddress" + ::= { x25OperEntry 23 } + + x25OperDataLinkId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This identifies the instance of the index + object in the first table of the most device + specific MIB for the interface used by this + PLE." + ::= { x25OperEntry 24 } + + x25OperProtocolVersionSupported OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the version of the X.25 protocol + this interface supports. Object identifiers + for common versions are defined below in the + x25ProtocolVersion subtree." + REFERENCE "10733 5.9 protocolVersionSupported" + ::= { x25OperEntry 25 } + + -- MIB-II also provides: + + -- ifDescr: + -- On an X.25 interface this must include sufficient + + + -- information to enable the system's administrator + -- to determine the appropriate configuration + -- information on a system having multiple X.25 + -- subnetworks. + + -- ifType: ddn-x25 or rfc877-x25 + -- an interface of type ddn-x25 will use an algorithm to + -- translate between X.121 address and IP addresses. + -- An interface of type rfc877-x25 will use a + -- configuration table to translate between X.121 + -- addresses and IP addresses. + + -- ifMtu: the maximum PDU a higher layer can pass to X.25 or + -- receive from X.25 + + -- ifSpeed: + -- This will be the value of the local clock for this line. + -- A value of zero indicates external clocking. + + -- ifAdminStatus: + + -- ifOperStatus + + -- ifLastChange + + -- ########################################################### + -- X.25 Statistics Table + -- ########################################################### + + x25StatTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25StatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Statistics information about this X.25 + PLE." + ::= { x25 3 } + + x25StatEntry OBJECT-TYPE + SYNTAX X25StatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entries of the x25StatTable." + INDEX { x25StatIndex } + ::= { x25StatTable 1 } + + + X25StatEntry ::= SEQUENCE { + x25StatIndex + IfIndexType, + x25StatInCalls + Counter, + x25StatInCallRefusals + Counter, + x25StatInProviderInitiatedClears + Counter, + x25StatInRemotelyInitiatedResets + Counter, + x25StatInProviderInitiatedResets + Counter, + x25StatInRestarts + Counter, + x25StatInDataPackets + Counter, + x25StatInAccusedOfProtocolErrors + Counter, + x25StatInInterrupts + Counter, + x25StatOutCallAttempts + Counter, + x25StatOutCallFailures + Counter, + x25StatOutInterrupts + Counter, + x25StatOutDataPackets + Counter, + x25StatOutgoingCircuits + Gauge, + x25StatIncomingCircuits + Gauge, + x25StatTwowayCircuits + Gauge, + x25StatRestartTimeouts + Counter, + x25StatCallTimeouts + Counter, + x25StatResetTimeouts + Counter, + x25StatClearTimeouts + Counter, + x25StatDataRxmtTimeouts + Counter, + x25StatInterruptTimeouts + Counter, + x25StatRetryCountExceededs + Counter, + x25StatClearCountExceededs + Counter + } + + x25StatIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the X.25 interface." + ::= { x25StatEntry 1 } + + x25StatInCalls OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of incoming calls received." + ::= { x25StatEntry 2 } + + x25StatInCallRefusals OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of incoming calls refused. This + includes calls refused by the PLE and by + higher layers. This also includes calls + cleared because of restricted fast select." + ::= { x25StatEntry 3 } + + x25StatInProviderInitiatedClears OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of clear requests with a cause + code other than DTE initiated." + REFERENCE "10733 providerInitiatedDisconnect" + ::= { x25StatEntry 4 } + + x25StatInRemotelyInitiatedResets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of reset requests received with + cause code DTE initiated." + REFERENCE "10733 remotelyInitiatedResets" + ::= { x25StatEntry 5 } + + x25StatInProviderInitiatedResets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of reset requests received with + cause code other than DTE initiated." + REFERENCE "10733 ProviderInitiatedResets" + ::= { x25StatEntry 6 } + + x25StatInRestarts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of remotely initiated (including + provider initiated) restarts experienced by + the PLE excluding the restart associated + with bringing up the PLE interface. This + only counts restarts received when the PLE + already has an established connection with + the remove PLE." + REFERENCE "10733 5.9 remotelyInitiatedRestarts" + ::= { x25StatEntry 7 } + + x25StatInDataPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of data packets received." + REFERENCE "10733 5.9 dataPacketsReceived." + ::= { x25StatEntry 8 } + + x25StatInAccusedOfProtocolErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of packets received containing a + procedure error cause code. These include + clear, reset, restart, or diagnostic + packets." + REFERENCE "CD 10733 5.9 accusedOfProtocolError" + + + ::= { x25StatEntry 9 } + + x25StatInInterrupts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of interrupt packets received by + the PLE or over the PVC/VC." + REFERENCE "10733 interruptPacketsReceived" + ::= { x25StatEntry 10 } + + x25StatOutCallAttempts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of calls attempted." + REFERENCE "10733 5.9 callAttempts" + ::= { x25StatEntry 11 } + + x25StatOutCallFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of call attempts which failed. + This includes calls that were cleared + because of restrictive fast select." + ::= { x25StatEntry 12 } + + x25StatOutInterrupts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of interrupt packets send by the + PLE or over the PVC/VC." + REFERENCE "10733 InterruptPacketsSent" + ::= { x25StatEntry 13 } + + x25StatOutDataPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of data packets sent by this + PLE." + REFERENCE "10733 dataPacketSent" + ::= { x25StatEntry 14 } + + x25StatOutgoingCircuits OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of active outgoing circuits. + This includes call requests sent but not yet + confirmed. This does not count PVCs." + ::= { x25StatEntry 15 } + + x25StatIncomingCircuits OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of active Incoming Circuits. + This includes call indications received but + not yet acknowledged. This does not count + PVCs." + ::= { x25StatEntry 16 } + + x25StatTwowayCircuits OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of active two-way Circuits. + This includes call requests sent but not yet + confirmed. This does not count PVCs." + ::= { x25StatEntry 17 } + + x25StatRestartTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T20 restart timer + expired." + REFERENCE "10733 5.9 restartTimeouts" + ::= { x25StatEntry 18 } + + x25StatCallTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T21 call timer + expired." + REFERENCE "10733 5.9 callTimeouts" + ::= { x25StatEntry 19 } + + x25StatResetTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T22 reset timer + expired." + REFERENCE "10733 5.9 resetTimeouts" + ::= { x25StatEntry 20 } + + x25StatClearTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T23 clear timer + expired." + REFERENCE "10733 5.9 clearTimeouts" + ::= { x25StatEntry 21 } + + x25StatDataRxmtTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T25 data timer + expired." + REFERENCE "10733 5.9 dataRetransmissionsTimerExpiries" + ::= { x25StatEntry 22 } + + x25StatInterruptTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T26 interrupt timer + expired." + REFERENCE "10733 5.9 interruptTimerExpires" + ::= { x25StatEntry 23 } + + x25StatRetryCountExceededs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times a retry counter was + exhausted." + REFERENCE "10733 5.9 retryCountsExceeded" + ::= { x25StatEntry 24 } + + x25StatClearCountExceededs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the R23 clear count was + exceeded." + REFERENCE "10733 5.9 clearCountsExceeded" + ::= { x25StatEntry 25 } + + -- MIB-II also contains: + + -- ifInOctets: Number of data octets delivered to upper + -- layer entities. + + -- ifInUcastPkts: Number of packets with a clear M-bit + -- delivered to higher layer entities. + + -- ifDiscards: Number of packets dropped for lack of buffering + + -- ifInErrors: Number of packets received containing errors + -- REFERENCE ProtocolErrorsDetectedLocally + + -- ifInUnknownProtos: Number of packets with unknown circuit + -- identifier. + + -- ifOutOctets: Number of data octets delivered by + -- X.25 to upper layers. + + -- ifOutUcastPkts: Number of packets with a clear M-bit + -- received from higher layer entities. + + -- ########################################################### + -- X.25 Channel Table + -- ########################################################### + + x25ChannelTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25ChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "These objects contain information about the + channel number configuration in an X.25 PLE. + These values are the configured values. + changes in these values after the interfaces + has started may not be reflected in the + operating PLE." + REFERENCE "See ISO 8208, Section 3.7" + ::= { x25 4 } + + x25ChannelEntry OBJECT-TYPE + SYNTAX X25ChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entries of x25ChannelTable." + REFERENCE "This provides the information available + in 10733 logicalChannelAssignments." + INDEX { x25ChannelIndex } + ::= { x25ChannelTable 1 } + + X25ChannelEntry ::= SEQUENCE { + x25ChannelIndex + IfIndexType, + x25ChannelLIC + INTEGER, + x25ChannelHIC + INTEGER, + x25ChannelLTC + INTEGER, + x25ChannelHTC + INTEGER, + x25ChannelLOC + INTEGER, + x25ChannelHOC + INTEGER + } + + x25ChannelIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the X.25 Interface." + ::= { x25ChannelEntry 1 } + + + x25ChannelLIC OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Lowest Incoming channel." + ::= { x25ChannelEntry 2 } + + x25ChannelHIC OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Highest Incoming channel. A value of zero + indicates no channels in this range." + ::= { x25ChannelEntry 3 } + + x25ChannelLTC OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Lowest Two-way channel." + ::= { x25ChannelEntry 4 } + + x25ChannelHTC OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Highest Two-way channel. A value of zero + indicates no channels in this range." + ::= { x25ChannelEntry 5 } + + x25ChannelLOC OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Lowest outgoing channel." + ::= { x25ChannelEntry 6 } + + x25ChannelHOC OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Highest outgoing channel. A value of zero + indicates no channels in this range." + ::= { x25ChannelEntry 7 } + + -- ########################################################### + -- X25 Per Circuits Information Table + -- ########################################################### + + x25CircuitTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25CircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "These objects contain general information + about a specific circuit of an X.25 PLE." + ::= { x25 5 } + + x25CircuitEntry OBJECT-TYPE + SYNTAX X25CircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entries of x25CircuitTable." + INDEX { x25CircuitIndex, + x25CircuitChannel } + ::= { x25CircuitTable 1 } + + X25CircuitEntry ::= SEQUENCE { + x25CircuitIndex + IfIndexType, + x25CircuitChannel + INTEGER, + x25CircuitStatus + INTEGER, + x25CircuitEstablishTime + TimeTicks, + x25CircuitDirection + INTEGER, + x25CircuitInOctets + Counter, + x25CircuitInPdus + Counter, + x25CircuitInRemotelyInitiatedResets + Counter, + x25CircuitInProviderInitiatedResets + Counter, + x25CircuitInInterrupts + Counter, + x25CircuitOutOctets + Counter, + x25CircuitOutPdus + Counter, + x25CircuitOutInterrupts + Counter, + x25CircuitDataRetransmissionTimeouts + Counter, + x25CircuitResetTimeouts + Counter, + x25CircuitInterruptTimeouts + Counter, + x25CircuitCallParamId + OBJECT IDENTIFIER, + x25CircuitCalledDteAddress + X121Address, + x25CircuitCallingDteAddress + X121Address, + x25CircuitOriginallyCalledAddress + X121Address, + x25CircuitDescr + DisplayString + } + + x25CircuitIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ifIndex value for the X.25 Interface." + ::= { x25CircuitEntry 1 } + + x25CircuitChannel OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number for this circuit." + ::= { x25CircuitEntry 2 } + + x25CircuitStatus OBJECT-TYPE + SYNTAX INTEGER { -- state table states + invalid (1), + closed (2), -- (p1) + calling (3), -- (p2,p3,p5) + open (4), -- (p4) + clearing (5), -- (p6,p7) + pvc (6), + pvcResetting (7), + startClear (8), -- Close cmd + startPvcResetting (9), -- Reset cmd + other (10) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This object reports the current status of + the circuit. + + An existing instance of this object can only + be set to startClear, startPvcResetting, or + invalid. An instance with the value calling + or open can only be set to startClear and + that action will start clearing the circuit. + An instance with the value PVC can only be + set to startPvcResetting or invalid and that + action resets the PVC or deletes the circuit + respectively. The values startClear or + startPvcResetting will never be returned by + an agent. An attempt to set the status of + an existing instance to a value other than + one of these values will result in an error. + + A non-existing instance can be set to PVC to + create a PVC if the implementation supports + dynamic creation of PVCs. Some + implementations may only allow creation and + deletion of PVCs if the interface is down. + Since the instance identifier will supply + the PLE index and the channel number, + setting this object alone supplies + sufficient information to create the + instance. All the DEFVAL clauses for the + other objects of this table are appropriate + for creating a PVC; PLEs creating entries + for placed or accepted calls will use values + appropriate for the call rather than the + value of the DEFVAL clause. Two managers + trying to create the same PVC can determine + from the return code which manager succeeded + and which failed (the failing manager fails + because it can not set a value of PVC for an + existing object). + + An entry in the closed or invalid state may + be deleted or reused at the agent's + convence. If the entry is kept in the + closed state, the values of the parameters + associated with the entry must be correct. + Closed implies the values in the circuit + table are correct. + + The value of invalid indicates the other + values in the table are invalid. Many + agents may never return a value of invalid + because they dynamically allocate and free + unused table entries. An agent for a + statically configured systems can return + invalid to indicate the entry has not yet + been used so the counters contain no + information." + REFERENCE "See ISO 8208, + table 33 for (p) state table" + ::= { x25CircuitEntry 3 } + + x25CircuitEstablishTime OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the channel was + associated with this circuit. For outgoing + SVCs, this is the time the first call packet + was sent. For incoming SVCs, this is the + time the call indication was received. For + PVCs this is the time the PVC was able to + pass data to a higher layer entity without + loss of data." + ::= { x25CircuitEntry 4 } + + x25CircuitDirection OBJECT-TYPE + SYNTAX INTEGER { + incoming (1), + outgoing (2), + pvc (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The direction of the call that established + this circuit." + REFERENCE "10733 direction" + DEFVAL { pvc } + ::= { x25CircuitEntry 5 } + + -- X25 Circuit data flow statistics + + x25CircuitInOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of octets of user data delivered + to upper layer." + REFERENCE "5.11 octetsReceivedCounter" + ::= { x25CircuitEntry 6 } + + x25CircuitInPdus OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of PDUs received for this + circuit." + REFERENCE "10733 5.11 dataPacketsReceived" + ::= { x25CircuitEntry 7 } + + x25CircuitInRemotelyInitiatedResets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Resets received for this + circuit with cause code of DTE initiated." + REFERENCE "10733 remotelyInitiatedResets" + ::= { x25CircuitEntry 8 } + + x25CircuitInProviderInitiatedResets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Resets received for this + circuit with cause code other than DTE + initiated." + REFERENCE "10733 ProviderInitiatedResets" + ::= { x25CircuitEntry 9 } + + x25CircuitInInterrupts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of interrupt packets received + for this circuit." + REFERENCE "10733 interruptPacketsReceived" + ::= { x25CircuitEntry 10 } + + x25CircuitOutOctets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of octets of user data sent for + this circuit." + REFERENCE "10733 5.11 octetsSentCounter" + ::= { x25CircuitEntry 11 } + + x25CircuitOutPdus OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of PDUs sent for this circuit." + REFERENCE "10733 5.11 dataPacketsSent" + ::= { x25CircuitEntry 12 } + + x25CircuitOutInterrupts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of interrupt packets sent on + this circuit." + REFERENCE "10733 interruptPacketsSent" + ::= { x25CircuitEntry 13 } + + -- X25 circuit timer statistics + + x25CircuitDataRetransmissionTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T25 data + retransmission timer expired for this + circuit." + REFERENCE "10733 5.11 dataRetransmissionTimerExpiries" + ::= { x25CircuitEntry 14 } + + x25CircuitResetTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T22 reset timer + expired for this circuit." + REFERENCE "10733 5.11 resetTimeouts" + ::= { x25CircuitEntry 15 } + + x25CircuitInterruptTimeouts OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the T26 Interrupt timer + expired for this circuit." + REFERENCE "10733 interruptTimerExpiries" + ::= { x25CircuitEntry 16 } + + x25CircuitCallParamId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This identifies the instance of the + x25CallParmIndex for the entry in the + x25CallParmTable which contains the call + parameters in use with this circuit. The + entry referenced must contain the values + that are currently in use by the circuit + rather than proposed values. A value of + NULL indicates the circuit is a PVC or is + using all the default parameters." + DEFVAL { {0 0} } + ::= { x25CircuitEntry 17 } + + x25CircuitCalledDteAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For incoming calls, this is the called + address from the call indication packet. + For outgoing calls, this is the called + address from the call confirmation packet. + This will be zero length for PVCs." + REFERENCE "10733 calledDTEAddress" + DEFVAL { ''h } + ::= { x25CircuitEntry 18 } + + x25CircuitCallingDteAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For incoming calls, this is the calling + address from the call indication packet. + For outgoing calls, this is the calling + address from the call confirmation packet. + This will be zero length for PVCs." + REFERENCE "10733 callingDTEAddress" + DEFVAL { ''h } + ::= { x25CircuitEntry 19 } + + x25CircuitOriginallyCalledAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-write + STATUS mandatory + DESCRIPTION + "For incoming calls, this is the address in + the call Redirection or Call Deflection + Notification facility if the call was + deflected or redirected, otherwise it will + be called address from the call indication + packet. For outgoing calls, this is the + address from the call request packet. This + will be zero length for PVCs." + REFERENCE "10733 originallyCalledAddress" + DEFVAL { ''h } + ::= { x25CircuitEntry 20 } + + x25CircuitDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A descriptive string associated with this + circuit. This provides a place for the + agent to supply any descriptive information + it knows about the use or owner of the + circuit. The agent may return the process + identifier and user name for the process + using the circuit. Alternative the agent + may return the name of the configuration + entry that caused a bridge to establish the + circuit. A zero length value indicates the + agent doesn't have any additional + information." + DEFVAL { ''h } + ::= { x25CircuitEntry 21 } + + -- ########################################################### + -- The Cleared Circuit Table + -- ########################################################### + + x25ClearedCircuitEntriesRequested OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The requested number of entries for the + agent to keep in the x25ClearedCircuit + table." + ::= { x25 6 } + + x25ClearedCircuitEntriesGranted OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The actual number of entries the agent will + keep in the x25ClearedCircuit Table." + ::= { x25 7 } + + x25ClearedCircuitTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25ClearedCircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of entries about closed circuits. + Entries must be made in this table whenever + circuits are closed and the close request or + close indication packet contains a clearing + cause other than DTE Originated or a + Diagnostic code field other than Higher + Layer Initiated disconnection-normal. An + agent may optionally make entries for normal + closes (to record closing facilities or + other information). + + Agents will delete the oldest entry in the + table when adding a new entry would exceed + agent resources. Agents are required to + keep the last entry put in the table and may + keep more entries. The object + x25OperClearEntriesGranted returns the + maximum number of entries kept in the + table." + REFERENCE "See ISO 8208 Section 12.2.3.1.1 + and 12.2.3.1.2" + ::= { x25 8 } + + x25ClearedCircuitEntry OBJECT-TYPE + SYNTAX X25ClearedCircuitEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a cleared circuit." + INDEX { x25ClearedCircuitIndex } + ::= { x25ClearedCircuitTable 1 } + + X25ClearedCircuitEntry ::= SEQUENCE { + x25ClearedCircuitIndex + PositiveInteger, + x25ClearedCircuitPleIndex + IfIndexType, + x25ClearedCircuitTimeEstablished + TimeTicks, + x25ClearedCircuitTimeCleared + TimeTicks, + x25ClearedCircuitChannel + INTEGER, + x25ClearedCircuitClearingCause + INTEGER, + x25ClearedCircuitDiagnosticCode + INTEGER, + x25ClearedCircuitInPdus + Counter, + x25ClearedCircuitOutPdus + Counter, + x25ClearedCircuitCalledAddress + X121Address, + x25ClearedCircuitCallingAddress + X121Address, + x25ClearedCircuitClearFacilities + OCTET STRING + } + + x25ClearedCircuitIndex OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index that uniquely distinguishes one + entry in the clearedCircuitTable from + another. This index will start at + 2147483647 and will decrease by one for each + new entry added to the table. Upon reaching + one, the index will reset to 2147483647. + Because the index starts at 2147483647 and + decreases, a manager may do a getnext on + entry zero and obtain the most recent entry. + When the index has the value of 1, the next + entry will delete all entries in the table + and that entry will be numbered 2147483647." + ::= { x25ClearedCircuitEntry 1 } + + x25ClearedCircuitPleIndex OBJECT-TYPE + SYNTAX IfIndexType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of ifIndex for the PLE which + cleared the circuit that created the entry." + ::= { x25ClearedCircuitEntry 2 } + + x25ClearedCircuitTimeEstablished OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the circuit was + established. This will be the same value + that was in the x25CircuitEstablishTime for + the circuit." + ::= { x25ClearedCircuitEntry 3 } + + x25ClearedCircuitTimeCleared OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the circuit was + cleared. For locally initiated clears, this + will be the time when the clear confirmation + was received. For remotely initiated + clears, this will be the time when the clear + indication was received." + ::= { x25ClearedCircuitEntry 4 } + + x25ClearedCircuitChannel OBJECT-TYPE + SYNTAX INTEGER (0..4095) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number for the circuit that was + cleared." + ::= { x25ClearedCircuitEntry 5 } + + x25ClearedCircuitClearingCause OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Clearing Cause from the clear request + or clear indication packet that cleared the + circuit." + REFERENCE "See ISO 8208 Section 12.2.3.1.1" + ::= { x25ClearedCircuitEntry 6 } + + x25ClearedCircuitDiagnosticCode OBJECT-TYPE + SYNTAX INTEGER (0..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Diagnostic Code from the clear request + or clear indication packet that cleared the + circuit." + REFERENCE "See ISO 8208 Section 12.2.3.1.2" + ::= { x25ClearedCircuitEntry 7 } + + x25ClearedCircuitInPdus OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of PDUs received on the + circuit." + ::= { x25ClearedCircuitEntry 8 } + + x25ClearedCircuitOutPdus OBJECT-TYPE + SYNTAX Counter + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of PDUs transmitted on the + circuit." + ::= { x25ClearedCircuitEntry 9 } + + x25ClearedCircuitCalledAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The called address from the cleared + circuit." + ::= { x25ClearedCircuitEntry 10 } + + x25ClearedCircuitCallingAddress OBJECT-TYPE + SYNTAX X121Address + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The calling address from the cleared + circuit." + ::= { x25ClearedCircuitEntry 11 } + + x25ClearedCircuitClearFacilities OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..109)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The facilities field from the clear request + or clear indication packet that cleared the + circuit. A size of zero indicates no + facilities were present." + ::= { x25ClearedCircuitEntry 12 } + + -- ########################################################### + -- The Call Parameter Table + -- ########################################################### + + x25CallParmTable OBJECT-TYPE + SYNTAX SEQUENCE OF X25CallParmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "These objects contain the parameters that + can be varied between X.25 calls. The + entries in this table are independent of the + PLE. There exists only one of these tables + for the entire system. The indexes for the + entries are independent of any PLE or any + circuit. Other tables reference entries in + this table. Entries in this table can be + used for default PLE parameters, for + parameters to use to place/answer a call, + for the parameters currently in use for a + circuit, or parameters that were used by a + circuit. + + The number of references to a given set of + parameters can be found in the + x25CallParmRefCount object sharing the same + instance identifier with the parameters. + The value of this reference count also + affects the access of the objects in this + table. An object in this table with the + same instance identifier as the instance + identifier of an x25CallParmRefCount must be + consider associated with that reference + count. An object with an associated + reference count of zero can be written (if + its ACCESS clause allows it). An object + with an associated reference count greater + than zero can not be written (regardless of + the ACCESS clause). This ensures that a set + of call parameters being referenced from + another table can not be modified or changed + in a ways inappropriate for continued use by + that table." + ::= { x25 9 } + + x25CallParmEntry OBJECT-TYPE + SYNTAX X25CallParmEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Entries of x25CallParmTable." + INDEX { x25CallParmIndex } + ::= { x25CallParmTable 1 } + + X25CallParmEntry ::= SEQUENCE { + x25CallParmIndex + PositiveInteger, + x25CallParmStatus + EntryStatus, + x25CallParmRefCount + PositiveInteger, + x25CallParmInPacketSize + INTEGER, + x25CallParmOutPacketSize + INTEGER, + x25CallParmInWindowSize + INTEGER, + x25CallParmOutWindowSize + INTEGER, + x25CallParmAcceptReverseCharging + INTEGER, + x25CallParmProposeReverseCharging + INTEGER, + x25CallParmFastSelect + INTEGER, + x25CallParmInThruPutClasSize + INTEGER, + x25CallParmOutThruPutClasSize + INTEGER, + x25CallParmCug + DisplayString, + x25CallParmCugoa + DisplayString, + x25CallParmBcug + DisplayString, + x25CallParmNui + OCTET STRING, + x25CallParmChargingInfo + INTEGER, + x25CallParmRpoa + DisplayString, + x25CallParmTrnstDly + INTEGER, + x25CallParmCallingExt + DisplayString, + x25CallParmCalledExt + DisplayString, + x25CallParmInMinThuPutCls + INTEGER, + x25CallParmOutMinThuPutCls + INTEGER, + x25CallParmEndTrnsDly + OCTET STRING, + x25CallParmPriority + OCTET STRING, + x25CallParmProtection + DisplayString, + x25CallParmExptData + INTEGER, + x25CallParmUserData + OCTET STRING, + x25CallParmCallingNetworkFacilities + OCTET STRING, + x25CallParmCalledNetworkFacilities + OCTET STRING + } + + x25CallParmIndex OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A value that distinguishes this entry from + another entry. Entries in this table are + referenced from other objects which identify + call parameters. + + It is impossible to know which other objects + in the MIB reference entries in the table by + looking at this table. Because of this, + changes to parameters must be accomplished + by creating a new entry in this table and + then changing the referencing table to + identify the new entry. + + Note that an agent will only use the values + in this table when another table is changed + to reference those values. The number of + other tables that reference an index object + in this table can be found in + x25CallParmRefCount. The value of the + reference count will affect the writability + of the objects as explained above. + + Entries in this table which have a reference + count of zero maybe deleted at the convence + of the agent. Care should be taken by the + agent to give the NMS sufficient time to + create a reference to newly created entries. + + Should a Management Station not find a free + index with which to create a new entry, it + may feel free to delete entries with a + reference count of zero. However in doing + so the Management Station much realize it + may impact other Management Stations." + ::= { x25CallParmEntry 1 } + + x25CallParmStatus OBJECT-TYPE + SYNTAX EntryStatus + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The status of this call parameter entry. + See RFC 1271 for details of usage." + ::= { x25CallParmEntry 2 } + + x25CallParmRefCount OBJECT-TYPE + SYNTAX PositiveInteger + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of references know by a + management station to exist to this set of + call parameters. This is the number of + other objects that have returned a value of, + and will return a value of, the index for + this set of call parameters. Examples of + such objects are the x25AdmnDefCallParamId, + x25OperDataLinkId, or x25AdmnDefCallParamId + objects defined above." + ::= { x25CallParmEntry 3 } + + x25CallParmInPacketSize OBJECT-TYPE + SYNTAX INTEGER (0..4096) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum receive packet size in octets + for a circuit. A size of zero for a circuit + means use the PLE default size. A size of + zero for the PLE means use a default size of + 128." + REFERENCE "10733 proposedPacketSize; + See ISO 8208 Section 15.2.2.1.1" + DEFVAL { 128 } + ::= { x25CallParmEntry 4 } + + x25CallParmOutPacketSize OBJECT-TYPE + SYNTAX INTEGER (0..4096) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum transmit packet size in octets + for a circuit. A size of zero for a circuit + means use the PLE default size. A size of + zero for the PLE default means use a default + size of 128." + REFERENCE "10733 proposedPacketSize; + See ISO 8208 Section 15.2.2.1.1" + DEFVAL { 128 } + ::= { x25CallParmEntry 5 } + + x25CallParmInWindowSize OBJECT-TYPE + SYNTAX INTEGER (0..127) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The receive window size for a circuit. A + size of zero for a circuit means use the PLE + default size. A size of zero for the PLE + default means use 2." + REFERENCE "10733 proposedWindowSize; + See ISO 8208 Section 15.2.2.1.2" + DEFVAL { 2 } + ::= { x25CallParmEntry 6 } + + x25CallParmOutWindowSize OBJECT-TYPE + SYNTAX INTEGER (0..127) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The transmit window size for a circuit. A + size of zero for a circuit means use the PLE + default size. A size of zero for the PLE + default means use 2." + REFERENCE "10733 proposedWindowSize; + See ISO 8208 Section 15.2.2.1.2" + DEFVAL { 2 } + ::= { x25CallParmEntry 7 } + + x25CallParmAcceptReverseCharging OBJECT-TYPE + SYNTAX INTEGER { + default (1), + accept (2), + refuse (3), + neverAccept (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An enumeration defining if the PLE will + accept or refuse charges. A value of + default for a circuit means use the PLE + default value. A value of neverAccept is + only used for the PLE default and indicates + the PLE will never accept reverse charging. + A value of default for a PLE default means + refuse." + REFERENCE "10733 acceptReverseCharging" + DEFVAL { refuse } + ::= { x25CallParmEntry 8 } + + x25CallParmProposeReverseCharging OBJECT-TYPE + SYNTAX INTEGER { + default (1), + reverse (2), + local (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An enumeration defining if the PLE should + propose reverse or local charging. The + value of default for a circuit means use the + PLE default. The value of default for the + PLE default means use local." + REFERENCE "10733 proposedPacketSize; + See ISO 8208 Section 15.2.2.6" + DEFVAL { local } + ::= { x25CallParmEntry 9 } + + x25CallParmFastSelect OBJECT-TYPE + SYNTAX INTEGER { + default (1), + notSpecified (2), + fastSelect (3), + restrictedFastResponse (4), + noFastSelect (5), + noRestrictedFastResponse (6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Expresses preference for use of fast select + facility. The value of default for a + circuit is the PLE default. A value of + default for the PLE means noFastSelect. A + value of noFastSelect or + noRestrictedFastResponse indicates a circuit + may not use fast select or restricted fast + response." + REFERENCE "10733 fastSelect; + Sec ISO 8208 Section 15.2.2.6" + DEFVAL { noFastSelect } + ::= { x25CallParmEntry 10 } + + x25CallParmInThruPutClasSize OBJECT-TYPE + SYNTAX INTEGER { + tcReserved1 (1), + tcReserved2 (2), + tc75 (3), + tc150 (4), + tc300 (5), + tc600 (6), + tc1200 (7), + tc2400 (8), + tc4800 (9), + tc9600 (10), + tc19200 (11), + tc48000 (12), + tc64000 (13), + tcReserved14 (14), + tcReserved15 (15), + tcReserved0 (16), + tcNone (17), + tcDefault (18) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The incoming throughput class to negotiate. + A value of tcDefault for a circuit means use + the PLE default. A value of tcDefault for + the PLE default means tcNone. A value of + tcNone means do not negotiate throughtput + class." + REFERENCE "See ISO 8208 Section 15.2.2.2, table 18" + DEFVAL { tcNone } + ::= { x25CallParmEntry 11 } + + x25CallParmOutThruPutClasSize OBJECT-TYPE + SYNTAX INTEGER { + tcReserved1 (1), + tcReserved2 (2), + tc75 (3), + tc150 (4), + tc300 (5), + tc600 (6), + tc1200 (7), + tc2400 (8), + tc4800 (9), + tc9600 (10), + tc19200 (11), + tc48000 (12), + tc64000 (13), + tcReserved14 (14), + tcReserved15 (15), + tcReserved0 (16), + tcNone (17), + tcDefault (18) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The outgoing throughput class to negotiate. + A value of tcDefault for a circuit means use + the PLE default. A value of tcDefault for + the PLE default means use tcNone. A value + of tcNone means do not negotiate throughtput + class." + REFERENCE "See ISO 8208 Section 15.2.2.2, table 18" + DEFVAL { tcNone } + ::= { x25CallParmEntry 12 } + + x25CallParmCug OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Closed User Group to specify. This + consists of two or four octets containing + the characters 0 through 9. A zero length + string indicates no facility requested. A + string length of three containing the + characters DEF for a circuit means use the + PLE default, (the PLE default parameter may + not reference an entry of DEF.)" + REFERENCE "See ISO 8208 Section 15.2.2.3" + DEFVAL { ''h } + ::= { x25CallParmEntry 13 } + + x25CallParmCugoa OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..4)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Closed User Group with Outgoing Access + to specify. This consists of two or four + octets containing the characters 0 through + 9. A string length of three containing the + characters DEF for a circuit means use the + PLE default (the PLE default parameters may + not reference an entry of DEF). A zero + length string indicates no facility + requested." + REFERENCE "See ISO 8208 Section 15.2.2.4" + DEFVAL { ''h } + ::= { x25CallParmEntry 14 } + + x25CallParmBcug OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..3)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Bilateral Closed User Group to specify. + This consists of two octets containing the + characters 0 through 9. A string length of + three containing the characters DEF for a + circuit means use the PLE default (the PLE + default parameter may not reference an entry + of DEF). A zero length string indicates no + facility requested." + REFERENCE "See ISO 8208 Section 15.2.2.5" + DEFVAL { ''h } + ::= { x25CallParmEntry 15 } + + x25CallParmNui OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..108)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Network User Identifier facility. This + is binary value to be included immediately + after the length field. The PLE will supply + the length octet. A zero length string + indicates no facility requested. This value + is ignored for the PLE default parameters + entry." + REFERENCE "See ISO 8208 Section 15.2.2.7" + DEFVAL { ''h } + + + ::= { x25CallParmEntry 16 } + + x25CallParmChargingInfo OBJECT-TYPE + SYNTAX INTEGER { + default (1), + noFacility (2), + noChargingInfo (3), + chargingInfo (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The charging Information facility. A value + of default for a circuit means use the PLE + default. The value of default for the + default PLE parameters means use noFacility. + The value of noFacility means do not include + a facility." + REFERENCE "See ISO 8208 Section 15.2.2.8" + DEFVAL { noFacility } + ::= { x25CallParmEntry 17 } + + x25CallParmRpoa OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..108)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The RPOA facility. The octet string + contains n * 4 sequences of the characters + 0-9 to specify a facility with n entries. + The octet string containing the 3 characters + DEF for a circuit specifies use of the PLE + default (the entry for the PLE default may + not contain DEF). A zero length string + indicates no facility requested." + REFERENCE "See ISO 8208, section 15.2.2.9" + DEFVAL { ''h } + ::= { x25CallParmEntry 18 } + + x25CallParmTrnstDly OBJECT-TYPE + SYNTAX INTEGER (0..65537) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Transit Delay Selection and Indication + value. A value of 65536 indicates no + facility requested. A value of 65537 for a + circuit means use the PLE default (the PLE + default parameters entry may not use the + value 65537). The value 65535 may only be + used to indicate the value in use by a + circuit." + REFERENCE "See ISO 8208, Section 15.2.2.13" + DEFVAL { 65536 } + ::= { x25CallParmEntry 19 } + + -- The following parameters are for CCITT facilities. + + x25CallParmCallingExt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Calling Extension facility. This + contains one of the following: + + A sequence of hex digits with the value to + be put in the facility. These digits will be + converted to binary by the agent and put in + the facility. These octets do not include + the length octet. + + A value containing the three character DEF + for a circuit means use the PLE default, + (the entry for the PLE default parameters + may not use the value DEF). + + A zero length string indicates no facility + requested." + REFERENCE "See ISO 8208 Section 15.3.2.1" + DEFVAL { ''h } + ::= { x25CallParmEntry 20 } + + x25CallParmCalledExt OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..40)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Called Extension facility. This + contains one of the following: + + A sequence of hex digits with the value to + be put in the facility. These digits will be + converted to binary by the agent and put in + the facility. These octets do not include + the length octet. + + A value containing the three character DEF + for a circuit means use the PLE default, + (the entry for the PLE default parameters + may not use the value DEF). + + A zero length string indicates no facility + requested." + REFERENCE "See ISO 8208 Section 15.3.2.2" + DEFVAL { ''h } + ::= { x25CallParmEntry 21 } + + x25CallParmInMinThuPutCls OBJECT-TYPE + SYNTAX INTEGER (0..17) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The minimum input throughput Class. A + value of 16 for a circuit means use the PLE + default (the PLE parameters entry may not + use this value). A value of 17 indicates no + facility requested." + REFERENCE "See ISO 8208 Section 15.3.2.3" + DEFVAL { 17 } + ::= { x25CallParmEntry 22 } + + x25CallParmOutMinThuPutCls OBJECT-TYPE + SYNTAX INTEGER (0..17) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The minimum output throughput Class. A + value of 16 for a circuit means use the PLE + default (the PLE parameters entry may not + use this value). A value of 17 indicates no + facility requested." + REFERENCE "See ISO 8208 Section 15.3.2.3" + DEFVAL { 17 } + ::= { x25CallParmEntry 23 } + + x25CallParmEndTrnsDly OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..6)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The End-to-End Transit Delay to negotiate. + An octet string of length 2, 4, or 6 + contains the facility encoded as specified + in ISO/IEC 8208 section 15.3.2.4. An octet + string of length 3 containing the three + character DEF for a circuit means use the + PLE default (the entry for the PLE default + can not contain the characters DEF). A zero + length string indicates no facility + requested." + REFERENCE "See ISO 8208 Section 15.3.2.4" + DEFVAL { ''h } + ::= { x25CallParmEntry 24 } + + x25CallParmPriority OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..6)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The priority facility to negotiate. The + octet string encoded as specified in ISO/IEC + 8208 section 15.3.2.5. A zero length string + indicates no facility requested. The entry + for the PLE default parameters must be zero + length." + REFERENCE "See ISO 8208 Section 15.3.2.5" + DEFVAL { ''h } + ::= { x25CallParmEntry 25 } + + x25CallParmProtection OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..108)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A string contains the following: + A hex string containing the value for the + protection facility. This will be converted + from hex to the octets actually in the + packet by the agent. The agent will supply + the length field and the length octet is not + contained in this string. + + An string containing the 3 characters DEF + for a circuit means use the PLE default (the + entry for the PLE default parameters may not + use the value DEF). + + A zero length string mean no facility + requested." + REFERENCE "See ISO 8208 Section 15.3.2.5" + DEFVAL { ''h } + ::= { x25CallParmEntry 26 } + + x25CallParmExptData OBJECT-TYPE + SYNTAX INTEGER { + default (1), + noExpeditedData (2), + expeditedData (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The Expedited Data facility to negotiate. + A value of default for a circuit means use + the PLE default value. The entry for the + PLE default parameters may not have the + value default." + REFERENCE "See ISO 8208 Section 15.3.2.7" + DEFVAL { noExpeditedData } + ::= { x25CallParmEntry 27 } + + x25CallParmUserData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..128)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The call user data as placed in the packet. + A zero length string indicates no call user + data. If both the circuit call parameters + and the PLE default have call user data + defined, the data from the circuit call + parameters will be used. If only the PLE + has data defined, the PLE entry will be + used. If neither the circuit call + parameters or the PLE default entry has a + value, no call user data will be sent." + REFERENCE "See ISO 8208 Section 12.2.1.1.6, 12.2.1.2" + DEFVAL { ''h } + ::= { x25CallParmEntry 28 } + + x25CallParmCallingNetworkFacilities OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..108)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The calling network facilities. The + facilities are encoded here exactly as + encoded in the call packet. These + facilities do not include the marker + facility code. + + A zero length string in the entry for the + parameter to use when establishing a circuit + means use the PLE default. A zero length + string in the entry for PLE default + parameters indicates no default facilities." + REFERENCE "See ISO 8206 Section 15.1, category b" + DEFVAL { ''h } + ::= { x25CallParmEntry 29 } + + x25CallParmCalledNetworkFacilities OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..108)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The called network facilities. The + facilities are encoded here exactly as + encoded in the call packet. These + facilities do not include the marker + facility code. + + A zero length string in the entry for the + parameter to use when establishing a circuit + means use the PLE default. A zero length + string in the entry for PLE default + parameters indicates no default facilities." + REFERENCE "See ISO 8206 Section 15.1, category c" + DEFVAL { ''h } + ::= { x25CallParmEntry 30 } + + -- ########################################################### + -- X.25 Traps + -- ########################################################### + + x25Restart TRAP-TYPE + ENTERPRISE x25 + VARIABLES { x25OperIndex } + DESCRIPTION + "This trap means the X.25 PLE sent or + received a restart packet. The restart that + brings up the link should not send a + x25Restart trap so the interface should send + a linkUp trap. Sending this trap means the + agent does not send a linkDown and linkUp + trap." + ::= 1 + + + x25Reset TRAP-TYPE + ENTERPRISE x25 + VARIABLES { x25CircuitIndex, + x25CircuitChannel } + DESCRIPTION + "If the PLE sends or receives a reset, the + agent should send an x25Reset trap." + ::= 2 + + -- ########################################################### + -- X.25 Protocol Version Identifiers + -- ########################################################### + + x25ProtocolVersion OBJECT IDENTIFIER + ::= { x25 10 } + + -- X.25 CCITT 1976 version. + x25protocolCcittV1976 OBJECT IDENTIFIER + ::= { x25ProtocolVersion 1 } + + -- X.25 CCITT 1980 version. + x25protocolCcittV1980 OBJECT IDENTIFIER + ::= { x25ProtocolVersion 2 } + + -- X.25 CCITT 1984 version. + x25protocolCcittV1984 OBJECT IDENTIFIER + ::= { x25ProtocolVersion 3 } + + -- X.25 CCITT 1988 version. + x25protocolCcittV1988 OBJECT IDENTIFIER + ::= { x25ProtocolVersion 4 } + + -- X.25 1987 version of ISO 8208. + x25protocolIso8208V1987 OBJECT IDENTIFIER + ::= { x25ProtocolVersion 5 } + + -- X.25 1989 version of ISO 8208. + x25protocolIso8208V1989 OBJECT IDENTIFIER + ::= { x25ProtocolVersion 6 } + + -- ########################################################### + +END diff --git a/pandora_console/attachment/mibs/RFC1389-MIB b/pandora_console/attachment/mibs/RFC1389-MIB new file mode 100644 index 0000000000..84a0f81cb8 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1389-MIB @@ -0,0 +1,398 @@ +-- Changes to rfc1389 (RIP MIB): +-- No changes needed. +-- dperkins@scruznet.com + +RFC1389-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter, TimeTicks, IpAddress + FROM RFC1155-SMI + mib-2 + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- RIP-2 Management Information Base + + rip2 OBJECT IDENTIFIER ::= { mib-2 23 } + + + -- the RouteTag type represents the contents of the + -- Route Tag field in the packet header or route entry. + + RouteTag ::= OCTET STRING (SIZE (2)) + + -- the Validation type is used for the variable that deletes + -- an entry from a table, and ALWAYS takes at least these values: + + Validation ::= INTEGER { valid (1), invalid (2) } + + -- The RIP-2 Globals Group. + -- Implementation of this group is mandatory for systems that + -- implement RIP-2. + + -- These counters are intended to facilitate debugging quickly + -- changing routes or failing neighbors + + rip2GlobalGroup OBJECT IDENTIFIER ::= { rip2 1 } + + rip2GlobalRouteChanges OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of changes made to the IP Route Da- + tabase by RIP." + ::= { rip2GlobalGroup 1 } + + rip2GlobalQueries OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of responses sent to RIP queries + from other systems." + ::= { rip2GlobalGroup 2 } + + -- RIP Interfaces Groups + -- Implementation of these Groups is mandatory for systems that + -- implement RIP-2. + + -- Since RIP versions 1 and 2 do not deal with addressless links, + -- it is assumed that RIP "interfaces" are subnets within a + -- routing domain. + + + -- The RIP Interface Status Table. + + rip2IfStatTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rip2IfStatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of subnets which require separate + status monitoring in RIP." + ::= { rip2 2 } + + rip2IfStatEntry OBJECT-TYPE + SYNTAX Rip2IfStatEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Single Routing Domain in a single Subnet." + INDEX { rip2IfStatAddress } + ::= { rip2IfStatTable 1 } + + Rip2IfStatEntry ::= + SEQUENCE { + rip2IfStatAddress + IpAddress, + rip2IfStatRcvBadPackets + Counter, + rip2IfStatRcvBadRoutes + Counter, + rip2IfStatSentUpdates + Counter, + rip2IfStatStatus + Validation + } + + rip2IfStatAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP Address of this system on the indicated + subnet." + ::= { rip2IfStatEntry 1 } + + rip2IfStatRcvBadPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of RIP response packets received by + the RIP process which were subsequently dis- + carded for any reason (e.g. a version 0 packet, + or an unknown command type)." + ::= { rip2IfStatEntry 2 } + + rip2IfStatRcvBadRoutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of routes, in valid RIP packets, + which were ignored for any reason (e.g. unknown + address family, or invalid metric)." + ::= { rip2IfStatEntry 3 } + + rip2IfStatSentUpdates OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of triggered RIP updates actually + sent on this interface. This explicitly does + NOT include full updates sent containing new + information." + ::= { rip2IfStatEntry 4 } + + rip2IfStatStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Writing invalid has the effect of deleting + this interface." + DEFVAL { valid } + ::= { rip2IfStatEntry 5 } + + -- The RIP Interface Configuration Table. + + rip2IfConfTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rip2IfConfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of subnets which require separate con- + figuration in RIP." + ::= { rip2 3 } + + rip2IfConfEntry OBJECT-TYPE + SYNTAX Rip2IfConfEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A Single Routing Domain in a single Subnet." + INDEX { rip2IfConfAddress } + ::= { rip2IfConfTable 1 } + + Rip2IfConfEntry ::= + SEQUENCE { + rip2IfConfAddress + IpAddress, + rip2IfConfDomain + RouteTag, + rip2IfConfAuthType + INTEGER, + rip2IfConfAuthKey + OCTET STRING (SIZE(0..16)), + rip2IfConfSend + INTEGER, + rip2IfConfReceive + INTEGER, + rip2IfConfDefaultMetric + INTEGER, + rip2IfConfStatus + Validation + } + + rip2IfConfAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP Address of this system on the indicated + subnet." + ::= { rip2IfConfEntry 1 } + + rip2IfConfDomain OBJECT-TYPE + SYNTAX RouteTag + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Value inserted into the Routing Domain field + of all RIP packets sent on this interface." + DEFVAL { '0000'h } + ::= { rip2IfConfEntry 2 } + + rip2IfConfAuthType OBJECT-TYPE + SYNTAX INTEGER { + noAuthentication (1), + simplePassword (2) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of Authentication used on this inter- + face." + DEFVAL { noAuthentication } + ::= { rip2IfConfEntry 3 } + + rip2IfConfAuthKey OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..16)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value to be used as the Authentication Key + whenever the corresponding instance of + rip2IfConfAuthType has the value simplePass- + word. A modification of the corresponding in- + stance of rip2IfConfAuthType does not modify + the rip2IfConfAuthKey value. + + If a string shorter than 16 octets is supplied, + it will be left-justified and padded to 16 oc- + tets, on the right, with nulls (0x00). + + Reading this object always results in an OCTET + STRING of length zero; authentication may not + be bypassed by reading the MIB object." + DEFVAL { ''h } + ::= { rip2IfConfEntry 4 } + + rip2IfConfSend OBJECT-TYPE + SYNTAX INTEGER { + doNotSend (1), + ripVersion1 (2), + rip1Compatible (3), + ripVersion2 (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "What the router sends on this interface. + ripVersion1 implies sending RIP updates compli- + ant with RFC 1058. rip1Compatible implies + broadcasting RIP-2 updates using RFC 1058 route + subsumption rules. ripVersion2 implies multi- + casting RIP-2 updates." + DEFVAL { rip1Compatible } + ::= { rip2IfConfEntry 5 } + + rip2IfConfReceive OBJECT-TYPE + SYNTAX INTEGER { + rip1 (1), + rip2 (2), + rip1OrRip2 (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This indicates which version of RIP updates + are to be accepted. Note that rip2 and + rip1OrRip2 implies reception of multicast pack- + ets." + DEFVAL { rip1OrRip2 } + ::= { rip2IfConfEntry 6 } + + rip2IfConfDefaultMetric OBJECT-TYPE + SYNTAX INTEGER ( 0..15 ) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates what metric is to be + used as a default route in RIP updates ori- + ginated on this interface. A value of zero in- + dicates that no default route should be ori- + ginated; in this case, a default route via + another router may be propagated." + ::= { rip2IfConfEntry 7 } + + + rip2IfConfStatus OBJECT-TYPE + SYNTAX Validation + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Writing invalid has the effect of deleting + this interface." + DEFVAL { valid } + ::= { rip2IfConfEntry 8 } + + -- Peer Table + + -- The RIP Peer Group + -- Implementation of this Group is Optional + + -- This group provides information about active peer + -- relationships intended to assist in debugging. + + rip2PeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rip2PeerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A list of RIP Peers." + ::= { rip2 4 } + + rip2PeerEntry OBJECT-TYPE + SYNTAX Rip2PeerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information regarding a single routing peer." + INDEX { rip2PeerAddress, rip2PeerDomain } + ::= { rip2PeerTable 1 } + + Rip2PeerEntry ::= + SEQUENCE { + rip2PeerAddress + IpAddress, + rip2PeerDomain + RouteTag, + rip2PeerLastUpdate + TimeTicks, + rip2PeerVersion + INTEGER, + rip2PeerRcvBadPackets + Counter, + rip2PeerRcvBadRoutes + Counter + } + + rip2PeerAddress OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The IP Address of the Peer System." + ::= { rip2PeerEntry 1 } + + rip2PeerDomain OBJECT-TYPE + SYNTAX RouteTag + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value in the Routing Domain field in RIP + packets received from the peer." + ::= { rip2PeerEntry 2 } + + rip2PeerLastUpdate OBJECT-TYPE + SYNTAX TimeTicks + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The value of sysUpTime when the most recent + RIP update was received from this system." + ::= { rip2PeerEntry 3 } + + rip2PeerVersion OBJECT-TYPE + SYNTAX INTEGER ( 0..255 ) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The RIP version number in the header of the + last RIP packet received." + ::= { rip2PeerEntry 4 } + + rip2PeerRcvBadPackets OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of RIP response packets from this + peer discarded as invalid." + ::= { rip2PeerEntry 5 } + + rip2PeerRcvBadRoutes OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of routes from this peer that were + ignored because the entry format was invalid." + ::= { rip2PeerEntry 6 } + +END diff --git a/pandora_console/attachment/mibs/RFC1398-MIB b/pandora_console/attachment/mibs/RFC1398-MIB new file mode 100644 index 0000000000..8cb2afa0d0 --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1398-MIB @@ -0,0 +1,495 @@ +-- Changes to rfc1398 (Ethernet like MIB): +-- Removed Gauge from the IMPORT list since it was not +-- used. +-- dperkins@scruznet.com + +RFC1398-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Counter + FROM RFC1155-SMI + transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- This MIB module uses the extended OBJECT-TYPE macro as + -- defined in RFC-1212. + + -- this is the MIB module for ethernet-like objects + + dot3 OBJECT IDENTIFIER ::= { transmission 7 } + + -- { dot3 1 } is obsolete and has been deleted. + + -- the Ethernet-like Statistics group + + -- Implementation of this group is mandatory + + dot3StatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3StatsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Statistics for a collection of ethernet-like + interfaces attached to a particular system." + ::= { dot3 2 } + + dot3StatsEntry OBJECT-TYPE + SYNTAX Dot3StatsEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Statistics for a particular interface to an + ethernet-like medium." + INDEX { dot3StatsIndex } + ::= { dot3StatsTable 1 } + + + Dot3StatsEntry ::= SEQUENCE { + dot3StatsIndex + INTEGER, + dot3StatsAlignmentErrors + Counter, + dot3StatsFCSErrors + Counter, + dot3StatsSingleCollisionFrames + Counter, + dot3StatsMultipleCollisionFrames + Counter, + dot3StatsSQETestErrors + Counter, + dot3StatsDeferredTransmissions + Counter, + dot3StatsLateCollisions + Counter, + dot3StatsExcessiveCollisions + Counter, + dot3StatsInternalMacTransmitErrors + Counter, + dot3StatsCarrierSenseErrors + Counter, + dot3StatsFrameTooLongs + Counter, + dot3StatsInternalMacReceiveErrors + Counter + } + + dot3StatsIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index value that uniquely identifies an + interface to an ethernet-like medium. The + interface identified by a particular value of + this index is the same interface as identified + by the same value of ifIndex." + ::= { dot3StatsEntry 1 } + + dot3StatsAlignmentErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames received on a particular + interface that are not an integral number of + octets in length and do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the alignmentError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 2 } + + dot3StatsFCSErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames received on a particular + interface that are an integral number of octets + in length but do not pass the FCS check. + + The count represented by an instance of this + object is incremented when the frameCheckError + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 3 } + + dot3StatsSingleCollisionFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of successfully transmitted frames on + a particular interface for which transmission + is inhibited by exactly one collision. + + A frame that is counted by an instance of this + object is also counted by the corresponding + instance of either the ifOutUcastPkts or + ifOutNUcastPkts object and is not counted by + the corresponding instance of the + dot3StatsMultipleCollisionFrames object." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 4 } + + dot3StatsMultipleCollisionFrames OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of successfully transmitted frames on + a particular interface for which transmission + is inhibited by more than one collision. + + A frame that is counted by an instance of this + object is also counted by the corresponding + instance of either the ifOutUcastPkts or + ifOutNUcastPkts object and is not counted by + the corresponding instance of the + dot3StatsSingleCollisionFrames object." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 5 } + + dot3StatsSQETestErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of times that the SQE TEST ERROR + message is generated by the PLS sublayer for a + particular interface. The SQE TEST ERROR + message is defined in section 7.2.2.2.4 of + ANSI/IEEE 802.3-1985 and its generation is + described in section 7.2.4.6 of the same + document." + REFERENCE + "ANSI/IEEE Std 802.3-1985 Carrier Sense + Multiple Access with Collision Detection Access + Method and Physical Layer Specifications" + ::= { dot3StatsEntry 6 } + + + dot3StatsDeferredTransmissions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames for which the first + transmission attempt on a particular interface + is delayed because the medium is busy. + + The count represented by an instance of this + object does not include frames involved in + collisions." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 7 } + + dot3StatsLateCollisions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times that a collision is + detected on a particular interface later than + 512 bit-times into the transmission of a + packet. + + Five hundred and twelve bit-times corresponds + to 51.2 microseconds on a 10 Mbit/s system. A + (late) collision included in a count + represented by an instance of this object is + also considered as a (generic) collision for + purposes of other collision-related + statistics." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 8 } + + dot3StatsExcessiveCollisions OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames for which transmission on a + particular interface fails due to excessive + collisions." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 9 } + + dot3StatsInternalMacTransmitErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames for which transmission on a + particular interface fails due to an internal + MAC sublayer transmit error. A frame is only + counted by an instance of this object if it is + not counted by the corresponding instance of + either the dot3StatsLateCollisions object, the + dot3StatsExcessiveCollisions object, or the + dot3StatsCarrierSenseErrors object. + + The precise meaning of the count represented by + an instance of this object is implementation- + specific. In particular, an instance of this + object may represent a count of transmission + errors on a particular interface that are not + otherwise counted." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 10 } + + dot3StatsCarrierSenseErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times that the carrier sense + condition was lost or never asserted when + attempting to transmit a frame on a particular + interface. + + The count represented by an instance of this + object is incremented at most once per + transmission attempt, even if the carrier sense + condition fluctuates during a transmission + attempt." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 11 } + + + -- { dot3StatsEntry 12 } is not assigned + + dot3StatsFrameTooLongs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames received on a particular + interface that exceed the maximum permitted + frame size. + + The count represented by an instance of this + object is incremented when the frameTooLong + status is returned by the MAC service to the + LLC (or other MAC user). Received frames for + which multiple error conditions obtain are, + according to the conventions of IEEE 802.3 + Layer Management, counted exclusively according + to the error status presented to the LLC." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 13 } + + -- { dot3StatsEntry 14 } is not assigned + + -- { dot3StatsEntry 15 } is not assigned + + dot3StatsInternalMacReceiveErrors OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of frames for which reception on a + particular interface fails due to an internal + MAC sublayer receive error. A frame is only + counted by an instance of this object if it is + not counted by the corresponding instance of + either the dot3StatsFrameTooLongs object, the + dot3StatsAlignmentErrors object, or the + dot3StatsFCSErrors object. + + The precise meaning of the count represented by + an instance of this object is implementation- + specific. In particular, an instance of this + object may represent a count of receive errors + on a particular interface that are not + otherwise counted." + REFERENCE + "IEEE 802.3 Layer Management" + ::= { dot3StatsEntry 16 } + + + -- the Ethernet-like Collision Statistics group + + -- Implementation of this group is optional; it is appropriate + -- for all systems which have the necessary metering + + dot3CollTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot3CollEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A collection of collision histograms for a + particular set of interfaces." + ::= { dot3 5 } + + dot3CollEntry OBJECT-TYPE + SYNTAX Dot3CollEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A cell in the histogram of per-frame + collisions for a particular interface. An + instance of this object represents the + frequency of individual MAC frames for which + the transmission (successful or otherwise) on a + particular interface is accompanied by a + particular number of media collisions." + INDEX { dot3CollIndex, dot3CollCount } + ::= { dot3CollTable 1 } + + Dot3CollEntry ::= SEQUENCE { + dot3CollIndex + INTEGER, + dot3CollCount + INTEGER, + dot3CollFrequencies + Counter + } + + dot3CollIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value that uniquely identifies the + interface to which a particular collision + histogram cell pertains. The interface + identified by a particular value of this index + is the same interface as identified by the same + value of ifIndex." + ::= { dot3CollEntry 1 } + + dot3CollCount OBJECT-TYPE + SYNTAX INTEGER (1..16) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of per-frame media collisions for + which a particular collision histogram cell + represents the frequency on a particular + interface." + ::= { dot3CollEntry 2 } + + dot3CollFrequencies OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A count of individual MAC frames for which the + transmission (successful or otherwise) on a + particular interface is accompanied by a + particular number of media collisions." + ::= { dot3CollEntry 3 } + + -- 802.3 Tests + + -- The ifExtnsTestTable defined in RFC 1229 provides a common + -- means for a manager to test any interface corresponding to + + + -- a value of ifIndex. + + -- At this time, one well known test (testFullDuplexLoopBack) is + -- defined in RFC 1229. For ethernet-like interfaces, this test + -- configures the MAC chip and executes an internal loopback + -- test of memory and the MAC chip logic. This loopback test can + -- only be executed if the interface is offline. Once the test + -- has completed, the MAC chip should be reinitialized for network + -- operation, but it should remain offline. + + -- If an error occurs during a test, the object ifExtnsTestResult + -- (defined in RFC 1229) will be set to failed(7). The following + -- two OBJECT IDENTIFIERs may be used to provided more + -- information as values for the object ifExtnsTestCode in + -- RFC 1229: + + dot3Errors OBJECT IDENTIFIER ::= { dot3 7 } + + -- couldn't initialize MAC chip for test + dot3ErrorInitError OBJECT IDENTIFIER ::= { dot3Errors 1 } + + -- expected data not received (or not + -- received correctly) in loopback test + dot3ErrorLoopbackError OBJECT IDENTIFIER ::= { dot3Errors 2 } + + -- Tests + -- TDR Test + + -- Another test, specific to ethernet-like interfaces with the + -- exception of 10BaseT and 10BaseF, is Time-domain Reflectometry + -- (TDR). + -- The TDR value may be useful in determining the approximate + -- distance to a cable fault. It is advisable to repeat this + -- test to check for a consistent resulting TDR value, to verify + -- that there is a fault. + + dot3Tests OBJECT IDENTIFIER ::= { dot3 6 } + dot3TestTdr OBJECT IDENTIFIER ::= { dot3Tests 1 } + + -- A TDR test returns as its result the time interval, measured + -- in 10 MHz ticks or 100 nsec units, between the start of + -- TDR test transmission and the subsequent detection of a + -- collision or deassertion of carrier. On successful completion + -- of a TDR test, the appropriate instance of ifExtnsTestResult + -- contains the OBJECT IDENTIFIER of the MIB object which + -- contains the value of this time interval. + + + -- 802.3 Hardware Chipsets + + -- The object ifExtnsChipSet is provided in RFC 1229 to identify + -- the MAC hardware used to communcate on an interface. The + -- following hardware chipsets are provided for 802.3: + + dot3ChipSets OBJECT IDENTIFIER ::= { dot3 8 } + dot3ChipSetAMD OBJECT IDENTIFIER ::= { dot3ChipSets 1 } + dot3ChipSetAMD7990 OBJECT IDENTIFIER ::= { dot3ChipSetAMD 1 } + dot3ChipSetAMD79900 OBJECT IDENTIFIER ::= { dot3ChipSetAMD 2 } + + dot3ChipSetIntel OBJECT IDENTIFIER ::= { dot3ChipSets 2 } + dot3ChipSetIntel82586 OBJECT IDENTIFIER ::= { dot3ChipSetIntel 1 } + dot3ChipSetIntel82596 OBJECT IDENTIFIER ::= { dot3ChipSetIntel 2 } + dot3ChipSetSeeq OBJECT IDENTIFIER ::= { dot3ChipSets 3 } + dot3ChipSetSeeq8003 OBJECT IDENTIFIER ::= { dot3ChipSetSeeq 1 } + + dot3ChipSetNational OBJECT IDENTIFIER ::= { dot3ChipSets 4 } + dot3ChipSetNational8390 OBJECT IDENTIFIER ::= + { dot3ChipSetNational 1 } + dot3ChipSetNationalSonic OBJECT IDENTIFIER ::= + { dot3ChipSetNational 2 } + + dot3ChipSetFujitsu OBJECT IDENTIFIER ::= { dot3ChipSets 5 } + dot3ChipSetFujitsu86950 OBJECT IDENTIFIER ::= + { dot3ChipSetFujitsu 1 } + dot3ChipSetFujitsu86960 OBJECT IDENTIFIER ::= + { dot3ChipSetFujitsu 2 } + + -- For those chipsets not represented above, OBJECT IDENTIFIER + -- assignment is required in other documentation, e.g., assignment + -- within that part of the registration tree delegated to + -- individual enterprises (see RFC 1155). + +END diff --git a/pandora_console/attachment/mibs/RFC1406-MIB b/pandora_console/attachment/mibs/RFC1406-MIB new file mode 100644 index 0000000000..bc5b73e9eb --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1406-MIB @@ -0,0 +1,1547 @@ +-- Changes to rfc1406 (DS1/E1 MIB): +-- No changes needed. +-- dperkins@scruznet.com + +RFC1406-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Gauge + FROM RFC1155-SMI + transmission, DisplayString + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- This MIB module uses the extended OBJECT-TYPE macro as + -- defined in RFC 1212. + + -- this is the MIB module for the DS1 objects + + ds1 OBJECT IDENTIFIER ::= { transmission 18 } + + -- note that this subsumes cept (19); there is no separate CEPT MIB + + -- The DS1 Near End Group + + -- Implementation of this group is mandatory for all systems + -- that attach to a DS1 Interface. + + -- The DS1 Near End Group consists of four tables: + -- DS1 Configuration + -- DS1 Current + -- DS1 Interval + -- DS1 Total + + -- the DS1 Configuration Table + + dsx1ConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Configuration table." + ::= { ds1 6 } + + dsx1ConfigEntry OBJECT-TYPE + SYNTAX Dsx1ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Configuration table." + INDEX { dsx1LineIndex } + ::= { dsx1ConfigTable 1 } + + Dsx1ConfigEntry ::= + SEQUENCE { + dsx1LineIndex + INTEGER, + dsx1IfIndex + INTEGER, + dsx1TimeElapsed + INTEGER, + dsx1ValidIntervals + INTEGER, + dsx1LineType + INTEGER, + dsx1LineCoding + INTEGER, + dsx1SendCode + INTEGER, + dsx1CircuitIdentifier + DisplayString, + dsx1LoopbackConfig + INTEGER, + dsx1LineStatus + INTEGER, + dsx1SignalMode + INTEGER, + dsx1TransmitClockSource + INTEGER, + dsx1Fdl + INTEGER + } + + dsx1LineIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is the identifier of a DS1 Inter- + face on a managed device. If there is an ifEn- + try that is directly associated with this and + only this DS1 interface, it should have the + same value as ifIndex. Otherwise, the value + exceeds ifNumber, and is a unique identifier + following this rule: inside interfaces (e.g., + equipment side) with even numbers and outside + interfaces (e.g., network side) with odd + numbers." + ::= { dsx1ConfigEntry 1 } + + dsx1IfIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value for this object is equal to the + value of ifIndex from the Interfaces table of + MIB II (RFC 1213)." + ::= { dsx1ConfigEntry 2 } + + dsx1TimeElapsed OBJECT-TYPE + SYNTAX INTEGER (0..899) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds that have elapsed since + the beginning of the current error-measurement + period." + ::= { dsx1ConfigEntry 3 } + + dsx1ValidIntervals OBJECT-TYPE + SYNTAX INTEGER (0..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of previous intervals for which + valid data was collected. The value will be 96 + unless the interface was brought on-line within + the last 24 hours, in which case the value will + be the number of complete 15 minute intervals + the since interface has been online." + ::= { dsx1ConfigEntry 4 } + + dsx1LineType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + dsx1ESF(2), + dsx1D4(3), + dsx1E1(4), + dsx1E1-CRC(5), + dsx1E1-MF(6), + dsx1E1-CRC-MF(7) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the variety of DS1 + Line implementing this circuit. The type of + circuit affects the number of bits per second + that the circuit can reasonably carry, as well + as the interpretation of the usage and error + statistics. The values, in sequence, describe: + + TITLE: SPECIFICATION: + dsx1ESF Extended SuperFrame DS1 + dsx1D4 AT&T D4 format DS1 + dsx1E1 CCITT Recommendation G.704 + (Table 4a) + dsx1E1-CRC CCITT Recommendation G.704 + (Table 4b) + dsxE1-MF G.704 (Table 4a) with TS16 + multiframing enabled + dsx1E1-CRC-MF G.704 (Table 4b) with TS16 + multiframing enabled" + ::= { dsx1ConfigEntry 5 } + + dsx1LineCoding OBJECT-TYPE + SYNTAX INTEGER { + dsx1JBZS (1), + dsx1B8ZS (2), + dsx1HDB3 (3), + dsx1ZBTSI (4), + dsx1AMI (5), + other(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable describes the variety of Zero + Code Suppression used on the link, which in + turn affects a number of its characteristics. + + dsx1JBZS refers the Jammed Bit Zero Suppres- + sion, in which the AT&T specification of at + least one pulse every 8 bit periods is literal- + ly implemented by forcing a pulse in bit 8 of + each channel. Thus, only seven bits per chan- + nel, or 1.344 Mbps, is available for data. + + dsx1B8ZS refers to the use of a specified pat- + tern of normal bits and bipolar violations + which are used to replace a sequence of eight + zero bits. + + ANSI Clear Channels may use dsx1ZBTSI, or Zero + Byte Time Slot Interchange. + + E1 links, with or without CRC, use dsx1HDB3 or + dsx1AMI. + + dsx1AMI refers to a mode wherein no zero code + suppression is present and the line encoding + does not solve the problem directly. In this + application, the higher layer must provide data + which meets or exceeds the pulse density re- + quirements, such as inverting HDLC data." + ::= { dsx1ConfigEntry 6 } + + dsx1SendCode OBJECT-TYPE + SYNTAX INTEGER { + dsx1SendNoCode(1), + dsx1SendLineCode(2), + dsx1SendPayloadCode(3), + dsx1SendResetCode(4), + dsx1SendQRS(5), + dsx1Send511Pattern(6), + dsx1Send3in24Pattern(7), + dsx1SendOtherTestPattern(8) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates what type of code is + being sent across the DS1 interface by the dev- + ice. The values mean: + + dsx1SendNoCode + sending looped or normal data + + dsx1SendLineCode + sending a request for a line loopback + + dsx1SendPayloadCode + sending a request for a payload loopback + + + dsx1SendResetCode + sending a loopback termination request + + dsx1SendQRS + sending a Quasi-Random Signal (QRS) test + pattern + + dsx1Send511Pattern + sending a 511 bit fixed test pattern + + dsx1Send3in24Pattern + sending a fixed test pattern of 3 bits set + in 24 + + dsx1SendOtherTestPattern + sending a test pattern other than those + described by this object" + ::= { dsx1ConfigEntry 7 } + + dsx1CircuitIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable contains the transmission + vendor's circuit identifier, for the purpose of + facilitating troubleshooting." + ::= { dsx1ConfigEntry 8 } + + dsx1LoopbackConfig OBJECT-TYPE + SYNTAX INTEGER { + dsx1NoLoop(1), + dsx1PayloadLoop(2), + dsx1LineLoop(3), + dsx1OtherLoop(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable represents the loopback confi- + guration of the DS1 interface. Agents support- + ing read/write access should return badValue in + response to a requested loopback state that the + interface does not support. The values mean: + + dsx1NoLoop + Not in the loopback state. A device that + is not capable of performing a loopback on + the interface shall always return this as + it's value. + + dsx1PayloadLoop + The received signal at this interface is + looped through the device. Typically the + received signal is looped back for re- + transmission after it has passed through + the device's framing function. + + dsx1LineLoop + The received signal at this interface does + not go through the device (minimum pene- + tration) but is looped back out. + + dsx1OtherLoop + Loopbacks that are not defined here." + ::= { dsx1ConfigEntry 9 } + + dsx1LineStatus OBJECT-TYPE + SYNTAX INTEGER (1..8191) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the Line Status of the + interface. It contains loopback, failure, re- + ceived 'alarm' and transmitted 'alarm' infor- + mation. + + The dsx1LineStatus is a bit map represented as a sum, + therefore, it can represent multiple failures (alarms) and + a LoopbackState simultaneously. + + dsx1NoAlarm should be set if and only if no other flag is + set. + + If the dsx1LoopbackState bit is set, the loopback in ef- + fect can be determined from the dsx1LoopbackConfig object. + + The various bit positions are: + 1 dsx1NoAlarm No Alarm Present + 2 dsx1RcvFarEndLOF Far end LOF (a.k.a., Yellow Alarm) + 4 dsx1XmtFarEndLOF Near end sending LOF Indication + 8 dsx1RcvAIS Far end sending AIS + + + 16 dsx1XmtAIS Near end sending AIS + 32 dsx1LossOfFrame Near end LOF (a.k.a., Red Alarm) + 64 dsx1LossOfSignal Near end Loss Of Signal + 128 dsx1LoopbackState Near end is looped + 256 dsx1T16AIS E1 TS16 AIS + 512 dsx1RcvFarEndLOMF Far End Sending TS16 LOMF + 1024 dsx1XmtFarEndLOMF Near End Sending TS16 LOMF + 2048 dsx1RcvTestCode Near End detects a test code + 4096 dsx1OtherFailure any line status not defined here" + ::= { dsx1ConfigEntry 10 } + + dsx1SignalMode OBJECT-TYPE + SYNTAX INTEGER { + none (1), + robbedBit (2), + bitOriented (3), + messageOriented (4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "'none' indicates that no bits are reserved for + signaling on this channel. + + 'robbedBit' indicates that T1 Robbed Bit Sig- + naling is in use. + + 'bitOriented' indicates that E1 Channel Asso- + ciated Signaling is in use. + + 'messageOriented' indicates that Common Chan- + nel Signaling is in use either on channel 16 of + an E1 link or channel 24 of a T1." + ::= { dsx1ConfigEntry 11 } + + dsx1TransmitClockSource OBJECT-TYPE + SYNTAX INTEGER { + loopTiming (1), + localTiming (2), + throughTiming (3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The source of Tranmit Clock. + 'loopTiming' indicates that the recovered re- + ceive clock is used as the transmit clock. + + 'localTiming' indicates that a local clock + source is used. + + 'throughTiming' indicates that recovered re- + ceive clock from another interface is used as + the transmit clock." + ::= { dsx1ConfigEntry 12 } + + dsx1Fdl OBJECT-TYPE + SYNTAX INTEGER { + other(1), + dsx1Ansi-T1-403(2), + dsx1Att-54016(4), + dsx1Fdl-none(8) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This bitmap describes the use of the facili- + ties data link, and is the sum of the capabili- + ties: + + 'other' indicates that a protocol other than + one following is used. + + 'dsx1Ansi-T1-403' refers to the FDL exchange + recommended by ANSI. + + 'dsx1Att-54016' refers to ESF FDL exchanges. + + 'dsx1Fdl-none' indicates that the device does + not use the FDL." + ::= { dsx1ConfigEntry 13 } + + -- the DS1 Current Table + + -- The DS1 current table contains various statistics being + -- collected for the current 15 minute interval. + + dsx1CurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Current table." + ::= { ds1 7 } + + dsx1CurrentEntry OBJECT-TYPE + SYNTAX Dsx1CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Current table." + INDEX { dsx1CurrentIndex } + ::= { dsx1CurrentTable 1 } + + Dsx1CurrentEntry ::= + SEQUENCE { + dsx1CurrentIndex + INTEGER, + dsx1CurrentESs + Gauge, + dsx1CurrentSESs + Gauge, + dsx1CurrentSEFSs + Gauge, + dsx1CurrentUASs + Gauge, + dsx1CurrentCSSs + Gauge, + dsx1CurrentPCVs + Gauge, + dsx1CurrentLESs + Gauge, + dsx1CurrentBESs + Gauge, + dsx1CurrentDMs + Gauge, + dsx1CurrentLCVs + Gauge + } + + dsx1CurrentIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value as a dsx1LineIndex + object instance." + ::= { dsx1CurrentEntry 1 } + + dsx1CurrentESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Errored Seconds, encountered by + a DS1 interface in the current 15 minute inter- + val." + ::= { dsx1CurrentEntry 2 } + + dsx1CurrentSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Severely Errored Seconds encoun- + tered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1CurrentEntry 3 } + + dsx1CurrentSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Severely Errored Framing Seconds + encountered by a DS1 interface in the current + 15 minute interval." + ::= { dsx1CurrentEntry 4 } + + dsx1CurrentUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Unavailable Seconds encountered + by a DS1 interface in the current 15 minute in- + terval." + ::= { dsx1CurrentEntry 5 } + + + dsx1CurrentCSSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Controlled Slip Seconds encoun- + tered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1CurrentEntry 6 } + + dsx1CurrentPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Path Coding Violations encoun- + tered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1CurrentEntry 7 } + + dsx1CurrentLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Errored Seconds encountered + by a DS1 interface in the current 15 minute in- + terval." + ::= { dsx1CurrentEntry 8 } + + dsx1CurrentBESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Bursty Errored Seconds (BESs) + encountered by a DS1 interface in the current + 15 minute interval." + ::= {dsx1CurrentEntry 9 } + + dsx1CurrentDMs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Degraded Minutes (DMs) encoun- + tered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1CurrentEntry 10 } + + dsx1CurrentLCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Code Violations (LCVs) en- + countered by a DS1 interface in the current 15 + minute interval." + ::= {dsx1CurrentEntry 11 } + + -- the DS1 Interval + + -- The DS1 Interval Table contains various statistics + -- collected by each DS1 Interface over the previous 24 hours of + -- operation. The past 24 hours are broken into 96 completed + -- 15 minute intervals. + + dsx1IntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Interval table." + ::= { ds1 8 } + + dsx1IntervalEntry OBJECT-TYPE + SYNTAX Dsx1IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Interval table." + INDEX { dsx1IntervalIndex, dsx1IntervalNumber } + ::= { dsx1IntervalTable 1 } + + Dsx1IntervalEntry ::= + SEQUENCE { + dsx1IntervalIndex + INTEGER, + dsx1IntervalNumber + INTEGER, + dsx1IntervalESs + Gauge, + dsx1IntervalSESs + Gauge, + dsx1IntervalSEFSs + Gauge, + dsx1IntervalUASs + Gauge, + dsx1IntervalCSSs + Gauge, + dsx1IntervalPCVs + Gauge, + dsx1IntervalLESs + Gauge, + dsx1IntervalBESs + Gauge, + dsx1IntervalDMs + Gauge, + dsx1IntervalLCVs + Gauge + } + + dsx1IntervalIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value as a dsx1LineIndex + object instance." + ::= { dsx1IntervalEntry 1 } + + dsx1IntervalNumber OBJECT-TYPE + SYNTAX INTEGER (1..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number between 1 and 96, where 1 is the most + recently completed 15 minute interval and 96 is + the least recently completed 15 minutes inter- + val (assuming that all 96 intervals are + valid)." + ::= { dsx1IntervalEntry 2 } + + + dsx1IntervalESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Errored Seconds encountered by a + DS1 interface in one of the previous 96, indi- + vidual 15 minute, intervals." + ::= { dsx1IntervalEntry 3 } + + dsx1IntervalSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Severely Errored Seconds encoun- + tered by a DS1 interface in one of the previous + 96, individual 15 minute, intervals." + ::= { dsx1IntervalEntry 4 } + + dsx1IntervalSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Severely Errored Framing Seconds + encountered by a DS1 interface in one of the + previous 96, individual 15 minute, intervals." + ::= { dsx1IntervalEntry 5 } + + dsx1IntervalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Unavailable Seconds encountered + by a DS1 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx1IntervalEntry 6 } + + dsx1IntervalCSSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Controlled Slip Seconds encoun- + tered by a DS1 interface in one of the previous + 96, individual 15 minute, intervals." + ::= { dsx1IntervalEntry 7 } + + dsx1IntervalPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Path Coding Violations encoun- + tered by a DS1 interface in one of the previous + 96, individual 15 minute, intervals." + ::= { dsx1IntervalEntry 8 } + + dsx1IntervalLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Errored Seconds encountered + by a DS1 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx1IntervalEntry 9 } + + dsx1IntervalBESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Bursty Errored Seconds (BESs) + encountered by a DS1 interface in one of the + previous 96, individual 15 minute, intervals." + ::= {dsx1IntervalEntry 10 } + + dsx1IntervalDMs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Degraded Minutes (DMs) encoun- + tered by a DS1 interface in one of the previous + 96, individual 15 minute, intervals." + ::= { dsx1IntervalEntry 11 } + + dsx1IntervalLCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Code Violations (LCVs) en- + countered by a DS1 interface in the current 15 + minute interval." + ::= {dsx1IntervalEntry 12 } + + -- the DS1 Total + + -- The DS1 Total Table contains the cumulative sum of the + -- various statistics for the 24 hour period preceding the + -- current interval. + + dsx1TotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Total table. 24 hour interval." + ::= { ds1 9 } + + dsx1TotalEntry OBJECT-TYPE + SYNTAX Dsx1TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Total table." + INDEX { dsx1TotalIndex } + ::= { dsx1TotalTable 1 } + + Dsx1TotalEntry ::= + SEQUENCE { + dsx1TotalIndex + INTEGER, + dsx1TotalESs + Gauge, + dsx1TotalSESs + Gauge, + dsx1TotalSEFSs + Gauge, + dsx1TotalUASs + Gauge, + dsx1TotalCSSs + Gauge, + dsx1TotalPCVs + Gauge, + dsx1TotalLESs + Gauge, + dsx1TotalBESs + Gauge, + dsx1TotalDMs + Gauge, + dsx1TotalLCVs + Gauge + } + + dsx1TotalIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value as a dsx1LineIndex + object instance." + ::= { dsx1TotalEntry 1 } + + dsx1TotalESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Errored Seconds encountered by a + DS1 interface in the previous 24 hour interval" + ::= { dsx1TotalEntry 2 } + + dsx1TotalSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Severely Errored Seconds encoun- + tered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1TotalEntry 3 } + + dsx1TotalSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Severely Errored Framing Seconds + encountered by a DS1 interface in the previous + 24 hour interval." + ::= { dsx1TotalEntry 4 } + + dsx1TotalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Unavailable Seconds encountered + by a DS1 interface in the previous 24 hour in- + terval." + ::= { dsx1TotalEntry 5 } + + dsx1TotalCSSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Controlled Slip Seconds encoun- + tered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1TotalEntry 6 } + + dsx1TotalPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Path Coding Violations encoun- + tered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1TotalEntry 7 } + + + dsx1TotalLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Errored Seconds encountered + by a DS1 interface in the previous 24 hour in- + terval." + ::= { dsx1TotalEntry 8 } + + dsx1TotalBESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Bursty Errored Seconds (BESs) + encountered by a DS1 interface in the previous + 24 hour interval." + ::= { dsx1TotalEntry 9 } + + dsx1TotalDMs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Degraded Minutes (DMs) encoun- + tered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1TotalEntry 10 } + + dsx1TotalLCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Code Violations (LCVs) en- + countered by a DS1 interface in the current 15 + minute interval." + ::= {dsx1TotalEntry 11 } + + -- The DS1 Far End Group + + -- Implementation of this group is optional for all systems + -- that attach to a DS1 Interface. + + + -- The DS1 Far End Group consists of three tables: + -- DS1 Far End Current + -- DS1 Far End Interval + -- DS1 Far End Total + + -- The DS1 Far End Current Table + + -- The DS1 Far End Current table contains various statistics + -- being collected for the current 15 minute interval. + -- The statistics are collected from the far end messages on the + -- Facilities Data Link. The definitions are the same as + -- described for the near-end information. + + dsx1FarEndCurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1FarEndCurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Far End Current table." + ::= { ds1 10 } + + dsx1FarEndCurrentEntry OBJECT-TYPE + SYNTAX Dsx1FarEndCurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Far End Current table." + INDEX { dsx1FarEndCurrentIndex } + ::= { dsx1FarEndCurrentTable 1 } + + Dsx1FarEndCurrentEntry ::= + SEQUENCE { + dsx1FarEndCurrentIndex + INTEGER, + dsx1FarEndTimeElapsed + INTEGER, + dsx1FarEndValidIntervals + INTEGER, + dsx1FarEndCurrentESs + Gauge, + dsx1FarEndCurrentSESs + Gauge, + dsx1FarEndCurrentSEFSs + Gauge, + dsx1FarEndCurrentUASs + Gauge, + dsx1FarEndCurrentCSSs + Gauge, + dsx1FarEndCurrentLESs + Gauge, + dsx1FarEndCurrentPCVs + Gauge, + dsx1FarEndCurrentBESs + Gauge, + dsx1FarEndCurrentDMs + Gauge + } + + dsx1FarEndCurrentIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value an dsx1LineIndex + object instance." + ::= { dsx1FarEndCurrentEntry 1 } + + dsx1FarEndTimeElapsed OBJECT-TYPE + SYNTAX INTEGER (0..899) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds that have elapsed + since the beginning of the far end current + error-measurement period." + ::= { dsx1FarEndCurrentEntry 2 } + + dsx1FarEndValidIntervals OBJECT-TYPE + SYNTAX INTEGER (0..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of previous far end intervals + for which valid data was collected. The + value will be 96 unless the interface was + brought online within the last 24 hours, + in which case the value will be the number + of complete 15 minute far end intervals + since the interface has been online." + ::= { dsx1FarEndCurrentEntry 3 } + + dsx1FarEndCurrentESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far Far End Errored Seconds en- + countered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1FarEndCurrentEntry 4 } + + dsx1FarEndCurrentSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Severely Errored Seconds + encountered by a DS1 interface in the current + 15 minute interval." + ::= { dsx1FarEndCurrentEntry 5 } + + dsx1FarEndCurrentSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Severely Errored Framing + Seconds encountered by a DS1 interface in the + current 15 minute interval." + ::= { dsx1FarEndCurrentEntry 6 } + + dsx1FarEndCurrentUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Unavailable Seconds encountered + by a DS1 interface in the current 15 minute in- + terval." + ::= { dsx1FarEndCurrentEntry 7 } + + + dsx1FarEndCurrentCSSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Controlled Slip Seconds + encountered by a DS1 interface in the current + 15 minute interval." + ::= { dsx1FarEndCurrentEntry 8 } + + dsx1FarEndCurrentLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Line Errored Seconds en- + countered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1FarEndCurrentEntry 9 } + + dsx1FarEndCurrentPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Path Coding Violations + reported via the far end block error count en- + countered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1FarEndCurrentEntry 10 } + + dsx1FarEndCurrentBESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Bursty Errored Seconds (BESs) + encountered by a DS1 interface in the current + 15 minute interval." + ::= {dsx1FarEndCurrentEntry 11 } + + dsx1FarEndCurrentDMs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Degraded Minutes (DMs) encoun- + tered by a DS1 interface in the current 15 + minute interval." + ::= { dsx1FarEndCurrentEntry 12 } + + -- The DS1 Far End Interval Table + + -- The DS1 Far End Interval Table contains various statistics + -- collected by each DS1 interface over the previous 24 hours of + -- operation. The past 24 hours are broken into 96 + -- completed 15 minute intervals. + + dsx1FarEndIntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1FarEndIntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Far End Interval table." + ::= { ds1 11 } + + dsx1FarEndIntervalEntry OBJECT-TYPE + SYNTAX Dsx1FarEndIntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Far End Interval table." + INDEX { dsx1FarEndIntervalIndex, + dsx1FarEndIntervalNumber } + ::= { dsx1FarEndIntervalTable 1 } + + Dsx1FarEndIntervalEntry ::= + SEQUENCE { + dsx1FarEndIntervalIndex + INTEGER, + dsx1FarEndIntervalNumber + INTEGER, + dsx1FarEndIntervalESs + Gauge, + dsx1FarEndIntervalSESs + Gauge, + dsx1FarEndIntervalSEFSs + Gauge, + dsx1FarEndIntervalUASs + Gauge, + dsx1FarEndIntervalCSSs + Gauge, + dsx1FarEndIntervalLESs + Gauge, + dsx1FarEndIntervalPCVs + Gauge, + dsx1FarEndIntervalBESs + Gauge, + dsx1FarEndIntervalDMs + Gauge + } + + dsx1FarEndIntervalIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value as a dsx1LineIndex + object instance." + ::= { dsx1FarEndIntervalEntry 1 } + + dsx1FarEndIntervalNumber OBJECT-TYPE + SYNTAX INTEGER (1..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number between 1 and 96, where 1 is the most + recently completed 15 minute interval and 96 is + the least recently completed 15 minutes inter- + val (assuming that all 96 intervals are + valid)." + ::= { dsx1FarEndIntervalEntry 2 } + + dsx1FarEndIntervalESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Errored Seconds encoun- + tered by a DS1 interface in one of the previous + 96, individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 3 } + + + dsx1FarEndIntervalSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Severely Errored Seconds + encountered by a DS1 interface in one of the + previous 96, individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 4 } + + dsx1FarEndIntervalSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Severely Errored Framing + Seconds encountered by a DS1 interface in one + of the previous 96, individual 15 minute, in- + tervals." + ::= { dsx1FarEndIntervalEntry 5 } + + dsx1FarEndIntervalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Unavailable Seconds encountered + by a DS1 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 6 } + + dsx1FarEndIntervalCSSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Controlled Slip Seconds + encountered by a DS1 interface in one of the + previous 96, individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 7 } + + dsx1FarEndIntervalLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Line Errored Seconds en- + countered by a DS1 interface in one of the pre- + vious 96, individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 8 } + + dsx1FarEndIntervalPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Path Coding Violations + reported via the far end block error count en- + countered by a DS1 interface in one of the pre- + vious 96, individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 9 } + + dsx1FarEndIntervalBESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Bursty Errored Seconds (BESs) + encountered by a DS1 interface in one of the + previous 96, individual 15 minute, intervals." + ::= {dsx1FarEndIntervalEntry 10 } + + dsx1FarEndIntervalDMs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Degraded Minutes (DMs) encoun- + tered by a DS1 interface in one of the previous + 96, individual 15 minute, intervals." + ::= { dsx1FarEndIntervalEntry 11 } + + -- The DS1 Far End Total Table + + -- The DS1 Far End Total Table contains the cumulative sum of the + -- various statistics for the 24 hour period preceding the + -- current interval. + + + dsx1FarEndTotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1FarEndTotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Far End Total table." + ::= { ds1 12 } + + dsx1FarEndTotalEntry OBJECT-TYPE + SYNTAX Dsx1FarEndTotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Far End Total table." + INDEX { dsx1FarEndTotalIndex } + ::= { dsx1FarEndTotalTable 1 } + + Dsx1FarEndTotalEntry ::= + SEQUENCE { + dsx1FarEndTotalIndex + INTEGER, + dsx1FarEndTotalESs + Gauge, + dsx1FarEndTotalSESs + Gauge, + dsx1FarEndTotalSEFSs + Gauge, + dsx1FarEndTotalUASs + Gauge, + dsx1FarEndTotalCSSs + Gauge, + dsx1FarEndTotalLESs + Gauge, + dsx1FarEndTotalPCVs + Gauge, + dsx1FarEndTotalBESs + Gauge, + dsx1FarEndTotalDMs + Gauge + } + + dsx1FarEndTotalIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value an dsx1LineIndex + object instance." + ::= { dsx1FarEndTotalEntry 1 } + + dsx1FarEndTotalESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Errored Seconds encoun- + tered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1FarEndTotalEntry 2 } + + dsx1FarEndTotalSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Severely Errored Seconds + encountered by a DS1 interface in the previous + 24 hour interval." + ::= { dsx1FarEndTotalEntry 3 } + + dsx1FarEndTotalSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Severely Errored Framing + Seconds encountered by a DS1 interface in the + previous 24 hour interval." + ::= { dsx1FarEndTotalEntry 4 } + + dsx1FarEndTotalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Unavailable Seconds encountered + by a DS1 interface in the previous 24 hour in- + terval." + ::= { dsx1FarEndTotalEntry 5 } + + dsx1FarEndTotalCSSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Controlled Slip Seconds + encountered by a DS1 interface in the previous + 24 hour interval." + ::= { dsx1FarEndTotalEntry 6 } + + dsx1FarEndTotalLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Line Errored Seconds en- + countered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1FarEndTotalEntry 7 } + + dsx1FarEndTotalPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Far End Path Coding Violations + reported via the far end block error count en- + countered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1FarEndTotalEntry 8 } + + dsx1FarEndTotalBESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Bursty Errored Seconds (BESs) + encountered by a DS1 interface in the previous + 24 hour interval." + ::= { dsx1FarEndTotalEntry 9 } + + + dsx1FarEndTotalDMs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Degraded Minutes (DMs) encoun- + tered by a DS1 interface in the previous 24 + hour interval." + ::= { dsx1FarEndTotalEntry 10 } + + -- the DS1 Fractional Group + + -- Implementation of this group is mandatory for those + -- systems dividing a DS1 into channels containing different + -- data streams that are of local interest. Systems which + -- are indifferent to data content, such as CSUs, need not + -- implement it. + + -- The DS1 fractional table identifies which DS1 channels + -- associated with a CSU are being used to support a + -- logical interface, i.e., an entry in the interfaces table + -- from the Internet-standard MIB. + + -- For example, consider an application managing a North + -- American ISDN Primary Rate link whose division is a 384 kbit/s + -- H1 "B" Channel for Video, a second H1 for data to a primary + -- routing peer, and 12 64 kbit/s H0 "B" Channels. Consider that + -- some subset of the H0 channels are used for voice and the + -- remainder are available for dynamic data calls. + + -- we count a total of 14 interfaces multiplexed onto the DS1 + -- interface. Six DS1 channels (for the sake of the example, + -- channels 1..6) are used for Video, six more (7..11 and 13) + -- are used for data, and the remaining 12 are are in channels + -- 12 and 14..24. + + -- Let us further imagine that ifIndex 2 is of type DS1 and + -- refers to the DS1 interface, and that the interfaces layered + -- onto it are numbered 3..16. + + -- We might describe the allocation of channels, in the + -- dsx1FracTable, as follows: + + -- dsx1FracIfIndex.2. 1 = 3 dsx1FracIfIndex.2.13 = 4 + -- dsx1FracIfIndex.2. 2 = 3 dsx1FracIfIndex.2.14 = 6 + -- dsx1FracIfIndex.2. 3 = 3 dsx1FracIfIndex.2.15 = 7 + -- dsx1FracIfIndex.2. 4 = 3 dsx1FracIfIndex.2.16 = 8 + -- dsx1FracIfIndex.2. 5 = 3 dsx1FracIfIndex.2.17 = 9 + -- dsx1FracIfIndex.2. 6 = 3 dsx1FracIfIndex.2.18 = 10 + -- dsx1FracIfIndex.2. 7 = 4 dsx1FracIfIndex.2.19 = 11 + -- dsx1FracIfIndex.2. 8 = 4 dsx1FracIfIndex.2.20 = 12 + -- dsx1FracIfIndex.2. 9 = 4 dsx1FracIfIndex.2.21 = 13 + -- dsx1FracIfIndex.2.10 = 4 dsx1FracIfIndex.2.22 = 14 + -- dsx1FracIfIndex.2.11 = 4 dsx1FracIfIndex.2.23 = 15 + -- dsx1FracIfIndex.2.12 = 5 dsx1FracIfIndex.2.24 = 16 + + -- For North American (DS1) interfaces, there are 24 legal + -- channels, numbered 1 through 24. + + -- For G.704 interfaces, there are 31 legal channels, + -- numbered 1 through 31. The channels (1..31) correspond + -- directly to the equivalently numbered time-slots. + + dsx1FracTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx1FracEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS1 Fractional table." + ::= { ds1 13 } + + dsx1FracEntry OBJECT-TYPE + SYNTAX Dsx1FracEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS1 Fractional table." + INDEX { dsx1FracIndex, dsx1FracNumber } + ::= { dsx1FracTable 1 } + + Dsx1FracEntry ::= + SEQUENCE { + dsx1FracIndex + INTEGER, + dsx1FracNumber + INTEGER, + dsx1FracIfIndex + INTEGER + } + + dsx1FracIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS1 interface to which this entry is applica- + ble. The interface identified by a particular + value of this index is the same interface as + identified by the same value an dsx1LineIndex + object instance." + ::= { dsx1FracEntry 1 } + + dsx1FracNumber OBJECT-TYPE + SYNTAX INTEGER (1..31) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number for this entry." + ::= { dsx1FracEntry 2 } + + dsx1FracIfIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An index value that uniquely identifies an in- + terface. The interface identified by a partic- + ular value of this index is the same interface + as identified by the same value an ifIndex ob- + ject instance. If no interface is currently us- + ing a channel, the value should be zero. If a + single interface occupies more than one time + slot, that ifIndex value will be found in mul- + tiple time slots." + ::= { dsx1FracEntry 3 } + +END diff --git a/pandora_console/attachment/mibs/RFC1407-MIB b/pandora_console/attachment/mibs/RFC1407-MIB new file mode 100644 index 0000000000..31c0497e0f --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1407-MIB @@ -0,0 +1,1398 @@ +-- Changes to rfc1407 (DS3/E3 MIB): +-- No changes needed. +-- dperkins@scruznet.com + +RFC1407-MIB DEFINITIONS ::= BEGIN + + IMPORTS + Gauge + FROM RFC1155-SMI + DisplayString, transmission + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212; + + -- This MIB module uses the extended OBJECT-TYPE macro + -- as defined in RFC 1212. + + ds3 OBJECT IDENTIFIER ::= { transmission 30 } + + -- The DS3/E3 Near End Group + + -- Implementation of this group is mandatory for all + -- systems that attach to a DS3/E3 Interface. + + -- The DS3/E3 Near End Group consists of four tables: + -- DS3/E3 Configuration + -- DS3/E3 Current + -- DS3/E3 Interval + -- DS3/E3 Total + + -- the DS3/E3 Configuration + + dsx3ConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3/E3 Configuration table." + ::= { ds3 5 } + + dsx3ConfigEntry OBJECT-TYPE + SYNTAX Dsx3ConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3/E3 Configuration table." + INDEX { dsx3LineIndex } + ::= { dsx3ConfigTable 1 } + + + Dsx3ConfigEntry ::= + SEQUENCE { + dsx3LineIndex + INTEGER, + dsx3IfIndex + INTEGER, + dsx3TimeElapsed + INTEGER, + dsx3ValidIntervals + INTEGER, + dsx3LineType + INTEGER, + dsx3LineCoding + INTEGER, + dsx3SendCode + INTEGER, + dsx3CircuitIdentifier + DisplayString, + dsx3LoopbackConfig + INTEGER, + dsx3LineStatus + INTEGER, + dsx3TransmitClockSource + INTEGER + } + + dsx3LineIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This object is the identifier of a DS3/E3 + Interface on a managed device. If there is an + ifEntry that is directly associated with this + and only this DS3/E3 interface, it should have + the same value as ifIndex. Otherwise, number + the dsx3LineIndices with an unique identifier + following the rules of choosing a number that + is greater than ifNumber and numbering the + inside interfaces (e.g., equipment side) with + even numbers and outside interfaces (e.g, + network side) with odd numbers." + ::= { dsx3ConfigEntry 1 } + + dsx3IfIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This value for this object is equal to the + value of ifIndex from the Interfaces table of + MIB II (RFC 1213)." + ::= { dsx3ConfigEntry 2 } + + dsx3TimeElapsed OBJECT-TYPE + SYNTAX INTEGER (0..899) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds that have elapsed since + the beginning of the near end current error- + measurement period." + ::= { dsx3ConfigEntry 3 } + + dsx3ValidIntervals OBJECT-TYPE + SYNTAX INTEGER (0..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of previous near end intervals for + which valid data was collected. The value will be + 96 unless the interface was brought online within + the last 24 hours, in which case the value will be + the number of complete 15 minute near end + intervals since the interface has been online." + ::= { dsx3ConfigEntry 4 } + + dsx3LineType OBJECT-TYPE + SYNTAX INTEGER { + dsx3other(1), + dsx3M23(2), + dsx3SYNTRAN(3), + dsx3CbitParity(4), + dsx3ClearChannel(5), + e3other(6), + e3Framed(7), + e3Plcp(8) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the variety of DS3 C-bit + or E3 application + implementing this interface. The type of + interface affects the interpretation of the + usage and error statistics. + + + The rate of DS3 is 44.736 Mbps and E3 is + 34.368 Mbps. + The dsx3ClearChannel value means that the C-bits + are not used except for sending/receiving + AIS. + + The values, in sequence, describe: + + TITLE: SPECIFICATION: + dsx3M23 ANSI T1.107-1988 + dsx3SYNTRAN ANSI T1.107-1988 + dsx3CbitParity ANSI T1.107a-1989 + dsx3ClearChannel ANSI T1.102-1987 + e3Framed CCITT G.751 + e3Plcp ETSI T/NA(91)18." + ::= { dsx3ConfigEntry 5 } + + dsx3LineCoding OBJECT-TYPE + SYNTAX INTEGER { + dsx3Other(1), + dsx3B3ZS(2), + e3HDB3(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable describes the variety of Zero Code + Suppression used on this interface, which in turn + affects a number of its characteristics. + + dsx3B3ZS and e3HDB3 refer to the use of specified + patterns of normal bits and bipolar violations + which are used to replace sequences of zero bits + of a specified length." + ::= { dsx3ConfigEntry 6 } + + dsx3SendCode OBJECT-TYPE + SYNTAX INTEGER { + dsx3SendNoCode(1), + dsx3SendLineCode(2), + dsx3SendPayloadCode(3), + dsx3SendResetCode(4), + dsx3SendDS1LoopCode(5), + dsx3SendTestPattern(6) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates what type of code is + being sent across the DS3/E3 interface by the + device. (These are optional for E3 interfaces.) + The values mean: + + dsx3SendNoCode + sending looped or normal data + + dsx3SendLineCode + sending a request for a line loopback + + dsx3SendPayloadCode + sending a request for a payload loopback + (i.e., all DS1/E1s in a DS3/E3 frame) + + dsx3SendResetCode + sending a loopback deactivation request + + dsx3SendDS1LoopCode + requesting to loopback a particular DS1/E1 + within a DS3/E3 frame + + dsx3SendTestPattern + sending a test pattern." + ::= { dsx3ConfigEntry 7 } + + dsx3CircuitIdentifier OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable contains the transmission vendor's + circuit identifier, for the purpose of + facilitating troubleshooting." + ::= { dsx3ConfigEntry 8 } + + dsx3LoopbackConfig OBJECT-TYPE + SYNTAX INTEGER { + dsx3NoLoop(1), + dsx3PayloadLoop(2), + dsx3LineLoop(3), + dsx3OtherLoop(4) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable represents the loopback configuration + of the DS3/E3 interface. + The values mean: + + dsx3NoLoop + Not in the loopback state. A device that is + not capable of performing a loopback on + the interface shall always return this as + it's value. + + dsx3PayloadLoop + The received signal at this interface is looped + through the device. + Typically the received signal + is looped back for retransmission after it has + passed through the device's framing function. + + dsx3LineLoop + The received signal at this interface does not + go through the device (minimum penetration) but + is looped back out. + + dsx3OtherLoop + Loopbacks that are not defined here." + ::= { dsx3ConfigEntry 9 } + + dsx3LineStatus OBJECT-TYPE + SYNTAX INTEGER (1..1023) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the + Line Status of the interface. + It contains loopback state information + and failure state information. + The dsx3LineStatus is a bit map represented + as a sum, therefore, + it can represent multiple failures + and a loopback (see dsx3LoopbackConfig object + for the type of loopback) + simultaneously. + The dsx3NoAlarm should be set if and only if + no other flag is set. + + The various bit positions are: + 1 dsx3NoAlarm No alarm present + 2 dsx3RcvRAIFailure Receiving Yellow/Remote + Alarm Indication + 4 dsx3XmitRAIAlarm Transmitting Yellow/Remote + Alarm Indication + + + 8 dsx3RcvAIS Receiving AIS failure state + 16 dsx3XmitAIS Transmitting AIS + 32 dsx3LOF Receiving LOF failure state + 64 dsx3LOS Receiving LOS failure state + 128 dsx3LoopbackState Looping the received signal + 256 dsx3RcvTestCode Receiving a Test Pattern + 512 dsx3OtherFailure any line status not defined + here" + ::= { dsx3ConfigEntry 10 } + + dsx3TransmitClockSource OBJECT-TYPE + SYNTAX INTEGER { + loopTiming(1), + localTiming(2), + throughTiming(3) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The source of Transmit Clock. + is derived from the recovered receive clock of + another DS3 interface." + ::= { dsx3ConfigEntry 11 } + + -- the DS3/E3 Current + + -- The DS3/E3 current table contains various statistics being + -- collected for the current 15 minute interval. + + dsx3CurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3/E3 Current table." + ::= { ds3 6 } + + dsx3CurrentEntry OBJECT-TYPE + SYNTAX Dsx3CurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3/E3 Current table." + INDEX { dsx3CurrentIndex } + ::= { dsx3CurrentTable 1 } + + + Dsx3CurrentEntry ::= + SEQUENCE { + dsx3CurrentIndex + INTEGER, + dsx3CurrentPESs + Gauge, + dsx3CurrentPSESs + Gauge, + dsx3CurrentSEFSs + Gauge, + dsx3CurrentUASs + Gauge, + dsx3CurrentLCVs + Gauge, + dsx3CurrentPCVs + Gauge, + dsx3CurrentLESs + Gauge, + dsx3CurrentCCVs + Gauge, + dsx3CurrentCESs + Gauge, + dsx3CurrentCSESs + Gauge + } + + dsx3CurrentIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3/E3 interface to which this entry is + applicable. The interface identified by a + particular value of this index is the same + interface as identified by the same value an + dsx3LineIndex object instance." + ::= { dsx3CurrentEntry 1 } + + dsx3CurrentPESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Errored Seconds, encountered by a DS3 interface in + the current 15 minute interval." + ::= { dsx3CurrentEntry 2 } + + + dsx3CurrentPSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Severely Errored Seconds, encountered by a DS3 + interface in the current 15 minute interval." + ::= { dsx3CurrentEntry 3 } + + dsx3CurrentSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, encountered by a + DS3/E3 interface in the current 15 minute + interval." + ::= { dsx3CurrentEntry 4 } + + dsx3CurrentUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, encountered by a DS3 + interface in the current 15 minute interval." + ::= { dsx3CurrentEntry 5 } + + dsx3CurrentLCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Line + Coding Violations encountered by a DS3/E3 + interface in the current 15 minute interval." + ::= { dsx3CurrentEntry 6 } + + dsx3CurrentPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Coding Violations, encountered by a DS3 interface + in the current 15 minute interval." + ::= { dsx3CurrentEntry 7 } + + dsx3CurrentLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Errored Seconds encountered by + a DS3/E3 interface in the current 15 minute + interval." + ::= { dsx3CurrentEntry 8 } + + dsx3CurrentCCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Coding Violations encountered + by a DS3 interface in the current 15 minute + interval." + ::= { dsx3CurrentEntry 9 } + + dsx3CurrentCESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Errored Seconds encountered + by a DS3 interface in the current 15 minute + interval." + ::= { dsx3CurrentEntry 10 } + + dsx3CurrentCSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Severely Errored Seconds + encountered by a DS3 interface in the current 15 + minute interval." + ::= { dsx3CurrentEntry 11 } + + -- the DS3/E3 Interval + + -- The DS3/E3 Interval Table contains various statistics + -- collected by each DS3/E3 Interface over the previous 24 + + + -- hours of operation. The past 24 hours are broken into 96 + -- completed 15 minute intervals. + + dsx3IntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3/E3 Interval table." + ::= { ds3 7 } + + dsx3IntervalEntry OBJECT-TYPE + SYNTAX Dsx3IntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3/E3 Interval table." + INDEX { dsx3IntervalIndex, dsx3IntervalNumber } + ::= { dsx3IntervalTable 1 } + + Dsx3IntervalEntry ::= + SEQUENCE { + dsx3IntervalIndex + INTEGER, + dsx3IntervalNumber + INTEGER, + dsx3IntervalPESs + Gauge, + dsx3IntervalPSESs + Gauge, + dsx3IntervalSEFSs + Gauge, + dsx3IntervalUASs + Gauge, + dsx3IntervalLCVs + Gauge, + dsx3IntervalPCVs + Gauge, + dsx3IntervalLESs + Gauge, + dsx3IntervalCCVs + Gauge, + dsx3IntervalCESs + Gauge, + dsx3IntervalCSESs + Gauge + } + + + dsx3IntervalIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3/E3 interface to which this entry is + applicable. The interface identified by a + particular value of this index is the same + interface as identified by the same value an + dsx3LineIndex object instance." + ::= { dsx3IntervalEntry 1 } + + dsx3IntervalNumber OBJECT-TYPE + SYNTAX INTEGER (1..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number between 1 and 96, where 1 is the most + recently completed 15 minute interval and 96 is + the least recently completed 15 minutes interval + (assuming that all 96 intervals are valid)." + ::= { dsx3IntervalEntry 2 } + + dsx3IntervalPESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Errored Seconds, encountered by a DS3 interface in + one of the previous 96, individual 15 minute, + intervals." + ::= { dsx3IntervalEntry 3 } + + dsx3IntervalPSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Severely Errored Seconds, encountered by a DS3 + interface in one of the previous 96, individual 15 + minute, intervals." + ::= { dsx3IntervalEntry 4 } + + dsx3IntervalSEFSs OBJECT-TYPE + SYNTAX Gauge + + + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, encountered by a + DS3/E3 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx3IntervalEntry 5 } + + dsx3IntervalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, encountered by a DS3 + interface in one of the previous 96, individual 15 + minute, intervals." + ::= { dsx3IntervalEntry 6 } + + dsx3IntervalLCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Line + Coding Violations encountered by a DS3/E3 + interface in one of the previous 96, individual 15 + minute, intervals." + ::= { dsx3IntervalEntry 7 } + + dsx3IntervalPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Coding Violations, encountered by a DS3 interface + in one of the previous 96, individual 15 minute, + intervals." + ::= { dsx3IntervalEntry 8 } + + dsx3IntervalLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Errored Seconds (BPVs or + + + illegal zero sequences) encountered by a DS3/E3 + interface in one of the previous 96, individual + 15 minute, intervals." + ::= { dsx3IntervalEntry 9 } + + dsx3IntervalCCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Coding Violations encountered + by a DS3 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx3IntervalEntry 10 } + + dsx3IntervalCESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Errored Seconds encountered + by a DS3 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx3IntervalEntry 11 } + + dsx3IntervalCSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Severely Errored Seconds + encountered by a DS3 interface in one of the + previous 96, individual 15 minute, intervals." + ::= { dsx3IntervalEntry 12 } + + -- the DS3/E3 Total + + -- The DS3/E3 Total Table contains the cumulative sum of the + -- various statistics for the 24 hour period preceding the + -- current interval. + + dsx3TotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3/E3 Total table. 24 hour interval." + ::= { ds3 8 } + + dsx3TotalEntry OBJECT-TYPE + SYNTAX Dsx3TotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3/E3 Total table." + INDEX { dsx3TotalIndex } + ::= { dsx3TotalTable 1 } + + Dsx3TotalEntry ::= + SEQUENCE { + dsx3TotalIndex + INTEGER, + dsx3TotalPESs + Gauge, + dsx3TotalPSESs + Gauge, + dsx3TotalSEFSs + Gauge, + dsx3TotalUASs + Gauge, + dsx3TotalLCVs + Gauge, + dsx3TotalPCVs + Gauge, + dsx3TotalLESs + Gauge, + dsx3TotalCCVs + Gauge, + dsx3TotalCESs + Gauge, + dsx3TotalCSESs + Gauge + } + + dsx3TotalIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3/E3 interface to which this entry is + applicable. The interface identified by a + particular value of this index is the same + interface as identified by the same value an + dsx3LineIndex object instance." + ::= { dsx3TotalEntry 1 } + + dsx3TotalPESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Errored Seconds, encountered by a DS3 interface in + the previous 24 hour interval" + ::= { dsx3TotalEntry 2 } + + dsx3TotalPSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Severely Errored Seconds, encountered by a DS3 + interface in the previous 24 hour interval." + ::= { dsx3TotalEntry 3 } + + dsx3TotalSEFSs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Severely Errored Framing Seconds, encountered by a + DS3/E3 interface in the previous 24 hour + interval." + ::= { dsx3TotalEntry 4 } + + dsx3TotalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, encountered by a DS3 + interface in the previous 24 hour interval." + ::= { dsx3TotalEntry 5 } + + dsx3TotalLCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Line + Coding Violations encountered by a DS3/E3 + interface in the previous 24 hour interval." + ::= { dsx3TotalEntry 6 } + + dsx3TotalPCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of P-bit + Coding Violations, encountered by a DS3 interface + in the previous 24 hour interval." + ::= { dsx3TotalEntry 7 } + + dsx3TotalLESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of Line Errored Seconds (BPVs or + illegal zero sequences) encountered by a DS3/E3 + interface in the previous 24 hour interval." + ::= { dsx3TotalEntry 8 } + + dsx3TotalCCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Coding Violations encountered + by a DS3 interface in the previous 24 hour + interval." + ::= { dsx3TotalEntry 9 } + + dsx3TotalCESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Errored Seconds encountered + by a DS3 interface in the previous 24 hour + interval." + ::= { dsx3TotalEntry 10 } + + dsx3TotalCSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of C-bit Severely Errored Seconds + encountered by a DS3 interface in the previous 24 + hour interval." + ::= { dsx3TotalEntry 11 } + + -- The DS3 Far End Group + + -- Implementation of this group is optional for all systems + -- that attach to a DS3 Interface. + -- However, only C-bit Parity and SYNTRAN DS3 applications + -- have the capability (option) of providing this information. + + -- The DS3 Far End Group consists of four tables: + -- DS3 Far End Configuration + -- DS3 Far End Current + -- DS3 Far End Interval + -- DS3 Far End Total + + -- The DS3 Far End Configuration Table contains + -- configuration information + -- reported in the C-bits from the remote end. + + dsx3FarEndConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3FarEndConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Far End Configuration table." + ::= { ds3 9 } + + dsx3FarEndConfigEntry OBJECT-TYPE + SYNTAX Dsx3FarEndConfigEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Far End Configuration table." + INDEX { dsx3FarEndLineIndex } + ::= { dsx3FarEndConfigTable 1 } + + Dsx3FarEndConfigEntry ::= + SEQUENCE { + dsx3FarEndLineIndex + INTEGER, + dsx3FarEndEquipCode + DisplayString, + dsx3FarEndLocationIDCode + DisplayString, + dsx3FarEndFrameIDCode + DisplayString, + dsx3FarEndUnitCode + DisplayString, + dsx3FarEndFacilityIDCode + DisplayString + } + + dsx3FarEndLineIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3 interface + to which this entry is applicable. The + interface identified by a particular value of + this index is the same interface as identified + by the same value an dsx3LineIndex object + instance." + ::= { dsx3FarEndConfigEntry 1 } + + dsx3FarEndEquipCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Far End Equipment Identification code + that describes the specific piece of equipment. + It is sent within the Path + Identification Message." + ::= { dsx3FarEndConfigEntry 2 } + + dsx3FarEndLocationIDCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..11)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Far End Location Identification code + that describes the specific location of the + equipment. + It is sent within the Path + Identification Message." + ::= { dsx3FarEndConfigEntry 3 } + + + dsx3FarEndFrameIDCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..10)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Far End Frame Identification code + that identifies where the equipment is located + within a building at a given location. + It is sent within the Path + Identification Message." + ::= { dsx3FarEndConfigEntry 4 } + + dsx3FarEndUnitCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..6)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the Far End code + that identifies the equipment location within a bay. + It is sent within the Path + Identification Message." + ::= { dsx3FarEndConfigEntry 5 } + + dsx3FarEndFacilityIDCode OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..38)) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This code identifies a specific Far End DS3 path. + It is sent within the Path + Identification Message." + ::= { dsx3FarEndConfigEntry 6 } + + -- The DS3 Far End Current + + -- The DS3 Far End Current table contains various statistics + -- being collected for the current 15 minute interval. + -- The statistics are collected from the far end block error + -- code within the C-bits. + + dsx3FarEndCurrentTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3FarEndCurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Far End Current table." + ::= { ds3 10 } + + + dsx3FarEndCurrentEntry OBJECT-TYPE + SYNTAX Dsx3FarEndCurrentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Far End Current table." + INDEX { dsx3FarEndCurrentIndex } + ::= { dsx3FarEndCurrentTable 1 } + + Dsx3FarEndCurrentEntry ::= + SEQUENCE { + dsx3FarEndCurrentIndex + INTEGER, + dsx3FarEndTimeElapsed + INTEGER, + dsx3FarEndValidIntervals + INTEGER, + dsx3FarEndCurrentCESs + Gauge, + dsx3FarEndCurrentCSESs + Gauge, + dsx3FarEndCurrentCCVs + Gauge, + dsx3FarEndCurrentUASs + Gauge + } + + dsx3FarEndCurrentIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3 interface + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an dsx3LineIndex object instance." + ::= { dsx3FarEndCurrentEntry 1 } + + dsx3FarEndTimeElapsed OBJECT-TYPE + SYNTAX INTEGER (0..899) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of seconds that have elapsed since the + beginning of the far end current error-measurement + period." + ::= { dsx3FarEndCurrentEntry 2 } + + dsx3FarEndValidIntervals OBJECT-TYPE + SYNTAX INTEGER (0..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of previous far end intervals for + which valid data was collected. The value will be + 96 unless the interface was brought online within + the last 24 hours, in which case the value will be + the number of complete 15 minute far end intervals + since the interface has been online." + ::= { dsx3FarEndCurrentEntry 3 } + + dsx3FarEndCurrentCESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Far + Far End C-bit Errored Seconds encountered by a DS3 + interface in the current 15 minute interval." + ::= { dsx3FarEndCurrentEntry 4 } + + dsx3FarEndCurrentCSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Severely Errored Seconds + encountered by a DS3 interface in the current 15 + minute interval." + ::= { dsx3FarEndCurrentEntry 5 } + + dsx3FarEndCurrentCCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Coding Violations reported via + the far end block error count + encountered by a + DS3 interface in the current 15 minute interval." + ::= { dsx3FarEndCurrentEntry 6 } + + + dsx3FarEndCurrentUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End unavailable seconds + encountered by a + DS3 interface in the current 15 minute interval." + ::= { dsx3FarEndCurrentEntry 7 } + + -- The DS3 Far End Interval + + -- The DS3 Far End Interval Table contains various statistics + -- collected by each DS3 interface over the previous 24 + -- hours of operation. The past 24 hours are broken into 96 + -- completed 15 minute intervals. + + dsx3FarEndIntervalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3FarEndIntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Far End Interval table." + ::= { ds3 11 } + + dsx3FarEndIntervalEntry OBJECT-TYPE + SYNTAX Dsx3FarEndIntervalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Far + End Interval table." + INDEX { dsx3FarEndIntervalIndex, + dsx3FarEndIntervalNumber } + ::= { dsx3FarEndIntervalTable 1 } + + Dsx3FarEndIntervalEntry ::= + SEQUENCE { + dsx3FarEndIntervalIndex + INTEGER, + dsx3FarEndIntervalNumber + INTEGER, + dsx3FarEndIntervalCESs + Gauge, + dsx3FarEndIntervalCSESs + Gauge, + dsx3FarEndIntervalCCVs + Gauge, + dsx3FarEndIntervalUASs + Gauge + } + + dsx3FarEndIntervalIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3 interface + to which this entry is applicable. The + interface identified by a particular value of + this index is the same interface as identified + by the same value an dsx3LineIndex object + instance." + ::= { dsx3FarEndIntervalEntry 1 } + + dsx3FarEndIntervalNumber OBJECT-TYPE + SYNTAX INTEGER (1..96) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A number between 1 and 96, where 1 is the most + recently completed 15 minute interval and 96 is + the least recently completed 15 minutes + interval (assuming that all 96 intervals are + valid)." + ::= { dsx3FarEndIntervalEntry 2 } + + dsx3FarEndIntervalCESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Errored Seconds encountered + by a DS3 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx3FarEndIntervalEntry 3 } + + dsx3FarEndIntervalCSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Severely Errored Seconds + encountered by a DS3 interface in one of the + previous 96, individual 15 minute, intervals." + ::= { dsx3FarEndIntervalEntry 4 } + + dsx3FarEndIntervalCCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Coding Violations reported via + the far end block error count + encountered by a + DS3 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx3FarEndIntervalEntry 5 } + + dsx3FarEndIntervalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End unavailable seconds + encountered by a + DS3 interface in one of the previous 96, + individual 15 minute, intervals." + ::= { dsx3FarEndIntervalEntry 6 } + + -- The DS3 Far End Total + + -- The DS3 Far End Total Table contains the cumulative sum + -- of the various statistics for the 24 hour period preceding + -- the current interval. + + dsx3FarEndTotalTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3FarEndTotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Far End Total table. 24 hour interval." + ::= { ds3 12 } + + dsx3FarEndTotalEntry OBJECT-TYPE + SYNTAX Dsx3FarEndTotalEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Far End Total table." + INDEX { dsx3FarEndTotalIndex } + ::= { dsx3FarEndTotalTable 1 } + + Dsx3FarEndTotalEntry ::= + SEQUENCE { + dsx3FarEndTotalIndex + INTEGER, + dsx3FarEndTotalCESs + Gauge, + dsx3FarEndTotalCSESs + Gauge, + dsx3FarEndTotalCCVs + Gauge, + dsx3FarEndTotalUASs + Gauge + } + + dsx3FarEndTotalIndex OBJECT-TYPE + SYNTAX INTEGER (1..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3 interface + to which this entry is applicable. The interface + identified by a particular value of this index is + the same interface as identified by the same value + an dsx3LineIndex object instance." + ::= { dsx3FarEndTotalEntry 1 } + + dsx3FarEndTotalCESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of Far + End C-bit Errored Seconds encountered by a DS3 + interface in the previous 24 hour interval." + ::= { dsx3FarEndTotalEntry 2 } + + dsx3FarEndTotalCSESs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Severely Errored Seconds + encountered by a DS3 interface in the previous 24 + hour interval." + ::= { dsx3FarEndTotalEntry 3 } + + dsx3FarEndTotalCCVs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End C-bit Coding Violations reported via the + far end block error count + encountered by a + DS3 interface in the previous 24 hour interval." + ::= { dsx3FarEndTotalEntry 4 } + + dsx3FarEndTotalUASs OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The counter associated with the number of + Far End unavailable seconds + encountered by a + DS3 interface in the previous 24 hour interval." + ::= { dsx3FarEndTotalEntry 5 } + + -- the DS3/E3 Fractional Group + + -- Implementation of this group is optional. It is designed + -- for those systems dividing a DS3/E3 into channels + -- containing different data streams that are of local + -- interest. + + -- The DS3/E3 fractional table identifies which DS3/E3 + -- channels associated with a CSU are being used to + -- support a logical interface, i.e., an entry in the + -- interfaces table from the Internet-standard MIB. + + -- For example, consider a DS3 device with 4 high speed links + -- carrying router traffic, a feed for voice, a feed for + -- video, and a synchronous channel for a non-routed + -- protocol. + -- We might describe the allocation of channels, in the + + + -- dsx3FracTable, as follows: + + -- dsx3FracIfIndex.2. 1 = 3 dsx3FracIfIndex.2.15 = 4 + -- dsx3FracIfIndex.2. 2 = 3 dsx3FracIfIndex.2.16 = 6 + -- dsx3FracIfIndex.2. 3 = 3 dsx3FracIfIndex.2.17 = 6 + -- dsx3FracIfIndex.2. 4 = 3 dsx3FracIfIndex.2.18 = 6 + -- dsx3FracIfIndex.2. 5 = 3 dsx3FracIfIndex.2.19 = 6 + -- dsx3FracIfIndex.2. 6 = 3 dsx3FracIfIndex.2.20 = 6 + -- dsx3FracIfIndex.2. 7 = 4 dsx3FracIfIndex.2.21 = 6 + -- dsx3FracIfIndex.2. 8 = 4 dsx3FracIfIndex.2.22 = 6 + -- dsx3FracIfIndex.2. 9 = 4 dsx3FracIfIndex.2.23 = 6 + -- dsx3FracIfIndex.2.10 = 4 dsx3FracIfIndex.2.24 = 6 + -- dsx3FracIfIndex.2.11 = 4 dsx3FracIfIndex.2.25 = 6 + -- dsx3FracIfIndex.2.12 = 5 dsx3FracIfIndex.2.26 = 6 + -- dsx3FracIfIndex.2.13 = 5 dsx3FracIfIndex.2.27 = 6 + -- dsx3FracIfIndex.2.14 = 5 dsx3FracIfIndex.2.28 = 6 + + -- For dsx3M23, dsx3SYNTRAN, dsx3CbitParity, and + -- dsx3ClearChannel there are 28 legal channels, numbered 1 + -- through 28. + + -- For e3Framed there are 16 legal channels, + -- numbered 1 through 16. The channels (1..16) correspond + -- directly to the equivalently numbered time-slots. + + dsx3FracTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dsx3FracEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The DS3 Fractional table." + ::= { ds3 13 } + + dsx3FracEntry OBJECT-TYPE + SYNTAX Dsx3FracEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the DS3 Fractional table." + INDEX { dsx3FracIndex, dsx3FracNumber } + ::= { dsx3FracTable 1 } + + Dsx3FracEntry ::= + SEQUENCE { + dsx3FracIndex + INTEGER, + dsx3FracNumber + INTEGER, + dsx3FracIfIndex + INTEGER + } + + dsx3FracIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The index value which uniquely identifies the + DS3 interface to which this entry is applicable + The interface identified by a particular + value of this index is the same interface as + identified by the same value an dsx3LineIndex + object instance." + ::= { dsx3FracEntry 1 } + + dsx3FracNumber OBJECT-TYPE + SYNTAX INTEGER (1..31) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number for this entry." + ::= { dsx3FracEntry 2 } + + dsx3FracIfIndex OBJECT-TYPE + SYNTAX INTEGER (1..'7fffffff'h) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "An index value that uniquely identifies an + interface. The interface identified by a particular + value of this index is the same interface + as identified by the same value an ifIndex + object instance. If no interface is currently using + a channel, the value should be zero. If a + single interface occupies more than one time + slot, that ifIndex value will be found in multiple + time slots." + ::= { dsx3FracEntry 3 } + +END diff --git a/pandora_console/attachment/mibs/RFC1414-MIB b/pandora_console/attachment/mibs/RFC1414-MIB new file mode 100644 index 0000000000..84f9ca4e8e --- /dev/null +++ b/pandora_console/attachment/mibs/RFC1414-MIB @@ -0,0 +1,134 @@ +-- Changes to rfc1414 (Identification MIB): +-- Added IMPORT for mib-2. +-- dperkins@scruznet.com + +RFC1414-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + mib-2, + tcpConnLocalAddress, tcpConnLocalPort, + tcpConnRemAddress, tcpConnRemPort + FROM RFC1213-MIB; + + ident OBJECT IDENTIFIER ::= { mib-2 24 } + + -- conformance groups + + identInfo OBJECT IDENTIFIER ::= { ident 1 } + + -- textual conventions + + -- none + + -- the ident information system group + -- + -- implementation of this group is mandatory + + identTable OBJECT-TYPE + SYNTAX SEQUENCE OF IdentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing user information for TCP + connections. + + Note that this table contains entries for all TCP + connections on a managed system. The + corresponding instance of tcpConnState (defined in + MIB-II) indicates the state of a particular + connection." + ::= { identInfo 1 } + + identEntry OBJECT-TYPE + SYNTAX IdentEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "User information about a particular TCP + connection." + INDEX { tcpConnLocalAddress, tcpConnLocalPort, + tcpConnRemAddress, tcpConnRemPort } + ::= { identTable 1 } + + IdentEntry ::= + SEQUENCE { + identStatus INTEGER, + identOpSys OCTET STRING, + identCharset OCTET STRING, + identUserid OCTET STRING, + identMisc OCTET STRING + } + + identStatus OBJECT-TYPE + SYNTAX INTEGER { + noError(1), + unknownError(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether user information for the + associated TCP connection can be determined. A + value of `noError(1)' indicates that user + information is available. A value of + `unknownError(2)' indicates that user information + is not available." + ::= { identEntry 1 } + + identOpSys OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..40)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the type of operating system in use. + In addition to identifying an operating system, + each assignment made for this purpose also + (implicitly) identifies the textual format and + maximum size of the corresponding identUserid and + identMisc objects. + + The legal values for the `indentOpSys' strings + are those listed in the SYSTEM NAMES section of + the most recent edition of the ASSIGNED NUMBERS + RFC [8]." + ::= { identEntry 2 } + + identCharset OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..40)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the repertoire of the corresponding + identUserid and identMisc objects. + + The legal values for the `identCharset' strings + are those listed in the CHARACTER SET section of + the most recent edition of the ASSIGNED NUMBERS + RFC [8]." + ::= { identEntry 3 } + + identUserid OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the user's identity. Interpretation of + this object requires examination of the + corresponding value of the identOpSys and + identCharset objects." + ::= { identEntry 4 } + + identMisc OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates miscellaneous information about the + user. Interpretation of this object requires + examination of the corresponding value of the + identOpSys and identCharset objects." + ::= { identEntry 5 } + +END diff --git a/pandora_console/attachment/mibs/RS-232-MIB b/pandora_console/attachment/mibs/RS-232-MIB new file mode 100644 index 0000000000..a0f5515dd3 --- /dev/null +++ b/pandora_console/attachment/mibs/RS-232-MIB @@ -0,0 +1,801 @@ +-- Changes for RFC1659 - RS-232-MIB +-- Removed unused IMPORT of NOTIFICATION-TYPE. +-- The following enumerated values need to be changed +-- so they do not contain hyphens: simplex-receive & simplex-send. +-- dperkins@scruznet.com + + + RS-232-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + Counter32, Integer32 + FROM SNMPv2-SMI + InterfaceIndex + FROM IF-MIB + transmission + FROM RFC1213-MIB + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + + + rs232 MODULE-IDENTITY + LAST-UPDATED "9405261700Z" + ORGANIZATION "IETF Character MIB Working Group" + CONTACT-INFO + " Bob Stewart + Postal: Xyplex, Inc. + 295 Foster Street + Littleton, MA 01460 + + Tel: 508-952-4816 + Fax: 508-952-4887 + E-mail: rlstewart@eng.xyplex.com" + DESCRIPTION + "The MIB module for RS-232-like hardware devices." + ::= { transmission 33 } + + + -- Generic RS-232-like information + + rs232Number OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of ports (regardless of their current + state) in the RS-232-like general port table." + ::= { rs232 1 } + + + -- RS-232-like General Port Table + + rs232PortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port entries. The number of entries is + given by the value of rs232Number." + ::= { rs232 2 } + + rs232PortEntry OBJECT-TYPE + SYNTAX Rs232PortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status and parameter values for a port." + INDEX { rs232PortIndex } + ::= { rs232PortTable 1 } + + Rs232PortEntry ::= + SEQUENCE { + rs232PortIndex + InterfaceIndex, + rs232PortType + INTEGER, + rs232PortInSigNumber + Integer32, + rs232PortOutSigNumber + Integer32, + rs232PortInSpeed + Integer32, + rs232PortOutSpeed + Integer32, + rs232PortInFlowType + INTEGER, + rs232PortOutFlowType + INTEGER + } + + rs232PortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of ifIndex for the port. By convention + and if possible, hardware port numbers map directly + to external connectors. The value for each port must + remain constant at least from one re-initialization + of the network management agent to the next." + ::= { rs232PortEntry 1 } + + rs232PortType OBJECT-TYPE + SYNTAX INTEGER { other(1), rs232(2), rs422(3), + rs423(4), v35(5), x21(6) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The port's hardware type." + ::= { rs232PortEntry 2 } + + rs232PortInSigNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input signals for the port in the + input signal table (rs232PortInSigTable). The table + contains entries only for those signals the software + can detect and that are useful to observe." + ::= { rs232PortEntry 3 } + + rs232PortOutSigNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of output signals for the port in the + output signal table (rs232PortOutSigTable). The + table contains entries only for those signals the + software can assert and that are useful to observe." + ::= { rs232PortEntry 4 } + + rs232PortInSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's input speed in bits per second. Note that + non-standard values, such as 9612, are probably not allowed + on most implementations." + ::= { rs232PortEntry 5 } + + rs232PortOutSpeed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's output speed in bits per second. Note that + non-standard values, such as 9612, are probably not allowed + on most implementations." + ::= { rs232PortEntry 6 } + + rs232PortInFlowType OBJECT-TYPE + SYNTAX INTEGER { none(1), ctsRts(2), dsrDtr(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's type of input flow control. 'none' + indicates no flow control at this level. + 'ctsRts' and 'dsrDtr' indicate use of the indicated + hardware signals." + ::= { rs232PortEntry 7 } + + rs232PortOutFlowType OBJECT-TYPE + SYNTAX INTEGER { none(1), ctsRts(2), dsrDtr(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's type of output flow control. 'none' + indicates no flow control at this level. + 'ctsRts' and 'dsrDtr' indicate use of the indicated + hardware signals." + ::= { rs232PortEntry 8 } + + + -- RS-232-like Asynchronous Port Table + + rs232AsyncPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232AsyncPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of asynchronous port entries. Entries need + not exist for synchronous ports." + ::= { rs232 3 } + + rs232AsyncPortEntry OBJECT-TYPE + SYNTAX Rs232AsyncPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status and parameter values for an asynchronous + port." + INDEX { rs232AsyncPortIndex } + ::= { rs232AsyncPortTable 1 } + + Rs232AsyncPortEntry ::= + SEQUENCE { + rs232AsyncPortIndex + InterfaceIndex, + rs232AsyncPortBits + INTEGER, + rs232AsyncPortStopBits + INTEGER, + rs232AsyncPortParity + INTEGER, + rs232AsyncPortAutobaud + INTEGER, + rs232AsyncPortParityErrs + Counter32, + rs232AsyncPortFramingErrs + Counter32, + rs232AsyncPortOverrunErrs + Counter32 + + } + + rs232AsyncPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each port. Its value is the + same as rs232PortIndex for the port." + ::= { rs232AsyncPortEntry 1 } + + rs232AsyncPortBits OBJECT-TYPE + SYNTAX INTEGER (5..8) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's number of bits in a character." + ::= { rs232AsyncPortEntry 2 } + + rs232AsyncPortStopBits OBJECT-TYPE + SYNTAX INTEGER { one(1), two(2), + oneAndHalf(3), dynamic(4) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's number of stop bits." + ::= { rs232AsyncPortEntry 3 } + + rs232AsyncPortParity OBJECT-TYPE + SYNTAX INTEGER { none(1), odd(2), even(3), + mark(4), space(5) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The port's sense of a character parity bit." + ::= { rs232AsyncPortEntry 4 } + + rs232AsyncPortAutobaud OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A control for the port's ability to automatically + sense input speed. + + When rs232PortAutoBaud is 'enabled', a port may + autobaud to values different from the set values for + speed, parity, and character size. As a result a + network management system may temporarily observe + values different from what was previously set." + ::= { rs232AsyncPortEntry 5 } + + rs232AsyncPortParityErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of characters with a parity error, + input from the port since system re-initialization + and while the port state was 'up' or 'test'." + ::= { rs232AsyncPortEntry 6 } + + rs232AsyncPortFramingErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of characters with a framing error, + input from the port since system re-initialization + and while the port state was 'up' or 'test'." + ::= { rs232AsyncPortEntry 7 } + + rs232AsyncPortOverrunErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of characters with an overrun error, + input from the port since system re-initialization + and while the port state was 'up' or 'test'." + ::= { rs232AsyncPortEntry 8 } + + + -- RS-232-like Synchronous Port Table + + rs232SyncPortTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232SyncPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of asynchronous port entries. Entries need + not exist for synchronous ports." + ::= { rs232 4 } + + rs232SyncPortEntry OBJECT-TYPE + SYNTAX Rs232SyncPortEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Status and parameter values for a synchronous + port." + INDEX { rs232SyncPortIndex } + ::= { rs232SyncPortTable 1 } + + Rs232SyncPortEntry ::= + SEQUENCE { + rs232SyncPortIndex + InterfaceIndex, + rs232SyncPortClockSource + INTEGER, + rs232SyncPortFrameCheckErrs + Counter32, + rs232SyncPortTransmitUnderrunErrs + Counter32, + rs232SyncPortReceiveOverrunErrs + Counter32, + rs232SyncPortInterruptedFrames + Counter32, + rs232SyncPortAbortedFrames + Counter32, + rs232SyncPortRole + INTEGER, + rs232SyncPortEncoding + INTEGER, + rs232SyncPortRTSControl + INTEGER, + rs232SyncPortRTSCTSDelay + Integer32, + rs232SyncPortMode + INTEGER, + rs232SyncPortIdlePattern + INTEGER, + rs232SyncPortMinFlags + Integer32 + } + + rs232SyncPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A unique value for each port. Its value is the + same as rs232PortIndex for the port." + ::= { rs232SyncPortEntry 1 } + + rs232SyncPortClockSource OBJECT-TYPE + SYNTAX INTEGER { internal(1), external(2), split(3) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Source of the port's bit rate clock. 'split' means + the tranmit clock is internal and the receive clock + is external." + ::= { rs232SyncPortEntry 2 } + + rs232SyncPortFrameCheckErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of frames with an invalid frame check + sequence, input from the port since system + re-initialization and while the port state was 'up' + or 'test'." + ::= { rs232SyncPortEntry 3 } + + rs232SyncPortTransmitUnderrunErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of frames that failed to be + transmitted on the port since system + re-initialization and while the port state was 'up' + or 'test' because data was not available to the + transmitter in time." + ::= { rs232SyncPortEntry 4 } + + rs232SyncPortReceiveOverrunErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of frames that failed to be received + on the port since system re-initialization and while + the port state was 'up' or 'test' because the + receiver did not accept the data in time." + ::= { rs232SyncPortEntry 5 } + + rs232SyncPortInterruptedFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Total number of frames that failed to be received + or transmitted on the port due to loss of modem + signals since system re-initialization and while the + port state was 'up' or 'test'." + ::= { rs232SyncPortEntry 6 } + + rs232SyncPortAbortedFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Number of frames aborted on the port due to + receiving an abort sequence since system + re-initialization and while the port state was 'up' + or 'test'." + ::= { rs232SyncPortEntry 7 } + + rs232SyncPortRole OBJECT-TYPE + SYNTAX INTEGER { dte(1), dce(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The role the device is playing that is using this port. + dte means the device is performing the role of + data terminal equipment + dce means the device is performing the role of + data circuit-terminating equipment." + DEFVAL { dce } + ::= { rs232SyncPortEntry 8 } + + rs232SyncPortEncoding OBJECT-TYPE + SYNTAX INTEGER { nrz(1), nrzi(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bit stream encoding technique that is in effect + for this port. + nrz for Non-Return to Zero encoding + nrzi for Non-Return to Zero Inverted encoding." + DEFVAL { nrz } + ::= { rs232SyncPortEntry 9 } + + rs232SyncPortRTSControl OBJECT-TYPE + SYNTAX INTEGER { controlled(1), constant(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The method used to control the Request To Send (RTS) + signal. + + controlled when the DTE is asserts RTS each time + data needs to be transmitted and drops + RTS at some point after data + transmission begins. + + If rs232SyncPortRole is 'dte', the + RTS is an output signal. The device + will issue a RTS and wait for a CTS + from the DCE before starting to + transmit. + + If rs232SyncPortRole is 'dce', the + RTS is an input signal. The device + will issue a CTS only after having + received RTS and waiting the + rs232SyncPortRTSCTSDelay interval. + + constant when the DTE constantly asserts RTS." + DEFVAL { constant } + ::= { rs232SyncPortEntry 10 } + + rs232SyncPortRTSCTSDelay OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The interval (in milliseconds) that the DCE must wait + after it sees RTS asserted before asserting CTS. This + object exists in support of older synchronous devices + that cannot recognize CTS within a certain interval + after it asserts RTS." + DEFVAL { 0 } + ::= { rs232SyncPortEntry 11 } + + rs232SyncPortMode OBJECT-TYPE + SYNTAX INTEGER { fdx(1), hdx(2), simplex-receive(3), + simplex-send(4) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The mode of operation of the port with respect to the + direction and simultaneity of data transfer. + + fdx when frames on the data link can be + transmitted and received at the same + time + + hdx when frames can either be received + from the data link or transmitted + onto the data link but not at the + same time. + + simplex-receive when frames can only be received on + this data link. + + simplex-send when frames can only be sent on this + data link." + DEFVAL { fdx } + ::= { rs232SyncPortEntry 12 } + + rs232SyncPortIdlePattern OBJECT-TYPE + SYNTAX INTEGER { mark(1), space(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bit pattern used to indicate an idle line." + DEFVAL { space } + ::= { rs232SyncPortEntry 13 } + + rs232SyncPortMinFlags OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum number of flag patterns this port needs in + order to recognize the end of one frame and the start + of the next. Plausible values are 1 and 2." + DEFVAL { 2 } + ::= { rs232SyncPortEntry 14 } + + + -- Input Signal Table + + rs232InSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232InSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port input control signal entries + implemented and visible to the software on the port, + and useful to monitor." + ::= { rs232 5 } + + rs232InSigEntry OBJECT-TYPE + SYNTAX Rs232InSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Input control signal status for a hardware port." + INDEX { rs232InSigPortIndex, rs232InSigName } + ::= { rs232InSigTable 1 } + + Rs232InSigEntry ::= + SEQUENCE { + rs232InSigPortIndex + InterfaceIndex, + rs232InSigName + INTEGER, + rs232InSigState + INTEGER, + rs232InSigChanges + Counter32 + } + + rs232InSigPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of rs232PortIndex for the port to which + this entry belongs." + ::= { rs232InSigEntry 1 } + + rs232InSigName OBJECT-TYPE + SYNTAX INTEGER { rts(1), cts(2), dsr(3), dtr(4), ri(5), + dcd(6), sq(7), srs(8), srts(9), + scts(10), sdcd(11) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identification of a hardware signal, as follows: + + rts Request to Send + cts Clear to Send + dsr Data Set Ready + dtr Data Terminal Ready + ri Ring Indicator + dcd Received Line Signal Detector + sq Signal Quality Detector + srs Data Signaling Rate Selector + srts Secondary Request to Send + scts Secondary Clear to Send + sdcd Secondary Received Line Signal Detector + " + REFERENCE + "EIA Standard RS-232-C, August 1969." + ::= { rs232InSigEntry 2 } + + rs232InSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current signal state." + ::= { rs232InSigEntry 3 } + + rs232InSigChanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { rs232InSigEntry 4 } + + + -- Output Signal Table + + rs232OutSigTable OBJECT-TYPE + SYNTAX SEQUENCE OF Rs232OutSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of port output control signal entries + implemented and visible to the software on the port, + and useful to monitor." + ::= { rs232 6 } + + rs232OutSigEntry OBJECT-TYPE + SYNTAX Rs232OutSigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Output control signal status for a hardware port." + INDEX { rs232OutSigPortIndex, rs232OutSigName } + ::= { rs232OutSigTable 1 } + + Rs232OutSigEntry ::= + SEQUENCE { + rs232OutSigPortIndex + InterfaceIndex, + rs232OutSigName + INTEGER, + rs232OutSigState + INTEGER, + rs232OutSigChanges + Counter32 + } + + rs232OutSigPortIndex OBJECT-TYPE + SYNTAX InterfaceIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of rs232PortIndex for the port to which + this entry belongs." + ::= { rs232OutSigEntry 1 } + + rs232OutSigName OBJECT-TYPE + SYNTAX INTEGER { rts(1), cts(2), dsr(3), dtr(4), ri(5), + dcd(6), sq(7), srs(8), srts(9), + scts(10), sdcd(11) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Identification of a hardware signal, as follows: + + rts Request to Send + cts Clear to Send + dsr Data Set Ready + dtr Data Terminal Ready + ri Ring Indicator + dcd Received Line Signal Detector + sq Signal Quality Detector + srs Data Signaling Rate Selector + srts Secondary Request to Send + scts Secondary Clear to Send + sdcd Secondary Received Line Signal Detector + " + REFERENCE + "EIA Standard RS-232-C, August 1969." + ::= { rs232OutSigEntry 2 } + + rs232OutSigState OBJECT-TYPE + SYNTAX INTEGER { none(1), on(2), off(3) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current signal state." + ::= { rs232OutSigEntry 3 } + + rs232OutSigChanges OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the signal has changed from + 'on' to 'off' or from 'off' to 'on'." + ::= { rs232OutSigEntry 4 } + + + -- conformance information + + rs232Conformance OBJECT IDENTIFIER ::= { rs232 7 } + + rs232Groups OBJECT IDENTIFIER ::= { rs232Conformance 1 } + rs232Compliances OBJECT IDENTIFIER ::= { rs232Conformance 2 } + + + -- compliance statements + + rs232Compliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which have RS-232-like hardware interfaces." + + MODULE -- this module + MANDATORY-GROUPS { rs232Group } + + GROUP rs232AsyncGroup + DESCRIPTION + "The Asynch group is mandatory only for those + SNMPv2 entities which have asynchronous + interfaces Rs-232-like." + + GROUP rs232SyncGroup + DESCRIPTION + "The Synch group is mandatory only for those + SNMPv2 entities which have synchronous + interfaces Rs-232-like." + ::= { rs232Compliances 1 } + + + -- units of conformance + + rs232Group OBJECT-GROUP + OBJECTS { rs232Number, rs232PortIndex, rs232PortType, + rs232PortInSigNumber, rs232PortOutSigNumber, + rs232PortInSpeed, rs232PortOutSpeed, + rs232PortInFlowType, rs232PortOutFlowType, + rs232InSigPortIndex, rs232InSigName, + rs232InSigState, rs232InSigChanges, + rs232OutSigPortIndex, rs232OutSigName, + rs232OutSigState, rs232OutSigChanges } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to all RS-232-like interfaces." + ::= { rs232Groups 1 } + + rs232AsyncGroup OBJECT-GROUP + OBJECTS { rs232AsyncPortIndex, rs232AsyncPortBits, + rs232AsyncPortStopBits, rs232AsyncPortParity, + rs232AsyncPortAutobaud, rs232AsyncPortParityErrs, + rs232AsyncPortFramingErrs, rs232AsyncPortOverrunErrs } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to asynchronous RS-232-like interfaces." + ::= { rs232Groups 2 } + + rs232SyncGroup OBJECT-GROUP + OBJECTS { rs232SyncPortIndex, rs232SyncPortClockSource, + rs232SyncPortFrameCheckErrs, + rs232SyncPortTransmitUnderrunErrs, + rs232SyncPortReceiveOverrunErrs, + rs232SyncPortInterruptedFrames, + rs232SyncPortAbortedFrames } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to synchronous RS-232-like interfaces." + ::= { rs232Groups 3 } + + rs232SyncSDLCGroup OBJECT-GROUP + OBJECTS { rs232SyncPortRole, + rs232SyncPortEncoding, + rs232SyncPortRTSControl, + rs232SyncPortRTSCTSDelay, + rs232SyncPortMode, + rs232SyncPortIdlePattern, + rs232SyncPortMinFlags } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to synchronous RS-232-like interfaces + running SDLC." + ::= { rs232Groups 4 } + + END diff --git a/pandora_console/attachment/mibs/SIP-MIB b/pandora_console/attachment/mibs/SIP-MIB new file mode 100644 index 0000000000..e190c10f49 --- /dev/null +++ b/pandora_console/attachment/mibs/SIP-MIB @@ -0,0 +1,1132 @@ +-- Changes to RFC1694 - SIP-MIB +-- The following items are not contained in any group and +-- need to be reviewed to add them to a group: +-- sipL3ReceivedIndividualDAs +-- sipL3ReceivedGAs +-- sipL3UnrecognizedIndividualDAs +-- sipL3UnrecognizedGAs +-- sipL3SentIndividualDAs +-- sipL3SentGAs +-- sipL3Errors +-- sipL3InvalidSMDSAddressTypes +-- sipL2ReceivedCounts +-- sipL2SentCounts +-- dperkins@scruznet.com + + + SIP-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, Counter32, + Integer32, IpAddress FROM SNMPv2-SMI + TimeStamp, TEXTUAL-CONVENTION FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + transmission, ifIndex, mib-2 FROM RFC1213-MIB; + + -- This is the MIB module for the SMDS Interface objects. + + sipMIB MODULE-IDENTITY + LAST-UPDATED "9403311818Z" + ORGANIZATION "IETF Interfaces Working Group" + CONTACT-INFO + " Tracy Brown + Postal: Bell Communications Research + 331 Newman Springs Road + P.O. Box 7020 + Red Bank, NJ 07701-7020 + US + + Tel: +1 908 758-2107 + Fax: +1 908 758-4177 + E-mail: tacox@mail.bellcore.com + + Kaj Tesink + Postal: Bell Communications Research + 331 Newman Springs Road + P.O. Box 7020 + Red Bank, NJ 07701-7020 + US + + Tel: +1 908 758 5254 + Fax: +1 908 758 4177 + E-mail: kaj@cc.bellcore.com." + DESCRIPTION + "The MIB module to describe + SMDS interfaces objects." + ::= { mib-2 36 } + + SMDSAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1h:" + STATUS current + DESCRIPTION + "The 60-bit SMDS address, + preceded by 4 bits with the following values: + 1100 when representing an individual address + 1110 when representing a group address." + SYNTAX OCTET STRING (SIZE (8)) + + IfIndex ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains + management information. The value of this + object for a particular interface has the same + value as the ifIndex object, defined in RFC + 1213, for the same interface." + SYNTAX Integer32 + + + sip OBJECT IDENTIFIER ::= { transmission 31 } + sipMIBObjects OBJECT IDENTIFIER ::= { sipMIB 1 } + + + -- The SIP Level 3 Group + + sipL3Table OBJECT-TYPE + SYNTAX SEQUENCE OF SipL3Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains SIP L3 parameters and + state variables, one entry per SIPL3 interface." + ::= { sip 1 } + + sipL3Entry OBJECT-TYPE + SYNTAX SipL3Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains SIP L3 parameters and + state variables." + INDEX { sipL3Index } + ::= { sipL3Table 1 } + + SipL3Entry ::= SEQUENCE { + sipL3Index IfIndex, + sipL3ReceivedIndividualDAs Counter32, + sipL3ReceivedGAs Counter32, + sipL3UnrecognizedIndividualDAs Counter32, + sipL3UnrecognizedGAs Counter32, + sipL3SentIndividualDAs Counter32, + sipL3SentGAs Counter32, + sipL3Errors Counter32, + sipL3InvalidSMDSAddressTypes Counter32, + sipL3VersionSupport Integer32 + } + + sipL3Index OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the SIP + L3 interface for which this entry contains + management information. " + ::= { sipL3Entry 1 } + + sipL3ReceivedIndividualDAs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + -- Moved to ifTable + -- ifInUcastPkts defined in [9] must be used instead. + DESCRIPTION + "The total number of individually addressed SIP + Level 3 PDUs received from the remote system + across the SNI. The total includes only + unerrored L3PDUs." + ::= { sipL3Entry 2 } + + sipL3ReceivedGAs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + -- Moved to ifTable + -- ifInMulticastPkts defined in [9] must be used instead. + DESCRIPTION + "The total number of group addressed SIP Level 3 + PDUs received from the remote system across the + SNI. The total includes only unerrored L3PDUs." + ::= { sipL3Entry 3 } + + sipL3UnrecognizedIndividualDAs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of SIP Level 3 PDUs received from the + remote system with invalid or unknown individual + destination addresses (Destination Address + Screening violations are not included). See SMDS + Subscription MIB module." + ::= { sipL3Entry 4 } + + sipL3UnrecognizedGAs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + "The number of SIP Level 3 PDUs received from the + remote system with invalid or unknown group + addresses. (Destination Address Screening + violations are not included). See SMDS + Subscription MIB module." + ::= { sipL3Entry 5 } + + sipL3SentIndividualDAs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + -- Moved to ifTable + -- ifOutUcastPkts defined in [9] must be used instead. + DESCRIPTION + "The number of individually addressed SIP Level 3 + PDUs that have been sent by this system across the + SNI." + ::= { sipL3Entry 6 } + + sipL3SentGAs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + -- Moved to ifTable + -- ifOutMulticastPkts defined in [9] must be used instead. + DESCRIPTION + "The number of group addressed SIP L3PDUs that + have been sent by this system across the SNI." + ::= { sipL3Entry 7 } + + -- The total number of SIP L3PDU errors can be calculated as + -- (Syntactic errors + Semantic Service errors ) + -- Syntactic errors include: + -- sipL3Errors + -- Latest occurrences of syntactic error types are logged in + -- sipL3PDUErrorTable. + -- Semantic Service errors include: + -- sipL3UnrecognizedIndividualDAs + -- sipL3UnrecognizedGAs + -- sipL3InvalidSMDSAddressTypes + -- Note that public networks supporting SMDS may discard + -- SIP L3PDUs due to subscription violations. Related + -- managed objects are defined in Definitions of Managed + -- Objects for SMDS Subscription. + + sipL3Errors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + -- Moved to ifTable + -- ifInErrors defined in [9] must be used instead. + DESCRIPTION + "The total number of SIP Level 3 PDUs received + from the remote system that were discovered to + have errors (including protocol processing and bit + errors but excluding addressing-related errors) + and were discarded. Includes both group addressed + L3PDUs and L3PDUs containing an individual + destination address." + ::= { sipL3Entry 8 } + + sipL3InvalidSMDSAddressTypes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + -- Moved to ifTable + -- ifInUnknownProtos defined in [9] must be used instead. + DESCRIPTION + "The number of SIP Level 3 PDUs received from the + remote system that had the Source or Destination + Address_Type subfields, (the four most significant + bits of the 64 bit address field), not equal to + the value 1100 or 1110. Also, an error is + considered to have occurred if the Address_Type + field for a Source Address, the four most + significant bits of the 64 bits, is equal to 1110 + (a group address)." + ::= { sipL3Entry 9 } + + sipL3VersionSupport OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value which indicates the version(s) of SIP + that this interface supports. The value is a sum. + This sum initially takes the value zero. For each + version, V, that this interface supports, 2 raised + to (V - 1) is added to the sum. For example, a + port supporting versions 1 and 2 would have a + value of (2^(1-1)+2^(2-1))=3. The + sipL3VersionSupport is effectively a bit mask with + Version 1 equal to the least significant bit + (LSB)." + ::= { sipL3Entry 10 } + + + -- The SIP Level 2 Group + + sipL2Table OBJECT-TYPE + SYNTAX SEQUENCE OF SipL2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains SIP L2PDU parameters and + state variables, one entry per SIP L2 interface." + ::= { sip 2 } + + sipL2Entry OBJECT-TYPE + SYNTAX SipL2Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains SIP L2 parameters and state + variables." + INDEX { sipL2Index } + ::= { sipL2Table 1 } + + SipL2Entry ::= SEQUENCE { + sipL2Index IfIndex, + sipL2ReceivedCounts Counter32, + sipL2SentCounts Counter32, + sipL2HcsOrCRCErrors Counter32, + sipL2PayloadLengthErrors Counter32, + sipL2SequenceNumberErrors Counter32, + sipL2MidCurrentlyActiveErrors Counter32, + sipL2BomOrSSMsMIDErrors Counter32, + sipL2EomsMIDErrors Counter32 + } + + sipL2Index OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the SIP + interface for which this entry contains management + information." + ::= { sipL2Entry 1 } + + sipL2ReceivedCounts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SIP Level 2 PDUs received from the + remote system across the SNI. The total includes + only unerrored L2PDUs." + ::= { sipL2Entry 2 } + + sipL2SentCounts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of SIP Level 2 PDUs that have been + sent by this system across the SNI." + ::= { sipL2Entry 3 } + + -- The following error types are counted, and + -- preclude sipL2ReceivedCounts to be incremented: + -- sipL2HcsOrCRCErrors + -- sipL2PayloadLengthErrors + -- sipL2SequenceNumberErrors + -- sipL2BomOrSSMsMIDErrors + -- sipL2EomsMIDErrors + -- The receipt of SIP Level 2 PDUs which are BOMs and + -- for with a MID that is already active will cause + -- sipL2MidCurrentlyActiveErrors to increment. + -- Any already accumulated (correct) segmentation + -- units are discarded.The sipL2ReceivedCounts + -- is incremented by 1. Thus, + -- sipL2ReceivedCounts defines the number of + -- correct SIP Level 2 PDUs delivered to the reassembly + -- process. + + sipL2HcsOrCRCErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of received SIP Level 2 PDUs that were + discovered to have either a Header Check Sequence + error or a Payload CRC violation." + ::= { sipL2Entry 4 } + + sipL2PayloadLengthErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of received SIP Level 2 PDUs that had + Payload Length errors that fall in the following + specifications: + - SSM L2_PDU payload length field value less + - than 28 octets or greater than 44 octets, + + - BOM or COM L2_PDU payload length field not + - equal to 44 octets, + - EOM L2_PDU payload length field value less + - than 4 octets or greater than 44 octets." + ::= { sipL2Entry 5 } + + sipL2SequenceNumberErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of received SIP Level 2 PDUs that had + a sequence number within the L2PDU not equal to + the expected sequence number of the SMDS SS + receive process." + ::= { sipL2Entry 6 } + + sipL2MidCurrentlyActiveErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of received SIP Level 2 PDUs that are + BOMs for which an active receive process is + already started." + ::= { sipL2Entry 7 } + + sipL2BomOrSSMsMIDErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of received SIP Level 2 PDUs that are + SSMs with a MID not equal to zero or are BOMs with + MIDs equal to zero." + ::= { sipL2Entry 8 } + + sipL2EomsMIDErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of received SIP Level 2 PDUs that are + EOMs for which there is no active receive process + for the MID (i.e., the receipt of an EOM which + does not correspond to a BOM) OR the EOM has a MID + equal to zero." + ::= { sipL2Entry 9 } + + + -- The SIP PLCP Group + + sipPLCP OBJECT IDENTIFIER ::= { sip 3 } + + + -- The DS1 PLCP Group + + sipDS1PLCPTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipDS1PLCPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains SIP DS1 PLCP parameters and + state variables, one entry per SIP port." + ::= { sipPLCP 1 } + + sipDS1PLCPEntry OBJECT-TYPE + SYNTAX SipDS1PLCPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains SIP DS1 PLCP parameters and + state variables." + INDEX { sipDS1PLCPIndex } + ::= { sipDS1PLCPTable 1 } + + SipDS1PLCPEntry ::= SEQUENCE { + sipDS1PLCPIndex IfIndex, + sipDS1PLCPSEFSs Counter32, + sipDS1PLCPAlarmState INTEGER, + sipDS1PLCPUASs Counter32 + } + + sipDS1PLCPIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains management + information. " + ::= { sipDS1PLCPEntry 1 } + + sipDS1PLCPSEFSs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A DS1 Severely Errored Framing Second (SEFS) is a + count of one-second intervals containing one or + more SEF events. A Severely Errored Framing (SEF) + event is declared when an error in the A1 octet + and an error in the A2 octet of a framing octet + pair (i.e., errors in both framing octets), or two + consecutive invalid and/or nonsequential Path + Overhead Identifier octets are detected." + ::= { sipDS1PLCPEntry 2 } + + sipDS1PLCPAlarmState OBJECT-TYPE + SYNTAX INTEGER { + noAlarm (1), + receivedFarEndAlarm (2), + incomingLOF (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates if there is an alarm + present for the DS1 PLCP. The value + receivedFarEndAlarm means that the DS1 PLCP has + received an incoming Yellow Signal, the value + incomingLOF means that the DS1 PLCP has declared a + loss of frame (LOF) failure condition, and the + value noAlarm means that there are no alarms + present. See TR-TSV-000773 for a description of + alarm states." + ::= { sipDS1PLCPEntry 3 } + + sipDS1PLCPUASs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by TR-TSV-000773, + encountered by the PLCP." + ::= { sipDS1PLCPEntry 4 } + + + -- The DS3 PLCP Group + + sipDS3PLCPTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipDS3PLCPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains SIP DS3 PLCP parameters and + state variables, one entry per SIP port." + ::= { sipPLCP 2 } + + sipDS3PLCPEntry OBJECT-TYPE + SYNTAX SipDS3PLCPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This list contains SIP DS3 PLCP parameters and + state variables." + INDEX { sipDS3PLCPIndex } + ::= { sipDS3PLCPTable 1 } + + SipDS3PLCPEntry ::= SEQUENCE { + sipDS3PLCPIndex IfIndex, + sipDS3PLCPSEFSs Counter32, + sipDS3PLCPAlarmState INTEGER, + sipDS3PLCPUASs Counter32 + } + + sipDS3PLCPIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains management + information. " + ::= { sipDS3PLCPEntry 1 } + + sipDS3PLCPSEFSs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A DS3 Severely Errored Framing Second (SEFS) is a + count of one-second intervals containing one or + more SEF events. A Severely Errored Framing (SEF) + event is declared when an error in the A1 octet + and an error in the A2 octet of a framing octet + pair (i.e., errors in both framing octets), or two + consecutive invalid and/or nonsequential Path + Overhead Identifier octets are detected." + ::= { sipDS3PLCPEntry 2 } + + sipDS3PLCPAlarmState OBJECT-TYPE + SYNTAX INTEGER { + noAlarm (1), + receivedFarEndAlarm (2), + incomingLOF (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This variable indicates if there is an alarm + present for the DS3 PLCP. The value + receivedFarEndAlarm means that the DS3 PLCP has + received an incoming Yellow Signal, the value + incomingLOF means that the DS3 PLCP has declared a + loss of frame (LOF) failure condition, and the + value noAlarm means that there are no alarms + present. See TR-TSV-000773 for a description of + alarm states." + ::= { sipDS3PLCPEntry 3 } + + sipDS3PLCPUASs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The counter associated with the number of + Unavailable Seconds, as defined by TR-TSV-000773, + encountered by the PLCP." + ::= { sipDS3PLCPEntry 4 } + + + -- The SMDS Applications group + -- Applications that have been identified for this group are: + -- * IP-over-SMDS (details are specified in RFC 1209) + + smdsApplications OBJECT IDENTIFIER ::= { sip 4 } + + ipOverSMDS OBJECT IDENTIFIER ::= { smdsApplications 1 } + + -- Although the objects in this group are read-only, at the + -- agent's discretion they may be made read-write so that the + -- management station, when appropriately authorized, may + -- change the addressing information related to the + -- configuration of a logical IP subnetwork implemented on + -- top of SMDS. + + -- This table is necessary to support RFC1209 (IP-over-SMDS) + -- and gives information on the Group Addresses and ARP + -- Addresses used in the Logical IP subnetwork. + -- One SMDS address may be associated with multiple IP + -- addresses. One SNI may be associated with multiple LISs. + + ipOverSMDSTable OBJECT-TYPE + SYNTAX SEQUENCE OF IpOverSMDSEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The table of addressing information relevant to + this entity's IP addresses." + ::= { ipOverSMDS 1 } + + ipOverSMDSEntry OBJECT-TYPE + SYNTAX IpOverSMDSEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The addressing information for one of this + entity's IP addresses." + INDEX { ipOverSMDSIndex, ipOverSMDSAddress } + ::= { ipOverSMDSTable 1 } + + IpOverSMDSEntry ::= + SEQUENCE { + ipOverSMDSIndex IfIndex, + ipOverSMDSAddress IpAddress, + ipOverSMDSHA SMDSAddress, + ipOverSMDSLISGA SMDSAddress, + ipOverSMDSARPReq SMDSAddress + } + + ipOverSMDSIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains management + information. " + ::= { ipOverSMDSEntry 1 } + + ipOverSMDSAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The IP address to which this entry's addressing + information pertains." + ::= { ipOverSMDSEntry 2 } + + ipOverSMDSHA OBJECT-TYPE + SYNTAX SMDSAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMDS Individual address of the IP station." + ::= { ipOverSMDSEntry 3 } + + ipOverSMDSLISGA OBJECT-TYPE + SYNTAX SMDSAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMDS Group Address that has been configured + to identify the SMDS Subscriber-Network Interfaces + (SNIs) of all members of the Logical IP Subnetwork + (LIS) connected to the network supporting SMDS." + ::= { ipOverSMDSEntry 4 } + + ipOverSMDSARPReq OBJECT-TYPE + SYNTAX SMDSAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The SMDS address (individual or group) to which + ARP Requests are to be sent." + ::= { ipOverSMDSEntry 5 } + + + -- The SMDS Carrier Selection group + -- This group is used as a place holder + -- for carrier selection objects. + + smdsCarrierSelection OBJECT IDENTIFIER ::= { sip 5 } + + + -- The SIP Error Log + + sipErrorLog OBJECT IDENTIFIER ::= { sip 6 } + + sipL3PDUErrorTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipL3PDUErrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table that contains the latest occurrence of + the following syntactical SIP L3PDU errors: + + - Destination Address Field Format Error, + + The following pertains to the 60 least significant + bits of the 64 bit address field. The 60 bits + contained in the address subfield can be used to + represent addresses up to 15 decimal digits. Each + decimal digit shall be encoded into four bits + using Binary Coded Decimal (BCD), with the most + significant digit occurring left-most. If not all + 15 digits are required, then the remainder of this + field shall be padded on the right with bits set + to one. An error is considered to have occurred: + a). if the first four bits of the address + subfield are not BCD, OR b). if the first four + bits of the address subfield are populated with + the country code value 0001, AND the 40 bits which + follow are not Binary Coded Decimal (BCD) encoded + values of the 10 digit addresses, OR the remaining + 16 least significant bits are not populated with + 1's, OR c). if the address subfield is not + correct according to another numbering plan which + is dependent upon the carrier assigning the + numbers and offering SMDS. + + - Source Address Field Format Error, + + The description of this parameter is the same as + the description of the Destination Address Field + Format Error. + + - Invalid BAsize Field Value, + + An error is considered to have occurred when the + BAsize field of an SIP L3PDU contains a value less + that 32, greater than 9220 octets without the + CRC32 field present, greater than 9224 octets with + the CRC32 field present, or not equal to a + multiple of 4 octets, + + - Invalid Header Extension Length Field Value, + + An error is considered to have occurred when the + Header Extension Length field value is not equal + 3. + + - Invalid Header Extension - Element Length, + + An error is considered to have occurred when the + Header Extension - Element Length is greater than + 12. + + - Invalid Header Extension - Version Element + Position, Length, or Value, + + An error is considered to have occurred when a + Version element with Length=3, Type=0, and Value=1 + does not appear first within the Header Extension, + or an element Type=0 appears somewhere other than + within the first three octets in the Header + Extension. + + - Invalid Header Extension - Carrier Selection + Element Position, Length, Value or Format, + + An error is considered to have occurred when a + Carrier Selection element does not appear second + within the Header Extension, if the Element Type + does not equal 1, the Element Length does not + equal 4, 6, or 8, the Element Value field is not + four BCD encoded decimal digits used in specifying + the Carrier Identification Code (CIC), or the + identified CIC code is invalid. + + - Header Extension PAD Error + + An error is considered to have occurred when the + Header Extension PAD is 9 octets in length, or if + the Header Extension PAD is greater than zero + octets in length and the Header Extension PAD does + not follow all Header Extension elements or does + not begin with at least one octet of all zeros. + + - BEtag Mismatch Error, + + An error is considered to have occurred when the + Beginning-End Tags in the SIP L3PDU header and + trailer are not equal. + + - BAsize Field not equal to Length Field Error, + + An error is considered to have occurred when the + value of the BAsize Field does not equal the value + of the Length Field. + + - Incorrect Length Error, and + + An error is considered to have occurred when the + the Length field value is not equal to the portion + of the SIP L3PDU which extends from the + Destination Address field up to and including the + CRC32 field (if present) or up to and including + the PAD field (if the CRC32 field is not present). + As an optional check, an error is considered to + have occurred when the length of a partially + received SIP L3PDU exceeds the BAsize value. + + - MRI Timeout Error. + + An error is considered to have occurred when the + elapsed time between receipt of BOM and + corresponding EOM exceeds the value of the MRI + (Message Receive Interval) for a particular + transport signal format. + + An entry is indexed by interface number and error + type, and contains Source Address, Destination + Address and a timestamp. All these errors are + counted in the sipL3Errors counter. When + sipL3PDUErrorTimeStamp is equal to zero, the + SipL3PDUErrorEntry does not contain any valid + information." + ::= { sipErrorLog 1 } + + sipL3PDUErrorEntry OBJECT-TYPE + SYNTAX SipL3PDUErrorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the service disagreement table." + INDEX { sipL3PDUErrorIndex, sipL3PDUErrorType } + ::= { sipL3PDUErrorTable 1 } + + SipL3PDUErrorEntry ::= SEQUENCE { + sipL3PDUErrorIndex IfIndex, + sipL3PDUErrorType INTEGER, + sipL3PDUErrorSA SMDSAddress, + sipL3PDUErrorDA SMDSAddress, + sipL3PDUErrorTimeStamp TimeStamp + } + + sipL3PDUErrorIndex OBJECT-TYPE + SYNTAX IfIndex + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the + interface for which this entry contains management + information." + ::= { sipL3PDUErrorEntry 1 } + + sipL3PDUErrorType OBJECT-TYPE + SYNTAX INTEGER { + erroredDAFieldFormat (1), + erroredSAFieldFormat (2), + invalidBAsizeFieldValue (3), + invalidHdrExtLength (4), + invalidHdrExtElementLength (5), + invalidHdrExtVersionElementPositionLenthOrValue (6), + invalidHdrExtCarSelectElementPositionLenghtValueOrFormat (7), + hePADError (8), + beTagMismatch (9), + baSizeFieldNotEqualToLengthField (10), + incorrectLength (11), + mriTimeout (12) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The type of error." + ::= { sipL3PDUErrorEntry 2 } + + sipL3PDUErrorSA OBJECT-TYPE + SYNTAX SMDSAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A rejected SMDS source address." + ::= { sipL3PDUErrorEntry 3 } + + sipL3PDUErrorDA OBJECT-TYPE + SYNTAX SMDSAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A rejected SMDS destination address." + ::= { sipL3PDUErrorEntry 4 } + + sipL3PDUErrorTimeStamp OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp for the service disagreement. The + timestamp contains the value of sysUpTime at the + latest occurrence of this type of service + disagreement. See textual description under + sipL3PDUErrorTable for boundary conditions." + ::= { sipL3PDUErrorEntry 5 } + + + -- The DXI Group + + sipDxiTable OBJECT-TYPE + SYNTAX SEQUENCE OF SipDxiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The DXI table." + ::= { sipMIBObjects 1 } + + sipDxiEntry OBJECT-TYPE + SYNTAX SipDxiEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry in the DXI table." + INDEX { ifIndex } + ::= { sipDxiTable 1 } + + SipDxiEntry ::= + SEQUENCE { + sipDxiCrc + INTEGER, + sipDxiOutDiscards + Counter32, + sipDxiInErrors + Counter32, + sipDxiInAborts + Counter32, + sipDxiInTestFrames + Counter32, + sipDxiOutTestFrames + Counter32, + sipDxiHbpNoAcks + Counter32 + } + + sipDxiCrc OBJECT-TYPE + SYNTAX INTEGER { + crc16(1), + crc32(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object indicates the type + of Frame Checksum used by DXI. Current + choices include CCITT CRC16 or CRC32." + ::= { sipDxiEntry 1 } + + sipDxiOutDiscards OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of outbound frames discarded + because of congestion." + ::= { sipDxiEntry 2 } + + sipDxiInErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound frames discarded + because of errors such as frame checksum + (CRC) violations, + non-integral number of octets, address + and control field violations, and frame + size errors." + ::= { sipDxiEntry 3 } + + sipDxiInAborts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of inbound frames discarded + because of an abort bit sequence (1111111) + received before closing flag." + ::= { sipDxiEntry 4 } + + sipDxiInTestFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of unerrored, + inbound Test frames received + (generally as part of Heart + Beat Poll procedure)." + ::= { sipDxiEntry 5 } + + sipDxiOutTestFrames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of unerrored, + outbound Test frames sent + (generally as part of Heart + Beat Poll procedure)." + ::= { sipDxiEntry 6 } + + sipDxiHbpNoAcks OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Heart Beat + Poll (HBP) No Ack timeouts." + ::= { sipDxiEntry 7 } + + + -- conformance information + + smdsConformance OBJECT IDENTIFIER ::= { sipMIB 2 } + + smdsGroups OBJECT IDENTIFIER ::= { smdsConformance 1 } + smdsCompliances OBJECT IDENTIFIER ::= { smdsConformance 2 } + + + -- compliance statements + + smdsCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SMDS interfaces." + + MODULE -- this module + MANDATORY-GROUPS { sipLevel3Stuff } + + GROUP sipLevel2Stuff + DESCRIPTION + "This group is mandatory only for those + interfaces (SNIs) which run SIP Level 2." + + GROUP sipDS1PLCPStuff + DESCRIPTION + "This group is mandatory only for those + interfaces (SNIs) which run the DS1 PLCP." + + GROUP sipDS3PLCPStuff + DESCRIPTION + "This group is mandatory only for those + interfaces (SNIs) which run the DS3 PLCP." + + GROUP sipIPApplicationsStuff + DESCRIPTION + "This group is mandatory only for interfaces + operating IP over SMDS in accordance with + RFC1209." + + GROUP sipDxiStuff + DESCRIPTION + "This group is mandatory only for those interfaces + (DXI-SNI) + which run the DXI protocol." + ::= { smdsCompliances 1 } + + -- units of conformance + + sipLevel3Stuff OBJECT-GROUP + OBJECTS { sipL3Index, + sipL3VersionSupport, sipL3PDUErrorIndex, + sipL3PDUErrorType, + sipL3PDUErrorSA, sipL3PDUErrorDA, + sipL3PDUErrorTimeStamp } + STATUS current + DESCRIPTION + "A collection of objects providing information + applicable to all SMDS interfaces." + ::= { smdsGroups 1 } + + sipLevel2Stuff OBJECT-GROUP + OBJECTS { sipL2Index, sipL2HcsOrCRCErrors, + sipL2PayloadLengthErrors, + sipL2SequenceNumberErrors, + sipL2MidCurrentlyActiveErrors, + sipL2BomOrSSMsMIDErrors, + sipL2EomsMIDErrors } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to interfaces using the SIP Level 2." + ::= { smdsGroups 2 } + + sipDS1PLCPStuff OBJECT-GROUP + OBJECTS { sipDS1PLCPIndex, sipDS1PLCPSEFSs, + sipDS1PLCPAlarmState, sipDS1PLCPUASs } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to interfaces using the DS1 PLCP." + ::= { smdsGroups 3 } + + sipDS3PLCPStuff OBJECT-GROUP + OBJECTS { sipDS3PLCPIndex, sipDS3PLCPSEFSs, + sipDS3PLCPAlarmState, sipDS3PLCPUASs } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to interfaces using the DS3 PLCP." + ::= { smdsGroups 4 } + + + sipIPApplicationsStuff OBJECT-GROUP + OBJECTS { ipOverSMDSIndex, ipOverSMDSAddress, + ipOverSMDSHA, ipOverSMDSLISGA, ipOverSMDSARPReq } + STATUS current + DESCRIPTION + "A collection of objects providing information + for running IP over SMDS." + ::= { smdsGroups 5 } + + sipDxiStuff OBJECT-GROUP + OBJECTS { sipDxiCrc, sipDxiOutDiscards, + sipDxiInErrors, sipDxiInAborts, + sipDxiInTestFrames, sipDxiOutTestFrames, + sipDxiHbpNoAcks } + STATUS current + DESCRIPTION + "A collection of objects providing information + specific to interfaces using the DXI protocol." + ::= { smdsGroups 6 } + + END diff --git a/pandora_console/attachment/mibs/SMUX-MIB b/pandora_console/attachment/mibs/SMUX-MIB new file mode 100644 index 0000000000..d817cab779 --- /dev/null +++ b/pandora_console/attachment/mibs/SMUX-MIB @@ -0,0 +1,168 @@ +-- Changes to rfc1227 (SMUX MIB): +-- changed RFC1212 to RFC-1212 +-- added import for DisplayString +-- dperkins@scruznet.com + + SMUX-MIB DEFINITIONS ::= BEGIN + + -- From RFC1227 + -- May 1991 + + IMPORTS + enterprises + FROM RFC1155-SMI + OBJECT-TYPE + FROM RFC-1212 + DisplayString + FROM RFC1213-MIB; + + unix OBJECT IDENTIFIER ::= { enterprises 4 } + + smux OBJECT IDENTIFIER ::= { unix 4 } + + smuxPeerTable OBJECT-TYPE + SYNTAX SEQUENCE OF SmuxPeerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The SMUX peer table." + ::= { smux 1 } + + smuxPeerEntry OBJECT-TYPE + SYNTAX SmuxPeerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the SMUX peer table." + INDEX { smuxPindex } + ::= { smuxPeerTable 1} + + SmuxPeerEntry ::= + SEQUENCE { + smuxPindex + INTEGER, + smuxPidentity + OBJECT IDENTIFIER, + smuxPdescription + DisplayString, + smuxPstatus + INTEGER + } + + smuxPindex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "An index which uniquely identifies a SMUX peer." + ::= { smuxPeerEntry 1 } + + smuxPidentity OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The authoritative designation for a SMUX peer." + ::= { smuxPeerEntry 2 } + + smuxPdescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A human-readable description of a SMUX peer." + ::= { smuxPeerEntry 3 } + + smuxPstatus OBJECT-TYPE + SYNTAX INTEGER { valid(1), invalid(2), connecting(3) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of SMUX peer. + + Setting this object to the value invalid(2) has + the effect of invaliding the corresponding entry + in the smuxPeerTable. It is an implementation- + specific matter as to whether the agent removes an + invalidated entry from the table. Accordingly, + management stations must be prepared to receive + tabular information from agents that correspond to + entries not currently in use. Proper + interpretation of such entries requires + examination of the relative smuxPstatus object." + ::= { smuxPeerEntry 4 } + + smuxTreeTable OBJECT-TYPE + SYNTAX SEQUENCE OF SmuxTreeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The SMUX tree table." + ::= { smux 2 } + + smuxTreeEntry OBJECT-TYPE + SYNTAX SmuxTreeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the SMUX tree table." + INDEX { smuxTsubtree, smuxTpriority } + ::= { smuxTreeTable 1} + + SmuxTreeEntry ::= + SEQUENCE { + smuxTsubtree + OBJECT IDENTIFIER, + smuxTpriority + INTEGER, + smuxTindex + INTEGER, + smuxTstatus + INTEGER + } + + smuxTsubtree OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The MIB subtree being exported by a SMUX peer." + ::= { smuxTreeEntry 1 } + + smuxTpriority OBJECT-TYPE + SYNTAX INTEGER (0..'07fffffff'h) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SMUX peer's priority when exporting the MIB + subtree." + ::= { smuxTreeEntry 2 } + + smuxTindex OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SMUX peer's identity." + ::= { smuxTreeEntry 3 } + + smuxTstatus OBJECT-TYPE + SYNTAX INTEGER { valid(1), invalid(2) } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The type of SMUX tree. + + Setting this object to the value invalid(2) has + the effect of invaliding the corresponding entry + in the smuxTreeTable. It is an implementation- + specific matter as to whether the agent removes an + invalidated entry from the table. Accordingly, + management stations must be prepared to receive + tabular information from agents that correspond to + entries not currently in use. Proper + interpretation of such entries requires + examination of the relative smuxTstatus object." + ::= { smuxTreeEntry 4 } + + END diff --git a/pandora_console/attachment/mibs/SNA-NAU-MIB b/pandora_console/attachment/mibs/SNA-NAU-MIB new file mode 100644 index 0000000000..2aced815a3 --- /dev/null +++ b/pandora_console/attachment/mibs/SNA-NAU-MIB @@ -0,0 +1,2783 @@ +-- Changes to RFC1666 - SNA-NAU MIB +-- Added IMPORT for mib-2. +-- Changed TC InstancePointer to RowPointer for objects +-- snaNodeLinkAdminSpecific and snaNodeLinkOperSpecific. +-- dperkins@scruznet.com + + +SNA-NAU-MIB DEFINITIONS ::= BEGIN + +-- This MIB module contains objects necessary +-- for management of the following SNA devices: PU types 1.0, 2.0, 2.1 +-- and LU types 0, 1, 2, 3, 4, 7. It also contains generic objects +-- which can be used to manage LU 6.2. + +-- Naming conventions in this document: +-- The following names are used in object descriptors according to +-- SNA conventions. +-- The name 'PU' or 'Node' is used to describe Node type 1.0, 2.0 or +-- 2.1. +-- The name 'LU' is used to describe Logical Unit of type 0,1,2,3, +-- 4,7 or 6.2. + + + +IMPORTS + DisplayString, RowStatus, TimeStamp, + -- InstancePointer + RowPointer + FROM SNMPv2-TC + + Counter32, Gauge32, Integer32, + OBJECT-TYPE, MODULE-IDENTITY, NOTIFICATION-TYPE + FROM SNMPv2-SMI + + mib-2 FROM RFC1213-MIB + + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + + +snanauMIB MODULE-IDENTITY + LAST-UPDATED "9405120900Z" + ORGANIZATION "IETF SNA NAU MIB Working Group" + CONTACT-INFO + " Zbigniew Kielczewski + Eicon Technology Inc. + 2196 32nd Avenue + Lachine, Que H8T 3H7 + Canada + Tel: 1 514 631 2592 + E-mail: zbig@eicon.qc.ca + + Deirdre Kostick + Bellcore + 331 Newman Springs Road + Red Bank, NJ 07701 + Tel: 1 908 758 2642 + E-mail: dck2@mail.bellcore.com + + Kitty Shih (editor) + Novell + 890 Ross Drive + Sunnyvale, CA 94089 + Tel: 1 408 747 4305 + E-mail: kmshih@novell.com" + DESCRIPTION + "This is the MIB module for objects used to + manage SNA devices." +::= { mib-2 34 } + +-- The SNANAU MIB module contains an objects part and a conformance part. +-- Objects are organized into the following groups: +-- (1)snaNode group, +-- (2)snaLU group, +-- (3)snaMgtTools group. + +snanauObjects OBJECT IDENTIFIER ::= { snanauMIB 1 } + + snaNode OBJECT IDENTIFIER ::= { snanauObjects 1 } + snaLu OBJECT IDENTIFIER ::= { snanauObjects 2 } + snaMgtTools OBJECT IDENTIFIER ::= { snanauObjects 3} + + +-- *************************************************************** +-- snaNode group +-- +-- It contains Managed Objects related to any type of Node and +-- some specific objects for Node Type 2.0. +-- *************************************************************** + + +-- *************************************************************** +-- The following table contains generic Node configuration +-- parameters. +-- *************************************************************** + +snaNodeAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaNodeAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains objects which describe the + configuration parameters for an SNA Node. Link + specific configuration objects are contained in + a separate MIB module (e.g., SNA DLC MIB) + corresponding to the link type. + The table snaNodeAdminLinkTable contains objects + which identify the relationship between node instances + and link instances. + + The entries (i.e., rows) in this table can be created + by either an Agent or a Management Station. + The Management Station can do this through setting + the appropriate value in the snaNodeAdminRowStatus. + + The snaNodeAdminRowStatus object describes the + status of an entry and is used to change the status + of an entry. The entry is deleted by an Agent based + on the value of the snaNodeAdminRowStatus. + + The snaNodeAdminState object describes the desired + operational state of a Node and is used to change the + operational state of a Node. For example, such + information may be obtained from a configuration file. + + How an Agent or a Management Station obtains the + initial value of each object at creation time is an + implementation specific issue. + + For each entry in this table, there is a corresponding + entry in the snaNodeOperTable. + While the objects in this table describe the desired + or configured operational values of the SNA Node, the + actual runtime values are contained in + snaNodeOperTable." + ::= { snaNode 1 } + +snaNodeAdminEntry OBJECT-TYPE + SYNTAX SnaNodeAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains the configuration parameters for + one SNA Node instance. The objects in the entry + have read-create access. + An entry can be created, modified or deleted. The + object snaNodeAdminRowStatus is used (i.e., set) to + create or delete a row entry." + INDEX { snaNodeAdminIndex } + ::= { snaNodeAdminTable 1 } + +SnaNodeAdminEntry ::= SEQUENCE { + snaNodeAdminIndex + Integer32, + snaNodeAdminName + DisplayString, + snaNodeAdminType + INTEGER, + snaNodeAdminXidFormat + INTEGER, + snaNodeAdminBlockNum + DisplayString, + snaNodeAdminIdNum + DisplayString, + snaNodeAdminEnablingMethod + INTEGER, + snaNodeAdminLuTermDefault + INTEGER, + snaNodeAdminMaxLu + Integer32, + snaNodeAdminHostDescription + DisplayString, + snaNodeAdminStopMethod + INTEGER, + snaNodeAdminState + INTEGER, + snaNodeAdminRowStatus + RowStatus + } + +snaNodeAdminIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Index used to uniquely identify each Node instance. + If an Agent creates the entry, then it will assign + this number otherwise a Management Station + generates a random number when it reserves the + entry for creation." + ::= { snaNodeAdminEntry 1 } + +snaNodeAdminName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the desired name of the + Node for use during Node activation. + In Type 2.1 networks, this is a fully-qualified name, + meaning that the Node name is preceded by the NetId (if + present) with a period as the delimiter. + + A write operation to this object will + not change the operational value reflected + in snaNodeOperName until the Node has + been re-activated (e.g., after the next initialization + of the SNA services)." + ::= { snaNodeAdminEntry 2 } + +snaNodeAdminType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + pu10(2), + pu20(3), + t21len(4), + endNode(5), + networkNode(6) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the type of SNA Node. + + A write operation to this object will + not change the operational value reflected + in snaNodeOperType until the Node has + been re-activated (e.g., after the next initialization + of the SNA services)." + ::= { snaNodeAdminEntry 3 } + +snaNodeAdminXidFormat OBJECT-TYPE + SYNTAX INTEGER { + format0(1), + format1(2), + format3(3) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the type of XID format used for + this Node. Note that there is no format type 2. + + A write operation to this object will + not change the operational value reflected + in snaNodeOperAdminXidFormat until the Node has + been re-activated (e.g., after the next initialization + of the SNA services)." + ::= { snaNodeAdminEntry 4 } + +snaNodeAdminBlockNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(3)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the block number for this Node + instance. It is the first 3 hexadecimal digits of the + SNA Node id. + + A write operation to this object will + not change the operational value reflected + in snaNodeOperBlockNum until the Node has + been re-activated (e.g., after the next initialization + of the SNA services)." + ::= { snaNodeAdminEntry 5 } + +snaNodeAdminIdNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(5)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the ID number for this Node + instance. This is the last 5 hexadecimal digits of + the SNA Node id. + + A write operation to this object will + not change the operational value reflected + in snaNodeOperIdNum until the Node has + been re-activated (e.g., after the next initialization + of the SNA services)." + ::= { snaNodeAdminEntry 6 } + +snaNodeAdminEnablingMethod OBJECT-TYPE + SYNTAX INTEGER { + other (1), + startup (2), + demand (3), + onlyMS (4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates how the Node should be + activated for the first time. + The values have the following meanings: + + other (1) - may be used for proprietary methods + not listed in this enumeration, + startup (2) - at SNA services' initialization time + (this is the default), + demand (3) - only when LU is requested by application, + or + onlyMS (4) - by a Management Station only. + + A write operation to this object may immediately + change the operational value reflected + in snaNodeOperEnablingMethod depending + on the Agent implementation. If the Agent + implementation accepts immediate changes, then the + behavior of the Node changes immediately and not only + after the next system startup of the SNA services. + An immediate change may only apply when the + current value 'demand (3)' is changed to 'onlyMS (4)' + and vice versa." + ::= { snaNodeAdminEntry 7 } + +snaNodeAdminLuTermDefault OBJECT-TYPE + SYNTAX INTEGER { + unbind (1), + termself (2), + rshutd (3), + poweroff(4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the desired default method + used to deactivate LUs for this Node + For LU6.2s, 'unbind(1)' is the only valid value. + + unbind(1) - terminate the LU-LU session by sending + an SNA UNBIND request. + termself(2) - terminate the LU-LU session by sending + an SNA TERM-SELF (Terminate Self) request on + the SSCP-LU session. The SSCP will inform the + remote session LU partner to send an UNBIND + request to terminate the session. + rshutd(3) - terminate the LU-LU session by sending + an SNA RSHUTD (Request ShutDown) request to + the remote session LU partner. The remote LU + will then send an UNBIND request to terminate + the session. + poweroff(4) - terminate the LU-LU session by sending + either an SNA LUSTAT (LU Status) request on + the LU-LU session or an SNA NOTIFY request on + the SSCP-LU session indicating that the LU has + been powered off. Sending both is also + acceptable. The result should be that the + remote session LU partner will send an UNBIND + to terminate the session. + + The default behavior indicated by the value of this + object may be overridden for an LU instance. The + override is performed by setting the snaLuAdminTerm + object instance in the snaLuAdminTable to the desired + value. + + A write operation to this object may immediately + change the operational value reflected + in snaNodeOperLuTermDefault depending + on the Agent implementation." + ::= { snaNodeAdminEntry 8 } + +snaNodeAdminMaxLu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The maximum number of LUs that may be + activated for this Node. For PU2.1, this object + refers to the number of dependent LUs. + + A write operation to this object will + not change the operational value reflected + in snaNodeOperMaxLu until the Node has + been re-activated (e.g., after the next initialization + of the SNA services)." + ::= { snaNodeAdminEntry 9 } + +snaNodeAdminHostDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value identifies the remote host associated + with this Node. + Since SSCP Id's may not be unique + across hosts, the host description + is required to uniquely identify the SSCP. + This object is only applicable to PU2.0 type + Nodes. If the remote host is unknown, then the + value is the null string. + + A write operation to this object may immediately + change the operational value reflected + in snaNodeOperHostDescription depending + on the Agent implementation." + ::= { snaNodeAdminEntry 10 } + +snaNodeAdminStopMethod OBJECT-TYPE + SYNTAX INTEGER { + other (1), + normal (2), + immed (3), + force (4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the desired method to be used + by the Agent to stop a Node (i.e., change the Node's + operational state to inactive(1) ). + + The values have the following meaning: + + other (1) - used for proprietary + methods not listed in this enumeration. + normal(2) - deactivate only when there is no more + activity on this Node (i.e., all data flows + have been completed and all sessions + have been terminated). + immed(3) - deactivate immediately regardless of + current activities on this Node. Wait for + deactivation responses (from remote Node) + before changing the Node state to inactive. + force(4) - deactivate immediately regardless of + current activities on this Node. Do not wait + for deactivation responses (from remote Node) + before changing the Node state to inactive. + + A write operation to this object may immediately + change the operational value reflected + in snaNodeOperStopMethod depending + on the Agent implementation." + ::= { snaNodeAdminEntry 11 } + +snaNodeAdminState OBJECT-TYPE + SYNTAX INTEGER { + inactive (1), + active (2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value indicates the desired operational + state of the SNA Node. This object is used + by the Management Station to + activate or deactivate the Node. + + If the current value in snaNodeOperState is + 'active (2)', then setting this object to + 'inactive (1)' will initiate the Node shutdown + process using the method indicated + by snaNodeOperStopMethod. + + If the current value in snaNodeOperState is + 'inactive (1)', then setting this object to + 'active (2)' will initiate the + Node's activation. + + A Management Station can always set this object to + 'active (2)' irrespective of the value in the + snaOperEnablingMethod." + ::= { snaNodeAdminEntry 12 } + +snaNodeAdminRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used by a Management Station to + create or delete the row entry in the + snaNodeAdminTable following + the RowStatus textual convention. + + Upon successful creation of + the row, an Agent automatically creates a + corresponding entry in the snaNodeOperTable with + snaNodeOperState equal to 'inactive (1)'. + + Row deletion can be Management Station or Agent + initiated: + (a) The Management Station can set the value to + 'destroy (6)' only when the value of + snaNodeOperState of this Node instance is + 'inactive (1)'. The Agent will then delete the rows + corresponding to this Node instance from the + snaNodeAdminTable and the snaNodeOperTable. + (b) The Agent detects that a row is in the + 'notReady (3)' state for greater than a + default period of 5 minutes. + (c) All rows with the snaNodeAdminRowStatus object's + value of 'notReady (3)' will be removed upon the + next initialization of the SNA services." + ::= { snaNodeAdminEntry 13 } + + +-- *************************************************************** +-- The following object is updated when there is a change to +-- the value of any object in the snaNodeAdminTable. +-- *************************************************************** + +snaNodeAdminTableLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value indicates the timestamp + (e.g., the Agent's sysUpTime value) of the last + change made to any object in the snaNodeAdminTable, + including row deletions/additions (e.g., changes to + snaNodeAdminRowStatus values). + + This object can be used to reduce frequent + retrievals of the snaNodeAdminTable by a Management + Station. It is expected that a Management Station + will periodically poll this object and compare its + current value with the previous one. A difference + indicates that some Node configuration information + has been changed. Only then will the Management + Station retrieve the entire table." + ::= { snaNode 2 } + + +-- *************************************************************** +-- The following table contains Node operational parameters. +-- *************************************************************** + +snaNodeOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaNodeOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the dynamic parameters which + have read-only access. These objects reflect the + actual status of the Node. The entries in this + table cannot be created or modified by a + Management Station. + This table augments the snaNodeAdminTable." + ::= { snaNode 3 } + +snaNodeOperEntry OBJECT-TYPE + SYNTAX SnaNodeOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry contains parameters which describe the + state of one Node. The entries are created by the + Agent. They have read-only access." + AUGMENTS { snaNodeAdminEntry } + ::= { snaNodeOperTable 1 } + +SnaNodeOperEntry ::= SEQUENCE { + snaNodeOperName + DisplayString, + snaNodeOperType + INTEGER, + snaNodeOperXidFormat + INTEGER, + snaNodeOperBlockNum + DisplayString, + snaNodeOperIdNum + DisplayString, + snaNodeOperEnablingMethod + INTEGER, + snaNodeOperLuTermDefault + INTEGER, + snaNodeOperMaxLu + Integer32, + snaNodeOperHostDescription + DisplayString, + snaNodeOperStopMethod + INTEGER, + snaNodeOperState + INTEGER, + snaNodeOperHostSscpId + OCTET STRING, + snaNodeOperStartTime + TimeStamp, + snaNodeOperLastStateChange + TimeStamp, + snaNodeOperActFailures + Counter32, + snaNodeOperActFailureReason + INTEGER + } + +snaNodeOperName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the current name of the Node. + In Type 2.1 networks, this + is a fully-qualified name, meaning that the Node name + is preceded by the NetId (if present) with a period + as the delimiter." + ::= { snaNodeOperEntry 1 } + +snaNodeOperType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + pu10(2), + pu20(3), + t21LEN(4), + endNode(5), + networkNode(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the current type of the Node." + ::= { snaNodeOperEntry 2 } + +snaNodeOperXidFormat OBJECT-TYPE + SYNTAX INTEGER { + format0 (1), + format1 (2), + format3 (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the type of XID format currently + used for this Node. + Note that there is no format type 2." + ::= { snaNodeOperEntry 3 } + +snaNodeOperBlockNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(3)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the block number for this Node + instance. It is the first 3 hexadecimal digits + of the SNA Node id." + ::= { snaNodeOperEntry 4 } + +snaNodeOperIdNum OBJECT-TYPE + SYNTAX DisplayString (SIZE(5)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the ID number for this Node + instance. This is the last 5 hexadecimal digits of + the SNA Node id." + ::= { snaNodeOperEntry 5 } + +snaNodeOperEnablingMethod OBJECT-TYPE + SYNTAX INTEGER { + other (1), + startup (2), + demand (3), + onlyMS (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value indicates how the Node is activated for + the first time. + The values have the following meanings: + other (1) - not at boot time, LU activation + or by a Management Station; + startup (2) - at SNA services' initialization + time (this is the default), + demand (3) - only when LU is requested by + application, + onlyMS (4) - by a network Management Station + only." + ::= { snaNodeOperEntry 6 } + +snaNodeOperLuTermDefault OBJECT-TYPE + SYNTAX INTEGER { + unbind (1), + termself (2), + rshutd (3), + poweroff (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the default method used to + deactivate LUs for this Node. + For LU6.2s, 'unbind(1)' is the only valid value. + + unbind(1) - terminate the LU-LU session by sending + an SNA UNBIND request. + termself(2) - terminate the LU-LU session by sending + an SNA TERM-SELF (Terminate Self) request on + the SSCP-LU session. The SSCP will inform the + remote session LU partner to send an UNBIND + request to terminate the session. + rshutd(3) - terminate the LU-LU session by sending + an SNA RSHUTD (Request ShutDown) request to + the remote session LU partner. The remote LU + will then send an UNBIND request to terminate + the session. + poweroff(4) - terminate the LU-LU session by sending + either an SNA LUSTAT (LU Status) request on + the LU-LU session or an SNA NOTIFY request on + the SSCP-LU session indicating that the LU has + been powered off. Sending both is also + acceptable. The result should be that the + remote session LU partner will send an UNBIND + to terminate the session. + + This object describes the default behavior for this + Node; however, it is possible that for a specific LU + the behavior indicated by the snaLuOperTerm object is + different." + ::= { snaNodeOperEntry 7 } + +snaNodeOperMaxLu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the current, maximum number + of LUs that are activated for this Node. For PU2.1, + this object refers to the number of dependent LUs." + ::= { snaNodeOperEntry 8 } + +snaNodeOperHostDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the remote host currently + associated with this Node. + Since SSCP Id's may not be unique + across hosts, the host description + is required to uniquely identify the SSCP." + ::= { snaNodeOperEntry 9 } + +snaNodeOperStopMethod OBJECT-TYPE + SYNTAX INTEGER { + other (1), + normal (2), + immed (3), + force (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the current Node shutdown + method to be used by the Agent to stop the Node. + When the Agent changes the Node's state to 'inactive + (1)', the Agent must use the shutdown method + indicated by this object. + + The values have the following meaning: + + other (1) - proprietary method not listed in this + enumeration + normal(2) - deactivate only when there is no more + activity on this Node (i.e., all data flows + have been completed and all sessions have + been terminated). + immed(3) - deactivate immediately regardless of + current activities on this Node. Wait for + deactivation responses (from remote Node) + before changing the Node state to inactive. + force(4) - deactivate immediately regardless of + current activities on this Node. Do not wait + for deactivation responses (from remote Node) + before changing the Node state to inactive. + + Note that a write operation to + snaNodeAdminOperStopMethod may immediately change + the value of snaNodeOperStopMethod depending on + the Agent implementation." + ::= { snaNodeOperEntry 10 } + +snaNodeOperState OBJECT-TYPE + SYNTAX INTEGER { + inactive (1), + active (2), + waiting (3), + stopping (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current state of the Node. + The values have the following meanings: + inactive (1), a row representing the Node has + been created in the AdminTable + and, the Node is ready for activation -or- + an active Node has been stopped -or- + a waiting Node has returned to the inactive + state. + waiting (3), a request to have the Node activated + has been issued, and the Node is pending + activation. + active (2), the Node is ready and operating. + stopping (4), the request to stop the Node has + been issued while the StopMethod normal + or immediate is used." + ::= { snaNodeOperEntry 11 } + +snaNodeOperHostSscpId OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..6)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the current SSCP Id + associated with the Node. This object is only + applicable to PU 2.0s. If the Node + is not a PU 2.0 type, then this object contains a + zero length string." + ::= { snaNodeOperEntry 12 } + +snaNodeOperStartTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp (e.g, the Agent's sysUpTime value) + at the Node activation." + ::= { snaNodeOperEntry 13 } + +snaNodeOperLastStateChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp (e.g., the Agent's sysUpTime value) + at the last state change of the Node." + ::= { snaNodeOperEntry 14 } + +snaNodeOperActFailures OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the number of failed Node + activation attempts." + ::= { snaNodeOperEntry 15 } + +snaNodeOperActFailureReason OBJECT-TYPE + SYNTAX INTEGER { + other (1), + linkFailure (2), + noResources (3), + badConfiguration (4), + internalError (5) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value indicates the reason for the activation + failure. The value 'other (1)' indicates a reason + not listed in the enumeration. This object + will be sent in the trap snaNodeActFailTrap." + ::= { snaNodeOperEntry 16 } + + +-- *************************************************************** +-- The following object is updated when there is a change to +-- the value of snaNodeOperState in any row or a row is +-- added/deleted from the snaNodeOperTable via the snaNodeAdminTable. +-- *************************************************************** + +snaNodeOperTableLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp (e.g., the Agent's sysUpTime value) + at the last change made to any object in the + snaNodeOperTable, including row deletions/additions + made as a result of changes to the + snaNodeAdminRowStatus object. + + This object can be used to reduce frequent + retrievals of the snaNodeOperTable by a Management + Station. It is expected that a Management Station + will periodically poll this object and compare its + current value with the previous one. A difference + indicates that some Node operational information + has been changed. Only then will the Management + Station retrieve the entire table." + ::= { snaNode 4 } + + +-- *************************************************************** +-- The following table contains PU 2.0 statistics dynamic parameters. +-- *************************************************************** + +snaPu20StatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaPu20StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the dynamic parameters which + have read-only access. The entries in this table + correspond to PU 2.0 entries in the snaNodeOperTable + and cannot be created by a Management Station." + ::= { snaNode 5 } + +snaPu20StatsEntry OBJECT-TYPE + SYNTAX SnaPu20StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The entry contains parameters which describe the + statistics for one PU 2.0. They have read-only + access. + The counters represent traffic for all kinds + of sessions: LU-LU, SSCP-PU, SSCP-LU. + + Each Node of PU Type 2.0 from the snaNodeAdminTable + has one entry in this table and the index used + here has the same value as snaNodeAdminIndex of + that PU. The entry is created by the Agent." + INDEX { snaNodeAdminIndex } + ::= { snaPu20StatsTable 1 } + +SnaPu20StatsEntry ::= SEQUENCE { + snaPu20StatsSentBytes + Counter32, + snaPu20StatsReceivedBytes + Counter32, + snaPu20StatsSentPius + Counter32, + snaPu20StatsReceivedPius + Counter32, + snaPu20StatsSentNegativeResps + Counter32, + snaPu20StatsReceivedNegativeResps + Counter32, + snaPu20StatsActLus + Gauge32, + snaPu20StatsInActLus + Gauge32, + snaPu20StatsBindLus + Gauge32 + } + +snaPu20StatsSentBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bytes sent by this Node." + ::= { snaPu20StatsEntry 1 } + +snaPu20StatsReceivedBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bytes received by this Node." + ::= { snaPu20StatsEntry 2 } + +snaPu20StatsSentPius OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of PIUs sent by this Node." + ::= { snaPu20StatsEntry 3 } + +snaPu20StatsReceivedPius OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of PIUs received by this Node." + ::= { snaPu20StatsEntry 4 } + +snaPu20StatsSentNegativeResps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of negative responses sent + by this Node." + ::= { snaPu20StatsEntry 5 } + +snaPu20StatsReceivedNegativeResps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of negative responses received + by this Node." + ::= { snaPu20StatsEntry 6 } + +snaPu20StatsActLus OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of LUs on this PU which have + received and responded to ACTLU from the host." + ::= { snaPu20StatsEntry 7 } + +snaPu20StatsInActLus OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of LUs on this PU which have + not received an ACTLU from the host. This is + possible if the number of configured LUs exceeds + that on the host." + ::= { snaPu20StatsEntry 8 } + +snaPu20StatsBindLus OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of LUs on this PU which have + received and acknowledged a BIND request from the + host." + ::= { snaPu20StatsEntry 9 } + +-- *************************************************************** +-- The following table contains the association between Nodes and +-- link identifiers. +-- It is used for configuration purposes. +-- *************************************************************** + +snaNodeLinkAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaNodeLinkAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains the references to link + specific tables. If a Node is configured for + multiple links, then the Node will have + multiple entries in this table. + The entries in this table can be generated + initially, after initialization of SNA service, + by the Agent which uses information from + Node configuration file. + Subsequent modifications of parameters, + creation of new Nodes link entries and deletion + of entries is possible. + The modification to this table can be + saved in the Node configuration file for the + next initialization of SNA service, but the mechanism + for this function is not defined here." + ::= { snaNode 6 } + +snaNodeLinkAdminEntry OBJECT-TYPE + SYNTAX SnaNodeLinkAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry contains the configuration information that + associates a Node instance to one link instance. + The objects in the entry have read-create access. + Entry can be created, modified or deleted. + The object snaNodeLinkAdminRowStatus is used (set) + to create or delete an entry. + The object snaNodeLinkAdminSpecific can be set + later, after the entry has been created." + INDEX { snaNodeAdminIndex, + snaNodeLinkAdminIndex } + ::= { snaNodeLinkAdminTable 1 } + +SnaNodeLinkAdminEntry ::= SEQUENCE { + snaNodeLinkAdminIndex + Integer32, + snaNodeLinkAdminSpecific + -- InstancePointer, + RowPointer, + snaNodeLinkAdminMaxPiu + Integer32, + snaNodeLinkAdminRowStatus + RowStatus + } + +snaNodeLinkAdminIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This value is used to index the instances of objects. + If an Agent creates the entry, then it will assign + this number otherwise a Management Station + generates a random number when it reserves the + entry for creation." + ::= { snaNodeLinkAdminEntry 1 } + +snaNodeLinkAdminSpecific OBJECT-TYPE + SYNTAX + -- InstancePointer + RowPointer + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value points to the row in the table + containing information on the link instance. + (e.g., the sdlcLSAdminTable of + the SNA DLC MIB module)." + ::= { snaNodeLinkAdminEntry 2 } + +snaNodeLinkAdminMaxPiu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value identifies the maximum number of octets + that can be exchanged by this Node in one + Path Information Unit (PIU)." + ::= { snaNodeLinkAdminEntry 3 } + +snaNodeLinkAdminRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used by a Management Station to + create or delete the row entry in the + snaNodeLinkAdminTable. + To activate a row, a Management Station sets the value + to 'active (1)' or 'notReady (3)'. Upon successful + creation of the row, the Agent automatically creates + a corresponding entry in the snaNodeLinkOperTable. + + Row deletion can be Management Station or Agent + initiated: + (a) The Management Station can set the value to + 'destroy (6)' only when the value of + snaNodeLinkOperState of this Link + instance is 'inactive (1)'. The Agent will then + delete the row corresponding to this Link + instance from snaNodeLinkOperTable and + from snaNodeLinkAdminTable. + (b) The Agent detects that a row is in the + 'notReady (3)' state for greater than a + default period of 5 minutes. + (c) The Agent will not include a row with RowStatus= + 'notReady (3)', after SNA system re-initialization + (e.g., reboot)." + ::= { snaNodeLinkAdminEntry 4 } + + +-- *************************************************************** +-- The following object is updated when there is a change to +-- the value of any object in the snaNodeLinkAdminTable. +-- *************************************************************** + +snaNodeLinkAdminTableLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp (e.g., the Agent's sysUpTime value) + at the last + change made to any object in the snaNodeLinkAdminTable, + including row deletions/additions (i.e., changes + to the snaNodeLinkAdminRowStatus object). + + This object can be used to reduce frequent + retrievals of the snaNodeLinkAdminTable by a + Management Station. It is expected that a + Management Station will periodically poll this + object and compare its current value with the + previous one. + A difference indicates that some Node operational + information has been changed. Only then will the + Management Station retrieve the entire table." + ::= { snaNode 7 } + + +-- *************************************************************** +-- The following table contains the association between +-- Nodes and link identifiers. +-- It provides the current status. +-- *************************************************************** + +snaNodeLinkOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaNodeLinkOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains all references to link + specific tables for operational parameters. + If a Node is configured for multiple links, + then the Node will have multiple entries in + this table. This table augments the + snaNodeLinkAdminTable." + ::= { snaNode 8 } + +snaNodeLinkOperEntry OBJECT-TYPE + SYNTAX SnaNodeLinkOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Entry contains all current parameters for one + Node link. The objects in the entry have + read-only access." + AUGMENTS { snaNodeLinkAdminEntry } + ::= { snaNodeLinkOperTable 1 } + +SnaNodeLinkOperEntry ::= SEQUENCE { + snaNodeLinkOperSpecific + -- InstancePointer, + RowPointer, + snaNodeLinkOperMaxPiu + Integer32 + } + +snaNodeLinkOperSpecific OBJECT-TYPE + SYNTAX + -- InstancePointer + RowPointer + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value points to the row in the table + containing information on the link instance. + (e.g., the sdlcLSOperTable of + the SNA DLC MIB module)." + ::= { snaNodeLinkOperEntry 1 } + +snaNodeLinkOperMaxPiu OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Maximum number of octets that can + be exchanged by this Node in one Path + Information Unit (PIU)." + ::= { snaNodeLinkOperEntry 2 } + + +-- *************************************************************** +-- The following object is updated when a row is added/deleted +-- from the snaNodeLinkOperTable. +-- *************************************************************** + +snaNodeLinkOperTableLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp of the last + change made to any object in the snaNodeLinkOperTable, + including row deletions/additions. + + This object can be used to reduce frequent + retrievals of the snaNodeLinkOperTable by a + Management Station. It is expected that a + Management Station will periodically poll this + object and compare its current value with the + previous one. + A difference indicates that some Node operational + information has been changed. Only then will the + Management Station retrieve the entire table." + ::= { snaNode 9 } + + + +-- *************************************************************** +-- Traps +-- *************************************************************** + +snaNodeTraps OBJECT IDENTIFIER ::= { snaNode 10 } + +snaNodeStateChangeTrap NOTIFICATION-TYPE + OBJECTS { snaNodeOperName, + snaNodeOperState } + STATUS current + DESCRIPTION + "This trap indicates that the operational state + (i.e., value of the snaNodeOperState object) of a Node + has changed. The following variables are returned: + snaNodeOperName - current name of the Node, + with the instance identifying the Node; and, + snaNodeOperState - current state after + the change." + ::= { snaNodeTraps 1 } + +snaNodeActFailTrap NOTIFICATION-TYPE + OBJECTS { snaNodeOperName, + snaNodeOperState, + snaNodeOperActFailureReason } + STATUS current + DESCRIPTION + "This trap indicates a Node activation failure. + The value of snaNodeOperState indicates the current + state after the activation attempt. + The value of snaNodeOperActFailureReason indicates + the failure reason." + ::= { snaNodeTraps 2 } + + +-- *************************************************************** +-- snaLu group +-- +-- It contains Managed Objects related to LUs in general and some +-- specific for LUs of type 0, 1, 2, 3. +-- *************************************************************** + + +-- *************************************************************** +-- The following table contains LU configuration parameters. +-- *************************************************************** + +snaLuAdminTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaLuAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains LU configuration information. + The rows in this table can be created and deleted + by a Management Station. + Only objects which are common to all types of LUs + are included in this table." + ::= { snaLu 1 } + +snaLuAdminEntry OBJECT-TYPE + SYNTAX SnaLuAdminEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains configuration variables for an LU." + INDEX { snaNodeAdminIndex, snaLuAdminLuIndex } + ::= { snaLuAdminTable 1 } + +SnaLuAdminEntry ::= SEQUENCE { + snaLuAdminLuIndex + Integer32, + snaLuAdminName + DisplayString, + snaLuAdminSnaName + DisplayString, + snaLuAdminType + INTEGER, + snaLuAdminDepType + INTEGER, + snaLuAdminLocalAddress + OCTET STRING, + snaLuAdminDisplayModel + INTEGER, + snaLuAdminTerm + INTEGER, + snaLuAdminRowStatus + RowStatus + } + +snaLuAdminLuIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This value identifies the unique index for an + LU instance within a Node." + ::= { snaLuAdminEntry 1 } + +snaLuAdminName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value identifies the user configurable + name for this LU. If a name is not assigned to the LU, + then this object contains a zero length string. + + A write operation to this object will + not change the operational value reflected + in snaLuOperName until the Node has + been re-activated (e.g., after the next + initialization of the SNA services)." + ::= { snaLuAdminEntry 2 } + +snaLuAdminSnaName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..17)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value identifies the SNA LU name + used in exchange of SNA data. + + A write operation to this object will + not change the operational value reflected + in snaLuOperSnaName until the Node has + been re-activated (e.g., after the next + initialization of the SNA services)." + ::= { snaLuAdminEntry 3 } + +snaLuAdminType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + lu0(2), + lu1(3), + lu2(4), + lu3(5), + lu4(6), + lu62(7), + lu7(8) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value identifies the LU type. + + A write operation to this object will + not change the operational value reflected + in snaLuOperAdminType until the Node has + been re-activated (e.g., after the next + initialization of the SNA services)." + ::= { snaLuAdminEntry 4 } + +snaLuAdminDepType OBJECT-TYPE + SYNTAX INTEGER { + dependent(1), + independent(2) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value identifies whether the LU is + dependent or independent. + + A write operation to this object will + not change the operational value reflected + in snaLuOperDepType until the Node has + been re-activated (e.g., after the next + initialization of the SNA services)." + ::= { snaLuAdminEntry 5 } + +snaLuAdminLocalAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The local address for this LU is a byte with a value + ranging from 0 to 254.For dependent LUs, this value + ranges from 1 to 254 and for independent LUs this + value is always 0. + + A write operation to this object will not change the + operational value reflected in snaLuOperLocalAddress + until the Node has been re-activated (e.g., after the + next initialization of the SNA services)." + ::= { snaLuAdminEntry 6 } + +snaLuAdminDisplayModel OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), + model2A(2), + model2B(3), + model3A(4), + model3B(5), + model4A(6), + model4B(7), + model5A(8), + model5B(9), + dynamic(10) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "The value of this object identifies the model type + and screen size of the terminal connected to the host. + This is only valid for LU Type 2. The values have + the following meaning: + + model2A(2) - Model 2 (24 rows x 80 cols) with base + attributes + model2B(3) - Model 2 (24 rows x 80 cols) with + extended attributes + model3A(4) - Model 3 (32 rows x 80 cols) with base + attributes + model3B(5) - Model 3 (32 rows x 80 cols) with extended + attributes + model4A(6) - Model 4 (43 rows x 80 cols) with base + attributes + model4B(7) - Model 4 (43 rows x 80 cols) with extended + attributes + model5A(8) - Model 5 (27 rows x 132 cols) with base + attributes + model5B(9) - Model 5 (27 rows x 132 cols) with + extended attributes + dynamic(10) - Screen size determine with BIND and Read + Partition Query. + + In case this LU is not Type 2, then this object + should contain the invalid(1) value." + ::= { snaLuAdminEntry 7 } + +snaLuAdminTerm OBJECT-TYPE + SYNTAX INTEGER { + unbind (1), + termself (2), + rshutd (3), + poweroff (4) + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This value identifies the desired method for + deactivation of this LU. This value overrides the + default method (snaNodeOperLuTermDefault) for this + Node. For LU 6.2, only the value 'unbind (1)' + applies. + + unbind(1) - terminate the LU-LU session by sending + an SNA UNBIND request. + termself(2) - terminate the LU-LU session by sending + an SNA TERM-SELF (Terminate Self) request on + the SSCP-LU session. The SSCP will inform the + remote session LU partner to send an UNBIND + request to terminate the session. + rshutd(3) - terminate the LU-LU session by sending + an SNA RSHUTD (Request ShutDown) request to + the remote session LU partner. The remote LU + will then send an UNBIND request to terminate + the session. + poweroff(4) - terminate the LU-LU session by sending + either an SNA LUSTAT (LU Status) request on + the LU-LU session or an SNA NOTIFY request on + the SSCP-LU session indicating that the LU has + been powered off. Sending both is also + acceptable. The result should be that the + remote session LU partner will send an UNBIND + to terminate the session. + + A write operation to this object may immediately + change the operational value reflected + in snaLuOperTerm depending + on the Agent implementation." + ::= { snaLuAdminEntry 8 } + +snaLuAdminRowStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + "This object is used by a Management Station to + create or delete the row entry in the + snaLuAdminTable. + To activate a row, the Management Station sets the + value to 'active (1)' or 'notReady (3)'. + Upon successful creation of the row, the Agent + automatically creates a corresponding entry in the + snaLuOperTable with snaLuOperState equal to + 'inactive (1)'. + Row deletion can be Management Station or Agent + initiated: + (a) The Management Station can set the value to + 'destroy (6)' only when the value of snaLuOperState + of this LU instance is 'inactive (1)'. The Agent will + then delete the row corresponding to this LU + instance from snaLuAdminTable and + from snaLuOperTable. + (b) The Agent detects that a row is in the + 'notReady (3)' state for greater than a + default period of 5 minutes. + (c) The Agent will not create a row with RowStatus + equal to 'notReady (3)', after SNA system + re-initialization (e.g., reboot)." + ::= { snaLuAdminEntry 9 } + + +-- *************************************************************** +-- The following table contains LU state dynamic parameters. +-- *************************************************************** + +snaLuOperTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaLuOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains dynamic runtime information and + control variables relating to LUs. + Only objects which are common to all types of LUs are + included in this table. This table augments the + snaLuAdminTable." + ::= { snaLu 2 } + +snaLuOperEntry OBJECT-TYPE + SYNTAX SnaLuOperEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains objects reflecting current information + for an LU. + Each entry is created by the Agent. All entries + have read-only access." + AUGMENTS { snaLuAdminEntry } + ::= { snaLuOperTable 1 } + +SnaLuOperEntry ::= SEQUENCE { + snaLuOperName + DisplayString, + snaLuOperSnaName + DisplayString, + snaLuOperType + INTEGER, + snaLuOperDepType + INTEGER, + snaLuOperLocalAddress + OCTET STRING, + snaLuOperDisplayModel + INTEGER, + snaLuOperTerm + INTEGER, + snaLuOperState + INTEGER, + snaLuOperSessnCount + Gauge32 + } + +snaLuOperName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "User configurable name for this LU. If a name + is not assigned, then this object contains a + zero length string." + ::= { snaLuOperEntry 1 } + +snaLuOperSnaName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the current SNA LU name." + ::= { snaLuOperEntry 2 } + +snaLuOperType OBJECT-TYPE + SYNTAX INTEGER { + other(1), + lu0(2), + lu1(3), + lu2(4), + lu3(5), + lu4(6), + lu62(7), + lu7(8) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the current LU type." + ::= { snaLuOperEntry 3 } + +snaLuOperDepType OBJECT-TYPE + SYNTAX INTEGER { + dependent(1), + independent(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies whether the LU is currently + dependent or independent. + + A write operation to this object will + not change the operational value reflected + in snaLuOperDepType until the Node has + been re-activated (e.g., after the next + initialization of the SNA services)." + ::= { snaLuOperEntry 4 } + +snaLuOperLocalAddress OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The local address for this LU is a byte with a value + ranging from 0 to 254. For dependent LUs, this value + ranges from 1 to 254; for independent LUs this value + is always 0. + + A write operation to this object will + not change the operational value reflected + in snaLuOperLocalAddress until the Node has + been re-activated (e.g., after the next + initialization of the SNA services)." + ::= { snaLuOperEntry 5 } + +snaLuOperDisplayModel OBJECT-TYPE + SYNTAX INTEGER { + invalid(1), + model2A(2), + model2B(3), + model3A(4), + model3B(5), + model4A(6), + model4B(7), + model5A(8), + model5B(9), + dynamic(10) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The screen model type of the terminal connected to + the host. If this LU is not Type 2, then this + object should contain the 'invalid(1)' value." + ::= { snaLuOperEntry 6 } + +snaLuOperTerm OBJECT-TYPE + SYNTAX INTEGER { + unbind (1), + termself (2), + rshutd (3), + poweroff (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the current method for + deactivation of this LU. This value overrides the + default method (snaNodeOperLuTermDefault) for this + Node. For LU 6.2, only the value 'unbind (1)' + applies. + + unbind(1) - terminate the LU-LU session by sending + an SNA UNBIND request. + termself(2) - terminate the LU-LU session by sending + an SNA TERM-SELF (Terminate Self) request on + the SSCP-LU session. The SSCP will inform the + remote session LU partner to send an UNBIND + request to terminate the session. + rshutd(3) - terminate the LU-LU session by sending + an SNA RSHUTD (Request ShutDown) request to + the remote session LU partner. The remote LU + will then send an UNBIND request to terminate + the session. + poweroff(4) - terminate the LU-LU session by sending + either an SNA LUSTAT (LU Status) request on + the LU-LU session or an SNA NOTIFY request on + the SSCP-LU session indicating that the LU has + been powered off. Sending both is also + acceptable. The result should be that the + remote session LU partner will send an UNBIND + to terminate the session." + ::= { snaLuOperEntry 7 } + +snaLuOperState OBJECT-TYPE + SYNTAX INTEGER { + inactive (1), + active (2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the current operational state of + this LU. + It has different meanings for dependent and independent + LUs. + For dependent LUs the values indicate the following: + inactive (1) - LU didn't receive ACTLU, or + it received DACTLU, or received ACTLU and sent + negative response. + active (2) - LU received ACTLU and acknowledged + positively. + + For independent LUs the values indicate the following: + active (2) - the LU is defined and is able to send + and receive BIND. + inactive (1) - the LU has a session count equal + to 0." + ::= { snaLuOperEntry 8 } + +snaLuOperSessnCount OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of currently active LU-LU sessions of + this LU. + For the independent LU, if this object has value 0, + it indicates that LU is inactive." + ::= { snaLuOperEntry 9 } + + +-- *************************************************************** +-- The following table contains LU session status parameters. +-- *************************************************************** + +snaLuSessnTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaLuSessnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This is a table containing objects which describe the + operational state of LU sessions. Only objects which + are common to all types of LU sessions are included + in this table. + + When a session's snaLuSessnOperState value changes to + 'pendingBind (2)', then the corresponding entry + in the session table is created by the Agent. + + When the session's snaLuSessnOperState value changes to + 'unbound (1)', then the session will be removed from + the session table by the Agent." + ::= { snaLu 3 } + +snaLuSessnEntry OBJECT-TYPE + SYNTAX SnaLuSessnEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains dynamic parameters for an LU-LU + session. + The indices identify the Node, local LU, and remote LU + for this session." + INDEX { snaNodeAdminIndex, + snaLuAdminLuIndex, + snaLuSessnRluIndex, + snaLuSessnIndex } + ::= { snaLuSessnTable 1 } + +SnaLuSessnEntry ::= SEQUENCE { + snaLuSessnRluIndex + Integer32, + snaLuSessnIndex + Integer32, + snaLuSessnLocalApplName + DisplayString, + snaLuSessnRemoteLuName + DisplayString, + snaLuSessnMaxSndRuSize + INTEGER, + snaLuSessnMaxRcvRuSize + INTEGER, + snaLuSessnSndPacingSize + INTEGER, + snaLuSessnRcvPacingSize + INTEGER, + snaLuSessnActiveTime + TimeStamp, + snaLuSessnAdminState + INTEGER, + snaLuSessnOperState + INTEGER, + snaLuSessnSenseData + OCTET STRING, + snaLuSessnTerminationRu + INTEGER, + snaLuSessnUnbindType + OCTET STRING, + snaLuSessnLinkIndex + Integer32 + } + +snaLuSessnRluIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value may be used to identify information about + the session partner LU in a table of information about + remote LUs. Such a table is not defined in this + document. If a table of remote LU information is not + implemented, or if the table is implemented but it does + not contain information about the partner LU for a + particular session (as for dependent LU-LU sessions) + then this object will have a value of zero." + ::= { snaLuSessnEntry 1 } + +snaLuSessnIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the unique index of the session. + It is recommended that an Agent should not reuse the + index of a deactivated session for a significant + period of time (e.g., one week)." + ::= { snaLuSessnEntry 2 } + +snaLuSessnLocalApplName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..48)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the local application using this LU. + If the local application is unknown, then this object + contains a zero length string." + ::= { snaLuSessnEntry 3 } + +snaLuSessnRemoteLuName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..17)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "For dependent LUs which are indicated by the + snaLuOperDepType object containing the value + 'dependent (1)', this object contains the Primary + LU (PLU) name. For independent LUs, + this object contains the fully-qualified remote LU + name of this 6.2 session. + A fully qualified name is an SNA NAU entity name + preceded by the NetId and a period as the delimiter." + ::= { snaLuSessnEntry 4 } + +snaLuSessnMaxSndRuSize OBJECT-TYPE + SYNTAX INTEGER (1..8192) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum RU size used on this session for sending + RUs." + ::= { snaLuSessnEntry 5 } + +snaLuSessnMaxRcvRuSize OBJECT-TYPE + SYNTAX INTEGER (1..8192) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The maximum RU size used on this session for + receiving RUs." + ::= { snaLuSessnEntry 6 } + +snaLuSessnSndPacingSize OBJECT-TYPE + SYNTAX INTEGER (1..63) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the send pacing window on this session." + ::= { snaLuSessnEntry 7 } + +snaLuSessnRcvPacingSize OBJECT-TYPE + SYNTAX INTEGER (1..63) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The size of the receive pacing window on this + session." + ::= { snaLuSessnEntry 8 } + +snaLuSessnActiveTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp (e.g., the Agent's sysUpTime value) + when this session becomes active." + ::= { snaLuSessnEntry 9 } + +snaLuSessnAdminState OBJECT-TYPE + SYNTAX INTEGER { + unbound (1), + bound (3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value indicates the desired operational state of + the session. This object is used to + change the operational state of the session. + A Management Station can only change the operational + state of the session to 'unbound (1)'. + + Session deactivation: + If a session is in the operational state + 'bound (3)' then setting the value of this + object to 'unbound (1)' will initiate the + session shutdown. + + If a session is in the operational state + 'pendingBind (2)' then setting the value of this + object to 'unbound (1)' will initiate the session + shutdown. + If a session is in the operational state + 'pendingUnbind (4)' for an abnormally long period + of time (e.g., three minutes) then setting the value + of this object to 'unbound (1)' will change the + session operational state to 'unbound (1)'. + + Note: for dependent LUs, deactivating the session is + the same as deactivating the LU." + ::= { snaLuSessnEntry 10 } + +snaLuSessnOperState OBJECT-TYPE + SYNTAX INTEGER { + unbound (1), + pendingBind (2), + bound (3), + pendingUnbind (4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value indicates the current operational state of + the session. + + 'unbound (1)' - session has been unbound; + in this state it will be removed from the + session table by the Agent. + + 'pendingBind (2)' - this state has different + meanings for dependent and independent LUs; + for dependent LU - waiting for BIND from + the host, for independent LU - waiting for + BIND response. When a session enters this + state, the corresponding entry in the + session table is created by the Agent. + + 'bound (3)' - session has been successfully bound. + + 'pendingUnbind (4)' - session enters this state + when an UNBIND is sent and before the + rsp(UNBIND) is received." + ::= { snaLuSessnEntry 11 } + +snaLuSessnSenseData OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..8)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the sense code when there is + a BIND failure. It is taken from the negative BIND + response or UNBIND request. + This is displayed as 8 hexadecimal digits." + ::= { snaLuSessnEntry 12 } + +snaLuSessnTerminationRu OBJECT-TYPE + SYNTAX INTEGER { + other (1), + bindFailure (2), + unbind (3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value identifies the SNA RU that terminated the + session. + If the session is not in the unbound state, this object + has a value of 'other (1)'." + ::= { snaLuSessnEntry 13 } + + +snaLuSessnUnbindType OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..1)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If the session is in the unbound state, and it was + terminated by an UNBIND, then this object contains + the UNBIND type value (byte 1 of the UNBIND RU); + otherwise the string is null." + ::= { snaLuSessnEntry 14 } + +snaLuSessnLinkIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value identifies the link over which the session + passes. It is an index into snaNodeLinkAdminTable. + If the index value is not known, the value of this + object shall be zero." + ::= { snaLuSessnEntry 15 } + + +-- *************************************************************** +-- The following table contains LU sessions statistics dynamic +-- parameters. +-- *************************************************************** + +snaLuSessnStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaLuSessnStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains dynamic statistics information + relating to LU sessions. + The entries in this table augment the entries in + the snaLuSessnTable and cannot be created by + a Management Station." + ::= { snaLu 4 } + +snaLuSessnStatsEntry OBJECT-TYPE + SYNTAX SnaLuSessnStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains statistics information for an LU session. + Each entry is created by the Agent. + Objects in this table have read-only access. + Each session from snaLuSessnTable + has one entry in this table." + AUGMENTS { snaLuSessnEntry } + ::= { snaLuSessnStatsTable 1 } + +SnaLuSessnStatsEntry ::= SEQUENCE { + snaLuSessnStatsSentBytes + Counter32, + snaLuSessnStatsReceivedBytes + Counter32, + snaLuSessnStatsSentRus + Counter32, + snaLuSessnStatsReceivedRus + Counter32, + snaLuSessnStatsSentNegativeResps + Counter32, + snaLuSessnStatsReceivedNegativeResps + Counter32 + } + +snaLuSessnStatsSentBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bytes sent by the local LU." + ::= { snaLuSessnStatsEntry 1 } + +snaLuSessnStatsReceivedBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bytes received by the local LU." + ::= { snaLuSessnStatsEntry 2 } + +snaLuSessnStatsSentRus OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RUs sent by the local LU." + ::= { snaLuSessnStatsEntry 3 } + +snaLuSessnStatsReceivedRus OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of RUs received by the local LU." + ::= { snaLuSessnStatsEntry 4 } + +snaLuSessnStatsSentNegativeResps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of negative responses sent by the + local LU." + ::= { snaLuSessnStatsEntry 5 } + +snaLuSessnStatsReceivedNegativeResps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of negative responses received by the + local LU." + ::= { snaLuSessnStatsEntry 6 } + + +-- *************************************************************** +-- Traps +-- *************************************************************** + +snaLuTraps OBJECT IDENTIFIER ::= { snaLu 5 } + +snaLuStateChangeTrap NOTIFICATION-TYPE + OBJECTS { snaLuOperName, + snaLuOperSnaName, + snaLuOperState } + STATUS current + DESCRIPTION + "This trap indicates that the operational state + (i.e., snaLuOperState value) of the LU has changed. + The value of snaLuOperName indicates the name of the + LU. + The value of snaLuOperSnaName indicates the SNA name + of LU. + The value of snaLuOperState indicates the current + state after change." + ::= { snaLuTraps 1 } + +snaLuSessnBindFailTrap NOTIFICATION-TYPE + OBJECTS { snaLuSessnLocalApplName, + snaLuSessnRemoteLuName, + snaLuSessnOperState, + snaLuSessnSenseData } + STATUS current + DESCRIPTION + "This trap indicates the failure of a BIND. + The value of snaLuSessnLocalApplName indicates the local + application name. + The value of snaLuSessnPartnerName indicates the partner + name. + The value of snaLuSessnOperState indicates the current + state after change. + The value of snaLuSessnBindFailureReason + indicates the failure reason. + The Agent should not generate more than 1 trap of this + type per minute to minimize the level of management + traffic on the network." + ::= { snaLuTraps 2 } + +-- *************************************************************** +-- snaMgtTools group +-- +-- Currently this group contains only one table. +-- *************************************************************** + + +-- *************************************************************** +-- The following table contains Response Time Monitoring (RTM) +-- configuration information and statistics for LU Type 2s. +-- RTM supports the capability to measure and report end-user +-- response times for dependent LUs. When the RTM state of an LU +-- is 'on', response times for each LU transaction are monitored. +-- A set of ranges is defined (e.g., Range 1 includes the number of +-- transactions with response times less than 1 second) using the +-- "boundary" definitions (e.g., boundary #2 is defined as 3 seconds). +-- A set of counters (one per range) identifies +-- the number of transactions within each response time range. +-- *************************************************************** + +snaLuRtmTable OBJECT-TYPE + SYNTAX SEQUENCE OF SnaLuRtmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains Response Time Monitoring (RTM) + information relating to an LU (Type 2). Each entry + corresponds to an LU 2 entry in + snaLuAdminTable." + ::= { snaMgtTools 1 } + +snaLuRtmEntry OBJECT-TYPE + SYNTAX SnaLuRtmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Contains RTM information for an LU (Type 2). + Each entry is created by the Agent." + INDEX { snaLuRtmPuIndex, snaLuRtmLuIndex } + ::= { snaLuRtmTable 1 } + +SnaLuRtmEntry ::= SEQUENCE { + snaLuRtmPuIndex + Integer32, + snaLuRtmLuIndex + Integer32, + snaLuRtmState + INTEGER, + snaLuRtmStateTime + TimeStamp, + snaLuRtmDef + INTEGER, + snaLuRtmBoundary1 + Integer32, + snaLuRtmBoundary2 + Integer32, + snaLuRtmBoundary3 + Integer32, + snaLuRtmBoundary4 + Integer32, + snaLuRtmCounter1 + Counter32, + snaLuRtmCounter2 + Counter32, + snaLuRtmCounter3 + Counter32, + snaLuRtmCounter4 + Counter32, + snaLuRtmOverFlows + Counter32, + snaLuRtmObjPercent + Integer32, + snaLuRtmObjRange + INTEGER, + snaLuRtmNumTrans + Integer32, + snaLuRtmLastRspTime + Integer32, + snaLuRtmAvgRspTime + Integer32 + } + +snaLuRtmPuIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value identifies the PU 2.0 with which this LU is + associated." + ::= { snaLuRtmEntry 1 } + +snaLuRtmLuIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The value uniquely identifies an LU in a PU 2.0." + ::= { snaLuRtmEntry 2 } + +snaLuRtmState OBJECT-TYPE + SYNTAX INTEGER { + off(1), + on(2) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value indicates the current RTM state of an LU." + ::= { snaLuRtmEntry 3 } + +snaLuRtmStateTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The timestamp (e.g., the Agent's sysUpTime value) + when this session's RTM state (e.g., snaLuRtmState) + changes value." + ::= { snaLuRtmEntry 4 } + +snaLuRtmDef OBJECT-TYPE + SYNTAX INTEGER { + firstChar(1), + kb(2), + cdeb(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value indicates the mode of measurement for this + RTM request. The values have following meaning: + firstChar(1) - time to first character on screen + kb(2) - time to keyboard usable by operator + cdeb(3) - time to Change Direction/End Bracket." + ::= { snaLuRtmEntry 5 } + +snaLuRtmBoundary1 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the value of the first boundary + in units of 1/10th of a second." + ::= { snaLuRtmEntry 6 } + +snaLuRtmBoundary2 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the value of the second boundary + in units of 1/10th of a second." + ::= { snaLuRtmEntry 7 } + +snaLuRtmBoundary3 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the value of the third boundary + in units of 1/10th of a second." + ::= { snaLuRtmEntry 8 } + +snaLuRtmBoundary4 OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object contains the value of the fourth boundary + in units of 1/10th of a second." + ::= { snaLuRtmEntry 9 } + +snaLuRtmCounter1 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the number of transactions which + fall in the range specified by the first boundary." + ::= { snaLuRtmEntry 10 } + +snaLuRtmCounter2 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the number of transactions which + fall in the range specified by the second boundary." + ::= { snaLuRtmEntry 11 } + +snaLuRtmCounter3 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the number of transactions which + fall in the range specified by the third boundary." + ::= { snaLuRtmEntry 12 } + +snaLuRtmCounter4 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the number of transactions which + fall in the range specified by the fourth boundary." + ::= { snaLuRtmEntry 13 } + +snaLuRtmOverFlows OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the number of transactions which + exceed the highest range specified by the + boundaries." + ::= { snaLuRtmEntry 14 } + +snaLuRtmObjPercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the desired percentage of + transactions which should be under a designated + boundary range indicated by snaLuRtmObjRange." + ::= { snaLuRtmEntry 15 } + +snaLuRtmObjRange OBJECT-TYPE + SYNTAX INTEGER { + other(1), + range1(2), + range2(3), + range3(4), + range4(5), + range5(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the designated boundary range to + which the snaLuRtmObject refers. + The values have the following meanings: + other(1) - not specified + range1(2) - less than boundary 1 + range2(3) - between boundary 1 and 2 + range3(4) - between boundary 2 and 3 + range4(5) - between boundary 3 and 4 + range5(6) - greater than boundary 4." + ::= { snaLuRtmEntry 16 } + +snaLuRtmNumTrans OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the total number of transactions + executed since the RTM monitoring began (i.e., + snaLuRtmState changed to 'on(2)') for this LU." + ::= { snaLuRtmEntry 17 } + +snaLuRtmLastRspTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the response time for the last + transaction in units of 1/10th of a second." + ::= { snaLuRtmEntry 18 } + +snaLuRtmAvgRspTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This value indicates the average response time for all + transactions in units of 1/10th of a second." + ::= { snaLuRtmEntry 19 } + + +-- *************************************************************** +-- Conformance information +-- *************************************************************** + +snanauConformance OBJECT IDENTIFIER ::= { snanauMIB 2 } + +snanauCompliances OBJECT IDENTIFIER ::= {snanauConformance 1 } +snanauGroups OBJECT IDENTIFIER ::= {snanauConformance 2 } + +-- Compliance statements +snanauCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for the SNMPv2 entities + which implement the snanau MIB." + MODULE -- this module + +-- Unconditionally mandatory groups + MANDATORY-GROUPS { snaNodeGroup, + snaLuGroup, + snaSessionGroup } + +-- Conditionally mandatory groups + GROUP snaPu20Group + DESCRIPTION + "The snaPu20Group is mandatory only for those + entities which implement PU type 2.0" + GROUP snaMgtToolsRtmGroup + DESCRIPTION + "The snaMgtToolsGroup is mandatory only for + those entities which implement LU type 2 + and RTM." + +-- Refinement of requirements for objects access. +-- The Agent which does not implement row creation for +-- snaNodeAdminTable, snaNodeLinkAdminTable and +-- snaLuAdminTable must at least accept +-- objects modification (read-write access instead of +-- read-create). + + OBJECT snaNodeAdminName + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminType + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminXidFormat + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminBlockNum + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminIdNum + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminEnablingMethod + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminLuTermDefault + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminMaxLu + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminHostDescription + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminStopMethod + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeAdminState + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeLinkAdminSpecific + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaNodeLinkAdminMaxPiu + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + OBJECT snaLuAdminName + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaLuAdminSnaName + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaLuAdminType + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaLuAdminDepType + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaLuAdminLocalAddress + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaLuAdminDisplayModel + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + OBJECT snaLuAdminTerm + MIN-ACCESS read-write + DESCRIPTION + "An Agent is required to implement read-write + access to this object." + + ::= {snanauCompliances 1 } + + +-- Units of conformance + +snaNodeGroup OBJECT-GROUP + OBJECTS { snaNodeAdminName, + snaNodeAdminType, + snaNodeAdminXidFormat, + snaNodeAdminBlockNum, + snaNodeAdminIdNum, + snaNodeAdminEnablingMethod, + snaNodeAdminLuTermDefault, + snaNodeAdminMaxLu, + snaNodeAdminHostDescription, + snaNodeAdminStopMethod, + snaNodeAdminState, + snaNodeAdminRowStatus, + snaNodeAdminTableLastChange, + snaNodeOperName, + snaNodeOperType, + snaNodeOperXidFormat, + snaNodeOperBlockNum, + snaNodeOperIdNum, + snaNodeOperEnablingMethod, + snaNodeOperLuTermDefault, + snaNodeOperMaxLu, + snaNodeOperHostDescription, + snaNodeOperStopMethod, + snaNodeOperState, + snaNodeOperHostSscpId, + snaNodeOperStartTime, + snaNodeOperLastStateChange, + snaNodeOperActFailures, + snaNodeOperActFailureReason, + snaNodeOperTableLastChange, + snaNodeLinkAdminSpecific, + snaNodeLinkAdminMaxPiu, + snaNodeLinkAdminRowStatus, + snaNodeLinkAdminTableLastChange, + snaNodeLinkOperSpecific, + snaNodeLinkOperMaxPiu, + snaNodeLinkOperTableLastChange } + STATUS current + DESCRIPTION + "A collection of objects providing the + instrumentation of SNA nodes." + ::= { snanauGroups 1 } + +snaLuGroup OBJECT-GROUP + OBJECTS { snaLuAdminName, + snaLuAdminSnaName, + snaLuAdminType, + snaLuAdminDepType, + snaLuAdminLocalAddress, + snaLuAdminDisplayModel, + snaLuAdminTerm, + snaLuAdminRowStatus, + snaLuOperName, + snaLuOperSnaName, + snaLuOperType, + snaLuOperDepType, + snaLuOperLocalAddress, + snaLuOperDisplayModel, + snaLuOperTerm, + snaLuOperState, + snaLuOperSessnCount } + STATUS current + DESCRIPTION + "A collection of objects providing the + instrumentation of SNA LUs." + ::= { snanauGroups 2 } + +snaSessionGroup OBJECT-GROUP + OBJECTS { snaLuSessnRluIndex, + snaLuSessnIndex, + snaLuSessnLocalApplName, + snaLuSessnRemoteLuName, + snaLuSessnMaxSndRuSize, + snaLuSessnMaxRcvRuSize, + snaLuSessnSndPacingSize, + snaLuSessnRcvPacingSize, + snaLuSessnActiveTime, + snaLuSessnAdminState, + snaLuSessnOperState, + snaLuSessnSenseData, + snaLuSessnTerminationRu, + snaLuSessnUnbindType, + snaLuSessnLinkIndex, + snaLuSessnStatsSentBytes, + snaLuSessnStatsReceivedBytes, + snaLuSessnStatsSentRus, + snaLuSessnStatsReceivedRus, + snaLuSessnStatsSentNegativeResps, + snaLuSessnStatsReceivedNegativeResps } + STATUS current + DESCRIPTION + "A collection of objects providing the + instrumentation of SNA sessions." + ::= { snanauGroups 3 } + +snaPu20Group OBJECT-GROUP + OBJECTS { snaPu20StatsSentBytes, + snaPu20StatsReceivedBytes, + snaPu20StatsSentPius, + snaPu20StatsReceivedPius, + snaPu20StatsSentNegativeResps, + snaPu20StatsReceivedNegativeResps, + snaPu20StatsActLus, + snaPu20StatsInActLus, + snaPu20StatsBindLus } + STATUS current + DESCRIPTION + "A collection of objects providing the + instrumentation of PU 2.0." + ::= { snanauGroups 4 } + +snaMgtToolsRtmGroup OBJECT-GROUP + OBJECTS { snaLuRtmState, + snaLuRtmStateTime, + snaLuRtmDef, + snaLuRtmBoundary1, + snaLuRtmBoundary2, + snaLuRtmBoundary3, + snaLuRtmBoundary4, + snaLuRtmCounter1, + snaLuRtmCounter2, + snaLuRtmCounter3, + snaLuRtmCounter4, + snaLuRtmOverFlows, + snaLuRtmObjPercent, + snaLuRtmObjRange, + snaLuRtmNumTrans, + snaLuRtmLastRspTime, + snaLuRtmAvgRspTime } + STATUS current + DESCRIPTION + "A collection of objects providing the + instrumentation of RTM for SNA LU 2.0." + ::= { snanauGroups 5 } + +-- end of conformance statement + + +END diff --git a/pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB b/pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB new file mode 100644 index 0000000000..73c7e2f962 --- /dev/null +++ b/pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB @@ -0,0 +1,493 @@ + SNMP-FRAMEWORK-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + OBJECT-IDENTITY, + snmpModules FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF; + + snmpFrameworkMIB MODULE-IDENTITY + LAST-UPDATED "9901190000Z" -- 19 January 1999 + ORGANIZATION "SNMPv3 Working Group" + CONTACT-INFO "WG-EMail: snmpv3@tis.com + Subscribe: majordomo@tis.com + In message body: subscribe snmpv3 + + Chair: Russ Mundy + TIS Labs at Network Associates + postal: 3060 Washington Rd + Glenwood MD 21738 + USA + EMail: mundy@tis.com + phone: +1 301-854-6889 + + Co-editor Dave Harrington + Cabletron Systems, Inc. + postal: Post Office Box 5005 + Mail Stop: Durham + 35 Industrial Way + Rochester, NH 03867-5005 + USA + EMail: dbh@ctron.com + phone: +1 603-337-7357 + + Co-editor Randy Presuhn + BMC Software, Inc. + postal: 965 Stewart Drive + Sunnyvale, CA 94086 + USA + EMail: randy_presuhn@bmc.com + phone: +1 408-616-3100 + + Co-editor: Bert Wijnen + IBM T.J. Watson Research + postal: Schagen 33 + 3461 GL Linschoten + Netherlands + EMail: wijnen@vnet.ibm.com + phone: +31 348-432-794 + " + DESCRIPTION "The SNMP Management Architecture MIB" + -- Revision History + + REVISION "9901190000Z" -- 19 January 1999 + DESCRIPTION "Updated editors' addresses, fixed typos. + Published as RFC2571. + " + REVISION "9711200000Z" -- 20 November 1997 + DESCRIPTION "The initial version, published in RFC 2271. + " + ::= { snmpModules 10 } + + -- Textual Conventions used in the SNMP Management Architecture *** + + SnmpEngineID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "An SNMP engine's administratively-unique identifier. + Objects of this type are for identification, not for + addressing, even though it is possible that an + address may have been used in the generation of + a specific value. + + The value for this object may not be all zeros or + all 'ff'H or the empty (zero length) string. + + The initial value for this object may be configured + via an operator console entry or via an algorithmic + function. In the latter case, the following + example algorithm is recommended. + + In cases where there are multiple engines on the + same system, the use of this algorithm is NOT + appropriate, as it would result in all of those + engines ending up with the same ID value. + + 1) The very first bit is used to indicate how the + rest of the data is composed. + + 0 - as defined by enterprise using former methods + that existed before SNMPv3. See item 2 below. + + 1 - as defined by this architecture, see item 3 + below. + + Note that this allows existing uses of the + engineID (also known as AgentID [RFC1910]) to + co-exist with any new uses. + + 2) The snmpEngineID has a length of 12 octets. + + The first four octets are set to the binary + equivalent of the agent's SNMP management + private enterprise number as assigned by the + Internet Assigned Numbers Authority (IANA). + For example, if Acme Networks has been assigned + { enterprises 696 }, the first four octets would + be assigned '000002b8'H. + + The remaining eight octets are determined via + one or more enterprise-specific methods. Such + methods must be designed so as to maximize the + possibility that the value of this object will + be unique in the agent's administrative domain. + For example, it may be the IP address of the SNMP + entity, or the MAC address of one of the + interfaces, with each address suitably padded + with random octets. If multiple methods are + defined, then it is recommended that the first + octet indicate the method being used and the + remaining octets be a function of the method. + + 3) The length of the octet strings varies. + + The first four octets are set to the binary + equivalent of the agent's SNMP management + private enterprise number as assigned by the + Internet Assigned Numbers Authority (IANA). + For example, if Acme Networks has been assigned + { enterprises 696 }, the first four octets would + be assigned '000002b8'H. + + The very first bit is set to 1. For example, the + above value for Acme Networks now changes to be + '800002b8'H. + + The fifth octet indicates how the rest (6th and + following octets) are formatted. The values for + the fifth octet are: + + 0 - reserved, unused. + + 1 - IPv4 address (4 octets) + lowest non-special IP address + + 2 - IPv6 address (16 octets) + lowest non-special IP address + + 3 - MAC address (6 octets) + lowest IEEE MAC address, canonical + order + + 4 - Text, administratively assigned + Maximum remaining length 27 + + 5 - Octets, administratively assigned + Maximum remaining length 27 + + 6-127 - reserved, unused + + 127-255 - as defined by the enterprise + Maximum remaining length 27 + " + SYNTAX OCTET STRING (SIZE(5..32)) + + SnmpSecurityModel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "An identifier that uniquely identifies a + securityModel of the Security Subsystem within the + SNMP Management Architecture. + + The values for securityModel are allocated as + follows: + + - The zero value is reserved. + - Values between 1 and 255, inclusive, are reserved + for standards-track Security Models and are + managed by the Internet Assigned Numbers Authority + (IANA). + - Values greater than 255 are allocated to + enterprise-specific Security Models. An + enterprise-specific securityModel value is defined + to be: + + enterpriseID * 256 + security model within + enterprise + + For example, the fourth Security Model defined by + the enterprise whose enterpriseID is 1 would be + 260. + + This scheme for allocation of securityModel + values allows for a maximum of 255 standards- + based Security Models, and for a maximum of + 255 Security Models per enterprise. + + It is believed that the assignment of new + securityModel values will be rare in practice + because the larger the number of simultaneously + utilized Security Models, the larger the + chance that interoperability will suffer. + Consequently, it is believed that such a range + will be sufficient. In the unlikely event that + the standards committee finds this number to be + insufficient over time, an enterprise number + can be allocated to obtain an additional 255 + possible values. + + Note that the most significant bit must be zero; + hence, there are 23 bits allocated for various + organizations to design and define non-standard + securityModels. This limits the ability to + define new proprietary implementations of Security + Models to the first 8,388,608 enterprises. + + It is worthwhile to note that, in its encoded + form, the securityModel value will normally + require only a single byte since, in practice, + the leftmost bits will be zero for most messages + and sign extension is suppressed by the encoding + rules. + + As of this writing, there are several values + of securityModel defined for use with SNMP or + reserved for use with supporting MIB objects. + They are as follows: + + 0 reserved for 'any' + 1 reserved for SNMPv1 + 2 reserved for SNMPv2c + 3 User-Based Security Model (USM) + " + SYNTAX INTEGER(0 .. 2147483647) + + SnmpMessageProcessingModel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "An identifier that uniquely identifies a Message + Processing Model of the Message Processing + Subsystem within a SNMP Management Architecture. + The values for messageProcessingModel are + allocated as follows: + + - Values between 0 and 255, inclusive, are + reserved for standards-track Message Processing + Models and are managed by the Internet Assigned + Numbers Authority (IANA). + + - Values greater than 255 are allocated to + enterprise-specific Message Processing Models. + An enterprise messageProcessingModel value is + defined to be: + + enterpriseID * 256 + + messageProcessingModel within enterprise + + For example, the fourth Message Processing Model + defined by the enterprise whose enterpriseID + is 1 would be 260. + + This scheme for allocating messageProcessingModel + values allows for a maximum of 255 standards- + based Message Processing Models, and for a + maximum of 255 Message Processing Models per + enterprise. + + It is believed that the assignment of new + messageProcessingModel values will be rare + in practice because the larger the number of + simultaneously utilized Message Processing Models, + the larger the chance that interoperability + will suffer. It is believed that such a range + will be sufficient. In the unlikely event that + the standards committee finds this number to be + insufficient over time, an enterprise number + can be allocated to obtain an additional 256 + possible values. + + Note that the most significant bit must be zero; + hence, there are 23 bits allocated for various + organizations to design and define non-standard + messageProcessingModels. This limits the ability + to define new proprietary implementations of + Message Processing Models to the first 8,388,608 + enterprises. + + It is worthwhile to note that, in its encoded + form, the messageProcessingModel value will + normally require only a single byte since, in + practice, the leftmost bits will be zero for + most messages and sign extension is suppressed + by the encoding rules. + + As of this writing, there are several values of + messageProcessingModel defined for use with SNMP. + They are as follows: + + 0 reserved for SNMPv1 + 1 reserved for SNMPv2c + 2 reserved for SNMPv2u and SNMPv2* + 3 reserved for SNMPv3 + " + SYNTAX INTEGER(0 .. 2147483647) + + SnmpSecurityLevel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "A Level of Security at which SNMP messages can be + sent or with which operations are being processed; + in particular, one of: + + noAuthNoPriv - without authentication and + without privacy, + authNoPriv - with authentication but + without privacy, + authPriv - with authentication and + with privacy. + + These three values are ordered such that + noAuthNoPriv is less than authNoPriv and + authNoPriv is less than authPriv. + " + SYNTAX INTEGER { noAuthNoPriv(1), + authNoPriv(2), + authPriv(3) + } + + SnmpAdminString ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION "An octet string containing administrative + information, preferably in human-readable form. + + To facilitate internationalization, this + information is represented using the ISO/IEC + IS 10646-1 character set, encoded as an octet + string using the UTF-8 transformation format + described in [RFC2279]. + + Since additional code points are added by + amendments to the 10646 standard from time + to time, implementations must be prepared to + encounter any code point from 0x00000000 to + 0x7fffffff. Byte sequences that do not + correspond to the valid UTF-8 encoding of a + code point or are outside this range are + prohibited. + + The use of control codes should be avoided. + + When it is necessary to represent a newline, + the control code sequence CR LF should be used. + + The use of leading or trailing white space should + be avoided. + + For code points not directly supported by user + interface hardware or software, an alternative + means of entry and display, such as hexadecimal, + may be provided. + + For information encoded in 7-bit US-ASCII, + the UTF-8 encoding is identical to the + US-ASCII encoding. + + UTF-8 may require multiple bytes to represent a + single character / code point; thus the length + of this object in octets may be different from + the number of characters encoded. Similarly, + size constraints refer to the number of encoded + octets, not the number of characters represented + by an encoding. + + Note that when this TC is used for an object that + is used or envisioned to be used as an index, then + a SIZE restriction MUST be specified so that the + number of sub-identifiers for any object instance + does not exceed the limit of 128, as defined by + [RFC1905]. + + Note that the size of an SnmpAdminString object is + measured in octets, not characters. + " + SYNTAX OCTET STRING (SIZE (0..255)) + + -- Administrative assignments *************************************** + + snmpFrameworkAdmin + OBJECT IDENTIFIER ::= { snmpFrameworkMIB 1 } + snmpFrameworkMIBObjects + OBJECT IDENTIFIER ::= { snmpFrameworkMIB 2 } + snmpFrameworkMIBConformance + OBJECT IDENTIFIER ::= { snmpFrameworkMIB 3 } + + -- the snmpEngine Group ******************************************** + + snmpEngine OBJECT IDENTIFIER ::= { snmpFrameworkMIBObjects 1 } + + snmpEngineID OBJECT-TYPE + SYNTAX SnmpEngineID + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An SNMP engine's administratively-unique identifier. + " + ::= { snmpEngine 1 } + + snmpEngineBoots OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of times that the SNMP engine has + (re-)initialized itself since snmpEngineID + was last configured. + " + ::= { snmpEngine 2 } + + snmpEngineTime OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of seconds since the value of + the snmpEngineBoots object last changed. + When incrementing this object's value would + cause it to exceed its maximum, + snmpEngineBoots is incremented as if a + re-initialization had occurred, and this + object's value consequently reverts to zero. + " + ::= { snmpEngine 3 } + + snmpEngineMaxMessageSize OBJECT-TYPE + SYNTAX INTEGER (484..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The maximum length in octets of an SNMP message + which this SNMP engine can send or receive and + process, determined as the minimum of the maximum + message size values supported among all of the + transports available to and supported by the engine. + " + ::= { snmpEngine 4 } + + + -- Registration Points for Authentication and Privacy Protocols ** + + snmpAuthProtocols OBJECT-IDENTITY + STATUS current + DESCRIPTION "Registration point for standards-track + authentication protocols used in SNMP Management + Frameworks. + " + ::= { snmpFrameworkAdmin 1 } + + snmpPrivProtocols OBJECT-IDENTITY + STATUS current + DESCRIPTION "Registration point for standards-track privacy + protocols used in SNMP Management Frameworks. + " + ::= { snmpFrameworkAdmin 2 } + + -- Conformance information ****************************************** + + snmpFrameworkMIBCompliances + OBJECT IDENTIFIER ::= {snmpFrameworkMIBConformance 1} + snmpFrameworkMIBGroups + OBJECT IDENTIFIER ::= {snmpFrameworkMIBConformance 2} + + -- compliance statements + + snmpFrameworkMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION "The compliance statement for SNMP engines which + implement the SNMP Management Framework MIB. + " + MODULE -- this module + MANDATORY-GROUPS { snmpEngineGroup } + + ::= { snmpFrameworkMIBCompliances 1 } + + -- units of conformance + snmpEngineGroup OBJECT-GROUP + OBJECTS { + snmpEngineID, + snmpEngineBoots, + snmpEngineTime, + snmpEngineMaxMessageSize + } + STATUS current + DESCRIPTION "A collection of objects for identifying and + determining the configuration and current timeliness + values of an SNMP engine. + " + ::= { snmpFrameworkMIBGroups 1 } + + END diff --git a/pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB.my b/pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB.my new file mode 100644 index 0000000000..008455c440 --- /dev/null +++ b/pandora_console/attachment/mibs/SNMP-FRAMEWORK-MIB.my @@ -0,0 +1,543 @@ + SNMP-FRAMEWORK-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + OBJECT-IDENTITY, + snmpModules FROM SNMPv2-SMI + TEXTUAL-CONVENTION FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF; + + snmpFrameworkMIB MODULE-IDENTITY + LAST-UPDATED "9901190000Z" -- 19 January 1999 + ORGANIZATION "SNMPv3 Working Group" + CONTACT-INFO "WG-EMail: snmpv3@tis.com + Subscribe: majordomo@tis.com + In message body: subscribe snmpv3 + + Chair: Russ Mundy + TIS Labs at Network Associates + postal: 3060 Washington Rd + Glenwood MD 21738 + USA + EMail: mundy@tis.com + phone: +1 301-854-6889 + + Co-editor Dave Harrington + Cabletron Systems, Inc. + postal: Post Office Box 5005 + Mail Stop: Durham + 35 Industrial Way + Rochester, NH 03867-5005 + USA + EMail: dbh@ctron.com + phone: +1 603-337-7357 + + Co-editor Randy Presuhn + BMC Software, Inc. + postal: 965 Stewart Drive + Sunnyvale, CA 94086 + USA + EMail: randy_presuhn@bmc.com + phone: +1 408-616-3100 + + Co-editor: Bert Wijnen + IBM T.J. Watson Research + postal: Schagen 33 + 3461 GL Linschoten + + + + + + Netherlands + EMail: wijnen@vnet.ibm.com + phone: +31 348-432-794 + " + DESCRIPTION "The SNMP Management Architecture MIB" + -- Revision History + + REVISION "9901190000Z" -- 19 January 1999 + DESCRIPTION "Updated editors' addresses, fixed typos. + Published as RFC2571. + " + REVISION "9711200000Z" -- 20 November 1997 + DESCRIPTION "The initial version, published in RFC 2271. + " + ::= { snmpModules 10 } + + -- Textual Conventions used in the SNMP Management Architecture *** + + SnmpEngineID ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "An SNMP engine's administratively-unique identifier. + Objects of this type are for identification, not for + addressing, even though it is possible that an + address may have been used in the generation of + a specific value. + + The value for this object may not be all zeros or + all 'ff'H or the empty (zero length) string. + + The initial value for this object may be configured + via an operator console entry or via an algorithmic + function. In the latter case, the following + example algorithm is recommended. + + In cases where there are multiple engines on the + same system, the use of this algorithm is NOT + appropriate, as it would result in all of those + engines ending up with the same ID value. + + 1) The very first bit is used to indicate how the + rest of the data is composed. + + 0 - as defined by enterprise using former methods + that existed before SNMPv3. See item 2 below. + + 1 - as defined by this architecture, see item 3 + below. + + + + + + + Note that this allows existing uses of the + engineID (also known as AgentID [RFC1910]) to + co-exist with any new uses. + + 2) The snmpEngineID has a length of 12 octets. + + The first four octets are set to the binary + equivalent of the agent's SNMP management + private enterprise number as assigned by the + Internet Assigned Numbers Authority (IANA). + For example, if Acme Networks has been assigned + { enterprises 696 }, the first four octets would + be assigned '000002b8'H. + + The remaining eight octets are determined via + one or more enterprise-specific methods. Such + methods must be designed so as to maximize the + possibility that the value of this object will + be unique in the agent's administrative domain. + For example, it may be the IP address of the SNMP + entity, or the MAC address of one of the + interfaces, with each address suitably padded + with random octets. If multiple methods are + defined, then it is recommended that the first + octet indicate the method being used and the + remaining octets be a function of the method. + + 3) The length of the octet strings varies. + + The first four octets are set to the binary + equivalent of the agent's SNMP management + private enterprise number as assigned by the + Internet Assigned Numbers Authority (IANA). + For example, if Acme Networks has been assigned + { enterprises 696 }, the first four octets would + be assigned '000002b8'H. + + The very first bit is set to 1. For example, the + above value for Acme Networks now changes to be + '800002b8'H. + + The fifth octet indicates how the rest (6th and + following octets) are formatted. The values for + the fifth octet are: + + 0 - reserved, unused. + + 1 - IPv4 address (4 octets) + + + + + + lowest non-special IP address + + 2 - IPv6 address (16 octets) + lowest non-special IP address + + 3 - MAC address (6 octets) + lowest IEEE MAC address, canonical + order + + 4 - Text, administratively assigned + Maximum remaining length 27 + + 5 - Octets, administratively assigned + Maximum remaining length 27 + + 6-127 - reserved, unused + + 127-255 - as defined by the enterprise + Maximum remaining length 27 + " + SYNTAX OCTET STRING (SIZE(5..32)) + + SnmpSecurityModel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "An identifier that uniquely identifies a + securityModel of the Security Subsystem within the + SNMP Management Architecture. + + The values for securityModel are allocated as + follows: + + - The zero value is reserved. + - Values between 1 and 255, inclusive, are reserved + for standards-track Security Models and are + managed by the Internet Assigned Numbers Authority + (IANA). + - Values greater than 255 are allocated to + enterprise-specific Security Models. An + enterprise-specific securityModel value is defined + to be: + + enterpriseID * 256 + security model within + enterprise + + For example, the fourth Security Model defined by + the enterprise whose enterpriseID is 1 would be + 260. + + + + + + + This scheme for allocation of securityModel + values allows for a maximum of 255 standards- + based Security Models, and for a maximum of + 255 Security Models per enterprise. + + It is believed that the assignment of new + securityModel values will be rare in practice + because the larger the number of simultaneously + utilized Security Models, the larger the + chance that interoperability will suffer. + Consequently, it is believed that such a range + will be sufficient. In the unlikely event that + the standards committee finds this number to be + insufficient over time, an enterprise number + can be allocated to obtain an additional 255 + possible values. + + Note that the most significant bit must be zero; + hence, there are 23 bits allocated for various + organizations to design and define non-standard + securityModels. This limits the ability to + define new proprietary implementations of Security + Models to the first 8,388,608 enterprises. + + It is worthwhile to note that, in its encoded + form, the securityModel value will normally + require only a single byte since, in practice, + the leftmost bits will be zero for most messages + and sign extension is suppressed by the encoding + rules. + + As of this writing, there are several values + of securityModel defined for use with SNMP or + reserved for use with supporting MIB objects. + They are as follows: + + 0 reserved for 'any' + 1 reserved for SNMPv1 + 2 reserved for SNMPv2c + 3 User-Based Security Model (USM) + " + SYNTAX INTEGER(0 .. 2147483647) + + SnmpMessageProcessingModel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "An identifier that uniquely identifies a Message + Processing Model of the Message Processing + Subsystem within a SNMP Management Architecture. + + + + + + The values for messageProcessingModel are + allocated as follows: + + - Values between 0 and 255, inclusive, are + reserved for standards-track Message Processing + Models and are managed by the Internet Assigned + Numbers Authority (IANA). + + - Values greater than 255 are allocated to + enterprise-specific Message Processing Models. + An enterprise messageProcessingModel value is + defined to be: + + enterpriseID * 256 + + messageProcessingModel within enterprise + + For example, the fourth Message Processing Model + defined by the enterprise whose enterpriseID + is 1 would be 260. + + This scheme for allocating messageProcessingModel + values allows for a maximum of 255 standards- + based Message Processing Models, and for a + maximum of 255 Message Processing Models per + enterprise. + + It is believed that the assignment of new + messageProcessingModel values will be rare + in practice because the larger the number of + simultaneously utilized Message Processing Models, + the larger the chance that interoperability + will suffer. It is believed that such a range + will be sufficient. In the unlikely event that + the standards committee finds this number to be + insufficient over time, an enterprise number + can be allocated to obtain an additional 256 + possible values. + + Note that the most significant bit must be zero; + hence, there are 23 bits allocated for various + organizations to design and define non-standard + messageProcessingModels. This limits the ability + to define new proprietary implementations of + Message Processing Models to the first 8,388,608 + enterprises. + + It is worthwhile to note that, in its encoded + form, the messageProcessingModel value will + + + + + + normally require only a single byte since, in + practice, the leftmost bits will be zero for + most messages and sign extension is suppressed + by the encoding rules. + + As of this writing, there are several values of + messageProcessingModel defined for use with SNMP. + They are as follows: + + 0 reserved for SNMPv1 + 1 reserved for SNMPv2c + 2 reserved for SNMPv2u and SNMPv2* + 3 reserved for SNMPv3 + " + SYNTAX INTEGER(0 .. 2147483647) + + SnmpSecurityLevel ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION "A Level of Security at which SNMP messages can be + sent or with which operations are being processed; + in particular, one of: + + noAuthNoPriv - without authentication and + without privacy, + authNoPriv - with authentication but + without privacy, + authPriv - with authentication and + with privacy. + + These three values are ordered such that + noAuthNoPriv is less than authNoPriv and + authNoPriv is less than authPriv. + " + SYNTAX INTEGER { noAuthNoPriv(1), + authNoPriv(2), + authPriv(3) + } + + SnmpAdminString ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION "An octet string containing administrative + information, preferably in human-readable form. + + To facilitate internationalization, this + information is represented using the ISO/IEC + IS 10646-1 character set, encoded as an octet + string using the UTF-8 transformation format + + + + + + described in [RFC2279]. + + Since additional code points are added by + amendments to the 10646 standard from time + to time, implementations must be prepared to + encounter any code point from 0x00000000 to + 0x7fffffff. Byte sequences that do not + correspond to the valid UTF-8 encoding of a + code point or are outside this range are + prohibited. + + The use of control codes should be avoided. + + When it is necessary to represent a newline, + the control code sequence CR LF should be used. + + The use of leading or trailing white space should + be avoided. + + For code points not directly supported by user + interface hardware or software, an alternative + means of entry and display, such as hexadecimal, + may be provided. + + For information encoded in 7-bit US-ASCII, + the UTF-8 encoding is identical to the + US-ASCII encoding. + + UTF-8 may require multiple bytes to represent a + single character / code point; thus the length + of this object in octets may be different from + the number of characters encoded. Similarly, + size constraints refer to the number of encoded + octets, not the number of characters represented + by an encoding. + + Note that when this TC is used for an object that + is used or envisioned to be used as an index, then + a SIZE restriction MUST be specified so that the + number of sub-identifiers for any object instance + does not exceed the limit of 128, as defined by + [RFC1905]. + + Note that the size of an SnmpAdminString object is + measured in octets, not characters. + " + SYNTAX OCTET STRING (SIZE (0..255)) + + + + + + + -- Administrative assignments *************************************** + + snmpFrameworkAdmin + OBJECT IDENTIFIER ::= { snmpFrameworkMIB 1 } + snmpFrameworkMIBObjects + OBJECT IDENTIFIER ::= { snmpFrameworkMIB 2 } + snmpFrameworkMIBConformance + OBJECT IDENTIFIER ::= { snmpFrameworkMIB 3 } + + -- the snmpEngine Group ******************************************** + + snmpEngine OBJECT IDENTIFIER ::= { snmpFrameworkMIBObjects 1 } + + snmpEngineID OBJECT-TYPE + SYNTAX SnmpEngineID + MAX-ACCESS read-only + STATUS current + DESCRIPTION "An SNMP engine's administratively-unique identifier. + " + ::= { snmpEngine 1 } + + snmpEngineBoots OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of times that the SNMP engine has + (re-)initialized itself since snmpEngineID + was last configured. + " + ::= { snmpEngine 2 } + + snmpEngineTime OBJECT-TYPE + SYNTAX INTEGER (0..2147483647) + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The number of seconds since the value of + the snmpEngineBoots object last changed. + When incrementing this object's value would + cause it to exceed its maximum, + snmpEngineBoots is incremented as if a + re-initialization had occurred, and this + object's value consequently reverts to zero. + " + ::= { snmpEngine 3 } + + snmpEngineMaxMessageSize OBJECT-TYPE + SYNTAX INTEGER (484..2147483647) + + + + + + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The maximum length in octets of an SNMP message + which this SNMP engine can send or receive and + process, determined as the minimum of the maximum + message size values supported among all of the + transports available to and supported by the engine. + " + ::= { snmpEngine 4 } + + + -- Registration Points for Authentication and Privacy Protocols ** + + snmpAuthProtocols OBJECT-IDENTITY + STATUS current + DESCRIPTION "Registration point for standards-track + authentication protocols used in SNMP Management + Frameworks. + " + ::= { snmpFrameworkAdmin 1 } + + snmpPrivProtocols OBJECT-IDENTITY + STATUS current + DESCRIPTION "Registration point for standards-track privacy + protocols used in SNMP Management Frameworks. + " + ::= { snmpFrameworkAdmin 2 } + + -- Conformance information ****************************************** + + snmpFrameworkMIBCompliances + OBJECT IDENTIFIER ::= {snmpFrameworkMIBConformance 1} + snmpFrameworkMIBGroups + OBJECT IDENTIFIER ::= {snmpFrameworkMIBConformance 2} + + -- compliance statements + + snmpFrameworkMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION "The compliance statement for SNMP engines which + implement the SNMP Management Framework MIB. + " + MODULE -- this module + MANDATORY-GROUPS { snmpEngineGroup } + + ::= { snmpFrameworkMIBCompliances 1 } + + -- units of conformance + + + + + + snmpEngineGroup OBJECT-GROUP + OBJECTS { + snmpEngineID, + snmpEngineBoots, + snmpEngineTime, + snmpEngineMaxMessageSize + } + STATUS current + DESCRIPTION "A collection of objects for identifying and + determining the configuration and current timeliness + values of an SNMP engine. + " + ::= { snmpFrameworkMIBGroups 1 } + + END diff --git a/pandora_console/attachment/mibs/SNMP-USER-BASED-SM-MIB b/pandora_console/attachment/mibs/SNMP-USER-BASED-SM-MIB new file mode 100644 index 0000000000..4ec5ee5061 --- /dev/null +++ b/pandora_console/attachment/mibs/SNMP-USER-BASED-SM-MIB @@ -0,0 +1,890 @@ +SNMP-USER-BASED-SM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, + OBJECT-IDENTITY, + snmpModules, Counter32 FROM SNMPv2-SMI + TEXTUAL-CONVENTION, TestAndIncr, + RowStatus, RowPointer, + StorageType, AutonomousType FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + SnmpAdminString, SnmpEngineID, + snmpAuthProtocols, snmpPrivProtocols FROM SNMP-FRAMEWORK-MIB; + +snmpUsmMIB MODULE-IDENTITY + LAST-UPDATED "9901200000Z" -- 20 Jan 1999, midnight + ORGANIZATION "SNMPv3 Working Group" + CONTACT-INFO "WG-email: snmpv3@lists.tislabs.com + Subscribe: majordomo@lists.tislabs.com + In msg body: subscribe snmpv3 + + Chair: Russ Mundy + Trusted Information Systems + postal: 3060 Washington Rd + Glenwood MD 21738 + USA + email: mundy@tislabs.com + phone: +1-301-854-6889 + + Co-editor Uri Blumenthal + IBM T. J. Watson Research + postal: 30 Saw Mill River Pkwy, + Hawthorne, NY 10532 + USA + email: uri@watson.ibm.com + phone: +1-914-784-7964 + + Co-editor: Bert Wijnen + IBM T. J. Watson Research + postal: Schagen 33 + 3461 GL Linschoten + Netherlands + email: wijnen@vnet.ibm.com + phone: +31-348-432-794 + " + DESCRIPTION "The management information definitions for the + SNMP User-based Security Model. + " +-- Revision history + + REVISION "9901200000Z" -- 20 Jan 1999, midnight + DESCRIPTION "Clarifications, published as RFC2574" + + REVISION "9711200000Z" -- 20 Nov 1997, midnight + DESCRIPTION "Initial version, published as RFC2274" + + ::= { snmpModules 15 } + +-- Administrative assignments **************************************** + +usmMIBObjects OBJECT IDENTIFIER ::= { snmpUsmMIB 1 } +usmMIBConformance OBJECT IDENTIFIER ::= { snmpUsmMIB 2 } + +-- Identification of Authentication and Privacy Protocols ************ + +usmNoAuthProtocol OBJECT-IDENTITY + STATUS current + DESCRIPTION "No Authentication Protocol." + ::= { snmpAuthProtocols 1 } + +usmHMACMD5AuthProtocol OBJECT-IDENTITY + STATUS current + DESCRIPTION "The HMAC-MD5-96 Digest Authentication Protocol." + REFERENCE "- H. Krawczyk, M. Bellare, R. Canetti HMAC: + Keyed-Hashing for Message Authentication, + RFC2104, Feb 1997. + - Rivest, R., Message Digest Algorithm MD5, RFC1321. + " + ::= { snmpAuthProtocols 2 } + +usmHMACSHAAuthProtocol OBJECT-IDENTITY + STATUS current + DESCRIPTION "The HMAC-SHA-96 Digest Authentication Protocol." + REFERENCE "- H. Krawczyk, M. Bellare, R. Canetti, HMAC: + Keyed-Hashing for Message Authentication, + RFC2104, Feb 1997. + - Secure Hash Algorithm. NIST FIPS 180-1. + " + ::= { snmpAuthProtocols 3 } + +usmNoPrivProtocol OBJECT-IDENTITY + STATUS current + DESCRIPTION "No Privacy Protocol." + ::= { snmpPrivProtocols 1 } + +usmDESPrivProtocol OBJECT-IDENTITY + STATUS current + DESCRIPTION "The CBC-DES Symmetric Encryption Protocol." + REFERENCE "- Data Encryption Standard, National Institute of + Standards and Technology. Federal Information + Processing Standard (FIPS) Publication 46-1. + Supersedes FIPS Publication 46, + (January, 1977; reaffirmed January, 1988). + + - Data Encryption Algorithm, American National + Standards Institute. ANSI X3.92-1981, + (December, 1980). + + - DES Modes of Operation, National Institute of + Standards and Technology. Federal Information + Processing Standard (FIPS) Publication 81, + (December, 1980). + + - Data Encryption Algorithm - Modes of Operation, + American National Standards Institute. + ANSI X3.106-1983, (May 1983). + " + ::= { snmpPrivProtocols 2 } + + +-- Textual Conventions *********************************************** + + +KeyChange ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + + "Every definition of an object with this syntax must identify + a protocol P, a secret key K, and a hash algorithm H + that produces output of L octets. + + The object's value is a manager-generated, partially-random + value which, when modified, causes the value of the secret + key K, to be modified via a one-way function. + + The value of an instance of this object is the concatenation + of two components: first a 'random' component and then a + 'delta' component. + + The lengths of the random and delta components + are given by the corresponding value of the protocol P; + if P requires K to be a fixed length, the length of both the + random and delta components is that fixed length; if P + allows the length of K to be variable up to a particular + maximum length, the length of the random component is that + maximum length and the length of the delta component is any + length less than or equal to that maximum length. + For example, usmHMACMD5AuthProtocol requires K to be a fixed + length of 16 octets and L - of 16 octets. + usmHMACSHAAuthProtocol requires K to be a fixed length of + 20 octets and L - of 20 octets. Other protocols may define + other sizes, as deemed appropriate. + + When a requester wants to change the old key K to a new + key keyNew on a remote entity, the 'random' component is + obtained from either a true random generator, or from a + pseudorandom generator, and the 'delta' component is + computed as follows: + + - a temporary variable is initialized to the existing value + of K; + - if the length of the keyNew is greater than L octets, + then: + - the random component is appended to the value of the + temporary variable, and the result is input to the + the hash algorithm H to produce a digest value, and + the temporary variable is set to this digest value; + - the value of the temporary variable is XOR-ed with + the first (next) L-octets (16 octets in case of MD5) + of the keyNew to produce the first (next) L-octets + (16 octets in case of MD5) of the 'delta' component. + - the above two steps are repeated until the unused + portion of the keyNew component is L octets or less, + - the random component is appended to the value of the + temporary variable, and the result is input to the + + hash algorithm H to produce a digest value; + - this digest value, truncated if necessary to be the same + length as the unused portion of the keyNew, is XOR-ed + with the unused portion of the keyNew to produce the + (final portion of the) 'delta' component. + + For example, using MD5 as the hash algorithm H: + + iterations = (lenOfDelta - 1)/16; /* integer division */ + temp = keyOld; + for (i = 0; i < iterations; i++) { + temp = MD5 (temp || random); + delta[i*16 .. (i*16)+15] = + temp XOR keyNew[i*16 .. (i*16)+15]; + } + temp = MD5 (temp || random); + delta[i*16 .. lenOfDelta-1] = + temp XOR keyNew[i*16 .. lenOfDelta-1]; + + The 'random' and 'delta' components are then concatenated as + described above, and the resulting octet string is sent to + the recipient as the new value of an instance of this object. + + At the receiver side, when an instance of this object is set + to a new value, then a new value of K is computed as follows: + + - a temporary variable is initialized to the existing value + of K; + - if the length of the delta component is greater than L + octets, then: + - the random component is appended to the value of the + temporary variable, and the result is input to the + hash algorithm H to produce a digest value, and the + temporary variable is set to this digest value; + - the value of the temporary variable is XOR-ed with + the first (next) L-octets (16 octets in case of MD5) + of the delta component to produce the first (next) + L-octets (16 octets in case of MD5) of the new value + of K. + - the above two steps are repeated until the unused + portion of the delta component is L octets or less, + - the random component is appended to the value of the + temporary variable, and the result is input to the + hash algorithm H to produce a digest value; + - this digest value, truncated if necessary to be the same + length as the unused portion of the delta component, is + XOR-ed with the unused portion of the delta component to + produce the (final portion of the) new value of K. + + For example, using MD5 as the hash algorithm H: + + iterations = (lenOfDelta - 1)/16; /* integer division */ + temp = keyOld; + for (i = 0; i < iterations; i++) { + temp = MD5 (temp || random); + keyNew[i*16 .. (i*16)+15] = + temp XOR delta[i*16 .. (i*16)+15]; + } + temp = MD5 (temp || random); + keyNew[i*16 .. lenOfDelta-1] = + temp XOR delta[i*16 .. lenOfDelta-1]; + + The value of an object with this syntax, whenever it is + retrieved by the management protocol, is always the zero + length string. + + Note that the keyOld and keyNew are the localized keys. + + Note that it is probably wise that when an SNMP entity sends + a SetRequest to change a key, that it keeps a copy of the old + key until it has confirmed that the key change actually + succeeded. + " + SYNTAX OCTET STRING + + +-- Statistics for the User-based Security Model ********************** + + +usmStats OBJECT IDENTIFIER ::= { usmMIBObjects 1 } + + +usmStatsUnsupportedSecLevels OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of packets received by the SNMP + engine which were dropped because they requested a + securityLevel that was unknown to the SNMP engine + or otherwise unavailable. + " + ::= { usmStats 1 } + +usmStatsNotInTimeWindows OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of packets received by the SNMP + engine which were dropped because they appeared + outside of the authoritative SNMP engine's window. + " + ::= { usmStats 2 } + +usmStatsUnknownUserNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of packets received by the SNMP + engine which were dropped because they referenced a + user that was not known to the SNMP engine. + " + ::= { usmStats 3 } + +usmStatsUnknownEngineIDs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of packets received by the SNMP + engine which were dropped because they referenced an + snmpEngineID that was not known to the SNMP engine. + " + ::= { usmStats 4 } + +usmStatsWrongDigests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of packets received by the SNMP + engine which were dropped because they didn't + contain the expected digest value. + " + ::= { usmStats 5 } + +usmStatsDecryptionErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION "The total number of packets received by the SNMP + engine which were dropped because they could not be + decrypted. + " + ::= { usmStats 6 } + +-- The usmUser Group ************************************************ + +usmUser OBJECT IDENTIFIER ::= { usmMIBObjects 2 } + +usmUserSpinLock OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An advisory lock used to allow several cooperating + Command Generator Applications to coordinate their + use of facilities to alter secrets in the + usmUserTable. + " + ::= { usmUser 1 } + +-- The table of valid users for the User-based Security Model ******** + +usmUserTable OBJECT-TYPE + SYNTAX SEQUENCE OF UsmUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table of users configured in the SNMP engine's + Local Configuration Datastore (LCD). + + To create a new user (i.e., to instantiate a new + conceptual row in this table), it is recommended to + follow this procedure: + + 1) GET(usmUserSpinLock.0) and save in sValue. + 2) SET(usmUserSpinLock.0=sValue, + usmUserCloneFrom=templateUser, + usmUserStatus=createAndWait) + You should use a template user to clone from + which has the proper auth/priv protocol defined. + + If the new user is to use privacy: + + 3) generate the keyChange value based on the secret + privKey of the clone-from user and the secret key + to be used for the new user. Let us call this + pkcValue. + 4) GET(usmUserSpinLock.0) and save in sValue. + 5) SET(usmUserSpinLock.0=sValue, + usmUserPrivKeyChange=pkcValue + usmUserPublic=randomValue1) + 6) GET(usmUserPulic) and check it has randomValue1. + If not, repeat steps 4-6. + + If the new user will never use privacy: + + 7) SET(usmUserPrivProtocol=usmNoPrivProtocol) + + If the new user is to use authentication: + + 8) generate the keyChange value based on the secret + authKey of the clone-from user and the secret key + to be used for the new user. Let us call this + akcValue. + 9) GET(usmUserSpinLock.0) and save in sValue. + 10) SET(usmUserSpinLock.0=sValue, + usmUserAuthKeyChange=akcValue + usmUserPublic=randomValue2) + 11) GET(usmUserPulic) and check it has randomValue2. + If not, repeat steps 9-11. + + If the new user will never use authentication: + + 12) SET(usmUserAuthProtocol=usmNoAuthProtocol) + + Finally, activate the new user: + + 13) SET(usmUserStatus=active) + + The new user should now be available and ready to be + used for SNMPv3 communication. Note however that access + to MIB data must be provided via configuration of the + SNMP-VIEW-BASED-ACM-MIB. + + The use of usmUserSpinlock is to avoid conflicts with + another SNMP command responder application which may + also be acting on the usmUserTable. + " + ::= { usmUser 2 } + +usmUserEntry OBJECT-TYPE + SYNTAX UsmUserEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A user configured in the SNMP engine's Local + Configuration Datastore (LCD) for the User-based + Security Model. + " + INDEX { usmUserEngineID, + usmUserName + } + ::= { usmUserTable 1 } + +UsmUserEntry ::= SEQUENCE + + { + usmUserEngineID SnmpEngineID, + usmUserName SnmpAdminString, + usmUserSecurityName SnmpAdminString, + usmUserCloneFrom RowPointer, + usmUserAuthProtocol AutonomousType, + usmUserAuthKeyChange KeyChange, + usmUserOwnAuthKeyChange KeyChange, + usmUserPrivProtocol AutonomousType, + usmUserPrivKeyChange KeyChange, + usmUserOwnPrivKeyChange KeyChange, + usmUserPublic OCTET STRING, + usmUserStorageType StorageType, + usmUserStatus RowStatus + } + +usmUserEngineID OBJECT-TYPE + SYNTAX SnmpEngineID + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An SNMP engine's administratively-unique identifier. + + In a simple agent, this value is always that agent's + own snmpEngineID value. + + The value can also take the value of the snmpEngineID + of a remote SNMP engine with which this user can + communicate. + " + ::= { usmUserEntry 1 } + +usmUserName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "A human readable string representing the name of + the user. + + This is the (User-based Security) Model dependent + security ID. + " + ::= { usmUserEntry 2 } + +usmUserSecurityName OBJECT-TYPE + SYNTAX SnmpAdminString + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A human readable string representing the user in + Security Model independent format. + + The default transformation of the User-based Security + Model dependent security ID to the securityName and + vice versa is the identity function so that the + securityName is the same as the userName. + " + ::= { usmUserEntry 3 } + +usmUserCloneFrom OBJECT-TYPE + SYNTAX RowPointer + MAX-ACCESS read-create + STATUS current + DESCRIPTION "A pointer to another conceptual row in this + usmUserTable. The user in this other conceptual + row is called the clone-from user. + + When a new user is created (i.e., a new conceptual + row is instantiated in this table), the privacy and + authentication parameters of the new user must be + cloned from its clone-from user. These parameters are: + - authentication protocol (usmUserAuthProtocol) + - privacy protocol (usmUserPrivProtocol) + They will be copied regardless of what the current + value is. + + Cloning also causes the initial values of the secret + authentication key (authKey) and the secret encryption + key (privKey) of the new user to be set to the same + value as the corresponding secret of the clone-from + user. + + The first time an instance of this object is set by + a management operation (either at or after its + instantiation), the cloning process is invoked. + Subsequent writes are successful but invoke no + action to be taken by the receiver. + The cloning process fails with an 'inconsistentName' + error if the conceptual row representing the + clone-from user does not exist or is not in an active + state when the cloning process is invoked. + + When this object is read, the ZeroDotZero OID + is returned. + " + ::= { usmUserEntry 4 } + +usmUserAuthProtocol OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "An indication of whether messages sent on behalf of + this user to/from the SNMP engine identified by + usmUserEngineID, can be authenticated, and if so, + the type of authentication protocol which is used. + + An instance of this object is created concurrently + with the creation of any other object instance for + the same user (i.e., as part of the processing of + the set operation which creates the first object + instance in the same conceptual row). + + If an initial set operation (i.e. at row creation time) + tries to set a value for an unknown or unsupported + protocol, then a 'wrongValue' error must be returned. + + The value will be overwritten/set when a set operation + is performed on the corresponding instance of + usmUserCloneFrom. + + Once instantiated, the value of such an instance of + this object can only be changed via a set operation to + the value of the usmNoAuthProtocol. + + If a set operation tries to change the value of an + existing instance of this object to any value other + than usmNoAuthProtocol, then an 'inconsistentValue' + error must be returned. + + If a set operation tries to set the value to the + usmNoAuthProtocol while the usmUserPrivProtocol value + in the same row is not equal to usmNoPrivProtocol, + then an 'inconsistentValue' error must be returned. + That means that an SNMP command generator application + must first ensure that the usmUserPrivProtocol is set + to the usmNoPrivProtocol value before it can set + the usmUserAuthProtocol value to usmNoAuthProtocol. + " + DEFVAL { usmNoAuthProtocol } + ::= { usmUserEntry 5 } + +usmUserAuthKeyChange OBJECT-TYPE + SYNTAX KeyChange -- typically (SIZE (0 | 32)) for HMACMD5 + -- typically (SIZE (0 | 40)) for HMACSHA + MAX-ACCESS read-create + STATUS current + DESCRIPTION "An object, which when modified, causes the secret + authentication key used for messages sent on behalf + of this user to/from the SNMP engine identified by + usmUserEngineID, to be modified via a one-way + function. + + The associated protocol is the usmUserAuthProtocol. + The associated secret key is the user's secret + authentication key (authKey). The associated hash + algorithm is the algorithm used by the user's + usmUserAuthProtocol. + + When creating a new user, it is an 'inconsistentName' + error for a set operation to refer to this object + unless it is previously or concurrently initialized + through a set operation on the corresponding instance + of usmUserCloneFrom. + + When the value of the corresponding usmUserAuthProtocol + is usmNoAuthProtocol, then a set is successful, but + effectively is a no-op. + + When this object is read, the zero-length (empty) + string is returned. + + The recommended way to do a key change is as follows: + + 1) GET(usmUserSpinLock.0) and save in sValue. + 2) generate the keyChange value based on the old + (existing) secret key and the new secret key, + let us call this kcValue. + + If you do the key change on behalf of another user: + + 3) SET(usmUserSpinLock.0=sValue, + usmUserAuthKeyChange=kcValue + usmUserPublic=randomValue) + + If you do the key change for yourself: + + 4) SET(usmUserSpinLock.0=sValue, + usmUserOwnAuthKeyChange=kcValue + usmUserPublic=randomValue) + + If you get a response with error-status of noError, + then the SET succeeded and the new key is active. + If you do not get a response, then you can issue a + GET(usmUserPublic) and check if the value is equal + to the randomValue you did send in the SET. If so, then + the key change succeeded and the new key is active + (probably the response got lost). If not, then the SET + request probably never reached the target and so you + can start over with the procedure above. + " + DEFVAL { ''H } -- the empty string + ::= { usmUserEntry 6 } + +usmUserOwnAuthKeyChange OBJECT-TYPE + SYNTAX KeyChange -- typically (SIZE (0 | 32)) for HMACMD5 + -- typically (SIZE (0 | 40)) for HMACSHA + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Behaves exactly as usmUserAuthKeyChange, with one + notable difference: in order for the set operation + to succeed, the usmUserName of the operation + requester must match the usmUserName that + indexes the row which is targeted by this + operation. + In addition, the USM security model must be + used for this operation. + + The idea here is that access to this column can be + public, since it will only allow a user to change + his own secret authentication key (authKey). + Note that this can only be done once the row is active. + + When a set is received and the usmUserName of the + requester is not the same as the umsUserName that + indexes the row which is targeted by this operation, + then a 'noAccess' error must be returned. + + When a set is received and the security model in use + is not USM, then a 'noAccess' error must be returned. + " + DEFVAL { ''H } -- the empty string + ::= { usmUserEntry 7 } + +usmUserPrivProtocol OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "An indication of whether messages sent on behalf of + this user to/from the SNMP engine identified by + usmUserEngineID, can be protected from disclosure, + and if so, the type of privacy protocol which is used. + + An instance of this object is created concurrently + with the creation of any other object instance for + the same user (i.e., as part of the processing of + the set operation which creates the first object + instance in the same conceptual row). + + If an initial set operation (i.e. at row creation time) + tries to set a value for an unknown or unsupported + protocol, then a 'wrongValue' error must be returned. + + The value will be overwritten/set when a set operation + is performed on the corresponding instance of + usmUserCloneFrom. + + Once instantiated, the value of such an instance of + this object can only be changed via a set operation to + the value of the usmNoPrivProtocol. + + If a set operation tries to change the value of an + existing instance of this object to any value other + than usmNoPrivProtocol, then an 'inconsistentValue' + error must be returned. + + Note that if any privacy protocol is used, then you + must also use an authentication protocol. In other + words, if usmUserPrivProtocol is set to anything else + than usmNoPrivProtocol, then the corresponding instance + of usmUserAuthProtocol cannot have a value of + usmNoAuthProtocol. If it does, then an + 'inconsistentValue' error must be returned. + " + DEFVAL { usmNoPrivProtocol } + ::= { usmUserEntry 8 } + +usmUserPrivKeyChange OBJECT-TYPE + SYNTAX KeyChange -- typically (SIZE (0 | 32)) for DES + MAX-ACCESS read-create + STATUS current + DESCRIPTION "An object, which when modified, causes the secret + encryption key used for messages sent on behalf + of this user to/from the SNMP engine identified by + usmUserEngineID, to be modified via a one-way + function. + + The associated protocol is the usmUserPrivProtocol. + The associated secret key is the user's secret + privacy key (privKey). The associated hash + algorithm is the algorithm used by the user's + usmUserAuthProtocol. + + When creating a new user, it is an 'inconsistentName' + error for a set operation to refer to this object + unless it is previously or concurrently initialized + through a set operation on the corresponding instance + of usmUserCloneFrom. + + When the value of the corresponding usmUserPrivProtocol + is usmNoPrivProtocol, then a set is successful, but + effectively is a no-op. + + When this object is read, the zero-length (empty) + string is returned. + See the description clause of usmUserAuthKeyChange for + a recommended procedure to do a key change. + " + DEFVAL { ''H } -- the empty string + ::= { usmUserEntry 9 } + +usmUserOwnPrivKeyChange OBJECT-TYPE + SYNTAX KeyChange -- typically (SIZE (0 | 32)) for DES + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Behaves exactly as usmUserPrivKeyChange, with one + notable difference: in order for the Set operation + to succeed, the usmUserName of the operation + requester must match the usmUserName that indexes + the row which is targeted by this operation. + In addition, the USM security model must be + used for this operation. + + The idea here is that access to this column can be + public, since it will only allow a user to change + his own secret privacy key (privKey). + Note that this can only be done once the row is active. + + When a set is received and the usmUserName of the + requester is not the same as the umsUserName that + indexes the row which is targeted by this operation, + then a 'noAccess' error must be returned. + + When a set is received and the security model in use + is not USM, then a 'noAccess' error must be returned. + " + DEFVAL { ''H } -- the empty string + ::= { usmUserEntry 10 } + +usmUserPublic OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "A publicly-readable value which can be written as part + of the procedure for changing a user's secret + authentication and/or privacy key, and later read to + determine whether the change of the secret was + effected. + " + DEFVAL { ''H } -- the empty string + ::= { usmUserEntry 11 } + +usmUserStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The storage type for this conceptual row. + + Conceptual rows having the value 'permanent' must + allow write-access at a minimum to: + + - usmUserAuthKeyChange, usmUserOwnAuthKeyChange + and usmUserPublic for a user who employs + authentication, and + - usmUserPrivKeyChange, usmUserOwnPrivKeyChange + and usmUserPublic for a user who employs + privacy. + + Note that any user who employs authentication or + privacy must allow its secret(s) to be updated and + thus cannot be 'readOnly'. + + If an initial set operation tries to set the value to + 'readOnly' for a user who employs authentication or + privacy, then an 'inconsistentValue' error must be + returned. Note that if the value has been previously + set (implicit or explicit) to any value, then the rules + as defined in the StorageType Textual Convention apply. + + It is an implementation issue to decide if a SET for + a readOnly or permanent row is accepted at all. In some + contexts this may make sense, in others it may not. If + a SET for a readOnly or permanent row is not accepted + at all, then a 'wrongValue' error must be returned. + " + DEFVAL { nonVolatile } + ::= { usmUserEntry 12 } + +usmUserStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status of this conceptual row. + + Until instances of all corresponding columns are + appropriately configured, the value of the + corresponding instance of the usmUserStatus column + is 'notReady'. + + In particular, a newly created row for a user who + employs authentication, cannot be made active until the + corresponding usmUserCloneFrom and usmUserAuthKeyChange + have been set. + + Further, a newly created row for a user who also + employs privacy, cannot be made active until the + usmUserPrivKeyChange has been set. + + The RowStatus TC [RFC2579] requires that this + DESCRIPTION clause states under which circumstances + other objects in this row can be modified: + + The value of this object has no effect on whether + other objects in this conceptual row can be modified, + except for usmUserOwnAuthKeyChange and + usmUserOwnPrivKeyChange. For these 2 objects, the + value of usmUserStatus MUST be active. + " + ::= { usmUserEntry 13 } + +-- Conformance Information ******************************************* + +usmMIBCompliances OBJECT IDENTIFIER ::= { usmMIBConformance 1 } +usmMIBGroups OBJECT IDENTIFIER ::= { usmMIBConformance 2 } + +-- Compliance statements + +usmMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION "The compliance statement for SNMP engines which + implement the SNMP-USER-BASED-SM-MIB. + " + + MODULE -- this module + MANDATORY-GROUPS { usmMIBBasicGroup } + + OBJECT usmUserAuthProtocol + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT usmUserPrivProtocol + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + ::= { usmMIBCompliances 1 } + +-- Units of compliance +usmMIBBasicGroup OBJECT-GROUP + OBJECTS { + usmStatsUnsupportedSecLevels, + usmStatsNotInTimeWindows, + usmStatsUnknownUserNames, + usmStatsUnknownEngineIDs, + usmStatsWrongDigests, + usmStatsDecryptionErrors, + usmUserSpinLock, + usmUserSecurityName, + usmUserCloneFrom, + usmUserAuthProtocol, + usmUserAuthKeyChange, + usmUserOwnAuthKeyChange, + usmUserPrivProtocol, + usmUserPrivKeyChange, + usmUserOwnPrivKeyChange, + usmUserPublic, + usmUserStorageType, + usmUserStatus + } + STATUS current + DESCRIPTION "A collection of objects providing for configuration + of an SNMP engine which implements the SNMP + User-based Security Model. + " + ::= { usmMIBGroups 1 } + +END diff --git a/pandora_console/attachment/mibs/SNMP-VIEW-BASED-ACM-MIB b/pandora_console/attachment/mibs/SNMP-VIEW-BASED-ACM-MIB new file mode 100644 index 0000000000..66eb750b4c --- /dev/null +++ b/pandora_console/attachment/mibs/SNMP-VIEW-BASED-ACM-MIB @@ -0,0 +1,804 @@ +SNMP-VIEW-BASED-ACM-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF + MODULE-IDENTITY, OBJECT-TYPE, + snmpModules FROM SNMPv2-SMI + TestAndIncr, + RowStatus, StorageType FROM SNMPv2-TC + SnmpAdminString, + SnmpSecurityLevel, + SnmpSecurityModel FROM SNMP-FRAMEWORK-MIB; + +snmpVacmMIB MODULE-IDENTITY + LAST-UPDATED "9901200000Z" -- 20 Jan 1999, midnight + ORGANIZATION "SNMPv3 Working Group" + CONTACT-INFO "WG-email: snmpv3@lists.tislabs.com + Subscribe: majordomo@lists.tislabs.com + In message body: subscribe snmpv3 + + Chair: Russ Mundy + Trusted Information Systems + postal: 3060 Washington Rd + Glenwood MD 21738 + USA + email: mundy@tislabs.com + phone: +1-301-854-6889 + + Co-editor: Bert Wijnen + IBM T.J. Watson Research + postal: Schagen 33 + 3461 GL Linschoten + Netherlands + email: wijnen@vnet.ibm.com + phone: +31-348-432-794 + + Co-editor: Randy Presuhn + BMC Software, Inc + postal: 965 Stewart Drive + Sunnyvale, CA 94086 + USA + email: randy_presuhn@bmc.com + phone: +1-408-616-3100 + + Co-editor: Keith McCloghrie + Cisco Systems, Inc. + postal: 170 West Tasman Drive + San Jose, CA 95134-1706 + USA + email: kzm@cisco.com + phone: +1-408-526-5260 + " + DESCRIPTION "The management information definitions for the + View-based Access Control Model for SNMP. + " +-- Revision history + REVISION "9901200000Z" -- 20 Jan 1999, midnight + DESCRIPTION "Clarifications, published as RFC2575" + + REVISION "9711200000Z" -- 20 Nov 1997, midnight + DESCRIPTION "Initial version, published as RFC2275" + + ::= { snmpModules 16 } + +-- Administrative assignments **************************************** + +vacmMIBObjects OBJECT IDENTIFIER ::= { snmpVacmMIB 1 } +vacmMIBConformance OBJECT IDENTIFIER ::= { snmpVacmMIB 2 } + +-- Information about Local Contexts ********************************** + +vacmContextTable OBJECT-TYPE + SYNTAX SEQUENCE OF VacmContextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table of locally available contexts. + + This table provides information to SNMP Command + Generator applications so that they can properly + configure the vacmAccessTable to control access to + all contexts at the SNMP entity. + + This table may change dynamically if the SNMP entity + allows that contexts are added/deleted dynamically + (for instance when its configuration changes). Such + changes would happen only if the management + instrumentation at that SNMP entity recognizes more + (or fewer) contexts. + + The presence of entries in this table and of entries + in the vacmAccessTable are independent. That is, a + context identified by an entry in this table is not + necessarily referenced by any entries in the + vacmAccessTable; and the context(s) referenced by an + entry in the vacmAccessTable does not necessarily + currently exist and thus need not be identified by an + entry in this table. + + This table must be made accessible via the default + context so that Command Responder applications have + a standard way of retrieving the information. + + This table is read-only. It cannot be configured via + SNMP. + " + ::= { vacmMIBObjects 1 } + +vacmContextEntry OBJECT-TYPE + SYNTAX VacmContextEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Information about a particular context." + INDEX { + vacmContextName + } + ::= { vacmContextTable 1 } + +VacmContextEntry ::= SEQUENCE + { + vacmContextName SnmpAdminString + } + +vacmContextName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION "A human readable name identifying a particular + context at a particular SNMP entity. + + The empty contextName (zero length) represents the + default context. + " + ::= { vacmContextEntry 1 } + +-- Information about Groups ****************************************** + +vacmSecurityToGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF VacmSecurityToGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "This table maps a combination of securityModel and + securityName into a groupName which is used to define + an access control policy for a group of principals. + " + ::= { vacmMIBObjects 2 } + +vacmSecurityToGroupEntry OBJECT-TYPE + SYNTAX VacmSecurityToGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An entry in this table maps the combination of a + securityModel and securityName into a groupName. + " + INDEX { + vacmSecurityModel, + vacmSecurityName + } + ::= { vacmSecurityToGroupTable 1 } + +VacmSecurityToGroupEntry ::= SEQUENCE + { + vacmSecurityModel SnmpSecurityModel, + vacmSecurityName SnmpAdminString, + vacmGroupName SnmpAdminString, + vacmSecurityToGroupStorageType StorageType, + vacmSecurityToGroupStatus RowStatus + } + +vacmSecurityModel OBJECT-TYPE + SYNTAX SnmpSecurityModel(1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The Security Model, by which the vacmSecurityName + referenced by this entry is provided. + + Note, this object may not take the 'any' (0) value. + " + ::= { vacmSecurityToGroupEntry 1 } + +vacmSecurityName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The securityName for the principal, represented in a + Security Model independent format, which is mapped by + this entry to a groupName. + " + ::= { vacmSecurityToGroupEntry 2 } + +vacmGroupName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The name of the group to which this entry (e.g., the + combination of securityModel and securityName) + belongs. + + This groupName is used as index into the + vacmAccessTable to select an access control policy. + However, a value in this table does not imply that an + instance with the value exists in table vacmAccesTable. + " + ::= { vacmSecurityToGroupEntry 3 } + +vacmSecurityToGroupStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The storage type for this conceptual row. + Conceptual rows having the value 'permanent' need not + allow write-access to any columnar objects in the row. + " + DEFVAL { nonVolatile } + ::= { vacmSecurityToGroupEntry 4 } + +vacmSecurityToGroupStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status of this conceptual row. + + Until instances of all corresponding columns are + appropriately configured, the value of the + corresponding instance of the vacmSecurityToGroupStatus + column is 'notReady'. + + In particular, a newly created row cannot be made + active until a value has been set for vacmGroupName. + + The RowStatus TC [RFC2579] requires that this + DESCRIPTION clause states under which circumstances + other objects in this row can be modified: + + The value of this object has no effect on whether + other objects in this conceptual row can be modified. + " + ::= { vacmSecurityToGroupEntry 5 } + +-- Information about Access Rights *********************************** + +vacmAccessTable OBJECT-TYPE + SYNTAX SEQUENCE OF VacmAccessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The table of access rights for groups. + + Each entry is indexed by a groupName, a contextPrefix, + a securityModel and a securityLevel. To determine + whether access is allowed, one entry from this table + needs to be selected and the proper viewName from that + entry must be used for access control checking. + + To select the proper entry, follow these steps: + + 1) the set of possible matches is formed by the + intersection of the following sets of entries: + the set of entries with identical vacmGroupName + the union of these two sets: + - the set with identical vacmAccessContextPrefix + - the set of entries with vacmAccessContextMatch + value of 'prefix' and matching + vacmAccessContextPrefix + intersected with the union of these two sets: + - the set of entries with identical + vacmSecurityModel + - the set of entries with vacmSecurityModel + value of 'any' + intersected with the set of entries with + vacmAccessSecurityLevel value less than or equal + to the requested securityLevel + + 2) if this set has only one member, we're done + otherwise, it comes down to deciding how to weight + the preferences between ContextPrefixes, + SecurityModels, and SecurityLevels as follows: + a) if the subset of entries with securityModel + matching the securityModel in the message is + not empty, then discard the rest. + b) if the subset of entries with + vacmAccessContextPrefix matching the contextName + in the message is not empty, + then discard the rest + c) discard all entries with ContextPrefixes shorter + than the longest one remaining in the set + d) select the entry with the highest securityLevel + + Please note that for securityLevel noAuthNoPriv, all + groups are really equivalent since the assumption that + the securityName has been authenticated does not hold. + " + ::= { vacmMIBObjects 4 } + +vacmAccessEntry OBJECT-TYPE + SYNTAX VacmAccessEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "An access right configured in the Local Configuration + Datastore (LCD) authorizing access to an SNMP context. + + Entries in this table can use an instance value for + object vacmGroupName even if no entry in table + vacmAccessSecurityToGroupTable has a corresponding + value for object vacmGroupName. + " + INDEX { vacmGroupName, + vacmAccessContextPrefix, + vacmAccessSecurityModel, + vacmAccessSecurityLevel + } + ::= { vacmAccessTable 1 } + +VacmAccessEntry ::= SEQUENCE + { + vacmAccessContextPrefix SnmpAdminString, + vacmAccessSecurityModel SnmpSecurityModel, + vacmAccessSecurityLevel SnmpSecurityLevel, + vacmAccessContextMatch INTEGER, + vacmAccessReadViewName SnmpAdminString, + vacmAccessWriteViewName SnmpAdminString, + vacmAccessNotifyViewName SnmpAdminString, + vacmAccessStorageType StorageType, + vacmAccessStatus RowStatus + } + +vacmAccessContextPrefix OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(0..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "In order to gain the access rights allowed by this + conceptual row, a contextName must match exactly + (if the value of vacmAccessContextMatch is 'exact') + or partially (if the value of vacmAccessContextMatch + is 'prefix') to the value of the instance of this + object. + " + ::= { vacmAccessEntry 1 } + +vacmAccessSecurityModel OBJECT-TYPE + SYNTAX SnmpSecurityModel + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "In order to gain the access rights allowed by this + conceptual row, this securityModel must be in use. + " + ::= { vacmAccessEntry 2 } + +vacmAccessSecurityLevel OBJECT-TYPE + SYNTAX SnmpSecurityLevel + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The minimum level of security required in order to + gain the access rights allowed by this conceptual + row. A securityLevel of noAuthNoPriv is less than + authNoPriv which in turn is less than authPriv. + + If multiple entries are equally indexed except for + this vacmAccessSecurityLevel index, then the entry + which has the highest value for + vacmAccessSecurityLevel is selected. + " + ::= { vacmAccessEntry 3 } + +vacmAccessContextMatch OBJECT-TYPE + SYNTAX INTEGER + { exact (1), -- exact match of prefix and contextName + prefix (2) -- Only match to the prefix + } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "If the value of this object is exact(1), then all + rows where the contextName exactly matches + vacmAccessContextPrefix are selected. + + If the value of this object is prefix(2), then all + rows where the contextName whose starting octets + exactly match vacmAccessContextPrefix are selected. + This allows for a simple form of wildcarding. + " + DEFVAL { exact } + ::= { vacmAccessEntry 4 } + +vacmAccessReadViewName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The value of an instance of this object identifies + the MIB view of the SNMP context to which this + conceptual row authorizes read access. + + The identified MIB view is that one for which the + vacmViewTreeFamilyViewName has the same value as the + instance of this object; if the value is the empty + string or if there is no active MIB view having this + value of vacmViewTreeFamilyViewName, then no access + is granted. + " + DEFVAL { ''H } -- the empty string + ::= { vacmAccessEntry 5 } + +vacmAccessWriteViewName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The value of an instance of this object identifies + the MIB view of the SNMP context to which this + conceptual row authorizes write access. + + The identified MIB view is that one for which the + vacmViewTreeFamilyViewName has the same value as the + instance of this object; if the value is the empty + string or if there is no active MIB view having this + value of vacmViewTreeFamilyViewName, then no access + is granted. + " + DEFVAL { ''H } -- the empty string + ::= { vacmAccessEntry 6 } + +vacmAccessNotifyViewName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(0..32)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The value of an instance of this object identifies + the MIB view of the SNMP context to which this + conceptual row authorizes access for notifications. + + The identified MIB view is that one for which the + vacmViewTreeFamilyViewName has the same value as the + instance of this object; if the value is the empty + string or if there is no active MIB view having this + value of vacmViewTreeFamilyViewName, then no access + is granted. + " + DEFVAL { ''H } -- the empty string + ::= { vacmAccessEntry 7 } + +vacmAccessStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The storage type for this conceptual row. + + Conceptual rows having the value 'permanent' need not + allow write-access to any columnar objects in the row. + " + DEFVAL { nonVolatile } + ::= { vacmAccessEntry 8 } + +vacmAccessStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status of this conceptual row. + + The RowStatus TC [RFC2579] requires that this + DESCRIPTION clause states under which circumstances + other objects in this row can be modified: + + The value of this object has no effect on whether + other objects in this conceptual row can be modified. + " + ::= { vacmAccessEntry 9 } + +-- Information about MIB views *************************************** + +-- Support for instance-level granularity is optional. +-- +-- In some implementations, instance-level access control +-- granularity may come at a high performance cost. Managers +-- should avoid requesting such configurations unnecessarily. + +vacmMIBViews OBJECT IDENTIFIER ::= { vacmMIBObjects 5 } + +vacmViewSpinLock OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS current + DESCRIPTION "An advisory lock used to allow cooperating SNMP + Command Generator applications to coordinate their + use of the Set operation in creating or modifying + views. + + When creating a new view or altering an existing + view, it is important to understand the potential + interactions with other uses of the view. The + vacmViewSpinLock should be retrieved. The name of + the view to be created should be determined to be + unique by the SNMP Command Generator application by + consulting the vacmViewTreeFamilyTable. Finally, + the named view may be created (Set), including the + advisory lock. + If another SNMP Command Generator application has + altered the views in the meantime, then the spin + lock's value will have changed, and so this creation + will fail because it will specify the wrong value for + the spin lock. + + Since this is an advisory lock, the use of this lock + is not enforced. + " + ::= { vacmMIBViews 1 } + +vacmViewTreeFamilyTable OBJECT-TYPE + SYNTAX SEQUENCE OF VacmViewTreeFamilyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Locally held information about families of subtrees + within MIB views. + + Each MIB view is defined by two sets of view subtrees: + - the included view subtrees, and + - the excluded view subtrees. + Every such view subtree, both the included and the + excluded ones, is defined in this table. + + To determine if a particular object instance is in + a particular MIB view, compare the object instance's + OBJECT IDENTIFIER with each of the MIB view's active + entries in this table. If none match, then the + object instance is not in the MIB view. If one or + more match, then the object instance is included in, + or excluded from, the MIB view according to the + value of vacmViewTreeFamilyType in the entry whose + value of vacmViewTreeFamilySubtree has the most + sub-identifiers. If multiple entries match and have + the same number of sub-identifiers (when wildcarding + is specified with the value of vacmViewTreeFamilyMask), + then the lexicographically greatest instance of + vacmViewTreeFamilyType determines the inclusion or + exclusion. + + An object instance's OBJECT IDENTIFIER X matches an + active entry in this table when the number of + sub-identifiers in X is at least as many as in the + value of vacmViewTreeFamilySubtree for the entry, + and each sub-identifier in the value of + vacmViewTreeFamilySubtree matches its corresponding + sub-identifier in X. Two sub-identifiers match + either if the corresponding bit of the value of + vacmViewTreeFamilyMask for the entry is zero (the + 'wild card' value), or if they are equal. + + A 'family' of subtrees is the set of subtrees defined + by a particular combination of values of + vacmViewTreeFamilySubtree and vacmViewTreeFamilyMask. + In the case where no 'wild card' is defined in the + vacmViewTreeFamilyMask, the family of subtrees reduces + to a single subtree. + + When creating or changing MIB views, an SNMP Command + Generator application should utilize the + vacmViewSpinLock to try to avoid collisions. See + DESCRIPTION clause of vacmViewSpinLock. + + When creating MIB views, it is strongly advised that + first the 'excluded' vacmViewTreeFamilyEntries are + created and then the 'included' entries. + + When deleting MIB views, it is strongly advised that + first the 'included' vacmViewTreeFamilyEntries are + deleted and then the 'excluded' entries. + + If a create for an entry for instance-level access + control is received and the implementation does not + support instance-level granularity, then an + inconsistentName error must be returned. + " + ::= { vacmMIBViews 2 } + +vacmViewTreeFamilyEntry OBJECT-TYPE + SYNTAX VacmViewTreeFamilyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "Information on a particular family of view subtrees + included in or excluded from a particular SNMP + context's MIB view. + + Implementations must not restrict the number of + families of view subtrees for a given MIB view, + except as dictated by resource constraints on the + overall number of entries in the + vacmViewTreeFamilyTable. + + If no conceptual rows exist in this table for a given + MIB view (viewName), that view may be thought of as + consisting of the empty set of view subtrees. + " + INDEX { vacmViewTreeFamilyViewName, + vacmViewTreeFamilySubtree + } + ::= { vacmViewTreeFamilyTable 1 } + +VacmViewTreeFamilyEntry ::= SEQUENCE + { + vacmViewTreeFamilyViewName SnmpAdminString, + vacmViewTreeFamilySubtree OBJECT IDENTIFIER, + vacmViewTreeFamilyMask OCTET STRING, + vacmViewTreeFamilyType INTEGER, + vacmViewTreeFamilyStorageType StorageType, + vacmViewTreeFamilyStatus RowStatus + } + +vacmViewTreeFamilyViewName OBJECT-TYPE + SYNTAX SnmpAdminString (SIZE(1..32)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The human readable name for a family of view subtrees. + " + ::= { vacmViewTreeFamilyEntry 1 } + +vacmViewTreeFamilySubtree OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION "The MIB subtree which when combined with the + corresponding instance of vacmViewTreeFamilyMask + defines a family of view subtrees. + " + ::= { vacmViewTreeFamilyEntry 2 } + +vacmViewTreeFamilyMask OBJECT-TYPE + SYNTAX OCTET STRING (SIZE (0..16)) + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The bit mask which, in combination with the + corresponding instance of vacmViewTreeFamilySubtree, + defines a family of view subtrees. + + Each bit of this bit mask corresponds to a + sub-identifier of vacmViewTreeFamilySubtree, with the + most significant bit of the i-th octet of this octet + string value (extended if necessary, see below) + corresponding to the (8*i - 7)-th sub-identifier, and + the least significant bit of the i-th octet of this + octet string corresponding to the (8*i)-th + sub-identifier, where i is in the range 1 through 16. + + Each bit of this bit mask specifies whether or not + the corresponding sub-identifiers must match when + determining if an OBJECT IDENTIFIER is in this + family of view subtrees; a '1' indicates that an + exact match must occur; a '0' indicates 'wild card', + i.e., any sub-identifier value matches. + + Thus, the OBJECT IDENTIFIER X of an object instance + is contained in a family of view subtrees if, for + each sub-identifier of the value of + vacmViewTreeFamilySubtree, either: + + the i-th bit of vacmViewTreeFamilyMask is 0, or + + the i-th sub-identifier of X is equal to the i-th + sub-identifier of the value of + vacmViewTreeFamilySubtree. + + If the value of this bit mask is M bits long and + there are more than M sub-identifiers in the + corresponding instance of vacmViewTreeFamilySubtree, + then the bit mask is extended with 1's to be the + required length. + + Note that when the value of this object is the + zero-length string, this extension rule results in + a mask of all-1's being used (i.e., no 'wild card'), + and the family of view subtrees is the one view + subtree uniquely identified by the corresponding + instance of vacmViewTreeFamilySubtree. + + Note that masks of length greater than zero length + do not need to be supported. In this case this + object is made read-only. + " + DEFVAL { ''H } + ::= { vacmViewTreeFamilyEntry 3 } + +vacmViewTreeFamilyType OBJECT-TYPE + SYNTAX INTEGER { included(1), excluded(2) } + MAX-ACCESS read-create + STATUS current + DESCRIPTION "Indicates whether the corresponding instances of + vacmViewTreeFamilySubtree and vacmViewTreeFamilyMask + define a family of view subtrees which is included in + or excluded from the MIB view. + " + DEFVAL { included } + ::= { vacmViewTreeFamilyEntry 4 } + +vacmViewTreeFamilyStorageType OBJECT-TYPE + SYNTAX StorageType + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The storage type for this conceptual row. + + Conceptual rows having the value 'permanent' need not + allow write-access to any columnar objects in the row. + " + DEFVAL { nonVolatile } + ::= { vacmViewTreeFamilyEntry 5 } + +vacmViewTreeFamilyStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION "The status of this conceptual row. + + The RowStatus TC [RFC2579] requires that this + DESCRIPTION clause states under which circumstances + other objects in this row can be modified: + + The value of this object has no effect on whether + other objects in this conceptual row can be modified. + " + ::= { vacmViewTreeFamilyEntry 6 } + +-- Conformance information ******************************************* + +vacmMIBCompliances OBJECT IDENTIFIER ::= { vacmMIBConformance 1 } +vacmMIBGroups OBJECT IDENTIFIER ::= { vacmMIBConformance 2 } + +-- Compliance statements ********************************************* + +vacmMIBCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION "The compliance statement for SNMP engines which + implement the SNMP View-based Access Control Model + configuration MIB. + " + MODULE -- this module + MANDATORY-GROUPS { vacmBasicGroup } + + OBJECT vacmAccessContextMatch + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmAccessReadViewName + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmAccessWriteViewName + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmAccessNotifyViewName + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmAccessStorageType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmAccessStatus + MIN-ACCESS read-only + DESCRIPTION "Create/delete/modify access to the + vacmAccessTable is not required. + " + + OBJECT vacmViewTreeFamilyMask + WRITE-SYNTAX OCTET STRING (SIZE (0)) + MIN-ACCESS read-only + DESCRIPTION "Support for configuration via SNMP of subtree + families using wild-cards is not required. + " + + OBJECT vacmViewTreeFamilyType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmViewTreeFamilyStorageType + MIN-ACCESS read-only + DESCRIPTION "Write access is not required." + + OBJECT vacmViewTreeFamilyStatus + MIN-ACCESS read-only + DESCRIPTION "Create/delete/modify access to the + vacmViewTreeFamilyTable is not required. + " + ::= { vacmMIBCompliances 1 } + +-- Units of conformance ********************************************** + +vacmBasicGroup OBJECT-GROUP + OBJECTS { + vacmContextName, + vacmGroupName, + vacmSecurityToGroupStorageType, + vacmSecurityToGroupStatus, + vacmAccessContextMatch, + vacmAccessReadViewName, + vacmAccessWriteViewName, + vacmAccessNotifyViewName, + vacmAccessStorageType, + vacmAccessStatus, + vacmViewSpinLock, + vacmViewTreeFamilyMask, + vacmViewTreeFamilyType, + vacmViewTreeFamilyStorageType, + vacmViewTreeFamilyStatus + } + STATUS current + DESCRIPTION "A collection of objects providing for remote + configuration of an SNMP engine which implements + the SNMP View-based Access Control Model. + " + ::= { vacmMIBGroups 1 } + +END diff --git a/pandora_console/attachment/mibs/SNMPv2-CONF.my.txt b/pandora_console/attachment/mibs/SNMPv2-CONF.my.txt new file mode 100644 index 0000000000..e69de29bb2 diff --git a/pandora_console/attachment/mibs/SNMPv2-MIB b/pandora_console/attachment/mibs/SNMPv2-MIB new file mode 100644 index 0000000000..74e88e1feb --- /dev/null +++ b/pandora_console/attachment/mibs/SNMPv2-MIB @@ -0,0 +1,773 @@ +-- Changes to rfc1907 - SNMPv2-MIB (object for SNMPv2 protocol) +-- NOTE: the following should be in a group - +-- snmpTrapEnterprise, snmpTrapOID, and +-- warmStart! +-- dperkins@scruznet.com + +SNMPv2-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + TimeTicks, Counter32, snmpModules, mib-2 + FROM SNMPv2-SMI + DisplayString, TestAndIncr, TimeStamp + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF; + + +snmpMIB MODULE-IDENTITY + LAST-UPDATED "9511090000Z" + ORGANIZATION "IETF SNMPv2 Working Group" + CONTACT-INFO + " Marshall T. Rose + + Postal: Dover Beach Consulting, Inc. + 420 Whisman Court + Mountain View, CA 94043-2186 + US + + Tel: +1 415 968 1052 + + E-mail: mrose@dbc.mtview.ca.us" + DESCRIPTION + "The MIB module for SNMPv2 entities." + REVISION "9304010000Z" + DESCRIPTION + "The initial revision of this MIB module was published as + RFC 1450." + ::= { snmpModules 1 } + + +snmpMIBObjects OBJECT IDENTIFIER ::= { snmpMIB 1 } + +-- ::= { snmpMIBObjects 1 } this OID is obsolete +-- ::= { snmpMIBObjects 2 } this OID is obsolete +-- ::= { snmpMIBObjects 3 } this OID is obsolete + + +-- the System group +-- +-- a collection of objects common to all managed systems. + +system OBJECT IDENTIFIER ::= { mib-2 1 } + +sysDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the entity. This value should + include the full name and version identification of the + system's hardware type, software operating-system, and + networking software." + ::= { system 1 } + +sysObjectID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor's authoritative identification of the network + management subsystem contained in the entity. This value is + allocated within the SMI enterprises subtree (1.3.6.1.4.1) + and provides an easy and unambiguous means for determining + `what kind of box' is being managed. For example, if vendor + `Flintstones, Inc.' was assigned the subtree + 1.3.6.1.4.1.4242, it could assign the identifier + 1.3.6.1.4.1.4242.1.1 to its `Fred Router'." + ::= { system 2 } + +sysUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) since the network + management portion of the system was last re-initialized." + ::= { system 3 } + +sysContact OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The textual identification of the contact person for this + managed node, together with information on how to contact + this person. If no contact information is known, the value + is the zero-length string." + ::= { system 4 } + +sysName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An administratively-assigned name for this managed node. + By convention, this is the node's fully-qualified domain + name. If the name is unknown, the value is the zero-length + string." + ::= { system 5 } + +sysLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The physical location of this node (e.g., `telephone + closet, 3rd floor'). If the location is unknown, the value + is the zero-length string." + ::= { system 6 } + +sysServices OBJECT-TYPE + SYNTAX INTEGER (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value which indicates the set of services that this + entity may potentially offers. The value is a sum. This + sum initially takes the value zero, Then, for each layer, L, + in the range 1 through 7, that this node performs + transactions for, 2 raised to (L - 1) is added to the sum. + For example, a node which performs only routing functions + would have a value of 4 (2^(3-1)). In contrast, a node + which is a host offering application services would have a + value of 72 (2^(4-1) + 2^(7-1)). Note that in the context + of the Internet suite of protocols, values should be + calculated accordingly: + + layer functionality + 1 physical (e.g., repeaters) + 2 datalink/subnetwork (e.g., bridges) + 3 internet (e.g., supports the IP) + 4 end-to-end (e.g., supports the TCP) + 7 applications (e.g., supports the SMTP) + + For systems including OSI protocols, layers 5 and 6 may also + be counted." + ::= { system 7 } + + +-- object resource information +-- +-- a collection of objects which describe the SNMPv2 entity's +-- (statically and dynamically configurable) support of +-- various MIB modules. + +sysORLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the most recent + change in state or value of any instance of sysORID." + ::= { system 8 } + +sysORTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysOREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table listing the capabilities of the + local SNMPv2 entity acting in an agent role with respect to + various MIB modules. SNMPv2 entities having dynamically- + configurable support of MIB modules will have a + dynamically-varying number of conceptual rows." + ::= { system 9 } + +sysOREntry OBJECT-TYPE + SYNTAX SysOREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the sysORTable." + INDEX { sysORIndex } + ::= { sysORTable 1 } + +SysOREntry ::= SEQUENCE { + sysORIndex INTEGER, + sysORID OBJECT IDENTIFIER, + sysORDescr DisplayString, + sysORUpTime TimeStamp +} + +sysORIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The auxiliary variable used for identifying instances of + the columnar objects in the sysORTable." + ::= { sysOREntry 1 } + +sysORID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An authoritative identification of a capabilities statement + with respect to various MIB modules supported by the local + SNMPv2 entity acting in an agent role." + ::= { sysOREntry 2 } + +sysORDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the capabilities identified by the + corresponding instance of sysORID." + ::= { sysOREntry 3 } + +sysORUpTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time this conceptual row was + last instanciated." + ::= { sysOREntry 4 } + + +-- the SNMP group +-- +-- a collection of objects providing basic instrumentation and +-- control of an SNMP entity. + +snmp OBJECT IDENTIFIER ::= { mib-2 11 } + +snmpInPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages delivered to the SNMP entity + from the transport service." + ::= { snmp 1 } + +snmpInBadVersions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of SNMP messages which were delivered to + the SNMP entity and were for an unsupported SNMP version." + ::= { snmp 3 } + +snmpInBadCommunityNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of SNMP messages delivered to the SNMP + entity which used a SNMP community name not known to said + entity." + ::= { snmp 4 } + +snmpInBadCommunityUses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of SNMP messages delivered to the SNMP + entity which represented an SNMP operation which was not + allowed by the SNMP community named in the message." + ::= { snmp 5 } + +snmpInASNParseErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of ASN.1 or BER errors encountered by the + SNMP entity when decoding received SNMP messages." + ::= { snmp 6 } + +snmpEnableAuthenTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether the SNMP entity is permitted to generate + authenticationFailure traps. The value of this object + overrides any configuration information; as such, it + provides a means whereby all authenticationFailure traps may + be disabled. + + Note that it is strongly recommended that this object be + stored in non-volatile memory so that it remains constant + across re-initializations of the network management system." + ::= { snmp 30 } + +snmpSilentDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of GetRequest-PDUs, GetNextRequest-PDUs, + GetBulkRequest-PDUs, SetRequest-PDUs, and InformRequest-PDUs + delivered to the SNMP entity which were silently dropped + because the size of a reply containing an alternate + Response-PDU with an empty variable-bindings field was + greater than either a local constraint or the maximum + message size associated with the originator of the request." + ::= { snmp 31 } + +snmpProxyDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of GetRequest-PDUs, GetNextRequest-PDUs, + GetBulkRequest-PDUs, SetRequest-PDUs, and InformRequest-PDUs + delivered to the SNMP entity which were silently dropped + because the transmission of the (possibly translated) + message to a proxy target failed in a manner (other than a + time-out) such that no Response-PDU could be returned." + ::= { snmp 32 } + + +-- information for notifications +-- +-- a collection of objects which allow the SNMPv2 entity, when +-- acting in an agent role, to be configured to generate +-- SNMPv2-Trap-PDUs. + +snmpTrap OBJECT IDENTIFIER ::= { snmpMIBObjects 4 } + + +snmpTrapOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The authoritative identification of the notification + currently being sent. This variable occurs as the second + varbind in every SNMPv2-Trap-PDU and InformRequest-PDU." + ::= { snmpTrap 1 } + +-- ::= { snmpTrap 2 } this OID is obsolete + +snmpTrapEnterprise OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The authoritative identification of the enterprise + associated with the trap currently being sent. When a + SNMPv2 proxy agent is mapping an RFC1157 Trap-PDU into a + SNMPv2-Trap-PDU, this variable occurs as the last varbind." + ::= { snmpTrap 3 } + +-- ::= { snmpTrap 4 } this OID is obsolete + + +-- well-known traps + +snmpTraps OBJECT IDENTIFIER ::= { snmpMIBObjects 5 } + +coldStart NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A coldStart trap signifies that the SNMPv2 entity, acting + in an agent role, is reinitializing itself and that its + configuration may have been altered." + ::= { snmpTraps 1 } + +warmStart NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A warmStart trap signifies that the SNMPv2 entity, acting + in an agent role, is reinitializing itself such that its + configuration is unaltered." + ::= { snmpTraps 2 } + +-- Note the linkDown NOTIFICATION-TYPE ::= { snmpTraps 3 } +-- and the linkUp NOTIFICATION-TYPE ::= { snmpTraps 4 } +-- are defined in RFC 1573 + +authenticationFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "An authenticationFailure trap signifies that the SNMPv2 + entity, acting in an agent role, has received a protocol + message that is not properly authenticated. While all + implementations of the SNMPv2 must be capable of generating + this trap, the snmpEnableAuthenTraps object indicates + whether this trap will be generated." + ::= { snmpTraps 5 } + +-- Note the egpNeighborLoss NOTIFICATION-TYPE ::= { snmpTraps 6 } +-- is defined in RFC 1213 + + +-- the set group +-- +-- a collection of objects which allow several cooperating +-- SNMPv2 entities, all acting in a manager role, to +-- coordinate their use of the SNMPv2 set operation. + +snmpSet OBJECT IDENTIFIER ::= { snmpMIBObjects 6 } + + +snmpSetSerialNo OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An advisory lock used to allow several cooperating SNMPv2 + entities, all acting in a manager role, to coordinate their + use of the SNMPv2 set operation. + + This object is used for coarse-grain coordination. To + achieve fine-grain coordination, one or more similar objects + might be defined within each MIB group, as appropriate." + ::= { snmpSet 1 } + + +-- conformance information + +snmpMIBConformance + OBJECT IDENTIFIER ::= { snmpMIB 2 } + +snmpMIBCompliances + OBJECT IDENTIFIER ::= { snmpMIBConformance 1 } +snmpMIBGroups OBJECT IDENTIFIER ::= { snmpMIBConformance 2 } + + +-- compliance statements + +-- ::= { snmpMIBCompliances 1 } this OID is obsolete + +snmpBasicCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement the SNMPv2 MIB." + MODULE -- this module + MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup, + snmpBasicNotificationsGroup } + + GROUP snmpCommunityGroup + DESCRIPTION + "This group is mandatory for SNMPv2 entities which + support community-based authentication." + + ::= { snmpMIBCompliances 2 } + + +-- units of conformance + +-- ::= { snmpMIBGroups 1 } this OID is obsolete +-- ::= { snmpMIBGroups 2 } this OID is obsolete +-- ::= { snmpMIBGroups 3 } this OID is obsolete +-- ::= { snmpMIBGroups 4 } this OID is obsolete + +snmpGroup OBJECT-GROUP + OBJECTS { snmpInPkts, + snmpInBadVersions, + snmpInASNParseErrs, + snmpSilentDrops, + snmpProxyDrops, + snmpEnableAuthenTraps } + STATUS current + DESCRIPTION + "A collection of objects providing basic instrumentation and + control of an SNMPv2 entity." + ::= { snmpMIBGroups 8 } + +snmpCommunityGroup OBJECT-GROUP + OBJECTS { snmpInBadCommunityNames, + snmpInBadCommunityUses } + STATUS current + DESCRIPTION + "A collection of objects providing basic instrumentation of + a SNMPv2 entity which supports community-based + authentication." + ::= { snmpMIBGroups 9 } + +snmpSetGroup OBJECT-GROUP + OBJECTS { snmpSetSerialNo } + STATUS current + DESCRIPTION + "A collection of objects which allow several cooperating + SNMPv2 entities, all acting in a manager role, to coordinate + their use of the SNMPv2 set operation." + ::= { snmpMIBGroups 5 } + +systemGroup OBJECT-GROUP + OBJECTS { sysDescr, sysObjectID, sysUpTime, + sysContact, sysName, sysLocation, + sysServices, + sysORLastChange, sysORID, + sysORUpTime, sysORDescr } + STATUS current + DESCRIPTION + "The system group defines objects which are common to all + managed systems." + ::= { snmpMIBGroups 6 } + +snmpBasicNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { coldStart, authenticationFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { snmpMIBGroups 7 } + + +-- definitions in RFC 1213 made obsolete by the inclusion of a +-- subset of the snmp group in this MIB + +snmpOutPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Messages which were + passed from the SNMP protocol entity to the + transport service." + ::= { snmp 2 } + +-- { snmp 7 } is not used + +snmpInTooBigs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `tooBig'." + ::= { snmp 8 } + +snmpInNoSuchNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `noSuchName'." + ::= { snmp 9 } + +snmpInBadValues OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `badValue'." + ::= { snmp 10 } + +snmpInReadOnlys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number valid SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `readOnly'. It should be noted that it is a + protocol error to generate an SNMP PDU which + contains the value `readOnly' in the error-status + field, as such this object is provided as a means + of detecting incorrect implementations of the + SNMP." + ::= { snmp 11 } + +snmpInGenErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `genErr'." + ::= { snmp 12 } + +snmpInTotalReqVars OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of MIB objects which have been + retrieved successfully by the SNMP protocol entity + as the result of receiving valid SNMP Get-Request + and Get-Next PDUs." + ::= { snmp 13 } + +snmpInTotalSetVars OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of MIB objects which have been + altered successfully by the SNMP protocol entity + as the result of receiving valid SNMP Set-Request + PDUs." + ::= { snmp 14 } + +snmpInGetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Request PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 15 } + +snmpInGetNexts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Next PDUs which have + been accepted and processed by the SNMP protocol + entity." + ::= { snmp 16 } + +snmpInSetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Set-Request PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 17 } + +snmpInGetResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Response PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 18 } + +snmpInTraps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Trap PDUs which have + been accepted and processed by the SNMP protocol + entity." + ::= { snmp 19 } + +snmpOutTooBigs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `tooBig.'" + ::= { snmp 20 } + +snmpOutNoSuchNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status is + `noSuchName'." + ::= { snmp 21 } + +snmpOutBadValues OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `badValue'." + ::= { snmp 22 } + + +-- { snmp 23 } is not used + +snmpOutGenErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `genErr'." + ::= { snmp 24 } + +snmpOutGetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Request PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 25 } + +snmpOutGetNexts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Next PDUs which have + been generated by the SNMP protocol entity." + ::= { snmp 26 } + +snmpOutSetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Set-Request PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 27 } + +snmpOutGetResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Response PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 28 } + +snmpOutTraps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Trap PDUs which have + been generated by the SNMP protocol entity." + ::= { snmp 29 } + +snmpObsoleteGroup OBJECT-GROUP + OBJECTS { snmpOutPkts, snmpInTooBigs, snmpInNoSuchNames, + snmpInBadValues, snmpInReadOnlys, snmpInGenErrs, + snmpInTotalReqVars, snmpInTotalSetVars, + snmpInGetRequests, snmpInGetNexts, snmpInSetRequests, + snmpInGetResponses, snmpInTraps, snmpOutTooBigs, + snmpOutNoSuchNames, snmpOutBadValues, snmpOutGenErrs, + snmpOutGetRequests, snmpOutGetNexts, snmpOutSetRequests, + snmpOutGetResponses, snmpOutTraps } + STATUS obsolete + DESCRIPTION + "A collection of objects from RFC 1213 made obsolete by this + MIB." + ::= { snmpMIBGroups 10 } + +END diff --git a/pandora_console/attachment/mibs/SNMPv2-MIB.txt b/pandora_console/attachment/mibs/SNMPv2-MIB.txt new file mode 100644 index 0000000000..838270a914 --- /dev/null +++ b/pandora_console/attachment/mibs/SNMPv2-MIB.txt @@ -0,0 +1,780 @@ +-- ***************************************************************** +-- SNMPv2-MIB.my: SNMPv2 MIB file +-- +-- May 1994, Jeffrey T. Johnson +-- +-- Copyright (c) 1994-1997 by cisco Systems, Inc. +-- All rights reserved. +-- +-- ***************************************************************** +-- +-- This mib was extracted from RFC 1907 + +SNMPv2-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + TimeTicks, Counter32, snmpModules, mib-2 + FROM SNMPv2-SMI + DisplayString, TestAndIncr, TimeStamp + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP, NOTIFICATION-GROUP + FROM SNMPv2-CONF; + + + + +snmpMIB MODULE-IDENTITY + LAST-UPDATED "9511090000Z" + ORGANIZATION "IETF SNMPv2 Working Group" + CONTACT-INFO + " Marshall T. Rose + + Postal: Dover Beach Consulting, Inc. + 420 Whisman Court + Mountain View, CA 94043-2186 + US + + Tel: +1 415 968 1052 + + E-mail: mrose@dbc.mtview.ca.us" + DESCRIPTION + "The MIB module for SNMPv2 entities." + REVISION "9304010000Z" + DESCRIPTION + "The initial revision of this MIB module was published as + RFC 1450." + ::= { snmpModules 1 } + + +snmpMIBObjects OBJECT IDENTIFIER ::= { snmpMIB 1 } + +-- ::= { snmpMIBObjects 1 } this OID is obsolete +-- ::= { snmpMIBObjects 2 } this OID is obsolete +-- ::= { snmpMIBObjects 3 } this OID is obsolete + + +-- the System group +-- +-- a collection of objects common to all managed systems. + +system OBJECT IDENTIFIER ::= { mib-2 1 } + +sysDescr OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the entity. This value should + include the full name and version identification of the + system's hardware type, software operating-system, and + networking software." + ::= { system 1 } + +sysObjectID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The vendor's authoritative identification of the network + management subsystem contained in the entity. This value is + allocated within the SMI enterprises subtree (1.3.6.1.4.1) + and provides an easy and unambiguous means for determining + `what kind of box' is being managed. For example, if vendor + `Flintstones, Inc.' was assigned the subtree + 1.3.6.1.4.1.4242, it could assign the identifier + 1.3.6.1.4.1.4242.1.1 to its `Fred Router'." + ::= { system 2 } + +sysUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The time (in hundredths of a second) since the network + management portion of the system was last re-initialized." + ::= { system 3 } + +sysContact OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The textual identification of the contact person for this + managed node, together with information on how to contact + this person. If no contact information is known, the value + is the zero-length string." + ::= { system 4 } + +sysName OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An administratively-assigned name for this managed node. + By convention, this is the node's fully-qualified domain + name. If the name is unknown, the value is the zero-length + string." + ::= { system 5 } + +sysLocation OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The physical location of this node (e.g., `telephone + closet, 3rd floor'). If the location is unknown, the value + is the zero-length string." + ::= { system 6 } + +sysServices OBJECT-TYPE + SYNTAX INTEGER (0..127) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A value which indicates the set of services that this + entity may potentially offers. The value is a sum. This + sum initially takes the value zero, Then, for each layer, L, + in the range 1 through 7, that this node performs + transactions for, 2 raised to (L - 1) is added to the sum. + For example, a node which performs only routing functions + would have a value of 4 (2^(3-1)). In contrast, a node + which is a host offering application services would have a + value of 72 (2^(4-1) + 2^(7-1)). Note that in the context + of the Internet suite of protocols, values should be + calculated accordingly: + + layer functionality + 1 physical (e.g., repeaters) + 2 datalink/subnetwork (e.g., bridges) + 3 internet (e.g., supports the IP) + 4 end-to-end (e.g., supports the TCP) + 7 applications (e.g., supports the SMTP) + + For systems including OSI protocols, layers 5 and 6 may also + be counted." + ::= { system 7 } + + +-- object resource information +-- +-- a collection of objects which describe the SNMPv2 entity's +-- (statically and dynamically configurable) support of +-- various MIB modules. + +sysORLastChange OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time of the most recent + change in state or value of any instance of sysORID." + ::= { system 8 } + +sysORTable OBJECT-TYPE + SYNTAX SEQUENCE OF SysOREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The (conceptual) table listing the capabilities of the + local SNMPv2 entity acting in an agent role with respect to + various MIB modules. SNMPv2 entities having dynamically- + configurable support of MIB modules will have a + dynamically-varying number of conceptual rows." + ::= { system 9 } + +sysOREntry OBJECT-TYPE + SYNTAX SysOREntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry (conceptual row) in the sysORTable." + INDEX { sysORIndex } + ::= { sysORTable 1 } + +SysOREntry ::= SEQUENCE { + sysORIndex INTEGER, + sysORID OBJECT IDENTIFIER, + sysORDescr DisplayString, + sysORUpTime TimeStamp +} + +sysORIndex OBJECT-TYPE + SYNTAX INTEGER (1..2147483647) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The auxiliary variable used for identifying instances of + the columnar objects in the sysORTable." + ::= { sysOREntry 1 } + +sysORID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An authoritative identification of a capabilities statement + with respect to various MIB modules supported by the local + SNMPv2 entity acting in an agent role." + ::= { sysOREntry 2 } + +sysORDescr OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A textual description of the capabilities identified by the + corresponding instance of sysORID." + ::= { sysOREntry 3 } + +sysORUpTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time this conceptual row was + last instanciated." + ::= { sysOREntry 4 } + + +-- the SNMP group +-- +-- a collection of objects providing basic instrumentation and +-- control of an SNMP entity. + +snmp OBJECT IDENTIFIER ::= { mib-2 11 } + +snmpInPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of messages delivered to the SNMP entity + from the transport service." + ::= { snmp 1 } + +snmpInBadVersions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of SNMP messages which were delivered to + the SNMP entity and were for an unsupported SNMP version." + ::= { snmp 3 } + +snmpInBadCommunityNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of SNMP messages delivered to the SNMP + entity which used a SNMP community name not known to said + entity." + ::= { snmp 4 } + +snmpInBadCommunityUses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of SNMP messages delivered to the SNMP + entity which represented an SNMP operation which was not + allowed by the SNMP community named in the message." + ::= { snmp 5 } + +snmpInASNParseErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of ASN.1 or BER errors encountered by the + SNMP entity when decoding received SNMP messages." + ::= { snmp 6 } + +snmpEnableAuthenTraps OBJECT-TYPE + SYNTAX INTEGER { enabled(1), disabled(2) } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Indicates whether the SNMP entity is permitted to generate + authenticationFailure traps. The value of this object + overrides any configuration information; as such, it + provides a means whereby all authenticationFailure traps may + be disabled. + + Note that it is strongly recommended that this object be + stored in non-volatile memory so that it remains constant + across re-initializations of the network management system." + ::= { snmp 30 } + +snmpSilentDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of GetRequest-PDUs, GetNextRequest-PDUs, + GetBulkRequest-PDUs, SetRequest-PDUs, and InformRequest-PDUs + delivered to the SNMP entity which were silently dropped + because the size of a reply containing an alternate + Response-PDU with an empty variable-bindings field was + greater than either a local constraint or the maximum + message size associated with the originator of the request." + ::= { snmp 31 } + +snmpProxyDrops OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The total number of GetRequest-PDUs, GetNextRequest-PDUs, + GetBulkRequest-PDUs, SetRequest-PDUs, and InformRequest-PDUs + delivered to the SNMP entity which were silently dropped + because the transmission of the (possibly translated) + message to a proxy target failed in a manner (other than a + time-out) such that no Response-PDU could be returned." + ::= { snmp 32 } + + +-- information for notifications +-- +-- a collection of objects which allow the SNMPv2 entity, when +-- acting in an agent role, to be configured to generate +-- SNMPv2-Trap-PDUs. + +snmpTrap OBJECT IDENTIFIER ::= { snmpMIBObjects 4 } + + +snmpTrapOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The authoritative identification of the notification + currently being sent. This variable occurs as the second + varbind in every SNMPv2-Trap-PDU and InformRequest-PDU." + ::= { snmpTrap 1 } + +-- ::= { snmpTrap 2 } this OID is obsolete + +snmpTrapEnterprise OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS accessible-for-notify + STATUS current + DESCRIPTION + "The authoritative identification of the enterprise + associated with the trap currently being sent. When a + SNMPv2 proxy agent is mapping an RFC1157 Trap-PDU into a + SNMPv2-Trap-PDU, this variable occurs as the last varbind." + ::= { snmpTrap 3 } + +-- ::= { snmpTrap 4 } this OID is obsolete + + +-- well-known traps + +snmpTraps OBJECT IDENTIFIER ::= { snmpMIBObjects 5 } + +coldStart NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A coldStart trap signifies that the SNMPv2 entity, acting + in an agent role, is reinitializing itself and that its + configuration may have been altered." + ::= { snmpTraps 1 } + +warmStart NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "A warmStart trap signifies that the SNMPv2 entity, acting + in an agent role, is reinitializing itself such that its + configuration is unaltered." + ::= { snmpTraps 2 } + +-- Note the linkDown NOTIFICATION-TYPE ::= { snmpTraps 3 } +-- and the linkUp NOTIFICATION-TYPE ::= { snmpTraps 4 } +-- are defined in RFC 1573 + +authenticationFailure NOTIFICATION-TYPE + STATUS current + DESCRIPTION + "An authenticationFailure trap signifies that the SNMPv2 + entity, acting in an agent role, has received a protocol + message that is not properly authenticated. While all + implementations of the SNMPv2 must be capable of generating + this trap, the snmpEnableAuthenTraps object indicates + whether this trap will be generated." + ::= { snmpTraps 5 } + +-- Note the egpNeighborLoss NOTIFICATION-TYPE ::= { snmpTraps 6 } +-- is defined in RFC 1213 + +-- the set group +-- +-- a collection of objects which allow several cooperating +-- SNMPv2 entities, all acting in a manager role, to +-- coordinate their use of the SNMPv2 set operation. + +snmpSet OBJECT IDENTIFIER ::= { snmpMIBObjects 6 } + + +snmpSetSerialNo OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "An advisory lock used to allow several cooperating SNMPv2 + entities, all acting in a manager role, to coordinate their + use of the SNMPv2 set operation. + + This object is used for coarse-grain coordination. To + achieve fine-grain coordination, one or more similar objects + might be defined within each MIB group, as appropriate." + ::= { snmpSet 1 } + + +-- conformance information + +snmpMIBConformance + OBJECT IDENTIFIER ::= { snmpMIB 2 } + +snmpMIBCompliances + OBJECT IDENTIFIER ::= { snmpMIBConformance 1 } +snmpMIBGroups OBJECT IDENTIFIER ::= { snmpMIBConformance 2 } + + +-- compliance statements + +-- ::= { snmpMIBCompliances 1 } this OID is obsolete + +snmpBasicCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities which + implement the SNMPv2 MIB." + MODULE -- this module + MANDATORY-GROUPS { snmpGroup, snmpSetGroup, systemGroup, + snmpBasicNotificationsGroup } + + GROUP snmpCommunityGroup + DESCRIPTION + "This group is mandatory for SNMPv2 entities which + support community-based authentication." + + ::= { snmpMIBCompliances 2 } + + +-- units of conformance + +-- ::= { snmpMIBGroups 1 } this OID is obsolete +-- ::= { snmpMIBGroups 2 } this OID is obsolete +-- ::= { snmpMIBGroups 3 } this OID is obsolete +-- ::= { snmpMIBGroups 4 } this OID is obsolete + +snmpGroup OBJECT-GROUP + OBJECTS { snmpInPkts, + snmpInBadVersions, + snmpInASNParseErrs, + snmpSilentDrops, + snmpProxyDrops, + snmpEnableAuthenTraps } + STATUS current + DESCRIPTION + "A collection of objects providing basic instrumentation and + control of an SNMPv2 entity." + ::= { snmpMIBGroups 8 } + +snmpCommunityGroup OBJECT-GROUP + OBJECTS { snmpInBadCommunityNames, + snmpInBadCommunityUses } + STATUS current + DESCRIPTION + "A collection of objects providing basic instrumentation of + a SNMPv2 entity which supports community-based + authentication." + ::= { snmpMIBGroups 9 } + +snmpSetGroup OBJECT-GROUP + OBJECTS { snmpSetSerialNo } + STATUS current + DESCRIPTION + "A collection of objects which allow several cooperating + SNMPv2 entities, all acting in a manager role, to coordinate + their use of the SNMPv2 set operation." + ::= { snmpMIBGroups 5 } + +systemGroup OBJECT-GROUP + OBJECTS { sysDescr, sysObjectID, sysUpTime, + sysContact, sysName, sysLocation, + sysServices, + sysORLastChange, sysORID, + sysORUpTime, sysORDescr } + STATUS current + DESCRIPTION + "The system group defines objects which are common to all + managed systems." + ::= { snmpMIBGroups 6 } + +snmpBasicNotificationsGroup NOTIFICATION-GROUP + NOTIFICATIONS { coldStart, authenticationFailure } + STATUS current + DESCRIPTION + "The two notifications which an SNMPv2 entity is required to + implement." + ::= { snmpMIBGroups 7 } + + +-- definitions in RFC 1213 made obsolete by the inclusion of a +-- subset of the snmp group in this MIB + +snmpOutPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Messages which were + passed from the SNMP protocol entity to the + transport service." + ::= { snmp 2 } + +-- { snmp 7 } is not used + +snmpInTooBigs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `tooBig'." + ::= { snmp 8 } + +snmpInNoSuchNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `noSuchName'." + ::= { snmp 9 } + +snmpInBadValues OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `badValue'." + ::= { snmp 10 } + +snmpInReadOnlys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number valid SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `readOnly'. It should be noted that it is a + protocol error to generate an SNMP PDU which + contains the value `readOnly' in the error-status + field, as such this object is provided as a means + of detecting incorrect implementations of the + SNMP." + ::= { snmp 11 } + +snmpInGenErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + delivered to the SNMP protocol entity and for + which the value of the error-status field is + `genErr'." + ::= { snmp 12 } + +snmpInTotalReqVars OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of MIB objects which have been + retrieved successfully by the SNMP protocol entity + as the result of receiving valid SNMP Get-Request + and Get-Next PDUs." + ::= { snmp 13 } + +snmpInTotalSetVars OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of MIB objects which have been + altered successfully by the SNMP protocol entity + as the result of receiving valid SNMP Set-Request + PDUs." + ::= { snmp 14 } + +snmpInGetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Request PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 15 } + +snmpInGetNexts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Next PDUs which have + been accepted and processed by the SNMP protocol + entity." + ::= { snmp 16 } + +snmpInSetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Set-Request PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 17 } + +snmpInGetResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Response PDUs which + have been accepted and processed by the SNMP + protocol entity." + ::= { snmp 18 } + +snmpInTraps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Trap PDUs which have + been accepted and processed by the SNMP protocol + entity." + ::= { snmp 19 } + +snmpOutTooBigs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `tooBig.'" + ::= { snmp 20 } + +snmpOutNoSuchNames OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status is + `noSuchName'." + ::= { snmp 21 } + +snmpOutBadValues OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `badValue'." + ::= { snmp 22 } + + +-- { snmp 23 } is not used + +snmpOutGenErrs OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP PDUs which were + generated by the SNMP protocol entity and for + which the value of the error-status field is + `genErr'." + ::= { snmp 24 } + +snmpOutGetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Request PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 25 } + +snmpOutGetNexts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Next PDUs which have + been generated by the SNMP protocol entity." + ::= { snmp 26 } + +snmpOutSetRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Set-Request PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 27 } + +snmpOutGetResponses OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Get-Response PDUs which + have been generated by the SNMP protocol entity." + ::= { snmp 28 } + +snmpOutTraps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The total number of SNMP Trap PDUs which have + been generated by the SNMP protocol entity." + ::= { snmp 29 } + +snmpObsoleteGroup OBJECT-GROUP + OBJECTS { snmpOutPkts, snmpInTooBigs, snmpInNoSuchNames, + snmpInBadValues, snmpInReadOnlys, snmpInGenErrs, + snmpInTotalReqVars, snmpInTotalSetVars, + snmpInGetRequests, snmpInGetNexts, snmpInSetRequests, + snmpInGetResponses, snmpInTraps, snmpOutTooBigs, + snmpOutNoSuchNames, snmpOutBadValues, snmpOutGenErrs, + snmpOutGetRequests, snmpOutGetNexts, snmpOutSetRequests, + snmpOutGetResponses, snmpOutTraps } + STATUS obsolete + DESCRIPTION + "A collection of objects from RFC 1213 made obsolete by this + MIB." + ::= { snmpMIBGroups 10 } + +END diff --git a/pandora_console/attachment/mibs/SNMPv2-SMI b/pandora_console/attachment/mibs/SNMPv2-SMI new file mode 100644 index 0000000000..c1795f888b --- /dev/null +++ b/pandora_console/attachment/mibs/SNMPv2-SMI @@ -0,0 +1,119 @@ +SNMPv2-SMI DEFINITIONS ::= BEGIN + +org OBJECT IDENTIFIER ::= { iso 3 } + +dod OBJECT IDENTIFIER ::= { org 6 } + +internet OBJECT IDENTIFIER ::= { dod 1 } + +directory OBJECT IDENTIFIER ::= { internet 1 } + +mgmt OBJECT IDENTIFIER ::= { internet 2 } + +mib-2 OBJECT IDENTIFIER ::= { mgmt 1 } + +transmission OBJECT IDENTIFIER ::= { mib-2 10 } + +experimental OBJECT IDENTIFIER ::= { internet 3 } + +private OBJECT IDENTIFIER ::= { internet 4 } + +enterprises OBJECT IDENTIFIER ::= { private 1 } + +security OBJECT IDENTIFIER ::= { internet 5 } + +snmpV2 OBJECT IDENTIFIER ::= { internet 6 } + +snmpDomains OBJECT IDENTIFIER ::= { snmpV2 1 } + +snmpProxys OBJECT IDENTIFIER ::= { snmpV2 2 } + +snmpModules OBJECT IDENTIFIER ::= { snmpV2 3 } + +--ObjectName ::= +-- OBJECT IDENTIFIER + +--NotificationName ::= +-- OBJECT IDENTIFIER + +--ObjectSyntax ::= +-- CHOICE { +-- simple +-- SimpleSyntax, +-- +-- application-wide +-- ApplicationSyntax +--} + +--SimpleSyntax ::= +-- CHOICE { +-- integer-value +-- INTEGER, +-- +-- string-value +-- OCTET STRING, +-- +-- objectID-value +-- OBJECT IDENTIFIER +--} + +--Integer32 ::= +-- [UNIVERSAL 2] +-- IMPLICIT INTEGER + +--ApplicationSyntax ::= +-- CHOICE { +-- ipAddress-value +-- IpAddress, +-- +-- counter-value +-- Counter32, +-- +-- timeticks-value +-- TimeTicks, +-- +-- arbitrary-value +-- Opaque, +-- +-- big-counter-value +-- Counter64, +-- +-- unsigned-integer-value +-- Unsigned32 +--} + +--IpAddress ::= +-- [APPLICATION 0] +-- IMPLICIT OCTET STRING + +--Counter32 ::= +-- [APPLICATION 1] +-- IMPLICIT INTEGER + +--Gauge32 ::= +-- [APPLICATION 2] +-- IMPLICIT INTEGER + +--Unsigned32 ::= +-- [APPLICATION 2] +-- IMPLICIT INTEGER + +--TimeTicks ::= +-- [APPLICATION 3] +-- IMPLICIT INTEGER + +--Opaque ::= +-- [APPLICATION 4] +-- IMPLICIT OCTET STRING + +--Counter64 ::= +-- [APPLICATION 6] +-- IMPLICIT INTEGER + +--zeroDotZero OBJECT-IDENTITY +-- STATUS current +-- DESCRIPTION +-- "A value used for null identifiers." +-- ::= { 0 0 } + +END diff --git a/pandora_console/attachment/mibs/SNMPv2-TC b/pandora_console/attachment/mibs/SNMPv2-TC new file mode 100644 index 0000000000..fa7aa3e1d5 --- /dev/null +++ b/pandora_console/attachment/mibs/SNMPv2-TC @@ -0,0 +1,955 @@ + +SNMPv2-TC DEFINITIONS ::= BEGIN + +IMPORTS + TimeTicks FROM SNMPv2-SMI; + + + + +DisplayString ::= TEXTUAL-CONVENTION + DISPLAY-HINT "255a" + STATUS current + DESCRIPTION + "Represents textual information taken from the NVT ASCII + + +McCloghrie, et al. Standards Track [Page 3] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + character set, as defined in pages 4, 10-11 of RFC 854. + + To summarize RFC 854, the NVT ASCII repertoire specifies: + + - the use of character codes 0-127 (decimal) + + - the graphics characters (32-126) are interpreted as + US ASCII + + - NUL, LF, CR, BEL, BS, HT, VT and FF have the special + meanings specified in RFC 854 + + - the other 25 codes have no standard interpretation + + - the sequence 'CR LF' means newline + + - the sequence 'CR NUL' means carriage-return + + - an 'LF' not preceded by a 'CR' means moving to the + same column on the next line. + + - the sequence 'CR x' for any x other than LF or NUL is + illegal. (Note that this also means that a string may + end with either 'CR LF' or 'CR NUL', but not with CR.) + + Any object defined using this syntax may not exceed 255 + characters in length." + SYNTAX OCTET STRING (SIZE (0..255)) + +PhysAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1x:" + STATUS current + DESCRIPTION + "Represents media- or physical-level addresses." + SYNTAX OCTET STRING + + +MacAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1x:" + STATUS current + DESCRIPTION + "Represents an 802 MAC address represented in the + `canonical' order defined by IEEE 802.1a, i.e., as if it + were transmitted least significant bit first, even though + 802.5 (in contrast to other 802.x protocols) requires MAC + addresses to be transmitted most significant bit first." + SYNTAX OCTET STRING (SIZE (6)) + + +TruthValue ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents a boolean value." + SYNTAX INTEGER { true(1), false(2) } + +TestAndIncr ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents integer-valued information used for atomic + operations. When the management protocol is used to specify + that an object instance having this syntax is to be + modified, the new value supplied via the management protocol + must precisely match the value presently held by the + instance. If not, the management protocol set operation + fails with an error of `inconsistentValue'. Otherwise, if + the current value is the maximum value of 2^31-1 (2147483647 + decimal), then the value held by the instance is wrapped to + zero; otherwise, the value held by the instance is + incremented by one. (Note that regardless of whether the + management protocol set operation succeeds, the variable- + binding in the request and response PDUs are identical.) + + The value of the ACCESS clause for objects having this + syntax is either `read-write' or `read-create'. When an + instance of a columnar object having this syntax is created, + any value may be supplied via the management protocol. + + When the network management portion of the system is re- + initialized, the value of every object instance having this + syntax must either be incremented from its value prior to + the re-initialization, or (if the value prior to the re- + initialization is unknown) be set to a pseudo-randomly + generated value." + SYNTAX INTEGER (0..2147483647) + +AutonomousType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents an independently extensible type identification + value. It may, for example, indicate a particular sub-tree + with further MIB definitions, or define a particular type of + protocol or hardware." + SYNTAX OBJECT IDENTIFIER + + +InstancePointer ::= TEXTUAL-CONVENTION + STATUS obsolete + DESCRIPTION + "A pointer to either a specific instance of a MIB object or + a conceptual row of a MIB table in the managed device. In + the latter case, by convention, it is the name of the + particular instance of the first accessible columnar object + in the conceptual row. + + The two uses of this textual convention are replaced by + VariablePointer and RowPointer, respectively." + SYNTAX OBJECT IDENTIFIER + + +VariablePointer ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A pointer to a specific object instance. For example, + sysContact.0 or ifInOctets.3." + SYNTAX OBJECT IDENTIFIER + + +RowPointer ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents a pointer to a conceptual row. The value is the + name of the instance of the first accessible columnar object + in the conceptual row. + + For example, ifIndex.3 would point to the 3rd row in the + ifTable (note that if ifIndex were not-accessible, then + ifDescr.3 would be used instead)." + SYNTAX OBJECT IDENTIFIER + +RowStatus ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The RowStatus textual convention is used to manage the + creation and deletion of conceptual rows, and is used as the + value of the SYNTAX clause for the status column of a + conceptual row (as described in Section 7.7.1 of [2].) + + + + + + + + + + + +McCloghrie, et al. Standards Track [Page 6] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + The status column has six defined values: + + - `active', which indicates that the conceptual row is + available for use by the managed device; + + - `notInService', which indicates that the conceptual + row exists in the agent, but is unavailable for use by + the managed device (see NOTE below); 'notInService' has + no implication regarding the internal consistency of + the row, availability of resources, or consistency with + the current state of the managed device; + + - `notReady', which indicates that the conceptual row + exists in the agent, but is missing information + necessary in order to be available for use by the + managed device (i.e., one or more required columns in + the conceptual row have not been instanciated); + + - `createAndGo', which is supplied by a management + station wishing to create a new instance of a + conceptual row and to have its status automatically set + to active, making it available for use by the managed + device; + + - `createAndWait', which is supplied by a management + station wishing to create a new instance of a + conceptual row (but not make it available for use by + the managed device); and, + + - `destroy', which is supplied by a management station + wishing to delete all of the instances associated with + an existing conceptual row. + + Whereas five of the six values (all except `notReady') may + be specified in a management protocol set operation, only + three values will be returned in response to a management + protocol retrieval operation: `notReady', `notInService' or + `active'. That is, when queried, an existing conceptual row + has only three states: it is either available for use by + the managed device (the status column has value `active'); + it is not available for use by the managed device, though + the agent has sufficient information to attempt to make it + so (the status column has value `notInService'); or, it is + not available for use by the managed device, and an attempt + to make it so would fail because the agent has insufficient + information (the state column has value `notReady'). + + + + +McCloghrie, et al. Standards Track [Page 7] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + NOTE WELL + + This textual convention may be used for a MIB table, + irrespective of whether the values of that table's + conceptual rows are able to be modified while it is + active, or whether its conceptual rows must be taken + out of service in order to be modified. That is, it is + the responsibility of the DESCRIPTION clause of the + status column to specify whether the status column must + not be `active' in order for the value of some other + column of the same conceptual row to be modified. If + such a specification is made, affected columns may be + changed by an SNMP set PDU if the RowStatus would not + be equal to `active' either immediately before or after + processing the PDU. In other words, if the PDU also + contained a varbind that would change the RowStatus + value, the column in question may be changed if the + RowStatus was not equal to `active' as the PDU was + received, or if the varbind sets the status to a value + other than 'active'. + + + Also note that whenever any elements of a row exist, the + RowStatus column must also exist. + + + + + + + + + + + + + + + + + + + + + + + + + + +McCloghrie, et al. Standards Track [Page 8] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + To summarize the effect of having a conceptual row with a + status column having a SYNTAX clause value of RowStatus, + consider the following state diagram: + + + STATE + +--------------+-----------+-------------+------------- + | A | B | C | D + | |status col.|status column| + |status column | is | is |status column + ACTION |does not exist| notReady | notInService| is active +--------------+--------------+-----------+-------------+------------- +set status |noError ->D|inconsist- |inconsistent-|inconsistent- +column to | or | entValue| Value| Value +createAndGo |inconsistent- | | | + | Value| | | +--------------+--------------+-----------+-------------+------------- +set status |noError see 1|inconsist- |inconsistent-|inconsistent- +column to | or | entValue| Value| Value +createAndWait |wrongValue | | | +--------------+--------------+-----------+-------------+------------- +set status |inconsistent- |inconsist- |noError |noError +column to | Value| entValue| | +active | | | | + | | or | | + | | | | + | |see 2 ->D|see 8 ->D| ->D +--------------+--------------+-----------+-------------+------------- +set status |inconsistent- |inconsist- |noError |noError ->C +column to | Value| entValue| | +notInService | | | | + | | or | | or + | | | | + | |see 3 ->C| ->C|see 6 +--------------+--------------+-----------+-------------+------------- +set status |noError |noError |noError |noError ->A +column to | | | | or +destroy | ->A| ->A| ->A|see 7 +--------------+--------------+-----------+-------------+------------- +set any other |see 4 |noError |noError |see 5 +column to some| | | | +value | | see 1| ->C| ->D +--------------+--------------+-----------+-------------+------------- + + (1) goto B or C, depending on information available to the + agent. + + (2) if other variable bindings included in the same PDU, + + +McCloghrie, et al. Standards Track [Page 9] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + provide values for all columns which are missing but + required, and all columns have acceptable values, then + return noError and goto D. + + (3) if other variable bindings included in the same PDU, + provide legal values for all columns which are missing but + required, then return noError and goto C. + + (4) at the discretion of the agent, the return value may be + either: + + inconsistentName: because the agent does not choose to + create such an instance when the corresponding + RowStatus instance does not exist, or + + inconsistentValue: if the supplied value is + inconsistent with the state of some other MIB object's + value, or + + noError: because the agent chooses to create the + instance. + + If noError is returned, then the instance of the status + column must also be created, and the new state is B or C, + depending on the information available to the agent. If + inconsistentName or inconsistentValue is returned, the row + remains in state A. + + (5) depending on the MIB definition for the column/table, + either noError or inconsistentValue may be returned. + + (6) the return value can indicate one of the following + errors: + + wrongValue: because the agent does not support + notInService (e.g., an agent which does not support + createAndWait), or + + inconsistentValue: because the agent is unable to take + the row out of service at this time, perhaps because it + is in use and cannot be de-activated. + + (7) the return value can indicate the following error: + + inconsistentValue: because the agent is unable to + remove the row at this time, perhaps because it is in + use and cannot be de-activated. + + + +McCloghrie, et al. Standards Track [Page 10] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + (8) the transition to D can fail, e.g., if the values of the + conceptual row are inconsistent, then the error code would + be inconsistentValue. + + NOTE: Other processing of (this and other varbinds of) the + set request may result in a response other than noError + being returned, e.g., wrongValue, noCreation, etc. + + + Conceptual Row Creation + + There are four potential interactions when creating a + conceptual row: selecting an instance-identifier which is + not in use; creating the conceptual row; initializing any + objects for which the agent does not supply a default; and, + making the conceptual row available for use by the managed + device. + + Interaction 1: Selecting an Instance-Identifier + + The algorithm used to select an instance-identifier varies + for each conceptual row. In some cases, the instance- + identifier is semantically significant, e.g., the + destination address of a route, and a management station + selects the instance-identifier according to the semantics. + + In other cases, the instance-identifier is used solely to + distinguish conceptual rows, and a management station + without specific knowledge of the conceptual row might + examine the instances present in order to determine an + unused instance-identifier. (This approach may be used, but + it is often highly sub-optimal; however, it is also a + questionable practice for a naive management station to + attempt conceptual row creation.) + + Alternately, the MIB module which defines the conceptual row + might provide one or more objects which provide assistance + in determining an unused instance-identifier. For example, + if the conceptual row is indexed by an integer-value, then + an object having an integer-valued SYNTAX clause might be + defined for such a purpose, allowing a management station to + issue a management protocol retrieval operation. In order + to avoid unnecessary collisions between competing management + stations, `adjacent' retrievals of this object should be + different. + + Finally, the management station could select a pseudo-random + number to use as the index. In the event that this index + + +McCloghrie, et al. Standards Track [Page 11] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + was already in use and an inconsistentValue was returned in + response to the management protocol set operation, the + management station should simply select a new pseudo-random + number and retry the operation. + + A MIB designer should choose between the two latter + algorithms based on the size of the table (and therefore the + efficiency of each algorithm). For tables in which a large + number of entries are expected, it is recommended that a MIB + object be defined that returns an acceptable index for + creation. For tables with small numbers of entries, it is + recommended that the latter pseudo-random index mechanism be + used. + + Interaction 2: Creating the Conceptual Row + + Once an unused instance-identifier has been selected, the + management station determines if it wishes to create and + activate the conceptual row in one transaction or in a + negotiated set of interactions. + + Interaction 2a: Creating and Activating the Conceptual Row + + The management station must first determine the column + requirements, i.e., it must determine those columns for + which it must or must not provide values. Depending on the + complexity of the table and the management station's + knowledge of the agent's capabilities, this determination + can be made locally by the management station. Alternately, + the management station issues a management protocol get + operation to examine all columns in the conceptual row that + it wishes to create. In response, for each column, there + are three possible outcomes: + + - a value is returned, indicating that some other + management station has already created this conceptual + row. We return to interaction 1. + + - the exception `noSuchInstance' is returned, + indicating that the agent implements the object-type + associated with this column, and that this column in at + least one conceptual row would be accessible in the MIB + view used by the retrieval were it to exist. For those + columns to which the agent provides read-create access, + the `noSuchInstance' exception tells the management + station that it should supply a value for this column + when the conceptual row is to be created. + + + +McCloghrie, et al. Standards Track [Page 12] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + - the exception `noSuchObject' is returned, indicating + that the agent does not implement the object-type + associated with this column or that there is no + conceptual row for which this column would be + accessible in the MIB view used by the retrieval. As + such, the management station can not issue any + management protocol set operations to create an + instance of this column. + + Once the column requirements have been determined, a + management protocol set operation is accordingly issued. + This operation also sets the new instance of the status + column to `createAndGo'. + + When the agent processes the set operation, it verifies that + it has sufficient information to make the conceptual row + available for use by the managed device. The information + available to the agent is provided by two sources: the + management protocol set operation which creates the + conceptual row, and, implementation-specific defaults + supplied by the agent (note that an agent must provide + implementation-specific defaults for at least those objects + which it implements as read-only). If there is sufficient + information available, then the conceptual row is created, a + `noError' response is returned, the status column is set to + `active', and no further interactions are necessary (i.e., + interactions 3 and 4 are skipped). If there is insufficient + information, then the conceptual row is not created, and the + set operation fails with an error of `inconsistentValue'. + On this error, the management station can issue a management + protocol retrieval operation to determine if this was + because it failed to specify a value for a required column, + or, because the selected instance of the status column + already existed. In the latter case, we return to + interaction 1. In the former case, the management station + can re-issue the set operation with the additional + information, or begin interaction 2 again using + `createAndWait' in order to negotiate creation of the + conceptual row. + + + + + + + + + + + +McCloghrie, et al. Standards Track [Page 13] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + NOTE WELL + + Regardless of the method used to determine the column + requirements, it is possible that the management + station might deem a column necessary when, in fact, + the agent will not allow that particular columnar + instance to be created or written. In this case, the + management protocol set operation will fail with an + error such as `noCreation' or `notWritable'. In this + case, the management station decides whether it needs + to be able to set a value for that particular columnar + instance. If not, the management station re-issues the + management protocol set operation, but without setting + a value for that particular columnar instance; + otherwise, the management station aborts the row + creation algorithm. + + Interaction 2b: Negotiating the Creation of the Conceptual + Row + + The management station issues a management protocol set + operation which sets the desired instance of the status + column to `createAndWait'. If the agent is unwilling to + process a request of this sort, the set operation fails with + an error of `wrongValue'. (As a consequence, such an agent + must be prepared to accept a single management protocol set + operation, i.e., interaction 2a above, containing all of the + columns indicated by its column requirements.) Otherwise, + the conceptual row is created, a `noError' response is + returned, and the status column is immediately set to either + `notInService' or `notReady', depending on whether it has + sufficient information to (attempt to) make the conceptual + row available for use by the managed device. If there is + sufficient information available, then the status column is + set to `notInService'; otherwise, if there is insufficient + information, then the status column is set to `notReady'. + Regardless, we proceed to interaction 3. + + Interaction 3: Initializing non-defaulted Objects + + The management station must now determine the column + requirements. It issues a management protocol get operation + to examine all columns in the created conceptual row. In + the response, for each column, there are three possible + outcomes: + + + + + +McCloghrie, et al. Standards Track [Page 14] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + - a value is returned, indicating that the agent + implements the object-type associated with this column + and had sufficient information to provide a value. For + those columns to which the agent provides read-create + access (and for which the agent allows their values to + be changed after their creation), a value return tells + the management station that it may issue additional + management protocol set operations, if it desires, in + order to change the value associated with this column. + + - the exception `noSuchInstance' is returned, + indicating that the agent implements the object-type + associated with this column, and that this column in at + least one conceptual row would be accessible in the MIB + view used by the retrieval were it to exist. However, + the agent does not have sufficient information to + provide a value, and until a value is provided, the + conceptual row may not be made available for use by the + managed device. For those columns to which the agent + provides read-create access, the `noSuchInstance' + exception tells the management station that it must + issue additional management protocol set operations, in + order to provide a value associated with this column. + + - the exception `noSuchObject' is returned, indicating + that the agent does not implement the object-type + associated with this column or that there is no + conceptual row for which this column would be + accessible in the MIB view used by the retrieval. As + such, the management station can not issue any + management protocol set operations to create an + instance of this column. + + If the value associated with the status column is + `notReady', then the management station must first deal with + all `noSuchInstance' columns, if any. Having done so, the + value of the status column becomes `notInService', and we + proceed to interaction 4. + + + + + + + + + + + + +McCloghrie, et al. Standards Track [Page 15] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + Interaction 4: Making the Conceptual Row Available + + Once the management station is satisfied with the values + associated with the columns of the conceptual row, it issues + a management protocol set operation to set the status column + to `active'. If the agent has sufficient information to + make the conceptual row available for use by the managed + device, the management protocol set operation succeeds (a + `noError' response is returned). Otherwise, the management + protocol set operation fails with an error of + `inconsistentValue'. + + NOTE WELL + + A conceptual row having a status column with value + `notInService' or `notReady' is unavailable to the + managed device. As such, it is possible for the + managed device to create its own instances during the + time between the management protocol set operation + which sets the status column to `createAndWait' and the + management protocol set operation which sets the status + column to `active'. In this case, when the management + protocol set operation is issued to set the status + column to `active', the values held in the agent + supersede those used by the managed device. + + If the management station is prevented from setting the + status column to `active' (e.g., due to management station + or network failure) the conceptual row will be left in the + `notInService' or `notReady' state, consuming resources + indefinitely. The agent must detect conceptual rows that + have been in either state for an abnormally long period of + time and remove them. It is the responsibility of the + DESCRIPTION clause of the status column to indicate what an + abnormally long period of time would be. This period of + time should be long enough to allow for human response time + (including `think time') between the creation of the + conceptual row and the setting of the status to `active'. + In the absence of such information in the DESCRIPTION + clause, it is suggested that this period be approximately 5 + minutes in length. This removal action applies not only to + newly-created rows, but also to previously active rows which + are set to, and left in, the notInService state for a + prolonged period exceeding that which is considered normal + for such a conceptual row. + + + + + +McCloghrie, et al. Standards Track [Page 16] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + Conceptual Row Suspension + + When a conceptual row is `active', the management station + may issue a management protocol set operation which sets the + instance of the status column to `notInService'. If the + agent is unwilling to do so, the set operation fails with an + error of `wrongValue' or `inconsistentValue'. Otherwise, + the conceptual row is taken out of service, and a `noError' + response is returned. It is the responsibility of the + DESCRIPTION clause of the status column to indicate under + what circumstances the status column should be taken out of + service (e.g., in order for the value of some other column + of the same conceptual row to be modified). + + + Conceptual Row Deletion + + For deletion of conceptual rows, a management protocol set + operation is issued which sets the instance of the status + column to `destroy'. This request may be made regardless of + the current value of the status column (e.g., it is possible + to delete conceptual rows which are either `notReady', + `notInService' or `active'.) If the operation succeeds, + then all instances associated with the conceptual row are + immediately removed." + SYNTAX INTEGER { + -- the following two values are states: + -- these values may be read or written + active(1), + notInService(2), + + -- the following value is a state: + -- this value may be read, but not written + notReady(3), + + -- the following three values are + -- actions: these values may be written, + -- but are never read + createAndGo(4), + createAndWait(5), + destroy(6) + } + +TimeStamp ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "The value of the sysUpTime object at which a specific + occurrence happened. The specific occurrence must be + + +McCloghrie, et al. Standards Track [Page 17] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + defined in the description of any object defined using this + type. + + If sysUpTime is reset to zero as a result of a re- + initialization of the network management (sub)system, then + the values of all TimeStamp objects are also reset. + However, after approximately 497 days without a re- + initialization, the sysUpTime object will reach 2^^32-1 and + then increment around to zero; in this case, existing values + of TimeStamp objects do not change. This can lead to + ambiguities in the value of TimeStamp objects." + SYNTAX TimeTicks + + +TimeInterval ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "A period of time, measured in units of 0.01 seconds." + SYNTAX INTEGER (0..2147483647) + +DateAndTime ::= TEXTUAL-CONVENTION + DISPLAY-HINT "2d-1d-1d,1d:1d:1d.1d,1a1d:1d" + STATUS current + DESCRIPTION + "A date-time specification. + + field octets contents range + ----- ------ -------- ----- + 1 1-2 year* 0..65536 + 2 3 month 1..12 + 3 4 day 1..31 + 4 5 hour 0..23 + 5 6 minutes 0..59 + 6 7 seconds 0..60 + (use 60 for leap-second) + 7 8 deci-seconds 0..9 + 8 9 direction from UTC '+' / '-' + 9 10 hours from UTC* 0..13 + 10 11 minutes from UTC 0..59 + + * Notes: + - the value of year is in network-byte order + - daylight saving time in New Zealand is +13 + + For example, Tuesday May 26, 1992 at 1:30:15 PM EDT would be + displayed as: + + 1992-5-26,13:30:15.0,-4:0 + + +McCloghrie, et al. Standards Track [Page 18] + + + + + +RFC 2579 Textual Conventions for SMIv2 April 1999 + + + Note that if only local time is known, then timezone + information (fields 8-10) is not present." + SYNTAX OCTET STRING (SIZE (8 | 11)) + + +StorageType ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Describes the memory realization of a conceptual row. A + row which is volatile(2) is lost upon reboot. A row which + is either nonVolatile(3), permanent(4) or readOnly(5), is + backed up by stable storage. A row which is permanent(4) + can be changed but not deleted. A row which is readOnly(5) + cannot be changed nor deleted. + + If the value of an object with this syntax is either + permanent(4) or readOnly(5), it cannot be written. + Conversely, if the value is either other(1), volatile(2) or + nonVolatile(3), it cannot be modified to be permanent(4) or + readOnly(5). (All illegal modifications result in a + 'wrongValue' error.) + + Every usage of this textual convention is required to + specify the columnar objects which a permanent(4) row must + at a minimum allow to be writable." + SYNTAX INTEGER { + other(1), -- eh? + volatile(2), -- e.g., in RAM + nonVolatile(3), -- e.g., in NVRAM + permanent(4), -- e.g., partially in ROM + readOnly(5) -- e.g., completely in ROM + } + + + +TDomain ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Denotes a kind of transport service. + + Some possible values, such as snmpUDPDomain, are defined in + the SNMPv2-TM MIB module. Other possible values are defined + in other MIB modules." + REFERENCE "The SNMPv2-TM MIB module is defined in RFC 1906." + SYNTAX OBJECT IDENTIFIER + + +TAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Denotes a transport service address. + + A TAddress value is always interpreted within the context of a + TDomain value. Thus, each definition of a TDomain value must + be accompanied by a definition of a textual convention for use + with that TDomain. Some possible textual conventions, such as + SnmpUDPAddress for snmpUDPDomain, are defined in the SNMPv2-TM + MIB module. Other possible textual conventions are defined in + other MIB modules." + REFERENCE "The SNMPv2-TM MIB module is defined in RFC 1906." + SYNTAX OCTET STRING (SIZE (1..255)) + + +END + + diff --git a/pandora_console/attachment/mibs/SNMPv2-TM b/pandora_console/attachment/mibs/SNMPv2-TM new file mode 100644 index 0000000000..ca6cf3299b --- /dev/null +++ b/pandora_console/attachment/mibs/SNMPv2-TM @@ -0,0 +1,131 @@ +-- Changes to rfc1906 - SNMPv2-TM (SNMPv2 transport mappings) +-- NOTE: module need MODULE-IDENTITY added! +-- dperkins@scruznet.com + + +SNMPv2-TM DEFINITIONS ::= BEGIN + +IMPORTS + OBJECT-IDENTITY, snmpDomains, snmpProxys + FROM SNMPv2-SMI + TEXTUAL-CONVENTION + FROM SNMPv2-TC; + +-- SNMPv2 over UDP over IPv4 + +snmpUDPDomain OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The SNMPv2 over UDP transport domain. The corresponding + transport address is of type SnmpUDPAddress." + ::= { snmpDomains 1 } + +SnmpUDPAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "1d.1d.1d.1d/2d" + STATUS current + DESCRIPTION + "Represents a UDP address: + + octets contents encoding + 1-4 IP-address network-byte order + 5-6 UDP-port network-byte order + " + SYNTAX OCTET STRING (SIZE (6)) + + +-- SNMPv2 over OSI + +snmpCLNSDomain OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The SNMPv2 over CLNS transport domain. The corresponding + transport address is of type SnmpOSIAddress." + ::= { snmpDomains 2 } + +snmpCONSDomain OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The SNMPv2 over CONS transport domain. The corresponding + transport address is of type SnmpOSIAddress." + ::= { snmpDomains 3 } + +SnmpOSIAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "*1x:/1x:" + STATUS current + DESCRIPTION + "Represents an OSI transport-address: + + octets contents encoding + 1 length of NSAP 'n' as an unsigned-integer + (either 0 or from 3 to 20) + 2..(n+1) NSAP concrete binary representation + (n+2)..m TSEL string of (up to 64) octets + " + SYNTAX OCTET STRING (SIZE (1 | 4..85)) + + +-- SNMPv2 over DDP + +snmpDDPDomain OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The SNMPv2 over DDP transport domain. The corresponding + transport address is of type SnmpNBPAddress." + ::= { snmpDomains 4 } + +SnmpNBPAddress ::= TEXTUAL-CONVENTION + STATUS current + DESCRIPTION + "Represents an NBP name: + + octets contents encoding + 1 length of object 'n' as an unsigned integer + 2..(n+1) object string of (up to 32) octets + n+2 length of type 'p' as an unsigned integer + (n+3)..(n+2+p) type string of (up to 32) octets + n+3+p length of zone 'q' as an unsigned integer + (n+4+p)..(n+3+p+q) zone string of (up to 32) octets + + For comparison purposes, strings are case-insensitive All + strings may contain any octet other than 255 (hex ff)." + SYNTAX OCTET STRING (SIZE (3..99)) + + +-- SNMPv2 over IPX + +snmpIPXDomain OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The SNMPv2 over IPX transport domain. The corresponding + transport address is of type SnmpIPXAddress." + ::= { snmpDomains 5 } + +SnmpIPXAddress ::= TEXTUAL-CONVENTION + DISPLAY-HINT "4x.1x:1x:1x:1x:1x:1x.2d" + STATUS current + DESCRIPTION + "Represents an IPX address: + + octets contents encoding + 1-4 network-number network-byte order + 5-10 physical-address network-byte order + 11-12 socket-number network-byte order + " + SYNTAX OCTET STRING (SIZE (12)) + + +-- for proxy to SNMPv1 (RFC 1157) + +rfc1157Proxy OBJECT IDENTIFIER ::= { snmpProxys 1 } + +rfc1157Domain OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The transport domain for SNMPv1 over UDP. The + corresponding transport address is of type SnmpUDPAddress." + ::= { rfc1157Proxy 1 } + +-- ::= { rfc1157Proxy 2 } this OID is obsolete + + +END diff --git a/pandora_console/attachment/mibs/StorageManagement-MIB b/pandora_console/attachment/mibs/StorageManagement-MIB new file mode 100644 index 0000000000..4bf750331f --- /dev/null +++ b/pandora_console/attachment/mibs/StorageManagement-MIB @@ -0,0 +1,5912 @@ +-- +-- dcstorag.mib +-- MIB generated by MG-SOFT Visual MIB Builder Version 6.0 Build 88 +-- Tuesday, November 25, 2008 at 18:11:03 +-- + +-- Copyright (c) 2002 Dell +-- Module Name: dcstorag.mib +-- Abstract: +-- Defines the Dell OpenManage Storage Management SNMP interface. +-- Authors: +-- +-- Revision History: +-- KEMR (10/23/02) 0.1 - Original draft +-- +-- IMPORTANT NOTE +-- MG-SOFT MibBuilder will be used as the tool to change this MIB. Because of the way the MG-SOFT MIB tools work, a copy +-- of the intermediate file with the extension .bui will be kept in SourceSafe along with the ASCII .mib version. When +-- any changes are made to the MIB they will have to be made to the .bui file using MibBuilder and then exported to the +-- .mib file. If you open the .mib version of the MIB in MibBuilder, the compiler is run in on the fly and ALL comments +-- will be removed. This is a "feature" of the tool and is beyond our control. + + StorageManagement-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + TRAP-TYPE + FROM RFC-1215 + enterprises + FROM RFC1155-SMI + DisplayString + FROM RFC1213-MIB; + + +-- +-- Type definitions +-- + + DellStatus ::= INTEGER + { + other(1), + unknown(2), + ok(3), + nonCritical(4), + critical(5), + nonRecoverable(6) + } + + +-- +-- Node definitions +-- + + -- 1.3.6.1.4.1.674 + dell OBJECT IDENTIFIER ::= { enterprises 674 } + + + -- 1.3.6.1.4.1.674.10893 + storage OBJECT IDENTIFIER ::= { dell 10893 } + + + -- 1.3.6.1.4.1.674.10893.1 + software OBJECT IDENTIFIER ::= { storage 1 } + + +-- The Storage Management MIB (Management Information Base) Group +-- defines the properties that identify information about the Storage +-- Management software product and the current status of the system it manages. + -- 1.3.6.1.4.1.674.10893.1.20 + storageManagement OBJECT IDENTIFIER ::= { software 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.1 + softwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Version number of the storage management component of the systems management software." + ::= { storageManagement 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.2 + globalStatus OBJECT-TYPE + SYNTAX INTEGER + { + critical(1), + warning(2), + normal(3), + unknown(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Global health information for the subsystem managed by + the Storage Management software. This global status is + customized for HP OpenView. Other applications should + refer to the agentSystemGlobalStatus entry in the + globalData object group. + + Possible values: + 1: Critical + 2: Warning + 3: Normal + 4: Unknown" + ::= { storageManagement 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.3 + softwareManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..32)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Manufacturer information for the Storage Management software." + ::= { storageManagement 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.4 + softwareProduct OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Product information for the Storage Management software." + ::= { storageManagement 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.5 + softwareDescription OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..128)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Product Description for the Storage Management software." + ::= { storageManagement 5 } + + +-- The Storage Management Information Management Information Base (MIB) +-- Group defines the properties that identify the Storage Management software SNMP agent. + -- 1.3.6.1.4.1.674.10893.1.20.100 + storageManagementInfo OBJECT IDENTIFIER ::= { storageManagement 100 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.1 + displayName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of this management software for display purposes." + ::= { storageManagementInfo 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.2 + description OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "A short description of this management software." + ::= { storageManagementInfo 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.3 + agentVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the management software manufacturer." + ::= { storageManagementInfo 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.100.4 + agentVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Refer to softwareVersion." + ::= { storageManagementInfo 4 } + + +-- The Global Data Management Information Base (MIB) Group defines the +-- properties that identify status information about system that the +-- Storage Management software is managing and about the Storage Management SNMP agent. + -- 1.3.6.1.4.1.674.10893.1.20.110 + globalData OBJECT IDENTIFIER ::= { storageManagement 110 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.1 + agentSystemGlobalStatus OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + warning(2), + nonCriticalError(3), + failure(4), + unknown(5) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Please use the value: agentGlobalSystemStatus. + Note: Enumerated values have changed." + ::= { globalData 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.2 + agentLastGlobalStatus OBJECT-TYPE + SYNTAX INTEGER + { + normal(1), + warning(2), + nonCriticalError(3), + failure(4), + unknown(5) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Please use the value: agentLastGlobalSystemStatus. + Note: Enumerated values have changed." + ::= { globalData 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.3 + agentTimeStamp OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The last time that the agent values have been updated. + Universal time in sec since UTC 1/1/70." + ::= { globalData 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.4 + agentGetTimeout OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Suggested timeout value in milliseconds for how long + the SNMP getter should wait while attempting to poll + the SNMP agent." + ::= { globalData 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.5 + agentModifiers OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Agent functional modifiers, when set the modifier is active. + Bit definitions: + Bit 3: agent in debug mode. + All other bits are product specific + " + ::= { globalData 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.6 + agentRefreshRate OBJECT-TYPE + SYNTAX INTEGER (1..10000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate, given in seconds, at which the cached data for SNMP is refreshed. + The default value is 300 seconds, or 5 minutes." + ::= { globalData 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.7 + agentHostname OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { globalData 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.8 + agentIPAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { globalData 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.9 + agentSoftwareStatus OBJECT-TYPE + SYNTAX INTEGER + { + databaseUp(1), + databaseDown(2) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { globalData 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.10 + agentSnmpVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. Refer to softwareVersion." + ::= { globalData 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.11 + agentMibVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Version of the Storage Management MIB." + ::= { globalData 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.12 + agentManagementSoftwareURLName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Universal Resource Locator (URL) of the systems management software." + ::= { globalData 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.13 + agentGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Global health information for the subsystem managed by + the Storage Management software. This global status + should be used by applications other than HP OpenView. + HP OpenView should refer to the globalStatus in the root level object + group. This is a rollup for the entire agent including + any monitored devices. The status is intended to give + initiative to a snmp monitor to get further data when + this status is abnormal. + + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { globalData 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.14 + agentLastGlobalSystemStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The previous global status of the system managed by the Storage Management software. + + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { globalData 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.110.15 + agentSmartThermalShutdown OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + notApplicable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates the status of smart thermal shutdown for PV220S and PV221S enclosures. + Possible values: + 1: Enabled + 2: Disabled" + ::= { globalData 15 } + + +-- The Physical Devices Management Information Base (MIB) group exposes +-- information about the devices managed by the Storage Management +-- software and their relationships to each other. +-- This group and all of its associated tables and objects are not +-- supported on Microsoft Windows Advanced Server Limited Edition +-- 64-bit operating system (Windows.Net-64) on a PE7150. + -- 1.3.6.1.4.1.674.10893.1.20.130 + physicalDevices OBJECT IDENTIFIER ::= { storageManagement 130 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1 + controllerTable OBJECT-TYPE + SYNTAX SEQUENCE OF ControllerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed RAID controllers. The number of entries + is related to number of RAID controllers discovered in the + system. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1 + controllerEntry OBJECT-TYPE + SYNTAX ControllerEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the table of RAID controllers. A row in this table cannot + be created or deleted by SNMP operations on columns of the table." + INDEX { controllerNumber } + ::= { controllerTable 1 } + + + ControllerEntry ::= + SEQUENCE { + controllerNumber + INTEGER, + controllerName + DisplayString, + controllerVendor + DisplayString, + controllerType + INTEGER, + controllerState + INTEGER, + controllerSeverity + INTEGER, + controllerRebuildRateInPercent + INTEGER, + controllerFWVersion + DisplayString, + controllerCacheSizeInMB + INTEGER, + controllerCacheSizeInBytes + INTEGER, + controllerPhysicalDeviceCount + INTEGER, + controllerLogicalDeviceCount + INTEGER, + controllerPartnerStatus + DisplayString, + controllerHostPortCount + INTEGER, + controllerMemorySizeInMB + INTEGER, + controllerMemorySizeInBytes + INTEGER, + controllerDriveChannelCount + INTEGER, + controllerFaultTolerant + INTEGER, + controllerC0Port0WWN + DisplayString, + controllerC0Port0Name + DisplayString, + controllerC0Port0ID + INTEGER, + controllerC0Target + INTEGER, + controllerC0Channel + INTEGER, + controllerC0OSController + DisplayString, + controllerC0BatteryState + INTEGER, + controllerC1Port0WWN + DisplayString, + controllerC1Port0Name + DisplayString, + controllerC1Port0ID + INTEGER, + controllerC1Target + INTEGER, + controllerC1Channel + INTEGER, + controllerC1OSController + INTEGER, + controllerC1BatteryState + INTEGER, + controllerNodeWWN + DisplayString, + controllerC0Port1WWN + DisplayString, + controllerC1Port1WWN + DisplayString, + controllerBatteryChargeCount + INTEGER, + controllerRollUpStatus + DellStatus, + controllerComponentStatus + DellStatus, + controllerNexusID + DisplayString, + controllerAlarmState + INTEGER, + controllerDriverVersion + DisplayString, + controllerPCISlot + DisplayString, + controllerClusterMode + INTEGER, + controllerMinFWVersion + DisplayString, + controllerMinDriverVersion + DisplayString, + controllerSCSIInitiatorID + INTEGER, + controllerChannelCount + INTEGER, + controllerReconstructRate + INTEGER, + controllerPatrolReadRate + INTEGER, + controllerBGIRate + INTEGER, + controllerCheckConsistencyRate + INTEGER, + controllerPatrolReadMode + INTEGER, + controllerPatrolReadState + INTEGER, + controllerPatrolReadIterations + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.1 + controllerNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this controller entry." + ::= { controllerEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.2 + controllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller in this subsystem as represented in Storage Management. + Includes the controller type and instance. + For example: Perc3/QC 1." + ::= { controllerEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.3 + controllerVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's (re)seller's name." + ::= { controllerEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.4 + controllerType OBJECT-TYPE + SYNTAX INTEGER + { + scsi(1), + pv660F(2), + pv662F(3), + ide(4), + sata(5), + sas(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of this controller: + 1: SCSI + 2: PV660F + 3: PV662F + 4: IDE (Integrated/Intelligent Drive Electronics) + 5: SATA (Serial Advanced Technology Attachment) + 6: SAS (Serial Attached SCSI)" + ::= { controllerEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.5 + controllerState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the controller's subsystem + (which includes any devices connected to it.) + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 6: Degraded" + ::= { controllerEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.6 + controllerSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { controllerEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.7 + controllerRebuildRateInPercent OBJECT-TYPE + SYNTAX INTEGER (0..100) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The percent of the compute cycles dedicated to rebuilding + failed array disks. " + ::= { controllerEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.8 + controllerFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current firmware version." + ::= { controllerEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.9 + controllerCacheSizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current amount of cache memory in megabytes. + If this size is 0, it is less than a megabyte." + ::= { controllerEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.10 + controllerCacheSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The controller's current amount of cache memory that is less than a megabyte. This combined with the + controllerCacheSizeInMB will be the total amount of memory." + ::= { controllerEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.11 + controllerPhysicalDeviceCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of physical devices on the controller channel including both disks and the controller." + ::= { controllerEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.12 + controllerLogicalDeviceCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of virtual disks on the controller." + ::= { controllerEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.13 + controllerPartnerStatus OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { controllerEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.14 + controllerHostPortCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.15 + controllerMemorySizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of memory in megabytes on the controller. If this size is 0, it is less than a megabyte. This attribute is only supported on Adaptec controllers. " + ::= { controllerEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.16 + controllerMemorySizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Size of memory on the controller that is less than a megabyte. This combined with the controllerMemorySizeInMB + will be the total size of the memory. This attribute is only supported on Adaptec controllers." + ::= { controllerEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.17 + controllerDriveChannelCount OBJECT-TYPE + SYNTAX INTEGER (1..4) + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.18 + controllerFaultTolerant OBJECT-TYPE + SYNTAX INTEGER { yes(1) } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.19 + controllerC0Port0WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.20 + controllerC0Port0Name OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.21 + controllerC0Port0ID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.22 + controllerC0Target OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management. + " + ::= { controllerEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.23 + controllerC0Channel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.24 + controllerC0OSController OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.25 + controllerC0BatteryState OBJECT-TYPE + SYNTAX INTEGER + { + ok(1), + failed(2), + reconditioning(7), + high(9), + low(10), + charging(12), + missing(21) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management. " + ::= { controllerEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.26 + controllerC1Port0WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.27 + controllerC1Port0Name OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.28 + controllerC1Port0ID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.29 + controllerC1Target OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 29 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.30 + controllerC1Channel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 30 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.31 + controllerC1OSController OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 31 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.32 + controllerC1BatteryState OBJECT-TYPE + SYNTAX INTEGER + { + ok(1), + failed(2), + reconditioning(7), + high(9), + low(10), + charging(12), + missing(21) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management. " + ::= { controllerEntry 32 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.33 + controllerNodeWWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 33 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.34 + controllerC0Port1WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 34 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.35 + controllerC1Port1WWN OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 35 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.36 + controllerBatteryChargeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. + Fibre channel is not supported in Storage Management." + ::= { controllerEntry 36 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.37 + controllerRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the controller state. + This is the combined status of the controller and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerEntry 37 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.38 + controllerComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the controller itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { controllerEntry 38 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.39 + controllerNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this controller." + ::= { controllerEntry 39 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.40 + controllerAlarmState OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + not-applicable(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State, or setting for the controller's alarm. + Possible values: + 1: Enabled + 2: Disabled + 3: Not Applicable" + ::= { controllerEntry 40 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.41 + controllerDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Currently installed driver version for this controller." + ::= { controllerEntry 41 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.42 + controllerPCISlot OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The PCI slot number or embedded number for controllers on the motherboard. + " + ::= { controllerEntry 42 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.43 + controllerClusterMode OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + active(3), + notApplicable(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies if the controller is in cluster mode. + Possible values: + 1 : Enabled + 2 : Disabled + 3 : Active (enabled and active) + 99: Not Applicable + " + ::= { controllerEntry 43 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.44 + controllerMinFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum firmware version for Storage Management to support the controller. + " + ::= { controllerEntry 44 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.45 + controllerMinDriverVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum driver version for Storage Management to support the controller. + " + ::= { controllerEntry 45 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.46 + controllerSCSIInitiatorID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the initiator." + ::= { controllerEntry 46 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.47 + controllerChannelCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Number of channels on the controller." + ::= { controllerEntry 47 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.48 + controllerReconstructRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for reconstruct on the controller. + " + ::= { controllerEntry 48 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.49 + controllerPatrolReadRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for patrol read on the controller. + " + ::= { controllerEntry 49 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.50 + controllerBGIRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for background initialization on the controller. + " + ::= { controllerEntry 50 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.51 + controllerCheckConsistencyRate OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The rate for check consistency on the controller. + " + ::= { controllerEntry 51 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.52 + controllerPatrolReadMode OBJECT-TYPE + SYNTAX INTEGER + { + automatic(1), + manual(2), + disabled(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the patrol read mode. + Possible values: + 1: Automatic (enabled) + 2: Manual (enabled) + 3: Disabled + " + ::= { controllerEntry 52 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.53 + controllerPatrolReadState OBJECT-TYPE + SYNTAX INTEGER + { + stopped(1), + ready(2), + active(4), + aborted(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of the patrol read. + 1: Stopped - not running + 2: Ready - ready to start + 4: Active - is running + 8: Aborted - has aborted + " + ::= { controllerEntry 53 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.1.1.54 + controllerPatrolReadIterations OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times Patrol Read has been run on this controller." + ::= { controllerEntry 54 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2 + channelTable OBJECT-TYPE + SYNTAX SEQUENCE OF ChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of controller channels. The number of entries is + related to the number of channels supported by a RAID + controller. Perc2 RAID controller supports a max of 4 + channels per controller. The maximum number of entries is + implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1 + channelEntry OBJECT-TYPE + SYNTAX ChannelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the channel table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { channelNumber } + ::= { channelTable 1 } + + + ChannelEntry ::= + SEQUENCE { + channelNumber + INTEGER, + channelName + DisplayString, + channelState + INTEGER, + channelSeverity + INTEGER, + channelTermination + INTEGER, + channelSCSIID + INTEGER, + channelRollUpStatus + DellStatus, + channelComponentStatus + DellStatus, + channelNexusID + DisplayString, + channelDataRate + DisplayString, + channelBusType + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.1 + channelNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this channel entry." + ::= { channelEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.2 + channelName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the channel as represented in Storage Management. + The name will include the word channel and the instance. + For example: Channel 1" + ::= { channelEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.3 + channelState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the channel. + Possible states: + 0: Unknown + 1: Ready - The I/O has resumed. + 2: Failed + 3: Online + 4: Offline - The I/O has paused. + 6: Degraded + " + ::= { channelEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.4 + channelSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { channelEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.5 + channelTermination OBJECT-TYPE + SYNTAX INTEGER + { + wide(1), + narrow(2), + notTerminated(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of SCSI termination on this channel. + Termination is required for proper operation of this channel. + + 1: Wide Termination (16 bit) + 2: Narrow Termination (8 bit) + 3: Not Terminated" + ::= { channelEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.6 + channelSCSIID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the controller to which the channel belongs." + ::= { channelEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.7 + channelRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the channel state. + This is the combined status of the channel and its + components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { channelEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.8 + channelComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the channel itself with out without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { channelEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.9 + channelNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this channel." + ::= { channelEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.10 + channelDataRate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The data rate (SCSI speed) of the channel. Example: Ultra 320M SCSI" + ::= { channelEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.2.1.11 + channelBusType OBJECT-TYPE + SYNTAX INTEGER + { + scsi(1), + ide(2), + fibreChannel(3), + ssa(4), + usb(6), + sata(7), + sas(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus type of the channel. + Possible values: + 1: SCSI + 2: IDE + 3: Fibre Channel + 4: SSA + 6: USB + 7: SATA + 8: SAS" + ::= { channelEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3 + enclosureTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Enclosures. The number of entries is + related to number of enclosures discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1 + enclosureEntry OBJECT-TYPE + SYNTAX EnclosureEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Enclosure table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { enclosureNumber } + ::= { enclosureTable 1 } + + + EnclosureEntry ::= + SEQUENCE { + enclosureNumber + INTEGER, + enclosureName + DisplayString, + enclosureVendor + DisplayString, + enclosureState + INTEGER, + enclosureSeverity + INTEGER, + enclosureID + INTEGER, + enclosureProcessorVersion + DisplayString, + enclosureServiceTag + DisplayString, + enclosureAssetTag + DisplayString, + enclosureAssetName + DisplayString, + enclosureSplitBusPartNumber + DisplayString, + enclosureProductID + DisplayString, + enclosureKernelVersion + DisplayString, + enclosureESM1PartNumber + DisplayString, + enclosureESM2PartNumber + DisplayString, + enclosureType + INTEGER, + enclosureProcessor2Version + DisplayString, + enclosureConfig + INTEGER, + enclosureChannelNumber + INTEGER, + enclosureAlarm + INTEGER, + enclosureBackplanePartNumber + DisplayString, + enclosureSCSIID + INTEGER, + enclosureRollUpStatus + DellStatus, + enclosureComponentStatus + DellStatus, + enclosureNexusID + DisplayString, + enclosureFirmwareVersion + DisplayString, + enclosureSCSIRate + DisplayString, + enclosurePartNumber + DisplayString, + enclosureSerialNumber + DisplayString, + enclosureSASAddress + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.1 + enclosureNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of the enclosure entry." + ::= { enclosureEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.2 + enclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's name as represented in Storage Management." + ::= { enclosureEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.3 + enclosureVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's (re)seller's name." + ::= { enclosureEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.4 + enclosureState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the enclosure + (which includes any devices connected to it.) + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 6: Degraded" + ::= { enclosureEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.5 + enclosureSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { enclosureEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.6 + enclosureID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI address of the processor." + ::= { enclosureEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.7 + enclosureProcessorVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.8 + enclosureServiceTag OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Enclosure identification used when consulting customer support." + ::= { enclosureEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.9 + enclosureAssetTag OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "User definable asset tag for the enclosure." + ::= { enclosureEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.10 + enclosureAssetName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "User definable asset name of the enclosure." + ::= { enclosureEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.11 + enclosureSplitBusPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's split bus part number." + ::= { enclosureEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.12 + enclosureProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The enclosure's product identification. This also corresponds to the enclosure type. + " + ::= { enclosureEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.13 + enclosureKernelVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + Refer to enclosureFirmwareVersion for the firmware version of the enclosure." + ::= { enclosureEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.14 + enclosureESM1PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.15 + enclosureESM2PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.16 + enclosureType OBJECT-TYPE + SYNTAX INTEGER + { + internal(1), + dELLPV200SPV201S(2), + dELLPV210SPV211S(3), + dELLPV220SPV221S(4), + dELLPV660F(5), + dELLPV224F(6), + dELLPV660F224F(7), + md1000(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of this enclosure. + Possible values: + 1: Internal + 2: Dell PV200S (PV201S) + 3: Dell PV210S (PV211S) + 4: Dell PV220S (PV221S) + 5: Dell PV660F + 6: Dell PV224F + 7: Dell PV660F / PV224F + 8: Dell MD1000 + 9: Dell MD1120" + ::= { enclosureEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.17 + enclosureProcessor2Version OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { enclosureEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.18 + enclosureConfig OBJECT-TYPE + SYNTAX INTEGER + { + joined(1), + splitBus(2), + clustered(3), + unified(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current configuration of the enclosure's backplane. + Possible values: + 1: Joined + 2: Split Bus + 3: Clustered + 4: Unified" + ::= { enclosureEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.19 + enclosureChannelNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The channel number, or bus, to which the enclosure is connected." + ::= { enclosureEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.20 + enclosureAlarm OBJECT-TYPE + SYNTAX INTEGER + { + disabled(1), + enabled(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current status of the enclosure's alarm (PV220S, and PV221S only.) + Possible values: + 1: Disabled + 2: Enabled" + ::= { enclosureEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.21 + enclosureBackplanePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure's backplane." + ::= { enclosureEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.22 + enclosureSCSIID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the controller to which this enclosure is attached." + ::= { enclosureEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.23 + enclosureRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the enclosure state. + This is the combined status of the enclosure and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.24 + enclosureComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.25 + enclosureNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this enclosure." + ::= { enclosureEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.26 + enclosureFirmwareVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware version of the enclosure." + ::= { enclosureEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.27 + enclosureSCSIRate OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Actual SCSI rate in the enclosure. + " + ::= { enclosureEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.28 + enclosurePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure. + " + ::= { enclosureEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.29 + enclosureSerialNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Serial number of the enclosure. + " + ::= { enclosureEntry 29 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.3.1.30 + enclosureSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The specified SAS address if this is a SAS enclosure. " + ::= { enclosureEntry 30 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4 + arrayDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Array Disks. The number of entries is + related to number of Array Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1 + arrayDiskEntry OBJECT-TYPE + SYNTAX ArrayDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskNumber } + ::= { arrayDiskTable 1 } + + + ArrayDiskEntry ::= + SEQUENCE { + arrayDiskNumber + INTEGER, + arrayDiskName + DisplayString, + arrayDiskVendor + DisplayString, + arrayDiskState + INTEGER, + arrayDiskSeverity + INTEGER, + arrayDiskProductID + DisplayString, + arrayDiskSerialNo + DisplayString, + arrayDiskRevision + DisplayString, + arrayDiskEnclosureID + DisplayString, + arrayDiskChannel + INTEGER, + arrayDiskLengthInMB + INTEGER, + arrayDiskLengthInBytes + INTEGER, + arrayDiskLargestContiguousFreeSpaceInMB + INTEGER, + arrayDiskLargestContiguousFreeSpaceInBytes + INTEGER, + arrayDiskTargetID + INTEGER, + arrayDiskLunID + INTEGER, + arrayDiskUsedSpaceInMB + INTEGER, + arrayDiskUsedSpaceInBytes + INTEGER, + arrayDiskFreeSpaceInMB + INTEGER, + arrayDiskFreeSpaceInBytes + INTEGER, + arrayDiskBusType + INTEGER, + arrayDiskSpareState + INTEGER, + arrayDiskRollUpStatus + DellStatus, + arrayDiskComponentStatus + DellStatus, + arrayDiskDeviceName + DisplayString, + arrayDiskNexusID + DisplayString, + arrayDiskPartNumber + DisplayString, + arrayDiskSASAddress + DisplayString, + arrayDiskNegotiatedSpeed + INTEGER, + arrayDiskCapableSpeed + INTEGER, + arrayDiskSmartAlertIndication + INTEGER, + arrayDiskManufactureDay + DisplayString, + arrayDiskManufactureWeek + DisplayString, + arrayDiskManufactureYear + DisplayString, + arrayDiskMediaType + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.1 + arrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk entry." + ::= { arrayDiskEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.2 + arrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk as represented in Storage Management." + ::= { arrayDiskEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.3 + arrayDiskVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The array disk's manufacturer's name." + ::= { arrayDiskEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.4 + arrayDiskState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6), + recovering(7), + removed(11), + resynching(15), + rebuild(24), + noMedia(25), + formatting(26), + diagnostics(28), + predictiveFailure(34), + initializing(35), + foreign(39), + clear(40), + unsupported(41), + incompatible(53) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the array disk. + Possible states: + 0: Unknown + 1: Ready - Available for use, but no RAID configuration has been assigned. + 2: Failed - Not operational. + 3: Online - Operational. RAID configuration has been assigned. + 4: Offline - The drive is not available to the RAID controller. + 6: Degraded - Refers to a fault-tolerant array/virtual disk that has a failed disk. + 7: Recovering - Refers to state of recovering from bad blocks on disks. + 11: Removed - Indicates that array disk has been removed. + 15: Resynching - Indicates one of the following types of disk operations: Transform Type, Reconfiguration, and Check Consistency. + 24: Rebuild + 25: No Media - CD-ROM or removable disk has no media. + 26: Formatting - In the process of formatting. + 28: Diagnostics - Diagnostics are running. + 34: Predictive failure + 35: Initializing: Applies only to virtual disks on PERC, PERC 2/SC, and PERC 2/DC controllers. + 39: Foreign + 40: Clear + 41: Unsupported + 53: Incompatible + + " + ::= { arrayDiskEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.5 + arrayDiskSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { arrayDiskEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.6 + arrayDiskProductID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The model number of the array disk." + ::= { arrayDiskEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.7 + arrayDiskSerialNo OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The array disk's unique identification number from the manufacturer. + " + ::= { arrayDiskEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.8 + arrayDiskRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The firmware version of the array disk." + ::= { arrayDiskEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.9 + arrayDiskEnclosureID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI ID of the enclosure processor to which this array disk belongs." + ::= { arrayDiskEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.10 + arrayDiskChannel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus to which this array disk is connected." + ::= { arrayDiskEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.11 + arrayDiskLengthInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in megabytes of the array disk. If this size is 0, it is smaller than a megabyte." + ::= { arrayDiskEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.12 + arrayDiskLengthInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the array disk in bytes that is less than + a megabyte. This size plus the arrayDiskLengthInMB is + the total size of the array disk." + ::= { arrayDiskEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.13 + arrayDiskLargestContiguousFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in megabytes of the largest contiguous free space + on the array disk. If this size is 0, it is less than a megabyte." + ::= { arrayDiskEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.14 + arrayDiskLargestContiguousFreeSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of the largest contiguous free space on this + array disk in bytes that is less than a megabyte. + This size plus the arrayDiskLargestContiguousFreeSpaceInMB + is the total size of the largest contiguous free space on + the array disk." + ::= { arrayDiskEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.15 + arrayDiskTargetID OBJECT-TYPE + SYNTAX INTEGER (0..15) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The SCSI target ID which this array disk is assigned. " + ::= { arrayDiskEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.16 + arrayDiskLunID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The array disk's logical unit number. " + ::= { arrayDiskEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.17 + arrayDiskUsedSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount in megabytes of the used space on the array + disk. If this size is 0, it is smaller than a megabyte." + ::= { arrayDiskEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.18 + arrayDiskUsedSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in bytes of the used space on the array disk + that is smaller than a megabyte. This size plus the + arrayDiskUsedSpaceInMB is the total amount of used space + on the array disk." + ::= { arrayDiskEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.19 + arrayDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The amount in megabytes of the free space on the array + disk. If this size is 0, it is smaller than a megabyte." + ::= { arrayDiskEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.20 + arrayDiskFreeSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size in bytes of the free space on the array disk + that is smaller than a megabyte. This size plus the + arrayDiskFreeSpaceInMB is the total amount of free space + on the array disk." + ::= { arrayDiskEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.21 + arrayDiskBusType OBJECT-TYPE + SYNTAX INTEGER + { + scsi(1), + ide(2), + fibre(3), + ssa(4), + usb(6), + sata(7), + sas(8) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The bus type of the array disk. + Possible values: + 1: SCSI + 2: IDE + 3: Fibre Channel + 4: SSA + 6: USB + 7: SATA + 8: SAS" + ::= { arrayDiskEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.22 + arrayDiskSpareState OBJECT-TYPE + SYNTAX INTEGER + { + memberVD(1), + memberDG(2), + globalHotSpare(3), + dedicatedHotSpare(4), + notASpare(5), + notApplicable(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the array disk as a spare. + Possible states: + 1 : disk is a member of a virtual disk + 2 : disk is a member of a disk group + 3 : disk is a global hot spare + 4 : disk is a dedicated hot spare + 5 : not a spare + 99: not applicable" + ::= { arrayDiskEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.23 + arrayDiskRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the array disk state. + This is the combined status of the array disk and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { arrayDiskEntry 23 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.24 + arrayDiskComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the array disk itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { arrayDiskEntry 24 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.25 + arrayDiskDeviceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The operating system device name for this disk. This property is only applicable to array disks attached to a RAID controller." + ::= { arrayDiskEntry 25 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.26 + arrayDiskNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this array disk." + ::= { arrayDiskEntry 26 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.27 + arrayDiskPartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the disk. + " + ::= { arrayDiskEntry 27 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.28 + arrayDiskSASAddress OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The specified SAS address if this is a SAS disk. + " + ::= { arrayDiskEntry 28 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.29 + arrayDiskNegotiatedSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The speed at which the drive is actually running in MPS (megabytes per second). + " + ::= { arrayDiskEntry 29 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.30 + arrayDiskCapableSpeed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum speed at which the drive is capable of negotiating in MPS (megabytes per second). + " + ::= { arrayDiskEntry 30 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.31 + arrayDiskSmartAlertIndication OBJECT-TYPE + SYNTAX INTEGER + { + no(1), + yes(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicated whether the disk has received a predictive failure. + Possible values: + 1: No - disk has not received a predictive failure alert + 2: Yes - disk has received a predictive failure alert" + ::= { arrayDiskEntry 31 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.32 + arrayDiskManufactureDay OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The day of the week (1=Sunday thru 7=Saturday) on which this disk was manufactured." + ::= { arrayDiskEntry 32 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.33 + arrayDiskManufactureWeek OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The week (1 thru 53) in which this disk was manufactured." + ::= { arrayDiskEntry 33 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.34 + arrayDiskManufactureYear OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The four digit year in which this disk was manufactured." + ::= { arrayDiskEntry 34 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.4.1.35 + arrayDiskMediaType OBJECT-TYPE + SYNTAX INTEGER + { + unknown(1), + hdd(2), + ssd(3) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The Media type of the array disk. + Possible Values: + 1:unknown + 2:hdd + 3:ssd" + ::= { arrayDiskEntry 35 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5 + arrayDiskEnclosureConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskEnclosureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between array disks, their enclosure, + and their associated controller. For each object in the table, its + object number corresponds to an instance number in the appropriate + MIB table for that object where all of the object properties can be found. + Note: Only array disks that are part of an enclosure will be listed + in this table. Backplanes are considered enclosures by + Storage Management." + ::= { physicalDevices 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1 + arrayDiskEnclosureConnectionEntry OBJECT-TYPE + SYNTAX ArrayDiskEnclosureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk Enclosure Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskEnclosureConnectionNumber } + ::= { arrayDiskEnclosureConnectionTable 1 } + + + ArrayDiskEnclosureConnectionEntry ::= + SEQUENCE { + arrayDiskEnclosureConnectionNumber + INTEGER, + arrayDiskEnclosureConnectionArrayDiskName + DisplayString, + arrayDiskEnclosureConnectionArrayDiskNumber + INTEGER, + arrayDiskEnclosureConnectionEnclosureName + DisplayString, + arrayDiskEnclosureConnectionEnclosureNumber + INTEGER, + arrayDiskEnclosureConnectionControllerName + DisplayString, + arrayDiskEnclosureConnectionControllerNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.1 + arrayDiskEnclosureConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk connection entry. + This table shows the array disk to enclosure relationship." + ::= { arrayDiskEnclosureConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.2 + arrayDiskEnclosureConnectionArrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk in this connection as represented in Storage Management." + ::= { arrayDiskEnclosureConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.3 + arrayDiskEnclosureConnectionArrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the array disk in the arrayDiskTable + in this connection." + ::= { arrayDiskEnclosureConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.4 + arrayDiskEnclosureConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this array disk belongs. + " + ::= { arrayDiskEnclosureConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.5 + arrayDiskEnclosureConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the enclosureTable of the enclosure + to which this array disk belongs." + ::= { arrayDiskEnclosureConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.6 + arrayDiskEnclosureConnectionControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller as represented in Storage Management + to which this array disk is connected." + ::= { arrayDiskEnclosureConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.5.1.7 + arrayDiskEnclosureConnectionControllerNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the controllerTable of the controller + to which this array disk is connected." + ::= { arrayDiskEnclosureConnectionEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6 + arrayDiskChannelConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskChannelConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between array disks, their channel, and + their associated controller. For each object in the table, its + object number corresponds to an instance number in the appropriate + MIB table for that object where all of the object properties can be + found. + Note: Only array disks that are NOT part of an enclosure will be + listed in this table. Backplanes are considered enclosures by + Storage Management." + ::= { physicalDevices 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1 + arrayDiskChannelConnectionEntry OBJECT-TYPE + SYNTAX ArrayDiskChannelConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk Channel Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskChannelConnectionNumber } + ::= { arrayDiskChannelConnectionTable 1 } + + + ArrayDiskChannelConnectionEntry ::= + SEQUENCE { + arrayDiskChannelConnectionNumber + INTEGER, + arrayDiskChannelConnectionArrayDiskName + DisplayString, + arrayDiskChannelConnectionArrayDiskNumber + INTEGER, + arrayDiskChannelConnectionChannelName + DisplayString, + arrayDiskChannelConnectionChannelNumber + INTEGER, + arrayDiskChannelConnectionControllerName + DisplayString, + arrayDiskChannelConnectionControllerNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.1 + arrayDiskChannelConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk connection entry. + This table shows the array disk to SCSI channel relationship. + There is no enclosure service processor associated with these + array disks." + ::= { arrayDiskChannelConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.2 + arrayDiskChannelConnectionArrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk in this connection + as represented in Storage Management." + ::= { arrayDiskChannelConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.3 + arrayDiskChannelConnectionArrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the array disk in the arrayDiskTable + in this connection." + ::= { arrayDiskChannelConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.4 + arrayDiskChannelConnectionChannelName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the channel as represented in Storage Management + to which is array disk is connected." + ::= { arrayDiskChannelConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.5 + arrayDiskChannelConnectionChannelNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the channel in the channelTable to + which this array disk is connected." + ::= { arrayDiskChannelConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.6 + arrayDiskChannelConnectionControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller as represented in Storage Management + to which this array disk is connected." + ::= { arrayDiskChannelConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.6.1.7 + arrayDiskChannelConnectionControllerNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the controllerTable of the controller + to which this array disk is connected." + ::= { arrayDiskChannelConnectionEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7 + fanTable OBJECT-TYPE + SYNTAX SEQUENCE OF FanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Fans. The number of entries is + related to number of Fans discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1 + fanEntry OBJECT-TYPE + SYNTAX FanEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Fan table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { fanNumber } + ::= { fanTable 1 } + + + FanEntry ::= + SEQUENCE { + fanNumber + INTEGER, + fanName + DisplayString, + fanVendor + DisplayString, + fanState + INTEGER, + fanSeverity + INTEGER, + fanProbeUnit + DisplayString, + fanProbeMinWarning + DisplayString, + fanProbeMinCritical + DisplayString, + fanProbeMaxWarning + DisplayString, + fanProbeMaxCritical + DisplayString, + fanProbeCurrValue + DisplayString, + fan1PartNumber + DisplayString, + fan2PartNumber + DisplayString, + fanRollUpStatus + DellStatus, + fanComponentStatus + DellStatus, + fanNexusID + DisplayString, + fanRevision + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.1 + fanNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this fan entry." + ::= { fanEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.2 + fanName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's name as represented in Storage Management." + ::= { fanEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.3 + fanVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The fan's (re)seller's name." + ::= { fanEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.4 + fanState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + degraded(6), + removed(11), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the fan. + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 6: Degraded + 21: Missing" + ::= { fanEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.5 + fanSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { fanEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.6 + fanProbeUnit OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management." + ::= { fanEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.7 + fanProbeMinWarning OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.8 + fanProbeMinCritical OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.9 + fanProbeMaxWarning OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.10 + fanProbeMaxCritical OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.11 + fanProbeCurrValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current speed of the fan. + " + ::= { fanEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.12 + fan1PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the fan in the enclosure." + ::= { fanEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.13 + fan2PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by fans managed under Storage Management." + ::= { fanEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.14 + fanRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the fan state. + This is the combined status of the fan and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { fanEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.15 + fanComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the fan itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { fanEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.16 + fanNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this fan." + ::= { fanEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.7.1.17 + fanRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision number of the fan in the enclosure." + ::= { fanEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8 + fanConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF FanConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each fan on + the managed node and its enclosure. Each enclosure + number in the table corresponds to that enclosure instance + in the Enclosure Table." + ::= { physicalDevices 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1 + fanConnectionEntry OBJECT-TYPE + SYNTAX FanConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Fan Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { fanConnectionNumber } + ::= { fanConnectionTable 1 } + + + FanConnectionEntry ::= + SEQUENCE { + fanConnectionNumber + INTEGER, + fanConnectionFanName + DisplayString, + fanConnectionFanNumber + INTEGER, + fanConnectionEnclosureName + DisplayString, + fanConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.1 + fanConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this fan connection entry." + ::= { fanConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.2 + fanConnectionFanName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the fan in this connection as represented in Storage Management." + ::= { fanConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.3 + fanConnectionFanNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the fan in the fanTable in this connection." + ::= { fanConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.4 + fanConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this fan belongs." + ::= { fanConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.8.1.5 + fanConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this fan belongs." + ::= { fanConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9 + powerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Power Supplies. The number of entries is + related to number of Power Supplies discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1 + powerSupplyEntry OBJECT-TYPE + SYNTAX PowerSupplyEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Power Supply table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { powerSupplyNumber } + ::= { powerSupplyTable 1 } + + + PowerSupplyEntry ::= + SEQUENCE { + powerSupplyNumber + INTEGER, + powerSupplyName + DisplayString, + powerSupplyVendor + DisplayString, + powerSupplyState + INTEGER, + powerSupplySeverity + INTEGER, + powerSupply1PartNumber + DisplayString, + powerSupply2PartNumber + DisplayString, + powerSupplyRollUpStatus + DellStatus, + powerSupplyComponentStatus + DellStatus, + powerSupplyNexusID + DisplayString, + powerSupplyRevision + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.1 + powerSupplyNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this power supply entry." + ::= { powerSupplyEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.2 + powerSupplyName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply's name as represented in Storage Management." + ::= { powerSupplyEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.3 + powerSupplyVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The power supply's (re)seller's name." + ::= { powerSupplyEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.4 + powerSupplyState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + notInstalled(5), + degraded(6), + removed(11), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the power supply. + Possible states: + 0 : Unknown + 1 : Ready + 2 : Failed + 5 : Not Installed + 6 : Degraded + 11: Removed + 21: Missing" + ::= { powerSupplyEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.5 + powerSupplySeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { powerSupplyEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.6 + powerSupply1PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the power supply of the enclosure." + ::= { powerSupplyEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.7 + powerSupply2PartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This setting is not supported + by power supplies managed under Storage Management." + ::= { powerSupplyEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.8 + powerSupplyRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the power supply state. + This is the combined status of the power supply and its + components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { powerSupplyEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.9 + powerSupplyComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the power supply itself without the + propegation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { powerSupplyEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.10 + powerSupplyNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this power supply." + ::= { powerSupplyEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.9.1.11 + powerSupplyRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision number of the power supply in the enclosure." + ::= { powerSupplyEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10 + powerSupplyConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF PowerSupplyConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each power + supply on the managed node and its enclosure. Each + enclosure number in the table corresponds to that + enclosure instance in the Enclosure Table." + ::= { physicalDevices 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1 + powerSupplyConnectionEntry OBJECT-TYPE + SYNTAX PowerSupplyConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Power Supply Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { powerSupplyConnectionNumber } + ::= { powerSupplyConnectionTable 1 } + + + PowerSupplyConnectionEntry ::= + SEQUENCE { + powerSupplyConnectionNumber + INTEGER, + powerSupplyConnectionPowersupplyName + DisplayString, + powerSupplyConnectionPowersupplyNumber + INTEGER, + powerSupplyConnectionEnclosureName + DisplayString, + powerSupplyConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.1 + powerSupplyConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this power supply connection entry." + ::= { powerSupplyConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.2 + powerSupplyConnectionPowersupplyName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the power supply in this connection + as represented in Storage Management." + ::= { powerSupplyConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.3 + powerSupplyConnectionPowersupplyNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This instance number in the powersupplyTable + of the power supply in this connection." + ::= { powerSupplyConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.4 + powerSupplyConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure to which this power supply is + connected as represented in Storage Management." + ::= { powerSupplyConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.10.1.5 + powerSupplyConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this power supply is connected." + ::= { powerSupplyConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11 + temperatureProbeTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureProbeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Temperature Probes. The number of entries is + related to number of Temperature Probes discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1 + temperatureProbeEntry OBJECT-TYPE + SYNTAX TemperatureProbeEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Temperature Probe table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { temperatureProbeNumber } + ::= { temperatureProbeTable 1 } + + + TemperatureProbeEntry ::= + SEQUENCE { + temperatureProbeNumber + INTEGER, + temperatureProbeName + DisplayString, + temperatureProbeVendor + DisplayString, + temperatureProbeState + INTEGER, + temperatureProbeSeverity + INTEGER, + temperatureProbeUnit + DisplayString, + temperatureProbeMinWarning + INTEGER, + temperatureProbeMinCritical + INTEGER, + temperatureProbeMaxWarning + INTEGER, + temperatureProbeMaxCritical + INTEGER, + temperatureProbeCurValue + INTEGER, + temperatureProbeRollUpStatus + DellStatus, + temperatureProbeComponentStatus + DellStatus, + temperatureProbeNexusID + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.1 + temperatureProbeNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this temperature probe entry." + ::= { temperatureProbeEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.2 + temperatureProbeName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of this temperature probe as represented in Storage Management." + ::= { temperatureProbeEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.3 + temperatureProbeVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Temperature probe's (re)seller's name." + ::= { temperatureProbeEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.4 + temperatureProbeState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + offline(4), + degraded(6), + inactive(9), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the temperature probe. + Possible states: + 0: Unknown + 1: Ready + 2: Failed (Minimum Failure Threshold Exceeded, + Maximum Failure Threshold Exceeded) + 4: Offline + 6: Degraded (Minimum Warning Threshold Exceeded, + Maximum Warning Threshold Exceeded) + 9: Inactive + 21: Missing" + ::= { temperatureProbeEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.5 + temperatureProbeSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { temperatureProbeEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.6 + temperatureProbeUnit OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The units that will be used to display temperatures for this + temperature probe." + ::= { temperatureProbeEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.7 + temperatureProbeMinWarning OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum temperature that will force the probe into + a warning state." + ::= { temperatureProbeEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.8 + temperatureProbeMinCritical OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The minimum temperature that will force the probe into + an error state." + ::= { temperatureProbeEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.9 + temperatureProbeMaxWarning OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + a warning state." + ::= { temperatureProbeEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.10 + temperatureProbeMaxCritical OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum temperature that will force the probe into + an error state." + ::= { temperatureProbeEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.11 + temperatureProbeCurValue OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current temperature of this probe." + ::= { temperatureProbeEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.12 + temperatureProbeRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the temperature probe state. + This is the combined status of the temperature probe + and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { temperatureProbeEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.13 + temperatureProbeComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the temperature probe itself without the propagation + of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { temperatureProbeEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.11.1.14 + temperatureProbeNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this temperature probe." + ::= { temperatureProbeEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12 + temperatureConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF TemperatureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each + temperature probe on the managed node and its enclosure. + Each enclosure number in the table corresponds to that + enclosure instance in the Enclosure Table." + ::= { physicalDevices 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1 + temperatureConnectionEntry OBJECT-TYPE + SYNTAX TemperatureConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Temperature Probe Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { temperatureConnectionNumber } + ::= { temperatureConnectionTable 1 } + + + TemperatureConnectionEntry ::= + SEQUENCE { + temperatureConnectionNumber + INTEGER, + temperatureConnectionTemperatureName + DisplayString, + temperatureConnectionTemperatureNumber + INTEGER, + temperatureConnectionEnclosureName + DisplayString, + temperatureConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.1 + temperatureConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this temperature probe connection entry." + ::= { temperatureConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.2 + temperatureConnectionTemperatureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the temperature probe in this connection as + represented in Storage Management." + ::= { temperatureConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.3 + temperatureConnectionTemperatureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the temperatureTable of the temperature probe in this connection." + ::= { temperatureConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.4 + temperatureConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this temperature probe belongs." + ::= { temperatureConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.12.1.5 + temperatureConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this temperature probe belongs. + " + ::= { temperatureConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13 + enclosureManagementModuleTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Enclosure Management Modules. The number of + entries is related to number of Enclosure Management Modules + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1 + enclosureManagementModuleEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Enclosure Management Module table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { enclosureManagementModuleNumber } + ::= { enclosureManagementModuleTable 1 } + + + EnclosureManagementModuleEntry ::= + SEQUENCE { + enclosureManagementModuleNumber + INTEGER, + enclosureManagementModuleName + DisplayString, + enclosureManagementModuleVendor + DisplayString, + enclosureManagementModuleState + INTEGER, + enclosureManagementModuleSeverity + INTEGER, + enclosureManagementModulePartNumber + DisplayString, + enclosureManagementModuleType + INTEGER, + enclosureManagementModuleFWVersion + DisplayString, + enclosureManagementModuleMaxSpeed + DisplayString, + enclosureManagementModuleRollUpStatus + DellStatus, + enclosureManagementModuleComponentStatus + DellStatus, + enclosureManagementModuleNexusID + DisplayString, + enclosureManagementModuleRevision + DisplayString + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.1 + enclosureManagementModuleNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this enclosure memory module entry." + ::= { enclosureManagementModuleEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.2 + enclosureManagementModuleName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name of this enclosure memory module as represented in + Storage Management." + ::= { enclosureManagementModuleEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.3 + enclosureManagementModuleVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The management module's (re)seller's name." + ::= { enclosureManagementModuleEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.4 + enclosureManagementModuleState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + notInstalled(5), + degraded(6), + missing(21) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of the enclosure management + module. + Possible states: + 0: Unknown + 1: Ready + 2: Failed + 3: Online + 4: Offline + 5: Not Installed + 6: Degraded + 21: Missing" + ::= { enclosureManagementModuleEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.5 + enclosureManagementModuleSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { enclosureManagementModuleEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.6 + enclosureManagementModulePartNumber OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The part number of the enclosure memory module." + ::= { enclosureManagementModuleEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.7 + enclosureManagementModuleType OBJECT-TYPE + SYNTAX INTEGER + { + eMM(1), + terminationCard(2) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The type of the enclosure management module. + Possible values: + 0: Unknown + 1: EMM + 2: Termination Card" + ::= { enclosureManagementModuleEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.8 + enclosureManagementModuleFWVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Firmware version of the enclosure memory module." + ::= { enclosureManagementModuleEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.9 + enclosureManagementModuleMaxSpeed OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum bus speed of the enclosure management module." + ::= { enclosureManagementModuleEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.10 + enclosureManagementModuleRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the enclosure management module state. + This is the combined status of the EMM and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureManagementModuleEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.11 + enclosureManagementModuleComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the enclosure management module itself + without the propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { enclosureManagementModuleEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.12 + enclosureManagementModuleNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this EMM." + ::= { enclosureManagementModuleEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.13.1.13 + enclosureManagementModuleRevision OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The revision number of the enclosure management module." + ::= { enclosureManagementModuleEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14 + enclosureManagementModuleConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF EnclosureManagementModuleConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each enclosure management module + on the managed node and its enclosure. Each enclosure + number in the table corresponds to that enclosure instance + in the Enclosure Table." + ::= { physicalDevices 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1 + enclosureManagementModuleConnectionEntry OBJECT-TYPE + SYNTAX EnclosureManagementModuleConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Enclosure Management Module Connection table . A row in this + table cannot be created or deleted by SNMP operations on columns of the table." + INDEX { enclosureManagementModuleConnectionNumber } + ::= { enclosureManagementModuleConnectionTable 1 } + + + EnclosureManagementModuleConnectionEntry ::= + SEQUENCE { + enclosureManagementModuleConnectionNumber + INTEGER, + enclosureManagementModuleConnectionEMMName + DisplayString, + enclosureManagementModuleConnectionEMMNumber + INTEGER, + enclosureManagementModuleConnectionEnclosureName + DisplayString, + enclosureManagementModuleConnectionEnclosureNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.1 + enclosureManagementModuleConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this enclosure management module + connection entry." + ::= { enclosureManagementModuleConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.2 + enclosureManagementModuleConnectionEMMName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure management module in this + connection as represented in Storage Management." + ::= { enclosureManagementModuleConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.3 + enclosureManagementModuleConnectionEMMNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure management module in + the enclosureManagementModuleTable in this connection." + ::= { enclosureManagementModuleConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.4 + enclosureManagementModuleConnectionEnclosureName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the enclosure as represented in Storage Management + to which this enclosure management module belongs." + ::= { enclosureManagementModuleConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.14.1.5 + enclosureManagementModuleConnectionEnclosureNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the enclosure in the enclosureTable + to which this enclosure management module belongs." + ::= { enclosureManagementModuleConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15 + batteryTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Batteries. The number of + entries is related to number of Batteries + discovered in the system. The maximum number of entries + is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { physicalDevices 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1 + batteryEntry OBJECT-TYPE + SYNTAX BatteryEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Battery table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { batteryNumber } + ::= { batteryTable 1 } + + + BatteryEntry ::= + SEQUENCE { + batteryNumber + INTEGER, + batteryName + DisplayString, + batteryVendor + DisplayString, + batteryState + INTEGER, + batteryRollUpStatus + DellStatus, + batteryComponentStatus + DellStatus, + batteryChargeCount + INTEGER, + batteryMaxChargeCount + INTEGER, + batteryNexusID + DisplayString, + batteryPredictedCapacity + INTEGER, + batteryNextLearnTime + INTEGER, + batteryLearnState + INTEGER, + batteryMaxLearnDelay + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.1 + batteryNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this battery entry." + ::= { batteryEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.2 + batteryName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's name as represented in Storage Management." + ::= { batteryEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.3 + batteryVendor OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The battery's (re)seller's name." + ::= { batteryEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.4 + batteryState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + degraded(6), + reconditioning(7), + high(9), + low(10), + charging(12), + missing(21), + learning(36) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Current state of battery. + Possible values: + 0: Unknown + 1: Ready + 2: Failed + 6: Degraded + 7: Reconditioning + 9: High + 10: Low Power + 12: Charging + 21: Missing + 36: Learning + " + ::= { batteryEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.5 + batteryRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the battery state. + This is the combined status of the battery and its components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.6 + batteryComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the battery itself without the + propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { batteryEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.7 + batteryChargeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of charges that have been applied to the battery." + ::= { batteryEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.8 + batteryMaxChargeCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum number of charges that can be applied to the battery." + ::= { batteryEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.9 + batteryNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this battery." + ::= { batteryEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.10 + batteryPredictedCapacity OBJECT-TYPE + SYNTAX INTEGER + { + failed(1), + ready(2), + unknown(4) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This property displays the battery's ability to be charged. + Possible values: + 1: Failed - The battery cannot be charged and needs to be replaced. + 2: Ready - The battery can be charged to full capacity. + 4: Unknown - The battery is completing a Learn cycle. The charge capacity of the battery cannot be determined until the Learn cycle is complete. + " + ::= { batteryEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.11 + batteryNextLearnTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Time next learn cycle must be executed (in hours.) + " + ::= { batteryEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.12 + batteryLearnState OBJECT-TYPE + SYNTAX INTEGER + { + failed(1), + active(2), + timedOut(4), + requested(8), + idle(16) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Specifies the learn state activity of the battery. + Possible values: + 1 : Failed + 2 : Active + 4 : Timed out + 8 : Requested + 16: Idle" + ::= { batteryEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.15.1.14 + batteryMaxLearnDelay OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum amount of time (in hours) that the battery learn cycle can be delayed." + ::= { batteryEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16 + batteryConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF BatteryConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between each + battery on the managed node and its controller. + Each controller number in the table corresponds to that + controller instance in the Controller Table." + ::= { physicalDevices 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1 + batteryConnectionEntry OBJECT-TYPE + SYNTAX BatteryConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Battery Connection table . A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { batteryConnectionNumber } + ::= { batteryConnectionTable 1 } + + + BatteryConnectionEntry ::= + SEQUENCE { + batteryConnectionNumber + INTEGER, + batteryConnectionBatteryName + DisplayString, + batteryConnectionBatteryNumber + INTEGER, + batteryConnectionControllerName + DisplayString, + batteryConnectionControllerNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.1 + batteryConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..255) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this battery connection entry." + ::= { batteryConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.2 + batteryConnectionBatteryName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the battery in this connection as represented in Storage Management." + ::= { batteryConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.3 + batteryConnectionBatteryNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number in the batteryTable of the battery in this connection." + ::= { batteryConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.4 + batteryConnectionControllerName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the controller as represented in Storage Management + to which this battery belongs." + ::= { batteryConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.130.16.1.5 + batteryConnectionControllerNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the controller in the controllerTable + to which this battery belongs." + ::= { batteryConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140 + logicalDevices OBJECT IDENTIFIER ::= { storageManagement 140 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3 + arrayDiskLogicalConnectionTable OBJECT-TYPE + SYNTAX SEQUENCE OF ArrayDiskLogicalConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of the connections between array disks, the + virtual disk to which they belong, and their + associated logical disk. For each object in the table, + its object number corresponds to an instance number in + the appropriate MIB table for that object where all of + the object properties can be found. + + + " + ::= { logicalDevices 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1 + arrayDiskLogicalConnectionEntry OBJECT-TYPE + SYNTAX ArrayDiskLogicalConnectionEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Array Disk Logical Connection table . A row in this table + cannot be created or deleted by SNMP operations on columns of the table." + INDEX { arrayDiskLogicalConnectionNumber } + ::= { arrayDiskLogicalConnectionTable 1 } + + + ArrayDiskLogicalConnectionEntry ::= + SEQUENCE { + arrayDiskLogicalConnectionNumber + INTEGER, + arrayDiskLogicalConnectionArrayDiskName + DisplayString, + arrayDiskLogicalConnectionArrayDiskNumber + INTEGER, + arrayDiskLogicalConnectionVirtualDiskName + DisplayString, + arrayDiskLogicalConnectionVirtualDiskNumber + INTEGER, + arrayDiskLogicalConnectionDiskName + DisplayString, + arrayDiskLogicalConnectionDiskNumber + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.1 + arrayDiskLogicalConnectionNumber OBJECT-TYPE + SYNTAX INTEGER (1..1000000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this array disk logical connection entry." + ::= { arrayDiskLogicalConnectionEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.2 + arrayDiskLogicalConnectionArrayDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the array disk in this logical connection." + ::= { arrayDiskLogicalConnectionEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.3 + arrayDiskLogicalConnectionArrayDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the array disk in this logical connection." + ::= { arrayDiskLogicalConnectionEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.4 + arrayDiskLogicalConnectionVirtualDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the virtual disk to which this array disk belongs." + ::= { arrayDiskLogicalConnectionEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.5 + arrayDiskLogicalConnectionVirtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The instance number of the virtual disk to which this array disk + belongs." + ::= { arrayDiskLogicalConnectionEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.6 + arrayDiskLogicalConnectionDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the disk group to with this array disk belongs. + This property is currently not supported." + ::= { arrayDiskLogicalConnectionEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.3.1.7 + arrayDiskLogicalConnectionDiskNumber OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This instance number of the disk group to with this array disk belongs. + This property is currently not supported." + ::= { arrayDiskLogicalConnectionEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1 + virtualDiskTable OBJECT-TYPE + SYNTAX SEQUENCE OF VirtualDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table of managed Virtual Disks. The number of entries is related + to number of Virtual Disks discovered in the system. + The maximum number of entries is implementation dependent. + Note: The properties in this table may not be applicable to all entries." + ::= { logicalDevices 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1 + virtualDiskEntry OBJECT-TYPE + SYNTAX VirtualDiskEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry in the Virtual Disk table. A row in this table cannot be + created or deleted by SNMP operations on columns of the table." + INDEX { virtualDiskNumber } + ::= { virtualDiskTable 1 } + + + VirtualDiskEntry ::= + SEQUENCE { + virtualDiskNumber + INTEGER, + virtualDiskName + DisplayString, + virtualDiskDeviceName + DisplayString, + virtualDiskState + INTEGER, + virtualDiskSeverity + INTEGER, + virtualDiskLengthInMB + INTEGER, + virtualDiskLengthInBytes + INTEGER, + virtualDiskFreeSpaceInMB + INTEGER, + virtualDiskFreeSpaceInBytes + INTEGER, + virtualDiskWritePolicy + INTEGER, + virtualDiskReadPolicy + INTEGER, + virtualDiskCachePolicy + INTEGER, + virtualDiskLayout + INTEGER, + virtualDiskCurStripeSizeInMB + INTEGER, + virtualDiskCurStripeSizeInBytes + INTEGER, + virtualDiskChannel + INTEGER, + virtualDiskTargetID + INTEGER, + virtualDiskLunID + INTEGER, + virtualDiskRollUpStatus + DellStatus, + virtualDiskComponentStatus + DellStatus, + virtualDiskNexusID + DisplayString, + virtualDiskArrayDiskType + INTEGER + } + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.1 + virtualDiskNumber OBJECT-TYPE + SYNTAX INTEGER (1..100000000) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Instance number of this virtual disk entry." + ::= { virtualDiskEntry 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.2 + virtualDiskName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's label generated by Storage Management or entered + by the user." + ::= { virtualDiskEntry 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.3 + virtualDiskDeviceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Device name used by this virtual disk's member disks." + ::= { virtualDiskEntry 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.4 + virtualDiskState OBJECT-TYPE + SYNTAX INTEGER + { + ready(1), + failed(2), + online(3), + offline(4), + degraded(6), + verifying(7), + resynching(15), + regenerating(16), + failedRedundancy(18), + rebuilding(24), + formatting(26), + reconstructing(32), + initializing(35), + backgroundInit(36), + permanentlyDegraded(52) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current condition of this virtual disk + (which includes any member array disks.) + Possible states: + 0: Unknown + 1: Ready - The disk is accessible and has no known problems. + 2: Failed - Access has been lost to the data or is about to be lost. + 3: Online + 4: Offline - The disk is not accessible. The disk may be corrupted or intermittently unavailable. + 6: Degraded - The data on the virtual disk is no longer fault tolerant because one of the underlying disks is not online. + 15: Resynching + 16: Regenerating + 24: Rebuilding + 26: Formatting + 32: Reconstructing + 35: Initializing + 36: Background Initialization + 38: Resynching Paused + 52: Permanently Degraded + 54: Degraded Redundancy" + ::= { virtualDiskEntry 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.5 + virtualDiskSeverity OBJECT-TYPE + SYNTAX INTEGER + { + warning(1), + error(2), + failure(3) + } + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete for Storage Management. + It was replaced with RollUpStatus and ComponentStatus for each device." + ::= { virtualDiskEntry 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.6 + virtualDiskLengthInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The size of this virtual disk in megabytes. If this size + is 0, it is smaller than a megabyte." + ::= { virtualDiskEntry 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.7 + virtualDiskLengthInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The portion of the virtual disk in bytes that is smaller + than a megabyte. This size plus the virtualDiskLengthInMB + is the total size of the virtual disk." + ::= { virtualDiskEntry 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.8 + virtualDiskFreeSpaceInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." + ::= { virtualDiskEntry 8 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.9 + virtualDiskFreeSpaceInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported for virtual disks managed under Storage Management." + ::= { virtualDiskEntry 9 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.10 + virtualDiskWritePolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + writeBack(3), + writeThrough(4), + enabledAlways(5), + enabledAlwaysSAS(6) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller's write cache will be used + when writing to a virtual disk. + Possible values: + 1: Enabled - Adaptec Write Cache Enabled Protected + 2: Disabled - Adaptec Write Cache Disabled + 3: LSI Write Back + 4: LSI Write Through + 5: Enabled Always - Adaptec only + 6: Enabled Always - SAS only" + ::= { virtualDiskEntry 10 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.11 + virtualDiskReadPolicy OBJECT-TYPE + SYNTAX INTEGER + { + enabled(1), + disabled(2), + readAhead(3), + adaptiveReadAhead(4), + noReadAhead(5) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller's read cache will be used + when reading from a virtual disk. + Possible values: + 1: Enabled - Adaptec Read Cache Enabled + 2: Disabled - Adaptec Read Cache Disabled + 3: LSI Read Ahead + 4: LSI Adaptive Read Ahead + 5: LSI No Read Ahead" + ::= { virtualDiskEntry 11 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.12 + virtualDiskCachePolicy OBJECT-TYPE + SYNTAX INTEGER + { + directIO(1), + cachedIO(2), + not-applicable(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Indicates whether the controller's cache is used when + reading from or writing to a virtual disk. + Possible values: + 1: Direct I/O (LSI) + 2: Cached I/O (LSI) + 99: Not applicable" + ::= { virtualDiskEntry 12 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.13 + virtualDiskLayout OBJECT-TYPE + SYNTAX INTEGER + { + concatenated(1), + raid-0(2), + raid-1(3), + raid-2(4), + raid-3(5), + raid-4(6), + raid-5(7), + raid-6(8), + raid-7(9), + raid-10(10), + raid-30(11), + raid-50(12), + addSpares(13), + deleteLogical(14), + transformLogical(15), + raid-0-plus-1(18), + concatRaid-1(19), + concatRaid-5(20), + noRaid(21), + volume(22), + raidMorph(23), + raid-60(24) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The virtual disk's RAID type. + Currently supported types: + 1: Concatenated + 2: RAID-0 + 3: RAID-1 + 7: RAID-5 + 8: RAID-6 + 10: RAID-10 + 12: RAID-50 + 19: Concatenated RAID 1 + 24: RAID-60 + " + ::= { virtualDiskEntry 13 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.14 + virtualDiskCurStripeSizeInMB OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The stripe size of this virtual disk in megabytes. If this + size is 0, it is either smaller than a megabyte or not applicable. + " + ::= { virtualDiskEntry 14 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.15 + virtualDiskCurStripeSizeInBytes OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The portion of the stripe size in bytes that is smaller + than a megabyte. This size plus the virtualDiskCurStripeSizeInMB + is the total stripe size on the virtual disk. + If this size is 0, either the entire size is whole megabytes or it is not applicable." + ::= { virtualDiskEntry 15 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.16 + virtualDiskChannel OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported + by virtual disks managed under Storage Management." + ::= { virtualDiskEntry 16 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.17 + virtualDiskTargetID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Unique ID for the virtual disk." + ::= { virtualDiskEntry 17 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.18 + virtualDiskLunID OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS obsolete + DESCRIPTION + "This entry is obsolete. This property is not supported + by virtual disks managed under Storage Management." + ::= { virtualDiskEntry 18 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.19 + virtualDiskRollUpStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Severity of the virtual disk state. + This is the combined status of the virtual disk and its + components. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { virtualDiskEntry 19 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.20 + virtualDiskComponentStatus OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The status of the virtual disk itself without + the propagation of any contained component status. + Possible values: + 1: Other + 2: Unknown + 3: OK + 4: Non-critical + 5: Critical + 6: Non-recoverable" + ::= { virtualDiskEntry 20 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.21 + virtualDiskNexusID OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Durable unique ID for this virtual disk." + ::= { virtualDiskEntry 21 } + + + -- 1.3.6.1.4.1.674.10893.1.20.140.1.1.22 + virtualDiskArrayDiskType OBJECT-TYPE + SYNTAX INTEGER + { + sas(1), + sata(2), + scsi(3), + ide(4), + unknown(99) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identifies the type of array (physical) disks used to create the virtual disk. + Possible values: + 1: SAS + 2: SATA + 3: SCSI + 4: IDE + 99: Unknown + " + ::= { virtualDiskEntry 22 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200 + storageManagementEvent OBJECT IDENTIFIER ::= { storageManagement 200 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.1 + messageIDEvent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0001 Storage Management alert (event) message number." + ::= { storageManagementEvent 1 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.2 + descriptionEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0002 Storage Management event message text describing the alert." + ::= { storageManagementEvent 2 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.3 + locationEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0003 Additional information identifying the location of the object causing the alert." + ::= { storageManagementEvent 3 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.4 + objectNameEvent OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0004 Name of the object as represented in Storage Management causing the alert." + ::= { storageManagementEvent 4 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.5 + objectOIDEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0005 MIB OID of the object causing the alert." + ::= { storageManagementEvent 5 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.6 + objectNexusEvent OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..64)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0006 Durable, unique ID of the object causing the alert." + ::= { storageManagementEvent 6 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.7 + currentStatusEvent OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0007 Current status of object causing the alert, if applicable." + ::= { storageManagementEvent 7 } + + + -- 1.3.6.1.4.1.674.10893.1.20.200.8 + previousStatusEvent OBJECT-TYPE + SYNTAX DellStatus + ACCESS read-only + STATUS mandatory + DESCRIPTION + "0200.0008 Previous status of object causing the alert if applicable." + ::= { storageManagementEvent 8 } + + + +-- +-- Trap definitions +-- + + alertStorageManagementInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management Information + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Storage Management information. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 101 + alertStorageManagementNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 102 + alertStorageManagementWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management has detected a device independent warning condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent warning condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 103 + alertStorageManagementFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management has detected a device independent error condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent error condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 104 + alertStorageManagementNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent } + DESCRIPTION + "Storage Management has detected a device independent non-recoverable condition. + There is no global status change associated with this trap." +--#TYPE "Storage Management Event: Storage Management Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Storage Management has detected a device independent non-recoverable condition. %s" +--#ARGUMENTS { 0, 1 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 105 + alertControllerInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller information." +--#TYPE "Storage Management Event: Controller Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Controller information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 751 + alertControllerNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller has returned to normal." +--#TYPE "Storage Management Event: Controller Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Controller has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 752 + alertControllerWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller warning." +--#TYPE "Storage Management Event: Controller Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Controller warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 753 + alertControllerFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller failure." +--#TYPE "Storage Management Event: Controller Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Controller failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 754 + alertControllerNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Controller is non-recoverable." +--#TYPE "Storage Management Event: Controller Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Controller is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 755 + alertChannelInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel information." +--#TYPE "Storage Management Event: Channel Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Channel information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 801 + alertChannelNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel has returned to normal." +--#TYPE "Storage Management Event: Channel Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Channel has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 802 + alertChannelWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel warning." +--#TYPE "Storage Management Event: Channel Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Channel warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 803 + alertChannelFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel failure." +--#TYPE "Storage Management Event: Channel Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Channel failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 804 + alertChannelNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Channel is non-recoverable." +--#TYPE "Storage Management Event: Channel Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Channel is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 805 + alertEnclosureInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure information." +--#TYPE "Storage Management Event: Enclosure Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Enclosure information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 851 + alertEnclosureNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure has returned to normal." +--#TYPE "Storage Management Event: Enclosure Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Enclosure has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 852 + alertEnclosureWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure warning." +--#TYPE "Storage Management Event: Enclosure Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Enclosure warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 853 + alertEnclosureFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure failure." +--#TYPE "Storage Management Event: Enclosure Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Enclosure failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 854 + alertEnclosureNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Enclosure is non-recoverable." +--#TYPE "Storage Management Event: Enclosure Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Enclosure is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 855 + alertArrayDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk information." +--#TYPE "Storage Management Event: Array Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Array disk information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 901 + alertArrayDiskNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk has returned to normal." +--#TYPE "Storage Management Event: Array Disk Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Array disk has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 902 + alertArrayDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk warning." +--#TYPE "Storage Management Event: Array Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Array disk warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 903 + alertArrayDiskFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk failure." +--#TYPE "Storage Management Event: Array Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Array disk failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 904 + alertArrayDiskNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Array disk is non-recoverable." +--#TYPE "Storage Management Event: Array Disk Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Array disk is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 905 + alertEMMInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM information." +--#TYPE "Storage Management Event: EMM Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, EMM information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 951 + alertEMMNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM has returned to normal." +--#TYPE "Storage Management Event: EMM Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, EMM has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 952 + alertEMMWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM warning." +--#TYPE "Storage Management Event: EMM Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, EMM warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 953 + alertEMMFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM failure." +--#TYPE "Storage Management Event: EMM Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, EMM failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 954 + alertEMMNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "EMM is non-recoverable." +--#TYPE "Storage Management Event: EMM Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, EMM is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 955 + alertPowerSupplyInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply information." +--#TYPE "Storage Management Event: Power Supply Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Power supply information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1001 + alertPowerSupplyNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply has returned to normal." +--#TYPE "Storage Management Event: Power Supply Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Power supply has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1002 + alertPowerSupplyWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply warning." +--#TYPE "Storage Management Event: Power Supply Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Power supply warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1003 + alertPowerSupplyFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply failure." +--#TYPE "Storage Management Event: Power Supply Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Power supply failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1004 + alertPowerSupplyNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Power supply is non-recoverable." +--#TYPE "Storage Management Event: Power Supply Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Power supply is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1005 + alertTemperatureProbeInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe information." +--#TYPE "Storage Management Event: Temperature Probe Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Temperature probe information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1051 + alertTemperatureProbeNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe has returned to normal." +--#TYPE "Storage Management Event: Temperature Probe Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Temperature probe has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1052 + alertTemperatureProbeWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe warning." +--#TYPE "Storage Management Event: Temperature Probe Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Temperature probe warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1053 + alertTemperatureProbeFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe failure." +--#TYPE "Storage Management Event: Temperature Probe Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Temperature probe failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1054 + alertTemperatureProbeNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Temperature probe is non-recoverable." +--#TYPE "Storage Management Event: Temperature Probe Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Temperature probe is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1055 + alertFanInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan information." +--#TYPE "Storage Management Event: Fan Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fan information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1101 + alertFanNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan has returned to normal." +--#TYPE "Storage Management Event: Fan Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Fan has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1102 + alertFanWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan warning." +--#TYPE "Storage Management Event: Fan Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Fan warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1103 + alertFanFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan failure." +--#TYPE "Storage Management Event: Fan Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fan failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1104 + alertFanNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Fan is non-recoverable." +--#TYPE "Storage Management Event: Fan Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Fan is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1105 + alertBatteryInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery information." +--#TYPE "Storage Management Event: Battery Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Battery information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1151 + alertBatteryNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery has returned to normal." +--#TYPE "Storage Management Event: Battery Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Battery has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1152 + alertBatteryWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery warning." +--#TYPE "Storage Management Event: Battery Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Battery warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1153 + alertBatteryFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery failure." +--#TYPE "Storage Management Event: Battery Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Battery failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1154 + alertBatteryNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Battery is non-recoverable." +--#TYPE "Storage Management Event: Battery Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Battery is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1155 + alertVirtualDiskInformation TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk information." +--#TYPE "Storage Management Event: Virtual Disk Information" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual disk information. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1201 + alertVirtualDiskNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk has returned to normal." +--#TYPE "Storage Management Event: Virtual Disk Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Virtual disk has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1202 + alertVirtualDiskWarning TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk warning." +--#TYPE "Storage Management Event: Virtual Disk Warning" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Virtual disk warning. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1203 + alertVirtualDiskFailure TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk failure." +--#TYPE "Storage Management Event: Virtual Disk Failure" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual disk failure. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1204 + alertVirtualDiskNonRecoverable TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Virtual disk is non-recoverable." +--#TYPE "Storage Management Event: Virtual Disk Non-recoverable" +--#SEVERITY CRITICAL +--#SUMMARY "Alert message ID: %s, Virtual disk is non-recoverable. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE FAILED +--#STATUS MANDATORY + ::= 1205 + alertRedundancyNormal TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Redundancy has returned to normal." +--#TYPE "Storage Management Event: Redundancy Normal" +--#SEVERITY INFORMATIONAL +--#SUMMARY "Alert message ID: %s, Redundancy has returned to normal. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE OPERATIONAL +--#STATUS MANDATORY + ::= 1304 + alertRedundancyDegraded TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Redundancy has been degraded." +--#TYPE "Storage Management Event: Redundancy Degraded" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Redundancy has been degraded. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Status Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1305 + alertRedundancyLost TRAP-TYPE + ENTERPRISE storageManagementEvent + VARIABLES { messageIDEvent, descriptionEvent, locationEvent, objectNameEvent, objectOIDEvent, + objectNexusEvent, currentStatusEvent, previousStatusEvent } + DESCRIPTION + "Redundancy has been lost." +--#TYPE "Storage Management Event: Redundancy Lost" +--#SEVERITY MINOR +--#SUMMARY "Alert message ID: %s, Redundancy has been lost. %s, %s, %s" +--#ARGUMENTS { 0, 1, 2, 3 } +--#CATEGORY "Error Events" +--#STATE DEGRADED +--#STATUS MANDATORY + ::= 1306 + + END + +-- +-- dcstorag.mib +-- diff --git a/pandora_console/attachment/mibs/TCPIPX-MIB b/pandora_console/attachment/mibs/TCPIPX-MIB new file mode 100644 index 0000000000..6629e1630e --- /dev/null +++ b/pandora_console/attachment/mibs/TCPIPX-MIB @@ -0,0 +1,350 @@ +-- File: RFC1792.MIB - TCPIPX-MIB +-- Changes: +-- Fixed case for "SIZE" in IpxAddress TC +-- Added IMPORTS for enterprises. +-- Added missing comma in definition for sequence TcpIpxConnEntry. +-- Added missing comma in definition for sequence UdpIpxEntry. +-- Removed extra comma in definition for sequence TcpUnspecConnEntry. +-- Changed syntax for tcpUnspecConnTable from +-- "SEQUENCE OF TcpIpxConnEntry" to "SEQUENCE OF TcpUnspecConnEntry". +-- dperkins@scruznet.com + + + TCPIPX-MIB DEFINITIONS ::= BEGIN + + IMPORTS + OBJECT-TYPE + FROM RFC-1212 + enterprises + FROM RFC1155-SMI; + + + -- IPX address type. + -- First 4 octests are the network numbers and the last 6 + -- octests are the node numbers. In ascii, it is represented + -- as hex digits, as in: nnnnnnnn:mmmmmmmmmmmm + + IpxAddress ::= OCTET STRING (SIZE (10)) + + + -- TCP/IPX MIB object idenfifiers + + novell OBJECT IDENTIFIER ::= { enterprises 23 } + mibDoc OBJECT IDENTIFIER ::= { novell 2 } + tcpx OBJECT IDENTIFIER ::= { mibDoc 29 } + tcpxTcp OBJECT IDENTIFIER ::= { tcpx 1 } + tcpxUdp OBJECT IDENTIFIER ::= { tcpx 2 } + + + + -- the TCP/IPX Connection table + + -- The TCP/IPX connection table contains information + -- about this entity's existing TCP connections over + -- IPX. + + tcpIpxConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF TcpIpxConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing information specific on + TCP connection over IPX network layer." + + ::= { tcpxTcp 1 } + + tcpIpxConnEntry OBJECT-TYPE + SYNTAX TcpIpxConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular current TCP + connection over IPX An object of this type is + transient, in that it ceases to exist when (or + soon after) the connection makes the transition + to the CLOSED state." + INDEX { tcpIpxConnLocalAddress, + tcpIpxConnLocalPort, + tcpIpxConnRemAddress, + tcpIpxConnRemPort } + ::= { tcpIpxConnTable 1 } + + TcpIpxConnEntry ::= + SEQUENCE { + tcpIpxConnState + INTEGER, + tcpIpxConnLocalAddress + IpxAddress, + tcpIpxConnLocalPort + INTEGER (0..65535), + tcpIpxConnRemAddress + IpxAddress, + tcpIpxConnRemPort + INTEGER (0..65535) + } + + tcpIpxConnState OBJECT-TYPE + SYNTAX INTEGER { + closed(1), + listen(2), + synSent(3), + synReceived(4), + established(5), + finWait1(6), + finWait2(7), + closeWait(8), + lastAck(9), + closing(10), + timeWait(11), + deleteTCB(12) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of this TCP connection. + + The only value which may be set by a management + station is deleteTCB(12). Accordingly, it is + appropriate for an agent to return a `badValue' + response if a management station attempts to set + this object to any other value. + + If a management station sets this object to the + value deleteTCB(12), then this has the effect of + deleting the TCB (as defined in RFC 793) of the + corresponding connection on the managed node, + resulting in immediate termination of the + connection. + + As an implementation-specific option, a RST + segment may be sent from the managed node to the + other TCP endpoint (note however that RST + segments are not sent reliably)." + ::= { tcpIpxConnEntry 1 } + + tcpIpxConnLocalAddress OBJECT-TYPE + SYNTAX IpxAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local IPX address for this TCP connection. + In the case of a connection in the listen state + which is willing to accept connections for any + interface, the value 00000000:000000000000 is + used. See tcpUnspecConnTable for connections in + the listen state which is willing to accept + connects for any IP interface associated with + the node." + ::= { tcpIpxConnEntry 2 } + + -- NetworkAddress defined in SMI only include IP currently, + -- so we can't use it to represent both IP and IPX address. + + tcpIpxConnLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local port number for this TCP connection." + ::= { tcpIpxConnEntry 3 } + + tcpIpxConnRemAddress OBJECT-TYPE + SYNTAX IpxAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remote IPX address for this TCP connection." + ::= { tcpIpxConnEntry 4 } + + tcpIpxConnRemPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The remote port number for this TCP connection." + ::= { tcpIpxConnEntry 5 } + + + -- the UDP Listener table + + -- The UDP listener table contains information about this + -- entity's UDP end-points on which a local application is + -- currently accepting datagrams. + + udpIpxTable OBJECT-TYPE + SYNTAX SEQUENCE OF UdpIpxEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing UDP listener information." + ::= { tcpxUdp 1 } + + udpIpxEntry OBJECT-TYPE + SYNTAX UdpIpxEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular current UDP + listener." + INDEX { udpIpxLocalAddress, udpIpxLocalPort } + ::= { udpIpxTable 1 } + + UdpIpxEntry ::= + SEQUENCE { + udpIpxLocalAddress + IpxAddress, + udpIpxLocalPort + INTEGER (0..65535) + } + + udpIpxLocalAddress OBJECT-TYPE + SYNTAX IpxAddress + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local IPX address for this UDP listener. In + the case of a UDP listener which is willing to + accept datagrams for any interface, the value + 00000000:000000000000 is used. See + udpUnspecTable for UDP listener which is + willing to accept datagrams from any network + layer." + ::= { udpIpxEntry 1 } + + udpIpxLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local port number for this UDP listener." + ::= { udpIpxEntry 2 } + + + -- the TCP/UNSPEC Connection table + + -- The TCP/UPSPEC connection table contains information + -- about this entity's existing TCP connections over + -- unspecified network. + -- Since the network is unspecified, the network + -- address is also unspecified. Hence, this + -- connection table does not include any network + -- address. + + tcpUnspecConnTable OBJECT-TYPE + SYNTAX SEQUENCE OF TcpUnspecConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing information specific on + TCP connection over unspecified network layer." + ::= { tcpxTcp 2 } + + tcpUnspecConnEntry OBJECT-TYPE + SYNTAX TcpUnspecConnEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular current TCP + connection over unspecified network layer. An + object of this type is transient, in that it + ceases to exist when the connection makes + transition beyond LISTEN state, or when (or + soon after) the connection makes transition + to the CLOSED state," + + INDEX { tcpUnspecConnLocalPort } + ::= { tcpUnspecConnTable 1 } + + TcpUnspecConnEntry ::= + SEQUENCE { + tcpUnspecConnState + INTEGER, + tcpUnspecConnLocalPort + INTEGER (0..65535) + } + + tcpUnspecConnState OBJECT-TYPE + SYNTAX INTEGER { + closed(1), + listen(2), + deleteTCB(12) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The state of this TCP connection. + + Since the TCP connection can belong to this table + only when its state is less than SYN_SENT, only + closed and listen state apply. + + The only value which may be set by a management + station is deleteTCB(12). Accordingly, it is + appropriate for an agent to return a `badValue' + response if a management station attempts to set + this object to any other value. + + If a management station sets this object to the + value deleteTCB(12), then this has the effect of + deleting the TCB (as defined in RFC 793) of the + corresponding connection on the managed node, + resulting in immediate termination of the + connection. + + As an implementation-specific option, a RST + segment may be sent from the managed node to the + other TCP endpoint (note however that RST + segments are not sent reliably)." + ::= { tcpUnspecConnEntry 1 } + + tcpUnspecConnLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local port number for this TCP connection." + ::= { tcpUnspecConnEntry 2 } + + + -- the UDP Listener table + + -- The UDP listener table contains information about this + -- entity's UDP end-points over unspecified network layer, + -- on which a local application is currently accepting + -- datagrams. If network layer is unspecified, the network + -- address is also unspecified. Hence, this table does not + -- include any network address. + + udpUnspecTable OBJECT-TYPE + SYNTAX SEQUENCE OF UdpUnspecEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table containing UDP listener information." + ::= { tcpxUdp 2 } + + udpUnspecEntry OBJECT-TYPE + SYNTAX UdpUnspecEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information about a particular current UDP + listener." + INDEX { udpUnspecLocalPort } + ::= { udpUnspecTable 1 } + + UdpUnspecEntry ::= + SEQUENCE { + udpUnspecLocalPort + INTEGER (0..65535) + } + + udpUnspecLocalPort OBJECT-TYPE + SYNTAX INTEGER (0..65535) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The local port number for this UDP listener." + ::= { udpUnspecEntry 1 } + + END diff --git a/pandora_console/attachment/mibs/TOKENRING-MIB b/pandora_console/attachment/mibs/TOKENRING-MIB new file mode 100644 index 0000000000..b572960853 --- /dev/null +++ b/pandora_console/attachment/mibs/TOKENRING-MIB @@ -0,0 +1,858 @@ +-- File: rfc1748.mi2 - TOKENRING-MIB +-- Changes: +-- **none needed** +-- Needs to have the following objects added to at least one +-- object group: (dot5IfIndex, dot5StatsIfIndex, and dot5TimerIfIndex +-- which are indices); and (dot5TimerReturnRepeat, dot5TimerHolding, +-- dot5TimerQueuePDU, dot5TimerValidTransmit, dot5TimerNoToken, +-- dot5TimerActiveMon, dot5TimerStandbyMon, dot5TimerErrorReport, +-- dot5TimerBeaconTransmit, and dot5TimerBeaconReceive which are +-- obsolete.) +-- dperkins@scruznet.com + + +TOKENRING-MIB DEFINITIONS ::= BEGIN + +IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, OBJECT-IDENTITY, + Counter32, Integer32 FROM SNMPv2-SMI + transmission FROM RFC1213-MIB + MacAddress,TimeStamp FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP FROM SNMPv2-CONF; + +dot5 MODULE-IDENTITY + LAST-UPDATED "9410231150Z" + ORGANIZATION "IETF Interfaces MIB Working Group" + CONTACT-INFO + " Keith McCloghrie + + Postal: cisco Systems, Inc. + 170 West Tasman Drive, + San Jose, CA 95134-1706 + US + + Phone: +1 408 526 5260 + EMail: kzm@cisco.com" + DESCRIPTION + "The MIB module for IEEE Token Ring entities." + ::= { transmission 9 } + + +-- The 802.5 Interface Table + +-- This table contains state and parameter information which +-- is specific to 802.5 interfaces. It is mandatory that +-- systems having 802.5 interfaces implement this table in +-- addition to the ifTable (see RFCs 1213 and 1573). + +dot5Table OBJECT-TYPE + SYNTAX SEQUENCE OF Dot5Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table contains Token Ring interface + parameters and state variables, one entry + per 802.5 interface." + ::= { dot5 1 } + +dot5Entry OBJECT-TYPE + SYNTAX Dot5Entry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of Token Ring status and parameter + values for an 802.5 interface." + INDEX { dot5IfIndex } + ::= { dot5Table 1 } + +Dot5Entry ::= SEQUENCE { + dot5IfIndex Integer32, + dot5Commands INTEGER, + dot5RingStatus INTEGER, + dot5RingState INTEGER, + dot5RingOpenStatus INTEGER, + dot5RingSpeed INTEGER, + dot5UpStream MacAddress, + dot5ActMonParticipate INTEGER, + dot5Functional MacAddress, + dot5LastBeaconSent TimeStamp +} + +dot5IfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the + 802.5 interface for which this entry + contains management information. The + value of this object for a particular + interface has the same value as the + ifIndex object, defined in MIB-II for + the same interface." + ::= { dot5Entry 1 } + +dot5Commands OBJECT-TYPE + SYNTAX INTEGER { + noop(1), + open(2), + reset(3), + close(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "When this object is set to the value of + open(2), the station should go into the + open state. The progress and success of + the open is given by the values of the + objects dot5RingState and + dot5RingOpenStatus. + When this object is set to the value + of reset(3), then the station should do + a reset. On a reset, all MIB counters + should retain their values, if possible. + Other side affects are dependent on the + hardware chip set. + When this object is set to the value + of close(4), the station should go into + the stopped state by removing itself + from the ring. + Setting this object to a value of + noop(1) has no effect. + When read, this object always has a + value of noop(1). + The open(2) and close(4) values + correspond to the up(1) and down(2) values + of MIB-II's ifAdminStatus and ifOperStatus, + i.e., the setting of ifAdminStatus and + dot5Commands affects the values of both + dot5Commands and ifOperStatus." + ::= { dot5Entry 2 } + +dot5RingStatus OBJECT-TYPE + SYNTAX INTEGER (0..262143) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current interface status which can + be used to diagnose fluctuating problems + that can occur on token rings, after a + station has successfully been added to + the ring. + Before an open is completed, this + object has the value for the 'no status' + condition. The dot5RingState and + dot5RingOpenStatus objects provide for + debugging problems when the station + can not even enter the ring. + The object's value is a sum of + values, one for each currently applicable + condition. The following values are + defined for various conditions: + + 0 = No Problems detected + 32 = Ring Recovery + 64 = Single Station + 256 = Remove Received + 512 = reserved + 1024 = Auto-Removal Error + 2048 = Lobe Wire Fault + 4096 = Transmit Beacon + 8192 = Soft Error + 16384 = Hard Error + 32768 = Signal Loss + 131072 = no status, open not completed." + ::= { dot5Entry 3 } + +dot5RingState OBJECT-TYPE + SYNTAX INTEGER { + opened(1), + closed(2), + opening(3), + closing(4), + openFailure(5), + ringFailure(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The current interface state with respect + to entering or leaving the ring." + ::= { dot5Entry 4 } + +dot5RingOpenStatus OBJECT-TYPE + SYNTAX INTEGER { + noOpen(1), -- no open attempted + badParam(2), + lobeFailed(3), + signalLoss(4), + insertionTimeout(5), + ringFailed(6), + beaconing(7), + duplicateMAC(8), + requestFailed(9), + removeReceived(10), + open(11) -- last open successful + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This object indicates the success, or the + reason for failure, of the station's most + recent attempt to enter the ring." + ::= { dot5Entry 5 } + +dot5RingSpeed OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + oneMegabit(2), + fourMegabit(3), + sixteenMegabit(4) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The ring-speed at the next insertion into + the ring. Note that this may or may not be + different to the current ring-speed which is + given by MIB-II's ifSpeed. For interfaces + which do not support changing ring-speed, + dot5RingSpeed can only be set to its current + value. When dot5RingSpeed has the value + unknown(1), the ring's actual ring-speed is + to be used." + ::= { dot5Entry 6 } + +dot5UpStream OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The MAC-address of the up stream neighbor + station in the ring." + ::= { dot5Entry 7 } + +dot5ActMonParticipate OBJECT-TYPE + SYNTAX INTEGER { + true(1), + false(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "If this object has a value of true(1) then + this interface will participate in the + active monitor selection process. If the + value is false(2) then it will not. + Setting this object does not take effect + until the next Active Monitor election, and + might not take effect until the next time + the interface is opened." + ::= { dot5Entry 8 } + +dot5Functional OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The bit mask of all Token Ring functional + addresses for which this interface will + accept frames." + ::= { dot5Entry 9 } + +dot5LastBeaconSent OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of MIB-II's sysUpTime object at which + the local system last transmitted a Beacon frame + on this interface." + ::= { dot5Entry 10 } + + +-- The 802.5 Statistics Table + +-- This table contains statistics and error counter which are +-- specific to 802.5 interfaces. It is mandatory that systems +-- having 802.5 interfaces implement this table. + +dot5StatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot5StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A table containing Token Ring statistics, + one entry per 802.5 interface. + All the statistics are defined using + the syntax Counter32 as 32-bit wrap around + counters. Thus, if an interface's + hardware maintains these statistics in + 16-bit counters, then the agent must read + the hardware's counters frequently enough + to prevent loss of significance, in order + to maintain 32-bit counters in software." + ::= { dot5 2 } + +dot5StatsEntry OBJECT-TYPE + SYNTAX Dot5StatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry contains the 802.5 statistics + for a particular interface." + INDEX { dot5StatsIfIndex } + ::= { dot5StatsTable 1 } + + +Dot5StatsEntry ::= SEQUENCE { + dot5StatsIfIndex Integer32, + dot5StatsLineErrors Counter32, + dot5StatsBurstErrors Counter32, + dot5StatsACErrors Counter32, + dot5StatsAbortTransErrors Counter32, + dot5StatsInternalErrors Counter32, + dot5StatsLostFrameErrors Counter32, + dot5StatsReceiveCongestions Counter32, + dot5StatsFrameCopiedErrors Counter32, + dot5StatsTokenErrors Counter32, + dot5StatsSoftErrors Counter32, + dot5StatsHardErrors Counter32, + dot5StatsSignalLoss Counter32, + dot5StatsTransmitBeacons Counter32, + dot5StatsRecoverys Counter32, + dot5StatsLobeWires Counter32, + dot5StatsRemoves Counter32, + dot5StatsSingles Counter32, + dot5StatsFreqErrors Counter32 +} + + +dot5StatsIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of this object identifies the + 802.5 interface for which this entry + contains management information. The + value of this object for a particular + interface has the same value as MIB-II's + ifIndex object for the same interface." + ::= { dot5StatsEntry 1 } + +dot5StatsLineErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a frame + or token is copied or repeated by a + station, the E bit is zero in the frame + or token and one of the following + conditions exists: 1) there is a + non-data bit (J or K bit) between the SD + and the ED of the frame or token, or + 2) there is an FCS error in the frame." + ::= { dot5StatsEntry 2 } + +dot5StatsBurstErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + detects the absence of transitions for five + half-bit timers (burst-five error)." + ::= { dot5StatsEntry 3 } + +dot5StatsACErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + receives an AMP or SMP frame in which A is + equal to C is equal to 0, and then receives + another SMP frame with A is equal to C is + equal to 0 without first receiving an AMP + frame. It denotes a station that cannot set + the AC bits properly." + ::= { dot5StatsEntry 4 } + +dot5StatsAbortTransErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + transmits an abort delimiter while + transmitting." + ::= { dot5StatsEntry 5 } + +dot5StatsInternalErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + recognizes an internal error." + ::= { dot5StatsEntry 6 } + +dot5StatsLostFrameErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + is transmitting and its TRR timer expires. + This condition denotes a condition where a + transmitting station in strip mode does not + receive the trailer of the frame before the + TRR timer goes off." + ::= { dot5StatsEntry 7 } + +dot5StatsReceiveCongestions OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + recognizes a frame addressed to its + specific address, but has no available + buffer space indicating that the station + is congested." + ::= { dot5StatsEntry 8 } + +dot5StatsFrameCopiedErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + recognizes a frame addressed to its + specific address and detects that the FS + field A bits are set to 1 indicating a + possible line hit or duplicate address." + ::= { dot5StatsEntry 9 } + +dot5StatsTokenErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This counter is incremented when a station + acting as the active monitor recognizes an + error condition that needs a token + transmitted." + ::= { dot5StatsEntry 10 } + +dot5StatsSoftErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Soft Errors the interface + has detected. It directly corresponds to + the number of Report Error MAC frames + that this interface has transmitted. + Soft Errors are those which are + recoverable by the MAC layer protocols." + ::= { dot5StatsEntry 11 } + +dot5StatsHardErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this interface has + detected an immediately recoverable + fatal error. It denotes the number of + times this interface is either + transmitting or receiving beacon MAC + frames." + ::= { dot5StatsEntry 12 } + +dot5StatsSignalLoss OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this interface has + detected the loss of signal condition from + the ring." + ::= { dot5StatsEntry 13 } + +dot5StatsTransmitBeacons OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times this interface has + transmitted a beacon frame." + ::= { dot5StatsEntry 14 } + +dot5StatsRecoverys OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of Claim Token MAC frames + received or transmitted after the interface + has received a Ring Purge MAC frame. This + counter signifies the number of times the + ring has been purged and is being recovered + back into a normal operating state." + ::= { dot5StatsEntry 15 } + +dot5StatsLobeWires OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the interface has + detected an open or short circuit in the + lobe data path. The adapter will be closed + and dot5RingState will signify this + condition." + ::= { dot5StatsEntry 16 } + +dot5StatsRemoves OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the interface has + received a Remove Ring Station MAC frame + request. When this frame is received + the interface will enter the close state + and dot5RingState will signify this + condition." + ::= { dot5StatsEntry 17 } + +dot5StatsSingles OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the interface has + sensed that it is the only station on the + ring. This will happen if the interface + is the first one up on a ring, or if + there is a hardware problem." + ::= { dot5StatsEntry 18 } + +dot5StatsFreqErrors OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of times the interface has + detected that the frequency of the + incoming signal differs from the expected + frequency by more than that specified by + the IEEE 802.5 standard." + ::= { dot5StatsEntry 19 } + + +-- The Timer Table + +-- This group contains the values of timers for 802.5 +-- interfaces. This table is obsolete, but its definition +-- is retained here for backwards compatibility. + +dot5TimerTable OBJECT-TYPE + SYNTAX SEQUENCE OF Dot5TimerEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "This table contains Token Ring interface + timer values, one entry per 802.5 + interface." + ::= { dot5 5 } + +dot5TimerEntry OBJECT-TYPE + SYNTAX Dot5TimerEntry + MAX-ACCESS not-accessible + STATUS obsolete + DESCRIPTION + "A list of Token Ring timer values for an + 802.5 interface." + INDEX { dot5TimerIfIndex } + ::= { dot5TimerTable 1 } + +Dot5TimerEntry ::= SEQUENCE { + dot5TimerIfIndex Integer32, + dot5TimerReturnRepeat Integer32, + dot5TimerHolding Integer32, + dot5TimerQueuePDU Integer32, + dot5TimerValidTransmit Integer32, + dot5TimerNoToken Integer32, + dot5TimerActiveMon Integer32, + dot5TimerStandbyMon Integer32, + dot5TimerErrorReport Integer32, + dot5TimerBeaconTransmit Integer32, + dot5TimerBeaconReceive Integer32 +} + +dot5TimerIfIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The value of this object identifies the + 802.5 interface for which this entry + contains timer values. The value of + this object for a particular interface + has the same value as MIB-II's ifIndex + object for the same interface." + ::= { dot5TimerEntry 1 } + +dot5TimerReturnRepeat OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value used to ensure the + interface will return to Repeat State, in + units of 100 micro-seconds. The value + should be greater than the maximum ring + latency." + ::= { dot5TimerEntry 2 } + +dot5TimerHolding OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "Maximum period of time a station is + permitted to transmit frames after capturing + a token, in units of 100 micro-seconds." + ::= { dot5TimerEntry 3 } + +dot5TimerQueuePDU OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value for enqueuing of an SMP + PDU after reception of an AMP or SMP + frame in which the A and C bits were + equal to 0, in units of 100 + micro-seconds." + ::= { dot5TimerEntry 4 } + +dot5TimerValidTransmit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value used by the active + monitor to detect the absence of valid + transmissions, in units of 100 + micro-seconds." + ::= { dot5TimerEntry 5 } + +dot5TimerNoToken OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value used to recover from + various-related error situations. + If N is the maximum number of stations on + the ring, the value of this timer is + normally: + dot5TimerReturnRepeat + N*dot5TimerHolding." + ::= { dot5TimerEntry 6 } + +dot5TimerActiveMon OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value used by the active + monitor to stimulate the enqueuing of an + AMP PDU for transmission, in units of + 100 micro-seconds." + ::= { dot5TimerEntry 7 } + +dot5TimerStandbyMon OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value used by the stand-by + monitors to ensure that there is an active + monitor on the ring and to detect a + continuous stream of tokens, in units of + 100 micro-seconds." + ::= { dot5TimerEntry 8 } + +dot5TimerErrorReport OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value which determines how + often a station shall send a Report Error + MAC frame to report its error counters, + in units of 100 micro-seconds." + ::= { dot5TimerEntry 9 } + +dot5TimerBeaconTransmit OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value which determines how + long a station shall remain in the state + of transmitting Beacon frames before + entering the Bypass state, in units of + 100 micro-seconds." + ::= { dot5TimerEntry 10 } + +dot5TimerBeaconReceive OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS obsolete + DESCRIPTION + "The time-out value which determines how + long a station shall receive Beacon + frames from its downstream neighbor + before entering the Bypass state, in + units of 100 micro-seconds." + ::= { dot5TimerEntry 11 } + + +-- 802.5 Interface Tests + +dot5Tests OBJECT IDENTIFIER ::= { dot5 3 } + +-- RFC 1573 defines the ifTestTable, through which a +-- network manager can instruct an agent to test an interface +-- for various faults. A test to be performed is identified +-- as an OBJECT IDENTIFIER. + +-- The Insert Function test + +dot5TestInsertFunc OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Invoking this test causes the station to test the insert + ring logic of the hardware if the station's lobe media + cable is connected to a wiring concentrator. Note that + this command inserts the station into the network, and + thus, could cause problems if the station is connected + to a operational network." + ::= { dot5Tests 1 } + + +-- The Full-Duplex Loop Back test + +dot5TestFullDuplexLoopBack OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Invoking this test on a 802.5 interface causes the + interface to check the path from memory through the + chip set's internal logic and back to memory, thus + checking the proper functioning of the system's + interface to the chip set." + ::= { dot5Tests 2 } + + +-- 802.5 Hardware Chip Sets + +-- RFC 1229 specified an object, ifExtnsChipSet, with the +-- syntax of OBJECT IDENTIFIER, to identify the hardware +-- chip set in use by an interface. RFC 1573 obsoletes +-- the use of ifExtnsChipSet. However, the following +-- definitions are retained for backwards compatibility. + +dot5ChipSets OBJECT IDENTIFIER ::= { dot5 4 } + +dot5ChipSetIBM16 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "IBM's 16/4 Mbs chip set." + ::= { dot5ChipSets 1 } + +dot5ChipSetTItms380 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Texas Instruments' TMS 380 4Mbs chip-set" + ::= { dot5ChipSets 2 } + +dot5ChipSetTItms380c16 OBJECT-IDENTITY + STATUS current + DESCRIPTION + "Texas Instruments' TMS 380C16 16/4 Mbs chip-set" + ::= { dot5ChipSets 3 } + + +-- conformance information + +dot5Conformance OBJECT IDENTIFIER ::= { dot5 6 } + +dot5Groups OBJECT IDENTIFIER ::= { dot5Conformance 1 } +dot5Compliances OBJECT IDENTIFIER ::= { dot5Conformance 2 } + + +-- compliance statements + +dot5Compliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for SNMPv2 entities + which implement the IEEE 802.5 MIB." + + MODULE -- this module + MANDATORY-GROUPS { dot5StateGroup, dot5StatsGroup } + + OBJECT dot5ActMonParticipate + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + OBJECT dot5Functional + MIN-ACCESS read-only + DESCRIPTION + "Write access is not required." + + ::= { dot5Compliances 1 } + + +-- units of conformance + +dot5StateGroup OBJECT-GROUP + OBJECTS { dot5Commands, dot5RingStatus, dot5RingState, + dot5RingOpenStatus, dot5RingSpeed, dot5UpStream, + dot5ActMonParticipate, dot5Functional, + dot5LastBeaconSent + } + STATUS current + DESCRIPTION + "A collection of objects providing state information + and parameters for IEEE 802.5 interfaces." + ::= { dot5Groups 1 } + +dot5StatsGroup OBJECT-GROUP + OBJECTS { dot5StatsLineErrors, dot5StatsBurstErrors, + dot5StatsACErrors, dot5StatsAbortTransErrors, + dot5StatsInternalErrors, dot5StatsLostFrameErrors, + dot5StatsReceiveCongestions, + dot5StatsFrameCopiedErrors, dot5StatsTokenErrors, + dot5StatsSoftErrors, dot5StatsHardErrors, + dot5StatsSignalLoss, dot5StatsTransmitBeacons, + dot5StatsRecoverys, dot5StatsLobeWires, + dot5StatsRemoves, dot5StatsSingles, + dot5StatsFreqErrors + } + STATUS current + DESCRIPTION + "A collection of objects providing statistics for + IEEE 802.5 interfaces." + ::= { dot5Groups 2 } + +END diff --git a/pandora_console/attachment/mibs/UPS-MIB b/pandora_console/attachment/mibs/UPS-MIB new file mode 100644 index 0000000000..8ec219a808 --- /dev/null +++ b/pandora_console/attachment/mibs/UPS-MIB @@ -0,0 +1,1917 @@ +-- extracted from rfc1628.txt +-- at Mon Nov 15 17:11:52 1999 + + UPS-MIB DEFINITIONS ::= BEGIN + + IMPORTS + MODULE-IDENTITY, OBJECT-TYPE, NOTIFICATION-TYPE, + OBJECT-IDENTITY, Counter32, Gauge32, Integer32 + FROM SNMPv2-SMI + DisplayString, TimeStamp, TimeInterval, TestAndIncr, + AutonomousType + FROM SNMPv2-TC + MODULE-COMPLIANCE, OBJECT-GROUP + FROM SNMPv2-CONF; + + + upsMIB MODULE-IDENTITY + LAST-UPDATED "9402230000Z" + ORGANIZATION "IETF UPS MIB Working Group" + CONTACT-INFO + " Jeffrey D. Case + + Postal: SNMP Research, Incorporated + 3001 Kimberlin Heights Road + Knoxville, TN 37920 + US + + Tel: +1 615 573 1434 + Fax: +1 615 573 9197 + + E-mail: case@snmp.com" + DESCRIPTION + "The MIB module to describe Uninterruptible Power + Supplies." + ::= { mib-2 33 } + + PositiveInteger ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This data type is a non-zero and non-negative value." + SYNTAX INTEGER (1..2147483647) + + NonNegativeInteger ::= TEXTUAL-CONVENTION + DISPLAY-HINT "d" + STATUS current + DESCRIPTION + "This data type is a non-negative value." + SYNTAX INTEGER (0..2147483647) + + upsObjects OBJECT IDENTIFIER ::= { upsMIB 1 } + + + -- + -- The Device Identification group. + -- All objects in this group except for upsIdentName and + -- upsIdentAttachedDevices are set at device initialization + -- and remain static. + -- + + upsIdent OBJECT IDENTIFIER ::= { upsObjects 1 } + + upsIdentManufacturer OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..31)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The name of the UPS manufacturer." + ::= { upsIdent 1 } + + upsIdentModel OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UPS Model designation." + ::= { upsIdent 2 } + + upsIdentUPSSoftwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UPS firmware/software version(s). This variable + may or may not have the same value as + upsIdentAgentSoftwareVersion in some implementations." + ::= { upsIdent 3 } + + upsIdentAgentSoftwareVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..63)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The UPS agent software version. This variable may or + may not have the same value as + upsIdentUPSSoftwareVersion in some implementations." + ::= { upsIdent 4 } + + upsIdentName OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A string identifying the UPS. This object should be + set by the administrator." + ::= { upsIdent 5 } + + upsIdentAttachedDevices OBJECT-TYPE + SYNTAX DisplayString (SIZE(0..63)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A string identifying the devices attached to the + output(s) of the UPS. This object should be set by + the administrator." + ::= { upsIdent 6 } + + + -- + -- Battery Group + -- + + upsBattery OBJECT IDENTIFIER ::= { upsObjects 2 } + + upsBatteryStatus OBJECT-TYPE + SYNTAX INTEGER { + unknown(1), + batteryNormal(2), + batteryLow(3), + batteryDepleted(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The indication of the capacity remaining in the UPS + system's batteries. A value of batteryNormal + indicates that the remaining run-time is greater than + upsConfigLowBattTime. A value of batteryLow indicates + that the remaining battery run-time is less than or + equal to upsConfigLowBattTime. A value of + batteryDepleted indicates that the UPS will be unable + to sustain the present load when and if the utility + power is lost (including the possibility that the + utility power is currently absent and the UPS is + unable to sustain the output)." + ::= { upsBattery 1 } + + upsSecondsOnBattery OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "seconds" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "If the unit is on battery power, the elapsed time + since the UPS last switched to battery power, or the + time since the network management subsystem was last + restarted, whichever is less. Zero shall be returned + if the unit is not on battery power." + ::= { upsBattery 2 } + + upsEstimatedMinutesRemaining OBJECT-TYPE + SYNTAX PositiveInteger + UNITS "minutes" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the time to battery charge depletion + under the present load conditions if the utility power + is off and remains off, or if it were to be lost and + remain off." + ::= { upsBattery 3 } + + upsEstimatedChargeRemaining OBJECT-TYPE + SYNTAX INTEGER (0..100) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "An estimate of the battery charge remaining expressed + as a percent of full charge." + ::= { upsBattery 4 } + + upsBatteryVoltage OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 Volt DC" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The magnitude of the present battery voltage." + ::= { upsBattery 5 } + + upsBatteryCurrent OBJECT-TYPE + SYNTAX Integer32 + UNITS "0.1 Amp DC" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present battery current." + ::= { upsBattery 6 } + + upsBatteryTemperature OBJECT-TYPE + SYNTAX Integer32 + UNITS "degrees Centigrade" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The ambient temperature at or near the UPS Battery + casing." + ::= { upsBattery 7 } + + + -- + -- Input Group + -- + + upsInput OBJECT IDENTIFIER ::= { upsObjects 3 } + + upsInputLineBads OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A count of the number of times the input entered an + out-of-tolerance condition as defined by the + manufacturer. This count is incremented by one each + time the input transitions from zero out-of-tolerance + lines to one or more input lines out-of-tolerance." + ::= { upsInput 1 } + + + upsInputNumLines OBJECT-TYPE + SYNTAX NonNegativeInteger + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of input lines utilized in this device. + This variable indicates the number of rows in the + input table." + ::= { upsInput 2 } + + upsInputTable OBJECT-TYPE + SYNTAX SEQUENCE OF UpsInputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of input table entries. The number of entries + is given by the value of upsInputNumLines." + ::= { upsInput 3 } + + upsInputEntry OBJECT-TYPE + SYNTAX UpsInputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable to a + particular input line." + INDEX { upsInputLineIndex } + ::= { upsInputTable 1 } + + UpsInputEntry ::= SEQUENCE { + upsInputLineIndex PositiveInteger, + upsInputFrequency NonNegativeInteger, + upsInputVoltage NonNegativeInteger, + upsInputCurrent NonNegativeInteger, + upsInputTruePower NonNegativeInteger + } + + upsInputLineIndex OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The input line identifier." + ::= { upsInputEntry 1 } + + upsInputFrequency OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 Hertz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present input frequency." + ::= { upsInputEntry 2 } + + upsInputVoltage OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The magnitude of the present input voltage." + ::= { upsInputEntry 3 } + + upsInputCurrent OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 RMS Amp" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The magnitude of the present input current." + ::= { upsInputEntry 4 } + + upsInputTruePower OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "Watts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The magnitude of the present input true power." + ::= { upsInputEntry 5 } + + + -- + -- The Output group. + -- + + upsOutput OBJECT IDENTIFIER ::= { upsObjects 4 } + + upsOutputSource OBJECT-TYPE + SYNTAX INTEGER { + other(1), + none(2), + normal(3), + bypass(4), + battery(5), + booster(6), + reducer(7) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present source of output power. The enumeration + none(2) indicates that there is no source of output + power (and therefore no output power), for example, + the system has opened the output breaker." + ::= { upsOutput 1 } + + upsOutputFrequency OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 Hertz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present output frequency." + ::= { upsOutput 2 } + + upsOutputNumLines OBJECT-TYPE + SYNTAX NonNegativeInteger + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of output lines utilized in this device. + This variable indicates the number of rows in the + output table." + ::= { upsOutput 3 } + + upsOutputTable OBJECT-TYPE + SYNTAX SEQUENCE OF UpsOutputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of output table entries. The number of + entries is given by the value of upsOutputNumLines." + ::= { upsOutput 4 } + + upsOutputEntry OBJECT-TYPE + SYNTAX UpsOutputEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable to a + particular output line." + INDEX { upsOutputLineIndex } + ::= { upsOutputTable 1 } + + UpsOutputEntry ::= SEQUENCE { + upsOutputLineIndex PositiveInteger, + upsOutputVoltage NonNegativeInteger, + upsOutputCurrent NonNegativeInteger, + upsOutputPower NonNegativeInteger, + upsOutputPercentLoad INTEGER + } + + upsOutputLineIndex OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The output line identifier." + ::= { upsOutputEntry 1 } + + upsOutputVoltage OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present output voltage." + ::= { upsOutputEntry 2 } + + upsOutputCurrent OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 RMS Amp" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present output current." + ::= { upsOutputEntry 3 } + + upsOutputPower OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "Watts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present output true power." + ::= { upsOutputEntry 4 } + + upsOutputPercentLoad OBJECT-TYPE + SYNTAX INTEGER (0..200) + UNITS "percent" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The percentage of the UPS power capacity presently + being used on this output line, i.e., the greater of + the percent load of true power capacity and the + percent load of VA." + ::= { upsOutputEntry 5 } + + -- + -- The Bypass group. + -- + + upsBypass OBJECT IDENTIFIER ::= { upsObjects 5 } + + upsBypassFrequency OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 Hertz" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present bypass frequency." + ::= { upsBypass 1 } + + upsBypassNumLines OBJECT-TYPE + SYNTAX NonNegativeInteger + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The number of bypass lines utilized in this device. + This entry indicates the number of rows in the bypass + table." + ::= { upsBypass 2 } + + upsBypassTable OBJECT-TYPE + SYNTAX SEQUENCE OF UpsBypassEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of bypass table entries. The number of + entries is given by the value of upsBypassNumLines." + ::= { upsBypass 3 } + + upsBypassEntry OBJECT-TYPE + SYNTAX UpsBypassEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable to a + particular bypass input." + INDEX { upsBypassLineIndex } + ::= { upsBypassTable 1 } + + UpsBypassEntry ::= SEQUENCE { + upsBypassLineIndex PositiveInteger, + upsBypassVoltage NonNegativeInteger, + upsBypassCurrent NonNegativeInteger, + upsBypassPower NonNegativeInteger + } + + upsBypassLineIndex OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "The bypass line identifier." + ::= { upsBypassEntry 1 } + + upsBypassVoltage OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present bypass voltage." + ::= { upsBypassEntry 2 } + + upsBypassCurrent OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 RMS Amp" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present bypass current." + ::= { upsBypassEntry 3 } + + upsBypassPower OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "Watts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present true power conveyed by the bypass." + ::= { upsBypassEntry 4 } + + + -- + -- The Alarm group. + -- + + upsAlarm OBJECT IDENTIFIER ::= { upsObjects 6 } + + upsAlarmsPresent OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The present number of active alarm conditions." + ::= { upsAlarm 1 } + + upsAlarmTable OBJECT-TYPE + SYNTAX SEQUENCE OF UpsAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A list of alarm table entries. The table contains + zero, one, or many rows at any moment, depending upon + the number of alarm conditions in effect. The table + is initially empty at agent startup. The agent + creates a row in the table each time a condition is + detected and deletes that row when that condition no + longer pertains. The agent creates the first row with + upsAlarmId equal to 1, and increments the value of + upsAlarmId each time a new row is created, wrapping to + the first free value greater than or equal to 1 when + the maximum value of upsAlarmId would otherwise be + exceeded. Consequently, after multiple operations, + the table may become sparse, e.g., containing entries + for rows 95, 100, 101, and 203 and the entries should + not be assumed to be in chronological order because + upsAlarmId might have wrapped. + + Alarms are named by an AutonomousType (OBJECT + IDENTIFIER), upsAlarmDescr, to allow a single table to + reflect well known alarms plus alarms defined by a + particular implementation, i.e., as documented in the + private enterprise MIB definition for the device. No + two rows will have the same value of upsAlarmDescr, + since alarms define conditions. In order to meet this + requirement, care should be taken in the definition of + alarm conditions to insure that a system cannot enter + the same condition multiple times simultaneously. + + The number of rows in the table at any given time is + reflected by the value of upsAlarmsPresent." + ::= { upsAlarm 2 } + + upsAlarmEntry OBJECT-TYPE + SYNTAX UpsAlarmEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "An entry containing information applicable to a + particular alarm." + INDEX { upsAlarmId } + ::= { upsAlarmTable 1 } + + UpsAlarmEntry ::= SEQUENCE { + upsAlarmId PositiveInteger, + upsAlarmDescr AutonomousType, + upsAlarmTime TimeStamp + } + + upsAlarmId OBJECT-TYPE + SYNTAX PositiveInteger + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "A unique identifier for an alarm condition. This + value must remain constant." + ::= { upsAlarmEntry 1 } + + upsAlarmDescr OBJECT-TYPE + SYNTAX AutonomousType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "A reference to an alarm description object. The + object referenced should not be accessible, but rather + be used to provide a unique description of the alarm + condition." + ::= { upsAlarmEntry 2 } + + upsAlarmTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime when the alarm condition was + detected. If the alarm condition was detected at the + time of agent startup and presumably existed before + agent startup, the value of upsAlarmTime shall equal + 0." + ::= { upsAlarmEntry 3 } + + + -- + -- Well known alarm conditions. + -- + + upsWellKnownAlarms OBJECT IDENTIFIER ::= { upsAlarm 3 } + upsAlarmBatteryBad OBJECT-IDENTITY + STATUS current + DESCRIPTION + "One or more batteries have been determined to require + replacement." + ::= { upsWellKnownAlarms 1 } + + upsAlarmOnBattery OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The UPS is drawing power from the batteries." + ::= { upsWellKnownAlarms 2 } + + upsAlarmLowBattery OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The remaining battery run-time is less than or equal + to upsConfigLowBattTime." + ::= { upsWellKnownAlarms 3 } + + + upsAlarmDepletedBattery OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The UPS will be unable to sustain the present load + when and if the utility power is lost." + ::= { upsWellKnownAlarms 4 } + + upsAlarmTempBad OBJECT-IDENTITY + STATUS current + DESCRIPTION + "A temperature is out of tolerance." + ::= { upsWellKnownAlarms 5 } + + upsAlarmInputBad OBJECT-IDENTITY + STATUS current + DESCRIPTION + "An input condition is out of tolerance." + ::= { upsWellKnownAlarms 6 } + + upsAlarmOutputBad OBJECT-IDENTITY + STATUS current + DESCRIPTION + "An output condition (other than OutputOverload) is + out of tolerance." + ::= { upsWellKnownAlarms 7 } + + upsAlarmOutputOverload OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The output load exceeds the UPS output capacity." + ::= { upsWellKnownAlarms 8 } + + upsAlarmOnBypass OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The Bypass is presently engaged on the UPS." + ::= { upsWellKnownAlarms 9 } + + upsAlarmBypassBad OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The Bypass is out of tolerance." + ::= { upsWellKnownAlarms 10 } + + upsAlarmOutputOffAsRequested OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The UPS has shutdown as requested, i.e., the output + is off." + ::= { upsWellKnownAlarms 11 } + + upsAlarmUpsOffAsRequested OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The entire UPS has shutdown as commanded." + ::= { upsWellKnownAlarms 12 } + + upsAlarmChargerFailed OBJECT-IDENTITY + STATUS current + DESCRIPTION + "An uncorrected problem has been detected within the + UPS charger subsystem." + ::= { upsWellKnownAlarms 13 } + + upsAlarmUpsOutputOff OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The output of the UPS is in the off state." + ::= { upsWellKnownAlarms 14 } + + upsAlarmUpsSystemOff OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The UPS system is in the off state." + ::= { upsWellKnownAlarms 15 } + + upsAlarmFanFailure OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The failure of one or more fans in the UPS has been + detected." + ::= { upsWellKnownAlarms 16 } + + upsAlarmFuseFailure OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The failure of one or more fuses has been detected." + ::= { upsWellKnownAlarms 17 } + + upsAlarmGeneralFault OBJECT-IDENTITY + STATUS current + DESCRIPTION + "A general fault in the UPS has been detected." + ::= { upsWellKnownAlarms 18 } + + upsAlarmDiagnosticTestFailed OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The result of the last diagnostic test indicates a + failure." + ::= { upsWellKnownAlarms 19 } + + upsAlarmCommunicationsLost OBJECT-IDENTITY + STATUS current + DESCRIPTION + "A problem has been encountered in the communications + between the agent and the UPS." + ::= { upsWellKnownAlarms 20 } + + upsAlarmAwaitingPower OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The UPS output is off and the UPS is awaiting the + return of input power." + ::= { upsWellKnownAlarms 21 } + + upsAlarmShutdownPending OBJECT-IDENTITY + STATUS current + DESCRIPTION + "A upsShutdownAfterDelay countdown is underway." + ::= { upsWellKnownAlarms 22 } + + upsAlarmShutdownImminent OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The UPS will turn off power to the load in less than + 5 seconds; this may be either a timed shutdown or a + low battery shutdown." + ::= { upsWellKnownAlarms 23 } + + upsAlarmTestInProgress OBJECT-IDENTITY + STATUS current + DESCRIPTION + "A test is in progress, as initiated and indicated by + the Test Group. Tests initiated via other + implementation-specific mechanisms can indicate the + presence of the testing in the alarm table, if + desired, via a OBJECT-IDENTITY macro in the MIB + document specific to that implementation and are + outside the scope of this OBJECT-IDENTITY." + ::= { upsWellKnownAlarms 24 } + + + -- + -- The Test Group + -- + + upsTest OBJECT IDENTIFIER ::= { upsObjects 7 } + + upsTestId OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The test is named by an OBJECT IDENTIFIER which + allows a standard mechanism for the initiation of + tests, including the well known tests identified in + this document as well as those introduced by a + particular implementation, i.e., as documented in the + private enterprise MIB definition for the device. + + Setting this variable initiates the named test. Sets + to this variable require the presence of + upsTestSpinLock in the same SNMP message. + + The set request will be rejected with an appropriate + error message if the requested test cannot be + performed, including attempts to start a test when + another test is already in progress. The status of + the current or last test is maintained in + upsTestResultsSummary. Tests in progress may be + aborted by setting the upsTestId variable to + upsTestAbortTestInProgress. + + Read operations return the value of the name of the + test in progress if a test is in progress or the name + of the last test performed if no test is in progress, + unless no test has been run, in which case the well + known value upsTestNoTestsInitiated is returned." + ::= { upsTest 1 } + + -- see [6] for more information on the semantics of objects with + -- syntax of TestAndIncr + + upsTestSpinLock OBJECT-TYPE + SYNTAX TestAndIncr + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "A spin lock on the test subsystem. The spinlock is + used as follows. + + Before starting a test, a manager-station should make + sure that a test is not in progress as follows: + + try_again: + get (upsTestSpinLock) + while (upsTestResultsSummary == inProgress) { + /* loop while a test is running for another + manager */ + short delay + get (upsTestSpinLock) + } + lock_value = upsTestSpinLock + /* no test in progress, start the test */ + set (upsTestSpinLock = lock_value, upsTestId = + requested_test) + if (error_index == 1) { /* (upsTestSpinLock + failed) */ + /* if problem is not access control, then + some other manager slipped in ahead of us + */ + goto try_again + } + if (error_index == 2) { /* (upsTestId) */ + /* cannot perform the test */ + give up + } + /* test started ok */ + /* wait for test completion by polling + + upsTestResultsSummary */ + get (upsTestSpinLock, upsTestResultsSummary, + upsTestResultsDetail) + while (upsTestResultsSummary == inProgress) { + short delay + get (upsTestSpinLock, upsTestResultsSummary, + upsTestResultsDetail) + } + /* when test completes, retrieve any additional + test results */ + /* if upsTestSpinLock == lock_value + 1, then + these are our test */ + /* results (as opposed to another manager's */ + The initial value of upsTestSpinLock at agent + initialization shall + be 1." + ::= { upsTest 2 } + + upsTestResultsSummary OBJECT-TYPE + SYNTAX INTEGER { + donePass(1), + doneWarning(2), + doneError(3), + aborted(4), + inProgress(5), + noTestsInitiated(6) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The results of the current or last UPS diagnostics + test performed. The values for donePass(1), + doneWarning(2), and doneError(3) indicate that the + test completed either successfully, with a warning, or + with an error, respectively. The value aborted(4) is + returned for tests which are aborted by setting the + value of upsTestId to upsTestAbortTestInProgress. + Tests which have not yet concluded are indicated by + inProgress(5). The value noTestsInitiated(6) + indicates that no previous test results are available, + such as is the case when no tests have been run since + the last reinitialization of the network management + subsystem and the system has no provision for non- + volatile storage of test results." + ::= { upsTest 3 } + + upsTestResultsDetail OBJECT-TYPE + SYNTAX DisplayString (SIZE (0..255)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Additional information about upsTestResultsSummary. + If no additional information available, a zero length + string is returned." + ::= { upsTest 4 } + + upsTestStartTime OBJECT-TYPE + SYNTAX TimeStamp + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The value of sysUpTime at the time the test in + progress was initiated, or, if no test is in progress, + the time the previous test was initiated. If the + value of upsTestResultsSummary is noTestsInitiated(6), + upsTestStartTime has the value 0." + ::= { upsTest 5 } + + upsTestElapsedTime OBJECT-TYPE + SYNTAX TimeInterval + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The amount of time, in TimeTicks, since the test in + progress was initiated, or, if no test is in progress, + the previous test took to complete. If the value of + upsTestResultsSummary is noTestsInitiated(6), + upsTestElapsedTime has the value 0." + ::= { upsTest 6 } + + -- + -- Well known tests. + -- + + upsWellKnownTests OBJECT IDENTIFIER ::= { upsTest 7 } + + + upsTestNoTestsInitiated OBJECT-IDENTITY + STATUS current + DESCRIPTION + "No tests have been initiated and no test is in + progress." + ::= { upsWellKnownTests 1 } + + upsTestAbortTestInProgress OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The test in progress is to be aborted / the test in + progress was aborted." + ::= { upsWellKnownTests 2 } + + upsTestGeneralSystemsTest OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The manufacturer's standard test of UPS device + systems." + ::= { upsWellKnownTests 3 } + + upsTestQuickBatteryTest OBJECT-IDENTITY + STATUS current + DESCRIPTION + "A test that is sufficient to determine if the battery + needs replacement." + ::= { upsWellKnownTests 4 } + + upsTestDeepBatteryCalibration OBJECT-IDENTITY + STATUS current + DESCRIPTION + "The system is placed on battery to a discharge level, + set by the manufacturer, sufficient to determine + battery replacement and battery run-time with a high + degree of confidence. WARNING: this test will leave + the battery in a low charge state and will require + time for recharging to a level sufficient to provide + normal battery duration for the protected load." + ::= { upsWellKnownTests 5 } + + + -- + -- The Control group. + -- + + upsControl OBJECT IDENTIFIER ::= { upsObjects 8 } + + upsShutdownType OBJECT-TYPE + SYNTAX INTEGER { + output(1), + system(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "This object determines the nature of the action to be + taken at the time when the countdown of the + upsShutdownAfterDelay and upsRebootWithDuration + objects reaches zero. + + Setting this object to output(1) indicates that + shutdown requests should cause only the output of the + UPS to turn off. Setting this object to system(2) + indicates that shutdown requests will cause the entire + UPS system to turn off." + ::= { upsControl 1 } + + upsShutdownAfterDelay OBJECT-TYPE + SYNTAX INTEGER (-1..2147483648) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object will shutdown (i.e., turn off) + either the UPS output or the UPS system (as determined + by the value of upsShutdownType at the time of + shutdown) after the indicated number of seconds, or + less if the UPS batteries become depleted. Setting + this object to 0 will cause the shutdown to occur + immediately. Setting this object to -1 will abort the + countdown. If the system is already in the desired + state at the time the countdown reaches 0, then + nothing will happen. That is, there is no additional + action at that time if upsShutdownType = system and + the system is already off. Similarly, there is no + additional action at that time if upsShutdownType = + output and the output is already off. When read, + upsShutdownAfterDelay will return the number of + seconds remaining until shutdown, or -1 if no shutdown + countdown is in effect. On some systems, if the agent + is restarted while a shutdown countdown is in effect, + the countdown may be aborted. Sets to this object + override any upsShutdownAfterDelay already in effect." + ::= { upsControl 2 } + + upsStartupAfterDelay OBJECT-TYPE + SYNTAX INTEGER (-1..2147483648) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object will start the output after the + indicated number of seconds, including starting the + UPS, if necessary. Setting this object to 0 will + cause the startup to occur immediately. Setting this + object to -1 will abort the countdown. If the output + is already on at the time the countdown reaches 0, + then nothing will happen. Sets to this object + override the effect of any upsStartupAfterDelay + countdown or upsRebootWithDuration countdown in + progress. When read, upsStartupAfterDelay will return + the number of seconds until startup, or -1 if no + startup countdown is in effect. If the countdown + expires during a utility failure, the startup shall + not occur until the utility power is restored. On + some systems, if the agent is restarted while a + startup countdown is in effect, the countdown is + aborted." + ::= { upsControl 3 } + + upsRebootWithDuration OBJECT-TYPE + SYNTAX INTEGER (-1..300) + UNITS "seconds" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object will immediately shutdown (i.e., + turn off) either the UPS output or the UPS system (as + determined by the value of upsShutdownType at the time + of shutdown) for a period equal to the indicated + number of seconds, after which time the output will be + started, including starting the UPS, if necessary. If + the number of seconds required to perform the request + is greater than the requested duration, then the + requested shutdown and startup cycle shall be + performed in the minimum time possible, but in no case + shall this require more than the requested duration + plus 60 seconds. When read, upsRebootWithDuration + shall return the number of seconds remaining in the + countdown, or -1 if no countdown is in progress. If + the startup should occur during a utility failure, the + startup shall not occur until the utility power is + restored." + ::= { upsControl 4 } + + upsAutoRestart OBJECT-TYPE + SYNTAX INTEGER { + on(1), + off(2) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Setting this object to 'on' will cause the UPS system + to restart after a shutdown if the shutdown occurred + during a power loss as a result of either a + upsShutdownAfterDelay or an internal battery depleted + condition. Setting this object to 'off' will prevent + the UPS system from restarting after a shutdown until + an operator manually or remotely explicitly restarts + it. If the UPS is in a startup or reboot countdown, + then the UPS will not restart until that delay has + been satisfied." + ::= { upsControl 5 } + + + -- + -- The Configuration group. + -- + + upsConfig OBJECT IDENTIFIER ::= { upsObjects 9 } + + upsConfigInputVoltage OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The magnitude of the nominal input voltage. On those + systems which support read-write access to this + object, if there is an attempt to set this variable to + a value that is not supported, the request must be + rejected and the agent shall respond with an + appropriate error message, i.e., badValue for SNMPv1, + or inconsistentValue for SNMPv2." + ::= { upsConfig 1 } + + upsConfigInputFreq OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 Hertz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The nominal input frequency. On those systems which + support read-write access to this object, if there is + an attempt to set this variable to a value that is not + supported, the request must be rejected and the agent + shall respond with an appropriate error message, i.e., + badValue for SNMPv1, or inconsistentValue for SNMPv2." + ::= { upsConfig 2 } + + upsConfigOutputVoltage OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The magnitude of the nominal output voltage. On + those systems which support read-write access to this + object, if there is an attempt to set this variable to + a value that is not supported, the request must be + rejected and the agent shall respond with an + appropriate error message, i.e., badValue for SNMPv1, + or inconsistentValue for SNMPv2." + ::= { upsConfig 3 } + + upsConfigOutputFreq OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "0.1 Hertz" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The nominal output frequency. On those systems which + support read-write access to this object, if there is + an attempt to set this variable to a value that is not + supported, the request must be rejected and the agent + shall respond with an appropriate error message, i.e., + badValue for SNMPv1, or inconsistentValue for SNMPv2." + ::= { upsConfig 4 } + + upsConfigOutputVA OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "Volt-Amps" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The magnitude of the nominal Volt-Amp rating." + ::= { upsConfig 5 } + + upsConfigOutputPower OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "Watts" + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The magnitude of the nominal true power rating." + ::= { upsConfig 6 } + + upsConfigLowBattTime OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "minutes" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The value of upsEstimatedMinutesRemaining at which a + lowBattery condition is declared. For agents which + support only discrete (discontinuous) values, then the + agent shall round up to the next supported value. If + the requested value is larger than the largest + supported value, then the largest supported value + shall be selected." + ::= { upsConfig 7 } + + upsConfigAudibleStatus OBJECT-TYPE + SYNTAX INTEGER { + disabled(1), + enabled(2), + muted(3) + } + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The requested state of the audible alarm. When in + the disabled state, the audible alarm should never + sound. The enabled state is self-describing. Setting + this object to muted(3) when the audible alarm is + sounding shall temporarily silence the alarm. It will + remain muted until it would normally stop sounding and + the value returned for read operations during this + period shall equal muted(3). At the end of this + period, the value shall revert to enabled(2). Writes + of the value muted(3) when the audible alarm is not + sounding shall be accepted but otherwise shall have no + effect." + ::= { upsConfig 8 } + + upsConfigLowVoltageTransferPoint OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The minimum input line voltage allowed before the UPS + system transfers to battery backup." + ::= { upsConfig 9 } + + upsConfigHighVoltageTransferPoint OBJECT-TYPE + SYNTAX NonNegativeInteger + UNITS "RMS Volts" + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "The maximum line voltage allowed before the UPS + system transfers to battery backup." + ::= { upsConfig 10 } + + + -- + -- notifications, i.e., traps + -- + upsTraps OBJECT IDENTIFIER ::= { upsMIB 2 } + + -- This section defines the well-known notifications sent by + -- UPS agents. + -- Care must be taken to insure that no particular notification + -- is sent to a single receiving entity more often than once + -- every five seconds. + + upsTrapOnBattery NOTIFICATION-TYPE + OBJECTS { upsEstimatedMinutesRemaining, upsSecondsOnBattery, + upsConfigLowBattTime } + STATUS current + DESCRIPTION + "The UPS is operating on battery power. This trap is + persistent and is resent at one minute intervals until + the UPS either turns off or is no longer running on + battery." + ::= { upsTraps 1 } + + upsTrapTestCompleted NOTIFICATION-TYPE + OBJECTS { upsTestId, upsTestSpinLock, + upsTestResultsSummary, upsTestResultsDetail, + upsTestStartTime, upsTestElapsedTime } + STATUS current + DESCRIPTION + "This trap is sent upon completion of a UPS diagnostic + test." + ::= { upsTraps 2 } + + upsTrapAlarmEntryAdded NOTIFICATION-TYPE + OBJECTS { upsAlarmId, upsAlarmDescr } + STATUS current + DESCRIPTION + "This trap is sent each time an alarm is inserted into + to the alarm table. It is sent on the insertion of + all alarms except for upsAlarmOnBattery and + upsAlarmTestInProgress." + ::= { upsTraps 3 } + + upsTrapAlarmEntryRemoved NOTIFICATION-TYPE + OBJECTS { upsAlarmId, upsAlarmDescr } + STATUS current + DESCRIPTION + "This trap is sent each time an alarm is removed from + the alarm table. It is sent on the removal of all + alarms except for upsAlarmTestInProgress." + ::= { upsTraps 4 } + + + -- + -- conformance information + -- + upsConformance OBJECT IDENTIFIER ::= { upsMIB 3 } + + upsCompliances OBJECT IDENTIFIER ::= { upsConformance 1 } + + + -- + -- compliance statements + -- + + upsSubsetCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + + "The compliance statement for UPSs that only support + the two-contact communication protocol." + MODULE -- this module + MANDATORY-GROUPS { upsSubsetIdentGroup, + upsSubsetBatteryGroup, upsSubsetInputGroup, + upsSubsetOutputGroup, upsSubsetAlarmGroup, + upsSubsetControlGroup, upsSubsetConfigGroup } + + OBJECT upsBatteryStatus + SYNTAX INTEGER { + batteryNormal(2), + batteryLow(3) + } + DESCRIPTION + "Support of the values unknown(1) and + batteryDepleted(4) is not required." + + OBJECT upsAlarmDescr + DESCRIPTION + "Support of all `well known' alarm types is not + required. The well known alarm types which must be + supported are: upsAlarmOnBattery, upsAlarmLowBattery, + upsAlarmInputBad, upsAlarmUpsOutputOff, + upsAlarmUpsSystemOff, and upsAlarmTestInProgress." + + OBJECT upsOutputSource + SYNTAX INTEGER { + normal(2), + battery(4) + } + DESCRIPTION + "Support of the values other(1), none(2), bypass(4), + booster(6) and reducer(7) is not required." + + OBJECT upsShutdownType + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required, i.e., compliant + systems need not support more than one shutdown type." + + OBJECT upsAutoRestart + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required, i.e., compliant + systems need not support more than one restart type." + + OBJECT upsConfigInputVoltage + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigInputFreq + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigOutputVoltage + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigOutputFreq + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + ::= { upsCompliances 1 } + + upsBasicCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + + "The compliance statement for UPSs that support + full-featured functions, such as control." + MODULE -- this module + MANDATORY-GROUPS { upsBasicIdentGroup, + upsBasicBatteryGroup, upsBasicInputGroup, + upsBasicOutputGroup, upsBasicAlarmGroup, + upsBasicTestGroup, upsBasicControlGroup, + upsBasicConfigGroup } + + + OBJECT upsAlarmDescr + DESCRIPTION + "Support of all `well known' alarm types is not + required. The well known alarm types which must be + supported are: upsAlarmOnBattery, upsAlarmLowBattery, + upsAlarmDepletedBattery, upsAlarmTempBad, + upsAlarmInputBad, upsAlarmOutputOverload, + upsAlarmOnBypass, upsAlarmBypassBad, + upsAlarmOutputOffAsRequested, + upsAlarmUpsOffAsRequested, upsAlarmUpsOutputOff, + upsAlarmUpsSystemOff, upsAlarmGeneralFault, + upsAlarmDiagnosticTestFailed, + upsAlarmCommunicationsLost, upsAlarmShutdownPending, + and upsAlarmTestInProgress." + + OBJECT upsTestId + DESCRIPTION + "Support of all `well known' test types is not + required. If no tests are supported, then the only + well known test type which must be supported is + upsTestNoTestsInitiated." + + OBJECT upsOutputSource + SYNTAX INTEGER { + normal(2), + battery(4) + } + DESCRIPTION + "Support of the values other(1), none(2), bypass(4), + booster(6) and reducer(7) is not required." + + GROUP upsBasicBypassGroup + DESCRIPTION + "The upsBasicBypassGroup is only required for UPSs + that have a Bypass present." + OBJECT upsShutdownType + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required, i.e., compliant + systems need not support more than one shutdown type." + + OBJECT upsAutoRestart + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required, i.e., compliant + systems need not support more than one restart type." + + OBJECT upsConfigInputVoltage + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigInputFreq + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigOutputVoltage + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigOutputFreq + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigLowBattTime + DESCRIPTION + "Implementation of all possible values may be onerous + for some systems. Consequently, not all possible + values must be supported. However, at least two + different manufacturer-selected values must be + supported." + + ::= { upsCompliances 2 } + + upsFullCompliance MODULE-COMPLIANCE + STATUS current + DESCRIPTION + "The compliance statement for UPSs that support + advanced full-featured functions." + MODULE -- this module + MANDATORY-GROUPS { upsFullIdentGroup, upsFullBatteryGroup, + upsFullInputGroup, upsFullOutputGroup, + upsFullAlarmGroup, upsFullTestGroup, + upsFullControlGroup, upsFullConfigGroup } + + OBJECT upsAlarmDescr + DESCRIPTION + "Support of all `well known' alarm types is not + required. The well known alarm types which must be + supported are: upsAlarmBatteryBad, upsAlarmOnBattery, + upsAlarmLowBattery, upsAlarmDepletedBattery, + upsAlarmTempBad, upsAlarmInputBad, upsAlarmOnBypass, + upsAlarmBypassBad, upsAlarmOutputOffAsRequested, + upsAlarmUpsOffAsRequested, upsAlarmUpsOutputOff, + upsAlarmUpsSystemOff, upsAlarmGeneralFault, + upsAlarmDiagnosticTestFailed, + upsAlarmCommunicationsLost, upsAlarmShutdownPending, + and upsAlarmTestInProgress." + + OBJECT upsTestId + DESCRIPTION + "Support of all `well known' test types is not + required. The well known test types which must be + supported are: upsTestNoTestsInitiated, + upsTestGeneralSystemsTest, and + upsTestQuickBatteryTest." + + OBJECT upsOutputSource + SYNTAX INTEGER { + normal(2), + battery(4) + } + DESCRIPTION + "Support of the values other(1), none(2), bypass(4), + booster(6) and reducer(7) is not required." + + GROUP upsFullBypassGroup + DESCRIPTION + "The upsFullBypassGroup is only required for UPSs that + have a Bypass present." + + OBJECT upsShutdownType + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required, i.e., compliant + systems need not support more than one shutdown type." + + OBJECT upsAutoRestart + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required, i.e., compliant + systems need not support more than one restart type." + + OBJECT upsConfigInputVoltage + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigInputFreq + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigOutputVoltage + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigOutputFreq + MIN-ACCESS read-only + DESCRIPTION + "Read-write access is not required." + + OBJECT upsConfigLowBattTime + DESCRIPTION + "Implementation of all possible values may be onerous + for some systems. Consequently, not all possible + values must be supported. However, at least two + different manufacturer-selected values must be + supported." + + ::= { upsCompliances 3 } + + + -- + -- units of conformance + -- + + -- summary at a glance: + + -- subset basic adv + --upsIdentManufacturer x x x + --upsIdentModel x x x + --upsIdentUPSSoftwareVersion x x + --upsIdentAgentSoftwareVersion x x x + --upsIdentName x x x + --upsIdentAttachedDevices x x + -- + --upsBatteryStatus x x x notes + --upsSecondsOnBattery x x x + --upsEstimatedMinutesRemaining x + --upsEstimatedChargeRemaining x + --upsBatteryVoltage + --upsBatteryCurrent + --upsBatteryTemperature + -- + --upsInputLineBads x x x + --upsInputNumLines x x + --upsInputFrequency x x + --upsInputVoltage x x + --upsInputCurrent + --upsInputTruePower + -- + --upsOutputSource x x x notes + --upsOutputFrequency x x + --upsOutputNumLines x x + --upsOutputVoltage x x + --upsOutputCurrent x + --upsOutputPower x + --upsOutputPercentLoad x + -- + -- + --upsBypassFrequency x x notes + --upsBypassNumLines x x + --upsBypassVoltage x x + --upsBypassCurrent + --upsBypassPower + -- + -- + --upsAlarmsPresent x x x + --upsAlarmDescr x x x notes + --upsAlarmTime x x x + -- + --upsTestId x x notes + --upsTestSpinLock x x + --upsTestResultsSummary x x + --upsTestResultsDetail x x + --upsTestStartTime x x + --upsTestElapsedTime x x + -- + --upsShutdownType x x x notes + --upsShutdownAfterDelay x x x + --upsStartupAfterDelay x x + --upsRebootWithDuration x x + --upsAutoRestart x x x notes + -- + --upsConfigInputVoltage x x x notes + --upsConfigInputFreq x x x notes + --upsConfigOutputVoltage x x x notes + --upsConfigOutputFreq x x x notes + --upsConfigOutputVA x x x + --upsConfigOutputPower x x x + --upsConfigLowBattTime x x notes + --upsConfigAudibleStatus x x + --upsConfigLowVoltageTransferPoint + --upsConfigHighVoltageTransferPoint + + + -- units of conformance + upsGroups OBJECT IDENTIFIER ::= { upsConformance 2 } + + upsSubsetGroups OBJECT IDENTIFIER ::= { upsGroups 1 } + + upsSubsetIdentGroup OBJECT-GROUP + OBJECTS { upsIdentManufacturer, upsIdentModel, + upsIdentAgentSoftwareVersion, upsIdentName, + upsIdentAttachedDevices } + STATUS current + DESCRIPTION + "The upsSubsetIdentGroup defines objects which are + common across all UPSs which meet subset compliance. + Most devices which conform to the upsSubsetIdentGroup + will provide access to these objects via a proxy + agent. If the proxy agent is compatible with multiple + UPS types, configuration of the proxy agent will + require specifying some of these values, either + individually, or as a group (perhaps through a table + lookup mechanism based on the UPS model number)." + ::= { upsSubsetGroups 1 } + + upsSubsetBatteryGroup OBJECT-GROUP + OBJECTS { upsBatteryStatus, upsSecondsOnBattery } + STATUS current + DESCRIPTION + "The upsSubsetBatteryGroup defines the objects that + are common to battery groups of two-contact UPSs." + ::= { upsSubsetGroups 2 } + + upsSubsetInputGroup OBJECT-GROUP + OBJECTS { upsInputLineBads } + STATUS current + DESCRIPTION + "The upsSubsetInputGroup defines the objects that are + common to the Input groups of two-contact UPSs." + ::= { upsSubsetGroups 3 } + + upsSubsetOutputGroup OBJECT-GROUP + OBJECTS { upsOutputSource } + STATUS current + DESCRIPTION + "The upsSubsetOutputGroup defines the objects that are + common to the Output groups of two-contact UPSs." + ::= { upsSubsetGroups 4 } + + + -- { upsSubsetGroups 5 } is reserved for + -- future use (upsSubsetBypassGroup) + + upsSubsetAlarmGroup OBJECT-GROUP + OBJECTS { upsAlarmsPresent, upsAlarmDescr, upsAlarmTime } + STATUS current + DESCRIPTION + "The upsSubsetAlarmGroup defines the objects that are + common to the Alarm groups of two-contact UPSs." + ::= { upsSubsetGroups 6 } + + -- { upsSubsetGroups 7 } is reserved for + -- future use (upsSubsetTestGroup) + + upsSubsetControlGroup OBJECT-GROUP + OBJECTS { upsShutdownType, upsShutdownAfterDelay, + upsAutoRestart } + STATUS current + DESCRIPTION + "The upsSubsetControlGroup defines the objects that + are common to the Control groups of two-contact UPSs." + ::= { upsSubsetGroups 8 } + + upsSubsetConfigGroup OBJECT-GROUP + OBJECTS { upsConfigInputVoltage, upsConfigInputFreq, + upsConfigOutputVoltage, upsConfigOutputFreq, + upsConfigOutputVA, upsConfigOutputPower } + STATUS current + DESCRIPTION + "The upsSubsetConfigGroup defines the objects that are + common to the Config groups of two-contact UPSs." + ::= { upsSubsetGroups 9 } + + upsBasicGroups OBJECT IDENTIFIER ::= { upsGroups 2 } + + upsBasicIdentGroup OBJECT-GROUP + OBJECTS { upsIdentManufacturer, upsIdentModel, + upsIdentUPSSoftwareVersion, + upsIdentAgentSoftwareVersion, upsIdentName } + STATUS current + DESCRIPTION + "The upsBasicIdentGroup defines objects which are + common to the Ident group of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 1 } + + upsBasicBatteryGroup OBJECT-GROUP + OBJECTS { upsBatteryStatus, upsSecondsOnBattery } + STATUS current + DESCRIPTION + "The upsBasicBatteryGroup defines the objects that are + common to the battery groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 2 } + + upsBasicInputGroup OBJECT-GROUP + OBJECTS { upsInputLineBads, upsInputNumLines, + upsInputFrequency, upsInputVoltage } + STATUS current + DESCRIPTION + "The upsBasicInputGroup defines the objects that are + common to the Input groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 3 } + + upsBasicOutputGroup OBJECT-GROUP + OBJECTS { upsOutputSource, upsOutputFrequency, + upsOutputNumLines, upsOutputVoltage } + STATUS current + DESCRIPTION + "The upsBasicOutputGroup defines the objects that are + common to the Output groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 4 } + + upsBasicBypassGroup OBJECT-GROUP + OBJECTS { upsBypassFrequency, upsBypassNumLines, + upsBypassVoltage } + STATUS current + DESCRIPTION + "The upsBasicBypassGroup defines the objects that are + common to the Bypass groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 5 } + + upsBasicAlarmGroup OBJECT-GROUP + OBJECTS { upsAlarmsPresent, upsAlarmDescr, upsAlarmTime } + STATUS current + DESCRIPTION + + "The upsBasicAlarmGroup defines the objects that are + common to the Alarm groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 6 } + + upsBasicTestGroup OBJECT-GROUP + OBJECTS { upsTestId, upsTestSpinLock, + upsTestResultsSummary, upsTestResultsDetail, + upsTestStartTime, upsTestElapsedTime } + STATUS current + DESCRIPTION + "The upsBasicTestGroup defines the objects that are + common to the Test groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 7 } + + upsBasicControlGroup OBJECT-GROUP + OBJECTS { upsShutdownType, upsShutdownAfterDelay, + upsStartupAfterDelay, upsRebootWithDuration, + upsAutoRestart } + STATUS current + DESCRIPTION + "The upsBasicControlGroup defines the objects that are + common to the Control groups of compliant UPSs which + support basic functions." + ::= { upsBasicGroups 8 } + + upsBasicConfigGroup OBJECT-GROUP + OBJECTS { upsConfigInputVoltage, upsConfigInputFreq, + upsConfigOutputVoltage, upsConfigOutputFreq, + upsConfigOutputVA, upsConfigOutputPower, + upsConfigLowBattTime, upsConfigAudibleStatus } + STATUS current + DESCRIPTION + "The upsBasicConfigGroup defines the objects that are + common to the Config groups of UPSs which support + basic functions." + ::= { upsBasicGroups 9 } + + upsFullGroups OBJECT IDENTIFIER ::= { upsGroups 3 } + + upsFullIdentGroup OBJECT-GROUP + OBJECTS { upsIdentManufacturer, upsIdentModel, + upsIdentUPSSoftwareVersion, + upsIdentAgentSoftwareVersion, upsIdentName, + upsIdentAttachedDevices } + STATUS current + DESCRIPTION + "The upsFullIdentGroup defines objects which are + common to the Ident group of fully compliant UPSs." + ::= { upsFullGroups 1 } + + upsFullBatteryGroup OBJECT-GROUP + OBJECTS { upsBatteryStatus, upsSecondsOnBattery, + upsEstimatedMinutesRemaining, + upsEstimatedChargeRemaining } + STATUS current + DESCRIPTION + "The upsFullBatteryGroup defines the objects that are + common to the battery groups of fully compliant UPSs." + ::= { upsFullGroups 2 } + + upsFullInputGroup OBJECT-GROUP + OBJECTS { upsInputLineBads, upsInputNumLines, + upsInputFrequency, upsInputVoltage } + STATUS current + DESCRIPTION + "The upsFullInputGroup defines the objects that are + common to the Input groups of fully compliant UPSs." + ::= { upsFullGroups 3 } + + upsFullOutputGroup OBJECT-GROUP + OBJECTS { upsOutputSource, upsOutputFrequency, + upsOutputNumLines, upsOutputVoltage, + upsOutputCurrent, upsOutputPower, + upsOutputPercentLoad } + STATUS current + DESCRIPTION + "The upsFullOutputGroup defines the objects that are + common to the Output groups of fully compliant UPSs." + ::= { upsFullGroups 4 } + + upsFullBypassGroup OBJECT-GROUP + OBJECTS { upsBypassFrequency, upsBypassNumLines, + upsBypassVoltage } + STATUS current + DESCRIPTION + "The upsFullBypassGroup defines the objects that are + common to the Bypass groups of fully compliant UPSs." + ::= { upsFullGroups 5 } + + upsFullAlarmGroup OBJECT-GROUP + OBJECTS { upsAlarmsPresent, upsAlarmDescr, upsAlarmTime } + STATUS current + DESCRIPTION + + "The upsFullAlarmGroup defines the objects that are + common to the Alarm groups of fully compliant UPSs." + ::= { upsFullGroups 6 } + + upsFullTestGroup OBJECT-GROUP + OBJECTS { upsTestId, upsTestSpinLock, + upsTestResultsSummary, upsTestResultsDetail, + upsTestStartTime, upsTestElapsedTime } + STATUS current + DESCRIPTION + "The upsFullTestGroup defines the objects that are + common to the Test groups of fully compliant UPSs." + ::= { upsFullGroups 7 } + + upsFullControlGroup OBJECT-GROUP + OBJECTS { upsShutdownType, upsShutdownAfterDelay, + upsStartupAfterDelay, upsRebootWithDuration, + upsAutoRestart } + STATUS current + DESCRIPTION + "The upsFullControlGroup defines the objects that are + common to the Control groups of fully compliant UPSs." + ::= { upsFullGroups 8 } + + upsFullConfigGroup OBJECT-GROUP + OBJECTS { upsConfigInputVoltage, upsConfigInputFreq, + upsConfigOutputVoltage, upsConfigOutputFreq, + upsConfigOutputVA, upsConfigOutputPower, + upsConfigLowBattTime, upsConfigAudibleStatus } + STATUS current + DESCRIPTION + "The upsFullConfigGroup defines the objects that are + common to the Config groups of fully compliant UPSs." + ::= { upsFullGroups 9 } + + END diff --git a/pandora_console/attachment/mibs/WINS-MIB b/pandora_console/attachment/mibs/WINS-MIB new file mode 100644 index 0000000000..4fd20296a3 --- /dev/null +++ b/pandora_console/attachment/mibs/WINS-MIB @@ -0,0 +1,802 @@ + WINS-MIB DEFINITIONS ::= BEGIN + + + IMPORTS + enterprises, + OBJECT-TYPE + FROM RFC1155-SMI + DisplayString + FROM RFC1213-MIB; + + + microsoft OBJECT IDENTIFIER ::= { enterprises 311 } + software OBJECT IDENTIFIER ::= { microsoft 1 } + wins OBJECT IDENTIFIER ::= { software 2 } + par OBJECT IDENTIFIER ::= { wins 1 } + pull OBJECT IDENTIFIER ::= { wins 2 } + push OBJECT IDENTIFIER ::= { wins 3 } + datafiles OBJECT IDENTIFIER ::= { wins 4 } + cmd OBJECT IDENTIFIER ::= { wins 5 } + + + + -- WINS MIB + -- Parameters (Prefix Par) + + parWinsStartTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Wins start time" + ::= { par 1 } + + parLastPScvTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent date and time at which planned scavenging + took place. Planned scavenging happens at intervals + specified in the registry. Scavenging involves + changing owned non-refreshed entries to the released + state. Further, replicas may be changed to tombstones, + tombstones maye be deleted and revalidation of old + replicas may take place" + ::= { par 2 } + + parLastATScvTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which scavenging as a + result of administrative action took place" + ::= { par 3 } + + parLastTombScvTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which replica tombstone + scavenging took place" + ::= { par 4 } + parLastVerifyScvTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which revalidation of + old active replicas took place" + ::= { par 5 } + + parLastPRplTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which planned replication + took place. Planned replication happens at intervals + specified in the registry" + ::= { par 6 } + + parLastATRplTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which administrator + triggered replication took place." + ::= { par 7 } + + parLastNTRplTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which network triggered + replication took place. Network triggered replication + happens as a result of an update notification message + from a remote WINS" + ::= { par 8 } + + parLastACTRplTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which address change + triggered replication took place. Address change + triggered replication happens when the address of + an owned name changes due to a new registration" + ::= { par 9 } + + parLastInitDbTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which the local database + was populated statically from one or more data files" + ::= { par 10 } + + parLastCounterResetTime OBJECT-TYPE + SYNTAX DisplayString (SIZE (1..30)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Most recent data and time at which the local counters + were initialized to zero" + ::= { par 11 } + + parWinsTotalNoOfReg OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + registrations received" + ::= { par 12 } + + parWinsTotalNoOfQueries OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + queries received" + ::= { par 13 } + + parWinsTotalNoOfRel OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + releases received" + ::= { par 14 } + + parWinsTotalNoOfSuccRel OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + releases that succeeded" + ::= { par 15 } + + parWinsTotalNoOfFailRel OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + releases that failed" + ::= { par 16 } + + parWinsTotalNoOfSuccQueries OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + queries that succeeded" + ::= { par 17 } + + parWinsTotalNoOfFailQueries OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This variable indicates the number of + queries that failed" + ::= { par 18 } + + parRefreshInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the refresh interval. + Unit is in milliseconds" + ::= { par 19 } + + parTombstoneInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the tombstone interval, + Unit is in milliseconds" + ::= { par 20 } + + parTombstoneTimeout OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the tombstone timeout. + Unit is in milliseconds" + ::= { par 21 } + + parVerifyInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the verify interval + Unit is in milliseconds." + ::= { par 22 } + + parVersCounterStartValLowWord OBJECT-TYPE + SYNTAX Counter + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the low word of the + version counter that WINS should start with" + ::= { par 23 } + + parVersCounterStartValHighWord OBJECT-TYPE + SYNTAX Counter + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the High word of the + version counter that WINS should start with" + ::= { par 24 } + + parRplOnlyWCnfPnrs OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether or not + replication should be done with non-configures pnrs. + If not set to zero, replication will be done only with + partners listed in the registry (except when an + update notification comes in)" + ::= { par 25 } + + parStaticDataInit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether Static data should + be read in at initialization and reconfiguration time. + Update of any mib variable in the parameters group + constitutes reconfigurations " + ::= { par 26 } + + parLogFlag OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether logging should be + done. Default behaviour is to do logging" + ::= { par 27 } + + parLogFileName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable gives the path to the log file" + ::= { par 28 } + + parBackupDirPath OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable gives the path to the backup dir" + ::= { par 29 } + + parDoBackupOnTerm OBJECT-TYPE + SYNTAX INTEGER { + no(0), + yes(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable specifies whether WINS should do + backup on termination. Setting it 1 holds no + meaning unless parBackupDirPath is set also" + ::= { par 30 } + + parMigrateOn OBJECT-TYPE + SYNTAX INTEGER { + no(0), + yes(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable specifies whether static records + in the wins database should be treated as + dynamic records during conflicts with new + dynamic registrations." + ::= { par 31 } + +-- datafiles group (Prefix df) + + dfDatafilesTable OBJECT-TYPE + SYNTAX SEQUENCE OF DFDatafileEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A list of datafiles specified under the Datafiles + key in the registry. These files are used for + statically initialization of the WINS database" + ::= { datafiles 1 } + + dfDatafileEntry OBJECT-TYPE + SYNTAX DFDatafileEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION + "data file name" + INDEX { dfDatafileIndex } + ::= { dfDatafilesTable 1 } + + DFDatafileEntry ::= SEQUENCE { + dfDatafileIndex + INTEGER, + dfDatafileName + DisplayString + } + + dfDatafileIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Used for indexing entries in the datafiles table. + It has no other use" + ::= { dfDatafileEntry 1 } + + dfDatafileName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Name of the datafile to use for static initialization" + ::= { dfDatafileEntry 2 } + +-- pull group (Prefix pull) + + pullInitTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether pull should be + done at WINS invocation and at reconfiguration. + If any pull group's mib variable is set, that + constitutes reconfiguration" + ::= { pull 1 } + + pullCommRetryCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable gives the retry count in + case of comm failure when doing pull replication. + This is the max. number of retries that will be + done at the interval specified for the Partner + before WINS will stop for a certain number (canned) of + replication time intervals before starting again." + ::= { pull 2 } + + pullPnrTable OBJECT-TYPE + SYNTAX SEQUENCE OF PullPnrEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A list of Partners with which pull replication needs + to be done" + ::= { pull 3 } + + pPullPnrEntry OBJECT-TYPE + SYNTAX PullPnrEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the row corresponding to a partner" + INDEX { pullPnrAdd } + ::= { pullPnrTable 1 } + + PullPnrEntry ::= SEQUENCE { + pullPnrAdd + IpAddress, + + pullPnrSpTime + DisplayString, + + pullPnrTimeInterval + INTEGER, + + pullPnrMemberPrec + Counter, + + pullPnrNoOfSuccRpls + Counter, + + pullPnrNoOfCommFails + Counter + + } + pullPnrAdd OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the address of the remote WINS partner" + ::= { pPullPnrEntry 1 } + + + pullPnrSpTime OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable gives the specific time at which + pull replication should occur" + ::= { pPullPnrEntry 2 } + + pullPnrTimeInterval OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable gives the time interval for + pull replication" + ::= { pPullPnrEntry 3 } + + pullPnrMemberPrec OBJECT-TYPE + SYNTAX + INTEGER { + low(0), + high(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the precedence to be given to members of + the special group pulled from the WINS. Note: + the precedence of locally registered members of a + special group is more than any replicas pulled in" + ::= { pPullPnrEntry 4 } + + pullPnrNoOfSuccRpls OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times replication was successful with + the WINS after invocation or reset of counters" + ::= { pPullPnrEntry 5 } + + pullPnrNoOfCommFails OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times replication was unsuccessful with + the WINS due to comm. failure (after invocation or reset + of counters" + ::= { pPullPnrEntry 6 } + + pullPnrVersNoLowWord OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The low word of the highest vers. no found in records + owned by this WINS." + ::= { pPullPnrEntry 7 } + + pullPnrVersNoHighWord OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The high word of the highest vers. no found in records + owned by this WINS." + ::= { pPullPnrEntry 8 } + +-- push group (Prefix - push) + pushInitTime OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether a push (i.e. + notification message) should be done at invocation." + ::= { push 1 } + + pushRplOnAddChg OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates whether a notification + message should be sent when address changes" + ::= { push 2 } + + pushPnrTable OBJECT-TYPE + SYNTAX SEQUENCE OF PushPnrEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A list of WINS Partners with which push + replication is to be initiated" + ::= { push 3 } + + + pushPnrEntry OBJECT-TYPE + SYNTAX PushPnrEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This is the row corresponding to the WINS pnr" + INDEX { pushPnrAdd } + ::= { pushPnrTable 1 } + + PushPnrEntry ::= SEQUENCE { + pushPnrAdd + INTEGER, + + pushPnrUpdateCount + INTEGER + + } + + pushPnrAdd OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Address of the WINS partner" + ::= { pushPnrEntry 1 } + + pushPnrUpdateCount OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable indicates the # of updates that + should result in a push message" + ::= { pushPnrEntry 2 } + +-- cmd group (Prefix - cmd) + + cmdPullTrigger OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable when set will cause the WINS to + pull from the remote WINS identified by the IpAddress" + ::= { cmd 1 } + + cmdPushTrigger OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable when set will cause the WINS to + push a notification message to the remote WINS + identified by the IpAddress" + ::= { cmd 2 } + + cmdDeleteWins OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable when set will cause all information + pertaining to a WINS (data records, context + information to be deleted from the local WINS. + Use this only when owner-address mapping table is + getting to near capacity. NOTE: deletion of all + information pertaining to the managed WINS is not + permitted" + ::= { cmd 3 } + + cmdDoScavenging OBJECT-TYPE + SYNTAX INTEGER { + no(0), + yes(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable when set will cause WINS to do + scavenging." + ::= { cmd 4 } + + cmdDoStaticInit OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "When set WINS will do static initialization + using the file specified as the value. If + 0 is specified, WINS will do static + initialization using the files specified + in the registry (can be read-written using + Datafile table" + ::= { cmd 5 } + + cmdNoOfWrkThds OBJECT-TYPE + SYNTAX INTEGER (1..4) + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Sets the number of worker threads in WINS" + ::= { cmd 6 } + + cmdPriorityClass OBJECT-TYPE + SYNTAX INTEGER { + normal(0), + high(1) + } + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Set the priority class of WINS to normal or high" + ::= { cmd 7 } + + cmdResetCounters OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Reset the counters. Value is ignored" + ::= { cmd 8 } + + cmdDeleteDbRecs OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable when set will cause all date records + pertaining to a WINS to be deleted from the local WINS. + Note: Only data records are deleted." + ::= { cmd 9 } + + cmdDRPopulateTable OBJECT-TYPE + SYNTAX IpAddress + ACCESS read-write + STATUS mandatory + DESCRIPTION + "This variable can set to retrieve records of + a WINS whose Ip address is provided. When set + the table is populated right-away" + ::= { cmd 10 } + + cmdDRDataRecordsTable OBJECT-TYPE + SYNTAX SEQUENCE OF CmdDRRecordEntry + ACCESS read-only + STATUS mandatory + DESCRIPTION + "This is the table that stores the data records + The records are sorted lexicographically by name + Note: the table is cached (to save on overhead on WINS) + To repopulate the table, set cmdDRDataRecordsTable + mib var" + ::= { cmd 11 } + + cmdDRRecordEntry OBJECT-TYPE + SYNTAX CmdDRRecordEntry + ACCESS read-write + STATUS mandatory + DESCRIPTION "data record owned by WINS whose address + was specified when CmdDRRecordsTable was + set" + INDEX { cmdDRRecordName } + ::= { cmdDRDataRecordsTable 1 } + + CmdDRRecordEntry ::= SEQUENCE { + cmdDRRecordName + DisplayString, + cmdDRRecordAddress + OCTET STRING, + cmdDRRecordType + INTEGER, + cmdDRRecordPersistenceType + INTEGER, + cmdDRRecordState + INTEGER + } + + cmdDRRecordName OBJECT-TYPE + SYNTAX OCTET STRING (SIZE(1..255)) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Name in the record" + ::= { cmdDRRecordEntry 1 } + + cmdDRRecordAddress OBJECT-TYPE + SYNTAX OCTET STRING + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Address(es) of the record. If the record is + a multihomed record or a special group, the + addresses are returned sequentially in pairs. + Each pair is comprised of the address of the + owner wins followed by the address of the + machine (multihomed)/member (special group). + Note: Following snmp's convention, the records + are always returned in network byte order" + ::= { cmdDRRecordEntry 2 } + + cmdDRRecordType OBJECT-TYPE + SYNTAX INTEGER { + unique(0), + normalgroup(1), + specialgroup(2), + multihomed(3) + } + -- Note the above order should not be disturbed. It is same as + -- in winsintf.h (WINSINTF_RECTYPE_E) + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Type of the record" + ::= {cmdDRRecordEntry 3 } + + cmdDRRecordPersistenceType OBJECT-TYPE + SYNTAX INTEGER { + static(0), + dynamic(1) + } + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Persistence type of the record" + ::= { cmdDRRecordEntry 4 } + + cmdDRRecordState OBJECT-TYPE + SYNTAX INTEGER { + active(0), + released(1), + tombstone(2), + deleted(3) + } + -- Note the above order should not be disturbed. It is same as + -- in winsintf.h (WINSINTF_STATE_E) + + -- for a SET operation only released and deleted values are + -- allowed + ACCESS read-only + STATUS mandatory + DESCRIPTION + "State of the record." + ::= { cmdDRRecordEntry 5 } + + cmdWinsVersNoLowWord OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The low word of the version number counter of the WINS" + ::= { cmd 12 } + + cmdWinsVersNoHighWord OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The high word of the version number counter of the WINS" + ::= { cmd 13 } + END + diff --git a/pandora_console/attachment/mibs/WLSX-MON-MIB b/pandora_console/attachment/mibs/WLSX-MON-MIB new file mode 100644 index 0000000000..5012868254 --- /dev/null +++ b/pandora_console/attachment/mibs/WLSX-MON-MIB @@ -0,0 +1,2958 @@ +--- ArubaOS 6.5.2.0_59123 +-- vim:set ts=4 sw=4: +WLSX-MON-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TEXTUAL-CONVENTION FROM SNMPv2-TC + + MODULE-IDENTITY, + OBJECT-TYPE, + snmpModules, + Integer32, + Counter32, + IpAddress, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + + TDomain, + DisplayString, + PhysAddress, + TAddress, + TimeInterval, + RowStatus, + StorageType, + TestAndIncr, + MacAddress, + TruthValue + FROM SNMPv2-TC + + ArubaEnableValue, + ArubaFrameType, + ArubaRogueApType, + ArubaStationType, + ArubaPhyType, + ArubaAPMatchType, + ArubaAPMatchMethod, + ArubaHTMode, + ArubaHTRate, + ArubaMonEncryptionType, + ArubaMonEncryptionCipher, + ArubaMonAuthAlgorithm + FROM ARUBA-TC + + OBJECT-GROUP + FROM SNMPv2-CONF + wlsxEnterpriseMibModules + FROM ARUBA-MIB; + + wlsxMonMIB MODULE-IDENTITY + LAST-UPDATED "0804160206Z" + ORGANIZATION "Aruba Wireless Networks" + CONTACT-INFO + "Postal: 1322 Crossman Avenue + Sunnyvale, CA 94089 + E-mail: dl-support@arubanetworks.com + Phone: +1 408 227 4500" + DESCRIPTION + " + This MIB module defines MIB objects which provide + information about the Monitored Access Points. + " + REVISION "0804160206Z" + DESCRIPTION + "The initial revision." + ::= { wlsxEnterpriseMibModules 6 } + + wlsxMonStatsGroup OBJECT IDENTIFIER ::= { wlsxMonMIB 6 } + wlsxMonInfoGroup OBJECT IDENTIFIER ::= { wlsxMonMIB 7 } + + wlsxMonAccessPointStatsGroup OBJECT IDENTIFIER ::= { wlsxMonStatsGroup 1 } + wlsxMonStationStatsGroup OBJECT IDENTIFIER ::= { wlsxMonStatsGroup 2 } + +-- Stats group contains tables for station statistics, channel statistics and +-- AP statistics. + + wlsxMonAPStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the statistics of all the APs being monitored + by the controller. + " + ::= { wlsxMonAccessPointStatsGroup 1 } + + wlsxMonAPStatsEntry OBJECT-TYPE + SYNTAX WlsxMonAPStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Monitored Access Point Stats entry" + INDEX {monPhyAddress, monRadioNumber, monitoredApBSSID} + ::= { wlsxMonAPStatsTable 1 } + + WlsxMonAPStatsEntry ::= + SEQUENCE { + monPhyAddress MacAddress, + monRadioNumber Integer32, + monitoredApBSSID MacAddress, + monPhyType ArubaPhyType, + monAPCurrentChannel Unsigned32, + monAPNumClients Integer32, + monAPTxPkts Counter32, + monAPTxBytes Counter32, + monAPRxPkts Counter32, + monAPRxBytes Counter32, + monAPTxDeauthentications Counter32, + monAPRxDeauthentications Counter32, + monAPChannelThroughput Integer32, + monAPFrameRetryRate Integer32, + monAPFrameLowSpeedRate Integer32, + monAPFrameNonUnicastRate Integer32, + monAPFrameFragmentationRate Integer32, + monAPFrameBandwidthRate Integer32, + monAPFrameRetryErrorRate Integer32, + monAPChannelErrorRate Integer32, + monAPESSID DisplayString, + monAPRSSI Integer32, + monAPFrameReceiveErrorRate Integer32 + } + + monPhyAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + MAC address of the air monitor that is monitoring the AP. + " + ::= { wlsxMonAPStatsEntry 1} + + monRadioNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Radio number of the air monitor that is monitoring the AP. + " + ::= { wlsxMonAPStatsEntry 2 } + + monitoredApBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + BSSID of the access point being monitored. + " + ::= { wlsxMonAPStatsEntry 3} + + monPhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + PHY type of the access point being monitored. + " + ::= { wlsxMonAPStatsEntry 4 } + + + monAPCurrentChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Channel the monitored AP is using. + " + ::= { wlsxMonAPStatsEntry 5 } + + monAPNumClients OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of clients associated to this monitored AP. + " + ::= { wlsxMonAPStatsEntry 6 } + + monAPTxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets transmitted by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 7 } + + monAPTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes transmitted by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 8 } + + monAPRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets received by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 9 } + + monAPRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes received by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 10 } + + monAPTxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of deauthentications transmitted by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 11 } + + monAPRxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of deauthentications received by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 12 } + + monAPChannelThroughput OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The throughput achieved on this channel by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 13 } + + monAPFrameRetryRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of retry + packets as a percentage of the total packets + transmitted and received by this monitored AP + " + ::= { wlsxMonAPStatsEntry 14 } + + monAPFrameLowSpeedRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps + for B band) packets as a percentage of the total packets + transmitted and received by this monitored AP + " + ::= { wlsxMonAPStatsEntry 15 } + + monAPFrameNonUnicastRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The multicast rate on this monitored AP. + " + ::= { wlsxMonAPStatsEntry 16 } + + monAPFrameFragmentationRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of fragments + as a percentage of the total packets + transmitted by this monitored AP. + " + ::= { wlsxMonAPStatsEntry 17 } + + monAPFrameBandwidthRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The bandwidth of this monitored AP in Kbps. + " + ::= { wlsxMonAPStatsEntry 18 } + + monAPFrameRetryErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received on this monitored AP. + " + ::= { wlsxMonAPStatsEntry 19 } + + monAPChannelErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets received + on the current channel. + " + ::= { wlsxMonAPStatsEntry 20 } + + monAPESSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID of the access point being monitored. + " + ::= { wlsxMonAPStatsEntry 21 } + + monAPRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + SNR of the access point being monitored. + " + ::= { wlsxMonAPStatsEntry 22 } + + monAPFrameReceiveErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received on this monitored AP. + " + ::= { wlsxMonAPStatsEntry 23 } + +-- This table breaks down the AP statistics observed into different +-- rate categories. + + wlsxMonAPRateStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the monitored AP Packet and Byte Counts + but represented in terms of rate categories. + " + + ::= { wlsxMonAccessPointStatsGroup 2 } + + wlsxMonAPRateStatsEntry OBJECT-TYPE + SYNTAX WlsxMonAPRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Data rate based packet and byte count entry for a monitored AP" + INDEX {monPhyAddress, monRadioNumber, monitoredApBSSID} + ::= { wlsxMonAPRateStatsTable 1 } + + WlsxMonAPRateStatsEntry ::= + SEQUENCE { + monAPStatsTotPktsAt1Mbps Counter32, + monAPStatsTotBytesAt1Mbps Counter32, + monAPStatsTotPktsAt2Mbps Counter32, + monAPStatsTotBytesAt2Mbps Counter32, + monAPStatsTotPktsAt5Mbps Counter32, + monAPStatsTotBytesAt5Mbps Counter32, + monAPStatsTotPktsAt11Mbps Counter32, + monAPStatsTotBytesAt11Mbps Counter32, + monAPStatsTotPktsAt6Mbps Counter32, + monAPStatsTotBytesAt6Mbps Counter32, + monAPStatsTotPktsAt12Mbps Counter32, + monAPStatsTotBytesAt12Mbps Counter32, + monAPStatsTotPktsAt18Mbps Counter32, + monAPStatsTotBytesAt18Mbps Counter32, + monAPStatsTotPktsAt24Mbps Counter32, + monAPStatsTotBytesAt24Mbps Counter32, + monAPStatsTotPktsAt36Mbps Counter32, + monAPStatsTotBytesAt36Mbps Counter32, + monAPStatsTotPktsAt48Mbps Counter32, + monAPStatsTotBytesAt48Mbps Counter32, + monAPStatsTotPktsAt54Mbps Counter32, + monAPStatsTotBytesAt54Mbps Counter32, + monAPStatsTotPktsAt9Mbps Counter32, + monAPStatsTotBytesAt9Mbps Counter32 + } + + monAPStatsTotPktsAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 1Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 1 } + + monAPStatsTotBytesAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 1Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 2 } + + monAPStatsTotPktsAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 2Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 3 } + + monAPStatsTotBytesAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 2Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 4 } + + monAPStatsTotPktsAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 5Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 5 } + + monAPStatsTotBytesAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 5Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 6 } + + monAPStatsTotPktsAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 11Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 7 } + + monAPStatsTotBytesAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 11Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 8 } + + monAPStatsTotPktsAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 6Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 9 } + + monAPStatsTotBytesAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 6Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 10 } + + monAPStatsTotPktsAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 12Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 11 } + + monAPStatsTotBytesAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 12Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 12 } + + monAPStatsTotPktsAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 18Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 13 } + + monAPStatsTotBytesAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 18Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 14 } + + monAPStatsTotPktsAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 24Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 15 } + + monAPStatsTotBytesAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 24Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 16 } + + monAPStatsTotPktsAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 36Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 17 } + + monAPStatsTotBytesAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 36Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 18 } + + monAPStatsTotPktsAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 48Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 19 } + + monAPStatsTotBytesAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 48Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 20 } + + monAPStatsTotPktsAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 54Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 21 } + + monAPStatsTotBytesAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 54Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 22 } + + monAPStatsTotPktsAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + from this BSSID at 9Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 23 } + + monAPStatsTotBytesAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + from this BSSID at 9Mbps rate. + " + ::= { wlsxMonAPRateStatsEntry 24 } + + +-- This table breaks down the channel statistics observed based on the +-- Destination Address Types. + + wlsxMonAPDATypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the per BSSID Packet and Byte Counts + but broken down in terms of Destination Address Type. + " + ::= { wlsxMonAccessPointStatsGroup 3 } + + wlsxMonAPDATypeStatsEntry OBJECT-TYPE + SYNTAX WlsxMonAPDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Destination Address based packet and byte count entry for a + monitored AP + " + INDEX {monPhyAddress, monRadioNumber, monitoredApBSSID} + ::= { wlsxMonAPDATypeStatsTable 1 } + + WlsxMonAPDATypeStatsEntry ::= + SEQUENCE { + monAPStatsTotDABroadcastPkts Counter32 , + monAPStatsTotDABroadcastBytes Counter32 , + monAPStatsTotDAMulticastPkts Counter32 , + monAPStatsTotDAMulticastBytes Counter32 , + monAPStatsTotDAUnicastPkts Counter32 , + monAPStatsTotDAUnicastBytes Counter32 + + } + + monAPStatsTotDABroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Broadcast packets + observed from this BSSID. + " + ::= { wlsxMonAPDATypeStatsEntry 1 } + + monAPStatsTotDABroadcastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Broadcast Bytes + observed from this BSSID. + " + ::= { wlsxMonAPDATypeStatsEntry 2 } + + monAPStatsTotDAMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Multicast packets + observed from this BSSID. + " + ::= { wlsxMonAPDATypeStatsEntry 3 } + + monAPStatsTotDAMulticastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Multicast Bytes + observed from this BSSID. + " + ::= { wlsxMonAPDATypeStatsEntry 4 } + + monAPStatsTotDAUnicastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Unicast packets + observed from this BSSID. + " + ::= { wlsxMonAPDATypeStatsEntry 5 } + + monAPStatsTotDAUnicastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Unicast Bytes + observed from this BSSID. + " + ::= { wlsxMonAPDATypeStatsEntry 6 } + +-- This table breaks down the channel statistics observed based on the +-- the Type of the Packet. + + wlsxMonAPFrameTypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the per BSSID Packet and Byte Counts + but broken down into different Frame Types. + " + ::= { wlsxMonAccessPointStatsGroup 4 } + + wlsxMonAPFrameTypeStatsEntry OBJECT-TYPE + SYNTAX WlsxMonAPFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Frame Type based packet and byte count entry for a monitored AP" + INDEX {monPhyAddress, monRadioNumber, monitoredApBSSID} + ::= { wlsxMonAPFrameTypeStatsTable 1 } + + WlsxMonAPFrameTypeStatsEntry ::= + SEQUENCE { + monAPStatsTotMgmtPkts Counter32 , + monAPStatsTotMgmtBytes Counter32 , + monAPStatsTotCtrlPkts Counter32 , + monAPStatsTotCtrlBytes Counter32 , + monAPStatsTotDataPkts Counter32 , + monAPStatsTotDataBytes Counter32 + + } + + monAPStatsTotMgmtPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Management packets + observed from this BSSID. + " + ::= { wlsxMonAPFrameTypeStatsEntry 1 } + + monAPStatsTotMgmtBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Management Bytes + observed from this BSSID. + " + ::= { wlsxMonAPFrameTypeStatsEntry 2 } + + monAPStatsTotCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Control packets + observed from this BSSID. + " + ::= { wlsxMonAPFrameTypeStatsEntry 3 } + + monAPStatsTotCtrlBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Control Bytes + observed from this BSSID. + " + ::= { wlsxMonAPFrameTypeStatsEntry 4 } + + monAPStatsTotDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Data packets + observed from this BSSID. + " + ::= { wlsxMonAPFrameTypeStatsEntry 5 } + + monAPStatsTotDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Data Bytes + observed from this BSSID. + " + ::= { wlsxMonAPFrameTypeStatsEntry 6 } + +-- This table breaks down the channel statistics observed into packet size +-- buckets. + + wlsxMonAPPktSizeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the per BSSID Packet and Byte Counts + but broken down into different Packet Sizes. + " + ::= { wlsxMonAccessPointStatsGroup 5 } + + wlsxMonAPPktSizeStatsEntry OBJECT-TYPE + SYNTAX WlsxMonAPPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet Size based packet count entry for a BSSID" + INDEX {monPhyAddress, monRadioNumber, monitoredApBSSID} + ::= { wlsxMonAPPktSizeStatsTable 1 } + + WlsxMonAPPktSizeStatsEntry ::= + SEQUENCE { + monAPStatsPkts63Bytes Counter32 , + monAPStatsPkts64To127 Counter32 , + monAPStatsPkts128To255 Counter32 , + monAPStatsPkts256To511 Counter32 , + monAPStatsPkts512To1023 Counter32 , + monAPStatsPkts1024To1518 Counter32 + + } + + monAPStatsPkts63Bytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets transmitted + by the AP that were less than 64 bytes long. + " + ::= { wlsxMonAPPktSizeStatsEntry 1 } + + monAPStatsPkts64To127 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets transmitted + by the AP that were between 64 and 127 bytes long. + " + ::= { wlsxMonAPPktSizeStatsEntry 2 } + + monAPStatsPkts128To255 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets + transmitted by the AP that were between 128 and 255 bytes long. + " + ::= { wlsxMonAPPktSizeStatsEntry 3 } + + monAPStatsPkts256To511 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets transmitted + by the AP that were between 256 and 511 bytes long. + " + ::= { wlsxMonAPPktSizeStatsEntry 4 } + + monAPStatsPkts512To1023 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets transmitted + by the AP that were between 512 and 1023 bytes long. + " + ::= { wlsxMonAPPktSizeStatsEntry 5 } + + monAPStatsPkts1024To1518 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets transmitted + by the AP that were between 1024 and 1518 bytes long. + " + ::= { wlsxMonAPPktSizeStatsEntry 6 } + +-- This table breaks down the AP statistics observed into different +-- HT rate categories. + + wlsxMonAPHTRateStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPHTRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the monitored AP Packet and Byte Counts + but represented in terms of HT rate categories. + " + + ::= { wlsxMonAccessPointStatsGroup 6 } + + wlsxMonAPHTRateStatsEntry OBJECT-TYPE + SYNTAX WlsxMonAPHTRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Data rate based packet and byte count entry for a monitored AP" + INDEX { monPhyAddress, monRadioNumber, monitoredApBSSID, monHTRate } + ::= { wlsxMonAPHTRateStatsTable 1 } + + WlsxMonAPHTRateStatsEntry ::= + SEQUENCE { + monHTRate ArubaHTRate, + monAPStatsTotHTPkts Counter32, + monAPStatsTotHTBytes Counter32 + } + + monHTRate OBJECT-TYPE + SYNTAX ArubaHTRate + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The rate at which the counters apply + " + ::= { wlsxMonAPHTRateStatsEntry 1 } + + monAPStatsTotHTPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of packets processed at the indicated rate + " + ::= { wlsxMonAPHTRateStatsEntry 2 } + + monAPStatsTotHTBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of bytes processed at the indicated rate + " + ::= { wlsxMonAPHTRateStatsEntry 3 } + +-- wlsxMonStationStatsGroup contains all the statistics observed by different +-- Air Monitors attached to this controller. +-- Station Statatistics are observed by the Air Monitor for that +-- specific Station. + +-- Station Statistics are grouped into Generic, +-- Rate, Destination Address and Frame Type Stats. + +-- Station Statistics Group contains all the statistics related to +-- a Station. + +-- wlsxMonStationStatsTable will contain all the Agregate statistics collected +-- for a Station + + wlsxMonStationStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonStationStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the statistics of all the wireless stations being monitored + by an AP connected to this controller. + " + ::= { wlsxMonStationStatsGroup 1} + + wlsxMonStationStatsEntry OBJECT-TYPE + SYNTAX MonStationStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Monitored Station Stats Entry" + INDEX {monPhyAddress, monRadioNumber, monitoredStaPhyAddress} + ::= { wlsxMonStationStatsTable 1 } + + MonStationStatsEntry ::= + SEQUENCE { + monitoredStaPhyAddress MacAddress, + monStaChannelNum Unsigned32, + monStaTxPkts Counter32, + monStaTxBytes Counter32, + monStaRxPkts Counter32, + monStaRxBytes Counter32, + monStaTxBCastPkts Counter32, + monStaTxBCastBytes Counter32, + monStaTxMCastPkts Counter32, + monStaTxMCastBytes Counter32, + monStaDataPkts Counter32, + monStaCtrlPkts Counter32, + monStaNumAssocRequests Counter32, + monStaNumAuthRequests Counter32, + monStaTxDeauthentications Counter32, + monStaRxDeauthentications Counter32, + monStaFrameRetryRate Integer32, + monStaFrameLowSpeedRate Integer32, + monStaFrameNonUnicastRate Integer32, + monStaFrameFragmentationRate Integer32, + monStaFrameBandwidthRate Integer32, + monStaFrameRetryErrorRate Integer32, + monStaBSSID MacAddress, + monStaESSID DisplayString, + monStaPhyType ArubaPhyType, + monStaRSSI Integer32, + monStaFrameReceiveErrorRate Integer32 + } + + monitoredStaPhyAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + MAC address of the monitored station + " + ::= { wlsxMonStationStatsEntry 1} + + monStaChannelNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The channel the station is currently using. + " + ::= { wlsxMonStationStatsEntry 2 } + + monStaTxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 3 } + + monStaTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 4 } + + monStaRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets received by this station. + " + ::= { wlsxMonStationStatsEntry 5 } + + monStaRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes received by this station. + " + ::= { wlsxMonStationStatsEntry 6 } + + monStaTxBCastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast packets transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 7 } + + monStaTxBCastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast bytes transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 8 } + + monStaTxMCastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of multicast packets transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 9 } + + monStaTxMCastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of multicast bytes transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 10 } + + monStaDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of Data packets transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 11 } + + monStaCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of Control packets transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 12 } + + monStaNumAssocRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Association requests transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 13 } + + monStaNumAuthRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Authentication requests transmitted by this station + " + ::= { wlsxMonStationStatsEntry 14 } + + monStaTxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Deauthentication frames transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 15 } + + monStaRxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Deauthentication frames received by this station. + " + ::= { wlsxMonStationStatsEntry 16 } + + monStaFrameRetryRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of retry + packets as a percentage of the total packets + transmitted and received by this station. + " + ::= { wlsxMonStationStatsEntry 17 } + + monStaFrameLowSpeedRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps + for B band) packets as a percentage of the total packets + transmitted and received by this station. + " + ::= { wlsxMonStationStatsEntry 18 } + + monStaFrameNonUnicastRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast and multicast + packets as a percentage of the total packets + transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 19 } + + monStaFrameFragmentationRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of fragments + as a percentage of the total packets + transmitted by this station. + " + ::= { wlsxMonStationStatsEntry 20 } + + monStaFrameBandwidthRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The bandwidth of this station in Kbps. + " + ::= { wlsxMonStationStatsEntry 21 } + + monStaFrameRetryErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received by this station. + " + ::= { wlsxMonStationStatsEntry 22 } + + monStaBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + BSSID of the station being monitored. + " + ::= { wlsxMonStationStatsEntry 23 } + + monStaESSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID of the station being monitored. + " + ::= { wlsxMonStationStatsEntry 24 } + + monStaPhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + PHY type of the station being monitored. + " + ::= { wlsxMonStationStatsEntry 25 } + + monStaRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + SNR of the station being monitored. + " + ::= { wlsxMonStationStatsEntry 26 } + + monStaFrameReceiveErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received by this station. + " + ::= { wlsxMonStationStatsEntry 27 } + +-- This table breaks down the Station statistics into different +-- rate categories. + + wlsxMonStaRateStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonStaRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for a monitored station + represented in terms of rate categories. + " + ::= { wlsxMonStationStatsGroup 2} + + wlsxMonStaRateStatsEntry OBJECT-TYPE + SYNTAX WlsxMonStaRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Data rate based packet and byte count entry for a monitored station" + INDEX {monPhyAddress, monRadioNumber, monitoredStaPhyAddress} + ::= { wlsxMonStaRateStatsTable 1 } + + WlsxMonStaRateStatsEntry ::= + SEQUENCE { + monStaTxPktsAt1Mbps Counter32, + monStaTxBytesAt1Mbps Counter32, + monStaTxPktsAt2Mbps Counter32, + monStaTxBytesAt2Mbps Counter32, + monStaTxPktsAt5Mbps Counter32, + monStaTxBytesAt5Mbps Counter32, + monStaTxPktsAt11Mbps Counter32, + monStaTxBytesAt11Mbps Counter32, + monStaTxPktsAt6Mbps Counter32, + monStaTxBytesAt6Mbps Counter32, + monStaTxPktsAt12Mbps Counter32, + monStaTxBytesAt12Mbps Counter32, + monStaTxPktsAt18Mbps Counter32, + monStaTxBytesAt18Mbps Counter32, + monStaTxPktsAt24Mbps Counter32, + monStaTxBytesAt24Mbps Counter32, + monStaTxPktsAt36Mbps Counter32, + monStaTxBytesAt36Mbps Counter32, + monStaTxPktsAt48Mbps Counter32, + monStaTxBytesAt48Mbps Counter32, + monStaTxPktsAt54Mbps Counter32, + monStaTxBytesAt54Mbps Counter32, + monStaRxPktsAt1Mbps Counter32, + monStaRxBytesAt1Mbps Counter32, + monStaRxPktsAt2Mbps Counter32, + monStaRxBytesAt2Mbps Counter32, + monStaRxPktsAt5Mbps Counter32, + monStaRxBytesAt5Mbps Counter32, + monStaRxPktsAt11Mbps Counter32, + monStaRxBytesAt11Mbps Counter32, + monStaRxPktsAt6Mbps Counter32, + monStaRxBytesAt6Mbps Counter32, + monStaRxPktsAt12Mbps Counter32, + monStaRxBytesAt12Mbps Counter32, + monStaRxPktsAt18Mbps Counter32, + monStaRxBytesAt18Mbps Counter32, + monStaRxPktsAt24Mbps Counter32, + monStaRxBytesAt24Mbps Counter32, + monStaRxPktsAt36Mbps Counter32, + monStaRxBytesAt36Mbps Counter32, + monStaRxPktsAt48Mbps Counter32, + monStaRxBytesAt48Mbps Counter32, + monStaRxPktsAt54Mbps Counter32, + monStaRxBytesAt54Mbps Counter32, + monStaTxPktsAt9Mbps Counter32, + monStaTxBytesAt9Mbps Counter32, + monStaRxPktsAt9Mbps Counter32, + monStaRxBytesAt9Mbps Counter32 + } + + monStaTxPktsAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 1Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 1 } + + monStaTxBytesAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 1Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 2 } + + monStaTxPktsAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 2Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 3 } + + monStaTxBytesAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 2Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 4 } + + monStaTxPktsAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 5Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 5 } + + monStaTxBytesAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 5Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 6 } + + monStaTxPktsAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 11Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 7 } + + monStaTxBytesAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 11Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 8 } + + monStaTxPktsAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 6Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 9 } + + monStaTxBytesAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 6Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 10 } + + monStaTxPktsAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 12Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 11 } + + monStaTxBytesAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 12Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 12 } + + monStaTxPktsAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 18Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 13 } + + monStaTxBytesAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 18Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 14 } + + monStaTxPktsAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 24Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 15 } + + monStaTxBytesAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 24Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 16 } + + monStaTxPktsAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 36Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 17 } + + monStaTxBytesAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 36Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 18 } + + monStaTxPktsAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 48Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 19 } + + monStaTxBytesAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 48Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 20 } + + monStaTxPktsAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets transmitted by the + station at 54Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 21 } + + monStaTxBytesAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets transmitted by the + station at 54Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 22 } + + monStaRxPktsAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 1Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 23 } + + monStaRxBytesAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 1Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 24 } + + monStaRxPktsAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 2Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 25 } + + monStaRxBytesAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 2Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 26 } + + monStaRxPktsAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 5Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 27 } + + monStaRxBytesAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 5Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 28 } + + monStaRxPktsAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 11Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 29 } + + monStaRxBytesAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 11Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 30 } + + monStaRxPktsAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 6Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 31 } + + monStaRxBytesAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 6Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 32 } + + monStaRxPktsAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 12Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 33 } + + monStaRxBytesAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 12Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 34 } + + monStaRxPktsAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 18Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 35 } + + monStaRxBytesAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 18Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 36 } + + monStaRxPktsAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 24Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 37 } + + monStaRxBytesAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 24Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 38 } + + monStaRxPktsAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 36Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 39 } + + monStaRxBytesAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 36Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 40 } + + monStaRxPktsAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 48Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 41 } + + monStaRxBytesAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 48Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 42 } + + monStaRxPktsAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 54Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 43 } + + monStaRxBytesAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 54Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 44 } + + + monStaTxPktsAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 9Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 45 } + + monStaTxBytesAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 9Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 46 } + + + monStaRxPktsAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 9Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 47 } + + monStaRxBytesAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 9Mbps rate. + " + ::= { wlsxMonStaRateStatsEntry 48 } + + +-- This table breaks down the Station statistics based on the +-- Destination Address Types. + + wlsxMonStaDATypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonStaDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for a monitored station but + but broken down in terms of Destination Address Type. + " + ::= { wlsxMonStationStatsGroup 3} + + wlsxMonStaDATypeStatsEntry OBJECT-TYPE + SYNTAX WlsxMonStaDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Data rate based packet and byte count entry for a monitored station" + INDEX {monPhyAddress, monRadioNumber, monitoredStaPhyAddress} + ::= { wlsxMonStaDATypeStatsTable 1 } + + WlsxMonStaDATypeStatsEntry ::= + SEQUENCE { + monStaTxDABroadcastPkts Counter32 , + monStaTxDABroadcastBytes Counter32 , + monStaTxDAMulticastPkts Counter32 , + monStaTxDAMulticastBytes Counter32 , + monStaTxDAUnicastPkts Counter32 , + monStaTxDAUnicastBytes Counter32 + + } + + monStaTxDABroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Broadcast packets + transmitted by this Station. + " + ::= { wlsxMonStaDATypeStatsEntry 1 } + + monStaTxDABroadcastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Broadcast Bytes + transmitted by this Station. + " + ::= { wlsxMonStaDATypeStatsEntry 2 } + + monStaTxDAMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Multicast packets + transmitted by this station. + " + ::= { wlsxMonStaDATypeStatsEntry 3 } + + monStaTxDAMulticastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Multicast Bytes + transmitted by this station. + " + ::= { wlsxMonStaDATypeStatsEntry 4 } + + monStaTxDAUnicastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total of Unicast packets + transmitted by this station. + " + ::= { wlsxMonStaDATypeStatsEntry 5 } + + monStaTxDAUnicastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total of Unicast Bytes + transmitted by this station. + " + ::= { wlsxMonStaDATypeStatsEntry 6 } + +-- This table breaks down the Station statistics based on the +-- the Type of the Packet. + + wlsxMonStaFrameTypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonStaFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for monitored + stations but broken down into different Frame Types. + " + ::= { wlsxMonStationStatsGroup 4} + + wlsxMonStaFrameTypeStatsEntry OBJECT-TYPE + SYNTAX WlsxMonStaFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Frame Type based packet and byte count entry for a monitored station" + INDEX {monPhyAddress, monRadioNumber, monitoredStaPhyAddress} + ::= { wlsxMonStaFrameTypeStatsTable 1 } + + WlsxMonStaFrameTypeStatsEntry ::= + SEQUENCE { + monStaTxMgmtPkts Counter32 , + monStaTxMgmtBytes Counter32 , + monStaTxCtrlPkts Counter32 , + monStaTxCtrlBytes Counter32 , + monStaTxDataPkts Counter32 , + monStaTxDataBytes Counter32 , + monStaRxMgmtPkts Counter32 , + monStaRxMgmtBytes Counter32 , + monStaRxCtrlPkts Counter32 , + monStaRxCtrlBytes Counter32 , + monStaRxDataPkts Counter32 , + monStaRxDataBytes Counter32 + + } + + monStaTxMgmtPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the transmitted Management packets + from a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 1 } + + monStaTxMgmtBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the transmitted Management Bytes + from a station + " + ::= { wlsxMonStaFrameTypeStatsEntry 2 } + + monStaTxCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the transmitted Control packets + from a station + " + ::= { wlsxMonStaFrameTypeStatsEntry 3 } + + monStaTxCtrlBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the transmitted Control Bytes + from a station + " + ::= { wlsxMonStaFrameTypeStatsEntry 4 } + + monStaTxDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the transmitted Data packets + from a station + " + ::= { wlsxMonStaFrameTypeStatsEntry 5 } + + monStaTxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the transmitted Data Bytes + observed from this station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 6 } + + monStaRxMgmtPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Management packets + at a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 7 } + + monStaRxMgmtBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Management Bytes + at a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 8 } + + monStaRxCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Control packets + at a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 9 } + + monStaRxCtrlBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Control Bytes + at a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 10 } + + monStaRxDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Data packets + at a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 11 } + + monStaRxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Data Bytes + at a station. + " + ::= { wlsxMonStaFrameTypeStatsEntry 12 } + + +-- This table breaks down the Station statistics received or transmitted by a +-- station into packet size buckets. + + wlsxMonStaPktSizeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonStaPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for monitored + stations but broken down into different Packet Sizes. + " + ::= { wlsxMonStationStatsGroup 5} + + wlsxMonStaPktSizeStatsEntry OBJECT-TYPE + SYNTAX WlsxMonStaPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet Size based packet count entry for a monitored station" + INDEX {monPhyAddress, monRadioNumber, monitoredStaPhyAddress} + ::= { wlsxMonStaPktSizeStatsTable 1 } + + WlsxMonStaPktSizeStatsEntry ::= + SEQUENCE { + monStaTxPkts63Bytes Counter32 , + monStaTxPkts64To127 Counter32 , + monStaTxPkts128To255 Counter32 , + monStaTxPkts256To511 Counter32 , + monStaTxPkts512To1023 Counter32 , + monStaTxPkts1024To1518 Counter32 , + monStaRxPkts63Bytes Counter32 , + monStaRxPkts64To127 Counter32 , + monStaRxPkts128To255 Counter32 , + monStaRxPkts256To511 Counter32 , + monStaRxPkts512To1023 Counter32 , + monStaRxPkts1024To1518 Counter32 + + } + + monStaTxPkts63Bytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were less than 64 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 1 } + + monStaTxPkts64To127 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 64 and 127 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 2 } + + monStaTxPkts128To255 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 128 and 255 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 3 } + + monStaTxPkts256To511 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 256 and 511 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 4 } + + monStaTxPkts512To1023 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 512 and 1023 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 5 } + + monStaTxPkts1024To1518 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 1024 and 1518 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 6 } + + monStaRxPkts63Bytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were less than 64 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 7 } + + monStaRxPkts64To127 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 64 and 127 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 8 } + + monStaRxPkts128To255 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 128 and 255 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 9 } + + monStaRxPkts256To511 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 256 and 511 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 10 } + + monStaRxPkts512To1023 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 512 and 1023 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 11 } + + monStaRxPkts1024To1518 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 1024 and 1518 bytes long. + " + ::= { wlsxMonStaPktSizeStatsEntry 12 } + + +-- Info group contains tables for monitored APs and stations + + wlsxMonAccessPointInfoGroup OBJECT IDENTIFIER ::= { wlsxMonInfoGroup 1 } + wlsxMonStationInfoGroup OBJECT IDENTIFIER ::= { wlsxMonInfoGroup 2 } + + wlsxMonAPInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonAPInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This lists all of the Access Points being monitored by + the controller. + " + ::= { wlsxMonAccessPointInfoGroup 1 } + + wlsxMonAPInfoEntry OBJECT-TYPE + SYNTAX WlsxMonAPInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point Info entry" + INDEX {monPhyAddress, monRadioNumber, monitoredApBSSID} + ::= { wlsxMonAPInfoTable 1 } + + WlsxMonAPInfoEntry ::= + SEQUENCE { + monAPInfoPhyType ArubaPhyType, + monAPInfoCurrentChannel Unsigned32, + monAPInfoClassification ArubaRogueApType, + monAPInfoESSID DisplayString, + monAPInfoRSSI Integer32, + monAPInfoMonitorTime TimeTicks, + monAPInfoInactivityTime TimeTicks, + monAPInfoSnrSignalPkts Integer32, + monAPInfoSnrSampleTime Integer32, + monAPInfoStatus INTEGER, + monAPInfoConfidence Integer32, + monAPInfoMatchType ArubaAPMatchType, + monAPInfoMatchMethod ArubaAPMatchMethod, + monAPInfoHTMode ArubaHTMode, + monAPInfoEncryptionType ArubaMonEncryptionType, + monAPInfoWPAUnicastCipher ArubaMonEncryptionCipher, + monAPInfoWPAAuthAlgorithm ArubaMonAuthAlgorithm, + monAPInfoIBSS TruthValue + } + + monAPInfoPhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + PHY type of the access point being monitored. + " + ::= { wlsxMonAPInfoEntry 1 } + + + monAPInfoCurrentChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Channel the monitored AP is using. + " + ::= { wlsxMonAPInfoEntry 2 } + + monAPInfoClassification OBJECT-TYPE + SYNTAX ArubaRogueApType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the type of the AP. + " + ::= { wlsxMonAPInfoEntry 3 } + + monAPInfoESSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID of the access point being monitored. + " + ::= { wlsxMonAPInfoEntry 4 } + + monAPInfoRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + SNR of the access point being monitored. + " + ::= { wlsxMonAPInfoEntry 5 } + + monAPInfoMonitorTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates how long the access point has been + monitored. + " + ::= { wlsxMonAPInfoEntry 6 } + + monAPInfoInactivityTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates how long the access point has been + inactive. + " + ::= { wlsxMonAPInfoEntry 7 } + + monAPInfoSnrSignalPkts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Number of Signal Packets observed by the Monitoring AP + during this sample time. + " + ::= { wlsxMonAPInfoEntry 8 } + + monAPInfoSnrSampleTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Sample Time in which SNR data was collected. + " + ::= { wlsxMonAPInfoEntry 9 } + + monAPInfoStatus OBJECT-TYPE + SYNTAX INTEGER { up(1), down(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether this AP is considered to be up or down. + " + ::= { wlsxMonAPInfoEntry 10 } + + monAPInfoConfidence OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the confidence that a suspected rogue AP is in fact a + rogue in terms of percentage. + " + ::= { wlsxMonAPInfoEntry 11 } + + monAPInfoMatchType OBJECT-TYPE + SYNTAX ArubaAPMatchType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The method used to classify the AP as a rogue or suspected rogue AP. + " + ::= { wlsxMonAPInfoEntry 12 } + + monAPInfoMatchMethod OBJECT-TYPE + SYNTAX ArubaAPMatchMethod + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates how the match occurred for rogue or suspect-rogue + classification: an exact or +1 or -1 MAC match. + " + ::= { wlsxMonAPInfoEntry 13 } + + monAPInfoHTMode OBJECT-TYPE + SYNTAX ArubaHTMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the HT mode of the monitored AP, if any. + " + ::= { wlsxMonAPInfoEntry 14 } + + monAPInfoEncryptionType OBJECT-TYPE + SYNTAX ArubaMonEncryptionType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the Encryption type of the monitored AP. + " + ::= { wlsxMonAPInfoEntry 15 } + + monAPInfoWPAUnicastCipher OBJECT-TYPE + SYNTAX ArubaMonEncryptionCipher + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the WPA/WPA2 unicast cipher supported by the monitored AP. + If multiple ciphers are supported, the weakest will be indicated. + " + ::= { wlsxMonAPInfoEntry 16 } + + monAPInfoWPAAuthAlgorithm OBJECT-TYPE + SYNTAX ArubaMonAuthAlgorithm + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the WPA/WPA2 authentication algorithm supported by the monitored AP. + If multiple authentication algorithms are supported, the weakest will be indicated. + " + ::= { wlsxMonAPInfoEntry 17 } + + monAPInfoIBSS OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates if the monitored AP is part of an adhoc network. + " + ::= { wlsxMonAPInfoEntry 18 } + + wlsxMonStationInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonStationInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists statistics of all the wireless stations + being monitored. + " + ::= { wlsxMonStationInfoGroup 1} + + wlsxMonStationInfoEntry OBJECT-TYPE + SYNTAX MonStationInfoEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Station Info Entry" + INDEX {monPhyAddress, monRadioNumber, monitoredStaPhyAddress} + ::= { wlsxMonStationInfoTable 1 } + + MonStationInfoEntry ::= + SEQUENCE { + monStaInfoChannelNum Unsigned32, + monStaInfoBSSID MacAddress, + monStaInfoESSID DisplayString, + monStaInfoPhyType ArubaPhyType, + monStaInfoRSSI Integer32, + monStaInfoClassification ArubaStationType, + monStaInfoMonitorTime TimeTicks, + monStaInfoInactivityTime TimeTicks, + monStaInfoSnrSignalPkts Integer32, + monStaInfoSnrSampleTime Integer32, + monStaInfoStatus INTEGER, + monStaInfoHTMode ArubaHTMode + } + + monStaInfoChannelNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The channel the station is currently using. + " + ::= { wlsxMonStationInfoEntry 1 } + + monStaInfoBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + BSSID of the station being monitored. + " + ::= { wlsxMonStationInfoEntry 2 } + + monStaInfoESSID OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID of the station being monitored. + " + ::= { wlsxMonStationInfoEntry 3 } + + monStaInfoPhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + PHY type the station being monitored. + " + ::= { wlsxMonStationInfoEntry 4 } + + monStaInfoRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + SNR of the station being monitored. + " + ::= { wlsxMonStationInfoEntry 5 } + + monStaInfoClassification OBJECT-TYPE + SYNTAX ArubaStationType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + " + ::= { wlsxMonStationInfoEntry 6 } + + monStaInfoMonitorTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates how long the station has been + monitored. + " + ::= { wlsxMonStationInfoEntry 7 } + + monStaInfoInactivityTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates how long the station has been + inactive. + " + ::= { wlsxMonStationInfoEntry 8 } + + monStaInfoSnrSignalPkts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Number of Signal Packets observed by the Monitoring station + during this sample time. + " + ::= { wlsxMonStationInfoEntry 9 } + + monStaInfoSnrSampleTime OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Sample Time in which SNR data was collected. + " + ::= { wlsxMonStationInfoEntry 10 } + + monStaInfoStatus OBJECT-TYPE + SYNTAX INTEGER { up(1), down(2) } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether this station is considered up or down. + " + ::= { wlsxMonStationInfoEntry 11 } + + monStaInfoHTMode OBJECT-TYPE + SYNTAX ArubaHTMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the HT mode of the station, if any. + " + ::= { wlsxMonStationInfoEntry 12 } + +-- Event table contains the event ID and the number of events of that type +-- raised so far + + wlsxMonEventCountTable OBJECT-TYPE + SYNTAX SEQUENCE OF MonEventCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists counts of Events generated by the APs. + " + ::= { wlsxMonStationStatsGroup 6} + + wlsxMonEventCountEntry OBJECT-TYPE + SYNTAX MonEventCountEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Event Count Entry" + INDEX {monEventID} + ::= { wlsxMonEventCountTable 1 } + + MonEventCountEntry ::= + SEQUENCE { + monEventID Unsigned32, + monEventCount Unsigned32 + } + + monEventID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Event ID + " + ::= { wlsxMonEventCountEntry 1 } + + monEventCount OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Event Count + " + ::= { wlsxMonEventCountEntry 2 } + +-- This table breaks down the station statistics observed into different +-- HT rate categories. + + wlsxMonStationHTRateStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxMonStationHTRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the monitored AP Packet and Byte Counts + but represented in terms of HT rate categories. + " + + ::= { wlsxMonStationStatsGroup 7 } + + wlsxMonStationHTRateStatsEntry OBJECT-TYPE + SYNTAX WlsxMonStationHTRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "HT Data rate based packet and byte count entry for a monitored station" + INDEX { monPhyAddress, monRadioNumber, monitoredStaPhyAddress, monHTRate } + ::= { wlsxMonStationHTRateStatsTable 1 } + + WlsxMonStationHTRateStatsEntry ::= + SEQUENCE { + monStaTxHTPkts Counter32, + monStaTxHTBytes Counter32, + monStaRxHTPkts Counter32, + monStaRxHTBytes Counter32 + } + + monStaTxHTPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of packets transmitted at the indicated rate + " + ::= { wlsxMonStationHTRateStatsEntry 1 } + + monStaTxHTBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of bytes transmitted at the indicated rate + " + ::= { wlsxMonStationHTRateStatsEntry 2 } + + monStaRxHTPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of packets received at the indicated rate + " + ::= { wlsxMonStationHTRateStatsEntry 3 } + + monStaRxHTBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of bytes received at the indicated rate + " + ::= { wlsxMonStationHTRateStatsEntry 4 } + +END diff --git a/pandora_console/attachment/mibs/WLSX-SYSTEMEXT-MIB b/pandora_console/attachment/mibs/WLSX-SYSTEMEXT-MIB new file mode 100644 index 0000000000..0ad720ec3a --- /dev/null +++ b/pandora_console/attachment/mibs/WLSX-SYSTEMEXT-MIB @@ -0,0 +1,1132 @@ +--- ArubaOS 6.5.2.0_59123 +-- vim:set ts=4 sw=4: +WLSX-SYSTEMEXT-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TEXTUAL-CONVENTION FROM SNMPv2-TC + + MODULE-IDENTITY, + OBJECT-TYPE, + snmpModules, + Integer32, + Counter32, + IpAddress, + TimeTicks, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + + TDomain, + DisplayString, + PhysAddress, + TAddress, + TimeInterval, + RowStatus, + StorageType, + TestAndIncr, + MacAddress, + TruthValue + FROM SNMPv2-TC + + ArubaSwitchRole, + ArubaActiveState, + ArubaCardType + FROM ARUBA-TC + + OBJECT-GROUP + FROM SNMPv2-CONF + wlsxEnterpriseMibModules + FROM ARUBA-MIB; + + wlsxSystemExtMIB MODULE-IDENTITY + LAST-UPDATED "0812112108Z" + ORGANIZATION "Aruba Wireless Networks" + CONTACT-INFO + "Postal: 1322 Crossman Avenue + Sunnyvale, CA 94089 + E-mail: dl-support@arubanetworks.com + Phone: +1 408 227 4500" + DESCRIPTION + "This MIB module defines MIB objects which provide + System level information about the Aruba controller." + REVISION "0812112108Z" + DESCRIPTION + "The initial revision." + ::= { wlsxEnterpriseMibModules 2 } + + wlsxSystemExtGroup OBJECT IDENTIFIER ::= { wlsxSystemExtMIB 1 } + wlsxSystemExtTableGenNumberGroup OBJECT IDENTIFIER ::= { wlsxSystemExtMIB 2 } + + -- wlsxSystemExtGroup contains objects to describe a controller. + + wlsxSysExtSwitchIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Controller IP as configured by the user. This IP address uniquely + identifies the controller." + ::= { wlsxSystemExtGroup 1 } + + wlsxSysExtHostname OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Name of the controller." + ::= { wlsxSystemExtGroup 2 } + + wlsxSysExtModelName OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Model Name of the controller." + ::= { wlsxSystemExtGroup 3 } + + wlsxSysExtSwitchRole OBJECT-TYPE + SYNTAX ArubaSwitchRole + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Role of this controller in the Aruba Domain." + ::= { wlsxSystemExtGroup 4 } + + wlsxSysExtSwitchMasterIp OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Switch IP of the master controller. + " + ::= { wlsxSystemExtGroup 5 } + + wlsxSysExtSwitchDate OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + System notion of the local date and time of day. + " + ::= { wlsxSystemExtGroup 6 } + + wlsxSysExtSwitchBaseMacaddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Base MAC address of the controller. + " + ::= { wlsxSystemExtGroup 7 } + + wlsxSysExtFanTrayAssemblyNumber OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Assembly number of the Fan tray. + " + ::= { wlsxSystemExtGroup 8 } + + wlsxSysExtFanTraySerialNumber OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Serial number of the Fan tray + " + ::= { wlsxSystemExtGroup 9 } + + wlsxSysExtInternalTemparature OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Internal temperature in the controller. + " + ::= { wlsxSystemExtGroup 10 } + + wlsxSysExtLicenseSerialNumber OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The license serial number of the controller. + " + ::= { wlsxSystemExtGroup 11 } + + wlsxSysExtSwitchLicenseCount OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of licenses installed on the controller + " + ::= { wlsxSystemExtGroup 12 } + + -- Table lists all the processors and their corresponding Load. + + wlsxSysExtProcessorTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtProcessorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The table of processors contained by the controller. + " + + ::= { wlsxSystemExtGroup 13 } + + wlsxSysExtProcessorEntry OBJECT-TYPE + SYNTAX WlsxSysExtProcessorEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry for one processor contained by the controller. + " + INDEX { sysExtProcessorID} + ::= { wlsxSysExtProcessorTable 1 } + + WlsxSysExtProcessorEntry ::= + SEQUENCE { + sysExtProcessorID Integer32, + sysExtProcessorDescr DisplayString, + sysExtProcessorLoad Integer32 + } + + sysExtProcessorID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Processor Index. + " + ::= { wlsxSysExtProcessorEntry 1 } + + sysExtProcessorDescr OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Description of the processor. + " + ::= { wlsxSysExtProcessorEntry 2 } + + sysExtProcessorLoad OBJECT-TYPE + SYNTAX Integer32 (0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The average, over the last minute, of the percentage of + time that this processor was not idle. + " + ::= { wlsxSysExtProcessorEntry 3 } + + -- Table contains all the storage devices in the controller and their + -- utilization numbers. + + wlsxSysExtStorageTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtStorageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The table of Storage-devices contained by the controller. + " + + ::= { wlsxSystemExtGroup 14 } + + wlsxSysExtStorageEntry OBJECT-TYPE + SYNTAX WlsxSysExtStorageEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry for one long-term storage device contained by the + controller. + " + INDEX { sysExtStorageIndex } + ::= { wlsxSysExtStorageTable 1 } + + WlsxSysExtStorageEntry ::= + SEQUENCE { + sysExtStorageIndex Integer32, + sysExtStorageType INTEGER, + sysExtStorageSize Integer32, + sysExtStorageUsed Integer32, + sysExtStorageName DisplayString + } + + sysExtStorageIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Index into the table. + " + ::= { wlsxSysExtStorageEntry 1 } + + sysExtStorageType OBJECT-TYPE + SYNTAX INTEGER { + ram(1), + flashMemory(2) + } + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Type of the storage. + " + ::= { wlsxSysExtStorageEntry 2 } + + sysExtStorageSize OBJECT-TYPE + SYNTAX Integer32 + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total size of the storage filesystem in MB. + " + ::= { wlsxSysExtStorageEntry 3 } + + sysExtStorageUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Used Storage in MB. + " + ::= { wlsxSysExtStorageEntry 4 } + + sysExtStorageName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Name of the storage filesystem. + " + ::= { wlsxSysExtStorageEntry 5 } + +-- This table describes the memory utilization of the controller + + wlsxSysExtMemoryTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtMemoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The memory status of the controller + " + + ::= { wlsxSystemExtGroup 15 } + + wlsxSysExtMemoryEntry OBJECT-TYPE + SYNTAX WlsxSysExtMemoryEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry for one memory region on the controller. Currently, + only the control processor memory is monitored. + " + INDEX { sysExtMemoryIndex } + ::= { wlsxSysExtMemoryTable 1 } + + WlsxSysExtMemoryEntry ::= + SEQUENCE { + sysExtMemoryIndex Integer32, + sysExtMemorySize Integer32, + sysExtMemoryUsed Integer32, + sysExtMemoryFree Integer32 + } + + sysExtMemoryIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Index into the table. + " + ::= { wlsxSysExtMemoryEntry 1 } + + sysExtMemorySize OBJECT-TYPE + SYNTAX Integer32 + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total memory in KB. + " + ::= { wlsxSysExtMemoryEntry 2 } + + sysExtMemoryUsed OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Used memory in KB. + " + ::= { wlsxSysExtMemoryEntry 3 } + + sysExtMemoryFree OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Free memory in KB. + " + ::= { wlsxSysExtMemoryEntry 4 } + +-- This table lists the different Hardware Modules in the controller. + + wlsxSysExtCardTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The table of Hardware modules in the controller. + " + + ::= { wlsxSystemExtGroup 16 } + + wlsxSysExtCardEntry OBJECT-TYPE + SYNTAX WlsxSysExtCardEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry for one Hardware Module in the controller. + " + INDEX { sysExtCardSlot } + ::= { wlsxSysExtCardTable 1 } + + WlsxSysExtCardEntry ::= + SEQUENCE { + sysExtCardSlot Integer32, + sysExtCardType ArubaCardType, + sysExtCardNumOfPorts Integer32, + sysExtCardNumOfFastethernetPorts Integer32, + sysExtCardNumOfGigPorts Integer32, + sysExtCardSerialNo DisplayString, + sysExtCardAssemblyNo DisplayString, + sysExtCardManufacturingDate DisplayString, + sysExtCardHwRevision DisplayString, + sysExtCardFpgaRevision DisplayString, + sysExtCardSwitchChip DisplayString, + sysExtCardStatus ArubaActiveState, + sysExtCardUserSlot Integer32, + sysExtCardServiceTag DisplayString + } + + sysExtCardSlot OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Slot in which this card is located, offset by one. For the user-visible + slot number see sysExtCardUserSlot + " + ::= { wlsxSysExtCardEntry 1 } + + sysExtCardType OBJECT-TYPE + SYNTAX ArubaCardType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Type of the Card. + " + ::= { wlsxSysExtCardEntry 2 } + + sysExtCardNumOfPorts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of data ports on the card. + " + ::= { wlsxSysExtCardEntry 3 } + + sysExtCardNumOfFastethernetPorts OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of Fastethernet ports on the card. + " + ::= { wlsxSysExtCardEntry 4 } + + sysExtCardNumOfGigPorts OBJECT-TYPE + SYNTAX Integer32 + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of Gigabit ethernet ports on the card. + " + ::= { wlsxSysExtCardEntry 5 } + + sysExtCardSerialNo OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Serial number of the card. + " + ::= { wlsxSysExtCardEntry 6 } + + sysExtCardAssemblyNo OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Assembly Number of the card. + " + ::= { wlsxSysExtCardEntry 7 } + + sysExtCardManufacturingDate OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Card manufacturing date. + " + ::= { wlsxSysExtCardEntry 8 } + + sysExtCardHwRevision OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Hardware revision of the card. + " + ::= { wlsxSysExtCardEntry 9 } + + sysExtCardFpgaRevision OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Fpga revision number. + " + ::= { wlsxSysExtCardEntry 10 } + + sysExtCardSwitchChip OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Switching Chip version. + " + ::= { wlsxSysExtCardEntry 11 } + + sysExtCardStatus OBJECT-TYPE + SYNTAX ArubaActiveState + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Status of the card. + " + ::= { wlsxSysExtCardEntry 12 } + + sysExtCardUserSlot OBJECT-TYPE + SYNTAX Integer32 + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + User-visible (zero-based) slot number. + " + ::= { wlsxSysExtCardEntry 13 } + + sysExtCardServiceTag OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Service Tag of the card. + " + ::= { wlsxSysExtCardEntry 14 } + +-- This table lists the Fans in the controller. + + wlsxSysExtFanTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtFanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The table of all supported fans in the controller. Not supported in Aruba 200/800 and 2400 controllers. + " + + ::= { wlsxSystemExtGroup 17 } + + wlsxSysExtFanEntry OBJECT-TYPE + SYNTAX WlsxSysExtFanEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry for one fan. + " + INDEX { sysExtFanIndex } + ::= { wlsxSysExtFanTable 1 } + + WlsxSysExtFanEntry ::= + SEQUENCE { + sysExtFanIndex Integer32, + sysExtFanStatus ArubaActiveState + } + + sysExtFanIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Index into the table. + " + ::= { wlsxSysExtFanEntry 1 } + + sysExtFanStatus OBJECT-TYPE + SYNTAX ArubaActiveState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Status of the Fan. + " + ::= { wlsxSysExtFanEntry 2 } + +-- This table lists the Power supplies in the controller. + + wlsxSysExtPowerSupplyTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtPowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The table of all supported Power supplies in the controller. Not supported in Aruba 200, 800 and 2400 controllers. + " + + ::= { wlsxSystemExtGroup 18 } + + wlsxSysExtPowerSupplyEntry OBJECT-TYPE + SYNTAX WlsxSysExtPowerSupplyEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + An entry for one power supply. + " + INDEX { sysExtPowerSupplyIndex } + ::= { wlsxSysExtPowerSupplyTable 1 } + + WlsxSysExtPowerSupplyEntry ::= + SEQUENCE { + sysExtPowerSupplyIndex Integer32, + sysExtPowerSupplyStatus ArubaActiveState + } + + sysExtPowerSupplyIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Index into the table. + " + ::= { wlsxSysExtPowerSupplyEntry 1 } + + sysExtPowerSupplyStatus OBJECT-TYPE + SYNTAX ArubaActiveState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Status of the power supply. + " + ::= { wlsxSysExtPowerSupplyEntry 2 } + +-- Switch List Table contains all the controllers in the domain. This table is +-- valid only, when queried from the master controller. + + wlsxSysExtSwitchListTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtSwitchListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This Table will list all the controllers in the Aruba Domain. + It will be populated only on the master controller. Local controllers + return empty table. + " + + ::= { wlsxSystemExtGroup 19 } + + wlsxSysExtSwitchListEntry OBJECT-TYPE + SYNTAX WlsxSysExtSwitchListEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Switch List Entry" + INDEX { sysExtSwitchIPAddress} + ::= { wlsxSysExtSwitchListTable 1 } + + WlsxSysExtSwitchListEntry ::= + SEQUENCE { + sysExtSwitchIPAddress IpAddress, + sysExtSwitchRole ArubaSwitchRole, + sysExtSwitchLocation DisplayString, + sysExtSwitchSWVersion DisplayString, + sysExtSwitchStatus ArubaActiveState, + sysExtSwitchName DisplayString, + sysExtSwitchSerNo DisplayString + } + + sysExtSwitchIPAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + IP Address of the controller. + " + ::= { wlsxSysExtSwitchListEntry 1 } + + sysExtSwitchRole OBJECT-TYPE + SYNTAX ArubaSwitchRole + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Role of the controller. + " + ::= { wlsxSysExtSwitchListEntry 2 } + + sysExtSwitchLocation OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Location of the controller + " + ::= { wlsxSysExtSwitchListEntry 3 } + + sysExtSwitchSWVersion OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Software version the controller is running. + " + ::= { wlsxSysExtSwitchListEntry 4 } + + sysExtSwitchStatus OBJECT-TYPE + SYNTAX ArubaActiveState + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Status of the controller. + " + ::= { wlsxSysExtSwitchListEntry 5 } + + sysExtSwitchName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Host name of the controller. + " + ::= { wlsxSysExtSwitchListEntry 6 } + + sysExtSwitchSerNo OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Serial number of the controller. + " + ::= { wlsxSysExtSwitchListEntry 7 } + +-- The license table lists all valid licenses installed on the controller + + wlsxSysExtSwitchLicenseTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxSysExtLicenseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "This table lists all licenses installed on the controller. + " + + ::= { wlsxSystemExtGroup 20 } + + wlsxSysExtLicenseEntry OBJECT-TYPE + SYNTAX WlsxSysExtLicenseEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "License Entry" + INDEX { sysExtLicenseIndex } + ::= { wlsxSysExtSwitchLicenseTable 1 } + + WlsxSysExtLicenseEntry ::= + SEQUENCE { + sysExtLicenseIndex Integer32, + sysExtLicenseKey DisplayString, + sysExtLicenseInstalled DisplayString, + sysExtLicenseExpires DisplayString, + sysExtLicenseFlags DisplayString, + sysExtLicenseService DisplayString + } + + sysExtLicenseIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + License ID number + " + ::= { wlsxSysExtLicenseEntry 1 } + + sysExtLicenseKey OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + License Key + " + ::= { wlsxSysExtLicenseEntry 2 } + + sysExtLicenseInstalled OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + License installation time + " + ::= { wlsxSysExtLicenseEntry 3 } + + sysExtLicenseExpires OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + License expiry time + " + ::= { wlsxSysExtLicenseEntry 4 } + + sysExtLicenseFlags OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + License flags; E - enabled; A - auto-generated; + R - reboot required to activate + " + ::= { wlsxSysExtLicenseEntry 5 } + + sysExtLicenseService OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The service enabled by this license. + " + ::= { wlsxSysExtLicenseEntry 6 } + + wlsxSysExtMMSCompatLevel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Lists the compatibility level of this controller with the MMS + " + ::= { wlsxSystemExtGroup 21 } + + wlsxSysExtMMSConfigID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This Object represents the value of the MMS Configuration ID in the controller. + " + ::= { wlsxSystemExtGroup 22 } + + wlsxSysExtControllerConfigID OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This Object represents the value of the Controller's Configuration ID. + " + ::= { wlsxSystemExtGroup 23 } + + wlsxSysExtIsMMSConfigUpdateEnabled OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + This objects indicates whether the controller is configured to accept configuration snapshots from MMS. + " + ::= { wlsxSystemExtGroup 24 } + + wlsxSysExtSwitchLastReload OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..128)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The reason for the last controller reload + " + ::= { wlsxSystemExtGroup 25 } + + wlsxSysExtLastStatsReset OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Last time switch stats was reset + " + ::= { wlsxSystemExtGroup 26 } + + wlsxSysExtHwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Hardware version of the switch." + ::= { wlsxSystemExtGroup 27 } + + wlsxSysExtSwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Software version of the switch." + ::= { wlsxSystemExtGroup 28 } + + wlsxSysExtSerialNumber OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The serial number of the switch." + ::= { wlsxSystemExtGroup 29 } + + wlsxSysExtCpuUsedPercent OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The CPU used percent of the switch" + ::= { wlsxSystemExtGroup 30 } + + wlsxSysExtMemoryUsedPercent OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The memory used percent of the switch" + ::= { wlsxSystemExtGroup 31 } + + wlsxSysExtPacketLossPercent OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "The packet loss count of the switch" + ::= { wlsxSystemExtGroup 32 } + + + wlsxSysExtUserTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the user table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 1 } + + wlsxSysExtAPBssidTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the AP BSSID table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 2 } + + + wlsxSysExtAPRadioTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the Radio table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 3 } + + + wlsxSysExtAPTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the AP table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 4 } + + + wlsxSysExtSwitchListTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the Switch list table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 5 } + + + wlsxSysExtPortTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the port table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 6 } + + + wlsxSysExtVlanTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the Vlan table was + modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 7 } + + + wlsxSysExtVlanInterfaceTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the Vlan Interface table + was modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 8 } + + wlsxSysExtLicenseTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the license table + was modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 9 } + + wlsxSysExtMonAPTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the monitored AP table + was modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 10 } + + wlsxSysExtMonStationTableGenNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + This objects denotes the number of times the monitored station table + was modified since reboot. + " + ::= { wlsxSystemExtTableGenNumberGroup 11 } + + + wlsxSysExtPoweredViaPoe OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "Switch is powered using POE power." + ::= { wlsxSystemExtGroup 33 } + +END + diff --git a/pandora_console/attachment/mibs/WLSX-WLAN-MIB b/pandora_console/attachment/mibs/WLSX-WLAN-MIB new file mode 100644 index 0000000000..9b088238a2 --- /dev/null +++ b/pandora_console/attachment/mibs/WLSX-WLAN-MIB @@ -0,0 +1,5938 @@ +-- ArubaOS 6.4.2.3-4.1.1.2_48114 +-- vim:set ts=4 sw=4: +WLSX-WLAN-MIB DEFINITIONS ::= BEGIN + + IMPORTS + TEXTUAL-CONVENTION FROM SNMPv2-TC + + Gauge32, Counter64, TimeTicks, MODULE-IDENTITY, + OBJECT-TYPE, + snmpModules, + Integer32, + Unsigned32, + Counter32, + IpAddress, + NOTIFICATION-TYPE + FROM SNMPv2-SMI + + TDomain, + DisplayString, + PhysAddress, + TAddress, + TimeInterval, + RowStatus, + StorageType, + TestAndIncr, + MacAddress, + TruthValue + FROM SNMPv2-TC + + ifIndex + FROM RFC1213-MIB + + ArubaEnableValue, + ArubaFrameType, + ArubaActiveState, + ArubaRogueApType, + ArubaAuthenticationMethods, + ArubaEncryptionMethods, + ArubaPhyType, + ArubaVoipProtocolType, + ArubaVlanValidRange, + ArubaAccessPointMode, + ArubaAPStatus, + ArubaEnet1Mode, + ArubaUnprovisionedStatus, + ArubaMonitorMode, + ArubaAntennaSetting, + ArubaMeshRole, + ArubaHTMode, + ArubaHTExtChannel + FROM ARUBA-TC + + OBJECT-GROUP + FROM SNMPv2-CONF + wlsxEnterpriseMibModules + FROM ARUBA-MIB; + + wlsxWlanMIB MODULE-IDENTITY + LAST-UPDATED "1001261806Z" + ORGANIZATION "Aruba Wireless Networks" + CONTACT-INFO + "Postal: 1322 Crossman Avenue + Sunnyvale, CA 94089 + E-mail: dl-support@arubanetworks.com + Phone: +1 408 227 4500" + DESCRIPTION + "This MIB module defines MIB objects which provide + information about the Wireless Management System (WMS) in the + Aruba Controller." + REVISION "1001261806Z" + DESCRIPTION + "The initial revision." + ::= { wlsxEnterpriseMibModules 5 } + + wlsxWlanConfigGroup OBJECT IDENTIFIER ::= { wlsxWlanMIB 1 } + wlsxWlanStateGroup OBJECT IDENTIFIER ::= { wlsxWlanMIB 2 } + wlsxWlanStatsGroup OBJECT IDENTIFIER ::= { wlsxWlanMIB 3 } + wlsxRAPTraps OBJECT IDENTIFIER ::= { wlsxWlanMIB 100 } + +-- wlsxWlanAccessPointInfoGroup contains a Local Access Point Information Table. +-- which lists all the APs connected to the controller, a Global AP Info Table +-- which lists all the APs in the Aruba Domain. The Global table is valid only +-- on the Master controller. The Group also contains two scalar objects which +-- indicate the total number of APs and the total number of Clients connected. + + wlsxWlanAccessPointInfoGroup OBJECT IDENTIFIER ::= { wlsxWlanStateGroup 1 } + wlsxWlanStationInfoGroup OBJECT IDENTIFIER ::= { wlsxWlanStateGroup 2 } + wlsxWlanAssociationInfoGroup OBJECT IDENTIFIER ::= { wlsxWlanStateGroup 3 } + wlsxWlanAccessPointStatsGroup OBJECT IDENTIFIER ::= { wlsxWlanStatsGroup 1 } + wlsxWlanStationStatsGroup OBJECT IDENTIFIER ::= { wlsxWlanStatsGroup 2 } + wlsxWlanSwitchStatsGroup OBJECT IDENTIFIER ::= { wlsxWlanStatsGroup 3 } + wlsxSSIDConfigGroup OBJECT IDENTIFIER ::= { wlsxWlanConfigGroup 1 } + wlsxAPConfigGroup OBJECT IDENTIFIER ::= { wlsxWlanConfigGroup 2 } + + wlsxWlanTotalNumAccessPoints OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total Number of Access Points connected to the controller. + " + ::= { wlsxWlanAccessPointInfoGroup 1 } + + wlsxWlanTotalNumStationsAssociated OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Total Number of Stations Associated to the controller. + " + ::= { wlsxWlanAccessPointInfoGroup 2 } + +-- AP Group Table + wlsxWlanAPGroupTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists all the Access Points Groups configured in the + Aruba controller. + " + ::= { wlsxWlanAccessPointInfoGroup 3 } + + wlsxWlanAPGroupEntry OBJECT-TYPE + SYNTAX WlanAPGroupEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "AP Group Entry" + INDEX {wlanAPGroup} + ::= { wlsxWlanAPGroupTable 1 } + + WlanAPGroupEntry ::= + SEQUENCE { + wlanAPGroup DisplayString, + wlanAPNumAps Integer32 + } + + wlanAPGroup OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The name of an AP group + " + ::= { wlsxWlanAPGroupEntry 1 } + + wlanAPNumAps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of APs in the AP Group + " + ::= { wlsxWlanAPGroupEntry 2 } + + + -- AP Table + + wlsxWlanAPTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table lists all the Access Points connected to the + controller. + " + ::= { wlsxWlanAccessPointInfoGroup 4 } + + wlsxWlanAPEntry OBJECT-TYPE + SYNTAX WlanAPEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point Entry" + INDEX {wlanAPMacAddress} + ::= { wlsxWlanAPTable 1 } + + WlanAPEntry ::= + SEQUENCE { + wlanAPMacAddress MacAddress, + wlanAPIpAddress IpAddress, + wlanAPName DisplayString, + wlanAPGroupName DisplayString, + wlanAPModel OBJECT IDENTIFIER, + wlanAPSerialNumber DisplayString, + wlanAPdot11aAntennaGain Integer32, + wlanAPdot11gAntennaGain Integer32, + wlanAPNumRadios Integer32, + wlanAPEnet1Mode ArubaEnet1Mode, + wlanAPIpsecMode ArubaEnableValue, + wlanAPUpTime TimeTicks, + wlanAPModelName DisplayString, + wlanAPLocation DisplayString, + wlanAPBuilding Integer32, + wlanAPFloor Integer32, + wlanAPLoc Integer32, + wlanAPExternalAntenna ArubaAntennaSetting, + wlanAPStatus ArubaAPStatus, + wlanAPNumBootstraps Integer32, + wlanAPNumReboots Integer32, + wlanAPUnprovisioned ArubaUnprovisionedStatus, + wlanAPMonitorMode ArubaMonitorMode, + wlanAPFQLNBuilding DisplayString, + wlanAPFQLNFloor DisplayString, + wlanAPFQLN DisplayString, + wlanAPFQLNCampus DisplayString, + wlanAPLongitude DisplayString, + wlanAPLatitude DisplayString, + wlanAPAltitude DisplayString, + wlanAPMeshRole ArubaMeshRole, + wlanAPSysLocation DisplayString, + wlanAPHwVersion DisplayString, + wlanAPSwVersion DisplayString, + wlanAPNumWarmReboots Integer32, + wlanAPOuterIpAddress IpAddress, + wlanAPRemoteLanIpAddress IpAddress, + wlanAPActiveUplink INTEGER, + wlanAPSwitchIpAddress IpAddress, + wlanAPStandbyIpAddress IpAddress, + wlanAPConnectedAsStandby INTEGER + } + + wlanAPMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Ethernet MAC Address of the Access Point + " + ::= { wlsxWlanAPEntry 1 } + + wlanAPIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + IP Address of the Access Point + " + ::= { wlsxWlanAPEntry 2 } + + wlanAPName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Host name of the Access Point. + " + ::= { wlsxWlanAPEntry 3 } + + wlanAPGroupName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Group Name of the Access Point. + " + ::= { wlsxWlanAPEntry 4 } + + wlanAPModel OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Sys OID of the Access Point. + " + ::= { wlsxWlanAPEntry 5 } + + wlanAPSerialNumber OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..32)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Serial Number of the Access Point. + " + ::= { wlsxWlanAPEntry 6 } + + wlanAPdot11aAntennaGain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Configured antenna gain for 'A' Radio. + " + ::= { wlsxWlanAPEntry 7 } + + wlanAPdot11gAntennaGain OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Configured antenna gain for 'G' Radio. + " + ::= { wlsxWlanAPEntry 8 } + + wlanAPNumRadios OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of Radios in the Access Point. + " + ::= { wlsxWlanAPEntry 9 } + + wlanAPEnet1Mode OBJECT-TYPE + SYNTAX ArubaEnet1Mode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Enet1 Mode of the Access Point. + " + ::= { wlsxWlanAPEntry 10 } + + wlanAPIpsecMode OBJECT-TYPE + SYNTAX ArubaEnableValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + IPSEC Mode of the Access Point. + " + ::= { wlsxWlanAPEntry 11 } + + wlanAPUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Time (in hundredths of seconds) since the last time the Access + Point bootstrapped with the controller. + " + ::= { wlsxWlanAPEntry 12 } + + wlanAPModelName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Model name of the Access Point. + " + ::= { wlsxWlanAPEntry 13 } + + wlanAPLocation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Location of the Access Point. + " + ::= { wlsxWlanAPEntry 14 } + + wlanAPBuilding OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AP Building Number. + " + ::= { wlsxWlanAPEntry 15 } + + wlanAPFloor OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AP Floor Number. + " + ::= { wlsxWlanAPEntry 16 } + + wlanAPLoc OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AP Location. + " + ::= { wlsxWlanAPEntry 17 } + + wlanAPExternalAntenna OBJECT-TYPE + SYNTAX ArubaAntennaSetting + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AP Antenna Status. + " + ::= { wlsxWlanAPEntry 18 } + + wlanAPStatus OBJECT-TYPE + SYNTAX ArubaAPStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AP Status. + " + ::= { wlsxWlanAPEntry 19 } + + wlanAPNumBootstraps OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of times the AP has bootstrapped with the controller. + " + ::= { wlsxWlanAPEntry 20 } + + wlanAPNumReboots OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of times the AP has rebooted. + " + ::= { wlsxWlanAPEntry 21 } + + wlanAPUnprovisioned OBJECT-TYPE + SYNTAX ArubaUnprovisionedStatus + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether the AP is unprovisioned due to lack of + antenna gain or location code settings. + " + ::= { wlsxWlanAPEntry 22 } + + wlanAPMonitorMode OBJECT-TYPE + SYNTAX ArubaMonitorMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether any radio on this AP is acting as an + air monitor. + " + ::= { wlsxWlanAPEntry 23 } + + wlanAPFQLNBuilding OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The building component of the AP's FQLN. + " + ::= { wlsxWlanAPEntry 24 } + + wlanAPFQLNFloor OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The floor component of the AP's FQLN. + " + ::= { wlsxWlanAPEntry 25 } + + wlanAPFQLN OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + The AP's Fully Qualified Location Name (FQLN). + " + ::= { wlsxWlanAPEntry 26 } + + wlanAPFQLNCampus OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The campus component of the AP's FQLN. + " + ::= { wlsxWlanAPEntry 27 } + + wlanAPLongitude OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Longitude of the AP. Signed floating-point value. + " + ::= { wlsxWlanAPEntry 28 } + + wlanAPLatitude OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Latitude of the AP. Signed floating-point value. + " + ::= { wlsxWlanAPEntry 29 } + + wlanAPAltitude OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Altitude of the AP. Signed floating-point value. + " + ::= { wlsxWlanAPEntry 30 } + + wlanAPMeshRole OBJECT-TYPE + SYNTAX ArubaMeshRole + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + AP Mesh role + " + ::= { wlsxWlanAPEntry 31 } + + wlanAPSysLocation OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AP sysLocation + " + ::= { wlsxWlanAPEntry 32 } + + wlanAPHwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Hardware version of the AP. + " + ::= { wlsxWlanAPEntry 33 } + + wlanAPSwVersion OBJECT-TYPE + SYNTAX DisplayString (SIZE(1..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Software version of the AP. + " + ::= { wlsxWlanAPEntry 34 } + + wlanAPNumWarmReboots OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Number of times the AP has warm-rebooted. + " + ::= { wlsxWlanAPEntry 35 } + + wlanAPOuterIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Outer IP Address of the Access Point. + " + ::= { wlsxWlanAPEntry 36 } + + wlanAPRemoteLanIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + LAN IP Address of the Remote Access Point. + " + ::= { wlsxWlanAPEntry 37 } + + wlanAPActiveUplink OBJECT-TYPE + SYNTAX INTEGER { + ethernet(1), + usb(2), + pppoe(3) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Uplink of the RAP(Ethernet or USB). + " + ::= { wlsxWlanAPEntry 38 } + + wlanAPSwitchIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Access points' Serving Controller's IP Address. + " + ::= { wlsxWlanAPEntry 39 } + + wlanAPStandbyIpAddress OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Access points' Standby Controller's IP Address. + " + ::= { wlsxWlanAPEntry 40 } + + wlanAPConnectedAsStandby OBJECT-TYPE + SYNTAX INTEGER { + active(0), + standby(1) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Access point connected as active/standby. + " + ::= { wlsxWlanAPEntry 41 } + + +-- Radio table is indexed by the Mac Address of the AP and the type of the +-- radio. + + wlsxWlanRadioTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table lists all the radios known to the + controller. + " + ::= { wlsxWlanAccessPointInfoGroup 5 } + + wlsxWlanRadioEntry OBJECT-TYPE + SYNTAX WlanRadioEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "AP Radio Entry" + INDEX {wlanAPMacAddress, wlanAPRadioNumber} + ::= { wlsxWlanRadioTable 1 } + + WlanRadioEntry ::= + SEQUENCE { + wlanAPRadioNumber Integer32, + wlanAPRadioType ArubaPhyType, + wlanAPRadioChannel Integer32, + wlanAPRadioTransmitPower Integer32, + wlanAPRadioMode ArubaAccessPointMode, + wlanAPRadioUtilization Integer32, + wlanAPRadioNumAssociatedClients Integer32, + wlanAPRadioNumMonitoredClients Integer32, + wlanAPRadioNumActiveBSSIDs Integer32, + wlanAPRadioNumMonitoredBSSIDs Integer32, + wlanAPRadioBearing DisplayString, + wlanAPRadioTiltAngle DisplayString, + wlanAPRadioHTMode ArubaHTMode, + wlanAPRadioHTExtChannel ArubaHTExtChannel, + wlanAPRadioHTChannel DisplayString, + wlanAPRadioAPName DisplayString + } + + wlanAPRadioNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The radio number + " + ::= { wlsxWlanRadioEntry 1 } + + wlanAPRadioType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Type of the Radio + " + ::= { wlsxWlanRadioEntry 2 } + + wlanAPRadioChannel OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The channel the radio is currently operating on. + " + ::= { wlsxWlanRadioEntry 3 } + + wlanAPRadioTransmitPower OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The current power level of the radio. + " + ::= { wlsxWlanRadioEntry 4 } + + wlanAPRadioMode OBJECT-TYPE + SYNTAX ArubaAccessPointMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Mode in which the radio is operating. + " + ::= { wlsxWlanRadioEntry 5 } + + wlanAPRadioUtilization OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Utilization of the radio as a percentage of the total capacity. + " + ::= { wlsxWlanRadioEntry 6 } + + + wlanAPRadioNumAssociatedClients OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Clients associated to this radio. + " + ::= { wlsxWlanRadioEntry 7 } + + + wlanAPRadioNumMonitoredClients OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Clients this Radio is monitoring. + " + ::= { wlsxWlanRadioEntry 8 } + + + wlanAPRadioNumActiveBSSIDs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of active BSSIDs on this Radio. + " + ::= { wlsxWlanRadioEntry 9 } + + + wlanAPRadioNumMonitoredBSSIDs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of AP BSSIDs this radio is monitoring. + " + ::= { wlsxWlanRadioEntry 10 } + + wlanAPRadioBearing OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Antenna Bearing in degrees from True North. + Unsigned floating-point value. Range: 0-360. + " + ::= { wlsxWlanRadioEntry 11 } + + wlanAPRadioTiltAngle OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + Tilt angle of antenna in degrees. -ve for downtilt, + +ve for uptilt. Signed floating-point value. Range: -90 to +90. + " + ::= { wlsxWlanRadioEntry 12 } + + wlanAPRadioHTMode OBJECT-TYPE + SYNTAX ArubaHTMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The HT mode of the radio, if any. + " + ::= { wlsxWlanRadioEntry 13 } + + wlanAPRadioHTExtChannel OBJECT-TYPE + SYNTAX ArubaHTExtChannel + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the offset of the 40MHz extension channel, if any. + " + ::= { wlsxWlanRadioEntry 14 } + + wlanAPRadioHTChannel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + " + A display string indicating the current channel. If wlanAPRadioHTExtChannel + is set to 'above' or 'below', then the channel number will be appended + with '+' or '-' respectively. + " + ::= { wlsxWlanRadioEntry 15 } + + wlanAPRadioAPName OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-write + STATUS current + DESCRIPTION + "Name of the AP the radio belongs to" + ::= { wlsxWlanRadioEntry 16 } + +-- Local Access Point Table. + + wlsxWlanAPBssidTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPBssidEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table lists all the BSSIDs active on this controller. + " + ::= { wlsxWlanAccessPointInfoGroup 7 } + + wlsxWlanAPBssidEntry OBJECT-TYPE + SYNTAX WlanAPBssidEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "BSSID Entry" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanAPBSSID} + ::= { wlsxWlanAPBssidTable 1 } + + WlanAPBssidEntry ::= + SEQUENCE { + wlanAPBSSID MacAddress, + wlanAPESSID DisplayString, + wlanAPBssidSlot Unsigned32, + wlanAPBssidPort Unsigned32, + wlanAPBssidPhyType ArubaPhyType, + wlanAPBssidRogueType ArubaRogueApType, + wlanAPBssidMode INTEGER, + wlanAPBssidChannel INTEGER, + wlanAPBssidUpTime TimeTicks, + wlanAPBssidInactiveTime TimeTicks, + wlanAPBssidLoadBalancing TruthValue, + wlanAPBssidNumAssociatedStations Unsigned32, + wlanAPBssidAPMacAddress MacAddress, + wlanAPBssidPhyNumber Integer32, + wlanAPBssidHTMode ArubaHTMode, + wlanAPBssidHTExtChannel ArubaHTExtChannel, + wlanAPBssidHTChannel DisplayString, + wlanAPBssidSnr Integer32 + } + + wlanAPBSSID OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The MAC address of the Access Point. + " + ::= { wlsxWlanAPBssidEntry 1 } + + wlanAPESSID OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID this BSSID is advertising. + " + ::= { wlsxWlanAPBssidEntry 2 } + + wlanAPBssidSlot OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Slot to which the Access Point is connected. + " + ::= { wlsxWlanAPBssidEntry 3 } + + wlanAPBssidPort OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Port to which the Access Point is connected. + " + ::= { wlsxWlanAPBssidEntry 4 } + + wlanAPBssidPhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Physical Layer Protocol support of the AP. + " + ::= { wlsxWlanAPBssidEntry 5 } + + wlanAPBssidRogueType OBJECT-TYPE + SYNTAX ArubaRogueApType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The type of the Rogue. + " + ::= { wlsxWlanAPBssidEntry 6 } + + wlanAPBssidMode OBJECT-TYPE + SYNTAX INTEGER{ + ap(1), + am(2), + mpp(3), + mp(4) + } + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether the Access point is an Air Monitor or regular AP + or Mesh Portal or Mesh Point. + " + ::= { wlsxWlanAPBssidEntry 7 } + + wlanAPBssidChannel OBJECT-TYPE + SYNTAX INTEGER(1..165) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The current operating channel. + " + ::= { wlsxWlanAPBssidEntry 8 } + + wlanAPBssidUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Time (in hundredths of seconds) since the tunnel was created + between the access point and controller + " + ::= { wlsxWlanAPBssidEntry 9 } + + wlanAPBssidInactiveTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Time (in hundredths of seconds) since any activity took place on + the BSSID. + " + ::= { wlsxWlanAPBssidEntry 10 } + + wlanAPBssidLoadBalancing OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether load balancing is enabled or not. + " + ::= { wlsxWlanAPBssidEntry 11 } + + wlanAPBssidNumAssociatedStations OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the number of stations associated to this BSSID. + " + ::= { wlsxWlanAPBssidEntry 12 } + + + wlanAPBssidAPMacAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the Access Point to which this BSSID belongs. + " + ::= { wlsxWlanAPBssidEntry 13 } + + wlanAPBssidPhyNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the radio number to which this BSSID belongs. + " + ::= { wlsxWlanAPBssidEntry 14 } + + wlanAPBssidHTMode OBJECT-TYPE + SYNTAX ArubaHTMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the HT mode of this BSSID, if any. + " + ::= { wlsxWlanAPBssidEntry 15 } + + wlanAPBssidHTExtChannel OBJECT-TYPE + SYNTAX ArubaHTExtChannel + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the offset of the 40MHz extension channel, if any. + " + ::= { wlsxWlanAPBssidEntry 16 } + + wlanAPBssidHTChannel OBJECT-TYPE + SYNTAX DisplayString + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + A display string indicating the current channel. If wlanAPBssidHTExtChannel + is set to 'above' or 'below', then the channel number will be appended + with '+' or '-' respectively. + " + ::= { wlsxWlanAPBssidEntry 17 } + + wlanAPBssidSnr OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates the Signal Noise Ratio of this BSSID. + " + ::= { wlsxWlanAPBssidEntry 18 } + +-- ESSID Table + + wlsxWlanESSIDTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanESSIDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists all the ESSIDs advertised by this controller. + " + ::= { wlsxWlanAccessPointInfoGroup 8 } + + wlsxWlanESSIDEntry OBJECT-TYPE + SYNTAX WlanESSIDEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ESSID Entry" + INDEX {wlanESSID} + ::= { wlsxWlanESSIDTable 1 } + + WlanESSIDEntry ::= + SEQUENCE { + wlanESSID DisplayString, + wlanESSIDNumStations Unsigned32, + wlanESSIDNumAccessPointsUp Unsigned32, + wlanESSIDNumAccessPointsDown Unsigned32, + wlanESSIDEncryptionType ArubaEncryptionMethods + } + + wlanESSID OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The ESSID being advertised. + " + ::= { wlsxWlanESSIDEntry 1 } + + wlanESSIDNumStations OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of stations connected to this ESSID. + " + ::= { wlsxWlanESSIDEntry 2 } + + wlanESSIDNumAccessPointsUp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of APs currently advertising this ESSID. + " + ::= { wlsxWlanESSIDEntry 3 } + + wlanESSIDNumAccessPointsDown OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of APs configured to advertise this ESSID that + are not currently operational. + " + ::= { wlsxWlanESSIDEntry 4 } + + wlanESSIDEncryptionType OBJECT-TYPE + SYNTAX ArubaEncryptionMethods + + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The encryption methods supported on this ESSID. + " + ::= { wlsxWlanESSIDEntry 5 } + +-- ESSID Vlan Pool Table + + wlsxWlanESSIDVlanPoolTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanESSIDVlanPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists all the VLANs associated with this ESSID. + " + ::= { wlsxWlanAccessPointInfoGroup 9 } + + wlsxWlanESSIDVlanPoolEntry OBJECT-TYPE + SYNTAX WlanESSIDVlanPoolEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ESSID Vlan Pool Entry" + INDEX {wlanESSID, wlanESSIDVlanId} + ::= { wlsxWlanESSIDVlanPoolTable 1 } + + WlanESSIDVlanPoolEntry ::= + SEQUENCE { + wlanESSIDVlanId Unsigned32, + wlanESSIDVlanPoolStatus RowStatus + } + + wlanESSIDVlanId OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + VLAN which is part of the VLAN pool for this ESSID. + " + ::= { wlsxWlanESSIDVlanPoolEntry 1 } + + wlanESSIDVlanPoolStatus OBJECT-TYPE + SYNTAX RowStatus + MAX-ACCESS read-create + STATUS current + DESCRIPTION + " + Row status object used to indicate the status of the row. + " + ::= { wlsxWlanESSIDVlanPoolEntry 2 } + +--Station Info Group contains the State information for the stations. + +--Station Table contains all the station associated with an AP. + + wlsxWlanStationTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanStationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists all the wireless stations associated with the + Access points connected to this controller. + " + + ::= { wlsxWlanStationInfoGroup 1} + + wlsxWlanStationEntry OBJECT-TYPE + SYNTAX WlanStationEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Station Entry" + INDEX {wlanStaPhyAddress} + ::= { wlsxWlanStationTable 1 } + + WlanStationEntry ::= + SEQUENCE { + wlanStaPhyAddress MacAddress, + wlanStaApBssid MacAddress, + wlanStaPhyType ArubaPhyType, + wlanStaIsAuthenticated TruthValue, + wlanStaIsAssociated TruthValue, + wlanStaChannel INTEGER, + wlanStaVlanId ArubaVlanValidRange, + wlanStaVOIPState TruthValue, + wlanStaVOIPProtocol ArubaVoipProtocolType, + wlanStaTransmitRate Unsigned32, + wlanStaAssociationID Unsigned32, + wlanStaAccessPointESSID DisplayString, + wlanStaPhyNumber Integer32, + wlanStaRSSI Integer32, + wlanStaUpTime TimeTicks, + wlanStaHTMode ArubaHTMode, + wlanStaTransmitRateCode Unsigned32 + } + + wlanStaPhyAddress OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The Physical Address of the Station. + " + ::= { wlsxWlanStationEntry 1 } + + wlanStaApBssid OBJECT-TYPE + SYNTAX MacAddress + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + The Access point to which this station last associated to. + " + ::= { wlsxWlanStationEntry 2 } + + wlanStaPhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Type of the Station. + " + ::= { wlsxWlanStationEntry 3 } + + wlanStaIsAuthenticated OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether the station is authenticated. + " + ::= { wlsxWlanStationEntry 4 } + + wlanStaIsAssociated OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Indicates whether the station is associated. + " + ::= { wlsxWlanStationEntry 5 } + + wlanStaChannel OBJECT-TYPE + SYNTAX INTEGER(1..165) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Channel on which the station is associated. + " + ::= { wlsxWlanStationEntry 6 } + + wlanStaVlanId OBJECT-TYPE + SYNTAX ArubaVlanValidRange + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + VLAN in which the station is present. + " + ::= { wlsxWlanStationEntry 7 } + + wlanStaVOIPState OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The State of VoIP for this station. + " + ::= { wlsxWlanStationEntry 8 } + + wlanStaVOIPProtocol OBJECT-TYPE + SYNTAX ArubaVoipProtocolType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + If VoIP is enabled, the type of the protocol supported. + " + ::= { wlsxWlanStationEntry 9 } + + wlanStaTransmitRate OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Transmit rate with which the Station is associated with this system. + " + ::= { wlsxWlanStationEntry 10 } + + wlanStaAssociationID OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + AID with which the Station is associated with this system. + " + ::= { wlsxWlanStationEntry 11 } + + wlanStaAccessPointESSID OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID of the Access point + " + ::= { wlsxWlanStationEntry 12 } + + wlanStaPhyNumber OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Radio PHY number to which the station is associated + " + ::= { wlsxWlanStationEntry 13 } + + wlanStaRSSI OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Signal to Noise ratio for the station. + " + ::= { wlsxWlanStationEntry 14 } + + + wlanStaUpTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Time since the station associated to the current BSSID. + " + ::= { wlsxWlanStationEntry 15 } + + wlanStaHTMode OBJECT-TYPE + SYNTAX ArubaHTMode + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The HT status of the station. + " + ::= { wlsxWlanStationEntry 16 } + + wlanStaTransmitRateCode OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Transmit rate code with which the Station is associated with this system, unit is mbps. + " + ::= { wlsxWlanStationEntry 17 } + +--Station Association Failure Table contains all the Stations that failed to +--associate an ap. + + wlsxWlanStaAssociationFailureTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanStaAssociationFailureEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists all the stations and the BSSID's to which they + failed to associate. Once a station successfully associates, + association failure entries are not reported for that station. + " + + ::= { wlsxWlanStationInfoGroup 2} + + wlsxWlanStaAssociationFailureEntry OBJECT-TYPE + SYNTAX WlanStaAssociationFailureEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Station Association Failure Entry" + INDEX {wlanStaPhyAddress, wlanAPBSSID} + ::= { wlsxWlanStaAssociationFailureTable 1 } + + WlanStaAssociationFailureEntry ::= + SEQUENCE { + wlanStaAssocFailureApName DisplayString, + wlanStaAssocFailureApEssid DisplayString, + wlanStaAssocFailurePhyNum Integer32, + wlanStaAssocFailurePhyType ArubaPhyType, + wlanStaAssocFailureElapsedTime TimeTicks, + wlanStaAssocFailureReason DisplayString + } + + wlanStaAssocFailureApName OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Name of the Access Point to which this station tried to associate. + " + ::= { wlsxWlanStaAssociationFailureEntry 1 } + + wlanStaAssocFailureApEssid OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..64)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + ESSID to which the station association failed. + " + ::= { wlsxWlanStaAssociationFailureEntry 2 } + + wlanStaAssocFailurePhyNum OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Radio PHY number to which the station tried to associate. + " + ::= { wlsxWlanStaAssociationFailureEntry 3 } + + wlanStaAssocFailurePhyType OBJECT-TYPE + SYNTAX ArubaPhyType + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Radio PHY Type of the Station. + " + ::= { wlsxWlanStaAssociationFailureEntry 4 } + + wlanStaAssocFailureElapsedTime OBJECT-TYPE + SYNTAX TimeTicks + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Elapsed time in timeticks after the station's failure to associate. + " + ::= { wlsxWlanStaAssociationFailureEntry 5 } + + wlanStaAssocFailureReason OBJECT-TYPE + SYNTAX DisplayString(SIZE(0..80)) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + Reason for the Station association failure + " + ::= { wlsxWlanStaAssociationFailureEntry 6 } + +-- Stats group contains tables for station statistics, BSSID statistics and +-- AP statistics. + + wlsxWlanAPStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the statistics of all the Access Points connected + to the controller. + " + ::= { wlsxWlanAccessPointStatsGroup 1 } + + wlsxWlanAPStatsEntry OBJECT-TYPE + SYNTAX WlanAPStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point Stats entry" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanAPBSSID} + ::= { wlsxWlanAPStatsTable 1 } + + WlanAPStatsEntry ::= + SEQUENCE { + wlanAPCurrentChannel Unsigned32, + wlanAPNumClients Integer32, + wlanAPTxPkts Counter32, + wlanAPTxBytes Counter32, + wlanAPRxPkts Counter32, + wlanAPRxBytes Counter32, + wlanAPTxDeauthentications Counter32, + wlanAPRxDeauthentications Counter32, + wlanAPChannelThroughput Integer32, + wlanAPFrameRetryRate Integer32, + wlanAPFrameLowSpeedRate Integer32, + wlanAPFrameNonUnicastRate Integer32, + wlanAPFrameFragmentationRate Integer32, + wlanAPFrameBandwidthRate Integer32, + wlanAPFrameRetryErrorRate Integer32, + wlanAPChannelErrorRate Integer32, + wlanAPFrameReceiveErrorRate Integer32, + wlanAPRxDataPkts Counter32, + wlanAPRxDataBytes Counter32, + wlanAPTxDataPkts Counter32, + wlanAPTxDataBytes Counter32, + wlanAPRxDataPkts64 Counter64, + wlanAPRxDataBytes64 Counter64, + wlanAPTxDataPkts64 Counter64, + wlanAPTxDataBytes64 Counter64, + wlanAPWiredRxErrorPkts Counter32, + wlanAPRxErrorPkts Counter32 + } + + wlanAPCurrentChannel OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The channel the AP is currently using. + " + ::= { wlsxWlanAPStatsEntry 1 } + + wlanAPNumClients OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of clients associated to this BSSID. + " + ::= { wlsxWlanAPStatsEntry 2 } + + wlanAPTxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 3 } + + wlanAPTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 4 } + + wlanAPRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 5 } + + wlanAPRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 6 } + + wlanAPTxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of deauthentications transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 7 } + + wlanAPRxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of deauthentications received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 8 } + + wlanAPChannelThroughput OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The throughput achieved on this channel. + " + ::= { wlsxWlanAPStatsEntry 9 } + + wlanAPFrameRetryRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of retry + packets as a percentage of the total packets + transmitted and received by this BSSID. + " + ::= { wlsxWlanAPStatsEntry 10 } + + wlanAPFrameLowSpeedRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps + for B band) packets as a percentage of the total packets + transmitted and received by this BSSID + " + ::= { wlsxWlanAPStatsEntry 11 } + + wlanAPFrameNonUnicastRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast and multicast + packets as a percentage of the total packets + transmitted on this BSSIDchannel. + " + ::= { wlsxWlanAPStatsEntry 12 } + + wlanAPFrameFragmentationRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of fragments + as a percentage of the total packets + transmitted by this BSSID. + " + ::= { wlsxWlanAPStatsEntry 13 } + + wlanAPFrameBandwidthRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The bandwidth of this BSSID in Kbps. + " + ::= { wlsxWlanAPStatsEntry 14 } + + wlanAPFrameRetryErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 15 } + + wlanAPChannelErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets received + on the current channel. + " + ::= { wlsxWlanAPStatsEntry 16 } + + wlanAPFrameReceiveErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 17 } + + wlanAPRxDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of packets received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 18 } + + wlanAPRxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of bytes received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 19 } + + wlanAPTxDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of packets transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 20 } + + wlanAPTxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of bytes transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 21 } + + wlanAPRxDataPkts64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 22 } + + wlanAPRxDataBytes64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes received on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 23 } + + wlanAPTxDataPkts64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 24 } + + wlanAPTxDataBytes64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes transmitted on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 25 } + + wlanAPWiredRxErrorPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets received from the controller on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 26 } + + wlanAPRxErrorPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets received from stations on this BSSID. + " + ::= { wlsxWlanAPStatsEntry 27 } + +-- This table breaks down the AP statistics observed into different +-- rate categories. + + wlsxWlanAPRateStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanAPRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the AP Packet and Byte Counts + but represented in terms of rate categories. + " + + ::= { wlsxWlanAccessPointStatsGroup 2 } + + wlsxWlanAPRateStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanAPRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Data rate based packet and byte count entry for an AP" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanAPBSSID} + ::= { wlsxWlanAPRateStatsTable 1 } + + WlsxWlanAPRateStatsEntry ::= + SEQUENCE { + wlanAPStatsTotPktsAt1Mbps Counter32, + wlanAPStatsTotBytesAt1Mbps Counter32, + wlanAPStatsTotPktsAt2Mbps Counter32, + wlanAPStatsTotBytesAt2Mbps Counter32, + wlanAPStatsTotPktsAt5Mbps Counter32, + wlanAPStatsTotBytesAt5Mbps Counter32, + wlanAPStatsTotPktsAt11Mbps Counter32, + wlanAPStatsTotBytesAt11Mbps Counter32, + wlanAPStatsTotPktsAt6Mbps Counter32, + wlanAPStatsTotBytesAt6Mbps Counter32, + wlanAPStatsTotPktsAt12Mbps Counter32, + wlanAPStatsTotBytesAt12Mbps Counter32, + wlanAPStatsTotPktsAt18Mbps Counter32, + wlanAPStatsTotBytesAt18Mbps Counter32, + wlanAPStatsTotPktsAt24Mbps Counter32, + wlanAPStatsTotBytesAt24Mbps Counter32, + wlanAPStatsTotPktsAt36Mbps Counter32, + wlanAPStatsTotBytesAt36Mbps Counter32, + wlanAPStatsTotPktsAt48Mbps Counter32, + wlanAPStatsTotBytesAt48Mbps Counter32, + wlanAPStatsTotPktsAt54Mbps Counter32, + wlanAPStatsTotBytesAt54Mbps Counter32, + wlanAPStatsTotPktsAt9Mbps Counter32, + wlanAPStatsTotBytesAt9Mbps Counter32 +-- wlanAPStatsTotPktsAtHT6dot5Mbps Counter32, +-- wlanAPStatsTotBytesAtHT6dot5Mbps Counter32, +-- wlanAPStatsTotPktsAtHT13Mbps Counter32, +-- wlanAPStatsTotBytesAtHT13Mbps Counter32, +-- wlanAPStatsTotPktsAtHT13dot5Mbps Counter32, +-- wlanAPStatsTotBytesAtHT13dot5Mbps Counter32, +-- wlanAPStatsTotPktsAtHT15Mbps Counter32, +-- wlanAPStatsTotBytesAtHT15Mbps Counter32, +-- wlanAPStatsTotPktsAtHT19dot5Mbps Counter32, +-- wlanAPStatsTotBytesAtHT19dot5Mbps Counter32, +-- wlanAPStatsTotPktsAtHT26Mbps Counter32, +-- wlanAPStatsTotBytesAtHT26Mbps Counter32, +-- wlanAPStatsTotPktsAtHT27Mbps Counter32, +-- wlanAPStatsTotBytesAtHT27Mbps Counter32, +-- wlanAPStatsTotPktsAtHT30Mbps Counter32, +-- wlanAPStatsTotBytesAtHT30Mbps Counter32, +-- wlanAPStatsTotPktsAtHT39Mbps Counter32, +-- wlanAPStatsTotBytesAtHT39Mbps Counter32, +-- wlanAPStatsTotPktsAtHT40dot5Mbps Counter32, +-- wlanAPStatsTotBytesAtHT40dot5Mbps Counter32, +-- wlanAPStatsTotPktsAtHT45Mbps Counter32, +-- wlanAPStatsTotBytesAtHT45Mbps Counter32, +-- wlanAPStatsTotPktsAtHT52Mbps Counter32, +-- wlanAPStatsTotBytesAtHT52Mbps Counter32, +-- wlanAPStatsTotPktsAtHT54Mbps Counter32, +-- wlanAPStatsTotBytesAtHT54Mbps Counter32, +-- wlanAPStatsTotPktsAtHT58dot5Mbps Counter32, +-- wlanAPStatsTotBytesAtHT58dot5Mbps Counter32, +-- wlanAPStatsTotPktsAtHT60Mbps Counter32, +-- wlanAPStatsTotBytesAtHT60Mbps Counter32, +-- wlanAPStatsTotPktsAtHT65Mbps Counter32, +-- wlanAPStatsTotBytesAtHT65Mbps Counter32, +-- wlanAPStatsTotPktsAtHT78Mbps Counter32, +-- wlanAPStatsTotBytesAtHT78Mbps Counter32, +-- wlanAPStatsTotPktsAtHT81Mbps Counter32, +-- wlanAPStatsTotBytesAtHT81Mbps Counter32, +-- wlanAPStatsTotPktsAtHT90Mbps Counter32, +-- wlanAPStatsTotBytesAtHT90Mbps Counter32, +-- wlanAPStatsTotPktsAtHT104Mbps Counter32, +-- wlanAPStatsTotBytesAtHT104Mbps Counter32, +-- wlanAPStatsTotPktsAtHT108Mbps Counter32, +-- wlanAPStatsTotBytesAtHT108Mbps Counter32, +-- wlanAPStatsTotPktsAtHT117Mbps Counter32, +-- wlanAPStatsTotBytesAtHT117Mbps Counter32, +-- wlanAPStatsTotPktsAtHT120Mbps Counter32, +-- wlanAPStatsTotBytesAtHT120Mbps Counter32, +-- wlanAPStatsTotPktsAtHT121dot5Mbps Counter32, +-- wlanAPStatsTotBytesAtHT121dot5Mbps Counter32, +-- wlanAPStatsTotPktsAtHT130Mbps Counter32, +-- wlanAPStatsTotBytesAtHT130Mbps Counter32, +-- wlanAPStatsTotPktsAtHT135Mbps Counter32, +-- wlanAPStatsTotBytesAtHT135Mbps Counter32, +-- wlanAPStatsTotPktsAtHT150Mbps Counter32, +-- wlanAPStatsTotBytesAtHT150Mbps Counter32, +-- wlanAPStatsTotPktsAtHT162Mbps Counter32, +-- wlanAPStatsTotBytesAtHT162Mbps Counter32, +-- wlanAPStatsTotPktsAtHT180Mbps Counter32, +-- wlanAPStatsTotBytesAtHT180Mbps Counter32, +-- wlanAPStatsTotPktsAtHT216Mbps Counter32, +-- wlanAPStatsTotBytesAtHT216Mbps Counter32, +-- wlanAPStatsTotPktsAtHT240Mbps Counter32, +-- wlanAPStatsTotBytesAtHT240Mbps Counter32, +-- wlanAPStatsTotPktsAtHT243Mbps Counter32, +-- wlanAPStatsTotBytesAtHT243Mbps Counter32, +-- wlanAPStatsTotPktsAtHT270Mbps Counter32, +-- wlanAPStatsTotBytesAtHT270Mbps Counter32, +-- wlanAPStatsTotPktsAtHT300Mbps Counter32, +-- wlanAPStatsTotBytesAtHT300Mbps Counter32 + } + + wlanAPStatsTotPktsAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 1Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 1 } + + wlanAPStatsTotBytesAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 1Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 2 } + + wlanAPStatsTotPktsAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 2Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 3 } + + wlanAPStatsTotBytesAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 2Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 4 } + + wlanAPStatsTotPktsAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 5Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 5 } + + wlanAPStatsTotBytesAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 5Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 6 } + + wlanAPStatsTotPktsAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 11Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 7 } + + wlanAPStatsTotBytesAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 11Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 8 } + + wlanAPStatsTotPktsAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 6Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 9 } + + wlanAPStatsTotBytesAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 6Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 10 } + + wlanAPStatsTotPktsAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 12Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 11 } + + wlanAPStatsTotBytesAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 12Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 12 } + + wlanAPStatsTotPktsAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 18Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 13 } + + wlanAPStatsTotBytesAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 18Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 14 } + + wlanAPStatsTotPktsAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 24Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 15 } + + wlanAPStatsTotBytesAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 24Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 16 } + + wlanAPStatsTotPktsAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 36Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 17 } + + wlanAPStatsTotBytesAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 36Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 18 } + + wlanAPStatsTotPktsAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 48Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 19 } + + wlanAPStatsTotBytesAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 48Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 20 } + + wlanAPStatsTotPktsAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 54Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 21 } + + wlanAPStatsTotBytesAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 54Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 22 } + + wlanAPStatsTotPktsAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets observed + on this BSSID at 9Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 23 } + + wlanAPStatsTotBytesAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Bytes observed + on this BSSID at 9Mbps rate. + " + ::= { wlsxWlanAPRateStatsEntry 24 } + +-- wlanAPStatsTotPktsAtHT6dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 6.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 25 } +-- +-- wlanAPStatsTotBytesAtHT6dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 6.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 26 } +-- +-- wlanAPStatsTotPktsAtHT13Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 13.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 27 } +-- +-- wlanAPStatsTotBytesAtHT13Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 13.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 28 } +-- +-- wlanAPStatsTotPktsAtHT13dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 13.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 29 } +-- +-- wlanAPStatsTotBytesAtHT13dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 13.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 30 } +-- +-- wlanAPStatsTotPktsAtHT15Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 15.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 31 } +-- +-- wlanAPStatsTotBytesAtHT15Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 15.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 32 } +-- +-- wlanAPStatsTotPktsAtHT19dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 19.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 33 } +-- +-- wlanAPStatsTotBytesAtHT19dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 19.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 34 } +-- +-- wlanAPStatsTotPktsAtHT26Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 26.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 35 } +-- +-- wlanAPStatsTotBytesAtHT26Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 26.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 36 } +-- +-- wlanAPStatsTotPktsAtHT27Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 27.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 37 } +-- +-- wlanAPStatsTotBytesAtHT27Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 27.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 38 } +-- +-- wlanAPStatsTotPktsAtHT30Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 30.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 39 } +-- +-- wlanAPStatsTotBytesAtHT30Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 30.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 40 } +-- +-- wlanAPStatsTotPktsAtHT39Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 39.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 41 } +-- +-- wlanAPStatsTotBytesAtHT39Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 39.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 42 } +-- +-- wlanAPStatsTotPktsAtHT40dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 40.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 43 } +-- +-- wlanAPStatsTotBytesAtHT40dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 40.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 44 } +-- +-- wlanAPStatsTotPktsAtHT45Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 45.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 45 } +-- +-- wlanAPStatsTotBytesAtHT45Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 45.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 46 } +-- +-- wlanAPStatsTotPktsAtHT52Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 52.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 47 } +-- +-- wlanAPStatsTotBytesAtHT52Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 52.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 48 } +-- +-- wlanAPStatsTotPktsAtHT54Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 54.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 49 } +-- +-- wlanAPStatsTotBytesAtHT54Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 54.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 50 } +-- +-- wlanAPStatsTotPktsAtHT58dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 58.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 51 } +-- +-- wlanAPStatsTotBytesAtHT58dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 58.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 52 } +-- +-- wlanAPStatsTotPktsAtHT60Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 60.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 53 } +-- +-- wlanAPStatsTotBytesAtHT60Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 60.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 54 } +-- +-- wlanAPStatsTotPktsAtHT65Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 65.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 55 } +-- +-- wlanAPStatsTotBytesAtHT65Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 65.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 56 } +-- +-- wlanAPStatsTotPktsAtHT78Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 78.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 57 } +-- +-- wlanAPStatsTotBytesAtHT78Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 78.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 58 } +-- +-- wlanAPStatsTotPktsAtHT81Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 81.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 59 } +-- +-- wlanAPStatsTotBytesAtHT81Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 81.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 60 } +-- +-- wlanAPStatsTotPktsAtHT90Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 90.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 61 } +-- +-- wlanAPStatsTotBytesAtHT90Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 90.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 62 } +-- +-- wlanAPStatsTotPktsAtHT104Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 104.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 63 } +-- +-- wlanAPStatsTotBytesAtHT104Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 104.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 64 } +-- +-- wlanAPStatsTotPktsAtHT108Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 108.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 65 } +-- +-- wlanAPStatsTotBytesAtHT108Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 108.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 66 } +-- +-- wlanAPStatsTotPktsAtHT117Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 117.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 67 } +-- +-- wlanAPStatsTotBytesAtHT117Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 117.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 68 } +-- +-- wlanAPStatsTotPktsAtHT120Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 120.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 69 } +-- +-- wlanAPStatsTotBytesAtHT120Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 120.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 70 } +-- +-- wlanAPStatsTotPktsAtHT121dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 121.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 71 } +-- +-- wlanAPStatsTotBytesAtHT121dot5Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 121.5 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 72 } +-- +-- wlanAPStatsTotPktsAtHT130Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 130.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 73 } +-- +-- wlanAPStatsTotBytesAtHT130Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 130.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 74 } +-- +-- wlanAPStatsTotPktsAtHT135Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 135.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 75 } +-- +-- wlanAPStatsTotBytesAtHT135Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 135.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 76 } +-- +-- wlanAPStatsTotPktsAtHT150Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 150.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 77 } +-- +-- wlanAPStatsTotBytesAtHT150Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 150.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 78 } +-- +-- wlanAPStatsTotPktsAtHT162Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 162.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 79 } +-- +-- wlanAPStatsTotBytesAtHT162Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 162.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 80 } +-- +-- wlanAPStatsTotPktsAtHT180Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 180.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 81 } +-- +-- wlanAPStatsTotBytesAtHT180Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 180.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 82 } +-- +-- wlanAPStatsTotPktsAtHT216Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 216.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 83 } +-- +-- wlanAPStatsTotBytesAtHT216Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 216.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 84 } +-- +-- wlanAPStatsTotPktsAtHT240Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 240.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 85 } +-- +-- wlanAPStatsTotBytesAtHT240Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 240.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 86 } +-- +-- wlanAPStatsTotPktsAtHT243Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 243.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 87 } +-- +-- wlanAPStatsTotBytesAtHT243Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 243.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 88 } +-- +-- wlanAPStatsTotPktsAtHT270Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 270.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 89 } +-- +-- wlanAPStatsTotBytesAtHT270Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 270.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 90 } +-- +-- wlanAPStatsTotPktsAtHT300Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of packets observed +-- on this BSSID at the HT 300.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 91 } +-- +-- wlanAPStatsTotBytesAtHT300Mbps OBJECT-TYPE +-- SYNTAX Counter32 +-- MAX-ACCESS read-only +-- STATUS current +-- DESCRIPTION +-- " +-- This attribute indicates the total number of bytes observed +-- on this BSSID at the HT 300.0 rate. +-- " +-- ::= { wlsxWlanAPRateStatsEntry 92 } + +-- This table breaks down the BSSID statistics observed based on the +-- Destination Address Types. + + wlsxWlanAPDATypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanAPDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the per BSSID Packet and Byte Counts + but broken down in terms of Destination Address Type. + " + ::= { wlsxWlanAccessPointStatsGroup 3 } + + wlsxWlanAPDATypeStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanAPDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Destination Address based packet and byte count entry for an AP" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanAPBSSID} + ::= { wlsxWlanAPDATypeStatsTable 1 } + + WlsxWlanAPDATypeStatsEntry ::= + SEQUENCE { + wlanAPStatsTotDABroadcastPkts Counter32 , + wlanAPStatsTotDABroadcastBytes Counter32 , + wlanAPStatsTotDAMulticastPkts Counter32 , + wlanAPStatsTotDAMulticastBytes Counter32 , + wlanAPStatsTotDAUnicastPkts Counter32 , + wlanAPStatsTotDAUnicastBytes Counter32 + + } + + wlanAPStatsTotDABroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Broadcast packets + observed on this BSSID. + " + ::= { wlsxWlanAPDATypeStatsEntry 1 } + + wlanAPStatsTotDABroadcastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Broadcast Bytes + observed on this BSSID. + " + ::= { wlsxWlanAPDATypeStatsEntry 2 } + + wlanAPStatsTotDAMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Multicast packets + observed on this BSSID. + " + ::= { wlsxWlanAPDATypeStatsEntry 3 } + + wlanAPStatsTotDAMulticastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Multicast Bytes + observed on this BSSID. + " + ::= { wlsxWlanAPDATypeStatsEntry 4 } + + wlanAPStatsTotDAUnicastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Unicast packets + observed on this BSSID. + " + ::= { wlsxWlanAPDATypeStatsEntry 5 } + + wlanAPStatsTotDAUnicastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Unicast Bytes + observed on this BSSID. + " + ::= { wlsxWlanAPDATypeStatsEntry 6 } + +-- This table breaks down the BSSID statistics observed based on the +-- the Type of the Packet. + + wlsxWlanAPFrameTypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanAPFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the per BSSID Packet and Byte Counts + but broken down into different Frame Types. + " + ::= { wlsxWlanAccessPointStatsGroup 4 } + + wlsxWlanAPFrameTypeStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanAPFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Frame Type based packet and byte count entry for an AP" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanAPBSSID} + ::= { wlsxWlanAPFrameTypeStatsTable 1 } + + WlsxWlanAPFrameTypeStatsEntry ::= + SEQUENCE { + wlanAPStatsTotMgmtPkts Counter32 , + wlanAPStatsTotMgmtBytes Counter32 , + wlanAPStatsTotCtrlPkts Counter32 , + wlanAPStatsTotCtrlBytes Counter32 , + wlanAPStatsTotDataPkts Counter32 , + wlanAPStatsTotDataBytes Counter32 + + } + + wlanAPStatsTotMgmtPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Management packets + observed on this BSSID. + " + ::= { wlsxWlanAPFrameTypeStatsEntry 1 } + + wlanAPStatsTotMgmtBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Management Bytes + observed on this BSSID. + " + ::= { wlsxWlanAPFrameTypeStatsEntry 2 } + + wlanAPStatsTotCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Control packets + observed on this BSSID. + " + ::= { wlsxWlanAPFrameTypeStatsEntry 3 } + + wlanAPStatsTotCtrlBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Control Bytes + observed on this BSSID. + " + ::= { wlsxWlanAPFrameTypeStatsEntry 4 } + + wlanAPStatsTotDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Data packets + observed on this BSSID. + " + ::= { wlsxWlanAPFrameTypeStatsEntry 5 } + + wlanAPStatsTotDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of Data Bytes + observed on this BSSID. + " + ::= { wlsxWlanAPFrameTypeStatsEntry 6 } + +-- This table breaks down the BSSID statistics observed into packet size +-- buckets. + + wlsxWlanAPPktSizeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanAPPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the per BSSID Packet Count + but broken down into different Packet Sizes. + " + ::= { wlsxWlanAccessPointStatsGroup 5 } + + wlsxWlanAPPktSizeStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanAPPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet Size based packet count entry for a BSSID" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanAPBSSID} + ::= { wlsxWlanAPPktSizeStatsTable 1 } + + WlsxWlanAPPktSizeStatsEntry ::= + SEQUENCE { + wlanAPStatsPkts63Bytes Counter32 , + wlanAPStatsPkts64To127 Counter32 , + wlanAPStatsPkts128To255 Counter32 , + wlanAPStatsPkts256To511 Counter32 , + wlanAPStatsPkts512To1023 Counter32 , + wlanAPStatsPkts1024To1518 Counter32 + + } + + wlanAPStatsPkts63Bytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets that were + less than 64 bytes long. + " + ::= { wlsxWlanAPPktSizeStatsEntry 1 } + + wlanAPStatsPkts64To127 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets that were + between 64 and 127 bytes long. + " + ::= { wlsxWlanAPPktSizeStatsEntry 2 } + + wlanAPStatsPkts128To255 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets that were + between 128 and 255 bytes long. + " + ::= { wlsxWlanAPPktSizeStatsEntry 3 } + + wlanAPStatsPkts256To511 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets that were + between 256 and 511 bytes long. + " + ::= { wlsxWlanAPPktSizeStatsEntry 4 } + + wlanAPStatsPkts512To1023 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets that were + between 512 and 1023 bytes long. + " + ::= { wlsxWlanAPPktSizeStatsEntry 5 } + + wlanAPStatsPkts1024To1518 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total number of packets that were + between 1024 and 1518 bytes long. + " + ::= { wlsxWlanAPPktSizeStatsEntry 6 } + + +-- AP Chan Stats table + + wlsxWlanAPChStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPChStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the Channel statistics of all the Access Points + connected to the controller. + " + ::= { wlsxWlanAccessPointStatsGroup 6 } + + wlsxWlanAPChStatsEntry OBJECT-TYPE + SYNTAX WlanAPChStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point Channel Stats entry" + INDEX {wlanAPMacAddress, wlanAPRadioNumber} + ::= { wlsxWlanAPChStatsTable 1 } + + WlanAPChStatsEntry ::= + SEQUENCE { + wlanAPChannelNumber INTEGER, + wlanAPChNumStations Integer32, + wlanAPChTotPkts Counter32, + wlanAPChTotBytes Counter32, + wlanAPChTotRetryPkts Counter32, + wlanAPChTotFragmentedPkts Counter32, + wlanAPChTotPhyErrPkts Counter32, + wlanAPChTotMacErrPkts Counter32, + wlanAPChNoise Integer32, + wlanAPChCoverageIndex Integer32, + wlanAPChInterferenceIndex Integer32, + wlanAPChFrameRetryRate Integer32, + wlanAPChFrameLowSpeedRate Integer32, + wlanAPChFrameNonUnicastRate Integer32, + wlanAPChFrameFragmentationRate Integer32, + wlanAPChFrameBandwidthRate Integer32, + wlanAPChFrameRetryErrorRate Integer32, + wlanAPChBusyRate Integer32, + wlanAPChNumAPs Integer32, + wlanAPChFrameReceiveErrorRate Integer32, + wlanAPChTransmittedFragmentCount Counter32, + wlanAPChMulticastTransmittedFrameCount Counter32, + wlanAPChFailedCount Counter32, + wlanAPChRetryCount Counter32, + wlanAPChMultipleRetryCount Counter32, + wlanAPChFrameDuplicateCount Counter32, + wlanAPChRTSSuccessCount Counter32, + wlanAPChRTSFailureCount Counter32, + wlanAPChACKFailureCount Counter32, + wlanAPChReceivedFragmentCount Counter32, + wlanAPChMulticastReceivedFrameCount Counter32, + wlanAPChFCSErrorCount Counter32, + wlanAPChTransmittedFrameCount Counter32, + wlanAPChWEPUndecryptableCount Counter32, + wlanAPChRxUtilization INTEGER, + wlanAPChTxUtilization INTEGER, + wlanAPChUtilization INTEGER + } + + wlanAPChannelNumber OBJECT-TYPE + SYNTAX INTEGER(1..165) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The channel the AP is currently using. + " + ::= { wlsxWlanAPChStatsEntry 1 } + + wlanAPChNumStations OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of stations using this + channel. + " + ::= { wlsxWlanAPChStatsEntry 2 } + + wlanAPChTotPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total packets observed on this + channel. + " + ::= { wlsxWlanAPChStatsEntry 3 } + + wlanAPChTotBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total Bytes observed on this + channel. + " + ::= { wlsxWlanAPChStatsEntry 4 } + + wlanAPChTotRetryPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total Retry Packets observed on this + channel. + " + ::= { wlsxWlanAPChStatsEntry 5 } + + wlanAPChTotFragmentedPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total Fragmented Packets observed on + this channel. + " + ::= { wlsxWlanAPChStatsEntry 6 } + + wlanAPChTotPhyErrPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total Physical Error Packets observed + on this channel. + " + ::= { wlsxWlanAPChStatsEntry 7 } + + wlanAPChTotMacErrPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total Mac errors packets observed on + this channel. + " + ::= { wlsxWlanAPChStatsEntry 8 } + + wlanAPChNoise OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the noise observed on + this channel. + " + ::= { wlsxWlanAPChStatsEntry 9 } + + wlanAPChCoverageIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the coverage provided by the AP on + this channel. + " + ::= { wlsxWlanAPChStatsEntry 10 } + + wlanAPChInterferenceIndex OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the interference + observed on this channel. + " + ::= { wlsxWlanAPChStatsEntry 11 } + + wlanAPChFrameRetryRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of retry + packets as a percentage of the total packets + transmitted and received on this channel. + " + ::= { wlsxWlanAPChStatsEntry 12 } + + wlanAPChFrameLowSpeedRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps + for B band) packets as a percentage of the total packets + transmitted and received on this channel + " + ::= { wlsxWlanAPChStatsEntry 13 } + + wlanAPChFrameNonUnicastRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast and multicast + packets as a percentage of the total packets + transmitted on this channel. + " + ::= { wlsxWlanAPChStatsEntry 14 } + + wlanAPChFrameFragmentationRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of fragments + as a percentage of the total packets + transmitted on this channel + " + ::= { wlsxWlanAPChStatsEntry 15 } + + wlanAPChFrameBandwidthRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The bandwidth of this channel in Kbps. + " + ::= { wlsxWlanAPChStatsEntry 16 } + + wlanAPChFrameRetryErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received on this channel. + " + ::= { wlsxWlanAPChStatsEntry 17 } + + wlanAPChBusyRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the busy + this channel is. + " + ::= { wlsxWlanAPChStatsEntry 18 } + + wlanAPChNumAPs OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Access Points + observed on this channel. + " + ::= { wlsxWlanAPChStatsEntry 19 } + + wlanAPChFrameReceiveErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received on this channel. + " + ::= { wlsxWlanAPChStatsEntry 20 } + + wlanAPChTransmittedFragmentCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall be incremented for an acknowledged MPDU + with an individual address in the address 1 field or an MPDU + with a multicast address in the address 1 field of type Data + or Management. + " + ::= { wlsxWlanAPChStatsEntry 21 } + + wlanAPChMulticastTransmittedFrameCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment only when the multicast bit + is set in the destination MAC address of a successfully + transmitted MSDU. When operating as a STA in an ESS, where + these frames are directed to the AP, this implies having + received an acknowledgment to all associated MPDUs. + " + ::= { wlsxWlanAPChStatsEntry 22 } + + wlanAPChFailedCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when an MSDU is not transmitted + successfully due to the number of transmit attempts exceeding + either the dot11ShortRetryLimit or dot11LongRetryLimit. + " + ::= { wlsxWlanAPChStatsEntry 23 } + + wlanAPChRetryCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when an MSDU is successfully + transmitted after one or more retransmissions. + " + ::= { wlsxWlanAPChStatsEntry 24 } + + wlanAPChMultipleRetryCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when an MSDU is successfully + transmitted after more than one retransmission. + " + ::= { wlsxWlanAPChStatsEntry 25 } + + wlanAPChFrameDuplicateCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when a frame is received + that the Sequence Control field indicates is a + duplicate. + " + ::= { wlsxWlanAPChStatsEntry 26 } + + wlanAPChRTSSuccessCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when a CTS is received in + response to an RTS. + " + ::= { wlsxWlanAPChStatsEntry 27 } + + wlanAPChRTSFailureCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when a CTS is not received in + response to an RTS. + " + ::= { wlsxWlanAPChStatsEntry 28 } + + wlanAPChACKFailureCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when an ACK is not received + when expected. + " + ::= { wlsxWlanAPChStatsEntry 29 } + + wlanAPChReceivedFragmentCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall be incremented for each successfully + received MPDU of type Data or Management. + " + ::= { wlsxWlanAPChStatsEntry 30 } + + wlanAPChMulticastReceivedFrameCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when a MSDU is received + with the multicast bit set in the destination + MAC address. + " + ::= { wlsxWlanAPChStatsEntry 31 } + + wlanAPChFCSErrorCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when an FCS error is + detected in a received MPDU. + " + ::= { wlsxWlanAPChStatsEntry 32 } + + wlanAPChTransmittedFrameCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment for each successfully transmitted + MSDU. + " + ::= { wlsxWlanAPChStatsEntry 33 } + + wlanAPChWEPUndecryptableCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This counter shall increment when a frame is received with the + Protected Frame subfield of the Frame Control field set to one and + the WEPOn value for the key mapped to the transmitter's MAC address + indicates that the frame should not have been encrypted or that frame + is discarded due to the receiving STA not implementing the privacy + option. + " + ::= { wlsxWlanAPChStatsEntry 34 } + + wlanAPChRxUtilization OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This is the percentage of time spent by the radio + in receiving packets. + " + ::= { wlsxWlanAPChStatsEntry 35 } + + wlanAPChTxUtilization OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This is the percentage of time spent by the radio + in transmitting packets. + " + ::= { wlsxWlanAPChStatsEntry 36 } + + wlanAPChUtilization OBJECT-TYPE + SYNTAX INTEGER(0..100) + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This is the percentage of time the channel is busy. + " + ::= { wlsxWlanAPChStatsEntry 37 } + +-- AP Wired Stats table + + wlsxWlanAPWiredStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPWiredStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the Wired statistics of all the Access Points + connected to the controller. + " + ::= { wlsxWlanAccessPointStatsGroup 7 } + + wlsxWlanAPWiredStatsEntry OBJECT-TYPE + SYNTAX WlanAPWiredStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point Wired Stats entry" + INDEX {wlanAPMacAddress} + ::= { wlsxWlanAPWiredStatsTable 1 } + + WlanAPWiredStatsEntry ::= + SEQUENCE { + wlanAPWiredRxPkts Counter32, + wlanAPWiredRxDroppedPkts Counter32, + wlanAPWiredRxBytes Counter32, + wlanAPWiredTxBytes Counter32, + wlanAPWiredRxRate Gauge32, + wlanAPWiredTxRate Gauge32 + } + + wlanAPWiredRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total packets received from the + AP wired side. + " + ::= { wlsxWlanAPWiredStatsEntry 1 } + + wlanAPWiredRxDroppedPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total dropped packets received + from the AP wired side. + " + ::= { wlsxWlanAPWiredStatsEntry 2 } + + wlanAPWiredRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes of correct packets + received from the AP wired side. + " + ::= { wlsxWlanAPWiredStatsEntry 3 } + + wlanAPWiredTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes transmitted from + the AP wired side. + " + ::= { wlsxWlanAPWiredStatsEntry 4 } + + wlanAPWiredRxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the data rate (kbyte/s) + received from AP wired side in sampling interval. + " + ::= { wlsxWlanAPWiredStatsEntry 5 } + + wlanAPWiredTxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the data rate (kbyte/s) + transmitted from AP wired side in sampling interval. + " + ::= { wlsxWlanAPWiredStatsEntry 6 } + +-- AP ESSID Stats table + + wlsxWlanAPESSIDStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPESSIDStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the ESSID statistics of all the Access Points + connected to the controller. + " + ::= { wlsxWlanAccessPointStatsGroup 8 } + + wlsxWlanAPESSIDStatsEntry OBJECT-TYPE + SYNTAX WlanAPESSIDStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point ESSID Stats entry" + INDEX {wlanAPMacAddress, wlanESSID} + ::= { wlsxWlanAPESSIDStatsTable 1 } + + WlanAPESSIDStatsEntry ::= + SEQUENCE { + wlanAPESSIDWirelessRxBytes Counter32, + wlanAPESSIDWirelessTxBytes Counter32, + wlanAPESSIDWiredRxBytes Counter32, + wlanAPESSIDWiredTxBytes Counter32 + } + + wlanAPESSIDWirelessRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes of correct packets + received from the AP ESSID wireless side. + " + ::= { wlsxWlanAPESSIDStatsEntry 1 } + + wlanAPESSIDWirelessTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes transmitted + from the AP ESSID wireless side. + " + ::= { wlsxWlanAPESSIDStatsEntry 2 } + + wlanAPESSIDWiredRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes of correct packets + received from the AP ESSID wired side. + " + ::= { wlsxWlanAPESSIDStatsEntry 3 } + + wlanAPESSIDWiredTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes transmitted from + the AP ESSID wired side. + " + ::= { wlsxWlanAPESSIDStatsEntry 4 } + +-- AP Radio Stats table + + wlsxWlanAPRadioStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPRadioStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the Radio statistics of all the Access Points + connected to the controller. + " + ::= { wlsxWlanAccessPointStatsGroup 9 } + + wlsxWlanAPRadioStatsEntry OBJECT-TYPE + SYNTAX WlanAPRadioStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Access Point Radio Stats entry" + INDEX {wlanAPMacAddress, wlanAPRadioNumber} + ::= { wlsxWlanAPRadioStatsTable 1 } + + WlanAPRadioStatsEntry ::= + SEQUENCE { + wlanAPRadioRxPkts Counter32, + wlanAPRadioRxBytes Counter32, + wlanAPRadioTxPkts Counter32, + wlanAPRadioTxBytes Counter32, + wlanAPRadioTxDroppedPkts Counter32, + wlanAPRadioTxErrorPkts Counter32, + wlanAPRadioRxRate Gauge32, + wlanAPRadioTxRate Gauge32, + wlanApRadioAssocReqCount Counter32, + wlanApRadioAssocReqSuccCount Counter32, + wlanApRadioReAssocReqCount Counter32, + wlanApRadioReAssocReqSuccCount Counter32, + wlanAPRadioStationDuration Integer32, + wlanAPRadioAssocSuccPercent Gauge32, + wlanAPRadioTxDataBytes Counter32 + } + + wlanAPRadioRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total packets transmitted + from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 1 } + + wlanAPRadioRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total correct bytes + received from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 2 } + + wlanAPRadioTxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total packets + transmitted from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 3 } + + wlanAPRadioTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total bytes + transmitted from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 4 } + + wlanAPRadioTxDroppedPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the dropped packets transmitted + from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 5 } + + wlanAPRadioTxErrorPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the error packets + transmitted from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 6 } + + wlanAPRadioRxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the data rate (kbyte/s) + received from AP radio wireless side in sampling interval. + " + ::= { wlsxWlanAPRadioStatsEntry 7 } + + wlanAPRadioTxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the data rate (kbyte/s) + transmitted from AP radio wireless side in sampling interval. + " + ::= { wlsxWlanAPRadioStatsEntry 8 } + + wlanApRadioAssocReqCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute indicates the times of associate request on this + radio." + ::= { wlsxWlanAPRadioStatsEntry 9 } + + wlanApRadioAssocReqSuccCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute indicates the times of successful associate request + on this radio." + ::= { wlsxWlanAPRadioStatsEntry 10 } + + wlanApRadioReAssocReqCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute indicates the times of re-associate request on this + radio." + ::= { wlsxWlanAPRadioStatsEntry 11 } + + wlanApRadioReAssocReqSuccCount OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + "This attribute indicates the times of successful re-associate + request on this radio. + " + ::= { wlsxWlanAPRadioStatsEntry 12 } + + wlanAPRadioStationDuration OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total occupied duration, which is + the total duration of user connecting. + " + ::= { wlsxWlanAPRadioStatsEntry 13 } + + wlanAPRadioAssocSuccPercent OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The Association Success Percent. + " + ::= { wlsxWlanAPRadioStatsEntry 14 } + + wlanAPRadioTxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total data bytes + transmitted from the AP radio wireless side. + " + ::= { wlsxWlanAPRadioStatsEntry 15 } + +-- wlsxWlanStationStatsGroup contains all the statistics observed by different +-- Air Monitors attached to this controller. +-- Station Statistics are observed by the Air Monitor for that +-- specific Station. + +-- Station Statistics are grouped into Generic, +-- Rate, Destination Address and Frame Type Stats. + +-- Station Statistics Group contains all the statistics related to +-- a Station. + +-- wlsxWlanStationStatsTable will contain all the aggregate statistics collected +-- for a Station + + wlsxWlanStationStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanStationStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists statistics of all the wireless stations + associated with an AP connected to this controller. + " + ::= { wlsxWlanStationStatsGroup 1} + + wlsxWlanStationStatsEntry OBJECT-TYPE + SYNTAX WlanStationStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Station Stats Entry" + INDEX {wlanStaPhyAddress} + ::= { wlsxWlanStationStatsTable 1 } + + WlanStationStatsEntry ::= + SEQUENCE { + wlanStaChannelNum Unsigned32, + wlanStaTxPkts Counter32, + wlanStaTxBytes Counter32, + wlanStaRxPkts Counter32, + wlanStaRxBytes Counter32, + wlanStaTxBCastPkts Counter32, + wlanStaRxBCastBytes Counter32, + wlanStaTxMCastPkts Counter32, + wlanStaRxMCastBytes Counter32, + wlanStaDataPkts Counter32, + wlanStaCtrlPkts Counter32, + wlanStaNumAssocRequests Counter32, + wlanStaNumAuthRequests Counter32, + wlanStaTxDeauthentications Counter32, + wlanStaRxDeauthentications Counter32, + wlanStaFrameRetryRate Integer32, + wlanStaFrameLowSpeedRate Integer32, + wlanStaFrameNonUnicastRate Integer32, + wlanStaFrameFragmentationRate Integer32, + wlanStaFrameBandwidthRate Integer32, + wlanStaFrameRetryErrorRate Integer32, + wlanStaFrameReceiveErrorRate Integer32, + wlanStaTxBCastBytes Counter32, + wlanStaTxMCastBytes Counter32, + wlanStaTxBytes64 Counter64, + wlanStaRxBytes64 Counter64 + } + + wlanStaChannelNum OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The channel the station is currently using. + " + ::= { wlsxWlanStationStatsEntry 1 } + + wlanStaTxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 2 } + + wlanStaTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 3 } + + wlanStaRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of packets received by this station. + " + ::= { wlsxWlanStationStatsEntry 4 } + + wlanStaRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes received by this station. + " + ::= { wlsxWlanStationStatsEntry 5 } + + wlanStaTxBCastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast packets transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 6 } + + wlanStaRxBCastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of broadcast bytes transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 7 } + + wlanStaTxMCastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of multicast packets transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 8 } + + wlanStaRxMCastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of multicast bytes transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 9 } + + wlanStaDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of Data packets transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 10 } + + wlanStaCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of Control packets transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 11 } + + wlanStaNumAssocRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Association requests transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 12 } + + wlanStaNumAuthRequests OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Authentication requests transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 13 } + + wlanStaTxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Deauthentication frames transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 14 } + + wlanStaRxDeauthentications OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of Deauthentication frames received by this station. + " + ::= { wlsxWlanStationStatsEntry 15 } + + wlanStaFrameRetryRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of retry + packets as a percentage of the total packets + transmitted and received by this station. + " + ::= { wlsxWlanStationStatsEntry 16 } + + wlanStaFrameLowSpeedRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of low data rate (<= 18Mbps for A/G bands and <=2Mbps + for B band) packets as a percentage of the total packets + transmitted and received by this station. + " + ::= { wlsxWlanStationStatsEntry 17 } + + wlanStaFrameNonUnicastRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast and multicast + packets as a percentage of the total packets + transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 18 } + + wlanStaFrameFragmentationRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of fragments + as a percentage of the total packets + transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 19 } + + wlanStaFrameBandwidthRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The bandwidth of this station in Kbps. + " + ::= { wlsxWlanStationStatsEntry 20 } + + wlanStaFrameRetryErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS deprecated + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received by this station. + " + ::= { wlsxWlanStationStatsEntry 21 } + + wlanStaFrameReceiveErrorRate OBJECT-TYPE + SYNTAX Integer32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of error packets + as a percentage of the total packets + received by this station. + " + ::= { wlsxWlanStationStatsEntry 22 } + + wlanStaTxBCastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of broadcast bytes transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 23 } + + wlanStaTxMCastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of multicast bytes transmitted by this station. + " + ::= { wlsxWlanStationStatsEntry 24 } + + wlanStaTxBytes64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes transmitted by this station, 64-bit value + " + ::= { wlsxWlanStationStatsEntry 25 } + + wlanStaRxBytes64 OBJECT-TYPE + SYNTAX Counter64 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The number of bytes received by this station, 64-bit value + " + ::= { wlsxWlanStationStatsEntry 26 } + + +-- This table breaks down the Station statistics into different +-- rate categories. + + wlsxWlanStaRateStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanStaRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for a station + represented in terms of rate categories. + " + ::= { wlsxWlanStationStatsGroup 2} + + wlsxWlanStaRateStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanStaRateStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Data rate based packet and byte count entry for a station" + INDEX {wlanStaPhyAddress} + ::= { wlsxWlanStaRateStatsTable 1 } + + WlsxWlanStaRateStatsEntry ::= + SEQUENCE { + wlanStaTxPktsAt1Mbps Counter32, + wlanStaTxBytesAt1Mbps Counter32, + wlanStaTxPktsAt2Mbps Counter32, + wlanStaTxBytesAt2Mbps Counter32, + wlanStaTxPktsAt5Mbps Counter32, + wlanStaTxBytesAt5Mbps Counter32, + wlanStaTxPktsAt11Mbps Counter32, + wlanStaTxBytesAt11Mbps Counter32, + wlanStaTxPktsAt6Mbps Counter32, + wlanStaTxBytesAt6Mbps Counter32, + wlanStaTxPktsAt12Mbps Counter32, + wlanStaTxBytesAt12Mbps Counter32, + wlanStaTxPktsAt18Mbps Counter32, + wlanStaTxBytesAt18Mbps Counter32, + wlanStaTxPktsAt24Mbps Counter32, + wlanStaTxBytesAt24Mbps Counter32, + wlanStaTxPktsAt36Mbps Counter32, + wlanStaTxBytesAt36Mbps Counter32, + wlanStaTxPktsAt48Mbps Counter32, + wlanStaTxBytesAt48Mbps Counter32, + wlanStaTxPktsAt54Mbps Counter32, + wlanStaTxBytesAt54Mbps Counter32, + wlanStaRxPktsAt1Mbps Counter32, + wlanStaRxBytesAt1Mbps Counter32, + wlanStaRxPktsAt2Mbps Counter32, + wlanStaRxBytesAt2Mbps Counter32, + wlanStaRxPktsAt5Mbps Counter32, + wlanStaRxBytesAt5Mbps Counter32, + wlanStaRxPktsAt11Mbps Counter32, + wlanStaRxBytesAt11Mbps Counter32, + wlanStaRxPktsAt6Mbps Counter32, + wlanStaRxBytesAt6Mbps Counter32, + wlanStaRxPktsAt12Mbps Counter32, + wlanStaRxBytesAt12Mbps Counter32, + wlanStaRxPktsAt18Mbps Counter32, + wlanStaRxBytesAt18Mbps Counter32, + wlanStaRxPktsAt24Mbps Counter32, + wlanStaRxBytesAt24Mbps Counter32, + wlanStaRxPktsAt36Mbps Counter32, + wlanStaRxBytesAt36Mbps Counter32, + wlanStaRxPktsAt48Mbps Counter32, + wlanStaRxBytesAt48Mbps Counter32, + wlanStaRxPktsAt54Mbps Counter32, + wlanStaRxBytesAt54Mbps Counter32, + wlanStaTxPktsAt9Mbps Counter32, + wlanStaTxBytesAt9Mbps Counter32, + wlanStaRxPktsAt9Mbps Counter32, + wlanStaRxBytesAt9Mbps Counter32 + } + + wlanStaTxPktsAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 1Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 1 } + + wlanStaTxBytesAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 1Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 2 } + + wlanStaTxPktsAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 2Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 3 } + + wlanStaTxBytesAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 2Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 4 } + + wlanStaTxPktsAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 5Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 5 } + + wlanStaTxBytesAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 5Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 6 } + + wlanStaTxPktsAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 11Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 7 } + + wlanStaTxBytesAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 11Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 8 } + + wlanStaTxPktsAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 6Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 9 } + + wlanStaTxBytesAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 6Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 10 } + + wlanStaTxPktsAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 12Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 11 } + + wlanStaTxBytesAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 12Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 12 } + + wlanStaTxPktsAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 18Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 13 } + + wlanStaTxBytesAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 18Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 14 } + + wlanStaTxPktsAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 24Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 15 } + + wlanStaTxBytesAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 24Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 16 } + + wlanStaTxPktsAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 36Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 17 } + + wlanStaTxBytesAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 36Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 18 } + + wlanStaTxPktsAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 48Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 19 } + + wlanStaTxBytesAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 48Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 20 } + + wlanStaTxPktsAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 54Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 21 } + + wlanStaTxBytesAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 54Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 22 } + + wlanStaRxPktsAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 1Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 23 } + + wlanStaRxBytesAt1Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 1Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 24 } + + wlanStaRxPktsAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 2Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 25 } + + wlanStaRxBytesAt2Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 2Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 26 } + + wlanStaRxPktsAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 5Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 27 } + + wlanStaRxBytesAt5Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 5Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 28 } + + wlanStaRxPktsAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 11Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 29 } + + wlanStaRxBytesAt11Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 11Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 30 } + + wlanStaRxPktsAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 6Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 31 } + + wlanStaRxBytesAt6Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 6Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 32 } + + wlanStaRxPktsAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 12Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 33 } + + wlanStaRxBytesAt12Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 12Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 34 } + + wlanStaRxPktsAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 18Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 35 } + + wlanStaRxBytesAt18Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 18Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 36 } + + wlanStaRxPktsAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 24Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 37 } + + wlanStaRxBytesAt24Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 24Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 38 } + + wlanStaRxPktsAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 36Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 39 } + + wlanStaRxBytesAt36Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 36Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 40 } + + wlanStaRxPktsAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 48Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 41 } + + wlanStaRxBytesAt48Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 48Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 42 } + + wlanStaRxPktsAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 54Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 43 } + + wlanStaRxBytesAt54Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 54Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 44 } + + wlanStaTxPktsAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Transmitted by the + station at 9Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 45 } + + wlanStaTxBytesAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Transmitted by the + station at 9Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 46 } + + + wlanStaRxPktsAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Packets Received by the + station at 9Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 47 } + + wlanStaRxBytesAt9Mbps OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Octets Received by the + station at 9Mbps rate. + " + ::= { wlsxWlanStaRateStatsEntry 48 } + +-- This table breaks down the Station statistics based on the +-- Destination Address Types. + + wlsxWlanStaDATypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanStaDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for a station but + but broken down in terms of Destination Address Type. + " + ::= { wlsxWlanStationStatsGroup 3} + + wlsxWlanStaDATypeStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanStaDATypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + Destination Address based packet and byte count entry for a + station + " + INDEX {wlanStaPhyAddress} + ::= { wlsxWlanStaDATypeStatsTable 1 } + + WlsxWlanStaDATypeStatsEntry ::= + SEQUENCE { + wlanStaTxDABroadcastPkts Counter32 , + wlanStaTxDABroadcastBytes Counter32 , + wlanStaTxDAMulticastPkts Counter32 , + wlanStaTxDAMulticastBytes Counter32 , + wlanStaTxDAUnicastPkts Counter32 , + wlanStaTxDAUnicastBytes Counter32 + + } + + wlanStaTxDABroadcastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Broadcast packets + transmitted by this Station. + " + ::= { wlsxWlanStaDATypeStatsEntry 1 } + + wlanStaTxDABroadcastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Broadcast Bytes + transmitted by this Station. + " + ::= { wlsxWlanStaDATypeStatsEntry 2 } + + wlanStaTxDAMulticastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Multicast packets + transmitted by this station. + " + ::= { wlsxWlanStaDATypeStatsEntry 3 } + + wlanStaTxDAMulticastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of Multicast Bytes + transmitted by this station. + " + ::= { wlsxWlanStaDATypeStatsEntry 4 } + + wlanStaTxDAUnicastPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total of Unicast packets + transmitted by this station. + " + ::= { wlsxWlanStaDATypeStatsEntry 5 } + + wlanStaTxDAUnicastBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the total of Unicast Bytes + transmitted by this station. + " + ::= { wlsxWlanStaDATypeStatsEntry 6 } + +-- This table breaks down the Station statistics based on the +-- the Type of the Packet. + + wlsxWlanStaFrameTypeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanStaFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for stations + but broken down into different Frame Types. + " + ::= { wlsxWlanStationStatsGroup 4} + + wlsxWlanStaFrameTypeStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanStaFrameTypeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Frame Type based packet and byte count entry for a station" + INDEX {wlanStaPhyAddress} + ::= { wlsxWlanStaFrameTypeStatsTable 1 } + + WlsxWlanStaFrameTypeStatsEntry ::= + SEQUENCE { + wlanStaTxMgmtPkts Counter32 , + wlanStaTxMgmtBytes Counter32 , + wlanStaTxCtrlPkts Counter32 , + wlanStaTxCtrlBytes Counter32 , + wlanStaTxDataPkts Counter32 , + wlanStaTxDataBytes Counter32 , + wlanStaRxMgmtPkts Counter32 , + wlanStaRxMgmtBytes Counter32 , + wlanStaRxCtrlPkts Counter32 , + wlanStaRxCtrlBytes Counter32 , + wlanStaRxDataPkts Counter32 , + wlanStaRxDataBytes Counter32 + + } + + wlanStaTxMgmtPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the Transmitted Management packets + from a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 1 } + + wlanStaTxMgmtBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the Transmitted Management Bytes + from a station + " + ::= { wlsxWlanStaFrameTypeStatsEntry 2 } + + wlanStaTxCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the Transmitted Control packets + from a station + " + ::= { wlsxWlanStaFrameTypeStatsEntry 3 } + + wlanStaTxCtrlBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the Transmitted Control Bytes + from a station + " + ::= { wlsxWlanStaFrameTypeStatsEntry 4 } + + wlanStaTxDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the Transmitted Data packets + from a station + " + ::= { wlsxWlanStaFrameTypeStatsEntry 5 } + + wlanStaTxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the Transmitted Data Bytes + observed on this channel. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 6 } + + wlanStaRxMgmtPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Management packets + at a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 7 } + + wlanStaRxMgmtBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Management Bytes + at a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 8 } + + wlanStaRxCtrlPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Control packets + at a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 9 } + + wlanStaRxCtrlBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Control Bytes + at a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 10 } + + wlanStaRxDataPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Data packets + at a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 11 } + + wlanStaRxDataBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of received Data Bytes + at a station. + " + ::= { wlsxWlanStaFrameTypeStatsEntry 12 } + + +-- This table breaks down the Station statistics received or transmitted by a +-- station into packet size buckets. + + wlsxWlanStaPktSizeStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlsxWlanStaPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This table contains all the Packet and Byte Counts for stations + but broken down into different Packet Sizes. + " + ::= { wlsxWlanStationStatsGroup 5} + + wlsxWlanStaPktSizeStatsEntry OBJECT-TYPE + SYNTAX WlsxWlanStaPktSizeStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Packet Size based packet count entry for a station" + INDEX {wlanStaPhyAddress} + ::= { wlsxWlanStaPktSizeStatsTable 1 } + + WlsxWlanStaPktSizeStatsEntry ::= + SEQUENCE { + wlanStaTxPkts63Bytes Counter32 , + wlanStaTxPkts64To127 Counter32 , + wlanStaTxPkts128To255 Counter32 , + wlanStaTxPkts256To511 Counter32 , + wlanStaTxPkts512To1023 Counter32 , + wlanStaTxPkts1024To1518 Counter32 , + wlanStaRxPkts63Bytes Counter32 , + wlanStaRxPkts64To127 Counter32 , + wlanStaRxPkts128To255 Counter32 , + wlanStaRxPkts256To511 Counter32 , + wlanStaRxPkts512To1023 Counter32 , + wlanStaRxPkts1024To1518 Counter32 + + } + + wlanStaTxPkts63Bytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were less than 64 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 1 } + + wlanStaTxPkts64To127 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 64 and 127 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 2 } + + wlanStaTxPkts128To255 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 128 and 255 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 3 } + + wlanStaTxPkts256To511 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 256 and 511 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 4 } + + wlanStaTxPkts512To1023 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 512 and 1023 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 5 } + + wlanStaTxPkts1024To1518 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets transmitted by the + station that were between 1024 and 1518 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 6 } + + wlanStaRxPkts63Bytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were less than 64 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 7 } + + wlanStaRxPkts64To127 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 64 and 127 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 8 } + + wlanStaRxPkts128To255 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 128 and 255 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 9 } + + wlanStaRxPkts256To511 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 256 and 511 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 10 } + + wlanStaRxPkts512To1023 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 512 and 1023 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 11 } + + wlanStaRxPkts1024To1518 OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the number of packets Received by the + station that were between 1024 and 1518 bytes long. + " + ::= { wlsxWlanStaPktSizeStatsEntry 12 } + +-- wlsxWlanSwitchStatsGroup contains all statistics related to +-- the whole network controlled by the controller. + +-- wlsxWlanESSIDStatsTable contains all statistics collected +-- for an ESSID on the switch + + wlsxWlanESSIDStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanESSIDStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists statistics of the ESSID + controlled by this controller. + " + ::= { wlsxWlanSwitchStatsGroup 1} + + wlsxWlanESSIDStatsEntry OBJECT-TYPE + SYNTAX WlanESSIDStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "ESSID Stats Entry" + INDEX {wlanESSID} + ::= { wlsxWlanESSIDStatsTable 1 } + + WlanESSIDStatsEntry ::= + SEQUENCE { + wlanESSIDRxPkts Counter32, + wlanESSIDRxDroppedPkts Counter32, + wlanESSIDRxRetryPkts Counter32, + wlanESSIDTxPkts Counter32, + wlanESSIDTxDroppedPkts Counter32, + wlanESSIDTxRetryPkts Counter32, + wlanESSIDTxErrorPkts Counter32, + wlanESSIDRxRate Gauge32, + wlanESSIDTxRate Gauge32, + wlanESSIDWiredRxPkts Counter32, + wlanESSIDWiredRxBytes Counter32, + wlanESSIDWiredTxBytes Counter32 + } + + wlanESSIDRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of packets on the ESSID uplink channel + of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 1 } + + wlanESSIDRxDroppedPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of dropped packets on the ESSID uplink + channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 2 } + + wlanESSIDRxRetryPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of re-transmission packets on the ESSID + uplink channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 3 } + + wlanESSIDTxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of packets on the ESSID downlink channel + of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 4 } + + wlanESSIDTxDroppedPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of dropped packets on the ESSID downlink + channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 5 } + + wlanESSIDTxRetryPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of re-transmission packets on the ESSID + downlink channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 6 } + + wlanESSIDTxErrorPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of error packets on the ESSID downlink + channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 7 } + + wlanESSIDRxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The data rate received from the ESSID in sampling interval, + unit is kbyte/s. + " + ::= { wlsxWlanESSIDStatsEntry 8 } + + wlanESSIDTxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The data rate transmitted from the ESSID in sampling interval, + unit is kbyte/s. + " + ::= { wlsxWlanESSIDStatsEntry 9 } + + wlanESSIDWiredRxPkts OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of packets on the ESSID uplink + channel of wired side. + " + ::= { wlsxWlanESSIDStatsEntry 10 } + + wlanESSIDWiredRxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of bytes on the ESSID uplink + channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 11 } + + wlanESSIDWiredTxBytes OBJECT-TYPE + SYNTAX Counter32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The total number of bytes on the ESSID downlink + channel of wireless side. + " + ::= { wlsxWlanESSIDStatsEntry 12 } + +-- wlsxWlanEthStatsTable will contain all the statistics collected +-- for all ethernet ports + + wlsxWlanEthStatsTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanEthStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists statistics of all ethernet ports + of this controller. + " + ::= { wlsxWlanSwitchStatsGroup 2} + + wlsxWlanEthStatsEntry OBJECT-TYPE + SYNTAX WlanEthStatsEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "Ethernet Port Stats Entry" + INDEX {ifIndex} + ::= { wlsxWlanEthStatsTable 1 } + + WlanEthStatsEntry ::= + SEQUENCE { + wlanEthRxRate Gauge32, + wlanEthTxRate Gauge32 + } + + wlanEthRxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The data rate received from the ethernet port in sampling interval, + unit is kbyte/s. + " + ::= { wlsxWlanEthStatsEntry 1 } + + wlanEthTxRate OBJECT-TYPE + SYNTAX Gauge32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The data rate transmitted from the ethernet port in sampling interval, + unit is kbyte/s. + " + ::= { wlsxWlanEthStatsEntry 2 } + +-- wlsxSSIDConfigGroup contains all configuration related to +-- the SSID controlled by the controller. + +-- wlsxSSIDConfigTable contains the global configuration of the SSID + + wlsxSSIDConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanSSIDConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the configuration of the SSID. + Note: Currently, this table doesn't return any data. + " + ::= { wlsxSSIDConfigGroup 1} + + wlsxSSIDConfigEntry OBJECT-TYPE + SYNTAX WlanSSIDConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "AP Configuration Entry" + INDEX {wlanAPMacAddress, wlanAPRadioNumber, wlanESSID, wlanESSIDIndex} + ::= { wlsxSSIDConfigTable 1 } + + WlanSSIDConfigEntry ::= + SEQUENCE { + wlanESSIDIndex Integer32, + wlanSSIDConfigHideSSID TruthValue, + wlanSSIDConfigNumStaAllowed Unsigned32, + wlanSSIDConfigWmmBeDscp Unsigned32, + wlanSSIDConfigWmmBkDscp Unsigned32, + wlanSSIDConfigWmmViDscp Unsigned32, + wlanSSIDConfigWmmVoDscp Unsigned32 + } + + wlanESSIDIndex OBJECT-TYPE + SYNTAX Integer32(1..16) + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This attribute indicates the index of ESSID. We support up to 16 ESSIDs. + " + ::= { wlsxSSIDConfigEntry 1 } + + wlanSSIDConfigHideSSID OBJECT-TYPE + SYNTAX TruthValue + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates if SSID is hidden or not. + " + ::= { wlsxSSIDConfigEntry 2 } + + wlanSSIDConfigNumStaAllowed OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the maximum number of stations that are allowed to access into the network. + " + ::= { wlsxSSIDConfigEntry 3 } + + wlanSSIDConfigWmmBeDscp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the QoS priority of best-effort service. + " + ::= { wlsxSSIDConfigEntry 4 } + + wlanSSIDConfigWmmBkDscp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the QoS priority of background service. + " + ::= { wlsxSSIDConfigEntry 5 } + + wlanSSIDConfigWmmViDscp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the QoS priority of video service. + " + ::= { wlsxSSIDConfigEntry 6 } + + wlanSSIDConfigWmmVoDscp OBJECT-TYPE + SYNTAX Unsigned32 + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + This attribute indicates the QoS priority of voice service. + " + ::= { wlsxSSIDConfigEntry 7 } + +-- wlsxAPConfigGroup contains all configuration related to +-- the APs controlled by the controller. + +-- wlsxAPConfigTable contains the global configuration of the AP + + wlsxAPConfigTable OBJECT-TYPE + SYNTAX SEQUENCE OF WlanAPConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + " + This Table lists the configuration of the Access Point. + " + ::= { wlsxAPConfigGroup 1} + + wlsxAPConfigEntry OBJECT-TYPE + SYNTAX WlanAPConfigEntry + MAX-ACCESS not-accessible + STATUS current + DESCRIPTION + "AP Configuration Entry" + INDEX {wlanAPMacAddress} + ::= { wlsxAPConfigTable 1 } + + WlanAPConfigEntry ::= + SEQUENCE { + wlanAPConfigNetmask IpAddress, + wlanAPConfigGateway IpAddress + } + + wlanAPConfigNetmask OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The netmask of AP IP Address. + " + ::= { wlsxAPConfigEntry 1 } + + wlanAPConfigGateway OBJECT-TYPE + SYNTAX IpAddress + MAX-ACCESS read-only + STATUS current + DESCRIPTION + " + The gateway of the AP. + " + ::= { wlsxAPConfigEntry 2 } + + --Trap Definition + wlsxRAPActiveUplink NOTIFICATION-TYPE + OBJECTS {wlanAPActiveUplink, wlanAPMacAddress} + STATUS current + DESCRIPTION + "A trap which indicates the RAP Active Uplink" + ::= { wlsxRAPTraps 1 } +END diff --git a/pandora_console/attachment/mibs/oracle-database.mib b/pandora_console/attachment/mibs/oracle-database.mib new file mode 100644 index 0000000000..723efeb6f5 --- /dev/null +++ b/pandora_console/attachment/mibs/oracle-database.mib @@ -0,0 +1,1305 @@ + +RDBMS-MIB DEFINITIONS ::= BEGIN + + +IMPORTS + AutonomousType + FROM RFC1316-MIB + TRAP-TYPE + FROM RFC-1215 + DisplayString + FROM RFC1213-MIB + OBJECT-TYPE + FROM RFC-1212 + Gauge, Counter + FROM RFC1155-SMI + mib-2 + FROM RFC1213-MIB + applGroup, applIndex + FROM APPLICATION-MIB; + +DateAndTime ::= OCTET STRING (SIZE (8 .. 11)) + +rdbmsMIB OBJECT IDENTIFIER ::= { mib-2 39 } + +rdbmsObjects OBJECT IDENTIFIER ::= { rdbmsMIB 1 } + +rdbmsDbTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of databases installed on a system." + ::= { rdbmsObjects 1 } + +rdbmsDbEntry OBJECT-TYPE + SYNTAX RdbmsDbEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single database on the host. Whether a + particular database is represented by a row in rdbmsDbTable + may be dependent on the activity level of that database, + according to the product's implementation. An instance of + rdbmsRelState having the value active, other, or restricted + implies that an entry, corresponding to that instance, will + be present." + INDEX { rdbmsDbIndex } + ::= { rdbmsDbTable 1 } + +RdbmsDbEntry ::= + SEQUENCE { + rdbmsDbIndex + INTEGER, + + rdbmsDbPrivateMibOID + OBJECT IDENTIFIER, + + rdbmsDbVendorName + DisplayString, + + rdbmsDbName + DisplayString, + + rdbmsDbContact + DisplayString + } + +rdbmsDbIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A numeric index, unique among all the databases from all + products on this host. This value is a surrogate for the + conceptually unique key, which is {PrivateMibOID, + databasename}" + ::= { rdbmsDbEntry 1 } + +rdbmsDbPrivateMibOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The authoritative identification for the private MIB for + this database, presumably based on the vendor, e.g., { + enterprises 111 } for Oracle + databases, {enterprises 757 } for + Ingres databases, { enterprises 897 } for Sybase databases, etc. + + If no OBJECT IDENTIFIER exists for the private MIB, attempts + to access this object will return noSuchName (SNMPv1) + or noSuchInstance (SNMPv2)." + ::= { rdbmsDbEntry 2 } + +rdbmsDbVendorName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the vendor whose RDBMS manages this database, + for informational purposes." + ::= { rdbmsDbEntry 3 } + +rdbmsDbName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of this database, in a product specific format. The + product may need to qualify the name in some way to resolve + conflicts if it is possible for a database name to be + duplicated on a host. It might be necessary to construct a + hierarchical name embedding the RDBMS instance/installation + on the host, and/or the owner of the database. For instance, + '/test-installation/database-owner/database-name'." + ::= { rdbmsDbEntry 4 } + +rdbmsDbContact OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The textual identification of the contact person for this + managed database, together with information on how to contact + this person. + + Note: if there is no server associated with this database, an + agent may need to keep this in other persistent storage, + e.g., a configuration file. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbEntry 5 } + +rdbmsDbInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of additional information about databases present + on the host." + ::= { rdbmsObjects 2 } + +rdbmsDbInfoEntry OBJECT-TYPE + SYNTAX RdbmsDbInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information that must be present if the database is actively + opened. If the database is not actively opened, then + attempts to access corresponding instances in this table may + result in either noSuchName (SNMPv1) or noSuchInstance + (SNMPv2). 'Actively opened' means at least one of the + rdbmsRelState entries for this database in the rdbmsRelTable + is active(2)." + INDEX { rdbmsDbIndex } + ::= { rdbmsDbInfoTable 1 } + +RdbmsDbInfoEntry ::= + SEQUENCE { + rdbmsDbInfoProductName + DisplayString, + + rdbmsDbInfoVersion + DisplayString, + + rdbmsDbInfoSizeUnits + INTEGER, + + rdbmsDbInfoSizeAllocated + INTEGER, + + rdbmsDbInfoSizeUsed + INTEGER, + + rdbmsDbInfoLastBackup + DateAndTime + } + +rdbmsDbInfoProductName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The textual product name of the server that created or last + restructured this database. The format is product specific." + ::= { rdbmsDbInfoEntry 1 } + +rdbmsDbInfoVersion OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The version number of the server that created or last + restructured this database. The format is product specific." + ::= { rdbmsDbInfoEntry 2 } + +rdbmsDbInfoSizeUnits OBJECT-TYPE + SYNTAX INTEGER { + bytes(1), + kbytes(2), + mbytes(3), + gbytes(4), + tbytes(5) +} + ACCESS read-only + STATUS mandatory + DESCRIPTION + "Identification of the units used to measure the size of this + database in rdbmsDbInfoSizeAllocated and rdbmsDbInfoSizeUsed. + bytes(1) indicates individual bytes, kbytes(2) indicates + units of kilobytes, mbytes(3) indicates units of megabytes, + gbytes(4) indicates units of gigabytes, and tbytes(5) + indicates units of terabytes. All are binary multiples -- 1K + = 1024. If writable, changes here are reflected in the get + values of the associated objects." + ::= { rdbmsDbInfoEntry 3 } + +rdbmsDbInfoSizeAllocated OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The estimated size of this database (in + rdbmsDbInfoSizeUnits), which is the disk space that has been + allocated to it and is no longer available to users on this + host. rdbmsDbInfoSize does not necessarily indicate the + amount of space actually in use for database data. Some + databases may support extending allocated size, and others + may not. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbInfoEntry 4 } + +rdbmsDbInfoSizeUsed OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The estimated size of this database, in rdbmsDbInfoSizeUnits, + which is actually in use for database data." + ::= { rdbmsDbInfoEntry 5 } + +rdbmsDbInfoLastBackup OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time that the latest complete or partial backup + of the database was taken. If a database has never been + backed up, then attempts to access this object will + result in either noSuchName (SNMPv1) or noSuchInstance + (SNMPv2)." + ::= { rdbmsDbInfoEntry 6 } + +rdbmsDbParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of configuration parameters for a database. + Entries should be populated according to the following + guidelines: + (1) The value should be specified through administrative + (human) intervention. + (2) It should be configured on a per-database basis. + (3) One of the following is true: + (a) The parameter has a non-numeric value; + (b) The current value is numeric, but it only changes due + to human intervention; + (c) The current value is numeric and dynamic, but the + RDBMS does not track access/allocation failures + related to the parameter; + (d) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, but the failure has no + significant impact on RDBMS performance or + availability. + (e) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, the failure has + significant impact on RDBMS performance or + availability, and is shown in the + rdbmsDbLimitedResource table." + ::= { rdbmsObjects 3 } + +rdbmsDbParamEntry OBJECT-TYPE + SYNTAX RdbmsDbParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single configuration parameter for a database. + Parameters with single values have a subindex value of one. + If the parameter is naturally considered to contain a + variable number of members of a class, e.g. members of the + DBA user group, or files which are part of the database, then + it must be presented as a set of rows. If, on the other + hand, the parameter represents a set of choices from a class, + e.g. the permissions on a file or the options chosen out of + the set of all options allowed, AND is guaranteed to always + fit in the 255 character length of a DisplayString, then it + may be presented as a comma separated list with a subindex + value of one. Zero may not be used as a subindex value. + + If the database is not actively opened, then attempts + to access corresponding instances in this table may result in + either noSuchName (SNMPv1) or noSuchInstance (SNMPv2). + 'Actively opened' means at least one of the + rdbmsRelState entries for this database in the rdbmsRelTable + is active(2)." + INDEX { rdbmsDbIndex, rdbmsDbParamName, rdbmsDbParamSubIndex } + ::= { rdbmsDbParamTable 1 } + +RdbmsDbParamEntry ::= + SEQUENCE { + rdbmsDbParamName + DisplayString, + + rdbmsDbParamSubIndex + INTEGER, + + rdbmsDbParamID + AutonomousType, + + rdbmsDbParamCurrValue + DisplayString, + + rdbmsDbParamComment + DisplayString + } + +rdbmsDbParamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of a configuration parameter for a database. This + name is product-specific. The length is limited to 64 + characters to constrain the number of sub-identifiers needed + for instance identification (and to minimize network + traffic)." + ::= { rdbmsDbParamEntry 1 } + +rdbmsDbParamSubIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The subindex value for this parameter. If the parameter is + naturally considered to contain a variable number of members + of a class, e.g. members of the DBA user group, or files + which are part of the database, then it must be presented as + a set of rows. If, on the other hand, the parameter + represents a set of choices from a class, e.g. the + permissions on a file or the options chosen out of the set of + all options allowed, AND is guaranteed to always fit in the + 255 character length of a DisplayString, then it may be + presented as a comma separated list with a subindex value of + one. Zero may not be used as a value." + ::= { rdbmsDbParamEntry 2 } + +rdbmsDbParamID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the parameter which may be described in some other + MIB (e.g., an enterprise-specific MIB module). If there is + no ID for this rdbmsDbParamName, attempts to access this + object will return noSuchName (SNMPv1) or noSuchInstance + (SNMPv2)." + ::= { rdbmsDbParamEntry 3 } + +rdbmsDbParamCurrValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value for a configuration parameter now in effect, the + actual setting for the database. While there may multiple + values in the temporal domain of interest (for instance, the + value to take effect at the next restart), this is the + current setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbParamEntry 4 } + +rdbmsDbParamComment OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Annotation which describes the purpose of a configuration + parameter or the reason for a particular parameter's + setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbParamEntry 5 } + +rdbmsDbLimitedResourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsDbLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of limited resources that are kept per-database." + ::= { rdbmsObjects 4 } + +rdbmsDbLimitedResourceEntry OBJECT-TYPE + SYNTAX RdbmsDbLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single limited resource kept per-database. + A limited resource has maximum use determined by a parameter + that might or might not be changeable at run time, or visible + in the rdbmsDbParamTable. Examples would be the number of + available locks, or disk space on a partition. Arrays of + resources are supported through an integer sub index, which + should have the value of one for single-instance names. + + Limited resources that are shared across databases, are best + put in the rdbmsSvrLimitedResourceTable instead of this one. + If the database is not actively opened, then attempts to + access corresponding instances in this table may result in + either noSuchName (SNMPv1) or noSuchInstance (SNMPv2). + 'Actively opened' means at least one of the rdbmsRelState + entries for this database in the rdbmsRelTable is active(2)." + INDEX { rdbmsDbIndex, rdbmsDbLimitedResourceName } + ::= { rdbmsDbLimitedResourceTable 1 } + +RdbmsDbLimitedResourceEntry ::= + SEQUENCE { + rdbmsDbLimitedResourceName + DisplayString, + + rdbmsDbLimitedResourceID + AutonomousType, + + rdbmsDbLimitedResourceLimit + INTEGER, + + rdbmsDbLimitedResourceCurrent + INTEGER, + + rdbmsDbLimitedResourceHighwater + INTEGER, + + rdbmsDbLimitedResourceFailures + Counter, + + rdbmsDbLimitedResourceDescription + DisplayString + } + +rdbmsDbLimitedResourceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of the resource, for instance 'global locks' or + 'locks for the FOO database', or 'data space on /dev/rdsk/5s0 + for FOO'. The length is limited to 64 characters to constrain + the number of sub-identifiers needed for instance + identification (and to minimize network traffic)." + ::= { rdbmsDbLimitedResourceEntry 1 } + +rdbmsDbLimitedResourceID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the resource which may be described in some other + MIB (e.g., an enterprise-specific MIB module). If there is + no ID for this rdbmsDbLimitedResourceName, attempts to access + this object will return noSuchName (SNMPv1) or noSuchInstance + (SNMPv2)." + ::= { rdbmsDbLimitedResourceEntry 2 } + +rdbmsDbLimitedResourceLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum value the resource use may attain. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbLimitedResourceEntry 3 } + +rdbmsDbLimitedResourceCurrent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value for the resource." + ::= { rdbmsDbLimitedResourceEntry 4 } + +rdbmsDbLimitedResourceHighwater OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum value of the resource seen since applUpTime + was reset for the earliest server which has the database + actively opened. + + If there are two servers with the database open, and the + oldest one dies, the proper way to invalidate the value is by + resetting sysUpTime." + ::= { rdbmsDbLimitedResourceEntry 5 } + +rdbmsDbLimitedResourceFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the system wanted to exceed the limit of + the resource since applUpTime was reset for the earliest + server which has the database actively opened. + + If there are two servers with the DB open, and the + oldest one dies, the proper way to invalidate the value is by + resetting sysUpTime." + ::= { rdbmsDbLimitedResourceEntry 6 } + +rdbmsDbLimitedResourceDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A description of the resource and the meaning of the integer + units used for Limit, Current, and Highwater. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsDbLimitedResourceEntry 7 } + +rdbmsSrvTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of database servers running or installed + on a system." + ::= { rdbmsObjects 5 } + +rdbmsSrvEntry OBJECT-TYPE + SYNTAX RdbmsSrvEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single database server. A server is an + independent entity that provides access to one or more + databases. Failure of one does not affect access to + databases through any other servers. There might be one or + more servers providing access to a database. A server may be + a 'process' or collection of 'processes', as interpreted by + the product." + INDEX { applIndex } + ::= { rdbmsSrvTable 1 } + +RdbmsSrvEntry ::= + SEQUENCE { + rdbmsSrvPrivateMibOID + OBJECT IDENTIFIER, + + rdbmsSrvVendorName + DisplayString, + + rdbmsSrvProductName + DisplayString, + + rdbmsSrvContact + DisplayString + } + +rdbmsSrvPrivateMibOID OBJECT-TYPE + SYNTAX OBJECT IDENTIFIER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The authoritative identification for the private MIB for this + server, presumably based on the vendor, e.g., { enterprises + 111 } for Oracle servers, { + enterprises 757 } for Ingres + servers, { enterprises 897 } for + Sybase servers, etc. + + If no OBJECT IDENTIFIER exists for the private MIB, attempts + to access this object will return noSuchName (SNMPv1) + or noSuchInstance (SNMPv2)." + ::= { rdbmsSrvEntry 1 } + +rdbmsSrvVendorName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The name of the vendor whose RDBMS manages this database, + for informational purposes." + ::= { rdbmsSrvEntry 2 } + +rdbmsSrvProductName OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The product name of this server. This is normally the + vendor's formal name for the product, in product specific + format." + ::= { rdbmsSrvEntry 3 } + +rdbmsSrvContact OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The textual identification of the contact person for this + managed server, together with information on how to contact + this person. + + Note: if there is no active server associated with this + object, an agent may need to keep this in other persistent + storage, e.g., a configuration file. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvEntry 4 } + +rdbmsSrvInfoTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of additional information about database servers. + + Entries in this table correspond to applications in the + APPLICATION-MIB applTable. Some objects in that table are + application-specific. When they are associated with an RDBMS + server in this table, the objects have the following + meanings. + + applName - The name of this server, i.e., the process or + group of processes providing access to this database. The + exact format will be product and host specific. + + applVersion - The version number of this server, in product + specific format. + + applOperStatus - up(1) means operational and available for + general use. down(2) means the server is not available for + use, but is known to the agent. The other states have broad + meaning, and may need to be supplemented by the vendor + private MIB. Halted(3) implies an administrative state of + unavailability. Congested(4) implies a resource or or + administrative limit is prohibiting new inbound associations. + The 'available soon' description of restarting(5) may include + an indeterminate amount of recovery. + + applLastChange is the time the agent noticed the most recent + change to applOperStatus. + + applInboundAssociation is the number of currently active + local and remote conversations (usually SQL connects). + + applOutboundAssociations is not provided by this MIB. + + applAccumulatedInboundAssociations is the total number of + local and remote conversations started since the server came + up. + + applAccumulatedOutbound associations is not provided by this + MIB. + + applLastInboundActivity is the time the most recent local or + remote conversation was attempted or disconnected. + + applLastOutboundActivity is not provided by this MIB. + + applRejectedInboundAssociations is the number of local or + remote conversations rejected by the server for + administrative reasons or because of resource limitations. + + applFailedOutboundAssociations is not provided by this MIB." + ::= { rdbmsObjects 6 } + +rdbmsSrvInfoEntry OBJECT-TYPE + SYNTAX RdbmsSrvInfoEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "Information that must be present for a single 'up' database + server, with visibility determined by the value of the + corresponding applOperStatus object. If an instance of + applOperStatus is not up(1), then attempts to access + corresponding instances in this table may result in either + noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned + by the agent." + INDEX { applIndex } + ::= { rdbmsSrvInfoTable 1 } + +RdbmsSrvInfoEntry ::= + SEQUENCE { + rdbmsSrvInfoStartupTime + DateAndTime, + + rdbmsSrvInfoFinishedTransactions + Gauge, + + rdbmsSrvInfoDiskReads + Counter, + + rdbmsSrvInfoDiskWrites + Counter, + + rdbmsSrvInfoLogicalReads + Counter, + + rdbmsSrvInfoLogicalWrites + Counter, + + rdbmsSrvInfoPageWrites + Counter, + + rdbmsSrvInfoPageReads + Counter, + + rdbmsSrvInfoDiskOutOfSpaces + Counter, + + rdbmsSrvInfoHandledRequests + Counter, + + rdbmsSrvInfoRequestRecvs + Counter, + + rdbmsSrvInfoRequestSends + Counter, + + rdbmsSrvInfoHighwaterInboundAssociations + Gauge, + + rdbmsSrvInfoMaxInboundAssociations + Gauge + } + +rdbmsSrvInfoStartupTime OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The date and time at which this server was last started." + ::= { rdbmsSrvInfoEntry 1 } + +rdbmsSrvInfoFinishedTransactions OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of transactions visible to this server that have + been completed by either commit or abort. Some database + operations, such as read-only queries, may not result in the + creation of a transaction." + ::= { rdbmsSrvInfoEntry 2 } + +rdbmsSrvInfoDiskReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of reads of database files issued to the + operating system by this server since startup. Numbers are + not comparable between products. What constitutes a + readand how it is accounted is product-specific." + ::= { rdbmsSrvInfoEntry 3 } + +rdbmsSrvInfoLogicalReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of logical reads of database files made + internally by this server since startup. The values of this + object and those of rdbmsSrvInfoDiskReads reveal the effect + of caching on read operation. Numbers are not comparable + between products, and may only be meaningful when aggregated + across all servers sharing a common cache." + ::= { rdbmsSrvInfoEntry 4 } + +rdbmsSrvInfoDiskWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of writes to database files issued to the + operating system by this server since startup. Numbers are + not comparable between products." + ::= { rdbmsSrvInfoEntry 5 } + +rdbmsSrvInfoLogicalWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of times parts of the database files have + been marked 'dirty' and in need of writing to the disk. This + value and rdbmsSrvInfoDiskWrites give some indication of the + effect of 'write-behind' strategies in reducing the number of + disk writes compared to database operations. Because the + writes may be done by servers other than those marking the + parts of the database files dirty, these values may only be + meaningful when aggregated across all servers sharing a + common cache. Numbers are not comparable between products." + ::= { rdbmsSrvInfoEntry 6 } + +rdbmsSrvInfoPageReads OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of pages in database files read by this + server since startup. 'Pages' are product specific units of + disk i/o operations. This value, along with + rdbmsSrvInfoDiskReads, reveals the effect of any grouping + read-ahead that may be used to enhance performance of some + queries, such as scans." + ::= { rdbmsSrvInfoEntry 7 } + +rdbmsSrvInfoPageWrites OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of pages in database files written by this + server since startup. Pages are product-specific units of + disk I/O. This value, with rdbmsSrvInfoDiskWrites, shows the + effect of write strategies that collapse logical writes of + contiguous pages into single calls to the operating system." + ::= { rdbmsSrvInfoEntry 8 } + +rdbmsSrvInfoDiskOutOfSpaces OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of times the server has been unable to + obtain disk space that it wanted, since server startup. This + would be inspected by an agent on receipt of an + rdbmsOutOfSpace trap." + ::= { rdbmsSrvInfoEntry 9 } + +rdbmsSrvInfoHandledRequests OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The total number of requests made to the server on inbound + associations. The meaning of 'requests' is product specific, + and is not comparable between products. + + This is intended to encapsulate high level semantic + operations between clients and servers, or between peers. + For instance, one request might correspond to a 'select' or + an 'insert' statement. It is not intended to capture disk + i/o described in rdbmsSrvInfoDiskReads and + rdbmsSrvInfoDiskWrites." + ::= { rdbmsSrvInfoEntry 10 } + +rdbmsSrvInfoRequestRecvs OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of receive operations made processing any requests + on inbound associations. The meaning of operations is product + specific, and is not comparable between products. + + This is intended to capture lower-level i/o operations than + shown by HandledRequests, between clients and servers, or + between peers. For instance, it might roughly correspond to + the amount of data given with an 'insert' statement. It is + not intended to capture disk i/o described in + rdbmsSrvInfoDiskReads and rdbmsSrvInfoDiskWrites." + ::= { rdbmsSrvInfoEntry 11 } + +rdbmsSrvInfoRequestSends OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of send operations made processing requests + handled on inbound associations. The meaning of operations + is product specific, and is not comparable between products. + This is intended to capture lower-level i/o operations than + shown by HandledRequests, between between clients and + servers, or between peers. It might roughly correspond to + the number of rows returned by a 'select' statement. It is + not intended to capture disk i/o described in DiskReads." + ::= { rdbmsSrvInfoEntry 12 } + +rdbmsSrvInfoHighwaterInboundAssociations OBJECT-TYPE + SYNTAX Gauge + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The greatest number of inbound associations that have been + simultaneously open to this server since startup." + ::= { rdbmsSrvInfoEntry 13 } + +rdbmsSrvInfoMaxInboundAssociations OBJECT-TYPE + SYNTAX Gauge + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The greatest number of inbound associations that can be + simultaneously open with this server. If there is no limit, + then the value should be zero. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvInfoEntry 14 } + +rdbmsSrvParamTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of configuration parameters for a server. Entries + should be populated according to the following guidelines: + (1) The value should be specified through administrative + (human) intervention. + (2) It should be configured on a per-server or a more global + basis, with duplicate entries for each server sharing + use of the parameter. + (3) One of the following is true: + (a) The parameter has a non-numeric value; + (b) The current value is numeric, but it only changes due + to human intervention; + (c) The current value is numeric and dynamic, but the + RDBMS does not track access/allocation failures + related to the parameter; + (d) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, but the failure has no + significant impact on RDBMS performance or + availability. + (e) The current value is numeric and dynamic, the + RDBMS tracks changes in access/allocation failures + related to the parameter, the failure has + significant impact on RDBMS performance or + availability, and is shown in the + rdbmsSrvLimitedResource table." + ::= { rdbmsObjects 7 } + +rdbmsSrvParamEntry OBJECT-TYPE + SYNTAX RdbmsSrvParamEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single configuration parameter for a server. + Parameters with single values have a subindex value of one. + If the parameter is naturally considered to contain a + variable number of members of a class, e.g. members of the + DBA user group, or tracepoints active in the server, then it + must be presented as a set of rows. If, on the other hand, + the parameter represents a set of choices from a class, + e.g. the permissions on a file or the options chosen out of + the set of all options allowed, AND is guaranteed to always + fit in the 255 character length of a DisplayString, then it + may be presented as a comma separated list with a subindex + value of one. Zero may not be used as a subindex value. + + Entries for a server must be present if the value of the + corresponding applOperStatus object is up(1). If an instance + of applOperStatus is not up(1), then attempts to access + corresponding instances in this table may result in either + noSuchName (SNMPv1) or noSuchInstance (SNMPv2) being returned + by the agent." + INDEX { applIndex, rdbmsSrvParamName, rdbmsSrvParamSubIndex } + ::= { rdbmsSrvParamTable 1 } + +RdbmsSrvParamEntry ::= + SEQUENCE { + rdbmsSrvParamName + DisplayString, + + rdbmsSrvParamSubIndex + INTEGER, + + rdbmsSrvParamID + AutonomousType, + + rdbmsSrvParamCurrValue + DisplayString, + + rdbmsSrvParamComment + DisplayString + } + +rdbmsSrvParamName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of a configuration parameter for a server. This + name is product-specific. The length is limited to 64 + characters to constrain the number of sub-identifiers needed + for instance identification (and to minimize network + traffic)." + ::= { rdbmsSrvParamEntry 1 } + +rdbmsSrvParamSubIndex OBJECT-TYPE + SYNTAX INTEGER + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The subindex value for this parameter. If the parameter is + naturally considered to contain a variable number of members + of a class, e.g. members of the DBA user group, or files + which are part of the database, then it must be presented as + a set of rows. If, on the other hand, the parameter + represents a set of choices from a class, e.g. the + permissions on a file or the options chosen out of the set of + all options allowed, AND is guaranteed to always fit in the + 255 character length of a DisplayString, then it may be + presented as a comma separated list with a subindex value of + one. Zero may not be used as a value." + ::= { rdbmsSrvParamEntry 2 } + +rdbmsSrvParamID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the parameter which may be described in some + other MIB. If there is no ID for this rdbmsSrvParamName, + attempts to access this object will return noSuchName + (SNMPv1) or noSuchInstance (SNMPv2)." + ::= { rdbmsSrvParamEntry 3 } + +rdbmsSrvParamCurrValue OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The value for a configuration parameter now in effect, the + actual setting for the server. While there may multiple + values in the temporal domain of interest (for instance, the + value to take effect at the next restart), this is the + current setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvParamEntry 4 } + +rdbmsSrvParamComment OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "Annotation which describes the purpose of a configuration + parameter or the reason for a particular parameter's + setting. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvParamEntry 5 } + +rdbmsSrvLimitedResourceTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsSrvLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The table of limited resources relevant to a server." + ::= { rdbmsObjects 8 } + +rdbmsSrvLimitedResourceEntry OBJECT-TYPE + SYNTAX RdbmsSrvLimitedResourceEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry for a single limited resource kept by the server. + A limited resource has maximum use determined by a parameter + that might or might not changeable at run time, or visible in + the rbmsSrvParamTable. Examples would be the number of + available locks, or number of concurrent executions allowed + in a server. Arrays of resources are supported through an + integer subindex, which should have the value of one for + single-instance names. + + Limited resources that are shared across servers or databases + are best duplicated in this table across + all servers accessing the resource." + INDEX { applIndex, rdbmsSrvLimitedResourceName } + ::= { rdbmsSrvLimitedResourceTable 1 } + +RdbmsSrvLimitedResourceEntry ::= + SEQUENCE { + rdbmsSrvLimitedResourceName + DisplayString, + + rdbmsSrvLimitedResourceID + AutonomousType, + + rdbmsSrvLimitedResourceLimit + INTEGER, + + rdbmsSrvLimitedResourceCurrent + INTEGER, + + rdbmsSrvLimitedResourceHighwater + INTEGER, + + rdbmsSrvLimitedResourceFailures + Counter, + + rdbmsSrvLimitedResourceDescription + DisplayString + } + +rdbmsSrvLimitedResourceName OBJECT-TYPE + SYNTAX DisplayString + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "The name of the resource, for instance 'threads' or + 'semaphores', or 'buffer pages'" + ::= { rdbmsSrvLimitedResourceEntry 1 } + +rdbmsSrvLimitedResourceID OBJECT-TYPE + SYNTAX AutonomousType + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The ID of the resource which may be described in some other + MIB. If there is no ID for this rdbmsSrvLimitedResourceName, + attempts to access this object will return noSuchName + (SNMPv1) or noSuchInstance (SNMPv2)." + ::= { rdbmsSrvLimitedResourceEntry 2 } + +rdbmsSrvLimitedResourceLimit OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-write + STATUS mandatory + DESCRIPTION + "The maximum value the resource use may attain. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvLimitedResourceEntry 3 } + +rdbmsSrvLimitedResourceCurrent OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The current value for the resource." + ::= { rdbmsSrvLimitedResourceEntry 4 } + +rdbmsSrvLimitedResourceHighwater OBJECT-TYPE + SYNTAX INTEGER + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The maximum value of the resource seen since applUpTime + was reset." + ::= { rdbmsSrvLimitedResourceEntry 5 } + +rdbmsSrvLimitedResourceFailures OBJECT-TYPE + SYNTAX Counter + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The number of times the system wanted to exceed the limit of + the resource since applUpTime was reset." + ::= { rdbmsSrvLimitedResourceEntry 6 } + +rdbmsSrvLimitedResourceDescription OBJECT-TYPE + SYNTAX DisplayString + ACCESS read-write + STATUS mandatory + DESCRIPTION + "A description of the resource and the meaning of the integer + units used for Limit, Current, and Highwater. + + Note that a compliant agent does not need to + allow write access to this object." + ::= { rdbmsSrvLimitedResourceEntry 7 } + +rdbmsRelTable OBJECT-TYPE + SYNTAX SEQUENCE OF RdbmsRelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "A table relating databases and servers present on a host." + ::= { rdbmsObjects 9 } + +rdbmsRelEntry OBJECT-TYPE + SYNTAX RdbmsRelEntry + ACCESS not-accessible + STATUS mandatory + DESCRIPTION + "An entry relating a single database server to a single + database to which it may provide access. The table is + indexed first by the index of rdbmsDbTable, and then + rdbmsSrvTable, so that all servers capable of providing + access to a given database may be found by SNMP traversal + operations (get-next and get-bulk). The makeup of this table + depends on the product's architecture, e.g. if it is one + server - many databases, then each server will appear n + times, where n is the number of databases it may access, and + each database will appear once. If the architecture is one + database - many servers, then each server will appear once + and each database will appear n times, where n is the number + of servers that may be accessing it." + INDEX { rdbmsDbIndex, applIndex } + ::= { rdbmsRelTable 1 } + +RdbmsRelEntry ::= + SEQUENCE { + rdbmsRelState + INTEGER, + + rdbmsRelActiveTime + DateAndTime + } + +rdbmsRelState OBJECT-TYPE + SYNTAX INTEGER { + other(1), + active(2), + available(3), + restricted(4), + unavailable(5) +} + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The state of this server's access to this database. + Active(2) means the server is actively using the database. + Available(3) means the server could use the database if + necessary. Restricted(4) means the database is in some + administratively determined state of less-than-complete + availability. Unavailable(5) means the database is not + available through this server. Other(1) means the + database/server is in some other condition, possibly + described in the vendor private MIB." + ::= { rdbmsRelEntry 1 } + +rdbmsRelActiveTime OBJECT-TYPE + SYNTAX DateAndTime + ACCESS read-only + STATUS mandatory + DESCRIPTION + "The time the database was made active by the server. If an + instance of rdbmsRelState is not active(1), then attempts to + access the corresponding instance of this object may result + in either noSuchName (SNMPv1) or noSuchInstance (SNMPv2) + being returned by the agent." + ::= { rdbmsRelEntry 2 } + +rdbmsWellKnownLimitedResources OBJECT IDENTIFIER ::= { rdbmsObjects 10 } + +rdbmsLogSpace OBJECT IDENTIFIER ::= { rdbmsWellKnownLimitedResources 1 } + +rdbmsTraps OBJECT IDENTIFIER ::= { rdbmsMIB 2 } + +rdbmsStateChange TRAP-TYPE + ENTERPRISE rdbmsTraps + VARIABLES { rdbmsRelState } + DESCRIPTION + "An rdbmsStateChange trap signifies that one of the database + server/databases managed by this agent has changed its + rdbmsRelState in a way that makes it less accessible for use. + For these purposes, both active(2) and available(3) are + considered fully accessible. The state sent with the trap is + the new, less accessible state." + ::= 1 + +rdbmsOutOfSpace TRAP-TYPE + ENTERPRISE rdbmsTraps + VARIABLES { rdbmsSrvInfoDiskOutOfSpaces } + DESCRIPTION + "An rdbmsOutOfSpace trap signifies that one of the database + servers managed by this agent has been unable to allocate + space for one of the databases managed by this agent. Care + should be taken to avoid flooding the network with these + traps." + ::= 2 + +rdbmsConformance OBJECT IDENTIFIER ::= { rdbmsMIB 3 } + +rdbmsCompliances OBJECT IDENTIFIER ::= { rdbmsConformance 1 } + +rdbmsGroups OBJECT IDENTIFIER ::= { rdbmsConformance 2 } + +rdbmsCompliance OBJECT IDENTIFIER ::= { rdbmsCompliances 1 } + +rdbmsGroup OBJECT IDENTIFIER ::= { rdbmsGroups 1 } + +END From fb8a54c42e4090080537bf46d193297937f4e834 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 29 May 2023 13:41:17 +0200 Subject: [PATCH 259/533] #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 d0aaadcbcfb85fc890e3553d79117467da964c95 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Mon, 29 May 2023 14:38:59 +0200 Subject: [PATCH 260/533] #11346 The information shown in the tooltips is adjusted, according to the view --- pandora_console/include/functions_clippy.php | 16 ++++++++++++++-- .../help/clippy/data_configuration_module.php | 11 ++++++++++- .../include/help/clippy/interval_agent_min.php | 11 ++++++++++- 3 files changed, 34 insertions(+), 4 deletions(-) diff --git a/pandora_console/include/functions_clippy.php b/pandora_console/include/functions_clippy.php index db6d0f7704..3e3362733c 100644 --- a/pandora_console/include/functions_clippy.php +++ b/pandora_console/include/functions_clippy.php @@ -297,6 +297,8 @@ function clippy_context_help($help=null) $code = str_replace('{clippy_obj}', 'intro_'.$id, $code); if ($help === 'module_unknow') { + $title = __('You have unknown modules in this agent.'); + $intro = __('Unknown modules are modules which receive data normally at least in one occassion, but at this time are not receving data. Please check our troubleshoot help page to help you determine why you have unknown modules.'); $img = html_print_image( 'images/info-warning.svg', true, @@ -305,6 +307,16 @@ function clippy_context_help($help=null) 'style' => 'margin-left: -25px;', ] ); + } else if ($help === 'interval_agent_min') { + $clippy_interval_agent_min = clippy_interval_agent_min(); + $title = $clippy_interval_agent_min['tours']['interval_agent_min']['steps'][0]['title']; + $intro = $clippy_interval_agent_min['tours']['interval_agent_min']['steps'][0]['intro']; + $img = $clippy_interval_agent_min['tours']['interval_agent_min']['steps'][0]['img']; + } else if ($help === 'data_configuration_module') { + $clippy_data_configuration_module = clippy_data_configuration_module(); + $title = $clippy_data_configuration_module['tours']['data_configuration_module']['steps'][0]['title']; + $intro = $clippy_data_configuration_module['tours']['data_configuration_module']['steps'][0]['intro']; + $img = $clippy_data_configuration_module['tours']['data_configuration_module']['steps'][0]['img']; } else { $img = html_print_image( 'images/info-warning.svg', @@ -318,8 +330,8 @@ function clippy_context_help($help=null) function show_'.$id.'() { confirmDialog({ - title: "'.__('You have unknown modules in this agent.').'", - message: "'.('Unknown modules are modules which receive data normally at least in one occassion, but at this time are not receving data. Please check our troubleshoot help page to help you determine why you have unknown modules.').'", + title: "'.$title.'", + message: "'.$intro.'", strOKButton: "'.__('Close').'", hideCancelButton: true, size: 675, diff --git a/pandora_console/include/help/clippy/data_configuration_module.php b/pandora_console/include/help/clippy/data_configuration_module.php index d912191e19..d2618e392b 100644 --- a/pandora_console/include/help/clippy/data_configuration_module.php +++ b/pandora_console/include/help/clippy/data_configuration_module.php @@ -32,7 +32,16 @@ function clippy_data_configuration_module() $return_tours['tours']['data_configuration_module']['steps'] = []; $return_tours['tours']['data_configuration_module']['steps'][] = [ 'init_step_context' => true, - 'intro' => ''.''.''.''.''.''.''.''.''.'
'.__('Data Configuration Module.').'
'.__('Please note that information provided here affects how the agent collect information and generate the data XML. Any data/configuration reported by the agent, different from data or description is discarded, and the configuration shown in the console prevails over any configuration coming from the agent, this applies for example for crit/warn thresholds, interval, module group, min/max value, tags, etc.').'
'.__('Information imported FIRST time from the XML will fill the information you can see in the console, but after the first import, system will ignore any update coming from the XML/Agent.').'
', + 'intro' => __('Please note that information provided here affects how the agent collect information and generate the data XML. Any data/configuration reported by the agent, different from data or description is discarded, and the configuration shown in the console prevails over any configuration coming from the agent, this applies for example for crit/warn thresholds, interval, module group, min/max value, tags, etc.').__('Information imported FIRST time from the XML will fill the information you can see in the console, but after the first import, system will ignore any update coming from the XML/Agent.'), + 'title' => __('Data Configuration Module.'), + 'img' => html_print_image( + 'images/info-warning.svg', + true, + [ + 'class' => 'main_menu_icon invert_filter', + 'style' => 'margin-left: 5px;', + ] + ), ]; $return_tours['tours']['data_configuration_module']['conf'] = []; $return_tours['tours']['data_configuration_module']['conf']['autostart'] = false; diff --git a/pandora_console/include/help/clippy/interval_agent_min.php b/pandora_console/include/help/clippy/interval_agent_min.php index e936c63212..d8dae98a09 100644 --- a/pandora_console/include/help/clippy/interval_agent_min.php +++ b/pandora_console/include/help/clippy/interval_agent_min.php @@ -32,7 +32,16 @@ function clippy_interval_agent_min() $return_tours['tours']['interval_agent_min']['steps'] = []; $return_tours['tours']['interval_agent_min']['steps'][] = [ 'init_step_context' => true, - 'intro' => ''.''.''.''.''.''.''.'
'.__('Interval Agent.').'
'.__('Please note that having agents with a monitoring interval below 300 seconds is not recommended. This will impact seriously in the performance of the server. For example, having 200 agents with one minute interval, is the same than having 1000 agents with a 5 minute interval. The probability of getting unknown modules is higher, and the impact on the server is higher because it requires a shorter response time.').'
', + 'intro' => __('Please note that having agents with a monitoring interval below 300 seconds is not recommended. This will impact seriously in the performance of the server. For example, having 200 agents with one minute interval, is the same than having 1000 agents with a 5 minute interval. The probability of getting unknown modules is higher, and the impact on the server is higher because it requires a shorter response time.'), + 'title' => __('Interval Agent.'), + 'img' => html_print_image( + 'images/info-warning.svg', + true, + [ + 'class' => 'main_menu_icon invert_filter', + 'style' => 'margin-left: 5px;', + ] + ), ]; $return_tours['tours']['interval_agent_min']['conf'] = []; $return_tours['tours']['interval_agent_min']['conf']['autostart'] = false; From 883351b68df13d9ecb11e308d1ab365ad7da09ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Mon, 29 May 2023 10:02:19 -0600 Subject: [PATCH 261/533] Avoid unexpected else when variables are undefined --- pandora_server/lib/PandoraFMS/Core.pm | 50 ++++++++++++++++----------- 1 file changed, 30 insertions(+), 20 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 630b8ea0ce..df163ec28f 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5253,9 +5253,10 @@ sub get_module_status ($$$$) { if ($module_type !~ m/_string/) { # Critical - if ($critical_min ne $critical_max) { + if ($critical_min ne $critical_max && defined($module->{'critical_inverse'})) { + # [critical_min, critical_max) - if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { + if ($module->{'critical_inverse'} == 0) { return 1 if ($data >= $critical_min && $data < $critical_max); return 1 if ($data >= $critical_min && $critical_max < $critical_min); } @@ -5270,9 +5271,10 @@ sub get_module_status ($$$$) { } # Warning - if ($warning_min ne $warning_max) { + if ($warning_min ne $warning_max && defined($module->{'warning_inverse'})) { + # [warning_min, warning_max) - if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { + if ($module->{'warning_inverse'} == 0) { return 2 if ($data >= $warning_min && $data < $warning_max); return 2 if ($data >= $warning_min && $warning_max < $warning_min); } @@ -5290,24 +5292,32 @@ sub get_module_status ($$$$) { else { # Critical - $eval_result = eval { - if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 0) { - $critical_str ne '' && $data =~ /$critical_str/ ; - } else { - $critical_str ne '' && $data !~ /$critical_str/ ; - } - }; - return 1 if ($eval_result); + if(defined($module->{'critical_inverse'})){ + + $eval_result = eval { + if ($module->{'critical_inverse'} == 0) { + $critical_str ne '' && $data =~ /$critical_str/ ; + } else { + $critical_str ne '' && $data !~ /$critical_str/ ; + } + }; + + return 1 if ($eval_result); + } # Warning - $eval_result = eval { - if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 0) { - $warning_str ne '' && $data =~ /$warning_str/ ; - } else { - $warning_str ne '' && $data !~ /$warning_str/ ; - } - }; - return 2 if ($eval_result); + if(defined($module->{'critical_inverse'})){ + + $eval_result = eval { + if ($module->{'warning_inverse'} == 0) { + $warning_str ne '' && $data =~ /$warning_str/ ; + } else { + $warning_str ne '' && $data !~ /$warning_str/ ; + } + }; + + return 2 if ($eval_result); + } } # Normal From 467796208bd99ce4a6bf7e956844f68fae144ebf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Mon, 29 May 2023 10:17:50 -0600 Subject: [PATCH 262/533] Small adjustment in warning_inverse --- pandora_server/lib/PandoraFMS/Core.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index df163ec28f..30a6f6c780 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5272,7 +5272,7 @@ sub get_module_status ($$$$) { # Warning if ($warning_min ne $warning_max && defined($module->{'warning_inverse'})) { - + # [warning_min, warning_max) if ($module->{'warning_inverse'} == 0) { return 2 if ($data >= $warning_min && $data < $warning_max); @@ -5306,7 +5306,7 @@ sub get_module_status ($$$$) { } # Warning - if(defined($module->{'critical_inverse'})){ + if(defined($module->{'warning_inverse'})){ $eval_result = eval { if ($module->{'warning_inverse'} == 0) { From 97455d4304268c3ffea4897cc080ce79f9eedad0 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 30 May 2023 01:00:18 +0200 Subject: [PATCH 263/533] 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 ce90075db2..068d25ba61 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-230529 +Version: 7.0NG.771-230530 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 b0e8ff0370..0ca3e7bc19 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-230529" +pandora_version="7.0NG.771-230530" 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 7cc3f0d495..61818d4d77 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 => '230529'; +use constant AGENT_BUILD => '230530'; # 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 d8e7930d53..61b7de98c3 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 230529 +%define release 230530 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 ddb80a0d94..69cdf3c0e9 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 230529 +%define release 230530 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 be8a4dbf4c..563121f5e2 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="230529" +PI_BUILD="230530" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 00d6766a84..7709331714 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230529} +{230530} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index de919713b7..394ea74ed3 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 230529") +#define PANDORA_VERSION ("7.0NG.771 Build 230530") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 3d1d149693..ea51a460fc 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 230529))" + VALUE "ProductVersion", "(7.0NG.771(Build 230530))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5bef9036e4..a8053b5563 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230529 +Version: 7.0NG.771-230530 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 8ca9f85525..45449be129 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-230529" +pandora_version="7.0NG.771-230530" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index dd9f772d5a..55bdd44779 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 = 'PC230529'; +$build_version = 'PC230530'; $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 682abb43ef..7cb1d40aec 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 f0f899aabc..65e55331b9 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 230529 +%define release 230530 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d918958f02..3fb9655291 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 230529 +%define release 230530 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 9e28020733..6e6f49d985 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230529" +PI_BUILD="230530" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index e5759af9f2..fa7b89786a 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 230529"; +my $version = "7.0NG.771 Build 230530"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index b05bedaed4..c2fd71141a 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 230529"; +my $version = "7.0NG.771 Build 230530"; # save program name for logging my $progname = basename($0); From 19696b1f89ebf88d4008f466775ddca906578206 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 08:50:58 +0200 Subject: [PATCH 264/533] #10967 Fix blue background in event list dialog --- pandora_console/include/styles/js/datatables.min.css | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pandora_console/include/styles/js/datatables.min.css b/pandora_console/include/styles/js/datatables.min.css index 2d108fe8d3..a9a1d5285c 100644 --- a/pandora_console/include/styles/js/datatables.min.css +++ b/pandora_console/include/styles/js/datatables.min.css @@ -924,9 +924,8 @@ a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover { border: 1px solid #003eff; - background: #007fff; + background: #ececec; font-weight: normal; - color: #fff; } .ui-icon-background, .ui-state-active .ui-icon-background { @@ -936,7 +935,6 @@ a.ui-button:active, .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited { - color: #fff; text-decoration: none; } .ui-state-highlight, From 351a274639af9a2e661128593677f77cd42ba034 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 09:50:40 +0200 Subject: [PATCH 265/533] #11297 fix inverse interval for remote SNMP module --- pandora_console/godmode/agentes/configurar_agente.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index d717bce983..c7378ab3a6 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -1523,10 +1523,10 @@ if ($update_module === true || $create_module === true) { $warning_threshold_check_type = get_parameter('warning_thresholds_checks'); if ($warning_threshold_check_type === 'normal_warning') { $percentage_warning = 0; - $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); + $warning_inverse = 0; } else if ($warning_threshold_check_type === 'warning_inverse') { - $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); - $percentage_warning = 0; + $warning_inverse = (int) get_parameter('warning_inverse_string_sent'); + $percentage_warning = 0; } else { $percentage_warning = (int) get_parameter('warning_inverse_string_sent'); $warning_inverse = 0; @@ -1536,7 +1536,7 @@ if ($update_module === true || $create_module === true) { $critical_threshold_check_type = get_parameter('critical_thresholds_checks'); if ($critical_threshold_check_type === 'normal_critical') { $percentage_critical = 0; - $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); + $critical_inverse = 0; } else if ($critical_threshold_check_type === 'critical_inverse') { $critical_inverse = (int) get_parameter('critical_inverse_string_sent'); $percentage_critical = 0; @@ -1550,6 +1550,7 @@ if ($update_module === true || $create_module === true) { || $id_module_type === MODULE_TYPE_ASYNC_STRING || $id_module_type === MODULE_TYPE_REMOTE_TCP_STRING || $id_module_type === MODULE_TYPE_REMOTE_CMD_STRING + || $id_module_type === MODULE_TYPE_REMOTE_SNMP_STRING ) { // Warning inverse string checkbox. $warning_string_checkbox = get_parameter('warning_inverse_string'); From cf843eba7a41f9bf3e991042131e52a436115143 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 11:47:34 +0200 Subject: [PATCH 266/533] #10851 Fix order by agent foreach --- .../include/functions_inventory.php | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index c91a375225..ab58844052 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -806,9 +806,12 @@ function inventory_get_datatable( $agent_data[$row['id_agente']][] = $row; } - foreach ($agent_data as $id_agent => $data_rows) { - $rows_tmp['agent'] = $row['name_agent']; - foreach ($data_rows as $row) { + foreach ($agent_data as $id_agent => $data_agent) { + $rows_tmp['agent'] = $data_agent['name_agent']; + foreach ($data_agent as $key => $agent_row) { + $data_agent[$key]['timestamp'] = $agent_row['last_update_timestamp']; + $data_agent[$key]['utimestamp'] = $agent_row['last_update']; + if ($utimestamp > 0) { $data_row = db_get_row_sql( sprintf( @@ -820,22 +823,19 @@ function inventory_get_datatable( AND id_agent_module_inventory = %d ORDER BY utimestamp DESC', $utimestamp, - $row['id_agent_module_inventory'] + $agent_row['id_agent_module_inventory'] ) ); if ($data_row !== false) { - $row['data'] = $data_row['data']; - $row['timestamp'] = $data_row['timestamp']; - $row['utimestamp'] = $data_row['utimestamp']; + $data_agent[$key]['data'] = $data_row['data']; } else { continue; } } } - $rows[0]['timestamp'] = $row['timestamp']; - $rows_tmp['row'] = $rows; + $rows_tmp['row'] = $data_agent; array_push($agents_rows, $rows_tmp); } From 346518e6e9613eb93fd5b6ea64073e115a90a764 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 30 May 2023 12:17:41 +0200 Subject: [PATCH 267/533] #11400 fixed group icons with cache --- .../include/rest-api/models/CachedModel.php | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/pandora_console/include/rest-api/models/CachedModel.php b/pandora_console/include/rest-api/models/CachedModel.php index 6bf9043c62..29a63e1439 100644 --- a/pandora_console/include/rest-api/models/CachedModel.php +++ b/pandora_console/include/rest-api/models/CachedModel.php @@ -79,6 +79,33 @@ abstract class CachedModel extends Model if ($ratio == 0 && $filter['cache_expiration'] > 0 && $widthRatio == 0) { $data = static::fetchCachedData($filter); $save_cache = true; + if (isset($filter['type']) === true + && (int) $filter['type'] === GROUP_ITEM + && empty($data) === false + ) { + // GROUP ITEM with cache. + if (isset($data['statusImageSrc']) === true) { + $img = explode('images/console/icons/', $data['statusImageSrc']); + if (empty($img[1]) === false) { + $img_path = 'images/console/icons/'.$img[1]; + $data['statusImageSrc'] = ui_get_full_url( + $img_path, + false, + false, + false + ); + } + + if (empty($img[0]) === false + && isset($data['link']) === true + ) { + $img_aux = explode('images/console/icons/', $data['statusImageSrc']); + if ($img_aux[0] !== $img[0]) { + $data['link'] = str_replace($img[0], $img_aux[0], $data['link']); + } + } + } + } } if (isset($data) === false) { From 3d7d5aed3abd95d4f2eab5e2288319ca52a32977 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 12:44:24 +0200 Subject: [PATCH 268/533] #11405 Fix table class --- pandora_console/godmode/servers/plugin.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 34ad71dd9b..75db97e1e7 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -978,14 +978,14 @@ if (empty($create) === false || empty($view) === false) { if ($rows !== false) { $pluginTable = new stdClass(); $pluginTable->id = 'plugin_table'; - $pluginTable->class = (is_metaconsole() === true) ? 'databox data' : 'info_table'; + $pluginTable->class = 'info_table'; $pluginTable->head = []; $pluginTable->head[0] = __('Name'); $pluginTable->head[1] = __('Type'); $pluginTable->head[2] = __('Command'); if ($management_allowed === true) { - $pluginTable->head[3] = ''.__('Op.').''; + $pluginTable->head[3] = __('Operations'); } $pluginTable->data = []; From 3ff8b115f709b4b4abf7d9d2edee8ba425b658fc Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 30 May 2023 13:46:43 +0200 Subject: [PATCH 269/533] #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 cdb01f11058c21263720b0e807f62b16e0936c36 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 14:03:39 +0200 Subject: [PATCH 270/533] #10851 Fix variable name --- pandora_console/operation/inventory/inventory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index fd30943e8d..9ee25710a4 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -675,10 +675,10 @@ $table->data[1][1] = html_print_label_input_block( if (is_metaconsole() === false) { $dates = inventory_get_dates( $inventory_module, - $inventory_agent, + $inventory_id_agent, $inventory_id_group ); - + hd($dates, true); $table->data[1][2] = html_print_label_input_block( __('Date'), html_print_select( From 6d843537782ca6e69cbd4d69e63a2da86853a5fb Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 14:09:32 +0200 Subject: [PATCH 271/533] #10851 Fix id agent and delete hd --- pandora_console/include/functions_inventory.php | 2 +- pandora_console/operation/inventory/inventory.php | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index ab58844052..0337b28ed0 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -922,7 +922,7 @@ function inventory_get_dates($module_inventory_name, $inventory_agent, $inventor AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory AND tagente.id_agente = tagent_module_inventory.id_agente'; - if ($inventory_agent !== 'All') { + if ($inventory_agent !== 0) { $sql .= ' AND tagent_module_inventory.id_agente IN ('."'".implode(',', (array) $inventory_agent)."'".')'; } diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index 9ee25710a4..1e25980c52 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -678,7 +678,6 @@ if (is_metaconsole() === false) { $inventory_id_agent, $inventory_id_group ); - hd($dates, true); $table->data[1][2] = html_print_label_input_block( __('Date'), html_print_select( From fdfd55643e10e00565c36dcf6db827b935d15ec3 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 14:57:02 +0200 Subject: [PATCH 272/533] #11001 tips default en_gb --- pandora_console/include/class/TipsWindow.class.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index a40ca9685c..544b68a7cf 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -282,6 +282,13 @@ class TipsWindow $tip['title'] = io_safe_output($tip['title']); $tip['text'] = io_safe_output($tip['text']); $tip['url'] = io_safe_output($tip['url']); + } else { + $language = 'en_GB'; + $sql = 'SELECT id, title, text, url + FROM twelcome_tip + WHERE enable = "1" AND id_lang = "'.$language.'"'; + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; + $tip = db_get_row_sql($sql); } if ($return) { From 2f92bf51ace148e053acdf7e47112be0a1129569 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 15:02:54 +0200 Subject: [PATCH 273/533] #11409 style update online --- pandora_console/update_manager_client/resources/styles/um.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/update_manager_client/resources/styles/um.css b/pandora_console/update_manager_client/resources/styles/um.css index 12c3947238..0da988139b 100644 --- a/pandora_console/update_manager_client/resources/styles/um.css +++ b/pandora_console/update_manager_client/resources/styles/um.css @@ -108,7 +108,7 @@ a.update_manager_button:after { color: #82b92e; font-size: 6em; font-weight: bold; - margin: 30px 0 !important; + margin: 50px 0 !important; } .update_manager_warning p { From 8102d6921dd80f3f50f6fc68a8e4389b70b77045 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 15:51:07 +0200 Subject: [PATCH 274/533] #11372 Add checkbox to div and fix div style --- pandora_console/include/functions_filemanager.php | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index ae37b87f22..9ca60ecf20 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -879,7 +879,19 @@ function filemanager_file_explorer( if ($allowZipFiles === true) { $uploadFileElements .= ui_print_help_tip(__('The zip upload in this dir, easy to upload multiple files.'), true); $uploadFileElements .= html_print_input_file('file', true, false); - $uploadFileElements .= html_print_checkbox('decompress', 1, false, true).__('Decompress'); + $uploadFileElements .= html_print_div( + [ + 'id' => 'checkbox-decompress', + 'content' => html_print_checkbox( + 'decompress', + 1, + false, + true, + ).__('Decompress'), + 'style' => 'margin-top:25px', + ], + true + ); $uploadFileElements .= html_print_input_hidden('upload_file_or_zip', 1, true); } else { $uploadFileElements .= html_print_div( From 202c9b5ea7b965cb49b13416be4b2f4850843aab Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 30 May 2023 16:26:06 +0200 Subject: [PATCH 275/533] #11383 Add autorefresh_white_list value --- pandora_console/godmode/users/configure_user.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 210d7e0945..0571046ebf 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -370,6 +370,9 @@ if ($create_user === true) { $values['strict_acl'] = (bool) get_parameter('strict_acl', false); $values['session_time'] = (int) get_parameter('session_time', 0); + // Previously defined. + $values['autorefresh_white_list'] = $autorefresh_white_list; + // eHorus user level conf. if ((bool) $config['ehorus_user_level_conf'] === true) { $values['ehorus_user_level_enabled'] = (bool) get_parameter('ehorus_user_level_enabled', false); From bf513a5c7a05c7d9d564d5da02d15fd6f09ed20e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Tue, 30 May 2023 08:28:47 -0600 Subject: [PATCH 276/533] Evaluate as 0 undefined values --- pandora_server/lib/PandoraFMS/Core.pm | 69 ++++++++++++--------------- 1 file changed, 31 insertions(+), 38 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 30a6f6c780..8e407e9703 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5253,71 +5253,64 @@ sub get_module_status ($$$$) { if ($module_type !~ m/_string/) { # Critical - if ($critical_min ne $critical_max && defined($module->{'critical_inverse'})) { + if ($critical_min ne $critical_max) { - # [critical_min, critical_max) - if ($module->{'critical_inverse'} == 0) { - return 1 if ($data >= $critical_min && $data < $critical_max); - return 1 if ($data >= $critical_min && $critical_max < $critical_min); - } # (-inf, critical_min), [critical_max, +inf) - else { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 1) { if ($critical_max < $critical_min) { return 1 if ($data < $critical_min); } else { return 1 if ($data < $critical_min || $data >= $critical_max); } } + # [critical_min, critical_max) + else { + return 1 if ($data >= $critical_min && $data < $critical_max); + return 1 if ($data >= $critical_min && $critical_max < $critical_min); + } } # Warning - if ($warning_min ne $warning_max && defined($module->{'warning_inverse'})) { - - # [warning_min, warning_max) - if ($module->{'warning_inverse'} == 0) { - return 2 if ($data >= $warning_min && $data < $warning_max); - return 2 if ($data >= $warning_min && $warning_max < $warning_min); - } + if ($warning_min ne $warning_max) { # (-inf, warning_min), [warning_max, +inf) - else { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 1) { if ($warning_max < $warning_min) { return 2 if ($data < $warning_min); } else { return 2 if ($data < $warning_min || $data >= $warning_max); } } + # [warning_min, warning_max) + else { + return 2 if ($data >= $warning_min && $data < $warning_max); + return 2 if ($data >= $warning_min && $warning_max < $warning_min); + } } } # String else { # Critical - if(defined($module->{'critical_inverse'})){ - - $eval_result = eval { - if ($module->{'critical_inverse'} == 0) { - $critical_str ne '' && $data =~ /$critical_str/ ; - } else { - $critical_str ne '' && $data !~ /$critical_str/ ; - } - }; + $eval_result = eval { + if (defined($module->{'critical_inverse'} && $module->{'critical_inverse'} == 1) { + $critical_str ne '' && $data !~ /$critical_str/ ; + } else { + $critical_str ne '' && $data =~ /$critical_str/ ; + } + }; - return 1 if ($eval_result); - } - + return 1 if ($eval_result); + # Warning - if(defined($module->{'warning_inverse'})){ - - $eval_result = eval { - if ($module->{'warning_inverse'} == 0) { - $warning_str ne '' && $data =~ /$warning_str/ ; - } else { - $warning_str ne '' && $data !~ /$warning_str/ ; - } - }; + $eval_result = eval { + if (defined($module->{'warning_inverse'} && $module->{'warning_inverse'} == 1) { + $warning_str ne '' && $data !~ /$warning_str/ ; + } else { + $warning_str ne '' && $data =~ /$warning_str/ ; + } + }; - return 2 if ($eval_result); - } + return 2 if ($eval_result); } # Normal From 84f32fdcac656d66b1b6ca69fac250ba7c269175 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 30 May 2023 16:31:39 +0200 Subject: [PATCH 277/533] #11236 added button in server metaconsole for edit remote config --- .../godmode/servers/modificar_server.php | 58 +++++++++++++------ .../godmode/servers/servers.build_table.php | 2 +- 2 files changed, 41 insertions(+), 19 deletions(-) diff --git a/pandora_console/godmode/servers/modificar_server.php b/pandora_console/godmode/servers/modificar_server.php index 844b0a618f..cb99f3b4ef 100644 --- a/pandora_console/godmode/servers/modificar_server.php +++ b/pandora_console/godmode/servers/modificar_server.php @@ -29,8 +29,8 @@ // Load global vars. global $config; -require_once 'include/functions_servers.php'; -require_once 'include/functions_graph.php'; +require_once $config['homedir'].'/include/functions_servers.php'; +require_once $config['homedir'].'/include/functions_graph.php'; check_login(); @@ -205,24 +205,46 @@ if (isset($_GET['server']) === true) { $buttons[$tab]['active'] = true; - ui_print_standard_header( - __('Remote Configuration'), - 'images/gm_servers.png', - false, - 'servers', - true, - $buttons, - [ + if (is_metaconsole() === true) { + ui_print_standard_header( + __('Remote Configuration'), + 'images/gm_servers.png', + false, + 'servers', + true, + [], [ - 'link' => '', - 'label' => __('Servers'), - ], + [ + 'link' => '', + 'label' => __('Servers'), + ], + [ + 'link' => 'index.php?sec=advanced&sec2=advanced/servers', + 'label' => __('%s servers', get_product_name()), + ], + ] + ); + } else { + ui_print_standard_header( + __('Remote Configuration'), + 'images/gm_servers.png', + false, + 'servers', + true, + $buttons, [ - 'link' => 'index.php?sec=gservers&sec2=godmode/servers/modificar_server', - 'label' => __('%s servers', get_product_name()), - ], - ] - ); + [ + 'link' => '', + 'label' => __('Servers'), + ], + [ + 'link' => 'index.php?sec=gservers&sec2=godmode/servers/modificar_server', + 'label' => __('%s servers', get_product_name()), + ], + ] + ); + } + if ($tab === 'standard_editor') { $advanced_editor = false; diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php index b38ff6591a..8d2418cc5e 100644 --- a/pandora_console/godmode/servers/servers.build_table.php +++ b/pandora_console/godmode/servers/servers.build_table.php @@ -259,7 +259,7 @@ foreach ($servers as $server) { 'images/agents@svg.svg', true, [ - 'title' => __('Manage satellite hosts'), + 'title' => __('Manage server conf'), 'class' => 'main_menu_icon invert_filter', ] ); From accb760cb76ab3ac00a19eb3bb5d9799f889d03f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Tue, 30 May 2023 08:44:52 -0600 Subject: [PATCH 278/533] Small adjustments --- pandora_server/lib/PandoraFMS/Core.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 8e407e9703..384b2aa0d5 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -5292,7 +5292,7 @@ sub get_module_status ($$$$) { # Critical $eval_result = eval { - if (defined($module->{'critical_inverse'} && $module->{'critical_inverse'} == 1) { + if (defined($module->{'critical_inverse'}) && $module->{'critical_inverse'} == 1) { $critical_str ne '' && $data !~ /$critical_str/ ; } else { $critical_str ne '' && $data =~ /$critical_str/ ; @@ -5303,7 +5303,7 @@ sub get_module_status ($$$$) { # Warning $eval_result = eval { - if (defined($module->{'warning_inverse'} && $module->{'warning_inverse'} == 1) { + if (defined($module->{'warning_inverse'}) && $module->{'warning_inverse'} == 1) { $warning_str ne '' && $data !~ /$warning_str/ ; } else { $warning_str ne '' && $data =~ /$warning_str/ ; From 2a7eb1e06912350af38f6ecff1eda92570ba9ee0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 30 May 2023 17:17:34 +0200 Subject: [PATCH 279/533] #11280 fixed acoustic console name --- pandora_console/godmode/menu.php | 4 ++-- pandora_console/include/class/EventSound.class.php | 4 ++-- pandora_console/operation/events/events.php | 6 +++--- pandora_console/operation/events/sound_events.php | 2 +- pandora_console/operation/menu.php | 8 ++++---- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index f6e4aac358..0546647846 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -452,8 +452,8 @@ if ((bool) check_acl($config['id_user'], 0, 'PM') === true || (bool) check_acl($ } } - $sub['godmode/events/configuration_sounds']['text'] = __('Accoustic console setup'); - $sub['godmode/events/configuration_sounds']['id'] = 'Accoustic console setup'; + $sub['godmode/events/configuration_sounds']['text'] = __('Acoustic console setup'); + $sub['godmode/events/configuration_sounds']['id'] = 'Acoustic console setup'; $sub['godmode/events/configuration_sounds']['pages'] = ['godmode/events/configuration_sounds']; $menu_godmode['gextensions']['sub'] = $sub; diff --git a/pandora_console/include/class/EventSound.class.php b/pandora_console/include/class/EventSound.class.php index 41e54cc4ff..7d9bfbca6e 100644 --- a/pandora_console/include/class/EventSound.class.php +++ b/pandora_console/include/class/EventSound.class.php @@ -209,7 +209,7 @@ class EventSound extends HTML $titleHeader = __('Add new sound'); } else { $helpHeader = 'servers_ha_clusters_tab'; - $titleHeader = __('Accoustic console sound list'); + $titleHeader = __('Acoustic console sound list'); } // Header. @@ -227,7 +227,7 @@ class EventSound extends HTML ], [ 'link' => '', - 'label' => __('Accoustic console setup'), + 'label' => __('Acoustic console setup'), ], ] ); diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index f0e69a427c..d1d653777a 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -1560,7 +1560,7 @@ if ($pure) { ] ).''; - // Accoustic console. + // Acoustic console. $sound_event['active'] = false; // Sound Events. @@ -1583,7 +1583,7 @@ if ($pure) { 'images/sound_console@svg.svg', true, [ - 'title' => __('Accoustic console'), + 'title' => __('Acoustic console'), 'class' => 'invert_filter main_menu_icon', ] ).''; @@ -1633,7 +1633,7 @@ if ($pure) { switch ($section) { case 'sound_event': $onheader['sound_event']['active'] = true; - $section_string = __('Accoustic console'); + $section_string = __('Acoustic console'); break; case 'history': diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index c4a968e3df..89ae198e01 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -59,7 +59,7 @@ echo ''; echo ''; ?> -<?php echo __('Accoustic console'); ?>) +<?php echo __('Acoustic console'); ?>) diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 4e72aaac16..96462b0eed 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -563,11 +563,11 @@ if ($access_console_node === true) { $sub['operation/events/events_rss.php?user='.$config['id_user'].'&hashup='.$hashup.'&fb64='.$fb64]['type'] = 'direct'; } - // Accoustic console. + // Acoustic console. $data_sound = base64_encode( json_encode( [ - 'title' => __('Accoustic console'), + 'title' => __('Acoustic console'), 'start' => __('Start'), 'stop' => __('Stop'), 'noAlert' => __('No alert'), @@ -580,8 +580,8 @@ if ($access_console_node === true) { ); $javascript = 'javascript: openSoundEventModal(`'.$data_sound.'`);'; - $sub[$javascript]['text'] = __('Accoustic console'); - $sub[$javascript]['id'] = 'Accoustic console Modal'; + $sub[$javascript]['text'] = __('Acoustic console'); + $sub[$javascript]['id'] = 'Acoustic console Modal'; $sub[$javascript]['type'] = 'direct'; echo ''; From eb1e28ce7df780b1e4c7fb1c3e0939014dcb735a Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 30 May 2023 17:18:58 +0200 Subject: [PATCH 280/533] #11280 fixed acoustic console name --- pandora_console/operation/events/sound_events.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index 89ae198e01..bae7c0cdd2 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -59,7 +59,7 @@ echo ''; echo ''; ?> -<?php echo __('Acoustic console'); ?>) +<?php echo __('Acoustic console'); ?> From 13725892f9a1fe06e9e2881d95cabed0070f406c Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 17:26:51 +0200 Subject: [PATCH 281/533] #11409 buttons update online change --- .../update_manager_client/resources/styles/um.css | 13 ++----------- .../update_manager_client/views/online.php | 10 ++++++---- 2 files changed, 8 insertions(+), 15 deletions(-) diff --git a/pandora_console/update_manager_client/resources/styles/um.css b/pandora_console/update_manager_client/resources/styles/um.css index 0da988139b..6595bc4e82 100644 --- a/pandora_console/update_manager_client/resources/styles/um.css +++ b/pandora_console/update_manager_client/resources/styles/um.css @@ -315,19 +315,10 @@ a.update_manager_button:after { } #um-buttons button { - margin: 0 1em 1em 1em; - border: none; padding: 10px; cursor: pointer; - background: #efefef; -} - -#um-buttons button:hover { - background: #ddd; -} - -#um-buttons button:active { - background: #ccc; + width: 285px; + margin: 20px; } .ui-widget.ui-widget-content { diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php index f60b0f5e52..d85b26ecb8 100644 --- a/pandora_console/update_manager_client/views/online.php +++ b/pandora_console/update_manager_client/views/online.php @@ -61,8 +61,10 @@ global $config;
@@ -99,8 +101,8 @@ global $config; window.onload = function() { var bsearch = document.getElementById('um-search'); - var bnext = document.getElementById('um-next'); - var blast = document.getElementById('um-last'); + var bnext = document.getElementById('button-um-next'); + var blast = document.getElementById('button-um-last'); var result = document.getElementById('um-result'); Date: Tue, 30 May 2023 17:41:12 +0200 Subject: [PATCH 282/533] #11417 fixed accoustic console --- pandora_console/include/styles/sound_events.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/styles/sound_events.css b/pandora_console/include/styles/sound_events.css index 5bab51a89d..3b36dc67a2 100644 --- a/pandora_console/include/styles/sound_events.css +++ b/pandora_console/include/styles/sound_events.css @@ -4,6 +4,9 @@ div.container-button-play > button#button-start-search { transition: none !important; } +.wizard { + text-align: left; +} #modal-sound { display: flex; flex-direction: column; @@ -66,7 +69,7 @@ div.container-button-play > button#button-start-search { width: inherit; position: absolute; top: -12px; - left: 50%; + left: 52%; } #tabs-sound-modal ul.wizard li.interval-sounds label:first-of-type, From 71d196778b5e5b1b0beb75dcf6eb1be538e84e6d Mon Sep 17 00:00:00 2001 From: Jonathan Date: Tue, 30 May 2023 17:41:34 +0200 Subject: [PATCH 283/533] #11409 update online fix styles --- .../lib/UpdateManager/UI/Manager.php | 2 +- .../update_manager_client/resources/javascript/umc.js | 4 ++++ .../update_manager_client/resources/styles/um.css | 8 ++++++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php index 9c6abff902..626899e56e 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php @@ -481,7 +481,7 @@ class Manager if (count($updates) > 0) { $next = $updates[0]; - $return = '

'.\__('Next update').':'; + $return = '

'.\__('Next update').': '; $return .= $next['version'].''; $return .= ' - Date: Wed, 31 May 2023 01:00:20 +0200 Subject: [PATCH 284/533] 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 068d25ba61..0fe7c93e93 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-230530 +Version: 7.0NG.771-230531 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 0ca3e7bc19..1983b62c04 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-230530" +pandora_version="7.0NG.771-230531" 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 61818d4d77..4a064315bd 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 => '230530'; +use constant AGENT_BUILD => '230531'; # 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 61b7de98c3..3125e9c2bb 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 230530 +%define release 230531 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 69cdf3c0e9..7acb408822 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 230530 +%define release 230531 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 563121f5e2..fffd893af9 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="230530" +PI_BUILD="230531" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 7709331714..a3ff172ec1 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230530} +{230531} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 394ea74ed3..d01ac3a5a9 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 230530") +#define PANDORA_VERSION ("7.0NG.771 Build 230531") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index ea51a460fc..bfbc09f5a2 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 230530))" + VALUE "ProductVersion", "(7.0NG.771(Build 230531))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index a8053b5563..661d94abb2 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230530 +Version: 7.0NG.771-230531 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 45449be129..6b10b1a37b 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-230530" +pandora_version="7.0NG.771-230531" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 55bdd44779..8a4b2c0117 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 = 'PC230530'; +$build_version = 'PC230531'; $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 7cb1d40aec..f34cee66df 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 65e55331b9..8768bfc072 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 230530 +%define release 230531 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 3fb9655291..d4b42166b1 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 230530 +%define release 230531 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 6e6f49d985..309fde18be 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230530" +PI_BUILD="230531" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index fa7b89786a..20e720c704 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 230530"; +my $version = "7.0NG.771 Build 230531"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index c2fd71141a..3da69ef276 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 230530"; +my $version = "7.0NG.771 Build 230531"; # save program name for logging my $progname = basename($0); From d978d79747a78ddb4551682a69e621542a1a93d5 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 31 May 2023 09:00:18 +0200 Subject: [PATCH 285/533] #11378 Fixed line breaks in text area Web Checks --- .../godmode/agentes/module_manager_editor_web.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager_editor_web.php b/pandora_console/godmode/agentes/module_manager_editor_web.php index 4e97ffaa57..cf983cadfd 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_web.php +++ b/pandora_console/godmode/agentes/module_manager_editor_web.php @@ -113,7 +113,8 @@ if ($id_policy_module > 0) { $plugin_parameter_split = explode(' ', $plugin_parameter); $plugin_parameter_final_split = ''; -foreach ($plugin_parameter_split as $key => $value) { +$new_plugin_parameter_split = array_filter($plugin_parameter_split, 'strlen'); +foreach ($new_plugin_parameter_split as $key => $value) { if (strpos($value, 'http_auth_user') === false && strpos($value, 'http_auth_pass') === false) { $plugin_parameter_final_split .= $value.' '; } @@ -317,8 +318,7 @@ foreach ($texts as $code => $text) { return; } - $(plugin_parameter).val( - 'task_begin\ncookie 0\nresource 0\ntask_end'); + $(plugin_parameter).val('task_begin\ncookie 0\nresource 0\ntask_end'); $('#button-btn_loadbasic').attr('disabled', 'disabled'); From aa74ba0546adb96b48178bfb5caf46dc9b967531 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 31 May 2023 11:02:44 +0200 Subject: [PATCH 286/533] #11349 Fix invisible css class to display none --- pandora_console/include/styles/bootstrap.min.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/styles/bootstrap.min.css b/pandora_console/include/styles/bootstrap.min.css index 8500ec8fb0..5937c44c2a 100644 --- a/pandora_console/include/styles/bootstrap.min.css +++ b/pandora_console/include/styles/bootstrap.min.css @@ -9111,7 +9111,7 @@ a.text-dark:hover { visibility: visible !important; } .invisible { - visibility: hidden !important; + display: none; } @media print { *, From 372ef844e7604d928475b8571b66605c697f1089 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 31 May 2023 12:17:05 +0200 Subject: [PATCH 287/533] #11415 Add html editor with tinymce --- pandora_console/views/dashboard/configurationWidgets.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pandora_console/views/dashboard/configurationWidgets.php b/pandora_console/views/dashboard/configurationWidgets.php index a48a3acd8e..55ef9f24c6 100644 --- a/pandora_console/views/dashboard/configurationWidgets.php +++ b/pandora_console/views/dashboard/configurationWidgets.php @@ -59,5 +59,7 @@ HTML::printForm( $output .= ''; - +$output .= ''; echo $output; From 9e495eaadd17c1ef337dfcca477e4ddd8cb3a51f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 31 May 2023 12:33:26 +0200 Subject: [PATCH 288/533] =?UTF-8?q?#10144=20added=20info=20plugin=20in=20c?= =?UTF-8?q?entralized=20mode=20and=20added=20module=20info=20in=20meta?= =?UTF-8?q?=C3=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pandora_console/godmode/servers/plugin.php | 182 +++++++++++++-------- 1 file changed, 115 insertions(+), 67 deletions(-) diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 75db97e1e7..eba56e34c6 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -57,21 +57,9 @@ if (is_ajax()) { $network_components = []; } - $modules = db_get_all_rows_filter( - 'tagente_modulo', - [ - 'delete_pending' => 0, - 'id_plugin' => $id_plugin, - ] - ); - if (empty($modules)) { - $modules = []; - } - $table = new stdClass(); $table->width = '100%'; $table->head[0] = __('Network Components'); - // $table->data = []; foreach ($network_components as $net_comp) { $table->data[] = [$net_comp['name']]; } @@ -80,24 +68,86 @@ if (is_ajax()) { html_print_table($table); } - $table = new stdClass(); - $table->width = '100%'; - $table->head[0] = __('Agent'); - $table->head[1] = __('Module'); - foreach ($modules as $mod) { - $agent_name = ''.modules_get_agentmodule_agent_alias( - $mod['id_agente_modulo'] - ).''; + if (is_metaconsole() === true) { + $connection_names = metaconsole_get_connection_names(); + $modules = []; + foreach ($connection_names as $connection_name) { + $connected = metaconsole_connect(metaconsole_get_connection($connection_name)); + if ($connected != NOERR) { + continue; + } + $modules_node = db_get_all_rows_filter( + 'tagente_modulo', + [ + 'delete_pending' => 0, + 'id_plugin' => $id_plugin, + ] + ); + if (empty($modules_node) === false) { + foreach ($modules_node as $key => $mod) { + $modules_node[$key]['name_agent'] = modules_get_agentmodule_agent_alias($mod['id_agente_modulo']); + } - $table->data[] = [ - $agent_name, - $mod['nombre'], - ]; + $modules[$connection_name] = $modules_node; + } + + metaconsole_restore_db(); + } + } else { + $modules = db_get_all_rows_filter( + 'tagente_modulo', + [ + 'delete_pending' => 0, + 'id_plugin' => $id_plugin, + ] + ); } - if (!empty($table->data)) { - html_print_table($table); + if (empty($modules)) { + $modules = []; + } + + if (is_metaconsole() === true) { + foreach ($modules as $name_server => $modules_node) { + $table = new stdClass(); + $table->width = '100%'; + $table->head[0] = $name_server.' - '.__('Agent'); + $table->head[1] = $name_server.' - '.__('Module'); + foreach ($modules_node as $mod) { + $server = metaconsole_get_servers(metaconsole_get_id_server($name_server)); + $agent_name = ''.$mod['name_agent'].''; + + $table->data[] = [ + $agent_name, + $mod['nombre'], + ]; + } + + if (!empty($table->data)) { + html_print_table($table); + } + } + } else { + $table = new stdClass(); + $table->width = '100%'; + $table->head[0] = __('Agent'); + $table->head[1] = __('Module'); + foreach ($modules as $mod) { + $agent_name = ''.modules_get_agentmodule_agent_alias( + $mod['id_agente_modulo'] + ).''; + + + $table->data[] = [ + $agent_name, + $mod['nombre'], + ]; + } + + if (!empty($table->data)) { + html_print_table($table); + } } return; @@ -991,8 +1041,39 @@ if (empty($create) === false || empty($view) === false) { $pluginTable->data = []; foreach ($rows as $k => $row) { + $tableActionButtons = []; + // Show it is locket. + $modules_using_plugin = db_get_value_filter( + 'count(*)', + 'tagente_modulo', + [ + 'delete_pending' => 0, + 'id_plugin' => $row['id'], + ] + ); + $components_using_plugin = db_get_value_filter( + 'count(*)', + 'tnetwork_component', + ['id_plugin' => $row['id']] + ); + if (($components_using_plugin + $modules_using_plugin) > 0) { + $tableActionButtons[] = html_print_anchor( + [ + 'href' => 'javascript: show_locked_dialog('.$row['id'].', \''.$row['name'].'\');', + 'content' => html_print_image( + 'images/policy@svg.svg', + true, + [ + 'title' => __('Lock'), + 'class' => 'invert_filter main_menu_icon', + ] + ), + ], + true + ); + } + if ($management_allowed === true) { - $tableActionButtons = []; $pluginNameContent = html_print_anchor( [ 'href' => 'index.php?sec=$sec&sec2=godmode/servers/plugin&view='.$row['id'].'&tab=plugins&pure='.$config['pure'], @@ -1001,37 +1082,6 @@ if (empty($create) === false || empty($view) === false) { true ); - // Show it is locket. - $modules_using_plugin = db_get_value_filter( - 'count(*)', - 'tagente_modulo', - [ - 'delete_pending' => 0, - 'id_plugin' => $row['id'], - ] - ); - $components_using_plugin = db_get_value_filter( - 'count(*)', - 'tnetwork_component', - ['id_plugin' => $row['id']] - ); - if (($components_using_plugin + $modules_using_plugin) > 0) { - $tableActionButtons[] = html_print_anchor( - [ - 'href' => 'javascript: show_locked_dialog('.$row['id'].', \''.$row['name'].'\');', - 'content' => html_print_image( - 'images/policy@svg.svg', - true, - [ - 'title' => __('Lock'), - 'class' => 'invert_filter main_menu_icon', - ] - ), - ], - true - ); - } - $tableActionButtons[] = html_print_anchor( [ 'href' => 'index.php?sec=$sec&sec2=godmode/servers/plugin&tab=$tab&view='.$row['id'].'&tab=plugins&pure='.$config['pure'], @@ -1072,15 +1122,13 @@ if (empty($create) === false || empty($view) === false) { $pluginTable->data[$k][1] = ((int) $row['plugin_type'] === 0) ? __('Standard') : __('Nagios'); $pluginTable->data[$k][2] = $row['execute']; - if ($management_allowed === true) { - $pluginTable->data[$k][3] = html_print_div( - [ - 'class' => 'table_action_buttons', - 'content' => implode('', $tableActionButtons), - ], - true - ); - } + $pluginTable->data[$k][3] = html_print_div( + [ + 'class' => 'table_action_buttons', + 'content' => implode('', $tableActionButtons), + ], + true + ); } html_print_table($pluginTable); From 577428d193326d9d33840402607ffa5d5fdf8ae1 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 31 May 2023 13:07:24 +0200 Subject: [PATCH 289/533] #11001 images tips default en_gb --- pandora_console/include/class/TipsWindow.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 544b68a7cf..0aafe10ff0 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -289,6 +289,12 @@ class TipsWindow WHERE enable = "1" AND id_lang = "'.$language.'"'; $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; $tip = db_get_row_sql($sql); + + $tip['files'] = $this->getFilesFromTip($tip['id']); + + $tip['title'] = io_safe_output($tip['title']); + $tip['text'] = io_safe_output($tip['text']); + $tip['url'] = io_safe_output($tip['url']); } if ($return) { From 3df928fab843ec5a7f36c01a7de4ef2aa3ec0900 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 31 May 2023 14:02:13 +0200 Subject: [PATCH 290/533] #11327 change input for textarea in edit plugin --- pandora_console/godmode/servers/plugin.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 75db97e1e7..276dea4b51 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -487,17 +487,16 @@ if (empty($create) === false || empty($view) === false) { $data = []; $data[0] = html_print_label_input_block( __('Plug-in parameters'), - html_print_input_text( + html_print_textarea( 'form_parameters', + 4, + 50, $parameters, '', - 100, - 255, true, + 'command_component command_advanced_conf text_input', false, - false, - '', - 'command_component command_advanced_conf text_input' + false ) ); @@ -1119,7 +1118,7 @@ ui_require_javascript_file('pandora_modules'); function update_preview() { var command = $('#text-form_execute').val(); - var parameters = $('#text-form_parameters').val(); + var parameters = $('#textarea_form_parameters').val(); var i = 1; while (1) { From 101ba8dad3cc7fb5f12dd011c55f0a2bbec49e34 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 31 May 2023 14:20:33 +0200 Subject: [PATCH 291/533] #11001 tips correction --- .../include/class/TipsWindow.class.php | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 0aafe10ff0..94a6f6a4ba 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -275,14 +275,14 @@ class TipsWindow $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; $tip = db_get_row_sql($sql); - + $check_tips = db_get_row_sql('SELECT count(*) AS tips FROM twelcome_tip WHERE id_lang = "'.$language.'"')['tips']; if (empty($tip) === false) { $tip['files'] = $this->getFilesFromTip($tip['id']); $tip['title'] = io_safe_output($tip['title']); $tip['text'] = io_safe_output($tip['text']); $tip['url'] = io_safe_output($tip['url']); - } else { + } else if ($check_tips === '0') { $language = 'en_GB'; $sql = 'SELECT id, title, text, url FROM twelcome_tip @@ -325,6 +325,15 @@ class TipsWindow global $config; $profilesUser = users_get_user_profile($config['id_user']); $idProfilesFilter = '0'; + $userInfo = users_get_user_by_id($config['id_user']); + $language = ($userInfo['language'] !== 'default') ? $userInfo['language'] : $config['language']; + + $check_tips = db_get_row_sql('SELECT count(*) AS tips FROM twelcome_tip WHERE id_lang = "'.$language.'"')['tips']; + + if ($check_tips === '0') { + $language = 'en_GB'; + } + foreach ($profilesUser as $key => $profile) { $idProfilesFilter .= ','.$profile['id_perfil']; } @@ -334,10 +343,9 @@ class TipsWindow WHERE enable = "1" '; $sql .= sprintf(' AND id_profile IN (%s)', $idProfilesFilter); - $sql .= sprintf(' AND id_lang = "%s"', $config['language']); - - $sql .= ' ORDER BY CASE WHEN id_lang = "'.$config['language'].'" THEN id_lang END DESC, RAND()'; + $sql .= sprintf(' AND id_lang = "%s"', $language); + $sql .= ' ORDER BY CASE WHEN id_lang = "'.$language.'" THEN id_lang END DESC, RAND()'; return db_get_sql($sql); } From 0658282306746dcde0f0e8a766bf61885984ee16 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Wed, 31 May 2023 15:10:01 +0200 Subject: [PATCH 292/533] #11406 Fixed the bug that allows to show the delete icon of the OS component --- pandora_console/godmode/setup/os.list.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php index 0322fe79f1..5dbd74ec86 100644 --- a/pandora_console/godmode/setup/os.list.php +++ b/pandora_console/godmode/setup/os.list.php @@ -66,7 +66,7 @@ $table->head[1] = __('Icon'); $table->head[2] = __('Name'); $table->head[3] = __('Description'); if ($is_management_allowed === true) { - $table->head[4] = ''; + $table->head[4] = __('Actions'); } if ($is_management_allowed === true) { @@ -132,8 +132,7 @@ foreach ($osList as $os) { $data[] = html_print_anchor( [ 'href' => $hrefDelete, - 'class' => 'invert_filter main_menu_icon', - 'content' => html_print_image('images/delete.svg', true), + 'content' => html_print_image('images/delete.svg', true, ['class' => 'main_menu_icon invert_filter']), ], true ); From ad0dcf45d96c7e25380a2b667cc3c70ec585d59f Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 31 May 2023 15:34:19 +0200 Subject: [PATCH 293/533] #10979 added grafana plugin --- pandora_console/extensions/grafana/.htaccess | 7 + pandora_console/extensions/grafana/index.php | 66 +++++++++ pandora_console/extensions/grafana/query.php | 139 ++++++++++++++++++ pandora_console/extensions/grafana/search.php | 87 +++++++++++ 4 files changed, 299 insertions(+) create mode 100644 pandora_console/extensions/grafana/.htaccess create mode 100644 pandora_console/extensions/grafana/index.php create mode 100644 pandora_console/extensions/grafana/query.php create mode 100644 pandora_console/extensions/grafana/search.php diff --git a/pandora_console/extensions/grafana/.htaccess b/pandora_console/extensions/grafana/.htaccess new file mode 100644 index 0000000000..7b8e46129e --- /dev/null +++ b/pandora_console/extensions/grafana/.htaccess @@ -0,0 +1,7 @@ +# /etc/httpd/conf/httpd.conf -> AllowOverride All -> service httpd restart + +RewriteEngine on + +RewriteCond %{REQUEST_FILENAME} !-d +RewriteCond %{REQUEST_FILENAME}\.php -f +RewriteRule ^(.*)$ $1.php \ No newline at end of file diff --git a/pandora_console/extensions/grafana/index.php b/pandora_console/extensions/grafana/index.php new file mode 100644 index 0000000000..e925e56233 --- /dev/null +++ b/pandora_console/extensions/grafana/index.php @@ -0,0 +1,66 @@ + 200, + 'message' => 'Access granted', + ]; + } else { + $result_array = [ + 'code' => 403, + 'message' => 'Access forbidden', + ]; + } + } else { + $result_array = [ + 'code' => 401, + 'message' => 'Unauthorized', + ]; + } +} else { + // OPTIONS request automatically works + if ($_SERVER['REQUEST_METHOD'] == 'OPTIONS') { + $result_array = [ + 'code' => 200, + 'message' => 'Options request accepted', + ]; + } else { + $result_array = [ + 'code' => 401, + 'message' => 'Unauthorized', + ]; + } +} + +// Numeric data in array must be numeric data in json (not text) +$result = json_encode($result_array, JSON_NUMERIC_CHECK); + +echo $result; diff --git a/pandora_console/extensions/grafana/query.php b/pandora_console/extensions/grafana/query.php new file mode 100644 index 0000000000..c5812a32c9 --- /dev/null +++ b/pandora_console/extensions/grafana/query.php @@ -0,0 +1,139 @@ + $target_data['module'], + 'period' => (strtotime($payload['range']['to']) - strtotime($payload['range']['from'])), + 'date' => strtotime($payload['range']['to']), + 'return_data' => 1, + 'show_unknown' => true, + 'fullscale' => (bool) $target_data['tip'], + 'time_interval' => $target_data['interval'], + ]; + + // Get all data. + $data = grafico_modulo_sparse($params); + + $unknown_timestamps = []; + + // Set unknown data as null. + foreach ($data['unknown1']['data'] as $d) { + if (($d[1] == 1 && !$params['fullscale']) || ($d[1] == 0 && $params['fullscale'])) { + $result_data[] = [ + null, + $d[0], + ]; + } + + $unknown_timestamps[] = $d[0]; + } + + // Get each data if not in unknown timestamps + foreach ($data['sum1']['data'] as $d) { + if ($d[1] != false && !in_array($d[0], $unknown_timestamps)) { + $result_data[] = [ + $d[1], + $d[0], + ]; + } + } + + // Sort all data by utimestamp (Grafana needs it). + usort( + $result_data, + function ($a, $b) { + return $a[1] > $b[1] ? 1 : -1; + } + ); + + $rows = []; + + foreach ($result_data as $k => $v) { + if (($result_data[$k][0] !== $result_data[($k - 1)][0] + || $result_data[$k][0] !== $result_data[($k + 1)][0]) + || ($result_data[($k - 1)][0] === null + && $result_data[$k][0] !== null + && $result_data[$k][1] != (strtotime($payload['range']['to']) * 1000)) + || ($result_data[($k - 1)][0] === $result_data[$k][0] && $result_data[$k][1] == (strtotime($payload['range']['to']) * 1000)) + ) { + $rows[] = $result_data[$k]; + } + } + + if (!$params['fullscale']) { + $target_data['target'] .= ' (avg)'; + } + + // Set all target info and data + $result_array[] = [ + 'type' => 'table', + 'target' => $target_data['target'], + 'refId' => $target_data['target'], + 'columns' => [ + [ + 'text' => $target_data['target'], + ], + [ + 'text' => 'Time', + 'type' => 'time', + ], + ], + 'datapoints' => array_values($rows), + ]; + } + } + } + } +} + +// Numeric data in array must be numeric data in json (not text). +$result = json_encode($result_array, JSON_NUMERIC_CHECK); + +echo $result; diff --git a/pandora_console/extensions/grafana/search.php b/pandora_console/extensions/grafana/search.php new file mode 100644 index 0000000000..48a4f819a9 --- /dev/null +++ b/pandora_console/extensions/grafana/search.php @@ -0,0 +1,87 @@ + 0, + 'text' => 'All', + ]; + + // Get groups that match the search + $sql = 'SELECT nombre, id_grupo id FROM tgrupo WHERE LOWER(nombre) LIKE LOWER("%'.io_safe_input($payload['search']).'%")'; + + // If search is for agents + } else if ($payload['type'] == 'agent') { + // Get agents that match the search + $sql = 'SELECT a.alias nombre, a.id_agente id FROM tagente a, tgrupo g WHERE a.disabled = 0 AND a.id_grupo = g.id_grupo AND LOWER(a.alias) LIKE LOWER("%'.io_safe_input($payload['search']).'%")'; + + // If search group is not all, add extra filter + if ($payload['extra'] != 0) { + $sql .= ' AND g.id_grupo = "'.io_safe_input($payload['extra']).'"'; + } + + // If search is for modules + } else if ($payload['type'] == 'module') { + // Get modules that match the search (not string) + $sql = 'SELECT m.nombre nombre, m.id_agente_modulo id FROM tagente_modulo m, tagente a, ttipo_modulo t WHERE m.disabled = 0 AND m.id_agente = a.id_agente AND t.id_tipo = m.id_tipo_modulo AND a.id_agente = "'.io_safe_input($payload['extra']).'" AND LOWER(m.nombre) LIKE LOWER("%'.io_safe_input($payload['search']).'%") AND t.nombre NOT LIKE "%string"'; + } + + // Run query + $sql_results = db_get_all_rows_sql($sql); + + foreach ($sql_results as $sql_result) { + // If search is for groups, only add those with permissions + if ($payload['type'] == 'group') { + if (check_acl($user_in_db, $sql_result['id'], 'AR')) { + $result_array[] = [ + 'value' => $sql_result['id'], + 'text' => io_safe_output($sql_result['nombre']), + ]; + } + } else { + $result_array[] = [ + 'value' => $sql_result['id'], + 'text' => io_safe_output($sql_result['nombre']), + ]; + } + } + } + } +} + +$result = json_encode($result_array, JSON_UNESCAPED_UNICODE); + +echo $result; From eba2e0d9f1b3b2d66398c9ab5689622d1146cabf Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 31 May 2023 15:39:06 +0200 Subject: [PATCH 294/533] #11404 Fix order sql query --- pandora_console/include/functions_agents.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index f8bb2fc024..2a91b50287 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -1689,7 +1689,7 @@ function agents_get_modules( WHERE tagente_modulo.delete_pending = 0 AND %s GROUP BY 1 - ORDER BY 1', + ORDER BY tagente_modulo.nombre', ($details != 'tagente_modulo.*' && $indexed) ? 'tagente_modulo.id_agente_modulo,' : '', io_safe_output(implode(',', (array) $details)), $sql_tags_join, From d15a3904fbbfeff843322711cc3d8ea3b42bf273 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 1 Jun 2023 01:00:19 +0200 Subject: [PATCH 295/533] 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 0fe7c93e93..ec108607af 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-230531 +Version: 7.0NG.771-230601 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 1983b62c04..3b5feeee14 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-230531" +pandora_version="7.0NG.771-230601" 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 4a064315bd..344e125ffc 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 => '230531'; +use constant AGENT_BUILD => '230601'; # 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 3125e9c2bb..0c7345a377 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 230531 +%define release 230601 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 7acb408822..3d1c044da5 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 230531 +%define release 230601 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 fffd893af9..254fd16ca3 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="230531" +PI_BUILD="230601" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index a3ff172ec1..eb23e0bd05 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230531} +{230601} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d01ac3a5a9..d32fad17dd 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 230531") +#define PANDORA_VERSION ("7.0NG.771 Build 230601") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index bfbc09f5a2..eeb739c5c1 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 230531))" + VALUE "ProductVersion", "(7.0NG.771(Build 230601))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 661d94abb2..d06abfe8ae 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230531 +Version: 7.0NG.771-230601 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 6b10b1a37b..2e62b33f4c 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-230531" +pandora_version="7.0NG.771-230601" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8a4b2c0117..47c0ee51ef 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 = 'PC230531'; +$build_version = 'PC230601'; $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 f34cee66df..b756b1c325 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 8768bfc072..1a45a66a8d 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 230531 +%define release 230601 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index d4b42166b1..8dd2252d7b 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 230531 +%define release 230601 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 309fde18be..b9e47a6bc2 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230531" +PI_BUILD="230601" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 20e720c704..bd60360889 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 230531"; +my $version = "7.0NG.771 Build 230601"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 3da69ef276..d42cc6db58 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 230531"; +my $version = "7.0NG.771 Build 230601"; # save program name for logging my $progname = basename($0); From 162c33733f58d3aae112fab0217c8e418ad197bf Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 1 Jun 2023 10:31:14 +0200 Subject: [PATCH 296/533] #11430 Added a validation that checks if the User id already exists --- pandora_console/godmode/users/configure_user.php | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 210d7e0945..808261ef61 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -384,6 +384,8 @@ if ($create_user === true) { // Generate new API token. $values['api_token'] = api_token_generate(); + // Validate the user ID if it already exists. + $user_exists = get_user_info($id); if (empty($id) === true) { ui_print_error_message(__('User ID cannot be empty')); @@ -392,6 +394,13 @@ if ($create_user === true) { $password_new = ''; $password_confirm = ''; $new_user = true; + } else if (isset($user_exists['id_user'])) { + $is_err = true; + ui_print_error_message(__('User ID already exists')); + $user_info = $values; + $password_new = ''; + $password_confirm = ''; + $new_user = true; } else if (preg_match('/^\s+|\s+$/', io_safe_output($id))) { ui_print_error_message(__('Invalid user ID: leading or trailing blank spaces not allowed')); $is_err = true; From 7d0eeab261de55281879bd43008db90ee427a8ce Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 1 Jun 2023 10:32:30 +0200 Subject: [PATCH 297/533] #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 f7c5d6b296e3b2bad6b7a5426963617401a6c1f0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 1 Jun 2023 10:43:48 +0200 Subject: [PATCH 298/533] #11432 added tip in Threshold in alert popup --- pandora_console/include/ajax/alert_list.ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/alert_list.ajax.php b/pandora_console/include/ajax/alert_list.ajax.php index 7d9e372d7e..4f5b120a6d 100644 --- a/pandora_console/include/ajax/alert_list.ajax.php +++ b/pandora_console/include/ajax/alert_list.ajax.php @@ -537,7 +537,7 @@ if ($show_update_action_menu) { $data .= ''; $data .= ''; $data .= ''; - $data .= __('Threshold'); + $data .= __('Threshold').ui_print_help_tip(__('If a value of 0 is assigned, the Threshold of the action will be used.'), true); $data .= ''; $data .= ''; $data .= html_print_extended_select_for_time( From 4f1d5e217ab658a0237ee7895a0bff236522a71e Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 1 Jun 2023 12:00:46 +0200 Subject: [PATCH 299/533] #11416 Added recursive group search in AD --- pandora_console/include/functions_config.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index ec6b775434..468c228733 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -607,6 +607,10 @@ function config_update_config() $error_update[] = __('Start TLS'); } + if (config_update_value('recursive_search', get_parameter('recursive_search'), true) === false) { + $error_update[] = __('Recursive search'); + } + if (config_update_value('ad_advanced_config', get_parameter('ad_advanced_config'), true) === false) { $error_update[] = __('Advanced Config AD'); } @@ -3082,6 +3086,10 @@ function config_process_config() config_update_value('ad_start_tls', 0); } + if (!isset($config['recursive_search'])) { + config_update_value('recursive_search', 1); + } + if (!isset($config['ad_advanced_config'])) { config_update_value('ad_advanced_config', 0); } From 4e1e9a1d991b5792ef9c42d307f8802cc0bfd0a2 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 1 Jun 2023 12:27:58 +0200 Subject: [PATCH 300/533] #11431 Fix alert conditional table and menu --- pandora_console/godmode/menu.php | 1 - .../operation/agentes/alerts_status.php | 42 +++++++++---------- 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 0546647846..c4163611a2 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -259,7 +259,6 @@ if ($access_console_node === true) { if ((bool) check_acl($config['id_user'], 0, 'LW') === true || (bool) check_acl($config['id_user'], 0, 'LM') === true - || (bool) check_acl($config['id_user'], 0, 'AD') === true ) { $menu_godmode['galertas']['text'] = __('Alerts'); $menu_godmode['galertas']['sec2'] = 'godmode/alerts/alert_list'; diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 8c251903af..b3c69730f3 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -271,29 +271,27 @@ if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) che } } -if ((bool) check_acl($config['id_user'], $id_group, 'AW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) { - array_push( - $column_names, - ['text' => 'Module'], - ['text' => 'Template'], - [ - 'title' => __('Action'), - 'text' => __('Action'), - 'style' => 'min-width: 15%;', - ], - ['text' => 'Last fired'], - ['text' => 'Status'] - ); +array_push( + $column_names, + ['text' => 'Module'], + ['text' => 'Template'], + [ + 'title' => __('Action'), + 'text' => __('Action'), + 'style' => 'min-width: 15%;', + ], + ['text' => 'Last fired'], + ['text' => 'Status'] +); - $columns = array_merge( - $columns, - ['agent_module_name'], - ['template_name'], - ['action'], - ['last_fired'], - ['status'] - ); -} +$columns = array_merge( + $columns, + ['agent_module_name'], + ['template_name'], + ['action'], + ['last_fired'], + ['status'] +); if (is_metaconsole() === false) { if ((bool) check_acl($config['id_user'], $id_group, 'LW') === true || (bool) check_acl($config['id_user'], $id_group, 'LM') === true) { From 92842df7b824a52d27d982d5e1ccd8ebdeb28c7e Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 1 Jun 2023 15:35:43 +0200 Subject: [PATCH 301/533] #11432 added tips in threshold and setted default value how 0 --- pandora_console/godmode/alerts/alert_list.builder.php | 4 ++-- pandora_console/godmode/alerts/configure_alert_action.php | 4 ++-- pandora_console/godmode/alerts/configure_alert_template.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php index af380c396c..ec0bfb3807 100644 --- a/pandora_console/godmode/alerts/alert_list.builder.php +++ b/pandora_console/godmode/alerts/alert_list.builder.php @@ -166,10 +166,10 @@ $table->data[1][1] = html_print_label_input_block( ); $table->data[2][0] = html_print_label_input_block( - __('Threshold'), + __('Threshold').ui_print_help_tip(__('It takes precedence over the action\'s threshold configuration.'), true), html_print_extended_select_for_time( 'module_action_threshold', - 0, + '0', '', '', '', diff --git a/pandora_console/godmode/alerts/configure_alert_action.php b/pandora_console/godmode/alerts/configure_alert_action.php index 7906cd9dde..fb654828fe 100644 --- a/pandora_console/godmode/alerts/configure_alert_action.php +++ b/pandora_console/godmode/alerts/configure_alert_action.php @@ -144,7 +144,7 @@ if ($disabled) { $name = ''; $id_command = ''; $group = 0; -$action_threshold = 0; +$action_threshold = '0'; // All group is 0. if ($id) { $action = alerts_get_alert_action($id); @@ -284,7 +284,7 @@ $table->data[1][0] = html_print_label_input_block( ); $table->data[1][1] = html_print_label_input_block( - __('Threshold'), + __('Threshold').ui_print_help_tip(__('An alert action is executed only once within this time interval, regardless of how many times the alert is triggered.'), true), html_print_extended_select_for_time( 'action_threshold', $action_threshold, diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index cad5896fa2..a1abf2a218 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -688,7 +688,7 @@ if ($step == 2) { ); $table->data[2][0] = html_print_label_input_block( - __('Time threshold'), + __('Time threshold').ui_print_help_tip(__('Reset the alert counter within the configured period if there is no manual recovery or validation of the alert.'), true), html_print_extended_select_for_time( 'threshold', $threshold, From f113af4b6e3f7cd83c6e48d939f5e3cf377ded9f Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 2 Jun 2023 01:00:19 +0200 Subject: [PATCH 302/533] 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 ec108607af..be19f983bc 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-230601 +Version: 7.0NG.771-230602 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 3b5feeee14..198aa0581e 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-230601" +pandora_version="7.0NG.771-230602" 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 344e125ffc..18030d24cc 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 => '230601'; +use constant AGENT_BUILD => '230602'; # 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 0c7345a377..33366145fe 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 230601 +%define release 230602 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 3d1c044da5..3307562908 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 230601 +%define release 230602 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 254fd16ca3..72c5c5900c 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="230601" +PI_BUILD="230602" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index eb23e0bd05..752c41fba1 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230601} +{230602} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index d32fad17dd..b2742e2b10 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 230601") +#define PANDORA_VERSION ("7.0NG.771 Build 230602") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index eeb739c5c1..53469a399a 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 230601))" + VALUE "ProductVersion", "(7.0NG.771(Build 230602))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index d06abfe8ae..5947e929a9 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230601 +Version: 7.0NG.771-230602 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 2e62b33f4c..a24dc47813 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-230601" +pandora_version="7.0NG.771-230602" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 47c0ee51ef..2833b6cd9b 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 = 'PC230601'; +$build_version = 'PC230602'; $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 b756b1c325..cdfff922be 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 1a45a66a8d..0a0ddb5efb 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 230601 +%define release 230602 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 8dd2252d7b..afb8a6747d 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 230601 +%define release 230602 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index b9e47a6bc2..98f711ac71 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230601" +PI_BUILD="230602" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index bd60360889..812bee41b7 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 230601"; +my $version = "7.0NG.771 Build 230602"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index d42cc6db58..0d6c5b4b12 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 230601"; +my $version = "7.0NG.771 Build 230602"; # save program name for logging my $progname = basename($0); From d12d98d458633fb13b1dfe804e1c3b05e54bcbc8 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 2 Jun 2023 11:42:18 +0200 Subject: [PATCH 303/533] #11287 Fix title icons --- pandora_console/include/ajax/module.php | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 9e3e2580af..1c9dbf3598 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1252,7 +1252,10 @@ if (check_login()) { 'content' => html_print_image( 'images/event-history.svg', true, - [ 'class' => 'main_menu_icon' ] + [ + 'title' => __('Event history'), + 'class' => 'main_menu_icon forced_title', + ] ), ], true @@ -1268,7 +1271,7 @@ if (check_login()) { 'images/module-graph.svg', true, [ - 'title' => $module['nombre'], + 'title' => __('Module graph'), 'class' => 'main_menu_icon forced_title', ] ), @@ -1287,7 +1290,10 @@ if (check_login()) { 'content' => html_print_image( 'images/simple-value.svg', true, - [ 'class' => 'main_menu_icon' ] + [ + 'title' => __('Module detail'), + 'class' => 'main_menu_icon forced_title', + ] ), ], true From 964c1f3142c88e98226569cf59fff00f7fea8192 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 2 Jun 2023 12:03:29 +0200 Subject: [PATCH 304/533] #11287 Fix title icons --- pandora_console/include/ajax/module.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 1c9dbf3598..fe6ba7ae01 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1329,7 +1329,10 @@ if (check_login()) { 'content' => html_print_image( $imgaction, true, - [ 'class' => 'main_menu_icon' ] + [ + 'title' => __('Force remote check'), + 'class' => 'main_menu_icon forced_title', + ] ), ], true @@ -1346,7 +1349,10 @@ if (check_login()) { 'content' => html_print_image( 'images/edit.svg', true, - [ 'class' => 'main_menu_icon' ] + [ + 'title' => __('Edit configuration'), + 'class' => 'main_menu_icon forced_title', + ] ), ], true From c1dd5d39c5bfa6064d8a4787232c9e6eaab75725 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 2 Jun 2023 13:03:20 +0200 Subject: [PATCH 305/533] #11446 Add column in tlayout_template_data --- pandora_console/extras/mr/64.sql | 3 +++ pandora_console/pandoradb.sql | 1 + 2 files changed, 4 insertions(+) diff --git a/pandora_console/extras/mr/64.sql b/pandora_console/extras/mr/64.sql index 272f0848b2..f1dc8afc4c 100644 --- a/pandora_console/extras/mr/64.sql +++ b/pandora_console/extras/mr/64.sql @@ -71,6 +71,9 @@ WHERE name='Cisco _nameOID_ power state'; ALTER TABLE `tlayout_data` ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; +ALTER TABLE `tlayout_template_data` +ADD COLUMN `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`; + ALTER TABLE `tusuario` ADD COLUMN `metaconsole_section` VARCHAR(255) NOT NULL DEFAULT 'Default' AFTER `data_section`; diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 8d1ef299df..8416e1d2ec 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -3696,6 +3696,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` ( `label_position` VARCHAR(50) NOT NULL DEFAULT 'down', `border_color` VARCHAR(200) DEFAULT '', `fill_color` VARCHAR(200) DEFAULT '', + `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`, `show_statistics` TINYINT NOT NULL DEFAULT 0, `linked_layout_node_id` INT NOT NULL DEFAULT 0, `linked_layout_status_type` ENUM ('default', 'weight', 'service') DEFAULT 'default', From 6c4ee040ff8fc7dc8c54d809cdeef621f229ab57 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Fri, 2 Jun 2023 13:05:15 +0200 Subject: [PATCH 306/533] #11446 Fix create table --- pandora_console/pandoradb.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 8416e1d2ec..8706e37fed 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -3696,7 +3696,7 @@ CREATE TABLE IF NOT EXISTS `tlayout_template_data` ( `label_position` VARCHAR(50) NOT NULL DEFAULT 'down', `border_color` VARCHAR(200) DEFAULT '', `fill_color` VARCHAR(200) DEFAULT '', - `recursive_group` TINYINT NOT NULL DEFAULT '0' AFTER `fill_color`, + `recursive_group` TINYINT NOT NULL DEFAULT '0', `show_statistics` TINYINT NOT NULL DEFAULT 0, `linked_layout_node_id` INT NOT NULL DEFAULT 0, `linked_layout_status_type` ENUM ('default', 'weight', 'service') DEFAULT 'default', From 9d5dc354b6dff74810b112d9b6ce18e618552e26 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 2 Jun 2023 13:11:41 +0200 Subject: [PATCH 307/533] #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 308/533] 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 309/533] 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 fd5ba3d0f833b2a5da4f874068bf6f2501eab494 Mon Sep 17 00:00:00 2001 From: "felix.suarez" Date: Fri, 2 Jun 2023 16:06:28 -0500 Subject: [PATCH 310/533] Change to reduce event text from XML parse error --- pandora_server/lib/PandoraFMS/DataServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index ac4364dca1..140482e54f 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -325,7 +325,7 @@ sub data_consumer ($$) { } rename($file_name, $file_name . '_BADXML'); - pandora_event ($pa_config, "Unable to process XML data file '$file_name': $xml_err", 0, 0, 0, 0, 0, 'error', 0, $dbh); + pandora_event ($pa_config, "Unable to process XML data file ".(substr $file_name, 0, 20)."...", 0, 0, 0, 0, 0, 'error', 0, $dbh); agent_unlock($pa_config, $agent_name); } From e2550c22e3778dec14356f64774960793be4e16f Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 3 Jun 2023 01:00:18 +0200 Subject: [PATCH 311/533] 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 be19f983bc..035633cbec 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-230602 +Version: 7.0NG.771-230603 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 198aa0581e..5db8a763b1 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-230602" +pandora_version="7.0NG.771-230603" 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 18030d24cc..058bcdccfc 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 => '230602'; +use constant AGENT_BUILD => '230603'; # 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 33366145fe..bc9ad74009 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 230602 +%define release 230603 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 3307562908..239c408406 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 230602 +%define release 230603 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 72c5c5900c..bff318b6fa 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="230602" +PI_BUILD="230603" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 752c41fba1..edb716e7ad 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230602} +{230603} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index b2742e2b10..e90bb98edf 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 230602") +#define PANDORA_VERSION ("7.0NG.771 Build 230603") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 53469a399a..5043e862e2 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 230602))" + VALUE "ProductVersion", "(7.0NG.771(Build 230603))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 5947e929a9..e9621b17b3 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230602 +Version: 7.0NG.771-230603 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 a24dc47813..b7c1fd161c 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-230602" +pandora_version="7.0NG.771-230603" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 2833b6cd9b..8e3c803d18 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 = 'PC230602'; +$build_version = 'PC230603'; $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 cdfff922be..13469c833c 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 0a0ddb5efb..b5b3bec799 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 230602 +%define release 230603 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index afb8a6747d..b20a23aa93 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 230602 +%define release 230603 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 98f711ac71..323e32a1c5 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230602" +PI_BUILD="230603" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 812bee41b7..3c3f11f025 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 230602"; +my $version = "7.0NG.771 Build 230603"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 0d6c5b4b12..07c7bf6ad1 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 230602"; +my $version = "7.0NG.771 Build 230603"; # save program name for logging my $progname = basename($0); From efdb2bdbb9da96626874a43348e340d1357fe9fe Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 4 Jun 2023 01:00:16 +0200 Subject: [PATCH 312/533] 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 035633cbec..02930843a5 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-230603 +Version: 7.0NG.771-230604 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 5db8a763b1..72a83e1850 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-230603" +pandora_version="7.0NG.771-230604" 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 058bcdccfc..2cd1feff55 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 => '230603'; +use constant AGENT_BUILD => '230604'; # 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 bc9ad74009..480b5a83ef 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 230603 +%define release 230604 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 239c408406..6ba2277f76 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 230603 +%define release 230604 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 bff318b6fa..e9f3b12c51 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="230603" +PI_BUILD="230604" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index edb716e7ad..cbbcdf59f2 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230603} +{230604} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index e90bb98edf..943b13c90a 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 230603") +#define PANDORA_VERSION ("7.0NG.771 Build 230604") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 5043e862e2..93feceae64 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 230603))" + VALUE "ProductVersion", "(7.0NG.771(Build 230604))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index e9621b17b3..c23be0b1e2 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230603 +Version: 7.0NG.771-230604 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 b7c1fd161c..a0b088574c 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-230603" +pandora_version="7.0NG.771-230604" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8e3c803d18..d040577c2f 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 = 'PC230603'; +$build_version = 'PC230604'; $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 13469c833c..dbf8e04049 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 b5b3bec799..6dd431746e 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 230603 +%define release 230604 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b20a23aa93..676643eeee 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 230603 +%define release 230604 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 323e32a1c5..08619d011e 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230603" +PI_BUILD="230604" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 3c3f11f025..ff42b89e3b 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 230603"; +my $version = "7.0NG.771 Build 230604"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 07c7bf6ad1..248b71009e 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 230603"; +my $version = "7.0NG.771 Build 230604"; # save program name for logging my $progname = basename($0); From f248ea1fe6a0f5e961592379ec424b76c7091c6b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Sun, 4 Jun 2023 11:59:09 -0600 Subject: [PATCH 313/533] Make Syslog optional --- pandora_agents/unix/pandora_agent | 26 ++++++++++++++++++-------- 1 file changed, 18 insertions(+), 8 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 058bcdccfc..1ace69ded9 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1008,9 +1008,22 @@ use Sys::Hostname; use File::Basename; use File::Copy; use IO::Socket; -use Sys::Syslog; use Time::Local; +eval { + require Sys::Syslog; + Sys::Syslog->import(); +}; + +if ($@) { + print ("[INFO] Could not import Sys::Syslog module\n\n"); +} +print "---------------------------------------------------------------------\n"; +my $result = eval { Sys::Syslog->can('openlog') }; +print $result . "\n\n"; + + + BEGIN { push @INC, '/usr/lib/perl5'; } # Agent XML data @@ -1413,7 +1426,7 @@ sub start_log (;$) { $Conf{'logfile'} = '/var/log/pandora/pandora_agent.log' unless defined ($Conf{'logfile'}); # Open it - if ($Conf{'logfile'} eq 'syslog') { + if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('openlog') }) { openlog('pandora_agent', 'nowait', 'daemon'); } else { open ($LogFileFH, "> $Conf{'logfile'}") or error ("Could not open log file $Conf{'logfile'} for writing: $!."); @@ -1425,16 +1438,13 @@ sub start_log (;$) { # Rotates the agent logfile. ################################################################################ sub rotate_log () { - if ($Conf{'logfile'} eq 'syslog') { + if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('syslog') }) { # No action needed return; } else { if ($Conf{'logrotate'} < 0){ $Conf{'logrotate'} = DEFAULT_LOG_ROTATE; } - if ($Conf{'logfile'} eq 'syslog') { - return; - } # Rotate file $LogFileIdx = ($LogFileIdx+1) % $Conf{'logrotate'}; @@ -1451,7 +1461,7 @@ sub rotate_log () { # Close the agent logfile and stop logging. ################################################################################ sub stop_log () { - if ($Conf{'logfile'} eq 'syslog') { + if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('closelog') }) { closelog(); } else { close ($LogFileFH); @@ -1466,7 +1476,7 @@ sub log_message ($$;$) { if (defined ($dest)) { print $dest strftime ('%Y/%m/%d %H:%M:%S', localtime ()) . " - [$source] - $msg\n"; - } elsif ($Conf{'logfile'} eq 'syslog') { + } elsif ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('syslog') }) { syslog('info', $msg); } else { #Trying to write into log file to test its writable From 8e17ecf11be375411491944eb75418c20ea0b430 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Sun, 4 Jun 2023 12:03:12 -0600 Subject: [PATCH 314/533] Eliminate unnecessary log --- pandora_agents/unix/pandora_agent | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 1ace69ded9..7d6d9882c1 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1018,11 +1018,6 @@ eval { if ($@) { print ("[INFO] Could not import Sys::Syslog module\n\n"); } -print "---------------------------------------------------------------------\n"; -my $result = eval { Sys::Syslog->can('openlog') }; -print $result . "\n\n"; - - BEGIN { push @INC, '/usr/lib/perl5'; } From 0c864ca988600865684b8c2d3a00016809970d37 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 5 Jun 2023 01:00:18 +0200 Subject: [PATCH 315/533] 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 02930843a5..ffa848fc9d 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-230604 +Version: 7.0NG.771-230605 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 72a83e1850..de263ae568 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-230604" +pandora_version="7.0NG.771-230605" 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 2cd1feff55..86bddb4c8e 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 => '230604'; +use constant AGENT_BUILD => '230605'; # 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 480b5a83ef..7d99a72820 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 230604 +%define release 230605 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 6ba2277f76..0e02987128 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 230604 +%define release 230605 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 e9f3b12c51..44b7e405c9 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="230604" +PI_BUILD="230605" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index cbbcdf59f2..1ca48a7bfe 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230604} +{230605} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 943b13c90a..71f0ef5d7e 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 230604") +#define PANDORA_VERSION ("7.0NG.771 Build 230605") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 93feceae64..52d52b18c0 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 230604))" + VALUE "ProductVersion", "(7.0NG.771(Build 230605))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index c23be0b1e2..b6ab11de8a 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.771-230604 +Version: 7.0NG.771-230605 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 a0b088574c..84374e378f 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-230604" +pandora_version="7.0NG.771-230605" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index d040577c2f..a4ee6993e6 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 = 'PC230604'; +$build_version = 'PC230605'; $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 dbf8e04049..318bc7d98d 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 6dd431746e..6be4c4a961 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 230604 +%define release 230605 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 676643eeee..f744bf305d 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 230604 +%define release 230605 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 08619d011e..749340a982 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.771" -PI_BUILD="230604" +PI_BUILD="230605" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index ff42b89e3b..34c2ed8bf5 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 230604"; +my $version = "7.0NG.771 Build 230605"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 248b71009e..1fdd4300a8 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 230604"; +my $version = "7.0NG.771 Build 230605"; # save program name for logging my $progname = basename($0); From 0b3f23f137ce45d35a288f1b58ff8199c66dfc95 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 12:45:37 +0200 Subject: [PATCH 316/533] #11465 fixed agent module widget when server is restarted --- pandora_console/include/functions_modules.php | 4 + .../lib/Dashboard/Widgets/agent_module.php | 92 +++++++++++++++++-- 2 files changed, 88 insertions(+), 8 deletions(-) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 26e63c5975..96f4f52447 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -3676,6 +3676,10 @@ function get_modules_agents( implode(',', $id_agents) ) ); + + if ($rows === false) { + $rows = []; + } } else { $rows = []; } diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index 02368a42c7..ddbb3689e8 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -292,6 +292,10 @@ class AgentModuleWidget extends Widget } } + if (is_metaconsole() === true) { + $this->values['mAgents'] = $this->getIdCacheAgent($this->values['mAgents']); + } + $inputs[] = [ 'class' => 'flex flex-row', 'id' => 'select_multiple_modules_filtered', @@ -315,6 +319,65 @@ class AgentModuleWidget extends Widget } + /** + * Return array with the real id agent and server. + * + * @param string $id_agents_cache String with the agents cache id. + * + * @return string $agents_servers with the real id agent and server. + */ + public function getRealIdAgentNode($id_agents_cache) + { + $agents_servers = []; + $target_agents = explode(',', $id_agents_cache); + foreach ($target_agents as $agent_id) { + $id_agente = $agent_id; + $tmeta_agent = db_get_row_filter( + 'tmetaconsole_agent', + ['id_agente' => $id_agente] + ); + + $id_agente = $tmeta_agent['id_tagente']; + $tserver = $tmeta_agent['id_tmetaconsole_setup']; + $agents_servers[] = $tserver.'|'.$id_agente; + } + + return implode(',', $agents_servers); + } + + + /** + * Return string with the cache id agent in metaconsole. + * + * @param string $id_agents String with the agents and server id. + * + * @return string $cache_id_agents with the cache id agent. + */ + public function getIdCacheAgent($id_agents) + { + $target_agents = explode(',', $id_agents); + $cache_id_agents = []; + foreach ($target_agents as $agent_id) { + if (str_contains($agent_id, '|') === false) { + $cache_id_agents[] = $agent_id; + continue; + } + + $server_agent = explode('|', $agent_id); + $tmeta_agent = db_get_row_filter( + 'tmetaconsole_agent', + [ + 'id_tagente' => $server_agent[1], + 'id_tmetaconsole_setup' => $server_agent[0], + ] + ); + $cache_id_agents[] = $tmeta_agent['id_agente']; + } + + return implode(',', $cache_id_agents); + } + + /** * Get Post for widget. * @@ -341,6 +404,10 @@ class AgentModuleWidget extends Widget $values['mAgents'] = \get_parameter( 'filtered-module-agents-'.$this->cellId ); + if (is_metaconsole() === true) { + $values['mAgents'] = $this->getRealIdAgentNode($values['mAgents']); + } + $values['mShowCommonModules'] = \get_parameter( 'filtered-module-show-common-modules-'.$this->cellId ); @@ -697,15 +764,24 @@ class AgentModuleWidget extends Widget $target_agents = explode(',', $this->values['mAgents']); foreach ($target_agents as $agent_id) { try { - $id_agente = $agent_id; - if ((bool) is_metaconsole() === true) { - $tmeta_agent = db_get_row_filter( - 'tmetaconsole_agent', - [ 'id_agente' => $id_agente ] - ); + if (is_metaconsole() === true && str_contains($agent_id, '|') === true) { + $server_agent = explode('|', $agent_id); + } else { + $id_agente = $agent_id; + } - $id_agente = $tmeta_agent['id_tagente']; - $tserver = $tmeta_agent['id_tmetaconsole_setup']; + if ((bool) is_metaconsole() === true) { + if (isset($server_agent) === true) { + $id_agente = $server_agent[1]; + $tserver = $server_agent[0]; + } else { + $tmeta_agent = db_get_row_filter( + 'tmetaconsole_agent', + [ 'id_agente' => $id_agente ] + ); + $id_agente = $tmeta_agent['id_tagente']; + $tserver = $tmeta_agent['id_tmetaconsole_setup']; + } if (metaconsole_connect(null, $tserver) !== NOERR) { continue; From 823817e22f843f28db3917b2ebe3e0f7ade899bc Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 5 Jun 2023 13:01:16 +0200 Subject: [PATCH 317/533] #11447 add io_safe_output --- pandora_console/godmode/agentes/agent_manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index e2e9db7806..ad810206e3 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -965,7 +965,7 @@ foreach ($fields as $field) { true ); } else if ($field['is_link_enabled']) { - list($link_text, $link_url) = json_decode($custom_value, true); + list($link_text, $link_url) = json_decode(io_safe_output($custom_value), true); if (json_last_error() !== JSON_ERROR_NONE) { $link_text = ''; From 1e0c62732a81f7ce6a33e95d76dd55d71af11691 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 13:39:04 +0200 Subject: [PATCH 318/533] #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 319/533] 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 320/533] #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 321/533] 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 322/533] #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 6c00b3955087b067cb23ceb4389babe45f766b0d Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 5 Jun 2023 16:43:27 +0200 Subject: [PATCH 323/533] #11460 fixed widgets Top N events by agent and Top N events by module --- .../Widgets/top_n_events_by_group.php | 108 +++++++++---- .../Widgets/top_n_events_by_module.php | 145 +++++++++++++----- 2 files changed, 186 insertions(+), 67 deletions(-) diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php index 8c4fece94e..a9905c9670 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php @@ -385,33 +385,81 @@ class TopNEventByGroupWidget extends Widget $all_group = true; } - if ($all_group === false) { - $sql = sprintf( - 'SELECT id_agente, COUNT(*) AS count - FROM tevento - WHERE utimestamp >= %d - AND id_grupo IN (%s) - GROUP BY id_agente - ORDER BY count DESC - LIMIT %d', - $timestamp, - implode(',', $this->values['groupId']), - $this->values['amountShow'] - ); - } else { - $sql = sprintf( - 'SELECT id_agente, COUNT(*) AS count - FROM tevento - WHERE utimestamp >= %d - GROUP BY id_agente - ORDER BY count DESC - LIMIT %d', - $timestamp, - $this->values['amountShow'] - ); - } + if (is_metaconsole() === true) { + $servers = metaconsole_get_connection_names(); + $result = []; + foreach ($servers as $key => $server) { + $connection = metaconsole_get_connection($server); + if (metaconsole_connect($connection) != NOERR) { + continue; + } - $result = db_get_all_rows_sql($sql); + if ($all_group === false) { + $sql = sprintf( + 'SELECT id_agente, + COUNT(*) AS count, + "'.$connection['id'].'" AS id_server + FROM tevento + WHERE utimestamp >= %d + AND id_grupo IN (%s) + GROUP BY id_agente + ORDER BY count DESC + LIMIT %d', + $timestamp, + implode(',', $this->values['groupId']), + $this->values['amountShow'] + ); + } else { + $sql = sprintf( + 'SELECT id_agente, + COUNT(*) AS count, + "'.$connection['id'].'" AS id_server + FROM tevento + WHERE utimestamp >= %d + GROUP BY id_agente + ORDER BY count DESC + LIMIT %d', + $timestamp, + $this->values['amountShow'] + ); + } + + $rows = db_get_all_rows_sql($sql); + if ($rows !== false) { + $result = array_merge($result, $rows); + } + + metaconsole_restore_db(); + } + } else { + if ($all_group === false) { + $sql = sprintf( + 'SELECT id_agente, COUNT(*) AS count + FROM tevento + WHERE utimestamp >= %d + AND id_grupo IN (%s) + GROUP BY id_agente + ORDER BY count DESC + LIMIT %d', + $timestamp, + implode(',', $this->values['groupId']), + $this->values['amountShow'] + ); + } else { + $sql = sprintf( + 'SELECT id_agente, COUNT(*) AS count + FROM tevento + WHERE utimestamp >= %d + GROUP BY id_agente + ORDER BY count DESC + LIMIT %d', + $timestamp, + $this->values['amountShow'] + ); + } + + $result = db_get_all_rows_sql($sql); + } if (empty($result) === true) { $output .= '
'; @@ -430,11 +478,13 @@ class TopNEventByGroupWidget extends Widget $name = __('System'); } else { if (is_metaconsole() === true) { - $name = (string) db_get_value( + $name = (string) db_get_value_filter( 'alias', 'tmetaconsole_agent', - 'id_tagente', - (int) $row['id_agente'] + [ + 'id_tagente' => $row['id_agente'], + 'id_tmetaconsole_setup' => $row['id_server'], + ] ); } else { $name = io_safe_output( diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php index 0adf0b7975..e528724fd8 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php @@ -383,39 +383,91 @@ class TopNEventByModuleWidget extends Widget $all_group = true; } - if ($all_group === false) { - $sql = sprintf( - 'SELECT id_agente, - id_agentmodule, - event_type, - COUNT(*) AS count - FROM tevento - WHERE utimestamp >= %d - AND id_grupo IN (%s) - GROUP BY id_agentmodule, event_type - ORDER BY count DESC - LIMIT %d', - $timestamp, - implode(',', $this->values['groupId']), - $this->values['amountShow'] - ); - } else { - $sql = sprintf( - 'SELECT id_agente, - id_agentmodule, - event_type, - COUNT(*) AS count - FROM tevento - WHERE utimestamp >= %d - GROUP BY id_agentmodule, event_type - ORDER BY count DESC - LIMIT %d', - $timestamp, - $this->values['amountShow'] - ); - } + if (is_metaconsole() === true) { + $servers = metaconsole_get_connection_names(); + $result = []; + foreach ($servers as $key => $server) { + $connection = metaconsole_get_connection($server); + if (metaconsole_connect($connection) != NOERR) { + continue; + } - $result = db_get_all_rows_sql($sql); + if ($all_group === false) { + $sql = sprintf( + 'SELECT id_agente, + id_agentmodule, + event_type, + "'.$server.'" AS name_server, + COUNT(*) AS count + FROM tevento + WHERE utimestamp >= %d + AND id_grupo IN (%s) + GROUP BY id_agentmodule, event_type + ORDER BY count DESC + LIMIT %d', + $timestamp, + implode(',', $this->values['groupId']), + $this->values['amountShow'] + ); + } else { + $sql = sprintf( + 'SELECT id_agente, + id_agentmodule, + event_type, + "'.$server.'" AS name_server, + COUNT(*) AS count + FROM tevento + WHERE utimestamp >= %d + GROUP BY id_agentmodule, event_type + ORDER BY count DESC + LIMIT %d', + $timestamp, + $this->values['amountShow'] + ); + } + + $rows = db_get_all_rows_sql($sql); + if ($rows !== false) { + $result = array_merge($result, $rows); + } + + metaconsole_restore_db(); + } + } else { + if ($all_group === false) { + $sql = sprintf( + 'SELECT id_agente, + id_agentmodule, + event_type, + COUNT(*) AS count + FROM tevento + WHERE utimestamp >= %d + AND id_grupo IN (%s) + GROUP BY id_agentmodule, event_type + ORDER BY count DESC + LIMIT %d', + $timestamp, + implode(',', $this->values['groupId']), + $this->values['amountShow'] + ); + } else { + $sql = sprintf( + 'SELECT id_agente, + id_agentmodule, + event_type, + COUNT(*) AS count + FROM tevento + WHERE utimestamp >= %d + GROUP BY id_agentmodule, event_type + ORDER BY count DESC + LIMIT %d', + $timestamp, + $this->values['amountShow'] + ); + } + + $result = db_get_all_rows_sql($sql); + } if (empty($result) === true) { $output = '
'; @@ -433,13 +485,30 @@ class TopNEventByModuleWidget extends Widget if ($row['id_agentmodule'] == 0) { $name = __('System'); } else { - $name_agent = io_safe_output( - agents_get_alias($row['id_agente']) - ); + if (is_metaconsole() === true) { + $connection = metaconsole_get_connection($row['name_server']); + if (metaconsole_connect($connection) != NOERR) { + continue; + } + + $name_agent = io_safe_output( + agents_get_alias($row['id_agente']) + ); + + $name_module = io_safe_output( + modules_get_agentmodule_name($row['id_agentmodule']) + ); + metaconsole_restore_db(); + } else { + $name_agent = io_safe_output( + agents_get_alias($row['id_agente']) + ); + + $name_module = io_safe_output( + modules_get_agentmodule_name($row['id_agentmodule']) + ); + } - $name_module = io_safe_output( - modules_get_agentmodule_name($row['id_agentmodule']) - ); if ($size['width'] < 400) { $name_agent = ui_print_truncate_text( $name_agent, From 73de090e60d340f87208f3b5edc63cec90f29b8b Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 5 Jun 2023 17:00:25 +0200 Subject: [PATCH 324/533] #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 3ed55ec88aa63528c3777ec13e74e62dd4576d77 Mon Sep 17 00:00:00 2001 From: "felix.suarez" Date: Mon, 5 Jun 2023 12:36:53 -0500 Subject: [PATCH 325/533] fix: Change $file_name variable for $task --- pandora_server/lib/PandoraFMS/DataServer.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index 140482e54f..a53f6859fc 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -324,8 +324,8 @@ sub data_consumer ($$) { return; } - rename($file_name, $file_name . '_BADXML'); - pandora_event ($pa_config, "Unable to process XML data file ".(substr $file_name, 0, 20)."...", 0, 0, 0, 0, 0, 'error', 0, $dbh); + rename($task, $task.'_BADXML'); + pandora_event ($pa_config, "Unable to process XML data file '$task'.", 0, 0, 0, 0, 0, 'error', 0, $dbh); agent_unlock($pa_config, $agent_name); } From 11a8bd688d3e0d8cdeb4fcb4a5f1d44122c6e645 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 6 Jun 2023 01:00:20 +0200 Subject: [PATCH 326/533] 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 a508d1f10db63191a2c7d959115fe5f911ebd045 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Mon, 5 Jun 2023 17:31:17 -0600 Subject: [PATCH 327/533] Added fallback elsif (empty) --- pandora_agents/unix/pandora_agent | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 7d6d9882c1..1c7fbfc912 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1423,6 +1423,9 @@ sub start_log (;$) { # Open it if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('openlog') }) { openlog('pandora_agent', 'nowait', 'daemon'); + } elsif($Conf{'logfile'} eq 'syslog') { + # Fallback if syslog is not available + } else { open ($LogFileFH, "> $Conf{'logfile'}") or error ("Could not open log file $Conf{'logfile'} for writing: $!."); print "Logging to $Conf{'logfile'}\n" if (!defined ($quiet)); @@ -1433,10 +1436,10 @@ sub start_log (;$) { # Rotates the agent logfile. ################################################################################ sub rotate_log () { - if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('syslog') }) { - # No action needed + if ($Conf{'logfile'} eq 'syslog') { + # No action needed && no needed syslog fallback. return; - } else { + }else { if ($Conf{'logrotate'} < 0){ $Conf{'logrotate'} = DEFAULT_LOG_ROTATE; } @@ -1458,6 +1461,9 @@ sub rotate_log () { sub stop_log () { if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('closelog') }) { closelog(); + } elsif($Conf{'logfile'} eq 'syslog') { + # Fallback if syslog is not available + } else { close ($LogFileFH); } @@ -1473,6 +1479,9 @@ sub log_message ($$;$) { print $dest strftime ('%Y/%m/%d %H:%M:%S', localtime ()) . " - [$source] - $msg\n"; } elsif ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('syslog') }) { syslog('info', $msg); + } elsif($Conf{'logfile'} eq 'syslog') { + # Fallback if syslog is not available + } else { #Trying to write into log file to test its writable syswrite ($LogFileFH, ""); From 2682fdb0618f03d83cbf693978b1bcb92953d462 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Su=C3=A1rez?= Date: Mon, 5 Jun 2023 17:39:15 -0600 Subject: [PATCH 328/533] Remove aditional fallbacks --- pandora_agents/unix/pandora_agent | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 1c7fbfc912..f4f88e46a8 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1423,9 +1423,6 @@ sub start_log (;$) { # Open it if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('openlog') }) { openlog('pandora_agent', 'nowait', 'daemon'); - } elsif($Conf{'logfile'} eq 'syslog') { - # Fallback if syslog is not available - } else { open ($LogFileFH, "> $Conf{'logfile'}") or error ("Could not open log file $Conf{'logfile'} for writing: $!."); print "Logging to $Conf{'logfile'}\n" if (!defined ($quiet)); @@ -1436,8 +1433,8 @@ sub start_log (;$) { # Rotates the agent logfile. ################################################################################ sub rotate_log () { - if ($Conf{'logfile'} eq 'syslog') { - # No action needed && no needed syslog fallback. + if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('syslog') }) { + # No action needed. return; }else { if ($Conf{'logrotate'} < 0){ @@ -1461,9 +1458,6 @@ sub rotate_log () { sub stop_log () { if ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('closelog') }) { closelog(); - } elsif($Conf{'logfile'} eq 'syslog') { - # Fallback if syslog is not available - } else { close ($LogFileFH); } @@ -1479,9 +1473,6 @@ sub log_message ($$;$) { print $dest strftime ('%Y/%m/%d %H:%M:%S', localtime ()) . " - [$source] - $msg\n"; } elsif ($Conf{'logfile'} eq 'syslog' && eval { Sys::Syslog->can('syslog') }) { syslog('info', $msg); - } elsif($Conf{'logfile'} eq 'syslog') { - # Fallback if syslog is not available - } else { #Trying to write into log file to test its writable syswrite ($LogFileFH, ""); From 5f44ae141abc1bd159bb39a76f0b726a008cbc13 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Tue, 6 Jun 2023 10:39:56 +0200 Subject: [PATCH 329/533] #11443 Fixed SNMP token checkbox wizard --- .../include/class/AgentWizard.class.php | 44 ++++++++++--------- 1 file changed, 23 insertions(+), 21 deletions(-) diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 2278cae9d4..44846ee4be 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -1645,13 +1645,13 @@ class AgentWizard extends HTML } else if (preg_match('/module-critical-max/', $k) > 0) { $result[$value]['criticalMax'] = $data[$k]; } else if (preg_match('/module-critical-inv/', $k) > 0) { - $result[$value]['criticalInv'] = $data[$k.'_sent']; + $result[$value]['criticalInv'] = $data[$k]; } else if (preg_match('/module-warning-inv/', $k) > 0) { - $result[$value]['warningInv'] = $data[$k.'_sent']; + $result[$value]['warningInv'] = $data[$k]; } else if (preg_match('/module-warning-perc/', $k) > 0) { - $result[$value]['warningPerc'] = $data[$k.'_sent']; + $result[$value]['warningPerc'] = $data[$k]; } else if (preg_match('/module-critical-perc/', $k) > 0) { - $result[$value]['criticalPerc'] = $data[$k.'_sent']; + $result[$value]['criticalPerc'] = $data[$k]; } else if (preg_match('/module-type/', $k) > 0) { $result[$value]['moduleType'] = $data[$k]; } else if (preg_match('/module-unit/', $k) > 0) { @@ -4360,7 +4360,7 @@ class AgentWizard extends HTML true, false, 'change_control(this, \''.$uniqueId.'\')', - false, + true, 'form="form-create-modules"' ), ], @@ -4376,7 +4376,7 @@ class AgentWizard extends HTML true, false, 'change_control(this, \''.$uniqueId.'\')', - false, + true, 'form="form-create-modules"' ), ], @@ -4442,7 +4442,7 @@ class AgentWizard extends HTML true, false, 'change_control(this, \''.$uniqueId.'\')', - false, + true, 'form="form-create-modules"' ), ], @@ -4459,7 +4459,7 @@ class AgentWizard extends HTML true, false, 'change_control(this,\''.$uniqueId.'\')', - false, + true, 'form="form-create-modules"' ), ], @@ -6240,22 +6240,24 @@ class AgentWizard extends HTML function change_control(checkbox, uniqueId) { var checkbox_name = $(checkbox).attr('name'); - if($(checkbox).prop('checked', true)) { - if(checkbox_name.match(/warning-inv/gm) !== null) { - $('#checkbox-module-warning-perc-'+uniqueId.replace('/','\\/')).prop('checked', false); - } + if(checkbox_name.match(/warning-inv/gm) !== null) { + $('#checkbox-module-warning-perc-'+uniqueId.replace('/','\\/')).prop('checked', false); + $('#checkbox-'+checkbox_name).val(1) + } - if(checkbox_name.match(/critical-inv/gm) !== null) { - $('#checkbox-module-critical-perc-'+uniqueId.replace('/','\\/')).prop('checked', false); - } + if(checkbox_name.match(/warning-perc/gm) !== null) { + $('#checkbox-module-warning-inv-'+uniqueId.replace('/','\\/')).prop('checked', false); + $('#checkbox-'+checkbox_name).val(1) + } - if(checkbox_name.match(/warning-perc/gm) !== null) { - $('#checkbox-module-warning-inv-'+uniqueId.replace('/','\\/')).prop('checked', false); - } + if(checkbox_name.match(/critical-inv/gm) !== null) { + $('#checkbox-module-critical-perc-'+uniqueId.replace('/','\\/')).prop('checked', false); + $('#checkbox-'+checkbox_name).val(1) + } - if(checkbox_name.match(/critical-perc/gm) !== null) { - $('#checkbox-module-critical-inv-'+uniqueId.replace('/','\\/')).prop('checked', false); - } + if(checkbox_name.match(/critical-perc/gm) !== null) { + $('#checkbox-module-critical-inv-'+uniqueId.replace('/','\\/')).prop('checked', false); + $('#checkbox-'+checkbox_name).val(1) } } From aed402245edf69dd14aecbac4a7a74b62cd7ad9d Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 6 Jun 2023 10:55:05 +0200 Subject: [PATCH 330/533] #11461 Add warning about php and mysql versions --- pandora_console/index.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/pandora_console/index.php b/pandora_console/index.php index aaf960eb91..200ea7572c 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1165,6 +1165,26 @@ if ((bool) ($config['maintenance_mode'] ?? false) === true exit(''); } +if (empty($_GET['sec']) === true) { + // PHP Version. + if (version_compare('8.1', PHP_VERSION) >= 0) { + ui_print_warning_message( + __( + 'You should update your PHP version because it will be out of official support.' + ).'
'.__('Current PHP version: ').PHP_VERSION + ); + } + + // MYSQL Version. + $mysql_version = explode(' ', mysqli_get_client_info())[1]; + if (version_compare('8.0', $mysql_version) >= 0) { + ui_print_warning_message( + __( + 'You should update your MYSQL version because it will be out of official support.' + ).'
'.__('Current MYSQL version: ').$mysql_version + ); + } +} // Pure. if ($config['pure'] == 0) { From d6f296553f2e38b409a4bfa6a52bb95475dd17a1 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 6 Jun 2023 12:03:18 +0200 Subject: [PATCH 331/533] #11461 Add warning about php and mysql versions --- .../include/class/ConsoleSupervisor.php | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 4dc665fb26..feb1a17d1d 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -278,6 +278,12 @@ class ConsoleSupervisor if ((bool) enterprise_installed() === true) { $this->checkLibaryError(); } + + /* + * Check MYSQL Support Version + */ + + $this->checkMYSQLSettings(); } @@ -560,6 +566,12 @@ class ConsoleSupervisor $this->checkLibaryError(); } + /* + * Check MYSQL Support Version + * + */ + $this->checkMYSQLSettings(); + } @@ -1790,6 +1802,45 @@ class ConsoleSupervisor $this->cleanNotifications('NOTIF.PHP.SERIALIZE_PRECISION'); } + if (version_compare('8.1', PHP_VERSION) >= 0) { + $url = 'https://www.php.net/supported-versions.php'; + $this->notify( + [ + 'type' => 'NOTIF.PHP.VERSION', + 'title' => __('PHP UPDATE REQUIRED'), + 'message' => __('You should update your PHP version because it will be out of official support').'
'.__('Current PHP version: ').PHP_VERSION, + 'url' => $url, + ] + ); + } else { + $this->cleanNotifications('NOTIF.PHP.VERSION'); + } + } + + + /** + * Checks if MYSQL version is supported. + * + * @return void + */ + public function checkMYSQLSettings() + { + global $config; + + $mysql_version = $config['dbconnection']->server_info; + if (version_compare('8.0', $mysql_version) <= 0) { + $url = 'https://www.mysql.com/support/eol-notice.html'; + $this->notify( + [ + 'type' => 'NOTIF.MYSQL.VERSION', + 'title' => __('MYSQL UPDATE REQUIRED'), + 'message' => __('You should update your MYSQL version because it will be out of official support').'
'.__('Current MYSQL version: ').$mysql_version, + 'url' => $url, + ] + ); + } else { + $this->cleanNotifications('NOTIF.PHP.VERSION'); + } } From 764d96fcc673c1df28a8b2f2d4c49b9fe20f0c18 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 6 Jun 2023 12:03:59 +0200 Subject: [PATCH 332/533] #11461 Delete index warnings --- pandora_console/index.php | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/pandora_console/index.php b/pandora_console/index.php index 200ea7572c..43927ae948 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1165,27 +1165,6 @@ if ((bool) ($config['maintenance_mode'] ?? false) === true exit(''); } -if (empty($_GET['sec']) === true) { - // PHP Version. - if (version_compare('8.1', PHP_VERSION) >= 0) { - ui_print_warning_message( - __( - 'You should update your PHP version because it will be out of official support.' - ).'
'.__('Current PHP version: ').PHP_VERSION - ); - } - - // MYSQL Version. - $mysql_version = explode(' ', mysqli_get_client_info())[1]; - if (version_compare('8.0', $mysql_version) >= 0) { - ui_print_warning_message( - __( - 'You should update your MYSQL version because it will be out of official support.' - ).'
'.__('Current MYSQL version: ').$mysql_version - ); - } -} - // Pure. if ($config['pure'] == 0) { // Menu container prepared to autohide menu. From 4aabb5d66909483ad01e397c08d58e55e2500dbd Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 6 Jun 2023 12:04:55 +0200 Subject: [PATCH 333/533] #11461 Fix index --- pandora_console/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/index.php b/pandora_console/index.php index 43927ae948..aaf960eb91 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -1165,6 +1165,7 @@ if ((bool) ($config['maintenance_mode'] ?? false) === true exit(''); } + // Pure. if ($config['pure'] == 0) { // Menu container prepared to autohide menu. From 88d64a0e09dc994e8335975371d2d1c6c73eb85a Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 6 Jun 2023 12:06:27 +0200 Subject: [PATCH 334/533] #11461 Fix notify --- pandora_console/include/class/ConsoleSupervisor.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index feb1a17d1d..5f354b6683 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -872,6 +872,7 @@ class ConsoleSupervisor case 'NOTIF.CRON.CONFIGURED': case 'NOTIF.ALLOWOVERRIDE.MESSAGE': case 'NOTIF.HAMASTER.MESSAGE': + case 'NOTIF.MYSQL.VERSION': default: // NOTIF.SERVER.STATUS. @@ -1839,7 +1840,7 @@ class ConsoleSupervisor ] ); } else { - $this->cleanNotifications('NOTIF.PHP.VERSION'); + $this->cleanNotifications('NOTIF.MYSQL.VERSION'); } } From 9269ef85d3b3b7fd5f6fcde1965ad28e11d7f7ae Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 12:18:35 +0200 Subject: [PATCH 335/533] #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 336/533] #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 a662a7012a1b6b61850f69a6b87d150163b069e3 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Tue, 6 Jun 2023 13:36:59 +0200 Subject: [PATCH 337/533] #11435 Add height auto --- .../godmode/agentes/status_monitor_custom_fields.php | 4 ++-- pandora_console/godmode/events/custom_events.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/status_monitor_custom_fields.php b/pandora_console/godmode/agentes/status_monitor_custom_fields.php index 2dfb79185d..92ea632b5a 100644 --- a/pandora_console/godmode/agentes/status_monitor_custom_fields.php +++ b/pandora_console/godmode/agentes/status_monitor_custom_fields.php @@ -186,7 +186,7 @@ $generalTitleContent[] = html_print_div([ 'class' => 'section_table_title', 'con $titledata[0] = html_print_div(['class' => 'flex-row-center', 'content' => implode('', $generalTitleContent) ], true); $table->data['general_title'] = $titledata; $table->data[0][0] = ''.__('Fields available').''; -$table->data[1][0] = html_print_select($fields_available, 'fields_available[]', true, '', '', 0, true, true, false, '', false, 'width: 300px'); +$table->data[1][0] = html_print_select($fields_available, 'fields_available[]', true, '', '', 0, true, true, false, '', false, 'width: 300px; height: auto'); $table->data[1][1] = ''.html_print_image( 'images/darrowright.png', true, @@ -220,7 +220,7 @@ $table->data[1][2] = html_print_select( false, '', false, - 'width: 300px' + 'width: 300px; height: auto' ); echo '
'; diff --git a/pandora_console/godmode/events/custom_events.php b/pandora_console/godmode/events/custom_events.php index ea44daac5e..e714250970 100644 --- a/pandora_console/godmode/events/custom_events.php +++ b/pandora_console/godmode/events/custom_events.php @@ -125,7 +125,7 @@ foreach ($fields_available as $key => $available) { } $table->data[0][0] = ''.__('Fields available').''; -$table->data[1][0] = html_print_select($fields_available, 'fields_available[]', true, '', '', 0, true, true, false, '', false, 'width: 300px'); +$table->data[1][0] = html_print_select($fields_available, 'fields_available[]', true, '', '', 0, true, true, false, '', false, 'width: 300px; height: auto'); $table->data[1][1] = ''.html_print_image( 'images/arrow@svg.svg', true, @@ -160,7 +160,7 @@ $table->data[1][2] = '
'.html_print_select( false, '', false, - 'width: 300px' + 'width: 300px; height: auto' ); $table->data[1][2] .= '
'; From 219424bef6fbea386114ae750f4f3c450f3837b6 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 13:40:57 +0200 Subject: [PATCH 338/533] #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 65e46994beeaa6a00277b8937da354c8f5a30ad7 Mon Sep 17 00:00:00 2001 From: rafael Date: Tue, 6 Jun 2023 14:16:32 +0200 Subject: [PATCH 339/533] 11472 remove pandora_agent from the pre check environment online installation tool --- extras/deploy-scripts/pandora_deploy_community.sh | 2 +- extras/deploy-scripts/pandora_deploy_community_el8.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh index 46caf676e8..2e40524588 100644 --- a/extras/deploy-scripts/pandora_deploy_community.sh +++ b/extras/deploy-scripts/pandora_deploy_community.sh @@ -82,7 +82,7 @@ check_pre_pandora () { export MYSQL_PWD=$DBPASS echo -en "${cyan}Checking environment ... ${reset}" - rpm -qa | grep 'pandorafms_' &>> /dev/null && local fail=true + rpm -qa | grep 'pandorafms_' | grep -v pandorafms_agent_* | grep -v "pandorawmic" &>> /dev/null && local fail=true [ -d "$PANDORA_CONSOLE" ] && local fail=true [ -f /usr/bin/pandora_server ] && local fail=true echo "use $DBNAME" | mysql -uroot -P$DBPORT -h$DBHOST &>> /dev/null && local fail=true diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh index cd90cdbb84..972a094c95 100644 --- a/extras/deploy-scripts/pandora_deploy_community_el8.sh +++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh @@ -84,7 +84,7 @@ check_cmd_status () { check_pre_pandora () { echo -en "${cyan}Checking environment ... ${reset}" - rpm -qa | grep -v "pandorawmic" | grep 'pandorafms_' &>> /dev/null && local fail=true + rpm -qa | grep 'pandorafms_' | grep -v pandorafms_agent_* | grep -v "pandorawmic" &>> /dev/null && local fail=true [ -d "$PANDORA_CONSOLE" ] && local fail=true [ -f /usr/bin/pandora_server ] && local fail=true From 6e8f0d1e931e6848339e6e697fcd0efaceaa4fde Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 6 Jun 2023 14:55:30 +0200 Subject: [PATCH 340/533] #11469 Fixed add selected modules --- pandora_console/operation/agentes/ver_agente.php | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 2e2ee2e37a..a09fa51844 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -67,6 +67,7 @@ if (is_ajax()) { $agents_inserted = get_parameter('agents_inserted', []); $id_group = (int) get_parameter('id_group'); $pendingdelete = (bool) get_parameter('pendingdelete'); + $get_node_agent = (bool) get_parameter('get_node_agent', false); $refresh_contact = get_parameter('refresh_contact', 0); @@ -1297,6 +1298,18 @@ if (is_ajax()) { return; } + if ($get_node_agent === true) { + $id = get_parameter('id', 0); + if (empty($id) === false) { + $result = db_get_value_sql( + 'SELECT id_tmetaconsole_setup FROM tmetaconsole_agent WHERE id_agente = '.$id + ); + + echo json_encode($result); + return; + } + } + return; } From 7fa2f7772945328aef8929ea15237ac1bd5b214b Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 15:06:15 +0200 Subject: [PATCH 341/533] #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 045a773937960edbb75ffc408d5ac31f078c3179 Mon Sep 17 00:00:00 2001 From: "felix.suarez" Date: Tue, 6 Jun 2023 09:56:16 -0500 Subject: [PATCH 342/533] Revert "$task rename" to "$file_name rename" --- pandora_server/lib/PandoraFMS/DataServer.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index a53f6859fc..52abb1c007 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -324,7 +324,7 @@ sub data_consumer ($$) { return; } - rename($task, $task.'_BADXML'); + rename($file_name, $file_name.'_BADXML'); pandora_event ($pa_config, "Unable to process XML data file '$task'.", 0, 0, 0, 0, 0, 'error', 0, $dbh); agent_unlock($pa_config, $agent_name); } From 75f227ec9f33868b01b4152748e863ba09767065 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 6 Jun 2023 17:12:13 +0200 Subject: [PATCH 343/533] #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 344/533] 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 345/533] 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 346/533] 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 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
EU;ra`%XF>09W#Bw@ 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 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 zcmXWkci@gy|G@E^?^j4g+52nnz4yq@%*ZMskw~%%btj7QBqB+fX;MlOB?+l0Q7MJ8 zq9LO+hP@C8{lkgj+f&e%!UUr3;uwmGbIwg;5C$U zU7fn0OqAlH85Nb$jz(Z*9E(+P85YCcXv3#5FJ8cknCqIf#8ub`t?z(&@MbKI<1imS zfs8S+3d`W0R5_VQ{1tB$$(@#{&5ah(@mQYnO3Z;@q9ZyK{RwMP{te4w**s~9HrNRr z$UJnU&!CxFjb?B|^h3-<|B1a^*umGB3y((6;nkG0rvr@?a%=FqH{eGP4V6F{;GI?6FQPT=p65l_5Yyn zT~#2oQ!rW?&2Tex0M}s&ysbbojC5vva0wdu8gvnEMHkZIV?XzI$LDQ_C@_l=H> z-j4<_7YpDLbT_O=*Tyciodf8Aen$gLW-A)DLw+=+O|T@kMN>H(M{pF3!z(BsDINkn zjZG>4jdoNoBV?u%`rZ&+!U*p~JIYm(5o2+5@ij#HOD0-!;i~S4K6ne>g=5eMkE0nn zg+BKex;S%|3Tvhm7NlGUT{~T(gV2$Wi%vxYn}ZJYnUw6m=ee-K*U*Dz8~Wl=G-YSe z7qgWP9p*;MWun#5lr}=As4G^-5ojhCVRzh&4kS;R@P1Le%>7@Ui<(#sox?#m1@Ay# zIDO*P-nUMh7+u-JVlpc_}h8iM5#Y>|V!(i|t*sycO+u z2Ra2`#QOcwBeDJ`G!ti|7t!~!mP<>dVJ`IjJm_;pqUDe!m8e;c{cj|7sIcRD=nGBJ z5w}4b>>BI)L-&r+^gDI9F2la<5V_r{00F%zd@ z-YRK{skjgy#9~#`67z5cx@HA+U`hnn~zVG$>kGVID*BPfm_i?kD({l&*=8a(kOIX63swW^kdQ(4`5$3 zBlQ}mB_?AZoPb}UbKbd0TH+)&ZBCn zqX9gO#c^S*e;a*%ANu_9SpEZD3u)JejAljWJ~x_)BGGEsCPV65#s@n^`=BEqf{t_| zIz^Af`%j>YaT(h2O3c8w(G>4TpZ^VQ=TfY{rd4>a0{UL9Bo{{1GFJ4A58M*Vcc5$H zUUYXn9P8(!nRyQFaBK8i^!c;s^Ow-}FK-<(SQIT+Mb}KS1s9H_CmQJhG*x5K5!{P4 zaYih^gFd$%eQrPc{xP)SQ?Wi%n^1o_y2kRLBQ6r_Dc*Sr)Z!@(BFLLV>x%n@Lt7eLp0zH=zIOp0Pl?Tv(N)?Nk{g- zi|utP4CG5RkOSz+_5+%MlV}6Kp$+Eh6h>GkS{u#WwO9%}p^JKSygvtRcPZAxm#_vN zPR1L#JBNsipmSLT%|v~4&fB4jXC#`!iRkK{5$hMDC+JG_W3?51?hu;#Q)q{oyM!Me zwb3a|4&$O37h}=L*J3-|hc;NEYiO_mn$lkAi$k$Bj)`u-YLx#&JFM0%w0AAK-G-t8 zJ&X?M$xu!vHge%&*n!UJL9~It&`jjGKFoPOG=M5-CYquRUWdNlC)SUM-h)rS)jLyU~IE+>8Bh$Cs$k%WnuN&W|=+0d1fj+Cj&7|7LW%-i2<{iRk-N z&=Jl;NBDB|9V|!r6LhN1p;J_{H~Zi1QnPpHs0%uRTd)j{K^uMwZSZ+CkhfxaC%PsM z#PTV$;s2sJ`-F3$IQm=#wEaeyfgO^u;&ybz6VYur18rzkyuT4MDDRBrlW2cDn76T-8QeFBj13|*^cNzwBa-8 zoTm2+?G!@;uYz{i1nsZ`mc`!ad&zJ=nV8Fk0W3x5dNrD=ZRp44D|GRkjrX(n5BH0q z9aKjVRhC#&~}M`t5iKZEpqI-&*gx|3Bfv7x$y9`4pOgKYReQ-V{cd5ACQl z8c+@Nxt7r$vHn(cIpptWUWzx?hK& z4L^!a@f&pH1qP)h8ej!_oyc=zACc65cL<4*U-OfLv0bMmX1W;gbGE`Ki!qn8o z%Ge4$7e=FVISWT;;+GMc(n3SR^X1S0>R@W_(T;CKzxQL%kxxdab~^gptXRJ+8823$ zDR~P$*><9fX_xWFtWPn+G&BNxHUQjx1*_^faP%tI)Ina z06s@DnM~~G!WVu-Q*$odNMs!zGLZ*ey+zRTpd=b-6Lc!Nqr2p0bZv}6x7+>blrBcw zUxohgSdTt`5DU5gPsWO@w};5`MT?^kmPb3RhxcPAba(7R1N#mQp&zH4&?%XS`P~1jxTu6%u@;_2=f2d)FlUX>$a~^&oQQSt2Xsn`+!20abwt~_ z1FPaftbiZm?f5%Z!~vs1{UexkZr5_*jU#AeSKgVHxE7nCDV&O(aSk@aLzs>kqr(~~ z6RnQUc_Va9w2tNW(eCJbH=-FEG@AWy%0^M)Y8;QP@eyo^yU`Oa_g&%RQ3hRP9nr;f zS9Bp>Pk9SE^1NfhRJKB=uoKq7{^;U;9Q{SKbqxF8)P75ass9gMM773-j$5INrx&`9 z2gUl4Xy8e7#1BPhM;D@Vy#k%e&FK64(Dsg^nLTX--nfJ|lxfi`>uQ-Pr! zW}6T)Qxr{IRkVZF==sqbeSdWHVKkG=(A}~I9q|@)k?uw^luTUY!UhW59jt-=*zABt zI1=x{IcQ)x?g{(5EE-rVG^KsewK4?lXac&(9z;*R$I*aSVOe|+v%CL~b72E#(8X~P zGqB3UFoMqL2nL`XjEYW)^>fi9`&snhS&0VlF`ALD(E*-D2as)22)q=gzW?>PD9(+x z=!-+q?K2Kt6ZfD;=G0jJAG#*yqjUKj`u@vkpgYiZzC{E65uJ()=#=J|9Nx=^NmprM zE?hkI(2nm!SNB--gqwsevMFeXPog7xCf2V-JKTXT(tT)0C((}oie|evthIvZRMfpU z?*H~w*kD(*qhaVizYkrUD`Nfo=v;n{E~2w&z(wy19hX4gs}t>qrhW>#Ru-axt&YBZ zAN$|A`+y1;%ctmwzePuK2z~J!x<<0|y!Cm}hANCX$J}x$wo==z~w90lb7hxEgKfEp(A>K@Xta=;A$rzL)k;7-3%Yei?M? z8pm=sbmYU(-SYrm?f#z=Z#;|c&v(%V_Qm?s=qk=WJ*?V7Xt@e{P&Gvt*+6vvPefC_ z0DbPo=mvD{>_DIU4vW!$;$o~QJR_|3258EAA!{Tt7@gx=(G-qCGjR_d!|CWqM?4(f zn}Xh-g=X#O;kRiMHb8(=x?j}>tmuE5pk?&vWq z{LFq9U9`K=Mff#3x4)w!%lcRdG&kB#Q8dtY=pq~%os#6@1QkzXGn_g*{7WcX(LZwi zjb*UToX|i&97TB|R>hyuMO*Ok5O{6$ThJdpKPF=ZT!v<3C%RS+;4l1vCV7?%BRV)Q zH2fE4P#*e3a0c4pOK8Id=ZE?RXuy5ZHM9_2E343qzJq3FCpxt!&_FLl^FA5B|JAv8 zf*T!iE*`;oIDSFsAjeZ_iMuIZhb@VC8@8aF_33!PplhKAI@cr7sThy$f=AFyEWjrC zZuB3_;{I>&Oqk1NXyk38z0j21iY}fB(OI$nIdn0tLo@Rwx+cz{9sh%7Ci|k0^1|q@ zs*ct-u}uGoE?n4gf3(37n2J2sFF*r$5gqA!XovgIujAk7w#vIWoS2o+l-EM1pbeUt zLHG{dj;?`nOW6M&5RJL8qAj}r`=i@z5E{q`tcw%T$X~~{xD|ar$I@^fw0n6nR2+>J=g<*meKx#M5N)U&`eHqFMD5U&_mAF% zW^4u;(Bo)_i_rI1#_~I{{4qMvZ<1ViVEl+idJcUt(~8hxPBhYtSgsYzt`$>Uu3;svy!?9YW8`O(Ez30-`x&^6ExeeQAeq+E*S z@gppOXVC%Wem=BY9L-2o^qgsczTX|0s$^ndtQdx-bUbF@|Im-jD`4h+WoakaMg=VAz+D-$!A6sJq_y2Y-GN||-J);vZhV4}xD^YBQej9Gb zsyGWPFQ(4+m%?*X(C1!5Gj|XhVV;-M65X&XmT>G*7UBn-u?|p+w8~&aP7s;<^IrFM8 zvRr7&OGj&<_nV?4?T9t-Ry2SG=<_c|-$d8Y7Bo})(F5)@dT?F&3j5y|D!vk4tcT8N zD@?~u=;FK{ox6eP+>b;TRWjB;f;KoGox(TJk$#S5^eB2_{)e_x{ME3iE4|A8_atjc zg^TYIblWUNQ}jl31N!27(Vfw+(dUoG@}KAdlzDZ?NOo*bxgffB2BQOh9PM{Wl8dHX zoWQ5B>}%m)4%v*IC^vmQ9Hsw@?#HgwS6maEgjFbig6@I~XvQ+X5i)W$nu)4teKT}B zcg8-L9KwaEdk-DS0dy^#M&~qrZJ4_}XanWZDXNFwZ;p<*D;mHJ=pr2uofv%reeX4N zQEosol1yyn!j$}muKNGb#g+ffu-Iy#fi*)LxE^hw9~!_AG~jV)$B&>RelFIpL)Xeq z^!cx%$MGun|DRmgV3u`ZggMa{ilK|C0y@HWXail)ObkGG!yTA`lhG4!5xVH!Lj&87 zuB|gz1}}RnoS2m{zx%%@7dAN33Y?72(LD5pm9e}h-v1HZR*ChY;eu#~)zIB>U97(m z&DCYq`D(ad~; z25=yHDw=pF4D1>-po%yGo4mvR_qW;0R2aZ#XoFv)5gtKP`a7EHyc@$dEQNMd4GpLT zn&QsrL30b5k-O0m&qJSk9nHk1=%*Xm|8{(Uie`8WT??h(4U4HNdSbOl7vE6y`8#9z zZmdUnO03_29$fFE?QBQSjor8e55)S(n?gVjCAqM{xo8JZqZwF%j&L=aiT5!BKSy`R z?`Y<(d@n4rn&|zuSQ&?5d3*wGXA_$G-DoC{qM1mZjTMQ_;l#TNeJ~H!z;fu`BP|x50b5Wg&E4PF>Y>F9_d!Va) z9J<(Mp>w+pZFnEn#$VA9m)siu5~~Y3@)_uwcs-UsjGl=W+~$4uUrR1bX>WAf-Gy$$ zhtZCfp(9@x@9&A_AJGodJ_s2rh-RWP8hCs3Xdi?Iz6@>eP0YX@mfioqaA9f^+ryvL z%AgH*K}R+umLEqOdJ#RCHll&=kN$xUAm@i6;IioREzswBqWz3QKW_6d_3!^KC z3?2FF=!y3+x>$Cji{(3XZTuR`iI2jFa-toTj^+C306L-X4UXlz(A_X2I`1R)zY#B` z!d3njn(B|x`lDz77toYu`#1zp0`0Iiy3N|59bF&q4@5^iHrCHVJ6?ni^rcwd@NqIU z_yHA;d>>Z9Gw8lAwj+GE8>4~Uj;8)0G{EPuIBrBod;ksfw|GCt&hUImbl0>%+r0%# z-~&l6?05xw)^9``Jc5oO^CzK!BA7wB5!yh1G-DId=VqcO+;g$K2F=hX=%PCm>;FKX z%lT=@M6w7Mc32rrVaIr*Uo78_sgBTtWG341qFDbrI^r#8!~4-x|AJFibOc|Z&wU@ur_hcspdX(+yF>fi>`%jXljq40sM(J_%9l0&d)=+Otdaq-xfRLjcA9f;{DBN z#`a(a9z;*de?L!4rnW`lFG7l&q5=x1-Ybc&otjtyTYt&^x4}_Vq+=32P^O`)c~&exjb`GxSpN#z!P{sDJJFBM5iEx} z_J;elurB3R=o*@Y1~3;r51vnQVX8hx7t=vBH7C&yvVRqJMvS)YqY%0qD^_5*>JQEEkS+T6|y*8sU=Ynt1<%c>i-WLx<3j|BR+Q z)4mWuadeSYMYnZ>SZ<4{MTkz-t)V`dn9PMo>U4Bu&!ee&3+>=DbY#cTi2sQ9vwRa4 zRZ%qH3g~-{W4Q;K$)V`BoQAfu7#;8{Sk(RhHW#k;eP}~Jqmf^V7r}~@8>07zpdCJdeynDrBVUQ010SIMe2Y%mDNI^%#dl#O8R&!6(1u!J zKfE4&?o~{k_1Kg0el*}3--oGdg{HV?EZ>5*GY)-!D!RR&M5p$x@7e#}*hPg69f=SA z5zT%myigQS`b}u6zd{2#7RzVR=l(+voUBJf;1$trnykx(|BR*u znwr+J+#5X+`=bZOz<7Tc8t5eSh@OcCGzXpgr_qLAM&ExE9mw10b9>RueILrn#4qv2 zA84xnLjx&zESz|i(XU~5^oSjWcCY}Q>u1qlPV2Efeuq9^{)Z4yD>Q)aSQYO;7x5yz z-2K0f3nPCYjchj>zyWmbPoo`XIv!Gc1v-*~_#T!*GjtT4=n<2C61`~V%vQLK#rq5Hh@kHPln{aeuvA3&#OKDrj3M+dMr)^A4x z_zHdg2TYp6^IZ7CRX>G4iWNc2ozMpRMQ=v~oP^HpEcCg#@%}P2gRjT>chM=^iN1FZ z&0N->!=k19sYQp* z`Cjz>^j|_ou0)?N{tNrx5muzajvJyMp_b9^Xn?n1B^-}W;c|3DjZcP@c0sq-O=w_K z&_(tfnxRc-rawWy5r@$L^Cy1|57tEgKyV#8$0N}>dITNeVss=Mu_pe4rncCrP~R3^ zBjd3OK8tm64?2Ksr^Ee1Xkcy8ev&tHVMq6(0n9;9us6`iKSwik2wiMv&;#a*GvU30 zXeO$lAFJkQ276&`9Ez>*8O*@L=s+@`O&#sYL=7%XeK&M<_CX^YhNf%^+QIx-ehGbU z6B^*BcoXi&UfA%rw8S=?gYRIk-@`xmyXIV28(q=!q8DD~{-4Z++ixn`@IrJkzJzx0 zCYph*vHpu#{yyG6jb`K$dVpR2M<|y@Q(pu9>2@vJ&hU7DqW9hZ)46a8oTa3^=JT}q9Zzr25=h9#8v0R|MW5gyHZ|&4(KOzEu~)w8OVQu{qM+2 zQ{f`4i7vi|XbQWdFOEbzoPh?o7!BlAtb$w7%$<$*6aR#a<-!c=%cJeIN8h^zJx}gQ z#){|A$lpdkCZC|&=nHI#$6|fCiy`u==#(@kRiuZ3q*Tisis=kPQ1b9)la#N}B-xg@%X znxm_^2O7XowBgA(6KA3A6v{?s_=7|}>_oZk<>{%f-V!E9*8CJ$F=)fkUQ#TWxnq}yb{%SCp_%hzOfTkwv zRiU8*(emgV*2kJS7@h0+=u|90Gq(mS;dZQxzo8kckTX4XfOW)jl>n~%lZ|L>TgG(7@uW!y!k12b?kdOj>d&yy8s zCbpvQeS;b9fBq9psnq`$AGkVqXrLTAm+jCOhM*%Kj;U>ij(i%rXcxr$>(Hrs51qn& z=#*TRC-hSb-36^NX$re=VF!bvL*oM@(1ymNBY7-3AD!DpXh5r?Z=!2q6WYOcG|=7X zZaR!E*7NAv$(@(|?*qm1rl9(oinM^pPMx?4U)cg2tB zV!VWA;L3dIsejL?5qfftLKoo+`Pl!CFar&A9vbsIu=FVQJEfsODYy87!E4FPmT*UU|r&HaBL7iM63^eJ@Ftwa~+>uAb1 zM|Z~huh6sn2lV-i==RE7EDWd!I)E~0eS>IsY({w`Cf#PQaN)_e3C+L}G*u_jjxV6k zWhow}A|IOalF@2tAdS&Xb;l~$7n|b@?1&#n^JSzbdQcvm5%>RkDvb2w=s|SkXVJ(L zB|?XV(77##rn(85xvug4AT-sZVtG26>Urn@)}rryfVQ)*L^6!@6csjf5zWL^CBy!$ ziOywj^ne+Oo`^Hhj+R9?U(M}WW9py({lJACq*V?N7Q(iaTcDrUhtU^aL{GGL(Gi?SQ=G3#dSWov#csF|9l%L6 zV_B<)av3yp&C&k)S7rYj(HJU>a3Y>~TD^oud+u=Mkpo8du{;AIX_kmnB!jHoyXkDe!-M4GdK=;M_S!#zs z3ZTzdK{M7I4YUhp;3#wev#|lLM5pctbRfyhbwWq^(G*rgUucg$a0~jvJ!r%8(UGjf zlK2TalGD+v>xOn}p#$oK1~?EM&{#A>|3ltOCSK$sl`8bX@30G=#g^EjUdYfibZsm` zpWlcEwmX)8MNhs=^~3!tXuvJdkq?aZPoo1}jb;4(|1lTN`DwJl%Nm3ZOQH3R(Ghn? zPqy385lo2p=b{;V8EyCjbV|QR+xr_`ba@+wKl9bX3Y2?eRr*gnz=f%N9nHX(=txfZ z0OoEK=CUO^C4;di-i?lMSFAsUW+<(3s4t0@TcYm`MB5*ao|F$`(ukjq54?%4<{ju< z)oBt&-U%Ja;8?yN?RY*q(sgJ@pP`vJg|3P0O~d_4=#;fW1L%#me|uB*e={zoQsIfU z6&>+ew1JFfp@Ej@F6f6h;}mpij$mCpkM*#6^Dx)L(DHIL)!(A+rMC!~EQ@U37M5)pUg(R?aBF&@Cn@HcedpGW67Tk8-|QS^RYH1$o; zuW7ev|5%?K%7tIKNzrNXfk)A~S`b}{{vOzbHuxF(wLFS8dZ`Q}kx^`7!8-r=#sWiB8FiSbhUt ze48<~XwiY5$L#cxqx{;qv|JB;p))#%{n0rc5ly1I z;Bhn)FQ5Uvj;{U>(1GnoGxQgF;^pib0;-67>=zetMGm!R@iG^G^(wE}{>(LZ$MjQGh-v0s} z!QpuSVyw@0eRw|~8ffWQu7wV)1sZsdc>k7oe@sgD-xMzF@G&&Pr_qLoU}ijq>39Oo*hzFizoU!uKXfXt=n(?Qk3L@%lSWjM3y;R~Xv7WBwa`8~ z2<>oEEYCs%eF5$8O*F8L=x2H-dQO~0*U;5H!?vr7w%Z-c;)tH?e}5j&jW^yxSMP2# zwa3v_{4bjFLcPKwtAQRUU1E7vbO)NbAETLX2ptzer>+5d|GHQ|?>+dxswsRnQ~!2CRe+pu6H#bO4{A?HoZ5nyh`od)2WD<-X{EW+b^V zB}>r7wjOQhQ}p2Z1>KHU_61DbQ}F@%O*o8poVYOrQVI>MJ=VrM(9As>eFq)! z7wB608QIRs#HDbNC~#Alf?8OI2U?*SnTWpd7&?OG=v;n`Hn<-R^fz=ZfY>9n_u>W0!&rsna+l0;WJUX(5w}uq9#U+%xq1*H< z*2T<2!*dPL5w*eL*b@z8GaAUgc>g!dpqyz~$au+N$&m6&RJb^5pdEBYM>Y^m^+a?# zJs9sli>7idIwkL*pWlz82cu`vz_Q#HrZNw@CMuu?G&avD0fD=`DNqtBf{+xZjCWTFZej-)=i??<2`UXH1s zROs$li|+e((S|-l7vZ;PX1+&H#Ns2v)U`&>g`2QAPC}>bX>@HY$JG9Rn+qe|if+Hp z(G2WEU-$v-_#`@2|Dpk1aYs1o^P;J*gszd6=m2g;+Z&E%@J=-KlhJ?{Tc6}&6BmwX zhZVRN4d`(6OsxM84J^l~@LU13gVJa_714~mjL!LLwB4O(yI-M!9f_XAq#gaqg(J;! zXZ!|W56X>j0?x(^%r-i#;tH7B$LP`A2m5AX>ToIL5AO;`@USublT^wx@ix4CY?!LC zXdr9Hvi}{yCMx`xY(pbGf#vXb^rKRET&Qo3W}qWxU>|gGO+=^W5p>rqh^|7XZZl@! z=dt{Iyq{$}``<_kjt~E0K`HdeO`O)14?e>!VG+juIevh`9LfmkLA;7CeFul`aPk16*`3l(GH5EQ&1X* zVSTitWwHKMbj@r*`b{SGhKt1aSdSY&p+|9viDCaXM_2QWXv*$ENAMsz=kw7yUV#R< z4(;H5bUi&-Xz7xSUpt27!=Gjy)oVF?_BHZTo6;pU+u zejV+28#<+*qk$cW_kY6TlrP5mBKNZYjjRF}E~2LBYVC=3I2oPG`RHPL8BO)8Xht@p znfee7;45^BenNN2AF)2iec`!cXn<9sjqYRrXQrY(6{fZ$rc#ZLydRpGThNBbp@B_7 z1AZC}a1A<;?P$mQWBu7^7Ph(d1<~iK#d5187dF%vjchd5LhDW88)yLUqN&`4PQiY3 zkzR`Ti`*ZktO~ka+o1y)h|O^rcEFd=kIy-@zblec!dwqgr|d!eiQRy5_K zWBLAAo{3J)!dSlwU8HZt`|qLy`XrXWLfcFJz=bI}gQh6U10kToXoQub4bYC;#{0cu z`PS&T=(OnE=Vj3 z_(80XkE3g5C))AX*baZis#teMnDZexg7PS=h6m69u6UUJ?;^?1g^QyoI-+uD>g%E% zwn1O$jy`u&tRIF>$vAZXPer%weDt7Mf@btRwB3W~c0GwcpLm4*ZwI*_2@hnT9alr^ zo5lK$Xa@SB+h+vY@H8~V%h7H878>X-^!ablc78_N{VSHU&J0tOXD0jCxvCZ`I-sc> zf;Kb>+v7v%NOz+L)puwnj>qyD^!dNhfYSaKrnCTBE{+CL8x5=l8qoDgE^K%ZI+u5% zpV7(a;+ukYvh~-_edWJiO12AFN(f`zW6RWRa?+)^-=U|w1eYlho{lSd=Xtk*USq6 z6+xe?hN(aQ*XP0q+M^wGM-Qal=;9oJb~qA!ZVY-P-;0iPA)3;!uqytI{$42eL|6lr z(Ct|d4XiWz+3)uR``-?4qQZ^_qaBQnPC_GnFy5bqE~01946Q|{;ytvT-Do>|(TpBN z-~R=j!gFZHSI!Ub=bF#{H^qgiu;WVcMjf=_=4glAV)?dseZU(l4hc-ljYdtI&U<$jb0Q2QE30(t2Fe{FZ_4lAtdq28n7NBeB74-S7n9ShfGcFe58FZh|d^L112VIQMpljoK zw4v4L`LGRLoIBBgcB2jNM>{@&KK~#3xz4jXEYg~IkaC^X?0;X#{aV-##qlo6Rq%RT zir3-q*oss(dp)fBX=`GDXa~=rBYQp8e~7gxe~uOKvNz(tAAsd44@29Z@TpXjK zD`sDto*0RJ@eF>1GjYS4>8bw;X6tp~Z#v&ZzlP~=h0NqbGgTb@dR9OKYK(r&u1BB0 z6*KVeSpQU#3txBz-OroR)P0Jc?LVL&r*r6$d)4}o;!5cKdT8p~peI~6^k5nuoq|5M z0NwX5UO`WlW2yPpn<=Q2EGm5MSIcrzQff2{`U+QKKLKH2C}~wR%t#gN4Z&aC|0HX7*@hf zXv06FBmXCQ_2$q{IW*wf=*WAanYta#%v4PM@Bg0R!d>tZmc?DsKd=JjBJYPkIJ7|n z7>^#=&tYZ!0&Os{C8WAwv^u(Y+oG8nh)&HE^gLL)h5hfU-bBTfxF6jOKcOkQh^aZ; z8t#`ve-+n3w^cVZb3xhH z#Ou*i-it1tCFoqPMAyt(bgH(YsXmE!Vx|wmujISX=e|V){uw=>&Lz30OurVfoixt&A z3ja)|HQK=pbV?SXDO`yexDjpeV5~ol9;Jzo!+YJ)ObtWNlSk00S{BQ1qV0cz1d>b~ z=EBJSiZ^oZ2oID-J8pnB&;eacH=$E@B}UXNHm1f9wW=-Nrf z`!g{!=TG7pE?jI&qA#P{Z@8jXs#f@;DP+d~2~H zZb1L+cMLrjn(hzp_eWDb0sR&{f_A(L&Bz<*fVS>u|2v}HRM^os=!-w#a{L=7;L``f z3%L)5RA)rXqYYKZQrH9ybRecaKIp)fp#yspZGSgytBeQ!c6C(-w3qJch*2J#Y?!?ozh51<+TCCLB(A1-|1%EKYGh0#pZ zK_l&fzAzkZXi}_y7Hx0?+VMwN4fmnvLAE0yBPGx|uZyL>JB5v3@U_f$!0Vj-jhQ?Pz$e1iF|TV`*%Sm2o(li6^lxE=LFa4W|D7?*tb{ z_&Yk%%Z`OP&W|=!8clV3bTxOwIyeMv_-VA`=VN&_+QHkH$_zS?eQ5i?$NT9&u>U<$ zui?T)RT_P<2HIdVbj0n@uU4mczZ=@|05oI6WBpjHLiqu7&Ab-tH=^zDz)JWv`dr#^ z_P?pDaXcI-UD1?ILhGMGJ6a#z8r_9essARHvz-VX=0-DF9DT25vVKd7A#QTkYN>4ma zxh+10-=YDH{W-jsoWg~vnvQO_$I-ce5e?vVw4*oC$lpgh+!^clpd&kowsQW1Z zW%?y#<}$Qg5FJP{q`hRKEEkTrdZKK}t-_Q~Mi4HLFX9y$*8dx#pWKAY2a^Zt*(F}A$=cX_E z;DUI61=`T7Xa+XK`c1L^BdkFE7gz=_p#hfqE3AbU=vo+rm2f(y{`ubGv$AJHlJFP5)5A2L}69Y6y#L#@$8*bnRDL@es>|2Md> zp*`rF|A>zC543^Ag)moFpo=sQ+F==VQP#%Pnn35YJwA%v&_(w>mc+l&fffEIWU4tP z9ocX$2I4HVd9!TIqt$^_p25776E zUSj_{7d0-02X91wUJsAuY3PXNppid?rf?IwRt}AP5or_`3KR(_ZYf1=Anys zCHnq4H058QfuBG#bP0Km|Ncu_XrM4Uk_>cC%VP(u8_QGT{m0Og@5xxd2wgKP(F}cn zcK8W8@yW?f<|A)Cq%^_w`UJ%`YZpUx29R7tc4$=BfNwTD9_~~;L6bk=zDF@`+d=N@4B3S|H%kvQ{jk~p$Eunw1bb( zkI8=YxlB32$gV*HDvge$1^Rp^G?1Io0Zc&KeF)9SJgkb(qwnoa#v6yx27X6hxa^A1 zP#!d(O3_y6{=N|nXe9dlebN7+fh~;p--`7gp=;zTbgIrqlUH6DBB_8rPzPi8>4Llsn^J95A8qjL=`S)V|eyl?IM|9EVyDF^yHfTGOk#mH9|Az}#|Kn%_3(*m; zLo@OjIt52!eYTvT!xCspYecV&^*zx63_&w99v#>;wB04>d+SqW_TLUJOxaO%l_qk9 z2MVE!r7}9gR_L7eKm!{b>&K&kKZI>?IU2xE=<^rQ0J2}5CG`<2jrP|bbGiR-jTIBD zpgb>@pF=y|f;RLyn!3ZW{uKK8{TDrGGG7xinH_ECYV^I5(Hdxb&7)m0_22)#nF}Kv zi@xv}+Q8yiULD;O{WRV`5X-+tFQVHlNAA#3@n|*lo6rnBA3C7lka4-$|EBUjDx9l1 z(Ix1S`wBYZH_(sGW^}FWz*I)i_Yb2Do+$<=p7=_0jfQ zp#w~I;ljxKpb?Hn7gaJk6&>MpOnv9k4(6dLe;N&N1={f1c>g{0`R!;&JJIL&qEq%A zmUaK1<-(B_$R8T0hodkI*>bj0tXYvF@f{t})01JR$*j{igh%2qIRP#{_<+7!!k zzZ=^AM6}(RnELzwg>QT=?KG@x}%80J$W9YW|4Q=Qm+CjDwArraL z`=z2)(C6x*9bFskhz8U%-XDava|c$%dyszl@BhRb??ktw8QBxdhtPxM7qp`@@%}|L z@Ej$>$cmwhvpU*wXSAJuXvf22{W!Fp2k;vDPt4-NxmkwAaUD9suh2965Z1?|XhTIx zg>6<2oq}p;gRRl;dN;JaJ7WD*bg?~#zW*vZ6&tXS-~XLl*x~W`z!`L8|De0zs?u3f ze||5CPEl)gjdVv>^9Z!T8R&=?qTBH$^!(U{?wX&_=Q5QE{pH4_tGg%{c31_=VRLjY zhoK#eMo0E2nxU7`hIXJG9Y6>0SFF!eHe?_-+J1R7;QF!L4ef7WS@yrF8%u>LyB|&I z6KKj-q6fzgw8LX)V1J^S`48{p;~=9DxS>1DcUU`DBQ&K>5&N zc{I|tXzFf81A7n+U?F-Uu0k`j6@Bh|^u6>7!J_C)IDLQq1(2j?qQmrpd-#*Ib^6XIz=_n_S&Fps1N#w+VRMM z`0sykVZ+a&k-izr@5S;Sw1NF-3QwUUzla8sw@UbURYRZahPCh(G=mG!l)o77Z$<E)AH8flpO=%r8b={()uqow7(S|-jGk6Fc$RAh&vsMe`3TU|zI`SLQ zMLq=!xc{Hz!pL7k8{Fy*{5qD;#QW*h!*lu3Kr5oVrw-a+3p9`$&~`?k?cR?*KNo#& zalF44Q@{T|;=&gXpd&aN%V{-2eSv5dG?gvUx$cWLI0#+kccbmhjpY|(c`N$dJ~W_H zXl66jWdA#dMQetR>!I7CeJuAz*Tisi@r*^k1#_@F&c~|wGa5j_TA|_E=(g;NF5Yoy zU=PIdlhGBm*#F*moeERF9gXaJG-dyw0bN!*m=|rZG`bjTpi|Hc-KN)}i>^OLC8oSw0>|bk40DYedz9) z6MZ)NCOUu*(M%ph+dqz}KmY&9g(J$^Fk~Vxn&J}C%4oy&(2m;2a(}Ew`Hom#j1J^A zbSmCM+uez7*Kg1O4x{b-j7cB7#6<>XZxmjrh^DYUTHh623!~%xNoYq8qYW=W8(xa; zo|n*$KS1aF3v|RM(f2N*&*x~&{`c2xp2p!LQUIG!ZiJ2T9`twoI;@Dl#`*$HQh#_% z^u$ioPsST@2lm7AO+yBzp^J1jI%Q8{O?(l}-2SHQf6w+D&B9-)RzM$Ijc&uu=!m|? zD)>8=!xGKIfzuxS`rU$Ua5}n3ccC4eLI+T+MfmeYPjp~&VtH3GR$SgPOX@#D(-vLD zQ_w}T6rKBZ=n3}`8o*IBwK=X0mc~kyn_y+UEtcn_2hJ8WkRNdt7H<^-OuouRbt=A# z6**gn)HXvqx)n|RtXRJRD^Na!_3-jGA<&lSTIh|gshiQM9fAL6>AnMfto{IwU*cXB zB83oF%FLeGd+(4`A}c~hB+3^Rk`a-C)T zeV%hZ=X1vMy{2mua23<=}hR+izQ@HRQFg@O|Jo;vIHTt@J2VGPb(2g=R3ETB* zw4595s9-FYK@XlP=wfSu?y3&)^ZS$a?EgMo80nz+!6WD@eH@MW+4%X?=nS;M7ts6W zqa%6~-^X?6bB{C)Q}-zP`7_a(=n*~_uc7~xMO=9BtVC0{0q??((S2I5S+G31nj4~P zqeZkkI?_jDc{1A0A~a)fq9@@-ba8)!X5v>&6y@SF7k*hR+&n~lFE*e&5IvIDpdrNu;WYGtm!m7tk$iyO|2Z1Kk7&TZqk&{<9n6Kvml~SsDp(Tl!*raO;GzTGXnrh3eNilf?a{!-qW8~016hc!jpgY5o6*I37Q5r0=)u&vZP+!5iCh@r zbLfGx1YKkwpbc%q=6D26*=_B@7nb&D$DPsp`$Pw#861XA?UU$K%tQlx0sX?W0LfS) z9D`Zfhk%|zr)ECd@p3GVYtWjkHg!AB-MQ_G!MjjoY% z=pxO~fqM6UO)gATT{MukXh+@AhWeooj*Xu`k7n#uG-IpKjBGlZmelQuG>*vuFZblE7{b+`MLIb^o2AHK&7(gL(&6Gt0Y=nN^ z7VWqXx_w8X0nh6czyB|z!tZ3;umt{$uHIaCWlsLx&N}GsIE^bXZ|AUBw_{1l-=G~` zeRtSq>1cfuH1Hv4Koigb&A_6#3~>21x@WMXa{Rz`C}|X`6xQI{HIaL)t-i~f$Pu=f46dBM`h8-YojA> z8|%Bp`iIdqGB(!FKu5GNx)xp4yU=#NLf6F4=u~9r9=_TYLIbOfY3~0;6pTXU!l(*L#OmK+D?WC!U2>Gow}UpROZHnDQUumscnyT zFa$k<$D<8Ck9N2)mX}A@MYp5v?2F}NXr@l1nYeBh1$;?3QlWk@Ab!3(sM3?9e;BJD$J_l;>j!+=uR-f6)7i z^htzoxh?yI)%plFMVeLMQir#-sO zR$vwU82jV@(C7Lk`h`XGH2N*~B{YD;=>9JFP&oOzCV=#3+=FwR47{3w>cL-%{eQDJrG!OE12qxW^iGB_GtGb_yzl*7JDMh^}X1c@-sLQkK?oW(C9EVm(b^$vxwc#Q_xkt32((8 z(E(*06IOi%tU>v1^z&Jm@PQ3nctV{(zlLWR8&X>k9YK{?ZjavAFP0}p7oZ2!I`rt> z73+UR2b4B0WU3|_@DMcMcgL~+UDZEOQ4DiE8B$XNo!gGFJOJG;6JmK$bR!zzK{W95 zv3%WA;eaWH238%tuNAr-`=UqilTVQ%8=gdk2g9rJhR@KG@CP(im(dff(9`kcLK|!n z?Sbi(6PSEkq9@-fbkS}>PrSou27f}^Pfd&ut34mOxQe4U){3@7&+vQDUC{>(co-VM zbLdyN73fIc!K?8T%z|H_9UVd2Js167tWRW}5I#spQ&JXfuu812jb@+~I+7t+9-l!| z{yy69A#}=qL<9Q|4K)A6uwAR5?}V1Id>@jbM9NSu9NE+812e-1DQ}_;e-!;3J$k=E z18Ve47-2tjl@G;|I0s#X+b|RUgl6U}I`=7);`<*9xc_hE!c^5mZ)lEAMNjnQ^jP#M zbnd31DP4(8aWgi@Yn}}!Tt{>bJb(^h2v)$cvHVW_d@CmZ|KI(w;uIR`AAW#YCWl3r z51o>V=ys}sp6P?o4#uMynHB3dpa;%g^ttnRA6`ZW+IdO{usbII{m;Q%I5%U^kxxe- zd<~tNH__d(5pCc^tUrT3cNq=n+NmL+!suCF4$ELItbzT}c9)`4y=p4^-v)M3p-0h0 zbQT>!=4s)zSq!c3if+T<=>5}T{Q`V|^1AqW{^vr6mC!{x2#ezsOuh|c`LpNP|E2lh z4=Q}g6qz0tQ7d#2jlfd)3VKj|8vO&E^IK+w*Y*H(@vXoX_!ZuQMP>#Yqa*Jd9gGg( zu>=>+;Usi>%|RE>Ds&%zgf7CJXygabDftC$@NYEL8J-X2?CA5k(G(X&*HS$+gLk5f z_n}x$B)D+V%|;tqhIR2hGzJ|70#q$$WGw-bN$df@WlQ{QL;|;5l?8{5jp^{W;P5(=i=Op#ijv z^*zx5A4Uf>3Ei$QU5yQ7(W6oF2=SqSaoG-~Ve;;i74RPQd^)^2gCRo{FY!DVmXY(17-$ z0e^*_^*^Ekok7>sd33~=F?m3}63T_66<%Tgd*U^q!UsE}i=`_X@q_3-ejM#+J{sU# z=wjT2PQfQ=z(?ZeXV7-9plcz=+%N^jqxI1Kx+J);;cn;@3_?2|jdnBxP5DA}j#tF; zdi4Hn=*ae=BmOCV{u>(56*SOn^Flc{+Fx-jiHT}l+|ET0w87`l49trzMHkZ=G?hDW zFdo4&*m8cTAB6@m8ExlzG~h+ix6tP|#`11tpox?tvEm$>$}8c6l6=!0$kW|8T5wwXdqqC5ez^Z z7#Zs)q5F4kEN?+Gb^y)5w`j_LL{G-wqS+UP`))_utD^4z#$4D@Cv>0oKu7R6nzBjg zYJV9$`4*ug_$t<)iRBCE^H~;$1E(-LwKdU!^+k8jSTs{}G5PQRyv2nbZbWa~iFR-t zJ(wJ(eDql(J5Jvj(9V=?e?S39eynl=Kkkc z@jpy%m)AoFxua#!HPSeiyTtO4=y-I^yo7eJ5*_i|=)g9h9ey0k2hp{0Ji*0M&&;J^ z#BaP29#|XQfn0!)4J8=*V|Qzd^U%`S^LxwI(Dt^XnK_Kt zx&KdaVTTvcxzG4!SZvp#+o@}Fx&Ia&!Efk^m%1u+kd7|4JJ7kV8*PeCWm|OhcSG+R zg7)(mCjb8bWG=jMUi{!qGw$DvyMhc;GTN+JmHFN|GW4Q$y=w0X(_D2I6g$6te-Hvn7 z^I|dD&iiP;_yyuj{NQ)AKEvCgf!t^Z1<-FarO-Jni%v-^G&4Q$4(yK) z<7;Rjx!(y>RS@0nRnf0qLk@HNr3Xl6E`Yv4mP!`soRJb-!J|0lUfu5NT>nbwEJmmPhe09t=LI?^if^ZN1g zwrHxmq3w)Bx9hlAo*Bz8qwTCf+g*!&-TxoQ56W!_H&jQrUBg)Jhc^5Ox+@-!PKxy} z#`1#bo9GBPViDYhCGb}?fScYA11W+DQ&g4<=eQC&k~-*GxEr10L1=?d#Pa0$`5ZJO ztI++t5#0@k(00zD?PS>)EQC&F6*L2NHnRVn>o!!FvL0xJkDwioj^$_3j%Gy{q5-W$ z1K)_={|OGnFVWTB;Dc~qH}vy|(QW;BEKmP{{clR=#flZ^2-c(ZpU3hs^uY^gLs>S3 z5!{H5{5G_{9vWzCbmU!P{ov?mbfC|o1AisKg{fE-Klli3;0v_DW3m1;+R+s>z&sy@ zUokC>2HFvm8ARKAB>GhJc{F27(4+Y6Xks51cJw>?;J@erk^Q4!QS`yuXveM4O!SEL zBcc<~Kwdz%;SzKWERFSB(02Et{rrR+{fU&n;te@Bhq*6=22=t)7pkBc>42uR8`{C6 z=zXKm-7yheT+gAaehwP=2k7&kMGv9(oy2VJ|Fc}!z!mhQx@t?9n`_W7kp(4 z3-qPc4ISZQ=v>Z37w_w6idSQD#F$R`Cp3_&w}zAQM$GO0FV2M{s)IJr0G-QL=#kkK z?O+fZz*F(_Ip|21q1*UvG|+YERBXkf_yzjhU+58?ZCfxMli&XjI;{c$4v73z*uG~$D~ zXa-K8YvK=dP5ciXX{Jv?U^k$F7D4OlqM2%o26Qi)frn%LlW1n9#qw+D+F6s}!qk0+ zK5!VFtF!TjjGu;b0kos?*aGXJflWc5e;(bQ3(=0=!&`9=R=^8b2aE0qzX{bF2T)GD z#Kll9vg`~UJdVD6CZnr-4VJ`RSQ`ICQ+eyI@HMt}YeqXp2co-S0^05j zG-LD7DSj2Ry8qwf!qjg=M{o#D;W>1UGVciw6hgOCd2~^B#=6)Sy>A&B*fzAi{pdOH zBie52=fMKe3Yh%<-;@hea&P?L5v)adk~iR|Xv9b3=jYJHnQ3pxK-Oq(w4HRc!)jW%CqOEAE52FoVi1k(sTyay&1A0`(c+Rw86?0+BlfC?kukEZ-M+Q6UaODNNqA;4SE`|6>Aw?$L> z0J`d*M-P|}umc{(wpivs=9H0`Kr?X}eeTx8!SFj3oiMpd(UWW*HpJJ_5ud@bnEF*1 zc@?zW7~P)3(WzR9>9`x6%5!K2{zIp@@SzZ3Q*;1{o?Lj=4@YmDj*jqcbbD<g9R{a0wf-=ib`4INpAuft-?h3=N(XaMDKI9A20-T!ZLVd~dKx1l50 zi#B`=U2JF2k^U3Qd5?zQ%`T3vnTOB;B+$h*1zlSU(16yW{d^kzQt3bCJ1%_S4BEhd z@rG>2Lir}Np<-x5wa_)u25qn}8rU#&q|>8w(6zJ>y>A&hu(jxJ+ltA5|Km6pm8rOl zzSYWo6KsXfRX?of$gz=-*<`7 z;BhK^UH*-BQ1JV3LRH2xl9DgFyx#Mhn- z&*eh{OOGZ>aZ#I!DwteE=ysfr9=$K14XllBN53C@i8gc@9a-j6AwxN%h0y@ZqxV%u z?`wnx+73By5-DA|FtuaQ0G^9CtUw=FAIsa(ZMH9#e?Uig0qrRDhp_suL(6$EIa2fp zE`{yzaeN5(V7mLi`i~)id(aLaLg(huSe}Yz;w3bI4beSl;K$LqKaZZISN#;>(FV_;BfEq?n07ieoD2Qku(IejYmat32p!Q= z(OH<>-{`hpj}Gu48sG^uQ~#Z2|NCIRUqYm%&~jxo!p6~i(8vd&0gcD9I0Nlq3)Yf-~qrmEpJWc^dk8R!j~Q$xtGt8W+x8XSCyoFdavr4bO?6&qEtnjlP85 zM>{xx2KqIc$zRbxul+rIo*&IrVRQlI_MmA z`ZIiY8;zDEtG%|usp^*@A8$y4YWnulg^B^toi`1v>JbAO>zl=*M=zjJfr z-(ijlpf?nWmP6;f7S6&ZXaL9J=f9u<{DsNa>E-ZzajZ*yWvqw8(RS9MncIT4bKo-j z-$ikP3jGyl;1x6jQ?G=Pt-*B4pP>Ps#pIEUjxg&#A&_EdeO(-j?Xe|(iFRE0e<4Ga z&~_RmxVVaow&)`3fM(>rXwT?FXljR`_l=ECLcjCPL>qiLx-@?NZgdkm;!n`jA3&c= zoQfZuMLW2HX5yNE!*{1HI7>MxcR>K^NT=oQd<0 z=MpIu{tFG)MQ>~zy))VkZFm5hnGu+bJl0P@pPPXOG9O)xE78UL3HtokXkb5}_y3iY z{b#d|7JtK!F+F1#(2r<`m!j8RMTe9N zq5YJ>gbh{ULTkkv8loAwGui{)UPIB;O^Wri(UHE6W?&V%@3-J>cnCc~|3!b`$e$?$ zTpbOhaVGx#LnG`+h4w`ocp{c(qLIEH>)%56`*yU!Z_uw)|BK$3IdoVWox+PfiI z4sE9;`dkk*utyVIxSd`?8(xA2vIl+ObS!7clA8PlgPYNjw82|(SS-JUHvAEm#4oWl z{)fe|^wp`!gQ_FChzFrlnRt>57vFQ}oXo zccAy3Mgz~5Jp_I$`bDH#v=ydPegJ(NK8eXc|GSV2N3aQP_yjt_tFH@-r3m^!O*8{t z(98@%NBR^R*nG6ZjnOaADfj`+%ndn0yN%I)x?%F){~gbTsab+Hlp$xhp&%Bg+z^Z6 z0CaAjM+5v2UCoElIX;gDnD6>vIW!}U(G1;(1~>*C@GMMt!v-!K;TO?gF`3F-VSC+* z?vk3(d(bs861{H<8u$`4pv`FDN6<`NbwlVlPxN*)1NClT|J!jNDva=HG_s}fhTUkx z7qBwsxG^>P2Mrse_l-t(&0;hoyU_rCL^G0-J7l6bI`Z0R;CG^d_0G-y_rZ}=cve4; zzK-Xk2hU>kWLu6NG#{V=9YDA3d33-3gFcrnPdG_)q9c^ z?pTG2foPE`-V7|EtY~i=riF!22;Hc1Hv1iO%JqSbhvMQ+_(uKa0t=gUPjn z&iP{W`Bmui8)JEU^b5So@BhcR7=z!Vsd}JL=wJ|99*(B+DQt;L(7F5_?Ko?CFb}#b zZozWc1l?c=o}Y7cSjjCkSge6 zYKP8oCp4qI&;UoEi}p!$3Z6&%SyGt&Z%1pWa64^67sscu{CV^+I)^9F)c%bwy3||3 zw#<)as3N*X?nF<_iD<`fq4$3j%LmYQez+x(n*15<0u=^wW0BO9Zde$Na2(pebJ2xp zM{Cesun$e;nP`?qZSiiLh;GZ{2`)@smD@rFYM>o9LL=;i2GS#b zJ~%oG4dChM{OEdgO7_R{IW)6biiXTyk51`Ln2w2C;zfgKPjv2{Mo+vK(UGh|1N$iY zMXWy_J&zv68H=ap9u+5bfZLc*Ait@|5DC{u*>~ z47XYWIJSSTP_v0$r_7q9b_` zf5tblf#p)E$-hK;6z`zi?Do{;KPd1de#r^834NE$EEC?UJJCgZ7JWWj*-+mO6PKuX zgp1|azg##t@|I6c{$_DAe1!UEuqpnFrLakb)Z{Oz4#jlJ+pr#0C6f6e8?{6(~=@X1D>XW2VZf$$vJd4m#q;(U;TOSguqhJU0-% ze<3!RSg5W56!^b==W9G|J|s#ty=hCJoco#6Rj_MM{4qyW}ZVI+>Z@0PxaK4 zx_B?v$GKP@zl&a9BV@86y3dDU5!`{d;#oAn>k~D@T-}G>@H~2;ti$5?CDz3Mq1&c< zt?*s3Gp?fiE|$aIwF#KF)@(F$f7MM*S%mfLgrlRkuKr5(L;HzQT)0h^U|Y=E zAT{MVybnD{&Y>y1x?%V>TL;a=0DKx(qa&}{D7=3AVrj~AV)+wvkzc}+_-Nzs1!NI+ zbpK!E!mm`#n}nmd58gug8ElO!&=FlhBX86+G&C8TP<{{np70-^#ZK;1T}$v-rDA3E~gSO^QW4H4HwkK}IX)QrHB zI1|fcpxiEeKX|=;$lyhETjselba*$qeP2NX{S*@}o=hD=MP+oc4aVvCCYHdu9aEG4 ztX4nlO!;H<=Yc|HP@a4j``?kDqoNpI+c}J^ zBAV*f=$Sqi4Qv(qGC7MLAert?E~1nMXv1@`B5p&c^e;59qFur+X^sXo3h%+?UD*FN zoOVy#ujnoqhBovuK8TmmKziI8R{sq2pgD+s7tDEI_@$XVXl8n#+ix72!P~lqscC~Q z;#cr~JdxnS)!yL#@FP)gbURJPblill>Tl78{)gUQtXnupnxmgTjD9`^U3~AMFRhd4 zTKN}?;!WMd%cw5;BUs{YE=*AZYvE$dh2Nto{R5rT^anyfb)jz!)7XX6Jq^bRSjjyBW*eQ*?-;uq0OtVL6LF#0>1 z`mBAz=T*>-JE56<4DEO>=ESY&^9L~b=l_1=!Vc3O45=xDKF}qW$Dj?aKu7#J+Q2`t zoTqPCGYzpl^~2HUcc8EBU(rQbtzXzxccJY}!h|2Z$AvGOgXrS>4_yo89}08!FnaJj zhkm{kz5fV$eq7Z*oOG4YZQBX!;4}CK?m*vy9}Wn+DA&NSJ?jr-|2wilRHWm~=sVbf z@&RmyB_9qWcm$n_nV62N@m}1AuJ*En!WWEYXdvUF@1oEBgf8CH!QmXJIXDp_>Q9CH z`(^aTo#@NsC-fjGJtU<39`vi#a2$gx(ae+?8s@e!8gOUyxkc#I?#04*39I8xkAwks zNO0jn^9HuSW9ZzJ7#7}cov<BNKLf97rH2? zpqY6aS!4YF-(1*Xp^?G*Xk@+6j;2LdNB5)m{}Ic1M}=~AbO86E9gRi5E544E@ca0A z?#IJ@)$tbhe^)N-Xe|2R;#l4h%fFxv=X@fp_R8oNj^5~E`T$$v1vC?NM+f_$BcB>w ziw^7?ycM&s_L6`9w=@@RsJIK=udics{0+Ua#+b0GyJ2_AbI?V01r4mx*l=H8G__OF zqkAJd@*mN)Q(#=&9cbX=F!|^I)^TA+8J-Lg7R8#B+s5(~>_z!KWX@7Z!PKf)z?}RXilhMfDLLWSZ9wgN#h6hHX zyJa7`_)?z<_gBCklpjP-z|YVrDl{p4^BIm^DX&NC^FABCgg*Q%DK<5mspx~}&=GZ- z98S6k=((^S9r;h_8Ywy@WU3`v9*(y23Yy6s(R1k9$~86AS4Mvp?1G*HLlazh1iy(* za5oOd8>gkF48aL#K$p?QRqDC$wYxoY0+DQ`PFEZ%p}#g^&C zuh7ayTU#}a` zFB%78{qH!La_dE5dwq?s&_U|rux%GF3E%n7U{&s$_Goe^<_*9q$2mq)a0K~cpCdrzK9Ru{cnbbc42?YwcZLYLp#W`DwLnW z2PyxF25|rCu-|u}FSW93!jz6ex8KL;L3i`p?0*l8-fxF}y$Ib-2hm;e4>rX7?}V30 zH)PSIJcDk_jj{e0^sCwp?}k-g9$Qjwhn|G<(6zJ!8)K%mVHdPm%l@}wAQkQKUG%_7 zdoLUuP0#~r5;nk(a1CZ!7e@LX=3)&LUZ0xs0`-+Qq^5j`pJ5@K{C;ZkA0}CWZtv?h zhCuH^r|ywNtauYyiz&PCHEi)g_}#Gc*o|`AO<}~V@pj7Jp_$0`VL0>aqWgXzcEkB- zhEhHXi?}RaO|b=fUq|%BOpNEEFc+usdd#{xe3L1JSt*ytG^~xjb{nH3>x=354EkMg z8QQ^qyatb&v#D34PmL_irC9zA&KpmWs~?Whm> zz)*BfN5}f<=+w+b=Xgb|e+LcdqgcN)*6+ho)PEDbCb1)=vP!fw`ZgSiM!pbD**0|F zpGLP|o}J+guZjk^2JLVYI_ICFuiHcD4>ae{sm!`71dtCMV4^V>KF|go$^EfB5Z#8O z(GH%BPD3;CGPk`x7atT(qX*M)by>_$&^> zRrn7c!W%(RG~--RxszUbT!LD$4s z^tq|%bFakuMd+e_3k_i3SL}Zy{wY@cgHFNqhk^yrhKiyiuY{fl-O%%5BKlQr5!&$w zv3@5y;*)5=84icfv!Na5L#L+PVfMd~*Py}^tvRM+e=LJj(1tgnk?%koJQM5xisj5l z!m7`S23Qykuo*gl9_WcT7|ryg=)wdSj%*!z<4H8a^JrjMz7F+yqPL-uS411EjRtfV zn#msM$@yrkpN!uBBHo6J(e1edU4)6lTsViP(S|Od4gH77wQw{9a2xtSMf8Mhh<@H9 z)(?yI<1wB3SJ6y-96cB7a~})+R7Ivbk1OT6?0q;ZZd8Gto7%0E^%~5*a`N3Iv-S}q7`<= zlK2`r64}AK{Gc1eQ71oK%YXV@HuoXEky%)7Y%sp$wX-I z7!|I8bJ2g}joD9yR24uQE{bNV6nf;AM>A9n&0Jk{N}5GGqX$tRwBx7Hfz61YuTF5` zV)zIR-~b-PQ}Kq4KZN>SXv1HlYvnXL*H>bF&L6`F)1#%)4y&W>H$|Vn56fbI?23t3 zxNtFCK~tIer?5!!q9ZDcc32I|U^6teBVzqi=p4^Nr({7azk@E?5780-i0PR6bJ*U+ zkTUz93-@(TERPe>Z!8&0@;nQJ6wb2gljE;&fMz`ZGbemp8Prm%WgmOLX zM)^T3=KFsK7e4SiI=A`Ggb}5qDJ+G~^&RM9tczyk0dzYJMPEXb&`i7<>sR3>%AcSI z*7&nw3g)BjzKJ)w|2J~s-0wqEdpvp$z40!ZOi@=!0F*hWer%55shvfHt@k9r;>xN_L@(`6!z5 zAJ8fK54|t%iv$-o&;<>kH+thZbVSqQ=L^sgufTS=0eu%_y%2U! zZ>&#w5<0ToXuHSJfX|_eIK#zoG-p9SPh{m{5EpsTm&G&ac6+GyScD|@1wtm4^lGx8GdE+MszM;ioT5o z^ckk(Ni>kmm%_;Npr7B4PEkX2AYIU1F$FzemSXbn|9{LyZ7TN153c_!HTlnNm&3i( zuSXl4^mlj%EJ7Q69Zl^KbZwkPGxG;}f7Z)kV7H>>N@xaJq8aIC+5O*-3+H|`eu^)l zbJ^oc7};xBj`BKm4g4Iv6wUlk2qYIe_eIfdRs%hHyP+9QM5m$qe?BHWQjc-rYP^hg zboKwjQCuAzVSnt82{eUg&<4}~jqh=E09DZr??eL~f-dGU=*Xv_Q?d{Z^u2%C|EBCS zDtzDsx~hLi&;Azwg^~2aQj{m5FQv8UQT-tr_;z$4U!sBij;`(uOiT{U7A=S_^0MfC zZT$aFjOczU3}hJk;AHe0(2M9?y&UUbMIT%p%bU>*?M6rX9ah7$=yofbAy^u1w-P$A zx@bnaB)D+#3`9pZ9LTd{o_GiLNB8w>SP#F&K3Mpg zwB#QodIm>PK7|I*{o1tTm)04$f%0a&Hv@lgF>46)aJDcNClXxP@i{c2^YMfKqSs^( zi|Iym?uw%$t%wF*3w^Fx{Jc}F?~dL#Al5&Mu8nc%;(H!_KCvv`uoj)G&GCc1vHmFf zz>nAh|A%I#*>xeXcIb0G(Wx1VF18WqeWTHok4Nu&A^IwE6em*N;i54gd>PH3BQ5#M zZ4aOiti-~&5nUVKpbcI?7t>WaLx6eE`%9xEt%=34b*z6B7f~LMW3a^aX(=oH{=bZi z4pel`6;iSiZFqfjH@g47M;pF~$whlZNPTWJ)kQG5y)e1G(EIN~Q{6XyJ}lOcvEKbZ zgNp_@56#4J^gJkWV;E6gG@v$UAU!Z0hoh@|c62Game!*IeSn@PpP)zdUUV0Ig-*>W zO!&cBE*#NC^ubKIL&w>pH=_^SjMg@zEPf#iB{-Z=@QF>(2P8Rc03Wy%nRt$ zyqkyp@0@)@g$K-8bc8wbh7lLR-ju82BW#~}=!3cPr6qs1tBEeQ9+-}OG5J+3)-OT> zSc)FmZ(|w!96jLv&By*P%f;>a!wBz1BkhR>HUuBXu{aq2MW<>|fwbh`6MhE=6Ihd* zLk8Cu4A1RAGkXYa?^`sGvuK9?!rL%=qEJX(CG>`R=v1_f_4lGv(l?feqLGh5?|&0r zWb4uAb|LYke2vciF?3D*fIfFRex5fye4fb1g%K7(_iuSL@+vqSYoRCFJ7`0v&=LHM zru09oi1`brC4cq14SMuWz=v=XF2|C$q$R(U9>gJ(uV7vG|G*-wLMqT-W%_tybSAM#!?|O4RH(QVfY+YyFD%W zCnk1aTgr1vrzL+g`ZN}yT(wLX;5}H{kx${ml)jJdf-lgyyNH+Zf9QjMl?|)BK)GNo zbP;vMQuq`W!&UL~Luh+{s1K%Jy4O%d&49yD&a~rmB-O9lf^296xTyv z$IqhQ7nWjG+=_nnx`OVan<^*gG^H7qr#uNO;6`-u{fbWI%~e9+b*ixct5ea7ihFPY zI?{il=~dH`zcW&l9$m%_jYtYnz0L56mwUP&!bb&6Fp#_Lj(8_YvXBjEtIGcMm`ez zQeKeY!VFwfGcEZ?A{yb7l&9hfyuMZl=tJ~m{2JZ&=g<-TjZ3j)?X=_{DBh2LUa?ME z%G+2Q$KrW3ut(~qCI5iKVswfUC%7=e8|#Jb)&bj7ehEDX&SGc0hz8KAemI)DVK>T; zpy$Q`ycUl{f57Ay8Z@B)qSrJCC+&?v{{CmIxDB1-(wL6Tk;R(w5PHTBKzGGZG?2&9 z#WyXw5)F74=D>Y;6`nu?`w^Y<3+UT5dqZ~}`|q~o1>eijldv87;QeSrJK-T0c8F2mgB+>N1`Km5>4ea zbP8TTzt_KrHoO`QY;ANa+Rk3IokQrzzefZA1#Ry#8c>ENVGU(%62JeaQ{lEMhwjfi z(K#A{Mm{Z;=c56xMKiSpoztVSd))s9UaL$bmS}04mP9D?T(*+5$nH2=lU1){tM^;va}5C6hPk* zC6luMn{nX-527O&gmyd*P3<)F9C!&`&CAiL*nl>?86Dw)=(p&>^fS8e(^`dh!!_u> zuYzW*HS+6UtadIOQ5Ur1-spov(fv9c?O+BPz$<7&%h8l>MW^I5EQ}}605Z1@_Z30! ztATdh5S_|qnB4zuxNzimp(E>yW@HeW`Vr`yjYl&w5xs9Fdf!X2ei6E6R-%jT12l8{ z(Se;rQ~!JXJVzV$zbP!*CNxwXozwd0kK2vWeV#xYo`YuK4Rj>y(09fM=m3tO9h|`$ zcx~H|xhBzeXu$Wxa*wu*-_#7C!juok+wn0pMX#Y9tw2Y#I{FDZqGM=-r_oHEM*~c0 z7XrEt{k$;RP6_nBGU)kIGr@)1s2kpjW6%d)#bhec2R=Xp+75+bMWgGQdPi(Qv_E3JdRmSI`bWL^HDsE8{O{f`8iRM^8gw^gy(a{g2c4=)=%THUX5e0Q_Y6h{HWXc~3B1YuKivylj%9E=md1+mwF%j--hyW;rqR8v?-eE z?r2I!ql^ZE z_#F)(+x=nxmc%NQE1}!)A#@~T(UWg78t7s)#hcJ=yc0{}CA8gJx`lvhqX$#FZi%$y zZ-qQSg%K`57u`Ep9KXb8@PDy9p?jF)RcMMgp&9%HKf|Ng9p88$1a@tYw3G=<{w-)= z%X)@gvlh+x)&v*s>!av?JdVzNhF&4kvgnBGqYrdOM?M&f;^VP?F*+3+(M;??-w{8@ z`V76puE>Q3(iGhli4I)Y;7FX$5%@H^uW#!cMpyw`Qm%ofa3VUlOVH=G;6+Bb8{Iuy z9tyi;ADW>|{X@pGp;MY49Z)r#O8+UXx$wqg=v(dwOvm5QDakn?jO;eFfvV`D>JaPu zpi}S|8qn0}9CV~h&;w@``rJA!jJq)T=YP*~;r9C%eIW0^aO16LxhlHt8ld;JM^o1y zYvBwmhI{d0{0n_MKKO75=wY-x65WPl(SdEo7u^2`xG?hmgMyEut9l%Ipv*x>{yG}S zHgt~nqf>Pbz5fb&-}QsT6qQ9^YOT-=w?zZF8_h^JO!&cr@q@wW6pTO*lyT_i6VL#k zLo@O+df)5l%Vsrt-@E92o6!4qpaC2}mPpDWwBsY_{l^Eh|83|ODvaz8w1I!nU6D2< zG?WeP=q7XuZbmax744u=v?vZv4oCdV6I zKpR?!Hn0r6Z#CNSdbGohSe%PZcqbqHI20+@7#@DDXxgK}FK`j}=NgfgG9K3^;zg~; z(vrXFybWLBgH|KcQs&`l+=kDL3LUn7JOt7X@1wpmzCdc$;-fw{Cj9Exc5F&H&)D#? z>V}0WZ@`&&6xn_$i9zGi_&q&-K1WBi@aeSV@AWQ07hBHp;RsE~a+F)(9r!qUQm#c) zc@UkV@6k-1Lbux)bS?cCKhHEFY}YKvIl#~VTzD2&L{r@mo!eIEiFOZqU<|;~_#`?- z87GFR$chGfLo64GmO=xp7|VBJdCK?1`YD+F_rF(i;oI#!ERILf05U%lj?i3aeJQ+= zIqiVAQ0_M=EoClF!C8L(EMF}6d^6sRnWm(r%%=X9sUag9(CxZ8x(AcL|Nk`?F2Y~Y zkzB!|c+IpBSa~$1ozVS#AG!-hqDSuYcsnkMA8@ps%R$bpqc522^YmM zE__+cM(6A;w81U0{42WZGfod3UV~0qzGx|IMY$$=vQ0uWIuD(~t!Tgp&;k64W+Lm1 z`2N3XM);sO+HfN*f}PMzj6|noA)2AL&;~Z4f$c&&-j8PFNAx9i2|X!qoEZWshu&8| z+G!^H-`8qCDtw7NiDux%c*Alupbyd1?ZuM#1KL5(=fnMF(bso5)6is)1{N9XcUEQQO^fDfYg{eq4(;|pQ#Z$>|_i%xAv zbRYxJxgU)VG%=40=V&!Lhg;DIbIuM^a2xtyGxWYLXvX@Z9XyQ&@Dh68YBU2|(EE=@ z&tVD5DKCaEI3=-?`@b_6<*1*6RdEvu`Re2I?iH*`c-zZ@P&M@Lo#9Z{25e>a+ehtX6% zg{F3P{QNyM(A}7hm(bmo_m$92bu3T+DJ{8p8AoGj%r`fj*-g>8UW5j=2Mypybk+Zj zE~*Uk!tZbtL{mQuT?^CD`<9{4t%>#9(3AFCO#b`dKXKu<`WsDYmiZy#qG*Fn(3Ez^ zvN#o8RGZM}4n|MK`irrgbwLOuKN?6CwBy>C%;W<0zaQL9MRMDqUouCbBc6?pWEDCk zyU?jPj&83Dv3%9S@c9jxPJJn~gO<^*=z%l{4PaJu-oiwP>~$*qV(=Dv*1wA`!f((K zo{wf&6ka|#(8ZMxD`Q9W{%6s*;e2e3%dj2(jUHev7KgQRH#(612`)_S6W9Wm#Si{O z7ggGlkePhwVylEMvS#Sw>Wkht6V2RfSPQpAQ(g@n)yDg%Z-YL!5{F>oD=wV#=C6gh zeGt9jMf9b#1v}#&w1Hx;rzQVx_|xbVZNVz|HM)(jUm5~xfCkbDv*PpU3Aqr>@JC3$ ziIktYFm-8fgngMG-KVwDk##^n?}O<$3hnq6bZXv3*Uq+B{st>hJ{#-PmxXq!V=?Mm zp=)Cp=6C;3;KIeRINtCny6ApGSNXNeLqJ8)xxNFPyNA(~k3j={1%2+V=uR}yQ)q|( z#&V7o;kgo+-TmLl3+#aI=N{;TW6+M~peN%p?10D7j8t72?r(wK_aK_$$Iuh*MfAXV z9}Vmndf#7Y#;$&o{cndwxbTL$XeRDK51uh-gDcPgccF{#2s+}+==0g$3JsP-+i8e) zd_NlKSak8uLf67FG?4e+V*k4>KBdBr4x*9$fv$n;R)zg~8~P2X4EkVYwByETAU$IJ zaI8*w0ye-cXeLuvhhJGKgidK|^gQXkn*Cp%izle?KzR#&;6pTkL+A+3p&eyh6TA@} zQE{}vTCu((+VF$uoF~xLK0SWE0Uf|@bO7IYgB@H!1Gw((Fa?FsKpIBxLmwQDb~pi@ zlKJuTH)H)LXhy$9x9?drbAO}lr@Rx&IneeJdAKlu;?bJu6tqQGcRzGa$D?z)5WRmZ zI>N8e%>0Zt_zzaZZ10A(QV*@~jy^X8ZFfA9VgCOgE?iXW;s=Lf`64>f8`g#gZ%0#J zH6X>d+i3YS59r2F%`C&|_d=^c8_V*kB`>zxi$vH$j=!izz5A9$yIu*~y z`jzM$Z$=mGA#{Y7(7DdCE(A~>(=dF3G9t` zYzQM+fUPONjr}m=`{8%52jF7LU!fh2+8CUU2L3v_W;US%`wq?6@7M}+e8B#{lZ&n& zgbvqWTgo?W3X85EHl_SDx<>Y(b9WA%<7+<*<$~zGuYu)pI2zDW^yRh*-4#bM9ZzF@ zy!N9+`108Lqj2LRI57jirh}#^|CX@LN}&%{M@M!K8psgLg456xzZlC)&^cd;ejoTG zx(}VoV|X?Gp5VfiT)`TcZ)+GqCv=1pu{*wuQ}KUT2`6t0i*_>>rhFKi;FVZzusw9# z3tilU&}}yn4QvUzSQDGLxSNX~(bU!ZI2@Hju`K09=*ae=i{~3Gg(qVDb)UpcVFl_- zMZ2N{n2yf<611InWBq1i(I!&9ZAN>W5><{#3zk;8Jlr=)P;oayb^jWyS3EuAhpTUK5`k@tg5yxTS-QgFFmS9!N zKcG`ma8LNE)jFC$16hSnw5re-~M#y!{= zi+vI1d?0$@3`O4sPoq<|0DZYEi{;hP_tCYo9i5V$vHm!^*w0{3ymlY^zb_Yq_Ju`s z1Wozr=ym(U&wQ28{off!;s|uNTtK&1*)PNM)zM5fkB&p1+ko}(2s*$52f~1d9bo@E zqDfS^-(N-N@Le?WPthawJ9NZ9pa;uu=r&3{7&=VH+LSw^^|R4Mxf;`PH@X zt8ng=NN{0A8*~v4MmrvdHuMsDg1v(_xDTD0bJzhZ9}4$RLZ@O8mccjB?RE&=B`47} zlIL*PRrS%emgvicBYFXSeXc-%%>Eop;{`N;!bie8q7M3CAN0QG(G;&k13ZLg@*>v4 zOkanN>!Wi&AUYXKxc`@PVS@+oRm^xatbwJ`-B^_R^JpM99Sea}MMro)`c3E|G?0;K zATOc2U@f{ve!;BxCwe|y^^E}}_(6jU=lntRY#)W5(KBNGYv}4UFdxS(SbY>%S({;&ucYSydT{eJ&XqS6WZ|=H04))7e-PHeXCVM zJFbteq3&phL(s)L77cI$cE`nd6=wdP{qLf=nhS5tfiAk-Xni^Kz^RIM+y@=ev*?;x zga)t*%k#a^%>MIp_&oRNkny4kF3iB~(Qasj z&!Y`4L09eDXv80(N9&&G{^%hz@MGxW{T0p7RlkI}FM(#D5e~yvv7Fe-g>SQ6=!m~W z12`SMjMXS#b0+**&<5z*m=b*+4fJL79kL8(7RW z3!o`3hu&~MdSX3+&iPVwP3%LzdYwnN({<;!*8E4l^> zUrbB>ODdJoDcFn#b`+h$E0}Q6Wc(u>G&i7u6hj**g}#pKpo^&|R>n!_9DjtajUDK7 z8UG9!N<~+D6?6b?(Ez)}`u^zJ82=~x-y5e>;mDSw9dAQBIE1G3d-Qzx8=d2#m%Ko{y+l99K1(wHC=({1$U+n*?T(tZvE#)VC3Wwu>zr%O6ljyc7 zb~&t(vS>i}pxbgN8t52wPM<;N`eQ7D7tuwU_X@ub$Q0JWft08J6Lu4Sr84{|)EtZR z!HekX-HZ$H7i@x){|&q2ORPcps{g_W>R?^Uk6=A~7ai#(G=OUfuU|&KA))QQlrc-n zLfnQ8g9kq?*D#iS(3j*nmbFDGRiBSMvSOh5NXDv`_SL z^mRHNP30nV5q^v|cmZAA|DcOEYql)O#e5r@nL6kJ)EfP~S9CO1pgbFMxc_%@;r{#@ zJ&689SMe>`L&vqz1|C2g9EEPD8JLdq(7F8(eMkI^zu+bGxf9oANxmEYLEFuqBTMp} zDT&Gd|DzHYo>cX*74}2tbRFJnVEPTAzAt)E%|b``I-25l(GhNo9z!$q zCmL|J8$)LQ&(eJd-dOzs9RC{Ot3+8T<=T7iy*DL$hLFfeMkuaGW=0`JR3c49gF>OG zj0lyz8XEegp{?Kheb4#pbB12l(vpvgQgFMs~Q185Nq348^e z`6uX%E=Kd`%a+>5_0fS0M3ZP7`oLMyr=oA61KWr8{|%a~8S;ng3!wE%NeZq>tLVV! z6m*2k(e3m$+ToGt&uGV2UKg$_9&H-!kG?IFn820j%-=)rJAvk0@^=c(^x6X1QU_2i zY(%|38p3DL@U7|zKjwWF`E{N?B{=t=)@1_v)H?a}*L+EvR3x)eS;H}gj!(sR>8o92C z;7lw<{cXI7=ck>cV2Cpo4r^Qv6V#idGrj|z;oa!W#-kyfkA9O`f?l@^JsA(6OK}{p zz#q|F^D8>@j737d2qq16B?_Ko&Ef~0WBqnC`R>6AxDZ{6_t2B^AlmVlSOkBL<}DiT ztA!?AH*~v>L9d^NPH16K_P^g|AE&_sWd(Y&Z9uojyXcHQkDf($#RV*nR~8Eqsf`Kh z9ndcfhyj67Qm( zp-gBWjt!|FMjxEFY*>n$(Cn^^&a_i(zY9GtCgc717&?JG<-*LXp`Rz)QgB8C(V0$& z^+(a9T8l2oKDS4zM8ld1XvsD|G)4iS0@Bz9r}bo<@`P4Rk3#L??6vU9xkS-S_`* z6x_dQ6+?E`MGunJXov>I_Q~i>=VDEK154rsOkmzhA=_(URqCD4eLn;3Zxg!94#)ae znELhq43)!ou>$CJ>4Zu zbW_!^M5QsAEd%d$3T619VYLvVp=jvFU|XCK+Yh3lJ%J|MMfAG#>R~Agq7$fseq*`? z@5a%Xz%S8Vc14Y_BsprZ|2_L}qM>}UO=@&%-krv6>FjOA?U7n5}nwa==Fy&pZouN3XUja<8Wa<^cze? zG>f~Sp_+gu)k1XNzl6^85O%=7(F3Yoli&dKx{0y=4Eh$`6g_V{&ri$WG$dCAG>h-S ziuefnmfMaA{0U9gYnp|esEUTPH`c~^=mS4Q`}ql7>s-x4(&k5Vq7b^2l`!?|e_be; zB)y{}(3wm@Bl8$0@I`b0dt&`Z^g%gWgygG;Ue^TeZvcA#SaiG2LUZT2Sl`@&{qMd$ zN`oW&6`=#Okg+ky7A~5&O(=9CHlaf==ER3`v1`DGPDZjN6(M)=&otq zDjC-L0UB!2@Em#$oJK>LsdbofS#(L-qoJFGshJJErBhpzE8Z9>0|(3ABJ^!kNZ z1>Zoo`S~OTZ_Lv+Jg_dh-v`9{Ty$oyqoLl3zC^x8lk^gr-38l)-F1xNTF`oL>Cgprp=+Z#tap&boElXe_>{eoD3360cF^uFWK zA7gvkt>OB7=>1i&3eQh#Mei_-Dv-d(a61oso(!UNWlkv8!z|;6V$VJ3ZXBH-q->SaUbk~_hBVGj4n}@ z&f$wiVRWe~pi9*m&HhQ~?s^*C74LUu|2wn)(U1-QLPM9SOUQ}5=nRXYxltVrd1thP zyU|cCLkI8%noIkmr_k$ujP(Ltv!#CCD1|1LQ~a-B6-iID#9X5gLyUXbF0*yoTn+cj!+*Y2CvTU!A1jNGhQpG(iuV4(NcU zpdnm@eQ^sqpc{LH`zqiq)Ei+pT!3!R^Jss6paaj+GxS#i9Y`H?DUuy1IO5UhL9!4H z=?l^K(Ub5b`ZCJWD|Ao|9e5jbpuJ=LZuE6N6%)7;{f6`&I+25D|NkK03;6fndWVrT zLI*Gaz2JT{OP9p%YW8NeY)KxLt0#JzUrf&Dv3DN6XO}97EUgh5=zfbd#CYp6H``;T%4h}bTM(c}XeS55Dx--nU5+?Y(B|4Bh(cLfwo#8?>H(o*4 z`g3$?e@4%ZTth-c%3((8J%_OWE%c$mko7}P!l~%~pNqaUmZ59;Dqe*<(3$N=bK*C2 z$*vq4W?BQQQ16P(a27hiedqwcM+cZEc~|%jR}o#~{^$drMsIjC)(@h|b{-RW<*+cI za%k2!MECmuY>K1Me%?UW`eV$5-=e$XLaZk<3=c1tE6|rvE_6ou(GJR^k!XT$&s))v z4@K90I%dO_Xhhbc=fYm}L8s6q`X!oqM2Jvcq#yqNKZQzM&;i}=51^4)iw@*Gn#GsV znUxzElJageS5Bk3kmK$!fa2(NZIA;dZ5}$Hjp%hBqXRpOH~Rhm5(Pt)XH@v0DmwF) z=*W9p&%p19ps&@b_k{L&=zS~EB-@HcdSPlO|2T<|8kUO_v zg8Be#fe)hFb~k#y{D>}PuKUCHg?dQ}uHiT|n-`+lyER^raZwY@CBeU`4#(b#$#xp-J}>I?$X`f@RS2 zpgB6A+prt1K$GnfHpk)*gc;w3ezSTE?RO;-nPl3l6b#`(bSZv8lP25Lux3TjfmOqY zunmsF1NZ|rot7=_C#>{f_)bQL0BfR4(H0%hQ1pAlBy=FF(0#uVo#6?z-(S#yUo|WAa}#=f6-@2_ zmJ}S>P&8x@qWk?tbZNF@0?(pJlWBH1vdg3Gx1mRLGS**??!!8?{}1iA%$$&nx1s}o zU=I7=4xgjJtUrLxFz?(D`f6wddZSA;1*_sBbVeWI3OtI#aKgjkzOT{iubvkoSp==u zM|0s;wBKIy$Z88o8hr37bZxhzA^sAL#P8_${;TJQ2e(0&s5d6?UNizru_o?Bm*O&d zU(p327rF$+(QVTleQ;OIj-${4-j8~dmK&54S0k5e-8ymcpeRT+Tt*P+-OII&>5FOJ8X`wWf!!= zA@TER=u)mg_xW}-lBdzge1{%PzoYk+SmM&L{~A#+B>m9`jzk|c5sk!b%z{gB96lM_ z^E?*TK7n`9-WXk~m$3)##SU0nJ?*qHh_B&2B@(MTRbbL$&4GXKW*!pq|B!qor&)tiDBj>OqG9gRS) zj?9;!m>wy|Eq*ZLl+% zj4N>hZbmz*u_D~q6J4T-XmU=+y0{2y;(l~s*;a;0W(SZ&-qUVOWa}WH&maQ|OJqqHBEh>M)ZsnCdXr`=b$^jONIaSbsUzKR};z z9F0iwM+!A4T)!qf@K*F}9)w;v2OYqZ=ssQ_+uuQxZZA5}oX>@&DvIV#ORSIGup%x- zbKwK@`p=MllWE^k@In8fYk1AtaARxqfitiSEI_(+6!Tq6-Oi70zb^a{u@HUw^Nmu!jIcMFm;w=L)v#@>PUV$L?Rb@UKGa!Rz<(r zbVjqgH~N74(Fv?XBf1s~<34nWe!@~bKP}rU;e*QP4V};j^hVcuD0*Z*gbs8in*BS` znH@%V&tKRQo39Hw@i02D=dd!aL;F7y+rPu4C*02z+!mM7WV+$iVD;!N=$Z|QPKxad z(a5}rCh;55{phy+K7O9_wXk#rumSC5(ffwJ#{M_C#?at{XQ4A&g(lH@G!om;{_|x z&~3-k_$wN*n_dqul``nSYT|6X9Zk9mX!aL*BTTFx`rwJ^xiSrn=#pf-;01K8-$#?^ zG-L_1!D?*Fyud;i^7KZ)kdZ)iWs>)#65SRP%1 z=4c0fqodIaXP{a8M69nzlkx*Jt53%Ew2h%XceEUOe{*yo-O+7)FQ)eYEDGIdSb<)6 z37vWRrZCb%XnQlXy<4mgM{{8cnnNpM`v!CZJJAOnjqN|g_W#i9bHDAt*?*-dnEh?g zH5wef8{f&mHyrfA)i;Nbw?zlk8;!_FY=Sdl{bMxrXVE146SHH%Euo*1=zaB({3mNE z7|PqwHM}=oFazBUD=~quU}pRT&4oj;{a5sXdAEifDu-^rR@ecDq5W<_lXWjTpg%D6 z=l?Rj8)kkD8nWxr5tc)@Uo-S8R7Xr;U-V#^f-P_+_P|fD6PA82I0<`EKY&KK{I+m^ z8*~Zo+Q$4H*%TT~js@rg*P+R{1)b^V@$=u&>+@|7GcAEGMH6(Jc0muK8EBS2gXYLC zG?HJTk@^)qNw3_I3?ZqqBiz^r{a`%W!AkV(ejj~Zeuq^t-}@o!+o0DELkIRKx|FNX zwcm_J^b|Uwi?RL64?_PHk`xSeCv?s3LPt6uy>SIL!dJ02Uc|Lnc4v4w9l}!7^Xv*s zQXd^~b2O57p}S#1tUruKbQ$`bpa<0ubjH&$ zfs4^KeG_ZqZY+|1fD_%{4rL+Ob0`MHLwQt4p<#$paa@+kp1skoTK4B z{1r#w-G@TboI*pE<#4vtf1}+L&Gt3e7eB$&06z_e4J* zj}37Z8liLX^Bl**z{@5n_)X>(^oDz}0X~B+$r(&w=HnrWilbTH99{EX(Ya_OwxHj9 z&Y&}_a3X}dKl=F$bb>FU2U+qc1y8W6PlgYwV>#*r(Sa?D?VHfhoktI%GN;1z1JUe$ z6kXE|n7|{^ztH<`I2}IkgHCK3KIHyiLt!ut<i7R=Q>exVThMdhXY@fu zzR8yQx8NI~9dAd^h40ZBW;q`$iw>ki^d5BJi_igVMYr8g=+c(>He2dHujqtHL;W=c zBXIS1;f89MpneA$su^hVyn#mI2%0=sd>_8~)JA7~KPK=+G~|2GkpF_W;k7@618P)s z{SWN_CSE{;2S<$y;SZsW#F^B$pfhjrV|Zzd#7@+=qX$>M|AlNHh7M>GI*y6Q*Y>mG4dZKT~ zk(dQ%pt&&*z3zGRy0_7!`vjfwU+DR9{iX0tC|QYuA!&)u_zq0q%vgUO^HJZ8zIM;X z`fq4QSN$Ho@f5)Z)a#;4IuU)BY>D;HG4E|2a& z2lgFi$A8fYWy=xl`t=9|z5yoW|+ zHyYZ*=m1WjOZHQ&XUG=r%Y&Sp$+R0NWaEO8XoxGJN!ScMFownUsc14SL9=)@rgj55 zu+P!^e?@a8TY9)IfljC!49XRYq}iW6)&I%(2iI?k3J|v_Auj{ z(2h%^Gpvnv+y<|}Zt?RzXz~q52QUlme>tXp|L=`>!Lj(k@96f(b!C`ICCo^@6&muk zXv8|A1MY>sgodC?FgBV*ub+i3$pWl|OVP-Fgh`X@6a|mOOjm^&mq4?$Et;Ie(FaaN zb7T%S#V4^8otT87{jfgH!#cPJP1dYehv!wjn*HyCyVBqV6VNPv9nH>T zct2*#nVxz_Oh=dGb@aL;(X?D)ASE$%lA;kDi1z;=df#*L^F3IV`srNke`lKKn$Tel ztVO*K*25*Seh?ktRo8~=TA~jafxf)vVRhVsRqz+AfhBT>>-(VBKZxegvsfCpB`G+P z@6mx2%9Eb@Rqe*;3@4$Xd=~v;@hQ4w8S|#6zJ`}T2hb1u<9u|DFQN}Bk}urX5M8p7 z*bFydYfSz@!3Q_VpPu?^H4qK`Msx;Wp${&2U3%*0`gZ7mAH-X{4xLH10%6-$K||gX z-Bpv&0WU&xWn*kVgA62@_6G$|vijGD6RJ1*fN_|>7tjIjMk8?n{i1Qh4Piz-(F1G+ z8nJ`ugZ@I-ylBCYysgj~-->N<8D8o8{~HRqY4`=*pIL7VUXQky$5*g1Zor?=89sYc z*j~G$`_Padj{c0UdCo#%02R^mp%!{RG`F4Sr?sWvfzTOK+YLQXrlL1I8tYG?+wV2> zEZ>1X@B|vczt97zKq3sRG`a+pFm>{w$=wtC;iH(e@GAumgf4~CQ$JeW72SXy9Dkz^ z%v2;j^?x|rh|X*x8uBO56K)&2)+f*}EE$TXr+yeMgf87M?1fLD$$F_M``?*&FBZ=B zQTQJ9Dd^eWxOiCO-slXTLT9)Er{WGY0xe2}2n;~`n~HA7W#~KO0D6F(MhE^a`i@91 znG9K5xMT=bYjg(v&WL0yCi?w<4Z7bCplf{z z-4*}E`b`zWKue;Lu8pZb|J$5`YuyV?rqO5;EkHYZKDMt%L;ne;k_gkOr&kOU$c;wq z2CR$~u_E?I`&)=6;|u5nH{lIQ3i~NIfFI%onJa~v=SD|b7&Bved%6p0<|yK^%nl*GNzOGTd1-g3W7&0pE;9rVAQ@88zAej${Q5jqn&6iGsDl zgR5bJ`psx)M@FZ`&mW7vhOYf?tcgFN4=7bT{2b5_y?+q)#|dcUj@4%W*PxKGP6%CX zG~}(&4mzWuz6;Hbd(e|^KDwV@jGu2szv+B{9^IMhhKb}s_kTHbiR#7rt+C!eNx^+P z4$anuvHmK0F6>5MHWx5~x$1=@x-z;OCZHkS6FrO>sh>n2dof=vYK!(e7){D4Xk_POOI(I5 zSu*V$1=k{5!?0Er(SdY9M|wLtkTJ171D)C9XmUP}{s6KAjo7}}{u8?9*&Bs^ZbAoA z3GKfjrhfi!N5KyIqoEuY>toTGPC@tiOmqz&L37|abcQ?72pvZU^h<2d(KrmC1o|$h zgI;$Vdf!+q;r^dT!3Vs7=D@pH6;GnMacz?jneu1{ouWh0`yN1NGzZ;1OR+4zibmi# zmc*aXpNg+*8oo0&z|_D0JDh?S%*IT(9_{E&^a1R4>+d&X|C<#1XfSj~(GGq^BayXvIBH9vYuf@7cxQB0Y<~d_=^peP z_$sz%ZxP-R<1MFS&t$7?BQ1UMdhBjxLkX)6~j#{B1?HB74q6?$XN4G_f zL@!3u+lGD$qr0Vcv`cgpa*nak zXh^?^pMQ%k)!*^++?~TNDU2R0x1a+bi(WSiozT4{VDLXb8G}XLV)&+rcUt zI^tVsh_ZJJ?}F>m{aO@VyNa=12NTp=peNd3bZJJS5u1rV;Bj>38_b%@qibBCd&tgGXfn1zI~a+M{GnK1gLb$DeQE7SAAAH2{defVGWH1fWk=h~pg(*z zLGMqtqTt%~LPzufx*Hy{PL{65@zh`FnV$Nci=w?kD2Jj+H4`1+d^AF9(1E{(F3D%H z{yn?~dY;=t){n)y z)L+3e_+2z_-*65zLI-ju)^`7|px}Y=1(w4M{lZKtV1jyWtdBj>?YI>E(s~Sg;&uJQ z5{^cf@CkHDo<}FPKDNId>mNlAV0NCLc7%dS_+|7Dbd9dMJ%spLbgc?R%b{m}!&q;P z=0<&yS%8*q7)4F2&Ca3<}p3Lw}&D80*cW9R?-C%zM$`0EVFtni(&63Oztx zjGymBlkhB>ocZqv_tixQ)D7L=x1$5S2c7x7v3+{1FGeG?Dj5sw(9pkwK5#p_jZUDs zk#TUCVLmkErOygj?`}7PCeHHA*l|cxp5Lrny=7<m#wN1?l7D(=D6=>ETFTHOERDY*8t(e3s)dZ0XmK6pEt%^#uLbsyUCF?75BfQ2#p zgW-rRhhEkyB&i)@nq2WUzG^=qmH(W*!kb7o^8}CP67HQMb z-LM>u#H-i2C~Z)}Z~W`+7h>`Q$e*2J8%!!JO#L|J8CI4vWr3Blr?}er!ro zF!U#4!w=|M<(eOEtcsr9ozMs0fu0X{qf0Ocy?!}*0=^sD4`2oAXJh*{3&MRx(WPpD z_M7ZS!INt=`hdx3XlJ4qE<$tQ&Dg#LOHuy_{f6^%Y`fis$x+FdIheNK#7JM)S%i^o(1COK0cg17Dg6MXu8ts8b zE{TS87N#bG-nTloZ$_{C1kHgXSla#nH3c7(Yian#QX9?IfoN7QM>{%zz7x))+b+lB zp`)@`l6oyPDf^*IGZvlkd~{&1p#5&cI`}6hn^CCtL^zu#U@Pixqmjt8EZ7E{P+y3K z_z;@azheo^zdW=zKqt~4ZJ!`sZlLl_B|h zqo3c2F2QJYhO^Pv>jr!rKf!4@pjr> z#~}SD(-u;2l4xY=cBLXHR!?h3L3e$ zF(d9p2ecpkPIwG&bpL-#!BA#>AwBhfywpHL{{fD}Q|Qa0>x-d-iP(|)bi50{Kxf?S zrSOx`NZd$$KQ_i$FQ=ys&A_*2tV+Gcy7aUeI24mJDf~>qncnwm=x8Cj{WhcR=g=Ac ziB&MyYvDJUo1!xugNAkndcdqh&xdc&wa>afta))X0!`2fwqGCL|AT4p3&UQlfuEwG zOy3Z^CRzZ!t}u4M66kqwFM2@DN6(2*(bw^DbRa*WM{cgy!`t@8Xt~#uVJ+&?;Ek=( z4m+VY+!Y;(T2!LI;vOO2JV5 zfUbGkTVc&hqLHYNcGv|S@gVg2@o0qRq8&aS+h0H*ycMs;gXjRxqSs~F7>@e;BW{o5IR;9RVZkD>?7N9f5|eQSu+ZD_|6(F1HLI`Ca+ z?(9bgd>&nj|Ij76`rWY91>a@=e?mib8kXS|?}csnG&+M9qZ`l}zJnx9+K1@OFQM;@ zGTXv|(i&as0cgl)q1Qi&4rDi)^=Huu|GJI+KZ-)y_Aujn&<9UIlk9=$8g!<+(FcBu z&LrE8U_QKpdNDKtWiS<4G^bjj5gmv|@GkTqTa=_=GCYoUxDFlp7Iel3&=H?RNBk3- zWdEQ^Sn&ODT{$$wwb22zLT7v{x@+!4`A*TQnt+oLm`h-UQ@ z(HF5A_093~i)e_i*%glD^62NS&;d@0E@3(_f+?F7#2@=atc=O``3K(Fr|==F%>_K1ty#3Y9SJ;}EjS z(dO8I<{s!;E=AXN9opeWG}IqQkD@Q7@8aiI><&4RA6<$PXin9M?JY6&_kX*_4{k@Z zevGd(ntpvnQ-+G4#IHSOfcEEqn|;c=n^`$=|VFc`y6FA`QLw zhK}Z-L3BoyV!a)@ zulu0`m>k;|qT72ldi`hU^M1wx?*Gh3!Us1+>!25OMIU@;bP}4BkDxPIgAQ~ndZZqS z^~>l$3LFjB)kNO`x1f=|2R(?UVbaj7qTq->Kp*@C`k?R7jxNW~3myyGt|B^}isnqV4_%USTsBDN0V|onga{b2R)7s zY#kQIy;uQ%K_gM*MChj_Hl}_v8tDb-M01@C11Wlv{ckqcp~2*9jn1GGICOL_@J3+1fD`Wcn6KdG4zYV zSu_{EiS7TO$(iYNSkoKP&nuu4X^I`OJsQEM&=c|{G-8|3rAwZo(1SvTGvUF#&}_XA zee1o1p52Ggnf`|kwBXsWBsI~QHAEkD3p(>&=npiLu_Dewb7m8|%MK%7dinD|6kLLO z=R!wq(Io7J&U`pJqkH1#_hVD)bEEswmrR~7!*9#AM?as9op2x4$0A?xi_zE*Tj3h4 zVpjZ*LK`pmI{eY-;ph$Pu@U}+MxgRHA=JIm`f&7n!%{Q?Z=pG{3rpi^^q|UqKD=9c zpgA%FjpS;~X;yBh;EX>-v;0eRpZ?$l_%E9EIlc|aSQNdkG`@+I(X~8}kP|ne zSzQb7#N3%qXp%KUzeDyzBl0jh;CHY({){d`ssAOz4bA@-KIo5bzsJxAy@d%pjU_R|Pa&kG z(e2kC9msvLeI=S)pQCG?xEOw&uK^CAz6ukV_2=}||1n!CNx_CM&@BHGopGjL!V+AC z&Y(EDojOHtLnAi?jm!jespg;&cq+O%wts;}_yYQz-_ZM$|4}fTbN(8vgJ$(0be}$m zUib*Q9iKr%_grj$AC1@{Onr++b0_z2p}ib>e>?Of?TrrP_R!A%|3%>r8YYH@v@`L7 zi|7gXXKYWq6hfK{ZLfgtit6Y~r7aqP+hhG+G!paB0lt7G@MAQ>7cuqsfB&M;l7>RR zhY=1&kILcb$S0yRpN)=uKBjgDI^$Q-4nIL7_62squhAp8-XCGW^U)<-f^NU3v5fnF zCxyCrF@8|~&#>klaS82HupQ?AEBqSpKy>B{(3jO3bf#}(0zZrXjt=y?zr%f%(WUN# z4s<4_e*b?71v^-a9z5@(XZ&IG0Y702%=}L{+uNesYXlnlW$5+mu`KS5^*_<`AkV+y zC07#N6%Ek|^!b=5N-lKG-jDS!(IYv-<=6rGlIepEa0mVxZAGs;ht8BkHZ_17&=5C3bEO+P zp~2VyC!(R=gkHA`9q?&1(!cuepL@d<8NvtGp${q->#d`G&>4=3PD2l##ppq_2_3*e zGy><)8UBYx^2UtWQxmF>_TL#DNOBYfvv@lC8h#cX*@o!*=z|Z(`Zs8Yf5iHAnX;!| zGNrK=?fucEdIH@=U!VuhSLp8f9~#l$gUPglnL`8`qifX}{YEqqeefgbNS}@Mjp$52 zj`gGHfPX+E@h^IR{wqSgB9^4y8jaYf*uEH3|NqB23Wj7Sx<=>F2mFI}bXAtnQ8BcG z2IzLY9nFz-=s;3c%*o3e%p)WyQoZ$Sq-3X8h`=TLA4>(JzT5AE_N$$=(gKJ>cEXr$Vp{oNKnABl#1HderOXpWr3q#gW4!3XC}4-YPjc33~! z743Lr{CpaE-(vJZug3Z|bj^>W5Be5e`|GlY`-`9vtAS3ieRlr*Q)UW%X)xpi(GJF- z$?^dDrE(T}<6^YKm*VGdqDi|I9mrmEpeND(enuyj@ya+5^tvMG=T)yvh6|d~P?3fn zSP5sLH@=NNcz^Vp`1xh5Onb$vvZsD;r$0KQfoR9$a3ns2F5M+e;6GR$Z_E)U)+tHB zmqK53%$xDon*7O}m3v=2Jq;qmkF=>17FDW{=JHy1r}7hx5A9zAD{qXYaK zM{`?Rdd}>rzmYfzJqfpCLp&Vod2@yAEro8I_UOO{qYoN^=D;{~siva`)N*vjo6&(C zLYL?S+Ry)x|NoZXWV$AV{2H{wl4yu3qRCPZ?YMoc4@8$}EV|$4pxfzrtcM?Le{20x(^aAXE&**{$!iZ~Qf_e)yB7(F`y^g;Eb z?a}?)2Yt|8=)jZc^^2mburBrW=yv-twr9IBtbP6<|Nb)tJE)7!xC8pY?y>z&bcrUR z1APKZ;%n%2N6>+Mi|+S-V|(74!u7>56(RKVj%bn&#nj*bolC(JY$=*l%h8#fj{Xl_ z%geETeW8#WrO}RWK_fCKwvR@S-pA2_uf_y!M^Dak==DEh>i_@xhk_U8PK33tgbC{1 z(Dw1@_x8o;Oy5HvdUST(19e;`{u;^yx5d-|(CxSw9r^3%Qfx;bbOcSZU(oBXE*cK1vS_^-dS8EZ2}VX|6lMRrmMdwn zqh06?XV7fEjCOowu`q)Y=s@eBCt)9SX~v-k)+4wCH>10zQ}HmNiRhZIM9+h5=!E_( zo(wl$S0X&P33@X1MPDML(2f>jS=@-;_+@O*R5IjB8FT=((TNN|2R(S7k zMkjhhvQ)UR7CMto=#q>?_vd8vC9@DK;5u~8Pof7@rqbEd+F)sP;A1d>525!xhpznx z==Dd?f&PaMFj=}xSd(Vx1AC*%H4+`+bo7DGpflKoF3oRfNHdlVGcJZMNdvUK8&<;! z=r(-?9njWTKaLE5-~WpZS<8h8C-c!Tf%H&O*ULPK%^&Hii^vZsDspgP(<3GHwx8mU*&$m~EPb{-A! z<=9@VVpxjSXheph1DT61$!aX<`+pM!JN^uP(2vpdN+EQ`&>2@lld?4$$|30WGvepZ zprL*X9oQ~(oBj|#&r~@K^txyTOq#9DD42Y=p&^rr9t)l(Wh)hJUdkXF6J@h$WRAK+y@EZ-@n4@aAp#)w*y&cZQj@S@Sp}A0~T6mAQ z$5zzmqOak@Xvbfp1J6`FwC6?JOQ2s!nxfl!SatTlYw;)z-tZh+--LF!7hUUmW+j~YKDDT6g}bEqY=0}*2keQ zkH@hhK8tpE2z~G|bX$IpKJX9p?9W;&e4ZO~P%nyJS2>z&K*5gNq7mqd&iu~UJ^_8u zgJ=hHqK~5;J%_dMb#w_Yph=mfb~qObqp$V4=>1L6nco`f$+SBu*wHvN7p7qqT!zkM zA3CrT=)nGmu4P)Cuq$pvLtO=j<6ty`hogU>NB0eNLw_yN=XJ%L?*9Q4++L$`FwR6D z^b^^u8|9q3DB?=#o5xPG~)P{l{o7okJsj2~)rRpP_yT(KYCU z3!pPD6YKS`2KDx6=pIBPvkd)m`2rf+4d|M0L;Kl_M(Skz{BQI`O>YneSPGNw&sr2b zT5m%~HWlsYVKh{a$M!Yo17E{R_%{0B@6j3li4OeQhGC$^(Ch1>{Wil2cnfyM$qm{6 z77o(T7E3h>zj!nTyHH<`bue4w>}f-=DNe(eaST>&5|&^MnxyZ<`gW{E{d25}xtfOW zjLmQj^!d$+tKz%unF$OdYIlK zOr!-`e=yd!p%eNK6IdtNG7O*>8oCMSQ9K9B;dAKGc_{iT)~BAQRX71VqV9wnFPOu{_znY57FIo9L@go==~R?nL31|&5Hwhep(p{zE`+GHd<7PB6 zA7BDcpb@wn>o?vSwqFDE{&whhyW7$G=AsAAv)BUP!Zvsr-R`YBvj00#7*64O+=kBJ zc&z_~o^V%o3Ij`^OH&i=xF_C>!?6c$MjxE7b4a!d=!8a~xiB3~x)tbkdpfiK&Gs*8 za1GPCga=-arKna!N8TL`;YxJmuVF_#j3!&Du3>Gwayp zCiN-k^&68EJYx5tNpl44;48F)B0a*$dt*WBW6_lQ-3+^UTj9a z>%i=3U*a+>gi{8E9C->I;9jhSU!l9@raMA=FZ6+<(E%kfflJUFdJB!zR&*PGaz`@E z{HxgTN4)Ur!P!%P2Q)95Ecc=zpNlTlFMg|ZZ`9TFNEM2Da=T!gpbUbMq#QGC!xun{Dp!8$UiKEx+!{a3_wHnGU!LBV8u58a=iVgkQLLz;DDSgT^_4C|o#za#d>iD;I8 zj;{Tg=mj+E|BPn1J47TM&4K)w`t!e~Vndy1TQoU(qr2iBG{n=zwFy70~PI zUK(AC&$6&`~`!S)afb_!f@G%jitHdgasM zZB`bYX;t*)(iXF0XY{_l=mW>01DuZz>{)aI@1jTg3G}|?H}Qg>(eGwCo(bEiCHA2{ z2|d$~p&h2J3Tv4cU8*+dHXM%bmbqxotU*t{57B}B5Y6;#$ffI%_GDTk3Wl&-Xh^#Y zCsCh@r7>-FcsZ598dPgy2ONQQ@LkM|f1xj}|InFUyC%%E5?Zf=MyxwJ(EgbE_y6vr zU?>(umtkrK=*U0BTksSP#fr~`NIZci-#WD8_s{`;gf3Cq+Ay)}(0R&;5Kj`AVTPx&>3A$E?)n;xJrFBmQj6Uc%+RtBT zB(8iZOt{EP?0*l0rZjlOjzW`a6Pi57(Fdlz9O~EOOsWmg18EmF!3$UkE4>m9oc?J2 zMXZI#u_oqS7d~%~KJT%0$?z5F6b+4NxZ%}cZ}esIB=*6B*bghe7QR?Kf*#r1&@;dC z`fwBvKqI#x`UJWipG70M1&zq3m=}LaQt*Z>8$u{^p`k5?hN>~Tw%yV5p&uIBk(dL= zp=S&~9Y3Zu~nEkj4R3Jv`>bT=GB52Sz5 zj&FP;%(xnwL;cZRG!)JLvC)Uo>sQCmH{(^*cVRR4{~-!yYk@bzjm6Q3)JK!4CHj_o z3`^kq*a5#sPqun*h4yY}$CJ_An1iM8HFN?;(VY4R4Siyx17`o#pkOE)W9nNkx>mQN zBfl42!+Gc#{v6uzCiG-Hi#|B(rtsiAXn%Fk9BPG5WOA(U!-~{1zs+w}yZ@_EaD=47s90bvNi=f zXoJphFuIl#q7PzD>hrNLuEY%ZA3D$sTf(n!WJV*GE!J<07Dk^_9Nm^RF!h`*@%=x6 z21EG>n&oeyGuVk{`&qQ(Z_%^gU2_5_;sZ(|!gg$XS4 zVK_(HqB9?X-ZwS696i9^#MJNqpQ2EghCgv2R{tpc_SzF@(&YR&{H|Afw8Ld+GOojV zcpTl&1$KuCltpJ=9lfp%rb3QRXaSlNYj?B%4f)6MgA?(C-_Qr;-xDq@i{98Co$(-S zh_lfX^J6q}7tja)j^@-=d&7PC(FjzGwnncXus0djZa58Yi&^Meu0cEAj%M>$=!nzy zg_#sVJE)7kHJhX7LVGmH`o#KZ^rbZo|H!~EzsJv4?GF*#l%!zt?M6E|iYDK8Xk;=R z2p8r-BT@o=Kpph@4ro&Kiw;2td{6XYbZOQ`-$o;}Cz?D%!3SPKPp}-H2Fs%7L2LBv zz7w7C1hj)`SR9we_N{1=euxh25PIF0=mh`72AJ(&_=Sy@NdNr%zZ4RD@Dk3%z2Sqj zu7^T0j>TtbKZ-sec{p@92WwM*0!^+%=o()@moV#RAqR@06R3a=tRWh)Tks~||J^A# z^Lx?cT8z%@ZA{>4G#4^_9wJZ-O~wk?7+augJQHi-I&?tiu?%MTBIHgv^uC*;cVK7t z|6~dd;9&G3+Ck1E;pg{K=$iIImtY*4-BY4-&?Q_FeHndgzK;%kH#)!{(eDd+kB0u5 zV$vILqfi;gq8&enhI&2P!B#AcXV4I5Iu>@zjcAV4!P3|RtKl^CzK!TXa}52CnfZ8( z1p1ttkF);`Ne>##_EBiEJczE*qiD7-M>|@NUVjWdF@Hg~U;Yze#)Z(eFM&>=38q4h zUVjJL?`(A9kDg%v8~PV$u%i#-2m8@be}h%=BHBUmlVLlx#@5t(;doq)c6`&R5ZaQM zfqE0nh|Mq)wnSg=ZPAE!Pf~DyPDH=k%|%E21bX9oG*oY3W_%CF;RiSk>zxiu@E$tz zQ)sCFj`gBvLJ~GaBQg{dI1U|9@-Ygo;WG3=Z=>7ggINCz-8N^?4lc&e|Bdyl&xY%- zN0Y8BI)N%^MBAYEcSK)Wx1;C6R3xdBX^&AbJJ+K(9KrYS3=YL-&V?Vna(o$nHEaYr z^3S42(a4-cziORBC-5!$;J?r%&i++cqEgYyn8W>Fhk_TjLL<-}U84bLGTx1jIEkJQ zi_n2?LYHn^tRIZ^V`wg1K$r9qj>ODghx!=wIa9Hk`~TtCupRAqFPfc)qd&ypSc2id<3*Of;H*!ElYzYpp{gAceJy64ADYy~cMzy~S*Y!g08-^~~gjk;!KVKH>FQF0M^j$J^xSs~!|EJM4{x@D& zeP z$ns+t$aUyTs2X}>do)5l(9n)Ux8eV}dI$J8m;Zlzo1{uo+ncmaYP(Hs+qP}pscqY~ zZQDIHPR&yr&-LD!e4qUO^E!L3nYm{^p4n}ZremP?Pk>s#6)Ga6oYkJ$FBpfGJQ4w%hsLP(^jh@-ocA_%@VB{_o85nMI0q%@DU|1~_a?N-pdykTD#V4LQrFs!huY`sp!V&u z^Vgwn$iGmv66phm>-@)52L?hNw;WIgl(+LOpf>h`QalhU$D^SXFN8VZUYHiXhi;hU zqbbG$Q0rQnDJsC9>+Lif<}6;z5o zLq#mc7jpxqfvS!AQ1jzpS-9NtJ=DGeUpfCOike?dh#Nu~(!#Pg%*1#Ml%U;Eo?fxf z??Vat0CiFMe=`?LGAKuKKt;3|)O$fgD974EMRJg17tDaVLN`MRx(F-5hfsHR*6(J% z0Mxn)P!VYdbHFjM2s{X@La!g@V|EQVlJOik45s>N3|I~GGIkEoNl)iHEC^HoGGDc7 z4pkeoVIz1BHh>v_n;egU`Y^c!=7X1De(3+l6mw~)Vyp{QBSWETV+~YfjzEguab2dP z&_0H`lYc{1Y23fY$+(7%BS{ZA-E zVvj^O9HC$d8sR1E4g)Q3tsYg{pz?P@X07Hp~Q7 z3&res7_7y3Hq_^X4^aAoeE9oM@~|)+6+?BXP>qMm-CU@P<2aN-|Jv~nD9__ZG=efi zJud@G!6r}!u7WyE=b=1)2vswGp;DMJk{{pyrBgnVQP>;m!D1Ky4?!tV&i|4a&|Frl2Sg&E*gsQCy{ zO-d3&Db8xy1nNy|66^x^!X_}2ub=0)-%o_PfYSK+c|JGPfwdWrfr{v3s8ir_{QW#X z2oM9h88?SH;V`IT+ynE#ORxa+jb?IN3MxgTpw?}H+II@(f`6er%oW{uTnB301?GlR zp;F_VrK6nRhbp!=P{s5aO0aJXKhKY3xuJ5`0_uXA0wrK6R1NKbx-ZT^-H?BvYQQ(9 zpXXgNGnD+=P$_B*Lv;ST($N*W5o+UosJr?V)Wwr4mZ|>fP$^jmmBU?7hF*eh_!R2% zf8^LkQ8YM(aXcsoS3!k*2h^L@L0fI6NFpw?}N zGUx=<`F{Wv5udn5Q39xO5Y)NP3$?!{R0KLe&(HrmbR=*BR8cL2%GDXmw=f3dSn-Uf z0Z^Y{ib937oE=w#l2aeb(+*H6=nr+?7s29i4^$Dl;&cAxX;M1!BtO)H>QE`^3}wgy zJ3b6$`Fp4$@=jnBH74X?eW;wa zhuSy@O5t3~^-#G#2;J}o^rQ@WiZzij$PFc@1l04oP>!~PIvt~-j`N{JoPXu$Jrkv% zPht~^@=yX=Knd;(1K>m`Pc}p4^emKtFQ9I?pHMkYl*AmzEKu)$En!tS4laZb;2Ai` zN$Tgh0V^ak7e*hbRIG-&^N&ECigQq&+_ZcNRqa2aZny}^P3i)m=0l*WyqINWSdMW6 zm>#ZzioA1;P8K@%pmHB0h4DB&EXcSBl!u{E5t$6-;R>i!?1xfx9jfRaK}F~T)Ovrn zdD97iidYTkhFu}g9sU(svv8&5KD*#Dl;V$2xr-QJ6s3ZSNLJ{EAy6r72s^+ouoJuw z$G}Q~=BB(2WkAG~=E4euo`3&47adtz9cG1Xpxy)K*zrlIl>C75EKVvTFe6mxYe7Y# z7nFhtP&r=flArGFfaTLWpMUj&c76tqoa+jp#%?riohzUH<{~D0(m?0 zgxn1^E&{c`3DkWt5K7KEsMB&7>Oy-AWk8Iy<|++T2N(=zKwZTLU?unnDs|b@oB8rkayvuG8 zlpLox9VxB>C9pG;Cj;$xqUC((!~9yP_xnvy#dQqo!g&m3=u4>M`5xwkzhOq0J&TD< z6R61afkeh}jisZF`|N_FP=?%r^5`YhyIhp4CM7YUB9sosfR&)0H-fr|T0uF`9m=rb zFgqM;#|NQOd>kf3zw0&~dGZPBN{o}u2uKQ*t4vVyjiHLQ4QvI6!$$Be)OoL%-Ouyu z`+LCIjD2#L5HEl-U?Z#pA48pvf;s(MO&u=;(+OeXNN!X85%QSg3Wf@GBUlJ_gVo^{ zsL)2qYf@4WD!0X;BGU{iA|s&;o(OgP)>$5fI%T(^Q-n^0d?vKTpf}?NP*jFjJ`CK&3pr^p;FZ*Kj&Y9dNQG$4TY!Sbm%dl zfLYiX>dk2Yl;yLa_8ow=;5pa?rVcUhnj@eTPl8&v0;<}#K`A~C*T5?woPUMVDQJpq z8)}Kwg9;Th$FVxp z{<@G9JFX6PqCZq_CP1Crxlkcm3}whF%dJqJAArH|BGmEyW}hc0Zc-TtOz}u=l87Z6LrevA*n{xGDPpXZ0tcSFs` ztL|CHzyCug4-@`1{9K{11XM_m!@}?tRA@8QH0QlCR8D(Co$pDO%Pe=n0Orp@73qIa z`(xBH4rGVAH|oH|I{$;{XyIHakM=?dz5x}Y*HE5$*EWI!q2`NQ)`OWDcZDjx#Zc?7 zLq+B@RPnj%__i_L+)$~k0VTJseLmSfUj=olPC!SY`AA0_64W;yW`N3hMJNTmpw8_?sMM^4+IJ4B z2;W1k3v6JR-?BQ?>FEHqZ#LBW15k#&Yry%}f`koC3QE9Ij9b8}a2-?#U5(6XNDq~& zx=;r6g+<|fC<7isT~I%u9E#c47@is`!z-Syp}YG4FZ4wpdP z@rR*8eirIZe`NU@>R5e-su}Ml=95$csQp=?<||t^ht(MOhKlG}hmICLhRU6HQ)6iW z)Z1%8D9`FZS>Dyo4}dz~Gojv;R>JOZH&kddH#5hs7Sy_{P&e&kSP=e!x)+>~=6;^P zY*H3VP}CNFp5Jhg1j?W`FftqgWzYnu(5{Ag;Q^==euw(V7Sz%(Csd@0LxsKql*er? z2b+1vHJeUv9_)bAV3tOBtEF!pZk=lPut8(?n6HQV@ke)M8ItjqWYTm`eYHJ;yv zN>#*m=8IBEVNAwVplYKji~xH>FP;CsbmaK}s9aBgesC64kt~DqWDQgbwnA@s0LtSd zP@%jGweLRE`d3gP{{*!@dV4?DCKwxP-%%J*=l=>Fh4dy=wZDZ;V4@D@-1mceJ|8NV zTcFk*fr`jmm;(lNG=|iJia=|q)8arC_W~#fHbbRiAM||x{~8@t>03*$PUaNEhfPjsN2o6VG&ze0Wk^=2ke7rK*a&K2M<|O2Lq%p9lp%+q);)yU_YUf=kJ`&T&tzEvDmCq) zbFK$LT&y8-br*g~b^M^fz~SOPHVWBg+&6sCqAc_zZ?H zKaC<*ja-3J93j-)3#p(!JJyFekUJc1XS`>Sx#GJH=KPmt;-ES(>JUHA-%cF`RV3G8 zQy6im32ker>K+QKz-v$+Sb~R{V^$HCVO$Ruh09=J_#Eo^r5$eGwyQun)MGg3zYd*E zOq7CtBg|K+tHF|t7r?RbDb(|BBh7om9$1X=H>mvuMw#(+D2HyrS}^5kKhIx8><8O3 zz62}6f@92h+!#Wp2S1po0b7kV+y|>Njx)}9)DlYIMwkUg8E-!G<%KH7Hn25Z2$hPc z6U-Hz8|qD}DJ%i^!EDfbqB$M896H)i1IpteP(^qe4usF(ZrE~?x#I&S`?)%LQDm?Q z^T($8xlY00Y39xAJ(PhzVMCZ>;hxYH#gr58$gtSY^A8hrgWVY4f~xw8OH7e1gbMWws1KuwmztawgdG_- zfc4;6*aN0nW(=PXCo(<&JLuR|UT)6mekhBdL)}<0SC|_xEsVkWEe2b{YAemnwtJP? z7iYC8(h#UqG6E`c7hqxd2kM?Ew8j+m0LzQeImv^RYt2`|Uc+9D1J{`kle1xZ#xd5L zJ3l|vh0+?z1)Aaio3LK&bgfFbdjJ)2*Fn8qJABNhqm6|ut3!QKX=BF@)CZBN zP&eLsJAMjfi0hDvP#{#O%fa}t7nGdwQ2Up{}54b(@oYDdjaP=rEH#GvN?Ldnf=%pA`~(DUzq&!wY~ zJcKde52$0}d)#a+0}C+j3H1qQ3(N^`LcRUQIAJcRHn1(@J}1pFdK#<^#XMu~{=85jUjy^NbFe6kbk-PD21dopg)NxCG&fGI)po)CdImdiUWjPbNB7Z`i)4b3w4i-hbp>lP>%fz6@dc(m=tw{$a7pX>15==J~QEZ z1tl=%4P!tSD8s5)cD9@VWypG17+!)Zs@ONpd_m}D+yts-21DHgOQ9ll4F>D{``$8d zyV;&{7Z=0Mqfr`X#s1V+V@;u@lGoKc^8CQgIq!U!JO@L+LT38r< z718g?bJuv-2j*ft6E=qzU}2c!p7EfEXT3A$L2eu^DX~C8QSoPNzGtbgz>T`od1S&o-t7rmV9aije-i*W2mal{LE}<1!dqW z*aF6RZrBIP!~3usO!>n649Ehl{p2|VR;^$g({{* zuT7{+K!vzBRCOqV441!8W;o> z$|JBM20nyt)@O;}?}g%h0cGei0bfXKR6JM zfJ8ERE`3o`+L4X&-}A@q z)o>W&-0`sx?t`JQQUWu75sqeDGokV1A=Ibd28sMVpO&{m9n;8(&3qTAH?fnj988+T z-*cK;C-HYYcl#73^d_+x>gx4R>hCHHOG9}+3hM4Y19jYfL0zfolKFc+aFl|&qBlbs z@*3)1DVE&dbE7VXO36*w5@t$a44Rh0@%Mbi;sp~r1=-!kgFf&pdwy%y3|N)*iG%z-A6z;>{Q+h=OaSje9qTXf30&v| z`@7oH8J@=9^KG+_P!~_kYsR(Z+&MMNuB=#%cvKz)3J8+;7LP zVRFWaviW=7Z1O-ouLo1ZQBeCfK-I(@sE_fk?Eap2#k9~{!Zst2Nq0jRZp)5ZI zRdhF?a`zYNJt9^P8xg4aW>B9GdcaI@9aQS>KpFTEDl)Ni8jpjZLZ2V1Xv^i~{3~be zn2^BkP#cCr<#sky5$%97?5yQ&sP!-H_!rdq_RD3eJ0;XHEnw+DIe6IeCoI7@hm+f! z>%OoU6T2*b!w|+r^7y;fKnLo4r_XCnODUL$aaAY-+d~!UAgCf<4zt3&P=>#SO6_kb z&lBb|bn?*Ad94k#upyLZ9iWQRfvSy(Q0wN~`K3^i+Gcsm&fkUF{}y^dSAG+6Z`g`q z94LAH;9SJJM$tLTL{I^L*Jt<D%343*FYKg9!A&uzjqPy9uONg% zC#d6DrMNM;A@pI~73%o*vhzcrZoC;V5N?D@zq4uRH%lTKRvX?aq z3qgHYtOE6ZKNjlUa39PDpF>%mq@3|ME6l;T7L>tbp%l)Cs`716@~=TDdTiL#()G+xy%LSab>7?(N<8Q?+Rt` zZ2NozREmy6MdU105jr>M$be7KQv;PvaixH|P>Mo5Zv|Bgp-`cn1m)o-m=WHBN>P+5 zW?z0NMU9~hY!6kmL!gRvIix5Z*I7CW$y+FkqgFM!PY$)A5^Msy!k_RelqVOfnUG(H zGVCo>1pnIk=+(`95Y$zk8|v<_4rOq2==rwSWIFO_K9qp{P@y>o^`Y_wlxHbxm}095 z6{#^$hRm~E0+q5=P@eCAs)-{|_rh&Eeqi|x7Sj2TS<}1+RED`3Pk=q(377|l)G{|( zPbkHspgfubv%{TGIe!h^Fm7#g-g81-P_>{OY7Qg8P^jZP0_x|FU6bhOf|&}v;an&W z7D8PdYoS7X9_nrRzMYR$$E;5SReTwsLYx~a5~ZM0Si`b6Y|3~JR0{so;rweshPvk6 zsuGlfK~U#)B~(r9g*x|_phEf#%HY3HcYWk~#?Zu2r=kE<(ba_VyaV(^4odDEs8h9} z9_L>cpJPHHxeFDdXO?fF6n(b*4fS~;VtunOI@IY%4t4Hx+xdD>7g#$eMRTEwd^c1i zuR-4ke8D}G04lfb?YIwABu7H6TLUx0U9b*( z0p(z^MkYcPpqsJNijHzO5=!9|s4I6Fl!A*;A-fAbhC+orLSr+I3kxw$1$By=TMmVa z%u=Xg-3N7_+=43FzmSh;jw^c;ldGyQD-YU0)xaF6P#uQp;T4zx{pyoM5#td*(aTu>XU zLKRgfs7Q^2+P4*|`fozLxqO6;V6xWcJ!1frytz=PVjJ}Q{LdviDzcYQo<(e9syQi? zqQX!HHiRm&o=^&A+4&=ux1o;dN0%db#3 zVa#?$Kxrt88(a2=D$1Eq5m*bAvMW#q{(`!|QnWX6(?gw_;!wp`4d#a<+B;^!5hi5$ z9jN2;0lJ~9gRwjS>U5N}tPOR%+CrU@*-!?qfQsZ1sN%f`m6HFU4SpLG5n~b(If>io|fZ1WtxB zJXaU<-r}^RQ;mrQP@((?m7By}O^ypf8Q2=CHU?SFg!&`a1}Men?feU<6u7z>IVquX zUJA+U9(LoCC14=^`S1VWyj)gMd zB9tQ^p;D2cr}-LC8mN0_09>H+zkyEt2!yVeIbJP$n~)8GAuOB#Rb1zwj^7tMj?>3{ zaj5`Qgt|eU^RZAD)>^33a|6orFHpxiVPCFd^p$}%(C@0&&v>>97GZo0s=6chHy$K` z3Vk6cLux`r%7Hp1v!V7~hKf+!0mh&#upHwuP&eZ=sMJ= zWEAFt%5^iS<2DQGc&&jdnw?OJFGCp?b+9>B0Z@W-L#3!Pl%XB$crw%{qzzED@eh>2 zKL%s57oBKB%=>&ys0Rt53`h@kafI0U@=yjff(l`K7zysM+z<6`dJM{ti zCmz(hX)=dSJUSVnJSb+z^`Sm^bcI^j7s}(&P_?iaMuEGa3^)v>_!QJ9rmL1Opd$AN z2Ec^FjDz{0J`Xq*=txm5s0EFn3>gF!f!R=O!ozEIxU@`3>yLUd?r+Ft*~4(p7XC`uz`spaF^vzSc-AT z1oO3@VQ>KBUvLTRJJEdIAo(QorqcxeWPTa+j16UuK_gvSa6{ z?OcS~a0j-4f1oUEKHa>{c7ifsJk)(K56Y9JP!Ze;mBRf{>#o`7k6}v2pI{@HaE8C< zM=*QC20H&I=;(bs^-S}}?cz{1F%atJnr*oiO3-;I1s|Yt9ATFEOqU31z5;v<>%%#) z$ZUVtF?bhNgG=U^h<=6f_5SZY*I1qyDg{}gs=p*uD4Rif+7s%W54W5NRn4pI_ySa_ z9$LPEI=0`TQV?UFzvpMo5<)z8HG!Ug|MvhLS$+p9gs-4Bdd)Y-E+N$YP{gtZl)yHY zU7-x^2UQE>p=xRll-#v2BHUxghoJUfgpO{an{>4C8Pvj0@DTg~$HBb|OpePgG!d!} zb*|gk@ldG!v!Eii90tSfFe|(V71@}J%-eiw7{s{hBF=vrI(?Yv3m3!P5qMi%Y&^fQ z#C&9mu+$iq4eH9x162$4pl&n=%7772SM5}&aEu0-UVDymaZHE|6p#IGRsxPIE_zo9OesB6q0$D=_#uK=~b z5|m-}ppI`FsE9e8>5QN=0Oo}e*BU{EpyvY#RIcm80TNc7S6U&xI0@cC)$b$3vy) z0c;CfZSnW~2~EImdi06`aETE_1Wm<34=nkp|073$`&5S#~i$=wW?jPW0s4JJKhzb*)+ zXb@CU?uDwAYf$%x>$Fjn7G`Hy3ub_0pd8r=bHa$p`8{YOpYD1dqXma3pMb$vpoLUS#|eZiQzr8v_SjF$#A;8T=cThuN?C zdw!fR6gFY(oTsA;A??N9~<+{0mYQlJoTSDFK{h{7$CP7_j z3t?oq$#R$FAsE2?DM*AJ*DE>^n27a{*$@ZHpd?Va3xsZ%4=P3V?DJkw1`M?0sZgn$ z15>~aP;cWGp!U6nskf z3}rw)s8iAzDpKR2YGoRfp^Km!ZiafVxB|8A5tLysq1Jzdp7;O1bd-W7irWH}H@(Kx6#o2gLma*Lr1*##BZQ!oeodzmc z#n%-o5@TTiTwr+!x*0!$%B{~`Q0hw>yHlxIbt6jg$XTrDVtb)agfxqUtXswQSYMRX2S3Kv1G z-|o;+2oFIiya*-uAE?~lxAR}2HvECA=BW40Rh=4YTo$UxT0%u^D$D}6L#6H+)JL)3 zQ2H`IFdtl;g0@o{N?}zfMQx$3+8$8HX*^Vf)xe@*RV zgl@)#p=zZG)cS!?>xVGD1q6b))j;j zPzov)b)im6XQ&HmG*sl4K^eFMDkb-! z4c^*Dv1cA(+{yDzdaI+oW6yBqj&_h7WZ;!i=YKQt+^WqaG`3<-%Ydo<5$1)U1{l%@ zWpz=U10(nF{4B4VT1cxyqSwlG+CbQb!=4sd-%~XC-K>3rvc3rI!1J!mXT`v= z>_12(M`BoRB72KHt&x$L=W5MJd~#JO?Vy7tWteEs;%Zp^38n9O%|*~`HV?v()NHK7 z+*&sUmWnShFgFSBs;FRWtB%s)yt1Qg7>>Nep)nZfLj*&S6@%(fjM?kvJ)P<+%ls1S zZ6Z9cYQxL9zRrdM2)~VDHH>rd!|txpEL5wf3EFME_(Wt% zv2G3m8)NhejOd5aEp0^368=eUzJN(oyVDPAnQbvPBqD03Qj-7kI&ZWUERKW`HBc~} zg?;dLJ7H3*N|Y|Kt_)u9WxgREd80U(^vz&uj9U4Q<{!R8j^Hw8j(;8A4ynRQ><7M(e@9&EZxG!kK4TlOqwT@!?<#UWMa zcpl3}OLLJ?ptb}uBB{^!3lEUyg0xz=R7KTM6{DW-B+M}#B z-h{PH7@MCw|0TTn!p&zy-V0KpHiab)7cT#j8Hb}f zf=Cr(jqV>;UIg4k@Eab)z>~`ekFEu5&WMtKQJ941Nf5k{2nF)I6vEXKGOsp1eR5v;F~(_0c>Fo@!|m$5 zcrlX2{FZcAa~rxi7}eaKgt;hntk>F78Ny z$GDZqPUXc9%ipo9+z9IH$%&abM=fkZU{5v=v!`JTN3c0j*~v2pLF@7QBFnS8QEJ!R zp0Vk)R~%;=84PQ&uxYdn;C?c(n}DlT_rXsBLM&W2u_-M+__A&gWi*|V%8L&xQKPnn zS3BF^MLg6FUWJKV9ERKh;k~S;5Sa=Mh{H!6V zt+5*@#Yz}4+|3)T4gLok_}BP)iwYS*7Uu-=tw|K7KwdC%i=*o>74wz7`OrBz0(Dg> zT={rR>L#F7@SrQf^}+SnR(V$xeI*)d;}KLeEa-4I%0mgd8h?Sul@!BoA|nVV z24Yl2j8LnAW8IM9I0#sZC2C8p*TbzR{3{c#W^T_T*L*DBgHilVQCD&VPC>~N^T_l6 zl^B-?W!G5~zU9aG9fX>HSH*RSXKw?kaiW)nIW;FUVS0ikIhpjugXviL2kT}Mw(`ui zMZhCMcG`Mrwh=}YZXiO_$?Gg+EVgwsf%(VC%gH-45p7@H{`y)e8D} z&NT%^3O-|9Fbi^0YzY{z#nJ}MMdmQ5H6|**7~jO8u$Bfx)heQ75DMn=@}VD>NWSEP z{^j;O=2sMR>*G*49D0R=YR4(wPLareawb~ypa>ppKtX!En#IZ8LuwvcWsfjoH3FO3 zT6xQQwbMMW$6PCn?t;OGy?N^))Z5t~%^IGE{xa5{C2eX&+!Q*|{LH?d4jb2FiCQ

43vCF=zZ>p49FXWfogvAQxPqF?dl>j)Ye&MroSEooxLcnju$>|EXJz6 zgzF^Ulwm<-EH8u7_y|y|!TcEnE`b+Na?(a?BRQSLTwc<*m-+JSNs3|9Q8ofY(=+cE z?*3SY43E6XGi&x!q;oL3 z1Seq@X`D?e<`a$LI2E0_HOPIkV|#shUJ%ccAmj#ft?*urf5getPU1{SqSoEb$449T5Db08+*lj6iL9CH z`MF}YoG|-b-Uy6^Qni;T=!0RoQPu&Ej^dfxYYhAvfm4C79jx)f)3COUiXV-a2bc@S z^Jzq`wmlVP;3?8DfV_Lt-$pIz`)Z!{6M@a??_ji!>Q2XNFbV>7?!vWm2tPsowqVqC zJPTyp3M0y=v4VhYLW0Z zCjzG+EG9}~B6y?SJdr3|CpEKKcMRcg5%iRP9P%H^d=$dm3NLFgRvT}lbBO*iT$-)f^%3UCtin0!5PL^P{Q9pb~PeW#W8d( zLVFU4@}#0K{j}DA8WdMHWISUWn-u=C-UlP2G5ZGKl-dTKM`WEd1ECLW&JwU_F|R{J zpj}wiNAP^t$aUL#W47}S#`r4AXJS|zl+JSV24>IrWE5?s{|`#e65XZY_BJQJ6w$@Xh5h6+YP?tDF%xcVQCJ$tH^vFTO$%s6@ky$ zQRP^IPJH3XH$v#{2P;!-<9z6xPzLKHl=O3GU=^*lXB zT|-$tgzvyJwN^yL+Zu2ZXF9UKBhgc9MwII6-<2LrDAih%=S6noPYl?GK^3vs9|P7) zF$VNPh}t2%yMUl2)|33Kjft{l7#59U+{m-qHljPIkw5fj6D76HIH)#L1~@!ai-`5% z+iMIMf$~IzG!xMoiE*Kf=aQE2?G45)!?+AQ3u}Yf+k&}otbK*tL5%xj&~d9HE=G>C z#jg5uJ;t-J_S?-n77D%b@FB+a<+X=#as+-NQcoBUqX>@>sb};P*@(=+tGCq044ayZ zD7(iiD+c~#|1A1_F{nDHYdrglAg{2gf1~<1xg1INB^%VfAp9$@2P_;z6#mc;BHYp7 zHa8at0vq9#KVkoEmHtEMhuZzG!#Ne1bx(1qAIfhN_F5Qwk#yusLpkTiS=^NT{z2(WJn^&2wy;O-HA*KF{$6k~{Dqu-I1@z9_hEbh{l6$Z z!Lt#8+$}_Di#0Bx=ie1Ga$Jw7)C_o9%jWnRp0>q1wU!ulgI5ZK)WnPT7}gm>CNk$o zevhNP2ga$jLdi&5^>LYxjOSf&Os$;Tga7@{xlI1*@hWHYxRJ|e4<3giG#&~b;LSS( z7sUg$oP_c>{cCV4#;Wba%dobN+J|>49uw3mw``nDUs#$jvB~?)pOo|p@;2-wvC!~WIUnbmYtx=GkNSxzU)~3ol zLAJdSJ@t1NZ=*^Wf|j#bZ5+2%8@ykLBDG|Mc{Axy8%Ags!}hQoYl< zT*Zsa2pRWz^|tGBqkJTah9gTY09o&dPJSFz+s6Lg?0-%Qoz-}tR@2Q#aD=>PBmcQZ zvgkI2qc+g;Its=hWC9Di*t8V2b<+&558&Zp+<8s4UCyeG};l_$*i@_ z3G29g-TbMC{B6}ja`=UiZb4uQt4Iq+q{3UCHzFNjZ6xdbF*YHu(nN9^M*5^f@VALzZwcDmcd!zEar03@f8LUIdF~StSRcCQ7CN3l3Za5>#VT6N$ZhK6faJlb7 zI>NUN9J_LOzn%RLkUxyE7i+%T|f3Lp?H197VHUodX}^QJ}DYb3OBH(77_6#dfn}jbuto`S$J3$3$xi=O70;n3}RCx z3a5n4rREDGU^@AW&iaoSyOnjRh)5uggtgKrT}>Jis6uTkhn!3(zRlbt(v*%`3yRD6 z|6ncEy5)G)l9w+6PVq{LGPTvVl5=Bd4la`}_Qa&Y^VzH~%lJFO-}7AUJD#o}zfE|S zDO_}yu{W&o>vLSKb^q^U<1Tx2>Jx$YtmwtuYAil$Pe%*prZQLF9k!j@3y=F+;a}+U ztBr7(Pfi#!g^2aTm^#+bo}_Fs`_)Pyb1AY9VoY`Y*}SDa=ijk7$S$gcL3I)Kjx$<8 zf@v91*3m|!2hY@E*gVE$U2N7>z>pk-RxJhn)5z>Ynyyk8&r(wHC_iS?ypuJ~AQrdB zlDrsk%FQ1vY|ffsd3wS(4k0;tzK%^#t+HDG|M_)IBQ^b4vxN&qZ4`2!BW@@9|Q*V-_g+!D@Rm z?IGlcd1Yo}3#zyV(U^_p{9DMbyNoZB%gp3{2kS@Rowrpmz!q?SYsdi%>tO3j`kP@; zM_$p1)?E}2=lKMp>r6vHMqatFY&^1c&1AEHBZDNP!<`?JJ@;k~KxheP^7M{{OX#OdP?Onkdahh&B>FwOTekq3|#B zYHxXOs6yoKqaes0Df5K4Vv}3fGaP6|I{olI4zk`83AHy?Zp3(=&oI0pM4Pec65ovC z*%?^(rNV)Zsh#~Q1n7J&$BpK!t(S+(p$b%Gd$;6<@E?#4c~!T6NGi#JE+Q<9;G z_PIB9uD8L`I_D#b)RLj>8T}k=Qmbl}hLVYaq`xWYA8#JH1|o1H5v{@eT$|PqGLez- zehgHrmBR43fh!4)T|&noj4eZEiWmj#9Pv zltC6eDamWEjj-l}Ff1ykQSA_pe4`vXpfn!Q$gi?-lV$6e)`TP`{!>u8hQ*ES#%l-< zYyTm&xZpR|oVPcUL1a;o9rRH8Hvd1}w- ze^ve;xVfyTEww53)D^dR{A0a4fB|Z+?R^r6=SL8j3*)cZy?Xu$M>dn|uGFDgb}Mfz zQJ#yT2QWA}28K1~5|;MD!m2i3=h)~?e=PY)V3lj}1Qhn>rS>n1)!c+NT{z`tmUmx_ zUxUnV$nn8TwfIEiGcSI|-_x$)P&xf0yPps`hP;)v4@%)tSSwD^M53U|^O{fC!oGB{ z6yxesc%3PvQ+WGdIFG{ijzD=9yxxU@ck%oJ3isjcUsBSBzAuK|=9f(J?<8|oGicA^ zt_b$Qm<6_qzuB62jiQgt4P*0SQgDFzsd%}9^+7!Qf}tO5%8FC42{5i0MimTK8_9^4 znj85wU``xr=a7#ZR@p}cRI!WduqYi1^ynukIgZc@_N3HfZaNCa^LoIkh|ROGwv+M4 za7y=L+z)%FY-D}-#t*XcOMcu;SpmlhRXb~p7QQC`Iq^^}F~)@0yzjQfc%Klbv&x=R zXx&&>iwJe|;`Sy=Kd6D%IHK0v)>1BiS z9(A#e^WTR4Zv;e!UuQ`P-kUfI&|M9;yR))2T7K{YyDqAl%k?)Nt9l(bAysog} zE*|I?dTzk-U{Wy`uftkm=9kzz<2j0}Vr+i%ddFCT^LF9MqrW;g6-qwc{*BKDatwq)m7HeM@Wz&s1E$NwVoPT=5c_WiUc zXp@_C{bqA}1a%@(VXYWeKP6I`FyslAuCP&^o@-5&G|)^Y7axR!HVGqGqa zn`2X)6A9lzyqd(K;V2$R1V-ZRX$(os>z$&57rhW3)@svl%d-o3n-E!hFkCGqdxJO- z+u&Rd!YyR?#MleyaeA@f1)Hj3QEeR;f)ownP@lspHd>4Bc z+$ADqiIy*h-9k}nyuHk`{U}<(UVhWIt1Pd>thr(3-%|b$vmpjb!&+VCitwky;%_=R z|4)mBXR)kjVUIQin%*HCP)m-Izc|zfR$}fW3ac|ejz}KkwS;KbMgA83?7~TMH3o$Z z34K$0XI#b7Xq@efY+j4?(+T|(UTM7fWY22^^TRNFK8CkKa2@uIbkm{TK(X3iJYR|I zAoe$;*dh~=e7w}wSci-1XIJ{Nz{lS6{Snj%%c`*95&5r1h_4dH2dq)+?Dl|=aiwEW zP6V~2fUDRF|IYXdjud767M$?M$e4KB&qlI0PL*Un4bRVzGUo^n)zYK*F0Y#QCY+A- zN3GBw7_x-LISJh_s5YEuPr{`qbD)|3jo^qFy^{S)QPv#;)Y2Qc4l~z+6t*#ua6Hoi zZr&RZmedwga>5(dCZV(;o74h{N>c>a$Dnhp??Wo862Y=4Pfi50a3phEL+Y@u0nU84 zA=my-^e3`DtgY0)iPV=(k0=y1AC88aLxJUW^B!*%PsQ6DJS&XAWhiaT_yNY$V=fjR z_O>~X$G%D!vX>C|Kv@7r4#AnI?AuOcnvzj=GCV#{q9lgaj@*yy%o{1|yvF>1z^OJ1>* zghnV)YmR~eSl^fN2kJr13#-plSkqAQ9;)SLO#ntGbaO)RCVVTz-VsFf6$Xwc3f0;7 zk$zZ<$g|UKK65ay<{Wi<=vtJ@@HbX3M0ggAxkUJmV(nk%98$Ggg4sBlvD#-Mr8Wfb zK4a(*LY{$0w2HtVOfmL7b+8CyOTuLApJNMnHBnfKq5D0*mGE4`u5iTMAlxnto;M%t!`f z(x1%w{n#JAMIcc7P+bw#GkFDL&uEw(J3A%gW=_R|rzoF7J*u6?==nUn%e`~c8nqn3 zL5#z(MoDElznO&iIm#$K;)Zi z!g1ZPo;1eO)GTg|l}SlQJ;E4(0pG3Ar4&|LB9M$%A@rUt+;}L%+`Tw-6 z-sG5wsFk;cUV%OLDCkO_Xy-8x8{*w1tgB3p^B|}v!msdXuX*fBK~xT)SnUu3o0<>T zirz1x+sXP+1-n1u>}G-y2llj%uV>3iw>Idd|1?vh~B}@Ol~fAd?-ltU-DYO{A(iK)}G9vR;lMN zu%YZW!s3vvco=_!S6GXMV~q*u0c7g(Q2UJBdyH*!TW8kS;4Z?X7gPxFvQMO<;pHDT<+7Bp5LO(vnJ;kuyyh1SK1O|N8Lfh(K zSX2y19r!>0&65zkENVT-<>rGt%4<-d1r#dUMT~M-6N~6fLwF85KO667vM&+F$*xdd zg)wq7gQM^*DfV`AEwMiq#ucy!akS@mO|V$)F5Znrz;!I{LL}7I5WcY10z*m@sX$VwK3Dy~!k9LkL+~yp3l<>o zD24=C!AA*U8aCbHWOO7wyU6EsTix&6C}iC$)~7^HGSi_ zKj7kNl~IxcLz{V-anf*x%tCHYoA*EH31Uwn{jP!DtX+(kQ&3n6?^eN`J0a3qs)(l&f_l z|6lQ-Gqo^;LhFU6#hCZf*hXip4Pyx#`j+ge#VL5s^Nj4xj1#R=@qWjA9gb#focl>M z23q4nn9GJtXCn)vAtWzhR2ziFYP+$rHVV~FW8_P`OHIMm;=N!s%Jq*f{$by2(l^2G zdBHug#*I8u^ar_Zcou}>FBmigIsL8C#dzM=>~UO0*i;rTXJB0`gwLjkvNHZ|Lp=}g z@9=CcuXPAXlaj(@^J|2v{fpQ977ABq_Nv_?0?VzUvG(E$cH^M!Yt3;CKj@K9{(Irs zb!V=@bd<6GLSx-15fSi-2@px2~$V4O>^{kQFlMI8tSjFpDca(i^kbRq% ze)KyR>4<^Mu;z`-)cQLC$H>V$^5iW;@a_dG+Tum=u$5s%VK$=h|F#nB?@aBCz`*T< zwm8a5QDEPQTpgS5?wqb_wve}5Cnd*8VhboWmJhbp-@pj9`@BZtMIS5;Yw1v+_KvmX zsf%+cC;`6{u~HP3+5;R>YisY0pEgSUtei3EY>g4?^}7bPqd;w?+XK)4s$yw-JUU6v z>T{l_V7*!#6zsDnM&ndOX+BD-Bd|T89ZxMJ$Mf&(FU4FNA~A-@s@-JYGK^l1alP47 zgS`v%ZIILU8r??tj^j-iHrB@C`-HDI!YW~4H;hRwLosBoEu=)$f!Z*}^YFeq>px;_ zW0a>%g<%+bk~-F zQuqJ9W4e|{TadMry}6JZ))KS429E6@J5OvDE93lD8+kwGjX&{XLfl0CJ$`MoL3(2qYS#^n z*oa@pdA5qR=P<54%4@Mc7x73<0`glYj#4sjSwnMN3-EFw3mmAn6(JRQg>Ut2?WMv8>ia( z8bd@%a?Bec$d@c0C-g&YlztGMJItvSVf}6l*^dHW)~mfXaP7i?_^kVb!c;iA)keG| z(d+HtMRhhkwF+~vIE1k6Cyd!`UgxptFc;{5R&g`dPQuVRC@9IAq|E!8aJpu&b`bk_ zpyYc5O3uo)wz%@)zzXU^?HmRcT6A-J_jpZN8H-ulAehhHrWF<0EY;oO^hm zme939(R93cjJF9>nWd#cGisw2bMsN^`OP4pI_uR=@~k(}m|-JhX1Vc+U^JY_g7=Ln z%)R#1oF@`K9KTqcs&#s+@FBOS3Hc-@s!>ECNZ7)rkGvKTkww<}$b@ty0_U*4qE%jq z=W3@dr+RVBSfe(Exo516hMd8?)>;Fv;qVW}m008S!pg8#)(X{l0E2I|T~%Vqg{wON=Kk*}Iu_qwq{E9STmMu%8Y2!vBx4vjC6kirV$W z6Wm=+NGKM9ySqEZZAgX?NHQUl;4sBXaVNMI2^5z>N}&W=S|~0>iaP}gg(5}nyJptV zY5#lg^RMSQIp^%Xf0v zJjY2hvLCA(O=a!m8w5UrQ1~x%ylOI1VHB@)*O1QGUJJWj)RoR>SqF`t08C-aoVA`mXcN?k9{Os z8_fPBcnd!whp}zW*`j%P>ArMa&!V%_fQ$+_Xh%Yy!<5JsoHoFjNO~OSA;BO``~$%H zGIk4_37pRZLSz9TYvRL#-S38T$kY;l;{cu$0GmlLnz=@tMWVH@oy{;ErX~{f0@?R8 z*v4@t^0xl==WzX#{`` zoJGoDRFwJ3hV#~xUi)D>08Ws}2(t4bP z=>ZUG(0H(!7k{6T%n0WC$_J`?IF7;b4$anEgG^)Yy;9$v?93RKMrRDpmjECwdOel) z>C|210gYUOl~IWCAF$ue_+Dk}Gk~=v!BY5mq~#!go-t77DeI~4a$UzVo&!fsaq@=- zI}Rv2TgXlVc^fc8&~n&_jMQ^AbUqT~5SibDnKSrHhkY*mSczASgdWP@Xb)j<1(f7c z!`C>D$MF&rM6NPt7|u)61I=;+)K$m%42I9ait``ZbGnGHir9+uVcZA3D+F7D?@6$A zK{ubx+H=nJf1O%K_GGdg!=D-WD%9!QbO#nh8UoHO1wn0P{EI@o zosrESI71Kzh#a7f9<~R0miC zO4H5#Zz+4BSev!q3bbXQEiFoaLAgkI7`efCCFp-iz{R>pJYTv=ufkCzWm*HU zEjZIvYO0F^FUCbSF*h3^pEDmwkT(E5&s++=Q<;BBz#}BkhOxWU{%h_pYRstlZ?j+a5cgmS%QE)UIh zj0Bc*Jqw!}*kqy)gov3iQW6%1a1)Q-OZsRY!Hbgp8xnB#e;cxzLf}I<4aFdc0IQfB zq+Ps_F^9oRF^)&z#D?Aq0;Xk5Bn#K|$gnqlhT>dg3xP^AehTI$VB?kplw|}f;#VE( zV~6I9LOaGHi=dQvrfdM}hH_mLkCDM)FE$>|2_Ro5`YKPcD@`BtXYK-^XK>C2<@*7- z7r@;(@>7nM0CLMaK<=bjr_!YMDbN~=0}%^ZY$E#^a*v}xXurXco$);Y>1aSX=u4pU z5R}b4fQbD`YU>sU_9E>GRzS;IfaLOGe+FOsnJ+5;mU5joQ4ea=m0l>#WI3GwLK`fFbf~rhdJd)jj&gku z?b+~O6tHdV8mKIT70LWM3R`g22Pdm!j>ZQqaL@`6y`ZL#X0sjzw|vc90gmU?ex}y5 zG|uuXJI8e!&P}iI*O*Of0C>d%y!h#gju+!^DA9C-)gpgOVGA^V>w!uX*OQgV5yody zf?R+cMLpAL7uV&!ELpl`B!J&?{KUW$^a8Ql53tsp4;n75Gzxk&39f|M0@#l=>=@D{ zJqgkgYJ)InrVW$CR@??U3v-Ahk@=orzW0RA5eE7=d>6tqU-f6wH=gns7DT$ybklTO ze*puV0WgNKzW5p?`+rxZ@C}_Q(nGWFMZj2tZ_%L48-TAp=)4CLeFzXj6O9J+8yN9M ze>d4b1Joa^n7`Q%N-%$ppe69V7~qre9mshKpht3T-w6^CtLtPcqhNC4P^6IRWG=<3bINYsF$o(Q5F48P*(DsV^&qMiu0w9r0*!IvqSjSvE2}Hp{ z3}8FZ;8g*!UKvP7xxNPMOzbwuZ@s*wP9neItPPXPxSou1Nu@r4@z*#R1)xeW?J^Skl|*6zP>O4N2Lf%!!DN&~=HckF zW|AE+A~SG269C>gh?9&7z7NN1ahie59--e8-ORcIj-j8M;BL913CevaL2GF&Zs8wk z0-7bzwhzj3bL8SaE6&z)7MVm@ytOpb>4l-%4>o$_JbE($^qT8Q^vZqe-U$FpNo)B6h#;?F;4ozqbHa`L?Yfj>~f{yoO_JvZK7KHmXlO!_iiqR-QZPXnuKj#U6nMj~2 z94)BvG46jRNDOQo=RO!lvT86_3NQ=+KXjIA9Ot;?zfGH{n@;4U&NX184IsL5v}8pz z!QtN+_XbEC%Jn(eORgvNXrJcprGP$^Ou>MN0TA^{f=P{bEok#;!zjrsNT z$~m&V4X`Ze9mbc)H9+-oU7C6kbTzlLUAlmN>>C^84s_W_a-W?FLZ2m1a5*`NWP zO8h7VBO+(iE z{wN=#OEb}0dmsYikEVuSqVRY^)xP$WlXl@G)=gBmkZnqCmxCGifir80cJP*flTD#vE z>xSdi+{Y^L3zWv6vA+On#iz(oK(t0TmirEX_}ieofEKw8$d(zM`MU=4V_1e=Z6HoW zI#Q#rxp&Jh0`(%uN}5RIa~$r_x_$xZXzYi>%rnLdlgxgtz3BF)PehIb<`JOw(>piu zrTd?A&QuY@F-qldYTO@(BJH4k3MIKE&Bc5PvOYydy$QM;0J?yjx)TYUiy(sm|B!9= zv9jZ*Y$j848}lOXSXK6Q1bIV7?V0F~!%1ZP8icnA;H6-811zmBy?d0QL0JNL} z5Z5OPv7`Z5oLCd+gSoIfAN@KoK>kohR^Q=pB!ktU=r90o$OO`epbr&sW18|f!Lpz) z(hyMHIky9dL)Uj^O3%^f6j901etosB-L z3|xz3B4|Z)>l5@S*)|}tOZfbXz_FBZ7xpL7&!+nJ17utaE!K`g3lBLofkxSVzm_CGyWW_n`Bu73bSi{+Y|6CB@o$75BQLAZEeVmWP3qNBlDe! zvz8@1l|&o3|CWwSjMsV%AcF}wY;4FVFBvS!+1l~05q=Wgpa1IzOtcmRVK z#_njgSE#+n9D)tNE}S5;DSpm7p?KKXiqF0Ih@Te}HBr7r zRz1iroo=r=S>v}*ss^d{#8F`Yxl7O|WN=N5a&n!O>;{o>S#++2@cjS*&rz}w%xwXn zzh?C<0Y~6e?F~(*#FM;_s;)Evokcyh|YY<#7$5apd`1Ud%wZs5&-?6 zQ`l;v059nhilIbq8LRb8V&EJ$BGUjj2;BnMEn@5iF~;HOBxP*iWEcKJ$#fY3r=Z*l z#eCe0lmW;TjB|3-R_8B4-wDG%pt-VcNb|{Byfhnd(5Em z@V_1(fDTRP7J!DoCar=0X2a#j0eCAfHmN7OEi9V zqdy%GNibP}KAOY)M{4~Va7p+-LE!aVi=4xcJsnG-9_R*e+(bD&49uZ6uUQG1P-w|n z+c9Y0~BBwNmzGk?}a1GMM8q03CU#e;&hWYdV9n zgQGv0&Be&7PFsPp5sYls6|oWHo9G>gcD6|Zij+dR3pC}^`c#L3=h`?62soUqVhQ*+=R+{m9cPo2?jY3@KYMA+^6KMf z5@`-7Z_Yzhw}!HD79Ta`Z)u9GpssIml1!ik?ao9Ti40Q143t3Ron|H1mzi5k0Ds12 z11>w)a{$-`{^UiE0sbZTHK}_YKo!UD7#OZad1E!P zZd?yDD6RI`2mCZ)?mY>V!S{N6Q?P#|;!_=6W0$p*a(9vCSq)Z}K>ZddKMga_30wxJ zGbwW-;~4-Dfa9_xaEjpj3D6$B?0^i{Fna;N17BAlX@h)W73QW8rtV`Dj1#wXAS<`b zAlPVD$W?UQGLm5PaW2vu_Udzp7|x&Ul=u!MP+fGs)HXQwuO!JoBMQIb+$~u_CvsKC z3ge^&#u=53K!Wz;5NS<@iwx(bDLV{^6bW^m-9Hz2-2V)Nu^!F+$WE}aWZVzqiS$7k z-B@ZfURWLefkBD}A3)8=Y6iclqgB+j9YEp~cq=FuX<|4}rirj7@{Y39NAEREpF(G_ z!454GX9!#u$7_;{A?a9mx1!RCg)o?T|8`mTJd%VfhX_ke+g|TJv$vL2^^IMZN<_3S|8#l_B|h zBy&TZ{>XJroL$kyBSDU!mrUtnbyrx-h8e|ud9|4uB3gWduUm**k235uECvRR`qYpi z8rdVuEo48A`%Kzvv$P+*l%@HA7zXItB+wBi9+PEyR-mr}E6Dgrz~0Bd$O-NQ^Ew;OSIe)&#aV)lN0ho;a4Aq^0-yiB|t~bN7TQb6`y@%dSRfGwenOi9bJ$eLCE6D03#y5khA%Qj$a4J36lJg4A zLfQswE7L>wm>&ZJo4G!L-^~U-D1}G^*f^VuG{Xr@ZAK0GWazN5leY zw@{r(Z+oHYMH>|ddp^SUBh;^i7HObeMl@EhbY(Qug;M)wqCUjuXp^)Z&IV2=Rl2)Y#? zR(SY~Bpv|x7vk(C*&6Z>u%d8~MTy))5vqayR|*mjfIm~U0Xr~1ha^q|WEj4l(?#uJXDrvBG3SV0*HLW zWMu^+_aPWwA%j?uR}Y2}f{%iY#^@)8uw4<*O9Ck~yR`&yfH-cj;x%wr9Y00M(xUII zzXT|ufo~Al7so%L@Cf66-eks#7P*e|qWY3ii?Rdb*>A|F|Ne%QTZTPja^%$!>g zxC__S(RoG^>i~_|O_OoDoH~m9%+Z&Lr)1ie&L0lyP@K7?mpH<4V*(eVq4IG(mWIlS zV}C$i#!r2K=LKAIu0zzX*dJvqot9Yc!vIkB`C`jNr%=hO$5{GpuPY)aoVQKC6C_zE)yK`iOrQrtqABp&K?F%y#VQaVm zLE6JYIsl5;7okv!3=+xabI#=n(13}PjJL)}Bb`SspwUN>i&StfL%Ux zhEVUe02s*p8pct`GmU+M{Rg5Ll!PAg=>z89qz1>h5u0N4`iD8B5^GTF!E`)20?U8A`^37!%o|RK|0D4{J?1T9VNQfnz|#|8 zwSeF(avvtHE1>(7<)-K{cN*W#VZa_tusvE!gO2?Q5UYbhP9ydx#B$_*nn(S`X-}GL zm%+CgWYig5k(XpMLsvipoZB?$2ofyAbryqpk_aK5NQz6>Zu0Z!_)r{{r8~b7CW z>OaA+z|?Wdag$}%(4a)<456v2Ft(YaH~k`#pYv4M8I0a_u0PYjz9d_P@dbd1kw40P zn8}5Tb_x{Ep%+T2lffRr&jD^5B?!{7UktvRfzD%E0%ufyjOO?WotyaTNps$Y=JAxI z4y6>C1z?eP*oE1d6gh&U(ir{0Ne!57KFe1gz!-3Qv8D2Oz~!A5G=pDw?Q z@sA+h3p*PLY6f&0^md@P8K)ItYcofTH~N%rAgpAfAw6ZKvRB$;zaW2?$~kDxfzxg% zbpU-Al*+@#W@>Z}r;U}39q4=n#7~TO0oV%q;WliXSLfpG3v?bb)|0uG=nmt0gKkI$ z=XUs8KnV(xbOAdxpGns1L420LJ~*lYjWtpHhGPmWoKt#_1@oX`?rZA(7v~!||6ObD z&UB74`Ce_>;&+wSe>c~+h&KY|06_eRy?rSZ&%@yj9F8T}BQj6r+!8tqfqXo3SqQvW z8EA&%sw}fU1gZ%`Ej6>U8gMms-{M^411vqET$4DrLNA9lY899fSJ-lGEUG4;jZ$o~(=+ zB(w>=MvTwlegxyQw8y&3pU-kjE`YeD4uNjy9xxOGo54DVzBB+z@>qV;0MQ=Mr_fys zkaakCfo&a_t4ZMDFcgmddjPB^0b0XU1^qYN*CDY+@*7HP$#gc|9R+Qn)Fcf@E;4MV zD1F2V$pe+IFuY>0e>3+NLGR%#0mcGhrH;}*l%OR67J<%1{1{vphYm0HuNXL znp@@pxCTd@4`0avthd23CDW4l+=gB+GH%1zYy8}RwT6J39ZdZbs8e<_%m?C7CPnT; z=kH`w4aK53$O|h^aMBgMvD_O9tT`Y=7C~(Spx(pGcK{HntIWvtR7&?V{zb|f_@+O8 z;Ou<1b23%O;b6)TpvL|L&rGmKWUvcHvZ}M1I9d}zy>ZYMY9Er-c?B(gMC$2ENKtSy z_JM470bFE=F25%LvWKIzhU^AtP13RoV#zd&Y{In%P6KK^K;8oC0pmTP*8!;OIPFcD zI^oz7Oj!(eO2$RH0k|Jy6#%ykHb-(j3*UD+GGQ;0J1zgRJDGuDD2RAzCYcDf5`*9M z{xEZ02{yst6`BA8xZlQnAI+3oQ)YmD_0J#o&!I`0)Wu+}ST@w&Lf$+~H*kFummRr| z211JV{$x6$FV~N-`JLR?5ULYLO}Huq`OknX@)dksQV1u2)f2v&QWX1BE;1XeXsVN_ zB#J?H+T&*>Xc~s6sis@D0Y>B)^K-Rw7B@TPak?jXTVz)DXtD2$V6fE`no&M{YotWGmFP1~f82e=7ZAgcj$04zY3 zA`@Y%Ds}}Fa0+9)g6z&Y({dJ%$aS)wNp`hx(u%eyrf9p9!B8Chfx}#YjlK#l}70?>rbP>aDAj?S)G*raJXrrB)^_O~% zrXLDp_?%vj)E)?cK`)qif{(s9cEDmk%K03?9b|h^`U_xFfgX9ocqxDtB?BxK#*|}vYfkg7*up>G%IZx(3t0AL2aAEZkc5dmdjeU?r zMV7h$b>3GDe86!=&K9Lo6y)Eo+`=eCx0JGExCd6s>q=S7;*$zhVtg22W+-!ANN5{+ zgUGytI6`W1FEW#UdVqc?x-Z?oomo^FXpTdX-?X8Qb3YmY>!C3TaQ>?2(&F16D0Ry? z0Epbjb~BlmQ!p~tgG6dTxyTJl$1@i89SFXAT{@S{C!o)Y|LntUb6oB@>m2WmPNnwn5QPsvEeB9%E; z$DvzJL1QU{vXJFNfOW)Cd2Pf9^wMd6d`x;YV7(;17{%XAi4AdVHe1I| zfq6MCRf+jxRCEFNLm{j;M`PANcWt+)_}PQKTRP*Thw`)%XiI4$k;Se;@BsnCFvB@! z`Wu$Bfj3qFBHIkM3eKgtzXZ^9I7&mns{rn)0Yy)w3vG7;0>hM(+}f5?>4^RC(Ugj> z#!h4_;yic`22*~3{kaMMwoH73if3`FYcjH9Z5lW9NL z+5xaE=zIatVJ>siaDZ1J#z=I|V3SOeBHQI#`ko*>NOmF*>A$7)-d5--LC_;GvJ8V? z0W(^`d}TADNV)Gh|Q;XWej+3E(NZP{N=$x3*Vv0{1ZhK)^@>Hi6A4=yfB> zf!yCBu*jczHU3UlGnfYXK%XoUvUtw*Weh%G*qHlb1P%wpA)J3yw$|dL2ibnXd@}&d zk-+GENq{7=Wx;GB+sB54b4d`OYZ|WW^cl#%FenQH;QK;65@28v29YR?1W0Bm-opJ- zH3%Z>-eg})SMPSsI6Ji#N#w{uwjxgeUJSt5@iRg*Ue0xSe5L^UB}_Dz-MSUWN3s>E z!KBDoke>(4bAx>c#IG^j2grp47db@6XBitvmig!zx0I(5o8xP)muuu2IwJ2`qBatB zOC$ATPlwY&p|0U@8m&1<>*~^p<2;%9BV>08cDm9RA{NG1a2z9x6C5qDn@^w%oJD*| zsJ9tH44_4SnVB0&EbB3}6{N4zBYvr8A0@(wr}fb%=l zwl9uEE-HO;y_k}S7#OA!pc{6R#FiddLWY+B|1HiRFt>z~Y=X%Y`sF?#uF(gjNzBH* zNH%n%uxsT0O@oIFuE1Fi4fp{EVK{q@;vF&?4f1W;L?r?Gl<|82y+f0I2{U!L9;3}z z4a$EZn5S%k#Yh;-hHXcZ%ZptBe3Cz}d?>FayA;l66hJv9XL2;ba0%!=Wehq+aIzDS zjmd5XSw#}G93?nPIY%?sf}R-#Q;%U|qX(Gk+IVFssh2PD%h6!{aA+pjWE>TOg$mk8 zuW^)&(=lZ0DK)wOno<=4SVscgqP9Ef4Uq(;SgxyS(?t?vH~~ej1GK*O&`9~0MyX8B zC5Xstj?b8^i_-{dD)KoXCMhd&Uj?V937i*4`N*sij;C@y3H{?KLw0Buxu;1q;JgMV zjsbEszW+r3g@B<1PW}&Jn89FI!Z-_x({bT=NWd}ZQD)?hMH%?jcV$OaA=L-n77~`#=TM4zTVPg>iA{qZdsb9!_ zT3;R6pFp9OZ@vQ0BSjnDi9tEczw`3=hQ7x=mo%4u3HFGL zhGRUM8fMbv=1s;k2(pV{(PY|9#}DGQ7JA39kHeWrae(cjH2u-(FG~|?q;qn8nw3%t z{}*83GPWnZssBkbFOTzZK=@%?k!z7AP%1Kn@odn%(cl{gf{El0rNb47YlP=Nwlk=4 zLyv$mw-+YvDod>h+K7Z2VZRmoZ1S6iBAro4k*4sF9IzphnYo>?a%mhO#mXC-Z0=w;aOG%Kdrf&Db=dH{#hLyBaQy8vyfVY>NU5 z)s<74%%6T@h5EmTvItOyq0kyz0|kRRisaPtY~i{-wR=FIk1jyM0S;?Hp zJQ#YafaU%ifL=0p6(&ysxE;D82N_F*kz4W~2%i#oF%yZt7#MsO*T2GBU4Mrw`jC3%tpK;$k-456HL@n4tbosIrlfOWtJ_)U8_HzBUQ zB3V?_+Dz17^Py)k*98b9{}gHpM+cZVPN2a!%?qUq2v~@wEKSfd_&7;TKO;z2%`gVr zIP~utJd!z!3{~2*avlNe2>c`KL3y9!9(2tXct}wwYYOspY{TtvKAX9XI#-IUMOrX_ zS=n-pP!^o$rF@?QY%o5maHPdYML<0EC{1Tda6CWp8&H=jWcvjfULpgL1Q@Bn`6veC zp){{H-i%N_=K{0@S>{Cd1vZNabQe}i;$xR)Dn7=;+E+02J%Rc#_n7OSmFfP(d=Ai; zQvbhDoD3agn<8*fy|f0zPK`6iu zMF|waQI>17>ID$w7fMkTAUPQq`B@W@>v;z6iMnJXv0Xr-Q)B{JMBFLzm*zxi_Vj>~T*;Ak`15P%R{Wk!}!y&SgvFo4= zX8t7CQyD)@{X~AkP^65m^Tm`eFB{QU_(*T?RMRqv&V9-xG6evap!}Ztm$3})|3gD6 z$de2dbTUY~7wJQjYzk$GX`rPrvV`%!2-L+R$W<6>1W=J8oG;+-D79`)0>>0=ELqo5 zKX+Iey_hc||I&Cb!J2~XBZ_C7O~G>UX7d2~dXDWl-vxzFw7v(?FHIQ^XtN!oS2|O+ ztvH-3YZ}>!jYvgoCcsRPj(32C>5N?`fgW6!mp?Y0z~LZpW)uf;-4#b7d!XGdI|(+4 zo8QqpE)FQg66U{z`oFLdX$CM0eUOhxSp>jtFyie0-efQs zg9H?#>G)PC9pZS2;`f|e6a0-Z1PfIFDbhu0&7;k9K)48Xr^!q+_;gL2 z3)(}AxqmL}znh}#s0L!Rf`Fq@{0ZmrAyBJS%iLrFtRk4Uh^e*$k~z1SNk-%kZ10h2 z6u^hM4H(}Jb4ytX54^~~C7DzK@k$iBa7>4R69hScVh+wup}za*iGkFy1r86w${p^QWsf2CYYxK1ItZUAud{|KeyIG;u)ivTj3V15QcJhHye z{8{Mpl$``yOovC~tSPn!0G9}mdIV@f<{Jp+gRdRU;kpv+6{Y4V_a)#3 z6qn)bckT~Uj!8;cX__h>^QELW$bJaRQY5d|T&_#t@D~El2T(ic{g$~ifI5L~clrMcz=`3D^~) zL6aD3MUYV*D@SzpYCp(zC%{Le9|Bur@-<^;BKSp&^KgV<{9hSGFp)s?_G0)QtRxdC zTpQMlj74fDFJH;8z4rs>ZB!3%)O9wpryKi=rngd>qBY9Eij1+vTNDlcHT3TiqFY2O0G zn_v^k@=skzzu@pK%!srGb>>hGdh;UL9f8=I1n*GAlxzqAYTI_h~TF|{s)GO$@~OmIthSz=&mK(LrQyEN)^NW zU)a1-KglpL0sVfQuM+$OpmPfo9CrCb+9LC`m3HAYgHpebpm&(>K>el|tWanxh~pGM zJivH2fkOe^gZX^eiHtFvC(}U2lJU6=Uw;AUDD%GnZXChCBI$SdHOq$D0S67WKKGfp zKE011~4bMK7rkIuD5fDRA#P|>(Vq+>#et@ z2b3(95;`}uC~cC#I9)+~_fZai(8YVPqjNokEd9w~40FS2&aSGTijxume&bQDNecXL zY$|G5H<6qffV1)6kMVlC3Z4MaxuKi`T{6zQhPd!mhuS94EYgE+?~B2F&<1iYs{w{V zZ5wRz;-oJ+-vR6!?A&sQpbH2nGTgP)Ojk%Mvx1lL0Iuye9Gxc9@;DH=55n|numfPz zpuHZBKj3T&EF2`O=Jds8%J3DLe+QuKT6?kgLw_yfz8Yve{zhOw&fwjM=KGbE(pfS` zO1b|pj*qowGMEOcY8xyOvYVhA$4dgA)oal?K&_7wU^GBG0;D*HrxXGBM5X^B{{ABK z;jo*Lat$ZeFaXsdiF5Km6{&=Sf&_^n=yA>FHTMgZ(sC@lE7bc80e|#pPO+Vc%~jPq zfNcx1d|=3oOY$-=avi2a@M$(EB>>OjYmA*iw>$@3BTC_xFX@3+jO`_0Wom!GaLrWb zR16yPQj!*A)<_LD5@-?j-%78bI{=nS0(v~mEh5e}{K=mRJxk_pvFC=C{M2JL8F+#2 znl_Cnl;`jVsfGC&oOe*ylK**DO(WZ_fDrkUjM89V0*cQPup6~MOFxJVXM8h$UUFO| zW;ej~lNah?+ITKCwpB`z7BF9s@gp6KN7)x}8whk)^(zpdl9r+bE4%ybI7!SxqJjU$Xpeih(zHeH&nhQleU~i-ZSrqzaZuYQ|o6QrFusx+)@~SHA$cw z3D_M_8$dvjU!dw92-iS$Nhaq*V?mS)vHgz2;IUGllMun*GFFiJd)$XWeFHD_nO_e`o9zEk{3njXarg^kUvht0H=b8oDlnNUQIdW5>WtnL z`YRG2PSO3xbPfQ;X}Xdumy-rhL1my2PRpZQ3J^yzjAE`IdLnhnPGlLZwI}PfWL(H# zQvt*Xt_=YGhTj{MWdi_Sk-eb}+yGYmD3N`M(pwtkeb8Hty0*dTGp-*iwG-)uvLL?# zxGa?6EzATnpN}Bj$+iyHA_V}lfw9WytS`j3dCXlRU>JcXa6f<;BEjnSn*56^8`*tC zsVpc(+8WN2=?uUe7=&|fOU4@sDsq?eU;?}%`wBQ-$n{ZxRbj3SEcBxsC&;X^vNN5) z0Wgxxd9FuEGT`^F5By)p$s_1lL*^n6aWI!-C&0##^-Z$-3m})d&q#nE&d13zH%`YY zd&?NBimexAdrhe#0aX+Ludu64auEO zEBeXaA3AFg;3dco5O^>*RaBv9+77(8XaSXESarlZiZ5~p3I69 zcs}RbQVwiJ;3F+b1OqmlxmDD^8iCw0hB7@R^S*$dhM$>~;!hH-Bwwf(=c2kQZ^W7O zp%ulgP@OT<<)Wa$m*;?L14F~9bq+G#%Gd#HcXAwpsc>v>G5;fM9VURty8jCsPq25( zIy(VoQu`7FbW3-k9mDxh?v_$qe+|9U0D6ty*v|b2>>|`|Crs@jut;@XUa9DPL)IcQ z7@Hfy+Y+p9=e&mdDzIgDKwTFcKcc24kQFC06PZiw{bYQVI<5k0 z2~5l(z#SNxD;tT293$W__+14Wm&=b*nfN+D)PJyoNx)v@5@U5J z(^HtKjeW6Pc3z(eoJ0+WGSC`@swfWwgj<4fc!P2jC4(}sFfNo29?Tc#y1EAV3?QWy zTrg!3d8B1=;4hoOdnNXs(u@1S^8P0>m_|BA*5^ISQPkk87mzk*Zn4w~y-oB%Za|L5 zcpXPUZOV3B&n6L()zZKu)DFgW!`@^7$1@g-jz|%F>_ImLVD>Tm$c2-U?Bi?5@-Fv7 z40bUNx7;DqS2U49wv%NkZ=~t`aAY@ z7tdMWf<44#?<`v`E6t@x=2piSI=BX+O9|=r5Q`#@ATv7syv)0Vq#H@gSx z6R;SETao~>idtre-VirHv(+M$4>Rv69#_5ZaN7R;v7lh_8ri* zm<)=5yeoz;xX%beUuEGPj@poAS%4Pv2(%mr_ZaK$F(x3Q(eFXfRF28`TBuAkq~04z zat*6&4@`gL9W@D+2#LA;7=E&^l?*=*;?hT{v$%pGsa zhVFe55a~}D8>63FmuF1^i&Wq|0be2(z->)$XA8wJ15~CZ>-P+LN+(K^M6ek?G?zN- zrw-1-z$AhUr^(&`cA(O{9Ga)IimH=Lev%pI%G9&~Msg8Dh5amS#}nf< zdT}r&LjM2AMY8olVJD7TqO=+(A~6`xWC@AOP?z3J=D%fLq%ENR2-KYNjzOm{K01<&$S+(sllQ;cET?BUiC`cEx{eUA zl>(_vwr)uzgA96qguzM_;{ zu$KiS@l97iwijw%5p){LyKpEnicG=?vXAjnpe}|{KZDhPW07p?biFo{jJ47gA=l45 zcFbG=U8vw^kf4xRi9V6|PRYm8DC552e2n0U7`er)w9RE{Wrh0UhHGXu^-KiNOvWS?TjYf{3Qx@yt`tOzWfp=2wGei883C4P2Lg@LFMj!xmT6U{e~>v)%c(+HfFp@t&W za3C@OaQEmDw+zvXXsI`Bd4=!=1m}b3KLy-*5?PGS9mckk$OuY)5WjQe`@h?uu~UMF zWY9^L57G!qt7}7jhqB00-9&7KT=z`@(3H#Wnr(vWk0gO;GT-7se{B+4KoaAKb&Hb5 zVLJtoFJ=7)f^s`F{i^hd`%TbO1rU`89uDFVtsQ<%naKXQhw}t^%gEbO~=uAd`0Eype`Nm~$8iyx8B zoU{5<|5T;s2hO!n=)xfqO^wDtV_%Tx08n`X=fKepvhh*?@5uBhnJ$HDw>;6T?@@-b z*uB6{Za`eaR-_&vKMCmrIej z8i3xT(~IjRlw+;||Ko6QRvkt`Z4M|EdB?TLP@MHf`7~vE;_Vt+3eA(1#*zdaN6BJf zumxqQ$M|XjxMe5)toRts;g6j^iEYEr*Z6B^_h=k3xX9p6*f;?7er!ltI4{Pif&%;l z!&lhs)G~abfW-ER{6Iz!$Sn`?ClUl=oocWW%KR@{ zrYl+^x1(FoIqN^YR7`@UK8vqK;%?|-weJ`M6n=q2Eat> zf_@L@LX@czAaZH8#gzUU_!ywnr&T{M2=IzSqy~Nl;co=V)dNU1*xsJbxoUa3VKC06 zXUavO?>(}MB=d~aav`;CfpNS?clX1to$L1))>ED8x|dz1=S0eqLr+Lsgh>Q0d=yJx z##6O|Z@}%Aw&YS?t5cl$8dNVrbNP!M;Crp+CT-E+VEP-IL-H3Ln?RsQVH8IKV6{4m zC%{<(c7?d|hEv5<76NUw-EQvJ0s6i6{#GURDrzNho|~LSS^$2q2Hk+|NBpgZz+sGe zLFV-=c9)|3v;jcG0)Ve^FdqhLXpbk*3gaNSK6AaO)=08ENL55uvSPbvHJhR1DLts( z4T^HWV_ypaU~BYF0p<(&&5iF3c3)7ngfbrtwh>sQIBZPPOyqty2G_K$-osik?%h%k zKO)`9>V-j@kgXqJMK&tKa=n4T4Ri;Pd;44{%tCf$$U-De>Z%G?$?_|*ZKm~)#-R@& z`%=%5+G@EuH^ylm1tvc3lYlom;mS}wgSSQe764onu_}?+TtF?9&oOT4ty!Od9uYgn z`*HrOI<^C10^@ba%*WTMV(QJ@7OqQq(4G_fHJW(?Sj}WmPSp34NO~>PF_O4XNooWW z|CKh6xQtcA`O1g_=J^;Rw{9>Su68!E_=lal}OPyw;0r!)|dYtUgtj^*5JA&=P=>wv? zAp0eNtczZtmc^osRKb2DrIm_qmC_=|@!iXL1Lh!33cpIPXiS-K5A{EdZ9!&k; z>E@Tr;0!Vh#qlDKdJe`gkSs)U5$t=I8lb_-p??wmmWFfM)E@9-0rinGzQFGl=9`jO z6hW_$NEz<`V42V1z6i;YzsoS4f~XC(-#RB~JPg(lY#-Tn#mSF2Ezk8p*yu+_MOE)D z4r>FfCi6YCXT%!Xy4 zC1D5&473=r(Q!$Mz$+@?%9O^Si0vPzu~r+wT=^FZH(JHT3^B|D&CxOD-Xz$^>XnfE zEZje~xLS&4^W)n{OS_c`iLXl{>D&caE-^7IIs3=Q9`v0Q_kO!C*Eg3M#oonA0MA8ZJV@jQm;<)f2!hiCiKOc2S>*y#Ttd3CDpER zMv8;iaL0tvKBF?H2Uefxs3htHNe=JXKK%myt?_b`9J$En%Rm>{R_z?O7Wt(5W~px- z6c=MPlM@k~E$Udb+~<%_wZ7(rL{mL$44Fj4Sd$|4n$lQe^g7Yp+os)U(;wb@W21*! zT=*i*w!Xcslq<}LPNZdM^C4t-!6!8^9fZf2;W5&jXkOFsx=$8ImFGUUf`wH(nWvWFtg)m}S`eFUw&n~TRP-ha^7?3dQC$?}j68|=t)#CNHG0dvFu`$s8jF^3XDx{DaW3 z1s+cQlr7hF>db3}sG_0v^R$D!YRtNADAxb2(U&l%qleA_oQP2Nw> zCt2F=vbt*HxctP|E4>fv&~fH(-w{5Jo*#Xmc%?5@N7~NR!ugy^_PQ68)zQn#ZW}kH`jt=X%E*Xgr*_oM>UY@BQ8>3>Mt?{B zf_`g!lCKx?>*d!+9`ufKA$~vP%tQS?t;R6fvs`<7LQ-6^vBf7xVOcYD6^|?D8n*UH z9Au_}TrU9vh6btX_^YblTK^)R+g_qMj8_RBFSwLlGEN?*cEm!G{8&u!kXJ2kcJ|3dI-BXSkEs^iT{KmPzn*7bgV0R?&E2qTe% z{+2}gIqaXufIMETVUFxu{Z{Api;U!<{h#_cTJQHy3UuuL(f?zhaAsje_2v^=U-{Vc zskw|k30Bvdc5TZj$^*eDU#3jiGNlqD;+?%OAI8j)ezH7mj%j!N8+v6h$MC5xatNP4 z*imebV|V>)2Bz_NI{Q5JZ|hf?2E&#XV~yjpg}e;u3$g6U&W|L` z+qW|+RVwRf@WOwtmmPlebJ_p)6M)J6I`hA@gmPAZtVJ~pHcA?ud6dbM%5m?d|Ely2 zEin;RK1D%IYf5TOFdGe9v@`1IN92zGOv^_gkEb>}Ta0W(Q3;rZIVSo9RQBej%i?@% z|7WXmJ`jit9ElfUx|NKW>C>lc>65(MsPX8GIJxqmt`g4Y<~X8jHtny`a=xgv=>XGhL%>e2()3YcLhAMy%TPn~K7BY5l0L8$lkoR)=@?j{&r|j~Cq*%`HC{owb9ge^D24qT~T*u~<&k_DpK+(*OwwD4v z_*8~0z6NoA6l?Q&16M`J!~J+K?5@|RatQ?aUZU02fY6-Dy)Oslb|kzEu%=5R6Z)0J zIj_LQY3P@sv@EfcPnJrP*Ae3#*u>x9gMljutj54DUr5NlDKxsagl_@^`}rhqOBsg_nW`RM9DBHdzxlH=NeD$3irKTiCLr-F&g;nTQWb=)S;xR1U z@y{0;yf*#ghj&-GbM#Ih7?v>$#K*Ds(;WKI-r|^&FEG4Z0q1Ky-1*%b>N5$`FQ3@#|XfLxaici zJQ(B)jX3(v=6KyBuxxHe_Q8R}(wC-^L>lN^n{1{|Rq-ngVDvFZ%et2S=DRIvi7?05 zae+Ou`BKNI9c+M zR)rNTtzb<`O>uO49=Ni2a*oq#Ty%oZaXVIP8ZSstk0eLgIYfY7%Z$FOe$w3ib z`P%bMIAln0`qjOaN^kO=)RK8YD}$1~r|=QzZN&d6)$C%UDxx^v(suXWxwEvTP;4S~ zLs|-?YzZJ>`AUh1Mpixw@)1L5>0Kx+MS8bIF}l>~gP<=$GT{XXL?{IH1)L}X;yxHK zHAW#CLZT0b2O|$4CI$ulpEGlJ7cgStLzA{UojZ5tod5Zs-_(ie>4#hqiL^0-)UAW= z>%;5K4?s^AKi#9TTlATa+;&GzI){w@{yt>m8ABm}Ic=Clk-4M-gC+v1 zfac@QFYZdG`xyckI12ObMba3zP^#piBWRP*PlGD^z*NgRn1u)Vzi+2r9|h)x-`pXm z?4@|GT9I5{a zcg_=Y8mllG3nh6m4o}TK=8l<$$_H2l&CVUC$w*O)nN~oYiwYyxU4y;?{b`rjJ$KGB z2o@2p6frGyjQFD0;w~6nz5UdXF#B=gmul#+cto!~Ebch51u0rSZ4YWG9aXJ5Fwqri zsK;qg*%P8gBF>PVTWCy&K6*m@9?ha?LZ*>BVRa;%LOV)$3=@UU6S7Jyj7Av>jJJsg z7>K+kX~HELl#h>|S4ZPbbs;vua)l<2l_M-Vl<|&zP(oEN5^=Tvq=@N@C&d*v`|mMf z+^eN&h~f;@%WZwM@B&n$YSdb?;6KcSxNB$Fh8JYh7jLiuYzsKYpz$ik)}jqdr`5LW zPL0Q!I*7N9x9US@#V$wB|3chw8lFcyJb>B4Z9#lco1>?EEhdhQws9x#>m@hEq0*|{ zTT~;UBz6sI^Jp1YlW&TV`u4A4z-h4N6m!^9f;`|{LgP)ws#ynrifd&f+6V+8Y$&y` z``D6GtGuC#79kbL{Xdhga_qZSmo0=zh` z#@1(i-8$FXS0`CQtQFQ@uJo2Jd=xp3hAoK2%78Cz`J4IE5Wq{Zilr*13Nm6qHj9Kie+PmPXl_cll}{B5PvIC$X&Du}!&y z>U`3jspqYb?|LIJ3vw6#{XvcfX94$iVV%5MQL&tmgg%~<8%ovrJzh-`A2Pk%h|?gW zN&Jko(o`U%6wV!EOm|MFj*Q5_VVWm|3?(F+l^f;l(ySo~54vU+C@iQ5DL@46-2;DU zkwVG;nxUN4&DkV(RIi?oP90tX4g*U!a>m!F+x^bsd@s3YTo0QV2*2^!#dZ+T%o5Lm zSLB6ZO^b6Mvq#8B1~?xg;$S|^8F~8Z>DS~bRgslfLcjc7R{juc>BVsn@FeU(T#k7s z=`%?l^G*Vua63lsRLibt-6$fR+=$_Dk?BZEU{5{xj@;1XQJVwkN%^2-r{toFhceGq jpU7%wd|n;W)KAmAq#hyk%=^bco!jG$(yx9lH<$hmr;-q` delta 202633 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\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 347/533] #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 = ''; +echo ''; $table->width = '100%'; -$table->class = 'databox filters'; +$table->class = 'databox filters filter-table-adv'; +$table->style[0] = 'width: 50%; max-width: 50%; font-weight: bold;'; +$table->style[2] = 'width: 50%; max-width: 50%; font-weight: bold;'; if (is_metaconsole() === true) { if ($id) { diff --git a/pandora_console/godmode/modules/manage_network_components_form_common.php b/pandora_console/godmode/modules/manage_network_components_form_common.php index 9af6f3911d..81e9cbad33 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_common.php +++ b/pandora_console/godmode/modules/manage_network_components_form_common.php @@ -28,10 +28,10 @@ if (! check_acl($config['id_user'], 0, 'PM') && ! check_acl($config['id_user'], $table = new stdClass(); $table->id = 'network_component'; $table->width = '100%'; -$table->class = 'databox'; +$table->class = 'databox filters filter-table-adv'; $table->style = []; -$table->style[0] = 'font-weight: bold'; -$table->style[2] = 'font-weight: bold'; +$table->style[0] = 'width: 50%'; +$table->style[2] = 'width: 50%'; $table->colspan = []; if (!enterprise_installed()) { $table->colspan[0][1] = 3; @@ -43,8 +43,10 @@ $table_simple->colspan[8][1] = 4; $table_simple->colspan[9][1] = 4; $table->data = []; -$table->data[0][0] = __('Name'); -$table->data[0][1] = html_print_input_text('name', $name, '', 55, 255, true); +$table->data[0][0] = html_print_label_input_block( + __('Name'), + html_print_input_text('name', $name, '', 55, 255, true) +); if (enterprise_installed()) { if (defined('METACONSOLE')) { $table->data[0][2] = __('Wizard level'); @@ -53,15 +55,19 @@ if (enterprise_installed()) { 'advanced' => __('Advanced'), ]; // TODO review help tips on meta. - $table->data[0][3] = html_print_select($wizard_levels, 'wizard_level', $wizard_level, '', '', -1, true, false, false).' '; + $table->data[0][1] = html_print_label_input_block( + __('Wizard level'), + html_print_select($wizard_levels, 'wizard_level', $wizard_level, '', '', -1, true, false, false).' ' + ); // .ui_print_help_icon('meta_access', true) } else { - $table->data[0][2] = ''; - $table->data[0][3] = html_print_input_hidden('wizard_level', $wizard_level, true); + $table->data[0][1] = html_print_label_input_block( + '', + html_print_input_hidden('wizard_level', $wizard_level, true) + ); } } -$table->data[1][0] = __('Type').' '.ui_print_help_icon($help_type, true, '', 'images/help_green.png', '', 'module_type_help'); $sql = sprintf( 'SELECT id_tipo, descripcion FROM ttipo_modulo @@ -69,22 +75,25 @@ $sql = sprintf( ORDER BY id_tipo ASC', implode(',', $categories) ); -$table->data[1][1] = html_print_select_from_sql( - $sql, - 'type', - $type, - 'javascript: type_change();', - '', - '', - true, - false, - false, - false, - true, - false, - false, - false, - 0 +$table->data[1][0] = html_print_label_input_block( + __('Type').' '.ui_print_help_icon($help_type, true, '', 'images/help_green.png', '', 'module_type_help'), + html_print_select_from_sql( + $sql, + 'type', + $type, + 'javascript: type_change();', + '', + '', + true, + false, + false, + false, + true, + false, + false, + false, + 0 + ) ); // Store the relation between id and name of the types on a hidden field @@ -102,50 +111,53 @@ foreach ($type_names as $tn) { $type_names_hash[$tn['id_tipo']] = $tn['nombre']; } -$table->data[1][1] .= html_print_input_hidden( - 'type_names', - base64_encode(json_encode($type_names_hash)), - true +$table->data[1][1] = html_print_label_input_block( + __('Module group'), + html_print_input_hidden( + 'type_names', + base64_encode(json_encode($type_names_hash)), + true + ).html_print_select_from_sql( + 'SELECT id_mg, name + FROM tmodule_group ORDER BY name', + 'id_module_group', + $id_module_group, + '', + '', + '', + true, + false, + false, + false, + true, + false, + false, + false, + 0 + ) ); -$table->data[1][2] = __('Module group'); -$table->data[1][3] = html_print_select_from_sql( - 'SELECT id_mg, name - FROM tmodule_group ORDER BY name', - 'id_module_group', - $id_module_group, - '', - '', - '', - true, - false, - false, - false, - true, - false, - false, - false, - 0 +$table->data[2][0] = html_print_label_input_block( + __('Group'), + html_print_select( + network_components_get_groups(), + 'id_group', + $id_group, + '', + '', + '', + true, + false, + false + ) ); -$table->data[2][0] = __('Group'); -$table->data[2][1] = html_print_select( - network_components_get_groups(), - 'id_group', - $id_group, - '', - '', - '', - true, - false, - false +$table->data[2][1] = html_print_label_input_block( + __('Interval'), + html_print_extended_select_for_time('module_interval', $module_interval, '', '', '0', false, true) ); -$table->data[2][2] = __('Interval'); -$table->data[2][3] = html_print_extended_select_for_time('module_interval', $module_interval, '', '', '0', false, true); -$table->data[3][0] = __('Dynamic Interval'); -$table->data[3][1] = html_print_extended_select_for_time('dynamic_interval', $dynamic_interval, '', 'None', '0', 10, true, 'width:150px', false); -$table->data[3][1] .= ''.html_print_image( +$dynamic_interval_img = ''.html_print_image( 'images/cog.png', true, [ @@ -154,6 +166,22 @@ $table->data[3][1] .= ''.html_print_image( ] ).''; +$table->data[3][0] = html_print_label_input_block( + __('Dynamic Interval'), + '
'.html_print_extended_select_for_time( + 'dynamic_interval', + $dynamic_interval, + '', + 'None', + '0', + 10, + true, + 'width: 200px;', + false, + 'w100p' + ).$dynamic_interval_img.'
' +); + $table->data[3][2] = ''.__('Dynamic Min. ').''; $table->data[3][2] .= html_print_input_text('dynamic_min', $dynamic_min, '', 10, 255, true); $table->data[3][2] .= '
'.__('Dynamic Max.').''; @@ -161,206 +189,286 @@ $table->data[3][2] .= html_print_input_text('dynamic_max', $dynamic_max, '', 10, $table->data[3][3] = ''.__('Dynamic Two Tailed: ').''; $table->data[3][3] .= html_print_checkbox('dynamic_two_tailed', 1, $dynamic_two_tailed, true); -$table->data[4][0] = __('Warning status'); -$table->data[4][1] = ''.__('Min.').'  '; -$table->data[4][1] .= html_print_input_text( - 'min_warning', - $min_warning, +$table->data[3][1] = html_print_label_input_block( '', - 5, - 15, - true -); -$table->data[4][1] .= '
'.__('Max.').' '; -$table->data[4][1] .= html_print_input_text( - 'max_warning', - $max_warning, - '', - 5, - 15, - true -).'
'; -$table->data[4][1] .= ''.__('Str.').'  '; -$table->data[4][1] .= html_print_input_text( - 'str_warning', - $str_warning, - '', - 5, - 1024, - true -).''; -$table->data[4][1] .= '
'.__('Inverse interval').''; -$table->data[4][1] .= html_print_checkbox('warning_inverse', 1, $warning_inverse, true); -$table->data[4][1] .= '
'; - -$table->data[4][1] .= '
'.__('Percentage').''; -$table->data[4][1] .= ui_print_help_tip('Defines threshold as a percentage of value decrease/increment', true); -$table->data[4][1] .= html_print_checkbox('percentage_warning', 1, $percentage_warning, true); -$table->data[4][1] .= '
'; - -$table->data[5][0] .= ''.__('Change to critical status after'); -$table->data[5][1] .= html_print_input_text( - 'warning_time', - $warning_time, - '', - 5, - 15, - true -); -$table->data[5][1] .= '  '.__('intervals in warning status.').''; - -$table->data[4][2] = ' '; -$table->colspan[4][2] = 2; -$table->rowspan[4][2] = 3; - -$table->data[6][0] = __('Critical status'); -$table->data[6][1] = ''.__('Min.').'  '; -$table->data[6][1] .= html_print_input_text( - 'min_critical', - $min_critical, - '', - 5, - 15, - true -); -$table->data[6][1] .= '
'.__('Max.').' '; -$table->data[6][1] .= html_print_input_text( - 'max_critical', - $max_critical, - '', - 5, - 15, - true -).'
'; -$table->data[6][1] .= ''.__('Str.').'  '; -$table->data[6][1] .= html_print_input_text( - 'str_critical', - $str_critical, - '', - 5, - 1024, - true -).''; -$table->data[6][1] .= '
'.__('Inverse interval').''; -$table->data[6][1] .= html_print_checkbox('critical_inverse', 1, $critical_inverse, true); -$table->data[6][1] .= '
'; - -$table->data[6][1] .= '
'.__('Percentage').''; -$table->data[6][1] .= ui_print_help_tip('Defines threshold as a percentage of value decrease/increment', true); -$table->data[6][1] .= html_print_checkbox('percentage_critical', 1, $percentage_critical, true); -$table->data[6][1] .= '
'; - - -$table->data[7][0] = __('FF threshold'); -$table->colspan[7][1] = 3; - -$table->data[7][1] = __('Keep counters'); -$table->data[7][1] .= html_print_checkbox( - 'ff_type', - 1, - $ff_type, - true -).'
'; - -$table->data[7][1] .= html_print_radio_button( - 'each_ff', - 0, - '', - $each_ff, - true -).' '.__('All state changing').' : '; - -$table->data[7][1] .= html_print_input_text( - 'ff_event', - $ff_event, - '', - 5, - 15, - true -).'
'; -$table->data[7][1] .= html_print_radio_button( - 'each_ff', - 1, - '', - $each_ff, - true -).' '.__('Each state changing').' : '; -$table->data[7][1] .= __('To normal'); -$table->data[7][1] .= html_print_input_text( - 'ff_event_normal', - $ff_event_normal, - '', - 5, - 15, - true -).' '; -$table->data[7][1] .= __('To warning'); -$table->data[7][1] .= html_print_input_text( - 'ff_event_warning', - $ff_event_warning, - '', - 5, - 15, - true -).' '; -$table->data[7][1] .= __('To critical'); -$table->data[7][1] .= html_print_input_text( - 'ff_event_critical', - $ff_event_critical, - '', - 5, - 15, - true + '
'.html_print_label_input_block( + __('Dynamic Min. '), + html_print_input_text('dynamic_min', $dynamic_min, '', 10, 255, true, false, false, '', 'w100p mrgn_top_10px'), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px', + ] + ).html_print_label_input_block( + __('Dynamic Max. '), + html_print_input_text('dynamic_max', $dynamic_max, '', 10, 255, true, false, false, '', 'w100p mrgn_top_10px'), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px', + ] + ).html_print_label_input_block( + __('Dynamic Two Tailed: '), + html_print_checkbox('dynamic_two_tailed', 1, $dynamic_two_tailed, true, false, '', false, 'class="mrgn_top_10px"'), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px', + ] + ).'
', + ['label_class' => 'mrgn_btn_0'] ); -$table->data[8][0] = __('Historical data'); -$table->data[8][1] = html_print_checkbox('history_data', 1, $history_data, true); - -$table->data[9][0] = __('Min. Value'); -$table->data[9][1] = html_print_input_text('min', $min, '', 5, 15, true).' '.ui_print_help_tip(__('Any value below this number is discarted'), true); -$table->data[9][2] = __('Max. Value'); -$table->data[9][3] = html_print_input_text('max', $max, '', 5, 15, true).' '.ui_print_help_tip(__('Any value over this number is discarted'), true); -$table->data[10][0] = __('Unit'); -$table->data[10][1] = html_print_input_text('unit', $unit, '', 12, 25, true); - -$table->data[10][2] = __('Discard unknown events'); -$table->data[10][3] = html_print_checkbox( - 'throw_unknown_events', - 1, - network_components_is_disable_type_event(($id === 0) ? false : $id, EVENTS_GOING_UNKNOWN), - true +$table->data[4][0] = html_print_label_input_block( + __('Warning status'), + '
'.html_print_label_input_block( + __('Min.'), + html_print_input_text( + 'min_warning', + $min_warning, + '', + 5, + 15, + true + ), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).html_print_label_input_block( + __('Max.'), + html_print_input_text( + 'max_warning', + $max_warning, + '', + 5, + 15, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Str.'), + html_print_input_text( + 'str_warning', + $str_warning, + '', + 5, + 1024, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Inverse interval'), + html_print_checkbox('warning_inverse', 1, $warning_inverse, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Percentage').ui_print_help_tip(__('Defines threshold as a percentage of value decrease/increment'), true), + html_print_checkbox('percentage_warning', 1, $percentage_warning, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
', + ['label_class' => 'mrgn_btn_0'] ); -$table->data[11][0] = __('Critical instructions').ui_print_help_tip(__('Instructions when the status is critical'), true); -$table->data[11][1] = html_print_textarea('critical_instructions', 2, 65, $critical_instructions, '', true); -$table->colspan[11][1] = 3; +$table->data[4][1] = ' '; +$table->rowspan[4][1] = 3; -$table->data[12][0] = __('Warning instructions').ui_print_help_tip(__('Instructions when the status is warning'), true); -$table->data[12][1] = html_print_textarea('warning_instructions', 2, 65, $warning_instructions, '', true); -$table->colspan[12][1] = 3; +$table->data[5][0] = html_print_label_input_block( + __('Change to critical status after'), + '
'.html_print_input_text( + 'warning_time', + $warning_time, + '', + 5, + 15, + true + ).'  '.__('intervals in warning status.').''.'
', + ['div_id' => 'warning_time'] +); -$table->data[13][0] = __('Unknown instructions').ui_print_help_tip(__('Instructions when the status is unknown'), true); -$table->data[13][1] = html_print_textarea('unknown_instructions', 2, 65, $unknown_instructions, '', true); -$table->colspan[13][1] = 3; +$table->data[6][0] = html_print_label_input_block( + __('Critical status'), + '
'.html_print_label_input_block( + __('Min.'), + html_print_input_text( + 'min_critical', + $min_critical, + '', + 5, + 15, + true + ), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).html_print_label_input_block( + __('Max.'), + html_print_input_text( + 'max_critical', + $max_critical, + '', + 5, + 15, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Str.'), + html_print_input_text( + 'str_critical', + $str_critical, + '', + 5, + 1024, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Inverse interval'), + html_print_checkbox('critical_inverse', 1, $critical_inverse, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Percentage'), + html_print_checkbox('percentage_critical', 1, $percentage_warning, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
', + ['label_class' => 'mrgn_btn_0'] +); -$table->data[14][0] = __('Description'); -$table->data[14][1] = html_print_textarea('description', 2, 65, $description, '', true); -$table->colspan[14][1] = 3; +$table->colspan[7][0] = 2; +$table->data[7][0] = html_print_label_input_block( + __('FF threshold'), + '
'.__('Keep counters').'  '.html_print_checkbox( + 'ff_type', + 1, + $ff_type, + true + ).'
'.html_print_radio_button('each_ff', 0, '', $each_ff, true).' '.__('All state changing').' :  '.html_print_input_text( + 'ff_event', + $ff_event, + '', + 5, + 15, + true + ).' '.html_print_radio_button( + 'each_ff', + 1, + '', + $each_ff, + true + ).' '.__('Each state changing').' :  '.__('To normal').html_print_input_text( + 'ff_event_normal', + $ff_event_normal, + '', + 5, + 15, + true + ).' '.__('To warning').html_print_input_text( + 'ff_event_warning', + $ff_event_warning, + '', + 5, + 15, + true + ).' '.__('To critical').html_print_input_text( + 'ff_event_critical', + $ff_event_critical, + '', + 5, + 15, + true + ).'
', + ['div_id' => 'warning_time'] +); -$next_row = 15; +$table->data[8][0] = html_print_label_input_block( + __('Historical data'), + html_print_checkbox('history_data', 1, $history_data, true) +); + +$table->data[9][0] = html_print_label_input_block( + __('Min. Value'), + html_print_input_text('min', $min, '', 5, 15, true) +); + +$table->data[9][1] = html_print_label_input_block( + __('Max. Value').' '.ui_print_help_tip(__('Any value over this number is discarted'), true), + html_print_input_text('max', $max, '', 5, 15, true) +); + +$table->data[10][0] = html_print_label_input_block( + __('Unit'), + html_print_input_text('unit', $unit, '', 12, 25, true) +); + +$table->data[10][1] = html_print_label_input_block( + __('Discard unknown events'), + html_print_checkbox( + 'throw_unknown_events', + 1, + network_components_is_disable_type_event(($id === 0) ? false : $id, EVENTS_GOING_UNKNOWN), + true + ) +); + +$table->data[11][0] = html_print_label_input_block( + __('Critical instructions').ui_print_help_tip(__('Instructions when the status is critical'), true), + html_print_textarea('critical_instructions', 2, 65, $critical_instructions, '', true) +); + +$table->data[11][1] = html_print_label_input_block( + __('Warning instructions').ui_print_help_tip(__('Instructions when the status is warning'), true), + html_print_textarea('warning_instructions', 2, 65, $warning_instructions, '', true) +); + +$table->data[12][0] = html_print_label_input_block( + __('Unknown instructions').ui_print_help_tip(__('Instructions when the status is unknown'), true), + html_print_textarea('unknown_instructions', 2, 65, $unknown_instructions, '', true) +); + +$table->data[12][1] = html_print_label_input_block( + __('Description'), + html_print_textarea('description', 2, 65, $description, '', true) +); + +$next_row = 13; if (check_acl($config['id_user'], 0, 'PM')) { - $table->data[$next_row][0] = __('Category'); - $table->data[$next_row][1] = html_print_select(categories_get_all_categories('forselect'), 'id_category', $id_category, '', __('None'), 0, true); - $table->data[$next_row][2] = $table->data[$next_row][3] = $table->data[$next_row][4] = ''; + $table->data[$next_row][0] = html_print_label_input_block( + __('Category'), + html_print_select(categories_get_all_categories('forselect'), 'id_category', $id_category, '', __('None'), 0, true) + ); + $table->data[$next_row][1] = ''; $next_row++; } else { // Store in a hidden field if is not visible to avoid delete the value - $table->data[12][1] .= html_print_input_hidden('id_category', $id_category, true); + $table->data[$next_row][0] = html_print_label_input_block( + '', + html_print_input_hidden('id_category', $id_category, true) + ); } -$table->data[$next_row][0] = __('Tags'); - if ($tags == '') { $tags_condition_not = '1 = 1'; $tags_condition_in = '1 = 0'; @@ -370,43 +478,58 @@ if ($tags == '') { $tags_condition_in = "name IN ('".$tags."')"; } -$table->data[$next_row][1] = ''.__('Tags available').'
'; -$table->data[$next_row][1] .= html_print_select_from_sql( - "SELECT name AS name1, name AS name2 - FROM ttag - WHERE $tags_condition_not - ORDER BY name", - 'id_tag_available[]', - '', - '', - '', - '', - true, - true, - false, - false, - 'width: 200px', - '5' -); -$table->data[$next_row][2] = html_print_image('images/darrowright.png', true, ['id' => 'right', 'title' => __('Add tags to module'), 'class' => 'invert_filter']); -$table->data[$next_row][2] .= '



'.html_print_image('images/darrowleft.png', true, ['id' => 'left', 'title' => __('Delete tags to module'), 'class' => 'invert_filter']); -$table->data[$next_row][3] = ''.__('Tags selected').'
'; -$table->data[$next_row][3] .= html_print_select_from_sql( - "SELECT name AS name1, name AS name2 - FROM ttag - WHERE $tags_condition_in - ORDER BY name", - 'id_tag_selected[]', - '', - '', - '', - '', - true, - true, - false, - false, - 'width: 200px', - '5' +$table->colspan[$next_row][0] = 2; +$table->data[$next_row][0] = html_print_label_input_block( + __('Tags'), + '
'.__('Tags available').'
'.html_print_select_from_sql( + "SELECT name AS name1, name AS name2 + FROM ttag + WHERE $tags_condition_not + ORDER BY name", + 'id_tag_available[]', + '', + '', + '', + '', + true, + true, + false, + false, + 'width: 200px', + '5' + ).'
'.html_print_image( + 'images/darrowright.png', + true, + [ + 'id' => 'right', + 'title' => __('Add tags to module'), + 'class' => 'invert_filter', + ] + ).'



'.html_print_image( + 'images/darrowleft.png', + true, + [ + 'id' => 'left', + 'title' => __('Delete tags to module'), + 'class' => 'invert_filter', + ] + ).'
'.__('Tags selected').'
'.html_print_select_from_sql( + "SELECT name AS name1, name AS name2 + FROM ttag + WHERE $tags_condition_in + ORDER BY name", + 'id_tag_selected[]', + '', + '', + '', + '', + true, + true, + false, + false, + 'width: 200px', + '5' + ).'
' ); $next_row++; @@ -685,12 +808,12 @@ $next_row++; //Dynamic_options_advance; function advanced_option_dynamic() { - if($('#network_component-3-2').is(":visible")){ - $('#network_component-3-2').hide(); - $('#network_component-3-3').hide(); + if($('#network_component-3-1').is(":visible")){ + $('#network_component-3-1').hide(); + $('#network_component-3-1').hide(); } else { - $('#network_component-3-2').show(); - $('#network_component-3-3').show(); + $('#network_component-3-1').show(); + $('#network_component-3-1').show(); } } diff --git a/pandora_console/godmode/modules/manage_network_components_form_network.php b/pandora_console/godmode/modules/manage_network_components_form_network.php index f5b0e3a4fb..79ff01eeca 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_network.php +++ b/pandora_console/godmode/modules/manage_network_components_form_network.php @@ -50,226 +50,280 @@ $snmp_versions['2c'] = 'v. 2c'; $snmp_versions['3'] = 'v. 3'; $data = []; -$data[0] = __('Target IP'); -$data[1] = html_print_input_text_extended( - 'target_ip', - $target_ip, - 'target_ip', - '', - 30, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Target IP'), + html_print_input_text_extended( + 'target_ip', + $target_ip, + 'target_ip', + '', + 30, + 10000, + '', + '', + '', + true + ) ); -$data[2] = __('SNMP version'); -$data[3] = html_print_select( - $snmp_versions, - 'snmp_version', - $snmp_version, - '', - '', - '', - true, - false, - false, - '' + +$data[1] = html_print_label_input_block( + __('SNMP version'), + html_print_select( + $snmp_versions, + 'snmp_version', + $snmp_version, + '', + '', + '', + true, + false, + false, + '' + ) ); push_table_row($data, 'row1'); $data = []; -$data[0] = __('Port'); -$data[1] = html_print_input_text('tcp_port', $tcp_port, '', 5, 20, true); -$data[2] = __('SNMP community'); -$data[3] = html_print_input_text( - 'snmp_community', - $snmp_community, - '', - 15, - 60, - true +$data[0] = html_print_label_input_block( + __('Port'), + html_print_input_text('tcp_port', $tcp_port, '', 5, 20, true) +); + +$data[1] = html_print_label_input_block( + __('SNMP community'), + html_print_input_text( + 'snmp_community', + $snmp_community, + '', + 15, + 60, + true + ) ); push_table_row($data, 'snmp_port'); $data = []; -$data[0] = __('SNMP Enterprise String'); -$data[1] = html_print_input_text( - 'snmp_oid', - $snmp_oid, - '', - 30, - 400, - true +$data[0] = html_print_label_input_block( + __('SNMP Enterprise String'), + html_print_input_text( + 'snmp_oid', + $snmp_oid, + '', + 30, + 400, + true + ) ); -$data[2] = __('Auth password'); -$data[3] = html_print_input_password( - 'snmp3_auth_pass', - $snmp3_auth_pass, - '', - 15, - 60, - true -); -$data[3] .= html_print_input_hidden_extended( - 'active_snmp_v3', - 0, - 'active_snmp_v3_mncfn', - true + +$data[1] = html_print_label_input_block( + __('Auth password'), + html_print_input_password( + 'snmp3_auth_pass', + $snmp3_auth_pass, + '', + 15, + 60, + true, + false, + false, + '', + 'off', + true + ).html_print_input_hidden_extended( + 'active_snmp_v3', + 0, + 'active_snmp_v3_mncfn', + true + ) ); push_table_row($data, 'snmp_2'); $data = []; -$data[0] = __('Auth user'); -$data[1] = html_print_input_text( - 'snmp3_auth_user', - $snmp3_auth_user, - '', - 15, - 60, - true +$data[0] = html_print_label_input_block( + __('Auth user'), + html_print_input_text( + 'snmp3_auth_user', + $snmp3_auth_user, + '', + 15, + 60, + true + ) ); -$data[2] = __('Privacy pass'); -$data[3] = html_print_input_password( - 'snmp3_privacy_pass', - $snmp3_privacy_pass, - '', - 15, - 60, - true + +$data[1] = html_print_label_input_block( + __('Privacy pass'), + html_print_input_password( + 'snmp3_privacy_pass', + $snmp3_privacy_pass, + '', + 15, + 60, + true, + false, + false, + '', + 'off', + true + ) ); push_table_row($data, 'field_snmpv3_row1'); $data = []; -$data[0] = __('Privacy method'); -$data[1] = html_print_select( - [ - 'DES' => __('DES'), - 'AES' => __('AES'), - ], - 'snmp3_privacy_method', - $snmp3_privacy_method, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Privacy method'), + html_print_select( + [ + 'DES' => __('DES'), + 'AES' => __('AES'), + ], + 'snmp3_privacy_method', + $snmp3_privacy_method, + '', + '', + '', + true + ) ); -$data[2] = __('Security level'); -$data[3] = html_print_select( - [ - 'noAuthNoPriv' => __('Not auth and not privacy method'), - 'authNoPriv' => __('Auth and not privacy method'), - 'authPriv' => __('Auth and privacy method'), - ], - 'snmp3_security_level', - $snmp3_security_level, - '', - '', - '', - true + +$data[1] = html_print_label_input_block( + __('Security level'), + html_print_select( + [ + 'noAuthNoPriv' => __('Not auth and not privacy method'), + 'authNoPriv' => __('Auth and not privacy method'), + 'authPriv' => __('Auth and privacy method'), + ], + 'snmp3_security_level', + $snmp3_security_level, + '', + '', + '', + true + ) ); push_table_row($data, 'field_snmpv3_row2'); $data = []; -$data[0] = __('Auth method'); -$data[1] = html_print_select( - [ - 'MD5' => __('MD5'), - 'SHA' => __('SHA'), - ], - 'snmp3_auth_method', - $snmp3_auth_method, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Auth method'), + html_print_select( + [ + 'MD5' => __('MD5'), + 'SHA' => __('SHA'), + ], + 'snmp3_auth_method', + $snmp3_auth_method, + '', + '', + '', + true + ) ); -$data[2] = __('Name OID').' '.ui_print_help_icon('xxx', true); -$data[3] = html_print_input_text_extended( - 'name_oid', - $name_oid, - 'name_oid', - '', - 30, - 10000, - '', - '', - '', - true + +$data[1] = html_print_label_input_block( + __('Name OID').' '.ui_print_help_icon('xxx', true), + html_print_input_text_extended( + 'name_oid', + $name_oid, + 'name_oid', + '', + 30, + 10000, + '', + '', + '', + true + ) ); push_table_row($data, 'field_snmpv3_row3'); $data = []; -$data[0] = __('Post process'); -$data[1] = html_print_extended_select_for_post_process( - 'post_process', - $post_process, +$data[0] = html_print_label_input_block( + __('Post process'), + html_print_extended_select_for_post_process( + 'post_process', + $post_process, + '', + '', + '0', + false, + true, + false, + true + ) +); + +$data[1] = html_print_label_input_block( '', - '', - '0', - false, - true, - false, - true + '' ); push_table_row($data, 'field_process'); // Advanced stuff. $data = []; -$data[0] = __('TCP send'); -$data[1] = html_print_textarea('tcp_send', 2, 65, $tcp_send, '', true); -$table->colspan['tcp_send'][1] = 3; +$data[0] = html_print_label_input_block( + __('TCP send'), + html_print_textarea('tcp_send', 2, 65, $tcp_send, '', true) +); +$table->colspan['tcp_send'][0] = 2; push_table_row($data, 'tcp_send'); $data = []; -$data[0] = __('TCP receive'); -$data[1] = html_print_textarea('tcp_rcv', 2, 65, $tcp_rcv, '', true); -$table->colspan['tcp_receive'][1] = 3; +$data[0] = html_print_label_input_block( + __('TCP receive'), + html_print_textarea('tcp_rcv', 2, 65, $tcp_rcv, '', true) +); +$table->colspan['tcp_receive'][0] = 2; push_table_row($data, 'tcp_receive'); $data = []; -$data[0] = __('Command'); -$data[1] = html_print_input_text_extended( - 'command_text', - $command_text, - 'command_text', - '', - 100, - 10000, - $disabledBecauseInPolicy, - '', - $largeClassDisabledBecauseInPolicy, - true +$data[0] = html_print_label_input_block( + __('Command'), + html_print_input_text_extended( + 'command_text', + $command_text, + 'command_text', + '', + 100, + 10000, + $disabledBecauseInPolicy, + '', + $largeClassDisabledBecauseInPolicy, + true + ) ); -$table->colspan['row-cmd-row-1'][1] = 3; +$table->colspan['row-cmd-row-1'][0] = 2; push_table_row($data, 'row-cmd-row-1'); require_once $config['homedir'].'/include/class/CredentialStore.class.php'; $array_credential_identifier = CredentialStore::getKeys('CUSTOM'); -$data[0] = __('Credential identifier'); -$data[1] = html_print_select( - $array_credential_identifier, - 'command_credential_identifier', - $command_credential_identifier, - '', - __('None'), - '', - true, - false, - false, - '', - $disabledBecauseInPolicy +$data[0] = html_print_label_input_block( + __('Credential identifier'), + html_print_select( + $array_credential_identifier, + 'command_credential_identifier', + $command_credential_identifier, + '', + __('None'), + '', + true, + false, + false, + '', + $disabledBecauseInPolicy + ) ); $array_os = [ @@ -278,19 +332,21 @@ $array_os = [ 'windows' => __('Windows'), ]; -$data[2] = __('Target OS'); -$data[3] = html_print_select( - $array_os, - 'command_os', - $command_os, - '', - '', - '', - true, - false, - false, - '', - $disabledBecauseInPolicy +$data[1] = html_print_label_input_block( + __('Target OS'), + html_print_select( + $array_os, + 'command_os', + $command_os, + '', + '', + '', + true, + false, + false, + '', + $disabledBecauseInPolicy + ) ); push_table_row($data, 'row-cmd-row-2'); diff --git a/pandora_console/godmode/modules/manage_network_components_form_plugin.php b/pandora_console/godmode/modules/manage_network_components_form_plugin.php index 6201381cb6..ec536145ec 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_plugin.php +++ b/pandora_console/godmode/modules/manage_network_components_form_plugin.php @@ -32,41 +32,49 @@ global $config; check_login(); $data = []; -$data[0] = __('Plugin'); -$data[1] = html_print_select_from_sql( - 'SELECT id, name FROM tplugin ORDER BY name', - 'id_plugin', - $id_plugin, - 'javascript: load_plugin_macros_fields(\'network_component-macro\')', - __('None'), - 0, - true, - false, - false +$data[0] = html_print_label_input_block( + __('Plugin'), + html_print_select_from_sql( + 'SELECT id, name FROM tplugin ORDER BY name', + 'id_plugin', + $id_plugin, + 'javascript: load_plugin_macros_fields(\'network_component-macro\')', + __('None'), + 0, + true, + false, + false, + false, + 'width: 100%;' + ).html_print_input_hidden('macros', base64_encode($macros), true) + // Store the macros in base64 into a hidden control to move between pages. ); -// Store the macros in base64 into a hidden control to move between pages. -$data[1] .= html_print_input_hidden('macros', base64_encode($macros), true); -$data[2] = __('Post process'); -$data[3] = html_print_extended_select_for_post_process( - 'post_process', - $post_process, - '', - __('Empty'), - '0', - false, - true, - false, - true + +$data[1] = html_print_label_input_block( + __('Post process'), + html_print_extended_select_for_post_process( + 'post_process', + $post_process, + '', + __('Empty'), + '0', + false, + true, + false, + true + ) ); push_table_row($data, 'plugin_1'); // A hidden "model row" to clone it from javascript to add fields dynamicly. $data = []; -$data[0] = 'macro_desc'; -$data[0] .= ui_print_help_tip('macro_help', true); -$data[1] = html_print_input_text('macro_name', 'macro_value', '', 100, 1024, true); -$table->colspan['macro_field'][1] = 3; +$data[0] = html_print_label_input_block( + __('macro_desc').ui_print_help_tip('macro_help', true), + html_print_input_text('macro_name', 'macro_value', '', 100, 1024, true) +); + +$table->colspan['macro_field'][0] = 2; $table->rowstyle['macro_field'] = 'display:none'; push_table_row($data, 'macro_field'); @@ -77,32 +85,44 @@ if (!empty($macros)) { foreach ($macros as $k => $m) { $data = []; - $data[0] = $m['desc']; + $macro_label = $m['desc']; if (!empty($m['help'])) { - $data[0] .= ui_print_help_tip($m['help'], true); + $macro_label .= ui_print_help_tip($m['help'], true); } if ($m['hide'] == 1) { - $data[1] = html_print_input_text( + $macro_input = html_print_input_text( $m['macro'], io_output_password($m['value']), '', 100, 1024, - true + true, + false, + '', + 'w50p' ); } else { - $data[1] = html_print_input_text( + $macro_input = html_print_input_text( $m['macro'], $m['value'], '', 100, 1024, - true + true, + false, + false, + '', + 'w50p' ); } - $table->colspan['macro'.$m['macro']][1] = 3; + $data[0] = html_print_label_input_block( + $macro_label, + $macro_input + ); + + $table->colspan['macro'.$m['macro']][0] = 2; $table->rowclass['macro'.$m['macro']] = 'macro_field'; push_table_row($data, 'macro'.$m['macro']); diff --git a/pandora_console/godmode/modules/manage_network_components_form_wizard.php b/pandora_console/godmode/modules/manage_network_components_form_wizard.php index 190ff655ff..9470037da6 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_wizard.php +++ b/pandora_console/godmode/modules/manage_network_components_form_wizard.php @@ -62,8 +62,8 @@ function generateExtraFields($extra_fields, $protocol) } $data = []; - $data[0] = '
'.$extraFieldText.'
'; - $data[1] = html_print_input_text_extended( + $data[0] = '
'.$extraFieldText.'
'; + $data[0] .= html_print_input_text_extended( 'extra_field_'.$protocol.'_'.$idField, $field, 'extra_field_'.$protocol.'_'.$idField, @@ -76,7 +76,7 @@ function generateExtraFields($extra_fields, $protocol) true ); - $table->colspan['oid-list-'.$rowId.'-row-'.$idField][1] = 3; + $data[1] = ''; push_table_row($data, 'oid-list-'.$rowId.'-row-'.$idField); } @@ -110,7 +110,7 @@ function generateExtraFields($extra_fields, $protocol) 'title' => __('Remove last macro oid'), 'onclick' => 'manageComponentFields(\'del\', \'oid-list-'.$rowId.'\');', 'style' => 'margin-left: 1em;', - 'class' => 'invert_filter', + 'class' => 'invert_filter main_menu_icon', ] ), ], @@ -121,6 +121,7 @@ function generateExtraFields($extra_fields, $protocol) [ 'id' => 'combo_oid_button', 'content' => $image_del.$image_add, + 'class' => 'combo-oid-button', ], true ); @@ -234,259 +235,364 @@ $table->id = 'network_component'; $table->width = '100%'; $table->class = 'databox'; $table->style = []; -$table->style[0] = 'font-weight: bold'; -$table->style[2] = 'font-weight: bold'; +$table->style[0] = 'font-weight: bold;'; +$table->style[1] = 'font-weight: bold;'; $table->colspan = []; if (!enterprise_installed()) { - $table->colspan[0][1] = 3; + $data[1] = ''; } $table->data = []; $data = []; -$data[0] = __('Enabled'); -$data[1] = html_print_checkbox_switch( - 'enabled', - 1, - $enabled, - true, - false, - '', - false +$data[0] = html_print_label_input_block( + __('Enabled'), + html_print_checkbox_switch( + 'enabled', + 1, + $enabled, + true, + false, + '', + false + ) ); -$data[2] = __('Add by default'); -$data[3] = html_print_checkbox_switch( - 'module_enabled', - 1, - $module_enabled, - true, - false, - '', - false +$data[1] = html_print_label_input_block( + __('Add by default'), + html_print_checkbox_switch( + 'module_enabled', + 1, + $module_enabled, + true, + false, + '', + false + ) ); push_table_row($data, 'module-enable-row'); $data = []; -$data[0] = __('Module name'); -$data[1] = html_print_input_text_extended( - 'name', - $name, - 'name', - '', - 50, - 255, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Module name'), + html_print_input_text_extended( + 'name', + $name, + 'name', + '', + 50, + 255, + '', + '', + '', + true + ) ); -$data[2] = __('Module protocol'); -$data[3] = html_print_select( - $module_protocol_list, - 'module_protocol', - $module_protocol, - 'manageVisibleFields()', - '', - '', - true, - false, - false, - '' -).' '.html_print_image( - 'images/'.$module_protocol.'.png', - true, - [ - 'title' => strtoupper($module_protocol).' '.__('Protocol'), - 'class' => 'add_comments_button', - 'style' => 'width: 18px;', - 'id' => 'module_protocol_symbol', - ] -); $type = 4; -$data[4] = html_print_input_hidden('type', $type, true); +$data[1] = html_print_label_input_block( + __('Module protocol'), + '
'.html_print_select( + $module_protocol_list, + 'module_protocol', + $module_protocol, + 'manageVisibleFields()', + '', + '', + true, + false, + false, + '' + ).' '.html_print_image( + 'images/'.$module_protocol.'.png', + true, + [ + 'title' => strtoupper($module_protocol).' '.__('Protocol'), + 'class' => 'add_comments_button ', + 'style' => 'height: 25px;', + 'id' => 'module_protocol_symbol', + ] + ).html_print_input_hidden('type', $type, true).'
' +); push_table_row($data, 'module-name-type-row'); $data = []; +$data[0] = html_print_label_input_block( + __('Name OID'), + html_print_input_text('name_oid', $name_oid, '', 50, 255, true) +); -$data[0] = __('Name OID'); -$data[1] = html_print_input_text('name_oid', $name_oid, '', 50, 255, true); - -$data[2] = __('Manufacturer ID'); -$data[3] = html_print_select_from_sql( - 'SELECT manufacturer as `id`, manufacturer FROM tpen GROUP BY manufacturer', - 'manufacturer_id', - $manufacturer_id, - '', - 'All', - '', - true, - false, - false, - '' +$data[1] = html_print_label_input_block( + __('Manufacturer ID'), + html_print_select_from_sql( + 'SELECT manufacturer as `id`, manufacturer FROM tpen GROUP BY manufacturer', + 'manufacturer_id', + $manufacturer_id, + '', + 'All', + '', + true, + false, + false, + false, + 'width: 100%;' + ) ); push_table_row($data, 'manufacturer-nameOID-snmpRow-row'); $data = []; - -$data[0] = __('Module type'); -$data[1] = html_print_select( - $module_type_list, - 'module_type', - $module_type, - 'changeModuleType()', - '', - '', - true, - false, - false, - '' +$data[0] = html_print_label_input_block( + __('Module type'), + html_print_select( + $module_type_list, + 'module_type', + $module_type, + 'changeModuleType()', + '', + '', + true, + false, + false, + '' + ) ); -$data[2] = __('Component Group'); -$data[3] = html_print_select( - $component_group_list, - 'id_group', - $id_group, - '', - '', - '', - true, - false, - false, - '' +$data[1] = html_print_label_input_block( + __('Component Group'), + html_print_select( + $component_group_list, + 'id_group', + $id_group, + '', + '', + '', + true, + false, + false, + '' + ) ); push_table_row($data, 'moduleType-blockName-row'); $data = []; +$data[0] = html_print_label_input_block( + __('Module unit'), + html_print_extended_select_for_unit( + 'unit', + $unit, + '', + '', + '0', + false, + true, + false, + false + ) +); -$data[0] = __('Module unit'); -$data[1] = html_print_extended_select_for_unit( - 'unit', - $unit, +$data[1] = html_print_label_input_block( '', - '', - '0', - false, - true, - false, - false + '' ); push_table_row($data, 'moduleUnit-blockName-row'); $data = []; -$data[0] = __('Warning'); -// Warning interval values. -$data[1] = ''; -$data[1] .= ''.__('Min.').' '; -$data[1] .= html_print_input_text('min_warning', $min_warning, '', 5, 15, true); -$data[1] .= '
'.__('Max.').' '; -$data[1] .= html_print_input_text('max_warning', $max_warning, '', 5, 15, true); -$data[1] .= '
'; -// Warning string values. -$data[1] .= ''.__('String').'  '; -$data[1] .= html_print_input_text('str_warning', $str_warning, '', 5, 1024, true).''; -// Warning inverse values. -$data[1] .= '
'.__('Inverse interval').' '; -$data[1] .= html_print_checkbox('warning_inverse', 1, $warning_inverse, true); -$data[1] .= '
'; +$data[0] = html_print_label_input_block( + __('Warning status'), + '
'.html_print_label_input_block( + __('Min.'), + html_print_input_text( + 'min_warning', + $min_warning, + '', + 5, + 15, + true + ), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).html_print_label_input_block( + __('Max.'), + html_print_input_text( + 'max_warning', + $max_warning, + '', + 5, + 15, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Str.'), + html_print_input_text( + 'str_warning', + $str_warning, + '', + 5, + 1024, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Inverse interval'), + html_print_checkbox('warning_inverse', 1, $warning_inverse, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Percentage').ui_print_help_tip(__('Defines threshold as a percentage of value decrease/increment'), true), + html_print_checkbox('percentage_warning', 1, $percentage_warning, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
', + ['label_class' => 'mrgn_btn_0'] +); -$data[1] .= '
'.__('Percentage').' '; -$data[1] .= ui_print_help_tip('Defines threshold as a percentage of value decrease/increment', true); -$data[1] .= html_print_checkbox('percentage_warning', 1, $percentage_warning, true); -$data[1] .= '
'; - -$data[2] = ' '; -$table->colspan['warning-svg-row'][2] = 2; -$table->rowspan['warning-svg-row'][2] = 3; +$data[1] = ' '; +$table->rowspan['warning-svg-row'][1] = 3; push_table_row($data, 'warning-svg-row'); $data = []; -$data[0] .= __('Change to critical status after'); -$data[1] .= html_print_input_text('warning_time', $warning_time, '', 5, 15, true); -$data[1] .= '  '.__('intervals in warning status.').''; +$data[0] = html_print_label_input_block( + __('Change to critical status after'), + '
'.html_print_input_text( + 'warning_time', + $warning_time, + '', + 5, + 15, + true + ).'  '.__('intervals in warning status.').''.'
', + ['div_id' => 'warning_time'] +); +$data[1] = ''; + push_table_row($data, 'title-warning-time'); $data = []; -$data[0] = __('Critical'); -// Critical interval values. -$data[1] = ''; -$data[1] .= ''.__('Min.').' '; -$data[1] .= html_print_input_text( - 'min_critical', - $min_critical, - '', - 5, - 15, - true +$data[0] = html_print_label_input_block( + __('Critical status'), + '
'.html_print_label_input_block( + __('Min.'), + html_print_input_text( + 'min_critical', + $min_critical, + '', + 5, + 15, + true + ), + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).html_print_label_input_block( + __('Max.'), + html_print_input_text( + 'max_critical', + $max_critical, + '', + 5, + 15, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Str.'), + html_print_input_text( + 'str_critical', + $str_critical, + '', + 5, + 1024, + true + ).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Inverse interval'), + html_print_checkbox('critical_inverse', 1, $critical_inverse, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
'.html_print_label_input_block( + __('Percentage'), + html_print_checkbox('percentage_critical', 1, $percentage_warning, true).'
', + [ + 'label_class' => 'font-title-font', + 'div_class' => 'mrgn_right_10px flex flex_column', + ] + ).'
', + ['label_class' => 'mrgn_btn_0'] ); -$data[1] .= '
'.__('Max.').' '; -$data[1] .= html_print_input_text( - 'max_critical', - $max_critical, - '', - 5, - 15, - true -); -$data[1] .= ''; -// Critical string values. -$data[1] .= ''.__('String').'  '; -$data[1] .= html_print_input_text('str_critical', $str_critical, '', 5, 1024, true).''; -// Critical inverse values. -$data[1] .= '
'.__('Inverse interval').' '; -$data[1] .= html_print_checkbox('critical_inverse', 1, $critical_inverse, true); -$data[1] .= '
'; - -$data[1] .= ''.__('Percentage').' '; -$data[1] .= ui_print_help_tip('Defines threshold as a percentage of value decrease/increment', true); -$data[1] .= html_print_checkbox('percentage_critical', 1, $percentage_critical, true); -$data[1] .= '
'; push_table_row($data, 'critical-row'); $data = []; -$data[0] = __('Description'); -$data[1] = html_print_textarea('description', 2, 65, $description, '', true); -$table->colspan['module-description-row'][1] = 3; +$data[0] = html_print_label_input_block( + __('Description'), + html_print_textarea('description', 2, 65, $description, '', true) +); + +$data[1] = ''; push_table_row($data, 'module-description-row'); $data = []; -$data[0] = __('Scan Type'); -$data[1] = html_print_select( - $scan_type_list, - 'scan_type', - $scan_type, - '', - '', - '', - true, - false, - false, - '' +$data[0] = html_print_label_input_block( + __('Scan Type'), + html_print_select( + $scan_type_list, + 'scan_type', + $scan_type, + '', + '', + '', + true, + false, + false, + '' + ) ); -$data[2] = __('Execution type'); -$data[3] = html_print_select( - $execution_type_list, - 'execution_type', - $execution_type, - 'manageVisibleFields()', - '', - '', - true, - false, - false, - '' +$data[1] = html_print_label_input_block( + __('Execution type'), + html_print_select( + $execution_type_list, + 'execution_type', + $execution_type, + 'manageVisibleFields()', + '', + '', + true, + false, + false, + '' + ) ); push_table_row($data, 'scan-execution-row'); @@ -495,24 +601,28 @@ push_table_row($data, 'scan-execution-row'); // SNMP rows. // $data = []; -$data[0] = __('Value OID'); -$data[1] = html_print_input_text_extended( - 'value_oid', - (string) $value, - 'value_oid', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Value OID'), + html_print_input_text_extended( + 'value_oid', + (string) $value, + 'value_oid', + '', + 100, + 10000, + '', + '', + 'style="width: 100%; max-width: 100%;"', + true + ) ); -$table->colspan['value-oid-networkRow-snmpRow'][1] = 3; + +$data[1] = ''; push_table_row($data, 'value-oid-networkRow-snmpRow'); $data = []; $data[0] = __('Macros OID'); +$data[1] = ''; push_table_row($data, 'title-oid-macros-pluginRow-snmpRow'); @@ -520,113 +630,134 @@ push_table_row($data, 'title-oid-macros-pluginRow-snmpRow'); generateExtraFields($macros, 'snmp'); $data = []; -$data[0] = __('Value operation'); -$data[1] = html_print_input_text_extended( - 'value_operation_snmp', - $macros->value_operation, - 'value_operation_snmp', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Value operation'), + html_print_input_text_extended( + 'value_operation_snmp', + $macros->value_operation, + 'value_operation_snmp', + '', + 100, + 10000, + '', + '', + 'style="width: 100%; max-width: 100%;"', + true + ) ); -$table->colspan['value-operation-pluginRow-snmpRow'][1] = 3; +$data[1] = ''; push_table_row($data, 'value-operation-pluginRow-snmpRow'); $data = []; -$data[0] = __('Satellite execution'); -$data[1] = html_print_input_text_extended( - 'satellite_execution_snmp', - $macros->satellite_execution, - 'satellite_execution_snmp', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Satellite execution'), + html_print_input_text_extended( + 'satellite_execution_snmp', + $macros->satellite_execution, + 'satellite_execution_snmp', + '', + 100, + 10000, + '', + '', + 'style="width: 100%; max-width: 100%;"', + true + ) ); -$table->colspan['satellite-execution-pluginRow-snmpRow'][1] = 3; +$data[1] = ''; push_table_row($data, 'satellite-execution-pluginRow-snmpRow'); $data = []; -$data[0] = __('Server plugin'); -$data[1] = html_print_select( - $server_plugin_list, - 'server_plugin_snmp', - $macros->server_plugin, - 'changePlugin()', - '', - '', - true, - false, - false, - '' -).'   '; +$data[0] = html_print_label_input_block( + __('Server plugin'), + html_print_select( + $server_plugin_list, + 'server_plugin_snmp', + $macros->server_plugin, + 'changePlugin()', + '', + '', + true, + false, + false, + '', + false, + 'width: 100%; max-width: 100%;' + ).'   ' +); + +$data[1] = ''; push_table_row($data, 'server-plugin-pluginRow-snmpRow'); // The creation of this fields will be dynamically. $data = []; -$data[0] = 'field0'; -$data[1] = html_print_input_text_extended( - 'field0_snmp_field', - '', - 'field0_snmp_fields', - '', - 30, - 255, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + 'field0', + html_print_input_text_extended( + 'field0_snmp_field', + '', + 'field0_snmp_fields', + '', + 30, + 255, + '', + '', + '', + true + ) ); +$data[1] = ''; + push_table_row($data, 'plugin-snmp-fields-dynamicMacroRow-pluginRow-snmpRow-0'); // // WMI Fields. // $data = []; -$data[0] = __('WMI class'); -$data[1] = html_print_input_text_extended( - 'wmi_class', - $wmi_class, - 'wmi_class', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('WMI class'), + html_print_input_text_extended( + 'wmi_class', + $wmi_class, + 'wmi_class', + '', + 100, + 10000, + '', + '', + '', + true + ) ); -$table->colspan['wmi-class-wmiRow'][1] = 3; + +$data[1] = ''; push_table_row($data, 'wmi-class-wmiRow'); $data = []; -$data[0] = __('Query key field').' (_field_wmi_0_)'; -$data[1] = html_print_input_text_extended( - 'query_key_field', - $query_key_field, - 'query_key_field', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Query key field').' (_field_wmi_0_)', + html_print_input_text_extended( + 'query_key_field', + $query_key_field, + 'query_key_field', + '', + 100, + 10000, + '', + '', + '', + true + ) ); -$table->colspan['query-key-field-wmiRow'][1] = 3; + +$data[1] = ''; push_table_row($data, 'query-key-field-wmiRow'); $data = []; $data[0] = __('Query extra fields'); +$data[1] = ''; push_table_row($data, 'title-extra-field-wmiRow'); @@ -635,34 +766,18 @@ generateExtraFields($macros, 'wmi'); $data = []; $data[0] = __('Query filters'); +$data[1] = ''; $table->style[0] = 'font-weight: bold;'; push_table_row($data, 'title-query-filters-wmiRow'); $data = []; -$data[0] = '
'.__('Scan').'
'; -$data[1] = html_print_input_text_extended( - 'query_filter_scan', - $query_filter['scan'], - 'query_filter_scan', - '', - 100, - 10000, - '', - '', - '', - true -); -$table->colspan['query-filter-scan-wmiRow'][1] = 3; -push_table_row($data, 'query-filter-scan-wmiRow'); - -if ($execution_type == EXECUTION_TYPE_NETWORK) { - $data = []; - $data[0] = '
'.__('Execution').'
'; - $data[1] = html_print_input_text_extended( - 'query_filter_execution', - $query_filter['execution'], - 'query_filter_execution', +$data[0] = html_print_label_input_block( + __('Scan'), + html_print_input_text_extended( + 'query_filter_scan', + $query_filter['scan'], + 'query_filter_scan', '', 100, 10000, @@ -670,106 +785,143 @@ if ($execution_type == EXECUTION_TYPE_NETWORK) { '', '', true + ) +); + +$data[1] = ''; +push_table_row($data, 'query-filter-scan-wmiRow'); + +if ($execution_type == EXECUTION_TYPE_NETWORK) { + $data = []; + $data[0] = html_print_label_input_block( + __('Execution'), + html_print_input_text_extended( + 'query_filter_execution', + $query_filter['execution'], + 'query_filter_execution', + '', + 100, + 10000, + '', + '', + '', + true + ) ); - $table->colspan['query-filter-execution-wmiRow'][1] = 3; + + $data[1] = ''; push_table_row($data, 'query-filter-execution-wmiRow'); } $data = []; -$data[0] = __('Field value'); -$data[1] = html_print_input_number( - [ - 'name' => 'field_value_filter', - 'value' => $query_filter['field'], - 'id' => 'field_value_filter', - 'min' => 0, - 'return' => true, - ] +$data[0] = html_print_label_input_block( + __('Field value'), + html_print_input_number( + [ + 'name' => 'field_value_filter', + 'value' => $query_filter['field'], + 'id' => 'field_value_filter', + 'min' => 0, + 'return' => true, + ] + ) ); -$data[2] = __('Key string'); -$data[3] = html_print_input_text_extended( - 'key_string_filter', - $query_filter['key_string'], - 'key_string_filter', - '', - 30, - 255, - '', - '', - '', - true +$data[1] = html_print_label_input_block( + __('Key string'), + html_print_input_text_extended( + 'key_string_filter', + $query_filter['key_string'], + 'key_string_filter', + '', + 30, + 255, + '', + '', + '', + true + ) ); push_table_row($data, 'filters-list-fields-networkRow-wmiRow'); $data = []; -$data[0] = __('Value operation'); -$data[1] = html_print_input_text_extended( - 'value_operation_wmi', - $macros->value_operation, - 'value_operation_wmi', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Value operation'), + html_print_input_text_extended( + 'value_operation_wmi', + $macros->value_operation, + 'value_operation_wmi', + '', + 100, + 10000, + '', + '', + '', + true + ) ); -$table->colspan['value-operation-pluginRow-wmiRow'][1] = 3; +$data[1] = ''; push_table_row($data, 'value-operation-pluginRow-wmiRow'); $data = []; -$data[0] = __('Satellite execution'); -$data[1] = html_print_input_text_extended( - 'satellite_execution_wmi', - $macros->satellite_execution, - 'satellite_execution_wmi', - '', - 100, - 10000, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + __('Satellite execution'), + html_print_input_text_extended( + 'satellite_execution_wmi', + $macros->satellite_execution, + 'satellite_execution_wmi', + '', + 100, + 10000, + '', + '', + '', + true + ) ); -$table->colspan['satellite-execution-pluginRow-wmiRow'][1] = 3; +$data[1] = ''; push_table_row($data, 'satellite-execution-pluginRow-wmiRow'); $data = []; -$data[0] = __('Server plugin'); -$data[1] = html_print_select( - $server_plugin_list, - 'server_plugin_wmi', - $macros->server_plugin, - 'changePlugin()', - '', - '', - true, - false, - false, - '' -).'   '; +$data[0] = html_print_label_input_block( + __('Server plugin'), + html_print_select( + $server_plugin_list, + 'server_plugin_wmi', + $macros->server_plugin, + 'changePlugin()', + '', + '', + true, + false, + false, + '' + ).'   ' +); +$data[1] = ''; push_table_row($data, 'server-plugin-pluginRow-wmiRow'); // The creation of this fields will be dynamically. $data = []; -$data[0] = 'field0'; -$data[1] = html_print_input_text_extended( - 'field0_wmi_field', - '', - 'field0_wmi_fields', - '', - 30, - 255, - '', - '', - '', - true +$data[0] = html_print_label_input_block( + 'field0', + html_print_input_text_extended( + 'field0_wmi_field', + '', + 'field0_wmi_fields', + '', + 30, + 255, + '', + '', + '', + true + ) ); +$data[1] = ''; push_table_row($data, 'plugin-wmi-fields-dynamicMacroRow-pluginRow-wmiRow-0'); diff --git a/pandora_console/godmode/modules/manage_network_components_form_wmi.php b/pandora_console/godmode/modules/manage_network_components_form_wmi.php index 19739691fd..507fbfac4b 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_wmi.php +++ b/pandora_console/godmode/modules/manage_network_components_form_wmi.php @@ -28,41 +28,70 @@ if (! check_acl($config['id_user'], 0, 'PM')) { require_once $config['homedir'].'/include/functions_modules.php'; $data = []; -$data[0] = __('WMI query').' '.ui_print_help_icon('wmi_query_tab', true); -$data[1] = html_print_input_text('snmp_oid', $snmp_oid, '', 25, 255, true); -$data[2] = __('Key string'); -$data[3] = html_print_input_text('snmp_community', $snmp_community, '', 25, 255, true); +$data[0] = html_print_label_input_block( + __('WMI query').' '.ui_print_help_icon('wmi_query_tab', true), + html_print_input_text('snmp_oid', $snmp_oid, '', 25, 255, true) +); + +$data[1] = html_print_label_input_block( + __('Key string'), + html_print_input_text('snmp_community', $snmp_community, '', 25, 255, true) +); push_table_row($data, 'wmi_1'); $data = []; -$data[0] = __('Field number'); -$data[1] = html_print_input_text('tcp_port', $tcp_port, '', 5, 25, true); -$data[2] = __('Namespace'); -$data[3] = html_print_input_text('tcp_send', $tcp_send, '', 25, 255, true); +$data[0] = html_print_label_input_block( + __('Field number'), + html_print_input_text('tcp_port', $tcp_port, '', 5, 25, true) +); + +$data[1] = html_print_label_input_block( + __('Namespace'), + html_print_input_text('tcp_send', $tcp_send, '', 25, 255, true) +); push_table_row($data, 'wmi_2'); $data = []; -$data[0] = __('Username'); -$data[1] = html_print_input_text('plugin_user', $plugin_user, '', 15, 255, true); -$data[2] = __('Password'); -$data[3] = html_print_input_password('plugin_pass', $plugin_pass, '', 25, 255, true); +$data[0] = html_print_label_input_block( + __('Username'), + html_print_input_text('plugin_user', $plugin_user, '', 15, 255, true) +); + +$data[1] = html_print_label_input_block( + __('Password'), + html_print_input_password( + 'plugin_pass', + $plugin_pass, + '', + 25, + 255, + true, + false, + false, + '', + 'off', + true + ) +); push_table_row($data, 'wmi_3'); $data = []; -$data[0] = __('Post process'); -$data[1] = html_print_extended_select_for_post_process( - 'post_process', - $post_process, - '', - __('Empty'), - '0', - false, - true, - false, - true +$data[0] = html_print_label_input_block( + __('Post process'), + html_print_extended_select_for_post_process( + 'post_process', + $post_process, + '', + __('Empty'), + '0', + false, + true, + false, + true + ) ); -$data[2] = $data[3] = ''; +$data[1] = ''; push_table_row($data, 'field_process'); diff --git a/pandora_console/include/javascript/pandora_modules.js b/pandora_console/include/javascript/pandora_modules.js index 4a64a9f2e6..8c964f1259 100644 --- a/pandora_console/include/javascript/pandora_modules.js +++ b/pandora_console/include/javascript/pandora_modules.js @@ -1553,10 +1553,10 @@ function changePlugin() { if (executionType == EXECUTION_TYPE_NETWORK) { displayShow = "none"; } else { - displayShow = "table-row"; + displayShow = "grid"; } - var cntMacrosToGo = 4; + var cntMacrosToGo = 2; var cntMacrosLine = 0; var thisIdLine = ""; // Clear older macros rows. @@ -1589,7 +1589,7 @@ function changePlugin() { description = "unknown"; } - if (cntMacrosToGo == 4) { + if (cntMacrosToGo == 2) { cntMacrosToGo = 0; cntMacrosLine++; thisIdLine = diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index fecc1b5976..8bd4931acb 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -650,6 +650,10 @@ select:-internal-list-box { display: inline-flex; } +.align-center { + align-items: center; +} + .relative { position: relative; } @@ -12226,3 +12230,25 @@ div.parent_graph > p.legend_background > table > tbody > tr { .toggle-traffic-graph { margin: 0px !important; } + +.combo-oid-button { + display: flex !important; + flex-direction: row !important; + flex-wrap: wrap !important; + justify-content: flex-start !important; + align-items: flex-start !important; +} + +tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] + > td:first-child { + padding-bottom: 0px !important; +} + +tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] + > td:last-child { + padding-top: 0px !important; +} + +tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] input { + width: 100% !important; +} From 0ca464846de7b9258715f36aea59168a308ccdbb Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 7 Jun 2023 11:23:12 +0200 Subject: [PATCH 349/533] #11474 Fix metaconsole inventory --- .../include/functions_inventory.php | 4 +- .../operation/inventory/inventory.php | 241 +++++++++--------- 2 files changed, 127 insertions(+), 118 deletions(-) diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 3e1aa3b9d0..fd5482b991 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -744,6 +744,7 @@ function inventory_get_datatable( if ($inventory_module_name[0] !== '0' && $inventory_module_name !== '' && $inventory_module_name !== 'all' + && $inventory_module_name !== '0' ) { array_push($where, "tmodule_inventory.name IN ('".implode("','", (array) $inventory_module_name)."')"); } @@ -807,7 +808,8 @@ function inventory_get_datatable( } foreach ($agent_data as $id_agent => $data_agent) { - $rows_tmp['agent'] = $data_agent['name_agent']; + $rows_tmp['agent'] = $data_agent[0]['name_agent']; + foreach ($data_agent as $key => $agent_row) { $data_agent[$key]['timestamp'] = $agent_row['last_update_timestamp']; $data_agent[$key]['utimestamp'] = $agent_row['last_update']; diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index c41009d330..6745e88e8e 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -150,6 +150,7 @@ if (is_ajax() === true) { } $id = !empty($agent['id_agente']) ? $agent['id_agente'] : $agent['id_agent']; + $id = !empty($id) ? $id : $agent['id_tagente']; $tmp->alias .= $agent['alias']; $ip = ''.__('N/A').''; @@ -329,7 +330,7 @@ $inventory_search_string = (string) get_parameter('search_string'); $order_by_agent = (bool) get_parameter('order_by_agent'); $export = (string) get_parameter('export'); $utimestamp = (int) get_parameter('utimestamp'); -$submit_filter = (bool) get_parameter('submit_filter'); +$submit_filter = (bool) get_parameter('srcbutton'); $pagination_url_parameters = [ 'inventory_id_agent' => $inventory_id_agent, @@ -361,6 +362,7 @@ if ($is_metaconsole === true) { if ($is_metaconsole === true) { $nodo_image_url = $config['homeurl'].'/images/node.png'; if ($id_server > 0) { + // $agent_selected = io_safe_output($inventory_agent), true); $connection = metaconsole_get_connection_by_id($id_server); $agents_node = metaconsole_get_agents_servers($connection['server_name'], $inventory_id_group); $node = metaconsole_get_servers($id_server); @@ -377,6 +379,7 @@ if ($is_metaconsole === true) { WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory'; if ($inventory_id_agent > 0) { $sql .= ' AND id_agente = '.$inventory_id_agent; + $agents_node = [$inventory_id_agent => $inventory_id_agent]; } $result_module = db_get_all_rows_sql($sql); @@ -422,10 +425,10 @@ if ($is_metaconsole === true) { WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory'; if ($inventory_id_agent > 0) { $sql .= ' AND id_agente = '.$inventory_id_agent; + $agents_node = [$inventory_id_agent => $inventory_id_agent]; } $result = db_get_all_rows_sql($sql); - if ($result !== false) { $result_module = array_merge($result_module, $result); if ($submit_filter === true) { @@ -446,7 +449,6 @@ if ($is_metaconsole === true) { $data_tmp['dbhost'] = $server['dbhost']; $data_tmp['server_uid'] = $server['server_uid']; $data_tmp['data'] = $rows_meta; - $nodos[$server['id']] = $data_tmp; if ($result_data !== ERR_NODATA) { $inventory_data .= $result_data; @@ -728,8 +730,8 @@ ui_toggle( 'white-box-content', 'box-flat white_table_graph fixed_filter_bar' ); - -if (is_metaconsole() === true) { +/* + if (is_metaconsole() === true) { $filteringFunction = 'active_inventory_submit()'; ui_print_info_message(['no_close' => true, 'message' => __('You must select at least one filter.'), 'force_class' => 'select_one_filter']); ?> @@ -750,10 +752,11 @@ if (is_metaconsole() === true) { } $row) { $columns = explode(';', io_safe_output($row['data_format'])); array_push($columns, 'Timestamp'); @@ -793,66 +796,68 @@ if ($inventory_module !== 'basic') { array_push($data, (object) $row_tmp); } } - - $id_table = 'id_'.$row['id_module_inventory'].'_'.$nodo['server_uid']; - - $table = ui_print_datatable( - [ - 'id' => $id_table, - 'class' => 'info_table', - 'style' => 'width: 99%', - 'columns' => $columns, - 'column_names' => $columns, - 'no_sortable_columns' => [], - 'data_element' => $data, - 'searching' => true, - 'dom_elements' => 'lftipB', - 'order' => [ - 'field' => $columns[0], - 'direction' => 'asc', - ], - 'zeroRecords' => __('No inventory found'), - 'emptyTable' => __('No inventory found'), - 'return' => true, - 'default_pagination' => 10, - 'no_sortable_columns' => [-1], - ] - ); - - $modules .= ui_toggle( - $table, - ''.$row['name'].'', - '', - '', - true, - true, - '', - 'white-box-content w100p', - 'box-shadow white_table_graph w100p', - 'images/arrow_down_green.png', - 'images/arrow_right_green.png', - false, - false, - false, - '', - '', - null, - null, - false, - $id_table - ); } - $agents .= ui_toggle( - $modules, - $agent_rows['agent'], + $id_table = 'id_'.$row['id_module_inventory'].'_'.$nodo['server_uid']; + $table = ui_print_datatable( + [ + 'id' => $id_table, + 'class' => 'info_table w100p', + 'style' => 'width: 99%', + 'columns' => $columns, + 'column_names' => $columns, + 'no_sortable_columns' => [], + 'data_element' => $data, + 'searching' => true, + 'dom_elements' => 'ftip', + 'order' => [ + 'field' => $columns[0], + 'direction' => 'asc', + ], + 'zeroRecords' => __('No inventory found'), + 'emptyTable' => __('No inventory found'), + 'return' => true, + 'default_pagination' => 10, + 'no_sortable_columns' => [-1], + ] + ); + + $modules .= ui_toggle( + $table, + ''.$row['name'].'', '', '', true, - true + true, + '', + 'white-box-content w100p', + 'box-shadow white_table_graph w100p', + 'images/arrow_down_green.png', + 'images/arrow_right_green.png', + false, + false, + false, + '', + '', + null, + null, + false, + $id_table ); } + $agents .= ui_toggle( + $modules, + $agent_rows['agent'], + '', + '', + true, + true, + '', + 'white-box-content w100p', + 'box-shadow white_table_graph w100p', + ); + $node_name = $nodo['server_name']; if ($count[$nodo['server_name']] > 1) { $node_name .= ' ('.$nodo['dbhost'].')'; @@ -877,12 +882,12 @@ if ($inventory_module !== 'basic') { foreach ($nodos as $nodo_key => $nodo) { $agents = ''; - foreach ($nodo['data'] as $module_rows) { + $data = []; + foreach ($nodo['data'] as $module_key => $module_rows) { $agent = ''; foreach ($module_rows as $row) { $columns = explode(';', io_safe_output($row['data_format'])); array_push($columns, 'Timestamp'); - $data = []; $data_explode = explode(PHP_EOL, $row['data']); foreach ($data_explode as $values) { @@ -903,67 +908,69 @@ if ($inventory_module !== 'basic') { array_push($data, $data_tmp); } } - - - $id_table = 'id_'.$row['id_module_inventory'].'_'.$nodo['server_uid']; - - $table = ui_print_datatable( - [ - 'id' => $id_table, - 'class' => 'info_table', - 'style' => 'width: 99%', - 'columns' => $columns, - 'column_names' => $columns, - 'no_sortable_columns' => [], - 'data_element' => $data, - 'searching' => true, - 'dom_elements' => 'lftipB', - 'order' => [ - 'field' => $columns[0], - 'direction' => 'asc', - ], - 'zeroRecords' => __('No inventory found'), - 'emptyTable' => __('No inventory found'), - 'return' => true, - 'default_pagination' => 10, - 'no_sortable_columns' => [-1], - ] - ); - - $agent .= ui_toggle( - $table, - ''.$row['name_agent'].'', - '', - '', - true, - true, - '', - 'white-box-content w100p', - 'box-shadow white_table_graph w100p', - 'images/arrow_down_green.png', - 'images/arrow_right_green.png', - false, - false, - false, - '', - '', - null, - null, - false, - $id_table - ); } - $agents .= ui_toggle( - $agent, - $module_rows[0]['name'], + $id_table = 'id_'.$row['id_module_inventory'].'_'.$nodo['server_uid']; + + $table = ui_print_datatable( + [ + 'id' => $id_table, + 'class' => 'info_table w100p', + 'style' => 'width: 99%', + 'columns' => $columns, + 'column_names' => $columns, + 'no_sortable_columns' => [], + 'data_element' => $data, + 'searching' => true, + 'dom_elements' => 'ftip', + 'order' => [ + 'field' => $columns[0], + 'direction' => 'asc', + ], + 'zeroRecords' => __('No inventory found'), + 'emptyTable' => __('No inventory found'), + 'return' => true, + 'default_pagination' => 10, + 'no_sortable_columns' => [-1], + ] + ); + + $agent .= ui_toggle( + $table, + ''.$row['name_agent'].'', '', '', true, - true + true, + '', + 'white-box-content w100p', + 'box-shadow white_table_graph w100p', + 'images/arrow_down_green.png', + 'images/arrow_right_green.png', + false, + false, + false, + '', + '', + null, + null, + false, + $id_table ); } + $agents .= ui_toggle( + $agent, + $module_key, + '', + '', + true, + true, + '', + 'white-box-content w100p', + 'box-shadow white_table_graph w100p', + ); + $node_name = $nodo['server_name']; if ($count[$nodo['server_name']] > 1) { $node_name .= ' ('.$nodo['dbhost'].')'; From 812ad711fa17d0c44fb03b65e0776d1ad14a64b4 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Wed, 7 Jun 2023 11:47:37 +0200 Subject: [PATCH 350/533] 11512-LTS name about modal --- pandora_console/include/functions_menu.php | 7 ++++++- pandora_console/include/styles/pandora.css | 6 ++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index 14ca2c87f6..35ee78db39 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -879,6 +879,11 @@ if (is_ajax()) { $php_sys = json_decode($d->getPHPSetup()); $system_date = json_decode($d->getSystemDate()); + $lts_name = ''; + if (empty($config['lts_name']) === false) { + $lts_name = ' '.$config['lts_name'].''; + } + $fragmentation_status = ''; if ($db_fragmentation->data->tablesFragmentationStatus->status === 1) { $fragmentation_status = html_print_image( @@ -955,7 +960,7 @@ if (is_ajax()) {

'.$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 6bb8e9cbab1d5d890bf8421da89b7089a4014c29 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Wed, 7 Jun 2023 12:22:11 +0200 Subject: [PATCH 351/533] 10953-New styles local component --- .../manage_network_components_form_wizard.php | 55 ++++++++----------- pandora_console/include/styles/pandora.css | 3 + 2 files changed, 27 insertions(+), 31 deletions(-) diff --git a/pandora_console/godmode/modules/manage_network_components_form_wizard.php b/pandora_console/godmode/modules/manage_network_components_form_wizard.php index 9470037da6..914dd88c27 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_wizard.php +++ b/pandora_console/godmode/modules/manage_network_components_form_wizard.php @@ -692,24 +692,20 @@ push_table_row($data, 'server-plugin-pluginRow-snmpRow'); // The creation of this fields will be dynamically. $data = []; -$data[0] = html_print_label_input_block( - 'field0', - html_print_input_text_extended( - 'field0_snmp_field', - '', - 'field0_snmp_fields', - '', - 30, - 255, - '', - '', - '', - true - ) +$data[0] = 'field0'; +$data[1] = html_print_input_text_extended( + 'field0_snmp_field', + '', + 'field0_snmp_fields', + '', + 30, + 255, + '', + '', + '', + true ); -$data[1] = ''; - push_table_row($data, 'plugin-snmp-fields-dynamicMacroRow-pluginRow-snmpRow-0'); // @@ -906,22 +902,19 @@ push_table_row($data, 'server-plugin-pluginRow-wmiRow'); // The creation of this fields will be dynamically. $data = []; -$data[0] = html_print_label_input_block( - 'field0', - html_print_input_text_extended( - 'field0_wmi_field', - '', - 'field0_wmi_fields', - '', - 30, - 255, - '', - '', - '', - true - ) +$data[0] = 'field0'; +$data[1] = html_print_input_text_extended( + 'field0_wmi_field', + '', + 'field0_wmi_fields', + '', + 30, + 255, + '', + '', + '', + true ); -$data[1] = ''; push_table_row($data, 'plugin-wmi-fields-dynamicMacroRow-pluginRow-wmiRow-0'); diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 8bd4931acb..0e70348401 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -12239,16 +12239,19 @@ div.parent_graph > p.legend_background > table > tbody > tr { align-items: flex-start !important; } +tr[id^="network_component-plugin-wmi-fields-dynamicMacroRow-"] > td:first-child, tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] > td:first-child { padding-bottom: 0px !important; } +tr[id^="network_component-plugin-wmi-fields-dynamicMacroRow-"] > td:last-child, tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] > td:last-child { padding-top: 0px !important; } +tr[id^="network_component-plugin-wmi-fields-dynamicMacroRow-"] input, tr[id^="network_component-plugin-snmp-fields-dynamicMacroRow-"] input { width: 100% !important; } From dd375dc73e5c6f3c3382ea18b81bb1f78e2d3d0f Mon Sep 17 00:00:00 2001 From: Jonathan Date: Wed, 7 Jun 2023 12:46:39 +0200 Subject: [PATCH 352/533] #11093 grid background VC --- pandora_console/extras/mr/65.sql | 7 + .../include/ajax/visual_console.ajax.php | 20 +++ pandora_console/include/functions_html.php | 2 +- .../models/VisualConsole/Container.php | 2 + pandora_console/include/styles/pandora.css | 9 ++ .../operation/visual_console/view.php | 149 ++++++++++++++++++ pandora_console/pandoradb.sql | 2 + 7 files changed, 190 insertions(+), 1 deletion(-) create mode 100644 pandora_console/extras/mr/65.sql diff --git a/pandora_console/extras/mr/65.sql b/pandora_console/extras/mr/65.sql new file mode 100644 index 0000000000..fa4315564f --- /dev/null +++ b/pandora_console/extras/mr/65.sql @@ -0,0 +1,7 @@ +START TRANSACTION; + +ALTER TABLE `tlayout` +ADD COLUMN `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc' AFTER `maintenance_mode`, +ADD COLUMN `grid_size` VARCHAR(45) NOT NULL DEFAULT '10px' AFTER `grid_color`; + +COMMIT; diff --git a/pandora_console/include/ajax/visual_console.ajax.php b/pandora_console/include/ajax/visual_console.ajax.php index cd4dde48e1..2eac118171 100644 --- a/pandora_console/include/ajax/visual_console.ajax.php +++ b/pandora_console/include/ajax/visual_console.ajax.php @@ -39,6 +39,7 @@ $graph_javascript = (bool) get_parameter('graph_javascript', false); $force_remote_check = (bool) get_parameter('force_remote_check', false); $update_maintanance_mode = (bool) get_parameter('update_maintanance_mode', false); $load_css_cv = (bool) get_parameter('load_css_cv', false); +$update_grid_style = (bool) get_parameter('update_grid_style', false); if ($render_map) { $width = (int) get_parameter('width', '400'); @@ -126,3 +127,22 @@ if ($update_maintanance_mode === true) { echo json_encode(['result' => $result]); return; } + +if ($update_grid_style === true) { + $idVisualConsole = (int) get_parameter('idVisualConsole', 0); + $color = get_parameter('color', '#CCC'); + $size = get_parameter('size', '10'); + + $values = []; + $values['grid_color'] = $color; + $values['grid_size'] = $size; + + $result = db_process_sql_update( + 'tlayout', + $values, + ['id' => $idVisualConsole] + ); + + echo json_encode(['result' => $result]); + return; +} diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index f3a23ce1e8..a223b3e7f7 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -4423,7 +4423,7 @@ function html_print_checkbox_switch_extended( $name.($idcounter[$name] ? $idcounter[$name] : '') ); - $output = '
'; } + echo ''; + + echo ''; + echo '
'; echo html_print_label(__('Edit'), 'edit-mode', true); echo html_print_checkbox_switch('edit-mode', 1, false, true, $disabled_edit_mode); @@ -768,16 +830,103 @@ if ($edit_capable === true) { visualConsoleManager.visualConsole.enableEditMode(); visualConsoleManager.changeUpdateInterval(0); $('#edit-controls').css('visibility', ''); + $('#grid-controls').css('visibility', ''); } else { visualConsoleManager.visualConsole.disableEditMode(); visualConsoleManager.visualConsole.unSelectItems(); visualConsoleManager.changeUpdateInterval(); // To ms. $('#edit-controls').css('visibility', 'hidden'); + $('#grid-controls').css('visibility', 'hidden'); + $('input[name=grid-mode]').prop('checked', false); + $('#div-grid').remove(); } resetInterval(); }); + $('input[name=grid-mode]').change(function(evente) { + if ($(this).prop('checked')) { + color = $('#grid_color').val(); + size = $('#grid_size').val(); + display_grid(color,size); + $('#grid_img').removeClass('invisible'); + } else { + $('#div-grid').remove(); + $('#grid_img').addClass('invisible'); + } + }); + + $('#button-grid_setup').click(function(){ + if(validate_size()){ + color = $('#grid_color').val(); + size = $('#grid_size').val(); + display_grid(color,size); + $('#dialog_grid').dialog('close'); + save_grid_style(color, size); + } + }); + + $('#grid_size').blur(function(){ + validate_size(); + }); + + function validate_size(){ + if($('#grid_size').val()<2 || $('#grid_size').val()>50){ + $('#grid_size').val('10'); + alert(""); + return false; + } else { + return true; + } + } + + function dialog_grid(){ + $('#dialog_grid').dialog({ + title: '', + resizable: true, + draggable: true, + modal: true, + close: false, + height: 200, + width: 480, + overlay: { + opacity: 0.5, + background: "black" + } + }) + .show(); + } + + function display_grid(color='#ccc', size='10'){ + $('#div-grid').remove(); + var grid = "
"; + $('#visual-console-container').append(grid); + }; + + function save_grid_style(color, size){ + const idVisualConsole = ''; + $.ajax({ + type: "POST", + url: "ajax.php", + dataType: "json", + data: { + page: "include/ajax/visual_console.ajax", + update_grid_style: true, + color: color, + size: size, + idVisualConsole: idVisualConsole, + }, + success: function (data) { + if(data.result) { + alert(""); + } + }, + error: function (err) { + console.error(err); + } + }); + } + // Enable/disable the maintenance mode. $('input[name=maintenance-mode]').click(function(event) { event.preventDefault(); diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 8706e37fed..d873e33097 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1700,6 +1700,8 @@ CREATE TABLE IF NOT EXISTS `tlayout` ( `is_favourite` INT UNSIGNED NOT NULL DEFAULT 0, `auto_adjust` INT UNSIGNED NOT NULL DEFAULT 0, `maintenance_mode` TEXT, + `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc', + `grid_size` VARCHAR(45) NOT NULL DEFAULT '10px', PRIMARY KEY(`id`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From 84107def9f709bbb916c16bfd6769351db6d28d9 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 7 Jun 2023 13:16:00 +0200 Subject: [PATCH 353/533] #11462 Add new css class --- 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..079e77f511 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -785,6 +785,10 @@ select:-internal-list-box { width: 100%; } +.w100pi { + width: 100% !important; +} + /* * HEIGTH PERCENTILE */ From 3771644661996e0568ca99adf41fb7d0d4bb273f Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Wed, 7 Jun 2023 13:32:38 +0200 Subject: [PATCH 354/533] #11428 Add delete agent to warning conditional --- .../godmode/massive/massive_operations.php | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/pandora_console/godmode/massive/massive_operations.php b/pandora_console/godmode/massive/massive_operations.php index b4d4474c20..b08d61ff4c 100755 --- a/pandora_console/godmode/massive/massive_operations.php +++ b/pandora_console/godmode/massive/massive_operations.php @@ -435,12 +435,14 @@ if (is_management_allowed() === false) { $text_warning = __('any node'); } - ui_print_warning_message( - __( - 'This node is configured with centralized mode. To delete agents go to %s', - $text_warning - ) - ); + if ($option == 'delete_agents') { + ui_print_warning_message( + __( + 'This node is configured with centralized mode. To delete agents go to %s', + $text_warning + ) + ); + } } $tip = ''; From aa5658ac0f1a045080aa39b5b8a02075fc41c2fb Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 7 Jun 2023 15:23:42 +0200 Subject: [PATCH 355/533] 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 356/533] 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 357/533] 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 358/533] #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 359/533] 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 995ce673686b2ac1db98a2e83efd248945128e2a Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 8 Jun 2023 09:16:38 +0200 Subject: [PATCH 360/533] #11440 Fixed the way to show the information of the actions in the alerts --- pandora_console/godmode/alerts/alert_view.php | 47 +++++++++++-------- 1 file changed, 27 insertions(+), 20 deletions(-) diff --git a/pandora_console/godmode/alerts/alert_view.php b/pandora_console/godmode/alerts/alert_view.php index e8b906b220..17aec8aef0 100644 --- a/pandora_console/godmode/alerts/alert_view.php +++ b/pandora_console/godmode/alerts/alert_view.php @@ -326,32 +326,39 @@ if (count($actions) == 1 && isset($actions[0])) { } foreach ($action['escalation'] as $k => $v) { - if ($v > 0) { - $table->data[$kaction][$k] = html_print_image( - 'images/tick.png', - true, - ['class' => 'invert_filter'] - ); - } else { - $table->data[$kaction][$k] = html_print_image( - 'images/blade.png', - true - ); - } - - if (count($table->head) <= count($action['escalation'])) { - if ($k == count($action['escalation'])) { - if ($k == 1) { - $table->head[$k] = __('Every time that the alert is fired'); + if (count($table->head) >= count($action['escalation'])) { + if ($k === count($action['escalation'])) { + if ($k === 1) { + $table->head[$kaction] = __('Every time that the alert is fired'); } else { - $table->head[$k] = '>#'.($k - 1); + $table->head[$kaction] = '>#'.($kaction - 1); } } else { - $table->head[$k] = '#'.$k; + $table->head[$kaction] = '#'.($kaction); + if ($v > 0) { + $table->data[$kaction][($kaction + 1)] = html_print_image( + 'images/tick.png', + true, + ['class' => 'invert_filter'] + ); + } else { + $table->data[$kkaction][($kaction + 1)] = html_print_image( + 'images/blade.png', + true + ); + } } } } + $table->head[($kaction + 1)] = '#'.($kaction); + if (count($action['escalation']) === 0) { + $table->data[$kaction][($kaction + 2)] = html_print_image( + 'images/blade.png', + true + ); + } + $action_threshold = ($action['module_action_threshold'] > 0) ? $action['module_action_threshold'] : $action['action_threshold']; if ($action_threshold == 0) { @@ -364,7 +371,7 @@ if (count($actions) == 1 && isset($actions[0])) { ); } - $table->head[($k + 1)] = __('Threshold'); + $table->head[($kaction + 1)] = __('Threshold'); } } From 115b77d7df1d24b0369d28da0c6c2db52a052589 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 09:25:36 +0200 Subject: [PATCH 361/533] #11474 Fix data position --- .../operation/inventory/inventory.php | 133 +++++++++--------- 1 file changed, 67 insertions(+), 66 deletions(-) diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index 6745e88e8e..648f72f5e7 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -362,7 +362,6 @@ if ($is_metaconsole === true) { if ($is_metaconsole === true) { $nodo_image_url = $config['homeurl'].'/images/node.png'; if ($id_server > 0) { - // $agent_selected = io_safe_output($inventory_agent), true); $connection = metaconsole_get_connection_by_id($id_server); $agents_node = metaconsole_get_agents_servers($connection['server_name'], $inventory_id_group); $node = metaconsole_get_servers($id_server); @@ -769,14 +768,14 @@ if ($inventory_module !== 'basic') { foreach ($nodos as $nodo) { $agents = ''; - $data = []; + foreach ($nodo['data'] as $agent_rows) { $modules = ''; foreach ($agent_rows['row'] as $key => $row) { $columns = explode(';', io_safe_output($row['data_format'])); array_push($columns, 'Timestamp'); - + $data = []; $data_rows = explode(PHP_EOL, $row['data']); foreach ($data_rows as $data_row) { // Exclude results don't match filter. @@ -796,35 +795,58 @@ if ($inventory_module !== 'basic') { array_push($data, (object) $row_tmp); } } + + $id_table = 'id_'.$row['id_module_inventory'].'_'.$nodo['server_uid']; + $table = ui_print_datatable( + [ + 'id' => $id_table, + 'class' => 'info_table w100p', + 'style' => 'width: 99%', + 'columns' => $columns, + 'column_names' => $columns, + 'no_sortable_columns' => [], + 'data_element' => $data, + 'searching' => true, + 'dom_elements' => 'ftip', + 'order' => [ + 'field' => $columns[0], + 'direction' => 'asc', + ], + 'zeroRecords' => __('No inventory found'), + 'emptyTable' => __('No inventory found'), + 'return' => true, + 'default_pagination' => 10, + 'no_sortable_columns' => [-1], + ] + ); + + $modules .= ui_toggle( + $table, + ''.$row['name'].'', + '', + '', + true, + true, + '', + 'white-box-content w100p', + 'box-shadow white_table_graph w100p', + 'images/arrow_down_green.png', + 'images/arrow_right_green.png', + false, + false, + false, + '', + '', + null, + null, + false, + $id_table + ); } - $id_table = 'id_'.$row['id_module_inventory'].'_'.$nodo['server_uid']; - $table = ui_print_datatable( - [ - 'id' => $id_table, - 'class' => 'info_table w100p', - 'style' => 'width: 99%', - 'columns' => $columns, - 'column_names' => $columns, - 'no_sortable_columns' => [], - 'data_element' => $data, - 'searching' => true, - 'dom_elements' => 'ftip', - 'order' => [ - 'field' => $columns[0], - 'direction' => 'asc', - ], - 'zeroRecords' => __('No inventory found'), - 'emptyTable' => __('No inventory found'), - 'return' => true, - 'default_pagination' => 10, - 'no_sortable_columns' => [-1], - ] - ); - - $modules .= ui_toggle( - $table, - ''.$row['name'].'', + $agents .= ui_toggle( + $modules, + $agent_rows['agent'], '', '', true, @@ -832,32 +854,9 @@ if ($inventory_module !== 'basic') { '', 'white-box-content w100p', 'box-shadow white_table_graph w100p', - 'images/arrow_down_green.png', - 'images/arrow_right_green.png', - false, - false, - false, - '', - '', - null, - null, - false, - $id_table ); } - $agents .= ui_toggle( - $modules, - $agent_rows['agent'], - '', - '', - true, - true, - '', - 'white-box-content w100p', - 'box-shadow white_table_graph w100p', - ); - $node_name = $nodo['server_name']; if ($count[$nodo['server_name']] > 1) { $node_name .= ' ('.$nodo['dbhost'].')'; @@ -882,9 +881,10 @@ if ($inventory_module !== 'basic') { foreach ($nodos as $nodo_key => $nodo) { $agents = ''; - $data = []; + foreach ($nodo['data'] as $module_key => $module_rows) { $agent = ''; + $data = []; foreach ($module_rows as $row) { $columns = explode(';', io_safe_output($row['data_format'])); array_push($columns, 'Timestamp'); @@ -957,19 +957,20 @@ if ($inventory_module !== 'basic') { false, $id_table ); - } - $agents .= ui_toggle( - $agent, - $module_key, - '', - '', - true, - true, - '', - 'white-box-content w100p', - 'box-shadow white_table_graph w100p', - ); + + $agents .= ui_toggle( + $agent, + $module_key, + '', + '', + true, + true, + '', + 'white-box-content w100p', + 'box-shadow white_table_graph w100p', + ); + } $node_name = $nodo['server_name']; if ($count[$nodo['server_name']] > 1) { From 77909cb0980cbd2205d4fe625febd8173f9aeefb Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 10:26:01 +0200 Subject: [PATCH 362/533] 11518-Tree view policies Search module - fix sql --- pandora_console/include/class/Tree.class.php | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index b6aca966a7..a60d4b4bad 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -1056,6 +1056,7 @@ class Tree $agent_search_filter = $this->getAgentSearchFilter(); $agent_status_filter = $this->getAgentStatusFilter(); $module_search_filter = $this->getModuleSearchFilter(); + $module_status_filter = $this->getModuleStatusFilter(); $module_status_inner = ''; $module_search_inner = ''; $module_search_filter = ''; @@ -1063,9 +1064,9 @@ class Tree if (!empty($this->filter['searchModule'])) { $module_search_inner = ' INNER JOIN tagente_estado tae - ON tae.id_agente_modulo = tam.id_agente_modulo'; - $module_search_filter = "AND tam.disabled = 0 - AND tam.nombre LIKE '%%".$this->filter['searchModule']."%%' ".$this->getModuleStatusFilterFromTestado(); + ON tae.id_agente_modulo = tam_inner.id_agente_modulo'; + $module_search_filter = "AND tam_inner.disabled = 0 + AND tam_inner.nombre LIKE '%%".$this->filter['searchModule']."%%' ".$this->getModuleStatusFilterFromTestado(); } $sql_model = "SELECT %s FROM From cfb9911559631ca1a080f97b954d5d1f9f4b5f13 Mon Sep 17 00:00:00 2001 From: Pablo Aragon Date: Thu, 8 Jun 2023 11:18:05 +0200 Subject: [PATCH 363/533] 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 933f69f2abd754188658cf5b136f6562fa75a96c Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 11:53:13 +0200 Subject: [PATCH 364/533] #11476 Change copyright header --- pandora_console/ajax.php | 2 +- pandora_console/extensions/agents_alerts.php | 2 +- pandora_console/extensions/agents_modules.php | 2 +- pandora_console/extensions/api_checker.php | 2 +- pandora_console/extensions/db_status.php | 2 +- pandora_console/extensions/dbmanager.php | 2 +- pandora_console/extensions/disabled/matrix_events.php | 2 +- pandora_console/extensions/extension_uploader.php | 2 +- pandora_console/extensions/files_repo.php | 2 +- pandora_console/extensions/files_repo/files_repo_form.php | 2 +- pandora_console/extensions/files_repo/files_repo_get_file.php | 2 +- pandora_console/extensions/files_repo/files_repo_list.php | 2 +- .../extensions/files_repo/functions_files_repo.php | 2 +- pandora_console/extensions/insert_data.php | 2 +- pandora_console/extensions/matrix_events/ajax.php | 2 +- pandora_console/extensions/module_groups.php | 2 +- pandora_console/extensions/pandora_logs.php | 2 +- pandora_console/extensions/quick_shell.php | 2 +- pandora_console/extensions/realtime_graphs.php | 2 +- pandora_console/extensions/realtime_graphs/ajax.php | 2 +- pandora_console/extensions/resource_exportation.php | 2 +- pandora_console/extensions/resource_registration.php | 2 +- pandora_console/extensions/users_connected.php | 2 +- pandora_console/general/error_screen.php | 2 +- pandora_console/general/first_task/HA_cluster_builder.php | 2 +- pandora_console/general/first_task/cluster_builder.php | 2 +- pandora_console/general/first_task/collections.php | 2 +- pandora_console/general/first_task/custom_fields.php | 2 +- pandora_console/general/first_task/custom_graphs.php | 2 +- pandora_console/general/first_task/fields_manager.php | 2 +- pandora_console/general/first_task/incidents.php | 2 +- pandora_console/general/first_task/map_builder.php | 2 +- pandora_console/general/first_task/network_map.php | 2 +- pandora_console/general/first_task/omnishell.php | 2 +- pandora_console/general/first_task/planned_downtime.php | 2 +- pandora_console/general/first_task/recon_view.php | 2 +- pandora_console/general/first_task/service_list.php | 2 +- pandora_console/general/first_task/snmp_filters.php | 2 +- pandora_console/general/first_task/tags.php | 2 +- pandora_console/general/footer.php | 2 +- pandora_console/general/header.php | 2 +- pandora_console/general/help_feedback.php | 2 +- pandora_console/general/last_message.php | 2 +- pandora_console/general/links_menu.php | 2 +- pandora_console/general/login_help_dialog.php | 2 +- pandora_console/general/login_page.php | 2 +- pandora_console/general/logoff.php | 2 +- pandora_console/general/logon_failed.php | 2 +- pandora_console/general/logon_ok.php | 2 +- pandora_console/general/main_menu.php | 2 +- pandora_console/general/maintenance.php | 2 +- pandora_console/general/news_dialog.php | 2 +- pandora_console/general/noaccess2.php | 2 +- pandora_console/general/node_deactivated.php | 2 +- pandora_console/general/pandora_help.php | 2 +- pandora_console/general/php_message.php | 2 +- pandora_console/general/register.php | 2 +- pandora_console/general/reporting_console_node.php | 2 +- pandora_console/general/sap_view.php | 2 +- pandora_console/general/ui/agents_list.php | 2 +- pandora_console/godmode/agentes/agent_conf_gis.php | 2 +- pandora_console/godmode/agentes/agent_deploy.php | 2 +- pandora_console/godmode/agentes/agent_incidents.php | 2 +- pandora_console/godmode/agentes/agent_manager.php | 2 +- pandora_console/godmode/agentes/agent_template.php | 2 +- pandora_console/godmode/agentes/agent_wizard.php | 2 +- pandora_console/godmode/agentes/configurar_agente.php | 2 +- pandora_console/godmode/agentes/configure_field.php | 2 +- pandora_console/godmode/agentes/fields_manager.php | 2 +- pandora_console/godmode/agentes/inventory_manager.php | 2 +- pandora_console/godmode/agentes/modificar_agente.php | 2 +- pandora_console/godmode/agentes/module_manager.php | 2 +- pandora_console/godmode/agentes/module_manager_editor.php | 2 +- .../godmode/agentes/module_manager_editor_common.php | 2 +- .../godmode/agentes/module_manager_editor_data.php | 2 +- .../godmode/agentes/module_manager_editor_network.php | 2 +- .../godmode/agentes/module_manager_editor_plugin.php | 2 +- .../godmode/agentes/module_manager_editor_prediction.php | 2 +- pandora_console/godmode/agentes/module_manager_editor_web.php | 2 +- pandora_console/godmode/agentes/module_manager_editor_wmi.php | 2 +- .../godmode/agentes/pandora_networkmap_empty.editor.php | 2 +- pandora_console/godmode/agentes/planned_downtime.editor.php | 2 +- .../godmode/agentes/planned_downtime.export_csv.php | 2 +- pandora_console/godmode/agentes/planned_downtime.list.php | 2 +- .../godmode/agentes/status_monitor_custom_fields.php | 2 +- pandora_console/godmode/alerts/alert_actions.php | 2 +- pandora_console/godmode/alerts/alert_commands.php | 2 +- pandora_console/godmode/alerts/alert_list.builder.php | 2 +- pandora_console/godmode/alerts/alert_list.php | 2 +- pandora_console/godmode/alerts/alert_special_days.php | 2 +- pandora_console/godmode/alerts/alert_templates.php | 2 +- pandora_console/godmode/alerts/alert_view.php | 2 +- pandora_console/godmode/alerts/configure_alert_action.php | 2 +- pandora_console/godmode/alerts/configure_alert_command.php | 2 +- pandora_console/godmode/alerts/configure_alert_template.php | 2 +- pandora_console/godmode/audit_log.php | 2 +- pandora_console/godmode/audit_log_csv.php | 2 +- pandora_console/godmode/category/category.php | 2 +- pandora_console/godmode/category/edit_category.php | 2 +- pandora_console/godmode/consoles/consoles.php | 2 +- pandora_console/godmode/db/db_main.php | 2 +- pandora_console/godmode/events/configuration_sounds.php | 2 +- pandora_console/godmode/events/custom_events.php | 2 +- pandora_console/godmode/events/event_edit_filter.php | 2 +- pandora_console/godmode/events/event_filter.php | 2 +- pandora_console/godmode/events/event_responses.editor.php | 2 +- pandora_console/godmode/events/event_responses.list.php | 2 +- pandora_console/godmode/events/event_responses.php | 2 +- pandora_console/godmode/events/events.php | 2 +- pandora_console/godmode/extensions.php | 2 +- pandora_console/godmode/gis_maps/configure_gis_map.php | 2 +- pandora_console/godmode/groups/configure_group.php | 2 +- pandora_console/godmode/groups/configure_modu_group.php | 2 +- pandora_console/godmode/groups/credential_store.php | 2 +- pandora_console/godmode/groups/group_list.php | 2 +- pandora_console/godmode/groups/modu_group_list.php | 2 +- pandora_console/godmode/groups/tactical.php | 2 +- pandora_console/godmode/massive/massive_add_action_alerts.php | 2 +- pandora_console/godmode/massive/massive_add_alerts.php | 2 +- pandora_console/godmode/massive/massive_add_profiles.php | 2 +- pandora_console/godmode/massive/massive_copy_modules.php | 2 +- .../godmode/massive/massive_delete_action_alerts.php | 2 +- pandora_console/godmode/massive/massive_delete_agents.php | 2 +- pandora_console/godmode/massive/massive_delete_alerts.php | 2 +- pandora_console/godmode/massive/massive_delete_modules.php | 2 +- pandora_console/godmode/massive/massive_delete_profiles.php | 2 +- pandora_console/godmode/massive/massive_edit_agents.php | 2 +- pandora_console/godmode/massive/massive_edit_modules.php | 2 +- pandora_console/godmode/massive/massive_edit_plugins.php | 2 +- pandora_console/godmode/massive/massive_edit_users.php | 2 +- .../godmode/massive/massive_enable_disable_alerts.php | 2 +- pandora_console/godmode/massive/massive_operations.php | 2 +- pandora_console/godmode/massive/massive_standby_alerts.php | 2 +- pandora_console/godmode/menu.php | 2 +- .../godmode/module_library/module_library_view.php | 2 +- .../godmode/modules/configuration_wizard_setup.php | 2 +- pandora_console/godmode/modules/manage_inventory_modules.php | 2 +- .../godmode/modules/manage_inventory_modules_form.php | 2 +- pandora_console/godmode/modules/manage_module_templates.php | 2 +- pandora_console/godmode/modules/manage_nc_groups.php | 2 +- pandora_console/godmode/modules/manage_nc_groups_form.php | 2 +- pandora_console/godmode/modules/manage_network_components.php | 2 +- .../godmode/modules/manage_network_components_form.php | 2 +- .../godmode/modules/manage_network_components_form_common.php | 2 +- .../modules/manage_network_components_form_network.php | 2 +- .../godmode/modules/manage_network_components_form_plugin.php | 2 +- .../godmode/modules/manage_network_components_form_wizard.php | 2 +- .../godmode/modules/manage_network_components_form_wmi.php | 2 +- pandora_console/godmode/modules/manage_network_templates.php | 2 +- .../godmode/modules/manage_network_templates_form.php | 2 +- pandora_console/godmode/modules/module_list.php | 2 +- .../godmode/modules/private_enterprise_numbers.php | 2 +- pandora_console/godmode/netflow/nf_edit.php | 2 +- pandora_console/godmode/netflow/nf_edit_form.php | 4 ++-- pandora_console/godmode/netflow/nf_item_list.php | 2 +- pandora_console/godmode/reporting/create_container.php | 2 +- .../godmode/reporting/graph_builder.graph_editor.php | 2 +- pandora_console/godmode/reporting/graph_builder.main.php | 2 +- pandora_console/godmode/reporting/graph_builder.php | 2 +- pandora_console/godmode/reporting/graph_container.php | 2 +- pandora_console/godmode/reporting/graphs.php | 2 +- pandora_console/godmode/reporting/map_builder.php | 2 +- .../godmode/reporting/reporting_builder.item_editor.php | 2 +- .../godmode/reporting/reporting_builder.list_items.php | 2 +- pandora_console/godmode/reporting/reporting_builder.main.php | 2 +- pandora_console/godmode/reporting/reporting_builder.php | 2 +- .../godmode/reporting/visual_console_builder.data.php | 2 +- .../godmode/reporting/visual_console_builder.editor.php | 2 +- .../godmode/reporting/visual_console_builder.elements.php | 2 +- pandora_console/godmode/reporting/visual_console_builder.php | 2 +- .../godmode/reporting/visual_console_builder.wizard.php | 2 +- pandora_console/godmode/reporting/visual_console_favorite.php | 2 +- pandora_console/godmode/servers/manage_recontask.php | 2 +- pandora_console/godmode/servers/manage_recontask_form.php | 2 +- pandora_console/godmode/servers/modificar_server.php | 2 +- pandora_console/godmode/servers/plugin.php | 2 +- pandora_console/godmode/servers/plugin_registration.php | 2 +- pandora_console/godmode/servers/recon_script.php | 2 +- pandora_console/godmode/servers/servers.build_table.php | 2 +- pandora_console/godmode/setup/file_manager.php | 2 +- pandora_console/godmode/setup/gis.php | 2 +- pandora_console/godmode/setup/gis_step_2.php | 2 +- pandora_console/godmode/setup/license.php | 2 +- pandora_console/godmode/setup/links.php | 2 +- pandora_console/godmode/setup/news.php | 2 +- pandora_console/godmode/setup/os.builder.php | 2 +- pandora_console/godmode/setup/os.list.php | 2 +- pandora_console/godmode/setup/os.php | 2 +- pandora_console/godmode/setup/performance.php | 2 +- pandora_console/godmode/setup/setup.php | 2 +- pandora_console/godmode/setup/setup_auth.php | 2 +- pandora_console/godmode/setup/setup_ehorus.php | 2 +- pandora_console/godmode/setup/setup_external_tools.php | 2 +- pandora_console/godmode/setup/setup_general.php | 2 +- pandora_console/godmode/setup/setup_integria.php | 2 +- pandora_console/godmode/setup/setup_netflow.php | 2 +- pandora_console/godmode/setup/setup_notifications.php | 2 +- pandora_console/godmode/setup/setup_sflow.php | 2 +- pandora_console/godmode/setup/setup_visuals.php | 2 +- pandora_console/godmode/setup/setup_websocket_engine.php | 2 +- pandora_console/godmode/setup/snmp_wizard.php | 2 +- pandora_console/godmode/setup/welcome_tips.php | 2 +- pandora_console/godmode/snmpconsole/snmp_alert.php | 2 +- pandora_console/godmode/snmpconsole/snmp_filters.php | 2 +- pandora_console/godmode/snmpconsole/snmp_trap_generator.php | 2 +- pandora_console/godmode/tag/edit_tag.php | 2 +- pandora_console/godmode/tag/tag.php | 2 +- pandora_console/godmode/um_client/api.php | 2 +- pandora_console/godmode/um_client/index.php | 2 +- .../godmode/update_manager/update_manager.history.php | 2 +- pandora_console/godmode/update_manager/update_manager.php | 2 +- .../godmode/update_manager/update_manager.setup.php | 2 +- pandora_console/godmode/users/configure_profile.php | 2 +- pandora_console/godmode/users/configure_user.php | 2 +- pandora_console/godmode/users/profile_list.php | 2 +- pandora_console/godmode/users/user_list.php | 2 +- pandora_console/godmode/users/user_management.php | 2 +- pandora_console/godmode/wizards/DiscoveryTaskList.class.php | 2 +- pandora_console/godmode/wizards/HostDevices.class.php | 2 +- pandora_console/godmode/wizards/Wizard.main.php | 2 +- pandora_console/include/Image/image_functions.php | 2 +- pandora_console/include/ajax/agent.php | 2 +- pandora_console/include/ajax/audit_log.php | 2 +- pandora_console/include/ajax/custom_fields.php | 2 +- pandora_console/include/ajax/double_auth.ajax.php | 2 +- pandora_console/include/ajax/events.php | 2 +- pandora_console/include/ajax/events_extended.php | 2 +- pandora_console/include/ajax/fav_menu.ajax.php | 2 +- pandora_console/include/ajax/graph.ajax.php | 2 +- pandora_console/include/ajax/group.php | 2 +- pandora_console/include/ajax/heatmap.ajax.php | 2 +- pandora_console/include/ajax/integria_incidents.ajax.php | 2 +- pandora_console/include/ajax/map_enterprise.ajax.php | 2 +- pandora_console/include/ajax/menu.ajax.php | 2 +- pandora_console/include/ajax/module.php | 2 +- pandora_console/include/ajax/order_interpreter.php | 2 +- pandora_console/include/ajax/planned_downtime.ajax.php | 2 +- pandora_console/include/ajax/profile.php | 2 +- pandora_console/include/ajax/reporting.ajax.php | 2 +- pandora_console/include/ajax/skins.ajax.php | 2 +- pandora_console/include/ajax/snmp.ajax.php | 2 +- pandora_console/include/ajax/snmp_browser.ajax.php | 2 +- pandora_console/include/ajax/task_list.ajax.php | 2 +- pandora_console/include/ajax/tips_window.ajax.php | 2 +- pandora_console/include/ajax/tree.ajax.php | 2 +- pandora_console/include/ajax/update_manager.php | 2 +- pandora_console/include/ajax/visual_console.ajax.php | 2 +- pandora_console/include/ajax/visual_console_builder.ajax.php | 2 +- pandora_console/include/ajax/web_server_module_debug.php | 2 +- pandora_console/include/ajax/welcome_window.php | 2 +- pandora_console/include/api.php | 2 +- pandora_console/include/auth/ldap.php | 2 +- pandora_console/include/auth/mysql.php | 2 +- pandora_console/include/chart_generator.php | 2 +- pandora_console/include/class/AgentDeployWizard.class.php | 2 +- pandora_console/include/class/AgentWizard.class.php | 2 +- pandora_console/include/class/AgentsAlerts.class.php | 2 +- pandora_console/include/class/AuditLog.class.php | 2 +- pandora_console/include/class/CalendarManager.class.php | 2 +- pandora_console/include/class/ConfigPEN.class.php | 2 +- pandora_console/include/class/ConsoleSupervisor.php | 2 +- pandora_console/include/class/CredentialStore.class.php | 2 +- pandora_console/include/class/CustomNetScan.class.php | 2 +- pandora_console/include/class/Diagnostics.class.php | 2 +- pandora_console/include/class/EventSound.class.php | 2 +- pandora_console/include/class/ExternalTools.class.php | 2 +- pandora_console/include/class/HTML.class.php | 2 +- pandora_console/include/class/Heatmap.class.php | 2 +- pandora_console/include/class/HelpFeedBack.class.php | 2 +- pandora_console/include/class/ManageNetScanScripts.class.php | 2 +- pandora_console/include/class/ModuleTemplates.class.php | 2 +- pandora_console/include/class/NetworkMap.class.php | 2 +- pandora_console/include/class/OrderInterpreter.class.php | 2 +- pandora_console/include/class/SatelliteAgent.class.php | 2 +- pandora_console/include/class/SatelliteCollection.class.php | 2 +- pandora_console/include/class/SnmpConsole.class.php | 2 +- pandora_console/include/class/TipsWindow.class.php | 2 +- pandora_console/include/class/Tree.class.php | 2 +- pandora_console/include/class/TreeGroup.class.php | 2 +- pandora_console/include/class/TreeGroupEdition.class.php | 2 +- pandora_console/include/class/TreeModule.class.php | 2 +- pandora_console/include/class/TreeModuleGroup.class.php | 2 +- pandora_console/include/class/TreeOS.class.php | 2 +- pandora_console/include/class/TreeService.class.php | 2 +- pandora_console/include/class/TreeTag.class.php | 2 +- pandora_console/include/class/WebServerModuleDebug.class.php | 2 +- pandora_console/include/class/WelcomeWindow.class.php | 2 +- pandora_console/include/config.inc.php | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/include/connection_check.php | 2 +- pandora_console/include/constants.php | 2 +- pandora_console/include/db/mysql.php | 2 +- pandora_console/include/db/oracle.php | 2 +- pandora_console/include/db/postgresql.php | 2 +- pandora_console/include/functions.php | 2 +- pandora_console/include/functions_agents.php | 2 +- pandora_console/include/functions_alerts.php | 2 +- pandora_console/include/functions_api.php | 2 +- pandora_console/include/functions_categories.php | 2 +- pandora_console/include/functions_clippy.php | 2 +- pandora_console/include/functions_component_groups.php | 2 +- pandora_console/include/functions_config.php | 2 +- pandora_console/include/functions_container.php | 2 +- pandora_console/include/functions_credential_store.php | 2 +- pandora_console/include/functions_cron.php | 2 +- pandora_console/include/functions_custom_fields.php | 2 +- pandora_console/include/functions_custom_graphs.php | 2 +- pandora_console/include/functions_db.php | 2 +- pandora_console/include/functions_event_responses.php | 2 +- pandora_console/include/functions_events.php | 2 +- pandora_console/include/functions_exportserver.php | 2 +- pandora_console/include/functions_extensions.php | 2 +- pandora_console/include/functions_filemanager.php | 2 +- pandora_console/include/functions_forecast.php | 2 +- pandora_console/include/functions_gis.php | 2 +- pandora_console/include/functions_graph.php | 2 +- pandora_console/include/functions_groups.php | 2 +- pandora_console/include/functions_groupview.php | 2 +- pandora_console/include/functions_html.php | 2 +- pandora_console/include/functions_incidents.php | 2 +- pandora_console/include/functions_integriaims.php | 2 +- pandora_console/include/functions_inventory.php | 2 +- pandora_console/include/functions_io.php | 2 +- pandora_console/include/functions_maps.php | 2 +- pandora_console/include/functions_massive_operations.php | 2 +- pandora_console/include/functions_menu.php | 2 +- pandora_console/include/functions_messages.php | 2 +- pandora_console/include/functions_migration.php | 2 +- pandora_console/include/functions_modules.php | 2 +- pandora_console/include/functions_netflow.php | 2 +- pandora_console/include/functions_network.php | 2 +- pandora_console/include/functions_network_components.php | 2 +- pandora_console/include/functions_network_profiles.php | 2 +- pandora_console/include/functions_networkmap.php | 2 +- pandora_console/include/functions_networkmaps.php | 2 +- pandora_console/include/functions_notifications.php | 2 +- pandora_console/include/functions_os.php | 2 +- pandora_console/include/functions_pandora_networkmap.php | 2 +- pandora_console/include/functions_planned_downtimes.php | 2 +- pandora_console/include/functions_plugins.php | 2 +- pandora_console/include/functions_post_process.php | 2 +- pandora_console/include/functions_profile.php | 2 +- pandora_console/include/functions_register.php | 2 +- pandora_console/include/functions_reporting.php | 2 +- pandora_console/include/functions_reporting_html.php | 2 +- pandora_console/include/functions_reporting_xml.php | 2 +- pandora_console/include/functions_reports.php | 2 +- pandora_console/include/functions_servers.php | 2 +- pandora_console/include/functions_snmp.php | 2 +- pandora_console/include/functions_snmp_browser.php | 2 +- pandora_console/include/functions_tactical.php | 2 +- pandora_console/include/functions_tags.php | 2 +- pandora_console/include/functions_themes.php | 2 +- pandora_console/include/functions_treeview.php | 2 +- pandora_console/include/functions_ui.php | 2 +- pandora_console/include/functions_ui_renders.php | 2 +- pandora_console/include/functions_update_manager.php | 2 +- pandora_console/include/functions_users.php | 2 +- pandora_console/include/functions_visual_map.php | 2 +- pandora_console/include/functions_visual_map_editor.php | 2 +- pandora_console/include/functions_wmi.php | 2 +- pandora_console/include/get_file.php | 2 +- pandora_console/include/graphs/export_data.php | 2 +- pandora_console/include/graphs/functions_d3.php | 2 +- pandora_console/include/help/clippy/agent_out_of_limits.php | 2 +- .../include/help/clippy/data_configuration_module.php | 2 +- .../include/help/clippy/extension_cron_send_email.php | 2 +- .../include/help/clippy/godmode_agentes_configurar_agente.php | 2 +- .../include/help/clippy/godmode_agentes_modificar_agente.php | 2 +- .../include/help/clippy/godmode_alerts_alert_actions.php | 2 +- .../help/clippy/godmode_alerts_configure_alert_action.php | 2 +- pandora_console/include/help/clippy/homepage.php | 2 +- pandora_console/include/help/clippy/interval_agent_min.php | 2 +- pandora_console/include/help/clippy/module_unknow.php | 2 +- pandora_console/include/help/clippy/modules_not_init.php | 2 +- .../include/help/clippy/modules_not_learning_mode.php | 2 +- .../include/help/clippy/operation_agentes_status_monitor.php | 2 +- .../include/help/clippy/operation_agentes_ver_agente.php | 2 +- pandora_console/include/help/clippy/server_queued_modules.php | 2 +- pandora_console/include/help/clippy/servers_down.php | 2 +- pandora_console/include/help/clippy/topology_group.php | 2 +- pandora_console/include/include_graph_dependencies.php | 2 +- pandora_console/include/lib/Agent.php | 2 +- pandora_console/include/lib/Calendar.php | 2 +- pandora_console/include/lib/Cluster.php | 2 +- pandora_console/include/lib/ClusterModule.php | 2 +- pandora_console/include/lib/ClusterViewer/ClusterManager.php | 2 +- pandora_console/include/lib/ClusterViewer/ClusterWizard.php | 2 +- pandora_console/include/lib/Console.php | 2 +- pandora_console/include/lib/Core/Config.php | 2 +- pandora_console/include/lib/Core/DBMaintainer.php | 2 +- .../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/BasicChart.php | 2 +- .../include/lib/Dashboard/Widgets/BlockHistogram.php | 2 +- .../include/lib/Dashboard/Widgets/ColorModuleTabs.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php | 2 +- .../include/lib/Dashboard/Widgets/EventCardboard.php | 2 +- .../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php | 2 +- .../include/lib/Dashboard/Widgets/ModulesByStatus.php | 2 +- .../include/lib/Dashboard/Widgets/agent_module.php | 2 +- .../include/lib/Dashboard/Widgets/alerts_fired.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/clock.php | 2 +- .../include/lib/Dashboard/Widgets/custom_graph.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/events_list.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/example.php | 2 +- .../include/lib/Dashboard/Widgets/graph_module_histogram.php | 2 +- .../include/lib/Dashboard/Widgets/groups_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/heatmap.php | 2 +- .../include/lib/Dashboard/Widgets/maps_made_by_user.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/maps_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/module_icon.php | 2 +- .../include/lib/Dashboard/Widgets/module_status.php | 2 +- .../include/lib/Dashboard/Widgets/module_table_value.php | 2 +- .../include/lib/Dashboard/Widgets/module_value.php | 2 +- .../include/lib/Dashboard/Widgets/monitor_health.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/network_map.php | 2 +- .../include/lib/Dashboard/Widgets/os_quick_report.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/post.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/reports.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/service_map.php | 2 +- .../include/lib/Dashboard/Widgets/service_view.php | 2 +- .../include/lib/Dashboard/Widgets/single_graph.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/sla_percent.php | 2 +- .../include/lib/Dashboard/Widgets/system_group_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/tactical.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/top_n.php | 2 +- .../include/lib/Dashboard/Widgets/top_n_events_by_group.php | 2 +- .../include/lib/Dashboard/Widgets/top_n_events_by_module.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/tree_view.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/url.php | 2 +- .../include/lib/Dashboard/Widgets/ux_transaction.php | 2 +- .../include/lib/Dashboard/Widgets/wux_transaction.php | 2 +- .../include/lib/Dashboard/Widgets/wux_transaction_stats.php | 2 +- pandora_console/include/lib/Entity.php | 2 +- pandora_console/include/lib/Event.php | 2 +- pandora_console/include/lib/Group.php | 2 +- pandora_console/include/lib/Module.php | 2 +- pandora_console/include/lib/ModuleStatus.php | 2 +- pandora_console/include/lib/ModuleType.php | 2 +- pandora_console/include/lib/PublicLogin.php | 2 +- pandora_console/include/lib/SpecialDay.php | 2 +- pandora_console/include/lib/Tools/Files.php | 2 +- pandora_console/include/lib/Tools/Strings.php | 2 +- pandora_console/include/lib/User.php | 2 +- pandora_console/include/lib/View.php | 2 +- pandora_console/include/load_session.php | 2 +- pandora_console/include/php_to_js_values.php | 2 +- .../include/rest-api/models/VisualConsole/View.php | 2 +- pandora_console/include/websocket_registrations.php | 2 +- pandora_console/index.php | 2 +- pandora_console/install.php | 2 +- pandora_console/mobile/include/db.class.php | 2 +- pandora_console/mobile/include/functions_web.php | 2 +- pandora_console/mobile/include/system.class.php | 2 +- pandora_console/mobile/include/ui.class.php | 2 +- pandora_console/mobile/include/user.class.php | 2 +- pandora_console/mobile/index.php | 2 +- pandora_console/mobile/operation/agent.php | 2 +- pandora_console/mobile/operation/agents.php | 2 +- pandora_console/mobile/operation/alerts.php | 2 +- pandora_console/mobile/operation/events.php | 2 +- pandora_console/mobile/operation/groups.php | 2 +- pandora_console/mobile/operation/home.php | 2 +- pandora_console/mobile/operation/module_data.php | 2 +- pandora_console/mobile/operation/module_graph.php | 2 +- pandora_console/mobile/operation/modules.php | 2 +- pandora_console/mobile/operation/server_status.php | 2 +- pandora_console/mobile/operation/services.php | 2 +- pandora_console/mobile/operation/tactical.php | 2 +- pandora_console/mobile/operation/visualmap.php | 2 +- pandora_console/mobile/operation/visualmaps.php | 2 +- pandora_console/operation/agentes/agent_fields.php | 2 +- pandora_console/operation/agentes/agent_inventory.php | 2 +- pandora_console/operation/agentes/alerts_status.functions.php | 2 +- pandora_console/operation/agentes/alerts_status.php | 2 +- pandora_console/operation/agentes/custom_fields.php | 2 +- pandora_console/operation/agentes/datos_agente.php | 2 +- pandora_console/operation/agentes/ehorus.php | 2 +- pandora_console/operation/agentes/ehorus_client.php | 2 +- pandora_console/operation/agentes/estado_agente.php | 2 +- pandora_console/operation/agentes/estado_generalagente.php | 2 +- pandora_console/operation/agentes/estado_monitores.php | 2 +- pandora_console/operation/agentes/export_csv.php | 2 +- pandora_console/operation/agentes/exportdata.csv.php | 2 +- pandora_console/operation/agentes/exportdata.excel.php | 2 +- pandora_console/operation/agentes/exportdata.php | 2 +- pandora_console/operation/agentes/external_tools.php | 2 +- pandora_console/operation/agentes/gis_view.php | 2 +- pandora_console/operation/agentes/graphs.php | 2 +- pandora_console/operation/agentes/group_view.php | 2 +- .../operation/agentes/interface_traffic_graph_win.php | 2 +- .../operation/agentes/interface_view.functions.php | 2 +- pandora_console/operation/agentes/interface_view.php | 2 +- pandora_console/operation/agentes/log_sources_status.php | 2 +- pandora_console/operation/agentes/networkmap.dinamic.php | 2 +- .../operation/agentes/pandora_networkmap.editor.php | 2 +- pandora_console/operation/agentes/pandora_networkmap.php | 2 +- pandora_console/operation/agentes/pandora_networkmap.view.php | 2 +- pandora_console/operation/agentes/realtime_win.php | 2 +- pandora_console/operation/agentes/snapshot_view.php | 2 +- pandora_console/operation/agentes/stat_win.php | 2 +- pandora_console/operation/agentes/status_events.php | 2 +- pandora_console/operation/agentes/status_monitor.php | 2 +- pandora_console/operation/agentes/tactical.php | 2 +- pandora_console/operation/agentes/url_address.php | 2 +- pandora_console/operation/agentes/ver_agente.php | 2 +- pandora_console/operation/cluster/cluster.php | 2 +- pandora_console/operation/dashboard/dashboard.php | 2 +- pandora_console/operation/dashboard/public_dashboard.php | 2 +- pandora_console/operation/events/events.build_query.php | 2 +- pandora_console/operation/events/events.php | 2 +- pandora_console/operation/events/events_rss.php | 2 +- pandora_console/operation/events/export_csv.php | 2 +- pandora_console/operation/events/sound_events.php | 2 +- pandora_console/operation/gis_maps/ajax.php | 2 +- pandora_console/operation/gis_maps/gis_map.php | 2 +- pandora_console/operation/gis_maps/public_console.php | 2 +- pandora_console/operation/gis_maps/render_view.php | 2 +- pandora_console/operation/heatmap.php | 2 +- .../operation/incidents/configure_integriaims_incident.php | 2 +- .../incidents/dashboard_detail_integriaims_incident.php | 2 +- pandora_console/operation/incidents/incident_statistics.php | 2 +- .../operation/incidents/integriaims_export_csv.php | 2 +- .../operation/incidents/list_integriaims_incidents.php | 2 +- pandora_console/operation/inventory/inventory.php | 2 +- pandora_console/operation/menu.php | 2 +- pandora_console/operation/messages/message_edit.php | 2 +- pandora_console/operation/messages/message_list.php | 2 +- pandora_console/operation/netflow/netflow_explorer.php | 2 +- pandora_console/operation/netflow/nf_live_view.php | 2 +- pandora_console/operation/network/network_report.php | 2 +- pandora_console/operation/network/network_usage_map.php | 2 +- pandora_console/operation/reporting/custom_reporting.php | 2 +- pandora_console/operation/reporting/graph_viewer.php | 2 +- pandora_console/operation/reporting/reporting_viewer.php | 2 +- pandora_console/operation/reporting/reporting_xml.php | 2 +- pandora_console/operation/search_agents.getdata.php | 2 +- pandora_console/operation/search_agents.php | 2 +- pandora_console/operation/search_alerts.getdata.php | 2 +- pandora_console/operation/search_alerts.php | 2 +- pandora_console/operation/search_graphs.getdata.php | 2 +- pandora_console/operation/search_graphs.php | 2 +- pandora_console/operation/search_helps.getdata.php | 2 +- pandora_console/operation/search_helps.php | 2 +- pandora_console/operation/search_main.php | 2 +- pandora_console/operation/search_maps.getdata.php | 2 +- pandora_console/operation/search_maps.php | 2 +- pandora_console/operation/search_modules.getdata.php | 2 +- pandora_console/operation/search_modules.php | 2 +- pandora_console/operation/search_policies.getdata.php | 2 +- pandora_console/operation/search_policies.php | 2 +- pandora_console/operation/search_reports.getdata.php | 2 +- pandora_console/operation/search_reports.php | 2 +- pandora_console/operation/search_results.php | 2 +- pandora_console/operation/search_users.getdata.php | 2 +- pandora_console/operation/search_users.php | 2 +- pandora_console/operation/snmpconsole/snmp_browser.php | 2 +- pandora_console/operation/snmpconsole/snmp_mib_uploader.php | 2 +- pandora_console/operation/snmpconsole/snmp_statistics.php | 2 +- pandora_console/operation/snmpconsole/snmp_view.php | 2 +- pandora_console/operation/tree.php | 2 +- pandora_console/operation/users/user_edit.php | 2 +- pandora_console/operation/users/user_edit_header.php | 2 +- pandora_console/operation/users/user_edit_notifications.php | 2 +- .../operation/visual_console/legacy_public_view.php | 2 +- pandora_console/operation/visual_console/legacy_view.php | 2 +- pandora_console/operation/visual_console/public_console.php | 2 +- pandora_console/operation/visual_console/public_view.php | 2 +- pandora_console/operation/visual_console/render_view.php | 2 +- pandora_console/operation/visual_console/view.php | 2 +- pandora_console/tools/diagnostics.php | 2 +- pandora_console/update_manager_client/api.php | 2 +- .../update_manager_client/lib/UpdateManager/API/Server.php | 2 +- .../update_manager_client/lib/UpdateManager/Client.php | 2 +- .../update_manager_client/lib/UpdateManager/UI/Manager.php | 2 +- .../update_manager_client/lib/UpdateManager/UI/View.php | 2 +- pandora_console/update_manager_client/views/offline.php | 2 +- pandora_console/update_manager_client/views/online.php | 2 +- pandora_console/update_manager_client/views/register.php | 2 +- pandora_console/views/calendar/edit.php | 2 +- pandora_console/views/calendar/list.php | 2 +- pandora_console/views/calendar/special_days.php | 2 +- pandora_console/views/calendar/special_days_edit.php | 2 +- pandora_console/views/cluster/edit.php | 2 +- pandora_console/views/cluster/list.php | 2 +- pandora_console/views/cluster/view.php | 2 +- pandora_console/views/consoles/list.php | 2 +- pandora_console/views/dashboard/cell.php | 2 +- pandora_console/views/dashboard/configurationWidgets.php | 2 +- pandora_console/views/dashboard/formDashboard.php | 2 +- pandora_console/views/dashboard/formSlides.php | 2 +- pandora_console/views/dashboard/header.php | 2 +- pandora_console/views/dashboard/jsLayout.php | 2 +- pandora_console/views/dashboard/layout.php | 2 +- pandora_console/views/dashboard/list.php | 2 +- pandora_console/views/dashboard/listWidgets.php | 2 +- pandora_console/views/dashboard/slides.php | 2 +- pandora_console/views/dashboard/slidesWidget.php | 2 +- pandora_console/views/dashboard/tipsWindow.php | 2 +- pandora_console/views/dashboard/widget.php | 2 +- pandora_console/ws.php | 2 +- .../intel_dcm/extensions/intel_dcm/intel_dcm_lib.php | 2 +- .../intel_dcm/extensions/intel_dcm_agent_management.php | 2 +- pandora_plugins/intel_dcm/extensions/intel_dcm_agent_view.php | 2 +- pandora_plugins/intel_dcm/extensions/intel_dcm_setup.php | 2 +- 605 files changed, 606 insertions(+), 606 deletions(-) diff --git a/pandora_console/ajax.php b/pandora_console/ajax.php index 67ce4e382b..7ea33a1132 100644 --- a/pandora_console/ajax.php +++ b/pandora_console/ajax.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/agents_alerts.php b/pandora_console/extensions/agents_alerts.php index d7101d7e9e..78d3a0a58b 100755 --- a/pandora_console/extensions/agents_alerts.php +++ b/pandora_console/extensions/agents_alerts.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index 4c590f0928..192e7f15c9 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index 9b08815349..f3bb719f7a 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/db_status.php b/pandora_console/extensions/db_status.php index 25965efb0c..85ed5476a2 100755 --- a/pandora_console/extensions/db_status.php +++ b/pandora_console/extensions/db_status.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/dbmanager.php b/pandora_console/extensions/dbmanager.php index 1ec40b79f1..6c785f9d65 100644 --- a/pandora_console/extensions/dbmanager.php +++ b/pandora_console/extensions/dbmanager.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/disabled/matrix_events.php b/pandora_console/extensions/disabled/matrix_events.php index e695e81bcf..3514a21855 100644 --- a/pandora_console/extensions/disabled/matrix_events.php +++ b/pandora_console/extensions/disabled/matrix_events.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/extension_uploader.php b/pandora_console/extensions/extension_uploader.php index d989a3661b..e1aba5b0fd 100644 --- a/pandora_console/extensions/extension_uploader.php +++ b/pandora_console/extensions/extension_uploader.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/files_repo.php b/pandora_console/extensions/files_repo.php index 26e21750bb..8b31b20a16 100644 --- a/pandora_console/extensions/files_repo.php +++ b/pandora_console/extensions/files_repo.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/files_repo/files_repo_form.php b/pandora_console/extensions/files_repo/files_repo_form.php index d96357e87b..265c1a711d 100644 --- a/pandora_console/extensions/files_repo/files_repo_form.php +++ b/pandora_console/extensions/files_repo/files_repo_form.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/files_repo/files_repo_get_file.php b/pandora_console/extensions/files_repo/files_repo_get_file.php index 691581e6a8..778958ae0b 100644 --- a/pandora_console/extensions/files_repo/files_repo_get_file.php +++ b/pandora_console/extensions/files_repo/files_repo_get_file.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License diff --git a/pandora_console/extensions/files_repo/files_repo_list.php b/pandora_console/extensions/files_repo/files_repo_list.php index 2cb464eec3..ab01d0d551 100644 --- a/pandora_console/extensions/files_repo/files_repo_list.php +++ b/pandora_console/extensions/files_repo/files_repo_list.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/files_repo/functions_files_repo.php b/pandora_console/extensions/files_repo/functions_files_repo.php index af70c41874..5b91b68642 100644 --- a/pandora_console/extensions/files_repo/functions_files_repo.php +++ b/pandora_console/extensions/files_repo/functions_files_repo.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/insert_data.php b/pandora_console/extensions/insert_data.php index 3ccf1af688..2ae2fa3013 100644 --- a/pandora_console/extensions/insert_data.php +++ b/pandora_console/extensions/insert_data.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/matrix_events/ajax.php b/pandora_console/extensions/matrix_events/ajax.php index 3931770309..a34d913abe 100644 --- a/pandora_console/extensions/matrix_events/ajax.php +++ b/pandora_console/extensions/matrix_events/ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/module_groups.php b/pandora_console/extensions/module_groups.php index 6d7ac7e4f6..6fcf5fb87d 100644 --- a/pandora_console/extensions/module_groups.php +++ b/pandora_console/extensions/module_groups.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/pandora_logs.php b/pandora_console/extensions/pandora_logs.php index 28dcaa0814..956bc7c1e6 100644 --- a/pandora_console/extensions/pandora_logs.php +++ b/pandora_console/extensions/pandora_logs.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/quick_shell.php b/pandora_console/extensions/quick_shell.php index 21e41cb63a..895290090e 100644 --- a/pandora_console/extensions/quick_shell.php +++ b/pandora_console/extensions/quick_shell.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/realtime_graphs.php b/pandora_console/extensions/realtime_graphs.php index 14ae13c04b..9285a8f4c7 100644 --- a/pandora_console/extensions/realtime_graphs.php +++ b/pandora_console/extensions/realtime_graphs.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/realtime_graphs/ajax.php b/pandora_console/extensions/realtime_graphs/ajax.php index 28cdfb1610..3f911b3371 100644 --- a/pandora_console/extensions/realtime_graphs/ajax.php +++ b/pandora_console/extensions/realtime_graphs/ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/resource_exportation.php b/pandora_console/extensions/resource_exportation.php index 77c4024628..16dca058b1 100755 --- a/pandora_console/extensions/resource_exportation.php +++ b/pandora_console/extensions/resource_exportation.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/resource_registration.php b/pandora_console/extensions/resource_registration.php index d76814e886..589d74413d 100755 --- a/pandora_console/extensions/resource_registration.php +++ b/pandora_console/extensions/resource_registration.php @@ -15,7 +15,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/extensions/users_connected.php b/pandora_console/extensions/users_connected.php index ad6282c598..e673a19477 100644 --- a/pandora_console/extensions/users_connected.php +++ b/pandora_console/extensions/users_connected.php @@ -15,7 +15,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/error_screen.php b/pandora_console/general/error_screen.php index bbeaf84e0a..90a8ac4060 100644 --- a/pandora_console/general/error_screen.php +++ b/pandora_console/general/error_screen.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/HA_cluster_builder.php b/pandora_console/general/first_task/HA_cluster_builder.php index e475dfdf1a..6e94d1495f 100644 --- a/pandora_console/general/first_task/HA_cluster_builder.php +++ b/pandora_console/general/first_task/HA_cluster_builder.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2021 Artica Soluciones Tecnologicas, http://www.artica.es + * Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es * This code is NOT free software. This code is NOT licenced under GPL2 licence * You cannnot redistribute it without written permission of copyright holder. * ============================================================================ diff --git a/pandora_console/general/first_task/cluster_builder.php b/pandora_console/general/first_task/cluster_builder.php index fe14491322..8bb8fd78f1 100644 --- a/pandora_console/general/first_task/cluster_builder.php +++ b/pandora_console/general/first_task/cluster_builder.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/collections.php b/pandora_console/general/first_task/collections.php index 8e775afbea..ffc5d14b60 100755 --- a/pandora_console/general/first_task/collections.php +++ b/pandora_console/general/first_task/collections.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/custom_fields.php b/pandora_console/general/first_task/custom_fields.php index 11f9f30c2d..7841e50043 100644 --- a/pandora_console/general/first_task/custom_fields.php +++ b/pandora_console/general/first_task/custom_fields.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/custom_graphs.php b/pandora_console/general/first_task/custom_graphs.php index 96f4c1262b..0ede557f4e 100644 --- a/pandora_console/general/first_task/custom_graphs.php +++ b/pandora_console/general/first_task/custom_graphs.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/fields_manager.php b/pandora_console/general/first_task/fields_manager.php index 948f94faa7..460e1b0930 100755 --- a/pandora_console/general/first_task/fields_manager.php +++ b/pandora_console/general/first_task/fields_manager.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/incidents.php b/pandora_console/general/first_task/incidents.php index 923ab59300..6d95ee50bb 100644 --- a/pandora_console/general/first_task/incidents.php +++ b/pandora_console/general/first_task/incidents.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/map_builder.php b/pandora_console/general/first_task/map_builder.php index 6091b45d61..898631947e 100755 --- a/pandora_console/general/first_task/map_builder.php +++ b/pandora_console/general/first_task/map_builder.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2007-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/network_map.php b/pandora_console/general/first_task/network_map.php index fe39390c6c..b477d75ece 100755 --- a/pandora_console/general/first_task/network_map.php +++ b/pandora_console/general/first_task/network_map.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/omnishell.php b/pandora_console/general/first_task/omnishell.php index b8c6accea0..c180d9ff53 100644 --- a/pandora_console/general/first_task/omnishell.php +++ b/pandora_console/general/first_task/omnishell.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2021 Artica Soluciones Tecnologicas, http://www.artica.es + * Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es * This code is NOT free software. This code is NOT licenced under GPL2 licence * You cannnot redistribute it without written permission of copyright holder. * ============================================================================ diff --git a/pandora_console/general/first_task/planned_downtime.php b/pandora_console/general/first_task/planned_downtime.php index a88a3e0fc3..4b379f643f 100644 --- a/pandora_console/general/first_task/planned_downtime.php +++ b/pandora_console/general/first_task/planned_downtime.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/recon_view.php b/pandora_console/general/first_task/recon_view.php index 527a939649..94d57285bd 100755 --- a/pandora_console/general/first_task/recon_view.php +++ b/pandora_console/general/first_task/recon_view.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/service_list.php b/pandora_console/general/first_task/service_list.php index dae4eedb08..818f91d3a2 100755 --- a/pandora_console/general/first_task/service_list.php +++ b/pandora_console/general/first_task/service_list.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2007-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/snmp_filters.php b/pandora_console/general/first_task/snmp_filters.php index fad9801f28..39aeabf96a 100755 --- a/pandora_console/general/first_task/snmp_filters.php +++ b/pandora_console/general/first_task/snmp_filters.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/first_task/tags.php b/pandora_console/general/first_task/tags.php index 0baa6b37f2..791fd8be95 100755 --- a/pandora_console/general/first_task/tags.php +++ b/pandora_console/general/first_task/tags.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/footer.php b/pandora_console/general/footer.php index 2236c38294..7d36610a6c 100644 --- a/pandora_console/general/footer.php +++ b/pandora_console/general/footer.php @@ -3,7 +3,7 @@ /** * Pandora FMS - http://pandorafms.com * ================================================== - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index b0cbc0cec5..b33d5b5b28 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -2,7 +2,7 @@ /** * Pandora FMS - http://pandorafms.com * ================================================== - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/help_feedback.php b/pandora_console/general/help_feedback.php index 97d161ea61..80f689c60e 100644 --- a/pandora_console/general/help_feedback.php +++ b/pandora_console/general/help_feedback.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/last_message.php b/pandora_console/general/last_message.php index 862d3f8076..be84129df6 100644 --- a/pandora_console/general/last_message.php +++ b/pandora_console/general/last_message.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/links_menu.php b/pandora_console/general/links_menu.php index d890c598f4..61fc25dd1f 100644 --- a/pandora_console/general/links_menu.php +++ b/pandora_console/general/links_menu.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/login_help_dialog.php b/pandora_console/general/login_help_dialog.php index f41f7df213..982993a982 100644 --- a/pandora_console/general/login_help_dialog.php +++ b/pandora_console/general/login_help_dialog.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php index 1081952031..9759fac943 100755 --- a/pandora_console/general/login_page.php +++ b/pandora_console/general/login_page.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/logoff.php b/pandora_console/general/logoff.php index a7b82cbe9a..2e68765bc7 100644 --- a/pandora_console/general/logoff.php +++ b/pandora_console/general/logoff.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/logon_failed.php b/pandora_console/general/logon_failed.php index 541ae7ea87..9d9905a97c 100644 --- a/pandora_console/general/logon_failed.php +++ b/pandora_console/general/logon_failed.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index 9ba59c0820..8747ddd1cf 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/main_menu.php b/pandora_console/general/main_menu.php index 800324b076..87cf4b587f 100644 --- a/pandora_console/general/main_menu.php +++ b/pandora_console/general/main_menu.php @@ -15,7 +15,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/maintenance.php b/pandora_console/general/maintenance.php index 934c6df7cc..03cefc6c62 100644 --- a/pandora_console/general/maintenance.php +++ b/pandora_console/general/maintenance.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/news_dialog.php b/pandora_console/general/news_dialog.php index f44eb97faa..a56bcd7732 100644 --- a/pandora_console/general/news_dialog.php +++ b/pandora_console/general/news_dialog.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/noaccess2.php b/pandora_console/general/noaccess2.php index 062d95d649..b071915bd7 100644 --- a/pandora_console/general/noaccess2.php +++ b/pandora_console/general/noaccess2.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/node_deactivated.php b/pandora_console/general/node_deactivated.php index c6001abbc4..a9e184dd80 100644 --- a/pandora_console/general/node_deactivated.php +++ b/pandora_console/general/node_deactivated.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/pandora_help.php b/pandora_console/general/pandora_help.php index e9dc0e0398..698bc49fa5 100644 --- a/pandora_console/general/pandora_help.php +++ b/pandora_console/general/pandora_help.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/php_message.php b/pandora_console/general/php_message.php index 87d2d47a8e..a05ea6399f 100644 --- a/pandora_console/general/php_message.php +++ b/pandora_console/general/php_message.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php index ed646f52f3..bfbc218b82 100644 --- a/pandora_console/general/register.php +++ b/pandora_console/general/register.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/reporting_console_node.php b/pandora_console/general/reporting_console_node.php index d566f14599..882713eb5a 100644 --- a/pandora_console/general/reporting_console_node.php +++ b/pandora_console/general/reporting_console_node.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/sap_view.php b/pandora_console/general/sap_view.php index 1adb826e59..8c2a272dc4 100644 --- a/pandora_console/general/sap_view.php +++ b/pandora_console/general/sap_view.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/general/ui/agents_list.php b/pandora_console/general/ui/agents_list.php index deaafe1bc8..a0519b8a7c 100644 --- a/pandora_console/general/ui/agents_list.php +++ b/pandora_console/general/ui/agents_list.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/agent_conf_gis.php b/pandora_console/godmode/agentes/agent_conf_gis.php index 460f977b9e..badbe0a81f 100644 --- a/pandora_console/godmode/agentes/agent_conf_gis.php +++ b/pandora_console/godmode/agentes/agent_conf_gis.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/agent_deploy.php b/pandora_console/godmode/agentes/agent_deploy.php index f0ce5b3cfa..6189a1a00e 100644 --- a/pandora_console/godmode/agentes/agent_deploy.php +++ b/pandora_console/godmode/agentes/agent_deploy.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/agent_incidents.php b/pandora_console/godmode/agentes/agent_incidents.php index e7e442e7e3..3a421d27c6 100644 --- a/pandora_console/godmode/agentes/agent_incidents.php +++ b/pandora_console/godmode/agentes/agent_incidents.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index e2e9db7806..40d221eadb 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/agent_template.php b/pandora_console/godmode/agentes/agent_template.php index 3e265ab8fc..881a7846a9 100644 --- a/pandora_console/godmode/agentes/agent_template.php +++ b/pandora_console/godmode/agentes/agent_template.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/agent_wizard.php b/pandora_console/godmode/agentes/agent_wizard.php index aaac092355..594c5928e7 100644 --- a/pandora_console/godmode/agentes/agent_wizard.php +++ b/pandora_console/godmode/agentes/agent_wizard.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index c7378ab3a6..1d45da3b5e 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/configure_field.php b/pandora_console/godmode/agentes/configure_field.php index 8a3a6b2f45..c7c74b655a 100755 --- a/pandora_console/godmode/agentes/configure_field.php +++ b/pandora_console/godmode/agentes/configure_field.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/fields_manager.php b/pandora_console/godmode/agentes/fields_manager.php index aed5bc69a3..a57379c8f2 100644 --- a/pandora_console/godmode/agentes/fields_manager.php +++ b/pandora_console/godmode/agentes/fields_manager.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/inventory_manager.php b/pandora_console/godmode/agentes/inventory_manager.php index adadc8dd50..9360970eef 100644 --- a/pandora_console/godmode/agentes/inventory_manager.php +++ b/pandora_console/godmode/agentes/inventory_manager.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2021 Artica Soluciones Tecnologicas, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index 0b27809299..bdc4cd0abc 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 1c6126467f..ba7682d179 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php index 97531e3b12..0148b18bab 100644 --- a/pandora_console/godmode/agentes/module_manager_editor.php +++ b/pandora_console/godmode/agentes/module_manager_editor.php @@ -15,7 +15,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index 0ceeca6881..c73b618d73 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_data.php b/pandora_console/godmode/agentes/module_manager_editor_data.php index 65bfb6c5ac..ad1a729805 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_data.php +++ b/pandora_console/godmode/agentes/module_manager_editor_data.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 9c6142ee8d..7099d7aca3 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index 0ecf2a710b..71e83fec8e 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_prediction.php b/pandora_console/godmode/agentes/module_manager_editor_prediction.php index 92f98c808b..a7b9687d61 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_prediction.php +++ b/pandora_console/godmode/agentes/module_manager_editor_prediction.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_web.php b/pandora_console/godmode/agentes/module_manager_editor_web.php index 4e97ffaa57..31b74eff14 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_web.php +++ b/pandora_console/godmode/agentes/module_manager_editor_web.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/module_manager_editor_wmi.php b/pandora_console/godmode/agentes/module_manager_editor_wmi.php index 5af47b915b..3f67487a0a 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_wmi.php +++ b/pandora_console/godmode/agentes/module_manager_editor_wmi.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php index f2a8b8df64..8e2436093c 100644 --- a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php +++ b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php index 2a991cac20..57ae67c8a5 100644 --- a/pandora_console/godmode/agentes/planned_downtime.editor.php +++ b/pandora_console/godmode/agentes/planned_downtime.editor.php @@ -15,7 +15,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/planned_downtime.export_csv.php b/pandora_console/godmode/agentes/planned_downtime.export_csv.php index e0331d7895..92c39e6356 100644 --- a/pandora_console/godmode/agentes/planned_downtime.export_csv.php +++ b/pandora_console/godmode/agentes/planned_downtime.export_csv.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/planned_downtime.list.php b/pandora_console/godmode/agentes/planned_downtime.list.php index da860c1bbc..1abffeb21d 100755 --- a/pandora_console/godmode/agentes/planned_downtime.list.php +++ b/pandora_console/godmode/agentes/planned_downtime.list.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/agentes/status_monitor_custom_fields.php b/pandora_console/godmode/agentes/status_monitor_custom_fields.php index 2dfb79185d..bffe9b2268 100644 --- a/pandora_console/godmode/agentes/status_monitor_custom_fields.php +++ b/pandora_console/godmode/agentes/status_monitor_custom_fields.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_actions.php b/pandora_console/godmode/alerts/alert_actions.php index 98b8daa39e..855797e542 100644 --- a/pandora_console/godmode/alerts/alert_actions.php +++ b/pandora_console/godmode/alerts/alert_actions.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php index 271ae79784..b62e6f9671 100644 --- a/pandora_console/godmode/alerts/alert_commands.php +++ b/pandora_console/godmode/alerts/alert_commands.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php index ec0bfb3807..7402c75a13 100644 --- a/pandora_console/godmode/alerts/alert_list.builder.php +++ b/pandora_console/godmode/alerts/alert_list.builder.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_list.php b/pandora_console/godmode/alerts/alert_list.php index ce42dd1675..c99e139ef5 100644 --- a/pandora_console/godmode/alerts/alert_list.php +++ b/pandora_console/godmode/alerts/alert_list.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_special_days.php b/pandora_console/godmode/alerts/alert_special_days.php index 3a8957293b..c7e42d08d5 100644 --- a/pandora_console/godmode/alerts/alert_special_days.php +++ b/pandora_console/godmode/alerts/alert_special_days.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_templates.php b/pandora_console/godmode/alerts/alert_templates.php index ba3bdeac1d..2205929c28 100644 --- a/pandora_console/godmode/alerts/alert_templates.php +++ b/pandora_console/godmode/alerts/alert_templates.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/alert_view.php b/pandora_console/godmode/alerts/alert_view.php index e8b906b220..461196d5a7 100644 --- a/pandora_console/godmode/alerts/alert_view.php +++ b/pandora_console/godmode/alerts/alert_view.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/configure_alert_action.php b/pandora_console/godmode/alerts/configure_alert_action.php index fb654828fe..09e0a9d9c6 100644 --- a/pandora_console/godmode/alerts/configure_alert_action.php +++ b/pandora_console/godmode/alerts/configure_alert_action.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index 27ee616f0b..aa733f7721 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -16,7 +16,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index a1abf2a218..ef02bd7a87 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/audit_log.php b/pandora_console/godmode/audit_log.php index fbded7819e..9e6c2d01c4 100644 --- a/pandora_console/godmode/audit_log.php +++ b/pandora_console/godmode/audit_log.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/audit_log_csv.php b/pandora_console/godmode/audit_log_csv.php index 7c03d632df..af1c91ae75 100644 --- a/pandora_console/godmode/audit_log_csv.php +++ b/pandora_console/godmode/audit_log_csv.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2021 Artica Soluciones Tecnologicas, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/godmode/category/category.php b/pandora_console/godmode/category/category.php index 935d2c1d5d..d027ca83e8 100755 --- a/pandora_console/godmode/category/category.php +++ b/pandora_console/godmode/category/category.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/category/edit_category.php b/pandora_console/godmode/category/edit_category.php index 5c30766006..2a83e6f9fb 100755 --- a/pandora_console/godmode/category/edit_category.php +++ b/pandora_console/godmode/category/edit_category.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/consoles/consoles.php b/pandora_console/godmode/consoles/consoles.php index 0158dfe14c..90d69ab062 100644 --- a/pandora_console/godmode/consoles/consoles.php +++ b/pandora_console/godmode/consoles/consoles.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/db/db_main.php b/pandora_console/godmode/db/db_main.php index 79a6c9eba7..7eab38f881 100644 --- a/pandora_console/godmode/db/db_main.php +++ b/pandora_console/godmode/db/db_main.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/configuration_sounds.php b/pandora_console/godmode/events/configuration_sounds.php index d4e9d77688..2333d1cc46 100644 --- a/pandora_console/godmode/events/configuration_sounds.php +++ b/pandora_console/godmode/events/configuration_sounds.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/custom_events.php b/pandora_console/godmode/events/custom_events.php index ea44daac5e..0ceda255c8 100644 --- a/pandora_console/godmode/events/custom_events.php +++ b/pandora_console/godmode/events/custom_events.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/event_edit_filter.php b/pandora_console/godmode/events/event_edit_filter.php index fbc60c42b0..7c0cda6467 100644 --- a/pandora_console/godmode/events/event_edit_filter.php +++ b/pandora_console/godmode/events/event_edit_filter.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/event_filter.php b/pandora_console/godmode/events/event_filter.php index 2bbbb18077..ab7fec958f 100644 --- a/pandora_console/godmode/events/event_filter.php +++ b/pandora_console/godmode/events/event_filter.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/event_responses.editor.php b/pandora_console/godmode/events/event_responses.editor.php index 863b1b4ebb..22d317e826 100644 --- a/pandora_console/godmode/events/event_responses.editor.php +++ b/pandora_console/godmode/events/event_responses.editor.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/event_responses.list.php b/pandora_console/godmode/events/event_responses.list.php index 7f8a9a87c4..147132093f 100644 --- a/pandora_console/godmode/events/event_responses.list.php +++ b/pandora_console/godmode/events/event_responses.list.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/event_responses.php b/pandora_console/godmode/events/event_responses.php index 7b92829395..b4fce32565 100644 --- a/pandora_console/godmode/events/event_responses.php +++ b/pandora_console/godmode/events/event_responses.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/events/events.php b/pandora_console/godmode/events/events.php index 59b8c9bb71..b2e4493b13 100644 --- a/pandora_console/godmode/events/events.php +++ b/pandora_console/godmode/events/events.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2023 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2023 Pandora FMS * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/extensions.php b/pandora_console/godmode/extensions.php index 69c5e59b8b..cdc8d30caf 100644 --- a/pandora_console/godmode/extensions.php +++ b/pandora_console/godmode/extensions.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== -// Copyright (c) 2005-2021 Artica Soluciones Tecnologicas +// Copyright (c) 2005-2023 Pandora FMS // Please see http://pandorafms.org for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License diff --git a/pandora_console/godmode/gis_maps/configure_gis_map.php b/pandora_console/godmode/gis_maps/configure_gis_map.php index 38b67a7c4e..35705591a6 100644 --- a/pandora_console/godmode/gis_maps/configure_gis_map.php +++ b/pandora_console/godmode/gis_maps/configure_gis_map.php @@ -1,7 +1,7 @@ Date: Thu, 8 Jun 2023 12:42:10 +0200 Subject: [PATCH 365/533] #11476 Fix ascci art --- pandora_console/ajax.php | 4 ++-- pandora_console/extensions/agents_alerts.php | 4 ++-- pandora_console/extensions/agents_modules.php | 4 ++-- pandora_console/extensions/api_checker.php | 4 ++-- pandora_console/extensions/insert_data.php | 4 ++-- pandora_console/extensions/module_groups.php | 4 ++-- pandora_console/extensions/quick_shell.php | 4 ++-- pandora_console/extensions/realtime_graphs.php | 4 ++-- pandora_console/extensions/resource_exportation.php | 4 ++-- pandora_console/extensions/resource_registration.php | 4 ++-- pandora_console/extensions/users_connected.php | 4 ++-- pandora_console/general/first_task/HA_cluster_builder.php | 4 ++-- pandora_console/general/first_task/custom_fields.php | 4 ++-- pandora_console/general/first_task/map_builder.php | 4 ++-- pandora_console/general/first_task/omnishell.php | 4 ++-- pandora_console/general/first_task/planned_downtime.php | 4 ++-- pandora_console/general/first_task/service_list.php | 4 ++-- pandora_console/general/help_feedback.php | 4 ++-- pandora_console/general/logon_ok.php | 4 ++-- pandora_console/general/main_menu.php | 4 ++-- pandora_console/general/maintenance.php | 4 ++-- pandora_console/general/node_deactivated.php | 4 ++-- pandora_console/general/register.php | 4 ++-- pandora_console/general/reporting_console_node.php | 4 ++-- pandora_console/general/sap_view.php | 4 ++-- pandora_console/godmode/agentes/agent_deploy.php | 4 ++-- pandora_console/godmode/agentes/agent_manager.php | 4 ++-- pandora_console/godmode/agentes/agent_template.php | 4 ++-- pandora_console/godmode/agentes/agent_wizard.php | 4 ++-- pandora_console/godmode/agentes/configurar_agente.php | 4 ++-- pandora_console/godmode/agentes/configure_field.php | 4 ++-- pandora_console/godmode/agentes/fields_manager.php | 4 ++-- pandora_console/godmode/agentes/modificar_agente.php | 4 ++-- pandora_console/godmode/agentes/module_manager.php | 4 ++-- pandora_console/godmode/agentes/module_manager_editor.php | 4 ++-- .../godmode/agentes/module_manager_editor_common.php | 4 ++-- .../godmode/agentes/module_manager_editor_network.php | 4 ++-- .../godmode/agentes/module_manager_editor_prediction.php | 4 ++-- pandora_console/godmode/agentes/module_manager_editor_web.php | 4 ++-- .../godmode/agentes/pandora_networkmap_empty.editor.php | 4 ++-- pandora_console/godmode/agentes/planned_downtime.editor.php | 4 ++-- pandora_console/godmode/agentes/planned_downtime.list.php | 4 ++-- pandora_console/godmode/alerts/alert_actions.php | 4 ++-- pandora_console/godmode/alerts/alert_list.list.php | 4 ++-- pandora_console/godmode/alerts/alert_special_days.php | 4 ++-- pandora_console/godmode/alerts/alert_view.php | 4 ++-- pandora_console/godmode/alerts/configure_alert_command.php | 4 ++-- pandora_console/godmode/alerts/configure_alert_template.php | 4 ++-- pandora_console/godmode/audit_log.php | 4 ++-- pandora_console/godmode/category/category.php | 4 ++-- pandora_console/godmode/category/edit_category.php | 4 ++-- pandora_console/godmode/consoles/consoles.php | 4 ++-- pandora_console/godmode/events/configuration_sounds.php | 4 ++-- pandora_console/godmode/events/event_responses.editor.php | 4 ++-- pandora_console/godmode/events/event_responses.list.php | 4 ++-- pandora_console/godmode/events/event_responses.php | 4 ++-- pandora_console/godmode/events/events.php | 4 ++-- pandora_console/godmode/groups/configure_group.php | 4 ++-- pandora_console/godmode/groups/credential_store.php | 4 ++-- pandora_console/godmode/groups/group_list.php | 4 ++-- pandora_console/godmode/groups/modu_group_list.php | 4 ++-- pandora_console/godmode/groups/tactical.php | 4 ++-- pandora_console/godmode/massive/massive_add_action_alerts.php | 4 ++-- pandora_console/godmode/massive/massive_add_alerts.php | 4 ++-- pandora_console/godmode/massive/massive_add_profiles.php | 4 ++-- pandora_console/godmode/massive/massive_copy_modules.php | 4 ++-- .../godmode/massive/massive_delete_action_alerts.php | 4 ++-- pandora_console/godmode/massive/massive_delete_agents.php | 4 ++-- pandora_console/godmode/massive/massive_delete_alerts.php | 4 ++-- pandora_console/godmode/massive/massive_delete_modules.php | 4 ++-- pandora_console/godmode/massive/massive_delete_profiles.php | 4 ++-- pandora_console/godmode/massive/massive_edit_agents.php | 4 ++-- pandora_console/godmode/massive/massive_edit_modules.php | 4 ++-- pandora_console/godmode/massive/massive_edit_plugins.php | 4 ++-- pandora_console/godmode/massive/massive_edit_users.php | 4 ++-- .../godmode/massive/massive_enable_disable_alerts.php | 4 ++-- pandora_console/godmode/massive/massive_operations.php | 4 ++-- pandora_console/godmode/massive/massive_standby_alerts.php | 4 ++-- pandora_console/godmode/menu.php | 4 ++-- .../godmode/module_library/module_library_view.php | 4 ++-- pandora_console/godmode/modules/manage_module_templates.php | 4 ++-- pandora_console/godmode/modules/manage_nc_groups.php | 4 ++-- pandora_console/godmode/modules/manage_nc_groups_form.php | 4 ++-- pandora_console/godmode/modules/manage_network_components.php | 4 ++-- .../godmode/modules/manage_network_components_form.php | 4 ++-- .../modules/manage_network_components_form_network.php | 4 ++-- .../godmode/modules/manage_network_components_form_plugin.php | 4 ++-- pandora_console/godmode/modules/module_list.php | 4 ++-- .../godmode/modules/private_enterprise_numbers.php | 4 ++-- pandora_console/godmode/netflow/nf_edit.php | 4 ++-- pandora_console/godmode/netflow/nf_edit_form.php | 4 ++-- pandora_console/godmode/reporting/graph_builder.main.php | 4 ++-- pandora_console/godmode/reporting/graph_builder.php | 4 ++-- pandora_console/godmode/reporting/graph_container.php | 4 ++-- pandora_console/godmode/reporting/graphs.php | 4 ++-- pandora_console/godmode/reporting/map_builder.php | 4 ++-- .../godmode/reporting/reporting_builder.item_editor.php | 4 ++-- .../godmode/reporting/reporting_builder.list_items.php | 4 ++-- pandora_console/godmode/reporting/reporting_builder.main.php | 4 ++-- pandora_console/godmode/reporting/reporting_builder.php | 4 ++-- .../godmode/reporting/visual_console_builder.data.php | 4 ++-- .../godmode/reporting/visual_console_builder.editor.php | 4 ++-- .../godmode/reporting/visual_console_builder.elements.php | 4 ++-- pandora_console/godmode/reporting/visual_console_builder.php | 4 ++-- .../godmode/reporting/visual_console_builder.wizard.php | 4 ++-- pandora_console/godmode/reporting/visual_console_favorite.php | 4 ++-- pandora_console/godmode/servers/manage_recontask.php | 4 ++-- pandora_console/godmode/servers/manage_recontask_form.php | 4 ++-- pandora_console/godmode/servers/modificar_server.php | 4 ++-- pandora_console/godmode/servers/plugin.php | 4 ++-- pandora_console/godmode/servers/plugin_registration.php | 4 ++-- pandora_console/godmode/servers/recon_script.php | 4 ++-- pandora_console/godmode/servers/servers.build_table.php | 4 ++-- pandora_console/godmode/setup/file_manager.php | 4 ++-- pandora_console/godmode/setup/license.php | 4 ++-- pandora_console/godmode/setup/os.builder.php | 4 ++-- pandora_console/godmode/setup/os.list.php | 4 ++-- pandora_console/godmode/setup/os.php | 4 ++-- pandora_console/godmode/setup/performance.php | 4 ++-- pandora_console/godmode/setup/setup.php | 4 ++-- pandora_console/godmode/setup/setup_auth.php | 4 ++-- pandora_console/godmode/setup/setup_ehorus.php | 4 ++-- pandora_console/godmode/setup/setup_external_tools.php | 4 ++-- pandora_console/godmode/setup/setup_general.php | 4 ++-- pandora_console/godmode/setup/setup_integria.php | 4 ++-- pandora_console/godmode/setup/setup_netflow.php | 4 ++-- pandora_console/godmode/setup/setup_notifications.php | 4 ++-- pandora_console/godmode/setup/setup_sflow.php | 4 ++-- pandora_console/godmode/setup/setup_visuals.php | 4 ++-- pandora_console/godmode/setup/setup_websocket_engine.php | 4 ++-- pandora_console/godmode/setup/welcome_tips.php | 4 ++-- pandora_console/godmode/snmpconsole/snmp_alert.php | 4 ++-- pandora_console/godmode/tag/tag.php | 4 ++-- pandora_console/godmode/um_client/api.php | 4 ++-- pandora_console/godmode/um_client/index.php | 4 ++-- .../godmode/update_manager/update_manager.history.php | 4 ++-- pandora_console/godmode/update_manager/update_manager.php | 4 ++-- .../godmode/update_manager/update_manager.setup.php | 4 ++-- pandora_console/godmode/users/configure_user.php | 4 ++-- pandora_console/godmode/users/profile_list.php | 4 ++-- pandora_console/godmode/users/user_list.php | 4 ++-- pandora_console/godmode/users/user_management.php | 4 ++-- pandora_console/godmode/wizards/DiscoveryTaskList.class.php | 4 ++-- pandora_console/godmode/wizards/HostDevices.class.php | 4 ++-- pandora_console/godmode/wizards/Wizard.main.php | 4 ++-- pandora_console/include/ajax/alert_list.ajax.php | 4 ++-- pandora_console/include/ajax/audit_log.php | 4 ++-- pandora_console/include/ajax/consoles.ajax.php | 4 ++-- pandora_console/include/ajax/custom_fields.php | 4 ++-- pandora_console/include/ajax/double_auth.ajax.php | 4 ++-- pandora_console/include/ajax/events.php | 4 ++-- pandora_console/include/ajax/events_extended.php | 4 ++-- pandora_console/include/ajax/fav_menu.ajax.php | 4 ++-- pandora_console/include/ajax/group.php | 4 ++-- pandora_console/include/ajax/heatmap.ajax.php | 4 ++-- pandora_console/include/ajax/hostDevices.ajax.php | 4 ++-- pandora_console/include/ajax/integria_incidents.ajax.php | 4 ++-- pandora_console/include/ajax/module.php | 4 ++-- pandora_console/include/ajax/order_interpreter.php | 4 ++-- pandora_console/include/ajax/task_list.ajax.php | 4 ++-- pandora_console/include/ajax/tips_window.ajax.php | 4 ++-- pandora_console/include/ajax/tree.ajax.php | 4 ++-- pandora_console/include/ajax/update_manager.php | 4 ++-- pandora_console/include/ajax/web_server_module_debug.php | 4 ++-- pandora_console/include/ajax/welcome_window.php | 4 ++-- pandora_console/include/api.php | 4 ++-- pandora_console/include/auth/mysql.php | 4 ++-- pandora_console/include/chart_generator.php | 4 ++-- pandora_console/include/class/AgentDeployWizard.class.php | 4 ++-- pandora_console/include/class/AgentWizard.class.php | 4 ++-- pandora_console/include/class/AgentsAlerts.class.php | 4 ++-- pandora_console/include/class/AuditLog.class.php | 4 ++-- pandora_console/include/class/CalendarManager.class.php | 4 ++-- pandora_console/include/class/ConfigPEN.class.php | 4 ++-- pandora_console/include/class/ConsoleSupervisor.php | 4 ++-- pandora_console/include/class/CredentialStore.class.php | 4 ++-- pandora_console/include/class/CustomNetScan.class.php | 4 ++-- pandora_console/include/class/Diagnostics.class.php | 4 ++-- pandora_console/include/class/EventSound.class.php | 4 ++-- pandora_console/include/class/ExternalTools.class.php | 4 ++-- pandora_console/include/class/HTML.class.php | 4 ++-- pandora_console/include/class/Heatmap.class.php | 4 ++-- pandora_console/include/class/HelpFeedBack.class.php | 4 ++-- pandora_console/include/class/ManageNetScanScripts.class.php | 4 ++-- pandora_console/include/class/ModuleTemplates.class.php | 4 ++-- pandora_console/include/class/NetworkMap.class.php | 4 ++-- pandora_console/include/class/OrderInterpreter.class.php | 4 ++-- pandora_console/include/class/SatelliteAgent.class.php | 4 ++-- pandora_console/include/class/SatelliteCollection.class.php | 4 ++-- pandora_console/include/class/SnmpConsole.class.php | 4 ++-- pandora_console/include/class/TipsWindow.class.php | 4 ++-- pandora_console/include/class/Tree.class.php | 4 ++-- pandora_console/include/class/TreeGroup.class.php | 4 ++-- pandora_console/include/class/TreeGroupEdition.class.php | 4 ++-- pandora_console/include/class/TreeService.class.php | 4 ++-- pandora_console/include/class/WebServerModuleDebug.class.php | 4 ++-- pandora_console/include/class/WelcomeWindow.class.php | 4 ++-- pandora_console/include/config.inc.php | 4 ++-- pandora_console/include/constants.php | 4 ++-- pandora_console/include/functions_agents.php | 4 ++-- pandora_console/include/functions_api.php | 4 ++-- pandora_console/include/functions_config.php | 4 ++-- pandora_console/include/functions_credential_store.php | 4 ++-- pandora_console/include/functions_cron.php | 4 ++-- pandora_console/include/functions_custom_fields.php | 4 ++-- pandora_console/include/functions_events.php | 4 ++-- pandora_console/include/functions_filemanager.php | 4 ++-- pandora_console/include/functions_graph.php | 4 ++-- pandora_console/include/functions_inventory.php | 4 ++-- pandora_console/include/functions_massive_operations.php | 4 ++-- pandora_console/include/functions_menu.php | 4 ++-- pandora_console/include/functions_messages.php | 4 ++-- pandora_console/include/functions_modules.php | 4 ++-- pandora_console/include/functions_networkmap.php | 4 ++-- pandora_console/include/functions_networkmaps.php | 4 ++-- pandora_console/include/functions_notifications.php | 4 ++-- pandora_console/include/functions_pandora_networkmap.php | 4 ++-- pandora_console/include/functions_plugins.php | 4 ++-- pandora_console/include/functions_register.php | 4 ++-- pandora_console/include/functions_reporting.php | 4 ++-- pandora_console/include/functions_reporting_html.php | 4 ++-- pandora_console/include/functions_servers.php | 4 ++-- pandora_console/include/functions_snmp_browser.php | 4 ++-- pandora_console/include/functions_tactical.php | 4 ++-- pandora_console/include/functions_ui.php | 4 ++-- pandora_console/include/functions_update_manager.php | 4 ++-- pandora_console/include/get_file.php | 4 ++-- pandora_console/include/graphs/export_data.php | 4 ++-- .../include/help/clippy/modules_not_learning_mode.php | 4 ++-- pandora_console/include/lib/Agent.php | 4 ++-- pandora_console/include/lib/Calendar.php | 4 ++-- pandora_console/include/lib/Cluster.php | 4 ++-- pandora_console/include/lib/ClusterModule.php | 4 ++-- pandora_console/include/lib/ClusterViewer/ClusterManager.php | 4 ++-- pandora_console/include/lib/ClusterViewer/ClusterWizard.php | 4 ++-- pandora_console/include/lib/Console.php | 4 ++-- pandora_console/include/lib/Core/Config.php | 4 ++-- pandora_console/include/lib/Core/DBMaintainer.php | 4 ++-- .../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/BasicChart.php | 4 ++-- .../include/lib/Dashboard/Widgets/BlockHistogram.php | 4 ++-- .../include/lib/Dashboard/Widgets/ColorModuleTabs.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php | 4 ++-- .../include/lib/Dashboard/Widgets/EventCardboard.php | 4 ++-- .../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php | 4 ++-- .../include/lib/Dashboard/Widgets/ModulesByStatus.php | 4 ++-- .../include/lib/Dashboard/Widgets/agent_module.php | 4 ++-- .../include/lib/Dashboard/Widgets/alerts_fired.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/clock.php | 4 ++-- .../include/lib/Dashboard/Widgets/custom_graph.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/events_list.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/example.php | 4 ++-- .../include/lib/Dashboard/Widgets/graph_module_histogram.php | 4 ++-- .../include/lib/Dashboard/Widgets/groups_status.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/heatmap.php | 4 ++-- .../include/lib/Dashboard/Widgets/maps_made_by_user.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/maps_status.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/module_icon.php | 4 ++-- .../include/lib/Dashboard/Widgets/module_status.php | 4 ++-- .../include/lib/Dashboard/Widgets/module_table_value.php | 4 ++-- .../include/lib/Dashboard/Widgets/module_value.php | 4 ++-- .../include/lib/Dashboard/Widgets/monitor_health.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/network_map.php | 4 ++-- .../include/lib/Dashboard/Widgets/os_quick_report.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/post.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/reports.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/service_map.php | 4 ++-- .../include/lib/Dashboard/Widgets/service_view.php | 4 ++-- .../include/lib/Dashboard/Widgets/single_graph.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/sla_percent.php | 4 ++-- .../include/lib/Dashboard/Widgets/system_group_status.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/tactical.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/top_n.php | 4 ++-- .../include/lib/Dashboard/Widgets/top_n_events_by_group.php | 4 ++-- .../include/lib/Dashboard/Widgets/top_n_events_by_module.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/tree_view.php | 4 ++-- pandora_console/include/lib/Dashboard/Widgets/url.php | 4 ++-- .../include/lib/Dashboard/Widgets/wux_transaction.php | 4 ++-- .../include/lib/Dashboard/Widgets/wux_transaction_stats.php | 4 ++-- pandora_console/include/lib/Entity.php | 4 ++-- pandora_console/include/lib/Event.php | 4 ++-- pandora_console/include/lib/Group.php | 4 ++-- pandora_console/include/lib/Module.php | 4 ++-- pandora_console/include/lib/ModuleStatus.php | 4 ++-- pandora_console/include/lib/ModuleType.php | 4 ++-- pandora_console/include/lib/PublicLogin.php | 4 ++-- pandora_console/include/lib/SpecialDay.php | 4 ++-- pandora_console/include/lib/Tools/Files.php | 4 ++-- pandora_console/include/lib/Tools/Strings.php | 4 ++-- pandora_console/include/lib/User.php | 4 ++-- pandora_console/include/lib/View.php | 4 ++-- pandora_console/include/load_session.php | 4 ++-- .../include/rest-api/models/VisualConsole/View.php | 4 ++-- pandora_console/include/websocket_registrations.php | 4 ++-- pandora_console/index.php | 4 ++-- pandora_console/install.php | 4 ++-- pandora_console/mobile/operation/agent.php | 4 ++-- pandora_console/mobile/operation/agents.php | 4 ++-- pandora_console/mobile/operation/alerts.php | 4 ++-- pandora_console/mobile/operation/events.php | 4 ++-- pandora_console/mobile/operation/module_data.php | 4 ++-- pandora_console/mobile/operation/modules.php | 4 ++-- pandora_console/mobile/operation/server_status.php | 4 ++-- pandora_console/mobile/operation/visualmap.php | 4 ++-- pandora_console/mobile/operation/visualmaps.php | 4 ++-- pandora_console/operation/agentes/agent_inventory.php | 4 ++-- pandora_console/operation/agentes/alerts_status.functions.php | 4 ++-- pandora_console/operation/agentes/alerts_status.php | 4 ++-- pandora_console/operation/agentes/estado_agente.php | 4 ++-- pandora_console/operation/agentes/estado_generalagente.php | 4 ++-- pandora_console/operation/agentes/estado_monitores.php | 4 ++-- pandora_console/operation/agentes/exportdata.php | 4 ++-- pandora_console/operation/agentes/external_tools.php | 4 ++-- pandora_console/operation/agentes/graphs.php | 4 ++-- pandora_console/operation/agentes/group_view.php | 4 ++-- .../operation/agentes/interface_traffic_graph_win.php | 4 ++-- pandora_console/operation/agentes/interface_view.php | 4 ++-- .../operation/agentes/pandora_networkmap.editor.php | 4 ++-- pandora_console/operation/agentes/pandora_networkmap.php | 4 ++-- pandora_console/operation/agentes/pandora_networkmap.view.php | 4 ++-- pandora_console/operation/agentes/realtime_win.php | 4 ++-- pandora_console/operation/agentes/stat_win.php | 4 ++-- pandora_console/operation/agentes/status_monitor.php | 4 ++-- pandora_console/operation/agentes/tactical.php | 4 ++-- pandora_console/operation/agentes/ver_agente.php | 4 ++-- pandora_console/operation/cluster/cluster.php | 4 ++-- pandora_console/operation/dashboard/dashboard.php | 4 ++-- pandora_console/operation/dashboard/public_dashboard.php | 4 ++-- pandora_console/operation/events/events.php | 4 ++-- pandora_console/operation/events/events_rss.php | 4 ++-- pandora_console/operation/events/export_csv.php | 4 ++-- pandora_console/operation/events/sound_events.php | 4 ++-- pandora_console/operation/heatmap.php | 4 ++-- pandora_console/operation/inventory/inventory.php | 4 ++-- pandora_console/operation/menu.php | 4 ++-- pandora_console/operation/messages/message_edit.php | 4 ++-- pandora_console/operation/messages/message_list.php | 4 ++-- pandora_console/operation/netflow/netflow_explorer.php | 4 ++-- pandora_console/operation/netflow/nf_live_view.php | 4 ++-- pandora_console/operation/network/network_report.php | 4 ++-- pandora_console/operation/network/network_usage_map.php | 4 ++-- pandora_console/operation/reporting/graph_viewer.php | 4 ++-- pandora_console/operation/search_policies.getdata.php | 4 ++-- pandora_console/operation/snmpconsole/snmp_browser.php | 4 ++-- pandora_console/operation/snmpconsole/snmp_mib_uploader.php | 4 ++-- pandora_console/operation/snmpconsole/snmp_view.php | 4 ++-- pandora_console/operation/tree.php | 4 ++-- pandora_console/operation/users/user_edit.php | 4 ++-- pandora_console/operation/users/user_edit_header.php | 4 ++-- pandora_console/operation/users/user_edit_notifications.php | 4 ++-- pandora_console/operation/visual_console/view.php | 4 ++-- pandora_console/tools/diagnostics.php | 4 ++-- pandora_console/update_manager_client/api.php | 4 ++-- .../update_manager_client/lib/UpdateManager/API/Server.php | 4 ++-- .../update_manager_client/lib/UpdateManager/Client.php | 4 ++-- .../update_manager_client/lib/UpdateManager/UI/Manager.php | 4 ++-- .../update_manager_client/lib/UpdateManager/UI/View.php | 4 ++-- pandora_console/update_manager_client/views/offline.php | 4 ++-- pandora_console/update_manager_client/views/online.php | 4 ++-- pandora_console/views/calendar/edit.php | 4 ++-- pandora_console/views/calendar/list.php | 4 ++-- pandora_console/views/calendar/special_days.php | 4 ++-- pandora_console/views/calendar/special_days_edit.php | 4 ++-- pandora_console/views/cluster/edit.php | 4 ++-- pandora_console/views/cluster/list.php | 4 ++-- pandora_console/views/cluster/view.php | 4 ++-- pandora_console/views/consoles/list.php | 4 ++-- pandora_console/views/dashboard/cell.php | 4 ++-- pandora_console/views/dashboard/configurationWidgets.php | 4 ++-- pandora_console/views/dashboard/formDashboard.php | 4 ++-- pandora_console/views/dashboard/formSlides.php | 4 ++-- pandora_console/views/dashboard/header.php | 4 ++-- pandora_console/views/dashboard/jsLayout.php | 4 ++-- pandora_console/views/dashboard/layout.php | 4 ++-- pandora_console/views/dashboard/list.php | 4 ++-- pandora_console/views/dashboard/listWidgets.php | 4 ++-- pandora_console/views/dashboard/slides.php | 4 ++-- pandora_console/views/dashboard/slidesWidget.php | 4 ++-- pandora_console/views/dashboard/tipsWindow.php | 4 ++-- pandora_console/views/dashboard/widget.php | 4 ++-- pandora_console/ws.php | 4 ++-- 381 files changed, 762 insertions(+), 762 deletions(-) diff --git a/pandora_console/ajax.php b/pandora_console/ajax.php index 7ea33a1132..e17fa15571 100644 --- a/pandora_console/ajax.php +++ b/pandora_console/ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/agents_alerts.php b/pandora_console/extensions/agents_alerts.php index 78d3a0a58b..33bcb436cc 100755 --- a/pandora_console/extensions/agents_alerts.php +++ b/pandora_console/extensions/agents_alerts.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index 192e7f15c9..81a711b456 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index f3bb719f7a..42080636ee 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/insert_data.php b/pandora_console/extensions/insert_data.php index 2ae2fa3013..186d7b3021 100644 --- a/pandora_console/extensions/insert_data.php +++ b/pandora_console/extensions/insert_data.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/module_groups.php b/pandora_console/extensions/module_groups.php index 6fcf5fb87d..9652f44d01 100644 --- a/pandora_console/extensions/module_groups.php +++ b/pandora_console/extensions/module_groups.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/quick_shell.php b/pandora_console/extensions/quick_shell.php index 895290090e..dbc4f6e2c4 100644 --- a/pandora_console/extensions/quick_shell.php +++ b/pandora_console/extensions/quick_shell.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/realtime_graphs.php b/pandora_console/extensions/realtime_graphs.php index 9285a8f4c7..071e495afd 100644 --- a/pandora_console/extensions/realtime_graphs.php +++ b/pandora_console/extensions/realtime_graphs.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/resource_exportation.php b/pandora_console/extensions/resource_exportation.php index 16dca058b1..aad1f08dab 100755 --- a/pandora_console/extensions/resource_exportation.php +++ b/pandora_console/extensions/resource_exportation.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/resource_registration.php b/pandora_console/extensions/resource_registration.php index 589d74413d..37b68e02be 100755 --- a/pandora_console/extensions/resource_registration.php +++ b/pandora_console/extensions/resource_registration.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/extensions/users_connected.php b/pandora_console/extensions/users_connected.php index e673a19477..5bdec37a12 100644 --- a/pandora_console/extensions/users_connected.php +++ b/pandora_console/extensions/users_connected.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/first_task/HA_cluster_builder.php b/pandora_console/general/first_task/HA_cluster_builder.php index 6e94d1495f..e99c8bb16a 100644 --- a/pandora_console/general/first_task/HA_cluster_builder.php +++ b/pandora_console/general/first_task/HA_cluster_builder.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/first_task/custom_fields.php b/pandora_console/general/first_task/custom_fields.php index 7841e50043..64dc06b31d 100644 --- a/pandora_console/general/first_task/custom_fields.php +++ b/pandora_console/general/first_task/custom_fields.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/first_task/map_builder.php b/pandora_console/general/first_task/map_builder.php index 898631947e..e44cbcf70e 100755 --- a/pandora_console/general/first_task/map_builder.php +++ b/pandora_console/general/first_task/map_builder.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/first_task/omnishell.php b/pandora_console/general/first_task/omnishell.php index c180d9ff53..32448b83b6 100644 --- a/pandora_console/general/first_task/omnishell.php +++ b/pandora_console/general/first_task/omnishell.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/first_task/planned_downtime.php b/pandora_console/general/first_task/planned_downtime.php index 4b379f643f..084704619d 100644 --- a/pandora_console/general/first_task/planned_downtime.php +++ b/pandora_console/general/first_task/planned_downtime.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/first_task/service_list.php b/pandora_console/general/first_task/service_list.php index 818f91d3a2..5e27f51fc1 100755 --- a/pandora_console/general/first_task/service_list.php +++ b/pandora_console/general/first_task/service_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/help_feedback.php b/pandora_console/general/help_feedback.php index 80f689c60e..8ddde06c35 100644 --- a/pandora_console/general/help_feedback.php +++ b/pandora_console/general/help_feedback.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index 8747ddd1cf..eb2225f095 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/main_menu.php b/pandora_console/general/main_menu.php index 87cf4b587f..668a02685c 100644 --- a/pandora_console/general/main_menu.php +++ b/pandora_console/general/main_menu.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/maintenance.php b/pandora_console/general/maintenance.php index 03cefc6c62..073729815f 100644 --- a/pandora_console/general/maintenance.php +++ b/pandora_console/general/maintenance.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/node_deactivated.php b/pandora_console/general/node_deactivated.php index a9e184dd80..de5deed43b 100644 --- a/pandora_console/general/node_deactivated.php +++ b/pandora_console/general/node_deactivated.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php index bfbc218b82..8d9e949a45 100644 --- a/pandora_console/general/register.php +++ b/pandora_console/general/register.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/reporting_console_node.php b/pandora_console/general/reporting_console_node.php index 882713eb5a..e6f73cdd26 100644 --- a/pandora_console/general/reporting_console_node.php +++ b/pandora_console/general/reporting_console_node.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/general/sap_view.php b/pandora_console/general/sap_view.php index 8c2a272dc4..e9b4fb357b 100644 --- a/pandora_console/general/sap_view.php +++ b/pandora_console/general/sap_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/agent_deploy.php b/pandora_console/godmode/agentes/agent_deploy.php index 6189a1a00e..d9e7115f37 100644 --- a/pandora_console/godmode/agentes/agent_deploy.php +++ b/pandora_console/godmode/agentes/agent_deploy.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 40d221eadb..5edb6df7fb 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/agent_template.php b/pandora_console/godmode/agentes/agent_template.php index 881a7846a9..360b1374b2 100644 --- a/pandora_console/godmode/agentes/agent_template.php +++ b/pandora_console/godmode/agentes/agent_template.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/agent_wizard.php b/pandora_console/godmode/agentes/agent_wizard.php index 594c5928e7..0a84dfcf73 100644 --- a/pandora_console/godmode/agentes/agent_wizard.php +++ b/pandora_console/godmode/agentes/agent_wizard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index 1d45da3b5e..64331eea98 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/configure_field.php b/pandora_console/godmode/agentes/configure_field.php index c7c74b655a..9279e55b1d 100755 --- a/pandora_console/godmode/agentes/configure_field.php +++ b/pandora_console/godmode/agentes/configure_field.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/fields_manager.php b/pandora_console/godmode/agentes/fields_manager.php index a57379c8f2..0b101f9111 100644 --- a/pandora_console/godmode/agentes/fields_manager.php +++ b/pandora_console/godmode/agentes/fields_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index bdc4cd0abc..d2d79ddf94 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index ba7682d179..fcb332163e 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php index 0148b18bab..ce2af36ca6 100644 --- a/pandora_console/godmode/agentes/module_manager_editor.php +++ b/pandora_console/godmode/agentes/module_manager_editor.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index c73b618d73..8a43129739 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 7099d7aca3..4673129cf6 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/module_manager_editor_prediction.php b/pandora_console/godmode/agentes/module_manager_editor_prediction.php index a7b9687d61..ec2e33f2a3 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_prediction.php +++ b/pandora_console/godmode/agentes/module_manager_editor_prediction.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/module_manager_editor_web.php b/pandora_console/godmode/agentes/module_manager_editor_web.php index 31b74eff14..1188205f66 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_web.php +++ b/pandora_console/godmode/agentes/module_manager_editor_web.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php index 8e2436093c..e3fdf3e681 100644 --- a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php +++ b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php index 57ae67c8a5..a922f95aa4 100644 --- a/pandora_console/godmode/agentes/planned_downtime.editor.php +++ b/pandora_console/godmode/agentes/planned_downtime.editor.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/agentes/planned_downtime.list.php b/pandora_console/godmode/agentes/planned_downtime.list.php index 1abffeb21d..c60e969efb 100755 --- a/pandora_console/godmode/agentes/planned_downtime.list.php +++ b/pandora_console/godmode/agentes/planned_downtime.list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/alerts/alert_actions.php b/pandora_console/godmode/alerts/alert_actions.php index 855797e542..519c0f8e12 100644 --- a/pandora_console/godmode/alerts/alert_actions.php +++ b/pandora_console/godmode/alerts/alert_actions.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/alerts/alert_list.list.php b/pandora_console/godmode/alerts/alert_list.list.php index 9fd94b4016..580494b4b0 100644 --- a/pandora_console/godmode/alerts/alert_list.list.php +++ b/pandora_console/godmode/alerts/alert_list.list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ========================================================== diff --git a/pandora_console/godmode/alerts/alert_special_days.php b/pandora_console/godmode/alerts/alert_special_days.php index c7e42d08d5..2ec0f7ba2c 100644 --- a/pandora_console/godmode/alerts/alert_special_days.php +++ b/pandora_console/godmode/alerts/alert_special_days.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/alerts/alert_view.php b/pandora_console/godmode/alerts/alert_view.php index 461196d5a7..372938d140 100644 --- a/pandora_console/godmode/alerts/alert_view.php +++ b/pandora_console/godmode/alerts/alert_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index aa733f7721..7b64a6d0a7 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -11,8 +11,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index ef02bd7a87..ebf8204d98 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/audit_log.php b/pandora_console/godmode/audit_log.php index 9e6c2d01c4..3f7697c012 100644 --- a/pandora_console/godmode/audit_log.php +++ b/pandora_console/godmode/audit_log.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/category/category.php b/pandora_console/godmode/category/category.php index d027ca83e8..3332fa76e0 100755 --- a/pandora_console/godmode/category/category.php +++ b/pandora_console/godmode/category/category.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/category/edit_category.php b/pandora_console/godmode/category/edit_category.php index 2a83e6f9fb..f9877cf4c7 100755 --- a/pandora_console/godmode/category/edit_category.php +++ b/pandora_console/godmode/category/edit_category.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/consoles/consoles.php b/pandora_console/godmode/consoles/consoles.php index 90d69ab062..fc865193b3 100644 --- a/pandora_console/godmode/consoles/consoles.php +++ b/pandora_console/godmode/consoles/consoles.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/events/configuration_sounds.php b/pandora_console/godmode/events/configuration_sounds.php index 2333d1cc46..237d10412b 100644 --- a/pandora_console/godmode/events/configuration_sounds.php +++ b/pandora_console/godmode/events/configuration_sounds.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/events/event_responses.editor.php b/pandora_console/godmode/events/event_responses.editor.php index 22d317e826..2dc4fcd7e8 100644 --- a/pandora_console/godmode/events/event_responses.editor.php +++ b/pandora_console/godmode/events/event_responses.editor.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/events/event_responses.list.php b/pandora_console/godmode/events/event_responses.list.php index 147132093f..e14fc7b21d 100644 --- a/pandora_console/godmode/events/event_responses.list.php +++ b/pandora_console/godmode/events/event_responses.list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/events/event_responses.php b/pandora_console/godmode/events/event_responses.php index b4fce32565..bc8f5a2537 100644 --- a/pandora_console/godmode/events/event_responses.php +++ b/pandora_console/godmode/events/event_responses.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/events/events.php b/pandora_console/godmode/events/events.php index b2e4493b13..a543696e75 100644 --- a/pandora_console/godmode/events/events.php +++ b/pandora_console/godmode/events/events.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/groups/configure_group.php b/pandora_console/godmode/groups/configure_group.php index 0039486667..14578ed6a3 100644 --- a/pandora_console/godmode/groups/configure_group.php +++ b/pandora_console/godmode/groups/configure_group.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/groups/credential_store.php b/pandora_console/godmode/groups/credential_store.php index 42b568696a..f7f4470c94 100644 --- a/pandora_console/godmode/groups/credential_store.php +++ b/pandora_console/godmode/groups/credential_store.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/groups/group_list.php b/pandora_console/godmode/groups/group_list.php index 1275067b36..cb59288b00 100644 --- a/pandora_console/godmode/groups/group_list.php +++ b/pandora_console/godmode/groups/group_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/groups/modu_group_list.php b/pandora_console/godmode/groups/modu_group_list.php index c9a8fe1ff7..9be57b2763 100644 --- a/pandora_console/godmode/groups/modu_group_list.php +++ b/pandora_console/godmode/groups/modu_group_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/groups/tactical.php b/pandora_console/godmode/groups/tactical.php index dd3863a350..e899f8b213 100644 --- a/pandora_console/godmode/groups/tactical.php +++ b/pandora_console/godmode/groups/tactical.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_add_action_alerts.php b/pandora_console/godmode/massive/massive_add_action_alerts.php index dd2f1f3681..307db55f19 100755 --- a/pandora_console/godmode/massive/massive_add_action_alerts.php +++ b/pandora_console/godmode/massive/massive_add_action_alerts.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_add_alerts.php b/pandora_console/godmode/massive/massive_add_alerts.php index f375d332b3..4c56a94d33 100755 --- a/pandora_console/godmode/massive/massive_add_alerts.php +++ b/pandora_console/godmode/massive/massive_add_alerts.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_add_profiles.php b/pandora_console/godmode/massive/massive_add_profiles.php index 8458f9d695..95ba8bd2fd 100644 --- a/pandora_console/godmode/massive/massive_add_profiles.php +++ b/pandora_console/godmode/massive/massive_add_profiles.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_copy_modules.php b/pandora_console/godmode/massive/massive_copy_modules.php index 68acb00d2a..8dbfffc30c 100755 --- a/pandora_console/godmode/massive/massive_copy_modules.php +++ b/pandora_console/godmode/massive/massive_copy_modules.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_delete_action_alerts.php b/pandora_console/godmode/massive/massive_delete_action_alerts.php index d34fc2afa1..d37b506860 100644 --- a/pandora_console/godmode/massive/massive_delete_action_alerts.php +++ b/pandora_console/godmode/massive/massive_delete_action_alerts.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_delete_agents.php b/pandora_console/godmode/massive/massive_delete_agents.php index fcf08dc2bf..1d1472d6e1 100755 --- a/pandora_console/godmode/massive/massive_delete_agents.php +++ b/pandora_console/godmode/massive/massive_delete_agents.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_delete_alerts.php b/pandora_console/godmode/massive/massive_delete_alerts.php index 8af41a63d3..9d8f97cf79 100755 --- a/pandora_console/godmode/massive/massive_delete_alerts.php +++ b/pandora_console/godmode/massive/massive_delete_alerts.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_delete_modules.php b/pandora_console/godmode/massive/massive_delete_modules.php index f42d3ca7ab..d2037effc5 100755 --- a/pandora_console/godmode/massive/massive_delete_modules.php +++ b/pandora_console/godmode/massive/massive_delete_modules.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_delete_profiles.php b/pandora_console/godmode/massive/massive_delete_profiles.php index 3cd0218a66..1be413fa85 100644 --- a/pandora_console/godmode/massive/massive_delete_profiles.php +++ b/pandora_console/godmode/massive/massive_delete_profiles.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index 45050f614e..f18a5731cd 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_edit_modules.php b/pandora_console/godmode/massive/massive_edit_modules.php index db1308919d..258779581e 100755 --- a/pandora_console/godmode/massive/massive_edit_modules.php +++ b/pandora_console/godmode/massive/massive_edit_modules.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_edit_plugins.php b/pandora_console/godmode/massive/massive_edit_plugins.php index 25b20fd1dc..c6a884f664 100644 --- a/pandora_console/godmode/massive/massive_edit_plugins.php +++ b/pandora_console/godmode/massive/massive_edit_plugins.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_edit_users.php b/pandora_console/godmode/massive/massive_edit_users.php index 75527cdfa2..313fa67c93 100644 --- a/pandora_console/godmode/massive/massive_edit_users.php +++ b/pandora_console/godmode/massive/massive_edit_users.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_enable_disable_alerts.php b/pandora_console/godmode/massive/massive_enable_disable_alerts.php index c022199e52..feb85fccee 100644 --- a/pandora_console/godmode/massive/massive_enable_disable_alerts.php +++ b/pandora_console/godmode/massive/massive_enable_disable_alerts.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_operations.php b/pandora_console/godmode/massive/massive_operations.php index 27c30de27f..3b88b83ec6 100755 --- a/pandora_console/godmode/massive/massive_operations.php +++ b/pandora_console/godmode/massive/massive_operations.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/massive/massive_standby_alerts.php b/pandora_console/godmode/massive/massive_standby_alerts.php index 5a461c1002..0a38a65975 100644 --- a/pandora_console/godmode/massive/massive_standby_alerts.php +++ b/pandora_console/godmode/massive/massive_standby_alerts.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 102afaa710..48ddb07bef 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/module_library/module_library_view.php b/pandora_console/godmode/module_library/module_library_view.php index ce148fc324..9d50eee6a5 100644 --- a/pandora_console/godmode/module_library/module_library_view.php +++ b/pandora_console/godmode/module_library/module_library_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_module_templates.php b/pandora_console/godmode/modules/manage_module_templates.php index 5b7ade459f..0e8a072419 100644 --- a/pandora_console/godmode/modules/manage_module_templates.php +++ b/pandora_console/godmode/modules/manage_module_templates.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_nc_groups.php b/pandora_console/godmode/modules/manage_nc_groups.php index 443985bc5d..28a1655e85 100644 --- a/pandora_console/godmode/modules/manage_nc_groups.php +++ b/pandora_console/godmode/modules/manage_nc_groups.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_nc_groups_form.php b/pandora_console/godmode/modules/manage_nc_groups_form.php index 23e2cb6de7..975a5ef57f 100644 --- a/pandora_console/godmode/modules/manage_nc_groups_form.php +++ b/pandora_console/godmode/modules/manage_nc_groups_form.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index ae58a60a42..32bb4d21a6 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_network_components_form.php b/pandora_console/godmode/modules/manage_network_components_form.php index 75e942f883..f7e0a75c18 100644 --- a/pandora_console/godmode/modules/manage_network_components_form.php +++ b/pandora_console/godmode/modules/manage_network_components_form.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_network_components_form_network.php b/pandora_console/godmode/modules/manage_network_components_form_network.php index e7b4670b11..0ab679e0d2 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_network.php +++ b/pandora_console/godmode/modules/manage_network_components_form_network.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/manage_network_components_form_plugin.php b/pandora_console/godmode/modules/manage_network_components_form_plugin.php index ff832418da..bc7ea0fa6a 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_plugin.php +++ b/pandora_console/godmode/modules/manage_network_components_form_plugin.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/module_list.php b/pandora_console/godmode/modules/module_list.php index b4c8513a74..1d10dc9442 100644 --- a/pandora_console/godmode/modules/module_list.php +++ b/pandora_console/godmode/modules/module_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/modules/private_enterprise_numbers.php b/pandora_console/godmode/modules/private_enterprise_numbers.php index 55f400be17..21dbd7aabd 100644 --- a/pandora_console/godmode/modules/private_enterprise_numbers.php +++ b/pandora_console/godmode/modules/private_enterprise_numbers.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/netflow/nf_edit.php b/pandora_console/godmode/netflow/nf_edit.php index 6275845b1f..bcff6fba43 100644 --- a/pandora_console/godmode/netflow/nf_edit.php +++ b/pandora_console/godmode/netflow/nf_edit.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/netflow/nf_edit_form.php b/pandora_console/godmode/netflow/nf_edit_form.php index 8f2c250878..cf7ec7e643 100644 --- a/pandora_console/godmode/netflow/nf_edit_form.php +++ b/pandora_console/godmode/netflow/nf_edit_form.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/graph_builder.main.php b/pandora_console/godmode/reporting/graph_builder.main.php index 36b705400c..c0eb79a544 100644 --- a/pandora_console/godmode/reporting/graph_builder.main.php +++ b/pandora_console/godmode/reporting/graph_builder.main.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/graph_builder.php b/pandora_console/godmode/reporting/graph_builder.php index d682cdc843..6278cc3d67 100644 --- a/pandora_console/godmode/reporting/graph_builder.php +++ b/pandora_console/godmode/reporting/graph_builder.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/graph_container.php b/pandora_console/godmode/reporting/graph_container.php index 5b063273ca..25fd131cec 100644 --- a/pandora_console/godmode/reporting/graph_container.php +++ b/pandora_console/godmode/reporting/graph_container.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/graphs.php b/pandora_console/godmode/reporting/graphs.php index 9217342d58..54390f79be 100644 --- a/pandora_console/godmode/reporting/graphs.php +++ b/pandora_console/godmode/reporting/graphs.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/map_builder.php b/pandora_console/godmode/reporting/map_builder.php index b390c76fe8..085d93263e 100644 --- a/pandora_console/godmode/reporting/map_builder.php +++ b/pandora_console/godmode/reporting/map_builder.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 55591e2768..8267e3185e 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/reporting_builder.list_items.php b/pandora_console/godmode/reporting/reporting_builder.list_items.php index d8dc0845db..89d8e25738 100755 --- a/pandora_console/godmode/reporting/reporting_builder.list_items.php +++ b/pandora_console/godmode/reporting/reporting_builder.list_items.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/reporting_builder.main.php b/pandora_console/godmode/reporting/reporting_builder.main.php index a44d3be34e..fc69b420a1 100755 --- a/pandora_console/godmode/reporting/reporting_builder.main.php +++ b/pandora_console/godmode/reporting/reporting_builder.main.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index 398dca4783..177765ba0a 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -72,8 +72,8 @@ function dialog_message(message_id) { * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/visual_console_builder.data.php b/pandora_console/godmode/reporting/visual_console_builder.data.php index f8dd0a57e8..dff9fa4a4f 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.data.php +++ b/pandora_console/godmode/reporting/visual_console_builder.data.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.php b/pandora_console/godmode/reporting/visual_console_builder.editor.php index fd02487b83..2240a6a132 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.php +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/visual_console_builder.elements.php b/pandora_console/godmode/reporting/visual_console_builder.elements.php index c23965120d..1061613bd9 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.elements.php +++ b/pandora_console/godmode/reporting/visual_console_builder.elements.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index 3a085fb8dc..a1f002418b 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/visual_console_builder.wizard.php b/pandora_console/godmode/reporting/visual_console_builder.wizard.php index 4538a8ae56..8c9c6ea0fd 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.wizard.php +++ b/pandora_console/godmode/reporting/visual_console_builder.wizard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/reporting/visual_console_favorite.php b/pandora_console/godmode/reporting/visual_console_favorite.php index 6fe9446ae2..d36e571386 100644 --- a/pandora_console/godmode/reporting/visual_console_favorite.php +++ b/pandora_console/godmode/reporting/visual_console_favorite.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/manage_recontask.php b/pandora_console/godmode/servers/manage_recontask.php index 880e3f6fc2..21c33defab 100644 --- a/pandora_console/godmode/servers/manage_recontask.php +++ b/pandora_console/godmode/servers/manage_recontask.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/manage_recontask_form.php b/pandora_console/godmode/servers/manage_recontask_form.php index 564d314829..9305c5e66d 100644 --- a/pandora_console/godmode/servers/manage_recontask_form.php +++ b/pandora_console/godmode/servers/manage_recontask_form.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/modificar_server.php b/pandora_console/godmode/servers/modificar_server.php index 4b66272db1..93d3a08b30 100644 --- a/pandora_console/godmode/servers/modificar_server.php +++ b/pandora_console/godmode/servers/modificar_server.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index 94e3a1c3d6..fb7e6cd6cd 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/plugin_registration.php b/pandora_console/godmode/servers/plugin_registration.php index b4bfe169c6..0c7056d989 100644 --- a/pandora_console/godmode/servers/plugin_registration.php +++ b/pandora_console/godmode/servers/plugin_registration.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/recon_script.php b/pandora_console/godmode/servers/recon_script.php index c05c8d85c0..726243fea9 100644 --- a/pandora_console/godmode/servers/recon_script.php +++ b/pandora_console/godmode/servers/recon_script.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php index 3ea39481ff..907ffc33dc 100644 --- a/pandora_console/godmode/servers/servers.build_table.php +++ b/pandora_console/godmode/servers/servers.build_table.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/file_manager.php b/pandora_console/godmode/setup/file_manager.php index 697132d51c..9611d6b239 100644 --- a/pandora_console/godmode/setup/file_manager.php +++ b/pandora_console/godmode/setup/file_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/license.php b/pandora_console/godmode/setup/license.php index 9c7d3a9e0b..c9e8f32263 100644 --- a/pandora_console/godmode/setup/license.php +++ b/pandora_console/godmode/setup/license.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/os.builder.php b/pandora_console/godmode/setup/os.builder.php index 0f72b0cb6e..dc42250066 100644 --- a/pandora_console/godmode/setup/os.builder.php +++ b/pandora_console/godmode/setup/os.builder.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php index b35541e8cf..fda939979e 100644 --- a/pandora_console/godmode/setup/os.list.php +++ b/pandora_console/godmode/setup/os.list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/os.php b/pandora_console/godmode/setup/os.php index d4e65c272b..ea97da81aa 100644 --- a/pandora_console/godmode/setup/os.php +++ b/pandora_console/godmode/setup/os.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/performance.php b/pandora_console/godmode/setup/performance.php index 195c547da1..b6e3dc706b 100644 --- a/pandora_console/godmode/setup/performance.php +++ b/pandora_console/godmode/setup/performance.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php index e620d5035c..b50da113b2 100644 --- a/pandora_console/godmode/setup/setup.php +++ b/pandora_console/godmode/setup/setup.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php index ada8bc2d7f..65606746bc 100644 --- a/pandora_console/godmode/setup/setup_auth.php +++ b/pandora_console/godmode/setup/setup_auth.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_ehorus.php b/pandora_console/godmode/setup/setup_ehorus.php index 238754ad8c..203e9955f9 100644 --- a/pandora_console/godmode/setup/setup_ehorus.php +++ b/pandora_console/godmode/setup/setup_ehorus.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_external_tools.php b/pandora_console/godmode/setup/setup_external_tools.php index 1e5a53658a..39fe41c867 100644 --- a/pandora_console/godmode/setup/setup_external_tools.php +++ b/pandora_console/godmode/setup/setup_external_tools.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index a4d639d162..1491d2043c 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_integria.php b/pandora_console/godmode/setup/setup_integria.php index e0ee8a547a..09f1d800f9 100644 --- a/pandora_console/godmode/setup/setup_integria.php +++ b/pandora_console/godmode/setup/setup_integria.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_netflow.php b/pandora_console/godmode/setup/setup_netflow.php index 378f8f9046..efa01b7a9e 100644 --- a/pandora_console/godmode/setup/setup_netflow.php +++ b/pandora_console/godmode/setup/setup_netflow.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_notifications.php b/pandora_console/godmode/setup/setup_notifications.php index 08608ccb73..dbcb3f085d 100644 --- a/pandora_console/godmode/setup/setup_notifications.php +++ b/pandora_console/godmode/setup/setup_notifications.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_sflow.php b/pandora_console/godmode/setup/setup_sflow.php index 647533858e..c5d7b9ceef 100644 --- a/pandora_console/godmode/setup/setup_sflow.php +++ b/pandora_console/godmode/setup/setup_sflow.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index ac1873dcf6..40a41d1c3b 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_websocket_engine.php b/pandora_console/godmode/setup/setup_websocket_engine.php index d8949745b2..bdc8673f87 100644 --- a/pandora_console/godmode/setup/setup_websocket_engine.php +++ b/pandora_console/godmode/setup/setup_websocket_engine.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index af912967f9..e4b50486b7 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/snmpconsole/snmp_alert.php b/pandora_console/godmode/snmpconsole/snmp_alert.php index 7b2b71ad8d..2807236e40 100755 --- a/pandora_console/godmode/snmpconsole/snmp_alert.php +++ b/pandora_console/godmode/snmpconsole/snmp_alert.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/tag/tag.php b/pandora_console/godmode/tag/tag.php index 558387966e..fc88f59a00 100644 --- a/pandora_console/godmode/tag/tag.php +++ b/pandora_console/godmode/tag/tag.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/um_client/api.php b/pandora_console/godmode/um_client/api.php index c13ebdcd89..5c4eb52935 100644 --- a/pandora_console/godmode/um_client/api.php +++ b/pandora_console/godmode/um_client/api.php @@ -14,8 +14,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/um_client/index.php b/pandora_console/godmode/um_client/index.php index 33505fa80d..3a52b906b8 100644 --- a/pandora_console/godmode/um_client/index.php +++ b/pandora_console/godmode/um_client/index.php @@ -14,8 +14,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/update_manager/update_manager.history.php b/pandora_console/godmode/update_manager/update_manager.history.php index 4b47a8ecb2..f08b6ebab1 100644 --- a/pandora_console/godmode/update_manager/update_manager.history.php +++ b/pandora_console/godmode/update_manager/update_manager.history.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php index 512f560212..d43d6f0593 100644 --- a/pandora_console/godmode/update_manager/update_manager.php +++ b/pandora_console/godmode/update_manager/update_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/update_manager/update_manager.setup.php b/pandora_console/godmode/update_manager/update_manager.setup.php index 39884f30f5..887b4f1580 100644 --- a/pandora_console/godmode/update_manager/update_manager.setup.php +++ b/pandora_console/godmode/update_manager/update_manager.setup.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index f85d22bf06..83a9a79a32 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/users/profile_list.php b/pandora_console/godmode/users/profile_list.php index 603229834f..ca9133402b 100644 --- a/pandora_console/godmode/users/profile_list.php +++ b/pandora_console/godmode/users/profile_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index 728ba6085d..68934261c0 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/users/user_management.php b/pandora_console/godmode/users/user_management.php index 9804bf039e..ff71092161 100644 --- a/pandora_console/godmode/users/user_management.php +++ b/pandora_console/godmode/users/user_management.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php index 2e1637366e..dce348ab80 100644 --- a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php +++ b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index a6d267bd6e..00b5982ec9 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/godmode/wizards/Wizard.main.php b/pandora_console/godmode/wizards/Wizard.main.php index ab3a8fcd71..66830a7aa2 100644 --- a/pandora_console/godmode/wizards/Wizard.main.php +++ b/pandora_console/godmode/wizards/Wizard.main.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/alert_list.ajax.php b/pandora_console/include/ajax/alert_list.ajax.php index 4f5b120a6d..d46317e459 100644 --- a/pandora_console/include/ajax/alert_list.ajax.php +++ b/pandora_console/include/ajax/alert_list.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ========================================================== diff --git a/pandora_console/include/ajax/audit_log.php b/pandora_console/include/ajax/audit_log.php index 9860493675..caddc7a0f4 100644 --- a/pandora_console/include/ajax/audit_log.php +++ b/pandora_console/include/ajax/audit_log.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/consoles.ajax.php b/pandora_console/include/ajax/consoles.ajax.php index bb20320c75..1d76e3131e 100644 --- a/pandora_console/include/ajax/consoles.ajax.php +++ b/pandora_console/include/ajax/consoles.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ========================================================== diff --git a/pandora_console/include/ajax/custom_fields.php b/pandora_console/include/ajax/custom_fields.php index 8f3882f626..1b8de9e4c5 100644 --- a/pandora_console/include/ajax/custom_fields.php +++ b/pandora_console/include/ajax/custom_fields.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/double_auth.ajax.php b/pandora_console/include/ajax/double_auth.ajax.php index f357b4dbcd..53f96ccf93 100644 --- a/pandora_console/include/ajax/double_auth.ajax.php +++ b/pandora_console/include/ajax/double_auth.ajax.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index 440d0acf1e..083f276e43 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/events_extended.php b/pandora_console/include/ajax/events_extended.php index 3cea734fe5..c27776cf33 100644 --- a/pandora_console/include/ajax/events_extended.php +++ b/pandora_console/include/ajax/events_extended.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/fav_menu.ajax.php b/pandora_console/include/ajax/fav_menu.ajax.php index 9900cd9a8d..f0497256dc 100644 --- a/pandora_console/include/ajax/fav_menu.ajax.php +++ b/pandora_console/include/ajax/fav_menu.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/group.php b/pandora_console/include/ajax/group.php index 60f4d651ba..b66b256657 100644 --- a/pandora_console/include/ajax/group.php +++ b/pandora_console/include/ajax/group.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/heatmap.ajax.php b/pandora_console/include/ajax/heatmap.ajax.php index 412590192b..14315e69e9 100644 --- a/pandora_console/include/ajax/heatmap.ajax.php +++ b/pandora_console/include/ajax/heatmap.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/hostDevices.ajax.php b/pandora_console/include/ajax/hostDevices.ajax.php index 6ff35f3d8d..69007a6ef4 100644 --- a/pandora_console/include/ajax/hostDevices.ajax.php +++ b/pandora_console/include/ajax/hostDevices.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ========================================================== diff --git a/pandora_console/include/ajax/integria_incidents.ajax.php b/pandora_console/include/ajax/integria_incidents.ajax.php index a992ad27bb..540561d535 100644 --- a/pandora_console/include/ajax/integria_incidents.ajax.php +++ b/pandora_console/include/ajax/integria_incidents.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index dae00210da..e21e687a1e 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/order_interpreter.php b/pandora_console/include/ajax/order_interpreter.php index 94c2d43bc9..dce0d9db2b 100644 --- a/pandora_console/include/ajax/order_interpreter.php +++ b/pandora_console/include/ajax/order_interpreter.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/task_list.ajax.php b/pandora_console/include/ajax/task_list.ajax.php index 6f3abab930..83679bc533 100644 --- a/pandora_console/include/ajax/task_list.ajax.php +++ b/pandora_console/include/ajax/task_list.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/tips_window.ajax.php b/pandora_console/include/ajax/tips_window.ajax.php index 11c637d063..d67fca5002 100644 --- a/pandora_console/include/ajax/tips_window.ajax.php +++ b/pandora_console/include/ajax/tips_window.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/tree.ajax.php b/pandora_console/include/ajax/tree.ajax.php index 9eedf4f6a2..dcaf59e3cb 100644 --- a/pandora_console/include/ajax/tree.ajax.php +++ b/pandora_console/include/ajax/tree.ajax.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/update_manager.php b/pandora_console/include/ajax/update_manager.php index af4378a930..48e04d8171 100644 --- a/pandora_console/include/ajax/update_manager.php +++ b/pandora_console/include/ajax/update_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/web_server_module_debug.php b/pandora_console/include/ajax/web_server_module_debug.php index 98fdf2c091..905b96d2fa 100644 --- a/pandora_console/include/ajax/web_server_module_debug.php +++ b/pandora_console/include/ajax/web_server_module_debug.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/ajax/welcome_window.php b/pandora_console/include/ajax/welcome_window.php index 5aeebf25dd..872a60e864 100644 --- a/pandora_console/include/ajax/welcome_window.php +++ b/pandora_console/include/ajax/welcome_window.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/api.php b/pandora_console/include/api.php index ab7d071648..0593f509ef 100644 --- a/pandora_console/include/api.php +++ b/pandora_console/include/api.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 3043ba57bc..7ab58f2a89 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/chart_generator.php b/pandora_console/include/chart_generator.php index cce6beb569..84059577ce 100644 --- a/pandora_console/include/chart_generator.php +++ b/pandora_console/include/chart_generator.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/AgentDeployWizard.class.php b/pandora_console/include/class/AgentDeployWizard.class.php index 502ebd3d3a..a78e0d4017 100644 --- a/pandora_console/include/class/AgentDeployWizard.class.php +++ b/pandora_console/include/class/AgentDeployWizard.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index ee131f62f8..91b31cb2d0 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/AgentsAlerts.class.php b/pandora_console/include/class/AgentsAlerts.class.php index 3eaf2ed18d..b2ec6b4bb3 100644 --- a/pandora_console/include/class/AgentsAlerts.class.php +++ b/pandora_console/include/class/AgentsAlerts.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/AuditLog.class.php b/pandora_console/include/class/AuditLog.class.php index d38b2f9b93..3bf722ba59 100644 --- a/pandora_console/include/class/AuditLog.class.php +++ b/pandora_console/include/class/AuditLog.class.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/CalendarManager.class.php b/pandora_console/include/class/CalendarManager.class.php index 7ec2a6a9d6..ce09f185e6 100644 --- a/pandora_console/include/class/CalendarManager.class.php +++ b/pandora_console/include/class/CalendarManager.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/ConfigPEN.class.php b/pandora_console/include/class/ConfigPEN.class.php index 3d148b29f9..e1c2dba272 100644 --- a/pandora_console/include/class/ConfigPEN.class.php +++ b/pandora_console/include/class/ConfigPEN.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 58df736b44..9ed79ab780 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php index 14aa32e03b..18e4e12ef2 100644 --- a/pandora_console/include/class/CredentialStore.class.php +++ b/pandora_console/include/class/CredentialStore.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/CustomNetScan.class.php b/pandora_console/include/class/CustomNetScan.class.php index 584ab6e964..05c87b068b 100644 --- a/pandora_console/include/class/CustomNetScan.class.php +++ b/pandora_console/include/class/CustomNetScan.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/Diagnostics.class.php b/pandora_console/include/class/Diagnostics.class.php index b261b2e916..e2e9a6dd36 100644 --- a/pandora_console/include/class/Diagnostics.class.php +++ b/pandora_console/include/class/Diagnostics.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/EventSound.class.php b/pandora_console/include/class/EventSound.class.php index ac568f6793..05cedfe338 100644 --- a/pandora_console/include/class/EventSound.class.php +++ b/pandora_console/include/class/EventSound.class.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/ExternalTools.class.php b/pandora_console/include/class/ExternalTools.class.php index 09bc3ea9dd..939ce63fc5 100644 --- a/pandora_console/include/class/ExternalTools.class.php +++ b/pandora_console/include/class/ExternalTools.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/HTML.class.php b/pandora_console/include/class/HTML.class.php index 085770fe0c..7eed5eb558 100644 --- a/pandora_console/include/class/HTML.class.php +++ b/pandora_console/include/class/HTML.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/Heatmap.class.php b/pandora_console/include/class/Heatmap.class.php index b65291d523..3cda2e4d45 100644 --- a/pandora_console/include/class/Heatmap.class.php +++ b/pandora_console/include/class/Heatmap.class.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/HelpFeedBack.class.php b/pandora_console/include/class/HelpFeedBack.class.php index 332f8d7f77..982cf41785 100644 --- a/pandora_console/include/class/HelpFeedBack.class.php +++ b/pandora_console/include/class/HelpFeedBack.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/ManageNetScanScripts.class.php b/pandora_console/include/class/ManageNetScanScripts.class.php index a41b76e136..030864a07c 100644 --- a/pandora_console/include/class/ManageNetScanScripts.class.php +++ b/pandora_console/include/class/ManageNetScanScripts.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/ModuleTemplates.class.php b/pandora_console/include/class/ModuleTemplates.class.php index 608b38a3b1..0014caddb9 100644 --- a/pandora_console/include/class/ModuleTemplates.class.php +++ b/pandora_console/include/class/ModuleTemplates.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index 35958882bb..dfc107f665 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/OrderInterpreter.class.php b/pandora_console/include/class/OrderInterpreter.class.php index 13cd0b6c68..f1ea1ad3cf 100644 --- a/pandora_console/include/class/OrderInterpreter.class.php +++ b/pandora_console/include/class/OrderInterpreter.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/SatelliteAgent.class.php b/pandora_console/include/class/SatelliteAgent.class.php index 83f0057463..8ef33b03c6 100644 --- a/pandora_console/include/class/SatelliteAgent.class.php +++ b/pandora_console/include/class/SatelliteAgent.class.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/SatelliteCollection.class.php b/pandora_console/include/class/SatelliteCollection.class.php index 7a3681e3dd..bd84ccdc27 100644 --- a/pandora_console/include/class/SatelliteCollection.class.php +++ b/pandora_console/include/class/SatelliteCollection.class.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/SnmpConsole.class.php b/pandora_console/include/class/SnmpConsole.class.php index 8dc2cb64a1..176a2afd02 100644 --- a/pandora_console/include/class/SnmpConsole.class.php +++ b/pandora_console/include/class/SnmpConsole.class.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index afd35244b6..6739b928ef 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 9eae96adbb..450f7b4c72 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/TreeGroup.class.php b/pandora_console/include/class/TreeGroup.class.php index 896e90ebc4..2a03ded2e2 100644 --- a/pandora_console/include/class/TreeGroup.class.php +++ b/pandora_console/include/class/TreeGroup.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/TreeGroupEdition.class.php b/pandora_console/include/class/TreeGroupEdition.class.php index 006094c3fd..84eb484fe5 100644 --- a/pandora_console/include/class/TreeGroupEdition.class.php +++ b/pandora_console/include/class/TreeGroupEdition.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/TreeService.class.php b/pandora_console/include/class/TreeService.class.php index 49686458a6..19b1e6da32 100644 --- a/pandora_console/include/class/TreeService.class.php +++ b/pandora_console/include/class/TreeService.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/WebServerModuleDebug.class.php b/pandora_console/include/class/WebServerModuleDebug.class.php index 372ec3bdf4..e042b2e7cf 100644 --- a/pandora_console/include/class/WebServerModuleDebug.class.php +++ b/pandora_console/include/class/WebServerModuleDebug.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/class/WelcomeWindow.class.php b/pandora_console/include/class/WelcomeWindow.class.php index a9d3a891a9..16be14fa0c 100644 --- a/pandora_console/include/class/WelcomeWindow.class.php +++ b/pandora_console/include/class/WelcomeWindow.class.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/config.inc.php b/pandora_console/include/config.inc.php index ea3e3c9859..94441950f8 100644 --- a/pandora_console/include/config.inc.php +++ b/pandora_console/include/config.inc.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index db967b9e6b..cbe7e9445d 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index a2e7c5d90b..49dc618b7c 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index 09a4326b4d..e3d4b99dc4 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index a011d8c0cb..d0b5b3ee51 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_credential_store.php b/pandora_console/include/functions_credential_store.php index 6700a09dad..95ce67c022 100644 --- a/pandora_console/include/functions_credential_store.php +++ b/pandora_console/include/functions_credential_store.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_cron.php b/pandora_console/include/functions_cron.php index d0c710af9b..b1d73edc38 100644 --- a/pandora_console/include/functions_cron.php +++ b/pandora_console/include/functions_cron.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_custom_fields.php b/pandora_console/include/functions_custom_fields.php index 884c3885ac..b19f843d83 100644 --- a/pandora_console/include/functions_custom_fields.php +++ b/pandora_console/include/functions_custom_fields.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index f18023e3b9..b760813beb 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 344400025a..34eca28692 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index 9563b25464..5ce8dcb252 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index eafd52ac8b..80e1e9887f 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_massive_operations.php b/pandora_console/include/functions_massive_operations.php index 73d0d17cfc..6884045330 100644 --- a/pandora_console/include/functions_massive_operations.php +++ b/pandora_console/include/functions_massive_operations.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index c64440e472..e69df9616d 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_messages.php b/pandora_console/include/functions_messages.php index 101371e39c..f5587fab67 100644 --- a/pandora_console/include/functions_messages.php +++ b/pandora_console/include/functions_messages.php @@ -11,8 +11,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 66c2982054..6e02a7cfc6 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index a509c85421..61e6b8cdd3 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_networkmaps.php b/pandora_console/include/functions_networkmaps.php index 72609eb24f..e12dfdfa2e 100644 --- a/pandora_console/include/functions_networkmaps.php +++ b/pandora_console/include/functions_networkmaps.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_notifications.php b/pandora_console/include/functions_notifications.php index bae1a12de2..51e1279c09 100644 --- a/pandora_console/include/functions_notifications.php +++ b/pandora_console/include/functions_notifications.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_pandora_networkmap.php b/pandora_console/include/functions_pandora_networkmap.php index 72609eb24f..e12dfdfa2e 100644 --- a/pandora_console/include/functions_pandora_networkmap.php +++ b/pandora_console/include/functions_pandora_networkmap.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_plugins.php b/pandora_console/include/functions_plugins.php index bcc3bfbb34..fbfb56941b 100644 --- a/pandora_console/include/functions_plugins.php +++ b/pandora_console/include/functions_plugins.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_register.php b/pandora_console/include/functions_register.php index 856de4114d..0bfcf3f5e9 100644 --- a/pandora_console/include/functions_register.php +++ b/pandora_console/include/functions_register.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 7ebe64aa94..195571f8cc 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index ab24476856..0177a2405b 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_servers.php b/pandora_console/include/functions_servers.php index b15e1039c6..7d842095c9 100644 --- a/pandora_console/include/functions_servers.php +++ b/pandora_console/include/functions_servers.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index b2419463e4..9fb62043b4 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_tactical.php b/pandora_console/include/functions_tactical.php index d337217bb2..4e4a981300 100644 --- a/pandora_console/include/functions_tactical.php +++ b/pandora_console/include/functions_tactical.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 9b997b520f..8367833efa 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/functions_update_manager.php b/pandora_console/include/functions_update_manager.php index 3e2ed5c4dc..00dc757b1b 100755 --- a/pandora_console/include/functions_update_manager.php +++ b/pandora_console/include/functions_update_manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index 2fbfd2d3c5..94f2a79ff9 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/graphs/export_data.php b/pandora_console/include/graphs/export_data.php index d189ded532..70c9e61932 100644 --- a/pandora_console/include/graphs/export_data.php +++ b/pandora_console/include/graphs/export_data.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/help/clippy/modules_not_learning_mode.php b/pandora_console/include/help/clippy/modules_not_learning_mode.php index 97b01f0c6d..9fd7c43c57 100755 --- a/pandora_console/include/help/clippy/modules_not_learning_mode.php +++ b/pandora_console/include/help/clippy/modules_not_learning_mode.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Agent.php b/pandora_console/include/lib/Agent.php index 5e0948b447..e73ce6fe6e 100644 --- a/pandora_console/include/lib/Agent.php +++ b/pandora_console/include/lib/Agent.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Calendar.php b/pandora_console/include/lib/Calendar.php index 1c1436ab01..b27b9c7acf 100644 --- a/pandora_console/include/lib/Calendar.php +++ b/pandora_console/include/lib/Calendar.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Cluster.php b/pandora_console/include/lib/Cluster.php index 95d5d0d9e4..5c21b8ab15 100644 --- a/pandora_console/include/lib/Cluster.php +++ b/pandora_console/include/lib/Cluster.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/ClusterModule.php b/pandora_console/include/lib/ClusterModule.php index 6ccdc4a69d..8543c39a16 100644 --- a/pandora_console/include/lib/ClusterModule.php +++ b/pandora_console/include/lib/ClusterModule.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/ClusterViewer/ClusterManager.php b/pandora_console/include/lib/ClusterViewer/ClusterManager.php index ea523f0c56..863f39bae0 100644 --- a/pandora_console/include/lib/ClusterViewer/ClusterManager.php +++ b/pandora_console/include/lib/ClusterViewer/ClusterManager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php index 33259aaacc..fa2211e0cd 100644 --- a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php +++ b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Console.php b/pandora_console/include/lib/Console.php index 79787b8041..c7212f0eb0 100644 --- a/pandora_console/include/lib/Console.php +++ b/pandora_console/include/lib/Console.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Core/Config.php b/pandora_console/include/lib/Core/Config.php index 83ae9f155a..4ad61496ab 100644 --- a/pandora_console/include/lib/Core/Config.php +++ b/pandora_console/include/lib/Core/Config.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Core/DBMaintainer.php b/pandora_console/include/lib/Core/DBMaintainer.php index 635687746e..0f7ef423e3 100644 --- a/pandora_console/include/lib/Core/DBMaintainer.php +++ b/pandora_console/include/lib/Core/DBMaintainer.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php b/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php index bab8e00bd6..fc5e7c7721 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php +++ b/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php index c99211df2e..5874cc075e 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php b/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php index c753ace7a9..690cfddece 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php index cc588c8c36..052f438290 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php b/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php index 49a8c13be6..0d82033463 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php +++ b/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php index 0d183a3eb7..9f25dff837 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php +++ b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php index c5e62051ef..9996ae6332 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php b/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php index 5b4b1cbe5f..0aa472fd8a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index 0e9495f8cd..a8f69cbca6 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php b/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php index f2aa1cf53c..7cda13b1ed 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php +++ b/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/clock.php b/pandora_console/include/lib/Dashboard/Widgets/clock.php index c9cde295b7..b5e2514155 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/clock.php +++ b/pandora_console/include/lib/Dashboard/Widgets/clock.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php b/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php index 67d8ffac93..cbd448eba2 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/events_list.php b/pandora_console/include/lib/Dashboard/Widgets/events_list.php index e7e9abcace..5bc67bd811 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/events_list.php +++ b/pandora_console/include/lib/Dashboard/Widgets/events_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/example.php b/pandora_console/include/lib/Dashboard/Widgets/example.php index 43f575820d..efd6ca8f87 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/example.php +++ b/pandora_console/include/lib/Dashboard/Widgets/example.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ 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 43c19ed32c..03b78ca3f9 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php +++ b/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/groups_status.php b/pandora_console/include/lib/Dashboard/Widgets/groups_status.php index ad1178fbf5..ee75b848c2 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/groups_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/groups_status.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/heatmap.php b/pandora_console/include/lib/Dashboard/Widgets/heatmap.php index 3991675d26..994591cafe 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/heatmap.php +++ b/pandora_console/include/lib/Dashboard/Widgets/heatmap.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php b/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php index d931feba59..99468ddffe 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php +++ b/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/maps_status.php b/pandora_console/include/lib/Dashboard/Widgets/maps_status.php index 9ef68b0828..fbe1cb0625 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/maps_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/maps_status.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php index 24796f3267..88e6a87c87 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_status.php b/pandora_console/include/lib/Dashboard/Widgets/module_status.php index c2257fa48f..576d4fe751 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_status.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php index 0c72cac7c5..36872a4c2c 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_value.php index fbbe0bfa1e..bdceb715c2 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_value.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php b/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php index ebbe3a48b8..ee40a25e5d 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php +++ b/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/network_map.php b/pandora_console/include/lib/Dashboard/Widgets/network_map.php index a0cc719aba..ad00435527 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/network_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/network_map.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php index 9fe1e734b1..511eed54b5 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php +++ b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/post.php b/pandora_console/include/lib/Dashboard/Widgets/post.php index 95136cf493..cecc737b2b 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/post.php +++ b/pandora_console/include/lib/Dashboard/Widgets/post.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/reports.php b/pandora_console/include/lib/Dashboard/Widgets/reports.php index bcb7df411d..6d579f4061 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/reports.php +++ b/pandora_console/include/lib/Dashboard/Widgets/reports.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php index 30ef79b5e1..9a44af9819 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_view.php b/pandora_console/include/lib/Dashboard/Widgets/service_view.php index 38f276d6f1..d20ab8ec91 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/service_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/service_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php index 4d6b6b9968..70b86f9722 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php index 51fc00ec43..3d5c03e29c 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php +++ b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ 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 fdd7bc365f..7ebb602e84 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/tactical.php b/pandora_console/include/lib/Dashboard/Widgets/tactical.php index f6cb653332..0702fe7306 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/tactical.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tactical.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n.php b/pandora_console/include/lib/Dashboard/Widgets/top_n.php index 264133a5d1..ac5d530173 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php index 82b1f19aaa..0c1f361b25 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php index 0f90940263..79bbd54ed2 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php index 64bca68850..bd4d05d347 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/url.php b/pandora_console/include/lib/Dashboard/Widgets/url.php index e75a09dc65..3d9777de28 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/url.php +++ b/pandora_console/include/lib/Dashboard/Widgets/url.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php index 258bdf4271..70bef84f0e 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php +++ b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php index ff8b677ff3..670b2cb01b 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php +++ b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Entity.php b/pandora_console/include/lib/Entity.php index c317a10b73..46ac04e767 100644 --- a/pandora_console/include/lib/Entity.php +++ b/pandora_console/include/lib/Entity.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Event.php b/pandora_console/include/lib/Event.php index 7ffafbcd47..0ccea011ad 100644 --- a/pandora_console/include/lib/Event.php +++ b/pandora_console/include/lib/Event.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Group.php b/pandora_console/include/lib/Group.php index c1c0cab771..71a7a29bd0 100644 --- a/pandora_console/include/lib/Group.php +++ b/pandora_console/include/lib/Group.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Module.php b/pandora_console/include/lib/Module.php index c89e36d20a..453dccac93 100644 --- a/pandora_console/include/lib/Module.php +++ b/pandora_console/include/lib/Module.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/ModuleStatus.php b/pandora_console/include/lib/ModuleStatus.php index 12d373448c..72bfde939f 100644 --- a/pandora_console/include/lib/ModuleStatus.php +++ b/pandora_console/include/lib/ModuleStatus.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/ModuleType.php b/pandora_console/include/lib/ModuleType.php index 40bed09019..a0bd664625 100644 --- a/pandora_console/include/lib/ModuleType.php +++ b/pandora_console/include/lib/ModuleType.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/PublicLogin.php b/pandora_console/include/lib/PublicLogin.php index ea1f35e76e..5e4277903e 100644 --- a/pandora_console/include/lib/PublicLogin.php +++ b/pandora_console/include/lib/PublicLogin.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/SpecialDay.php b/pandora_console/include/lib/SpecialDay.php index 3ba60d748e..ad4ca442fb 100644 --- a/pandora_console/include/lib/SpecialDay.php +++ b/pandora_console/include/lib/SpecialDay.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Tools/Files.php b/pandora_console/include/lib/Tools/Files.php index 6b969dcc1a..32eb3ea291 100644 --- a/pandora_console/include/lib/Tools/Files.php +++ b/pandora_console/include/lib/Tools/Files.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/Tools/Strings.php b/pandora_console/include/lib/Tools/Strings.php index 338d8eb36b..98c440a430 100644 --- a/pandora_console/include/lib/Tools/Strings.php +++ b/pandora_console/include/lib/Tools/Strings.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/User.php b/pandora_console/include/lib/User.php index 148a785a1d..9ddb6783bc 100644 --- a/pandora_console/include/lib/User.php +++ b/pandora_console/include/lib/User.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/lib/View.php b/pandora_console/include/lib/View.php index 397a3ed1be..26323cafe2 100644 --- a/pandora_console/include/lib/View.php +++ b/pandora_console/include/lib/View.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/load_session.php b/pandora_console/include/load_session.php index 59272e1edd..c6c4ef30aa 100644 --- a/pandora_console/include/load_session.php +++ b/pandora_console/include/load_session.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/rest-api/models/VisualConsole/View.php b/pandora_console/include/rest-api/models/VisualConsole/View.php index f4cdb25f8f..f830d64ce7 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/View.php +++ b/pandora_console/include/rest-api/models/VisualConsole/View.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/include/websocket_registrations.php b/pandora_console/include/websocket_registrations.php index 09d2c80d62..d9e9eaaf69 100644 --- a/pandora_console/include/websocket_registrations.php +++ b/pandora_console/include/websocket_registrations.php @@ -17,8 +17,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/index.php b/pandora_console/index.php index a94c7a93de..4d344a99af 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/install.php b/pandora_console/install.php index 8073bc3010..0de8bdaf45 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/agent.php b/pandora_console/mobile/operation/agent.php index 1c23d03779..9d0b435786 100644 --- a/pandora_console/mobile/operation/agent.php +++ b/pandora_console/mobile/operation/agent.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/agents.php b/pandora_console/mobile/operation/agents.php index 3eb1d65adb..cabab81bcc 100644 --- a/pandora_console/mobile/operation/agents.php +++ b/pandora_console/mobile/operation/agents.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/alerts.php b/pandora_console/mobile/operation/alerts.php index 9b61fe436b..c6864eda18 100644 --- a/pandora_console/mobile/operation/alerts.php +++ b/pandora_console/mobile/operation/alerts.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/events.php b/pandora_console/mobile/operation/events.php index a499c64b6b..d1716d675b 100644 --- a/pandora_console/mobile/operation/events.php +++ b/pandora_console/mobile/operation/events.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/module_data.php b/pandora_console/mobile/operation/module_data.php index 60d09ed23e..77063f30c9 100644 --- a/pandora_console/mobile/operation/module_data.php +++ b/pandora_console/mobile/operation/module_data.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/modules.php b/pandora_console/mobile/operation/modules.php index 10ea08ba71..0a68feee0e 100644 --- a/pandora_console/mobile/operation/modules.php +++ b/pandora_console/mobile/operation/modules.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/server_status.php b/pandora_console/mobile/operation/server_status.php index a0ee21bf3c..1a28445f1f 100644 --- a/pandora_console/mobile/operation/server_status.php +++ b/pandora_console/mobile/operation/server_status.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/visualmap.php b/pandora_console/mobile/operation/visualmap.php index 600397248a..9b51bf11ec 100644 --- a/pandora_console/mobile/operation/visualmap.php +++ b/pandora_console/mobile/operation/visualmap.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/mobile/operation/visualmaps.php b/pandora_console/mobile/operation/visualmaps.php index 2298b6612d..8c3c0e2abb 100644 --- a/pandora_console/mobile/operation/visualmaps.php +++ b/pandora_console/mobile/operation/visualmaps.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/agent_inventory.php b/pandora_console/operation/agentes/agent_inventory.php index 9b012647f1..999684b863 100644 --- a/pandora_console/operation/agentes/agent_inventory.php +++ b/pandora_console/operation/agentes/agent_inventory.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/alerts_status.functions.php b/pandora_console/operation/agentes/alerts_status.functions.php index 61f8c81b63..5c5bf6dbe7 100755 --- a/pandora_console/operation/agentes/alerts_status.functions.php +++ b/pandora_console/operation/agentes/alerts_status.functions.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 666132fa9e..546d73c755 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index 7ae57a6c4e..c5c9c1f1f4 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index 52bbb6b27c..da05ef5770 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php index d990846354..dfef58ce56 100755 --- a/pandora_console/operation/agentes/estado_monitores.php +++ b/pandora_console/operation/agentes/estado_monitores.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/exportdata.php b/pandora_console/operation/agentes/exportdata.php index 61df2cade1..5791699510 100644 --- a/pandora_console/operation/agentes/exportdata.php +++ b/pandora_console/operation/agentes/exportdata.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/external_tools.php b/pandora_console/operation/agentes/external_tools.php index d111249ee2..b4b27f933b 100644 --- a/pandora_console/operation/agentes/external_tools.php +++ b/pandora_console/operation/agentes/external_tools.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/graphs.php b/pandora_console/operation/agentes/graphs.php index f696060bc2..7807e925f7 100644 --- a/pandora_console/operation/agentes/graphs.php +++ b/pandora_console/operation/agentes/graphs.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/group_view.php b/pandora_console/operation/agentes/group_view.php index 78b79e4f64..6a863a4e78 100644 --- a/pandora_console/operation/agentes/group_view.php +++ b/pandora_console/operation/agentes/group_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/interface_traffic_graph_win.php b/pandora_console/operation/agentes/interface_traffic_graph_win.php index 57b400fbcd..ec1dc4b0d4 100644 --- a/pandora_console/operation/agentes/interface_traffic_graph_win.php +++ b/pandora_console/operation/agentes/interface_traffic_graph_win.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/interface_view.php b/pandora_console/operation/agentes/interface_view.php index 580ae0702e..10ffafea71 100644 --- a/pandora_console/operation/agentes/interface_view.php +++ b/pandora_console/operation/agentes/interface_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/pandora_networkmap.editor.php b/pandora_console/operation/agentes/pandora_networkmap.editor.php index add8c2af51..968db594ac 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.editor.php +++ b/pandora_console/operation/agentes/pandora_networkmap.editor.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/pandora_networkmap.php b/pandora_console/operation/agentes/pandora_networkmap.php index 9f238aef78..c379548f8f 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.php +++ b/pandora_console/operation/agentes/pandora_networkmap.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/pandora_networkmap.view.php b/pandora_console/operation/agentes/pandora_networkmap.view.php index 79cd94dc14..435278932c 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.view.php +++ b/pandora_console/operation/agentes/pandora_networkmap.view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/realtime_win.php b/pandora_console/operation/agentes/realtime_win.php index 7a6a0a3d97..b79371924f 100644 --- a/pandora_console/operation/agentes/realtime_win.php +++ b/pandora_console/operation/agentes/realtime_win.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/stat_win.php b/pandora_console/operation/agentes/stat_win.php index 539ebc1626..40877a3099 100644 --- a/pandora_console/operation/agentes/stat_win.php +++ b/pandora_console/operation/agentes/stat_win.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index c4fffb7df2..3422903ace 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/tactical.php b/pandora_console/operation/agentes/tactical.php index 127284d5c4..6ce9edbe78 100755 --- a/pandora_console/operation/agentes/tactical.php +++ b/pandora_console/operation/agentes/tactical.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index d451c87063..a9d27e21f0 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/cluster/cluster.php b/pandora_console/operation/cluster/cluster.php index dfcdca1e94..cf2f9398f1 100755 --- a/pandora_console/operation/cluster/cluster.php +++ b/pandora_console/operation/cluster/cluster.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/dashboard/dashboard.php b/pandora_console/operation/dashboard/dashboard.php index 62de0d1ca4..0a3fc0b526 100644 --- a/pandora_console/operation/dashboard/dashboard.php +++ b/pandora_console/operation/dashboard/dashboard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/dashboard/public_dashboard.php b/pandora_console/operation/dashboard/public_dashboard.php index a7e71c41ca..29b242eb55 100644 --- a/pandora_console/operation/dashboard/public_dashboard.php +++ b/pandora_console/operation/dashboard/public_dashboard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 30c397b0f3..329c206293 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/events/events_rss.php b/pandora_console/operation/events/events_rss.php index 0aec573e5e..e1946b428b 100644 --- a/pandora_console/operation/events/events_rss.php +++ b/pandora_console/operation/events/events_rss.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/events/export_csv.php b/pandora_console/operation/events/export_csv.php index b8bc3dcb7b..5571d5ebf7 100644 --- a/pandora_console/operation/events/export_csv.php +++ b/pandora_console/operation/events/export_csv.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index a7aa832055..ae38d32c7f 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/heatmap.php b/pandora_console/operation/heatmap.php index 05d7be34dd..87ddb7e2e7 100644 --- a/pandora_console/operation/heatmap.php +++ b/pandora_console/operation/heatmap.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index b6f9d64f01..8e50b585bc 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 8d5fbaa9cf..da7604f742 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/messages/message_edit.php b/pandora_console/operation/messages/message_edit.php index 6f7a7d6b65..69f3a29bbc 100644 --- a/pandora_console/operation/messages/message_edit.php +++ b/pandora_console/operation/messages/message_edit.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/messages/message_list.php b/pandora_console/operation/messages/message_list.php index 0b45f6d2ff..4c76c0d826 100644 --- a/pandora_console/operation/messages/message_list.php +++ b/pandora_console/operation/messages/message_list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/netflow/netflow_explorer.php b/pandora_console/operation/netflow/netflow_explorer.php index a04886f8d7..0c6afca4c8 100644 --- a/pandora_console/operation/netflow/netflow_explorer.php +++ b/pandora_console/operation/netflow/netflow_explorer.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php index 52d0452520..a32117e7cb 100644 --- a/pandora_console/operation/netflow/nf_live_view.php +++ b/pandora_console/operation/netflow/nf_live_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/network/network_report.php b/pandora_console/operation/network/network_report.php index 63e8b51f03..912f8662bf 100644 --- a/pandora_console/operation/network/network_report.php +++ b/pandora_console/operation/network/network_report.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/network/network_usage_map.php b/pandora_console/operation/network/network_usage_map.php index 46c88ef7a6..233241e660 100644 --- a/pandora_console/operation/network/network_usage_map.php +++ b/pandora_console/operation/network/network_usage_map.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/reporting/graph_viewer.php b/pandora_console/operation/reporting/graph_viewer.php index 26289f4b3c..cf9faf0ff3 100644 --- a/pandora_console/operation/reporting/graph_viewer.php +++ b/pandora_console/operation/reporting/graph_viewer.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/search_policies.getdata.php b/pandora_console/operation/search_policies.getdata.php index 9f84dd48d6..bd81cb4b39 100644 --- a/pandora_console/operation/search_policies.getdata.php +++ b/pandora_console/operation/search_policies.getdata.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/snmpconsole/snmp_browser.php b/pandora_console/operation/snmpconsole/snmp_browser.php index b39833d7a3..e50164f680 100644 --- a/pandora_console/operation/snmpconsole/snmp_browser.php +++ b/pandora_console/operation/snmpconsole/snmp_browser.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/snmpconsole/snmp_mib_uploader.php b/pandora_console/operation/snmpconsole/snmp_mib_uploader.php index 61a79fba7e..4c8f0d73a5 100644 --- a/pandora_console/operation/snmpconsole/snmp_mib_uploader.php +++ b/pandora_console/operation/snmpconsole/snmp_mib_uploader.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/snmpconsole/snmp_view.php b/pandora_console/operation/snmpconsole/snmp_view.php index 85e10d7fd9..63601a4b7b 100755 --- a/pandora_console/operation/snmpconsole/snmp_view.php +++ b/pandora_console/operation/snmpconsole/snmp_view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/tree.php b/pandora_console/operation/tree.php index 6a3f66663a..239600694a 100755 --- a/pandora_console/operation/tree.php +++ b/pandora_console/operation/tree.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 0a9e2e98d4..dec3713226 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/users/user_edit_header.php b/pandora_console/operation/users/user_edit_header.php index 646f04204f..9e74f0dbdd 100644 --- a/pandora_console/operation/users/user_edit_header.php +++ b/pandora_console/operation/users/user_edit_header.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/users/user_edit_notifications.php b/pandora_console/operation/users/user_edit_notifications.php index 127d266a3b..d0c24c9a53 100644 --- a/pandora_console/operation/users/user_edit_notifications.php +++ b/pandora_console/operation/users/user_edit_notifications.php @@ -10,8 +10,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/operation/visual_console/view.php b/pandora_console/operation/visual_console/view.php index 4596bfde77..1b8292841a 100644 --- a/pandora_console/operation/visual_console/view.php +++ b/pandora_console/operation/visual_console/view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/tools/diagnostics.php b/pandora_console/tools/diagnostics.php index 0e9c50770b..38a9737f86 100644 --- a/pandora_console/tools/diagnostics.php +++ b/pandora_console/tools/diagnostics.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/api.php b/pandora_console/update_manager_client/api.php index 528fd4b1bf..5c21d28de7 100644 --- a/pandora_console/update_manager_client/api.php +++ b/pandora_console/update_manager_client/api.php @@ -14,8 +14,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php b/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php index 9d83a1464d..4c348c7803 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/lib/UpdateManager/Client.php b/pandora_console/update_manager_client/lib/UpdateManager/Client.php index 7d38482b54..528298b914 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/Client.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/Client.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php index fcf925af6d..36800aea56 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php b/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php index b0c23005ad..0d9c79daa2 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/views/offline.php b/pandora_console/update_manager_client/views/offline.php index 1f45cd6a05..059d9429d2 100644 --- a/pandora_console/update_manager_client/views/offline.php +++ b/pandora_console/update_manager_client/views/offline.php @@ -11,8 +11,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php index 6328a9436a..7d991eeded 100644 --- a/pandora_console/update_manager_client/views/online.php +++ b/pandora_console/update_manager_client/views/online.php @@ -11,8 +11,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/calendar/edit.php b/pandora_console/views/calendar/edit.php index 7b9baf233e..eb12f120ef 100644 --- a/pandora_console/views/calendar/edit.php +++ b/pandora_console/views/calendar/edit.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/calendar/list.php b/pandora_console/views/calendar/list.php index 550923a5d2..23e8019905 100644 --- a/pandora_console/views/calendar/list.php +++ b/pandora_console/views/calendar/list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/calendar/special_days.php b/pandora_console/views/calendar/special_days.php index b31dfa0d68..0f4f4ea004 100644 --- a/pandora_console/views/calendar/special_days.php +++ b/pandora_console/views/calendar/special_days.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/calendar/special_days_edit.php b/pandora_console/views/calendar/special_days_edit.php index 95a77bb785..dbcfca7025 100644 --- a/pandora_console/views/calendar/special_days_edit.php +++ b/pandora_console/views/calendar/special_days_edit.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/cluster/edit.php b/pandora_console/views/cluster/edit.php index 0f0089dc37..d6f424ca7e 100644 --- a/pandora_console/views/cluster/edit.php +++ b/pandora_console/views/cluster/edit.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/cluster/list.php b/pandora_console/views/cluster/list.php index 12cfdbc621..03ec4ba5a7 100644 --- a/pandora_console/views/cluster/list.php +++ b/pandora_console/views/cluster/list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/cluster/view.php b/pandora_console/views/cluster/view.php index 76216b93f0..c4e4035235 100644 --- a/pandora_console/views/cluster/view.php +++ b/pandora_console/views/cluster/view.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/consoles/list.php b/pandora_console/views/consoles/list.php index 4d4e49aa29..7ed8c92d18 100644 --- a/pandora_console/views/consoles/list.php +++ b/pandora_console/views/consoles/list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/cell.php b/pandora_console/views/dashboard/cell.php index 173e0c98bb..d9ffba349e 100644 --- a/pandora_console/views/dashboard/cell.php +++ b/pandora_console/views/dashboard/cell.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/configurationWidgets.php b/pandora_console/views/dashboard/configurationWidgets.php index 260512d2be..9e87ddbed1 100644 --- a/pandora_console/views/dashboard/configurationWidgets.php +++ b/pandora_console/views/dashboard/configurationWidgets.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/formDashboard.php b/pandora_console/views/dashboard/formDashboard.php index 4341f7c388..925e36a4ac 100644 --- a/pandora_console/views/dashboard/formDashboard.php +++ b/pandora_console/views/dashboard/formDashboard.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/formSlides.php b/pandora_console/views/dashboard/formSlides.php index e7da77d325..797f4ad7a9 100644 --- a/pandora_console/views/dashboard/formSlides.php +++ b/pandora_console/views/dashboard/formSlides.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/header.php b/pandora_console/views/dashboard/header.php index 0c1b47922b..b774cbd59b 100644 --- a/pandora_console/views/dashboard/header.php +++ b/pandora_console/views/dashboard/header.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/jsLayout.php b/pandora_console/views/dashboard/jsLayout.php index 8bd060ae6a..900ceea53f 100644 --- a/pandora_console/views/dashboard/jsLayout.php +++ b/pandora_console/views/dashboard/jsLayout.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/layout.php b/pandora_console/views/dashboard/layout.php index 74ff9993ca..dfc479b893 100644 --- a/pandora_console/views/dashboard/layout.php +++ b/pandora_console/views/dashboard/layout.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/list.php b/pandora_console/views/dashboard/list.php index 223a6ce709..d87bd79508 100644 --- a/pandora_console/views/dashboard/list.php +++ b/pandora_console/views/dashboard/list.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/listWidgets.php b/pandora_console/views/dashboard/listWidgets.php index f0ffc37831..0f4c9473e7 100644 --- a/pandora_console/views/dashboard/listWidgets.php +++ b/pandora_console/views/dashboard/listWidgets.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/slides.php b/pandora_console/views/dashboard/slides.php index 5aa747a73f..c85ea85aed 100644 --- a/pandora_console/views/dashboard/slides.php +++ b/pandora_console/views/dashboard/slides.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/slidesWidget.php b/pandora_console/views/dashboard/slidesWidget.php index 2558aa4937..7c671d50b9 100644 --- a/pandora_console/views/dashboard/slidesWidget.php +++ b/pandora_console/views/dashboard/slidesWidget.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index deb316ec6d..2efc70bec3 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/views/dashboard/widget.php b/pandora_console/views/dashboard/widget.php index b13e9306be..3d6b5cf4a0 100644 --- a/pandora_console/views/dashboard/widget.php +++ b/pandora_console/views/dashboard/widget.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ diff --git a/pandora_console/ws.php b/pandora_console/ws.php index a5457a3662..7f5aabeb43 100644 --- a/pandora_console/ws.php +++ b/pandora_console/ws.php @@ -9,8 +9,8 @@ * @license See below * * ______ ___ _______ _______ ________ - * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| - * | __/| _ | | _ || _ | _| _ | | ___| |__ | + * | __ \.-----.--.--.--| |.-----.----.-----. | ___| | | __| + * | __/| _ | | _ || _ | _| _ | | ___| |__ | * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ From 1f8752ee63617bd7e05c876ffa7b37c6dc40f6b6 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 13:10:16 +0200 Subject: [PATCH 366/533] #11476 Fix pandora url --- pandora_console/ajax.php | 2 +- pandora_console/extensions/agents_alerts.php | 2 +- pandora_console/extensions/agents_modules.php | 2 +- pandora_console/extensions/api_checker.php | 2 +- pandora_console/extensions/db_status.php | 2 +- pandora_console/extensions/dbmanager.php | 2 +- pandora_console/extensions/disabled/matrix_events.php | 2 +- pandora_console/extensions/extension_uploader.php | 2 +- pandora_console/extensions/files_repo.php | 2 +- pandora_console/extensions/files_repo/files_repo_form.php | 2 +- pandora_console/extensions/files_repo/files_repo_get_file.php | 2 +- pandora_console/extensions/files_repo/files_repo_list.php | 2 +- .../extensions/files_repo/functions_files_repo.php | 2 +- pandora_console/extensions/insert_data.php | 2 +- pandora_console/extensions/matrix_events/ajax.php | 2 +- pandora_console/extensions/module_groups.php | 2 +- pandora_console/extensions/pandora_logs.php | 2 +- pandora_console/extensions/quick_shell.php | 2 +- pandora_console/extensions/realtime_graphs.php | 2 +- pandora_console/extensions/realtime_graphs/ajax.php | 2 +- pandora_console/extensions/resource_exportation.php | 2 +- pandora_console/extensions/resource_registration.php | 2 +- pandora_console/extensions/users_connected.php | 2 +- pandora_console/general/error_screen.php | 2 +- pandora_console/general/first_task/HA_cluster_builder.php | 2 +- pandora_console/general/first_task/cluster_builder.php | 2 +- pandora_console/general/first_task/collections.php | 2 +- pandora_console/general/first_task/custom_fields.php | 2 +- pandora_console/general/first_task/custom_graphs.php | 2 +- pandora_console/general/first_task/fields_manager.php | 2 +- pandora_console/general/first_task/incidents.php | 2 +- pandora_console/general/first_task/map_builder.php | 2 +- pandora_console/general/first_task/network_map.php | 2 +- pandora_console/general/first_task/omnishell.php | 2 +- pandora_console/general/first_task/planned_downtime.php | 2 +- pandora_console/general/first_task/recon_view.php | 2 +- pandora_console/general/first_task/service_list.php | 2 +- pandora_console/general/first_task/snmp_filters.php | 2 +- pandora_console/general/first_task/tags.php | 2 +- pandora_console/general/footer.php | 2 +- pandora_console/general/header.php | 2 +- pandora_console/general/help_feedback.php | 2 +- pandora_console/general/last_message.php | 2 +- pandora_console/general/links_menu.php | 2 +- pandora_console/general/login_help_dialog.php | 2 +- pandora_console/general/login_page.php | 2 +- pandora_console/general/logoff.php | 2 +- pandora_console/general/logon_failed.php | 2 +- pandora_console/general/logon_ok.php | 2 +- pandora_console/general/main_menu.php | 2 +- pandora_console/general/maintenance.php | 2 +- pandora_console/general/news_dialog.php | 2 +- pandora_console/general/noaccess2.php | 2 +- pandora_console/general/node_deactivated.php | 2 +- pandora_console/general/pandora_help.php | 2 +- pandora_console/general/php_message.php | 2 +- pandora_console/general/register.php | 2 +- pandora_console/general/reporting_console_node.php | 2 +- pandora_console/general/sap_view.php | 2 +- pandora_console/general/ui/agents_list.php | 2 +- pandora_console/godmode/agentes/agent_conf_gis.php | 2 +- pandora_console/godmode/agentes/agent_deploy.php | 2 +- pandora_console/godmode/agentes/agent_incidents.php | 2 +- pandora_console/godmode/agentes/agent_manager.php | 2 +- pandora_console/godmode/agentes/agent_template.php | 2 +- pandora_console/godmode/agentes/agent_wizard.php | 2 +- pandora_console/godmode/agentes/configurar_agente.php | 2 +- pandora_console/godmode/agentes/configure_field.php | 2 +- pandora_console/godmode/agentes/fields_manager.php | 2 +- pandora_console/godmode/agentes/inventory_manager.php | 2 +- pandora_console/godmode/agentes/modificar_agente.php | 2 +- pandora_console/godmode/agentes/module_manager.php | 2 +- pandora_console/godmode/agentes/module_manager_editor.php | 2 +- .../godmode/agentes/module_manager_editor_common.php | 2 +- .../godmode/agentes/module_manager_editor_data.php | 2 +- .../godmode/agentes/module_manager_editor_network.php | 2 +- .../godmode/agentes/module_manager_editor_plugin.php | 2 +- .../godmode/agentes/module_manager_editor_prediction.php | 2 +- pandora_console/godmode/agentes/module_manager_editor_web.php | 2 +- pandora_console/godmode/agentes/module_manager_editor_wmi.php | 2 +- .../godmode/agentes/pandora_networkmap_empty.editor.php | 2 +- pandora_console/godmode/agentes/planned_downtime.editor.php | 2 +- .../godmode/agentes/planned_downtime.export_csv.php | 2 +- pandora_console/godmode/agentes/planned_downtime.list.php | 2 +- .../godmode/agentes/status_monitor_custom_fields.php | 2 +- pandora_console/godmode/alerts/alert_actions.php | 2 +- pandora_console/godmode/alerts/alert_commands.php | 2 +- pandora_console/godmode/alerts/alert_list.builder.php | 2 +- pandora_console/godmode/alerts/alert_list.php | 2 +- pandora_console/godmode/alerts/alert_special_days.php | 2 +- pandora_console/godmode/alerts/alert_templates.php | 2 +- pandora_console/godmode/alerts/alert_view.php | 2 +- pandora_console/godmode/alerts/configure_alert_action.php | 2 +- pandora_console/godmode/alerts/configure_alert_command.php | 2 +- pandora_console/godmode/alerts/configure_alert_template.php | 2 +- pandora_console/godmode/audit_log.php | 2 +- pandora_console/godmode/audit_log_csv.php | 2 +- pandora_console/godmode/category/category.php | 2 +- pandora_console/godmode/category/edit_category.php | 2 +- pandora_console/godmode/consoles/consoles.php | 2 +- pandora_console/godmode/db/db_main.php | 2 +- pandora_console/godmode/events/configuration_sounds.php | 2 +- pandora_console/godmode/events/custom_events.php | 2 +- pandora_console/godmode/events/event_edit_filter.php | 2 +- pandora_console/godmode/events/event_filter.php | 2 +- pandora_console/godmode/events/event_responses.editor.php | 2 +- pandora_console/godmode/events/event_responses.list.php | 2 +- pandora_console/godmode/events/event_responses.php | 2 +- pandora_console/godmode/events/events.php | 2 +- pandora_console/godmode/extensions.php | 2 +- pandora_console/godmode/gis_maps/configure_gis_map.php | 2 +- pandora_console/godmode/groups/configure_group.php | 2 +- pandora_console/godmode/groups/configure_modu_group.php | 2 +- pandora_console/godmode/groups/credential_store.php | 2 +- pandora_console/godmode/groups/group_list.php | 2 +- pandora_console/godmode/groups/modu_group_list.php | 2 +- pandora_console/godmode/groups/tactical.php | 2 +- pandora_console/godmode/massive/massive_add_action_alerts.php | 2 +- pandora_console/godmode/massive/massive_add_alerts.php | 2 +- pandora_console/godmode/massive/massive_add_profiles.php | 2 +- pandora_console/godmode/massive/massive_copy_modules.php | 2 +- .../godmode/massive/massive_delete_action_alerts.php | 2 +- pandora_console/godmode/massive/massive_delete_agents.php | 2 +- pandora_console/godmode/massive/massive_delete_alerts.php | 2 +- pandora_console/godmode/massive/massive_delete_modules.php | 2 +- pandora_console/godmode/massive/massive_delete_profiles.php | 2 +- pandora_console/godmode/massive/massive_edit_agents.php | 2 +- pandora_console/godmode/massive/massive_edit_modules.php | 2 +- pandora_console/godmode/massive/massive_edit_plugins.php | 2 +- pandora_console/godmode/massive/massive_edit_users.php | 2 +- .../godmode/massive/massive_enable_disable_alerts.php | 2 +- pandora_console/godmode/massive/massive_operations.php | 2 +- pandora_console/godmode/massive/massive_standby_alerts.php | 2 +- pandora_console/godmode/menu.php | 2 +- .../godmode/module_library/module_library_view.php | 2 +- .../godmode/modules/configuration_wizard_setup.php | 2 +- pandora_console/godmode/modules/manage_inventory_modules.php | 2 +- .../godmode/modules/manage_inventory_modules_form.php | 2 +- pandora_console/godmode/modules/manage_module_templates.php | 2 +- pandora_console/godmode/modules/manage_nc_groups.php | 2 +- pandora_console/godmode/modules/manage_nc_groups_form.php | 2 +- pandora_console/godmode/modules/manage_network_components.php | 2 +- .../godmode/modules/manage_network_components_form.php | 2 +- .../godmode/modules/manage_network_components_form_common.php | 2 +- .../modules/manage_network_components_form_network.php | 2 +- .../godmode/modules/manage_network_components_form_plugin.php | 2 +- .../godmode/modules/manage_network_components_form_wizard.php | 2 +- .../godmode/modules/manage_network_components_form_wmi.php | 2 +- pandora_console/godmode/modules/manage_network_templates.php | 2 +- .../godmode/modules/manage_network_templates_form.php | 2 +- pandora_console/godmode/modules/module_list.php | 2 +- .../godmode/modules/private_enterprise_numbers.php | 2 +- pandora_console/godmode/netflow/nf_edit.php | 2 +- pandora_console/godmode/netflow/nf_edit_form.php | 4 ++-- pandora_console/godmode/netflow/nf_item_list.php | 2 +- pandora_console/godmode/reporting/create_container.php | 2 +- .../godmode/reporting/graph_builder.graph_editor.php | 2 +- pandora_console/godmode/reporting/graph_builder.main.php | 2 +- pandora_console/godmode/reporting/graph_builder.php | 2 +- pandora_console/godmode/reporting/graph_container.php | 2 +- pandora_console/godmode/reporting/graphs.php | 2 +- pandora_console/godmode/reporting/map_builder.php | 2 +- .../godmode/reporting/reporting_builder.item_editor.php | 2 +- .../godmode/reporting/reporting_builder.list_items.php | 2 +- pandora_console/godmode/reporting/reporting_builder.main.php | 2 +- pandora_console/godmode/reporting/reporting_builder.php | 2 +- .../godmode/reporting/visual_console_builder.data.php | 2 +- .../godmode/reporting/visual_console_builder.editor.php | 2 +- .../godmode/reporting/visual_console_builder.elements.php | 2 +- pandora_console/godmode/reporting/visual_console_builder.php | 2 +- .../godmode/reporting/visual_console_builder.wizard.php | 2 +- pandora_console/godmode/reporting/visual_console_favorite.php | 2 +- pandora_console/godmode/servers/manage_recontask.php | 2 +- pandora_console/godmode/servers/manage_recontask_form.php | 2 +- pandora_console/godmode/servers/modificar_server.php | 2 +- pandora_console/godmode/servers/plugin.php | 2 +- pandora_console/godmode/servers/plugin_registration.php | 2 +- pandora_console/godmode/servers/recon_script.php | 2 +- pandora_console/godmode/servers/servers.build_table.php | 2 +- pandora_console/godmode/setup/file_manager.php | 2 +- pandora_console/godmode/setup/license.php | 2 +- pandora_console/godmode/setup/links.php | 2 +- pandora_console/godmode/setup/news.php | 2 +- pandora_console/godmode/setup/os.builder.php | 2 +- pandora_console/godmode/setup/os.list.php | 2 +- pandora_console/godmode/setup/os.php | 2 +- pandora_console/godmode/setup/performance.php | 2 +- pandora_console/godmode/setup/setup.php | 2 +- pandora_console/godmode/setup/setup_auth.php | 2 +- pandora_console/godmode/setup/setup_ehorus.php | 2 +- pandora_console/godmode/setup/setup_external_tools.php | 2 +- pandora_console/godmode/setup/setup_general.php | 2 +- pandora_console/godmode/setup/setup_integria.php | 2 +- pandora_console/godmode/setup/setup_netflow.php | 2 +- pandora_console/godmode/setup/setup_notifications.php | 2 +- pandora_console/godmode/setup/setup_sflow.php | 2 +- pandora_console/godmode/setup/setup_visuals.php | 2 +- pandora_console/godmode/setup/setup_websocket_engine.php | 2 +- pandora_console/godmode/setup/snmp_wizard.php | 2 +- pandora_console/godmode/setup/welcome_tips.php | 2 +- pandora_console/godmode/snmpconsole/snmp_alert.php | 2 +- pandora_console/godmode/snmpconsole/snmp_filters.php | 2 +- pandora_console/godmode/snmpconsole/snmp_trap_generator.php | 2 +- pandora_console/godmode/tag/edit_tag.php | 2 +- pandora_console/godmode/tag/tag.php | 2 +- pandora_console/godmode/um_client/api.php | 2 +- pandora_console/godmode/um_client/index.php | 2 +- .../godmode/update_manager/update_manager.history.php | 2 +- pandora_console/godmode/update_manager/update_manager.php | 2 +- .../godmode/update_manager/update_manager.setup.php | 2 +- pandora_console/godmode/users/configure_profile.php | 2 +- pandora_console/godmode/users/configure_user.php | 2 +- pandora_console/godmode/users/profile_list.php | 2 +- pandora_console/godmode/users/user_list.php | 2 +- pandora_console/godmode/users/user_management.php | 2 +- pandora_console/godmode/wizards/DiscoveryTaskList.class.php | 2 +- pandora_console/godmode/wizards/HostDevices.class.php | 2 +- pandora_console/godmode/wizards/Wizard.main.php | 2 +- pandora_console/include/Image/image_functions.php | 2 +- pandora_console/include/ajax/agent.php | 2 +- pandora_console/include/ajax/audit_log.php | 2 +- pandora_console/include/ajax/custom_fields.php | 2 +- pandora_console/include/ajax/double_auth.ajax.php | 2 +- pandora_console/include/ajax/events.php | 2 +- pandora_console/include/ajax/events_extended.php | 2 +- pandora_console/include/ajax/fav_menu.ajax.php | 2 +- pandora_console/include/ajax/graph.ajax.php | 2 +- pandora_console/include/ajax/group.php | 2 +- pandora_console/include/ajax/heatmap.ajax.php | 2 +- pandora_console/include/ajax/integria_incidents.ajax.php | 2 +- pandora_console/include/ajax/map_enterprise.ajax.php | 2 +- pandora_console/include/ajax/menu.ajax.php | 2 +- pandora_console/include/ajax/module.php | 2 +- pandora_console/include/ajax/order_interpreter.php | 2 +- pandora_console/include/ajax/planned_downtime.ajax.php | 2 +- pandora_console/include/ajax/profile.php | 2 +- pandora_console/include/ajax/reporting.ajax.php | 2 +- pandora_console/include/ajax/skins.ajax.php | 2 +- pandora_console/include/ajax/snmp.ajax.php | 2 +- pandora_console/include/ajax/snmp_browser.ajax.php | 2 +- pandora_console/include/ajax/task_list.ajax.php | 2 +- pandora_console/include/ajax/tips_window.ajax.php | 2 +- pandora_console/include/ajax/tree.ajax.php | 2 +- pandora_console/include/ajax/update_manager.php | 2 +- pandora_console/include/ajax/visual_console.ajax.php | 2 +- pandora_console/include/ajax/visual_console_builder.ajax.php | 2 +- pandora_console/include/ajax/web_server_module_debug.php | 2 +- pandora_console/include/ajax/welcome_window.php | 2 +- pandora_console/include/api.php | 2 +- pandora_console/include/auth/ldap.php | 2 +- pandora_console/include/auth/mysql.php | 2 +- pandora_console/include/chart_generator.php | 2 +- pandora_console/include/class/AgentDeployWizard.class.php | 2 +- pandora_console/include/class/AgentWizard.class.php | 2 +- pandora_console/include/class/AgentsAlerts.class.php | 2 +- pandora_console/include/class/AuditLog.class.php | 2 +- pandora_console/include/class/CalendarManager.class.php | 2 +- pandora_console/include/class/ConfigPEN.class.php | 2 +- pandora_console/include/class/ConsoleSupervisor.php | 2 +- pandora_console/include/class/CredentialStore.class.php | 2 +- pandora_console/include/class/CustomNetScan.class.php | 2 +- pandora_console/include/class/Diagnostics.class.php | 2 +- pandora_console/include/class/EventSound.class.php | 2 +- pandora_console/include/class/ExternalTools.class.php | 2 +- pandora_console/include/class/HTML.class.php | 2 +- pandora_console/include/class/Heatmap.class.php | 2 +- pandora_console/include/class/HelpFeedBack.class.php | 2 +- pandora_console/include/class/ManageNetScanScripts.class.php | 2 +- pandora_console/include/class/ModuleTemplates.class.php | 2 +- pandora_console/include/class/NetworkMap.class.php | 2 +- pandora_console/include/class/OrderInterpreter.class.php | 2 +- pandora_console/include/class/SatelliteAgent.class.php | 2 +- pandora_console/include/class/SatelliteCollection.class.php | 2 +- pandora_console/include/class/SnmpConsole.class.php | 2 +- pandora_console/include/class/TipsWindow.class.php | 2 +- pandora_console/include/class/Tree.class.php | 2 +- pandora_console/include/class/TreeGroup.class.php | 2 +- pandora_console/include/class/TreeGroupEdition.class.php | 2 +- pandora_console/include/class/TreeModule.class.php | 2 +- pandora_console/include/class/TreeModuleGroup.class.php | 2 +- pandora_console/include/class/TreeOS.class.php | 2 +- pandora_console/include/class/TreeService.class.php | 2 +- pandora_console/include/class/TreeTag.class.php | 2 +- pandora_console/include/class/WebServerModuleDebug.class.php | 2 +- pandora_console/include/class/WelcomeWindow.class.php | 2 +- pandora_console/include/config.inc.php | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/include/connection_check.php | 2 +- pandora_console/include/constants.php | 2 +- pandora_console/include/db/mysql.php | 2 +- pandora_console/include/db/oracle.php | 2 +- pandora_console/include/db/postgresql.php | 2 +- pandora_console/include/functions.php | 2 +- pandora_console/include/functions_agents.php | 2 +- pandora_console/include/functions_alerts.php | 2 +- pandora_console/include/functions_api.php | 2 +- pandora_console/include/functions_categories.php | 2 +- pandora_console/include/functions_clippy.php | 2 +- pandora_console/include/functions_component_groups.php | 2 +- pandora_console/include/functions_config.php | 4 ++-- pandora_console/include/functions_container.php | 2 +- pandora_console/include/functions_credential_store.php | 2 +- pandora_console/include/functions_cron.php | 2 +- pandora_console/include/functions_custom_fields.php | 2 +- pandora_console/include/functions_custom_graphs.php | 2 +- pandora_console/include/functions_db.php | 2 +- pandora_console/include/functions_event_responses.php | 2 +- pandora_console/include/functions_events.php | 2 +- pandora_console/include/functions_exportserver.php | 2 +- pandora_console/include/functions_extensions.php | 2 +- pandora_console/include/functions_filemanager.php | 2 +- pandora_console/include/functions_forecast.php | 2 +- pandora_console/include/functions_gis.php | 2 +- pandora_console/include/functions_graph.php | 2 +- pandora_console/include/functions_groups.php | 2 +- pandora_console/include/functions_groupview.php | 2 +- pandora_console/include/functions_html.php | 2 +- pandora_console/include/functions_incidents.php | 2 +- pandora_console/include/functions_integriaims.php | 2 +- pandora_console/include/functions_inventory.php | 2 +- pandora_console/include/functions_io.php | 2 +- pandora_console/include/functions_maps.php | 2 +- pandora_console/include/functions_massive_operations.php | 2 +- pandora_console/include/functions_menu.php | 2 +- pandora_console/include/functions_messages.php | 2 +- pandora_console/include/functions_migration.php | 2 +- pandora_console/include/functions_modules.php | 2 +- pandora_console/include/functions_netflow.php | 2 +- pandora_console/include/functions_network.php | 2 +- pandora_console/include/functions_network_components.php | 2 +- pandora_console/include/functions_network_profiles.php | 2 +- pandora_console/include/functions_networkmap.php | 2 +- pandora_console/include/functions_networkmaps.php | 2 +- pandora_console/include/functions_notifications.php | 2 +- pandora_console/include/functions_os.php | 2 +- pandora_console/include/functions_pandora_networkmap.php | 2 +- pandora_console/include/functions_planned_downtimes.php | 2 +- pandora_console/include/functions_plugins.php | 2 +- pandora_console/include/functions_post_process.php | 2 +- pandora_console/include/functions_profile.php | 2 +- pandora_console/include/functions_register.php | 2 +- pandora_console/include/functions_reporting.php | 2 +- pandora_console/include/functions_reporting_html.php | 2 +- pandora_console/include/functions_reporting_xml.php | 2 +- pandora_console/include/functions_reports.php | 2 +- pandora_console/include/functions_servers.php | 2 +- pandora_console/include/functions_snmp.php | 2 +- pandora_console/include/functions_snmp_browser.php | 2 +- pandora_console/include/functions_tactical.php | 2 +- pandora_console/include/functions_tags.php | 2 +- pandora_console/include/functions_themes.php | 2 +- pandora_console/include/functions_treeview.php | 2 +- pandora_console/include/functions_ui.php | 2 +- pandora_console/include/functions_ui_renders.php | 2 +- pandora_console/include/functions_update_manager.php | 2 +- pandora_console/include/functions_users.php | 2 +- pandora_console/include/functions_visual_map.php | 2 +- pandora_console/include/functions_visual_map_editor.php | 2 +- pandora_console/include/functions_wmi.php | 2 +- pandora_console/include/get_file.php | 2 +- pandora_console/include/graphs/export_data.php | 2 +- pandora_console/include/graphs/fgraph.php | 2 +- pandora_console/include/graphs/functions_d3.php | 2 +- pandora_console/include/graphs/functions_utils.php | 2 +- pandora_console/include/help/clippy/agent_out_of_limits.php | 2 +- .../include/help/clippy/data_configuration_module.php | 2 +- .../include/help/clippy/extension_cron_send_email.php | 2 +- .../include/help/clippy/godmode_agentes_configurar_agente.php | 2 +- .../include/help/clippy/godmode_agentes_modificar_agente.php | 2 +- .../include/help/clippy/godmode_alerts_alert_actions.php | 2 +- .../help/clippy/godmode_alerts_configure_alert_action.php | 2 +- pandora_console/include/help/clippy/homepage.php | 2 +- pandora_console/include/help/clippy/interval_agent_min.php | 2 +- pandora_console/include/help/clippy/module_unknow.php | 2 +- pandora_console/include/help/clippy/modules_not_init.php | 2 +- .../include/help/clippy/modules_not_learning_mode.php | 2 +- .../include/help/clippy/operation_agentes_status_monitor.php | 2 +- .../include/help/clippy/operation_agentes_ver_agente.php | 2 +- pandora_console/include/help/clippy/server_queued_modules.php | 2 +- pandora_console/include/help/clippy/servers_down.php | 2 +- pandora_console/include/help/clippy/topology_group.php | 2 +- pandora_console/include/include_graph_dependencies.php | 2 +- pandora_console/include/lib/Agent.php | 2 +- pandora_console/include/lib/Calendar.php | 2 +- pandora_console/include/lib/Cluster.php | 2 +- pandora_console/include/lib/ClusterModule.php | 2 +- pandora_console/include/lib/ClusterViewer/ClusterManager.php | 2 +- pandora_console/include/lib/ClusterViewer/ClusterWizard.php | 2 +- pandora_console/include/lib/Console.php | 2 +- pandora_console/include/lib/Core/Config.php | 2 +- pandora_console/include/lib/Core/DBMaintainer.php | 2 +- .../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/BasicChart.php | 2 +- .../include/lib/Dashboard/Widgets/BlockHistogram.php | 2 +- .../include/lib/Dashboard/Widgets/ColorModuleTabs.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php | 2 +- .../include/lib/Dashboard/Widgets/EventCardboard.php | 2 +- .../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php | 2 +- .../include/lib/Dashboard/Widgets/ModulesByStatus.php | 2 +- .../include/lib/Dashboard/Widgets/agent_module.php | 2 +- .../include/lib/Dashboard/Widgets/alerts_fired.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/clock.php | 2 +- .../include/lib/Dashboard/Widgets/custom_graph.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/events_list.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/example.php | 2 +- .../include/lib/Dashboard/Widgets/graph_module_histogram.php | 2 +- .../include/lib/Dashboard/Widgets/groups_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/heatmap.php | 2 +- .../include/lib/Dashboard/Widgets/maps_made_by_user.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/maps_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/module_icon.php | 2 +- .../include/lib/Dashboard/Widgets/module_status.php | 2 +- .../include/lib/Dashboard/Widgets/module_table_value.php | 2 +- .../include/lib/Dashboard/Widgets/module_value.php | 2 +- .../include/lib/Dashboard/Widgets/monitor_health.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/network_map.php | 2 +- .../include/lib/Dashboard/Widgets/os_quick_report.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/post.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/reports.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/service_map.php | 2 +- .../include/lib/Dashboard/Widgets/service_view.php | 2 +- .../include/lib/Dashboard/Widgets/single_graph.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/sla_percent.php | 2 +- .../include/lib/Dashboard/Widgets/system_group_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/tactical.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/top_n.php | 2 +- .../include/lib/Dashboard/Widgets/top_n_events_by_group.php | 2 +- .../include/lib/Dashboard/Widgets/top_n_events_by_module.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/tree_view.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/url.php | 2 +- .../include/lib/Dashboard/Widgets/ux_transaction.php | 2 +- .../include/lib/Dashboard/Widgets/wux_transaction.php | 2 +- .../include/lib/Dashboard/Widgets/wux_transaction_stats.php | 2 +- pandora_console/include/lib/Entity.php | 2 +- pandora_console/include/lib/Event.php | 2 +- pandora_console/include/lib/Group.php | 2 +- pandora_console/include/lib/Module.php | 2 +- pandora_console/include/lib/ModuleStatus.php | 2 +- pandora_console/include/lib/ModuleType.php | 2 +- pandora_console/include/lib/PublicLogin.php | 2 +- pandora_console/include/lib/SpecialDay.php | 2 +- pandora_console/include/lib/Tools/Files.php | 2 +- pandora_console/include/lib/Tools/Strings.php | 2 +- pandora_console/include/lib/User.php | 2 +- pandora_console/include/lib/View.php | 2 +- pandora_console/include/load_session.php | 2 +- pandora_console/include/php_to_js_values.php | 2 +- .../include/rest-api/models/VisualConsole/View.php | 2 +- pandora_console/include/websocket_registrations.php | 2 +- pandora_console/index.php | 2 +- pandora_console/install.php | 4 ++-- pandora_console/mobile/include/db.class.php | 2 +- pandora_console/mobile/include/functions_web.php | 2 +- pandora_console/mobile/include/system.class.php | 2 +- pandora_console/mobile/include/ui.class.php | 2 +- pandora_console/mobile/include/user.class.php | 2 +- pandora_console/mobile/index.php | 2 +- pandora_console/mobile/operation/agent.php | 2 +- pandora_console/mobile/operation/agents.php | 2 +- pandora_console/mobile/operation/alerts.php | 2 +- pandora_console/mobile/operation/events.php | 2 +- pandora_console/mobile/operation/groups.php | 2 +- pandora_console/mobile/operation/home.php | 2 +- pandora_console/mobile/operation/module_data.php | 2 +- pandora_console/mobile/operation/module_graph.php | 2 +- pandora_console/mobile/operation/modules.php | 2 +- pandora_console/mobile/operation/server_status.php | 2 +- pandora_console/mobile/operation/services.php | 2 +- pandora_console/mobile/operation/tactical.php | 2 +- pandora_console/mobile/operation/visualmap.php | 2 +- pandora_console/mobile/operation/visualmaps.php | 2 +- pandora_console/operation/agentes/agent_fields.php | 2 +- pandora_console/operation/agentes/agent_inventory.php | 2 +- pandora_console/operation/agentes/alerts_status.functions.php | 2 +- pandora_console/operation/agentes/alerts_status.php | 2 +- pandora_console/operation/agentes/custom_fields.php | 2 +- pandora_console/operation/agentes/datos_agente.php | 2 +- pandora_console/operation/agentes/ehorus_client.php | 2 +- pandora_console/operation/agentes/estado_agente.php | 2 +- pandora_console/operation/agentes/estado_generalagente.php | 2 +- pandora_console/operation/agentes/estado_monitores.php | 2 +- pandora_console/operation/agentes/export_csv.php | 2 +- pandora_console/operation/agentes/exportdata.csv.php | 2 +- pandora_console/operation/agentes/exportdata.excel.php | 2 +- pandora_console/operation/agentes/exportdata.php | 2 +- pandora_console/operation/agentes/external_tools.php | 2 +- pandora_console/operation/agentes/graphs.php | 2 +- pandora_console/operation/agentes/group_view.php | 2 +- .../operation/agentes/interface_traffic_graph_win.php | 2 +- .../operation/agentes/interface_view.functions.php | 2 +- pandora_console/operation/agentes/interface_view.php | 2 +- pandora_console/operation/agentes/log_sources_status.php | 2 +- pandora_console/operation/agentes/networkmap.dinamic.php | 2 +- .../operation/agentes/pandora_networkmap.editor.php | 2 +- pandora_console/operation/agentes/pandora_networkmap.php | 2 +- pandora_console/operation/agentes/pandora_networkmap.view.php | 2 +- pandora_console/operation/agentes/realtime_win.php | 2 +- pandora_console/operation/agentes/snapshot_view.php | 2 +- pandora_console/operation/agentes/stat_win.php | 2 +- pandora_console/operation/agentes/status_events.php | 2 +- pandora_console/operation/agentes/status_monitor.php | 2 +- pandora_console/operation/agentes/tactical.php | 2 +- pandora_console/operation/agentes/url_address.php | 2 +- pandora_console/operation/agentes/ver_agente.php | 2 +- pandora_console/operation/cluster/cluster.php | 2 +- pandora_console/operation/dashboard/dashboard.php | 2 +- pandora_console/operation/dashboard/public_dashboard.php | 2 +- pandora_console/operation/events/events.build_query.php | 2 +- pandora_console/operation/events/events.php | 2 +- pandora_console/operation/events/events_rss.php | 2 +- pandora_console/operation/events/export_csv.php | 2 +- pandora_console/operation/events/sound_events.php | 2 +- pandora_console/operation/gis_maps/ajax.php | 2 +- pandora_console/operation/gis_maps/public_console.php | 2 +- pandora_console/operation/gis_maps/render_view.php | 2 +- pandora_console/operation/heatmap.php | 2 +- .../operation/incidents/configure_integriaims_incident.php | 2 +- .../incidents/dashboard_detail_integriaims_incident.php | 2 +- pandora_console/operation/incidents/incident_statistics.php | 2 +- .../operation/incidents/integriaims_export_csv.php | 2 +- .../operation/incidents/list_integriaims_incidents.php | 2 +- pandora_console/operation/inventory/inventory.php | 2 +- pandora_console/operation/menu.php | 2 +- pandora_console/operation/messages/message_edit.php | 2 +- pandora_console/operation/messages/message_list.php | 2 +- pandora_console/operation/netflow/netflow_explorer.php | 2 +- pandora_console/operation/netflow/nf_live_view.php | 2 +- pandora_console/operation/network/network_report.php | 2 +- pandora_console/operation/network/network_usage_map.php | 2 +- pandora_console/operation/reporting/custom_reporting.php | 2 +- pandora_console/operation/reporting/graph_viewer.php | 2 +- pandora_console/operation/reporting/reporting_viewer.php | 2 +- pandora_console/operation/reporting/reporting_xml.php | 2 +- pandora_console/operation/search_agents.getdata.php | 2 +- pandora_console/operation/search_agents.php | 2 +- pandora_console/operation/search_alerts.getdata.php | 2 +- pandora_console/operation/search_alerts.php | 2 +- pandora_console/operation/search_graphs.getdata.php | 2 +- pandora_console/operation/search_graphs.php | 2 +- pandora_console/operation/search_helps.getdata.php | 2 +- pandora_console/operation/search_helps.php | 2 +- pandora_console/operation/search_main.php | 2 +- pandora_console/operation/search_maps.getdata.php | 2 +- pandora_console/operation/search_maps.php | 2 +- pandora_console/operation/search_modules.getdata.php | 2 +- pandora_console/operation/search_modules.php | 2 +- pandora_console/operation/search_policies.getdata.php | 2 +- pandora_console/operation/search_policies.php | 2 +- pandora_console/operation/search_reports.getdata.php | 2 +- pandora_console/operation/search_reports.php | 2 +- pandora_console/operation/search_results.php | 2 +- pandora_console/operation/search_users.getdata.php | 2 +- pandora_console/operation/search_users.php | 2 +- pandora_console/operation/snmpconsole/snmp_browser.php | 2 +- pandora_console/operation/snmpconsole/snmp_mib_uploader.php | 2 +- pandora_console/operation/snmpconsole/snmp_statistics.php | 2 +- pandora_console/operation/snmpconsole/snmp_view.php | 2 +- pandora_console/operation/tree.php | 2 +- pandora_console/operation/users/user_edit.php | 2 +- pandora_console/operation/users/user_edit_header.php | 2 +- pandora_console/operation/users/user_edit_notifications.php | 2 +- .../operation/visual_console/legacy_public_view.php | 2 +- pandora_console/operation/visual_console/legacy_view.php | 2 +- pandora_console/operation/visual_console/public_console.php | 2 +- pandora_console/operation/visual_console/public_view.php | 2 +- pandora_console/operation/visual_console/render_view.php | 2 +- pandora_console/operation/visual_console/view.php | 2 +- pandora_console/tools/diagnostics.php | 2 +- pandora_console/update_manager_client/api.php | 2 +- .../update_manager_client/lib/UpdateManager/API/Server.php | 2 +- .../update_manager_client/lib/UpdateManager/Client.php | 2 +- .../update_manager_client/lib/UpdateManager/UI/Manager.php | 2 +- .../update_manager_client/lib/UpdateManager/UI/View.php | 2 +- pandora_console/update_manager_client/views/offline.php | 2 +- pandora_console/update_manager_client/views/online.php | 2 +- pandora_console/update_manager_client/views/register.php | 2 +- pandora_console/views/calendar/edit.php | 2 +- pandora_console/views/calendar/list.php | 2 +- pandora_console/views/calendar/special_days.php | 2 +- pandora_console/views/calendar/special_days_edit.php | 2 +- pandora_console/views/cluster/edit.php | 2 +- pandora_console/views/cluster/list.php | 2 +- pandora_console/views/cluster/view.php | 2 +- pandora_console/views/consoles/list.php | 2 +- pandora_console/views/dashboard/cell.php | 2 +- pandora_console/views/dashboard/configurationWidgets.php | 2 +- pandora_console/views/dashboard/formDashboard.php | 2 +- pandora_console/views/dashboard/formSlides.php | 2 +- pandora_console/views/dashboard/header.php | 2 +- pandora_console/views/dashboard/jsLayout.php | 2 +- pandora_console/views/dashboard/layout.php | 2 +- pandora_console/views/dashboard/list.php | 2 +- pandora_console/views/dashboard/listWidgets.php | 2 +- pandora_console/views/dashboard/slides.php | 2 +- pandora_console/views/dashboard/slidesWidget.php | 2 +- pandora_console/views/dashboard/tipsWindow.php | 2 +- pandora_console/views/dashboard/widget.php | 2 +- pandora_console/ws.php | 2 +- .../intel_dcm/extensions/intel_dcm/intel_dcm_lib.php | 2 +- .../intel_dcm/extensions/intel_dcm_agent_management.php | 2 +- pandora_plugins/intel_dcm/extensions/intel_dcm_agent_view.php | 2 +- pandora_plugins/intel_dcm/extensions/intel_dcm_setup.php | 2 +- 602 files changed, 605 insertions(+), 605 deletions(-) diff --git a/pandora_console/ajax.php b/pandora_console/ajax.php index e17fa15571..b6d58a7292 100644 --- a/pandora_console/ajax.php +++ b/pandora_console/ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/agents_alerts.php b/pandora_console/extensions/agents_alerts.php index 33bcb436cc..7351b59a3e 100755 --- a/pandora_console/extensions/agents_alerts.php +++ b/pandora_console/extensions/agents_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index 81a711b456..008e5884e8 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index 42080636ee..c0ee5853d8 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/db_status.php b/pandora_console/extensions/db_status.php index 85ed5476a2..5bdf9644b6 100755 --- a/pandora_console/extensions/db_status.php +++ b/pandora_console/extensions/db_status.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/dbmanager.php b/pandora_console/extensions/dbmanager.php index 6c785f9d65..75e23892f2 100644 --- a/pandora_console/extensions/dbmanager.php +++ b/pandora_console/extensions/dbmanager.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/disabled/matrix_events.php b/pandora_console/extensions/disabled/matrix_events.php index 3514a21855..67ffa5e3d9 100644 --- a/pandora_console/extensions/disabled/matrix_events.php +++ b/pandora_console/extensions/disabled/matrix_events.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/extension_uploader.php b/pandora_console/extensions/extension_uploader.php index e1aba5b0fd..07fa0154c4 100644 --- a/pandora_console/extensions/extension_uploader.php +++ b/pandora_console/extensions/extension_uploader.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/files_repo.php b/pandora_console/extensions/files_repo.php index 8b31b20a16..5654790509 100644 --- a/pandora_console/extensions/files_repo.php +++ b/pandora_console/extensions/files_repo.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/files_repo/files_repo_form.php b/pandora_console/extensions/files_repo/files_repo_form.php index 265c1a711d..3533cc7b8d 100644 --- a/pandora_console/extensions/files_repo/files_repo_form.php +++ b/pandora_console/extensions/files_repo/files_repo_form.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/files_repo/files_repo_get_file.php b/pandora_console/extensions/files_repo/files_repo_get_file.php index 778958ae0b..179cad229b 100644 --- a/pandora_console/extensions/files_repo/files_repo_get_file.php +++ b/pandora_console/extensions/files_repo/files_repo_get_file.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/files_repo/files_repo_list.php b/pandora_console/extensions/files_repo/files_repo_list.php index ab01d0d551..fd1d4f2933 100644 --- a/pandora_console/extensions/files_repo/files_repo_list.php +++ b/pandora_console/extensions/files_repo/files_repo_list.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/files_repo/functions_files_repo.php b/pandora_console/extensions/files_repo/functions_files_repo.php index 5b91b68642..eed1792bef 100644 --- a/pandora_console/extensions/files_repo/functions_files_repo.php +++ b/pandora_console/extensions/files_repo/functions_files_repo.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/insert_data.php b/pandora_console/extensions/insert_data.php index 186d7b3021..4c6e7052aa 100644 --- a/pandora_console/extensions/insert_data.php +++ b/pandora_console/extensions/insert_data.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/matrix_events/ajax.php b/pandora_console/extensions/matrix_events/ajax.php index a34d913abe..b0b6557ab3 100644 --- a/pandora_console/extensions/matrix_events/ajax.php +++ b/pandora_console/extensions/matrix_events/ajax.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/module_groups.php b/pandora_console/extensions/module_groups.php index 9652f44d01..f88f184853 100644 --- a/pandora_console/extensions/module_groups.php +++ b/pandora_console/extensions/module_groups.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/pandora_logs.php b/pandora_console/extensions/pandora_logs.php index 956bc7c1e6..edca36b167 100644 --- a/pandora_console/extensions/pandora_logs.php +++ b/pandora_console/extensions/pandora_logs.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/quick_shell.php b/pandora_console/extensions/quick_shell.php index dbc4f6e2c4..027b772020 100644 --- a/pandora_console/extensions/quick_shell.php +++ b/pandora_console/extensions/quick_shell.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/realtime_graphs.php b/pandora_console/extensions/realtime_graphs.php index 071e495afd..8bb781c6fb 100644 --- a/pandora_console/extensions/realtime_graphs.php +++ b/pandora_console/extensions/realtime_graphs.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/realtime_graphs/ajax.php b/pandora_console/extensions/realtime_graphs/ajax.php index 3f911b3371..eb2562bc26 100644 --- a/pandora_console/extensions/realtime_graphs/ajax.php +++ b/pandora_console/extensions/realtime_graphs/ajax.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/extensions/resource_exportation.php b/pandora_console/extensions/resource_exportation.php index aad1f08dab..5131480df5 100755 --- a/pandora_console/extensions/resource_exportation.php +++ b/pandora_console/extensions/resource_exportation.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/resource_registration.php b/pandora_console/extensions/resource_registration.php index 37b68e02be..88cd16eea0 100755 --- a/pandora_console/extensions/resource_registration.php +++ b/pandora_console/extensions/resource_registration.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/users_connected.php b/pandora_console/extensions/users_connected.php index 5bdec37a12..672476e800 100644 --- a/pandora_console/extensions/users_connected.php +++ b/pandora_console/extensions/users_connected.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/error_screen.php b/pandora_console/general/error_screen.php index 90a8ac4060..48a52f1131 100644 --- a/pandora_console/general/error_screen.php +++ b/pandora_console/general/error_screen.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/HA_cluster_builder.php b/pandora_console/general/first_task/HA_cluster_builder.php index e99c8bb16a..9b406d3357 100644 --- a/pandora_console/general/first_task/HA_cluster_builder.php +++ b/pandora_console/general/first_task/HA_cluster_builder.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es + * Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com * This code is NOT free software. This code is NOT licenced under GPL2 licence * You cannnot redistribute it without written permission of copyright holder. * ============================================================================ diff --git a/pandora_console/general/first_task/cluster_builder.php b/pandora_console/general/first_task/cluster_builder.php index 8bb8fd78f1..f062be4746 100644 --- a/pandora_console/general/first_task/cluster_builder.php +++ b/pandora_console/general/first_task/cluster_builder.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/collections.php b/pandora_console/general/first_task/collections.php index ffc5d14b60..7628838857 100755 --- a/pandora_console/general/first_task/collections.php +++ b/pandora_console/general/first_task/collections.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/custom_fields.php b/pandora_console/general/first_task/custom_fields.php index 64dc06b31d..1a782c49ce 100644 --- a/pandora_console/general/first_task/custom_fields.php +++ b/pandora_console/general/first_task/custom_fields.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/first_task/custom_graphs.php b/pandora_console/general/first_task/custom_graphs.php index 0ede557f4e..268a49c4d2 100644 --- a/pandora_console/general/first_task/custom_graphs.php +++ b/pandora_console/general/first_task/custom_graphs.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/fields_manager.php b/pandora_console/general/first_task/fields_manager.php index 460e1b0930..03684b93e0 100755 --- a/pandora_console/general/first_task/fields_manager.php +++ b/pandora_console/general/first_task/fields_manager.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/incidents.php b/pandora_console/general/first_task/incidents.php index 6d95ee50bb..e4f5cb8814 100644 --- a/pandora_console/general/first_task/incidents.php +++ b/pandora_console/general/first_task/incidents.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/map_builder.php b/pandora_console/general/first_task/map_builder.php index e44cbcf70e..7c10b68cba 100755 --- a/pandora_console/general/first_task/map_builder.php +++ b/pandora_console/general/first_task/map_builder.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/first_task/network_map.php b/pandora_console/general/first_task/network_map.php index b477d75ece..916e1dcd06 100755 --- a/pandora_console/general/first_task/network_map.php +++ b/pandora_console/general/first_task/network_map.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/omnishell.php b/pandora_console/general/first_task/omnishell.php index 32448b83b6..de332ff678 100644 --- a/pandora_console/general/first_task/omnishell.php +++ b/pandora_console/general/first_task/omnishell.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es + * Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com * This code is NOT free software. This code is NOT licenced under GPL2 licence * You cannnot redistribute it without written permission of copyright holder. * ============================================================================ diff --git a/pandora_console/general/first_task/planned_downtime.php b/pandora_console/general/first_task/planned_downtime.php index 084704619d..cb3724d53d 100644 --- a/pandora_console/general/first_task/planned_downtime.php +++ b/pandora_console/general/first_task/planned_downtime.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/first_task/recon_view.php b/pandora_console/general/first_task/recon_view.php index 94d57285bd..553d991587 100755 --- a/pandora_console/general/first_task/recon_view.php +++ b/pandora_console/general/first_task/recon_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/service_list.php b/pandora_console/general/first_task/service_list.php index 5e27f51fc1..399fc7a282 100755 --- a/pandora_console/general/first_task/service_list.php +++ b/pandora_console/general/first_task/service_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/first_task/snmp_filters.php b/pandora_console/general/first_task/snmp_filters.php index 39aeabf96a..3e708d7d62 100755 --- a/pandora_console/general/first_task/snmp_filters.php +++ b/pandora_console/general/first_task/snmp_filters.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/first_task/tags.php b/pandora_console/general/first_task/tags.php index 791fd8be95..0dfd36ddb9 100755 --- a/pandora_console/general/first_task/tags.php +++ b/pandora_console/general/first_task/tags.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/footer.php b/pandora_console/general/footer.php index 7d36610a6c..7942cdee20 100644 --- a/pandora_console/general/footer.php +++ b/pandora_console/general/footer.php @@ -4,7 +4,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/header.php b/pandora_console/general/header.php index b33d5b5b28..df8b484b4f 100644 --- a/pandora_console/general/header.php +++ b/pandora_console/general/header.php @@ -3,7 +3,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/help_feedback.php b/pandora_console/general/help_feedback.php index 8ddde06c35..3652fed259 100644 --- a/pandora_console/general/help_feedback.php +++ b/pandora_console/general/help_feedback.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/last_message.php b/pandora_console/general/last_message.php index be84129df6..8ec8d5ea75 100644 --- a/pandora_console/general/last_message.php +++ b/pandora_console/general/last_message.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/links_menu.php b/pandora_console/general/links_menu.php index 61fc25dd1f..7b391ee3ce 100644 --- a/pandora_console/general/links_menu.php +++ b/pandora_console/general/links_menu.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/login_help_dialog.php b/pandora_console/general/login_help_dialog.php index 982993a982..0dc8edab06 100644 --- a/pandora_console/general/login_help_dialog.php +++ b/pandora_console/general/login_help_dialog.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php index 9759fac943..e424a013e8 100755 --- a/pandora_console/general/login_page.php +++ b/pandora_console/general/login_page.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/logoff.php b/pandora_console/general/logoff.php index 2e68765bc7..b8dcb9b1c1 100644 --- a/pandora_console/general/logoff.php +++ b/pandora_console/general/logoff.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/logon_failed.php b/pandora_console/general/logon_failed.php index 9d9905a97c..b0287bc291 100644 --- a/pandora_console/general/logon_failed.php +++ b/pandora_console/general/logon_failed.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/logon_ok.php b/pandora_console/general/logon_ok.php index eb2225f095..50351cc5b7 100644 --- a/pandora_console/general/logon_ok.php +++ b/pandora_console/general/logon_ok.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/main_menu.php b/pandora_console/general/main_menu.php index 668a02685c..8ee8b8ec5f 100644 --- a/pandora_console/general/main_menu.php +++ b/pandora_console/general/main_menu.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/maintenance.php b/pandora_console/general/maintenance.php index 073729815f..59501513d7 100644 --- a/pandora_console/general/maintenance.php +++ b/pandora_console/general/maintenance.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/news_dialog.php b/pandora_console/general/news_dialog.php index a56bcd7732..92ff744aa0 100644 --- a/pandora_console/general/news_dialog.php +++ b/pandora_console/general/news_dialog.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/noaccess2.php b/pandora_console/general/noaccess2.php index b071915bd7..7c1302516c 100644 --- a/pandora_console/general/noaccess2.php +++ b/pandora_console/general/noaccess2.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/node_deactivated.php b/pandora_console/general/node_deactivated.php index de5deed43b..536d3591b6 100644 --- a/pandora_console/general/node_deactivated.php +++ b/pandora_console/general/node_deactivated.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/pandora_help.php b/pandora_console/general/pandora_help.php index 698bc49fa5..06f611fc48 100644 --- a/pandora_console/general/pandora_help.php +++ b/pandora_console/general/pandora_help.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/php_message.php b/pandora_console/general/php_message.php index a05ea6399f..7e20d59330 100644 --- a/pandora_console/general/php_message.php +++ b/pandora_console/general/php_message.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/general/register.php b/pandora_console/general/register.php index 8d9e949a45..d1f24e1245 100644 --- a/pandora_console/general/register.php +++ b/pandora_console/general/register.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/reporting_console_node.php b/pandora_console/general/reporting_console_node.php index e6f73cdd26..833e256653 100644 --- a/pandora_console/general/reporting_console_node.php +++ b/pandora_console/general/reporting_console_node.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/sap_view.php b/pandora_console/general/sap_view.php index e9b4fb357b..6e955cc6d8 100644 --- a/pandora_console/general/sap_view.php +++ b/pandora_console/general/sap_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/general/ui/agents_list.php b/pandora_console/general/ui/agents_list.php index a0519b8a7c..549a9571bf 100644 --- a/pandora_console/general/ui/agents_list.php +++ b/pandora_console/general/ui/agents_list.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/agent_conf_gis.php b/pandora_console/godmode/agentes/agent_conf_gis.php index badbe0a81f..8fa66fb9ff 100644 --- a/pandora_console/godmode/agentes/agent_conf_gis.php +++ b/pandora_console/godmode/agentes/agent_conf_gis.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/agent_deploy.php b/pandora_console/godmode/agentes/agent_deploy.php index d9e7115f37..ea57bbab96 100644 --- a/pandora_console/godmode/agentes/agent_deploy.php +++ b/pandora_console/godmode/agentes/agent_deploy.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/agent_incidents.php b/pandora_console/godmode/agentes/agent_incidents.php index 3a421d27c6..ed9e8dc6bf 100644 --- a/pandora_console/godmode/agentes/agent_incidents.php +++ b/pandora_console/godmode/agentes/agent_incidents.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/agent_manager.php b/pandora_console/godmode/agentes/agent_manager.php index 5edb6df7fb..d05ad3cf6d 100644 --- a/pandora_console/godmode/agentes/agent_manager.php +++ b/pandora_console/godmode/agentes/agent_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/agent_template.php b/pandora_console/godmode/agentes/agent_template.php index 360b1374b2..052e4aa59a 100644 --- a/pandora_console/godmode/agentes/agent_template.php +++ b/pandora_console/godmode/agentes/agent_template.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/agent_wizard.php b/pandora_console/godmode/agentes/agent_wizard.php index 0a84dfcf73..a8e9329043 100644 --- a/pandora_console/godmode/agentes/agent_wizard.php +++ b/pandora_console/godmode/agentes/agent_wizard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index 64331eea98..5bcdea183e 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/configure_field.php b/pandora_console/godmode/agentes/configure_field.php index 9279e55b1d..a50d744690 100755 --- a/pandora_console/godmode/agentes/configure_field.php +++ b/pandora_console/godmode/agentes/configure_field.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/fields_manager.php b/pandora_console/godmode/agentes/fields_manager.php index 0b101f9111..a5cdb9a8e4 100644 --- a/pandora_console/godmode/agentes/fields_manager.php +++ b/pandora_console/godmode/agentes/fields_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/inventory_manager.php b/pandora_console/godmode/agentes/inventory_manager.php index 9360970eef..3f27c3a6b3 100644 --- a/pandora_console/godmode/agentes/inventory_manager.php +++ b/pandora_console/godmode/agentes/inventory_manager.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/godmode/agentes/modificar_agente.php b/pandora_console/godmode/agentes/modificar_agente.php index d2d79ddf94..07932165f2 100644 --- a/pandora_console/godmode/agentes/modificar_agente.php +++ b/pandora_console/godmode/agentes/modificar_agente.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index fcb332163e..7aaaf099a9 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor.php b/pandora_console/godmode/agentes/module_manager_editor.php index ce2af36ca6..d7f50a186d 100644 --- a/pandora_console/godmode/agentes/module_manager_editor.php +++ b/pandora_console/godmode/agentes/module_manager_editor.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_common.php b/pandora_console/godmode/agentes/module_manager_editor_common.php index 8a43129739..65439c919e 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_common.php +++ b/pandora_console/godmode/agentes/module_manager_editor_common.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_data.php b/pandora_console/godmode/agentes/module_manager_editor_data.php index ad1a729805..90a5654d0c 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_data.php +++ b/pandora_console/godmode/agentes/module_manager_editor_data.php @@ -4,7 +4,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_network.php b/pandora_console/godmode/agentes/module_manager_editor_network.php index 4673129cf6..fd234356ef 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_network.php +++ b/pandora_console/godmode/agentes/module_manager_editor_network.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_plugin.php b/pandora_console/godmode/agentes/module_manager_editor_plugin.php index 71e83fec8e..fbe111bbc2 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_plugin.php +++ b/pandora_console/godmode/agentes/module_manager_editor_plugin.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_prediction.php b/pandora_console/godmode/agentes/module_manager_editor_prediction.php index ec2e33f2a3..53430e37fb 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_prediction.php +++ b/pandora_console/godmode/agentes/module_manager_editor_prediction.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_web.php b/pandora_console/godmode/agentes/module_manager_editor_web.php index 1188205f66..46c00ca1c3 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_web.php +++ b/pandora_console/godmode/agentes/module_manager_editor_web.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/module_manager_editor_wmi.php b/pandora_console/godmode/agentes/module_manager_editor_wmi.php index 3f67487a0a..477955e408 100644 --- a/pandora_console/godmode/agentes/module_manager_editor_wmi.php +++ b/pandora_console/godmode/agentes/module_manager_editor_wmi.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php index e3fdf3e681..d15fef0015 100644 --- a/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php +++ b/pandora_console/godmode/agentes/pandora_networkmap_empty.editor.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/planned_downtime.editor.php b/pandora_console/godmode/agentes/planned_downtime.editor.php index a922f95aa4..d9ce90f3fb 100644 --- a/pandora_console/godmode/agentes/planned_downtime.editor.php +++ b/pandora_console/godmode/agentes/planned_downtime.editor.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/planned_downtime.export_csv.php b/pandora_console/godmode/agentes/planned_downtime.export_csv.php index 92c39e6356..a7e49d8ea8 100644 --- a/pandora_console/godmode/agentes/planned_downtime.export_csv.php +++ b/pandora_console/godmode/agentes/planned_downtime.export_csv.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/planned_downtime.list.php b/pandora_console/godmode/agentes/planned_downtime.list.php index c60e969efb..199da014b3 100755 --- a/pandora_console/godmode/agentes/planned_downtime.list.php +++ b/pandora_console/godmode/agentes/planned_downtime.list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/agentes/status_monitor_custom_fields.php b/pandora_console/godmode/agentes/status_monitor_custom_fields.php index bffe9b2268..f01d986439 100644 --- a/pandora_console/godmode/agentes/status_monitor_custom_fields.php +++ b/pandora_console/godmode/agentes/status_monitor_custom_fields.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/godmode/alerts/alert_actions.php b/pandora_console/godmode/alerts/alert_actions.php index 519c0f8e12..d0e1ad9dec 100644 --- a/pandora_console/godmode/alerts/alert_actions.php +++ b/pandora_console/godmode/alerts/alert_actions.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/alert_commands.php b/pandora_console/godmode/alerts/alert_commands.php index b62e6f9671..2c7846db84 100644 --- a/pandora_console/godmode/alerts/alert_commands.php +++ b/pandora_console/godmode/alerts/alert_commands.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/alert_list.builder.php b/pandora_console/godmode/alerts/alert_list.builder.php index 7402c75a13..2c9a357af3 100644 --- a/pandora_console/godmode/alerts/alert_list.builder.php +++ b/pandora_console/godmode/alerts/alert_list.builder.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/alert_list.php b/pandora_console/godmode/alerts/alert_list.php index c99e139ef5..807d56e308 100644 --- a/pandora_console/godmode/alerts/alert_list.php +++ b/pandora_console/godmode/alerts/alert_list.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/alert_special_days.php b/pandora_console/godmode/alerts/alert_special_days.php index 2ec0f7ba2c..64cd6bb234 100644 --- a/pandora_console/godmode/alerts/alert_special_days.php +++ b/pandora_console/godmode/alerts/alert_special_days.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/alert_templates.php b/pandora_console/godmode/alerts/alert_templates.php index 2205929c28..3f6741bac5 100644 --- a/pandora_console/godmode/alerts/alert_templates.php +++ b/pandora_console/godmode/alerts/alert_templates.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/alert_view.php b/pandora_console/godmode/alerts/alert_view.php index 372938d140..ec3eb51443 100644 --- a/pandora_console/godmode/alerts/alert_view.php +++ b/pandora_console/godmode/alerts/alert_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/configure_alert_action.php b/pandora_console/godmode/alerts/configure_alert_action.php index 09e0a9d9c6..ad44e5ff27 100644 --- a/pandora_console/godmode/alerts/configure_alert_action.php +++ b/pandora_console/godmode/alerts/configure_alert_action.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/configure_alert_command.php b/pandora_console/godmode/alerts/configure_alert_command.php index 7b64a6d0a7..fdcccbaf20 100644 --- a/pandora_console/godmode/alerts/configure_alert_command.php +++ b/pandora_console/godmode/alerts/configure_alert_command.php @@ -17,7 +17,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/alerts/configure_alert_template.php b/pandora_console/godmode/alerts/configure_alert_template.php index ebf8204d98..2bd90eb526 100644 --- a/pandora_console/godmode/alerts/configure_alert_template.php +++ b/pandora_console/godmode/alerts/configure_alert_template.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/audit_log.php b/pandora_console/godmode/audit_log.php index 3f7697c012..cfaf5613e5 100644 --- a/pandora_console/godmode/audit_log.php +++ b/pandora_console/godmode/audit_log.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/audit_log_csv.php b/pandora_console/godmode/audit_log_csv.php index af1c91ae75..a59f0eef95 100644 --- a/pandora_console/godmode/audit_log_csv.php +++ b/pandora_console/godmode/audit_log_csv.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/godmode/category/category.php b/pandora_console/godmode/category/category.php index 3332fa76e0..cee9a0b3e2 100755 --- a/pandora_console/godmode/category/category.php +++ b/pandora_console/godmode/category/category.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/category/edit_category.php b/pandora_console/godmode/category/edit_category.php index f9877cf4c7..0230638d7f 100755 --- a/pandora_console/godmode/category/edit_category.php +++ b/pandora_console/godmode/category/edit_category.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/consoles/consoles.php b/pandora_console/godmode/consoles/consoles.php index fc865193b3..b5b1cf4736 100644 --- a/pandora_console/godmode/consoles/consoles.php +++ b/pandora_console/godmode/consoles/consoles.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/db/db_main.php b/pandora_console/godmode/db/db_main.php index 7eab38f881..99231d6d2e 100644 --- a/pandora_console/godmode/db/db_main.php +++ b/pandora_console/godmode/db/db_main.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/events/configuration_sounds.php b/pandora_console/godmode/events/configuration_sounds.php index 237d10412b..6e2559bbf3 100644 --- a/pandora_console/godmode/events/configuration_sounds.php +++ b/pandora_console/godmode/events/configuration_sounds.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/events/custom_events.php b/pandora_console/godmode/events/custom_events.php index 0ceda255c8..d4b15a2355 100644 --- a/pandora_console/godmode/events/custom_events.php +++ b/pandora_console/godmode/events/custom_events.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/godmode/events/event_edit_filter.php b/pandora_console/godmode/events/event_edit_filter.php index 7c0cda6467..eeee3ac2c9 100644 --- a/pandora_console/godmode/events/event_edit_filter.php +++ b/pandora_console/godmode/events/event_edit_filter.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/godmode/events/event_filter.php b/pandora_console/godmode/events/event_filter.php index ab7fec958f..e8d118c74d 100644 --- a/pandora_console/godmode/events/event_filter.php +++ b/pandora_console/godmode/events/event_filter.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/events/event_responses.editor.php b/pandora_console/godmode/events/event_responses.editor.php index 2dc4fcd7e8..38ca48925b 100644 --- a/pandora_console/godmode/events/event_responses.editor.php +++ b/pandora_console/godmode/events/event_responses.editor.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/events/event_responses.list.php b/pandora_console/godmode/events/event_responses.list.php index e14fc7b21d..6b97b5f92a 100644 --- a/pandora_console/godmode/events/event_responses.list.php +++ b/pandora_console/godmode/events/event_responses.list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/events/event_responses.php b/pandora_console/godmode/events/event_responses.php index bc8f5a2537..dc29b1ecc9 100644 --- a/pandora_console/godmode/events/event_responses.php +++ b/pandora_console/godmode/events/event_responses.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/events/events.php b/pandora_console/godmode/events/events.php index a543696e75..4d4cf97a97 100644 --- a/pandora_console/godmode/events/events.php +++ b/pandora_console/godmode/events/events.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/extensions.php b/pandora_console/godmode/extensions.php index cdc8d30caf..0d11c8d99a 100644 --- a/pandora_console/godmode/extensions.php +++ b/pandora_console/godmode/extensions.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/godmode/gis_maps/configure_gis_map.php b/pandora_console/godmode/gis_maps/configure_gis_map.php index 35705591a6..f4938c585c 100644 --- a/pandora_console/godmode/gis_maps/configure_gis_map.php +++ b/pandora_console/godmode/gis_maps/configure_gis_map.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/groups/configure_group.php b/pandora_console/godmode/groups/configure_group.php index 14578ed6a3..7006a9715a 100644 --- a/pandora_console/godmode/groups/configure_group.php +++ b/pandora_console/godmode/groups/configure_group.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/groups/configure_modu_group.php b/pandora_console/godmode/groups/configure_modu_group.php index daa0c6827f..735b904095 100644 --- a/pandora_console/godmode/groups/configure_modu_group.php +++ b/pandora_console/godmode/groups/configure_modu_group.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/groups/credential_store.php b/pandora_console/godmode/groups/credential_store.php index f7f4470c94..26aaceb6be 100644 --- a/pandora_console/godmode/groups/credential_store.php +++ b/pandora_console/godmode/groups/credential_store.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/groups/group_list.php b/pandora_console/godmode/groups/group_list.php index cb59288b00..acfb3f82aa 100644 --- a/pandora_console/godmode/groups/group_list.php +++ b/pandora_console/godmode/groups/group_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/groups/modu_group_list.php b/pandora_console/godmode/groups/modu_group_list.php index 9be57b2763..4f6f731a44 100644 --- a/pandora_console/godmode/groups/modu_group_list.php +++ b/pandora_console/godmode/groups/modu_group_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/groups/tactical.php b/pandora_console/godmode/groups/tactical.php index e899f8b213..a7b36068fb 100644 --- a/pandora_console/godmode/groups/tactical.php +++ b/pandora_console/godmode/groups/tactical.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_add_action_alerts.php b/pandora_console/godmode/massive/massive_add_action_alerts.php index 307db55f19..39fc68cb69 100755 --- a/pandora_console/godmode/massive/massive_add_action_alerts.php +++ b/pandora_console/godmode/massive/massive_add_action_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_add_alerts.php b/pandora_console/godmode/massive/massive_add_alerts.php index 4c56a94d33..74e14d8464 100755 --- a/pandora_console/godmode/massive/massive_add_alerts.php +++ b/pandora_console/godmode/massive/massive_add_alerts.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_add_profiles.php b/pandora_console/godmode/massive/massive_add_profiles.php index 95ba8bd2fd..52eca7965a 100644 --- a/pandora_console/godmode/massive/massive_add_profiles.php +++ b/pandora_console/godmode/massive/massive_add_profiles.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_copy_modules.php b/pandora_console/godmode/massive/massive_copy_modules.php index 8dbfffc30c..fc9078e606 100755 --- a/pandora_console/godmode/massive/massive_copy_modules.php +++ b/pandora_console/godmode/massive/massive_copy_modules.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_delete_action_alerts.php b/pandora_console/godmode/massive/massive_delete_action_alerts.php index d37b506860..6b9f0745a1 100644 --- a/pandora_console/godmode/massive/massive_delete_action_alerts.php +++ b/pandora_console/godmode/massive/massive_delete_action_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_delete_agents.php b/pandora_console/godmode/massive/massive_delete_agents.php index 1d1472d6e1..6c2a62dbbb 100755 --- a/pandora_console/godmode/massive/massive_delete_agents.php +++ b/pandora_console/godmode/massive/massive_delete_agents.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_delete_alerts.php b/pandora_console/godmode/massive/massive_delete_alerts.php index 9d8f97cf79..1f1ac33b67 100755 --- a/pandora_console/godmode/massive/massive_delete_alerts.php +++ b/pandora_console/godmode/massive/massive_delete_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_delete_modules.php b/pandora_console/godmode/massive/massive_delete_modules.php index d2037effc5..f2240bd551 100755 --- a/pandora_console/godmode/massive/massive_delete_modules.php +++ b/pandora_console/godmode/massive/massive_delete_modules.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_delete_profiles.php b/pandora_console/godmode/massive/massive_delete_profiles.php index 1be413fa85..b703bf5fdb 100644 --- a/pandora_console/godmode/massive/massive_delete_profiles.php +++ b/pandora_console/godmode/massive/massive_delete_profiles.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_edit_agents.php b/pandora_console/godmode/massive/massive_edit_agents.php index f18a5731cd..e33a6feeaa 100755 --- a/pandora_console/godmode/massive/massive_edit_agents.php +++ b/pandora_console/godmode/massive/massive_edit_agents.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_edit_modules.php b/pandora_console/godmode/massive/massive_edit_modules.php index 258779581e..e1e79d1385 100755 --- a/pandora_console/godmode/massive/massive_edit_modules.php +++ b/pandora_console/godmode/massive/massive_edit_modules.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_edit_plugins.php b/pandora_console/godmode/massive/massive_edit_plugins.php index c6a884f664..c252f41f69 100644 --- a/pandora_console/godmode/massive/massive_edit_plugins.php +++ b/pandora_console/godmode/massive/massive_edit_plugins.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_edit_users.php b/pandora_console/godmode/massive/massive_edit_users.php index 313fa67c93..ea311f4c91 100644 --- a/pandora_console/godmode/massive/massive_edit_users.php +++ b/pandora_console/godmode/massive/massive_edit_users.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_enable_disable_alerts.php b/pandora_console/godmode/massive/massive_enable_disable_alerts.php index feb85fccee..1960bf7037 100644 --- a/pandora_console/godmode/massive/massive_enable_disable_alerts.php +++ b/pandora_console/godmode/massive/massive_enable_disable_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_operations.php b/pandora_console/godmode/massive/massive_operations.php index 3b88b83ec6..42bb09f428 100755 --- a/pandora_console/godmode/massive/massive_operations.php +++ b/pandora_console/godmode/massive/massive_operations.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/massive/massive_standby_alerts.php b/pandora_console/godmode/massive/massive_standby_alerts.php index 0a38a65975..21eee847e7 100644 --- a/pandora_console/godmode/massive/massive_standby_alerts.php +++ b/pandora_console/godmode/massive/massive_standby_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index 48ddb07bef..13fc41f9c7 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/module_library/module_library_view.php b/pandora_console/godmode/module_library/module_library_view.php index 9d50eee6a5..34f16b85e2 100644 --- a/pandora_console/godmode/module_library/module_library_view.php +++ b/pandora_console/godmode/module_library/module_library_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/configuration_wizard_setup.php b/pandora_console/godmode/modules/configuration_wizard_setup.php index 5feabd8756..77adf1042e 100644 --- a/pandora_console/godmode/modules/configuration_wizard_setup.php +++ b/pandora_console/godmode/modules/configuration_wizard_setup.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_inventory_modules.php b/pandora_console/godmode/modules/manage_inventory_modules.php index 1358a4a791..39156ed7da 100644 --- a/pandora_console/godmode/modules/manage_inventory_modules.php +++ b/pandora_console/godmode/modules/manage_inventory_modules.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/godmode/modules/manage_inventory_modules_form.php b/pandora_console/godmode/modules/manage_inventory_modules_form.php index 7382d0d147..7b80b9b20d 100644 --- a/pandora_console/godmode/modules/manage_inventory_modules_form.php +++ b/pandora_console/godmode/modules/manage_inventory_modules_form.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/godmode/modules/manage_module_templates.php b/pandora_console/godmode/modules/manage_module_templates.php index 0e8a072419..b62fedaa41 100644 --- a/pandora_console/godmode/modules/manage_module_templates.php +++ b/pandora_console/godmode/modules/manage_module_templates.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_nc_groups.php b/pandora_console/godmode/modules/manage_nc_groups.php index 28a1655e85..f04fa0e4b7 100644 --- a/pandora_console/godmode/modules/manage_nc_groups.php +++ b/pandora_console/godmode/modules/manage_nc_groups.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_nc_groups_form.php b/pandora_console/godmode/modules/manage_nc_groups_form.php index 975a5ef57f..716b1024aa 100644 --- a/pandora_console/godmode/modules/manage_nc_groups_form.php +++ b/pandora_console/godmode/modules/manage_nc_groups_form.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components.php b/pandora_console/godmode/modules/manage_network_components.php index 32bb4d21a6..79bd7ca972 100644 --- a/pandora_console/godmode/modules/manage_network_components.php +++ b/pandora_console/godmode/modules/manage_network_components.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components_form.php b/pandora_console/godmode/modules/manage_network_components_form.php index f7e0a75c18..dd5b588afe 100644 --- a/pandora_console/godmode/modules/manage_network_components_form.php +++ b/pandora_console/godmode/modules/manage_network_components_form.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components_form_common.php b/pandora_console/godmode/modules/manage_network_components_form_common.php index 42f73d8f4f..a23b8e9220 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_common.php +++ b/pandora_console/godmode/modules/manage_network_components_form_common.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components_form_network.php b/pandora_console/godmode/modules/manage_network_components_form_network.php index 0ab679e0d2..c78ae2ea7a 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_network.php +++ b/pandora_console/godmode/modules/manage_network_components_form_network.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components_form_plugin.php b/pandora_console/godmode/modules/manage_network_components_form_plugin.php index bc7ea0fa6a..2acae8114a 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_plugin.php +++ b/pandora_console/godmode/modules/manage_network_components_form_plugin.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components_form_wizard.php b/pandora_console/godmode/modules/manage_network_components_form_wizard.php index be34f90f2b..c99ea7adab 100644 --- a/pandora_console/godmode/modules/manage_network_components_form_wizard.php +++ b/pandora_console/godmode/modules/manage_network_components_form_wizard.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_components_form_wmi.php b/pandora_console/godmode/modules/manage_network_components_form_wmi.php index 4d7dc65ee5..f9f4dfe2d3 100755 --- a/pandora_console/godmode/modules/manage_network_components_form_wmi.php +++ b/pandora_console/godmode/modules/manage_network_components_form_wmi.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_templates.php b/pandora_console/godmode/modules/manage_network_templates.php index 66e11297ce..09e1551f7c 100644 --- a/pandora_console/godmode/modules/manage_network_templates.php +++ b/pandora_console/godmode/modules/manage_network_templates.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/manage_network_templates_form.php b/pandora_console/godmode/modules/manage_network_templates_form.php index 9bcef76faa..fb8ab8f0e1 100644 --- a/pandora_console/godmode/modules/manage_network_templates_form.php +++ b/pandora_console/godmode/modules/manage_network_templates_form.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/module_list.php b/pandora_console/godmode/modules/module_list.php index 1d10dc9442..6747704c9d 100644 --- a/pandora_console/godmode/modules/module_list.php +++ b/pandora_console/godmode/modules/module_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/modules/private_enterprise_numbers.php b/pandora_console/godmode/modules/private_enterprise_numbers.php index 21dbd7aabd..8e5abbe925 100644 --- a/pandora_console/godmode/modules/private_enterprise_numbers.php +++ b/pandora_console/godmode/modules/private_enterprise_numbers.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/netflow/nf_edit.php b/pandora_console/godmode/netflow/nf_edit.php index bcff6fba43..ce54e4e552 100644 --- a/pandora_console/godmode/netflow/nf_edit.php +++ b/pandora_console/godmode/netflow/nf_edit.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/netflow/nf_edit_form.php b/pandora_console/godmode/netflow/nf_edit_form.php index cf7ec7e643..17eb71d4ad 100644 --- a/pandora_console/godmode/netflow/nf_edit_form.php +++ b/pandora_console/godmode/netflow/nf_edit_form.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. @@ -29,7 +29,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/godmode/netflow/nf_item_list.php b/pandora_console/godmode/netflow/nf_item_list.php index 5a2cfe7945..ebc7952a93 100644 --- a/pandora_console/godmode/netflow/nf_item_list.php +++ b/pandora_console/godmode/netflow/nf_item_list.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/godmode/reporting/create_container.php b/pandora_console/godmode/reporting/create_container.php index d499a8edcd..5de738b23d 100644 --- a/pandora_console/godmode/reporting/create_container.php +++ b/pandora_console/godmode/reporting/create_container.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/graph_builder.graph_editor.php b/pandora_console/godmode/reporting/graph_builder.graph_editor.php index 2f6c651edc..936f7b2ef9 100644 --- a/pandora_console/godmode/reporting/graph_builder.graph_editor.php +++ b/pandora_console/godmode/reporting/graph_builder.graph_editor.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/graph_builder.main.php b/pandora_console/godmode/reporting/graph_builder.main.php index c0eb79a544..e50f095b31 100644 --- a/pandora_console/godmode/reporting/graph_builder.main.php +++ b/pandora_console/godmode/reporting/graph_builder.main.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/graph_builder.php b/pandora_console/godmode/reporting/graph_builder.php index 6278cc3d67..03bc93f4bf 100644 --- a/pandora_console/godmode/reporting/graph_builder.php +++ b/pandora_console/godmode/reporting/graph_builder.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/graph_container.php b/pandora_console/godmode/reporting/graph_container.php index 25fd131cec..2b75c088ee 100644 --- a/pandora_console/godmode/reporting/graph_container.php +++ b/pandora_console/godmode/reporting/graph_container.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/graphs.php b/pandora_console/godmode/reporting/graphs.php index 54390f79be..ab4f459b4e 100644 --- a/pandora_console/godmode/reporting/graphs.php +++ b/pandora_console/godmode/reporting/graphs.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/map_builder.php b/pandora_console/godmode/reporting/map_builder.php index 085d93263e..eb657d8e8a 100644 --- a/pandora_console/godmode/reporting/map_builder.php +++ b/pandora_console/godmode/reporting/map_builder.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 8267e3185e..8305be5aa0 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/reporting_builder.list_items.php b/pandora_console/godmode/reporting/reporting_builder.list_items.php index 89d8e25738..aa61b2ee75 100755 --- a/pandora_console/godmode/reporting/reporting_builder.list_items.php +++ b/pandora_console/godmode/reporting/reporting_builder.list_items.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/reporting_builder.main.php b/pandora_console/godmode/reporting/reporting_builder.main.php index fc69b420a1..c0381acca2 100755 --- a/pandora_console/godmode/reporting/reporting_builder.main.php +++ b/pandora_console/godmode/reporting/reporting_builder.main.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es + * Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com * This code is NOT free software. This code is NOT licenced under GPL2 licence * You cannnot redistribute it without written permission of copyright holder. * ============================================================================ diff --git a/pandora_console/godmode/reporting/reporting_builder.php b/pandora_console/godmode/reporting/reporting_builder.php index 177765ba0a..1ef4330218 100755 --- a/pandora_console/godmode/reporting/reporting_builder.php +++ b/pandora_console/godmode/reporting/reporting_builder.php @@ -78,7 +78,7 @@ function dialog_message(message_id) { * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/visual_console_builder.data.php b/pandora_console/godmode/reporting/visual_console_builder.data.php index dff9fa4a4f..0abf9c08b0 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.data.php +++ b/pandora_console/godmode/reporting/visual_console_builder.data.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/visual_console_builder.editor.php b/pandora_console/godmode/reporting/visual_console_builder.editor.php index 2240a6a132..3f56cc0a5b 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.editor.php +++ b/pandora_console/godmode/reporting/visual_console_builder.editor.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/visual_console_builder.elements.php b/pandora_console/godmode/reporting/visual_console_builder.elements.php index 1061613bd9..2249386c47 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.elements.php +++ b/pandora_console/godmode/reporting/visual_console_builder.elements.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/visual_console_builder.php b/pandora_console/godmode/reporting/visual_console_builder.php index a1f002418b..3ac46a89c4 100755 --- a/pandora_console/godmode/reporting/visual_console_builder.php +++ b/pandora_console/godmode/reporting/visual_console_builder.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/visual_console_builder.wizard.php b/pandora_console/godmode/reporting/visual_console_builder.wizard.php index 8c9c6ea0fd..680624d947 100644 --- a/pandora_console/godmode/reporting/visual_console_builder.wizard.php +++ b/pandora_console/godmode/reporting/visual_console_builder.wizard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/reporting/visual_console_favorite.php b/pandora_console/godmode/reporting/visual_console_favorite.php index d36e571386..150af65bd1 100644 --- a/pandora_console/godmode/reporting/visual_console_favorite.php +++ b/pandora_console/godmode/reporting/visual_console_favorite.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/manage_recontask.php b/pandora_console/godmode/servers/manage_recontask.php index 21c33defab..bc01702c11 100644 --- a/pandora_console/godmode/servers/manage_recontask.php +++ b/pandora_console/godmode/servers/manage_recontask.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/manage_recontask_form.php b/pandora_console/godmode/servers/manage_recontask_form.php index 9305c5e66d..ebfab05c23 100644 --- a/pandora_console/godmode/servers/manage_recontask_form.php +++ b/pandora_console/godmode/servers/manage_recontask_form.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/modificar_server.php b/pandora_console/godmode/servers/modificar_server.php index 93d3a08b30..9b0d86fed9 100644 --- a/pandora_console/godmode/servers/modificar_server.php +++ b/pandora_console/godmode/servers/modificar_server.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/plugin.php b/pandora_console/godmode/servers/plugin.php index fb7e6cd6cd..acdbb52861 100644 --- a/pandora_console/godmode/servers/plugin.php +++ b/pandora_console/godmode/servers/plugin.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/plugin_registration.php b/pandora_console/godmode/servers/plugin_registration.php index 0c7056d989..7ef66ed862 100644 --- a/pandora_console/godmode/servers/plugin_registration.php +++ b/pandora_console/godmode/servers/plugin_registration.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/recon_script.php b/pandora_console/godmode/servers/recon_script.php index 726243fea9..80ebeb0063 100644 --- a/pandora_console/godmode/servers/recon_script.php +++ b/pandora_console/godmode/servers/recon_script.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/servers/servers.build_table.php b/pandora_console/godmode/servers/servers.build_table.php index 907ffc33dc..1a83963473 100644 --- a/pandora_console/godmode/servers/servers.build_table.php +++ b/pandora_console/godmode/servers/servers.build_table.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/file_manager.php b/pandora_console/godmode/setup/file_manager.php index 9611d6b239..cdc67d7a06 100644 --- a/pandora_console/godmode/setup/file_manager.php +++ b/pandora_console/godmode/setup/file_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/license.php b/pandora_console/godmode/setup/license.php index c9e8f32263..efc2052247 100644 --- a/pandora_console/godmode/setup/license.php +++ b/pandora_console/godmode/setup/license.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/links.php b/pandora_console/godmode/setup/links.php index 596a6bff42..c50d8b3a98 100644 --- a/pandora_console/godmode/setup/links.php +++ b/pandora_console/godmode/setup/links.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/news.php b/pandora_console/godmode/setup/news.php index 373fc3c159..14a53f3c05 100644 --- a/pandora_console/godmode/setup/news.php +++ b/pandora_console/godmode/setup/news.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/os.builder.php b/pandora_console/godmode/setup/os.builder.php index dc42250066..c9cc324b43 100644 --- a/pandora_console/godmode/setup/os.builder.php +++ b/pandora_console/godmode/setup/os.builder.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/os.list.php b/pandora_console/godmode/setup/os.list.php index fda939979e..cb6f6213e9 100644 --- a/pandora_console/godmode/setup/os.list.php +++ b/pandora_console/godmode/setup/os.list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/os.php b/pandora_console/godmode/setup/os.php index ea97da81aa..e19b93941b 100644 --- a/pandora_console/godmode/setup/os.php +++ b/pandora_console/godmode/setup/os.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/performance.php b/pandora_console/godmode/setup/performance.php index b6e3dc706b..a7e7b82a9e 100644 --- a/pandora_console/godmode/setup/performance.php +++ b/pandora_console/godmode/setup/performance.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup.php b/pandora_console/godmode/setup/setup.php index b50da113b2..916fe47be9 100644 --- a/pandora_console/godmode/setup/setup.php +++ b/pandora_console/godmode/setup/setup.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php index 65606746bc..2a7834ee1e 100644 --- a/pandora_console/godmode/setup/setup_auth.php +++ b/pandora_console/godmode/setup/setup_auth.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es + * Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com * This code is NOT free software. This code is NOT licenced under GPL2 licence * You cannnot redistribute it without written permission of copyright holder. * ============================================================================ diff --git a/pandora_console/godmode/setup/setup_ehorus.php b/pandora_console/godmode/setup/setup_ehorus.php index 203e9955f9..7bc4da5059 100644 --- a/pandora_console/godmode/setup/setup_ehorus.php +++ b/pandora_console/godmode/setup/setup_ehorus.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_external_tools.php b/pandora_console/godmode/setup/setup_external_tools.php index 39fe41c867..02348cde74 100644 --- a/pandora_console/godmode/setup/setup_external_tools.php +++ b/pandora_console/godmode/setup/setup_external_tools.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index 1491d2043c..dd6bfcf000 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_integria.php b/pandora_console/godmode/setup/setup_integria.php index 09f1d800f9..16adcd79e4 100644 --- a/pandora_console/godmode/setup/setup_integria.php +++ b/pandora_console/godmode/setup/setup_integria.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_netflow.php b/pandora_console/godmode/setup/setup_netflow.php index efa01b7a9e..2ee5f4b4b0 100644 --- a/pandora_console/godmode/setup/setup_netflow.php +++ b/pandora_console/godmode/setup/setup_netflow.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_notifications.php b/pandora_console/godmode/setup/setup_notifications.php index dbcb3f085d..13c42cea76 100644 --- a/pandora_console/godmode/setup/setup_notifications.php +++ b/pandora_console/godmode/setup/setup_notifications.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_sflow.php b/pandora_console/godmode/setup/setup_sflow.php index c5d7b9ceef..7964a45f66 100644 --- a/pandora_console/godmode/setup/setup_sflow.php +++ b/pandora_console/godmode/setup/setup_sflow.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_visuals.php b/pandora_console/godmode/setup/setup_visuals.php index 40a41d1c3b..0f8b3ef4c9 100755 --- a/pandora_console/godmode/setup/setup_visuals.php +++ b/pandora_console/godmode/setup/setup_visuals.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/setup_websocket_engine.php b/pandora_console/godmode/setup/setup_websocket_engine.php index bdc8673f87..28037d9972 100644 --- a/pandora_console/godmode/setup/setup_websocket_engine.php +++ b/pandora_console/godmode/setup/setup_websocket_engine.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/snmp_wizard.php b/pandora_console/godmode/setup/snmp_wizard.php index e4ee321f0e..778bb6ddfc 100644 --- a/pandora_console/godmode/setup/snmp_wizard.php +++ b/pandora_console/godmode/setup/snmp_wizard.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/setup/welcome_tips.php b/pandora_console/godmode/setup/welcome_tips.php index e4b50486b7..d6f8cf707b 100644 --- a/pandora_console/godmode/setup/welcome_tips.php +++ b/pandora_console/godmode/setup/welcome_tips.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/snmpconsole/snmp_alert.php b/pandora_console/godmode/snmpconsole/snmp_alert.php index 2807236e40..6dd541f349 100755 --- a/pandora_console/godmode/snmpconsole/snmp_alert.php +++ b/pandora_console/godmode/snmpconsole/snmp_alert.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/snmpconsole/snmp_filters.php b/pandora_console/godmode/snmpconsole/snmp_filters.php index c61f0f3e4b..f30981bf57 100644 --- a/pandora_console/godmode/snmpconsole/snmp_filters.php +++ b/pandora_console/godmode/snmpconsole/snmp_filters.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/snmpconsole/snmp_trap_generator.php b/pandora_console/godmode/snmpconsole/snmp_trap_generator.php index 9f5526f3c7..e1bf7398ad 100755 --- a/pandora_console/godmode/snmpconsole/snmp_trap_generator.php +++ b/pandora_console/godmode/snmpconsole/snmp_trap_generator.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/tag/edit_tag.php b/pandora_console/godmode/tag/edit_tag.php index f6a803e157..c817483a31 100644 --- a/pandora_console/godmode/tag/edit_tag.php +++ b/pandora_console/godmode/tag/edit_tag.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/tag/tag.php b/pandora_console/godmode/tag/tag.php index fc88f59a00..c2f07ff237 100644 --- a/pandora_console/godmode/tag/tag.php +++ b/pandora_console/godmode/tag/tag.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/um_client/api.php b/pandora_console/godmode/um_client/api.php index 5c4eb52935..ac62a4fbe0 100644 --- a/pandora_console/godmode/um_client/api.php +++ b/pandora_console/godmode/um_client/api.php @@ -20,7 +20,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/um_client/index.php b/pandora_console/godmode/um_client/index.php index 3a52b906b8..af385cb6f8 100644 --- a/pandora_console/godmode/um_client/index.php +++ b/pandora_console/godmode/um_client/index.php @@ -20,7 +20,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/update_manager/update_manager.history.php b/pandora_console/godmode/update_manager/update_manager.history.php index f08b6ebab1..7241da6849 100644 --- a/pandora_console/godmode/update_manager/update_manager.history.php +++ b/pandora_console/godmode/update_manager/update_manager.history.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/update_manager/update_manager.php b/pandora_console/godmode/update_manager/update_manager.php index d43d6f0593..565b4cbd44 100644 --- a/pandora_console/godmode/update_manager/update_manager.php +++ b/pandora_console/godmode/update_manager/update_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/update_manager/update_manager.setup.php b/pandora_console/godmode/update_manager/update_manager.setup.php index 887b4f1580..f61886bcda 100644 --- a/pandora_console/godmode/update_manager/update_manager.setup.php +++ b/pandora_console/godmode/update_manager/update_manager.setup.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/users/configure_profile.php b/pandora_console/godmode/users/configure_profile.php index 4e3aac5206..ec132c92c3 100644 --- a/pandora_console/godmode/users/configure_profile.php +++ b/pandora_console/godmode/users/configure_profile.php @@ -12,7 +12,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 83a9a79a32..d271456830 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/users/profile_list.php b/pandora_console/godmode/users/profile_list.php index ca9133402b..708801dda8 100644 --- a/pandora_console/godmode/users/profile_list.php +++ b/pandora_console/godmode/users/profile_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index 68934261c0..4fa9efddd3 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/users/user_management.php b/pandora_console/godmode/users/user_management.php index ff71092161..8ef5104893 100644 --- a/pandora_console/godmode/users/user_management.php +++ b/pandora_console/godmode/users/user_management.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php index dce348ab80..9082fc7037 100644 --- a/pandora_console/godmode/wizards/DiscoveryTaskList.class.php +++ b/pandora_console/godmode/wizards/DiscoveryTaskList.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/wizards/HostDevices.class.php b/pandora_console/godmode/wizards/HostDevices.class.php index 00b5982ec9..72356971ef 100755 --- a/pandora_console/godmode/wizards/HostDevices.class.php +++ b/pandora_console/godmode/wizards/HostDevices.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/godmode/wizards/Wizard.main.php b/pandora_console/godmode/wizards/Wizard.main.php index 66830a7aa2..c2b05e4646 100644 --- a/pandora_console/godmode/wizards/Wizard.main.php +++ b/pandora_console/godmode/wizards/Wizard.main.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/Image/image_functions.php b/pandora_console/include/Image/image_functions.php index 92a09cd415..ea937aed18 100644 --- a/pandora_console/include/Image/image_functions.php +++ b/pandora_console/include/Image/image_functions.php @@ -8,7 +8,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License diff --git a/pandora_console/include/ajax/agent.php b/pandora_console/include/ajax/agent.php index 18d5d40f4f..409f8ee12a 100644 --- a/pandora_console/include/ajax/agent.php +++ b/pandora_console/include/ajax/agent.php @@ -3,7 +3,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/ajax/audit_log.php b/pandora_console/include/ajax/audit_log.php index caddc7a0f4..f5e2aa260c 100644 --- a/pandora_console/include/ajax/audit_log.php +++ b/pandora_console/include/ajax/audit_log.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/custom_fields.php b/pandora_console/include/ajax/custom_fields.php index 1b8de9e4c5..c4016404de 100644 --- a/pandora_console/include/ajax/custom_fields.php +++ b/pandora_console/include/ajax/custom_fields.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/double_auth.ajax.php b/pandora_console/include/ajax/double_auth.ajax.php index 53f96ccf93..014d835102 100644 --- a/pandora_console/include/ajax/double_auth.ajax.php +++ b/pandora_console/include/ajax/double_auth.ajax.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/events.php b/pandora_console/include/ajax/events.php index 083f276e43..6c9097f27f 100644 --- a/pandora_console/include/ajax/events.php +++ b/pandora_console/include/ajax/events.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/events_extended.php b/pandora_console/include/ajax/events_extended.php index c27776cf33..b741831fc3 100644 --- a/pandora_console/include/ajax/events_extended.php +++ b/pandora_console/include/ajax/events_extended.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/fav_menu.ajax.php b/pandora_console/include/ajax/fav_menu.ajax.php index f0497256dc..fd8a4a69fb 100644 --- a/pandora_console/include/ajax/fav_menu.ajax.php +++ b/pandora_console/include/ajax/fav_menu.ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/graph.ajax.php b/pandora_console/include/ajax/graph.ajax.php index 02405c26fe..ebc3a5faf5 100644 --- a/pandora_console/include/ajax/graph.ajax.php +++ b/pandora_console/include/ajax/graph.ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/group.php b/pandora_console/include/ajax/group.php index b66b256657..729c87fa2f 100644 --- a/pandora_console/include/ajax/group.php +++ b/pandora_console/include/ajax/group.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/heatmap.ajax.php b/pandora_console/include/ajax/heatmap.ajax.php index 14315e69e9..3aae859f4d 100644 --- a/pandora_console/include/ajax/heatmap.ajax.php +++ b/pandora_console/include/ajax/heatmap.ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/integria_incidents.ajax.php b/pandora_console/include/ajax/integria_incidents.ajax.php index 540561d535..1c768c08b1 100644 --- a/pandora_console/include/ajax/integria_incidents.ajax.php +++ b/pandora_console/include/ajax/integria_incidents.ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/map_enterprise.ajax.php b/pandora_console/include/ajax/map_enterprise.ajax.php index cdf5795787..7d9832c7cb 100644 --- a/pandora_console/include/ajax/map_enterprise.ajax.php +++ b/pandora_console/include/ajax/map_enterprise.ajax.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/include/ajax/menu.ajax.php b/pandora_console/include/ajax/menu.ajax.php index 634f391957..f7a1d2ed1c 100644 --- a/pandora_console/include/ajax/menu.ajax.php +++ b/pandora_console/include/ajax/menu.ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index e21e687a1e..5e74adbb4a 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/order_interpreter.php b/pandora_console/include/ajax/order_interpreter.php index dce0d9db2b..b2e182a923 100644 --- a/pandora_console/include/ajax/order_interpreter.php +++ b/pandora_console/include/ajax/order_interpreter.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/planned_downtime.ajax.php b/pandora_console/include/ajax/planned_downtime.ajax.php index 4152406c05..db3b27bc46 100644 --- a/pandora_console/include/ajax/planned_downtime.ajax.php +++ b/pandora_console/include/ajax/planned_downtime.ajax.php @@ -3,7 +3,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/ajax/profile.php b/pandora_console/include/ajax/profile.php index a8d0a06daa..5529fc2ae9 100644 --- a/pandora_console/include/ajax/profile.php +++ b/pandora_console/include/ajax/profile.php @@ -3,7 +3,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/ajax/reporting.ajax.php b/pandora_console/include/ajax/reporting.ajax.php index c29b7ed235..f7b50627f9 100755 --- a/pandora_console/include/ajax/reporting.ajax.php +++ b/pandora_console/include/ajax/reporting.ajax.php @@ -3,7 +3,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/ajax/skins.ajax.php b/pandora_console/include/ajax/skins.ajax.php index 95695cc3df..295a00ce42 100644 --- a/pandora_console/include/ajax/skins.ajax.php +++ b/pandora_console/include/ajax/skins.ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/snmp.ajax.php b/pandora_console/include/ajax/snmp.ajax.php index 5957938c56..66eebb5aec 100644 --- a/pandora_console/include/ajax/snmp.ajax.php +++ b/pandora_console/include/ajax/snmp.ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/snmp_browser.ajax.php b/pandora_console/include/ajax/snmp_browser.ajax.php index 0f937764a8..429deccad0 100644 --- a/pandora_console/include/ajax/snmp_browser.ajax.php +++ b/pandora_console/include/ajax/snmp_browser.ajax.php @@ -3,7 +3,7 @@ * Pandora FMS- http://pandorafms.com. * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/ajax/task_list.ajax.php b/pandora_console/include/ajax/task_list.ajax.php index 83679bc533..63802f922d 100644 --- a/pandora_console/include/ajax/task_list.ajax.php +++ b/pandora_console/include/ajax/task_list.ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/tips_window.ajax.php b/pandora_console/include/ajax/tips_window.ajax.php index d67fca5002..37ecbb57d8 100644 --- a/pandora_console/include/ajax/tips_window.ajax.php +++ b/pandora_console/include/ajax/tips_window.ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/tree.ajax.php b/pandora_console/include/ajax/tree.ajax.php index dcaf59e3cb..b008d70c15 100644 --- a/pandora_console/include/ajax/tree.ajax.php +++ b/pandora_console/include/ajax/tree.ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/update_manager.php b/pandora_console/include/ajax/update_manager.php index 48e04d8171..3158dae619 100644 --- a/pandora_console/include/ajax/update_manager.php +++ b/pandora_console/include/ajax/update_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/visual_console.ajax.php b/pandora_console/include/ajax/visual_console.ajax.php index a8a11c039d..9b16fc0cae 100644 --- a/pandora_console/include/ajax/visual_console.ajax.php +++ b/pandora_console/include/ajax/visual_console.ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/visual_console_builder.ajax.php b/pandora_console/include/ajax/visual_console_builder.ajax.php index 8af4f100bd..1c94886b68 100755 --- a/pandora_console/include/ajax/visual_console_builder.ajax.php +++ b/pandora_console/include/ajax/visual_console_builder.ajax.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/web_server_module_debug.php b/pandora_console/include/ajax/web_server_module_debug.php index 905b96d2fa..4dbce6df2a 100644 --- a/pandora_console/include/ajax/web_server_module_debug.php +++ b/pandora_console/include/ajax/web_server_module_debug.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/ajax/welcome_window.php b/pandora_console/include/ajax/welcome_window.php index 872a60e864..fd1a95fdee 100644 --- a/pandora_console/include/ajax/welcome_window.php +++ b/pandora_console/include/ajax/welcome_window.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/api.php b/pandora_console/include/api.php index 0593f509ef..3177c8105d 100644 --- a/pandora_console/include/api.php +++ b/pandora_console/include/api.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/auth/ldap.php b/pandora_console/include/auth/ldap.php index 3e9e32efc7..5afb3fbc5c 100644 --- a/pandora_console/include/auth/ldap.php +++ b/pandora_console/include/auth/ldap.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 7ab58f2a89..d0a6116964 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/chart_generator.php b/pandora_console/include/chart_generator.php index 84059577ce..bba3b34e1f 100644 --- a/pandora_console/include/chart_generator.php +++ b/pandora_console/include/chart_generator.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/AgentDeployWizard.class.php b/pandora_console/include/class/AgentDeployWizard.class.php index a78e0d4017..602ce3f707 100644 --- a/pandora_console/include/class/AgentDeployWizard.class.php +++ b/pandora_console/include/class/AgentDeployWizard.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/AgentWizard.class.php b/pandora_console/include/class/AgentWizard.class.php index 91b31cb2d0..4e03875c17 100644 --- a/pandora_console/include/class/AgentWizard.class.php +++ b/pandora_console/include/class/AgentWizard.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/AgentsAlerts.class.php b/pandora_console/include/class/AgentsAlerts.class.php index b2ec6b4bb3..94bebe5433 100644 --- a/pandora_console/include/class/AgentsAlerts.class.php +++ b/pandora_console/include/class/AgentsAlerts.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/AuditLog.class.php b/pandora_console/include/class/AuditLog.class.php index 3bf722ba59..3b7296ba9b 100644 --- a/pandora_console/include/class/AuditLog.class.php +++ b/pandora_console/include/class/AuditLog.class.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/CalendarManager.class.php b/pandora_console/include/class/CalendarManager.class.php index ce09f185e6..8d5fb9a60a 100644 --- a/pandora_console/include/class/CalendarManager.class.php +++ b/pandora_console/include/class/CalendarManager.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/ConfigPEN.class.php b/pandora_console/include/class/ConfigPEN.class.php index e1c2dba272..f1c6fed943 100644 --- a/pandora_console/include/class/ConfigPEN.class.php +++ b/pandora_console/include/class/ConfigPEN.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/ConsoleSupervisor.php b/pandora_console/include/class/ConsoleSupervisor.php index 9ed79ab780..72817d2cee 100644 --- a/pandora_console/include/class/ConsoleSupervisor.php +++ b/pandora_console/include/class/ConsoleSupervisor.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/CredentialStore.class.php b/pandora_console/include/class/CredentialStore.class.php index 18e4e12ef2..1c68de4f0d 100644 --- a/pandora_console/include/class/CredentialStore.class.php +++ b/pandora_console/include/class/CredentialStore.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/CustomNetScan.class.php b/pandora_console/include/class/CustomNetScan.class.php index 05c87b068b..5d76825ebd 100644 --- a/pandora_console/include/class/CustomNetScan.class.php +++ b/pandora_console/include/class/CustomNetScan.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/Diagnostics.class.php b/pandora_console/include/class/Diagnostics.class.php index e2e9a6dd36..da91dc3229 100644 --- a/pandora_console/include/class/Diagnostics.class.php +++ b/pandora_console/include/class/Diagnostics.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/EventSound.class.php b/pandora_console/include/class/EventSound.class.php index 05cedfe338..d383934381 100644 --- a/pandora_console/include/class/EventSound.class.php +++ b/pandora_console/include/class/EventSound.class.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/ExternalTools.class.php b/pandora_console/include/class/ExternalTools.class.php index 939ce63fc5..f0a6f3921a 100644 --- a/pandora_console/include/class/ExternalTools.class.php +++ b/pandora_console/include/class/ExternalTools.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/HTML.class.php b/pandora_console/include/class/HTML.class.php index 7eed5eb558..38966b3ef1 100644 --- a/pandora_console/include/class/HTML.class.php +++ b/pandora_console/include/class/HTML.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/Heatmap.class.php b/pandora_console/include/class/Heatmap.class.php index 3cda2e4d45..474cfc8212 100644 --- a/pandora_console/include/class/Heatmap.class.php +++ b/pandora_console/include/class/Heatmap.class.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/HelpFeedBack.class.php b/pandora_console/include/class/HelpFeedBack.class.php index 982cf41785..ebe88a599f 100644 --- a/pandora_console/include/class/HelpFeedBack.class.php +++ b/pandora_console/include/class/HelpFeedBack.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/ManageNetScanScripts.class.php b/pandora_console/include/class/ManageNetScanScripts.class.php index 030864a07c..89cb04f3e7 100644 --- a/pandora_console/include/class/ManageNetScanScripts.class.php +++ b/pandora_console/include/class/ManageNetScanScripts.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/ModuleTemplates.class.php b/pandora_console/include/class/ModuleTemplates.class.php index 0014caddb9..1ac3a2d11d 100644 --- a/pandora_console/include/class/ModuleTemplates.class.php +++ b/pandora_console/include/class/ModuleTemplates.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index dfc107f665..d5c582bfd8 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/OrderInterpreter.class.php b/pandora_console/include/class/OrderInterpreter.class.php index f1ea1ad3cf..04baf2384a 100644 --- a/pandora_console/include/class/OrderInterpreter.class.php +++ b/pandora_console/include/class/OrderInterpreter.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/SatelliteAgent.class.php b/pandora_console/include/class/SatelliteAgent.class.php index 8ef33b03c6..325a069106 100644 --- a/pandora_console/include/class/SatelliteAgent.class.php +++ b/pandora_console/include/class/SatelliteAgent.class.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/SatelliteCollection.class.php b/pandora_console/include/class/SatelliteCollection.class.php index bd84ccdc27..0d0b8b315a 100644 --- a/pandora_console/include/class/SatelliteCollection.class.php +++ b/pandora_console/include/class/SatelliteCollection.class.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/SnmpConsole.class.php b/pandora_console/include/class/SnmpConsole.class.php index 176a2afd02..25ff0bc418 100644 --- a/pandora_console/include/class/SnmpConsole.class.php +++ b/pandora_console/include/class/SnmpConsole.class.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/TipsWindow.class.php b/pandora_console/include/class/TipsWindow.class.php index 6739b928ef..6f3021ec96 100644 --- a/pandora_console/include/class/TipsWindow.class.php +++ b/pandora_console/include/class/TipsWindow.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/Tree.class.php b/pandora_console/include/class/Tree.class.php index 450f7b4c72..40ed833770 100644 --- a/pandora_console/include/class/Tree.class.php +++ b/pandora_console/include/class/Tree.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/TreeGroup.class.php b/pandora_console/include/class/TreeGroup.class.php index 2a03ded2e2..2bdaeea64f 100644 --- a/pandora_console/include/class/TreeGroup.class.php +++ b/pandora_console/include/class/TreeGroup.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/TreeGroupEdition.class.php b/pandora_console/include/class/TreeGroupEdition.class.php index 84eb484fe5..502e1f4a74 100644 --- a/pandora_console/include/class/TreeGroupEdition.class.php +++ b/pandora_console/include/class/TreeGroupEdition.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/TreeModule.class.php b/pandora_console/include/class/TreeModule.class.php index 494f43315b..f2c62a77d9 100644 --- a/pandora_console/include/class/TreeModule.class.php +++ b/pandora_console/include/class/TreeModule.class.php @@ -2,7 +2,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/class/TreeModuleGroup.class.php b/pandora_console/include/class/TreeModuleGroup.class.php index 20d7bf8aaf..c1b999ce24 100644 --- a/pandora_console/include/class/TreeModuleGroup.class.php +++ b/pandora_console/include/class/TreeModuleGroup.class.php @@ -2,7 +2,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/class/TreeOS.class.php b/pandora_console/include/class/TreeOS.class.php index 6f07d3f982..178ffb028f 100644 --- a/pandora_console/include/class/TreeOS.class.php +++ b/pandora_console/include/class/TreeOS.class.php @@ -2,7 +2,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/class/TreeService.class.php b/pandora_console/include/class/TreeService.class.php index 19b1e6da32..d5c53b7c59 100644 --- a/pandora_console/include/class/TreeService.class.php +++ b/pandora_console/include/class/TreeService.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/TreeTag.class.php b/pandora_console/include/class/TreeTag.class.php index b9d4248040..79425e446d 100644 --- a/pandora_console/include/class/TreeTag.class.php +++ b/pandora_console/include/class/TreeTag.class.php @@ -2,7 +2,7 @@ // Pandora FMS- http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/class/WebServerModuleDebug.class.php b/pandora_console/include/class/WebServerModuleDebug.class.php index e042b2e7cf..ee15353029 100644 --- a/pandora_console/include/class/WebServerModuleDebug.class.php +++ b/pandora_console/include/class/WebServerModuleDebug.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/class/WelcomeWindow.class.php b/pandora_console/include/class/WelcomeWindow.class.php index 16be14fa0c..8b96efd6af 100644 --- a/pandora_console/include/class/WelcomeWindow.class.php +++ b/pandora_console/include/class/WelcomeWindow.class.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/config.inc.php b/pandora_console/include/config.inc.php index 94441950f8..aeb2132bec 100644 --- a/pandora_console/include/config.inc.php +++ b/pandora_console/include/config.inc.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 4451b6a0d2..d91da406a3 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/connection_check.php b/pandora_console/include/connection_check.php index b748251954..7b39d17075 100644 --- a/pandora_console/include/connection_check.php +++ b/pandora_console/include/connection_check.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/constants.php b/pandora_console/include/constants.php index cbe7e9445d..fe592d8873 100644 --- a/pandora_console/include/constants.php +++ b/pandora_console/include/constants.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/db/mysql.php b/pandora_console/include/db/mysql.php index 9dc393a208..da1b466d6f 100644 --- a/pandora_console/include/db/mysql.php +++ b/pandora_console/include/db/mysql.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/db/oracle.php b/pandora_console/include/db/oracle.php index 0b59108bb0..66cea13b26 100644 --- a/pandora_console/include/db/oracle.php +++ b/pandora_console/include/db/oracle.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/db/postgresql.php b/pandora_console/include/db/postgresql.php index 948c05a4b5..54e7499ee2 100644 --- a/pandora_console/include/db/postgresql.php +++ b/pandora_console/include/db/postgresql.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index 5c9ba95fd3..437864abae 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_agents.php b/pandora_console/include/functions_agents.php index 49dc618b7c..17fe203a45 100644 --- a/pandora_console/include/functions_agents.php +++ b/pandora_console/include/functions_agents.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_alerts.php b/pandora_console/include/functions_alerts.php index 329f0214b6..f7a1702d47 100644 --- a/pandora_console/include/functions_alerts.php +++ b/pandora_console/include/functions_alerts.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index e3d4b99dc4..e773ad27e4 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_categories.php b/pandora_console/include/functions_categories.php index 2f70af5b0b..9730c0ba5f 100644 --- a/pandora_console/include/functions_categories.php +++ b/pandora_console/include/functions_categories.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_clippy.php b/pandora_console/include/functions_clippy.php index df7ac58b4e..346b16dca2 100644 --- a/pandora_console/include/functions_clippy.php +++ b/pandora_console/include/functions_clippy.php @@ -3,7 +3,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_component_groups.php b/pandora_console/include/functions_component_groups.php index 40c0e38d57..30a96a2513 100644 --- a/pandora_console/include/functions_component_groups.php +++ b/pandora_console/include/functions_component_groups.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index d0b5b3ee51..acc3a90a11 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. @@ -2831,7 +2831,7 @@ function config_process_config() } if (!isset($config['email_from_dir'])) { - config_update_value('email_from_dir', 'pandora@pandorafms.org'); + config_update_value('email_from_dir', 'pandora@pandorafms.com/community/'); } if (!isset($config['email_from_name'])) { diff --git a/pandora_console/include/functions_container.php b/pandora_console/include/functions_container.php index 75d1aae85f..500af12247 100644 --- a/pandora_console/include/functions_container.php +++ b/pandora_console/include/functions_container.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_credential_store.php b/pandora_console/include/functions_credential_store.php index 95ce67c022..0b8624e6cc 100644 --- a/pandora_console/include/functions_credential_store.php +++ b/pandora_console/include/functions_credential_store.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_cron.php b/pandora_console/include/functions_cron.php index b1d73edc38..60c468661f 100644 --- a/pandora_console/include/functions_cron.php +++ b/pandora_console/include/functions_cron.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_custom_fields.php b/pandora_console/include/functions_custom_fields.php index b19f843d83..6f803d10f6 100644 --- a/pandora_console/include/functions_custom_fields.php +++ b/pandora_console/include/functions_custom_fields.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_custom_graphs.php b/pandora_console/include/functions_custom_graphs.php index 7b7ed7853c..567f6563d2 100644 --- a/pandora_console/include/functions_custom_graphs.php +++ b/pandora_console/include/functions_custom_graphs.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_db.php b/pandora_console/include/functions_db.php index 6ff1fb60c6..3158de5dfb 100644 --- a/pandora_console/include/functions_db.php +++ b/pandora_console/include/functions_db.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_event_responses.php b/pandora_console/include/functions_event_responses.php index 143d8ec50c..c32414265e 100644 --- a/pandora_console/include/functions_event_responses.php +++ b/pandora_console/include/functions_event_responses.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_events.php b/pandora_console/include/functions_events.php index b760813beb..dd8bbe4e65 100644 --- a/pandora_console/include/functions_events.php +++ b/pandora_console/include/functions_events.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_exportserver.php b/pandora_console/include/functions_exportserver.php index be0d991ee3..9521cf933f 100644 --- a/pandora_console/include/functions_exportserver.php +++ b/pandora_console/include/functions_exportserver.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_extensions.php b/pandora_console/include/functions_extensions.php index b60a09df72..e32ab9dd34 100755 --- a/pandora_console/include/functions_extensions.php +++ b/pandora_console/include/functions_extensions.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_filemanager.php b/pandora_console/include/functions_filemanager.php index 34eca28692..c3cbf60661 100644 --- a/pandora_console/include/functions_filemanager.php +++ b/pandora_console/include/functions_filemanager.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_forecast.php b/pandora_console/include/functions_forecast.php index a4ea8d5a7c..9f19b37886 100644 --- a/pandora_console/include/functions_forecast.php +++ b/pandora_console/include/functions_forecast.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_gis.php b/pandora_console/include/functions_gis.php index 30a73b6d59..a30a5d0fa1 100644 --- a/pandora_console/include/functions_gis.php +++ b/pandora_console/include/functions_gis.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_graph.php b/pandora_console/include/functions_graph.php index 5ce8dcb252..c7e1edaa34 100644 --- a/pandora_console/include/functions_graph.php +++ b/pandora_console/include/functions_graph.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_groups.php b/pandora_console/include/functions_groups.php index ed982fd2d3..04d0ab63ef 100644 --- a/pandora_console/include/functions_groups.php +++ b/pandora_console/include/functions_groups.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_groupview.php b/pandora_console/include/functions_groupview.php index 4215901794..8a6c102b0f 100644 --- a/pandora_console/include/functions_groupview.php +++ b/pandora_console/include/functions_groupview.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_html.php b/pandora_console/include/functions_html.php index 6dabaea4c0..388344870a 100644 --- a/pandora_console/include/functions_html.php +++ b/pandora_console/include/functions_html.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_incidents.php b/pandora_console/include/functions_incidents.php index 1474b0abd2..a894765b0a 100644 --- a/pandora_console/include/functions_incidents.php +++ b/pandora_console/include/functions_incidents.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_integriaims.php b/pandora_console/include/functions_integriaims.php index 8ad4a71005..25bb627dbf 100644 --- a/pandora_console/include/functions_integriaims.php +++ b/pandora_console/include/functions_integriaims.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php index 80e1e9887f..1717419e5e 100644 --- a/pandora_console/include/functions_inventory.php +++ b/pandora_console/include/functions_inventory.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_io.php b/pandora_console/include/functions_io.php index 3ad0424d78..b509a0254c 100755 --- a/pandora_console/include/functions_io.php +++ b/pandora_console/include/functions_io.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_maps.php b/pandora_console/include/functions_maps.php index ee8b26f0c4..ca919d77a1 100644 --- a/pandora_console/include/functions_maps.php +++ b/pandora_console/include/functions_maps.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_massive_operations.php b/pandora_console/include/functions_massive_operations.php index 6884045330..68828a1380 100644 --- a/pandora_console/include/functions_massive_operations.php +++ b/pandora_console/include/functions_massive_operations.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index e69df9616d..a71ddf811e 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_messages.php b/pandora_console/include/functions_messages.php index f5587fab67..5255645644 100644 --- a/pandora_console/include/functions_messages.php +++ b/pandora_console/include/functions_messages.php @@ -17,7 +17,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_migration.php b/pandora_console/include/functions_migration.php index feafc94b8d..6701614c70 100644 --- a/pandora_console/include/functions_migration.php +++ b/pandora_console/include/functions_migration.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 6e02a7cfc6..c6f894afdd 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_netflow.php b/pandora_console/include/functions_netflow.php index 1e1e5f1c9e..c65918e3a6 100644 --- a/pandora_console/include/functions_netflow.php +++ b/pandora_console/include/functions_netflow.php @@ -9,7 +9,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_network.php b/pandora_console/include/functions_network.php index 57502368ae..4c5e894582 100644 --- a/pandora_console/include/functions_network.php +++ b/pandora_console/include/functions_network.php @@ -8,7 +8,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_network_components.php b/pandora_console/include/functions_network_components.php index d7845a18f4..eb9985f27f 100644 --- a/pandora_console/include/functions_network_components.php +++ b/pandora_console/include/functions_network_components.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_network_profiles.php b/pandora_console/include/functions_network_profiles.php index 72e37a26c8..1978806418 100644 --- a/pandora_console/include/functions_network_profiles.php +++ b/pandora_console/include/functions_network_profiles.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index 61e6b8cdd3..613ab8175a 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_networkmaps.php b/pandora_console/include/functions_networkmaps.php index e12dfdfa2e..ca1453f2c3 100644 --- a/pandora_console/include/functions_networkmaps.php +++ b/pandora_console/include/functions_networkmaps.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_notifications.php b/pandora_console/include/functions_notifications.php index 51e1279c09..19b057482f 100644 --- a/pandora_console/include/functions_notifications.php +++ b/pandora_console/include/functions_notifications.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_os.php b/pandora_console/include/functions_os.php index 7bc4db21f4..1cf2ee9013 100755 --- a/pandora_console/include/functions_os.php +++ b/pandora_console/include/functions_os.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2011-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_pandora_networkmap.php b/pandora_console/include/functions_pandora_networkmap.php index e12dfdfa2e..ca1453f2c3 100644 --- a/pandora_console/include/functions_pandora_networkmap.php +++ b/pandora_console/include/functions_pandora_networkmap.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_planned_downtimes.php b/pandora_console/include/functions_planned_downtimes.php index 3001c0b803..b46d63cdab 100644 --- a/pandora_console/include/functions_planned_downtimes.php +++ b/pandora_console/include/functions_planned_downtimes.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_plugins.php b/pandora_console/include/functions_plugins.php index fbfb56941b..fa476ef362 100644 --- a/pandora_console/include/functions_plugins.php +++ b/pandora_console/include/functions_plugins.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_post_process.php b/pandora_console/include/functions_post_process.php index f7b66dd372..e50e11bc24 100755 --- a/pandora_console/include/functions_post_process.php +++ b/pandora_console/include/functions_post_process.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_profile.php b/pandora_console/include/functions_profile.php index e0f0bf12c4..9ee50d31f4 100644 --- a/pandora_console/include/functions_profile.php +++ b/pandora_console/include/functions_profile.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_register.php b/pandora_console/include/functions_register.php index 0bfcf3f5e9..143fab2246 100644 --- a/pandora_console/include/functions_register.php +++ b/pandora_console/include/functions_register.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_reporting.php b/pandora_console/include/functions_reporting.php index 195571f8cc..9d2b9daf89 100755 --- a/pandora_console/include/functions_reporting.php +++ b/pandora_console/include/functions_reporting.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 0177a2405b..d4b3cb59ed 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_reporting_xml.php b/pandora_console/include/functions_reporting_xml.php index a85f4dce51..b49f7e993a 100644 --- a/pandora_console/include/functions_reporting_xml.php +++ b/pandora_console/include/functions_reporting_xml.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_reports.php b/pandora_console/include/functions_reports.php index 14f51ac69d..7a8e38d4d8 100755 --- a/pandora_console/include/functions_reports.php +++ b/pandora_console/include/functions_reports.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_servers.php b/pandora_console/include/functions_servers.php index 7d842095c9..0ca861fe5c 100644 --- a/pandora_console/include/functions_servers.php +++ b/pandora_console/include/functions_servers.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_snmp.php b/pandora_console/include/functions_snmp.php index 2bbb182b1f..194f53817b 100644 --- a/pandora_console/include/functions_snmp.php +++ b/pandora_console/include/functions_snmp.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_snmp_browser.php b/pandora_console/include/functions_snmp_browser.php index 9fb62043b4..3c62a82c12 100644 --- a/pandora_console/include/functions_snmp_browser.php +++ b/pandora_console/include/functions_snmp_browser.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_tactical.php b/pandora_console/include/functions_tactical.php index 4e4a981300..06ee51f32d 100644 --- a/pandora_console/include/functions_tactical.php +++ b/pandora_console/include/functions_tactical.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_tags.php b/pandora_console/include/functions_tags.php index 305bc5b61d..2d38eea9c5 100644 --- a/pandora_console/include/functions_tags.php +++ b/pandora_console/include/functions_tags.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_themes.php b/pandora_console/include/functions_themes.php index 2a5af85e70..75cdcd4851 100644 --- a/pandora_console/include/functions_themes.php +++ b/pandora_console/include/functions_themes.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_treeview.php b/pandora_console/include/functions_treeview.php index 6cb7a0ea7f..7907eda004 100755 --- a/pandora_console/include/functions_treeview.php +++ b/pandora_console/include/functions_treeview.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 8367833efa..dce62443f3 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_ui_renders.php b/pandora_console/include/functions_ui_renders.php index 51518b81c5..1db0f52f0e 100644 --- a/pandora_console/include/functions_ui_renders.php +++ b/pandora_console/include/functions_ui_renders.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_update_manager.php b/pandora_console/include/functions_update_manager.php index 00dc757b1b..07ccaadc04 100755 --- a/pandora_console/include/functions_update_manager.php +++ b/pandora_console/include/functions_update_manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index 1247faddf8..6699e1a3c7 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_visual_map.php b/pandora_console/include/functions_visual_map.php index f4fa258478..787592c6b7 100755 --- a/pandora_console/include/functions_visual_map.php +++ b/pandora_console/include/functions_visual_map.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index 74c504b417..fb13a9f4aa 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/functions_wmi.php b/pandora_console/include/functions_wmi.php index 12690d4b01..8cc7ee1e67 100644 --- a/pandora_console/include/functions_wmi.php +++ b/pandora_console/include/functions_wmi.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/get_file.php b/pandora_console/include/get_file.php index 94f2a79ff9..9ee33d4476 100644 --- a/pandora_console/include/get_file.php +++ b/pandora_console/include/get_file.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/graphs/export_data.php b/pandora_console/include/graphs/export_data.php index 70c9e61932..4ae69f7058 100644 --- a/pandora_console/include/graphs/export_data.php +++ b/pandora_console/include/graphs/export_data.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/graphs/fgraph.php b/pandora_console/include/graphs/fgraph.php index db068d2140..6c0d04c663 100644 --- a/pandora_console/include/graphs/fgraph.php +++ b/pandora_console/include/graphs/fgraph.php @@ -1,6 +1,6 @@ +// http://www.pandorafms.com // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/graphs/functions_d3.php b/pandora_console/include/graphs/functions_d3.php index c9d4b659d0..f162769fe5 100644 --- a/pandora_console/include/graphs/functions_d3.php +++ b/pandora_console/include/graphs/functions_d3.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/graphs/functions_utils.php b/pandora_console/include/graphs/functions_utils.php index e68a11a9f1..3800aaa015 100644 --- a/pandora_console/include/graphs/functions_utils.php +++ b/pandora_console/include/graphs/functions_utils.php @@ -1,6 +1,6 @@ +// http://www.pandorafms.com // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/agent_out_of_limits.php b/pandora_console/include/help/clippy/agent_out_of_limits.php index 4407a128f2..3df14e924c 100644 --- a/pandora_console/include/help/clippy/agent_out_of_limits.php +++ b/pandora_console/include/help/clippy/agent_out_of_limits.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/data_configuration_module.php b/pandora_console/include/help/clippy/data_configuration_module.php index 43615545c5..558280cf96 100644 --- a/pandora_console/include/help/clippy/data_configuration_module.php +++ b/pandora_console/include/help/clippy/data_configuration_module.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/extension_cron_send_email.php b/pandora_console/include/help/clippy/extension_cron_send_email.php index 7f06ffdb19..5c8ae42f84 100755 --- a/pandora_console/include/help/clippy/extension_cron_send_email.php +++ b/pandora_console/include/help/clippy/extension_cron_send_email.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/godmode_agentes_configurar_agente.php b/pandora_console/include/help/clippy/godmode_agentes_configurar_agente.php index c867dab02e..249c9bc203 100644 --- a/pandora_console/include/help/clippy/godmode_agentes_configurar_agente.php +++ b/pandora_console/include/help/clippy/godmode_agentes_configurar_agente.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/godmode_agentes_modificar_agente.php b/pandora_console/include/help/clippy/godmode_agentes_modificar_agente.php index abe5540d8d..ed385eca15 100644 --- a/pandora_console/include/help/clippy/godmode_agentes_modificar_agente.php +++ b/pandora_console/include/help/clippy/godmode_agentes_modificar_agente.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/godmode_alerts_alert_actions.php b/pandora_console/include/help/clippy/godmode_alerts_alert_actions.php index 1e607a2dbe..582bc0812a 100644 --- a/pandora_console/include/help/clippy/godmode_alerts_alert_actions.php +++ b/pandora_console/include/help/clippy/godmode_alerts_alert_actions.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/godmode_alerts_configure_alert_action.php b/pandora_console/include/help/clippy/godmode_alerts_configure_alert_action.php index 3565d29b10..a4ab056901 100644 --- a/pandora_console/include/help/clippy/godmode_alerts_configure_alert_action.php +++ b/pandora_console/include/help/clippy/godmode_alerts_configure_alert_action.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/homepage.php b/pandora_console/include/help/clippy/homepage.php index 11cac5453c..948bbf6029 100644 --- a/pandora_console/include/help/clippy/homepage.php +++ b/pandora_console/include/help/clippy/homepage.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/interval_agent_min.php b/pandora_console/include/help/clippy/interval_agent_min.php index be87e0a610..614f18d238 100644 --- a/pandora_console/include/help/clippy/interval_agent_min.php +++ b/pandora_console/include/help/clippy/interval_agent_min.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/module_unknow.php b/pandora_console/include/help/clippy/module_unknow.php index 67ad078bdf..6b269e4777 100644 --- a/pandora_console/include/help/clippy/module_unknow.php +++ b/pandora_console/include/help/clippy/module_unknow.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/modules_not_init.php b/pandora_console/include/help/clippy/modules_not_init.php index 0f8e026d2b..ae71c65914 100644 --- a/pandora_console/include/help/clippy/modules_not_init.php +++ b/pandora_console/include/help/clippy/modules_not_init.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/modules_not_learning_mode.php b/pandora_console/include/help/clippy/modules_not_learning_mode.php index 9fd7c43c57..2f67df7f0e 100755 --- a/pandora_console/include/help/clippy/modules_not_learning_mode.php +++ b/pandora_console/include/help/clippy/modules_not_learning_mode.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/help/clippy/operation_agentes_status_monitor.php b/pandora_console/include/help/clippy/operation_agentes_status_monitor.php index fdde262718..97bfb7ef6c 100644 --- a/pandora_console/include/help/clippy/operation_agentes_status_monitor.php +++ b/pandora_console/include/help/clippy/operation_agentes_status_monitor.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/operation_agentes_ver_agente.php b/pandora_console/include/help/clippy/operation_agentes_ver_agente.php index c4a35c4ed2..9e1f6b0b8e 100644 --- a/pandora_console/include/help/clippy/operation_agentes_ver_agente.php +++ b/pandora_console/include/help/clippy/operation_agentes_ver_agente.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/server_queued_modules.php b/pandora_console/include/help/clippy/server_queued_modules.php index 7635563664..63ed54c57d 100644 --- a/pandora_console/include/help/clippy/server_queued_modules.php +++ b/pandora_console/include/help/clippy/server_queued_modules.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/servers_down.php b/pandora_console/include/help/clippy/servers_down.php index cd1afa26f2..afe4baff24 100644 --- a/pandora_console/include/help/clippy/servers_down.php +++ b/pandora_console/include/help/clippy/servers_down.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/help/clippy/topology_group.php b/pandora_console/include/help/clippy/topology_group.php index c1b22989af..ab7f4e145b 100644 --- a/pandora_console/include/help/clippy/topology_group.php +++ b/pandora_console/include/help/clippy/topology_group.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/include_graph_dependencies.php b/pandora_console/include/include_graph_dependencies.php index 5a2fc165e6..b9ec1c309b 100644 --- a/pandora_console/include/include_graph_dependencies.php +++ b/pandora_console/include/include_graph_dependencies.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/lib/Agent.php b/pandora_console/include/lib/Agent.php index e73ce6fe6e..e82f54ea78 100644 --- a/pandora_console/include/lib/Agent.php +++ b/pandora_console/include/lib/Agent.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Calendar.php b/pandora_console/include/lib/Calendar.php index b27b9c7acf..613771bc6d 100644 --- a/pandora_console/include/lib/Calendar.php +++ b/pandora_console/include/lib/Calendar.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Cluster.php b/pandora_console/include/lib/Cluster.php index 5c21b8ab15..fbd4d39036 100644 --- a/pandora_console/include/lib/Cluster.php +++ b/pandora_console/include/lib/Cluster.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/ClusterModule.php b/pandora_console/include/lib/ClusterModule.php index 8543c39a16..5dc906ecc5 100644 --- a/pandora_console/include/lib/ClusterModule.php +++ b/pandora_console/include/lib/ClusterModule.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/ClusterViewer/ClusterManager.php b/pandora_console/include/lib/ClusterViewer/ClusterManager.php index 863f39bae0..0c8f958a1f 100644 --- a/pandora_console/include/lib/ClusterViewer/ClusterManager.php +++ b/pandora_console/include/lib/ClusterViewer/ClusterManager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php index fa2211e0cd..5659be2d38 100644 --- a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php +++ b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Console.php b/pandora_console/include/lib/Console.php index c7212f0eb0..03e8fee155 100644 --- a/pandora_console/include/lib/Console.php +++ b/pandora_console/include/lib/Console.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Core/Config.php b/pandora_console/include/lib/Core/Config.php index 4ad61496ab..0653644c6f 100644 --- a/pandora_console/include/lib/Core/Config.php +++ b/pandora_console/include/lib/Core/Config.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Core/DBMaintainer.php b/pandora_console/include/lib/Core/DBMaintainer.php index 0f7ef423e3..1dca271557 100644 --- a/pandora_console/include/lib/Core/DBMaintainer.php +++ b/pandora_console/include/lib/Core/DBMaintainer.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php b/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php index fc5e7c7721..a1a47e6144 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php +++ b/pandora_console/include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php index 5874cc075e..3ac0fb368a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BasicChart.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php b/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php index 690cfddece..194632e8ee 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php +++ b/pandora_console/include/lib/Dashboard/Widgets/BlockHistogram.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php index 052f438290..507186b871 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ColorModuleTabs.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php b/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php index 0d82033463..50bba3f7e3 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php +++ b/pandora_console/include/lib/Dashboard/Widgets/DataMatrix.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php index 9f25dff837..69a1ab3e11 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php +++ b/pandora_console/include/lib/Dashboard/Widgets/EventCardboard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php index 9996ae6332..e3af730296 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php +++ b/pandora_console/include/lib/Dashboard/Widgets/GroupedMeterGraphs.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php b/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php index 0aa472fd8a..589e06fb56 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ModulesByStatus.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php index a8f69cbca6..e32946e691 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/agent_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/agent_module.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php b/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php index 7cda13b1ed..dc49a11ad1 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php +++ b/pandora_console/include/lib/Dashboard/Widgets/alerts_fired.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/clock.php b/pandora_console/include/lib/Dashboard/Widgets/clock.php index b5e2514155..6f4af5543e 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/clock.php +++ b/pandora_console/include/lib/Dashboard/Widgets/clock.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php b/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php index cbd448eba2..e398d636c5 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/custom_graph.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/events_list.php b/pandora_console/include/lib/Dashboard/Widgets/events_list.php index 5bc67bd811..e6dc239d91 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/events_list.php +++ b/pandora_console/include/lib/Dashboard/Widgets/events_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/example.php b/pandora_console/include/lib/Dashboard/Widgets/example.php index efd6ca8f87..0547493235 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/example.php +++ b/pandora_console/include/lib/Dashboard/Widgets/example.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. 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 03b78ca3f9..897139476a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php +++ b/pandora_console/include/lib/Dashboard/Widgets/graph_module_histogram.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/groups_status.php b/pandora_console/include/lib/Dashboard/Widgets/groups_status.php index ee75b848c2..46ee9da07b 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/groups_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/groups_status.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/heatmap.php b/pandora_console/include/lib/Dashboard/Widgets/heatmap.php index 994591cafe..37172419bf 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/heatmap.php +++ b/pandora_console/include/lib/Dashboard/Widgets/heatmap.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php b/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php index 99468ddffe..72c2ad2924 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php +++ b/pandora_console/include/lib/Dashboard/Widgets/maps_made_by_user.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/maps_status.php b/pandora_console/include/lib/Dashboard/Widgets/maps_status.php index fbe1cb0625..79e29932ae 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/maps_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/maps_status.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php index 88e6a87c87..9d9f2fb37c 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_icon.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_icon.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_status.php b/pandora_console/include/lib/Dashboard/Widgets/module_status.php index 576d4fe751..f66b2ff284 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_status.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php index 36872a4c2c..2887bcb765 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_table_value.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/module_value.php b/pandora_console/include/lib/Dashboard/Widgets/module_value.php index bdceb715c2..74a4aafa6a 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/module_value.php +++ b/pandora_console/include/lib/Dashboard/Widgets/module_value.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php b/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php index ee40a25e5d..43abe87a1e 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php +++ b/pandora_console/include/lib/Dashboard/Widgets/monitor_health.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/network_map.php b/pandora_console/include/lib/Dashboard/Widgets/network_map.php index ad00435527..2b7bcee186 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/network_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/network_map.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php index 511eed54b5..ca6f767c27 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php +++ b/pandora_console/include/lib/Dashboard/Widgets/os_quick_report.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/post.php b/pandora_console/include/lib/Dashboard/Widgets/post.php index cecc737b2b..5a9222e2eb 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/post.php +++ b/pandora_console/include/lib/Dashboard/Widgets/post.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/reports.php b/pandora_console/include/lib/Dashboard/Widgets/reports.php index 6d579f4061..3d37caf817 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/reports.php +++ b/pandora_console/include/lib/Dashboard/Widgets/reports.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_map.php b/pandora_console/include/lib/Dashboard/Widgets/service_map.php index 9a44af9819..5c009da21f 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/service_map.php +++ b/pandora_console/include/lib/Dashboard/Widgets/service_map.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/service_view.php b/pandora_console/include/lib/Dashboard/Widgets/service_view.php index d20ab8ec91..c74ee1c1b5 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/service_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/service_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php index 70b86f9722..36c76f73fd 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/single_graph.php +++ b/pandora_console/include/lib/Dashboard/Widgets/single_graph.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php index 3d5c03e29c..804cd92f5d 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php +++ b/pandora_console/include/lib/Dashboard/Widgets/sla_percent.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. 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 7ebb602e84..410e254d8b 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php +++ b/pandora_console/include/lib/Dashboard/Widgets/system_group_status.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/tactical.php b/pandora_console/include/lib/Dashboard/Widgets/tactical.php index 0702fe7306..0e69ed8372 100755 --- a/pandora_console/include/lib/Dashboard/Widgets/tactical.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tactical.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n.php b/pandora_console/include/lib/Dashboard/Widgets/top_n.php index ac5d530173..e8dc471747 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php index 0c1f361b25..8c7297ca80 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_group.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php index 79bbd54ed2..a1453aaa1d 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php +++ b/pandora_console/include/lib/Dashboard/Widgets/top_n_events_by_module.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php index bd4d05d347..55b16e117c 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/tree_view.php +++ b/pandora_console/include/lib/Dashboard/Widgets/tree_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/url.php b/pandora_console/include/lib/Dashboard/Widgets/url.php index 3d9777de28..ad2f324de0 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/url.php +++ b/pandora_console/include/lib/Dashboard/Widgets/url.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/ux_transaction.php b/pandora_console/include/lib/Dashboard/Widgets/ux_transaction.php index b9fd304f7d..0fab907405 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/ux_transaction.php +++ b/pandora_console/include/lib/Dashboard/Widgets/ux_transaction.php @@ -6,7 +6,7 @@ //|___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ - // Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es + // Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php index 70bef84f0e..3590ccd0ad 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php +++ b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php index 670b2cb01b..ebc2dbbcf3 100644 --- a/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php +++ b/pandora_console/include/lib/Dashboard/Widgets/wux_transaction_stats.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Entity.php b/pandora_console/include/lib/Entity.php index 46ac04e767..b93fe5d2ae 100644 --- a/pandora_console/include/lib/Entity.php +++ b/pandora_console/include/lib/Entity.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Event.php b/pandora_console/include/lib/Event.php index 0ccea011ad..2c24f35f44 100644 --- a/pandora_console/include/lib/Event.php +++ b/pandora_console/include/lib/Event.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Group.php b/pandora_console/include/lib/Group.php index 71a7a29bd0..4027977ec6 100644 --- a/pandora_console/include/lib/Group.php +++ b/pandora_console/include/lib/Group.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Module.php b/pandora_console/include/lib/Module.php index 453dccac93..e00a2dee58 100644 --- a/pandora_console/include/lib/Module.php +++ b/pandora_console/include/lib/Module.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/ModuleStatus.php b/pandora_console/include/lib/ModuleStatus.php index 72bfde939f..d65383ac5b 100644 --- a/pandora_console/include/lib/ModuleStatus.php +++ b/pandora_console/include/lib/ModuleStatus.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/ModuleType.php b/pandora_console/include/lib/ModuleType.php index a0bd664625..46a2a88acd 100644 --- a/pandora_console/include/lib/ModuleType.php +++ b/pandora_console/include/lib/ModuleType.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/PublicLogin.php b/pandora_console/include/lib/PublicLogin.php index 5e4277903e..18b6d46b55 100644 --- a/pandora_console/include/lib/PublicLogin.php +++ b/pandora_console/include/lib/PublicLogin.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/SpecialDay.php b/pandora_console/include/lib/SpecialDay.php index ad4ca442fb..b41852c2e5 100644 --- a/pandora_console/include/lib/SpecialDay.php +++ b/pandora_console/include/lib/SpecialDay.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Tools/Files.php b/pandora_console/include/lib/Tools/Files.php index 32eb3ea291..004be4d04d 100644 --- a/pandora_console/include/lib/Tools/Files.php +++ b/pandora_console/include/lib/Tools/Files.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/Tools/Strings.php b/pandora_console/include/lib/Tools/Strings.php index 98c440a430..f940172ff5 100644 --- a/pandora_console/include/lib/Tools/Strings.php +++ b/pandora_console/include/lib/Tools/Strings.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/User.php b/pandora_console/include/lib/User.php index 9ddb6783bc..8350ae7685 100644 --- a/pandora_console/include/lib/User.php +++ b/pandora_console/include/lib/User.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/lib/View.php b/pandora_console/include/lib/View.php index 26323cafe2..69f385ccf8 100644 --- a/pandora_console/include/lib/View.php +++ b/pandora_console/include/lib/View.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/load_session.php b/pandora_console/include/load_session.php index c6c4ef30aa..5578d1c617 100644 --- a/pandora_console/include/load_session.php +++ b/pandora_console/include/load_session.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/php_to_js_values.php b/pandora_console/include/php_to_js_values.php index a83f58d235..ede602208e 100644 --- a/pandora_console/include/php_to_js_values.php +++ b/pandora_console/include/php_to_js_values.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU Lesser General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/include/rest-api/models/VisualConsole/View.php b/pandora_console/include/rest-api/models/VisualConsole/View.php index f830d64ce7..2fb438e23d 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/View.php +++ b/pandora_console/include/rest-api/models/VisualConsole/View.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/include/websocket_registrations.php b/pandora_console/include/websocket_registrations.php index d9e9eaaf69..694cd3b895 100644 --- a/pandora_console/include/websocket_registrations.php +++ b/pandora_console/include/websocket_registrations.php @@ -23,7 +23,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/index.php b/pandora_console/index.php index 4d344a99af..4f491ff6cf 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/install.php b/pandora_console/install.php index 0de8bdaf45..9988a347d1 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. @@ -604,7 +604,7 @@ function install_step1_licence()

GPL2 Licence terms agreement

Pandora FMS is an OpenSource software project licensed under the GPL2 licence. Pandora FMS includes, as well, another software also licensed under LGPL and BSD licenses. Before continue, you must accept the licence terms.. -

For more information, please refer to our website at http://pandorafms.org and contact us if you have any kind of question about the usage of Pandora FMS

+

For more information, please refer to our website at http://pandorafms.com/community/ and contact us if you have any kind of question about the usage of Pandora FMS

If you dont accept the licence terms, please, close your browser and delete Pandora FMS files.

"; diff --git a/pandora_console/mobile/include/db.class.php b/pandora_console/mobile/include/db.class.php index e2a26959f1..3640417be5 100644 --- a/pandora_console/mobile/include/db.class.php +++ b/pandora_console/mobile/include/db.class.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/include/functions_web.php b/pandora_console/mobile/include/functions_web.php index 0ee6b3e072..17e64c4298 100644 --- a/pandora_console/mobile/include/functions_web.php +++ b/pandora_console/mobile/include/functions_web.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/include/system.class.php b/pandora_console/mobile/include/system.class.php index 39f15c8855..b00ca3d6a8 100644 --- a/pandora_console/mobile/include/system.class.php +++ b/pandora_console/mobile/include/system.class.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/include/ui.class.php b/pandora_console/mobile/include/ui.class.php index bcbe4ee836..76da7652a3 100755 --- a/pandora_console/mobile/include/ui.class.php +++ b/pandora_console/mobile/include/ui.class.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/include/user.class.php b/pandora_console/mobile/include/user.class.php index d02babfa59..f98b986155 100644 --- a/pandora_console/mobile/include/user.class.php +++ b/pandora_console/mobile/include/user.class.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/index.php b/pandora_console/mobile/index.php index af54334998..d98af7e243 100644 --- a/pandora_console/mobile/index.php +++ b/pandora_console/mobile/index.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/agent.php b/pandora_console/mobile/operation/agent.php index 9d0b435786..626f9728a7 100644 --- a/pandora_console/mobile/operation/agent.php +++ b/pandora_console/mobile/operation/agent.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/agents.php b/pandora_console/mobile/operation/agents.php index cabab81bcc..1bf54207d0 100644 --- a/pandora_console/mobile/operation/agents.php +++ b/pandora_console/mobile/operation/agents.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/alerts.php b/pandora_console/mobile/operation/alerts.php index c6864eda18..c68884bf8c 100644 --- a/pandora_console/mobile/operation/alerts.php +++ b/pandora_console/mobile/operation/alerts.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/events.php b/pandora_console/mobile/operation/events.php index d1716d675b..077f0d57b3 100644 --- a/pandora_console/mobile/operation/events.php +++ b/pandora_console/mobile/operation/events.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/groups.php b/pandora_console/mobile/operation/groups.php index c9772b9597..f9b6d03de7 100644 --- a/pandora_console/mobile/operation/groups.php +++ b/pandora_console/mobile/operation/groups.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/home.php b/pandora_console/mobile/operation/home.php index 6ba2cdf3aa..f20d2f4943 100644 --- a/pandora_console/mobile/operation/home.php +++ b/pandora_console/mobile/operation/home.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/module_data.php b/pandora_console/mobile/operation/module_data.php index 77063f30c9..92b283a356 100644 --- a/pandora_console/mobile/operation/module_data.php +++ b/pandora_console/mobile/operation/module_data.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/module_graph.php b/pandora_console/mobile/operation/module_graph.php index 65baa499b0..a0a950dc0e 100644 --- a/pandora_console/mobile/operation/module_graph.php +++ b/pandora_console/mobile/operation/module_graph.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/modules.php b/pandora_console/mobile/operation/modules.php index 0a68feee0e..12b2b00b1c 100644 --- a/pandora_console/mobile/operation/modules.php +++ b/pandora_console/mobile/operation/modules.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/server_status.php b/pandora_console/mobile/operation/server_status.php index 1a28445f1f..b2662aea66 100644 --- a/pandora_console/mobile/operation/server_status.php +++ b/pandora_console/mobile/operation/server_status.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/services.php b/pandora_console/mobile/operation/services.php index 6d629c049b..851b757b4d 100644 --- a/pandora_console/mobile/operation/services.php +++ b/pandora_console/mobile/operation/services.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/tactical.php b/pandora_console/mobile/operation/tactical.php index fd11f83fde..10181bd15c 100755 --- a/pandora_console/mobile/operation/tactical.php +++ b/pandora_console/mobile/operation/tactical.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/visualmap.php b/pandora_console/mobile/operation/visualmap.php index 9b51bf11ec..cf695ebf5e 100644 --- a/pandora_console/mobile/operation/visualmap.php +++ b/pandora_console/mobile/operation/visualmap.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/mobile/operation/visualmaps.php b/pandora_console/mobile/operation/visualmaps.php index 8c3c0e2abb..12f2ce937e 100644 --- a/pandora_console/mobile/operation/visualmaps.php +++ b/pandora_console/mobile/operation/visualmaps.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/agent_fields.php b/pandora_console/operation/agentes/agent_fields.php index 83a66a4700..4abc1eb11f 100755 --- a/pandora_console/operation/agentes/agent_fields.php +++ b/pandora_console/operation/agentes/agent_fields.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/agent_inventory.php b/pandora_console/operation/agentes/agent_inventory.php index 999684b863..6372324179 100644 --- a/pandora_console/operation/agentes/agent_inventory.php +++ b/pandora_console/operation/agentes/agent_inventory.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/alerts_status.functions.php b/pandora_console/operation/agentes/alerts_status.functions.php index 5c5bf6dbe7..53873c6913 100755 --- a/pandora_console/operation/agentes/alerts_status.functions.php +++ b/pandora_console/operation/agentes/alerts_status.functions.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/alerts_status.php b/pandora_console/operation/agentes/alerts_status.php index 546d73c755..dd89c27b5f 100755 --- a/pandora_console/operation/agentes/alerts_status.php +++ b/pandora_console/operation/agentes/alerts_status.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/custom_fields.php b/pandora_console/operation/agentes/custom_fields.php index d6c9a3fb9f..3a7d04c4b3 100644 --- a/pandora_console/operation/agentes/custom_fields.php +++ b/pandora_console/operation/agentes/custom_fields.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/datos_agente.php b/pandora_console/operation/agentes/datos_agente.php index 35abb87592..55f2ce666e 100755 --- a/pandora_console/operation/agentes/datos_agente.php +++ b/pandora_console/operation/agentes/datos_agente.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/ehorus_client.php b/pandora_console/operation/agentes/ehorus_client.php index 9340e2d7f5..e85e30d1f6 100644 --- a/pandora_console/operation/agentes/ehorus_client.php +++ b/pandora_console/operation/agentes/ehorus_client.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/estado_agente.php b/pandora_console/operation/agentes/estado_agente.php index c5c9c1f1f4..3acc1335ce 100644 --- a/pandora_console/operation/agentes/estado_agente.php +++ b/pandora_console/operation/agentes/estado_agente.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/estado_generalagente.php b/pandora_console/operation/agentes/estado_generalagente.php index da05ef5770..5fea7b9f24 100755 --- a/pandora_console/operation/agentes/estado_generalagente.php +++ b/pandora_console/operation/agentes/estado_generalagente.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/estado_monitores.php b/pandora_console/operation/agentes/estado_monitores.php index dfef58ce56..83c6037169 100755 --- a/pandora_console/operation/agentes/estado_monitores.php +++ b/pandora_console/operation/agentes/estado_monitores.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/export_csv.php b/pandora_console/operation/agentes/export_csv.php index 6bb88a6a2f..84f2f8541b 100644 --- a/pandora_console/operation/agentes/export_csv.php +++ b/pandora_console/operation/agentes/export_csv.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/exportdata.csv.php b/pandora_console/operation/agentes/exportdata.csv.php index c8173a58ae..bac6c50315 100644 --- a/pandora_console/operation/agentes/exportdata.csv.php +++ b/pandora_console/operation/agentes/exportdata.csv.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/exportdata.excel.php b/pandora_console/operation/agentes/exportdata.excel.php index 4336a46ff3..ae5f432002 100644 --- a/pandora_console/operation/agentes/exportdata.excel.php +++ b/pandora_console/operation/agentes/exportdata.excel.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/exportdata.php b/pandora_console/operation/agentes/exportdata.php index 5791699510..15dc5ab8c4 100644 --- a/pandora_console/operation/agentes/exportdata.php +++ b/pandora_console/operation/agentes/exportdata.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/external_tools.php b/pandora_console/operation/agentes/external_tools.php index b4b27f933b..a940d558bf 100644 --- a/pandora_console/operation/agentes/external_tools.php +++ b/pandora_console/operation/agentes/external_tools.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/graphs.php b/pandora_console/operation/agentes/graphs.php index 7807e925f7..d59f857d54 100644 --- a/pandora_console/operation/agentes/graphs.php +++ b/pandora_console/operation/agentes/graphs.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/group_view.php b/pandora_console/operation/agentes/group_view.php index 6a863a4e78..8935ee28de 100644 --- a/pandora_console/operation/agentes/group_view.php +++ b/pandora_console/operation/agentes/group_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/interface_traffic_graph_win.php b/pandora_console/operation/agentes/interface_traffic_graph_win.php index ec1dc4b0d4..f0fcc56f20 100644 --- a/pandora_console/operation/agentes/interface_traffic_graph_win.php +++ b/pandora_console/operation/agentes/interface_traffic_graph_win.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/interface_view.functions.php b/pandora_console/operation/agentes/interface_view.functions.php index 5ffe072808..f8f7959752 100644 --- a/pandora_console/operation/agentes/interface_view.functions.php +++ b/pandora_console/operation/agentes/interface_view.functions.php @@ -3,7 +3,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/agentes/interface_view.php b/pandora_console/operation/agentes/interface_view.php index 10ffafea71..390d83cfef 100644 --- a/pandora_console/operation/agentes/interface_view.php +++ b/pandora_console/operation/agentes/interface_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2007-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/log_sources_status.php b/pandora_console/operation/agentes/log_sources_status.php index 58f7aea79f..95d956aaaa 100644 --- a/pandora_console/operation/agentes/log_sources_status.php +++ b/pandora_console/operation/agentes/log_sources_status.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/networkmap.dinamic.php b/pandora_console/operation/agentes/networkmap.dinamic.php index 0aeb6a1521..a2e0aa7752 100644 --- a/pandora_console/operation/agentes/networkmap.dinamic.php +++ b/pandora_console/operation/agentes/networkmap.dinamic.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/pandora_networkmap.editor.php b/pandora_console/operation/agentes/pandora_networkmap.editor.php index 968db594ac..feff3af15f 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.editor.php +++ b/pandora_console/operation/agentes/pandora_networkmap.editor.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/pandora_networkmap.php b/pandora_console/operation/agentes/pandora_networkmap.php index c379548f8f..4fd3a8d3db 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.php +++ b/pandora_console/operation/agentes/pandora_networkmap.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/pandora_networkmap.view.php b/pandora_console/operation/agentes/pandora_networkmap.view.php index 435278932c..fffd4aaa5b 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.view.php +++ b/pandora_console/operation/agentes/pandora_networkmap.view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/realtime_win.php b/pandora_console/operation/agentes/realtime_win.php index b79371924f..a3cf94ca95 100644 --- a/pandora_console/operation/agentes/realtime_win.php +++ b/pandora_console/operation/agentes/realtime_win.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/snapshot_view.php b/pandora_console/operation/agentes/snapshot_view.php index 6f512ac1b8..54a3bb612f 100644 --- a/pandora_console/operation/agentes/snapshot_view.php +++ b/pandora_console/operation/agentes/snapshot_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/stat_win.php b/pandora_console/operation/agentes/stat_win.php index 40877a3099..8536b06c54 100644 --- a/pandora_console/operation/agentes/stat_win.php +++ b/pandora_console/operation/agentes/stat_win.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/status_events.php b/pandora_console/operation/agentes/status_events.php index bd51c83a87..9989257c3d 100755 --- a/pandora_console/operation/agentes/status_events.php +++ b/pandora_console/operation/agentes/status_events.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/status_monitor.php b/pandora_console/operation/agentes/status_monitor.php index 3422903ace..dcda9ad874 100644 --- a/pandora_console/operation/agentes/status_monitor.php +++ b/pandora_console/operation/agentes/status_monitor.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/tactical.php b/pandora_console/operation/agentes/tactical.php index 6ce9edbe78..e1df4086f9 100755 --- a/pandora_console/operation/agentes/tactical.php +++ b/pandora_console/operation/agentes/tactical.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/url_address.php b/pandora_console/operation/agentes/url_address.php index 6b7b657675..34106670ce 100644 --- a/pandora_console/operation/agentes/url_address.php +++ b/pandora_console/operation/agentes/url_address.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index a9d27e21f0..34e7a5c08d 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/cluster/cluster.php b/pandora_console/operation/cluster/cluster.php index cf2f9398f1..4e3c4c13a6 100755 --- a/pandora_console/operation/cluster/cluster.php +++ b/pandora_console/operation/cluster/cluster.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/dashboard/dashboard.php b/pandora_console/operation/dashboard/dashboard.php index 0a3fc0b526..f28dafb752 100644 --- a/pandora_console/operation/dashboard/dashboard.php +++ b/pandora_console/operation/dashboard/dashboard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/dashboard/public_dashboard.php b/pandora_console/operation/dashboard/public_dashboard.php index 29b242eb55..2c0f4b47d8 100644 --- a/pandora_console/operation/dashboard/public_dashboard.php +++ b/pandora_console/operation/dashboard/public_dashboard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/events/events.build_query.php b/pandora_console/operation/events/events.build_query.php index ab3cf077bd..33330d5b30 100755 --- a/pandora_console/operation/events/events.build_query.php +++ b/pandora_console/operation/events/events.build_query.php @@ -3,7 +3,7 @@ * Pandora FMS - http://pandorafms.com * ================================================== * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/events/events.php b/pandora_console/operation/events/events.php index 329c206293..4a60d75404 100644 --- a/pandora_console/operation/events/events.php +++ b/pandora_console/operation/events/events.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/events/events_rss.php b/pandora_console/operation/events/events_rss.php index e1946b428b..ee14e349cd 100644 --- a/pandora_console/operation/events/events_rss.php +++ b/pandora_console/operation/events/events_rss.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/events/export_csv.php b/pandora_console/operation/events/export_csv.php index 5571d5ebf7..36d75c0b6b 100644 --- a/pandora_console/operation/events/export_csv.php +++ b/pandora_console/operation/events/export_csv.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/events/sound_events.php b/pandora_console/operation/events/sound_events.php index ae38d32c7f..99b84fcba3 100644 --- a/pandora_console/operation/events/sound_events.php +++ b/pandora_console/operation/events/sound_events.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/gis_maps/ajax.php b/pandora_console/operation/gis_maps/ajax.php index 924981babf..ccf243d449 100644 --- a/pandora_console/operation/gis_maps/ajax.php +++ b/pandora_console/operation/gis_maps/ajax.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/gis_maps/public_console.php b/pandora_console/operation/gis_maps/public_console.php index 08aa05e4af..bd76a26940 100755 --- a/pandora_console/operation/gis_maps/public_console.php +++ b/pandora_console/operation/gis_maps/public_console.php @@ -2,7 +2,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 20012 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/gis_maps/render_view.php b/pandora_console/operation/gis_maps/render_view.php index 6884596f7d..90bb49877f 100644 --- a/pandora_console/operation/gis_maps/render_view.php +++ b/pandora_console/operation/gis_maps/render_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/heatmap.php b/pandora_console/operation/heatmap.php index 87ddb7e2e7..094f0eaa63 100644 --- a/pandora_console/operation/heatmap.php +++ b/pandora_console/operation/heatmap.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/incidents/configure_integriaims_incident.php b/pandora_console/operation/incidents/configure_integriaims_incident.php index 4ed3c58c5f..d01b1d7fdb 100644 --- a/pandora_console/operation/incidents/configure_integriaims_incident.php +++ b/pandora_console/operation/incidents/configure_integriaims_incident.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/incidents/dashboard_detail_integriaims_incident.php b/pandora_console/operation/incidents/dashboard_detail_integriaims_incident.php index 19bea7eb42..c2d79a07ff 100644 --- a/pandora_console/operation/incidents/dashboard_detail_integriaims_incident.php +++ b/pandora_console/operation/incidents/dashboard_detail_integriaims_incident.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/incidents/incident_statistics.php b/pandora_console/operation/incidents/incident_statistics.php index 6f092e5b53..376dcc4581 100755 --- a/pandora_console/operation/incidents/incident_statistics.php +++ b/pandora_console/operation/incidents/incident_statistics.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/incidents/integriaims_export_csv.php b/pandora_console/operation/incidents/integriaims_export_csv.php index b5d39674b8..23e0de6167 100644 --- a/pandora_console/operation/incidents/integriaims_export_csv.php +++ b/pandora_console/operation/incidents/integriaims_export_csv.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/incidents/list_integriaims_incidents.php b/pandora_console/operation/incidents/list_integriaims_incidents.php index abb3abb39e..412fd5a16d 100644 --- a/pandora_console/operation/incidents/list_integriaims_incidents.php +++ b/pandora_console/operation/incidents/list_integriaims_incidents.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php index 8e50b585bc..0b8ff7246b 100755 --- a/pandora_console/operation/inventory/inventory.php +++ b/pandora_console/operation/inventory/inventory.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index da7604f742..7a1fcd0e91 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/messages/message_edit.php b/pandora_console/operation/messages/message_edit.php index 69f3a29bbc..6056de4a7f 100644 --- a/pandora_console/operation/messages/message_edit.php +++ b/pandora_console/operation/messages/message_edit.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/messages/message_list.php b/pandora_console/operation/messages/message_list.php index 4c76c0d826..3a9e22a5fb 100644 --- a/pandora_console/operation/messages/message_list.php +++ b/pandora_console/operation/messages/message_list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/netflow/netflow_explorer.php b/pandora_console/operation/netflow/netflow_explorer.php index 0c6afca4c8..5954a09e82 100644 --- a/pandora_console/operation/netflow/netflow_explorer.php +++ b/pandora_console/operation/netflow/netflow_explorer.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/netflow/nf_live_view.php b/pandora_console/operation/netflow/nf_live_view.php index a32117e7cb..3e42ccbe80 100644 --- a/pandora_console/operation/netflow/nf_live_view.php +++ b/pandora_console/operation/netflow/nf_live_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/network/network_report.php b/pandora_console/operation/network/network_report.php index 912f8662bf..df361b581f 100644 --- a/pandora_console/operation/network/network_report.php +++ b/pandora_console/operation/network/network_report.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/network/network_usage_map.php b/pandora_console/operation/network/network_usage_map.php index 233241e660..7eaba5a471 100644 --- a/pandora_console/operation/network/network_usage_map.php +++ b/pandora_console/operation/network/network_usage_map.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/reporting/custom_reporting.php b/pandora_console/operation/reporting/custom_reporting.php index 3fd3d8f894..623370aa68 100644 --- a/pandora_console/operation/reporting/custom_reporting.php +++ b/pandora_console/operation/reporting/custom_reporting.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/reporting/graph_viewer.php b/pandora_console/operation/reporting/graph_viewer.php index cf9faf0ff3..6a61689de5 100644 --- a/pandora_console/operation/reporting/graph_viewer.php +++ b/pandora_console/operation/reporting/graph_viewer.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/reporting/reporting_viewer.php b/pandora_console/operation/reporting/reporting_viewer.php index 167b4d7be5..2c7619e2ab 100755 --- a/pandora_console/operation/reporting/reporting_viewer.php +++ b/pandora_console/operation/reporting/reporting_viewer.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/reporting/reporting_xml.php b/pandora_console/operation/reporting/reporting_xml.php index 6f295710c9..2775aff99c 100755 --- a/pandora_console/operation/reporting/reporting_xml.php +++ b/pandora_console/operation/reporting/reporting_xml.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/search_agents.getdata.php b/pandora_console/operation/search_agents.getdata.php index a654f4e2c4..2318ad73e8 100644 --- a/pandora_console/operation/search_agents.getdata.php +++ b/pandora_console/operation/search_agents.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_agents.php b/pandora_console/operation/search_agents.php index 797d662a64..40c70274e7 100755 --- a/pandora_console/operation/search_agents.php +++ b/pandora_console/operation/search_agents.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_alerts.getdata.php b/pandora_console/operation/search_alerts.getdata.php index 465ef428ef..e718527966 100644 --- a/pandora_console/operation/search_alerts.getdata.php +++ b/pandora_console/operation/search_alerts.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_alerts.php b/pandora_console/operation/search_alerts.php index dd5fcb3c0a..1445618365 100755 --- a/pandora_console/operation/search_alerts.php +++ b/pandora_console/operation/search_alerts.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_graphs.getdata.php b/pandora_console/operation/search_graphs.getdata.php index e7a5169066..bc850ddaac 100644 --- a/pandora_console/operation/search_graphs.getdata.php +++ b/pandora_console/operation/search_graphs.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_graphs.php b/pandora_console/operation/search_graphs.php index fe37add630..a2ac257e24 100755 --- a/pandora_console/operation/search_graphs.php +++ b/pandora_console/operation/search_graphs.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_helps.getdata.php b/pandora_console/operation/search_helps.getdata.php index e81ecfab43..b28d729bed 100644 --- a/pandora_console/operation/search_helps.getdata.php +++ b/pandora_console/operation/search_helps.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_helps.php b/pandora_console/operation/search_helps.php index b440cc44fc..9f17238357 100644 --- a/pandora_console/operation/search_helps.php +++ b/pandora_console/operation/search_helps.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_main.php b/pandora_console/operation/search_main.php index 2d9f5b69fb..04b8034464 100644 --- a/pandora_console/operation/search_main.php +++ b/pandora_console/operation/search_main.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_maps.getdata.php b/pandora_console/operation/search_maps.getdata.php index 40f73f4aeb..60366bbc2d 100644 --- a/pandora_console/operation/search_maps.getdata.php +++ b/pandora_console/operation/search_maps.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_maps.php b/pandora_console/operation/search_maps.php index 6a5c521cb9..0971a54b63 100755 --- a/pandora_console/operation/search_maps.php +++ b/pandora_console/operation/search_maps.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_modules.getdata.php b/pandora_console/operation/search_modules.getdata.php index 350324ff7a..6a87ce0c97 100644 --- a/pandora_console/operation/search_modules.getdata.php +++ b/pandora_console/operation/search_modules.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_modules.php b/pandora_console/operation/search_modules.php index e28c6adb1a..78138c739b 100644 --- a/pandora_console/operation/search_modules.php +++ b/pandora_console/operation/search_modules.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_policies.getdata.php b/pandora_console/operation/search_policies.getdata.php index bd81cb4b39..2688c84341 100644 --- a/pandora_console/operation/search_policies.getdata.php +++ b/pandora_console/operation/search_policies.getdata.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/search_policies.php b/pandora_console/operation/search_policies.php index d92ac8cc41..2c12eb9293 100644 --- a/pandora_console/operation/search_policies.php +++ b/pandora_console/operation/search_policies.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_reports.getdata.php b/pandora_console/operation/search_reports.getdata.php index c5d7ceb8c9..8fb850e097 100644 --- a/pandora_console/operation/search_reports.getdata.php +++ b/pandora_console/operation/search_reports.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_reports.php b/pandora_console/operation/search_reports.php index d6bf8f8a53..4ac1eb6c69 100755 --- a/pandora_console/operation/search_reports.php +++ b/pandora_console/operation/search_reports.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_results.php b/pandora_console/operation/search_results.php index 8265475e18..d94d01271b 100644 --- a/pandora_console/operation/search_results.php +++ b/pandora_console/operation/search_results.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_users.getdata.php b/pandora_console/operation/search_users.getdata.php index 591debbd39..65e6c1b234 100644 --- a/pandora_console/operation/search_users.getdata.php +++ b/pandora_console/operation/search_users.getdata.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/search_users.php b/pandora_console/operation/search_users.php index 12cf08d90c..2ea1667991 100755 --- a/pandora_console/operation/search_users.php +++ b/pandora_console/operation/search_users.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/snmpconsole/snmp_browser.php b/pandora_console/operation/snmpconsole/snmp_browser.php index e50164f680..bf0489bb3e 100644 --- a/pandora_console/operation/snmpconsole/snmp_browser.php +++ b/pandora_console/operation/snmpconsole/snmp_browser.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/snmpconsole/snmp_mib_uploader.php b/pandora_console/operation/snmpconsole/snmp_mib_uploader.php index 4c8f0d73a5..29142810d4 100644 --- a/pandora_console/operation/snmpconsole/snmp_mib_uploader.php +++ b/pandora_console/operation/snmpconsole/snmp_mib_uploader.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/snmpconsole/snmp_statistics.php b/pandora_console/operation/snmpconsole/snmp_statistics.php index fb8cba0d40..4acc319f26 100755 --- a/pandora_console/operation/snmpconsole/snmp_statistics.php +++ b/pandora_console/operation/snmpconsole/snmp_statistics.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/snmpconsole/snmp_view.php b/pandora_console/operation/snmpconsole/snmp_view.php index 63601a4b7b..9cdd3ca6cd 100755 --- a/pandora_console/operation/snmpconsole/snmp_view.php +++ b/pandora_console/operation/snmpconsole/snmp_view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/tree.php b/pandora_console/operation/tree.php index 239600694a..4484161d48 100755 --- a/pandora_console/operation/tree.php +++ b/pandora_console/operation/tree.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index dec3713226..cf43c4a559 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/users/user_edit_header.php b/pandora_console/operation/users/user_edit_header.php index 9e74f0dbdd..49690779b6 100644 --- a/pandora_console/operation/users/user_edit_header.php +++ b/pandora_console/operation/users/user_edit_header.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/users/user_edit_notifications.php b/pandora_console/operation/users/user_edit_notifications.php index d0c24c9a53..30f8134301 100644 --- a/pandora_console/operation/users/user_edit_notifications.php +++ b/pandora_console/operation/users/user_edit_notifications.php @@ -16,7 +16,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/visual_console/legacy_public_view.php b/pandora_console/operation/visual_console/legacy_public_view.php index c60bdba9ac..1fb60883a3 100644 --- a/pandora_console/operation/visual_console/legacy_public_view.php +++ b/pandora_console/operation/visual_console/legacy_public_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 20012 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/visual_console/legacy_view.php b/pandora_console/operation/visual_console/legacy_view.php index 66a87665d1..7b84fe73ea 100644 --- a/pandora_console/operation/visual_console/legacy_view.php +++ b/pandora_console/operation/visual_console/legacy_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/visual_console/public_console.php b/pandora_console/operation/visual_console/public_console.php index cb87531398..12526705f9 100755 --- a/pandora_console/operation/visual_console/public_console.php +++ b/pandora_console/operation/visual_console/public_console.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 20012 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/visual_console/public_view.php b/pandora_console/operation/visual_console/public_view.php index ca5cfeab0f..91a967c88e 100644 --- a/pandora_console/operation/visual_console/public_view.php +++ b/pandora_console/operation/visual_console/public_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation; version 2 diff --git a/pandora_console/operation/visual_console/render_view.php b/pandora_console/operation/visual_console/render_view.php index 4cf7cf1b06..1c5566b4bc 100755 --- a/pandora_console/operation/visual_console/render_view.php +++ b/pandora_console/operation/visual_console/render_view.php @@ -3,7 +3,7 @@ // Pandora FMS - http://pandorafms.com // ================================================== // Copyright (c) 2005-2023 Pandora FMS -// Please see http://pandorafms.org for full contribution list +// Please see http://pandorafms.com/community/ for full contribution list // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License // as published by the Free Software Foundation for version 2. diff --git a/pandora_console/operation/visual_console/view.php b/pandora_console/operation/visual_console/view.php index 1b8292841a..2f6623c411 100644 --- a/pandora_console/operation/visual_console/view.php +++ b/pandora_console/operation/visual_console/view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/tools/diagnostics.php b/pandora_console/tools/diagnostics.php index 38a9737f86..47543626f8 100644 --- a/pandora_console/tools/diagnostics.php +++ b/pandora_console/tools/diagnostics.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/api.php b/pandora_console/update_manager_client/api.php index 5c21d28de7..76076fe1a4 100644 --- a/pandora_console/update_manager_client/api.php +++ b/pandora_console/update_manager_client/api.php @@ -20,7 +20,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php b/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php index 4c348c7803..72fa9ce51c 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/API/Server.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/lib/UpdateManager/Client.php b/pandora_console/update_manager_client/lib/UpdateManager/Client.php index 528298b914..731b4bd6f2 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/Client.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/Client.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php index 36800aea56..eead2d0b08 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/UI/Manager.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php b/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php index 0d9c79daa2..ae59193a8a 100644 --- a/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php +++ b/pandora_console/update_manager_client/lib/UpdateManager/UI/View.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/views/offline.php b/pandora_console/update_manager_client/views/offline.php index 059d9429d2..629ad74bdf 100644 --- a/pandora_console/update_manager_client/views/offline.php +++ b/pandora_console/update_manager_client/views/offline.php @@ -17,7 +17,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/views/online.php b/pandora_console/update_manager_client/views/online.php index 7d991eeded..04a47cde47 100644 --- a/pandora_console/update_manager_client/views/online.php +++ b/pandora_console/update_manager_client/views/online.php @@ -17,7 +17,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/update_manager_client/views/register.php b/pandora_console/update_manager_client/views/register.php index 9d34726c55..00dfb6f4d3 100644 --- a/pandora_console/update_manager_client/views/register.php +++ b/pandora_console/update_manager_client/views/register.php @@ -17,7 +17,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/calendar/edit.php b/pandora_console/views/calendar/edit.php index eb12f120ef..983a8d5cea 100644 --- a/pandora_console/views/calendar/edit.php +++ b/pandora_console/views/calendar/edit.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/calendar/list.php b/pandora_console/views/calendar/list.php index 23e8019905..3411c31a8e 100644 --- a/pandora_console/views/calendar/list.php +++ b/pandora_console/views/calendar/list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/calendar/special_days.php b/pandora_console/views/calendar/special_days.php index 0f4f4ea004..56dc2cada0 100644 --- a/pandora_console/views/calendar/special_days.php +++ b/pandora_console/views/calendar/special_days.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/calendar/special_days_edit.php b/pandora_console/views/calendar/special_days_edit.php index dbcfca7025..9e41374384 100644 --- a/pandora_console/views/calendar/special_days_edit.php +++ b/pandora_console/views/calendar/special_days_edit.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/cluster/edit.php b/pandora_console/views/cluster/edit.php index d6f424ca7e..c2d892ce33 100644 --- a/pandora_console/views/cluster/edit.php +++ b/pandora_console/views/cluster/edit.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/cluster/list.php b/pandora_console/views/cluster/list.php index 03ec4ba5a7..bd7e509876 100644 --- a/pandora_console/views/cluster/list.php +++ b/pandora_console/views/cluster/list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/cluster/view.php b/pandora_console/views/cluster/view.php index c4e4035235..b98a7fcba6 100644 --- a/pandora_console/views/cluster/view.php +++ b/pandora_console/views/cluster/view.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/consoles/list.php b/pandora_console/views/consoles/list.php index 7ed8c92d18..a501cb7989 100644 --- a/pandora_console/views/consoles/list.php +++ b/pandora_console/views/consoles/list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/cell.php b/pandora_console/views/dashboard/cell.php index d9ffba349e..1a2fcb7b2f 100644 --- a/pandora_console/views/dashboard/cell.php +++ b/pandora_console/views/dashboard/cell.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/configurationWidgets.php b/pandora_console/views/dashboard/configurationWidgets.php index 9e87ddbed1..cd0a268cdf 100644 --- a/pandora_console/views/dashboard/configurationWidgets.php +++ b/pandora_console/views/dashboard/configurationWidgets.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/formDashboard.php b/pandora_console/views/dashboard/formDashboard.php index 925e36a4ac..05c6beb952 100644 --- a/pandora_console/views/dashboard/formDashboard.php +++ b/pandora_console/views/dashboard/formDashboard.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/formSlides.php b/pandora_console/views/dashboard/formSlides.php index 797f4ad7a9..b3692877ca 100644 --- a/pandora_console/views/dashboard/formSlides.php +++ b/pandora_console/views/dashboard/formSlides.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/header.php b/pandora_console/views/dashboard/header.php index b774cbd59b..7cd25f11f1 100644 --- a/pandora_console/views/dashboard/header.php +++ b/pandora_console/views/dashboard/header.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/jsLayout.php b/pandora_console/views/dashboard/jsLayout.php index 900ceea53f..b43d6d0162 100644 --- a/pandora_console/views/dashboard/jsLayout.php +++ b/pandora_console/views/dashboard/jsLayout.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/layout.php b/pandora_console/views/dashboard/layout.php index dfc479b893..c1957169e0 100644 --- a/pandora_console/views/dashboard/layout.php +++ b/pandora_console/views/dashboard/layout.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/list.php b/pandora_console/views/dashboard/list.php index d87bd79508..70d1146077 100644 --- a/pandora_console/views/dashboard/list.php +++ b/pandora_console/views/dashboard/list.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/listWidgets.php b/pandora_console/views/dashboard/listWidgets.php index 0f4c9473e7..a018645d9e 100644 --- a/pandora_console/views/dashboard/listWidgets.php +++ b/pandora_console/views/dashboard/listWidgets.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/slides.php b/pandora_console/views/dashboard/slides.php index c85ea85aed..088a88b0e2 100644 --- a/pandora_console/views/dashboard/slides.php +++ b/pandora_console/views/dashboard/slides.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/slidesWidget.php b/pandora_console/views/dashboard/slidesWidget.php index 7c671d50b9..697b177e09 100644 --- a/pandora_console/views/dashboard/slidesWidget.php +++ b/pandora_console/views/dashboard/slidesWidget.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/tipsWindow.php b/pandora_console/views/dashboard/tipsWindow.php index 2efc70bec3..ccaf29fd04 100644 --- a/pandora_console/views/dashboard/tipsWindow.php +++ b/pandora_console/views/dashboard/tipsWindow.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/views/dashboard/widget.php b/pandora_console/views/dashboard/widget.php index 3d6b5cf4a0..8b6b003e2b 100644 --- a/pandora_console/views/dashboard/widget.php +++ b/pandora_console/views/dashboard/widget.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/ws.php b/pandora_console/ws.php index 7f5aabeb43..9c5cbcf451 100644 --- a/pandora_console/ws.php +++ b/pandora_console/ws.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.org for full contribution list + * Please see http://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_plugins/intel_dcm/extensions/intel_dcm/intel_dcm_lib.php b/pandora_plugins/intel_dcm/extensions/intel_dcm/intel_dcm_lib.php index b2e9add16b..a0f43733bc 100644 --- a/pandora_plugins/intel_dcm/extensions/intel_dcm/intel_dcm_lib.php +++ b/pandora_plugins/intel_dcm/extensions/intel_dcm/intel_dcm_lib.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_management.php b/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_management.php index 92936ab903..8c179876e4 100644 --- a/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_management.php +++ b/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_management.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_view.php b/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_view.php index 057f149561..64386d00ae 100644 --- a/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_view.php +++ b/pandora_plugins/intel_dcm/extensions/intel_dcm_agent_view.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ diff --git a/pandora_plugins/intel_dcm/extensions/intel_dcm_setup.php b/pandora_plugins/intel_dcm/extensions/intel_dcm_setup.php index cc449a7501..d54b38a24d 100644 --- a/pandora_plugins/intel_dcm/extensions/intel_dcm_setup.php +++ b/pandora_plugins/intel_dcm/extensions/intel_dcm_setup.php @@ -5,7 +5,7 @@ // |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| // // ============================================================================ -// Copyright (c) 2007-2023 Pandora FMS, http://www.artica.es +// Copyright (c) 2007-2023 Pandora FMS, http://www.pandorafms.com // This code is NOT free software. This code is NOT licenced under GPL2 licence // You cannnot redistribute it without written permission of copyright holder. // ============================================================================ From db62a91cb64b1ea39a7b3bae8ffb2a9ffddccaa9 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Thu, 8 Jun 2023 13:19:01 +0200 Subject: [PATCH 367/533] #11476 Fix https url --- pandora_console/ajax.php | 2 +- pandora_console/extensions/agents_alerts.php | 2 +- pandora_console/extensions/agents_modules.php | 2 +- pandora_console/extensions/api_checker.php | 2 +- pandora_console/extensions/db_status.php | 4 ++-- pandora_console/extensions/dbmanager.php | 4 ++-- pandora_console/extensions/disabled/matrix_events.php | 4 ++-- pandora_console/extensions/extension_uploader.php | 4 ++-- pandora_console/extensions/files_repo.php | 4 ++-- pandora_console/extensions/files_repo/files_repo_form.php | 4 ++-- .../extensions/files_repo/files_repo_get_file.php | 4 ++-- pandora_console/extensions/files_repo/files_repo_list.php | 4 ++-- .../extensions/files_repo/functions_files_repo.php | 4 ++-- pandora_console/extensions/insert_data.php | 2 +- pandora_console/extensions/matrix_events/ajax.php | 4 ++-- pandora_console/extensions/module_groups.php | 2 +- pandora_console/extensions/pandora_logs.php | 4 ++-- pandora_console/extensions/quick_shell.php | 2 +- pandora_console/extensions/realtime_graphs.php | 2 +- pandora_console/extensions/realtime_graphs/ajax.php | 4 ++-- pandora_console/extensions/resource_exportation.php | 2 +- pandora_console/extensions/resource_registration.php | 2 +- pandora_console/extensions/users_connected.php | 2 +- pandora_console/general/alert_enterprise.php | 4 ++-- pandora_console/general/error_screen.php | 4 ++-- pandora_console/general/first_task/cluster_builder.php | 4 ++-- pandora_console/general/first_task/collections.php | 4 ++-- pandora_console/general/first_task/custom_fields.php | 2 +- pandora_console/general/first_task/custom_graphs.php | 4 ++-- pandora_console/general/first_task/fields_manager.php | 4 ++-- pandora_console/general/first_task/incidents.php | 4 ++-- pandora_console/general/first_task/map_builder.php | 2 +- pandora_console/general/first_task/network_map.php | 4 ++-- pandora_console/general/first_task/planned_downtime.php | 2 +- pandora_console/general/first_task/recon_view.php | 4 ++-- pandora_console/general/first_task/service_list.php | 2 +- pandora_console/general/first_task/snmp_filters.php | 4 ++-- pandora_console/general/first_task/tags.php | 4 ++-- pandora_console/general/footer.php | 4 ++-- pandora_console/general/header.php | 4 ++-- pandora_console/general/help_feedback.php | 2 +- pandora_console/general/last_message.php | 4 ++-- pandora_console/general/links_menu.php | 4 ++-- pandora_console/general/login_help_dialog.php | 8 ++++---- pandora_console/general/login_page.php | 4 ++-- pandora_console/general/logoff.php | 4 ++-- pandora_console/general/logon_failed.php | 4 ++-- pandora_console/general/logon_ok.php | 2 +- pandora_console/general/main_menu.php | 2 +- pandora_console/general/maintenance.php | 2 +- pandora_console/general/news_dialog.php | 4 ++-- pandora_console/general/noaccess2.php | 4 ++-- pandora_console/general/node_deactivated.php | 2 +- pandora_console/general/pandora_help.php | 4 ++-- pandora_console/general/php_message.php | 4 ++-- pandora_console/general/register.php | 2 +- pandora_console/general/reporting_console_node.php | 2 +- pandora_console/general/sap_view.php | 2 +- pandora_console/general/ui/agents_list.php | 4 ++-- pandora_console/godmode/agentes/agent_conf_gis.php | 4 ++-- pandora_console/godmode/agentes/agent_deploy.php | 2 +- .../godmode/agentes/agent_disk_conf_editor.php | 2 +- pandora_console/godmode/agentes/agent_incidents.php | 4 ++-- pandora_console/godmode/agentes/agent_manager.php | 2 +- pandora_console/godmode/agentes/agent_template.php | 2 +- pandora_console/godmode/agentes/agent_wizard.php | 2 +- pandora_console/godmode/agentes/configurar_agente.php | 2 +- pandora_console/godmode/agentes/configure_field.php | 2 +- pandora_console/godmode/agentes/fields_manager.php | 2 +- pandora_console/godmode/agentes/modificar_agente.php | 2 +- pandora_console/godmode/agentes/module_manager.php | 2 +- pandora_console/godmode/agentes/module_manager_editor.php | 2 +- .../godmode/agentes/module_manager_editor_common.php | 2 +- .../godmode/agentes/module_manager_editor_data.php | 4 ++-- .../godmode/agentes/module_manager_editor_network.php | 2 +- .../godmode/agentes/module_manager_editor_plugin.php | 4 ++-- .../godmode/agentes/module_manager_editor_prediction.php | 2 +- .../godmode/agentes/module_manager_editor_web.php | 2 +- .../godmode/agentes/module_manager_editor_wmi.php | 4 ++-- .../godmode/agentes/pandora_networkmap_empty.editor.php | 2 +- .../godmode/agentes/planned_downtime.editor.php | 2 +- .../godmode/agentes/planned_downtime.export_csv.php | 4 ++-- pandora_console/godmode/agentes/planned_downtime.list.php | 2 +- .../godmode/agentes/status_monitor_custom_fields.php | 4 ++-- pandora_console/godmode/alerts/alert_actions.php | 2 +- pandora_console/godmode/alerts/alert_commands.php | 4 ++-- pandora_console/godmode/alerts/alert_list.builder.php | 4 ++-- pandora_console/godmode/alerts/alert_list.php | 4 ++-- pandora_console/godmode/alerts/alert_special_days.php | 2 +- pandora_console/godmode/alerts/alert_templates.php | 4 ++-- pandora_console/godmode/alerts/alert_view.php | 2 +- pandora_console/godmode/alerts/configure_alert_action.php | 4 ++-- .../godmode/alerts/configure_alert_command.php | 2 +- .../godmode/alerts/configure_alert_template.php | 2 +- pandora_console/godmode/audit_log.php | 2 +- pandora_console/godmode/category/category.php | 2 +- pandora_console/godmode/category/edit_category.php | 2 +- pandora_console/godmode/consoles/consoles.php | 2 +- pandora_console/godmode/db/db_main.php | 4 ++-- pandora_console/godmode/events/configuration_sounds.php | 2 +- pandora_console/godmode/events/custom_events.php | 4 ++-- pandora_console/godmode/events/event_edit_filter.php | 4 ++-- pandora_console/godmode/events/event_filter.php | 4 ++-- pandora_console/godmode/events/event_responses.editor.php | 2 +- pandora_console/godmode/events/event_responses.list.php | 2 +- pandora_console/godmode/events/event_responses.php | 2 +- pandora_console/godmode/events/events.php | 2 +- pandora_console/godmode/extensions.php | 4 ++-- pandora_console/godmode/gis_maps/configure_gis_map.php | 4 ++-- pandora_console/godmode/groups/configure_group.php | 2 +- pandora_console/godmode/groups/configure_modu_group.php | 4 ++-- pandora_console/godmode/groups/credential_store.php | 2 +- pandora_console/godmode/groups/group_list.php | 2 +- pandora_console/godmode/groups/modu_group_list.php | 2 +- pandora_console/godmode/groups/tactical.php | 2 +- .../godmode/massive/massive_add_action_alerts.php | 2 +- pandora_console/godmode/massive/massive_add_alerts.php | 2 +- pandora_console/godmode/massive/massive_add_profiles.php | 2 +- pandora_console/godmode/massive/massive_copy_modules.php | 2 +- .../godmode/massive/massive_delete_action_alerts.php | 2 +- pandora_console/godmode/massive/massive_delete_agents.php | 2 +- pandora_console/godmode/massive/massive_delete_alerts.php | 2 +- .../godmode/massive/massive_delete_modules.php | 2 +- .../godmode/massive/massive_delete_profiles.php | 2 +- pandora_console/godmode/massive/massive_edit_agents.php | 2 +- pandora_console/godmode/massive/massive_edit_modules.php | 2 +- pandora_console/godmode/massive/massive_edit_plugins.php | 2 +- pandora_console/godmode/massive/massive_edit_users.php | 2 +- .../godmode/massive/massive_enable_disable_alerts.php | 2 +- pandora_console/godmode/massive/massive_operations.php | 2 +- .../godmode/massive/massive_standby_alerts.php | 2 +- pandora_console/godmode/menu.php | 2 +- .../godmode/module_library/module_library_view.php | 2 +- .../godmode/modules/configuration_wizard_setup.php | 4 ++-- .../godmode/modules/manage_module_templates.php | 2 +- pandora_console/godmode/modules/manage_nc_groups.php | 2 +- pandora_console/godmode/modules/manage_nc_groups_form.php | 2 +- .../godmode/modules/manage_network_components.php | 2 +- .../godmode/modules/manage_network_components_form.php | 2 +- .../modules/manage_network_components_form_common.php | 4 ++-- .../modules/manage_network_components_form_network.php | 2 +- .../modules/manage_network_components_form_plugin.php | 2 +- .../modules/manage_network_components_form_wizard.php | 4 ++-- .../modules/manage_network_components_form_wmi.php | 4 ++-- .../godmode/modules/manage_network_templates.php | 4 ++-- .../godmode/modules/manage_network_templates_form.php | 4 ++-- pandora_console/godmode/modules/module_list.php | 2 +- .../godmode/modules/private_enterprise_numbers.php | 2 +- pandora_console/godmode/netflow/nf_edit.php | 2 +- pandora_console/godmode/netflow/nf_edit_form.php | 6 +++--- pandora_console/godmode/netflow/nf_item_list.php | 4 ++-- pandora_console/godmode/reporting/create_container.php | 4 ++-- .../godmode/reporting/graph_builder.graph_editor.php | 4 ++-- pandora_console/godmode/reporting/graph_builder.main.php | 2 +- pandora_console/godmode/reporting/graph_builder.php | 2 +- pandora_console/godmode/reporting/graph_container.php | 2 +- pandora_console/godmode/reporting/graphs.php | 2 +- pandora_console/godmode/reporting/map_builder.php | 2 +- .../godmode/reporting/reporting_builder.item_editor.php | 2 +- .../godmode/reporting/reporting_builder.list_items.php | 2 +- pandora_console/godmode/reporting/reporting_builder.php | 2 +- .../godmode/reporting/visual_console_builder.data.php | 2 +- .../godmode/reporting/visual_console_builder.editor.php | 2 +- .../godmode/reporting/visual_console_builder.elements.php | 2 +- .../godmode/reporting/visual_console_builder.php | 2 +- .../godmode/reporting/visual_console_builder.wizard.php | 2 +- .../godmode/reporting/visual_console_favorite.php | 2 +- pandora_console/godmode/servers/manage_recontask.php | 2 +- pandora_console/godmode/servers/manage_recontask_form.php | 2 +- pandora_console/godmode/servers/modificar_server.php | 2 +- pandora_console/godmode/servers/plugin.php | 2 +- pandora_console/godmode/servers/plugin_registration.php | 2 +- pandora_console/godmode/servers/recon_script.php | 2 +- pandora_console/godmode/servers/servers.build_table.php | 2 +- pandora_console/godmode/setup/file_manager.php | 2 +- pandora_console/godmode/setup/gis.php | 2 +- pandora_console/godmode/setup/gis_step_2.php | 2 +- pandora_console/godmode/setup/license.php | 2 +- pandora_console/godmode/setup/links.php | 4 ++-- pandora_console/godmode/setup/news.php | 4 ++-- pandora_console/godmode/setup/os.builder.php | 2 +- pandora_console/godmode/setup/os.list.php | 2 +- pandora_console/godmode/setup/os.php | 2 +- pandora_console/godmode/setup/performance.php | 2 +- pandora_console/godmode/setup/setup.php | 2 +- pandora_console/godmode/setup/setup_ehorus.php | 2 +- pandora_console/godmode/setup/setup_external_tools.php | 2 +- pandora_console/godmode/setup/setup_general.php | 2 +- pandora_console/godmode/setup/setup_integria.php | 2 +- pandora_console/godmode/setup/setup_netflow.php | 2 +- pandora_console/godmode/setup/setup_notifications.php | 2 +- pandora_console/godmode/setup/setup_sflow.php | 2 +- pandora_console/godmode/setup/setup_visuals.php | 2 +- pandora_console/godmode/setup/setup_websocket_engine.php | 2 +- pandora_console/godmode/setup/snmp_wizard.php | 4 ++-- pandora_console/godmode/setup/welcome_tips.php | 2 +- pandora_console/godmode/snmpconsole/snmp_alert.php | 2 +- pandora_console/godmode/snmpconsole/snmp_filters.php | 4 ++-- .../godmode/snmpconsole/snmp_trap_generator.php | 4 ++-- pandora_console/godmode/tag/edit_tag.php | 4 ++-- pandora_console/godmode/tag/tag.php | 2 +- pandora_console/godmode/um_client/api.php | 2 +- pandora_console/godmode/um_client/index.php | 2 +- .../godmode/update_manager/update_manager.history.php | 2 +- pandora_console/godmode/update_manager/update_manager.php | 2 +- .../godmode/update_manager/update_manager.setup.php | 2 +- pandora_console/godmode/users/configure_profile.php | 4 ++-- pandora_console/godmode/users/configure_user.php | 2 +- pandora_console/godmode/users/profile_list.php | 2 +- pandora_console/godmode/users/user_list.php | 2 +- pandora_console/godmode/users/user_management.php | 2 +- .../godmode/wizards/DiscoveryTaskList.class.php | 2 +- pandora_console/godmode/wizards/HostDevices.class.php | 2 +- pandora_console/godmode/wizards/Wizard.main.php | 2 +- pandora_console/include/Image/image_functions.php | 4 ++-- pandora_console/include/ajax/agent.php | 4 ++-- pandora_console/include/ajax/audit_log.php | 2 +- pandora_console/include/ajax/custom_fields.php | 2 +- pandora_console/include/ajax/double_auth.ajax.php | 2 +- pandora_console/include/ajax/events.php | 2 +- pandora_console/include/ajax/events_extended.php | 2 +- pandora_console/include/ajax/fav_menu.ajax.php | 2 +- pandora_console/include/ajax/graph.ajax.php | 4 ++-- pandora_console/include/ajax/group.php | 2 +- pandora_console/include/ajax/heatmap.ajax.php | 2 +- pandora_console/include/ajax/integria_incidents.ajax.php | 2 +- pandora_console/include/ajax/menu.ajax.php | 4 ++-- pandora_console/include/ajax/module.php | 2 +- pandora_console/include/ajax/order_interpreter.php | 2 +- pandora_console/include/ajax/planned_downtime.ajax.php | 4 ++-- pandora_console/include/ajax/profile.php | 4 ++-- pandora_console/include/ajax/reporting.ajax.php | 4 ++-- pandora_console/include/ajax/skins.ajax.php | 4 ++-- pandora_console/include/ajax/snmp.ajax.php | 4 ++-- pandora_console/include/ajax/snmp_browser.ajax.php | 4 ++-- pandora_console/include/ajax/task_list.ajax.php | 2 +- pandora_console/include/ajax/tips_window.ajax.php | 2 +- pandora_console/include/ajax/tree.ajax.php | 2 +- pandora_console/include/ajax/update_manager.php | 2 +- pandora_console/include/ajax/visual_console.ajax.php | 4 ++-- .../include/ajax/visual_console_builder.ajax.php | 4 ++-- pandora_console/include/ajax/web_server_module_debug.php | 2 +- pandora_console/include/ajax/welcome_window.php | 2 +- pandora_console/include/api.php | 2 +- pandora_console/include/auth/ldap.php | 4 ++-- pandora_console/include/auth/mysql.php | 2 +- pandora_console/include/chart_generator.php | 2 +- pandora_console/include/class/AgentDeployWizard.class.php | 2 +- pandora_console/include/class/AgentWizard.class.php | 2 +- pandora_console/include/class/AgentsAlerts.class.php | 2 +- pandora_console/include/class/AuditLog.class.php | 2 +- pandora_console/include/class/CalendarManager.class.php | 2 +- pandora_console/include/class/ConfigPEN.class.php | 2 +- pandora_console/include/class/ConsoleSupervisor.php | 2 +- pandora_console/include/class/CredentialStore.class.php | 2 +- pandora_console/include/class/CustomNetScan.class.php | 2 +- pandora_console/include/class/Diagnostics.class.php | 2 +- pandora_console/include/class/EventSound.class.php | 2 +- pandora_console/include/class/ExternalTools.class.php | 2 +- pandora_console/include/class/HTML.class.php | 2 +- pandora_console/include/class/Heatmap.class.php | 2 +- pandora_console/include/class/HelpFeedBack.class.php | 2 +- .../include/class/ManageNetScanScripts.class.php | 2 +- pandora_console/include/class/ModuleTemplates.class.php | 2 +- pandora_console/include/class/NetworkMap.class.php | 2 +- pandora_console/include/class/OrderInterpreter.class.php | 2 +- pandora_console/include/class/SatelliteAgent.class.php | 2 +- .../include/class/SatelliteCollection.class.php | 2 +- pandora_console/include/class/SnmpConsole.class.php | 2 +- pandora_console/include/class/TipsWindow.class.php | 2 +- pandora_console/include/class/Tree.class.php | 2 +- pandora_console/include/class/TreeGroup.class.php | 2 +- pandora_console/include/class/TreeGroupEdition.class.php | 2 +- pandora_console/include/class/TreeModule.class.php | 4 ++-- pandora_console/include/class/TreeModuleGroup.class.php | 4 ++-- pandora_console/include/class/TreeOS.class.php | 4 ++-- pandora_console/include/class/TreeService.class.php | 2 +- pandora_console/include/class/TreeTag.class.php | 4 ++-- .../include/class/WebServerModuleDebug.class.php | 2 +- pandora_console/include/class/WelcomeWindow.class.php | 2 +- pandora_console/include/config.inc.php | 2 +- pandora_console/include/config_process.php | 4 ++-- pandora_console/include/connection_check.php | 4 ++-- pandora_console/include/constants.php | 2 +- pandora_console/include/db/mysql.php | 4 ++-- pandora_console/include/db/oracle.php | 4 ++-- pandora_console/include/db/postgresql.php | 4 ++-- pandora_console/include/functions.php | 4 ++-- pandora_console/include/functions_agents.php | 2 +- pandora_console/include/functions_alerts.php | 4 ++-- pandora_console/include/functions_api.php | 2 +- pandora_console/include/functions_categories.php | 4 ++-- pandora_console/include/functions_clippy.php | 4 ++-- pandora_console/include/functions_component_groups.php | 4 ++-- pandora_console/include/functions_config.php | 2 +- pandora_console/include/functions_container.php | 4 ++-- pandora_console/include/functions_credential_store.php | 2 +- pandora_console/include/functions_cron.php | 2 +- pandora_console/include/functions_custom_fields.php | 2 +- pandora_console/include/functions_custom_graphs.php | 4 ++-- pandora_console/include/functions_db.php | 4 ++-- pandora_console/include/functions_event_responses.php | 4 ++-- pandora_console/include/functions_events.php | 2 +- pandora_console/include/functions_exportserver.php | 4 ++-- pandora_console/include/functions_extensions.php | 4 ++-- pandora_console/include/functions_filemanager.php | 2 +- pandora_console/include/functions_forecast.php | 4 ++-- pandora_console/include/functions_gis.php | 4 ++-- pandora_console/include/functions_graph.php | 2 +- pandora_console/include/functions_groups.php | 4 ++-- pandora_console/include/functions_groupview.php | 4 ++-- pandora_console/include/functions_html.php | 4 ++-- pandora_console/include/functions_incidents.php | 4 ++-- pandora_console/include/functions_integriaims.php | 4 ++-- pandora_console/include/functions_inventory.php | 2 +- pandora_console/include/functions_io.php | 4 ++-- pandora_console/include/functions_maps.php | 4 ++-- pandora_console/include/functions_massive_operations.php | 2 +- pandora_console/include/functions_menu.php | 2 +- pandora_console/include/functions_messages.php | 2 +- pandora_console/include/functions_migration.php | 4 ++-- pandora_console/include/functions_modules.php | 2 +- pandora_console/include/functions_netflow.php | 4 ++-- pandora_console/include/functions_network.php | 4 ++-- pandora_console/include/functions_network_components.php | 4 ++-- pandora_console/include/functions_network_profiles.php | 4 ++-- pandora_console/include/functions_networkmap.php | 2 +- pandora_console/include/functions_networkmaps.php | 2 +- pandora_console/include/functions_notifications.php | 2 +- pandora_console/include/functions_os.php | 4 ++-- pandora_console/include/functions_pandora_networkmap.php | 2 +- pandora_console/include/functions_planned_downtimes.php | 4 ++-- pandora_console/include/functions_plugins.php | 2 +- pandora_console/include/functions_post_process.php | 4 ++-- pandora_console/include/functions_profile.php | 4 ++-- pandora_console/include/functions_register.php | 2 +- pandora_console/include/functions_reporting.php | 2 +- pandora_console/include/functions_reporting_html.php | 2 +- pandora_console/include/functions_reporting_xml.php | 4 ++-- pandora_console/include/functions_reports.php | 4 ++-- pandora_console/include/functions_servers.php | 2 +- pandora_console/include/functions_snmp.php | 4 ++-- pandora_console/include/functions_snmp_browser.php | 2 +- pandora_console/include/functions_tactical.php | 2 +- pandora_console/include/functions_tags.php | 4 ++-- pandora_console/include/functions_themes.php | 4 ++-- pandora_console/include/functions_treeview.php | 4 ++-- pandora_console/include/functions_ui.php | 2 +- pandora_console/include/functions_ui_renders.php | 4 ++-- pandora_console/include/functions_update_manager.php | 2 +- pandora_console/include/functions_users.php | 4 ++-- pandora_console/include/functions_visual_map.php | 4 ++-- pandora_console/include/functions_visual_map_editor.php | 4 ++-- pandora_console/include/functions_wmi.php | 4 ++-- pandora_console/include/get_file.php | 2 +- pandora_console/include/graphs/export_data.php | 2 +- pandora_console/include/graphs/functions_d3.php | 4 ++-- .../include/help/clippy/agent_out_of_limits.php | 4 ++-- .../include/help/clippy/data_configuration_module.php | 4 ++-- .../include/help/clippy/extension_cron_send_email.php | 4 ++-- .../help/clippy/godmode_agentes_configurar_agente.php | 4 ++-- .../help/clippy/godmode_agentes_modificar_agente.php | 4 ++-- .../include/help/clippy/godmode_alerts_alert_actions.php | 4 ++-- .../help/clippy/godmode_alerts_configure_alert_action.php | 4 ++-- pandora_console/include/help/clippy/homepage.php | 4 ++-- .../include/help/clippy/interval_agent_min.php | 4 ++-- pandora_console/include/help/clippy/module_unknow.php | 4 ++-- pandora_console/include/help/clippy/modules_not_init.php | 4 ++-- .../include/help/clippy/modules_not_learning_mode.php | 2 +- .../help/clippy/operation_agentes_status_monitor.php | 4 ++-- .../include/help/clippy/operation_agentes_ver_agente.php | 4 ++-- .../include/help/clippy/server_queued_modules.php | 4 ++-- pandora_console/include/help/clippy/servers_down.php | 4 ++-- pandora_console/include/help/clippy/topology_group.php | 4 ++-- pandora_console/include/include_graph_dependencies.php | 4 ++-- pandora_console/include/lib/Agent.php | 2 +- pandora_console/include/lib/Calendar.php | 2 +- pandora_console/include/lib/Cluster.php | 2 +- pandora_console/include/lib/ClusterModule.php | 2 +- .../include/lib/ClusterViewer/ClusterManager.php | 2 +- .../include/lib/ClusterViewer/ClusterWizard.php | 2 +- pandora_console/include/lib/Console.php | 2 +- pandora_console/include/lib/Core/Config.php | 2 +- pandora_console/include/lib/Core/DBMaintainer.php | 2 +- .../include/lib/Dashboard/Widgets/AvgSumMaxMinModule.php | 2 +- .../include/lib/Dashboard/Widgets/BasicChart.php | 2 +- .../include/lib/Dashboard/Widgets/BlockHistogram.php | 2 +- .../include/lib/Dashboard/Widgets/ColorModuleTabs.php | 2 +- .../include/lib/Dashboard/Widgets/DataMatrix.php | 2 +- .../include/lib/Dashboard/Widgets/EventCardboard.php | 2 +- .../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php | 2 +- .../include/lib/Dashboard/Widgets/ModulesByStatus.php | 2 +- .../include/lib/Dashboard/Widgets/agent_module.php | 2 +- .../include/lib/Dashboard/Widgets/alerts_fired.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/clock.php | 2 +- .../include/lib/Dashboard/Widgets/custom_graph.php | 2 +- .../include/lib/Dashboard/Widgets/events_list.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/example.php | 2 +- .../lib/Dashboard/Widgets/graph_module_histogram.php | 2 +- .../include/lib/Dashboard/Widgets/groups_status.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/heatmap.php | 2 +- .../include/lib/Dashboard/Widgets/maps_made_by_user.php | 2 +- .../include/lib/Dashboard/Widgets/maps_status.php | 2 +- .../include/lib/Dashboard/Widgets/module_icon.php | 2 +- .../include/lib/Dashboard/Widgets/module_status.php | 2 +- .../include/lib/Dashboard/Widgets/module_table_value.php | 2 +- .../include/lib/Dashboard/Widgets/module_value.php | 2 +- .../include/lib/Dashboard/Widgets/monitor_health.php | 2 +- .../include/lib/Dashboard/Widgets/network_map.php | 2 +- .../include/lib/Dashboard/Widgets/os_quick_report.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/post.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/reports.php | 2 +- .../include/lib/Dashboard/Widgets/service_map.php | 2 +- .../include/lib/Dashboard/Widgets/service_view.php | 2 +- .../include/lib/Dashboard/Widgets/single_graph.php | 2 +- .../include/lib/Dashboard/Widgets/sla_percent.php | 2 +- .../include/lib/Dashboard/Widgets/system_group_status.php | 2 +- .../include/lib/Dashboard/Widgets/tactical.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/top_n.php | 2 +- .../lib/Dashboard/Widgets/top_n_events_by_group.php | 2 +- .../lib/Dashboard/Widgets/top_n_events_by_module.php | 2 +- .../include/lib/Dashboard/Widgets/tree_view.php | 2 +- pandora_console/include/lib/Dashboard/Widgets/url.php | 2 +- .../include/lib/Dashboard/Widgets/wux_transaction.php | 2 +- .../lib/Dashboard/Widgets/wux_transaction_stats.php | 2 +- pandora_console/include/lib/Entity.php | 2 +- pandora_console/include/lib/Event.php | 2 +- pandora_console/include/lib/Group.php | 2 +- pandora_console/include/lib/Module.php | 2 +- pandora_console/include/lib/ModuleStatus.php | 2 +- pandora_console/include/lib/ModuleType.php | 2 +- pandora_console/include/lib/PublicLogin.php | 2 +- pandora_console/include/lib/SpecialDay.php | 2 +- pandora_console/include/lib/Tools/Files.php | 2 +- pandora_console/include/lib/Tools/Strings.php | 2 +- pandora_console/include/lib/User.php | 2 +- pandora_console/include/lib/View.php | 2 +- pandora_console/include/load_session.php | 2 +- pandora_console/include/php_to_js_values.php | 4 ++-- .../include/rest-api/models/VisualConsole/View.php | 2 +- pandora_console/include/websocket_registrations.php | 2 +- pandora_console/index.php | 2 +- pandora_console/install.php | 6 +++--- pandora_console/mobile/include/db.class.php | 4 ++-- pandora_console/mobile/include/functions_web.php | 4 ++-- pandora_console/mobile/include/system.class.php | 4 ++-- pandora_console/mobile/include/ui.class.php | 4 ++-- pandora_console/mobile/include/user.class.php | 4 ++-- pandora_console/mobile/index.php | 4 ++-- pandora_console/mobile/operation/agent.php | 2 +- pandora_console/mobile/operation/agents.php | 2 +- pandora_console/mobile/operation/alerts.php | 2 +- pandora_console/mobile/operation/events.php | 2 +- pandora_console/mobile/operation/groups.php | 4 ++-- pandora_console/mobile/operation/home.php | 4 ++-- pandora_console/mobile/operation/module_data.php | 2 +- pandora_console/mobile/operation/module_graph.php | 4 ++-- pandora_console/mobile/operation/modules.php | 2 +- pandora_console/mobile/operation/server_status.php | 2 +- pandora_console/mobile/operation/services.php | 4 ++-- pandora_console/mobile/operation/tactical.php | 4 ++-- pandora_console/mobile/operation/visualmap.php | 2 +- pandora_console/mobile/operation/visualmaps.php | 2 +- pandora_console/operation/agentes/agent_fields.php | 4 ++-- pandora_console/operation/agentes/agent_inventory.php | 2 +- .../operation/agentes/alerts_status.functions.php | 2 +- pandora_console/operation/agentes/alerts_status.php | 2 +- pandora_console/operation/agentes/custom_fields.php | 4 ++-- pandora_console/operation/agentes/datos_agente.php | 4 ++-- pandora_console/operation/agentes/ehorus.php | 2 +- pandora_console/operation/agentes/ehorus_client.php | 4 ++-- pandora_console/operation/agentes/estado_agente.php | 2 +- .../operation/agentes/estado_generalagente.php | 2 +- pandora_console/operation/agentes/estado_monitores.php | 2 +- pandora_console/operation/agentes/export_csv.php | 4 ++-- pandora_console/operation/agentes/exportdata.csv.php | 4 ++-- pandora_console/operation/agentes/exportdata.excel.php | 4 ++-- pandora_console/operation/agentes/exportdata.php | 2 +- pandora_console/operation/agentes/external_tools.php | 2 +- pandora_console/operation/agentes/gis_view.php | 2 +- pandora_console/operation/agentes/graphs.php | 2 +- pandora_console/operation/agentes/group_view.php | 2 +- .../operation/agentes/interface_traffic_graph_win.php | 2 +- .../operation/agentes/interface_view.functions.php | 4 ++-- pandora_console/operation/agentes/interface_view.php | 2 +- pandora_console/operation/agentes/log_sources_status.php | 4 ++-- pandora_console/operation/agentes/networkmap.dinamic.php | 4 ++-- .../operation/agentes/pandora_networkmap.editor.php | 2 +- pandora_console/operation/agentes/pandora_networkmap.php | 2 +- .../operation/agentes/pandora_networkmap.view.php | 2 +- pandora_console/operation/agentes/realtime_win.php | 2 +- pandora_console/operation/agentes/snapshot_view.php | 4 ++-- pandora_console/operation/agentes/stat_win.php | 2 +- pandora_console/operation/agentes/status_events.php | 4 ++-- pandora_console/operation/agentes/status_monitor.php | 2 +- pandora_console/operation/agentes/tactical.php | 2 +- pandora_console/operation/agentes/url_address.php | 4 ++-- pandora_console/operation/agentes/ver_agente.php | 2 +- pandora_console/operation/cluster/cluster.php | 2 +- pandora_console/operation/dashboard/dashboard.php | 2 +- pandora_console/operation/dashboard/public_dashboard.php | 2 +- pandora_console/operation/events/events.build_query.php | 4 ++-- pandora_console/operation/events/events.php | 2 +- pandora_console/operation/events/events_rss.php | 2 +- pandora_console/operation/events/export_csv.php | 2 +- pandora_console/operation/events/sound_events.php | 2 +- pandora_console/operation/gis_maps/ajax.php | 4 ++-- pandora_console/operation/gis_maps/gis_map.php | 2 +- pandora_console/operation/gis_maps/public_console.php | 4 ++-- pandora_console/operation/gis_maps/render_view.php | 4 ++-- pandora_console/operation/heatmap.php | 2 +- .../incidents/configure_integriaims_incident.php | 4 ++-- .../incidents/dashboard_detail_integriaims_incident.php | 4 ++-- .../operation/incidents/incident_statistics.php | 4 ++-- .../operation/incidents/integriaims_export_csv.php | 4 ++-- .../operation/incidents/list_integriaims_incidents.php | 4 ++-- pandora_console/operation/inventory/inventory.php | 2 +- pandora_console/operation/menu.php | 2 +- pandora_console/operation/messages/message_edit.php | 2 +- pandora_console/operation/messages/message_list.php | 2 +- pandora_console/operation/netflow/netflow_explorer.php | 2 +- pandora_console/operation/netflow/nf_live_view.php | 2 +- pandora_console/operation/network/network_report.php | 2 +- pandora_console/operation/network/network_usage_map.php | 2 +- pandora_console/operation/reporting/custom_reporting.php | 4 ++-- pandora_console/operation/reporting/graph_viewer.php | 2 +- pandora_console/operation/reporting/reporting_viewer.php | 4 ++-- pandora_console/operation/reporting/reporting_xml.php | 4 ++-- pandora_console/operation/search_agents.getdata.php | 4 ++-- pandora_console/operation/search_agents.php | 4 ++-- pandora_console/operation/search_alerts.getdata.php | 4 ++-- pandora_console/operation/search_alerts.php | 4 ++-- pandora_console/operation/search_graphs.getdata.php | 4 ++-- pandora_console/operation/search_graphs.php | 4 ++-- pandora_console/operation/search_helps.getdata.php | 4 ++-- pandora_console/operation/search_helps.php | 4 ++-- pandora_console/operation/search_main.php | 4 ++-- pandora_console/operation/search_maps.getdata.php | 4 ++-- pandora_console/operation/search_maps.php | 4 ++-- pandora_console/operation/search_modules.getdata.php | 4 ++-- pandora_console/operation/search_modules.php | 4 ++-- pandora_console/operation/search_policies.getdata.php | 2 +- pandora_console/operation/search_policies.php | 4 ++-- pandora_console/operation/search_reports.getdata.php | 4 ++-- pandora_console/operation/search_reports.php | 4 ++-- pandora_console/operation/search_results.php | 4 ++-- pandora_console/operation/search_users.getdata.php | 4 ++-- pandora_console/operation/search_users.php | 4 ++-- pandora_console/operation/snmpconsole/snmp_browser.php | 2 +- .../operation/snmpconsole/snmp_mib_uploader.php | 2 +- pandora_console/operation/snmpconsole/snmp_statistics.php | 4 ++-- pandora_console/operation/snmpconsole/snmp_view.php | 2 +- pandora_console/operation/tree.php | 2 +- pandora_console/operation/users/user_edit.php | 2 +- pandora_console/operation/users/user_edit_header.php | 2 +- .../operation/users/user_edit_notifications.php | 2 +- .../operation/visual_console/legacy_public_view.php | 4 ++-- pandora_console/operation/visual_console/legacy_view.php | 4 ++-- .../operation/visual_console/public_console.php | 4 ++-- pandora_console/operation/visual_console/public_view.php | 4 ++-- pandora_console/operation/visual_console/render_view.php | 4 ++-- pandora_console/operation/visual_console/view.php | 2 +- pandora_console/tools/diagnostics.php | 2 +- pandora_console/update_manager_client/api.php | 2 +- .../lib/UpdateManager/API/Server.php | 2 +- .../update_manager_client/lib/UpdateManager/Client.php | 2 +- .../lib/UpdateManager/UI/Manager.php | 2 +- .../update_manager_client/lib/UpdateManager/UI/View.php | 2 +- pandora_console/update_manager_client/views/offline.php | 2 +- pandora_console/update_manager_client/views/online.php | 2 +- pandora_console/update_manager_client/views/register.php | 2 +- pandora_console/views/calendar/edit.php | 2 +- pandora_console/views/calendar/list.php | 2 +- pandora_console/views/calendar/special_days.php | 2 +- pandora_console/views/calendar/special_days_edit.php | 2 +- pandora_console/views/cluster/edit.php | 2 +- pandora_console/views/cluster/list.php | 2 +- pandora_console/views/cluster/view.php | 2 +- pandora_console/views/consoles/list.php | 2 +- pandora_console/views/dashboard/cell.php | 2 +- pandora_console/views/dashboard/configurationWidgets.php | 2 +- pandora_console/views/dashboard/formDashboard.php | 2 +- pandora_console/views/dashboard/formSlides.php | 2 +- pandora_console/views/dashboard/header.php | 2 +- pandora_console/views/dashboard/jsLayout.php | 2 +- pandora_console/views/dashboard/layout.php | 2 +- pandora_console/views/dashboard/list.php | 2 +- pandora_console/views/dashboard/listWidgets.php | 2 +- pandora_console/views/dashboard/slides.php | 2 +- pandora_console/views/dashboard/slidesWidget.php | 2 +- pandora_console/views/dashboard/tipsWindow.php | 2 +- pandora_console/views/dashboard/widget.php | 2 +- pandora_console/ws.php | 2 +- 593 files changed, 812 insertions(+), 812 deletions(-) diff --git a/pandora_console/ajax.php b/pandora_console/ajax.php index b6d58a7292..b3b9463ee6 100644 --- a/pandora_console/ajax.php +++ b/pandora_console/ajax.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.com/community/ for full contribution list + * Please see https://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/agents_alerts.php b/pandora_console/extensions/agents_alerts.php index 7351b59a3e..03b785fd2c 100755 --- a/pandora_console/extensions/agents_alerts.php +++ b/pandora_console/extensions/agents_alerts.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.com/community/ for full contribution list + * Please see https://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/agents_modules.php b/pandora_console/extensions/agents_modules.php index 008e5884e8..215e478319 100644 --- a/pandora_console/extensions/agents_modules.php +++ b/pandora_console/extensions/agents_modules.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.com/community/ for full contribution list + * Please see https://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index c0ee5853d8..98a988d487 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -15,7 +15,7 @@ * * ============================================================================ * Copyright (c) 2005-2023 Pandora FMS - * Please see http://pandorafms.com/community/ for full contribution list + * Please see https://pandorafms.com/community/ for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation for version 2. diff --git a/pandora_console/extensions/db_status.php b/pandora_console/extensions/db_status.php index 5bdf9644b6..456e97be54 100755 --- a/pandora_console/extensions/db_status.php +++ b/pandora_console/extensions/db_status.php @@ -1,9 +1,9 @@ '.__('The Update Manager client is included on %s. It helps system administrators update their %s automatically, since the Update Manager retrieves new modules, new plugins and new features (even full migrations tools for future versions) automatically.', get_product_name(), get_product_name()).'

'.'

'.__('OpenSource version updates are automated packages generated each week. These updates come WITHOUT ANY warranty or support. If your system is corrupted or a feature stops working properly, you will need to recover a backup by yourself.').'

'.'

'.__('The Enterprise version comes with a different update system, with fully tested, professionally-supported packages, and our support team is there to help you in case of problems or queries. Update Manager is another feature present in the Enterprise version and not included in the OpenSource version. There are lots of advanced business-oriented features contained in %s Enterprise Edition. For more information visit pandorafms.com', get_product_name()).'

'; + echo '

'.__('The Update Manager client is included on %s. It helps system administrators update their %s automatically, since the Update Manager retrieves new modules, new plugins and new features (even full migrations tools for future versions) automatically.', get_product_name(), get_product_name()).'

'.'

'.__('OpenSource version updates are automated packages generated each week. These updates come WITHOUT ANY warranty or support. If your system is corrupted or a feature stops working properly, you will need to recover a backup by yourself.').'

'.'

'.__('The Enterprise version comes with a different update system, with fully tested, professionally-supported packages, and our support team is there to help you in case of problems or queries. Update Manager is another feature present in the Enterprise version and not included in the OpenSource version. There are lots of advanced business-oriented features contained in %s Enterprise Edition. For more information visit pandorafms.com', get_product_name()).'

'; } else { - echo '

'.__('The new Update Manager client is included on %s. It helps system administrators update their %s automatically, since the Update Manager retrieves new modules, new plugins and new features (even full migrations tools for future versions) automatically.', get_product_name(), get_product_name()).'

'.'

'.__('The Update Manager is one of the most advanced features on the %s Enterprise Edition. For more information visit http://pandorafms.com.', get_product_name()).'

'.'

'.__('Update Manager sends anonymous information about %s usage (number of agents and modules running). To disable it, please remove the remote server address from the Update Manager plugin setup.', get_product_name()).'

'; + echo '

'.__('The new Update Manager client is included on %s. It helps system administrators update their %s automatically, since the Update Manager retrieves new modules, new plugins and new features (even full migrations tools for future versions) automatically.', get_product_name(), get_product_name()).'

'.'

'.__('The Update Manager is one of the most advanced features on the %s Enterprise Edition. For more information visit https://pandorafms.com.', get_product_name()).'

'.'

'.__('Update Manager sends anonymous information about %s usage (number of agents and modules running). To disable it, please remove the remote server address from the Update Manager plugin setup.', get_product_name()).'

'; } break; diff --git a/pandora_console/general/error_screen.php b/pandora_console/general/error_screen.php index 48a52f1131..b9ccfc0fc6 100644 --- a/pandora_console/general/error_screen.php +++ b/pandora_console/general/error_screen.php @@ -1,9 +1,9 @@ '; echo ''; - echo ''.html_print_image( + echo ''.html_print_image( 'images/enterprise_version.png', true, [ @@ -72,7 +72,7 @@ echo '
'; - echo ''.__('Enterprise version').''; + echo ''.__('Enterprise version').''; echo ''; echo ''; diff --git a/pandora_console/general/login_page.php b/pandora_console/general/login_page.php index e424a013e8..d3d9c7e686 100755 --- a/pandora_console/general/login_page.php +++ b/pandora_console/general/login_page.php @@ -1,9 +1,9 @@ 'Pandora FMS Enterprise', - 'message' => "

This feature is not included on the Open Source version. Please visit our website to learn more about the advanced features of Pandora FMS Enterprise edition

", + 'message' => "

This feature is not included on the Open Source version. Please visit our website to learn more about the advanced features of Pandora FMS Enterprise edition

", 'no_close' => 1, ]; diff --git a/pandora_console/godmode/agentes/agent_incidents.php b/pandora_console/godmode/agentes/agent_incidents.php index ed9e8dc6bf..ba43f1799c 100644 --- a/pandora_console/godmode/agentes/agent_incidents.php +++ b/pandora_console/godmode/agentes/agent_incidents.php @@ -1,9 +1,9 @@

GPL2 Licence terms agreement

Pandora FMS is an OpenSource software project licensed under the GPL2 licence. Pandora FMS includes, as well, another software also licensed under LGPL and BSD licenses. Before continue, you must accept the licence terms.. -

For more information, please refer to our website at http://pandorafms.com/community/ and contact us if you have any kind of question about the usage of Pandora FMS

+

For more information, please refer to our website at https://pandorafms.com/community/ and contact us if you have any kind of question about the usage of Pandora FMS

If you dont accept the licence terms, please, close your browser and delete Pandora FMS files.

"; @@ -1325,7 +1325,7 @@ function install_step5() please read documentation on how to install it.

Default user is 'admin' with password 'pandora', please change it both as soon as possible.

-

Don't forget to check http://pandorafms.com +

Don't forget to check https://pandorafms.com for updates.

Select if you want to rename 'install.php'.

diff --git a/pandora_console/mobile/include/db.class.php b/pandora_console/mobile/include/db.class.php index 3640417be5..2584532d81 100644 --- a/pandora_console/mobile/include/db.class.php +++ b/pandora_console/mobile/include/db.class.php @@ -1,8 +1,8 @@ Date: Thu, 8 Jun 2023 13:54:05 +0200 Subject: [PATCH 368/533] #11093 grid position recolocation after drag --- pandora_console/extras/mr/65.sql | 8 ++++++-- .../include/javascript/pandora_visual_console.js | 14 ++++++++++++++ .../rest-api/models/VisualConsole/Container.php | 4 ++-- pandora_console/operation/visual_console/view.php | 4 ++-- pandora_console/pandoradb.sql | 4 +++- 5 files changed, 27 insertions(+), 7 deletions(-) diff --git a/pandora_console/extras/mr/65.sql b/pandora_console/extras/mr/65.sql index fa4315564f..f77fda4ac3 100644 --- a/pandora_console/extras/mr/65.sql +++ b/pandora_console/extras/mr/65.sql @@ -1,7 +1,11 @@ START TRANSACTION; -ALTER TABLE `tlayout` +ALTER TABLE `tlayout` ADD COLUMN `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc' AFTER `maintenance_mode`, -ADD COLUMN `grid_size` VARCHAR(45) NOT NULL DEFAULT '10px' AFTER `grid_color`; +ADD COLUMN `grid_size` VARCHAR(45) NOT NULL DEFAULT '10' AFTER `grid_color`; + +ALTER TABLE `tlayout_template` +ADD COLUMN `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc' AFTER `maintenance_mode`, +ADD COLUMN `grid_size` VARCHAR(45) NOT NULL DEFAULT '10' AFTER `grid_color`; COMMIT; diff --git a/pandora_console/include/javascript/pandora_visual_console.js b/pandora_console/include/javascript/pandora_visual_console.js index 354934039c..49fd76331b 100755 --- a/pandora_console/include/javascript/pandora_visual_console.js +++ b/pandora_console/include/javascript/pandora_visual_console.js @@ -252,6 +252,20 @@ function createVisualConsole( }); // VC Item moved. visualConsole.onItemMoved(function(e) { + if ( + $("input[name=grid-mode]").prop("checked") && + e.item.props.type !== 13 && + e.item.props.type !== 21 + ) { + var gridSize = $("#grid_size").val(); + var positionX = e.newPosition.x; + var positionY = e.newPosition.y; + if (positionX % gridSize !== 0 || positionY % gridSize !== 0) { + e.newPosition.x = Math.floor(positionX / gridSize) * gridSize; + e.newPosition.y = Math.floor(positionY / gridSize) * gridSize; + e.item.move(e.newPosition.x, e.newPosition.y); + } + } var id = e.item.props.id; var data = { x: e.newPosition.x, diff --git a/pandora_console/include/rest-api/models/VisualConsole/Container.php b/pandora_console/include/rest-api/models/VisualConsole/Container.php index 74d94f6865..d007258c7a 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Container.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Container.php @@ -91,8 +91,8 @@ final class Container extends Model 'relationLineWidth' => (int) $data['relationLineWidth'], 'hash' => static::extractHash($data), 'maintenanceMode' => static::extractMaintenanceMode($data), - 'grid_size' => (int) $data['grid_size'], - 'grid_color' => (string) $data['grid_color'], + 'gridSize' => (int) $data['grid_size'], + 'gridColor' => (string) $data['grid_color'], ]; } diff --git a/pandora_console/operation/visual_console/view.php b/pandora_console/operation/visual_console/view.php index 175a9b6d6b..332ae6f8a9 100644 --- a/pandora_console/operation/visual_console/view.php +++ b/pandora_console/operation/visual_console/view.php @@ -493,7 +493,7 @@ if ($pure === false) { html_print_input_number( [ 'name' => 'grid_size', - 'value' => $visualConsoleData['grid_size'], + 'value' => $visualConsoleData['gridSize'], 'id' => 'grid_size', 'min' => 2, 'max' => 50, @@ -506,7 +506,7 @@ if ($pure === false) { __('Grid color'), html_print_input_color( 'grid_color', - $visualConsoleData['grid_color'], + $visualConsoleData['gridColor'], 'grid_color', 'w100p', true diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index d873e33097..340d552055 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1701,7 +1701,7 @@ CREATE TABLE IF NOT EXISTS `tlayout` ( `auto_adjust` INT UNSIGNED NOT NULL DEFAULT 0, `maintenance_mode` TEXT, `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc', - `grid_size` VARCHAR(45) NOT NULL DEFAULT '10px', + `grid_size` VARCHAR(45) NOT NULL DEFAULT '10', PRIMARY KEY(`id`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; @@ -3668,6 +3668,8 @@ CREATE TABLE IF NOT EXISTS `tlayout_template` ( `is_favourite` INT UNSIGNED NOT NULL DEFAULT 0, `auto_adjust` INT UNSIGNED NOT NULL DEFAULT 0, `maintenance_mode` TEXT, + `grid_color` VARCHAR(45) NOT NULL DEFAULT '#cccccc', + `grid_size` VARCHAR(45) NOT NULL DEFAULT '10', PRIMARY KEY(`id`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From 1980458572caac3b703c7ee534c85e53249c9c6a Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 8 Jun 2023 14:06:15 +0200 Subject: [PATCH 369/533] #11437 added new control session --- pandora_console/extras/mr/65.sql | 5 ++ pandora_console/godmode/setup/setup_auth.php | 22 ++++++- .../godmode/users/configure_user.php | 10 +++ pandora_console/include/functions_config.php | 66 ++++++++++++++++++- pandora_console/pandoradb.sql | 1 + 5 files changed, 102 insertions(+), 2 deletions(-) create mode 100644 pandora_console/extras/mr/65.sql diff --git a/pandora_console/extras/mr/65.sql b/pandora_console/extras/mr/65.sql new file mode 100644 index 0000000000..6c7ab1161a --- /dev/null +++ b/pandora_console/extras/mr/65.sql @@ -0,0 +1,5 @@ +START TRANSACTION; + +ALTER TABLE `tusuario` ADD COLUMN `session_max_time_expire` INT NOT NULL DEFAULT 0 AFTER `auth_token_secret`; + +COMMIT; \ No newline at end of file diff --git a/pandora_console/godmode/setup/setup_auth.php b/pandora_console/godmode/setup/setup_auth.php index 3822a01b2e..74e4e2e1ff 100644 --- a/pandora_console/godmode/setup/setup_auth.php +++ b/pandora_console/godmode/setup/setup_auth.php @@ -418,7 +418,27 @@ if (is_ajax() === true) { $table->rowclass['2FA_all_users'] = ''; } - $table->data['2FA_all_users'] = $row; + $table->data['2FA_all_users'] = $row; + + // Session timeout behavior. + // Set default value. + $row = []; + $options = [ + 'check_activity' => __('Check activity'), + 'ignore_activity' => __('Ignore activity'), + ]; + + $row['name'] = __('Control of timeout session').ui_print_help_tip(__('Select \'ignore activity\' to ignore user activity when checking the session.'), true); + $row['control'] = html_print_select( + $options, + 'control_session_timeout', + $config['control_session_timeout'], + '', + '', + 0, + true + ); + $table->data['session_timeouts'] = $row; // Session timeout. diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 808261ef61..afd093f233 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -663,11 +663,21 @@ if ($update_user) { $values['local_user'] = (bool) get_parameter('local_user', false); $values['strict_acl'] = (bool) get_parameter('strict_acl', false); $values['session_time'] = (int) get_parameter('session_time', 0); + + $force_update_session_expire = false; + if ($values['session_time'] !== $user_info['session_time']) { + $force_update_session_expire = true; + } + // Previously defined. $values['autorefresh_white_list'] = $autorefresh_white_list; $res1 = update_user($id, $values); + if ($force_update_session_expire === true) { + config_prepare_expire_time_session(true); + } + if ($config['user_can_update_password']) { $password_new = (string) get_parameter('password_new', ''); $password_confirm = (string) get_parameter('password_confirm', ''); diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index 468c228733..cf4a00b18a 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -815,6 +815,10 @@ function config_update_config() $error_update[] = __('2FA all users'); } + if (config_update_value('control_session_timeout', get_parameter('control_session_timeout'), true) === false) { + $error_update[] = __('Control timeout'); + } + if (config_update_value('session_timeout', get_parameter('session_timeout'), true) === false) { $error_update[] = __('Session timeout'); } else { @@ -824,6 +828,8 @@ function config_update_config() if (config_update_value('session_timeout', 90, true) === false) { $error_update[] = __('Session timeout'); } + } else { + config_prepare_expire_time_session(true); } } @@ -3781,6 +3787,10 @@ function config_process_config() config_update_value('notification_autoclose_time', 5); } + if (isset($config['control_session_timeout']) === false) { + config_update_value('control_session_timeout', 'check_activity'); + } + // Finally, check if any value was overwritten in a form. config_update_config(); } @@ -3912,12 +3922,60 @@ function config_user_set_custom_config() } } + config_prepare_expire_time_session(); + if (is_metaconsole() === true) { $config['metaconsole_access'] = $userinfo['metaconsole_access']; } } +function config_prepare_expire_time_session($force_update=false) +{ + global $config; + if (empty($config['id_user']) === true) { + return; + } + + $userinfo = get_user_info($config['id_user']); + + if (isset($userinfo)) { + $user_sesion_time = $userinfo['session_time']; + } else { + $user_sesion_time = null; + } + + if ($user_sesion_time == 0) { + // Change the session timeout value to session_timeout minutes // 8*60*60 = 8 hours. + $sessionCookieExpireTime = $config['session_timeout']; + } else { + // Change the session timeout value to session_timeout minutes // 8*60*60 = 8 hours. + $sessionCookieExpireTime = $user_sesion_time; + } + + if ($sessionCookieExpireTime <= 0) { + $sessionCookieExpireTime = (10 * 365 * 24 * 60 * 60); + } else { + $sessionCookieExpireTime *= 60; + } + + if ($config['control_session_timeout'] === 'ignore_activity') { + $sessionMaxTimeout = (time() + $sessionCookieExpireTime); + if ((int) $userinfo['session_max_time_expire'] === 0 || $force_update === true) { + $userinfo['session_max_time_expire'] = $sessionMaxTimeout; + update_user($userinfo['id_user'], ['session_max_time_expire' => $sessionMaxTimeout]); + } else if (time() > (int) $userinfo['session_max_time_expire'] && (int) $userinfo['session_max_time_expire'] > 0) { + update_user($userinfo['id_user'], ['session_max_time_expire' => 0]); + } + } else { + if ((int) $userinfo['session_max_time_expire'] > 0) { + update_user($userinfo['id_user'], ['session_max_time_expire' => 0]); + } + } + +} + + /** * Undocumented function * @@ -3959,7 +4017,13 @@ function config_prepare_session() } if ($update_cookie === true) { - setcookie(session_name(), $_COOKIE[session_name()], (time() + $sessionCookieExpireTime), '/'); + if ((int) $user['session_max_time_expire'] > 0 && time() < $user['session_max_time_expire']) { + $sessionMaxTimeout = $user['session_max_time_expire']; + } else { + $sessionMaxTimeout = (time() + $sessionCookieExpireTime); + } + + setcookie(session_name(), $_COOKIE[session_name()], $sessionMaxTimeout, '/'); } } diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 8706e37fed..a6a368cd72 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1327,6 +1327,7 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `allowed_ip_active` TINYINT UNSIGNED DEFAULT 0, `allowed_ip_list` TEXT, `auth_token_secret` VARCHAR(45) DEFAULT NULL, + `session_max_time_expire` INT signed NOT NULL DEFAULT 0, CONSTRAINT `fk_filter_id` FOREIGN KEY (`id_filter`) REFERENCES tevent_filter (`id_filter`) ON DELETE SET NULL, UNIQUE KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From e483c255e0d63a31347f2060e4b1b0d7c41d9bce Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 8 Jun 2023 14:46:01 +0200 Subject: [PATCH 370/533] #11437 regenerate timeout when login user --- pandora_console/index.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/index.php b/pandora_console/index.php index aaf960eb91..6930027c78 100755 --- a/pandora_console/index.php +++ b/pandora_console/index.php @@ -662,6 +662,7 @@ if (isset($config['id_user']) === false) { db_logon($nick_in_db, $_SERVER['REMOTE_ADDR']); $_SESSION['id_usuario'] = $nick_in_db; $config['id_user'] = $nick_in_db; + config_prepare_expire_time_session(true); // Check if connection goes through F5 balancer. If it does, then // don't call config_prepare_session() or user will be back to login From 63d69dddea28842124c9f86bd3a5301f848e0b17 Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Thu, 8 Jun 2023 17:11:56 +0200 Subject: [PATCH 371/533] #11515 fixed validation of the SLA limit field in reports --- .../godmode/reporting/reporting_builder.item_editor.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_console/godmode/reporting/reporting_builder.item_editor.php b/pandora_console/godmode/reporting/reporting_builder.item_editor.php index 38ac32b635..b4ce93867e 100755 --- a/pandora_console/godmode/reporting/reporting_builder.item_editor.php +++ b/pandora_console/godmode/reporting/reporting_builder.item_editor.php @@ -4139,7 +4139,7 @@ function print_SLA_list($width, $action, $idItem=null) @@ -4544,7 +4544,7 @@ function print_SLA_list($width, $action, $idItem=null) - + @@ -5846,7 +5846,7 @@ function addSLARow() { if ((((idAgent != '') && (idAgent > 0)) && ((idModule != '') && (idModule > 0))) - || serviceId != null) + && (slaLimit != '') || serviceId != null) { if (nameAgent != '') { //Truncate nameAgent From 00f94f673242d3eb93e09e73248737183c437985 Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 9 Jun 2023 01:01:08 +0200 Subject: [PATCH 372/533] 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 2c0d716caa46f55351809aebf1196c911d075c13 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 9 Jun 2023 08:45:32 +0200 Subject: [PATCH 373/533] #11093 VC items movement like grid when its enable --- .../visual-console-client/vc.main.min.js | 2 +- .../visual-console-client/vc.main.min.js.map | 2 +- .../operation/visual_console/view.php | 3 ++ visual_console_client/src/Item.ts | 4 +- visual_console_client/src/VisualConsole.ts | 42 ++++++++++++++++++- 5 files changed, 49 insertions(+), 4 deletions(-) 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..4ee95bbc36 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 k},rN:function(){return v},bc:function(){return y},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 x}});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+v.width-g>u.width||o===b&&d<0&&r>f+b+c,k=i0&&im||y+s+v.height-g>u.height||s===E&&y<0&&i>h+E+p;(e=w?0:x?b:d+o)<0&&(e=0),(n=k?0:P?E:y+s)<0&&(n=0),a=r,l=i,e===o&&n===s||(C(e,n),M(e,n),o=e,s=n)},k=function(){o=0,s=0,a=0,l=0,document.removeEventListener("mousemove",x),document.removeEventListener("mouseup",k),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,v=t.getBoundingClientRect(),y=window.getComputedStyle(t).borderWidth||"0",g=2*Number.parseInt(y),document.addEventListener("mousemove",x),document.addEventListener("mouseup",k),document.body.style.userSelect="none"}};return t.addEventListener("mousedown",P),function(){t.removeEventListener("mousedown",P),k()}}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),v=_.top,y=_.left,g=window.getComputedStyle(t).borderWidth||"0",M=Number.parseInt(g),C=E(32,e),x=b(16,e),k=function(t){var e=o+(t.pageX-a),n=s+(t.pageY-l);e===o&&n===s||ey+(o-c)||(e<15?e=15:e+y-M/2>=f&&(e=f-y),n<15?n=15:n+v-M/2>=h&&(n=h-v),x(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",k),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),v=_.top,y=_.left,document.addEventListener("mousemove",k),document.addEventListener("mouseup",P),document.body.style.userSelect="none"})),function(){n.remove(),P()}}function x(t){return t}function k(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 v=_.item(0);if(null!=v){v.setAttribute("width","".concat(i+s)),v.setAttribute("height","".concat(o+s));var y=v.getElementsByTagNameNS(O,"line");if(y.length>0){var g=y.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&&(x=w.item(0))&&(b=x);var M=t.getElementsByClassName("visual-console-item-line-circle-end");M.length>0&&(x=M.item(0))&&(E=x)}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;)(x=C.item(0))&&x.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 x;(x=C.item(0))&&x.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),L=S,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,x=u.x-o+a/2+l/2,k=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(k-C,x-M)/Math.PI;if(v<=0&&(b=m.split("
"),v=0,b.forEach((function(t){t.length>v&&(v=10*t.length)})),y<=0&&(y=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+v,A+=w),IT&&(I-=w+y,T+=w),void 0===d&&(d="#000"),null!==e.parentElement){for(var S=e.parentElement.getElementsByClassName("vc-item-nl-label");S.length>0;){var L=S.item(0);L&&L.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+(x-M)/2-B,W=C+(k-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(v,"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}(L),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 v=document.createElementNS(t,"g");v.setAttribute("class","marks");var y=document.createElementNS(t,"g");y.setAttribute("class","mark"),y.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"),y.append(g,b),v.append(y);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")),v.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 x=document.createElementNS(t,"line");x.setAttribute("class","hour-hand-b"),x.setAttribute("x1","0"),x.setAttribute("y1","0"),x.setAttribute("x2","29.9"),x.setAttribute("y2","0"),x.setAttribute("stroke",i),x.setAttribute("stroke-width","3.1"),x.setAttribute("stroke-linecap","round"),M.append(C,x);var k=document.createElementNS(t,"g");k.setAttribute("class","minute-hand"),k.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),k.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 S=document.createElementNS(t,"circle");S.setAttribute("r","2"),S.setAttribute("fill",s),T.append(O,S);var L=document.createElementNS(t,"circle");L.setAttribute("cx","50"),L.setAttribute("cy","50"),L.setAttribute("r","0.3"),L.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,")")),k.setAttribute("transform","translate(50 50) rotate(".concat(z,")")),T.setAttribute("transform","translate(50 50) rotate(".concat(B,")")),d.append(h,v,M,k,T,L),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,vt=1e-6,yt=_t-vt;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>vt)if(Math.abs(p*a-l*c)>vt&&i){var d=n-o,h=r-s,m=a*a+l*l,f=d*d+h*h,_=Math.sqrt(m),v=Math.sqrt(u),y=i*Math.tan((ft-Math.acos((m+u-f)/(2*_*v)))/2),g=y/v,b=y/_;Math.abs(g-1)>vt&&(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)>vt||Math.abs(this._y1-c)>vt)&&(this._+="L"+l+","+c),n&&(u<0&&(u=u%_t+_t),u>yt?this._+="A"+n+","+n+",0,1,"+p+","+(t-s)+","+(e-a)+"A"+n+","+n+",0,1,"+p+","+(this._x1=l)+","+(this._y1=c):u>vt&&(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,xt=Math.cos,kt=Math.max,Pt=Math.min,It=Math.sin,At=Math.sqrt,Tt=1e-12,Ot=Math.PI,St=Ot/2,Lt=2*Ot;function Dt(t){return t>1?0:t<-1?Ot:Math.acos(t)}function Rt(t){return t>=1?St:t<=-1?-St: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=k,x=P),{cx:C,cy:x,x01:-p,y01:-u,x11:C*(i/E-1),y11:x*(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>Lt-Tt)a.moveTo(u*xt(d),u*It(d)),a.arc(0,0,u,d,h,!f),p>Tt&&(a.moveTo(p*xt(h),p*It(h)),a.arc(0,0,p,h,d,f));else{var _,v,y=d,g=h,b=d,E=h,w=m,M=m,C=s.apply(this,arguments)/2,x=C>Tt&&(r?+r.apply(this,arguments):At(p*p+u*u)),k=Pt(Mt(u-p)/2,+n.apply(this,arguments)),P=k,I=k;if(x>Tt){var A=Rt(x/p*It(C)),T=Rt(x/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?(y+=T*=f?1:-1,g-=T):(M=0,y=g=(d+h)/2)}var O=u*xt(y),S=u*It(y),L=p*xt(E),D=p*It(E);if(k>Tt){var R,N=u*xt(g),B=u*It(g),z=p*xt(b),W=p*It(b);if(mTt?I>Tt?(_=Vt(z,W,O,S,u,I,f),v=Vt(N,B,L,D,u,I,f),a.moveTo(_.cx+_.x01,_.cy+_.y01),ITt&&w>Tt?P>Tt?(_=Vt(L,D,N,B,p,-P,f),v=Vt(O,S,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,p=t.gridSize;if(t.gridSelected,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,gridSize:(0,e.I1)(p,10),gridSelected:!1},(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 L&&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 L(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 k(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 L?(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 L(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.updateGridSize=function(t){this._props.gridSize=parseInt(t),this.props.gridSize=parseInt(t)},t.prototype.updateGridSelected=function(t){this._props.gridSelected=t,this.props.gridSelected=t},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]=L,le[14]=mt.Z,le[17]=Xt.Z,le[18]=Qt.Z,le[19]=X,le[20]=k,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..1b63396f88 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 public 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 this.elementRef.setAttribute('id','item-selected-move');\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n this.elementRef.removeAttribute('id');\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 gridSize: number | 10;\n gridSelected: boolean | false | false;\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 gridSize,\n gridSelected\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 gridSize: parseIntOr(gridSize, 10),\n gridSelected: false,\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 var type = e.item.itemProps.type;\n if (type !== 13 && type !== 21 && this.props.gridSelected === true) {\n var gridSize = this.props.gridSize;\n var positionX = e.newPosition.x;\n var positionY = e.newPosition.y;\n if (positionX % gridSize !== 0 || positionY % gridSize !== 0) {\n var x = Math.floor(positionX / gridSize) * gridSize;\n var y = Math.floor(positionY / gridSize) * gridSize;\n let elemntSelected = document.getElementById(\n \"item-selected-move\"\n ) as HTMLElement;\n elemntSelected.setAttribute(\n \"style\",\n \"top:\" + y + \"px !important; left:\" + x + \"px !important\"\n );\n return;\n }\n }\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 * Update the gridSize.\n */\n public updateGridSize(gridSize: string): void {\n this._props.gridSize = parseInt(gridSize);\n this.props.gridSize = parseInt(gridSize);\n }\n\n /**\n * Update the gridSize.\n */\n public updateGridSelected(gridSelected: boolean): void {\n this._props.gridSelected = gridSelected;\n this.props.gridSelected = gridSelected;\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","removeAttribute","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","gridSelected","gridSize","positionX","positionY","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","updateGridSize","updateGridSelected","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/pandora_console/operation/visual_console/view.php b/pandora_console/operation/visual_console/view.php index 332ae6f8a9..f7185503fa 100644 --- a/pandora_console/operation/visual_console/view.php +++ b/pandora_console/operation/visual_console/view.php @@ -850,9 +850,11 @@ if ($edit_capable === true) { size = $('#grid_size').val(); display_grid(color,size); $('#grid_img').removeClass('invisible'); + visualConsoleManager.visualConsole.updateGridSelected(true); } else { $('#div-grid').remove(); $('#grid_img').addClass('invisible'); + visualConsoleManager.visualConsole.updateGridSelected(false); } }); @@ -925,6 +927,7 @@ if ($edit_capable === true) { console.error(err); } }); + visualConsoleManager.visualConsole.updateGridSize(size); } // Enable/disable the maintenance mode. diff --git a/visual_console_client/src/Item.ts b/visual_console_client/src/Item.ts index 507e4f2621..ace52529a5 100644 --- a/visual_console_client/src/Item.ts +++ b/visual_console_client/src/Item.ts @@ -239,7 +239,7 @@ export function titleItem(id: number): string { */ abstract class VisualConsoleItem { // Properties of the item. - private itemProps: Props; + public itemProps: Props; // Metadata of the item. private _metadata: ItemMeta; // Reference to the DOM element which will contain the item. @@ -955,8 +955,10 @@ abstract class VisualConsoleItem { if (!prevMeta || prevMeta.isSelected !== this.meta.isSelected) { if (this.meta.isSelected) { this.elementRef.classList.add("is-selected"); + this.elementRef.setAttribute("id", "item-selected-move"); } else { this.elementRef.classList.remove("is-selected"); + this.elementRef.removeAttribute("id"); } } } diff --git a/visual_console_client/src/VisualConsole.ts b/visual_console_client/src/VisualConsole.ts index 500f7dcdaa..6ffea32162 100644 --- a/visual_console_client/src/VisualConsole.ts +++ b/visual_console_client/src/VisualConsole.ts @@ -160,6 +160,8 @@ export interface VisualConsoleProps extends Size { isFavorite: boolean; relationLineWidth: number; maintenanceMode: MaintenanceModeInterface | null; + gridSize: number | 10; + gridSelected: boolean | false | false; } export interface MaintenanceModeInterface { @@ -188,7 +190,9 @@ export function visualConsolePropsDecoder( backgroundColor, isFavorite, relationLineWidth, - maintenanceMode + maintenanceMode, + gridSize, + gridSelected } = data; if (id == null || isNaN(parseInt(id))) { @@ -210,6 +214,8 @@ export function visualConsolePropsDecoder( isFavorite: parseBoolean(isFavorite), relationLineWidth: parseIntOr(relationLineWidth, 0), maintenanceMode: maintenanceMode, + gridSize: parseIntOr(gridSize, 10), + gridSelected: false, ...sizePropsDecoder(data) }; } @@ -279,6 +285,24 @@ export default class VisualConsole { * @param e Event object. */ private handleElementMovement: (e: ItemMovedEvent) => void = e => { + var type = e.item.itemProps.type; + if (type !== 13 && type !== 21 && this.props.gridSelected === true) { + var gridSize = this.props.gridSize; + var positionX = e.newPosition.x; + var positionY = e.newPosition.y; + if (positionX % gridSize !== 0 || positionY % gridSize !== 0) { + var x = Math.floor(positionX / gridSize) * gridSize; + var y = Math.floor(positionY / gridSize) * gridSize; + let elemntSelected = document.getElementById( + "item-selected-move" + ) as HTMLElement; + elemntSelected.setAttribute( + "style", + "top:" + y + "px !important; left:" + x + "px !important" + ); + return; + } + } // Move their relation lines. const itemId = e.item.props.id; const relations = this.getItemRelations(itemId); @@ -1269,6 +1293,22 @@ export default class VisualConsole { this.containerRef.classList.add("is-editing"); } + /** + * Update the gridSize. + */ + public updateGridSize(gridSize: string): void { + this._props.gridSize = parseInt(gridSize); + this.props.gridSize = parseInt(gridSize); + } + + /** + * Update the gridSize. + */ + public updateGridSelected(gridSelected: boolean): void { + this._props.gridSelected = gridSelected; + this.props.gridSelected = gridSelected; + } + /** * Select an item. * @param itemId Item Id. From a8555c69a342fd15fd8fd4d02ae75d24cc59b6da Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 9 Jun 2023 08:48:17 +0200 Subject: [PATCH 374/533] #11093 VC items movement like grid when its enable --- .../include/visual-console-client/vc.main.min.js.map | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 1b63396f88..bbc35dc79a 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 public 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 this.elementRef.setAttribute('id','item-selected-move');\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n this.elementRef.removeAttribute('id');\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 gridSize: number | 10;\n gridSelected: boolean | false | false;\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 gridSize,\n gridSelected\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 gridSize: parseIntOr(gridSize, 10),\n gridSelected: false,\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 var type = e.item.itemProps.type;\n if (type !== 13 && type !== 21 && this.props.gridSelected === true) {\n var gridSize = this.props.gridSize;\n var positionX = e.newPosition.x;\n var positionY = e.newPosition.y;\n if (positionX % gridSize !== 0 || positionY % gridSize !== 0) {\n var x = Math.floor(positionX / gridSize) * gridSize;\n var y = Math.floor(positionY / gridSize) * gridSize;\n let elemntSelected = document.getElementById(\n \"item-selected-move\"\n ) as HTMLElement;\n elemntSelected.setAttribute(\n \"style\",\n \"top:\" + y + \"px !important; left:\" + x + \"px !important\"\n );\n return;\n }\n }\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 * Update the gridSize.\n */\n public updateGridSize(gridSize: string): void {\n this._props.gridSize = parseInt(gridSize);\n this.props.gridSize = parseInt(gridSize);\n }\n\n /**\n * Update the gridSize.\n */\n public updateGridSelected(gridSelected: boolean): void {\n this._props.gridSelected = gridSelected;\n this.props.gridSelected = gridSelected;\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","removeAttribute","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","gridSelected","gridSize","positionX","positionY","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","updateGridSize","updateGridSelected","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 public 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 this.elementRef.setAttribute(\"id\", \"item-selected-move\");\n } else {\n this.elementRef.classList.remove(\"is-selected\");\n this.elementRef.removeAttribute(\"id\");\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 gridSize: number | 10;\n gridSelected: boolean | false | false;\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 gridSize,\n gridSelected\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 gridSize: parseIntOr(gridSize, 10),\n gridSelected: false,\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 var type = e.item.itemProps.type;\n if (type !== 13 && type !== 21 && this.props.gridSelected === true) {\n var gridSize = this.props.gridSize;\n var positionX = e.newPosition.x;\n var positionY = e.newPosition.y;\n if (positionX % gridSize !== 0 || positionY % gridSize !== 0) {\n var x = Math.floor(positionX / gridSize) * gridSize;\n var y = Math.floor(positionY / gridSize) * gridSize;\n let elemntSelected = document.getElementById(\n \"item-selected-move\"\n ) as HTMLElement;\n elemntSelected.setAttribute(\n \"style\",\n \"top:\" + y + \"px !important; left:\" + x + \"px !important\"\n );\n return;\n }\n }\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 * Update the gridSize.\n */\n public updateGridSize(gridSize: string): void {\n this._props.gridSize = parseInt(gridSize);\n this.props.gridSize = parseInt(gridSize);\n }\n\n /**\n * Update the gridSize.\n */\n public updateGridSelected(gridSelected: boolean): void {\n this._props.gridSelected = gridSelected;\n this.props.gridSelected = gridSelected;\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","removeAttribute","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","gridSelected","gridSize","positionX","positionY","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","updateGridSize","updateGridSelected","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 From 1e462d5e89fc7879e502372a435d25e29ffcfbce Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Fri, 9 Jun 2023 12:22:32 +0200 Subject: [PATCH 375/533] #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 376/533] 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 377/533] 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 378/533] 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 ac294805eaeff3e26069a237408ba62efd4fccbf Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 12 Jun 2023 12:24:22 +0200 Subject: [PATCH 379/533] #11437 unify session_max_time_expire with mr --- pandora_console/pandoradb.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index a6a368cd72..f9a206d326 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1327,7 +1327,7 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `allowed_ip_active` TINYINT UNSIGNED DEFAULT 0, `allowed_ip_list` TEXT, `auth_token_secret` VARCHAR(45) DEFAULT NULL, - `session_max_time_expire` INT signed NOT NULL DEFAULT 0, + `session_max_time_expire` INT NOT NULL DEFAULT 0, CONSTRAINT `fk_filter_id` FOREIGN KEY (`id_filter`) REFERENCES tevent_filter (`id_filter`) ON DELETE SET NULL, UNIQUE KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From 41311c019f994e1febbacdcba2a0a7d2c3633d0a Mon Sep 17 00:00:00 2001 From: Jorge Rincon Date: Mon, 12 Jun 2023 12:26:38 +0200 Subject: [PATCH 380/533] #11517 Fixed the selection of Available Fields --- .../godmode/agentes/status_monitor_custom_fields.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/godmode/agentes/status_monitor_custom_fields.php b/pandora_console/godmode/agentes/status_monitor_custom_fields.php index 2dfb79185d..73099cf91f 100644 --- a/pandora_console/godmode/agentes/status_monitor_custom_fields.php +++ b/pandora_console/godmode/agentes/status_monitor_custom_fields.php @@ -27,7 +27,7 @@ if (! check_acl($config['id_user'], 0, 'AR') return; } -$update = get_parameter('upd_button', ''); +$update = get_parameter('update_button', ''); $default = (int) get_parameter('default', 0); // Header. @@ -284,7 +284,7 @@ $(document).ready (function () { } }); - $("#submit-upd_button").click(function () { + $("#button-update_button").click(function () { $("#fields_selected").find("option[value='0']").remove(); $('#fields_selected option').map(function() { $(this).prop('selected', true); From cec9a263fee33915a0e610eb2932dda8a80f0636 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 12 Jun 2023 13:55:26 +0200 Subject: [PATCH 381/533] #11529 Fix base64 decode --- pandora_console/include/functions_api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index a8e83789aa..59ee1eb945 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -8610,7 +8610,7 @@ function api_set_update_module_in_conf($id_agent, $module_name, $configuration_d return; } - $new_configuration_data = io_safe_output(urldecode($configuration_data_serialized['data'])); + $new_configuration_data = io_safe_output(base64_decode($configuration_data_serialized['data'])); // Get current configuration. $old_configuration_data = config_agents_get_module_from_conf($id_agent, io_safe_output($module_name)); From f04b700574ca122558dc35c3a400b4c4709fbd60 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 12 Jun 2023 14:17:12 +0200 Subject: [PATCH 382/533] #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 2b2f9b983e3d89341a8915e8e9fc53b1df56f600 Mon Sep 17 00:00:00 2001 From: miguel angel rasteu Date: Mon, 12 Jun 2023 16:18:28 +0200 Subject: [PATCH 383/533] #11347 Fix decode base 64 for japanese characters --- pandora_console/godmode/users/configure_user.php | 6 ++++-- pandora_console/include/javascript/pandora.js | 10 ++++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 808261ef61..b174f36b67 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -1073,9 +1073,11 @@ if (!$new_user) { 'show_api_token', false, sprintf( - 'javascript:showAPIToken("%s", "%s")', + 'javascript:showAPIToken("%s", "%s", "%s", "%s")', __('API Token'), - base64_encode(__('Your API Token is:').' 
'.users_get_API_token($id).'
 '.__('Please, avoid share this string with others.')), + __('Your API Token is:'), + base64_encode(users_get_API_token($id)), + __('Please, avoid share this string with others.'), ), [ 'mode' => 'link', diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index 22815792e0..3513df318b 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2230,10 +2230,16 @@ function renewAPIToken(title, message, form) { * @param {string} title Title for show. * @param {string} message Base64 encoded message for show. */ -function showAPIToken(title, message) { +function showAPIToken(title, message_a, token, message_b) { + var message = + message_a + + ' 
' + + atob(token) + + "
 " + + message_b; confirmDialog({ title: title, - message: atob(message), + message: message, hideCancelButton: true }); } From 6a941f6cda7069866976d45eaf711351394fecd4 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 13 Jun 2023 01:01:02 +0200 Subject: [PATCH 384/533] 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 385/533] #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 .= '